diff --git a/components/Header.jsx b/components/Header.jsx index 7b68583..880c93e 100644 --- a/components/Header.jsx +++ b/components/Header.jsx @@ -1,15 +1,14 @@ import React from 'react'; import NextHead from 'next/head'; -// import NProgress from 'nprogress'; -// import Router from 'next/router'; +import NProgress from 'nprogress'; +import Router from 'next/router'; -// Router.onRouteChangeStart = (url) => { -// console.log(`Loading: ${url}`); -// NProgress.start(); -// }; -// -// Router.onRouteChangeComplete = () => NProgress.done(); -// Router.onRouteChangeError = () => NProgress.done(); +Router.onRouteChangeStart = (url) => { + NProgress.start(); +}; + +Router.onRouteChangeComplete = () => NProgress.done(); +Router.onRouteChangeError = () => NProgress.done(); /** * A header Component that provide Progress bar diff --git a/components/Login.jsx b/components/Login.jsx deleted file mode 100644 index 9cb825c..0000000 --- a/components/Login.jsx +++ /dev/null @@ -1,58 +0,0 @@ -import React from 'react'; -import TextField from '@material-ui/core/TextField'; -import Button from '@material-ui/core/Button'; - -/** - * Login Component that provide text fields and submit button. - * @inheritDoc - */ -class Login extends React.Component { - static propTypes = { - // classes: PropTypes.object.isRequired, - }; - - state = { - email: 'email here', - password: '', - }; - - handleChange = (email, password) => (event) => { - this.setState({ - [email]: event.target.value, - [password]: event.target.value, - }); - }; - - /** - * @return {Element} - */ - render() { - return (
-
- - - - - - -
); - } -} - -export default Login; diff --git a/components/PopMenu.jsx b/components/PopMenu.jsx index 267badb..095c16e 100644 --- a/components/PopMenu.jsx +++ b/components/PopMenu.jsx @@ -30,6 +30,26 @@ const inStyle = { fontSize: '14px', }; +class CourseDetailsWindow extends React.Component { + render() { + const course = this.props.course; + return ( +
+ × +
+ {`${course.name} ${course.title}`} +
+
+

{`Instructor: ${course.instructor}`}

+

{`Terms: ${course.terms}`}

+

{`GE: ${course.geCategories}`}

+

{`Division: ${course.division}`}

+

{`Description: ${course.description}`}

+
+
+ ); + } +} class PopMenu extends React.Component { constructor(props) { @@ -109,35 +129,23 @@ class PopMenu extends React.Component {
{ this.node = node; }} style={lStyle} id="listDiv" onScroll={this.onListScroll}> - {data.map(({name, title, instructor, terms, description, geCategories, division}) => ( + {data.map((course) => (
- + } modal> - {close => ( -
- × -
- {`${name} ${title}`} -
-
-

{`Instructor: ${instructor}`}

-

{`Terms: ${terms}`}

-

{`GE: ${geCategories}`}

-

{`Division: ${division}`}

-

{`Description: ${description}`}

-
-
- )} + {close => + + }
))} diff --git a/components/Popups.jsx b/components/Popups.jsx index a1c4bac..39937f5 100644 --- a/components/Popups.jsx +++ b/components/Popups.jsx @@ -1,13 +1,42 @@ import React from 'react'; import Popup from 'reactjs-popup'; +class CourseDetailsPanel extends React.Component { + render() { + const course = this.props.course; + return ( +
+

{'Instructor: '}{course.instructor}

+

{'Time: '}{course.time}

+

{'Location: '}{course.location}

+
+ ); + } +} + +class CourseDetailsWindow extends React.Component { + render() { + const course = this.props.course; + return ( +
+ × + + + +
{course.course_number}
+ +
+ ); + } +} class Popups extends React.Component { constructor(props) { super(props); - this.handleClick = this.handleClick.bind(this); + this.removeDefTags = this.removeDefTags.bind(this); + this.selectDefTag = this.selectDefTag.bind(this); this.state = { - tags: [] || props.tags, + deftags: [] || props.tags, }; } @@ -21,36 +50,37 @@ class Popups extends React.Component { }), }; - handleClick(e) { + removeDefTags() { + if (this.state.deftags === 'N/A' + || this.state.deftags === 'In Progress' + || this.state.deftags === 'Finished') { + this.state.deftags = ''; + } + } + + selectDefTag(e) { + this.removeDefTags(); if (e === 'N/A') { - this.state.tags = 'N/A'; + this.state.deftags = 'N/A'; } if (e === 'In Progress') { - this.state.tags = 'In Progress'; + this.state.deftags = 'In Progress'; } if (e === 'Finished') { - this.state.tags = 'Finished'; + this.state.deftags = 'Finished'; } - console.log(`get tags: ${this.state.tags}`); } render() { return
- {this.props.myLists.course_title}} modal> - {close => ( -
- × - - - -
{this.props.myLists.course_number}
-
-

{'Instructor: '}{this.props.myLists.instructor}

-

{'Time: '}{this.props.myLists.time}

-

{'Location: '}{this.props.myLists.location}

-
-
- )} + {this.props.myLists.course_title}} modal> + {close => + this.selectDefTag(tag)} /> + }
; } diff --git a/components/Search.jsx b/components/Search.jsx index 82d0b78..097738e 100644 --- a/components/Search.jsx +++ b/components/Search.jsx @@ -1,6 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { Configure, Highlight, Hits, SearchBox } from 'react-instantsearch/dom'; + import { InstantSearch } from './Instantsearch'; /** diff --git a/components/SearchBar.jsx b/components/SearchBar.jsx deleted file mode 100644 index a8cf248..0000000 --- a/components/SearchBar.jsx +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react'; - -import PopMenu from './PopMenu'; - -class SearchBar extends React.Component { - - - - - - - render() { - return ( -
- -
- ) - } - - -} - -export default SearchBar; \ No newline at end of file diff --git a/components/Tooltip.jsx b/components/Tooltip.jsx new file mode 100644 index 0000000..9047990 --- /dev/null +++ b/components/Tooltip.jsx @@ -0,0 +1,86 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +// The modal "window" +const modalStyle = { + backgroundColor: '#fff', + borderRadius: 5, + maxWidth: 500, + minHeight: 300, + margin: '0 auto', + padding: 30, +}; + +class Tooltip extends React.Component { + static propTypes = { + content: PropTypes.object, + trigger: PropTypes.object, + }; + + static defaultProps = { + content: '', + trigger: '', + }; + + constructor(props) { + super(props); + this.handleMouseOver = this.handleMouseOver.bind(this); + this.handleMouseOut = this.handleMouseOut.bind(this); + this.handleClick = this.handleClick.bind(this); + this.handleOutsideClick = this.handleOutsideClick.bind(this); + this.state = { + isOpen: false, + }; + } + + handleMouseOver = () => { + this.setState({isOpen: true}); + }; + + handleMouseOut = () => { + this.setState({isOpen: false}); + }; + + handleClick = () => { + if (!this.state.isOpen) { + document.addEventListener('click', this.handleOutsideClick, false); + } else { + document.removeEventListener('click', this.handleOutsideClick, false); + } + this.setState({ + isOpen: this.state.isOpen, + }); + }; + + handleOutsideClick = (e) => { + if (this.node.contains(e.target)) { + return; + } + this.handleClick(); + }; + + + render() { + return ( +
+
+ {this.props.trigger} +
+
+ {this.state.isOpen && +
+ {this.props.content} +
+ } +
+
+ ); + } +} + +export default Tooltip; \ No newline at end of file diff --git a/components/graph/CourseInfoCard.jsx b/components/graph/CourseInfoCard.jsx new file mode 100644 index 0000000..9fc67e0 --- /dev/null +++ b/components/graph/CourseInfoCard.jsx @@ -0,0 +1,60 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +import { withStyles } from '@material-ui/core/styles'; +import Card from '@material-ui/core/Card'; +import CardContent from '@material-ui/core/CardContent'; +import CardHeader from '@material-ui/core/CardHeader'; +import Typography from '@material-ui/core/Typography'; + +/** + * Define the style of components on this page + * @param theme + * @return {object} + */ +const styles = theme => ({ + panel: { + 'maxWidth': 350, + 'maxHeight': 600, + // 'position': 'absolute', + 'margin-left': 'auto', + 'margin-right': 'auto', + 'z-index': 100, + 'top': theme.spacing.unit * 25, + 'right': theme.spacing.unit * 10, + }, +}); + +/** + * @param classes {object} + * @param label {string} + * @param title {string} + * @param description {string} + * @return {Element} + * @constructor + */ +const CourseInfoCard = ({classes, label, title, description}) => { + return ( + + + + {description || 'Unavailable'} + + + ); +}; + +CourseInfoCard.propTypes = { + classes: PropTypes.object.isRequired, + label: PropTypes.string.isRequired, + title: PropTypes.string.isRequired, + description: PropTypes.string.isRequired, +}; + +CourseInfoCard.defaultProps = { + title: 'Untitled', + description: 'Unavailable', + label: '- --', +}; + +export default withStyles(styles)(CourseInfoCard); diff --git a/components/graph/GraphView.jsx b/components/graph/GraphView.jsx new file mode 100644 index 0000000..b191e79 --- /dev/null +++ b/components/graph/GraphView.jsx @@ -0,0 +1,149 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import Graph from 'react-graph-vis'; + +import { withStyles } from '@material-ui/core/styles'; + +/** + * Define the style of components on this page + * @param theme + * @return {object} + */ +const styles = theme => ({ + fullpage: { + position: 'absolute', + top: 0, + bottom: 0, + left: 0, + right: 0, + overflow: 'hidden', + 'z-index': -1, + }, +}); + +/** + * vis.js graph configuration setting + * @type {object} + */ +const options = { + groups: { + useDefaultGroups: true, + myGroupId: { + /*node options*/ + }, + }, + layout: { + randomSeed: 666, + hierarchical: { + enabled: false, + sortMethod: 'hubsize', + }, + improvedLayout: true, + }, + edges: { + color: '#000000', + }, + width: '100%', + height: '100%', + autoResize: true, + nodes: { + shape: 'box', + color: '#89C4F4', + shapeProperties: { + borderRadius: 0, // only for box shape + }, + }, + physics: { + solver: 'forceAtlas2Based', + adaptiveTimestep: true, + stabilization: { + enabled: true, + iterations: 1, + updateInterval: 100, + onlyDynamicEdges: false, + fit: true, + }, + repulsion: { + nodeDistance: 250, + }, + }, + interaction: { + hover: true, + hoverConnectedEdges: false, + }, +}; + +/** + * @param dept {string} the Department name + * @return {object} + */ +const generateGroupObject = (dept) => { + // gen random color + + return { + color: {background: 'red'}, + }; +}; + +/** + * Takes the raw data received from the server, 'parser' it to add additional + * properties to the nodes. + * @param rawData + * @return {{data: object, departments: Set}} + */ +function parseGraphData(rawData) { + let graph = Object.assign({}, rawData); + let depts = new Set(); + + graph.nodes.forEach((node) => { + node.group = node.dept; + depts.add(node.dept); + }); + + return {graph, depts}; +} + +/** + * Wrapper to the Vis.js Graph. Handle additional Events. + */ +class GraphView extends Component { + static propTypes = { + classes: PropTypes.object.isRequired, + data: PropTypes.object.isRequired, + events: PropTypes.shape({ + select: PropTypes.func.isRequired, + hoverNode: PropTypes.func.isRequired, + blurNode: PropTypes.func.isRequired, + }).isRequired, + }; + + state = { + toolOpen: false, + toolNode: '', + popOpen: false, + popNode: '', + }; + + render() { + const {classes, data, events} = this.props; + + // Modify the graphData before passing to child component. + const {graph, depts} = parseGraphData(data); + + // Must inject the groups data into the options. + for (const department of depts) { + options.groups.myGroupId[department] = generateGroupObject(department); + } + + return ( +
+ +
+ ); + } +} + +export default withStyles(styles)(GraphView); diff --git a/components/graph/GraphViewAssembly.jsx b/components/graph/GraphViewAssembly.jsx new file mode 100644 index 0000000..861c73b --- /dev/null +++ b/components/graph/GraphViewAssembly.jsx @@ -0,0 +1,154 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +import filteredGraph from '../utils/filterAlgortithm'; +import GraphView from './GraphView'; +import SearchbarDrawer from '../searchbar/SearchbarDrawer'; +import CourseInfoCard from './CourseInfoCard'; + +/** + * GraphViewAssembly renders both drawers and the graph view. Takes a prop + * data. Which is the graph data of a school. + */ +class GraphViewAssembly extends Component { + static propTypes = { + data: PropTypes.object.isRequired, + }; + + state = { + graphData: {'nodes': [], 'edges': []}, + selectedIDs: [], + selectedNode: null, // the current node object on graph + }; + + /** + * @param selection + */ + updateSelected(selection) { + const {data} = this.props; + + let graph = filteredGraph(data.nodes, selection); + + // Update colors + // selection.forEach((selId) => { + // let needNewColorIndex = graph.nodes.findIndex((i) => i.id === selId); + // graph.nodes[needNewColorIndex].color = '#e04141'; + // }); + + this.setState({ + graphData: graph, + selectedIDs: selection, + }); + } + + /** + * @param nodeId {string} ? number I forgot + */ + selectNode(nodeId) { + const {selectedIDs} = this.state; + + // Skip if id is already selected + if (selectedIDs.includes(nodeId)) { + return; + } + + // Add to selection + update graph + let selected = selectedIDs.slice(); + selected.push(nodeId); + this.updateSelected(selected); + } + + /** + * @param nodeId {string} ? number I forgot + */ + deselectNode(nodeId) { + const {selectedIDs} = this.state; + + const index = selectedIDs.findIndex((element) => element === nodeId); + let selected = selectedIDs.slice(); + selected.splice(index, 1); + this.updateSelected(selected); + } + + /** + * WTF ???? + * @param nodeId + * @param event + */ + handleItemClick(nodeId, event) { + this.selectNode(nodeId); + } + + /** + * WTF ???? + * @param nodeId + * @param event + */ + handleSelectedClick(nodeId, event) { + this.deselectNode(nodeId); + } + + /** + * Passed to child component + * @type { + * {select: GraphView.events.select, + * hoverNode: GraphView.events.hoverNode, + * blurNode: GraphView.events.blurNode} + * } + */ + events = { + select: (event) => { + let {nodes} = event; + + this.setState({ + selectedNode: nodes.length > 0 ? this.getNode(nodes[0]) : null, + }); + }, + hoverNode: (event) => { + let {nodes} = event; + }, + blurNode: () => { + let {nodes} = event; + }, + }; + + /** + * @param id + * @returns {object} + */ + getNode(id) { + let arr = this.props.data.nodes; + let result = null; + + arr.forEach((node) => { + if (node.id == id) { // must use '==' instead of '===' + result = node; + } + }); + + return result; + } + + render() { + const {selectedNode} = this.state; + + return ( +
+ this.handleItemClick(event, id)} + selClick={(event, sel) => this.handleSelectedClick(event, sel)} + selected={this.state.selectedIDs} + /> + + {selectedNode && + } +
+ ); + } +} + +export default GraphViewAssembly; diff --git a/components/graph/GraphViewLoader.jsx b/components/graph/GraphViewLoader.jsx new file mode 100644 index 0000000..f76cf78 --- /dev/null +++ b/components/graph/GraphViewLoader.jsx @@ -0,0 +1,83 @@ +import React from 'react'; +import GraphViewAssembly from './GraphViewAssembly'; + +class LoadingMessage extends React.Component { + render() { + return ( +
+

Loading...

+ {this.props.url} +
+ ); + } +} +class LoadErrorMessage extends React.Component { + render() { + return ( +
+

Failed to load data from:

+ {this.props.url} +

{'' + this.props.error}

+
+ ); + } +} + +export default class GraphViewLoader extends React.Component { + constructor(props) { + super(props); + this.state = { + data: null, + dataLoadError: null, + }; + } + + setData(data) { + this.setState({ + data: { + nodes: data.nodes, + edges: data.edges, + }, + }); + } + + setDataError(error) { + this.setState({ + data: null, + dataLoadError: error, + }); + // alert(error); + } + + componentDidMount() { + console.log('Fetching data...'); + fetch(this.props.jsonDataUrl) + .then((response) => { + if (!response.ok) { + throw Error(response.statusText); + } + console.log('Got response'); + return response.json(); + }) + .then((data) => { + console.log('Got json data'); + this.setData(data); + }) + .catch((error) => { + console.log('Got error: ' + error); + this.setDataError(error); + }); + } + + render() { + if (this.state.dataLoadError) { + return ; + } + if (!this.state.data) { + return ; + } + return ; + } +} diff --git a/components/home/HomePanel.jsx b/components/home/HomePanel.jsx new file mode 100644 index 0000000..84da8f5 --- /dev/null +++ b/components/home/HomePanel.jsx @@ -0,0 +1,83 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import Router from 'next/router'; + +import { withStyles } from '@material-ui/core/styles'; +import Button from '@material-ui/core/Button'; +import Card from '@material-ui/core/Card'; +import CardActions from '@material-ui/core/CardActions'; +import CardContent from '@material-ui/core/CardContent'; +import Typography from '@material-ui/core/Typography'; + +/** + * Define the style of components on this page + * @param theme + * @return {object} + */ +const styles = theme => ({ + panel: { + 'maxWidth': 350, + 'position': 'absolute', + 'margin-left': 'auto', + 'margin-right': 'auto', + 'left': 0, + 'right': 0, + 'z-index': 100, + 'top': '50%', + 'transform': `translateY(-${50}%)`, + }, + button: { + 'margin': 'auto', + }, +}); + +/** + * @param href {string} + * @return {Function} + */ +const onClickHandler = (href) => (e) => { + e.preventDefault(); + Router.push(href); +}; + +/** + * @param classes + * @return {Element} + * @constructor + */ +const HomePanel = ({classes}) => { + return ( + + + + Course Graph + + + v2.0.0 + + + 🏅 A dynamic, browser based visualization course planner. + Designed to help students with course planning. + + + + + + + + ); +}; + +HomePanel.propTypes = { + classes: PropTypes.object, +}; + +export default withStyles(styles)(HomePanel); diff --git a/components/home/HomePanel.test.jsx b/components/home/HomePanel.test.jsx new file mode 100644 index 0000000..034bce2 --- /dev/null +++ b/components/home/HomePanel.test.jsx @@ -0,0 +1,11 @@ +import React from 'react'; +import { shallow } from 'enzyme'; + +import HomePanel from './HomePanel'; + +describe('A HomePanel', () => { + it('should render default header without throwing an error', () => { + const wrapper = shallow(); + expect(wrapper.text()).toEqual(''); + }); +}); diff --git a/components/login/Login.jsx b/components/login/Login.jsx new file mode 100644 index 0000000..e5dfc6c --- /dev/null +++ b/components/login/Login.jsx @@ -0,0 +1,100 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { withStyles } from '@material-ui/core/styles'; + +import TextField from '@material-ui/core/TextField'; +import Button from '@material-ui/core/Button'; + +import fetch from 'isomorphic-unfetch'; + +const styles = theme => ({ + container: { + display: 'flex', + flexWrap: 'wrap', + }, + card: { + minWidth: 275, + }, + button: { + margin: theme.spacing.unit * 3, + }, +}); + +/** + * Login Component that provide text fields and submit button. + * @inheritDoc + */ +class Login extends React.Component { + static propTypes = { + // classes: PropTypes.object.isRequired, + }; + + state = { + email: 'email', + password: '', + }; + + // Helpers + handleChange = (email, password) => (event) => { + this.setState({ + [email]: event.target.value, + [password]: event.target.value, + }); + }; + + handleSubmit = async (event) => { + event.preventDefault(); + + let data = { + email: this.state.email, + password: this.state.password, + }; + + // https://coursegraph.org/account/login + await fetch('http://localhost:8080/account/login', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(data), + }); + }; + + /** + * @return {Element} + */ + render() { + return (
+
+ + + + + + +
); + } +} + +export default withStyles(styles)(Login); diff --git a/components/searchbar/FloatingActionButton.jsx b/components/searchbar/FloatingActionButton.jsx new file mode 100644 index 0000000..c00aa54 --- /dev/null +++ b/components/searchbar/FloatingActionButton.jsx @@ -0,0 +1,56 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +import { withStyles } from '@material-ui/core/styles'; +import Button from '@material-ui/core/Button'; +import SearchIcon from '@material-ui/icons/Search'; + +/** + * Material UI theme styles. This Button can float above other components. + * @param theme + * @return {{ + * extendedIcon: {marginRight: number}, + * absolute: {position: string, top: number, left: number} + * }} + */ +const styles = theme => ({ + extendedIcon: { + 'marginRight': theme.spacing.unit, + }, + absolute: { + 'position': 'absolute', + 'top': theme.spacing.unit * 4, + 'left': theme.spacing.unit * 6, + }, +}); + +/** + * @param props + * @return {Element} + * @constructor + */ +class FloatingActionButtons extends React.Component { + static propTypes = { + classes: PropTypes.object.isRequired, + buttonClick: PropTypes.func.isRequired, + }; + + render() { + const {classes} = this.props; + + return ( +
+ +
+ ); + } +} + +export default withStyles(styles)(FloatingActionButtons); diff --git a/components/searchbar/SearchBar.jsx b/components/searchbar/SearchBar.jsx new file mode 100644 index 0000000..f3abafb --- /dev/null +++ b/components/searchbar/SearchBar.jsx @@ -0,0 +1,50 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import { withStyles } from '@material-ui/core/styles'; + +import TextField from '@material-ui/core/TextField'; + +/** + * Define the style of components on this page + * @param theme + * @return {object} + */ +const styles = theme => ({ + textField: { + marginLeft: theme.spacing.unit, + marginRight: theme.spacing.unit, + width: '90%', + }, +}); + +/** + * Simple Input interface that prompts input from user. + */ +class SearchBar extends Component { + static propTypes = { + classes: PropTypes.object.isRequired, + }; + + state = { + value: '', + }; + + onChange = (event) => { + this.setState({value: event.target.value}); + this.props.onChange(event.target.value); + }; + + render() { + const {classes} = this.props; + + return ( + ); + } +} + +export default withStyles(styles)(SearchBar); diff --git a/components/searchbar/SearchResultList.jsx b/components/searchbar/SearchResultList.jsx new file mode 100644 index 0000000..27cf08f --- /dev/null +++ b/components/searchbar/SearchResultList.jsx @@ -0,0 +1,71 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import { withStyles } from '@material-ui/core/styles'; + +import List from '@material-ui/core/List'; +import ListItem from '@material-ui/core/ListItem'; +import ListItemText from '@material-ui/core/ListItemText'; + +/** + * Define the style of components on this page + * @param theme + * @return {object} + */ +const styles = theme => ({ + listdiv: { + overflow: 'auto', + maxHeight: '400px', + maxWidth: '300px', + }, +}); + +/** + * List container that display the search result + */ +class SearchResultList extends Component { + static propTypes = { + classes: PropTypes.object.isRequired, + courses: PropTypes.array.isRequired, + }; + + state = { + visibleElements: 40, + }; + + // This is here because it needs to get scrollHeight and scrollTop of a div, + // taken any higher this is not possible. + onListScroll = (event) => { + const el = document.getElementById('listDiv'); // WTF???????? + + if ((el.scrollHeight - el.scrollTop) < 810) { + let newVisibleElements = this.state.visibleElements + 40; + this.setState({ + visibleElements: newVisibleElements, + }); + } + }; + + render() { + const {classes} = this.props; + + let courses = this.props.courses.slice(0, this.state.visibleElements); + + return ( +
+ {courses.map((course) => ( + + + + ))} +
+ ); + } +} + +export default withStyles(styles)(SearchResultList); diff --git a/components/searchbar/SearchbarAssembly.jsx b/components/searchbar/SearchbarAssembly.jsx new file mode 100644 index 0000000..5234a22 --- /dev/null +++ b/components/searchbar/SearchbarAssembly.jsx @@ -0,0 +1,65 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +import { withStyles } from '@material-ui/core/styles'; +import Divider from '@material-ui/core/Divider'; + +import { levenshtein, match } from '../utils/levenshtien'; +import SearchResultList from './SearchResultList'; +import SearchBar from './SearchBar'; + +const styles = theme => ({ + container: { + 'max-width': 300, + }, +}); + + +class SearchbarAssembly extends Component { + static propTypes = { + classes: PropTypes.object.isRequired, + courses: PropTypes.array.isRequired, + }; + + state = { + searchQuery: '', + }; + + tempArrayA = []; + tempArrayB = []; + + updateSearch(search) { + this.setState({ + searchQuery: search, + }); + } + + render() { + const {classes, courses} = this.props; + + const searchQuery = this.state.searchQuery; + let filteredData = courses.filter(match(searchQuery)); + + filteredData.forEach((course) => { + course.priority = levenshtein( + searchQuery.toLowerCase(), + course.searchString.toLowerCase(), + this.tempArrayA, + this.tempArrayB + ); + }); + + filteredData.sort((a, b) => a.priority > b.priority); + + return ( +
+ this.updateSearch(search)}/> + + this.props.itemClick(event, id)}/> +
+ ); + } +} + +export default withStyles(styles)(SearchbarAssembly); diff --git a/components/searchbar/SearchbarDrawer.jsx b/components/searchbar/SearchbarDrawer.jsx new file mode 100644 index 0000000..e42dd52 --- /dev/null +++ b/components/searchbar/SearchbarDrawer.jsx @@ -0,0 +1,55 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +import Drawer from '@material-ui/core/Drawer'; +import Divider from '@material-ui/core/Divider'; + +import SearchbarAssembly from '../searchbar/SearchbarAssembly'; +import SelectedList from '../searchbar/SelectedList'; +import FloatingActionButton from '../searchbar/FloatingActionButton'; + +/** + * Component that you can trigger a button to open the drawer. + */ +class SearchbarDrawer extends Component { + static propTypes = { + classes: PropTypes.object, + courses: PropTypes.array.isRequired, + selected: PropTypes.array.isRequired, + itemClick: PropTypes.func.isRequired, + selClick: PropTypes.func.isRequired, + }; + + state = { + isOpen: false, + }; + + toggleDrawer = (open) => () => { + this.setState({ + isOpen: open, + }); + }; + + render() { + const {courses, selected, selClick, itemClick} = this.props; + + return ( +
+ + + itemClick(event, id)}/> + + selClick(event, sel)}/> + +
+ ); + } +} + +export default SearchbarDrawer; diff --git a/components/searchbar/SelectedList.jsx b/components/searchbar/SelectedList.jsx new file mode 100644 index 0000000..3461d84 --- /dev/null +++ b/components/searchbar/SelectedList.jsx @@ -0,0 +1,68 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +import Paper from '@material-ui/core/Paper'; +import Chip from '@material-ui/core/Chip'; +import { withStyles } from '@material-ui/core/styles/index'; + +/** + * Define the style of components on this page + * @param theme + * @return {object} + */ +const styles = theme => ({ + select: { + maxWidth: '300px', + overflow: 'auto', + maxHeight: '300px', + }, + text: { + fontSize: 10, + }, +}); + +/** + * Generate a list of Elements + * @param classes + * @param courses + * @param selClick + * @param selected + * @return {Element} + */ +const createChips = (classes, courses, selClick, selected) => + selected.map((course) => ( + + )); + +/** + * An Chip container that user can select and deselect nodes on the graph + */ +class SelectedList extends Component { + static propTypes = { + classes: PropTypes.object, + courses: PropTypes.array.isRequired, + selClick: PropTypes.func.isRequired, + selected: PropTypes.array.isRequired, + }; + + render() { + const {classes, courses, selClick, selected} = this.props; + + return ( +
+ + {createChips(classes, courses, selClick, selected)} + +
+ ); + } +} + +export default withStyles(styles)(SelectedList); diff --git a/components/utils/GraphSelection.js b/components/utils/GraphSelection.js new file mode 100644 index 0000000..e54b0f2 --- /dev/null +++ b/components/utils/GraphSelection.js @@ -0,0 +1,257 @@ +//Graph Selection class + +class GraphSelection { + constructor(nodes, ids) { + this.nodeMap = new Map(); + this.edgeMap = new Map(); + //Leaves them as empty maps if not args provided + if (typeof (nodes) === 'object' && typeof (ids) !== 'undefined') { + buildGraph(nodes, ids, this.nodeMap, this.edgeMap); + } + } + + addNodes(nodes, ids) { + buildGraph(nodes, ids, this.nodeMap, this.edgeMap); + } + + removeNodes(nodes, ids) { + cleanGraph(nodes, ids, this.nodeMap, this.edgeMap); + } + + clear() { + this.nodeMap.clear(); + this.edgeMap.clear(); + } + + getGraphData() { + const graphEdges = this.edgeMap.values(); + const graphNodes = this.nodeMap.values(); + const graphData = { + edges: Array.from(graphEdges), + nodes: Array.from(graphNodes), + }; + return graphData; + } + + + +} + + + +function addFromEdges(nodes, id, nodeMap, edgeMap) { + const edgesFrom = nodes[id].edges_from; + + edgesFrom.forEach((fromID, index) => { + //Give every edge a unique key + edgeMap.set( + `${fromID}_${id}`, + {'from': fromID, 'to': id} + ); + if (!nodeMap.has(fromID)) { + nodeMap.set(fromID, nodes[fromID]); + addFromEdges(nodes, fromID, nodeMap, edgeMap); + } + }); +} + +function buildGraph(nodes, ids, nodeMap, edgeMap) { + + if (typeof (ids) === 'number') { + if (!nodeMap.has(ids)) { + nodeMap.set(ids, nodes[ids]); + addFromEdges(nodes, ids, nodeMap, edgeMap); + } + } else { + ids.forEach((id) => { + if (!nodeMap.has(id)) { + nodeMap.set(id, nodes[ids]); + addFromEdges(nodes, id, nodeMap, edgeMap); + } + }); + } + console.log(edgeMap); +} + +function cleanFromEdges(nodes, id, nodeMap, edgeMap) { + const edgesFrom = nodes[id].edges_from; + const edgesTo = nodes[id].edges_to; + nodeMap.delete(id); + //console.log(`recieved edges from: ${edgesFrom}`); + + //Delete edges by their unique key + edgesTo.forEach((toID, index) => { + console.log(`removing key: ${index}_${id}`); + edgeMap.delete(`${index}_${id}`); + }); + edgesFrom.forEach((fromID, index) => { + console.log(`removing key: ${id}_${index}`); + edgeMap.delete(`${fromID}_${id}`); + if (nodeMap.delete(fromID)) { + cleanFromEdges(nodes, fromID, nodeMap, edgeMap); + } + }); + +} + +function cleanGraph(nodes, ids, nodeMap, edgeMap) { + console.log('in clean'); + if (typeof (ids) === 'number') { + if (nodeMap.has(ids)) { + console.log('number clean'); + cleanFromEdges(nodes, ids, nodeMap, edgeMap); + } + } else { + console.log('somehow here'); + ids.forEach( (id) => { + if (nodeMap.has(id)) { + cleanFromEdges(nodes, id, nodeMap, edgeMap); + } + }); + } +} +//export default GraphSelection; + +const nodes = [ + { + 'dept': 'life', + 'description': 'being able to make good use of college', + 'edges_from': [ + 4, + 5, + ], + 'edges_to': [ + 1, + ], + 'id': 0, + 'label': 'CL 101', + 'title': 'How to College', + }, + { + 'dept': 'life', + 'description': 'Doing more advanced college stuff', + 'edges_from': [ + 0, + ], + 'edges_to': [ + 2, + 3, + ], + 'id': 1, + 'label': 'CL 102', + 'title': 'Advanced college', + }, + { + 'dept': 'life', + 'description': 'Welcome to the real world ya pansy!', + 'edges_from': [ + 1, + ], + 'edges_to': [], + 'id': 2, + 'label': 'RL 7', + 'title': 'REAL LIFE', + }, + { + 'dept': 'Life', + 'description': 'Your educated, now getting rich', + 'edges_from': [ + 1, + ], + 'edges_to': [], + 'id': 3, + 'label': 'RL M2', + 'title': 'Getting Money', + }, + { + 'dept': 'PD', + 'description': 'You are not that important, accept it', + 'edges_from': [ + 8, + ], + 'edges_to': [ + 0, + ], + 'id': 4, + 'label': 'PD 42', + 'title': 'Getting over yourself', + }, + { + 'dept': 'HS', + 'description': 'A totally wonderful time', + 'edges_from': [ + 6, + 7, + ], + 'edges_to': [ + 0, + ], + 'id': 5, + 'label': 'HS K', + 'title': 'High School stuff', + }, + { + 'dept': 'HS', + 'description': 'seeing how terrible people, especially kids, are', + 'edges_from': [ + 8, + ], + 'edges_to': [ + 5, + ], + 'id': 6, + 'label': 'HS 69', + 'title': 'Petty School Drama', + }, + { + 'dept': 'PD', + 'description': 'the essential stage of life that is childhood', + 'edges_from': [], + 'edges_to': [ + 5, + ], + 'id': 7, + 'label': 'PD 3', + 'title': 'Kid stuff', + }, + { + 'dept': 'PD', + 'description' : 'we have all been *that* person before', + 'edges_from' : [], + 'edges_to' : [ + 4, + 6, + ], + 'id' : 8, + 'label' : 'PD FU', + 'title' : 'Being a snot nosed brat', + }, + { + 'dept': '=/', + 'description': 'question mark', + 'edges_from': [], + 'edges_to': [], + 'id': 9, + 'label': 'whatevs', + 'title': 'whatevs', + }, +]; + +function outPut(graph) { + const data = graph.getGraphData(); + console.log('NEW OUTPUT SEGMENT STARTS HERE!'); + data.nodes.forEach( (x) => { + console.log(x.id); + }); + console.log(data.edges); +} + +let myGraph = new GraphSelection(nodes, 0); +outPut(myGraph); + +//myGraph.addNodes(nodes, 3); +//outPut(myGraph); + +myGraph.removeNodes(nodes, 5); +myGraph.clear(); +outPut(myGraph); diff --git a/components/utils/filterAlgortithm.js b/components/utils/filterAlgortithm.js new file mode 100644 index 0000000..c1172dc --- /dev/null +++ b/components/utils/filterAlgortithm.js @@ -0,0 +1,191 @@ +const nodes = [ + { + 'dept': 'life', + 'description': 'being able to make good use of college', + 'edges_from': [ + 4, + 5, + ], + 'edges_to': [ + 1, + ], + 'id': 0, + 'label': 'CL 101', + 'title': 'How to College', + }, + { + 'dept': 'life', + 'description': 'Doing more advanced college stuff', + 'edges_from': [ + 0, + ], + 'edges_to': [ + 2, + 3, + ], + 'id': 1, + 'label': 'CL 102', + 'title': 'Advanced college', + }, + { + 'dept': 'life', + 'description': 'Welcome to the real world ya pansy!', + 'edges_from': [ + 1, + ], + 'edges_to': [], + 'id': 2, + 'label': 'RL 7', + 'title': 'REAL LIFE', + }, + { + 'dept': 'Life', + 'description': 'Your educated, now getting rich', + 'edges_from': [ + 1, + ], + 'edges_to': [], + 'id': 3, + 'label': 'RL M2', + 'title': 'Getting Money', + }, + { + 'dept': 'PD', + 'description': 'You are not that important, accept it', + 'edges_from': [ + 8, + ], + 'edges_to': [ + 0, + ], + 'id': 4, + 'label': 'PD 42', + 'title': 'Getting over yourself', + }, + { + 'dept': 'HS', + 'description': 'A totally wonderful time', + 'edges_from': [ + 6, + 7, + ], + 'edges_to': [ + 0, + ], + 'id': 5, + 'label': 'HS K', + 'title': 'High School stuff', + }, + { + 'dept': 'HS', + 'description': 'seeing how terrible people, especially kids, are', + 'edges_from': [ + 8, + ], + 'edges_to': [ + 5, + ], + 'id': 6, + 'label': 'HS 69', + 'title': 'Petty School Drama', + }, + { + 'dept': 'PD', + 'description': 'the essential stage of life that is childhood', + 'edges_from': [], + 'edges_to': [ + 5, + ], + 'id': 7, + 'label': 'PD 3', + 'title': 'Kid stuff', + }, + { + 'dept': 'PD', + 'description' : 'we have all been *that* person before', + 'edges_from' : [], + 'edges_to' : [ + 4, + 6, + ], + 'id' : 8, + 'label' : 'PD FU', + 'title' : 'Being a snot nosed brat', + }, + { + 'dept': '=/', + 'description': 'question mark', + 'edges_from': [], + 'edges_to': [], + 'id': 9, + 'label': 'whatevs', + 'title': 'whatevs', + }, +]; + +function doFromEdges(nodes, id, newNodes, newEdges) { + const edgesFrom = nodes[id].edges_from; + + edgesFrom.forEach((fromID) => { + newEdges.push({ + 'from': fromID, + 'to': id, + }); + if (!newNodes.has(fromID)) { + newNodes.set(fromID, false); + doFromEdges(nodes, fromID, newNodes, newEdges); + } + }); +} + +/** + * @param nodes Array. + * @param ids Array. + * @returns {{edges: Array, nodes: Array}} + */ + +function filteredGraph(nodes, ids) { + let newNodes = new Map(); + let edgeList = []; + + if (typeof (ids) === 'number') { + if (!newNodes.has(ids)) { + newNodes.set(ids, false); + doFromEdges(nodes, ids, newNodes, edgeList); + } + } else { + ids.forEach((id) => { + if (!newNodes.has(id)) { + newNodes.set(id, false); + doFromEdges(nodes, id, newNodes, edgeList); + } + }); + } + + + //console.log(edgeList); + //console.log(newNodes); + const graphNodes = []; + newNodes.forEach((_, id) => { graphNodes.push(nodes[id]) }); + const newGraph = { + 'edges' : edgeList, + 'nodes': graphNodes, + }; + + // console.log('nodelist:'); + // console.log(newNodes); + // console.log('edges'); + // console.log(edgeList); + + return newGraph; +} + +//shitty output tests? +//const graph = filteredGraph(nodes, [0, 3]); + +//console.log('GRAPH:'); +//console.log(graph); +//filteredGraph(nodes, 10) + + +export default filteredGraph; diff --git a/components/utils/levenshtien.js b/components/utils/levenshtien.js new file mode 100644 index 0000000..ee7d821 --- /dev/null +++ b/components/utils/levenshtien.js @@ -0,0 +1,61 @@ + + +export function levenshtein(q, s, A, B) { + let n = q.length; + let m = s.length; + + A.length = n + 1; + B.length = n + 1; + for (let i = n + 1; i-- > 0;) { + A[i] = i; + B[i] = 0; + } + for (let j = 0; j < m; ++j) { + let x = j; + for (let i = 0; i < n; ++i) { + x = B[i + 1] = Math.min( + Math.min(x, A[i + 1]) + 1, + q[i] != s[j] ? A[i] + 1 : 0); + } + let C = A; + A = B; + B = C; + } + return A[n]; +} + +export function match(q) { + return (course) => { + course.searchString = (course.label + course.title + course.descr).toLowerCase(); + return fuzzyMatch(q.toLowerCase(), course.searchString); + }; +} + + +function fuzzyMatch(q, s) { + let i = s.length; + let j = q.length; + while (j !== 0 && i >= j) { + if (s[i - 1] === q[j - 1]) { + --j; + } + --i; + } + return j === 0; +} + + +// def lev (a, b): +// n, m = len(a), len(b) +// row, prev = [0] * (n + 1), [0] * (n + 1) +// for i in range(n): +// prev[i] = i +// for j in range(m): +// x = j +// for i in range(n): +// x = row[i + 1] = min( +// min(x, prev[i + 1]) + 1, +// prev[i] + 1 if a[i] != b[j] else 0) +// row, prev = prev, row +// return prev[n] + diff --git a/crawlers/ucsd/ucsd_crawler.py b/crawlers/ucsd/ucsd_crawler.py index b208d20..abbf712 100644 --- a/crawlers/ucsd/ucsd_crawler.py +++ b/crawlers/ucsd/ucsd_crawler.py @@ -54,8 +54,8 @@ def process_course (name, title, descr): prereq_requirements = set() def requirement (*reqs): def sub (stuff): - for req in reqs: - prereq_requirements.add(req) + # for req in reqs: + # prereq_requirements.add(req) return '' return sub diff --git a/crawlers/ucsd/ucsd_graph_gen.py b/crawlers/ucsd/ucsd_graph_gen.py index 17c2a1f..1ac6f8f 100644 --- a/crawlers/ucsd/ucsd_graph_gen.py +++ b/crawlers/ucsd/ucsd_graph_gen.py @@ -12,7 +12,7 @@ def insert_entity (name, info): 'label': name, 'title': info['title'] if 'title' in info else '', 'dept': info['dept'] if 'dept' in info else name.strip().split()[0], - 'desc': info['desc'] if 'desc' in info else '', + 'description': info['description'] if 'description' in info else '', 'edges_from': set(), 'edges_to': set() }) diff --git a/data/faker.json b/data/faker.json deleted file mode 100644 index 0090ec0..0000000 --- a/data/faker.json +++ /dev/null @@ -1 +0,0 @@ -[{"course_title":"Green Group","course_number":49380,"instructor":"Zoie Botsford","location":"820 Kutch Vista","time":"2018-07-14T13:25:41.155Z","enrolled":63264,"book":"http://randall.net","course_url":"https://josue.net"},{"course_title":"Bogisich - Hamill","course_number":68975,"instructor":"Dr. Shaylee Cartwright","location":"60401 Deckow Overpass","time":"2018-07-14T06:13:12.271Z","enrolled":76657,"book":"http://rupert.com","course_url":"http://griffin.net"},{"course_title":"Reichert, Cruickshank and Becker","course_number":20763,"instructor":"Mrs. Amelia Reinger","location":"294 Leannon Skyway","time":"2018-07-14T22:02:23.629Z","enrolled":49806,"book":"https://porter.com","course_url":"http://keshaun.org"},{"course_title":"Haley - Doyle","course_number":24742,"instructor":"Brenna Auer","location":"231 Homenick Shore","time":"2018-07-14T18:17:32.660Z","enrolled":11858,"book":"https://fredrick.com","course_url":"http://julien.com"},{"course_title":"Funk LLC","course_number":23125,"instructor":"Antonina Von","location":"00209 Dickinson Throughway","time":"2018-07-14T03:39:46.587Z","enrolled":35355,"book":"https://immanuel.org","course_url":"https://tre.com"},{"course_title":"Raynor Group","course_number":18944,"instructor":"Dr. Reina Howell","location":"8245 Mueller Views","time":"2018-07-14T22:37:48.528Z","enrolled":3452,"book":"https://jammie.info","course_url":"http://brown.net"},{"course_title":"Franecki and Sons","course_number":21833,"instructor":"Mittie Mitchell","location":"43092 Kunze Mall","time":"2018-07-14T15:13:38.894Z","enrolled":45776,"book":"https://johathan.info","course_url":"https://elwin.org"},{"course_title":"McLaughlin LLC","course_number":32743,"instructor":"Jesus Towne I","location":"08773 Balistreri Avenue","time":"2018-07-14T21:21:36.827Z","enrolled":21728,"book":"http://isidro.info","course_url":"http://korey.biz"},{"course_title":"O'Conner LLC","course_number":14191,"instructor":"Dr. Yoshiko Nikolaus","location":"99552 Davis Island","time":"2018-07-14T14:16:38.763Z","enrolled":20746,"book":"http://creola.net","course_url":"https://rowan.info"},{"course_title":"Murphy - Greenholt","course_number":21015,"instructor":"Johanna Block","location":"834 Leonel Track","time":"2018-07-14T06:42:16.168Z","enrolled":82352,"book":"http://colten.com","course_url":"https://gus.name"},{"course_title":"Waters, Schmitt and Hessel","course_number":84474,"instructor":"Cayla Runolfsson","location":"4536 King Park","time":"2018-07-14T10:09:36.340Z","enrolled":13329,"book":"https://christine.info","course_url":"http://orval.org"},{"course_title":"Cummings LLC","course_number":26423,"instructor":"Marshall Adams","location":"9296 Yundt Meadows","time":"2018-07-14T04:25:41.586Z","enrolled":60928,"book":"http://bridgette.org","course_url":"http://maude.name"},{"course_title":"Mayer - Luettgen","course_number":93846,"instructor":"Mariah Carter","location":"77563 O'Keefe Bypass","time":"2018-07-14T10:39:27.665Z","enrolled":34497,"book":"http://johnnie.biz","course_url":"https://domenic.info"},{"course_title":"Walter, Daugherty and Russel","course_number":56988,"instructor":"Orpha Weissnat","location":"30856 Franecki Brook","time":"2018-07-14T12:59:03.012Z","enrolled":65126,"book":"https://francisca.com","course_url":"https://reanna.info"},{"course_title":"Thiel LLC","course_number":83646,"instructor":"Ms. Deron O'Conner","location":"1189 Sporer Haven","time":"2018-07-14T07:36:13.300Z","enrolled":29502,"book":"http://trevor.name","course_url":"http://annie.name"},{"course_title":"Turcotte Group","course_number":61277,"instructor":"Ressie Rau","location":"138 Welch Curve","time":"2018-07-14T14:02:24.932Z","enrolled":24870,"book":"http://jerome.org","course_url":"https://adah.name"},{"course_title":"Emard Group","course_number":31124,"instructor":"Maverick Abbott V","location":"37760 Keely Loop","time":"2018-07-14T13:33:40.703Z","enrolled":93202,"book":"http://fabiola.name","course_url":"https://tanya.biz"},{"course_title":"Botsford - Little","course_number":72917,"instructor":"Olin Bahringer","location":"2558 Emile Path","time":"2018-07-14T05:54:40.472Z","enrolled":99489,"book":"https://chloe.info","course_url":"https://luz.name"},{"course_title":"Barton, Wisoky and Von","course_number":92096,"instructor":"Arturo Weissnat","location":"39090 Gutmann Mountains","time":"2018-07-14T09:52:07.201Z","enrolled":61271,"book":"https://rylee.biz","course_url":"http://celine.biz"},{"course_title":"Greenholt, Ledner and Schmidt","course_number":13599,"instructor":"Jules Wilkinson","location":"36174 Grady Forges","time":"2018-07-14T19:24:51.509Z","enrolled":29844,"book":"http://leon.info","course_url":"http://audrey.com"},{"course_title":"Kirlin, Muller and Schmidt","course_number":84556,"instructor":"Prudence Crooks III","location":"191 Carrie Camp","time":"2018-07-14T05:42:47.384Z","enrolled":60524,"book":"http://edison.biz","course_url":"https://jovanny.com"},{"course_title":"Labadie - Hermann","course_number":75490,"instructor":"Antwon Christiansen","location":"8725 Brooklyn Rue","time":"2018-07-14T13:28:18.442Z","enrolled":29533,"book":"https://buddy.com","course_url":"https://kyra.net"},{"course_title":"Balistreri - Jones","course_number":3784,"instructor":"Emelie Rath","location":"875 Kuhn Coves","time":"2018-07-13T23:34:45.388Z","enrolled":53323,"book":"http://hiram.name","course_url":"http://forest.name"},{"course_title":"Schmidt - Luettgen","course_number":72982,"instructor":"Gardner Turner","location":"220 Lyla Road","time":"2018-07-14T13:14:35.303Z","enrolled":70066,"book":"https://declan.org","course_url":"http://jessy.com"},{"course_title":"Greenfelder LLC","course_number":6526,"instructor":"Mrs. Jayce Frami","location":"8241 Cruickshank Hollow","time":"2018-07-14T07:26:34.453Z","enrolled":45554,"book":"http://laurel.org","course_url":"http://hattie.info"},{"course_title":"Stamm Group","course_number":84599,"instructor":"Tremaine Beier","location":"211 Johnson Gateway","time":"2018-07-14T01:46:44.433Z","enrolled":63615,"book":"http://filomena.com","course_url":"https://lucy.name"},{"course_title":"Deckow - Adams","course_number":97701,"instructor":"Lizeth Turcotte","location":"91967 VonRueden Lodge","time":"2018-07-14T07:54:46.258Z","enrolled":32351,"book":"https://amina.net","course_url":"http://nina.org"},{"course_title":"Renner, Lemke and Leannon","course_number":8802,"instructor":"Leonard King","location":"227 Eliane Ports","time":"2018-07-14T15:02:02.499Z","enrolled":29237,"book":"https://jedediah.org","course_url":"https://christine.name"},{"course_title":"Ryan, Considine and Schiller","course_number":80155,"instructor":"Rhoda Torp","location":"28921 Huel Summit","time":"2018-07-14T08:34:57.539Z","enrolled":45854,"book":"https://odie.info","course_url":"http://eveline.name"},{"course_title":"Jaskolski Group","course_number":9578,"instructor":"Dedrick Zemlak II","location":"197 Walsh Rapids","time":"2018-07-14T08:03:50.808Z","enrolled":12858,"book":"http://jett.name","course_url":"https://luigi.info"},{"course_title":"Brown Group","course_number":72906,"instructor":"Otis Zemlak","location":"892 Gorczany Lock","time":"2018-07-14T18:58:33.262Z","enrolled":65932,"book":"https://shannon.biz","course_url":"https://alvena.com"},{"course_title":"Larson, Schmidt and Cummerata","course_number":51457,"instructor":"Miss Deron Konopelski","location":"116 Elroy Brooks","time":"2018-07-14T00:52:50.608Z","enrolled":83813,"book":"http://sienna.biz","course_url":"http://ayden.net"},{"course_title":"Kovacek, Corkery and Balistreri","course_number":75885,"instructor":"Cullen Mraz","location":"469 Malachi Landing","time":"2018-07-14T11:33:41.547Z","enrolled":35684,"book":"https://tyler.info","course_url":"https://rebecca.com"},{"course_title":"Bosco LLC","course_number":7322,"instructor":"Pasquale Schmeler","location":"0215 Hauck Vista","time":"2018-07-14T12:15:15.633Z","enrolled":31699,"book":"https://houston.org","course_url":"https://pat.net"},{"course_title":"Rau, Dach and Bradtke","course_number":50796,"instructor":"Rene Jones","location":"23195 Crona Dale","time":"2018-07-14T02:33:21.030Z","enrolled":77697,"book":"https://mason.biz","course_url":"http://dereck.org"},{"course_title":"O'Reilly - Brakus","course_number":95340,"instructor":"Rahsaan Emmerich V","location":"6098 Haley Islands","time":"2018-07-14T04:44:23.980Z","enrolled":26630,"book":"https://tyrique.info","course_url":"https://bridie.com"},{"course_title":"Armstrong, Zemlak and Heathcote","course_number":64013,"instructor":"Melvina Bernier Sr.","location":"650 Thompson Lake","time":"2018-07-14T11:48:02.036Z","enrolled":69616,"book":"http://kareem.net","course_url":"http://okey.net"},{"course_title":"Mertz, Kshlerin and Wyman","course_number":58675,"instructor":"Billie Hills","location":"0589 Brooks Tunnel","time":"2018-07-14T03:09:40.051Z","enrolled":29989,"book":"https://iliana.info","course_url":"http://amari.net"},{"course_title":"Hand - O'Reilly","course_number":90469,"instructor":"Ms. Shanel Renner","location":"678 Becker Union","time":"2018-07-14T09:39:36.853Z","enrolled":37954,"book":"https://nedra.info","course_url":"https://shawn.com"},{"course_title":"Shields - Murphy","course_number":86544,"instructor":"Osborne Spencer","location":"680 Victor Overpass","time":"2018-07-14T04:59:27.276Z","enrolled":14720,"book":"http://chet.com","course_url":"http://nikolas.name"},{"course_title":"Kutch Group","course_number":59559,"instructor":"Jacey Quigley III","location":"467 Trycia Mountains","time":"2018-07-14T06:21:09.446Z","enrolled":10815,"book":"http://ines.com","course_url":"https://cora.name"},{"course_title":"Paucek Group","course_number":93502,"instructor":"Dr. Americo Ernser","location":"9357 Anais Vista","time":"2018-07-14T09:41:29.584Z","enrolled":19011,"book":"https://retha.biz","course_url":"http://stefanie.biz"},{"course_title":"Berge Group","course_number":62632,"instructor":"Wade Leffler","location":"4103 Clifton Junction","time":"2018-07-14T09:33:51.742Z","enrolled":93395,"book":"http://jovani.net","course_url":"https://thaddeus.biz"},{"course_title":"Kiehn and Sons","course_number":2820,"instructor":"Michelle Waelchi","location":"67575 Art Mission","time":"2018-07-14T21:34:57.088Z","enrolled":5702,"book":"http://arnold.net","course_url":"http://sierra.biz"},{"course_title":"Wisoky - Morissette","course_number":10116,"instructor":"Emery Lindgren","location":"943 Zulauf Loaf","time":"2018-07-14T06:57:48.778Z","enrolled":24579,"book":"https://bailey.org","course_url":"http://stanton.net"},{"course_title":"Mayert and Sons","course_number":61544,"instructor":"Miss Dimitri Batz","location":"3305 Gerlach Shore","time":"2018-07-14T13:02:18.886Z","enrolled":26237,"book":"http://pasquale.com","course_url":"http://gabrielle.com"},{"course_title":"Marvin - Koelpin","course_number":72901,"instructor":"Miss Ryann Mraz","location":"530 Issac Lodge","time":"2018-07-14T07:07:02.025Z","enrolled":88532,"book":"http://leatha.name","course_url":"http://linda.info"},{"course_title":"Kautzer, Cormier and Keebler","course_number":98281,"instructor":"Mr. Quinten Leffler","location":"325 Armstrong Rest","time":"2018-07-14T13:40:01.540Z","enrolled":72472,"book":"https://dylan.biz","course_url":"https://mariano.name"},{"course_title":"Stiedemann LLC","course_number":35587,"instructor":"Vinnie Heller","location":"357 Chyna Island","time":"2018-07-14T10:56:13.610Z","enrolled":57323,"book":"http://neil.com","course_url":"http://beryl.net"},{"course_title":"Keeling - Bogisich","course_number":87533,"instructor":"Josianne Medhurst Jr.","location":"7290 Kub Mission","time":"2018-07-14T09:04:48.703Z","enrolled":40577,"book":"http://cassidy.name","course_url":"http://hans.net"},{"course_title":"Reilly, Becker and Skiles","course_number":26330,"instructor":"Brody Goodwin","location":"94605 Fritsch Track","time":"2018-07-14T03:32:56.703Z","enrolled":36743,"book":"http://ashley.com","course_url":"http://ethyl.info"},{"course_title":"Franecki Group","course_number":41646,"instructor":"Neil West","location":"883 Prosacco Islands","time":"2018-07-14T03:57:47.529Z","enrolled":3070,"book":"http://laron.info","course_url":"http://maegan.com"},{"course_title":"Willms - Brown","course_number":5590,"instructor":"Eleanore Kiehn","location":"704 Schuster Throughway","time":"2018-07-14T03:35:42.436Z","enrolled":40879,"book":"https://jerod.net","course_url":"http://jodie.org"},{"course_title":"Wunsch - Barton","course_number":52580,"instructor":"Fern Pfeffer Sr.","location":"3190 Bergstrom Village","time":"2018-07-14T09:04:52.157Z","enrolled":18619,"book":"https://jordi.org","course_url":"https://ida.net"},{"course_title":"Klein, Brakus and Reichel","course_number":81054,"instructor":"Tevin Bartell","location":"4162 Bins Trafficway","time":"2018-07-14T01:27:53.729Z","enrolled":59305,"book":"https://annalise.com","course_url":"https://audie.net"},{"course_title":"Vandervort Inc","course_number":26661,"instructor":"Kavon Lockman","location":"118 Sandy Radial","time":"2018-07-14T02:34:46.092Z","enrolled":23202,"book":"http://taya.org","course_url":"http://ross.info"},{"course_title":"McClure - Dietrich","course_number":1747,"instructor":"Deontae Mertz","location":"5888 Aidan Radial","time":"2018-07-14T22:03:43.451Z","enrolled":17454,"book":"https://asia.info","course_url":"http://albina.net"},{"course_title":"Aufderhar Inc","course_number":82687,"instructor":"Marta Sanford","location":"492 Khalid Walk","time":"2018-07-14T13:51:36.291Z","enrolled":9498,"book":"http://keyon.info","course_url":"https://dino.name"},{"course_title":"Collier - Stiedemann","course_number":71274,"instructor":"Lacey Yundt PhD","location":"72103 Helga Points","time":"2018-07-14T22:48:31.013Z","enrolled":38665,"book":"https://alysha.info","course_url":"http://katelyn.com"},{"course_title":"Lowe Group","course_number":8475,"instructor":"Meagan Runolfsdottir","location":"52742 Schimmel Brooks","time":"2018-07-14T12:15:58.977Z","enrolled":95257,"book":"https://sanford.info","course_url":"http://piper.info"},{"course_title":"McGlynn, Kassulke and Collins","course_number":41136,"instructor":"Linnea Sauer","location":"9587 Sabina Radial","time":"2018-07-14T20:24:16.515Z","enrolled":88438,"book":"http://gerald.org","course_url":"https://nettie.com"},{"course_title":"Bogan, Kulas and Kulas","course_number":96589,"instructor":"Anderson Mitchell","location":"444 Shawn Lane","time":"2018-07-14T08:46:11.682Z","enrolled":24397,"book":"https://fae.name","course_url":"https://felicia.net"},{"course_title":"Kshlerin Group","course_number":46664,"instructor":"Miss Ruthe Dickens","location":"42092 Winifred Pine","time":"2018-07-14T02:59:14.838Z","enrolled":69841,"book":"https://art.biz","course_url":"https://rylan.biz"},{"course_title":"Bins, Pollich and Luettgen","course_number":61491,"instructor":"Russel Kutch MD","location":"741 Neoma Prairie","time":"2018-07-14T13:11:18.343Z","enrolled":25664,"book":"http://halle.org","course_url":"http://clement.org"},{"course_title":"Steuber - Marquardt","course_number":92405,"instructor":"Garrick Maggio","location":"9846 Runolfsson Isle","time":"2018-07-14T21:22:56.806Z","enrolled":25999,"book":"https://vance.net","course_url":"http://misael.info"},{"course_title":"Senger, Ernser and Moen","course_number":43339,"instructor":"Miguel Pouros","location":"902 Lubowitz Lock","time":"2018-07-14T19:21:20.996Z","enrolled":79894,"book":"https://aniya.net","course_url":"https://chloe.net"},{"course_title":"Okuneva Group","course_number":17781,"instructor":"Keeley Dare","location":"18806 Kayli Points","time":"2018-07-14T04:32:53.188Z","enrolled":2222,"book":"http://ashley.name","course_url":"http://tiffany.net"},{"course_title":"Deckow, Prohaska and Beatty","course_number":70047,"instructor":"Ellsworth Osinski","location":"328 Blair Lane","time":"2018-07-14T15:16:17.037Z","enrolled":50017,"book":"https://elwyn.com","course_url":"http://dante.info"},{"course_title":"Von, Fahey and Wilkinson","course_number":2916,"instructor":"Aileen Gleason","location":"794 Marilou Vista","time":"2018-07-14T06:24:14.734Z","enrolled":39764,"book":"http://vincenza.name","course_url":"http://myrtle.com"},{"course_title":"Stamm, Stokes and Steuber","course_number":65231,"instructor":"Ally Heaney","location":"602 Lafayette Shores","time":"2018-07-14T17:04:19.108Z","enrolled":207,"book":"https://keenan.info","course_url":"http://nedra.biz"},{"course_title":"Hessel, Osinski and Konopelski","course_number":43809,"instructor":"Gerhard Effertz I","location":"7592 Eduardo Village","time":"2018-07-13T23:53:44.336Z","enrolled":56835,"book":"https://moriah.biz","course_url":"https://annabell.info"},{"course_title":"Moen, Langworth and Schamberger","course_number":20430,"instructor":"Hassie Cassin","location":"18315 Spencer Station","time":"2018-07-14T20:12:32.729Z","enrolled":79435,"book":"http://clara.name","course_url":"https://torrance.info"},{"course_title":"Hickle and Sons","course_number":52733,"instructor":"Valentina Nienow","location":"172 Johanna Circles","time":"2018-07-14T04:19:55.607Z","enrolled":83557,"book":"http://korey.name","course_url":"https://emmanuel.name"},{"course_title":"Ward Inc","course_number":17507,"instructor":"Brianne Gibson","location":"246 Breitenberg Mission","time":"2018-07-13T23:52:32.205Z","enrolled":48477,"book":"https://michelle.net","course_url":"http://buddy.name"},{"course_title":"Grant LLC","course_number":6696,"instructor":"Stuart Koss","location":"7131 Herzog Circles","time":"2018-07-14T04:28:27.401Z","enrolled":37241,"book":"https://ignatius.biz","course_url":"https://florian.name"},{"course_title":"Ratke - Connelly","course_number":64587,"instructor":"Toney Abbott","location":"254 Kshlerin Grove","time":"2018-07-14T12:50:07.109Z","enrolled":62912,"book":"https://ines.biz","course_url":"http://daisy.name"},{"course_title":"Wisozk and Sons","course_number":5545,"instructor":"Melvina Ziemann","location":"3003 Devonte Cape","time":"2018-07-14T10:44:35.261Z","enrolled":4845,"book":"https://connie.name","course_url":"http://osbaldo.com"},{"course_title":"Hickle, Gleichner and Hoeger","course_number":40870,"instructor":"Manley Rodriguez","location":"8079 Glenda Circles","time":"2018-07-14T22:14:34.058Z","enrolled":10294,"book":"https://elyse.biz","course_url":"http://cletus.net"},{"course_title":"McClure Group","course_number":65848,"instructor":"Annette Huels","location":"380 Farrell Crossroad","time":"2018-07-14T21:30:18.703Z","enrolled":87359,"book":"https://alana.com","course_url":"https://everett.name"},{"course_title":"Breitenberg - Littel","course_number":67800,"instructor":"Dr. Arden Daniel","location":"85518 Bruce Extensions","time":"2018-07-14T17:21:03.727Z","enrolled":47509,"book":"https://hollis.net","course_url":"https://quentin.biz"},{"course_title":"Blick - Stracke","course_number":47876,"instructor":"Rodger Dach","location":"2301 O'Keefe Fort","time":"2018-07-14T11:47:33.657Z","enrolled":14273,"book":"http://samanta.net","course_url":"https://ona.biz"},{"course_title":"Johnson Inc","course_number":51015,"instructor":"Melvin Grimes","location":"721 Dariana Fields","time":"2018-07-14T14:12:34.441Z","enrolled":47253,"book":"https://alexanne.org","course_url":"https://vena.info"},{"course_title":"Breitenberg and Sons","course_number":95898,"instructor":"Dr. Jose Crist","location":"11870 Hilpert Square","time":"2018-07-14T18:00:00.413Z","enrolled":80415,"book":"http://bernie.biz","course_url":"http://kyra.com"},{"course_title":"Moen, Homenick and Gleichner","course_number":64496,"instructor":"Graham Effertz","location":"95425 Abraham Knolls","time":"2018-07-14T09:56:30.827Z","enrolled":14616,"book":"https://wyman.biz","course_url":"https://alycia.name"},{"course_title":"Gutmann, Heller and Prohaska","course_number":70125,"instructor":"Ryley Boyle","location":"0970 Bechtelar Court","time":"2018-07-14T18:53:08.526Z","enrolled":12409,"book":"http://mossie.com","course_url":"http://carlotta.info"},{"course_title":"Mills LLC","course_number":54513,"instructor":"Dave Murray","location":"15338 Broderick Stream","time":"2018-07-14T18:39:36.920Z","enrolled":35779,"book":"https://katelynn.org","course_url":"http://mollie.biz"},{"course_title":"Cassin - Wyman","course_number":3549,"instructor":"Christy Schmitt","location":"6302 Reynold River","time":"2018-07-14T14:22:15.301Z","enrolled":49847,"book":"https://samson.net","course_url":"http://rosalind.biz"},{"course_title":"Roob - Macejkovic","course_number":38014,"instructor":"Norwood Hauck","location":"27408 Watsica Bridge","time":"2018-07-14T14:58:47.737Z","enrolled":58061,"book":"https://rosalia.name","course_url":"https://emerson.org"},{"course_title":"Bins - Gibson","course_number":69530,"instructor":"Chyna Cartwright","location":"29001 Mitchell Spur","time":"2018-07-14T02:19:28.547Z","enrolled":40957,"book":"https://amir.org","course_url":"http://jerome.biz"},{"course_title":"Lockman LLC","course_number":65100,"instructor":"Roger Reynolds II","location":"8031 Shemar Tunnel","time":"2018-07-14T10:45:02.423Z","enrolled":45128,"book":"https://leatha.biz","course_url":"https://pauline.biz"},{"course_title":"Waelchi, Zemlak and Armstrong","course_number":78742,"instructor":"Fletcher Volkman","location":"62606 Elliot Park","time":"2018-07-14T01:45:16.347Z","enrolled":12913,"book":"https://jalen.name","course_url":"https://loma.info"},{"course_title":"Lowe, Kessler and Vandervort","course_number":58551,"instructor":"Kaitlin Von","location":"150 Carroll Place","time":"2018-07-14T13:22:04.877Z","enrolled":95881,"book":"https://barrett.biz","course_url":"http://ronny.org"},{"course_title":"Grimes, Veum and Ratke","course_number":64216,"instructor":"Cassidy Lockman","location":"0703 Block Meadow","time":"2018-07-14T09:38:49.158Z","enrolled":12127,"book":"https://sandra.biz","course_url":"https://reyes.biz"},{"course_title":"Blick Group","course_number":41606,"instructor":"Rigoberto Abernathy IV","location":"01688 O'Connell Trafficway","time":"2018-07-14T12:36:27.212Z","enrolled":26750,"book":"http://jessika.biz","course_url":"http://kristy.name"},{"course_title":"Emmerich, Haag and Schoen","course_number":19683,"instructor":"Larissa Harvey","location":"865 Lemke Summit","time":"2018-07-14T13:25:45.101Z","enrolled":67551,"book":"https://bernard.net","course_url":"http://helmer.net"},{"course_title":"Hills Group","course_number":99788,"instructor":"Jocelyn Streich V","location":"75820 Alena Terrace","time":"2018-07-14T03:14:04.179Z","enrolled":36681,"book":"https://lola.info","course_url":"http://hazel.name"},{"course_title":"Bashirian LLC","course_number":89074,"instructor":"Dr. Rachael Lowe","location":"277 Jacobson Trafficway","time":"2018-07-14T15:56:38.380Z","enrolled":10491,"book":"https://hector.info","course_url":"https://lurline.com"},{"course_title":"Johnson - Sipes","course_number":81931,"instructor":"Brian Watsica","location":"08565 Vandervort Greens","time":"2018-07-14T22:21:38.248Z","enrolled":85518,"book":"http://branson.org","course_url":"https://caden.name"},{"course_title":"Wyman LLC","course_number":62315,"instructor":"Ms. Keara Brown","location":"904 Payton Drive","time":"2018-07-14T10:46:35.841Z","enrolled":76222,"book":"http://elinor.biz","course_url":"https://twila.com"},{"course_title":"Kertzmann - Stamm","course_number":22900,"instructor":"Giovanny Hamill DDS","location":"999 Little Stream","time":"2018-07-14T16:21:40.903Z","enrolled":60212,"book":"https://robyn.info","course_url":"http://grover.net"},{"course_title":"Casper, Haley and Collier","course_number":3495,"instructor":"Fredy Lesch","location":"74464 Dach Mission","time":"2018-07-14T05:34:32.517Z","enrolled":54984,"book":"https://ubaldo.com","course_url":"http://payton.net"},{"course_title":"King - Osinski","course_number":39581,"instructor":"Garrick Abshire","location":"821 Kub Orchard","time":"2018-07-14T11:17:34.245Z","enrolled":55680,"book":"http://uriel.org","course_url":"http://stacy.name"},{"course_title":"Watsica and Sons","course_number":74965,"instructor":"Mr. Jerrell Parisian","location":"63934 Muller Mall","time":"2018-07-14T05:31:37.804Z","enrolled":49611,"book":"https://chelsey.biz","course_url":"http://caden.info"},{"course_title":"Konopelski, Pollich and Watsica","course_number":4074,"instructor":"Aliza Dickinson","location":"3610 Josefa Plaza","time":"2018-07-14T17:33:43.091Z","enrolled":72751,"book":"http://cornell.biz","course_url":"https://lonny.org"},{"course_title":"Schmeler - Stoltenberg","course_number":32202,"instructor":"Rodrick Leffler IV","location":"999 Rhett Trail","time":"2018-07-14T09:19:42.734Z","enrolled":88152,"book":"https://dwight.info","course_url":"https://payton.biz"},{"course_title":"Feeney, Murazik and West","course_number":34331,"instructor":"Larue Greenholt","location":"860 Nick Rue","time":"2018-07-14T11:09:39.173Z","enrolled":6974,"book":"http://johan.net","course_url":"http://geovany.name"},{"course_title":"Walker Inc","course_number":26679,"instructor":"Dr. Alysson Doyle","location":"028 Hoppe Ferry","time":"2018-07-14T15:18:47.279Z","enrolled":52325,"book":"https://danial.net","course_url":"https://baylee.info"},{"course_title":"Brakus - Jerde","course_number":51869,"instructor":"Dannie Goyette","location":"3156 Schowalter Stravenue","time":"2018-07-14T20:53:20.483Z","enrolled":47164,"book":"http://jazmyne.biz","course_url":"https://adriel.name"},{"course_title":"Okuneva Group","course_number":56454,"instructor":"Chandler Kling","location":"3917 Beatty River","time":"2018-07-14T09:00:08.550Z","enrolled":16514,"book":"http://hoyt.biz","course_url":"https://abraham.org"},{"course_title":"Waelchi, Jacobson and Ankunding","course_number":54594,"instructor":"Evans Wisoky","location":"684 Haley Roads","time":"2018-07-13T23:51:29.235Z","enrolled":11223,"book":"https://angie.net","course_url":"http://jada.biz"},{"course_title":"Johnston - Howe","course_number":37898,"instructor":"Maymie King","location":"8003 Wolf Park","time":"2018-07-14T18:17:14.944Z","enrolled":87289,"book":"http://junius.org","course_url":"http://norma.com"},{"course_title":"Daugherty, Schaden and Boyle","course_number":35726,"instructor":"Rasheed Rogahn","location":"55537 Bogisich Club","time":"2018-07-14T06:10:27.679Z","enrolled":4213,"book":"https://rowan.info","course_url":"http://caesar.net"},{"course_title":"Fay and Sons","course_number":84977,"instructor":"Berry Skiles Jr.","location":"2333 Edwardo Manors","time":"2018-07-14T17:21:03.166Z","enrolled":76284,"book":"https://chesley.net","course_url":"http://diego.com"},{"course_title":"Reichert and Sons","course_number":2280,"instructor":"Mariane Nitzsche","location":"791 Ansley Locks","time":"2018-07-14T01:40:36.791Z","enrolled":82300,"book":"https://lolita.org","course_url":"http://berta.info"},{"course_title":"Schultz - Rippin","course_number":81426,"instructor":"Melisa O'Kon","location":"013 Anibal Trafficway","time":"2018-07-14T20:15:53.544Z","enrolled":56483,"book":"https://emely.org","course_url":"http://dustin.info"},{"course_title":"Kunde, Boehm and Christiansen","course_number":61641,"instructor":"Schuyler Kuhn","location":"06505 Zita Route","time":"2018-07-14T03:05:19.695Z","enrolled":48611,"book":"http://tomas.com","course_url":"http://johan.info"},{"course_title":"Bergnaum - Hayes","course_number":97433,"instructor":"Mallie Padberg","location":"165 Jairo Ports","time":"2018-07-14T05:29:39.720Z","enrolled":83476,"book":"http://enrique.info","course_url":"http://stephon.biz"},{"course_title":"Torp, Jast and Heidenreich","course_number":88979,"instructor":"Rogelio Crist","location":"1932 Nat Park","time":"2018-07-14T00:42:06.733Z","enrolled":9885,"book":"http://wyman.com","course_url":"https://trenton.net"},{"course_title":"Grimes - Durgan","course_number":87378,"instructor":"Nadia Spinka","location":"36895 Zula Crest","time":"2018-07-14T20:48:20.526Z","enrolled":52774,"book":"https://felipa.info","course_url":"https://broderick.net"},{"course_title":"Dicki - Gibson","course_number":97923,"instructor":"Estell Cremin","location":"089 Brekke Wall","time":"2018-07-14T08:19:18.855Z","enrolled":56370,"book":"https://nels.name","course_url":"http://jarred.name"},{"course_title":"Hodkiewicz - Crooks","course_number":4248,"instructor":"Mr. Xavier Fritsch","location":"91469 Cole Motorway","time":"2018-07-14T12:30:12.214Z","enrolled":7683,"book":"https://millie.com","course_url":"https://eulalia.com"},{"course_title":"Larson LLC","course_number":48388,"instructor":"Kari Sipes","location":"5965 Bergstrom Flat","time":"2018-07-14T19:49:33.549Z","enrolled":28187,"book":"http://helene.name","course_url":"https://kaela.info"},{"course_title":"Ruecker, Rau and Leffler","course_number":39694,"instructor":"Ophelia Boyer PhD","location":"16397 Zion Parkways","time":"2018-07-14T16:55:31.316Z","enrolled":84082,"book":"http://jake.biz","course_url":"https://carolanne.info"},{"course_title":"Medhurst, Schoen and Legros","course_number":98808,"instructor":"Ms. Larissa Barton","location":"73041 Cathryn Rapid","time":"2018-07-14T07:48:37.072Z","enrolled":13027,"book":"https://jessica.org","course_url":"http://haylie.info"},{"course_title":"Kiehn Group","course_number":22637,"instructor":"Zetta Boehm","location":"988 Devonte Summit","time":"2018-07-14T07:18:23.868Z","enrolled":27563,"book":"https://chris.name","course_url":"http://yoshiko.info"},{"course_title":"Green Group","course_number":34472,"instructor":"Erin Marquardt","location":"4393 Schultz Lake","time":"2018-07-14T00:27:08.547Z","enrolled":86618,"book":"https://estell.biz","course_url":"http://kaia.info"},{"course_title":"Koepp, Zieme and Anderson","course_number":71643,"instructor":"Mariah Parker","location":"77192 Goodwin Locks","time":"2018-07-13T23:43:03.284Z","enrolled":15472,"book":"https://myah.biz","course_url":"https://cristobal.org"},{"course_title":"Dickens, Mitchell and Grant","course_number":44462,"instructor":"Roma Labadie","location":"9472 Cartwright Dale","time":"2018-07-14T22:08:00.188Z","enrolled":3789,"book":"http://dave.net","course_url":"https://jon.name"},{"course_title":"Price Group","course_number":31168,"instructor":"Belle Kertzmann","location":"16818 Corwin Rest","time":"2018-07-14T21:50:07.101Z","enrolled":38929,"book":"https://elyssa.org","course_url":"https://ricardo.net"},{"course_title":"Funk LLC","course_number":6864,"instructor":"Marlee Reinger","location":"3966 Hayes Tunnel","time":"2018-07-14T20:06:36.532Z","enrolled":73532,"book":"http://cristina.name","course_url":"https://liam.name"},{"course_title":"Wuckert LLC","course_number":40894,"instructor":"Annamae Harris","location":"4197 Novella Street","time":"2018-07-14T07:31:15.604Z","enrolled":23725,"book":"http://mallie.org","course_url":"https://garth.info"},{"course_title":"Beatty LLC","course_number":97837,"instructor":"Whitney Marks","location":"44611 Lorena Mount","time":"2018-07-14T04:02:48.405Z","enrolled":48823,"book":"https://cordia.net","course_url":"https://candido.info"},{"course_title":"Lang - Spencer","course_number":8237,"instructor":"Baron Hodkiewicz","location":"5946 Hackett Springs","time":"2018-07-14T15:42:15.342Z","enrolled":16670,"book":"http://ardella.net","course_url":"http://eugenia.info"},{"course_title":"Pacocha, Braun and Luettgen","course_number":32356,"instructor":"Tyshawn Kuhlman V","location":"274 Moriah Springs","time":"2018-07-14T20:07:57.572Z","enrolled":80789,"book":"https://yazmin.name","course_url":"http://doug.biz"},{"course_title":"Howell, Pacocha and Klein","course_number":30630,"instructor":"Drew Kertzmann","location":"48762 Mabelle Fork","time":"2018-07-14T13:16:23.226Z","enrolled":65584,"book":"http://ayana.info","course_url":"http://araceli.name"},{"course_title":"Brekke Inc","course_number":42739,"instructor":"Tanya Osinski","location":"21816 Wunsch Mission","time":"2018-07-14T04:32:52.268Z","enrolled":32512,"book":"http://emanuel.info","course_url":"http://donny.name"},{"course_title":"Graham, Schmidt and Crona","course_number":45532,"instructor":"Alexandrea Douglas III","location":"212 Merl Burg","time":"2018-07-14T02:31:27.005Z","enrolled":48051,"book":"https://della.org","course_url":"https://kaelyn.net"},{"course_title":"Romaguera, Hermann and Kassulke","course_number":50301,"instructor":"Xzavier Funk","location":"11126 Schuppe Lock","time":"2018-07-14T20:56:36.043Z","enrolled":92247,"book":"http://wallace.biz","course_url":"https://karl.net"},{"course_title":"Haag Group","course_number":3746,"instructor":"Oran Lynch","location":"28170 Ortiz Plaza","time":"2018-07-14T05:26:13.444Z","enrolled":94584,"book":"https://dewitt.biz","course_url":"http://berniece.name"},{"course_title":"Dach - Hermiston","course_number":62880,"instructor":"Ethan Hegmann","location":"7725 Forest Rapids","time":"2018-07-14T08:57:26.874Z","enrolled":41739,"book":"https://abbigail.net","course_url":"http://marianna.info"},{"course_title":"Lakin LLC","course_number":5547,"instructor":"Keshawn Kemmer","location":"2914 Witting Throughway","time":"2018-07-14T22:25:09.783Z","enrolled":40485,"book":"https://shannon.info","course_url":"http://astrid.biz"},{"course_title":"O'Conner and Sons","course_number":11839,"instructor":"Amber Satterfield","location":"926 Wanda Springs","time":"2018-07-14T04:48:59.889Z","enrolled":98959,"book":"http://alycia.biz","course_url":"https://roger.org"},{"course_title":"Oberbrunner, McLaughlin and Hackett","course_number":16573,"instructor":"Kara Konopelski","location":"97635 Conn Inlet","time":"2018-07-14T20:35:14.852Z","enrolled":21888,"book":"http://oswaldo.com","course_url":"https://terrill.biz"},{"course_title":"Runolfsdottir - Muller","course_number":68363,"instructor":"Kamryn Borer","location":"5715 Mayer Plains","time":"2018-07-14T12:15:57.405Z","enrolled":39532,"book":"http://emil.name","course_url":"https://lynn.info"},{"course_title":"Veum, Hegmann and Koelpin","course_number":97798,"instructor":"Adolphus Zieme","location":"698 Glenda Well","time":"2018-07-14T05:23:05.361Z","enrolled":6679,"book":"https://yazmin.name","course_url":"https://abdullah.biz"},{"course_title":"Klocko LLC","course_number":70302,"instructor":"Isabel Cartwright","location":"0914 Hilario Ports","time":"2018-07-14T21:24:39.248Z","enrolled":97014,"book":"http://mariana.info","course_url":"https://judd.net"},{"course_title":"Glover, Tillman and Anderson","course_number":98611,"instructor":"Oleta Runte","location":"063 Casandra Wall","time":"2018-07-14T10:09:47.533Z","enrolled":42349,"book":"http://mittie.info","course_url":"http://adalberto.name"},{"course_title":"Pollich - Wolf","course_number":52980,"instructor":"Hilma Predovic","location":"64177 Ova Center","time":"2018-07-14T16:38:15.614Z","enrolled":21845,"book":"https://camden.net","course_url":"https://aidan.com"},{"course_title":"Koss - Nitzsche","course_number":64393,"instructor":"Abbigail Rempel","location":"276 Adam Garden","time":"2018-07-14T03:13:07.569Z","enrolled":31251,"book":"http://carrie.org","course_url":"http://cynthia.biz"},{"course_title":"Hansen, Cronin and VonRueden","course_number":66928,"instructor":"Alessia Grimes","location":"6121 Bednar Ramp","time":"2018-07-14T20:00:14.372Z","enrolled":87951,"book":"https://noemie.biz","course_url":"https://francesco.name"},{"course_title":"Rutherford LLC","course_number":94332,"instructor":"Stella Green","location":"881 Sallie Loaf","time":"2018-07-14T03:09:31.945Z","enrolled":202,"book":"http://jarrell.biz","course_url":"http://justine.com"},{"course_title":"Mann, Hudson and Armstrong","course_number":75779,"instructor":"Archibald Stark II","location":"6474 Vincenzo Freeway","time":"2018-07-14T01:51:36.699Z","enrolled":49024,"book":"https://marcella.name","course_url":"http://cornelius.biz"},{"course_title":"Boyle - Cole","course_number":28533,"instructor":"Ms. David Cummings","location":"0714 O'Connell Pines","time":"2018-07-14T13:15:26.400Z","enrolled":1047,"book":"http://sierra.name","course_url":"http://madonna.biz"},{"course_title":"Torphy, Morar and Corwin","course_number":19739,"instructor":"Miss Shakira Schmidt","location":"0524 Buddy Mountains","time":"2018-07-14T13:47:35.488Z","enrolled":36198,"book":"http://vena.com","course_url":"http://gavin.org"},{"course_title":"Nolan, Becker and Skiles","course_number":53086,"instructor":"Gracie Macejkovic","location":"2699 Lindgren Highway","time":"2018-07-14T15:26:13.377Z","enrolled":50210,"book":"http://katrine.net","course_url":"https://joana.info"},{"course_title":"Ernser, Abernathy and Pagac","course_number":99656,"instructor":"Caroline Altenwerth","location":"645 Cormier Haven","time":"2018-07-14T20:12:04.077Z","enrolled":96943,"book":"https://earnest.info","course_url":"http://mohammed.com"},{"course_title":"Smith, Osinski and Satterfield","course_number":8452,"instructor":"Selena Runolfsdottir","location":"3306 Dane Brooks","time":"2018-07-13T23:24:31.207Z","enrolled":89085,"book":"http://hunter.org","course_url":"https://rosa.com"},{"course_title":"Sawayn - Rempel","course_number":73485,"instructor":"Lavern Franecki","location":"69842 Urban Port","time":"2018-07-14T20:14:50.967Z","enrolled":74608,"book":"http://loyal.info","course_url":"https://candido.com"},{"course_title":"Bernhard, Schroeder and Hoppe","course_number":91583,"instructor":"Waldo Moen","location":"7217 Altenwerth Bridge","time":"2018-07-14T20:26:27.335Z","enrolled":87885,"book":"https://rashawn.name","course_url":"http://arthur.name"},{"course_title":"Johnson and Sons","course_number":40093,"instructor":"Eloise Langworth","location":"769 Ebert Springs","time":"2018-07-14T12:26:54.114Z","enrolled":29539,"book":"https://shawna.biz","course_url":"https://burdette.org"},{"course_title":"Kris Inc","course_number":81831,"instructor":"Emerald White","location":"36336 Carroll Common","time":"2018-07-14T17:25:01.801Z","enrolled":31923,"book":"http://maymie.org","course_url":"http://kenya.info"},{"course_title":"Auer - Hayes","course_number":23883,"instructor":"Scottie Collins","location":"7475 Jonatan Cape","time":"2018-07-14T18:44:46.191Z","enrolled":43811,"book":"http://chester.com","course_url":"https://joelle.net"},{"course_title":"Hermiston and Sons","course_number":55989,"instructor":"Alexanne Walker","location":"946 Mozell Shores","time":"2018-07-14T16:04:42.779Z","enrolled":27521,"book":"http://jewel.net","course_url":"http://alvis.name"},{"course_title":"Schneider Group","course_number":25344,"instructor":"Raoul Rice","location":"813 Khalil Centers","time":"2018-07-13T23:19:07.607Z","enrolled":11669,"book":"http://travis.name","course_url":"http://augusta.com"},{"course_title":"Ortiz - Hegmann","course_number":42552,"instructor":"Foster Goldner","location":"417 Marietta Flat","time":"2018-07-14T16:49:06.217Z","enrolled":9096,"book":"http://bret.biz","course_url":"http://angie.name"},{"course_title":"Leffler, Cole and Daugherty","course_number":72300,"instructor":"Orland Rosenbaum","location":"3539 Abdiel Canyon","time":"2018-07-14T19:10:22.440Z","enrolled":83311,"book":"http://jayson.net","course_url":"http://madelyn.com"},{"course_title":"Dooley, Ratke and Wuckert","course_number":96449,"instructor":"Grayson Bayer","location":"425 Haylee Camp","time":"2018-07-14T09:01:43.894Z","enrolled":10436,"book":"http://dolores.biz","course_url":"http://olaf.org"},{"course_title":"Hills, Stanton and McKenzie","course_number":33158,"instructor":"Torrance Lowe","location":"0347 Bertha Glens","time":"2018-07-14T09:54:18.625Z","enrolled":66087,"book":"https://brigitte.com","course_url":"https://fred.org"},{"course_title":"Feeney - VonRueden","course_number":50289,"instructor":"Carleton Feeney","location":"2148 West Turnpike","time":"2018-07-13T23:43:12.129Z","enrolled":56908,"book":"https://brenna.com","course_url":"https://eudora.net"},{"course_title":"Ankunding - Schuppe","course_number":53796,"instructor":"Bernadine VonRueden","location":"527 Eichmann Spring","time":"2018-07-14T10:56:00.967Z","enrolled":23938,"book":"http://estrella.info","course_url":"http://kelsie.info"},{"course_title":"Kuphal Inc","course_number":6608,"instructor":"Aiden Swift","location":"84672 Schneider Spur","time":"2018-07-14T00:22:43.030Z","enrolled":54730,"book":"https://willie.info","course_url":"https://eryn.org"},{"course_title":"Turner Inc","course_number":78438,"instructor":"Ferne Prohaska","location":"2733 Annamae Viaduct","time":"2018-07-14T08:42:58.773Z","enrolled":41958,"book":"http://manuela.net","course_url":"https://althea.biz"},{"course_title":"Connelly - Torphy","course_number":37133,"instructor":"Willow Krajcik","location":"128 Selina River","time":"2018-07-14T13:21:00.852Z","enrolled":87043,"book":"http://merritt.info","course_url":"http://joyce.com"},{"course_title":"Kuphal Group","course_number":33318,"instructor":"Darrick Turner","location":"41684 Liliane Shores","time":"2018-07-14T18:50:51.058Z","enrolled":72458,"book":"https://frances.name","course_url":"https://dedric.net"},{"course_title":"Mills, Stracke and O'Reilly","course_number":72587,"instructor":"Charles Swaniawski IV","location":"6193 Keebler Lights","time":"2018-07-14T09:41:48.386Z","enrolled":87043,"book":"https://damian.name","course_url":"http://audrey.net"},{"course_title":"Hartmann, Johnston and Hayes","course_number":66010,"instructor":"Lonie Mosciski","location":"6065 Lubowitz Common","time":"2018-07-14T19:42:59.971Z","enrolled":70126,"book":"http://modesta.info","course_url":"http://kaci.net"},{"course_title":"Jenkins LLC","course_number":98258,"instructor":"Yasmeen Kutch","location":"279 Wyman Pines","time":"2018-07-14T15:23:23.923Z","enrolled":89005,"book":"https://cedrick.net","course_url":"http://geo.org"},{"course_title":"Witting, Pouros and Gleichner","course_number":4153,"instructor":"Bennett Predovic","location":"4536 Bartoletti Prairie","time":"2018-07-14T01:26:03.524Z","enrolled":35893,"book":"http://lillie.net","course_url":"https://makayla.org"},{"course_title":"Jacobs - Hermann","course_number":20315,"instructor":"Maurice Bosco DDS","location":"684 Guadalupe Plains","time":"2018-07-14T13:32:19.747Z","enrolled":5129,"book":"https://juwan.biz","course_url":"https://darrick.org"},{"course_title":"O'Conner - Reichel","course_number":25656,"instructor":"Mr. Hosea Heaney","location":"305 Auer Dale","time":"2018-07-14T13:02:35.600Z","enrolled":29833,"book":"http://adalberto.org","course_url":"http://solon.biz"},{"course_title":"Johnston LLC","course_number":38825,"instructor":"Verda Harber","location":"87327 Terry Harbors","time":"2018-07-14T01:14:24.337Z","enrolled":30947,"book":"https://bert.com","course_url":"https://frederic.info"},{"course_title":"Jakubowski, Murphy and Cormier","course_number":60487,"instructor":"Georgianna Witting","location":"64866 Odell Village","time":"2018-07-14T17:32:45.887Z","enrolled":22274,"book":"https://else.com","course_url":"http://kaci.com"},{"course_title":"Wolff - Nolan","course_number":90690,"instructor":"Dale Rau","location":"753 Paolo Expressway","time":"2018-07-14T16:12:09.995Z","enrolled":67216,"book":"https://orpha.biz","course_url":"https://timmy.info"},{"course_title":"Runolfsson - Kessler","course_number":650,"instructor":"Miss Elta Bergnaum","location":"035 Loy Prairie","time":"2018-07-14T21:12:08.366Z","enrolled":35215,"book":"http://raoul.org","course_url":"https://garland.net"},{"course_title":"West - Walter","course_number":89856,"instructor":"Allison Ledner II","location":"492 Turcotte Islands","time":"2018-07-14T01:15:42.476Z","enrolled":69660,"book":"http://margret.name","course_url":"https://angel.biz"},{"course_title":"Schumm Group","course_number":76083,"instructor":"Emmet Hilpert","location":"19572 Rey Summit","time":"2018-07-14T09:51:46.552Z","enrolled":44658,"book":"http://billy.name","course_url":"https://kamille.org"},{"course_title":"Goodwin, Ward and Marks","course_number":85644,"instructor":"Eldridge Bradtke DDS","location":"383 Dina Knolls","time":"2018-07-14T19:56:29.472Z","enrolled":53776,"book":"http://nella.com","course_url":"https://delta.org"},{"course_title":"Hansen Inc","course_number":63812,"instructor":"Reuben Predovic","location":"8360 Roselyn Village","time":"2018-07-14T03:58:15.302Z","enrolled":60777,"book":"http://susanna.com","course_url":"http://meggie.com"},{"course_title":"Ferry, Roberts and Streich","course_number":89195,"instructor":"Marian Beier","location":"02125 Vivienne Parks","time":"2018-07-14T02:26:10.022Z","enrolled":2917,"book":"https://viva.org","course_url":"https://karine.name"},{"course_title":"Lesch LLC","course_number":32830,"instructor":"Ida Kunde","location":"38075 D'Amore Rapid","time":"2018-07-14T09:49:01.637Z","enrolled":27288,"book":"http://ian.com","course_url":"http://alejandra.info"},{"course_title":"Rohan, Mayert and Jacobson","course_number":39594,"instructor":"Miss Alessandra Gutmann","location":"96513 Bernhard Cliff","time":"2018-07-14T01:29:30.851Z","enrolled":81892,"book":"http://ken.name","course_url":"http://kareem.biz"},{"course_title":"Hickle Group","course_number":11964,"instructor":"Andre Spinka","location":"5299 Wilkinson Plaza","time":"2018-07-14T14:19:27.465Z","enrolled":38721,"book":"https://kyleigh.biz","course_url":"http://carlie.info"},{"course_title":"Lindgren LLC","course_number":20682,"instructor":"Ethel Willms","location":"610 Emiliano Pass","time":"2018-07-14T10:31:35.294Z","enrolled":88185,"book":"http://adalberto.name","course_url":"http://retta.net"},{"course_title":"Renner, Spinka and Will","course_number":29002,"instructor":"Letha Reilly","location":"827 Aufderhar Ridges","time":"2018-07-14T11:33:02.959Z","enrolled":60006,"book":"http://mabelle.name","course_url":"http://rebekah.biz"},{"course_title":"Goyette and Sons","course_number":25293,"instructor":"Jamey Hayes","location":"3128 Dasia Inlet","time":"2018-07-14T12:19:11.799Z","enrolled":48140,"book":"https://jaeden.com","course_url":"https://damian.biz"},{"course_title":"Muller Inc","course_number":87785,"instructor":"Isabel Romaguera","location":"55617 Skiles Spur","time":"2018-07-14T04:43:06.281Z","enrolled":65897,"book":"http://ozella.com","course_url":"http://aditya.com"},{"course_title":"Beer - Renner","course_number":47350,"instructor":"Charlene Hettinger","location":"97295 Erdman Inlet","time":"2018-07-14T00:43:21.827Z","enrolled":52467,"book":"https://zachary.info","course_url":"http://tiana.net"},{"course_title":"Osinski Group","course_number":45524,"instructor":"Easter Klocko","location":"19965 Cremin Harbor","time":"2018-07-14T00:25:58.835Z","enrolled":9568,"book":"https://renee.name","course_url":"https://earl.net"},{"course_title":"Abshire, Volkman and Gottlieb","course_number":21510,"instructor":"Dr. Dell Franecki","location":"96886 Runte Extension","time":"2018-07-14T17:50:40.737Z","enrolled":83040,"book":"https://abelardo.info","course_url":"https://wanda.name"},{"course_title":"Conn, Veum and Larson","course_number":85848,"instructor":"Furman Erdman","location":"92698 Beer Lodge","time":"2018-07-14T10:19:39.348Z","enrolled":68516,"book":"https://lavon.net","course_url":"http://torrance.org"},{"course_title":"Dietrich, Hessel and Collier","course_number":10305,"instructor":"Akeem Streich I","location":"566 Turner Island","time":"2018-07-14T21:10:15.277Z","enrolled":55915,"book":"https://nikko.biz","course_url":"http://judson.com"},{"course_title":"King, Kovacek and Wisoky","course_number":2518,"instructor":"Zoie Lang","location":"23699 Ramon Union","time":"2018-07-14T10:43:47.686Z","enrolled":36808,"book":"https://lavinia.name","course_url":"http://yolanda.net"},{"course_title":"Torp - Ullrich","course_number":8266,"instructor":"Dr. Paige Rempel","location":"151 Bahringer Court","time":"2018-07-14T07:02:12.809Z","enrolled":9731,"book":"http://claudine.name","course_url":"https://andres.biz"},{"course_title":"West - Grady","course_number":47745,"instructor":"Flo Schulist II","location":"9333 Grady Grove","time":"2018-07-14T07:30:25.990Z","enrolled":75900,"book":"https://lazaro.com","course_url":"http://estel.name"},{"course_title":"Bruen, Bashirian and Hudson","course_number":39859,"instructor":"Patrick Beatty","location":"183 Sydnee Glens","time":"2018-07-14T04:55:31.019Z","enrolled":24280,"book":"http://melissa.name","course_url":"https://jalon.com"},{"course_title":"Will - Gaylord","course_number":95364,"instructor":"Dr. Onie Boehm","location":"165 Donna Inlet","time":"2018-07-14T03:48:07.619Z","enrolled":64510,"book":"http://dax.org","course_url":"https://werner.info"},{"course_title":"Denesik LLC","course_number":49481,"instructor":"Willy Lockman","location":"738 Sanford Summit","time":"2018-07-14T14:48:30.090Z","enrolled":14404,"book":"https://hal.net","course_url":"http://cole.name"},{"course_title":"Johns, Romaguera and Hand","course_number":78398,"instructor":"Antonietta Rodriguez","location":"42445 Oliver Canyon","time":"2018-07-14T08:01:19.939Z","enrolled":71423,"book":"https://sigrid.name","course_url":"https://burley.com"},{"course_title":"Kuhlman, Hamill and Daniel","course_number":19745,"instructor":"Luigi Terry DVM","location":"528 Judd Station","time":"2018-07-14T18:11:36.468Z","enrolled":34621,"book":"http://rebekah.org","course_url":"https://gilberto.net"},{"course_title":"Lynch, Ledner and Littel","course_number":90167,"instructor":"Tyrese Leannon","location":"66290 Hilll Spur","time":"2018-07-14T20:25:05.592Z","enrolled":30916,"book":"http://carolanne.name","course_url":"https://elise.biz"},{"course_title":"Carter and Sons","course_number":63427,"instructor":"Elna Corwin I","location":"8917 Bahringer Corners","time":"2018-07-14T07:50:04.659Z","enrolled":35387,"book":"http://raul.org","course_url":"https://oswald.com"},{"course_title":"Schowalter, Steuber and MacGyver","course_number":68517,"instructor":"Cora Jaskolski DVM","location":"6462 Heath Fall","time":"2018-07-14T22:20:05.104Z","enrolled":8279,"book":"https://adonis.net","course_url":"https://jabari.org"},{"course_title":"Sipes, Cormier and Abbott","course_number":21269,"instructor":"Adele Gorczany DDS","location":"1755 Jany Well","time":"2018-07-14T13:43:56.414Z","enrolled":84095,"book":"https://jaquan.org","course_url":"http://marques.info"},{"course_title":"Schaden - Kessler","course_number":91517,"instructor":"Zetta Auer","location":"490 Erdman Knolls","time":"2018-07-14T15:57:51.193Z","enrolled":72814,"book":"http://belle.org","course_url":"http://toni.net"},{"course_title":"Auer, Graham and Terry","course_number":97682,"instructor":"Ms. Isabel Reichel","location":"5788 Felicity Run","time":"2018-07-14T05:26:53.976Z","enrolled":46472,"book":"http://ernestina.info","course_url":"http://merritt.org"},{"course_title":"Ziemann - Reilly","course_number":97610,"instructor":"Savanna Frami Jr.","location":"16366 Aisha Alley","time":"2018-07-14T03:02:33.526Z","enrolled":27955,"book":"https://kevon.org","course_url":"https://samson.com"},{"course_title":"Kutch, Ziemann and Kozey","course_number":65676,"instructor":"Shania Kub","location":"5309 Emmerich Port","time":"2018-07-14T07:43:54.300Z","enrolled":75579,"book":"https://damaris.com","course_url":"http://hubert.net"},{"course_title":"Prosacco, Weissnat and Leffler","course_number":15453,"instructor":"Glenda Maggio","location":"61643 Murl Village","time":"2018-07-14T20:57:17.094Z","enrolled":95320,"book":"https://trever.com","course_url":"http://flossie.net"},{"course_title":"McLaughlin, Torp and Wisoky","course_number":72791,"instructor":"Ross Cruickshank V","location":"402 Jessika Extensions","time":"2018-07-14T15:55:33.149Z","enrolled":5901,"book":"https://joshuah.com","course_url":"https://bridgette.com"},{"course_title":"Marks - Douglas","course_number":77515,"instructor":"Fern Bashirian I","location":"0787 Rosenbaum Plains","time":"2018-07-14T11:27:26.180Z","enrolled":71145,"book":"https://raina.net","course_url":"https://velma.org"},{"course_title":"Wintheiser LLC","course_number":5768,"instructor":"Dr. Marc Sawayn","location":"132 Yost Harbor","time":"2018-07-14T02:21:27.597Z","enrolled":12801,"book":"http://flossie.info","course_url":"https://noemi.org"},{"course_title":"Spinka LLC","course_number":43575,"instructor":"Cleo Grant","location":"9860 Marques Ferry","time":"2018-07-14T00:05:28.229Z","enrolled":35344,"book":"https://vladimir.com","course_url":"http://rylee.name"},{"course_title":"Hackett Inc","course_number":20531,"instructor":"Kelley Predovic","location":"2317 Charlene Way","time":"2018-07-14T16:31:38.339Z","enrolled":34366,"book":"https://arne.net","course_url":"https://cortez.name"},{"course_title":"Bosco Inc","course_number":7756,"instructor":"Damion Mosciski DDS","location":"98966 VonRueden Ford","time":"2018-07-14T11:38:00.478Z","enrolled":85455,"book":"https://clint.biz","course_url":"https://annette.name"},{"course_title":"Mohr Group","course_number":93823,"instructor":"Eleanora Lowe I","location":"624 Moen Garden","time":"2018-07-14T17:37:50.510Z","enrolled":37132,"book":"http://ebba.com","course_url":"http://nick.biz"},{"course_title":"Kilback Group","course_number":10215,"instructor":"Mozelle Moore","location":"90763 Kilback Manors","time":"2018-07-14T12:28:10.803Z","enrolled":74527,"book":"http://jeremy.name","course_url":"http://vicky.com"},{"course_title":"Goyette - Gerhold","course_number":2102,"instructor":"Garrett White","location":"220 Jacques Throughway","time":"2018-07-14T14:39:54.573Z","enrolled":49815,"book":"http://stewart.com","course_url":"https://kenton.name"},{"course_title":"Hane, Wuckert and Upton","course_number":65809,"instructor":"Mellie Hilll","location":"2095 Hobart Freeway","time":"2018-07-14T06:12:47.710Z","enrolled":58916,"book":"http://buck.org","course_url":"https://myron.org"},{"course_title":"Kihn, Bode and Turcotte","course_number":98713,"instructor":"Josiane Will Sr.","location":"2860 Hayden Meadows","time":"2018-07-14T13:09:46.579Z","enrolled":77291,"book":"http://olga.biz","course_url":"https://brenden.name"},{"course_title":"Krajcik - Dietrich","course_number":78963,"instructor":"Jonatan Lebsack","location":"738 Yost Isle","time":"2018-07-14T17:25:45.560Z","enrolled":51825,"book":"https://dillan.biz","course_url":"http://caden.net"},{"course_title":"Kautzer Group","course_number":73452,"instructor":"Rocky Koss","location":"366 Connie Court","time":"2018-07-14T00:49:11.390Z","enrolled":35721,"book":"https://eldon.net","course_url":"http://isaac.com"},{"course_title":"Hudson, Hettinger and Mertz","course_number":2492,"instructor":"Theresa Nader","location":"02798 Geo Junction","time":"2018-07-14T09:17:24.120Z","enrolled":12302,"book":"http://theresia.biz","course_url":"http://joanny.name"},{"course_title":"Waters LLC","course_number":80496,"instructor":"Mr. Cristal Stehr","location":"6432 Cronin Ridge","time":"2018-07-14T16:41:12.367Z","enrolled":9557,"book":"http://nico.com","course_url":"http://murray.org"},{"course_title":"Hammes Inc","course_number":66264,"instructor":"Miss Reuben Rice","location":"4836 Terrell Knoll","time":"2018-07-14T21:41:00.396Z","enrolled":38500,"book":"http://marilyne.info","course_url":"http://armando.info"},{"course_title":"Mills LLC","course_number":64054,"instructor":"Ova Purdy","location":"48922 Liliana Meadows","time":"2018-07-14T20:15:22.740Z","enrolled":59307,"book":"https://jada.info","course_url":"http://leonardo.name"},{"course_title":"Bernier LLC","course_number":72181,"instructor":"Mrs. Nannie Runte","location":"563 Keanu Viaduct","time":"2018-07-14T11:25:58.715Z","enrolled":21637,"book":"http://gavin.com","course_url":"https://joanny.net"},{"course_title":"Kohler - Kling","course_number":92782,"instructor":"Harley Mante","location":"74268 Hermiston Shores","time":"2018-07-13T23:46:37.212Z","enrolled":19353,"book":"http://braulio.net","course_url":"https://ford.net"},{"course_title":"Gusikowski, Lang and Wehner","course_number":84858,"instructor":"Adelbert Grady","location":"01041 Lonzo Union","time":"2018-07-14T12:52:00.636Z","enrolled":713,"book":"http://newton.net","course_url":"http://rusty.name"},{"course_title":"Jast, Ebert and Gottlieb","course_number":75105,"instructor":"Orlando Glover","location":"8941 Bode Streets","time":"2018-07-14T03:44:44.629Z","enrolled":49186,"book":"https://vincenzo.name","course_url":"http://colten.name"},{"course_title":"Mertz - Wilkinson","course_number":98470,"instructor":"Haley Harris","location":"6015 Barney Valley","time":"2018-07-14T09:27:37.871Z","enrolled":3087,"book":"https://dewayne.com","course_url":"https://peter.name"},{"course_title":"Ritchie Group","course_number":50108,"instructor":"Philip Kemmer","location":"9165 Fritsch Route","time":"2018-07-14T22:04:48.905Z","enrolled":32927,"book":"https://grant.name","course_url":"https://krystina.name"},{"course_title":"Kerluke Inc","course_number":56625,"instructor":"Una Rempel","location":"12827 Araceli Park","time":"2018-07-14T19:41:39.391Z","enrolled":93559,"book":"http://cierra.org","course_url":"http://humberto.biz"},{"course_title":"Friesen LLC","course_number":71816,"instructor":"Roselyn Kassulke","location":"90945 Meagan Highway","time":"2018-07-14T00:03:49.375Z","enrolled":34225,"book":"http://gordon.net","course_url":"https://haley.com"},{"course_title":"Herzog - Gleason","course_number":41515,"instructor":"Adela Borer","location":"64778 Kelsie Grove","time":"2018-07-14T16:43:07.161Z","enrolled":63049,"book":"http://keagan.info","course_url":"https://penelope.com"},{"course_title":"Leannon and Sons","course_number":44067,"instructor":"Kendra Kozey Sr.","location":"426 Leda Estates","time":"2018-07-14T06:43:56.298Z","enrolled":11126,"book":"https://addison.biz","course_url":"http://jerad.net"},{"course_title":"Oberbrunner, Little and Bartoletti","course_number":43445,"instructor":"Miss Jacquelyn Dickens","location":"44780 Windler Pike","time":"2018-07-14T16:24:40.126Z","enrolled":59768,"book":"http://jared.com","course_url":"http://pamela.biz"},{"course_title":"Bogan Inc","course_number":68054,"instructor":"Van Funk","location":"195 Sid Plains","time":"2018-07-14T23:03:37.236Z","enrolled":20345,"book":"http://edison.net","course_url":"http://nico.net"},{"course_title":"Doyle, Pagac and Schulist","course_number":83312,"instructor":"Libbie Farrell","location":"012 Kuphal Lodge","time":"2018-07-14T21:04:25.713Z","enrolled":29728,"book":"https://addie.com","course_url":"https://anika.com"},{"course_title":"Kautzer - Ferry","course_number":42855,"instructor":"Georgette Douglas","location":"541 Smith Mountains","time":"2018-07-14T01:31:06.599Z","enrolled":90560,"book":"http://karelle.org","course_url":"https://dakota.name"},{"course_title":"Lubowitz - Shields","course_number":61446,"instructor":"Davonte Gutkowski","location":"0827 Jenkins Isle","time":"2018-07-14T11:34:16.156Z","enrolled":20954,"book":"https://grace.com","course_url":"https://leda.net"},{"course_title":"Feeney, Skiles and Jast","course_number":13967,"instructor":"Ronaldo Legros II","location":"58251 Corwin Landing","time":"2018-07-14T13:45:54.779Z","enrolled":31361,"book":"http://euna.net","course_url":"http://kendra.biz"},{"course_title":"Ebert - Greenfelder","course_number":1292,"instructor":"Dr. Marlee Ferry","location":"943 Hoppe Forks","time":"2018-07-14T00:08:00.455Z","enrolled":93173,"book":"http://clyde.com","course_url":"https://sierra.com"},{"course_title":"Medhurst - Schiller","course_number":51351,"instructor":"Karlie Fahey","location":"51615 Magali Camp","time":"2018-07-14T04:29:40.244Z","enrolled":89960,"book":"https://jessica.name","course_url":"https://rickie.org"},{"course_title":"Kihn - Cummings","course_number":66339,"instructor":"Aditya Heaney","location":"2875 Wiley Path","time":"2018-07-14T01:49:37.456Z","enrolled":874,"book":"https://jeramie.net","course_url":"http://eriberto.net"},{"course_title":"Bins LLC","course_number":78772,"instructor":"Miss Margaretta Funk","location":"164 Deckow Park","time":"2018-07-14T09:37:25.556Z","enrolled":81262,"book":"https://kale.name","course_url":"https://elijah.info"},{"course_title":"D'Amore Inc","course_number":54886,"instructor":"Isabelle Hamill","location":"3181 Nona Street","time":"2018-07-14T09:20:26.131Z","enrolled":95449,"book":"http://toni.biz","course_url":"http://armando.biz"},{"course_title":"Klocko, Kuphal and Yundt","course_number":26558,"instructor":"Marty Hand","location":"9621 Stevie Radial","time":"2018-07-14T02:37:52.398Z","enrolled":12989,"book":"https://nellie.name","course_url":"http://jesse.com"},{"course_title":"Pacocha - Jacobi","course_number":19068,"instructor":"Jamel Lind","location":"3164 Dooley Lodge","time":"2018-07-14T08:16:22.839Z","enrolled":42742,"book":"https://gertrude.info","course_url":"http://neha.com"},{"course_title":"King, Steuber and Baumbach","course_number":91541,"instructor":"Arlie Weimann","location":"4181 Kenneth Lock","time":"2018-07-14T04:43:37.157Z","enrolled":29514,"book":"http://unique.biz","course_url":"https://davin.net"},{"course_title":"Willms, Greenholt and Dietrich","course_number":31146,"instructor":"Retta O'Conner","location":"55207 Brendon Extensions","time":"2018-07-14T11:10:53.661Z","enrolled":44325,"book":"https://kelli.net","course_url":"https://kali.org"},{"course_title":"Schulist - Ernser","course_number":83520,"instructor":"Adell Wisoky","location":"052 Stark Lock","time":"2018-07-14T19:33:14.565Z","enrolled":42560,"book":"http://odessa.net","course_url":"https://eldora.com"},{"course_title":"Harvey - Schneider","course_number":34820,"instructor":"Luz Reinger","location":"93263 Lane Terrace","time":"2018-07-14T11:04:51.847Z","enrolled":9078,"book":"https://euna.name","course_url":"https://toy.name"},{"course_title":"Schiller, Beer and Dibbert","course_number":21576,"instructor":"Felicity Schneider","location":"17412 Brionna Lights","time":"2018-07-14T20:58:33.952Z","enrolled":32096,"book":"http://layne.net","course_url":"https://mike.org"},{"course_title":"Hayes LLC","course_number":80936,"instructor":"Edd Sanford","location":"21585 Mante Ferry","time":"2018-07-14T17:06:30.065Z","enrolled":8154,"book":"http://garret.info","course_url":"https://quinn.net"},{"course_title":"Koch, Hilll and Ruecker","course_number":49360,"instructor":"Parker O'Reilly","location":"533 Johns Tunnel","time":"2018-07-14T16:28:21.259Z","enrolled":91230,"book":"https://santos.org","course_url":"https://pearlie.info"},{"course_title":"Schamberger and Sons","course_number":76038,"instructor":"Freda Russel","location":"6759 Ayana Viaduct","time":"2018-07-14T04:14:18.164Z","enrolled":91408,"book":"https://emiliano.info","course_url":"https://verner.net"},{"course_title":"Hoeger LLC","course_number":20200,"instructor":"Kaycee Turner","location":"39766 Jeromy Walks","time":"2018-07-14T22:21:58.747Z","enrolled":46789,"book":"http://meggie.name","course_url":"http://astrid.org"},{"course_title":"Walsh Group","course_number":22836,"instructor":"William Bednar","location":"0255 Carley Mills","time":"2018-07-14T03:52:35.255Z","enrolled":15155,"book":"http://katharina.biz","course_url":"https://ofelia.org"},{"course_title":"Larkin, Yundt and Rosenbaum","course_number":31719,"instructor":"Scottie Cremin","location":"7095 Strosin Parkways","time":"2018-07-14T13:46:31.258Z","enrolled":3706,"book":"https://marge.biz","course_url":"https://zachariah.name"},{"course_title":"Ziemann - Koch","course_number":8859,"instructor":"Neal Powlowski","location":"13448 Hyman Village","time":"2018-07-14T22:53:49.797Z","enrolled":12555,"book":"https://herta.info","course_url":"http://micaela.net"},{"course_title":"Wehner, Rempel and Aufderhar","course_number":74971,"instructor":"Sandrine Stehr","location":"800 Carolina Extension","time":"2018-07-14T20:44:07.709Z","enrolled":249,"book":"http://gisselle.org","course_url":"https://irwin.biz"},{"course_title":"Vandervort - Schuppe","course_number":42953,"instructor":"Marcia Bode","location":"196 Marks Way","time":"2018-07-14T00:35:28.377Z","enrolled":58957,"book":"https://jamaal.biz","course_url":"http://haleigh.net"},{"course_title":"Prohaska LLC","course_number":86808,"instructor":"Rey Ruecker","location":"854 Goodwin Island","time":"2018-07-14T05:37:45.442Z","enrolled":72367,"book":"https://glenda.biz","course_url":"https://molly.biz"},{"course_title":"Schuster - Schmitt","course_number":39670,"instructor":"Salma Robel","location":"7717 Hirthe Manor","time":"2018-07-14T01:38:59.964Z","enrolled":91559,"book":"http://jamel.info","course_url":"https://norma.org"},{"course_title":"Keebler - Blanda","course_number":89187,"instructor":"Ms. Juanita MacGyver","location":"116 Megane Manor","time":"2018-07-14T10:12:59.888Z","enrolled":89958,"book":"http://edmund.name","course_url":"http://bennie.org"},{"course_title":"Daugherty Inc","course_number":22165,"instructor":"Buster Legros","location":"502 Fernando Field","time":"2018-07-14T19:25:04.056Z","enrolled":38909,"book":"http://green.name","course_url":"http://michele.net"},{"course_title":"Wilkinson, Davis and Kling","course_number":93836,"instructor":"Marcelina Veum","location":"61024 Erik Glen","time":"2018-07-14T22:32:40.583Z","enrolled":65542,"book":"http://alayna.name","course_url":"https://kali.biz"},{"course_title":"Hodkiewicz and Sons","course_number":14327,"instructor":"Fay McLaughlin DVM","location":"079 Cesar Lights","time":"2018-07-14T00:58:42.254Z","enrolled":52420,"book":"http://cory.com","course_url":"http://cortez.com"},{"course_title":"Flatley, Kovacek and Mraz","course_number":29258,"instructor":"Cora Kling","location":"506 Kerluke Courts","time":"2018-07-14T03:38:20.310Z","enrolled":43407,"book":"http://amy.biz","course_url":"http://mercedes.biz"},{"course_title":"McDermott, Dare and Buckridge","course_number":58662,"instructor":"Aleen Schoen","location":"34628 Cody Rue","time":"2018-07-14T02:20:43.162Z","enrolled":98727,"book":"http://marilou.biz","course_url":"https://luther.name"},{"course_title":"Ortiz - Lubowitz","course_number":62804,"instructor":"Afton Hintz DDS","location":"4417 Brady Ways","time":"2018-07-14T07:35:09.390Z","enrolled":83405,"book":"http://zion.com","course_url":"https://sydnee.name"},{"course_title":"Koch LLC","course_number":60308,"instructor":"Clint Rempel","location":"742 Koelpin Freeway","time":"2018-07-14T12:01:31.485Z","enrolled":60400,"book":"http://omer.net","course_url":"http://perry.com"},{"course_title":"Kertzmann and Sons","course_number":96243,"instructor":"Wellington Roob","location":"5796 Weissnat Roads","time":"2018-07-14T15:25:09.710Z","enrolled":44177,"book":"https://tia.net","course_url":"https://abbigail.info"},{"course_title":"Emmerich Group","course_number":53809,"instructor":"Charlie Zemlak","location":"40068 Turner Lodge","time":"2018-07-14T11:15:35.163Z","enrolled":71267,"book":"http://fannie.info","course_url":"http://jarod.com"},{"course_title":"Armstrong, Cole and Tillman","course_number":31011,"instructor":"Lon Blanda","location":"8398 Lubowitz Island","time":"2018-07-13T23:48:06.786Z","enrolled":3407,"book":"http://mireille.info","course_url":"https://kiara.net"},{"course_title":"Murphy, Lang and Bashirian","course_number":30035,"instructor":"Addie Nader","location":"34710 Kassulke Park","time":"2018-07-14T09:23:30.349Z","enrolled":56216,"book":"http://eileen.name","course_url":"https://levi.name"},{"course_title":"Pouros and Sons","course_number":96083,"instructor":"Estell Cronin","location":"5690 Thompson Club","time":"2018-07-14T12:29:55.530Z","enrolled":71438,"book":"https://christop.name","course_url":"http://loyal.biz"},{"course_title":"Jacobi and Sons","course_number":61105,"instructor":"Isac Buckridge","location":"12171 Angie Harbor","time":"2018-07-14T12:46:32.010Z","enrolled":23030,"book":"http://vanessa.info","course_url":"https://beaulah.biz"},{"course_title":"Mraz - Kutch","course_number":12166,"instructor":"Kamryn Kihn","location":"785 Donna Burgs","time":"2018-07-13T23:14:58.978Z","enrolled":43967,"book":"http://cordia.name","course_url":"http://eunice.com"},{"course_title":"Schulist, Koelpin and Gutmann","course_number":49856,"instructor":"Ilene Weissnat","location":"4074 Towne Spur","time":"2018-07-14T13:48:28.150Z","enrolled":85555,"book":"http://jaime.net","course_url":"http://ezra.com"},{"course_title":"Rau Group","course_number":11060,"instructor":"Gretchen Beahan","location":"8832 Madisen Ford","time":"2018-07-14T07:32:34.409Z","enrolled":39641,"book":"https://xzavier.name","course_url":"https://jovany.name"},{"course_title":"Lebsack, Gutkowski and Mitchell","course_number":92633,"instructor":"Estell MacGyver","location":"385 Tanya Plains","time":"2018-07-13T23:17:40.287Z","enrolled":30972,"book":"http://domenica.net","course_url":"https://rogelio.name"},{"course_title":"Johnston, Zieme and Pfannerstill","course_number":41345,"instructor":"Christine Heaney","location":"156 Boyle Valleys","time":"2018-07-14T16:33:41.710Z","enrolled":90093,"book":"https://koby.biz","course_url":"https://edwin.biz"},{"course_title":"Jakubowski - Bruen","course_number":91047,"instructor":"Armando Hammes","location":"748 Ruecker Corner","time":"2018-07-14T12:30:48.834Z","enrolled":74962,"book":"https://minnie.name","course_url":"https://paul.biz"},{"course_title":"Schultz - Bauch","course_number":51030,"instructor":"Irwin Ratke","location":"6591 Gerry Extension","time":"2018-07-14T18:35:34.486Z","enrolled":91618,"book":"http://casper.info","course_url":"https://judson.com"},{"course_title":"Kris Inc","course_number":4380,"instructor":"Rowland Lindgren","location":"63289 Steuber Way","time":"2018-07-14T02:54:56.853Z","enrolled":64134,"book":"https://lelia.net","course_url":"http://raquel.biz"},{"course_title":"Hartmann Inc","course_number":330,"instructor":"Hattie West","location":"7882 Herman Drive","time":"2018-07-13T23:27:19.900Z","enrolled":2701,"book":"http://scot.org","course_url":"http://brook.org"},{"course_title":"Gorczany, Medhurst and Zboncak","course_number":12779,"instructor":"Rafael Rempel","location":"584 Krystal Island","time":"2018-07-14T22:35:02.333Z","enrolled":65558,"book":"http://kristopher.info","course_url":"http://freeda.info"},{"course_title":"Stamm - Walker","course_number":89583,"instructor":"Jan Green","location":"30643 Miller Port","time":"2018-07-14T11:16:50.399Z","enrolled":45174,"book":"https://craig.info","course_url":"http://orrin.org"},{"course_title":"McClure, Ferry and Kunde","course_number":62708,"instructor":"Elvera Ferry","location":"24348 O'Keefe Springs","time":"2018-07-14T15:21:22.055Z","enrolled":54477,"book":"http://avery.name","course_url":"https://eric.com"},{"course_title":"Wilderman Inc","course_number":69477,"instructor":"Giovanna Frami","location":"5325 Brekke Harbor","time":"2018-07-14T01:07:08.550Z","enrolled":67239,"book":"https://alda.info","course_url":"http://velva.info"},{"course_title":"Nicolas, O'Connell and Herman","course_number":73249,"instructor":"Gabrielle Monahan","location":"3295 Jones Plain","time":"2018-07-14T03:36:07.065Z","enrolled":25635,"book":"http://breanne.name","course_url":"http://verner.biz"},{"course_title":"Turcotte - Hirthe","course_number":7657,"instructor":"Jaylon Green","location":"64537 Viva Turnpike","time":"2018-07-13T23:48:52.134Z","enrolled":23856,"book":"http://maryjane.net","course_url":"https://christophe.net"},{"course_title":"Reilly - Kutch","course_number":76479,"instructor":"Hilton Hudson","location":"749 Megane Land","time":"2018-07-14T07:29:19.567Z","enrolled":38345,"book":"http://nayeli.name","course_url":"http://vada.com"},{"course_title":"Terry, Wuckert and Johnston","course_number":73116,"instructor":"Houston Hessel","location":"060 Art Unions","time":"2018-07-14T11:58:12.866Z","enrolled":3318,"book":"http://seamus.info","course_url":"https://madisen.com"},{"course_title":"Pagac, O'Reilly and Prohaska","course_number":88548,"instructor":"Mr. Cassandre Kirlin","location":"795 Aglae View","time":"2018-07-14T03:40:36.964Z","enrolled":40100,"book":"http://rodolfo.net","course_url":"http://price.net"},{"course_title":"Dibbert Inc","course_number":49422,"instructor":"Ms. Petra Kreiger","location":"7860 Swift Mission","time":"2018-07-14T21:46:04.403Z","enrolled":52005,"book":"http://lucio.org","course_url":"https://karlie.name"},{"course_title":"Schulist and Sons","course_number":37733,"instructor":"Kim Steuber","location":"329 Strosin Extension","time":"2018-07-14T13:10:01.377Z","enrolled":85516,"book":"https://madilyn.biz","course_url":"https://eldon.info"},{"course_title":"Breitenberg, Lubowitz and Kreiger","course_number":52572,"instructor":"Christian Hyatt","location":"26270 Effertz Radial","time":"2018-07-13T23:33:23.069Z","enrolled":8148,"book":"https://schuyler.org","course_url":"https://fred.name"},{"course_title":"Walker, Jenkins and Treutel","course_number":68170,"instructor":"Rene Feeney","location":"983 Harvey Knoll","time":"2018-07-14T22:21:30.077Z","enrolled":46184,"book":"http://santino.org","course_url":"https://adolph.com"},{"course_title":"Wintheiser, Gutkowski and Howe","course_number":70346,"instructor":"Otho Rutherford","location":"289 Langosh Village","time":"2018-07-14T16:01:53.378Z","enrolled":53312,"book":"https://emiliano.org","course_url":"http://ross.net"},{"course_title":"Heidenreich - Huel","course_number":56757,"instructor":"Cletus Yost IV","location":"4192 Nikolaus Avenue","time":"2018-07-14T15:16:56.329Z","enrolled":31075,"book":"http://lou.info","course_url":"http://khalid.net"},{"course_title":"Treutel Group","course_number":41145,"instructor":"Therese Ratke V","location":"5351 McClure Mountain","time":"2018-07-14T03:34:29.850Z","enrolled":60066,"book":"http://abbigail.biz","course_url":"http://lori.name"},{"course_title":"Larson - McGlynn","course_number":46355,"instructor":"Anthony Oberbrunner IV","location":"0585 Schuster Mountain","time":"2018-07-14T08:56:35.954Z","enrolled":66826,"book":"https://neal.name","course_url":"https://eric.info"},{"course_title":"O'Conner LLC","course_number":7827,"instructor":"Jordi Beer","location":"90837 Concepcion Ville","time":"2018-07-14T21:31:38.713Z","enrolled":17665,"book":"http://bradford.net","course_url":"http://ted.net"},{"course_title":"Reynolds - Conn","course_number":53981,"instructor":"Kendra Hoppe","location":"8119 Raphael Lock","time":"2018-07-14T00:30:47.985Z","enrolled":52814,"book":"https://karianne.name","course_url":"https://ross.org"},{"course_title":"Hilll - Ullrich","course_number":20343,"instructor":"Verna Grady","location":"197 Davis Port","time":"2018-07-14T00:30:29.538Z","enrolled":7106,"book":"http://spencer.com","course_url":"https://damon.name"},{"course_title":"Fritsch - Dicki","course_number":24872,"instructor":"Adrianna Kautzer","location":"7406 Treutel Viaduct","time":"2018-07-14T08:35:47.098Z","enrolled":87305,"book":"http://clay.biz","course_url":"https://elvie.biz"},{"course_title":"Lesch - Heathcote","course_number":20366,"instructor":"Claudine Rogahn","location":"15969 Kamille Mill","time":"2018-07-14T13:40:52.173Z","enrolled":37009,"book":"http://domenico.org","course_url":"http://katrine.info"},{"course_title":"Walter - Eichmann","course_number":13572,"instructor":"Hassan McGlynn","location":"10405 Farrell Hollow","time":"2018-07-14T05:54:51.461Z","enrolled":70163,"book":"http://ibrahim.net","course_url":"http://meagan.info"},{"course_title":"Cummerata LLC","course_number":10802,"instructor":"Velva McCullough","location":"38257 Schmeler Trail","time":"2018-07-14T07:26:41.055Z","enrolled":10607,"book":"https://monica.info","course_url":"https://deondre.org"},{"course_title":"Reichel Inc","course_number":95260,"instructor":"Gerard Runolfsdottir","location":"00926 Beahan Bridge","time":"2018-07-14T08:02:05.897Z","enrolled":92423,"book":"http://dejon.info","course_url":"https://alessia.com"},{"course_title":"Maggio LLC","course_number":30273,"instructor":"Ricardo Krajcik","location":"889 Weber Drives","time":"2018-07-14T18:14:50.073Z","enrolled":56670,"book":"http://weston.biz","course_url":"https://mateo.info"},{"course_title":"Kris, Cummerata and Zulauf","course_number":23565,"instructor":"Viviane Boehm","location":"17139 Huels Fork","time":"2018-07-14T13:05:02.908Z","enrolled":51396,"book":"http://donny.info","course_url":"https://murphy.info"},{"course_title":"Ritchie, Parisian and Vandervort","course_number":65063,"instructor":"Dr. Hailie Batz","location":"818 Emory Gateway","time":"2018-07-14T06:32:42.365Z","enrolled":2127,"book":"http://annabell.name","course_url":"http://milan.org"},{"course_title":"Koelpin LLC","course_number":74136,"instructor":"Pauline Morissette","location":"079 Annabelle Park","time":"2018-07-14T22:08:13.984Z","enrolled":13785,"book":"http://rahsaan.biz","course_url":"http://xander.net"},{"course_title":"Ledner - Stark","course_number":42679,"instructor":"Oran Lueilwitz","location":"7938 Spinka Summit","time":"2018-07-14T00:24:45.704Z","enrolled":35738,"book":"http://adella.net","course_url":"http://domenick.org"},{"course_title":"Pacocha and Sons","course_number":4507,"instructor":"Dr. Shaniya Goodwin","location":"726 Fahey Pines","time":"2018-07-14T21:04:18.136Z","enrolled":65177,"book":"http://hiram.com","course_url":"https://ellen.com"},{"course_title":"Reichel, Pouros and Luettgen","course_number":78207,"instructor":"Larry Tillman II","location":"99602 Ramona Port","time":"2018-07-14T09:51:56.892Z","enrolled":97891,"book":"https://margaretta.org","course_url":"https://santino.com"},{"course_title":"Larson, O'Connell and Toy","course_number":33716,"instructor":"Armando Orn","location":"69486 Lemke Meadows","time":"2018-07-13T23:32:18.173Z","enrolled":96271,"book":"https://kian.name","course_url":"http://daron.biz"},{"course_title":"Conn, Upton and Johnston","course_number":23504,"instructor":"Alysha Treutel","location":"5081 Jeremy Well","time":"2018-07-13T23:16:37.753Z","enrolled":66254,"book":"https://ike.com","course_url":"http://aliza.org"},{"course_title":"Little LLC","course_number":47485,"instructor":"Ignatius Sanford","location":"29408 Hilll Road","time":"2018-07-14T12:58:58.657Z","enrolled":47855,"book":"https://magdalen.net","course_url":"http://adelia.com"},{"course_title":"McCullough, Kuvalis and Skiles","course_number":18415,"instructor":"Mr. Javonte Conroy","location":"67803 Koelpin Lodge","time":"2018-07-14T17:16:54.391Z","enrolled":12882,"book":"https://rodrick.org","course_url":"https://sophie.org"},{"course_title":"Anderson, Hansen and Keeling","course_number":78268,"instructor":"Hubert Pouros","location":"719 Sawayn Lights","time":"2018-07-14T05:34:23.743Z","enrolled":95300,"book":"http://vito.info","course_url":"https://kelsie.net"},{"course_title":"Boyle - Johnston","course_number":29999,"instructor":"Tre Treutel","location":"2795 Randi Falls","time":"2018-07-14T12:52:47.970Z","enrolled":68,"book":"http://courtney.name","course_url":"https://roselyn.org"},{"course_title":"Hagenes, Smith and Kiehn","course_number":71514,"instructor":"Alessia Bauch","location":"41712 Bobbie Forges","time":"2018-07-14T17:03:16.061Z","enrolled":95719,"book":"https://scot.com","course_url":"https://chaim.net"},{"course_title":"Marks, Feest and Koelpin","course_number":61854,"instructor":"Hildegard Veum","location":"214 Bailey Centers","time":"2018-07-14T21:08:59.706Z","enrolled":88171,"book":"https://drake.com","course_url":"https://ernestina.net"},{"course_title":"Krajcik, Balistreri and Leannon","course_number":46530,"instructor":"Kariane Zulauf","location":"61185 Zakary Brook","time":"2018-07-14T06:51:24.229Z","enrolled":61048,"book":"https://raquel.biz","course_url":"https://taurean.net"},{"course_title":"Raynor Group","course_number":43328,"instructor":"Kendall Thompson","location":"9466 Schroeder Burgs","time":"2018-07-14T15:01:44.559Z","enrolled":7686,"book":"https://kay.biz","course_url":"https://eve.net"},{"course_title":"Adams - Kreiger","course_number":47035,"instructor":"Orland Morar III","location":"786 Ima Union","time":"2018-07-14T19:44:13.086Z","enrolled":87955,"book":"http://eldred.org","course_url":"http://treva.biz"},{"course_title":"Kuvalis, Zulauf and Roberts","course_number":99401,"instructor":"Camila Wilkinson","location":"20589 Lucius Glens","time":"2018-07-14T04:34:13.882Z","enrolled":70020,"book":"https://alanna.name","course_url":"http://keagan.biz"},{"course_title":"Bashirian - Murazik","course_number":23271,"instructor":"Aniyah Schumm","location":"1309 Dooley Walks","time":"2018-07-14T00:16:47.229Z","enrolled":86486,"book":"https://daisy.net","course_url":"http://luigi.biz"},{"course_title":"Wiza Inc","course_number":77058,"instructor":"Della Emard","location":"7883 Aracely Track","time":"2018-07-14T15:46:15.727Z","enrolled":286,"book":"https://orlo.org","course_url":"http://lucious.info"},{"course_title":"Hauck, Huel and Collier","course_number":50669,"instructor":"Dr. Beaulah Langworth","location":"658 Cameron Garden","time":"2018-07-14T06:59:57.028Z","enrolled":37258,"book":"http://gaston.biz","course_url":"http://lottie.net"},{"course_title":"Upton, Mitchell and Witting","course_number":99139,"instructor":"Stacey Bahringer","location":"4699 Vernie Shores","time":"2018-07-14T22:55:12.198Z","enrolled":37424,"book":"http://reuben.org","course_url":"http://moses.biz"},{"course_title":"Lowe - Legros","course_number":91873,"instructor":"Perry Ullrich","location":"914 Adeline Coves","time":"2018-07-14T12:51:59.733Z","enrolled":9142,"book":"http://geo.info","course_url":"http://antonietta.biz"},{"course_title":"Buckridge LLC","course_number":17748,"instructor":"Teresa Rath","location":"78031 Maye Place","time":"2018-07-14T13:56:50.380Z","enrolled":22068,"book":"https://hardy.biz","course_url":"http://rosemarie.net"},{"course_title":"Wiza, Botsford and Yost","course_number":14015,"instructor":"Verner Koelpin II","location":"393 Ullrich Tunnel","time":"2018-07-14T17:06:52.842Z","enrolled":76912,"book":"http://rickie.net","course_url":"http://adelbert.name"},{"course_title":"Powlowski - Simonis","course_number":7537,"instructor":"Barrett Lemke","location":"54085 Riley Lock","time":"2018-07-14T03:06:02.414Z","enrolled":9524,"book":"https://josianne.info","course_url":"https://pauline.org"},{"course_title":"Rath and Sons","course_number":82680,"instructor":"Althea Powlowski Sr.","location":"528 Kuhlman Crest","time":"2018-07-14T04:00:42.063Z","enrolled":20525,"book":"http://josefa.org","course_url":"http://isadore.com"},{"course_title":"Ryan, Homenick and Hamill","course_number":39662,"instructor":"Meagan Glover","location":"7611 Konopelski Island","time":"2018-07-14T07:20:52.576Z","enrolled":90006,"book":"http://ezequiel.info","course_url":"https://leilani.org"},{"course_title":"Veum Inc","course_number":16811,"instructor":"Shany Heathcote DVM","location":"7671 Delphine Mountain","time":"2018-07-14T03:26:30.630Z","enrolled":82905,"book":"http://lavinia.net","course_url":"http://ayla.info"},{"course_title":"Ritchie, Grant and Stiedemann","course_number":75114,"instructor":"Davonte Gusikowski","location":"3663 Joy Forges","time":"2018-07-14T02:36:32.715Z","enrolled":92435,"book":"http://susan.name","course_url":"http://tracey.org"},{"course_title":"Lueilwitz - Baumbach","course_number":73326,"instructor":"Kamryn Paucek","location":"75144 Mable Throughway","time":"2018-07-14T04:06:17.869Z","enrolled":26504,"book":"http://kyla.com","course_url":"https://camron.net"},{"course_title":"Emard, O'Kon and Kerluke","course_number":45,"instructor":"Grant Ledner","location":"3260 Devonte Estate","time":"2018-07-14T11:29:17.309Z","enrolled":22361,"book":"http://laverna.net","course_url":"http://colby.info"},{"course_title":"Cummings, Harber and Huel","course_number":8771,"instructor":"Vernie Zulauf","location":"4680 Liza Overpass","time":"2018-07-14T03:24:24.204Z","enrolled":84836,"book":"http://liza.info","course_url":"https://magnus.org"},{"course_title":"Nienow Group","course_number":80836,"instructor":"Mrs. Madalyn Lemke","location":"746 Earnestine Crest","time":"2018-07-14T19:40:32.114Z","enrolled":56802,"book":"http://marisol.biz","course_url":"https://lon.info"},{"course_title":"Swaniawski, Hahn and Wehner","course_number":10296,"instructor":"Yoshiko Shanahan","location":"890 Mertz Junctions","time":"2018-07-14T07:40:04.197Z","enrolled":94768,"book":"https://jennyfer.org","course_url":"http://jillian.name"},{"course_title":"Sipes LLC","course_number":93851,"instructor":"Miss Elyssa Huels","location":"69408 Estrella Isle","time":"2018-07-14T04:10:47.560Z","enrolled":51198,"book":"https://shirley.net","course_url":"http://lora.info"},{"course_title":"Corkery - Grady","course_number":97097,"instructor":"Arvilla Cummings","location":"692 Treva Valley","time":"2018-07-14T19:11:59.257Z","enrolled":44359,"book":"http://mara.com","course_url":"https://mose.net"},{"course_title":"Kirlin Inc","course_number":23796,"instructor":"Zola Collier","location":"85592 Nolan Junctions","time":"2018-07-14T19:35:45.595Z","enrolled":30344,"book":"http://danielle.name","course_url":"https://geovany.info"},{"course_title":"Erdman, Dooley and Johnston","course_number":67903,"instructor":"Mertie Wehner","location":"7071 Melisa Fork","time":"2018-07-14T16:09:04.744Z","enrolled":21507,"book":"https://boyd.biz","course_url":"http://eugenia.net"},{"course_title":"Senger - Abernathy","course_number":44025,"instructor":"Alford Emmerich","location":"147 Jacky Mount","time":"2018-07-14T15:56:51.611Z","enrolled":58199,"book":"http://ali.com","course_url":"https://magnolia.info"},{"course_title":"Rolfson - Mraz","course_number":59255,"instructor":"Mr. Milo DuBuque","location":"049 Towne Mountains","time":"2018-07-14T16:20:43.817Z","enrolled":7998,"book":"http://margot.biz","course_url":"http://oma.net"},{"course_title":"Purdy, Corwin and Mraz","course_number":82775,"instructor":"Alexandria Hammes Sr.","location":"502 Johanna Road","time":"2018-07-14T12:29:06.139Z","enrolled":48369,"book":"http://triston.biz","course_url":"http://arlie.biz"},{"course_title":"Vandervort - Maggio","course_number":20537,"instructor":"Frank Romaguera","location":"122 Mohammad Falls","time":"2018-07-14T20:15:08.698Z","enrolled":93196,"book":"http://mckenzie.name","course_url":"http://meredith.org"},{"course_title":"Armstrong, Weissnat and Vandervort","course_number":52329,"instructor":"Kassandra Goyette","location":"757 Krista Mountains","time":"2018-07-14T00:12:36.061Z","enrolled":70978,"book":"http://marilyne.info","course_url":"https://brody.net"},{"course_title":"Ankunding LLC","course_number":23243,"instructor":"Petra Lesch IV","location":"6824 Amy Villages","time":"2018-07-14T03:55:50.421Z","enrolled":8966,"book":"http://sydnie.com","course_url":"http://zelda.name"},{"course_title":"Walker - DuBuque","course_number":47162,"instructor":"Rex Boehm","location":"211 Graham Springs","time":"2018-07-14T17:22:08.554Z","enrolled":90179,"book":"https://sanford.info","course_url":"http://crystal.name"},{"course_title":"Ebert and Sons","course_number":84094,"instructor":"Forest Zieme II","location":"1887 Schiller Keys","time":"2018-07-14T16:55:37.034Z","enrolled":70108,"book":"https://rebekah.net","course_url":"http://sofia.net"},{"course_title":"Huel - Kuhlman","course_number":87570,"instructor":"Haylie Gibson","location":"50701 Marge Village","time":"2018-07-14T05:50:34.818Z","enrolled":68528,"book":"http://adell.info","course_url":"http://judson.com"},{"course_title":"Abbott Group","course_number":75676,"instructor":"Lesly Harber","location":"9339 O'Conner River","time":"2018-07-14T12:47:21.281Z","enrolled":82382,"book":"http://aletha.info","course_url":"https://mable.net"},{"course_title":"Friesen - Walker","course_number":80773,"instructor":"Dr. Phyllis Ferry","location":"26172 Schoen Neck","time":"2018-07-14T19:19:01.925Z","enrolled":85474,"book":"https://cathy.biz","course_url":"https://matilde.info"},{"course_title":"Waters, Leannon and Russel","course_number":42771,"instructor":"Kaelyn Schneider","location":"6139 Arvel Union","time":"2018-07-14T10:55:08.285Z","enrolled":93935,"book":"https://westley.biz","course_url":"http://calista.name"},{"course_title":"Green, Schowalter and Boehm","course_number":35337,"instructor":"Robin Schmitt","location":"25788 Mayert Parkways","time":"2018-07-14T11:23:30.288Z","enrolled":90609,"book":"https://heaven.name","course_url":"http://bernhard.name"},{"course_title":"Pacocha - Spencer","course_number":9555,"instructor":"Burnice Herzog","location":"57323 Ernser Drive","time":"2018-07-14T21:59:41.634Z","enrolled":50101,"book":"https://breanna.net","course_url":"https://clint.name"},{"course_title":"Deckow and Sons","course_number":35097,"instructor":"Fern Wunsch","location":"73486 Ellis Skyway","time":"2018-07-14T04:51:13.789Z","enrolled":56313,"book":"https://keanu.name","course_url":"https://alayna.org"},{"course_title":"O'Reilly Inc","course_number":52663,"instructor":"Alf Schamberger I","location":"32367 Waters Forge","time":"2018-07-14T22:45:40.134Z","enrolled":17714,"book":"http://oliver.net","course_url":"http://roberta.net"},{"course_title":"Willms, Pagac and Medhurst","course_number":1801,"instructor":"Glen Nitzsche","location":"68639 Wiza Causeway","time":"2018-07-14T10:49:26.916Z","enrolled":1582,"book":"https://vidal.info","course_url":"http://dana.name"},{"course_title":"Kling - Schamberger","course_number":68724,"instructor":"Ms. Hobart Lakin","location":"9883 Annabell Common","time":"2018-07-14T15:25:47.653Z","enrolled":97180,"book":"https://lauretta.name","course_url":"https://marty.net"},{"course_title":"Quigley - Jerde","course_number":70294,"instructor":"Alysa Lindgren","location":"36403 Quitzon Coves","time":"2018-07-13T23:51:38.063Z","enrolled":25900,"book":"https://isabell.name","course_url":"http://cassandra.com"},{"course_title":"Franecki and Sons","course_number":13974,"instructor":"Ricky Marvin","location":"2539 Rodriguez Crest","time":"2018-07-13T23:32:27.629Z","enrolled":52584,"book":"http://hobart.name","course_url":"https://mark.info"},{"course_title":"Cassin - Treutel","course_number":27330,"instructor":"Cale Tromp","location":"001 Kulas Stream","time":"2018-07-14T22:31:31.315Z","enrolled":94224,"book":"https://joel.net","course_url":"http://ruth.biz"},{"course_title":"Huels - Murphy","course_number":49977,"instructor":"Erna Raynor","location":"6063 Zulauf Views","time":"2018-07-14T15:10:50.373Z","enrolled":86559,"book":"https://elza.info","course_url":"http://mason.biz"},{"course_title":"Kub, Conroy and Greenholt","course_number":37747,"instructor":"Stacey O'Hara DDS","location":"0455 Kathleen Squares","time":"2018-07-14T02:06:49.000Z","enrolled":59321,"book":"https://brooks.org","course_url":"https://wendy.biz"},{"course_title":"Kling - Nitzsche","course_number":28674,"instructor":"Georgette Treutel","location":"00246 Bauch Park","time":"2018-07-14T19:04:22.735Z","enrolled":99209,"book":"https://nova.org","course_url":"https://sally.org"},{"course_title":"McLaughlin - Jerde","course_number":47148,"instructor":"Mrs. Alaina Daniel","location":"7792 Abshire Fort","time":"2018-07-14T09:37:05.312Z","enrolled":39565,"book":"http://cara.biz","course_url":"http://judge.biz"},{"course_title":"Aufderhar Group","course_number":35687,"instructor":"Mrs. Marcia Quitzon","location":"6644 Santos Plaza","time":"2018-07-14T14:01:50.613Z","enrolled":68107,"book":"https://mossie.name","course_url":"https://adrian.info"},{"course_title":"Fahey LLC","course_number":7165,"instructor":"Taylor Borer","location":"47849 Flatley Drive","time":"2018-07-14T15:44:01.756Z","enrolled":26808,"book":"https://cassie.net","course_url":"https://stephania.name"},{"course_title":"Zieme - Rau","course_number":21092,"instructor":"Addie Hahn Jr.","location":"1904 Zieme River","time":"2018-07-14T11:36:16.013Z","enrolled":20853,"book":"https://devyn.name","course_url":"http://blaise.name"},{"course_title":"Heidenreich, Howell and Champlin","course_number":54355,"instructor":"Virginie Schimmel II","location":"20604 Ledner Knolls","time":"2018-07-14T06:16:17.360Z","enrolled":34090,"book":"http://hyman.net","course_url":"http://meredith.com"},{"course_title":"Welch LLC","course_number":53232,"instructor":"Orrin Marquardt","location":"31609 Pfeffer Causeway","time":"2018-07-14T10:48:05.121Z","enrolled":49536,"book":"http://emilie.net","course_url":"https://brooke.net"},{"course_title":"Shields Inc","course_number":88867,"instructor":"Ubaldo Sipes","location":"74064 Maxwell Camp","time":"2018-07-14T01:11:04.652Z","enrolled":60142,"book":"https://karina.info","course_url":"http://lupe.com"},{"course_title":"Purdy, Gerhold and Corkery","course_number":5159,"instructor":"Vincent Weimann","location":"8683 Lukas Park","time":"2018-07-14T02:14:06.418Z","enrolled":77741,"book":"https://travis.org","course_url":"https://felipa.org"},{"course_title":"Wehner and Sons","course_number":36998,"instructor":"Rolando Wintheiser","location":"53602 Lester Forges","time":"2018-07-14T14:33:01.682Z","enrolled":58446,"book":"http://nicolette.biz","course_url":"https://jayde.info"},{"course_title":"Hilll, Weissnat and Murphy","course_number":90957,"instructor":"Hulda D'Amore","location":"68465 Christopher Expressway","time":"2018-07-14T21:43:27.846Z","enrolled":53909,"book":"https://vida.biz","course_url":"https://timothy.name"},{"course_title":"Steuber - Cassin","course_number":41549,"instructor":"Jessy Wintheiser","location":"2689 Altenwerth Pines","time":"2018-07-14T12:37:13.764Z","enrolled":41637,"book":"https://king.org","course_url":"http://lester.info"},{"course_title":"Dooley - Weber","course_number":26604,"instructor":"Janie Blanda","location":"2740 Annabel Views","time":"2018-07-14T01:22:31.704Z","enrolled":90496,"book":"https://bernita.org","course_url":"https://kyle.biz"},{"course_title":"Schaefer, Robel and Purdy","course_number":76594,"instructor":"Elmer Upton","location":"8379 Susanna Plaza","time":"2018-07-14T22:38:16.369Z","enrolled":68907,"book":"http://constance.org","course_url":"https://davion.org"},{"course_title":"Waters, Lakin and Block","course_number":70005,"instructor":"Katarina Wintheiser","location":"9044 Runolfsson Mountains","time":"2018-07-14T01:22:59.289Z","enrolled":36480,"book":"http://christian.biz","course_url":"http://kaylah.name"},{"course_title":"Robel and Sons","course_number":9754,"instructor":"Kip Wolff","location":"4223 O'Connell Club","time":"2018-07-14T11:49:37.175Z","enrolled":89400,"book":"https://phoebe.biz","course_url":"http://melissa.com"},{"course_title":"Lind, Anderson and Leuschke","course_number":97240,"instructor":"Jerad Berge","location":"1613 Rau Loop","time":"2018-07-14T10:57:08.108Z","enrolled":39332,"book":"http://christelle.name","course_url":"https://vidal.biz"},{"course_title":"Schultz - Hansen","course_number":52875,"instructor":"Lafayette Crist","location":"636 Kerluke Points","time":"2018-07-14T18:13:17.749Z","enrolled":27694,"book":"https://moses.biz","course_url":"http://kris.info"},{"course_title":"Brakus Group","course_number":75130,"instructor":"Lura Runte","location":"94898 Bette Valleys","time":"2018-07-14T05:09:09.383Z","enrolled":26519,"book":"https://edwina.org","course_url":"https://garrison.com"},{"course_title":"Lesch - Ullrich","course_number":18549,"instructor":"Nathanael Marvin","location":"94874 Denesik Plains","time":"2018-07-14T00:18:38.175Z","enrolled":43043,"book":"http://daisy.name","course_url":"http://arianna.com"},{"course_title":"Bergstrom - Hintz","course_number":88014,"instructor":"Margarete Beahan","location":"734 Giovanni Manor","time":"2018-07-14T04:32:33.072Z","enrolled":22663,"book":"https://lavon.com","course_url":"http://charlie.name"},{"course_title":"Konopelski, Treutel and Emmerich","course_number":60693,"instructor":"Mark Strosin","location":"190 Trent Camp","time":"2018-07-14T14:43:26.298Z","enrolled":69258,"book":"http://elise.info","course_url":"http://garret.biz"},{"course_title":"Rath - Marks","course_number":25783,"instructor":"Avis Gulgowski","location":"344 Paxton Road","time":"2018-07-14T20:29:16.514Z","enrolled":90976,"book":"https://tommie.net","course_url":"https://andres.name"},{"course_title":"Howell - Schmitt","course_number":32301,"instructor":"Colleen Mann","location":"1177 Maxwell Crescent","time":"2018-07-14T01:21:16.228Z","enrolled":44475,"book":"http://lawrence.com","course_url":"http://pinkie.com"},{"course_title":"Heathcote - Mayert","course_number":47282,"instructor":"Ricky Fahey","location":"52735 Lueilwitz Tunnel","time":"2018-07-14T07:47:08.108Z","enrolled":24333,"book":"https://trinity.org","course_url":"http://carroll.biz"},{"course_title":"Luettgen, Conn and Lueilwitz","course_number":95197,"instructor":"Wendell King","location":"009 Judson Road","time":"2018-07-14T20:50:13.843Z","enrolled":97430,"book":"http://ray.biz","course_url":"https://anne.org"},{"course_title":"Jones, Murray and Tillman","course_number":89371,"instructor":"Meagan Hintz","location":"044 Ashleigh Brook","time":"2018-07-14T09:28:50.245Z","enrolled":96551,"book":"http://makenna.com","course_url":"https://evans.org"},{"course_title":"Haag - Nolan","course_number":19345,"instructor":"Santiago Harber","location":"5353 Quinten Causeway","time":"2018-07-14T20:14:04.313Z","enrolled":58297,"book":"http://maud.net","course_url":"http://dwight.com"},{"course_title":"Anderson - Monahan","course_number":87852,"instructor":"Meggie Greenholt","location":"466 Lilly Ports","time":"2018-07-14T06:10:16.773Z","enrolled":68752,"book":"http://alford.com","course_url":"http://jarret.net"},{"course_title":"Schneider Group","course_number":8979,"instructor":"Benton Gislason","location":"677 Hugh Hills","time":"2018-07-14T15:22:25.129Z","enrolled":80871,"book":"http://laverne.net","course_url":"http://reuben.com"},{"course_title":"Boehm - VonRueden","course_number":57608,"instructor":"Leon Corwin","location":"692 Kshlerin Lodge","time":"2018-07-14T03:57:25.256Z","enrolled":44968,"book":"https://maryjane.org","course_url":"https://hellen.net"},{"course_title":"Reilly - Sanford","course_number":60782,"instructor":"Mr. Ole Leuschke","location":"7550 Walter Crescent","time":"2018-07-14T17:01:43.251Z","enrolled":43154,"book":"http://jed.name","course_url":"https://barry.org"},{"course_title":"Heaney - O'Conner","course_number":12824,"instructor":"Sigmund Stamm","location":"6000 Marcus Port","time":"2018-07-14T15:49:40.004Z","enrolled":24859,"book":"http://deshaun.com","course_url":"https://dane.com"},{"course_title":"Ledner Group","course_number":56463,"instructor":"Genoveva Dibbert","location":"005 Clarabelle Lock","time":"2018-07-14T08:24:38.440Z","enrolled":70414,"book":"https://frank.biz","course_url":"https://hermann.name"},{"course_title":"Ondricka, Lindgren and Nikolaus","course_number":76412,"instructor":"Jalon Ebert","location":"63235 Grady Locks","time":"2018-07-14T15:22:53.193Z","enrolled":24600,"book":"http://malachi.biz","course_url":"http://vada.biz"},{"course_title":"Dickens, Zieme and Kreiger","course_number":70233,"instructor":"Dashawn Abshire","location":"505 Sarina Village","time":"2018-07-14T11:45:14.297Z","enrolled":54715,"book":"http://jairo.net","course_url":"https://lloyd.biz"},{"course_title":"Hagenes - Rice","course_number":7422,"instructor":"Joshuah Reichert","location":"20101 Jon Underpass","time":"2018-07-14T03:35:24.718Z","enrolled":79831,"book":"https://axel.biz","course_url":"http://halle.biz"},{"course_title":"Kerluke and Sons","course_number":38350,"instructor":"Ramon Cartwright","location":"393 Powlowski Island","time":"2018-07-14T01:32:36.532Z","enrolled":5852,"book":"https://haleigh.name","course_url":"http://daniela.name"},{"course_title":"Gerlach, Bergstrom and Mosciski","course_number":89171,"instructor":"Sonny Abernathy","location":"2789 Jacobs Roads","time":"2018-07-14T14:02:51.038Z","enrolled":42474,"book":"https://cecilia.org","course_url":"https://elisha.org"},{"course_title":"Wuckert LLC","course_number":76951,"instructor":"Art Lueilwitz","location":"34203 Mraz Plaza","time":"2018-07-14T20:24:32.210Z","enrolled":23563,"book":"https://caitlyn.name","course_url":"http://favian.info"},{"course_title":"Tillman and Sons","course_number":56992,"instructor":"Mr. Elta Cassin","location":"3911 Adrain Ridges","time":"2018-07-14T07:17:22.598Z","enrolled":91722,"book":"https://joy.com","course_url":"https://kallie.name"},{"course_title":"Abernathy - White","course_number":88525,"instructor":"Tito Nikolaus","location":"151 Corwin Crossroad","time":"2018-07-13T23:56:39.975Z","enrolled":62796,"book":"https://emmett.org","course_url":"http://adrianna.info"},{"course_title":"Spencer LLC","course_number":6580,"instructor":"Gerardo Buckridge","location":"6228 Mohr Valleys","time":"2018-07-14T21:52:08.020Z","enrolled":95070,"book":"https://greg.org","course_url":"http://nolan.net"},{"course_title":"Grimes Group","course_number":94065,"instructor":"Geovanny Nader","location":"43466 Maggie Lodge","time":"2018-07-14T15:32:38.793Z","enrolled":27149,"book":"https://hilton.info","course_url":"https://alanis.com"},{"course_title":"Wiegand LLC","course_number":39077,"instructor":"Melvin Doyle","location":"3194 Langosh Squares","time":"2018-07-14T21:37:06.799Z","enrolled":90129,"book":"http://myah.biz","course_url":"http://lew.info"},{"course_title":"Mueller Group","course_number":13754,"instructor":"Selena Wisozk","location":"327 Reinger Tunnel","time":"2018-07-14T15:44:00.842Z","enrolled":62285,"book":"http://glenna.info","course_url":"http://andre.info"},{"course_title":"Murazik LLC","course_number":42314,"instructor":"Allison Ledner","location":"03857 Lockman Landing","time":"2018-07-14T17:42:22.728Z","enrolled":89892,"book":"http://adrien.biz","course_url":"http://meghan.name"},{"course_title":"McClure, Paucek and Skiles","course_number":5744,"instructor":"Dejah Harvey","location":"04627 Schmitt Ridges","time":"2018-07-14T03:06:27.102Z","enrolled":89847,"book":"https://raleigh.biz","course_url":"http://josefina.name"},{"course_title":"Cummerata and Sons","course_number":37541,"instructor":"Abbey Renner","location":"3040 Alphonso Extensions","time":"2018-07-14T20:41:25.008Z","enrolled":5438,"book":"http://daryl.com","course_url":"https://keshaun.com"},{"course_title":"Kuhic and Sons","course_number":22386,"instructor":"Dorothy Schmitt DDS","location":"06979 Asa Mountains","time":"2018-07-14T17:38:19.116Z","enrolled":26182,"book":"https://brigitte.net","course_url":"http://donnie.com"},{"course_title":"Abernathy - Pfannerstill","course_number":79978,"instructor":"Genesis Parisian","location":"173 Raynor Field","time":"2018-07-14T01:26:21.473Z","enrolled":62552,"book":"http://montana.net","course_url":"http://renee.info"},{"course_title":"Schmidt, Gerlach and Satterfield","course_number":60656,"instructor":"Weston Krajcik","location":"67168 Wehner Loop","time":"2018-07-13T23:30:44.705Z","enrolled":13627,"book":"https://tobin.net","course_url":"https://marquis.name"},{"course_title":"Emard, Ryan and Altenwerth","course_number":93906,"instructor":"Brayan Klein DDS","location":"232 Damion Drives","time":"2018-07-14T15:21:47.316Z","enrolled":5233,"book":"https://sandrine.name","course_url":"http://bruce.net"},{"course_title":"Greenholt LLC","course_number":12667,"instructor":"Jennyfer Schinner","location":"1631 Abshire Burgs","time":"2018-07-14T07:11:09.520Z","enrolled":70194,"book":"http://sean.net","course_url":"https://garret.com"},{"course_title":"Lind - Wisozk","course_number":82612,"instructor":"Montana Krajcik","location":"9422 Hahn Burg","time":"2018-07-14T09:16:10.763Z","enrolled":59464,"book":"https://andre.net","course_url":"https://minerva.info"},{"course_title":"Heathcote, Braun and Bernier","course_number":4064,"instructor":"Gino Adams","location":"4015 Meda Radial","time":"2018-07-14T00:19:31.545Z","enrolled":42477,"book":"https://damon.name","course_url":"https://juliana.com"},{"course_title":"Ferry, Bahringer and Farrell","course_number":71407,"instructor":"Allan Treutel","location":"976 Cummerata Parkways","time":"2018-07-14T18:20:53.798Z","enrolled":29323,"book":"https://sylvia.org","course_url":"https://paxton.info"},{"course_title":"Auer LLC","course_number":9936,"instructor":"Lilly Hudson","location":"17166 Art Fields","time":"2018-07-14T00:03:39.480Z","enrolled":22889,"book":"http://casper.name","course_url":"https://maddison.net"},{"course_title":"Hilll - Kuhn","course_number":98258,"instructor":"Erwin Swift","location":"333 Elmore Trail","time":"2018-07-14T19:05:40.914Z","enrolled":60416,"book":"http://payton.info","course_url":"http://earl.name"},{"course_title":"Bosco, Bahringer and Carroll","course_number":12400,"instructor":"Kaela Nolan","location":"020 Altenwerth Mission","time":"2018-07-14T03:08:26.982Z","enrolled":29258,"book":"http://chadd.info","course_url":"https://wendell.org"},{"course_title":"Haley, Fritsch and Stroman","course_number":11142,"instructor":"Asia Orn","location":"24506 Gutkowski Mall","time":"2018-07-14T09:07:53.997Z","enrolled":85420,"book":"https://keely.name","course_url":"https://alec.org"},{"course_title":"Marvin - Effertz","course_number":42541,"instructor":"Geovanny Leffler","location":"531 Kautzer Roads","time":"2018-07-14T18:28:11.742Z","enrolled":13452,"book":"https://kiel.net","course_url":"https://ismael.name"},{"course_title":"Batz Group","course_number":6832,"instructor":"Claire Lebsack V","location":"1345 Douglas Avenue","time":"2018-07-14T19:24:28.598Z","enrolled":42898,"book":"http://felipa.info","course_url":"https://alberta.biz"},{"course_title":"Corkery, McDermott and Kreiger","course_number":65296,"instructor":"Madeline Durgan","location":"14806 Lubowitz Glen","time":"2018-07-14T17:16:54.332Z","enrolled":29174,"book":"https://raheem.org","course_url":"https://enrique.com"},{"course_title":"Botsford, Kunze and Spinka","course_number":82666,"instructor":"Kira Pfeffer","location":"6959 Ceasar Stream","time":"2018-07-14T15:24:59.573Z","enrolled":36926,"book":"http://norma.net","course_url":"https://neha.com"},{"course_title":"Schamberger, Schmitt and Borer","course_number":23141,"instructor":"Oceane Kovacek","location":"296 Euna Underpass","time":"2018-07-14T11:07:28.536Z","enrolled":62287,"book":"https://jaylin.biz","course_url":"http://norma.net"},{"course_title":"Hodkiewicz, Wolf and Beatty","course_number":79545,"instructor":"Kristina Doyle","location":"63443 Macey Port","time":"2018-07-13T23:36:23.694Z","enrolled":24616,"book":"http://catherine.com","course_url":"https://nash.org"},{"course_title":"Lebsack LLC","course_number":73710,"instructor":"Ophelia Corkery","location":"665 Dayna Ranch","time":"2018-07-14T15:30:23.233Z","enrolled":69559,"book":"http://jamil.org","course_url":"http://lavern.org"},{"course_title":"Morissette, Pfeffer and Smitham","course_number":26649,"instructor":"Rashad Feest","location":"1746 Mustafa Common","time":"2018-07-14T21:00:19.059Z","enrolled":55081,"book":"http://katharina.biz","course_url":"http://armand.com"},{"course_title":"Schulist - Thompson","course_number":76684,"instructor":"Adelia Metz","location":"8604 Reinger Port","time":"2018-07-14T17:48:59.866Z","enrolled":62199,"book":"http://jordane.com","course_url":"https://cortez.info"},{"course_title":"Runte, Parker and Cole","course_number":17346,"instructor":"Athena Luettgen","location":"4039 Susie Trail","time":"2018-07-14T13:26:57.966Z","enrolled":82667,"book":"http://beth.net","course_url":"https://chelsea.org"},{"course_title":"Boehm Group","course_number":61335,"instructor":"Kaylin Gorczany","location":"4378 Kuvalis Field","time":"2018-07-14T01:35:10.856Z","enrolled":34873,"book":"https://vicky.com","course_url":"http://krystel.name"},{"course_title":"Waters - Stracke","course_number":57793,"instructor":"Dolly Gutmann","location":"18493 Schowalter Motorway","time":"2018-07-14T03:37:08.284Z","enrolled":10192,"book":"https://enid.org","course_url":"https://abel.net"},{"course_title":"Crona - Kuhic","course_number":75188,"instructor":"Sally Lockman","location":"9777 Hartmann Drive","time":"2018-07-14T14:58:16.405Z","enrolled":58419,"book":"https://crawford.info","course_url":"https://jacinthe.info"},{"course_title":"Upton, Trantow and Wunsch","course_number":91940,"instructor":"Gregoria Langosh","location":"3897 Wolff Mill","time":"2018-07-14T08:58:39.571Z","enrolled":40516,"book":"http://cooper.info","course_url":"http://leon.net"},{"course_title":"Jacobi, Pouros and Schaefer","course_number":84275,"instructor":"Rose Considine","location":"57794 Wolff Tunnel","time":"2018-07-14T13:41:24.619Z","enrolled":51827,"book":"http://gaylord.org","course_url":"https://vivianne.com"},{"course_title":"Dare, Beatty and Rice","course_number":46751,"instructor":"Ally Walker","location":"5395 Bernier Springs","time":"2018-07-14T21:40:07.182Z","enrolled":42299,"book":"http://maximus.com","course_url":"http://noemi.biz"},{"course_title":"Towne, Boyer and Hickle","course_number":41016,"instructor":"Nicklaus Mertz","location":"9445 Wisozk Summit","time":"2018-07-14T05:04:13.157Z","enrolled":22514,"book":"https://faye.info","course_url":"https://adrianna.biz"},{"course_title":"Auer, Haley and Funk","course_number":75216,"instructor":"Miss Rasheed Gutkowski","location":"955 Dayton Landing","time":"2018-07-14T17:05:17.398Z","enrolled":1048,"book":"https://friedrich.info","course_url":"http://augusta.com"},{"course_title":"O'Connell - Stracke","course_number":46894,"instructor":"Norris Mante","location":"167 Littel Street","time":"2018-07-14T21:14:14.836Z","enrolled":50025,"book":"http://nella.biz","course_url":"http://katlyn.name"},{"course_title":"Parker - Mueller","course_number":9435,"instructor":"Doug Kuvalis","location":"4943 Faye Club","time":"2018-07-14T09:32:53.395Z","enrolled":82072,"book":"http://gene.name","course_url":"https://oran.com"},{"course_title":"Abbott and Sons","course_number":94101,"instructor":"Lonnie Friesen","location":"6367 Arlene Hollow","time":"2018-07-14T18:38:43.896Z","enrolled":22000,"book":"http://glenda.info","course_url":"https://keyshawn.biz"},{"course_title":"Vandervort Group","course_number":62859,"instructor":"Zion Pollich","location":"0570 Zoe Spring","time":"2018-07-14T17:27:48.078Z","enrolled":40938,"book":"http://michale.biz","course_url":"http://reanna.com"},{"course_title":"Rice, Volkman and Thiel","course_number":18942,"instructor":"Judd Dickinson","location":"5423 Nichole Ways","time":"2018-07-14T16:39:35.480Z","enrolled":2294,"book":"https://dean.info","course_url":"http://morris.biz"},{"course_title":"Schiller, Fay and O'Keefe","course_number":14271,"instructor":"Pattie Bernhard","location":"9216 Garth Burg","time":"2018-07-14T21:49:34.506Z","enrolled":48268,"book":"http://ida.biz","course_url":"http://bettye.name"},{"course_title":"Mills - Roob","course_number":64987,"instructor":"Jerrold Langosh","location":"73319 Marks Roads","time":"2018-07-14T07:18:13.401Z","enrolled":61753,"book":"https://lia.net","course_url":"https://raina.net"},{"course_title":"Ritchie, Spencer and Bartoletti","course_number":38363,"instructor":"Lacy McDermott","location":"10225 Corkery Manors","time":"2018-07-14T10:13:20.645Z","enrolled":21242,"book":"http://dewayne.com","course_url":"http://wilton.net"},{"course_title":"Ledner - Ledner","course_number":25324,"instructor":"Dagmar White","location":"987 Brekke Ramp","time":"2018-07-14T21:22:15.511Z","enrolled":58242,"book":"https://maida.name","course_url":"http://candice.net"},{"course_title":"Wolf - DuBuque","course_number":53562,"instructor":"Patrick Harber","location":"306 Stevie Streets","time":"2018-07-14T22:47:14.108Z","enrolled":99756,"book":"https://cedrick.org","course_url":"https://katarina.net"},{"course_title":"Pouros, Steuber and Rempel","course_number":93483,"instructor":"Idella Crist","location":"9105 Stiedemann Roads","time":"2018-07-14T00:42:14.583Z","enrolled":20161,"book":"https://david.biz","course_url":"http://carlo.org"},{"course_title":"Feeney, Koch and Aufderhar","course_number":85670,"instructor":"Mrs. Juwan Gaylord","location":"6660 Bethel Burgs","time":"2018-07-13T23:24:05.228Z","enrolled":43081,"book":"http://cletus.com","course_url":"https://napoleon.com"},{"course_title":"Kulas, Kris and Little","course_number":99743,"instructor":"Adrain Senger","location":"297 Bosco Greens","time":"2018-07-14T05:14:49.507Z","enrolled":63311,"book":"https://lonzo.biz","course_url":"https://frieda.org"},{"course_title":"Mosciski - Stamm","course_number":54189,"instructor":"Crawford Padberg","location":"650 Lowe Via","time":"2018-07-14T21:47:25.233Z","enrolled":51997,"book":"http://elta.info","course_url":"https://henry.com"},{"course_title":"Kuhn Group","course_number":74110,"instructor":"Alaina Balistreri V","location":"6833 Pfannerstill Knolls","time":"2018-07-14T18:02:54.508Z","enrolled":384,"book":"https://savanah.net","course_url":"http://adolfo.com"},{"course_title":"Hand, Pollich and VonRueden","course_number":60635,"instructor":"Demetrius Pacocha","location":"9597 Hammes Street","time":"2018-07-14T05:21:27.793Z","enrolled":99350,"book":"https://jared.net","course_url":"https://lora.name"},{"course_title":"Halvorson and Sons","course_number":53800,"instructor":"Alva Prohaska","location":"869 Konopelski Forest","time":"2018-07-14T14:18:55.741Z","enrolled":81405,"book":"http://hunter.biz","course_url":"http://rosie.info"},{"course_title":"Predovic Inc","course_number":81371,"instructor":"Grant Macejkovic","location":"38990 Parisian Junction","time":"2018-07-14T23:05:14.515Z","enrolled":77212,"book":"https://alek.info","course_url":"https://mazie.info"},{"course_title":"McClure, Stark and Murphy","course_number":87054,"instructor":"Miss Maximo Kshlerin","location":"9453 Abbott Divide","time":"2018-07-14T19:46:14.123Z","enrolled":84930,"book":"http://derek.org","course_url":"https://maximillian.info"},{"course_title":"Bernier, Fay and White","course_number":69621,"instructor":"Jared Gutkowski","location":"668 Scot Rue","time":"2018-07-14T04:17:38.207Z","enrolled":2577,"book":"http://krystal.biz","course_url":"http://sylvan.info"},{"course_title":"Swift, Ebert and Graham","course_number":28224,"instructor":"Kadin Hintz","location":"7317 Langworth Road","time":"2018-07-14T04:48:18.586Z","enrolled":44487,"book":"https://dejuan.info","course_url":"https://rogers.org"},{"course_title":"Glover LLC","course_number":27571,"instructor":"Yessenia McClure","location":"65806 Myrna Throughway","time":"2018-07-14T16:54:09.132Z","enrolled":65025,"book":"http://marge.name","course_url":"https://mina.com"},{"course_title":"O'Reilly - Stiedemann","course_number":40354,"instructor":"Tamara Auer","location":"58777 Leannon Freeway","time":"2018-07-14T10:12:13.028Z","enrolled":38707,"book":"https://sebastian.biz","course_url":"https://ford.org"},{"course_title":"Heller, Leffler and Emmerich","course_number":4455,"instructor":"Garnett Witting","location":"1187 Halvorson Groves","time":"2018-07-14T05:22:01.193Z","enrolled":59494,"book":"http://katrine.biz","course_url":"http://faustino.com"},{"course_title":"Hahn and Sons","course_number":35013,"instructor":"Loraine White PhD","location":"64956 Haylee Park","time":"2018-07-14T22:03:30.799Z","enrolled":24419,"book":"http://federico.org","course_url":"https://barry.info"},{"course_title":"Towne Group","course_number":25356,"instructor":"Kiera Goldner","location":"513 Gusikowski Spur","time":"2018-07-13T23:51:13.453Z","enrolled":74302,"book":"https://nichole.org","course_url":"http://angelica.info"},{"course_title":"MacGyver, Powlowski and McClure","course_number":45480,"instructor":"Miss Ansley Murphy","location":"887 Dicki Square","time":"2018-07-14T08:43:32.613Z","enrolled":95815,"book":"https://esteban.net","course_url":"https://delpha.org"},{"course_title":"Sauer and Sons","course_number":27802,"instructor":"Bertram Zulauf","location":"332 Garrison Viaduct","time":"2018-07-14T07:05:20.959Z","enrolled":59425,"book":"http://edmond.com","course_url":"https://elissa.info"},{"course_title":"Mosciski, Oberbrunner and Anderson","course_number":16549,"instructor":"Moriah Roberts","location":"7202 Hettinger Terrace","time":"2018-07-14T03:57:16.313Z","enrolled":50452,"book":"https://urban.name","course_url":"http://erich.biz"},{"course_title":"Beer - Tillman","course_number":60619,"instructor":"Ruthie Gutmann V","location":"63061 Zoila Islands","time":"2018-07-14T02:35:01.604Z","enrolled":15685,"book":"https://murray.net","course_url":"https://joana.name"},{"course_title":"Hilll, Mraz and Rutherford","course_number":65307,"instructor":"Loma Ankunding V","location":"63602 Becker Meadows","time":"2018-07-14T17:03:44.703Z","enrolled":88861,"book":"https://darion.name","course_url":"https://javonte.net"},{"course_title":"Haley, Blick and Halvorson","course_number":61952,"instructor":"Lenna Kuhlman","location":"6124 Kirlin Streets","time":"2018-07-14T07:14:01.012Z","enrolled":17571,"book":"http://myriam.info","course_url":"http://monique.info"},{"course_title":"O'Reilly Group","course_number":31075,"instructor":"Shyanne Kessler","location":"5426 Sam Port","time":"2018-07-14T02:44:33.245Z","enrolled":64763,"book":"http://jerrell.info","course_url":"https://bart.info"},{"course_title":"Schroeder Inc","course_number":92105,"instructor":"Mrs. Audreanne Harvey","location":"71574 Janet Village","time":"2018-07-14T01:42:35.633Z","enrolled":40150,"book":"https://otilia.name","course_url":"https://douglas.biz"},{"course_title":"Lueilwitz - Medhurst","course_number":30522,"instructor":"Colby Reynolds","location":"3753 Rempel Ford","time":"2018-07-14T15:03:07.260Z","enrolled":25865,"book":"https://royce.net","course_url":"https://jordi.info"},{"course_title":"Schinner Group","course_number":45503,"instructor":"Dejon Cormier","location":"15664 Kuhic Parks","time":"2018-07-13T23:57:49.791Z","enrolled":85256,"book":"https://bret.org","course_url":"https://jamey.net"},{"course_title":"Schmidt and Sons","course_number":54584,"instructor":"Vickie Trantow","location":"03542 Langosh Station","time":"2018-07-14T15:32:31.607Z","enrolled":89722,"book":"https://adaline.info","course_url":"http://billy.name"},{"course_title":"Bednar Inc","course_number":31282,"instructor":"Mackenzie Cummerata","location":"32546 Constantin Points","time":"2018-07-14T13:31:34.105Z","enrolled":94955,"book":"http://eriberto.org","course_url":"http://valerie.biz"},{"course_title":"Walker and Sons","course_number":2451,"instructor":"Mae Ruecker","location":"3171 Marvin Pass","time":"2018-07-14T05:53:37.103Z","enrolled":91619,"book":"https://carole.biz","course_url":"https://kari.org"},{"course_title":"Abernathy, Glover and Considine","course_number":61721,"instructor":"Jerod Harber","location":"38462 Carroll Park","time":"2018-07-14T22:06:47.106Z","enrolled":10334,"book":"https://marie.name","course_url":"https://lou.info"},{"course_title":"Casper - Turcotte","course_number":20336,"instructor":"Schuyler Emard","location":"88204 Rosemarie Spring","time":"2018-07-14T17:44:50.609Z","enrolled":20168,"book":"https://ruth.info","course_url":"https://jacinthe.info"},{"course_title":"Smitham, Nolan and Reichert","course_number":31306,"instructor":"Roberto Hartmann","location":"3022 Ned Landing","time":"2018-07-14T04:03:14.693Z","enrolled":31971,"book":"https://serenity.org","course_url":"https://emelia.org"},{"course_title":"Fahey LLC","course_number":91235,"instructor":"Mrs. Colby Stark","location":"05766 Lillie Throughway","time":"2018-07-14T15:49:04.878Z","enrolled":58585,"book":"https://van.biz","course_url":"http://bailey.name"},{"course_title":"Hamill, Koelpin and Waters","course_number":44760,"instructor":"Maybelle Ryan","location":"57601 Claude Haven","time":"2018-07-14T10:32:51.038Z","enrolled":624,"book":"https://jeanne.net","course_url":"https://jaqueline.name"},{"course_title":"Cormier Inc","course_number":85008,"instructor":"Brandy Cartwright III","location":"211 Arlo Meadow","time":"2018-07-14T05:25:22.997Z","enrolled":23396,"book":"http://jeffrey.net","course_url":"http://lavina.biz"},{"course_title":"Graham, Murazik and Glover","course_number":54396,"instructor":"Sage Wolf","location":"389 Walter Plaza","time":"2018-07-14T14:10:55.112Z","enrolled":74944,"book":"https://mohammad.name","course_url":"https://magdalen.name"},{"course_title":"Gutmann - Luettgen","course_number":30472,"instructor":"Enos Flatley","location":"5542 Keeley Canyon","time":"2018-07-14T02:59:44.298Z","enrolled":1809,"book":"https://jeanie.net","course_url":"http://orrin.name"},{"course_title":"Smith LLC","course_number":63726,"instructor":"Parker Ankunding","location":"27331 Purdy Creek","time":"2018-07-13T23:26:17.475Z","enrolled":38033,"book":"http://lexie.com","course_url":"http://andy.org"},{"course_title":"Collier Group","course_number":33680,"instructor":"Johnson O'Hara","location":"96604 Derek Highway","time":"2018-07-14T12:49:17.481Z","enrolled":48325,"book":"https://ezra.info","course_url":"http://colby.info"},{"course_title":"Emmerich - Skiles","course_number":98155,"instructor":"Lacey Schmitt V","location":"26007 Brycen Village","time":"2018-07-14T11:58:02.695Z","enrolled":9089,"book":"http://mylene.info","course_url":"http://hilda.org"},{"course_title":"Bashirian, Reichert and Mann","course_number":62257,"instructor":"Mae Corkery","location":"056 Horace Summit","time":"2018-07-14T16:37:32.600Z","enrolled":78333,"book":"https://lazaro.info","course_url":"http://kyra.name"},{"course_title":"Kautzer, Runolfsdottir and Jacobi","course_number":1521,"instructor":"Nedra Nitzsche","location":"3655 Ryan Bridge","time":"2018-07-14T14:09:31.525Z","enrolled":73172,"book":"https://erika.info","course_url":"https://janessa.com"},{"course_title":"Dooley - Abbott","course_number":90452,"instructor":"Skylar Huels","location":"1551 Marcelle Inlet","time":"2018-07-14T05:05:15.719Z","enrolled":45315,"book":"https://gordon.info","course_url":"https://fay.name"},{"course_title":"Yundt - Waelchi","course_number":41505,"instructor":"Cecilia Bruen","location":"150 Bashirian Brook","time":"2018-07-14T11:30:03.871Z","enrolled":41399,"book":"https://pascale.com","course_url":"http://tyrel.biz"},{"course_title":"Kub, Nitzsche and Powlowski","course_number":94875,"instructor":"Mrs. Cicero Spinka","location":"952 Josefina Key","time":"2018-07-14T04:14:31.423Z","enrolled":45788,"book":"https://magnolia.com","course_url":"http://vivienne.name"},{"course_title":"Purdy, Lind and Marvin","course_number":59708,"instructor":"Mr. Stephan Bogisich","location":"30677 Krajcik Dale","time":"2018-07-14T05:56:44.927Z","enrolled":36748,"book":"http://stephen.name","course_url":"http://jules.com"},{"course_title":"Balistreri - Pouros","course_number":70270,"instructor":"Bonnie Hammes Sr.","location":"0950 Lyda Heights","time":"2018-07-14T13:37:17.300Z","enrolled":11490,"book":"https://haley.org","course_url":"http://carmen.name"},{"course_title":"Mertz and Sons","course_number":18897,"instructor":"Alycia Zboncak PhD","location":"628 Leonora Field","time":"2018-07-14T13:33:46.732Z","enrolled":68831,"book":"http://celia.net","course_url":"http://marcel.biz"},{"course_title":"Windler, Haag and Spencer","course_number":82535,"instructor":"Jammie Kutch","location":"41584 Ferry Walks","time":"2018-07-14T06:02:44.510Z","enrolled":87551,"book":"https://cletus.info","course_url":"http://emmet.biz"},{"course_title":"McDermott - Rau","course_number":81021,"instructor":"Genevieve Jakubowski","location":"3334 Lula Radial","time":"2018-07-14T21:07:17.368Z","enrolled":29811,"book":"http://ivy.biz","course_url":"http://karine.info"},{"course_title":"Grimes - Langosh","course_number":74106,"instructor":"Hollis Ward","location":"3781 Aurore Ports","time":"2018-07-14T06:11:12.314Z","enrolled":54639,"book":"https://danielle.biz","course_url":"http://dimitri.com"},{"course_title":"Cartwright, Renner and Heidenreich","course_number":27344,"instructor":"Jasen Rogahn","location":"40015 Spinka View","time":"2018-07-14T04:10:56.312Z","enrolled":27419,"book":"https://carey.info","course_url":"http://adela.net"},{"course_title":"Thompson, Schmidt and Sawayn","course_number":86502,"instructor":"Adolf Kautzer I","location":"751 Smitham Roads","time":"2018-07-14T14:08:11.458Z","enrolled":24008,"book":"https://milan.net","course_url":"http://jena.name"},{"course_title":"Goyette - Dickinson","course_number":30591,"instructor":"Salma Blick","location":"782 Kareem Square","time":"2018-07-14T16:27:36.972Z","enrolled":75605,"book":"https://brooke.name","course_url":"http://chet.net"},{"course_title":"O'Reilly - Fahey","course_number":99057,"instructor":"Eveline Hahn","location":"5981 Block Drive","time":"2018-07-14T01:18:58.848Z","enrolled":38974,"book":"http://nikita.info","course_url":"https://ladarius.net"},{"course_title":"Herman, Luettgen and Beier","course_number":6537,"instructor":"Melvina Kerluke Sr.","location":"893 Arvel Track","time":"2018-07-14T08:56:29.634Z","enrolled":37741,"book":"https://waino.name","course_url":"https://jackie.net"},{"course_title":"Vandervort - Heller","course_number":44455,"instructor":"Ms. Leopold Cremin","location":"62409 Bart Harbors","time":"2018-07-14T05:43:38.491Z","enrolled":80882,"book":"https://greta.biz","course_url":"https://desiree.info"},{"course_title":"Barton Inc","course_number":84559,"instructor":"Vaughn Ledner","location":"338 Olson Island","time":"2018-07-14T21:21:47.629Z","enrolled":8413,"book":"http://abe.org","course_url":"http://fidel.biz"},{"course_title":"Konopelski, Harber and Torp","course_number":81584,"instructor":"Arianna Reinger","location":"78733 Lance Union","time":"2018-07-14T13:58:19.695Z","enrolled":60319,"book":"https://reggie.biz","course_url":"https://roxane.org"},{"course_title":"Wunsch - Hickle","course_number":8075,"instructor":"Marilie Barton MD","location":"683 Tanner Stravenue","time":"2018-07-14T09:17:59.700Z","enrolled":75723,"book":"https://evangeline.biz","course_url":"http://willis.org"},{"course_title":"Streich, Hand and Grimes","course_number":5521,"instructor":"Zelda Collier","location":"82495 Gottlieb Vista","time":"2018-07-14T22:33:48.237Z","enrolled":79105,"book":"http://josianne.biz","course_url":"https://kyleigh.biz"},{"course_title":"Deckow and Sons","course_number":53133,"instructor":"Brook Ruecker","location":"39437 Zita Fork","time":"2018-07-14T11:36:44.573Z","enrolled":88124,"book":"http://terry.org","course_url":"http://mariana.com"},{"course_title":"Ernser, Walter and Bechtelar","course_number":75976,"instructor":"Jade Champlin DDS","location":"5977 O'Connell Gardens","time":"2018-07-14T02:01:56.581Z","enrolled":53667,"book":"http://karli.name","course_url":"https://marisa.biz"},{"course_title":"Cummerata - Blanda","course_number":13832,"instructor":"Chris Braun","location":"4875 Tillman Springs","time":"2018-07-14T00:49:46.118Z","enrolled":99980,"book":"http://kennith.name","course_url":"http://frederick.net"},{"course_title":"Cruickshank LLC","course_number":71672,"instructor":"Leonor Champlin","location":"9253 Funk Neck","time":"2018-07-13T23:52:19.435Z","enrolled":97435,"book":"http://lloyd.net","course_url":"https://louvenia.net"},{"course_title":"Aufderhar, Schuster and Jacobi","course_number":61806,"instructor":"Mrs. Walker Tillman","location":"08132 Angel Forge","time":"2018-07-14T07:50:29.042Z","enrolled":11565,"book":"https://muriel.com","course_url":"http://mitchel.biz"},{"course_title":"Grady Group","course_number":8973,"instructor":"Marion Considine","location":"9125 McGlynn Drive","time":"2018-07-14T22:18:42.980Z","enrolled":19595,"book":"https://hillary.org","course_url":"https://alba.info"},{"course_title":"Renner, Rath and Cartwright","course_number":7242,"instructor":"Madyson Marquardt","location":"8657 Queen Ports","time":"2018-07-14T10:09:27.729Z","enrolled":97470,"book":"http://hallie.name","course_url":"http://magali.com"},{"course_title":"Haley - Von","course_number":8171,"instructor":"Joe Bins PhD","location":"28537 Smith Overpass","time":"2018-07-14T09:44:27.370Z","enrolled":78732,"book":"http://jay.biz","course_url":"http://shad.info"},{"course_title":"Schamberger Group","course_number":78215,"instructor":"Hazel Hartmann MD","location":"4295 Susie Crossing","time":"2018-07-14T00:08:41.269Z","enrolled":49558,"book":"https://noemy.com","course_url":"https://leola.biz"},{"course_title":"Will Group","course_number":73745,"instructor":"Kyle Marquardt IV","location":"482 Kirlin Gardens","time":"2018-07-14T21:53:03.651Z","enrolled":9187,"book":"http://don.info","course_url":"http://charles.net"},{"course_title":"Dach - Runolfsdottir","course_number":23802,"instructor":"Eugene Champlin","location":"44639 Welch Oval","time":"2018-07-14T11:42:08.861Z","enrolled":65062,"book":"http://mateo.com","course_url":"http://pete.com"},{"course_title":"Bergstrom - Sauer","course_number":65483,"instructor":"Frederik Kerluke","location":"1034 Metz Tunnel","time":"2018-07-14T21:51:06.515Z","enrolled":29903,"book":"http://lacy.biz","course_url":"https://kaden.com"},{"course_title":"Huel - Bashirian","course_number":44550,"instructor":"Dewitt Conn","location":"7677 Mathilde Landing","time":"2018-07-14T20:30:29.264Z","enrolled":25286,"book":"http://caterina.name","course_url":"https://victor.net"},{"course_title":"Trantow, Grant and Torphy","course_number":42050,"instructor":"Alf Grimes","location":"48623 Stoltenberg Parkway","time":"2018-07-14T07:36:11.895Z","enrolled":92590,"book":"https://queenie.net","course_url":"https://keaton.org"},{"course_title":"Satterfield Group","course_number":9838,"instructor":"Emile Kshlerin","location":"406 Georgette Well","time":"2018-07-14T19:30:14.403Z","enrolled":12455,"book":"https://keith.info","course_url":"http://cletus.com"},{"course_title":"Corkery LLC","course_number":9131,"instructor":"Alexandria Strosin PhD","location":"0918 Selmer Ports","time":"2018-07-14T14:56:48.229Z","enrolled":82775,"book":"http://cara.info","course_url":"http://taryn.net"},{"course_title":"Wunsch and Sons","course_number":94761,"instructor":"Lyric Balistreri","location":"132 Josh Pines","time":"2018-07-14T03:27:49.910Z","enrolled":33471,"book":"https://elva.org","course_url":"http://cale.info"},{"course_title":"Ziemann, Kerluke and Dooley","course_number":11350,"instructor":"Jerad Ortiz","location":"4282 Kuhlman Islands","time":"2018-07-14T10:28:16.591Z","enrolled":46986,"book":"http://heber.org","course_url":"http://chance.biz"},{"course_title":"Cummings, Olson and Orn","course_number":721,"instructor":"Zella Schmitt","location":"24042 Upton Ridge","time":"2018-07-14T18:13:46.566Z","enrolled":32216,"book":"https://gwen.com","course_url":"https://lucy.biz"},{"course_title":"Kreiger LLC","course_number":8347,"instructor":"Mona Steuber","location":"4628 Kuvalis Stream","time":"2018-07-14T16:43:35.411Z","enrolled":12521,"book":"https://sheldon.com","course_url":"https://ed.biz"},{"course_title":"Goldner Group","course_number":63104,"instructor":"Lupe Donnelly Sr.","location":"766 Eva Trafficway","time":"2018-07-14T01:48:27.866Z","enrolled":63893,"book":"https://marcelina.com","course_url":"http://mable.info"},{"course_title":"Conroy, Kunze and Schuster","course_number":22325,"instructor":"Alvera Effertz","location":"884 Bins Forest","time":"2018-07-14T04:56:53.191Z","enrolled":70279,"book":"http://amelie.info","course_url":"https://benton.net"},{"course_title":"Johns Group","course_number":77282,"instructor":"Precious Aufderhar","location":"2323 Terry Lane","time":"2018-07-14T22:28:02.613Z","enrolled":32434,"book":"http://cristal.biz","course_url":"https://blanca.biz"},{"course_title":"Daniel and Sons","course_number":15628,"instructor":"Efrain Heller","location":"589 Maribel Track","time":"2018-07-14T01:28:42.374Z","enrolled":77362,"book":"https://olga.org","course_url":"https://reynold.biz"},{"course_title":"Kemmer - Mosciski","course_number":13207,"instructor":"Benton Crist","location":"53520 Buddy Bypass","time":"2018-07-14T14:43:26.020Z","enrolled":19243,"book":"https://lilly.name","course_url":"https://alphonso.org"},{"course_title":"Quitzon Group","course_number":48498,"instructor":"Adam Heller","location":"12658 Runolfsdottir Expressway","time":"2018-07-14T10:23:04.005Z","enrolled":25705,"book":"http://eda.info","course_url":"http://clyde.org"},{"course_title":"Kovacek Inc","course_number":29533,"instructor":"Martina Quitzon","location":"5271 Conn Pass","time":"2018-07-14T01:36:09.824Z","enrolled":8568,"book":"http://connie.info","course_url":"https://otha.com"},{"course_title":"Cartwright Inc","course_number":17045,"instructor":"Rolando Kertzmann","location":"1346 Parisian Forge","time":"2018-07-14T07:06:44.570Z","enrolled":57915,"book":"https://alanis.name","course_url":"http://antonina.org"},{"course_title":"Johns - Hermann","course_number":58673,"instructor":"Thomas Langosh","location":"56931 Sawayn Village","time":"2018-07-14T11:34:17.202Z","enrolled":24413,"book":"http://rashawn.biz","course_url":"http://kevin.biz"},{"course_title":"Sporer and Sons","course_number":1726,"instructor":"Margaret Rogahn","location":"30488 Witting Unions","time":"2018-07-14T00:48:38.487Z","enrolled":75732,"book":"http://eleanora.info","course_url":"https://denis.biz"},{"course_title":"Medhurst - Lueilwitz","course_number":99731,"instructor":"Brandt Weissnat","location":"633 Romaguera Bypass","time":"2018-07-14T09:22:04.663Z","enrolled":42137,"book":"https://arely.biz","course_url":"https://nathen.biz"},{"course_title":"Skiles and Sons","course_number":54314,"instructor":"Wilbert Weimann","location":"70662 Boris Key","time":"2018-07-14T18:31:05.017Z","enrolled":28536,"book":"http://mazie.net","course_url":"http://kirstin.info"},{"course_title":"Kassulke - Kuphal","course_number":47040,"instructor":"Armando Hackett","location":"76794 Johathan Route","time":"2018-07-14T14:43:54.383Z","enrolled":37351,"book":"http://trisha.biz","course_url":"http://meredith.name"},{"course_title":"Moore - Leannon","course_number":12264,"instructor":"Isom Huels","location":"8038 Casper Lane","time":"2018-07-14T19:09:41.932Z","enrolled":94328,"book":"https://kayleigh.net","course_url":"https://braeden.org"},{"course_title":"Kling Inc","course_number":77710,"instructor":"Treva Armstrong","location":"06764 Rodrick Neck","time":"2018-07-14T01:24:36.992Z","enrolled":45342,"book":"http://charles.com","course_url":"https://guillermo.biz"},{"course_title":"Wiegand Group","course_number":71587,"instructor":"Anita Ondricka","location":"21857 Douglas Haven","time":"2018-07-14T16:19:38.635Z","enrolled":88971,"book":"https://modesta.net","course_url":"http://golden.net"},{"course_title":"Ryan - Marquardt","course_number":9162,"instructor":"Stuart Herman","location":"8842 Duncan Extensions","time":"2018-07-14T01:19:06.158Z","enrolled":342,"book":"http://candelario.info","course_url":"http://toney.info"},{"course_title":"Hegmann and Sons","course_number":31046,"instructor":"Mrs. Fletcher Bernier","location":"27656 Schiller Bypass","time":"2018-07-14T02:28:53.012Z","enrolled":61351,"book":"http://adah.info","course_url":"https://kaitlin.name"},{"course_title":"Harris - Brekke","course_number":20381,"instructor":"Talon Kemmer","location":"550 Hirthe View","time":"2018-07-14T04:57:21.505Z","enrolled":80613,"book":"https://alverta.com","course_url":"https://kaylee.org"},{"course_title":"Schoen - Beatty","course_number":74313,"instructor":"Shirley Nitzsche","location":"17685 Ebert Crescent","time":"2018-07-14T11:42:01.562Z","enrolled":32559,"book":"https://camylle.biz","course_url":"http://dorothy.info"},{"course_title":"Tromp Inc","course_number":99940,"instructor":"Richmond Davis","location":"044 Teresa Forks","time":"2018-07-14T19:52:39.667Z","enrolled":84695,"book":"https://jaunita.org","course_url":"http://ella.com"},{"course_title":"Stracke, Renner and Padberg","course_number":37041,"instructor":"Troy Bashirian","location":"53470 Devin Island","time":"2018-07-14T10:11:46.291Z","enrolled":53178,"book":"http://tatyana.com","course_url":"https://hailey.net"},{"course_title":"Kilback, Sporer and Hintz","course_number":35955,"instructor":"Ernestina Champlin","location":"52546 Wilber Brooks","time":"2018-07-14T06:44:36.317Z","enrolled":13647,"book":"https://hazle.net","course_url":"https://frederik.name"},{"course_title":"Bogan, Stark and Orn","course_number":40200,"instructor":"Annalise Medhurst","location":"6974 Katelyn Valleys","time":"2018-07-14T10:45:36.869Z","enrolled":54585,"book":"http://sammie.biz","course_url":"http://rudolph.org"},{"course_title":"Greenfelder Inc","course_number":33870,"instructor":"Garry Rolfson","location":"194 Kaden Knoll","time":"2018-07-14T15:20:59.657Z","enrolled":67714,"book":"http://kevin.net","course_url":"https://saige.org"},{"course_title":"Berge, Rice and Farrell","course_number":3974,"instructor":"Russell Kihn","location":"901 Nathaniel Land","time":"2018-07-14T01:55:51.443Z","enrolled":84727,"book":"http://burley.biz","course_url":"http://niko.name"},{"course_title":"McLaughlin - O'Conner","course_number":12503,"instructor":"Therese Reichel","location":"465 Turcotte Meadows","time":"2018-07-14T21:33:51.714Z","enrolled":34831,"book":"https://felton.name","course_url":"http://selmer.info"},{"course_title":"Wehner - Simonis","course_number":41136,"instructor":"Dr. Meredith Gutmann","location":"871 Katheryn Station","time":"2018-07-14T01:13:39.621Z","enrolled":56383,"book":"https://jarod.net","course_url":"https://joshuah.org"},{"course_title":"Gerlach Group","course_number":22981,"instructor":"Ibrahim Kemmer","location":"4244 Keebler Lodge","time":"2018-07-14T07:25:13.842Z","enrolled":13364,"book":"https://cordie.net","course_url":"https://lynn.name"},{"course_title":"Sanford, Hackett and Leffler","course_number":33581,"instructor":"Yessenia Kihn","location":"5395 Mitchell Mews","time":"2018-07-14T21:22:07.676Z","enrolled":6578,"book":"https://drake.org","course_url":"https://hope.net"},{"course_title":"Monahan Inc","course_number":80891,"instructor":"Imani Sauer","location":"26634 Hauck Hollow","time":"2018-07-14T12:54:55.564Z","enrolled":30573,"book":"http://haylee.org","course_url":"http://shea.biz"},{"course_title":"Cole, Weber and Rolfson","course_number":82473,"instructor":"Greyson Herzog","location":"546 Eunice Stravenue","time":"2018-07-14T01:11:23.790Z","enrolled":67084,"book":"https://victor.name","course_url":"http://zola.biz"},{"course_title":"Robel, Rowe and Daniel","course_number":58250,"instructor":"Mrs. Sarina Collier","location":"868 Melvin Well","time":"2018-07-14T05:26:31.563Z","enrolled":41685,"book":"https://adrien.name","course_url":"http://boris.com"},{"course_title":"Williamson, Kulas and Bergstrom","course_number":44057,"instructor":"Miguel Bernier","location":"60357 Hermann Ford","time":"2018-07-14T22:15:04.572Z","enrolled":88679,"book":"http://savannah.name","course_url":"http://dovie.biz"},{"course_title":"Mayer, Zboncak and Runolfsdottir","course_number":59168,"instructor":"Timothy Bayer","location":"783 Lind Tunnel","time":"2018-07-14T14:19:27.520Z","enrolled":42270,"book":"https://maya.name","course_url":"https://lonie.info"},{"course_title":"Mraz, Considine and Stoltenberg","course_number":47839,"instructor":"Skye Hackett","location":"03280 Schimmel Circles","time":"2018-07-14T04:35:07.845Z","enrolled":89891,"book":"https://ramiro.net","course_url":"https://braxton.org"},{"course_title":"Lehner, Collins and Skiles","course_number":81091,"instructor":"Chad Wilderman","location":"28496 Myrtie Viaduct","time":"2018-07-14T01:28:30.633Z","enrolled":56230,"book":"https://dillan.net","course_url":"https://nelle.name"},{"course_title":"Brown Group","course_number":68719,"instructor":"Richmond Kuhic","location":"9389 Stamm Pines","time":"2018-07-14T11:51:51.239Z","enrolled":76367,"book":"http://andreane.name","course_url":"https://darrion.com"},{"course_title":"Friesen - Schuppe","course_number":83471,"instructor":"Willis Harber","location":"25360 Priscilla Crossroad","time":"2018-07-14T02:44:59.591Z","enrolled":25440,"book":"https://vincent.com","course_url":"https://kameron.net"},{"course_title":"Morissette, Gutkowski and Crist","course_number":22058,"instructor":"Johnathon O'Conner","location":"543 Bergnaum Valley","time":"2018-07-14T18:47:57.216Z","enrolled":95745,"book":"http://elroy.name","course_url":"http://arvel.org"},{"course_title":"Frami - Jerde","course_number":93998,"instructor":"Antonia Weissnat","location":"0740 Pierre Turnpike","time":"2018-07-14T12:21:29.521Z","enrolled":80899,"book":"https://hadley.net","course_url":"https://denis.org"},{"course_title":"Mayert - O'Reilly","course_number":51293,"instructor":"Winifred Keebler","location":"99012 Elliot Crescent","time":"2018-07-14T05:25:14.431Z","enrolled":22684,"book":"http://augustus.net","course_url":"http://leopoldo.org"},{"course_title":"Durgan Inc","course_number":23455,"instructor":"Rhianna White","location":"495 Kacie Mall","time":"2018-07-14T08:00:46.457Z","enrolled":57707,"book":"http://nakia.com","course_url":"https://noe.net"},{"course_title":"Beer Group","course_number":13181,"instructor":"Alexandrine Waters","location":"26625 Percival Summit","time":"2018-07-14T06:18:46.464Z","enrolled":38078,"book":"http://ozella.biz","course_url":"http://rowan.name"},{"course_title":"DuBuque - Huel","course_number":96857,"instructor":"Josue Emmerich III","location":"962 Osinski Lodge","time":"2018-07-14T08:23:42.038Z","enrolled":58095,"book":"http://rosendo.name","course_url":"https://flossie.name"},{"course_title":"Stamm, Macejkovic and Jacobi","course_number":99434,"instructor":"Pedro Moen","location":"150 Nitzsche Trail","time":"2018-07-14T08:22:14.972Z","enrolled":57018,"book":"http://jody.org","course_url":"https://hayley.com"},{"course_title":"Becker - Willms","course_number":99325,"instructor":"Modesto Yundt","location":"63920 Dereck Walks","time":"2018-07-14T06:15:29.676Z","enrolled":88871,"book":"http://aurore.org","course_url":"https://johathan.biz"},{"course_title":"Upton - Legros","course_number":50182,"instructor":"Casper Corwin","location":"4192 Beatty Dale","time":"2018-07-14T10:36:01.428Z","enrolled":14696,"book":"http://estefania.info","course_url":"https://deja.info"},{"course_title":"Grant, Boyle and Rath","course_number":87481,"instructor":"Elenor Aufderhar","location":"302 Wilford Well","time":"2018-07-14T03:41:26.483Z","enrolled":26715,"book":"http://katheryn.com","course_url":"http://virgil.net"},{"course_title":"Howell - Gleason","course_number":82314,"instructor":"Neil Walter PhD","location":"5873 Fisher Manors","time":"2018-07-14T10:57:38.992Z","enrolled":18304,"book":"http://delmer.net","course_url":"http://mateo.biz"},{"course_title":"Block, Gleason and Auer","course_number":62894,"instructor":"Durward Koepp","location":"7788 Alford Isle","time":"2018-07-14T07:58:48.981Z","enrolled":47549,"book":"http://brenda.biz","course_url":"http://elvera.name"},{"course_title":"Ankunding and Sons","course_number":44862,"instructor":"Wilhelm Koepp","location":"5528 Margie Road","time":"2018-07-14T05:19:31.150Z","enrolled":51057,"book":"http://dayton.biz","course_url":"https://caterina.org"},{"course_title":"Douglas - Swaniawski","course_number":16302,"instructor":"Jarvis Heathcote","location":"74352 Oscar Turnpike","time":"2018-07-14T10:41:48.231Z","enrolled":80319,"book":"http://delia.org","course_url":"https://krystel.biz"},{"course_title":"Schimmel Group","course_number":56919,"instructor":"Tyrel Murazik","location":"53552 Satterfield Plaza","time":"2018-07-14T19:11:10.099Z","enrolled":72145,"book":"https://rebeka.name","course_url":"http://marisa.biz"},{"course_title":"Pouros - Beier","course_number":29118,"instructor":"Mr. Ewald Ratke","location":"145 Russel Parks","time":"2018-07-14T05:25:28.594Z","enrolled":98183,"book":"http://eva.org","course_url":"http://mireya.org"},{"course_title":"Spinka - Maggio","course_number":8665,"instructor":"Ulises Russel","location":"1645 Stephany Burg","time":"2018-07-14T02:15:16.441Z","enrolled":33372,"book":"https://isabella.net","course_url":"http://sigmund.name"},{"course_title":"Ritchie - Leuschke","course_number":66523,"instructor":"Mr. Nella Hartmann","location":"24737 Labadie Rapid","time":"2018-07-14T22:15:23.217Z","enrolled":56127,"book":"http://eric.org","course_url":"http://jaiden.name"},{"course_title":"Powlowski Group","course_number":58345,"instructor":"Mr. Mia Hahn","location":"39862 Ora Via","time":"2018-07-14T22:04:41.611Z","enrolled":90057,"book":"https://tate.org","course_url":"http://kellen.biz"},{"course_title":"Macejkovic Group","course_number":25496,"instructor":"Will Wuckert","location":"141 Mckenzie Pass","time":"2018-07-14T03:34:40.658Z","enrolled":99036,"book":"http://lavonne.biz","course_url":"https://josianne.com"},{"course_title":"Reinger LLC","course_number":88993,"instructor":"Ms. Caleb Mueller","location":"543 Goodwin Isle","time":"2018-07-14T21:03:52.037Z","enrolled":53841,"book":"http://gianni.com","course_url":"http://myles.biz"},{"course_title":"MacGyver Inc","course_number":21977,"instructor":"Claire Donnelly","location":"265 Hilll Square","time":"2018-07-14T14:16:42.779Z","enrolled":6729,"book":"http://lucienne.net","course_url":"http://kavon.biz"},{"course_title":"Nitzsche - Kuvalis","course_number":79311,"instructor":"Fred Toy","location":"2489 Daugherty Ports","time":"2018-07-14T18:48:23.684Z","enrolled":54030,"book":"http://calista.info","course_url":"http://mandy.name"},{"course_title":"Schimmel, Torp and Mills","course_number":29106,"instructor":"Elvis Lubowitz Sr.","location":"24390 Goyette Streets","time":"2018-07-14T11:01:45.274Z","enrolled":87302,"book":"http://connor.biz","course_url":"https://nedra.net"},{"course_title":"Terry, Prosacco and Pacocha","course_number":11336,"instructor":"Henriette Prohaska","location":"48392 Bailey Stream","time":"2018-07-14T09:49:49.504Z","enrolled":43781,"book":"https://maynard.name","course_url":"http://stephanie.net"},{"course_title":"Murray LLC","course_number":19422,"instructor":"Hallie Mueller","location":"28636 Halvorson Plaza","time":"2018-07-14T22:07:02.617Z","enrolled":74072,"book":"http://bradford.org","course_url":"http://nettie.name"},{"course_title":"Gottlieb - Ritchie","course_number":70605,"instructor":"Newton Smitham III","location":"357 Harry Square","time":"2018-07-14T04:49:53.351Z","enrolled":63062,"book":"https://walter.org","course_url":"http://ned.net"},{"course_title":"Beahan Inc","course_number":61433,"instructor":"Bessie Kunze","location":"20989 Trantow Trafficway","time":"2018-07-14T16:33:22.596Z","enrolled":29032,"book":"http://skye.net","course_url":"https://casper.info"},{"course_title":"Strosin LLC","course_number":37419,"instructor":"Cleve Leannon","location":"79256 Maximus Track","time":"2018-07-14T11:20:30.886Z","enrolled":34567,"book":"http://brice.org","course_url":"https://camilla.com"},{"course_title":"Fadel and Sons","course_number":63049,"instructor":"Maybell Raynor","location":"881 Kohler Ridge","time":"2018-07-14T06:40:31.943Z","enrolled":14382,"book":"http://rebecca.org","course_url":"https://desmond.name"},{"course_title":"Casper - Brown","course_number":3890,"instructor":"Dora Bruen","location":"925 O'Conner Glen","time":"2018-07-14T13:45:41.753Z","enrolled":34850,"book":"http://julius.name","course_url":"http://andre.net"},{"course_title":"Bernier - Zboncak","course_number":71729,"instructor":"Nia Kulas","location":"997 Mallie Vista","time":"2018-07-14T15:30:04.236Z","enrolled":4290,"book":"https://marielle.com","course_url":"https://stevie.org"},{"course_title":"Cruickshank Inc","course_number":87420,"instructor":"Rogers Haley","location":"297 Vivian Court","time":"2018-07-14T06:24:17.821Z","enrolled":71639,"book":"https://jordan.name","course_url":"https://sydney.org"},{"course_title":"Heller - Goyette","course_number":41448,"instructor":"Brigitte Carter","location":"137 Don Ford","time":"2018-07-13T23:59:17.211Z","enrolled":18454,"book":"http://theo.net","course_url":"http://adan.name"},{"course_title":"Crona LLC","course_number":55479,"instructor":"Aiden Wolf","location":"2751 Shaniya Square","time":"2018-07-13T23:45:04.912Z","enrolled":5188,"book":"http://fermin.biz","course_url":"http://moshe.com"},{"course_title":"Blick, Swift and Schaefer","course_number":13509,"instructor":"Teresa Reichert","location":"942 Cremin Isle","time":"2018-07-14T11:17:17.868Z","enrolled":70769,"book":"https://marcus.net","course_url":"http://wilber.org"},{"course_title":"Gottlieb Group","course_number":92611,"instructor":"Iva Conn","location":"798 Wolff Walks","time":"2018-07-14T13:32:02.977Z","enrolled":24401,"book":"https://lavinia.org","course_url":"https://casper.net"},{"course_title":"Heathcote, Trantow and Ankunding","course_number":40558,"instructor":"Bernita Mitchell DDS","location":"978 Camylle Stravenue","time":"2018-07-14T03:39:11.892Z","enrolled":49147,"book":"http://jakob.info","course_url":"http://moshe.biz"},{"course_title":"Kulas - Rutherford","course_number":74095,"instructor":"Haleigh Kirlin","location":"75184 Ernser Locks","time":"2018-07-14T08:15:00.578Z","enrolled":95452,"book":"https://rupert.info","course_url":"https://waldo.net"},{"course_title":"Batz - Blanda","course_number":74421,"instructor":"Miss Paula Little","location":"738 MacGyver Court","time":"2018-07-14T16:16:38.596Z","enrolled":66955,"book":"https://karli.biz","course_url":"http://favian.info"},{"course_title":"Waters - Funk","course_number":65998,"instructor":"Dr. Fausto Considine","location":"0642 Stehr Hollow","time":"2018-07-14T06:32:18.495Z","enrolled":7987,"book":"http://stan.org","course_url":"http://everett.org"},{"course_title":"Bednar, Botsford and Haag","course_number":38955,"instructor":"Kevin Glover","location":"358 Ava Springs","time":"2018-07-14T22:38:43.441Z","enrolled":73752,"book":"http://malika.name","course_url":"http://layla.org"},{"course_title":"Watsica, Donnelly and Kuvalis","course_number":68518,"instructor":"Ned Parker","location":"83785 Von Estate","time":"2018-07-14T20:48:07.110Z","enrolled":56389,"book":"https://tessie.net","course_url":"https://abbigail.biz"},{"course_title":"Paucek Group","course_number":71852,"instructor":"Clemens Ankunding","location":"362 Kennedi Mill","time":"2018-07-14T04:11:33.021Z","enrolled":2060,"book":"https://furman.org","course_url":"http://dalton.org"},{"course_title":"Kessler Group","course_number":42824,"instructor":"Maxine Hintz V","location":"0543 Shemar Springs","time":"2018-07-14T02:27:39.872Z","enrolled":15946,"book":"http://dan.name","course_url":"http://zion.net"},{"course_title":"Ankunding - Towne","course_number":75540,"instructor":"Kayleigh Lehner","location":"684 Ruben Common","time":"2018-07-14T05:15:37.612Z","enrolled":14001,"book":"http://marlon.org","course_url":"https://deon.org"},{"course_title":"Berge, Altenwerth and Witting","course_number":9241,"instructor":"Maida Ernser DDS","location":"38029 Marquardt Meadow","time":"2018-07-14T10:12:51.439Z","enrolled":71971,"book":"https://keegan.name","course_url":"https://monserrat.biz"},{"course_title":"Dickens Group","course_number":10367,"instructor":"Ivah Yost","location":"0451 Kuhn Station","time":"2018-07-14T06:34:24.260Z","enrolled":3189,"book":"http://lauryn.org","course_url":"http://pauline.biz"},{"course_title":"Hessel - Simonis","course_number":38799,"instructor":"Alphonso Rippin","location":"433 Lillie Fort","time":"2018-07-14T10:47:30.727Z","enrolled":61830,"book":"http://gloria.com","course_url":"http://pink.net"},{"course_title":"Lueilwitz - Kreiger","course_number":18575,"instructor":"Fern Glover Sr.","location":"402 Watsica Hills","time":"2018-07-14T16:28:10.414Z","enrolled":75636,"book":"http://jailyn.com","course_url":"https://adrian.name"},{"course_title":"Rippin - Weimann","course_number":40919,"instructor":"Emmalee Schiller","location":"913 Moen Land","time":"2018-07-14T15:56:40.997Z","enrolled":97495,"book":"http://keira.name","course_url":"https://georgiana.org"},{"course_title":"Dicki - Murray","course_number":23291,"instructor":"Lester Lueilwitz","location":"68433 Koch Extensions","time":"2018-07-14T06:44:02.735Z","enrolled":16828,"book":"https://pietro.biz","course_url":"http://jeffry.org"},{"course_title":"Hackett, Bergnaum and Haley","course_number":69591,"instructor":"Miss Hiram Dibbert","location":"6935 Alexandrine Lane","time":"2018-07-14T08:53:54.138Z","enrolled":56232,"book":"https://merl.org","course_url":"http://kory.com"},{"course_title":"Hermann LLC","course_number":68673,"instructor":"Dr. Dion Keeling","location":"325 Moore Mission","time":"2018-07-14T11:34:31.716Z","enrolled":67899,"book":"http://laurie.net","course_url":"https://alfredo.org"},{"course_title":"Mann - Hilpert","course_number":95445,"instructor":"Blanche Gorczany DDS","location":"70955 Nikolaus Prairie","time":"2018-07-14T09:32:53.244Z","enrolled":6077,"book":"http://stefanie.com","course_url":"http://destinee.info"},{"course_title":"Powlowski Group","course_number":60440,"instructor":"Rae Schowalter","location":"946 Bins Path","time":"2018-07-14T06:29:09.574Z","enrolled":51499,"book":"http://carlo.info","course_url":"http://marilyne.net"},{"course_title":"Rippin Inc","course_number":23682,"instructor":"Reynold O'Reilly","location":"464 Weissnat Burg","time":"2018-07-14T04:12:06.149Z","enrolled":23814,"book":"http://jennifer.name","course_url":"http://jamarcus.info"},{"course_title":"Johnston Inc","course_number":38558,"instructor":"Wiley O'Keefe","location":"2640 Bridget Ranch","time":"2018-07-14T04:57:06.739Z","enrolled":9263,"book":"https://kody.info","course_url":"http://ewald.info"},{"course_title":"Johnson, Pollich and Swift","course_number":78211,"instructor":"Rhett DuBuque","location":"3079 Waters Neck","time":"2018-07-14T03:30:17.071Z","enrolled":92912,"book":"http://marcellus.biz","course_url":"https://connor.net"},{"course_title":"Fay, Wilkinson and Wisoky","course_number":37230,"instructor":"Stefan Douglas","location":"987 Raina Ways","time":"2018-07-14T03:42:41.503Z","enrolled":92953,"book":"http://chester.net","course_url":"https://theresa.info"},{"course_title":"Breitenberg LLC","course_number":37033,"instructor":"Haskell Barrows","location":"250 Bechtelar Curve","time":"2018-07-14T00:25:44.934Z","enrolled":238,"book":"http://timothy.com","course_url":"http://gladyce.info"},{"course_title":"Leffler LLC","course_number":3273,"instructor":"Aliyah Dickens","location":"207 Armand Plain","time":"2018-07-14T02:43:13.456Z","enrolled":98054,"book":"http://amira.org","course_url":"https://celine.info"},{"course_title":"Labadie, Douglas and Waters","course_number":98726,"instructor":"Charlene Walter","location":"57471 Madelyn Forges","time":"2018-07-14T16:56:05.917Z","enrolled":95108,"book":"https://lafayette.info","course_url":"http://anais.net"},{"course_title":"Ankunding, Hettinger and Zulauf","course_number":91205,"instructor":"Miss Dorthy Zieme","location":"5246 Lexus Extensions","time":"2018-07-14T08:57:41.824Z","enrolled":63342,"book":"https://shanny.info","course_url":"http://tanner.org"},{"course_title":"Ritchie LLC","course_number":91530,"instructor":"Cornelius Raynor","location":"074 Olson Forks","time":"2018-07-14T06:02:35.992Z","enrolled":3669,"book":"https://michelle.net","course_url":"http://bertha.biz"},{"course_title":"Oberbrunner and Sons","course_number":40657,"instructor":"Rita Corwin","location":"5009 Verdie Fields","time":"2018-07-14T08:13:30.747Z","enrolled":26228,"book":"https://audra.biz","course_url":"http://johan.org"},{"course_title":"Langosh, Haag and Purdy","course_number":56478,"instructor":"Ladarius Schmidt","location":"8888 Bode Path","time":"2018-07-14T22:47:34.585Z","enrolled":32142,"book":"https://paris.info","course_url":"https://winston.info"},{"course_title":"Maggio, Abshire and Wyman","course_number":75391,"instructor":"Orpha Beahan","location":"76034 Waters Tunnel","time":"2018-07-14T19:18:34.024Z","enrolled":25751,"book":"http://ozella.biz","course_url":"https://larue.org"},{"course_title":"Jones LLC","course_number":40902,"instructor":"Santiago Cartwright","location":"1120 Sheila Cove","time":"2018-07-14T01:46:02.165Z","enrolled":27089,"book":"https://vince.net","course_url":"http://polly.name"},{"course_title":"Hackett - Gusikowski","course_number":39923,"instructor":"Lela Towne","location":"16040 Bednar Ports","time":"2018-07-14T01:15:32.990Z","enrolled":70053,"book":"https://zackery.info","course_url":"http://sandy.info"},{"course_title":"Carter, O'Kon and Borer","course_number":3093,"instructor":"Miss Francis Schaden","location":"1648 Beahan Loop","time":"2018-07-14T21:02:52.273Z","enrolled":66814,"book":"http://maia.org","course_url":"https://velma.com"},{"course_title":"Beatty - Abernathy","course_number":45099,"instructor":"Claudie Friesen II","location":"707 Lisette Locks","time":"2018-07-14T10:04:20.382Z","enrolled":84576,"book":"https://alfreda.name","course_url":"http://vidal.info"},{"course_title":"Torp, Hane and Kassulke","course_number":93333,"instructor":"Renee Donnelly","location":"7227 Bobbie Run","time":"2018-07-14T02:09:10.509Z","enrolled":965,"book":"http://lorenz.name","course_url":"http://ervin.net"},{"course_title":"Mohr LLC","course_number":61868,"instructor":"Brenden Paucek","location":"57406 Hyatt Locks","time":"2018-07-13T23:45:01.907Z","enrolled":66425,"book":"http://katlyn.name","course_url":"http://yadira.org"},{"course_title":"Veum, Satterfield and Connelly","course_number":75390,"instructor":"Maria Stark","location":"28483 Unique Fort","time":"2018-07-14T19:30:54.291Z","enrolled":19743,"book":"http://eliseo.name","course_url":"https://gage.org"},{"course_title":"Jacobs Group","course_number":86109,"instructor":"Luna McGlynn","location":"03965 Nigel Road","time":"2018-07-14T14:32:31.142Z","enrolled":6722,"book":"http://wilfredo.net","course_url":"https://marcelina.net"},{"course_title":"Murazik, Heathcote and Kunze","course_number":6303,"instructor":"Isabell Lakin","location":"6209 Kameron Plains","time":"2018-07-14T13:17:46.855Z","enrolled":16808,"book":"http://tomasa.name","course_url":"http://roma.org"},{"course_title":"Homenick, Turner and Feeney","course_number":17047,"instructor":"Norbert Beer","location":"27256 Romaguera Trafficway","time":"2018-07-14T22:13:17.414Z","enrolled":36484,"book":"http://elisa.com","course_url":"http://jamel.com"},{"course_title":"Flatley LLC","course_number":39828,"instructor":"Clementina Dare","location":"8837 Shaniya Overpass","time":"2018-07-14T13:50:26.227Z","enrolled":5477,"book":"http://bartholome.info","course_url":"https://darrick.biz"},{"course_title":"Harvey and Sons","course_number":81149,"instructor":"Brody Wilderman","location":"7625 Hyatt Dam","time":"2018-07-14T02:57:16.730Z","enrolled":48079,"book":"http://deion.com","course_url":"https://maryse.com"},{"course_title":"Schultz - Stoltenberg","course_number":47370,"instructor":"Granville Fahey","location":"3231 Cruz Unions","time":"2018-07-14T20:38:40.239Z","enrolled":84193,"book":"https://tod.com","course_url":"https://alfonso.org"},{"course_title":"VonRueden - Kub","course_number":93044,"instructor":"Bryana Upton","location":"71797 Mitchel Summit","time":"2018-07-14T21:13:46.597Z","enrolled":70003,"book":"https://albert.net","course_url":"https://ed.name"},{"course_title":"Nikolaus - Breitenberg","course_number":21234,"instructor":"Reed Torphy","location":"568 Megane Row","time":"2018-07-14T12:12:00.312Z","enrolled":85085,"book":"http://nakia.info","course_url":"http://margarette.net"},{"course_title":"Ruecker, Johnston and Howe","course_number":21662,"instructor":"Cecelia Fay","location":"97725 Aurelie Trail","time":"2018-07-14T07:38:34.715Z","enrolled":66486,"book":"https://gilberto.info","course_url":"http://preston.info"},{"course_title":"Bauch, Yundt and Adams","course_number":75210,"instructor":"Mrs. Hal Bergstrom","location":"05050 Rhoda Prairie","time":"2018-07-14T21:15:18.875Z","enrolled":72401,"book":"https://ethyl.biz","course_url":"https://karlee.biz"},{"course_title":"Dach - Stark","course_number":13677,"instructor":"Jadyn Durgan","location":"980 Larkin Lakes","time":"2018-07-13T23:54:24.853Z","enrolled":88143,"book":"http://adela.net","course_url":"https://lilla.biz"},{"course_title":"Dickens - Sipes","course_number":79809,"instructor":"Brook Durgan","location":"80932 Monte Forest","time":"2018-07-14T14:13:48.764Z","enrolled":8788,"book":"http://valentin.org","course_url":"http://german.org"},{"course_title":"Leffler - Smith","course_number":2602,"instructor":"Bud Walter","location":"84176 Vena Station","time":"2018-07-14T07:04:45.189Z","enrolled":33062,"book":"http://mollie.biz","course_url":"https://noel.info"},{"course_title":"Wuckert, Reichel and Stracke","course_number":51856,"instructor":"Clint O'Conner Jr.","location":"4753 Toy Streets","time":"2018-07-14T07:23:17.896Z","enrolled":33293,"book":"https://mckayla.name","course_url":"https://bell.biz"},{"course_title":"Casper Group","course_number":85102,"instructor":"Patience McLaughlin","location":"049 Sawayn Crest","time":"2018-07-14T12:51:10.301Z","enrolled":3289,"book":"http://sadye.com","course_url":"http://prince.name"},{"course_title":"Prosacco, Watsica and Nicolas","course_number":70800,"instructor":"D'angelo Kessler","location":"158 Frances Route","time":"2018-07-14T16:30:11.174Z","enrolled":50660,"book":"http://lyla.biz","course_url":"http://melyna.info"},{"course_title":"Friesen - Gutkowski","course_number":57506,"instructor":"Clare Tromp","location":"04331 Doyle Burgs","time":"2018-07-14T07:21:04.459Z","enrolled":77468,"book":"https://marlene.info","course_url":"http://delmer.info"},{"course_title":"Gutmann and Sons","course_number":34537,"instructor":"Hayden Brekke","location":"05360 Moises Fall","time":"2018-07-14T02:52:41.257Z","enrolled":60251,"book":"http://ruth.net","course_url":"http://pansy.biz"},{"course_title":"Kulas, Fritsch and Erdman","course_number":24202,"instructor":"Laisha Gleichner MD","location":"079 Larry Rapid","time":"2018-07-14T05:57:56.191Z","enrolled":86794,"book":"http://vivianne.name","course_url":"https://finn.biz"},{"course_title":"Ebert - Renner","course_number":45122,"instructor":"Mrs. Shanie Orn","location":"617 Stewart Bridge","time":"2018-07-14T16:57:27.443Z","enrolled":73247,"book":"https://martine.net","course_url":"http://bertha.net"},{"course_title":"Torphy, Bashirian and Adams","course_number":52646,"instructor":"Vito Haag","location":"494 Weimann Haven","time":"2018-07-14T22:13:53.517Z","enrolled":15738,"book":"https://felicita.info","course_url":"http://elnora.net"},{"course_title":"Bradtke - Berge","course_number":36915,"instructor":"Reed Stokes","location":"634 Adrian Ridge","time":"2018-07-14T11:12:25.481Z","enrolled":50006,"book":"http://alexis.com","course_url":"http://al.org"},{"course_title":"Prosacco - Hintz","course_number":27955,"instructor":"Shakira Runte","location":"19887 Stark Isle","time":"2018-07-14T07:02:58.791Z","enrolled":51722,"book":"https://stanley.biz","course_url":"http://daphne.com"},{"course_title":"Connelly, Ryan and Runolfsson","course_number":94133,"instructor":"Glenda Kerluke","location":"43507 Tomasa Garden","time":"2018-07-14T16:08:10.698Z","enrolled":65146,"book":"http://michaela.info","course_url":"http://linnea.biz"},{"course_title":"Boehm, Cremin and Wisozk","course_number":14566,"instructor":"Mrs. Celestino Mertz","location":"87541 Kuphal Curve","time":"2018-07-14T15:07:59.053Z","enrolled":26456,"book":"http://toy.net","course_url":"https://lindsay.name"},{"course_title":"Kunde, Balistreri and Jenkins","course_number":41727,"instructor":"Gonzalo Roberts","location":"8007 Stefanie Pike","time":"2018-07-14T08:56:13.916Z","enrolled":23863,"book":"http://maudie.net","course_url":"http://lily.info"},{"course_title":"Powlowski, Gislason and Kuhic","course_number":16548,"instructor":"Ms. Cameron Moore","location":"0501 Hansen Way","time":"2018-07-14T07:21:33.533Z","enrolled":64270,"book":"https://scotty.com","course_url":"http://alvah.net"},{"course_title":"Hintz, Nitzsche and Rath","course_number":48724,"instructor":"Elisa Haag","location":"3680 O'Keefe Run","time":"2018-07-14T01:04:59.180Z","enrolled":5989,"book":"https://nikita.org","course_url":"http://eladio.org"},{"course_title":"Reilly, Hansen and Johns","course_number":47620,"instructor":"Rylee O'Reilly","location":"4599 Homenick Run","time":"2018-07-14T22:10:54.415Z","enrolled":97120,"book":"https://jaunita.org","course_url":"http://jamey.org"},{"course_title":"Monahan and Sons","course_number":81877,"instructor":"Halle Sawayn","location":"660 Nicolas Inlet","time":"2018-07-14T19:09:13.734Z","enrolled":16275,"book":"https://katelin.info","course_url":"https://dashawn.name"},{"course_title":"Lesch LLC","course_number":69660,"instructor":"Joel Ruecker","location":"00097 Kitty Port","time":"2018-07-14T18:45:28.162Z","enrolled":74612,"book":"https://joanne.info","course_url":"https://leatha.net"},{"course_title":"Boyle Group","course_number":71134,"instructor":"Jordan Kertzmann","location":"717 Schulist Fort","time":"2018-07-14T11:48:31.072Z","enrolled":88002,"book":"https://anna.com","course_url":"http://luna.org"},{"course_title":"Abernathy Group","course_number":2437,"instructor":"Raegan Kozey","location":"0343 Oleta Drive","time":"2018-07-14T15:14:52.906Z","enrolled":42654,"book":"http://carrie.com","course_url":"https://caterina.name"},{"course_title":"Schuster and Sons","course_number":14678,"instructor":"Cassidy Goodwin","location":"97967 Hammes Island","time":"2018-07-14T13:23:40.098Z","enrolled":60261,"book":"https://saige.biz","course_url":"https://jewell.com"},{"course_title":"Koelpin - Hilpert","course_number":7248,"instructor":"Savion Dietrich","location":"693 Augustus Bridge","time":"2018-07-14T00:57:45.878Z","enrolled":46134,"book":"https://gianni.info","course_url":"http://jarret.info"},{"course_title":"Kub, Walsh and Funk","course_number":95540,"instructor":"Dr. Florencio Weimann","location":"160 Libbie Summit","time":"2018-07-14T16:37:22.509Z","enrolled":28551,"book":"https://marlon.org","course_url":"https://rashad.info"},{"course_title":"Parisian, Brekke and Hane","course_number":57145,"instructor":"Pearline Sawayn","location":"642 Waelchi Mountains","time":"2018-07-14T06:49:21.398Z","enrolled":34412,"book":"http://yasmin.org","course_url":"http://bertha.info"},{"course_title":"Parker, Keeling and Schultz","course_number":17012,"instructor":"Marilyne Zulauf Sr.","location":"98775 Alexander Vista","time":"2018-07-14T05:08:02.114Z","enrolled":68264,"book":"http://daphne.net","course_url":"http://nicolas.org"},{"course_title":"McGlynn, Hand and Cremin","course_number":97891,"instructor":"Ms. Randal Heidenreich","location":"58148 Windler Cape","time":"2018-07-14T16:41:02.727Z","enrolled":33164,"book":"https://trevion.info","course_url":"https://jaren.net"},{"course_title":"Crist, Tremblay and Hahn","course_number":81632,"instructor":"Dax Labadie","location":"229 Mertz Street","time":"2018-07-14T10:14:51.865Z","enrolled":43769,"book":"http://alisa.biz","course_url":"https://karlie.biz"},{"course_title":"Feeney, Deckow and Fisher","course_number":77905,"instructor":"Ava Towne","location":"86607 Auer Underpass","time":"2018-07-14T13:01:38.001Z","enrolled":72520,"book":"https://nathanial.net","course_url":"https://selina.info"},{"course_title":"King, Torphy and Stroman","course_number":28003,"instructor":"Mr. Berta Torp","location":"82334 Christop Divide","time":"2018-07-14T12:34:02.532Z","enrolled":36410,"book":"https://alessandra.com","course_url":"http://orland.org"},{"course_title":"Dickens and Sons","course_number":24480,"instructor":"Wilbert Wintheiser","location":"56823 Williamson Tunnel","time":"2018-07-13T23:56:26.944Z","enrolled":92879,"book":"https://abbigail.biz","course_url":"http://allene.biz"},{"course_title":"Zieme Group","course_number":24456,"instructor":"Ross Greenfelder IV","location":"83811 Nolan Ways","time":"2018-07-14T11:42:14.283Z","enrolled":18849,"book":"http://monserrate.com","course_url":"http://lila.com"},{"course_title":"Berge, Grady and Prohaska","course_number":63791,"instructor":"Gisselle Davis V","location":"40147 Padberg Run","time":"2018-07-14T18:37:51.663Z","enrolled":5216,"book":"https://lucienne.com","course_url":"http://eugene.com"},{"course_title":"Schmidt LLC","course_number":98888,"instructor":"Jayne Zboncak","location":"002 Koch Lake","time":"2018-07-14T08:52:11.557Z","enrolled":18315,"book":"http://april.biz","course_url":"https://krystel.net"},{"course_title":"Kirlin, Keebler and Bogan","course_number":12545,"instructor":"Madisyn Larson","location":"313 Von Groves","time":"2018-07-14T00:46:59.568Z","enrolled":56872,"book":"https://winfield.info","course_url":"https://chance.net"},{"course_title":"Jacobs, Turner and Jakubowski","course_number":26193,"instructor":"Melissa Ankunding","location":"6801 Kacie Circles","time":"2018-07-14T09:38:45.057Z","enrolled":10217,"book":"https://andre.org","course_url":"https://osbaldo.com"},{"course_title":"Crooks - Ward","course_number":88465,"instructor":"Junior Schultz","location":"32857 Metz Trafficway","time":"2018-07-14T06:42:11.899Z","enrolled":21033,"book":"https://raina.com","course_url":"http://jerad.com"},{"course_title":"Zulauf, Graham and Willms","course_number":41488,"instructor":"Terry Russel","location":"502 Jailyn Keys","time":"2018-07-14T16:57:02.799Z","enrolled":97080,"book":"http://jovanny.org","course_url":"https://jacinthe.info"},{"course_title":"Wolf LLC","course_number":29098,"instructor":"Lila Lesch","location":"1487 Zackary Freeway","time":"2018-07-14T12:12:50.650Z","enrolled":47363,"book":"http://mozelle.org","course_url":"https://leon.net"},{"course_title":"Cummings, Dibbert and Greenfelder","course_number":95114,"instructor":"Willard Brekke","location":"186 Cronin Road","time":"2018-07-14T07:42:23.534Z","enrolled":57633,"book":"http://lavern.com","course_url":"http://leonie.net"},{"course_title":"Beahan, Littel and Jakubowski","course_number":86798,"instructor":"Anissa Schultz DVM","location":"434 Wiza Roads","time":"2018-07-14T01:14:00.348Z","enrolled":1613,"book":"https://lucius.org","course_url":"https://vernon.net"},{"course_title":"Mitchell - Jenkins","course_number":71249,"instructor":"Antonio Beahan IV","location":"8075 Brenden Flats","time":"2018-07-14T17:58:00.281Z","enrolled":78433,"book":"https://skylar.com","course_url":"http://rita.org"},{"course_title":"Gorczany - Wiza","course_number":53183,"instructor":"Sandra Hessel II","location":"964 Jones Club","time":"2018-07-14T04:02:20.060Z","enrolled":39866,"book":"http://jasper.name","course_url":"https://helena.net"},{"course_title":"Cormier Group","course_number":31567,"instructor":"Lucienne Orn","location":"473 Sipes Squares","time":"2018-07-14T08:19:42.444Z","enrolled":32986,"book":"https://ubaldo.info","course_url":"http://mack.com"},{"course_title":"Paucek - Mitchell","course_number":89127,"instructor":"Emmitt McGlynn","location":"891 Terry Via","time":"2018-07-14T13:19:55.376Z","enrolled":92634,"book":"https://meredith.com","course_url":"http://hadley.org"},{"course_title":"Abbott - Friesen","course_number":95122,"instructor":"Miss Keegan Nader","location":"101 Rath Inlet","time":"2018-07-14T21:18:40.551Z","enrolled":32135,"book":"https://clara.biz","course_url":"https://mitchel.net"},{"course_title":"Baumbach, Cormier and Koepp","course_number":43919,"instructor":"Gerald Gleichner","location":"212 Lebsack Island","time":"2018-07-14T16:56:28.139Z","enrolled":38284,"book":"http://albert.info","course_url":"https://hipolito.com"},{"course_title":"Veum - Leuschke","course_number":77520,"instructor":"Janae Prosacco Sr.","location":"968 Wisoky Lodge","time":"2018-07-14T16:46:35.502Z","enrolled":41832,"book":"http://ray.biz","course_url":"http://eugene.info"},{"course_title":"Mraz Inc","course_number":36436,"instructor":"Carole Kris","location":"8512 Kunde Forks","time":"2018-07-14T09:16:13.521Z","enrolled":91632,"book":"http://dan.info","course_url":"http://annabel.net"},{"course_title":"Gerhold, Koss and Ryan","course_number":78145,"instructor":"Andres Kovacek PhD","location":"30224 Runolfsson Ford","time":"2018-07-14T21:11:03.953Z","enrolled":4950,"book":"https://pamela.org","course_url":"http://carlos.name"},{"course_title":"Glover, Bernhard and Hirthe","course_number":49986,"instructor":"Ms. Kendra Stoltenberg","location":"5850 Jaskolski Views","time":"2018-07-14T19:56:32.444Z","enrolled":51875,"book":"https://gayle.biz","course_url":"http://juliana.biz"},{"course_title":"Gottlieb LLC","course_number":1036,"instructor":"Jett Kozey DDS","location":"67659 Welch Roads","time":"2018-07-14T11:10:56.033Z","enrolled":62887,"book":"http://sammy.org","course_url":"http://marc.name"},{"course_title":"Ziemann Group","course_number":76736,"instructor":"Lonzo Lehner DVM","location":"846 Wiza Radial","time":"2018-07-14T01:06:28.131Z","enrolled":20806,"book":"http://danielle.info","course_url":"http://chandler.name"},{"course_title":"Feeney Inc","course_number":75660,"instructor":"Vincent Crist","location":"982 Marcelina Lights","time":"2018-07-14T15:20:00.829Z","enrolled":45854,"book":"https://guido.com","course_url":"https://raymond.name"},{"course_title":"Kertzmann, Lockman and Borer","course_number":94294,"instructor":"Earl Parisian","location":"6337 Kirlin Ford","time":"2018-07-13T23:27:14.364Z","enrolled":5487,"book":"https://jaylon.com","course_url":"http://quinn.com"},{"course_title":"Breitenberg, Jones and Tillman","course_number":51270,"instructor":"Annabelle Wuckert","location":"809 King Lodge","time":"2018-07-14T06:31:54.983Z","enrolled":99506,"book":"https://carmine.name","course_url":"https://emmett.com"},{"course_title":"McClure - Daniel","course_number":5791,"instructor":"Geoffrey Koepp","location":"378 Melvina Divide","time":"2018-07-14T20:13:22.972Z","enrolled":82684,"book":"http://alford.com","course_url":"http://anna.name"},{"course_title":"Bernier - Fisher","course_number":26764,"instructor":"Pinkie Kris","location":"820 Swaniawski Trace","time":"2018-07-14T06:39:24.030Z","enrolled":78176,"book":"http://marlon.com","course_url":"https://cordelia.info"},{"course_title":"Smith and Sons","course_number":36786,"instructor":"Miss Deon Crist","location":"8095 Pfannerstill View","time":"2018-07-14T23:00:22.894Z","enrolled":52328,"book":"http://paige.name","course_url":"http://stefanie.info"},{"course_title":"Pouros - Tremblay","course_number":48810,"instructor":"Heaven Quitzon","location":"01172 Garrett Shoals","time":"2018-07-14T08:36:55.932Z","enrolled":74016,"book":"https://anabelle.com","course_url":"https://gabriella.com"},{"course_title":"Nitzsche - Gleason","course_number":41110,"instructor":"Pietro Predovic","location":"643 Rhoda Drives","time":"2018-07-14T06:23:14.133Z","enrolled":66008,"book":"https://arjun.com","course_url":"http://ellsworth.com"},{"course_title":"Maggio - Price","course_number":98261,"instructor":"Gianni Koelpin","location":"234 Kuhlman Cape","time":"2018-07-14T08:40:13.293Z","enrolled":19959,"book":"http://ethel.org","course_url":"http://alayna.biz"},{"course_title":"Murazik - Beier","course_number":35557,"instructor":"Priscilla Gerhold","location":"294 Haag Ford","time":"2018-07-14T16:11:29.017Z","enrolled":76329,"book":"http://werner.net","course_url":"https://timothy.org"},{"course_title":"Walsh, Gulgowski and Schowalter","course_number":85701,"instructor":"Mr. Cristal Schuppe","location":"35088 Santina Square","time":"2018-07-14T05:52:20.510Z","enrolled":96930,"book":"http://heath.org","course_url":"http://jacinto.name"},{"course_title":"Bernier - Bode","course_number":26079,"instructor":"Bryce Kilback","location":"775 Zboncak Manor","time":"2018-07-14T08:27:42.212Z","enrolled":50249,"book":"http://jabari.org","course_url":"http://jaquan.name"},{"course_title":"Schaden - Homenick","course_number":17900,"instructor":"Yasmeen Glover","location":"69209 Loy Shore","time":"2018-07-14T17:07:22.420Z","enrolled":55362,"book":"https://raoul.org","course_url":"https://alejandra.name"},{"course_title":"Mertz and Sons","course_number":27888,"instructor":"Mckenzie Barton","location":"590 Sauer Valley","time":"2018-07-14T15:50:16.028Z","enrolled":3960,"book":"https://art.info","course_url":"http://earlene.org"},{"course_title":"Lakin Group","course_number":84836,"instructor":"Serenity D'Amore","location":"0471 VonRueden Gardens","time":"2018-07-14T05:21:18.503Z","enrolled":56979,"book":"https://scot.net","course_url":"http://eden.org"},{"course_title":"Schaden LLC","course_number":39873,"instructor":"Chauncey Spencer","location":"346 Abshire Circles","time":"2018-07-14T10:36:53.755Z","enrolled":20343,"book":"https://alyce.com","course_url":"https://tate.net"},{"course_title":"Zboncak Group","course_number":71498,"instructor":"Sylvia Macejkovic MD","location":"192 Hazle Parks","time":"2018-07-14T17:51:28.418Z","enrolled":30249,"book":"https://darron.org","course_url":"https://franco.biz"},{"course_title":"Conroy - Donnelly","course_number":90351,"instructor":"Adelia Collier","location":"47619 Dickens Isle","time":"2018-07-14T16:12:48.087Z","enrolled":65709,"book":"http://melyna.net","course_url":"https://ernestina.info"},{"course_title":"Kunze, Thompson and Feil","course_number":5590,"instructor":"Lauryn Rath Sr.","location":"6893 Will Village","time":"2018-07-14T08:46:04.553Z","enrolled":12276,"book":"https://kristofer.name","course_url":"http://dan.biz"},{"course_title":"Leffler, Goodwin and Veum","course_number":10091,"instructor":"Brent Shields","location":"270 Spinka Mountains","time":"2018-07-14T11:36:34.927Z","enrolled":62838,"book":"https://caden.net","course_url":"http://mitchel.com"},{"course_title":"Hartmann, O'Hara and Jenkins","course_number":55230,"instructor":"Ned Leffler","location":"6217 Cali Wall","time":"2018-07-14T15:37:09.874Z","enrolled":66908,"book":"https://bethel.name","course_url":"https://elenora.net"},{"course_title":"Rolfson, Hilpert and Lindgren","course_number":96153,"instructor":"Ayden Dare","location":"6829 Baumbach Village","time":"2018-07-14T08:45:17.643Z","enrolled":66186,"book":"https://lilly.biz","course_url":"https://alexys.com"},{"course_title":"Green - Cremin","course_number":88435,"instructor":"Ms. Olin Bartoletti","location":"04090 Kailyn Glen","time":"2018-07-14T03:03:49.461Z","enrolled":17960,"book":"https://jonas.biz","course_url":"http://domenick.info"},{"course_title":"Rippin - Ratke","course_number":31521,"instructor":"Kellen Moen","location":"753 Connelly Branch","time":"2018-07-14T07:35:41.686Z","enrolled":4608,"book":"https://valerie.info","course_url":"http://herman.org"},{"course_title":"Treutel, Wisozk and Jenkins","course_number":33624,"instructor":"Ethelyn Schroeder","location":"22746 Weissnat Crossroad","time":"2018-07-14T18:30:39.957Z","enrolled":7975,"book":"http://trevor.info","course_url":"https://geraldine.name"},{"course_title":"Brown - Bruen","course_number":87798,"instructor":"Mrs. Raul Koch","location":"5616 Stehr Trail","time":"2018-07-14T15:20:40.111Z","enrolled":42107,"book":"http://declan.info","course_url":"http://marina.com"},{"course_title":"Metz - Keeling","course_number":15754,"instructor":"Alia Stokes","location":"819 Stiedemann Flats","time":"2018-07-14T11:58:47.481Z","enrolled":82685,"book":"https://toby.biz","course_url":"https://brad.biz"},{"course_title":"Fay, Roob and Abshire","course_number":22899,"instructor":"Ms. Shemar Heidenreich","location":"649 Annamae Skyway","time":"2018-07-14T07:08:46.393Z","enrolled":98325,"book":"https://maurine.name","course_url":"https://idella.org"},{"course_title":"Blanda, Skiles and Feil","course_number":30795,"instructor":"Mr. Leif Ondricka","location":"4763 Becker Burgs","time":"2018-07-14T09:12:21.883Z","enrolled":30012,"book":"https://ryleigh.biz","course_url":"https://titus.com"},{"course_title":"Dare - Gaylord","course_number":42768,"instructor":"Corbin Littel","location":"89921 Skiles Stravenue","time":"2018-07-14T06:07:55.400Z","enrolled":58245,"book":"https://dianna.info","course_url":"http://oral.info"},{"course_title":"Carter - Sporer","course_number":69592,"instructor":"Joannie Friesen","location":"72023 Hammes Extension","time":"2018-07-14T21:36:52.772Z","enrolled":53230,"book":"https://robin.org","course_url":"http://jana.info"},{"course_title":"Rohan, Bartoletti and Murray","course_number":31189,"instructor":"Ally Schuppe","location":"23000 Adelia Ranch","time":"2018-07-14T15:42:35.989Z","enrolled":96769,"book":"https://shayne.biz","course_url":"https://javier.org"},{"course_title":"Strosin Group","course_number":44089,"instructor":"Georgiana Kihn","location":"54268 Courtney Plain","time":"2018-07-14T09:24:29.790Z","enrolled":38032,"book":"https://reanna.info","course_url":"http://madelyn.net"},{"course_title":"Franecki, Glover and Sawayn","course_number":74495,"instructor":"Zechariah Larkin","location":"592 Pfeffer Lane","time":"2018-07-14T08:21:37.953Z","enrolled":6965,"book":"https://gunnar.name","course_url":"https://braulio.net"},{"course_title":"Gleason LLC","course_number":69346,"instructor":"Kiana Jacobson","location":"425 Brown Via","time":"2018-07-14T04:14:16.651Z","enrolled":32103,"book":"https://gerhard.org","course_url":"http://laura.name"},{"course_title":"Abernathy LLC","course_number":64376,"instructor":"Lemuel Langosh","location":"98821 Murray Branch","time":"2018-07-14T22:51:30.430Z","enrolled":4286,"book":"http://isom.biz","course_url":"http://tobin.biz"},{"course_title":"Swaniawski Group","course_number":86012,"instructor":"Horace Denesik","location":"5344 MacGyver Extension","time":"2018-07-14T00:15:27.074Z","enrolled":46433,"book":"http://demetris.biz","course_url":"https://joesph.biz"},{"course_title":"Dibbert, Schamberger and Mraz","course_number":62279,"instructor":"Kathleen Torp","location":"67198 Karen Mill","time":"2018-07-14T06:19:20.187Z","enrolled":36817,"book":"https://wanda.biz","course_url":"http://raheem.info"},{"course_title":"Steuber and Sons","course_number":71715,"instructor":"Yessenia Bartoletti","location":"200 Alek Mews","time":"2018-07-14T10:23:19.351Z","enrolled":7376,"book":"https://ansel.info","course_url":"https://carlotta.name"},{"course_title":"Beer, Rippin and Bailey","course_number":36238,"instructor":"Lexie Monahan","location":"4741 Cornelius Street","time":"2018-07-14T05:01:17.929Z","enrolled":17258,"book":"https://dixie.org","course_url":"https://katelin.net"},{"course_title":"Lemke - Wolff","course_number":42157,"instructor":"Juston Kohler","location":"38957 Manley Field","time":"2018-07-14T02:26:28.693Z","enrolled":45705,"book":"https://jonathan.info","course_url":"https://margarett.org"},{"course_title":"Runolfsdottir Inc","course_number":63646,"instructor":"Garry Hudson","location":"696 Rogahn Inlet","time":"2018-07-14T15:44:38.568Z","enrolled":43354,"book":"http://raymundo.com","course_url":"http://karlee.net"},{"course_title":"Yundt, Hackett and West","course_number":18826,"instructor":"Cesar Moen","location":"918 Gottlieb Mill","time":"2018-07-14T18:16:51.131Z","enrolled":4217,"book":"https://kurt.name","course_url":"http://raphaelle.name"},{"course_title":"Boehm, Von and Aufderhar","course_number":57398,"instructor":"Rosendo Dickens","location":"54508 Jerde Forge","time":"2018-07-14T20:09:08.401Z","enrolled":78328,"book":"https://garry.com","course_url":"http://kenya.org"},{"course_title":"Kerluke Group","course_number":55205,"instructor":"Leonel Nikolaus","location":"4631 Kreiger Stravenue","time":"2018-07-14T18:23:31.552Z","enrolled":91593,"book":"https://kaela.com","course_url":"http://makenzie.name"},{"course_title":"Sawayn Group","course_number":20013,"instructor":"Jordon Davis","location":"3494 Seamus Turnpike","time":"2018-07-14T20:28:12.874Z","enrolled":119,"book":"http://virgil.com","course_url":"https://brigitte.com"},{"course_title":"Moore - Denesik","course_number":24373,"instructor":"Adelle Daniel","location":"87018 Austyn Pines","time":"2018-07-14T06:20:12.848Z","enrolled":50415,"book":"http://joana.com","course_url":"https://martine.com"},{"course_title":"Aufderhar and Sons","course_number":98533,"instructor":"Xavier King","location":"2324 Vandervort Extension","time":"2018-07-14T19:47:35.694Z","enrolled":96157,"book":"https://jakob.biz","course_url":"http://coleman.net"},{"course_title":"Heaney, Hauck and Ryan","course_number":40782,"instructor":"Wilson Brown","location":"256 O'Conner Spring","time":"2018-07-14T11:37:48.216Z","enrolled":79241,"book":"http://britney.info","course_url":"http://aidan.name"},{"course_title":"Wyman, Graham and Collier","course_number":31418,"instructor":"Edward Fay","location":"646 Eliezer Locks","time":"2018-07-13T23:14:59.767Z","enrolled":54441,"book":"http://amparo.biz","course_url":"https://junior.org"},{"course_title":"Kihn Inc","course_number":40378,"instructor":"Kassandra Hagenes DDS","location":"381 Gust Wells","time":"2018-07-14T16:27:51.976Z","enrolled":3218,"book":"http://johann.info","course_url":"http://johnathon.org"},{"course_title":"Kreiger Group","course_number":43684,"instructor":"Enoch Rau","location":"30782 Ignatius Extension","time":"2018-07-14T08:23:43.598Z","enrolled":34540,"book":"https://krystal.info","course_url":"https://prince.com"},{"course_title":"Dickens Group","course_number":21105,"instructor":"Ms. Al White","location":"0094 Ebba Circles","time":"2018-07-14T03:23:54.290Z","enrolled":46227,"book":"http://jaunita.name","course_url":"https://kelton.net"},{"course_title":"Armstrong - Stroman","course_number":15305,"instructor":"Jakayla Adams","location":"5195 Ian Locks","time":"2018-07-14T08:53:07.533Z","enrolled":86236,"book":"https://laurel.biz","course_url":"https://amara.org"},{"course_title":"Connelly LLC","course_number":10090,"instructor":"Raleigh Lubowitz","location":"55226 Amely Terrace","time":"2018-07-14T11:44:40.195Z","enrolled":35359,"book":"http://morton.net","course_url":"http://humberto.com"},{"course_title":"Herzog, Friesen and Heidenreich","course_number":8287,"instructor":"Roslyn Nitzsche","location":"1629 Howell Plaza","time":"2018-07-14T12:36:56.295Z","enrolled":442,"book":"http://chauncey.org","course_url":"https://gregg.info"},{"course_title":"Murphy, Mohr and Tremblay","course_number":41009,"instructor":"Eileen Swaniawski","location":"992 MacGyver Village","time":"2018-07-14T23:07:36.484Z","enrolled":55306,"book":"https://chance.name","course_url":"http://osbaldo.net"},{"course_title":"Runolfsson Inc","course_number":68430,"instructor":"Carson McCullough","location":"79724 Florine Hollow","time":"2018-07-14T00:50:25.692Z","enrolled":73009,"book":"http://alia.name","course_url":"https://santa.net"},{"course_title":"Hamill - Jacobson","course_number":17189,"instructor":"Berniece Walsh","location":"14266 Kohler Forge","time":"2018-07-14T11:26:14.469Z","enrolled":10017,"book":"http://mireille.org","course_url":"http://maybell.name"},{"course_title":"Kerluke, Bogisich and Prohaska","course_number":30801,"instructor":"Jamir Welch","location":"2919 Block Harbors","time":"2018-07-14T12:34:39.482Z","enrolled":93180,"book":"http://marina.name","course_url":"https://pasquale.info"},{"course_title":"Hermann and Sons","course_number":8421,"instructor":"Vada Dooley","location":"967 Paige Brooks","time":"2018-07-14T09:34:27.882Z","enrolled":77499,"book":"http://brendan.com","course_url":"https://augustine.com"},{"course_title":"Cronin Group","course_number":47128,"instructor":"Leann Tremblay","location":"08792 Skiles Divide","time":"2018-07-14T05:26:12.738Z","enrolled":74738,"book":"https://jaquelin.org","course_url":"http://quincy.biz"},{"course_title":"Goldner LLC","course_number":72721,"instructor":"Angel Wehner","location":"2520 Yundt Shoals","time":"2018-07-14T06:40:39.955Z","enrolled":68604,"book":"https://hope.name","course_url":"https://ernesto.info"},{"course_title":"Jenkins - Smitham","course_number":98777,"instructor":"Jolie Roberts","location":"79614 Michelle Mews","time":"2018-07-14T17:53:08.987Z","enrolled":26687,"book":"https://kelsi.name","course_url":"https://eda.biz"},{"course_title":"Kutch - Torphy","course_number":37907,"instructor":"Theresia Kautzer","location":"367 Rodger Junction","time":"2018-07-14T18:53:58.575Z","enrolled":33959,"book":"http://eda.biz","course_url":"http://reed.net"},{"course_title":"Vandervort, Borer and Fadel","course_number":51528,"instructor":"Coralie Stracke","location":"495 Waters Fork","time":"2018-07-14T04:35:03.081Z","enrolled":65214,"book":"http://bennett.org","course_url":"https://fatima.name"},{"course_title":"Murazik LLC","course_number":59756,"instructor":"Ethyl Schmitt","location":"037 Reichel Squares","time":"2018-07-14T19:17:14.434Z","enrolled":54481,"book":"https://zakary.name","course_url":"https://oleta.info"},{"course_title":"Waelchi, Upton and Huels","course_number":26855,"instructor":"Maureen Borer","location":"0703 Marquise Burg","time":"2018-07-14T17:29:08.609Z","enrolled":23641,"book":"http://ervin.info","course_url":"http://justen.name"},{"course_title":"Shields - McLaughlin","course_number":81600,"instructor":"Bradford Murazik","location":"5452 Valentin Stravenue","time":"2018-07-14T16:48:04.464Z","enrolled":87255,"book":"http://rebeka.org","course_url":"https://hailey.biz"},{"course_title":"Schowalter - Brekke","course_number":66682,"instructor":"Gennaro Medhurst","location":"800 Ronny Roads","time":"2018-07-14T18:05:00.876Z","enrolled":27227,"book":"http://danielle.net","course_url":"https://andy.info"},{"course_title":"Harber - Luettgen","course_number":35456,"instructor":"Lenna Lesch","location":"7220 Sasha Fields","time":"2018-07-14T22:16:44.436Z","enrolled":28481,"book":"https://mariane.com","course_url":"http://angus.biz"},{"course_title":"Rippin, Sipes and Schmidt","course_number":27537,"instructor":"Douglas Leuschke","location":"5760 Will Mills","time":"2018-07-14T10:30:25.591Z","enrolled":14605,"book":"http://marlene.com","course_url":"http://emmitt.biz"},{"course_title":"Leffler - Blanda","course_number":46875,"instructor":"Price Moen","location":"3585 Barton Road","time":"2018-07-14T20:20:51.127Z","enrolled":14308,"book":"http://orlando.name","course_url":"http://rudolph.org"},{"course_title":"Koepp - Harvey","course_number":40176,"instructor":"Kayleigh Boyer","location":"1869 Orpha Overpass","time":"2018-07-14T10:33:46.028Z","enrolled":99412,"book":"https://mustafa.info","course_url":"http://shaylee.net"},{"course_title":"Von - Fay","course_number":44103,"instructor":"Beverly Kerluke","location":"50047 Wilkinson Common","time":"2018-07-14T10:37:32.264Z","enrolled":64241,"book":"https://cheyanne.info","course_url":"https://lou.biz"},{"course_title":"Schuster LLC","course_number":15300,"instructor":"Brant Kozey","location":"09200 Dorian Loaf","time":"2018-07-14T09:44:32.946Z","enrolled":48184,"book":"http://josue.com","course_url":"http://bart.biz"},{"course_title":"Heaney - Quitzon","course_number":11937,"instructor":"Libby Douglas","location":"857 Laurine Spur","time":"2018-07-14T07:54:56.215Z","enrolled":41984,"book":"http://kian.info","course_url":"https://ewald.com"},{"course_title":"Hessel LLC","course_number":17379,"instructor":"Maynard Wunsch","location":"983 Vidal Burgs","time":"2018-07-14T14:42:49.677Z","enrolled":4786,"book":"https://lisa.com","course_url":"http://alden.net"},{"course_title":"Weber - Jakubowski","course_number":78505,"instructor":"Maureen Jaskolski","location":"6201 Ward Drive","time":"2018-07-14T18:58:03.157Z","enrolled":12405,"book":"http://maureen.net","course_url":"http://jon.org"},{"course_title":"Fritsch - Keebler","course_number":8669,"instructor":"Mr. Karli Pfannerstill","location":"1760 Batz Brooks","time":"2018-07-14T13:32:04.622Z","enrolled":28489,"book":"http://gust.info","course_url":"http://casimir.biz"},{"course_title":"O'Conner and Sons","course_number":65016,"instructor":"Dandre Donnelly","location":"1204 Hermann Grove","time":"2018-07-14T12:43:48.615Z","enrolled":72669,"book":"https://edgar.net","course_url":"https://jorge.net"},{"course_title":"Heller and Sons","course_number":91386,"instructor":"Mercedes Block MD","location":"7914 Jonatan Lock","time":"2018-07-14T16:47:12.701Z","enrolled":78297,"book":"https://cameron.com","course_url":"https://nola.biz"},{"course_title":"Wisozk, Harris and Hilll","course_number":74204,"instructor":"Mrs. Wilford Macejkovic","location":"496 Blick Row","time":"2018-07-14T19:35:39.122Z","enrolled":36786,"book":"https://allie.biz","course_url":"http://peggie.org"},{"course_title":"Effertz LLC","course_number":38031,"instructor":"Nathaniel Lang","location":"102 Friesen Mount","time":"2018-07-14T12:34:58.877Z","enrolled":55065,"book":"https://alexane.net","course_url":"http://bernard.name"},{"course_title":"Harber - Douglas","course_number":91964,"instructor":"Milton Dach IV","location":"3626 Allie Run","time":"2018-07-14T03:08:12.589Z","enrolled":1737,"book":"http://fae.biz","course_url":"http://michale.biz"},{"course_title":"Christiansen and Sons","course_number":63744,"instructor":"Leta Tromp","location":"571 Upton Bridge","time":"2018-07-14T19:58:30.992Z","enrolled":34266,"book":"http://juston.org","course_url":"http://sheldon.com"},{"course_title":"Ratke LLC","course_number":95978,"instructor":"Jedidiah Mosciski DVM","location":"759 Ima Canyon","time":"2018-07-14T12:02:14.501Z","enrolled":12380,"book":"http://ezekiel.biz","course_url":"https://leopoldo.com"},{"course_title":"Connelly - Kuphal","course_number":55169,"instructor":"Annamarie Jacobi","location":"8188 Huel View","time":"2018-07-14T03:20:44.146Z","enrolled":91717,"book":"https://lucius.com","course_url":"https://eleanora.name"},{"course_title":"Thiel, Jast and Crist","course_number":29725,"instructor":"Ryley Halvorson","location":"8034 Little Coves","time":"2018-07-14T09:24:16.298Z","enrolled":38483,"book":"https://dusty.name","course_url":"http://patrick.name"},{"course_title":"Green Group","course_number":80633,"instructor":"Callie Lueilwitz","location":"31027 Reynold Garden","time":"2018-07-14T15:05:00.287Z","enrolled":41879,"book":"http://lula.name","course_url":"https://virgie.biz"},{"course_title":"Vandervort, Swaniawski and Medhurst","course_number":49412,"instructor":"Carmelo Hammes","location":"0511 Kuhlman Harbor","time":"2018-07-14T21:18:57.144Z","enrolled":5171,"book":"http://ayden.info","course_url":"http://alta.com"},{"course_title":"Hagenes - Welch","course_number":34792,"instructor":"Tristian Koelpin","location":"0964 Bruen Prairie","time":"2018-07-14T19:45:41.655Z","enrolled":6189,"book":"http://alexzander.com","course_url":"http://cody.net"},{"course_title":"Dibbert, O'Reilly and Hammes","course_number":98629,"instructor":"Dagmar Heaney","location":"7208 Ernser Lakes","time":"2018-07-14T01:23:29.449Z","enrolled":39320,"book":"http://sonya.name","course_url":"https://ahmed.biz"},{"course_title":"Raynor, Wilderman and Wyman","course_number":37665,"instructor":"Carmela Connelly","location":"8057 Bashirian Isle","time":"2018-07-14T07:55:25.877Z","enrolled":95796,"book":"https://mia.name","course_url":"http://harold.name"},{"course_title":"Tremblay - Johnson","course_number":81559,"instructor":"Caleb Kozey","location":"23248 Elian Land","time":"2018-07-14T07:17:44.717Z","enrolled":80950,"book":"http://leatha.info","course_url":"https://sammy.info"},{"course_title":"Bosco Group","course_number":24346,"instructor":"Wilson Davis","location":"784 Boyle Meadow","time":"2018-07-14T18:53:11.662Z","enrolled":40432,"book":"http://zelda.name","course_url":"http://lucie.biz"},{"course_title":"Lehner, Bahringer and Ortiz","course_number":22767,"instructor":"Meghan Mueller","location":"974 Goldner Gardens","time":"2018-07-14T03:19:48.475Z","enrolled":82279,"book":"http://velva.org","course_url":"https://lucious.name"},{"course_title":"Muller and Sons","course_number":66223,"instructor":"Connor McLaughlin","location":"08532 Smitham Center","time":"2018-07-14T16:39:57.299Z","enrolled":61737,"book":"https://margarett.info","course_url":"https://trystan.biz"},{"course_title":"Heaney, Schuppe and Heller","course_number":78251,"instructor":"Soledad Zemlak","location":"05150 Harvey Trace","time":"2018-07-14T20:46:50.042Z","enrolled":77368,"book":"http://ayla.info","course_url":"https://kolby.info"},{"course_title":"Blanda Inc","course_number":59334,"instructor":"Zackary Von","location":"1492 Legros Street","time":"2018-07-14T01:17:51.600Z","enrolled":86295,"book":"https://wendy.name","course_url":"https://arden.info"},{"course_title":"Gibson Inc","course_number":52145,"instructor":"Javon Schuster DDS","location":"064 Tressie Keys","time":"2018-07-14T16:56:00.607Z","enrolled":88231,"book":"https://jovan.com","course_url":"https://sharon.com"},{"course_title":"Conroy, Mitchell and Schoen","course_number":19995,"instructor":"Berniece Kutch","location":"778 Lebsack Place","time":"2018-07-14T15:57:11.775Z","enrolled":93832,"book":"http://willow.com","course_url":"http://mariano.biz"},{"course_title":"Ziemann Inc","course_number":70612,"instructor":"Dr. Lilly Reichert","location":"70501 Parker Ports","time":"2018-07-14T07:45:20.649Z","enrolled":14834,"book":"https://marcus.biz","course_url":"http://trevion.name"},{"course_title":"Cronin - Pfannerstill","course_number":45915,"instructor":"Mr. Angelo Littel","location":"049 Runte Glen","time":"2018-07-13T23:39:19.636Z","enrolled":13706,"book":"http://ashlynn.com","course_url":"http://brayan.net"},{"course_title":"Stark LLC","course_number":8591,"instructor":"Zakary Sipes","location":"7250 Diego Way","time":"2018-07-14T00:26:07.490Z","enrolled":76655,"book":"https://jonas.net","course_url":"https://domenic.com"},{"course_title":"O'Hara - Kutch","course_number":41144,"instructor":"Unique Braun","location":"41656 Hoppe Viaduct","time":"2018-07-14T13:17:27.014Z","enrolled":28425,"book":"http://austen.name","course_url":"https://naomi.info"},{"course_title":"Kshlerin, Lesch and O'Kon","course_number":82795,"instructor":"Giovanny Howell","location":"37225 Maida Lakes","time":"2018-07-14T17:11:50.337Z","enrolled":64282,"book":"http://christopher.net","course_url":"https://dessie.org"},{"course_title":"Christiansen, Carter and Hahn","course_number":65770,"instructor":"Frieda Sporer","location":"51474 Jaskolski Causeway","time":"2018-07-14T00:20:03.804Z","enrolled":47032,"book":"http://grover.biz","course_url":"http://opal.info"},{"course_title":"Gulgowski, Little and Nitzsche","course_number":28456,"instructor":"Federico Rogahn","location":"093 Kemmer Mountains","time":"2018-07-14T13:26:11.570Z","enrolled":31116,"book":"http://adrien.info","course_url":"http://melyssa.com"},{"course_title":"Auer, Farrell and Frami","course_number":67243,"instructor":"Chris Krajcik","location":"697 Marjolaine Viaduct","time":"2018-07-14T09:31:53.061Z","enrolled":56333,"book":"http://enid.biz","course_url":"https://liana.com"},{"course_title":"Feeney, Feeney and Predovic","course_number":83964,"instructor":"Mrs. Trace Pouros","location":"21749 Kaycee Manors","time":"2018-07-14T11:21:54.010Z","enrolled":1873,"book":"http://kale.com","course_url":"http://clemens.name"},{"course_title":"Schuppe, Brekke and McCullough","course_number":98761,"instructor":"Lester Lind","location":"23271 Kertzmann Ramp","time":"2018-07-14T03:49:04.497Z","enrolled":86292,"book":"https://saige.name","course_url":"https://edd.org"},{"course_title":"Bogisich Group","course_number":38456,"instructor":"Forest Schimmel","location":"6242 Donnell Extension","time":"2018-07-14T06:13:40.261Z","enrolled":29134,"book":"http://derrick.name","course_url":"https://fatima.name"},{"course_title":"Connelly LLC","course_number":72628,"instructor":"Amy Satterfield DVM","location":"13174 Kunze Union","time":"2018-07-14T06:50:45.893Z","enrolled":9727,"book":"http://dangelo.net","course_url":"http://elmore.name"},{"course_title":"Lehner - Konopelski","course_number":90689,"instructor":"Zackery Marquardt","location":"532 Rick Alley","time":"2018-07-14T11:44:39.508Z","enrolled":98188,"book":"http://emile.name","course_url":"https://shayne.org"},{"course_title":"Labadie Inc","course_number":30269,"instructor":"Krista Renner","location":"154 Wyman Corners","time":"2018-07-14T07:57:48.011Z","enrolled":82986,"book":"http://matilda.biz","course_url":"http://princess.info"},{"course_title":"Hand and Sons","course_number":6817,"instructor":"Elias Hettinger","location":"16222 Graham Mountain","time":"2018-07-14T21:48:02.069Z","enrolled":54207,"book":"https://agustina.org","course_url":"https://camren.name"},{"course_title":"Spinka - D'Amore","course_number":48520,"instructor":"Eino Waelchi MD","location":"47509 Wisozk Groves","time":"2018-07-14T09:29:10.702Z","enrolled":50656,"book":"http://casper.com","course_url":"https://zane.info"},{"course_title":"Toy, Leannon and Spencer","course_number":62513,"instructor":"Alfredo Toy V","location":"4325 Bartholome Estates","time":"2018-07-14T05:43:22.772Z","enrolled":19145,"book":"https://garry.com","course_url":"https://friedrich.com"},{"course_title":"Renner LLC","course_number":52549,"instructor":"Cicero Orn","location":"5544 Kutch Fields","time":"2018-07-14T11:05:47.361Z","enrolled":96761,"book":"https://lucie.name","course_url":"https://jaiden.biz"},{"course_title":"Denesik - Rau","course_number":70491,"instructor":"Mrs. Roger Hoeger","location":"449 Russel Port","time":"2018-07-14T14:31:56.756Z","enrolled":93401,"book":"http://hellen.info","course_url":"http://lane.com"},{"course_title":"Rosenbaum, Will and Trantow","course_number":6705,"instructor":"Reece Cassin","location":"460 Cole Squares","time":"2018-07-14T17:25:15.964Z","enrolled":86314,"book":"https://whitney.org","course_url":"https://matilda.com"},{"course_title":"Howe, D'Amore and Collier","course_number":43052,"instructor":"Johnathon Hintz","location":"46200 Swift Lodge","time":"2018-07-14T10:01:59.531Z","enrolled":5281,"book":"http://nelle.info","course_url":"https://andreane.info"},{"course_title":"Greenfelder LLC","course_number":72820,"instructor":"Emmitt Harris","location":"8379 Yasmeen Springs","time":"2018-07-14T04:20:44.083Z","enrolled":46343,"book":"http://augustine.org","course_url":"https://letha.net"},{"course_title":"Gorczany Inc","course_number":26736,"instructor":"Mrs. Jaylan Graham","location":"2351 Coty Roads","time":"2018-07-14T21:57:38.644Z","enrolled":42862,"book":"http://ernestina.com","course_url":"https://alyson.name"},{"course_title":"Mohr, Moore and Gleason","course_number":16883,"instructor":"Shaina Bernhard","location":"957 Rashawn Burg","time":"2018-07-14T21:20:00.212Z","enrolled":45634,"book":"http://kyla.name","course_url":"http://yvonne.name"},{"course_title":"Hauck, Rutherford and Torp","course_number":51825,"instructor":"Ethelyn McDermott","location":"9796 Turner Viaduct","time":"2018-07-14T08:13:33.679Z","enrolled":13217,"book":"https://mike.biz","course_url":"https://stephanie.info"},{"course_title":"Ledner - Boyer","course_number":88062,"instructor":"Mr. Odie Roberts","location":"376 Mohr Ports","time":"2018-07-14T02:04:33.549Z","enrolled":39600,"book":"https://chyna.net","course_url":"https://brennon.com"},{"course_title":"Walter, Watsica and Torphy","course_number":21912,"instructor":"Donavon McClure","location":"526 Cara Forks","time":"2018-07-14T15:27:17.411Z","enrolled":4049,"book":"http://stefan.biz","course_url":"https://brycen.name"},{"course_title":"Aufderhar LLC","course_number":11334,"instructor":"Linnie Hessel","location":"34216 Rosenbaum Port","time":"2018-07-14T15:53:48.483Z","enrolled":35321,"book":"http://providenci.info","course_url":"http://tia.info"},{"course_title":"Bechtelar, Schmeler and Corkery","course_number":45284,"instructor":"Ahmed Macejkovic","location":"00447 Upton Lakes","time":"2018-07-14T15:54:29.603Z","enrolled":58952,"book":"https://josh.biz","course_url":"https://arch.biz"},{"course_title":"Effertz - Langworth","course_number":61321,"instructor":"Manuel Wilderman","location":"8660 Ashlynn Plain","time":"2018-07-14T18:48:04.305Z","enrolled":7704,"book":"https://cade.info","course_url":"http://brennan.info"},{"course_title":"Eichmann, Hilll and Vandervort","course_number":87355,"instructor":"Frankie Schaden","location":"3843 Waelchi Canyon","time":"2018-07-14T04:47:20.053Z","enrolled":12233,"book":"http://scot.net","course_url":"https://viola.net"},{"course_title":"Heathcote, Lehner and Blanda","course_number":63814,"instructor":"Romaine Moore Jr.","location":"35014 Effertz Turnpike","time":"2018-07-14T15:38:54.969Z","enrolled":5757,"book":"http://michele.info","course_url":"https://candido.biz"},{"course_title":"Nicolas - Ruecker","course_number":38332,"instructor":"Keven Rath","location":"38864 Kris Plain","time":"2018-07-14T07:41:10.801Z","enrolled":32076,"book":"https://justina.org","course_url":"http://izaiah.info"},{"course_title":"Spinka, Kling and Jones","course_number":96250,"instructor":"Leann Stehr","location":"0136 Leanna Fork","time":"2018-07-14T11:27:07.596Z","enrolled":39500,"book":"https://abel.biz","course_url":"https://tianna.name"},{"course_title":"Cartwright Group","course_number":29403,"instructor":"Adriana Cummerata","location":"1121 Graham Springs","time":"2018-07-14T04:07:08.519Z","enrolled":97204,"book":"https://tamara.info","course_url":"https://nina.com"},{"course_title":"Wunsch Inc","course_number":84308,"instructor":"Hermina Baumbach","location":"4416 Toy Fork","time":"2018-07-14T22:52:17.817Z","enrolled":61954,"book":"http://edna.com","course_url":"https://ron.info"},{"course_title":"Keeling, Stoltenberg and Kuhlman","course_number":46394,"instructor":"Sofia Kris","location":"900 Will View","time":"2018-07-14T22:58:18.528Z","enrolled":56927,"book":"http://ethan.biz","course_url":"http://marcos.org"},{"course_title":"Fisher Inc","course_number":378,"instructor":"Bertha Hyatt","location":"47740 Marks Mill","time":"2018-07-14T05:18:59.337Z","enrolled":23034,"book":"https://fabian.com","course_url":"http://jayce.com"},{"course_title":"Schuster Group","course_number":87959,"instructor":"Madison Jerde","location":"243 Evan Common","time":"2018-07-14T05:21:44.346Z","enrolled":81541,"book":"https://juwan.com","course_url":"http://anibal.com"},{"course_title":"Lang - Ullrich","course_number":76731,"instructor":"Everett Hintz","location":"5198 Rice Knolls","time":"2018-07-14T22:40:15.837Z","enrolled":93900,"book":"http://elyssa.com","course_url":"http://kevin.com"},{"course_title":"Schinner - Raynor","course_number":40929,"instructor":"Maritza Fay","location":"3386 Joanie Mountain","time":"2018-07-14T13:15:07.165Z","enrolled":96544,"book":"http://chad.net","course_url":"http://serena.biz"},{"course_title":"Welch LLC","course_number":32667,"instructor":"Dr. Hortense DuBuque","location":"134 Kovacek Union","time":"2018-07-14T16:54:30.586Z","enrolled":97316,"book":"http://rodger.com","course_url":"http://myrtice.biz"},{"course_title":"Satterfield, Kshlerin and Mann","course_number":61324,"instructor":"Madisyn Hills MD","location":"272 Danielle Vista","time":"2018-07-14T19:52:03.089Z","enrolled":18614,"book":"http://virginie.org","course_url":"http://ella.net"},{"course_title":"Bauch - Nicolas","course_number":72684,"instructor":"Vena Streich","location":"47784 Coty Drive","time":"2018-07-14T06:01:03.346Z","enrolled":19683,"book":"http://lonie.name","course_url":"https://adelia.name"},{"course_title":"Walker - Daugherty","course_number":33855,"instructor":"Myah Daniel V","location":"88751 Hayden Ways","time":"2018-07-14T13:59:07.093Z","enrolled":49501,"book":"http://madisen.info","course_url":"https://diego.info"},{"course_title":"Wuckert, Bauch and Pagac","course_number":81711,"instructor":"Clifton Spinka","location":"98314 Sipes Mill","time":"2018-07-14T00:55:45.296Z","enrolled":6132,"book":"http://edgardo.net","course_url":"https://leonie.biz"},{"course_title":"Russel, Rippin and Ledner","course_number":63892,"instructor":"Lillie Lebsack","location":"1664 Schaden Canyon","time":"2018-07-14T07:55:51.193Z","enrolled":4482,"book":"http://vanessa.org","course_url":"https://nannie.name"},{"course_title":"Bernier, Tremblay and Rath","course_number":75001,"instructor":"Ima Abshire","location":"4382 Graham Valley","time":"2018-07-14T06:43:34.440Z","enrolled":33212,"book":"https://santiago.biz","course_url":"http://ceasar.name"},{"course_title":"Prosacco, Muller and Orn","course_number":99124,"instructor":"Rudolph Schuppe","location":"8778 Nikolaus Valley","time":"2018-07-14T01:16:36.805Z","enrolled":93861,"book":"http://barney.net","course_url":"https://sanford.com"},{"course_title":"Strosin - Roob","course_number":76290,"instructor":"Corine Harber","location":"84943 Mosciski Lane","time":"2018-07-14T01:43:50.378Z","enrolled":35428,"book":"http://karen.info","course_url":"https://ole.com"},{"course_title":"Dickinson - Jerde","course_number":34512,"instructor":"Mrs. Jody Beier","location":"744 Kassulke Parks","time":"2018-07-14T18:22:38.273Z","enrolled":33311,"book":"http://susie.biz","course_url":"https://conor.com"},{"course_title":"Emard and Sons","course_number":2690,"instructor":"Anissa Schimmel PhD","location":"0823 Conn Track","time":"2018-07-14T02:53:10.644Z","enrolled":50508,"book":"https://richmond.com","course_url":"https://delphine.name"},{"course_title":"Ruecker, Zulauf and Farrell","course_number":19593,"instructor":"Leland Romaguera III","location":"8851 Giovanny Village","time":"2018-07-14T05:12:28.127Z","enrolled":15313,"book":"https://phoebe.net","course_url":"http://lowell.org"},{"course_title":"Ullrich - Dickinson","course_number":95751,"instructor":"Diana Mosciski I","location":"18421 Timmothy Roads","time":"2018-07-13T23:45:34.412Z","enrolled":34749,"book":"http://delphine.org","course_url":"http://gerard.com"},{"course_title":"Zboncak, Schoen and Lind","course_number":57284,"instructor":"Lucas Thiel III","location":"816 Waelchi Spurs","time":"2018-07-14T14:09:18.370Z","enrolled":70071,"book":"http://wanda.name","course_url":"https://carley.com"},{"course_title":"Dach, Torp and Paucek","course_number":20903,"instructor":"Tyrell Hartmann","location":"1918 Wiegand Cove","time":"2018-07-14T05:14:15.232Z","enrolled":81940,"book":"https://louisa.org","course_url":"http://martin.org"},{"course_title":"Dooley, Wyman and Mertz","course_number":13105,"instructor":"Troy Feest","location":"6548 Torrey Ridges","time":"2018-07-14T01:17:56.422Z","enrolled":7098,"book":"http://nikko.info","course_url":"http://ima.info"},{"course_title":"Dibbert - Vandervort","course_number":45905,"instructor":"Kennith Watsica","location":"1243 Marjorie Trafficway","time":"2018-07-14T06:12:15.695Z","enrolled":20333,"book":"https://antonio.biz","course_url":"https://emilie.net"},{"course_title":"Pfeffer LLC","course_number":27982,"instructor":"Felton Hills","location":"899 Delores Key","time":"2018-07-14T07:54:42.357Z","enrolled":85621,"book":"https://bert.org","course_url":"https://nels.biz"},{"course_title":"Nikolaus and Sons","course_number":21268,"instructor":"Carmen Schoen","location":"7613 Columbus Drive","time":"2018-07-14T21:22:46.770Z","enrolled":16470,"book":"https://morgan.net","course_url":"http://ericka.biz"},{"course_title":"Bauch, Bergnaum and Waters","course_number":18355,"instructor":"Elfrieda Ward V","location":"9776 Breitenberg Key","time":"2018-07-14T07:25:58.644Z","enrolled":36280,"book":"http://malvina.org","course_url":"http://camylle.org"},{"course_title":"Kling - Auer","course_number":30908,"instructor":"Lucas Johnson","location":"283 Vergie Shore","time":"2018-07-14T22:54:35.706Z","enrolled":33256,"book":"http://lauryn.biz","course_url":"https://general.info"},{"course_title":"Powlowski, Pollich and Luettgen","course_number":27577,"instructor":"Elenor Hartmann","location":"001 Vesta Flat","time":"2018-07-14T23:08:19.068Z","enrolled":53520,"book":"http://korey.org","course_url":"https://sheridan.org"},{"course_title":"Pacocha - Aufderhar","course_number":30319,"instructor":"Rafael Krajcik","location":"8190 Ethelyn Spurs","time":"2018-07-14T17:55:42.245Z","enrolled":39023,"book":"https://katherine.org","course_url":"http://vicenta.net"},{"course_title":"Kunze LLC","course_number":12601,"instructor":"Mr. Wilber Hettinger","location":"074 Roy Station","time":"2018-07-14T19:06:46.876Z","enrolled":78421,"book":"http://daphnee.biz","course_url":"https://dawn.net"},{"course_title":"Jacobson Inc","course_number":75176,"instructor":"Ike Ondricka","location":"65819 Lula Corner","time":"2018-07-14T11:17:06.588Z","enrolled":27017,"book":"https://alanna.org","course_url":"https://jaylin.biz"},{"course_title":"Heaney Group","course_number":45066,"instructor":"Kailey Reichert","location":"572 Tavares Track","time":"2018-07-14T17:08:30.761Z","enrolled":43017,"book":"https://jedediah.info","course_url":"https://scotty.net"},{"course_title":"Hackett - Wuckert","course_number":83340,"instructor":"Delta Lowe","location":"0659 Nitzsche Underpass","time":"2018-07-13T23:47:33.926Z","enrolled":84679,"book":"http://alvena.biz","course_url":"http://cale.biz"},{"course_title":"Nitzsche, Koepp and Romaguera","course_number":37161,"instructor":"Marta Torp","location":"75159 Stoltenberg Fords","time":"2018-07-14T04:11:37.231Z","enrolled":43226,"book":"http://arden.info","course_url":"http://autumn.info"},{"course_title":"Walker - Lueilwitz","course_number":97887,"instructor":"Max McGlynn","location":"9976 Gibson Junctions","time":"2018-07-14T11:20:48.165Z","enrolled":94111,"book":"https://abraham.org","course_url":"https://jena.org"},{"course_title":"Aufderhar - Schmitt","course_number":52638,"instructor":"Cordelia Schinner","location":"845 Arianna Mall","time":"2018-07-14T21:36:22.022Z","enrolled":61411,"book":"http://everette.net","course_url":"https://ozella.com"},{"course_title":"Feil, Harvey and Lynch","course_number":83784,"instructor":"Nayeli Moore","location":"9508 Otto Way","time":"2018-07-14T16:56:29.401Z","enrolled":60596,"book":"http://obie.net","course_url":"https://gardner.info"},{"course_title":"Bechtelar Inc","course_number":98868,"instructor":"Mrs. Susanna Grant","location":"8379 Jones Junctions","time":"2018-07-14T19:03:09.561Z","enrolled":90987,"book":"https://kobe.name","course_url":"https://khalid.name"},{"course_title":"Lemke - Leuschke","course_number":4785,"instructor":"Jose Sipes","location":"39972 Webster Mission","time":"2018-07-14T10:33:00.085Z","enrolled":70223,"book":"https://freda.net","course_url":"https://patience.name"},{"course_title":"Emmerich Inc","course_number":92050,"instructor":"Maeve Olson Sr.","location":"41804 Windler Lights","time":"2018-07-14T05:54:05.061Z","enrolled":14998,"book":"http://elouise.org","course_url":"http://gust.biz"},{"course_title":"Cormier - Schamberger","course_number":11848,"instructor":"Lionel Denesik","location":"2419 Aubrey Crossing","time":"2018-07-14T17:51:53.066Z","enrolled":30637,"book":"http://remington.org","course_url":"http://dovie.biz"},{"course_title":"Mohr and Sons","course_number":97356,"instructor":"Jamarcus Sawayn IV","location":"78951 Grayson Hills","time":"2018-07-14T01:50:27.469Z","enrolled":83540,"book":"http://ramon.org","course_url":"https://austyn.org"},{"course_title":"Crona, Hudson and O'Hara","course_number":73243,"instructor":"Buster Mante","location":"71184 Hahn Cliff","time":"2018-07-14T08:12:14.306Z","enrolled":3939,"book":"http://zula.name","course_url":"https://walker.com"},{"course_title":"Fadel, Orn and Schroeder","course_number":76629,"instructor":"Clark DuBuque I","location":"14253 Ebony Parkway","time":"2018-07-14T09:35:24.913Z","enrolled":1186,"book":"http://rey.name","course_url":"http://marta.org"},{"course_title":"Kozey, Lang and Schimmel","course_number":56153,"instructor":"Nichole Koelpin","location":"198 Camila Flats","time":"2018-07-14T06:47:41.356Z","enrolled":59092,"book":"http://fidel.com","course_url":"http://presley.com"},{"course_title":"Jenkins - Cartwright","course_number":93611,"instructor":"Mayra Runolfsdottir","location":"83092 Dach Burgs","time":"2018-07-14T14:48:53.117Z","enrolled":93458,"book":"http://dario.org","course_url":"http://kale.org"},{"course_title":"Stamm, Parisian and Rodriguez","course_number":8563,"instructor":"Jayda Quitzon","location":"3911 Dicki Ports","time":"2018-07-14T16:45:06.243Z","enrolled":97196,"book":"http://orie.com","course_url":"https://leanne.info"},{"course_title":"Mueller - Little","course_number":68059,"instructor":"Margarita Hackett","location":"4525 Bernhard Meadows","time":"2018-07-14T21:00:46.651Z","enrolled":74289,"book":"http://tomasa.org","course_url":"https://theresia.info"},{"course_title":"Cole Inc","course_number":77929,"instructor":"Ms. Cecil Quigley","location":"867 Gorczany Well","time":"2018-07-14T00:39:20.618Z","enrolled":20331,"book":"https://koby.biz","course_url":"https://laurianne.net"},{"course_title":"Wintheiser - Klocko","course_number":27797,"instructor":"Barrett Pollich","location":"02238 Oliver Dam","time":"2018-07-14T06:25:56.249Z","enrolled":59207,"book":"https://loyce.name","course_url":"https://naomie.info"},{"course_title":"McGlynn Group","course_number":51691,"instructor":"Mr. Carlo McGlynn","location":"409 Tromp Wall","time":"2018-07-14T08:25:47.632Z","enrolled":61168,"book":"https://evan.biz","course_url":"http://jarrett.com"},{"course_title":"Gutmann - Aufderhar","course_number":21001,"instructor":"Eileen Moen","location":"0024 Keyshawn River","time":"2018-07-14T05:19:09.829Z","enrolled":121,"book":"http://gloria.info","course_url":"https://alfreda.net"},{"course_title":"Brekke, Koss and Beier","course_number":37368,"instructor":"Kelly Rau","location":"135 Arvilla Plains","time":"2018-07-14T11:30:04.939Z","enrolled":15914,"book":"http://mackenzie.com","course_url":"https://burdette.org"},{"course_title":"Pfannerstill - Nicolas","course_number":95324,"instructor":"Kirk Koss","location":"13654 Kemmer Coves","time":"2018-07-14T08:54:10.373Z","enrolled":67449,"book":"https://max.com","course_url":"http://olga.org"},{"course_title":"Mann Inc","course_number":59441,"instructor":"Gregg Wilkinson","location":"46569 Deshawn Views","time":"2018-07-14T02:05:18.104Z","enrolled":59762,"book":"http://albert.org","course_url":"https://lexi.com"},{"course_title":"Weissnat Inc","course_number":60861,"instructor":"Miss Marquis Flatley","location":"1014 Meggie Rapid","time":"2018-07-14T11:51:08.963Z","enrolled":9753,"book":"https://jared.biz","course_url":"http://dee.org"},{"course_title":"Hackett, Kuphal and Schmeler","course_number":65115,"instructor":"Eda Nicolas","location":"7941 Auer Square","time":"2018-07-14T18:49:34.560Z","enrolled":57450,"book":"http://fae.biz","course_url":"https://claire.net"},{"course_title":"Kutch, O'Keefe and Schmidt","course_number":57875,"instructor":"Verna Kunze","location":"9599 Legros Pass","time":"2018-07-14T10:19:03.660Z","enrolled":64779,"book":"https://bethany.biz","course_url":"http://colt.biz"},{"course_title":"Halvorson Group","course_number":47389,"instructor":"Monserrat Gleichner Jr.","location":"843 Lavina Trafficway","time":"2018-07-14T01:39:21.005Z","enrolled":5404,"book":"https://joany.org","course_url":"http://anais.com"},{"course_title":"Koss Group","course_number":46540,"instructor":"Shanna Gislason","location":"9968 Mosciski Camp","time":"2018-07-14T17:47:20.336Z","enrolled":70087,"book":"http://zachariah.name","course_url":"https://chad.org"},{"course_title":"Walter - Jerde","course_number":45502,"instructor":"Franco Denesik","location":"73618 Gulgowski Forks","time":"2018-07-14T22:26:47.661Z","enrolled":92975,"book":"https://sabrina.com","course_url":"http://maryam.name"},{"course_title":"Windler - Schultz","course_number":51972,"instructor":"Herman Oberbrunner","location":"35623 Wanda Skyway","time":"2018-07-14T05:29:31.872Z","enrolled":54010,"book":"https://morris.info","course_url":"http://dina.org"},{"course_title":"Ondricka Group","course_number":82481,"instructor":"Amparo Kris","location":"24782 Cormier Pike","time":"2018-07-14T18:42:40.373Z","enrolled":87888,"book":"https://cathryn.com","course_url":"http://morton.net"},{"course_title":"Rolfson - Volkman","course_number":87668,"instructor":"Minerva Skiles","location":"63447 Torp Turnpike","time":"2018-07-14T12:18:38.020Z","enrolled":39918,"book":"http://mozelle.biz","course_url":"https://deon.info"},{"course_title":"Fisher - Welch","course_number":52530,"instructor":"Rico Haag","location":"5894 Kamron Expressway","time":"2018-07-14T10:39:08.317Z","enrolled":56614,"book":"http://palma.info","course_url":"http://hershel.info"},{"course_title":"Schaden - Barton","course_number":59443,"instructor":"Marcelle Senger","location":"039 Block Fort","time":"2018-07-14T15:39:13.208Z","enrolled":42210,"book":"http://corene.name","course_url":"http://ashton.com"},{"course_title":"Lemke - Kuphal","course_number":73248,"instructor":"Linnie Lynch","location":"5199 Sanford Lodge","time":"2018-07-14T12:37:16.888Z","enrolled":20809,"book":"https://marion.name","course_url":"https://heidi.org"},{"course_title":"Marvin, Ortiz and Hoppe","course_number":78472,"instructor":"Mrs. Leif Schmidt","location":"328 Buckridge Mill","time":"2018-07-14T16:05:05.651Z","enrolled":55983,"book":"https://elisa.org","course_url":"https://gwen.info"},{"course_title":"Wilderman Inc","course_number":51720,"instructor":"Mr. Theodore Herman","location":"03087 Kara Underpass","time":"2018-07-14T20:11:06.786Z","enrolled":17424,"book":"https://rebeca.net","course_url":"https://aglae.net"},{"course_title":"Steuber - Kulas","course_number":25670,"instructor":"Lew O'Connell","location":"78236 Keeley Estates","time":"2018-07-14T09:38:07.767Z","enrolled":17936,"book":"http://haylee.org","course_url":"https://marcelino.info"},{"course_title":"Marquardt LLC","course_number":34875,"instructor":"Francisca Sporer","location":"6683 Arlo Vista","time":"2018-07-14T11:27:19.554Z","enrolled":33190,"book":"http://reilly.com","course_url":"http://phoebe.name"},{"course_title":"Murazik, Cartwright and Romaguera","course_number":90513,"instructor":"Nadia Reynolds","location":"4214 Schultz Highway","time":"2018-07-14T17:58:19.164Z","enrolled":93858,"book":"http://percival.info","course_url":"https://zelda.biz"},{"course_title":"Renner, Doyle and Schaden","course_number":726,"instructor":"Jamel Green","location":"59984 Durgan Ramp","time":"2018-07-14T21:38:11.269Z","enrolled":42092,"book":"https://arthur.info","course_url":"http://terrance.name"},{"course_title":"Braun LLC","course_number":80718,"instructor":"Lucious Hermiston","location":"546 Valentine Course","time":"2018-07-14T11:33:27.267Z","enrolled":52519,"book":"http://reta.org","course_url":"http://savannah.org"},{"course_title":"O'Kon - Kertzmann","course_number":66139,"instructor":"Yasmine Mayer IV","location":"979 Block Ports","time":"2018-07-14T08:09:40.239Z","enrolled":83476,"book":"https://danyka.name","course_url":"https://kaylee.org"},{"course_title":"Quitzon and Sons","course_number":19496,"instructor":"Yasmeen Vandervort","location":"3311 Keara Freeway","time":"2018-07-14T16:31:07.576Z","enrolled":84839,"book":"http://jairo.net","course_url":"https://aracely.net"},{"course_title":"Stanton - Powlowski","course_number":39819,"instructor":"Shaylee Mayert","location":"874 Eichmann Port","time":"2018-07-14T08:50:56.603Z","enrolled":54515,"book":"http://milford.org","course_url":"http://jarrell.net"},{"course_title":"Bartell Inc","course_number":18897,"instructor":"Oscar Grimes","location":"358 Quitzon Avenue","time":"2018-07-14T22:20:54.908Z","enrolled":34330,"book":"https://stephan.biz","course_url":"https://effie.org"},{"course_title":"Collins, Lakin and Balistreri","course_number":3696,"instructor":"Earnestine Kub","location":"51548 Hudson Curve","time":"2018-07-14T08:39:29.684Z","enrolled":65252,"book":"http://bella.biz","course_url":"https://bret.org"},{"course_title":"Funk - Sanford","course_number":56546,"instructor":"Elsa Little","location":"612 Noble Stream","time":"2018-07-14T14:17:03.172Z","enrolled":11561,"book":"https://jade.org","course_url":"http://terrell.org"},{"course_title":"Jast and Sons","course_number":66634,"instructor":"Carissa Bogan PhD","location":"8662 Andrew Shoal","time":"2018-07-14T07:29:26.711Z","enrolled":5676,"book":"https://glenda.name","course_url":"https://vesta.com"},{"course_title":"Pfannerstill and Sons","course_number":37442,"instructor":"Keaton Kuhic","location":"09440 Brennan Roads","time":"2018-07-14T17:07:09.197Z","enrolled":92690,"book":"https://althea.com","course_url":"http://kailey.info"},{"course_title":"Simonis - Boyer","course_number":13571,"instructor":"Earnestine Mraz","location":"25967 Purdy Pine","time":"2018-07-14T20:42:01.608Z","enrolled":19857,"book":"http://narciso.net","course_url":"http://imogene.org"},{"course_title":"Leuschke and Sons","course_number":108,"instructor":"Ariel Walker","location":"60427 Welch Avenue","time":"2018-07-14T15:10:17.751Z","enrolled":77240,"book":"http://bria.com","course_url":"http://annamae.com"},{"course_title":"Kirlin - Raynor","course_number":27621,"instructor":"Virginia Zieme","location":"4077 Irwin Extension","time":"2018-07-14T18:51:26.963Z","enrolled":25302,"book":"http://ona.name","course_url":"http://olen.name"},{"course_title":"Cronin, Auer and Balistreri","course_number":99678,"instructor":"Blaise Corkery","location":"25902 Ritchie Glens","time":"2018-07-14T19:53:31.583Z","enrolled":33869,"book":"https://edwardo.biz","course_url":"http://margaret.info"},{"course_title":"Borer - Pacocha","course_number":67267,"instructor":"Caleigh Grady","location":"37002 Bashirian Ford","time":"2018-07-14T18:29:57.120Z","enrolled":40461,"book":"http://dillan.net","course_url":"https://garett.org"},{"course_title":"Feest and Sons","course_number":58564,"instructor":"Carmelo Waelchi","location":"68367 Bergnaum Plains","time":"2018-07-14T12:00:50.861Z","enrolled":22793,"book":"https://amos.name","course_url":"https://cassandra.name"},{"course_title":"Kerluke and Sons","course_number":68911,"instructor":"Mr. Desmond Streich","location":"624 Mohamed Vista","time":"2018-07-14T02:48:55.187Z","enrolled":91300,"book":"http://ewell.net","course_url":"https://delmer.com"},{"course_title":"Murazik Group","course_number":53580,"instructor":"Mitchell Pfeffer","location":"4905 Vandervort Locks","time":"2018-07-14T12:19:50.123Z","enrolled":93433,"book":"https://gene.info","course_url":"https://jane.net"},{"course_title":"Brakus and Sons","course_number":17770,"instructor":"Hattie Gulgowski","location":"05057 Tillman Greens","time":"2018-07-14T12:38:32.173Z","enrolled":95488,"book":"http://erin.biz","course_url":"https://harvey.info"},{"course_title":"Lynch, Skiles and Luettgen","course_number":33313,"instructor":"Lloyd Renner MD","location":"0201 Kieran Pine","time":"2018-07-14T06:12:23.367Z","enrolled":88449,"book":"http://mackenzie.net","course_url":"https://else.info"},{"course_title":"Thompson - Reynolds","course_number":15425,"instructor":"Armand Konopelski","location":"0252 Cartwright Trail","time":"2018-07-14T15:22:47.914Z","enrolled":39672,"book":"http://gage.info","course_url":"http://oswaldo.biz"},{"course_title":"Johnson - Stehr","course_number":57763,"instructor":"Domenica Hilll","location":"874 Tamara Wall","time":"2018-07-14T07:57:18.403Z","enrolled":85123,"book":"http://ansley.biz","course_url":"http://michaela.com"},{"course_title":"Kemmer - Gerlach","course_number":49893,"instructor":"Laurence Corkery","location":"97559 Fahey Bridge","time":"2018-07-14T12:41:08.129Z","enrolled":19667,"book":"http://jovan.info","course_url":"http://marjory.info"},{"course_title":"Kreiger, Corwin and Kshlerin","course_number":51765,"instructor":"Elda O'Kon","location":"814 Domenico Place","time":"2018-07-14T19:59:25.085Z","enrolled":92557,"book":"http://maiya.biz","course_url":"https://alta.net"},{"course_title":"Mills - Lemke","course_number":90042,"instructor":"Lyric Metz","location":"68095 Considine Square","time":"2018-07-14T07:27:48.640Z","enrolled":49460,"book":"https://maddison.biz","course_url":"http://ettie.com"},{"course_title":"Satterfield LLC","course_number":77870,"instructor":"Assunta Daugherty","location":"418 Kling Passage","time":"2018-07-14T04:33:19.718Z","enrolled":44977,"book":"https://trent.info","course_url":"http://alexandrea.name"},{"course_title":"Little - Medhurst","course_number":23293,"instructor":"Frederik Lockman","location":"772 Ritchie Meadow","time":"2018-07-14T09:47:02.962Z","enrolled":16707,"book":"https://courtney.info","course_url":"https://jared.net"},{"course_title":"Windler - Crooks","course_number":33889,"instructor":"Berneice Orn","location":"14823 Hackett Glen","time":"2018-07-14T15:46:24.519Z","enrolled":86181,"book":"https://david.org","course_url":"https://constance.biz"},{"course_title":"Langosh - Kertzmann","course_number":44201,"instructor":"Arne Kuhn","location":"5157 Raynor Junction","time":"2018-07-14T04:16:00.390Z","enrolled":36217,"book":"https://abdullah.net","course_url":"https://libby.biz"},{"course_title":"Graham, Schoen and Tromp","course_number":90633,"instructor":"Walton Turcotte","location":"82365 Jenkins Valleys","time":"2018-07-14T13:54:02.598Z","enrolled":47512,"book":"http://dasia.net","course_url":"http://mariano.info"},{"course_title":"Carter - Klocko","course_number":80755,"instructor":"Keely Erdman","location":"650 Ferry Lake","time":"2018-07-14T05:09:58.961Z","enrolled":47851,"book":"https://abbie.info","course_url":"http://julien.biz"},{"course_title":"Zemlak, Rippin and Johnston","course_number":26930,"instructor":"Grover Carter","location":"358 Hammes Garden","time":"2018-07-14T16:17:44.771Z","enrolled":71677,"book":"http://antwon.org","course_url":"https://kenton.info"},{"course_title":"Beier, Flatley and Streich","course_number":77363,"instructor":"Albin Stark IV","location":"556 Reynolds Prairie","time":"2018-07-14T14:16:34.209Z","enrolled":4413,"book":"https://ellsworth.com","course_url":"http://gay.biz"},{"course_title":"Langworth - Purdy","course_number":62821,"instructor":"Elwin Rogahn","location":"983 Winona Dam","time":"2018-07-14T15:47:30.651Z","enrolled":73650,"book":"http://trycia.com","course_url":"http://jaren.name"},{"course_title":"Mueller and Sons","course_number":87209,"instructor":"Celestino Zulauf","location":"72449 Luettgen Way","time":"2018-07-14T18:23:50.576Z","enrolled":50251,"book":"http://ardith.net","course_url":"http://dominique.biz"},{"course_title":"Buckridge, Altenwerth and Gusikowski","course_number":34402,"instructor":"Alejandrin Cassin DVM","location":"6205 Thompson Park","time":"2018-07-14T03:26:48.578Z","enrolled":21179,"book":"https://else.info","course_url":"http://tatum.name"},{"course_title":"Pouros, Stroman and Hegmann","course_number":26293,"instructor":"Shawna Monahan","location":"0054 Roselyn Tunnel","time":"2018-07-14T17:57:57.766Z","enrolled":11597,"book":"https://maryjane.name","course_url":"http://gisselle.net"},{"course_title":"Schiller - Frami","course_number":53877,"instructor":"Beulah Nikolaus","location":"5302 Kris Garden","time":"2018-07-14T20:24:00.991Z","enrolled":65227,"book":"https://rosalia.com","course_url":"https://guillermo.biz"},{"course_title":"Mosciski, Quigley and Grimes","course_number":57862,"instructor":"Bulah Hammes","location":"94211 Steuber Greens","time":"2018-07-14T06:34:04.540Z","enrolled":25429,"book":"https://bianka.name","course_url":"https://jewel.name"},{"course_title":"D'Amore, Hagenes and Kunde","course_number":74879,"instructor":"Lauren Larson","location":"490 Ford Springs","time":"2018-07-14T22:40:07.664Z","enrolled":63230,"book":"https://colton.com","course_url":"https://evangeline.org"},{"course_title":"Rolfson, Wolf and Schiller","course_number":3862,"instructor":"Mrs. Lucio Kautzer","location":"1940 Norbert Summit","time":"2018-07-14T00:27:55.158Z","enrolled":20840,"book":"http://carmine.com","course_url":"http://earline.net"},{"course_title":"Mante and Sons","course_number":98869,"instructor":"Kailey Windler","location":"019 Gerard Crest","time":"2018-07-14T14:57:52.636Z","enrolled":6495,"book":"https://krista.com","course_url":"http://hector.net"},{"course_title":"Goodwin, Simonis and Frami","course_number":58970,"instructor":"Rasheed Kutch","location":"7168 Schowalter Highway","time":"2018-07-14T20:53:41.642Z","enrolled":54271,"book":"https://hattie.biz","course_url":"https://rhett.name"},{"course_title":"White - Hintz","course_number":20352,"instructor":"Miss Angelita Davis","location":"283 Henri Terrace","time":"2018-07-14T13:55:46.807Z","enrolled":30083,"book":"https://alaina.com","course_url":"http://kariane.org"},{"course_title":"Weber Group","course_number":38637,"instructor":"Martin Kassulke","location":"699 Harvey Port","time":"2018-07-14T16:14:27.563Z","enrolled":19551,"book":"https://zaria.name","course_url":"http://matteo.org"},{"course_title":"Macejkovic, Nitzsche and Stanton","course_number":18985,"instructor":"Dr. Ara McDermott","location":"56793 Emmanuelle Well","time":"2018-07-14T02:50:17.340Z","enrolled":22198,"book":"https://kaleigh.net","course_url":"https://nelle.info"},{"course_title":"Beier LLC","course_number":1761,"instructor":"Name Prohaska","location":"0888 Abdullah Squares","time":"2018-07-14T19:29:53.789Z","enrolled":78136,"book":"http://bennett.biz","course_url":"https://hudson.biz"},{"course_title":"Skiles - Okuneva","course_number":48717,"instructor":"Francis Kuvalis IV","location":"841 Era Green","time":"2018-07-14T16:11:06.760Z","enrolled":45289,"book":"https://reilly.com","course_url":"http://sofia.org"},{"course_title":"Connelly - Kunze","course_number":38868,"instructor":"Esther Heaney","location":"615 Michale Extension","time":"2018-07-14T00:30:57.320Z","enrolled":31339,"book":"http://jason.net","course_url":"http://dorcas.biz"},{"course_title":"Kuvalis - Bartell","course_number":37154,"instructor":"Mariah Labadie","location":"34398 Kerluke Hills","time":"2018-07-14T08:44:43.639Z","enrolled":95631,"book":"http://addison.com","course_url":"http://greyson.org"},{"course_title":"Torphy, Gulgowski and MacGyver","course_number":2111,"instructor":"Aletha D'Amore","location":"8350 Clair Station","time":"2018-07-14T12:58:26.281Z","enrolled":52111,"book":"http://dessie.org","course_url":"https://orion.biz"},{"course_title":"Kemmer Group","course_number":3393,"instructor":"Magdalen Ferry PhD","location":"42015 Koelpin Land","time":"2018-07-14T13:08:49.505Z","enrolled":51412,"book":"http://imogene.name","course_url":"https://alexis.net"},{"course_title":"Jakubowski - Moen","course_number":99984,"instructor":"Kelly Windler","location":"17033 O'Hara Station","time":"2018-07-14T02:02:54.813Z","enrolled":74034,"book":"https://ozella.com","course_url":"https://abigayle.net"},{"course_title":"Dietrich Group","course_number":12088,"instructor":"Kiel Kohler","location":"5679 Emely Highway","time":"2018-07-14T07:01:34.580Z","enrolled":28546,"book":"http://brenna.org","course_url":"http://daphney.biz"},{"course_title":"Schamberger - Nikolaus","course_number":76137,"instructor":"Letha Ryan","location":"181 Efrain Ford","time":"2018-07-14T07:59:23.433Z","enrolled":11425,"book":"https://elroy.info","course_url":"https://bernadine.name"},{"course_title":"Pouros, Goldner and Welch","course_number":499,"instructor":"Emerson Krajcik","location":"246 Turner Mountain","time":"2018-07-14T05:41:37.566Z","enrolled":79329,"book":"http://oscar.biz","course_url":"http://genoveva.com"},{"course_title":"Tremblay Inc","course_number":47192,"instructor":"Efrain Lehner","location":"92631 Gaylord Locks","time":"2018-07-14T23:07:14.879Z","enrolled":47167,"book":"https://gino.net","course_url":"http://martin.biz"},{"course_title":"Daugherty and Sons","course_number":33810,"instructor":"Mrs. Lizzie Mayert","location":"5563 Reynolds Street","time":"2018-07-14T09:27:23.170Z","enrolled":11276,"book":"http://dean.biz","course_url":"https://haylee.biz"},{"course_title":"Rath - Halvorson","course_number":5875,"instructor":"Neil Thompson","location":"72707 Marion Hollow","time":"2018-07-14T06:35:27.162Z","enrolled":92867,"book":"https://wilhelm.biz","course_url":"https://garrison.info"},{"course_title":"Botsford LLC","course_number":97856,"instructor":"Roosevelt Stiedemann","location":"2891 Vena Mountains","time":"2018-07-14T04:31:57.513Z","enrolled":6015,"book":"https://werner.biz","course_url":"https://rocio.com"},{"course_title":"Mueller - Leffler","course_number":67363,"instructor":"Otho Stehr","location":"1681 Katarina Stream","time":"2018-07-14T06:52:47.175Z","enrolled":76844,"book":"https://jedediah.net","course_url":"https://jamie.org"},{"course_title":"Reilly - Langworth","course_number":62643,"instructor":"Chase McKenzie","location":"4094 Runolfsson Drives","time":"2018-07-14T15:09:00.909Z","enrolled":3731,"book":"http://milton.biz","course_url":"http://reagan.name"},{"course_title":"Flatley, Schamberger and Wolf","course_number":31797,"instructor":"Piper Kautzer","location":"3662 Schmeler Keys","time":"2018-07-14T05:10:20.541Z","enrolled":99681,"book":"https://rodrigo.com","course_url":"https://alfred.net"},{"course_title":"Hoppe, Ledner and Stroman","course_number":18379,"instructor":"Rose Lehner","location":"91891 Ratke Springs","time":"2018-07-14T12:07:53.867Z","enrolled":20579,"book":"https://cordia.name","course_url":"https://jeffry.biz"},{"course_title":"Turner and Sons","course_number":73710,"instructor":"Laney Herzog","location":"80967 Ankunding Ferry","time":"2018-07-14T16:46:08.506Z","enrolled":72341,"book":"https://kaleb.biz","course_url":"http://sadye.name"},{"course_title":"Wilkinson - Stroman","course_number":71774,"instructor":"Libby Eichmann PhD","location":"1705 Collins Junctions","time":"2018-07-14T18:24:54.049Z","enrolled":66625,"book":"https://donald.net","course_url":"http://josefa.net"},{"course_title":"Rohan and Sons","course_number":92437,"instructor":"Harrison Lueilwitz PhD","location":"54835 Ward Ridges","time":"2018-07-14T18:04:53.195Z","enrolled":81912,"book":"https://wilmer.biz","course_url":"http://everett.info"},{"course_title":"Miller, McLaughlin and Frami","course_number":70471,"instructor":"Tristian Vandervort","location":"2287 Emilie Mills","time":"2018-07-14T15:12:07.608Z","enrolled":56277,"book":"https://lizzie.net","course_url":"https://dixie.org"},{"course_title":"Medhurst - Hand","course_number":27617,"instructor":"Alvina Graham","location":"4670 Gibson Field","time":"2018-07-14T12:16:49.639Z","enrolled":54789,"book":"http://toby.com","course_url":"http://viola.biz"},{"course_title":"Rosenbaum Inc","course_number":30665,"instructor":"Hollie Barton","location":"731 Lillie Pines","time":"2018-07-14T02:19:38.078Z","enrolled":49769,"book":"http://ciara.name","course_url":"https://jordy.biz"},{"course_title":"O'Conner - Connelly","course_number":93244,"instructor":"Candace Hilll","location":"36089 Hilton Plaza","time":"2018-07-14T02:57:05.970Z","enrolled":86780,"book":"https://lance.com","course_url":"https://talon.com"},{"course_title":"Herman - Ondricka","course_number":19033,"instructor":"Demetris Hoppe II","location":"5076 Alfredo Causeway","time":"2018-07-14T22:05:06.609Z","enrolled":71314,"book":"http://chase.biz","course_url":"http://mariano.name"},{"course_title":"Borer - Heidenreich","course_number":91077,"instructor":"Jane Rodriguez","location":"4992 Andres Rapid","time":"2018-07-14T09:24:37.708Z","enrolled":3875,"book":"http://katelynn.biz","course_url":"https://otis.name"},{"course_title":"Lind - Jenkins","course_number":47497,"instructor":"Ms. Elda Hane","location":"253 Jimmie Loaf","time":"2018-07-13T23:38:38.796Z","enrolled":46840,"book":"http://gust.info","course_url":"https://douglas.org"},{"course_title":"Wisoky - Dibbert","course_number":86805,"instructor":"Oswald Graham","location":"5799 Rodriguez Lock","time":"2018-07-14T13:46:08.306Z","enrolled":44849,"book":"http://yvonne.org","course_url":"https://misty.biz"},{"course_title":"Hudson Inc","course_number":75335,"instructor":"Dr. Darrel Sipes","location":"050 Roxane Turnpike","time":"2018-07-13T23:12:58.830Z","enrolled":92165,"book":"https://treva.name","course_url":"https://fanny.com"},{"course_title":"Block - Jenkins","course_number":99168,"instructor":"Noah Mills","location":"9807 Ruthe Rapids","time":"2018-07-14T00:54:14.979Z","enrolled":39331,"book":"http://jack.biz","course_url":"http://agnes.org"},{"course_title":"Rempel LLC","course_number":55706,"instructor":"Freeda Ullrich","location":"2785 Stanton Mount","time":"2018-07-13T23:17:21.021Z","enrolled":31927,"book":"https://breanne.name","course_url":"https://paolo.com"},{"course_title":"Will Inc","course_number":9391,"instructor":"Andreane O'Keefe","location":"15641 Orn Haven","time":"2018-07-14T05:41:47.710Z","enrolled":76799,"book":"http://orlando.org","course_url":"https://jana.net"},{"course_title":"Lemke, Okuneva and Larkin","course_number":3897,"instructor":"Mireya Yundt","location":"62997 Jack Forest","time":"2018-07-14T22:44:28.070Z","enrolled":57693,"book":"http://domenica.info","course_url":"https://alexys.com"},{"course_title":"Bogisich - Watsica","course_number":27978,"instructor":"Justus Heller","location":"0494 Coralie Stravenue","time":"2018-07-14T17:25:05.509Z","enrolled":64991,"book":"https://angelita.net","course_url":"http://cody.org"},{"course_title":"Kuphal, O'Connell and Zemlak","course_number":59118,"instructor":"Laura Russel","location":"313 Luettgen Neck","time":"2018-07-14T20:37:02.869Z","enrolled":61192,"book":"http://ansley.info","course_url":"https://ruby.info"},{"course_title":"Moore - Torp","course_number":59017,"instructor":"Annie Hills","location":"301 Jordyn Shore","time":"2018-07-14T18:04:10.901Z","enrolled":49451,"book":"http://asia.biz","course_url":"http://brett.name"},{"course_title":"Crist, Koelpin and Mohr","course_number":13811,"instructor":"Mr. Durward Muller","location":"9503 Stroman Park","time":"2018-07-14T17:27:43.217Z","enrolled":51836,"book":"https://al.name","course_url":"http://lonzo.name"},{"course_title":"Kozey - Volkman","course_number":63238,"instructor":"Angelita Heller","location":"4342 Ward Harbor","time":"2018-07-14T16:37:51.369Z","enrolled":23887,"book":"https://joe.com","course_url":"http://kaley.org"},{"course_title":"Zulauf, Schowalter and Streich","course_number":40848,"instructor":"Emmanuel Donnelly III","location":"6296 Langworth Landing","time":"2018-07-14T08:26:17.723Z","enrolled":87015,"book":"https://waylon.org","course_url":"http://darrion.net"},{"course_title":"Herzog, Sanford and Carter","course_number":20806,"instructor":"Rory Christiansen Jr.","location":"58139 McCullough Hills","time":"2018-07-14T22:07:00.055Z","enrolled":484,"book":"http://meghan.biz","course_url":"https://cheyenne.name"},{"course_title":"Schuppe Inc","course_number":5423,"instructor":"Eldridge Grady","location":"3800 Quinton Plains","time":"2018-07-14T22:20:58.734Z","enrolled":59204,"book":"https://henriette.name","course_url":"http://donny.org"},{"course_title":"Marks LLC","course_number":48404,"instructor":"Nestor Ritchie","location":"28023 Emanuel Mountains","time":"2018-07-14T18:24:02.141Z","enrolled":24068,"book":"https://vladimir.com","course_url":"http://haskell.info"},{"course_title":"Lang, Lowe and Rosenbaum","course_number":79024,"instructor":"Summer Schamberger","location":"276 Jones Row","time":"2018-07-14T21:01:35.755Z","enrolled":87222,"book":"https://pearl.name","course_url":"https://hellen.org"},{"course_title":"Kuphal - Corkery","course_number":11810,"instructor":"Gladyce Borer","location":"80103 Jazmin Turnpike","time":"2018-07-14T22:32:42.925Z","enrolled":47801,"book":"http://erna.com","course_url":"https://anissa.name"},{"course_title":"Maggio and Sons","course_number":7492,"instructor":"Sunny Witting","location":"8319 Kunde Center","time":"2018-07-14T13:20:55.279Z","enrolled":51154,"book":"http://lamar.net","course_url":"http://diego.biz"},{"course_title":"Krajcik Group","course_number":66461,"instructor":"Doug Weissnat","location":"8037 Rolando Drive","time":"2018-07-14T01:46:45.897Z","enrolled":20757,"book":"https://brant.net","course_url":"http://tierra.name"},{"course_title":"Kiehn and Sons","course_number":39236,"instructor":"Shana Stehr","location":"1263 Jones Prairie","time":"2018-07-14T21:11:19.172Z","enrolled":76949,"book":"http://jakayla.org","course_url":"https://zachary.biz"},{"course_title":"Pfannerstill Inc","course_number":50689,"instructor":"Lauren Beahan","location":"42931 Homenick Mission","time":"2018-07-14T19:31:08.775Z","enrolled":92463,"book":"http://juston.biz","course_url":"http://emelie.org"},{"course_title":"Koss - Botsford","course_number":3359,"instructor":"Mr. Jeanette Rippin","location":"388 Douglas Port","time":"2018-07-14T11:31:46.826Z","enrolled":72777,"book":"https://ella.info","course_url":"https://jeff.name"},{"course_title":"Koepp - Crona","course_number":4418,"instructor":"Phoebe Auer","location":"98509 Kemmer Greens","time":"2018-07-14T04:13:23.577Z","enrolled":91718,"book":"https://trey.org","course_url":"http://tess.net"},{"course_title":"Crooks, Jacobson and Jast","course_number":51557,"instructor":"D'angelo Ankunding","location":"172 Grady Brooks","time":"2018-07-14T03:19:40.435Z","enrolled":85115,"book":"http://loma.net","course_url":"https://reese.biz"},{"course_title":"Cronin - Beier","course_number":34200,"instructor":"Alessandro Strosin","location":"8982 Quitzon Inlet","time":"2018-07-14T10:14:48.003Z","enrolled":30887,"book":"http://ardith.com","course_url":"http://lenora.net"},{"course_title":"Connelly - Feeney","course_number":53562,"instructor":"Helmer Lind","location":"8214 Ward Corner","time":"2018-07-14T20:46:01.563Z","enrolled":6220,"book":"https://katrine.org","course_url":"https://ewell.info"},{"course_title":"Maggio - Satterfield","course_number":25824,"instructor":"Aileen Runolfsdottir Jr.","location":"207 Claudie Creek","time":"2018-07-14T03:43:17.033Z","enrolled":3519,"book":"http://muriel.com","course_url":"https://corene.info"},{"course_title":"Kassulke Group","course_number":12996,"instructor":"Ms. Donnell Abbott","location":"0997 Hickle View","time":"2018-07-14T19:25:32.408Z","enrolled":67617,"book":"https://johann.info","course_url":"http://jeremie.net"},{"course_title":"Boehm, Parisian and Sipes","course_number":17677,"instructor":"Oma McClure","location":"21828 Waino Mount","time":"2018-07-14T04:51:37.379Z","enrolled":32859,"book":"https://joany.org","course_url":"https://aisha.com"},{"course_title":"Mante - Brown","course_number":85374,"instructor":"Nicolas Green","location":"18946 Jalon Locks","time":"2018-07-14T08:13:28.485Z","enrolled":87305,"book":"http://kolby.com","course_url":"http://justice.com"},{"course_title":"Turner - Kuvalis","course_number":70316,"instructor":"Jacey West","location":"367 Anderson Harbors","time":"2018-07-14T22:08:24.298Z","enrolled":51222,"book":"http://corine.name","course_url":"http://gaylord.biz"},{"course_title":"Keeling, Ryan and Crist","course_number":98155,"instructor":"Emmanuel Predovic","location":"9333 Eden Roads","time":"2018-07-14T20:50:16.690Z","enrolled":73614,"book":"https://helene.org","course_url":"http://thomas.name"},{"course_title":"Bartoletti, Gutmann and Runolfsdottir","course_number":4198,"instructor":"Edwin Smith","location":"468 Kay Stravenue","time":"2018-07-14T22:24:48.077Z","enrolled":6578,"book":"https://selina.name","course_url":"http://rhoda.name"},{"course_title":"Bergstrom and Sons","course_number":49173,"instructor":"Frederik Bayer","location":"74294 Holden Ridge","time":"2018-07-14T17:42:22.672Z","enrolled":88081,"book":"http://samara.biz","course_url":"http://clementina.name"},{"course_title":"Wuckert - Doyle","course_number":9215,"instructor":"Rowena Becker","location":"19670 Issac Track","time":"2018-07-14T08:09:27.782Z","enrolled":78840,"book":"http://quentin.com","course_url":"https://mellie.org"},{"course_title":"Metz Group","course_number":62259,"instructor":"Harold Upton","location":"910 Demario Springs","time":"2018-07-14T02:09:15.623Z","enrolled":97898,"book":"https://therese.info","course_url":"https://kellen.net"},{"course_title":"Parisian Group","course_number":50875,"instructor":"Jaylin Carter","location":"16766 Austen Mountains","time":"2018-07-14T21:53:44.187Z","enrolled":8035,"book":"http://andres.com","course_url":"https://jena.net"},{"course_title":"Harris - Lesch","course_number":76823,"instructor":"Adele Welch","location":"3692 Rutherford Stream","time":"2018-07-14T02:30:05.354Z","enrolled":8019,"book":"https://emma.name","course_url":"https://macie.com"},{"course_title":"Wolf, Daugherty and Hoeger","course_number":53156,"instructor":"Rosalinda Feest","location":"54016 Ida Way","time":"2018-07-14T21:12:27.107Z","enrolled":56762,"book":"https://jennyfer.info","course_url":"https://jacinthe.com"},{"course_title":"Kub Inc","course_number":58281,"instructor":"Brook Cronin","location":"403 Hershel Plains","time":"2018-07-14T13:28:29.893Z","enrolled":45467,"book":"https://florine.name","course_url":"http://morton.net"},{"course_title":"Yost - Morar","course_number":20294,"instructor":"Jacques Russel","location":"131 Vesta Garden","time":"2018-07-14T18:37:29.080Z","enrolled":27448,"book":"https://keshawn.name","course_url":"https://tyree.org"},{"course_title":"Stanton, Roberts and Stamm","course_number":56159,"instructor":"Eva Stoltenberg","location":"97662 Pfeffer Dam","time":"2018-07-14T15:23:42.191Z","enrolled":39566,"book":"http://hortense.org","course_url":"http://charlotte.net"},{"course_title":"Morissette - Russel","course_number":72974,"instructor":"Gus Carroll","location":"711 Dickens Via","time":"2018-07-14T05:17:46.425Z","enrolled":80300,"book":"http://maxine.net","course_url":"http://brenda.org"},{"course_title":"Hauck, O'Reilly and Stanton","course_number":19147,"instructor":"Zoila Gislason MD","location":"238 Heathcote Throughway","time":"2018-07-13T23:25:12.724Z","enrolled":84016,"book":"https://gwen.com","course_url":"http://ernesto.info"},{"course_title":"Hintz and Sons","course_number":16499,"instructor":"Anabel Senger","location":"845 Ward River","time":"2018-07-14T15:27:33.306Z","enrolled":91109,"book":"https://julio.info","course_url":"http://emmie.name"},{"course_title":"Witting, Kertzmann and Beier","course_number":45574,"instructor":"Fanny Kuhlman IV","location":"3551 Hubert Mission","time":"2018-07-14T01:13:54.684Z","enrolled":28149,"book":"http://lewis.info","course_url":"http://reese.biz"},{"course_title":"Rippin and Sons","course_number":15922,"instructor":"Zena Mills","location":"0291 Daren Vista","time":"2018-07-13T23:15:51.157Z","enrolled":24910,"book":"https://rosetta.com","course_url":"https://jayden.net"},{"course_title":"Reynolds - Dickinson","course_number":44733,"instructor":"Gabriel Jones","location":"355 Odell Ridge","time":"2018-07-14T15:31:04.927Z","enrolled":35802,"book":"https://gideon.biz","course_url":"http://alexander.net"},{"course_title":"Glover and Sons","course_number":62432,"instructor":"Flossie Schinner MD","location":"14673 Hyatt Fields","time":"2018-07-14T13:55:22.990Z","enrolled":1892,"book":"https://kane.net","course_url":"http://jackie.name"},{"course_title":"Harris, Raynor and Heidenreich","course_number":80273,"instructor":"Addison Armstrong","location":"32076 Maurice Cliffs","time":"2018-07-14T17:50:36.897Z","enrolled":16288,"book":"https://myrtice.info","course_url":"http://keyon.name"},{"course_title":"Monahan Inc","course_number":79934,"instructor":"Adolf Romaguera","location":"011 Bernita Crossroad","time":"2018-07-14T00:48:15.625Z","enrolled":80363,"book":"http://garnet.name","course_url":"https://timothy.com"},{"course_title":"Reilly Inc","course_number":74455,"instructor":"Sylvia Becker","location":"31282 Christ Flats","time":"2018-07-14T14:27:34.267Z","enrolled":27640,"book":"https://araceli.com","course_url":"http://athena.org"},{"course_title":"Sporer, Klocko and Doyle","course_number":82480,"instructor":"Norbert Rodriguez","location":"83476 Delilah Lake","time":"2018-07-14T12:52:16.215Z","enrolled":39429,"book":"http://rhianna.com","course_url":"https://hildegard.net"},{"course_title":"Schneider - Kub","course_number":97188,"instructor":"Cornelius Lubowitz","location":"8974 Roslyn River","time":"2018-07-14T07:46:49.167Z","enrolled":5488,"book":"https://quinn.info","course_url":"https://assunta.com"},{"course_title":"Parisian LLC","course_number":60327,"instructor":"Ms. Gladyce Fritsch","location":"004 Archibald Wells","time":"2018-07-14T01:13:09.280Z","enrolled":56959,"book":"https://nils.net","course_url":"http://sharon.net"},{"course_title":"Wolf, Kreiger and Rolfson","course_number":45541,"instructor":"Aric Hickle","location":"457 Kyler Cove","time":"2018-07-14T12:00:16.888Z","enrolled":95425,"book":"http://cecilia.org","course_url":"https://eulalia.info"},{"course_title":"Muller, Blick and Funk","course_number":65741,"instructor":"Juliana Kemmer","location":"735 Powlowski Gateway","time":"2018-07-14T10:59:40.151Z","enrolled":25559,"book":"https://fritz.org","course_url":"https://frances.name"},{"course_title":"Weber - Howe","course_number":20169,"instructor":"Marilyne Rolfson Jr.","location":"632 Elva Fort","time":"2018-07-14T12:48:07.214Z","enrolled":36674,"book":"https://laurie.biz","course_url":"https://fredy.com"},{"course_title":"Jerde Group","course_number":50798,"instructor":"Sophie Bradtke","location":"6454 Hickle Mall","time":"2018-07-14T18:41:38.977Z","enrolled":47197,"book":"http://raheem.biz","course_url":"http://junior.name"},{"course_title":"Kessler, Langworth and Kshlerin","course_number":52790,"instructor":"Monserrat Littel DDS","location":"22584 Felicita Viaduct","time":"2018-07-14T00:36:31.263Z","enrolled":78550,"book":"https://jaclyn.org","course_url":"https://michaela.org"},{"course_title":"Stiedemann - Halvorson","course_number":68164,"instructor":"Tyrell Tillman","location":"861 Stokes Crescent","time":"2018-07-14T03:23:32.940Z","enrolled":61900,"book":"http://earline.org","course_url":"http://casimer.org"},{"course_title":"Yundt - Treutel","course_number":26397,"instructor":"Hettie Ratke Sr.","location":"92715 Collier Rapids","time":"2018-07-14T07:33:25.673Z","enrolled":48131,"book":"https://katarina.com","course_url":"https://tom.info"},{"course_title":"Fritsch, Bartoletti and Klocko","course_number":3343,"instructor":"Madie Cole PhD","location":"04379 Glover Union","time":"2018-07-14T14:58:33.678Z","enrolled":88821,"book":"http://dallin.org","course_url":"https://harold.org"},{"course_title":"Weimann - Aufderhar","course_number":70401,"instructor":"Keira Adams","location":"7888 Witting Locks","time":"2018-07-14T10:44:22.149Z","enrolled":30065,"book":"https://lauryn.org","course_url":"http://yvonne.com"},{"course_title":"Harris - Rosenbaum","course_number":91451,"instructor":"Victoria Swaniawski","location":"89952 Richie Falls","time":"2018-07-14T06:32:22.645Z","enrolled":11360,"book":"https://nelle.name","course_url":"http://ladarius.info"},{"course_title":"Howell - Mante","course_number":93535,"instructor":"Magnolia Bartell","location":"9016 Ahmad Terrace","time":"2018-07-14T06:30:04.492Z","enrolled":47188,"book":"http://katlynn.info","course_url":"https://lucinda.net"},{"course_title":"Kohler Inc","course_number":69593,"instructor":"Gus Witting","location":"32619 Medhurst Plains","time":"2018-07-14T22:12:13.498Z","enrolled":20797,"book":"http://nils.name","course_url":"http://sigurd.net"},{"course_title":"Turner - Weimann","course_number":58301,"instructor":"Lucious Heller II","location":"4636 Grimes Unions","time":"2018-07-14T10:40:25.427Z","enrolled":72058,"book":"https://keegan.biz","course_url":"http://julian.com"},{"course_title":"Collins - Dach","course_number":1260,"instructor":"Alden Kunde","location":"829 Kuhlman Harbor","time":"2018-07-14T05:55:23.186Z","enrolled":37823,"book":"http://donna.net","course_url":"http://kelly.biz"},{"course_title":"Jacobs, Douglas and Auer","course_number":62944,"instructor":"Vernice Olson","location":"6481 Dayna Mountain","time":"2018-07-14T21:15:56.699Z","enrolled":53442,"book":"https://alexandra.org","course_url":"https://cheyanne.org"},{"course_title":"Maggio, Adams and Crist","course_number":4556,"instructor":"Geovanni Auer","location":"592 Steve Park","time":"2018-07-14T13:34:10.610Z","enrolled":44191,"book":"http://reilly.org","course_url":"http://hank.biz"},{"course_title":"Bauch - Schumm","course_number":74479,"instructor":"Ms. Nicole Cronin","location":"272 Blick Mission","time":"2018-07-14T11:33:00.518Z","enrolled":45448,"book":"http://delpha.com","course_url":"https://macey.org"},{"course_title":"Spencer LLC","course_number":69906,"instructor":"Rebekah Mills","location":"980 Delpha Brooks","time":"2018-07-14T02:10:46.026Z","enrolled":33110,"book":"http://cortez.name","course_url":"https://granville.info"},{"course_title":"Miller, Metz and Boyle","course_number":24519,"instructor":"Virgil Mraz","location":"8973 Elenor Crossroad","time":"2018-07-14T19:44:49.694Z","enrolled":44119,"book":"http://keagan.com","course_url":"http://velma.name"},{"course_title":"Harvey Inc","course_number":51592,"instructor":"Miss Delphine Champlin","location":"47653 Estefania Mountains","time":"2018-07-14T10:35:09.988Z","enrolled":57805,"book":"http://carli.org","course_url":"http://christina.com"},{"course_title":"Hartmann - Schowalter","course_number":63597,"instructor":"Anjali Jacobs","location":"5857 Ricky Alley","time":"2018-07-14T22:28:54.230Z","enrolled":43933,"book":"http://murray.info","course_url":"http://suzanne.net"},{"course_title":"Ritchie Inc","course_number":89637,"instructor":"Felton Douglas V","location":"7628 Otis Gardens","time":"2018-07-14T12:15:41.837Z","enrolled":95432,"book":"http://yoshiko.name","course_url":"https://deondre.org"},{"course_title":"Rutherford and Sons","course_number":21280,"instructor":"Edythe Farrell","location":"584 Koelpin Station","time":"2018-07-14T20:16:10.378Z","enrolled":71052,"book":"http://isac.org","course_url":"https://roel.name"},{"course_title":"Zieme - Rau","course_number":36188,"instructor":"Miss Gregorio Satterfield","location":"8288 Augustus Drives","time":"2018-07-14T09:34:35.942Z","enrolled":77850,"book":"https://nigel.net","course_url":"https://niko.net"},{"course_title":"Cummerata - Abernathy","course_number":97746,"instructor":"Aditya Kozey Jr.","location":"51545 Antonette Pine","time":"2018-07-14T06:56:01.985Z","enrolled":15084,"book":"http://aurelio.biz","course_url":"http://joshua.info"},{"course_title":"Bogisich - Graham","course_number":36738,"instructor":"Leland Brakus III","location":"52671 Reilly Meadow","time":"2018-07-14T03:43:09.264Z","enrolled":109,"book":"https://curtis.org","course_url":"http://donna.net"},{"course_title":"Orn, Kertzmann and Schaden","course_number":17974,"instructor":"Laila Hamill","location":"090 Stroman Mountain","time":"2018-07-14T22:18:32.061Z","enrolled":3409,"book":"http://deron.org","course_url":"https://candida.biz"},{"course_title":"Howell LLC","course_number":13615,"instructor":"Nedra Rippin","location":"4090 Volkman Prairie","time":"2018-07-14T21:03:49.709Z","enrolled":36570,"book":"https://jamey.net","course_url":"http://amara.com"},{"course_title":"Yost - Hodkiewicz","course_number":55552,"instructor":"Dr. Minerva Hagenes","location":"88818 Ocie Harbor","time":"2018-07-14T08:13:47.926Z","enrolled":26671,"book":"http://pattie.org","course_url":"http://tess.biz"},{"course_title":"Schowalter and Sons","course_number":33254,"instructor":"Hilton Jerde","location":"3989 Gordon Valley","time":"2018-07-14T08:55:48.265Z","enrolled":11196,"book":"http://yadira.name","course_url":"http://bulah.name"},{"course_title":"Medhurst, Bosco and Koss","course_number":66028,"instructor":"Jovanny Roob","location":"508 Carleton Island","time":"2018-07-14T17:02:31.689Z","enrolled":702,"book":"https://haskell.org","course_url":"http://tianna.com"},{"course_title":"Toy and Sons","course_number":62364,"instructor":"Georgette Bergstrom","location":"740 Titus Lights","time":"2018-07-14T03:25:48.736Z","enrolled":86538,"book":"http://ellie.biz","course_url":"https://amir.info"},{"course_title":"Leuschke, Funk and Rosenbaum","course_number":76026,"instructor":"Edgardo Terry MD","location":"84487 Baumbach Valley","time":"2018-07-14T07:41:29.500Z","enrolled":40090,"book":"http://meta.net","course_url":"https://jakayla.name"},{"course_title":"Ankunding - Moore","course_number":94959,"instructor":"Bessie Sawayn","location":"0288 Kariane Haven","time":"2018-07-14T09:40:26.806Z","enrolled":86385,"book":"https://lyda.biz","course_url":"https://billie.biz"},{"course_title":"Murphy, Sporer and Gleichner","course_number":34580,"instructor":"Cruz Dietrich","location":"19573 Sean Trace","time":"2018-07-14T01:44:54.324Z","enrolled":93757,"book":"https://paris.com","course_url":"https://lyda.org"},{"course_title":"Steuber, Terry and Kovacek","course_number":95155,"instructor":"Jadon Blanda","location":"29435 Dennis Squares","time":"2018-07-14T03:51:33.449Z","enrolled":11572,"book":"https://malachi.name","course_url":"http://rae.net"},{"course_title":"Dicki, Murazik and Langosh","course_number":5651,"instructor":"Mrs. Jaqueline Ankunding","location":"8417 Brown Overpass","time":"2018-07-14T01:24:53.561Z","enrolled":32395,"book":"https://kelley.info","course_url":"https://geovanni.info"},{"course_title":"Fritsch - Witting","course_number":42,"instructor":"Delta Senger","location":"996 Linwood Terrace","time":"2018-07-14T14:24:12.738Z","enrolled":58565,"book":"http://delfina.name","course_url":"http://cristina.com"},{"course_title":"Farrell Inc","course_number":37446,"instructor":"Garnett Abshire V","location":"191 Ritchie Squares","time":"2018-07-14T21:14:33.203Z","enrolled":24586,"book":"https://katherine.name","course_url":"https://hailey.com"},{"course_title":"Tremblay - Christiansen","course_number":70122,"instructor":"Joesph Lueilwitz","location":"928 Heller Falls","time":"2018-07-13T23:38:14.578Z","enrolled":50963,"book":"https://sedrick.com","course_url":"http://linnie.org"},{"course_title":"Fahey - Cole","course_number":87158,"instructor":"Stephen Beier","location":"2328 Ena Plaza","time":"2018-07-14T19:22:25.376Z","enrolled":10404,"book":"http://genesis.com","course_url":"https://pamela.name"},{"course_title":"Jacobi - Graham","course_number":76250,"instructor":"Lenny Schamberger MD","location":"62642 Olson Mountains","time":"2018-07-14T11:11:17.900Z","enrolled":24721,"book":"https://bette.net","course_url":"https://mason.info"},{"course_title":"Ruecker and Sons","course_number":57439,"instructor":"Deron Muller","location":"1820 Hermiston Bypass","time":"2018-07-14T04:07:30.845Z","enrolled":78575,"book":"https://kavon.net","course_url":"https://myrl.biz"},{"course_title":"Moore Inc","course_number":31121,"instructor":"Nayeli Brown","location":"92348 Schroeder Fields","time":"2018-07-14T00:24:50.343Z","enrolled":75625,"book":"http://kraig.com","course_url":"https://kendall.name"},{"course_title":"Morar - Harris","course_number":44446,"instructor":"Ella Ernser","location":"14806 Everardo Turnpike","time":"2018-07-14T01:10:13.369Z","enrolled":5695,"book":"https://mckayla.org","course_url":"http://bill.com"},{"course_title":"Aufderhar and Sons","course_number":62605,"instructor":"Ernie Roob","location":"2684 Althea Light","time":"2018-07-14T21:18:19.353Z","enrolled":37131,"book":"http://alicia.biz","course_url":"https://eli.com"},{"course_title":"Pollich - Kassulke","course_number":2954,"instructor":"Laurie McCullough","location":"1261 Wiza Villages","time":"2018-07-14T18:31:33.678Z","enrolled":53270,"book":"http://savannah.name","course_url":"http://irma.name"},{"course_title":"Littel - McClure","course_number":36387,"instructor":"Mike Fay","location":"61986 Alexandre Villages","time":"2018-07-14T22:04:38.403Z","enrolled":45113,"book":"https://maude.net","course_url":"http://parker.name"},{"course_title":"Schumm - Douglas","course_number":25464,"instructor":"Gaetano Koepp","location":"20485 Eliezer Terrace","time":"2018-07-14T11:10:00.007Z","enrolled":1450,"book":"https://demarco.name","course_url":"http://hunter.info"},{"course_title":"McKenzie Inc","course_number":64545,"instructor":"Theodora Welch","location":"911 Berge Terrace","time":"2018-07-14T06:09:47.598Z","enrolled":5086,"book":"https://alfonso.org","course_url":"https://margaret.name"},{"course_title":"Kub, Frami and Sawayn","course_number":48106,"instructor":"Makenna Schoen","location":"6453 Wellington Row","time":"2018-07-14T05:51:29.251Z","enrolled":92770,"book":"https://hollie.org","course_url":"https://samara.info"},{"course_title":"Beier, Kihn and Kozey","course_number":54618,"instructor":"General Labadie","location":"547 Wehner Islands","time":"2018-07-14T02:22:33.172Z","enrolled":14768,"book":"https://caden.net","course_url":"http://izabella.org"},{"course_title":"Quigley - Hudson","course_number":31360,"instructor":"Lenny Strosin","location":"9835 Virgil Overpass","time":"2018-07-14T10:43:38.313Z","enrolled":18269,"book":"https://sigrid.name","course_url":"http://johathan.net"},{"course_title":"Prosacco, Kuhn and Greenfelder","course_number":81326,"instructor":"Mr. Margarette Flatley","location":"44824 Marilou Villages","time":"2018-07-14T15:40:59.403Z","enrolled":14214,"book":"http://maybell.com","course_url":"http://domenico.name"},{"course_title":"Kiehn - Haag","course_number":21636,"instructor":"Alphonso Gleason I","location":"7971 Oma Squares","time":"2018-07-14T18:56:39.493Z","enrolled":61983,"book":"http://melissa.name","course_url":"http://sylvester.name"},{"course_title":"McGlynn LLC","course_number":28042,"instructor":"Adrian Witting","location":"8089 Nellie Neck","time":"2018-07-14T04:29:10.399Z","enrolled":98123,"book":"http://connie.com","course_url":"http://demarcus.org"},{"course_title":"Huels - Spencer","course_number":21484,"instructor":"Chad Marvin III","location":"079 Skiles Vista","time":"2018-07-14T01:56:16.767Z","enrolled":11063,"book":"https://imelda.org","course_url":"http://reuben.com"},{"course_title":"Bernier LLC","course_number":38668,"instructor":"Norwood Johnson","location":"088 Isabel Road","time":"2018-07-13T23:26:40.156Z","enrolled":63821,"book":"http://felipa.com","course_url":"http://felicity.name"},{"course_title":"Herman, Wehner and Cremin","course_number":9512,"instructor":"Mrs. Theron Shields","location":"601 Annabell Oval","time":"2018-07-14T21:02:19.197Z","enrolled":80297,"book":"https://tierra.name","course_url":"http://larissa.org"},{"course_title":"Schiller - Sanford","course_number":18270,"instructor":"Jerome Bosco","location":"369 Jaskolski Run","time":"2018-07-14T19:34:24.621Z","enrolled":71079,"book":"https://timothy.info","course_url":"https://hugh.info"},{"course_title":"Koch, Keebler and Dach","course_number":90698,"instructor":"Aaron Stamm Sr.","location":"9304 Kohler River","time":"2018-07-14T10:23:36.673Z","enrolled":45321,"book":"http://elwin.net","course_url":"https://sydnie.biz"},{"course_title":"Erdman - Dickinson","course_number":51879,"instructor":"Kamron Reynolds","location":"0770 Aracely Turnpike","time":"2018-07-14T02:20:36.957Z","enrolled":84946,"book":"http://karson.name","course_url":"https://frederique.org"},{"course_title":"Breitenberg - Keeling","course_number":9751,"instructor":"Justyn Bruen III","location":"79867 Tabitha Points","time":"2018-07-14T22:34:38.400Z","enrolled":47641,"book":"http://kaley.com","course_url":"https://axel.name"},{"course_title":"Bartell - Bruen","course_number":97992,"instructor":"Mason Tromp","location":"1302 Gutmann Valley","time":"2018-07-14T22:05:56.625Z","enrolled":51981,"book":"https://ardella.net","course_url":"https://eleanore.biz"},{"course_title":"Hodkiewicz, Parisian and Runolfsson","course_number":99866,"instructor":"Keara Wolf","location":"497 Kunde Alley","time":"2018-07-14T17:26:41.245Z","enrolled":53803,"book":"http://raina.com","course_url":"https://landen.info"},{"course_title":"Bailey - Schuster","course_number":30324,"instructor":"Arno Torp","location":"9350 Percival Drive","time":"2018-07-14T20:16:59.584Z","enrolled":56267,"book":"http://ed.name","course_url":"https://lacy.biz"},{"course_title":"Klocko - Kerluke","course_number":79017,"instructor":"Ms. Mertie Grant","location":"8864 Mae Orchard","time":"2018-07-14T22:00:22.000Z","enrolled":55006,"book":"https://kayla.name","course_url":"https://jacklyn.org"},{"course_title":"McCullough - Howe","course_number":52022,"instructor":"Junius Armstrong","location":"74767 Corene Lodge","time":"2018-07-14T18:46:47.557Z","enrolled":51736,"book":"https://garret.com","course_url":"http://nichole.biz"},{"course_title":"Watsica Group","course_number":87502,"instructor":"Sebastian Legros","location":"769 Kamren Lake","time":"2018-07-14T06:44:09.606Z","enrolled":52034,"book":"https://cade.info","course_url":"https://logan.org"},{"course_title":"Hermiston - Terry","course_number":71911,"instructor":"Claudia Quitzon","location":"021 Bergnaum Curve","time":"2018-07-14T16:06:43.470Z","enrolled":58873,"book":"http://pasquale.name","course_url":"http://ibrahim.name"},{"course_title":"Pacocha - McDermott","course_number":53001,"instructor":"Annabell Pollich","location":"014 Lebsack Land","time":"2018-07-14T21:52:52.522Z","enrolled":26004,"book":"https://tremaine.name","course_url":"https://danielle.net"},{"course_title":"Sipes - Christiansen","course_number":13733,"instructor":"Carol Erdman","location":"14619 Dietrich Brooks","time":"2018-07-14T10:26:50.146Z","enrolled":86533,"book":"https://loraine.org","course_url":"http://antonietta.name"},{"course_title":"Bechtelar Inc","course_number":14208,"instructor":"Zora Hauck","location":"054 Little Crossroad","time":"2018-07-14T08:00:40.589Z","enrolled":80937,"book":"http://barton.name","course_url":"https://adella.info"},{"course_title":"Jacobson Group","course_number":94429,"instructor":"Darian Durgan","location":"133 Kuhic Port","time":"2018-07-14T17:52:46.712Z","enrolled":18893,"book":"http://jaquan.com","course_url":"https://jaycee.biz"},{"course_title":"Franecki LLC","course_number":86001,"instructor":"Freida Berge","location":"4487 Pagac Mills","time":"2018-07-14T05:25:59.729Z","enrolled":28678,"book":"https://kathryne.name","course_url":"https://tina.net"},{"course_title":"Zboncak, Rolfson and Towne","course_number":45543,"instructor":"Raleigh Botsford","location":"50384 Stewart Harbors","time":"2018-07-14T15:11:38.278Z","enrolled":14761,"book":"https://vella.org","course_url":"http://jordy.name"},{"course_title":"Mertz, Rau and Keeling","course_number":17708,"instructor":"Margot O'Hara","location":"4977 Legros Fork","time":"2018-07-14T06:10:59.366Z","enrolled":68995,"book":"https://rhoda.com","course_url":"https://brigitte.com"},{"course_title":"McGlynn - Russel","course_number":26906,"instructor":"Elwyn Bins","location":"39985 Kaley Centers","time":"2018-07-14T21:58:12.794Z","enrolled":96442,"book":"http://colten.info","course_url":"https://amani.org"},{"course_title":"Effertz - Weber","course_number":55208,"instructor":"Blanche Pouros","location":"8893 Nicklaus Highway","time":"2018-07-14T03:06:12.163Z","enrolled":9399,"book":"http://silas.biz","course_url":"https://ronny.org"},{"course_title":"Abernathy, Stehr and Wyman","course_number":57451,"instructor":"Art Kuhic","location":"4539 Batz Ridges","time":"2018-07-13T23:46:11.492Z","enrolled":62804,"book":"https://vinnie.name","course_url":"https://jerrell.org"},{"course_title":"Fritsch, Adams and Rutherford","course_number":76161,"instructor":"Alverta Purdy","location":"66419 Swift Walks","time":"2018-07-14T09:43:11.344Z","enrolled":84186,"book":"http://caitlyn.net","course_url":"https://aurelie.net"},{"course_title":"Wilderman LLC","course_number":49629,"instructor":"Mrs. Laura Wisoky","location":"225 Greenholt Cape","time":"2018-07-14T11:52:08.238Z","enrolled":83022,"book":"https://alessandro.biz","course_url":"https://hiram.name"},{"course_title":"Green - Jakubowski","course_number":45121,"instructor":"Roy Keebler","location":"73029 Camila Neck","time":"2018-07-14T15:35:56.974Z","enrolled":17231,"book":"https://manley.biz","course_url":"https://justina.biz"},{"course_title":"O'Hara, Batz and Morar","course_number":34624,"instructor":"Ms. Sid Rosenbaum","location":"03087 Donna Manor","time":"2018-07-13T23:53:06.931Z","enrolled":79935,"book":"http://leonor.name","course_url":"http://montana.com"},{"course_title":"Aufderhar Inc","course_number":74677,"instructor":"Fiona Little I","location":"2381 Lockman Ford","time":"2018-07-14T05:17:15.205Z","enrolled":18502,"book":"http://gregoria.info","course_url":"https://dillon.org"},{"course_title":"Becker, Quitzon and Emard","course_number":93402,"instructor":"Rosemarie Schroeder","location":"440 Jerome Meadow","time":"2018-07-14T09:06:31.945Z","enrolled":87253,"book":"http://irma.com","course_url":"http://drake.net"},{"course_title":"Schiller Group","course_number":27408,"instructor":"Monserrate Stroman","location":"960 Greg Curve","time":"2018-07-14T03:15:55.520Z","enrolled":69174,"book":"https://gaetano.org","course_url":"https://deja.biz"},{"course_title":"O'Kon - Morissette","course_number":93494,"instructor":"Fatima Schuppe","location":"022 Heathcote Pine","time":"2018-07-14T19:18:40.207Z","enrolled":89803,"book":"http://jalen.com","course_url":"https://may.org"},{"course_title":"Crona, Beatty and Johns","course_number":2479,"instructor":"Tyler Powlowski","location":"23772 Chadrick Way","time":"2018-07-14T11:32:33.342Z","enrolled":6492,"book":"http://dariana.org","course_url":"http://amely.org"},{"course_title":"Schoen, Lueilwitz and Armstrong","course_number":32345,"instructor":"Harvey Kshlerin","location":"117 Destini Manors","time":"2018-07-14T00:25:42.170Z","enrolled":2493,"book":"https://ophelia.name","course_url":"http://raven.info"},{"course_title":"Kub - Zieme","course_number":26374,"instructor":"Maude Ebert","location":"133 Grant Motorway","time":"2018-07-14T17:37:28.293Z","enrolled":6415,"book":"http://cora.com","course_url":"http://alysson.org"},{"course_title":"Jenkins Group","course_number":51891,"instructor":"Vaughn Denesik","location":"3417 Zoey Causeway","time":"2018-07-14T00:53:44.961Z","enrolled":84983,"book":"http://titus.name","course_url":"http://janae.net"},{"course_title":"Pfannerstill - Kirlin","course_number":11745,"instructor":"Miss Zion Greenfelder","location":"6454 Magdalen Villages","time":"2018-07-14T18:23:37.437Z","enrolled":10324,"book":"http://emmy.name","course_url":"http://zetta.biz"},{"course_title":"Fay, Gusikowski and Grant","course_number":88583,"instructor":"Wilburn Gaylord","location":"599 Crooks Alley","time":"2018-07-14T10:46:30.889Z","enrolled":89277,"book":"https://tia.name","course_url":"https://keira.biz"},{"course_title":"Dickens Group","course_number":2335,"instructor":"Hildegard Hauck","location":"2207 Baylee Stream","time":"2018-07-14T22:28:47.827Z","enrolled":49844,"book":"http://rocky.org","course_url":"http://yolanda.biz"},{"course_title":"Lemke - Mills","course_number":54721,"instructor":"Lonie Schiller","location":"12249 Flavio Flats","time":"2018-07-14T06:56:25.395Z","enrolled":99886,"book":"https://frederik.net","course_url":"http://cory.org"},{"course_title":"Beahan - Carroll","course_number":68290,"instructor":"Clifford Towne","location":"0994 Mueller Bypass","time":"2018-07-14T22:50:55.007Z","enrolled":27175,"book":"http://edwina.name","course_url":"http://marty.com"},{"course_title":"McCullough, Stanton and Collins","course_number":14290,"instructor":"Mr. Trinity Romaguera","location":"10138 Hahn Trafficway","time":"2018-07-14T20:49:38.037Z","enrolled":19266,"book":"http://pietro.biz","course_url":"https://branson.com"},{"course_title":"Mills Group","course_number":31779,"instructor":"Armando Sauer","location":"131 Marlen Crescent","time":"2018-07-14T23:06:29.183Z","enrolled":99270,"book":"https://josefina.biz","course_url":"http://stella.org"},{"course_title":"Baumbach Inc","course_number":96620,"instructor":"Kristy Schmidt","location":"7094 Koss River","time":"2018-07-14T19:30:52.196Z","enrolled":16067,"book":"https://eliane.net","course_url":"http://nyah.net"},{"course_title":"Greenfelder LLC","course_number":86172,"instructor":"Dallas Botsford","location":"6178 Torphy Islands","time":"2018-07-14T04:27:24.303Z","enrolled":30628,"book":"https://rollin.org","course_url":"https://bernadette.com"},{"course_title":"McClure, Rath and Yost","course_number":54120,"instructor":"Erich Rice","location":"199 Romaguera Flat","time":"2018-07-14T20:38:13.052Z","enrolled":79327,"book":"http://chaz.org","course_url":"https://valentin.org"},{"course_title":"Weimann, Cartwright and Fahey","course_number":54683,"instructor":"Jimmie Ernser","location":"9658 Wuckert Inlet","time":"2018-07-14T17:49:41.021Z","enrolled":45186,"book":"http://nina.net","course_url":"https://hailey.org"},{"course_title":"Torp, Reichel and Collins","course_number":70111,"instructor":"Ms. Dolly Walker","location":"22340 Trevion Extensions","time":"2018-07-13T23:28:08.218Z","enrolled":43195,"book":"http://ena.name","course_url":"https://karlee.biz"},{"course_title":"Bosco, Stamm and McGlynn","course_number":77818,"instructor":"Alvina Kovacek PhD","location":"554 Nienow Greens","time":"2018-07-14T19:44:08.957Z","enrolled":21993,"book":"https://bonnie.name","course_url":"http://lisandro.com"},{"course_title":"Runolfsson, Kiehn and Kub","course_number":64725,"instructor":"Nelle MacGyver","location":"7143 Keely Estate","time":"2018-07-14T21:30:28.726Z","enrolled":24901,"book":"https://jamey.net","course_url":"https://henry.net"},{"course_title":"Hagenes - Beer","course_number":10034,"instructor":"Trace Wuckert DDS","location":"8888 King Alley","time":"2018-07-14T14:18:45.733Z","enrolled":57835,"book":"http://wayne.net","course_url":"http://aimee.info"},{"course_title":"Ward Inc","course_number":59228,"instructor":"Lindsey Pagac","location":"70223 McKenzie Brooks","time":"2018-07-14T08:17:29.442Z","enrolled":14321,"book":"https://naomie.name","course_url":"https://deshaun.net"},{"course_title":"Altenwerth - Breitenberg","course_number":78871,"instructor":"Newell Feeney","location":"42743 Arne Courts","time":"2018-07-14T11:33:26.870Z","enrolled":82719,"book":"http://ulises.net","course_url":"http://favian.name"},{"course_title":"Robel Group","course_number":78432,"instructor":"Raleigh Boehm","location":"24876 Deven Fort","time":"2018-07-14T04:38:50.977Z","enrolled":54618,"book":"https://brooklyn.net","course_url":"https://lee.name"},{"course_title":"Hickle, Jenkins and McClure","course_number":12499,"instructor":"Mr. Murphy Harris","location":"53219 Vita Coves","time":"2018-07-14T11:17:54.295Z","enrolled":47195,"book":"http://brook.org","course_url":"https://benton.com"},{"course_title":"Ruecker - Langosh","course_number":79219,"instructor":"Deion Cruickshank","location":"9582 Krajcik Fall","time":"2018-07-14T08:31:46.308Z","enrolled":33552,"book":"https://manuel.name","course_url":"http://gregory.net"},{"course_title":"Koepp - Ziemann","course_number":21746,"instructor":"Jayden Denesik","location":"972 Everett Common","time":"2018-07-14T08:56:30.057Z","enrolled":29367,"book":"https://nikolas.org","course_url":"http://drake.org"},{"course_title":"Miller - Johnston","course_number":97305,"instructor":"Boyd Walter","location":"1102 Hackett Field","time":"2018-07-14T16:09:25.764Z","enrolled":52466,"book":"http://geoffrey.net","course_url":"http://carleton.name"},{"course_title":"Spencer, Strosin and Legros","course_number":85805,"instructor":"Dr. Lew Waters","location":"3290 Spinka Loop","time":"2018-07-14T01:03:46.978Z","enrolled":30792,"book":"https://luna.name","course_url":"https://elody.org"},{"course_title":"Balistreri, Gottlieb and Swaniawski","course_number":67521,"instructor":"Markus Botsford","location":"258 Breitenberg Union","time":"2018-07-14T11:48:09.935Z","enrolled":78363,"book":"https://jerome.org","course_url":"http://sister.net"},{"course_title":"Bosco - Feil","course_number":40772,"instructor":"Watson Stamm","location":"80529 Petra Street","time":"2018-07-14T11:24:28.125Z","enrolled":42597,"book":"http://donnell.biz","course_url":"https://soledad.biz"},{"course_title":"Mitchell, Medhurst and Larson","course_number":99090,"instructor":"Lulu Hamill MD","location":"51272 Hilpert Street","time":"2018-07-14T04:35:45.080Z","enrolled":89420,"book":"http://rick.biz","course_url":"http://charlene.name"},{"course_title":"Schaden - Boyer","course_number":52803,"instructor":"Christ Harris MD","location":"321 Goyette Shore","time":"2018-07-14T17:35:16.884Z","enrolled":99440,"book":"https://houston.com","course_url":"https://walker.net"},{"course_title":"Champlin - Sipes","course_number":64699,"instructor":"Katelynn Kreiger","location":"379 Kemmer Ranch","time":"2018-07-14T10:31:51.507Z","enrolled":50218,"book":"http://magali.net","course_url":"https://otis.info"},{"course_title":"Lubowitz Group","course_number":78711,"instructor":"Christelle Hickle Jr.","location":"5388 Heller Island","time":"2018-07-14T03:08:10.571Z","enrolled":55392,"book":"https://jacklyn.info","course_url":"https://iliana.org"},{"course_title":"Wuckert, Bins and Spencer","course_number":94084,"instructor":"Rosanna Kunze","location":"840 Christian Pike","time":"2018-07-14T18:01:51.638Z","enrolled":41205,"book":"https://camren.name","course_url":"https://sheldon.com"},{"course_title":"Connelly - Huels","course_number":23868,"instructor":"Ms. Myrtis Nitzsche","location":"85707 Koss Camp","time":"2018-07-14T02:29:22.247Z","enrolled":97880,"book":"http://daniella.org","course_url":"http://brian.com"},{"course_title":"Hahn LLC","course_number":53830,"instructor":"Perry Schaden","location":"866 Dayne Corner","time":"2018-07-14T11:23:31.879Z","enrolled":2861,"book":"http://enid.com","course_url":"https://zoie.com"},{"course_title":"Cartwright - Mertz","course_number":52439,"instructor":"Sarah Greenholt","location":"65821 Wilkinson Divide","time":"2018-07-14T11:22:42.729Z","enrolled":28400,"book":"https://trevor.org","course_url":"http://baron.net"},{"course_title":"Beahan, Schuppe and Gaylord","course_number":56508,"instructor":"Ethan Waters","location":"83451 Dimitri Turnpike","time":"2018-07-14T09:58:19.450Z","enrolled":66153,"book":"http://veda.org","course_url":"https://cassandra.net"},{"course_title":"Bosco LLC","course_number":51792,"instructor":"Erika Lebsack","location":"3829 Champlin Garden","time":"2018-07-14T11:49:02.862Z","enrolled":53203,"book":"https://marlin.biz","course_url":"https://vincenza.com"},{"course_title":"Dibbert, Jakubowski and Padberg","course_number":30521,"instructor":"Lenny MacGyver","location":"48939 Minnie Locks","time":"2018-07-14T02:49:23.363Z","enrolled":42691,"book":"http://raymundo.org","course_url":"https://garrison.org"},{"course_title":"Feeney, Bins and Hills","course_number":91676,"instructor":"Annamarie Kulas II","location":"743 Rusty Camp","time":"2018-07-14T15:40:50.876Z","enrolled":30371,"book":"http://vickie.net","course_url":"http://maritza.info"},{"course_title":"Fritsch - Lang","course_number":29031,"instructor":"Angelita Hoppe","location":"87019 Mayer Causeway","time":"2018-07-14T07:59:16.179Z","enrolled":62176,"book":"https://dawson.org","course_url":"http://grady.biz"},{"course_title":"Gerlach and Sons","course_number":78773,"instructor":"Mrs. Johanna Kihn","location":"639 Christiansen Trail","time":"2018-07-14T12:14:18.936Z","enrolled":45704,"book":"https://shea.name","course_url":"https://penelope.net"},{"course_title":"Schuster, Hickle and Lakin","course_number":48332,"instructor":"Hilario Kling","location":"391 Parker Throughway","time":"2018-07-14T17:02:55.514Z","enrolled":84770,"book":"http://ladarius.com","course_url":"https://janick.org"},{"course_title":"Harris and Sons","course_number":25100,"instructor":"Lacey Oberbrunner","location":"989 Nakia Hill","time":"2018-07-13T23:58:37.622Z","enrolled":17267,"book":"http://juvenal.biz","course_url":"http://dandre.com"},{"course_title":"Hoeger, Schmidt and Harris","course_number":13495,"instructor":"Quentin Kihn","location":"56424 Rohan Ports","time":"2018-07-14T02:47:31.965Z","enrolled":868,"book":"http://justus.info","course_url":"https://keeley.com"},{"course_title":"Rau LLC","course_number":51265,"instructor":"Selina Corwin","location":"54449 Schowalter Roads","time":"2018-07-14T11:46:59.725Z","enrolled":90095,"book":"http://sincere.biz","course_url":"https://barrett.biz"},{"course_title":"Bogisich, Windler and Kulas","course_number":60541,"instructor":"Mrs. Pink Prohaska","location":"20562 Alessia Canyon","time":"2018-07-14T09:59:55.140Z","enrolled":80320,"book":"https://esteban.com","course_url":"https://zoila.name"},{"course_title":"Cole, Little and Marquardt","course_number":90160,"instructor":"Jeremy Nicolas","location":"46536 Koelpin Fall","time":"2018-07-14T13:05:56.507Z","enrolled":46377,"book":"http://aubree.biz","course_url":"https://ima.biz"},{"course_title":"Huels Inc","course_number":98731,"instructor":"Miss Herman Emmerich","location":"33704 Omer Stream","time":"2018-07-14T08:47:30.018Z","enrolled":68458,"book":"http://rebekah.name","course_url":"http://luz.biz"},{"course_title":"Cormier, Pollich and Koelpin","course_number":79422,"instructor":"Adriana Leannon","location":"309 Emmerich Roads","time":"2018-07-14T21:40:16.417Z","enrolled":81909,"book":"http://nadia.net","course_url":"http://kaylee.org"},{"course_title":"Stracke - Spencer","course_number":44491,"instructor":"Tyson Leuschke","location":"23541 Lily Greens","time":"2018-07-14T22:37:40.708Z","enrolled":78712,"book":"http://madonna.info","course_url":"http://rowena.net"},{"course_title":"Torp, Gerhold and Shanahan","course_number":95145,"instructor":"Ms. Nadia Medhurst","location":"212 Lind Prairie","time":"2018-07-14T17:00:59.135Z","enrolled":915,"book":"https://shanny.info","course_url":"https://donna.org"},{"course_title":"Gislason - Skiles","course_number":89311,"instructor":"Miss Leda Mertz","location":"282 Rippin Loaf","time":"2018-07-14T17:31:15.210Z","enrolled":67355,"book":"https://tomas.org","course_url":"https://cristian.org"},{"course_title":"Kautzer Group","course_number":7051,"instructor":"Marcellus Emard","location":"1083 Quigley Vista","time":"2018-07-14T04:58:55.281Z","enrolled":64048,"book":"http://oceane.name","course_url":"http://diamond.biz"},{"course_title":"Prosacco - O'Reilly","course_number":99782,"instructor":"Noemy Reilly","location":"92367 Nickolas Inlet","time":"2018-07-13T23:32:24.507Z","enrolled":91876,"book":"https://emmalee.biz","course_url":"https://clemens.net"},{"course_title":"Fisher - Hane","course_number":98130,"instructor":"Mr. Tyrique Pouros","location":"3011 Neoma Crossroad","time":"2018-07-14T05:09:37.595Z","enrolled":80757,"book":"http://horacio.net","course_url":"https://adolphus.net"},{"course_title":"Witting - Rogahn","course_number":65423,"instructor":"Vilma Hessel","location":"9979 Reichert Track","time":"2018-07-14T10:07:07.003Z","enrolled":75372,"book":"http://deshawn.biz","course_url":"https://edwardo.com"},{"course_title":"Lubowitz, Pfannerstill and Tillman","course_number":10300,"instructor":"Ms. Gino Kshlerin","location":"3210 Carrie Ridge","time":"2018-07-14T00:21:30.421Z","enrolled":3680,"book":"https://howell.info","course_url":"http://eladio.net"},{"course_title":"Jaskolski - Franecki","course_number":9906,"instructor":"Maddison Ziemann","location":"26314 Rosendo Turnpike","time":"2018-07-14T12:16:07.071Z","enrolled":68530,"book":"https://gabrielle.name","course_url":"http://randi.org"},{"course_title":"Beahan, Durgan and Torphy","course_number":53614,"instructor":"Alexandro Blanda","location":"841 Stracke Terrace","time":"2018-07-14T22:57:22.692Z","enrolled":19439,"book":"http://margot.biz","course_url":"http://keely.net"},{"course_title":"Leuschke, Ullrich and Ferry","course_number":44482,"instructor":"Casandra Langworth","location":"195 Rosalinda Court","time":"2018-07-14T14:57:58.961Z","enrolled":46982,"book":"http://kitty.info","course_url":"https://jena.com"},{"course_title":"Littel, Doyle and Deckow","course_number":68953,"instructor":"Mariano Quitzon","location":"5873 Wehner Park","time":"2018-07-14T17:51:42.060Z","enrolled":69150,"book":"http://ellis.name","course_url":"https://tomas.com"},{"course_title":"Feil - Lakin","course_number":1236,"instructor":"Audreanne Wisozk","location":"5987 Alyce Ramp","time":"2018-07-14T19:55:50.378Z","enrolled":2215,"book":"https://juana.net","course_url":"https://kaelyn.biz"},{"course_title":"Jaskolski - Hirthe","course_number":82586,"instructor":"Orlo Denesik","location":"6922 Bernhard Islands","time":"2018-07-14T08:30:16.788Z","enrolled":73916,"book":"https://ashleigh.name","course_url":"http://arlo.name"},{"course_title":"Volkman, Botsford and Nitzsche","course_number":11236,"instructor":"Leonie Upton","location":"35725 Bergstrom Road","time":"2018-07-14T12:17:53.864Z","enrolled":59405,"book":"http://billie.com","course_url":"http://emery.biz"},{"course_title":"Ryan - Roberts","course_number":30001,"instructor":"Jackeline Padberg","location":"956 Allie Forge","time":"2018-07-14T04:31:47.985Z","enrolled":26882,"book":"http://irwin.com","course_url":"http://maxime.biz"},{"course_title":"Fritsch Group","course_number":99995,"instructor":"Darrion Miller","location":"7279 Andreane Mountains","time":"2018-07-14T21:38:44.194Z","enrolled":36574,"book":"http://jamil.net","course_url":"https://marisa.name"},{"course_title":"Pagac, Glover and West","course_number":67161,"instructor":"Raul Shields","location":"601 Eli Run","time":"2018-07-14T07:34:17.617Z","enrolled":64176,"book":"http://hertha.net","course_url":"https://alverta.org"},{"course_title":"Zemlak, Stanton and Jacobi","course_number":96952,"instructor":"Ms. Keith Fadel","location":"660 Beverly Knoll","time":"2018-07-14T08:03:47.959Z","enrolled":76190,"book":"http://eliezer.com","course_url":"http://albin.com"},{"course_title":"Hilll - Satterfield","course_number":36544,"instructor":"Lilliana Buckridge MD","location":"3459 Harvey Forge","time":"2018-07-14T06:18:11.589Z","enrolled":95620,"book":"https://andreanne.biz","course_url":"http://rebecca.net"},{"course_title":"Conn, Harris and Hayes","course_number":170,"instructor":"Jensen Haley","location":"06785 Danielle Crest","time":"2018-07-14T19:14:53.316Z","enrolled":20759,"book":"https://kassandra.info","course_url":"https://jocelyn.biz"},{"course_title":"Mitchell, Marks and Johnston","course_number":16965,"instructor":"Saige Lubowitz","location":"37898 Maude Turnpike","time":"2018-07-14T06:45:42.174Z","enrolled":78688,"book":"http://guido.biz","course_url":"https://mertie.name"},{"course_title":"Wintheiser Inc","course_number":23787,"instructor":"Jayson Bode","location":"26938 Noel Brooks","time":"2018-07-14T22:03:08.900Z","enrolled":53473,"book":"http://waylon.org","course_url":"http://baylee.info"},{"course_title":"Rosenbaum LLC","course_number":37913,"instructor":"Green Dickens","location":"685 Predovic Ville","time":"2018-07-14T06:38:41.321Z","enrolled":13561,"book":"https://davin.com","course_url":"https://aniya.org"},{"course_title":"Stehr, Leuschke and Wilderman","course_number":27076,"instructor":"Euna Jakubowski PhD","location":"2034 Marta Grove","time":"2018-07-14T15:58:49.860Z","enrolled":27627,"book":"http://malvina.info","course_url":"http://rosalia.info"},{"course_title":"Abbott - Goodwin","course_number":74352,"instructor":"Donnie Kertzmann","location":"773 Pat Parks","time":"2018-07-14T02:53:04.390Z","enrolled":65933,"book":"http://myrtis.name","course_url":"http://carey.biz"},{"course_title":"Gibson, Halvorson and Wilderman","course_number":1658,"instructor":"Else McGlynn","location":"536 Pink Shore","time":"2018-07-14T00:10:21.837Z","enrolled":17523,"book":"http://fermin.name","course_url":"http://salvador.name"},{"course_title":"Bogan - Bauch","course_number":70954,"instructor":"Lenora Kuhn","location":"7427 Franecki Meadow","time":"2018-07-14T18:58:58.944Z","enrolled":13799,"book":"http://ron.com","course_url":"http://angeline.com"},{"course_title":"Stiedemann Group","course_number":64596,"instructor":"Telly Metz","location":"10355 Satterfield Dale","time":"2018-07-14T21:25:03.711Z","enrolled":421,"book":"https://jefferey.info","course_url":"https://gayle.name"},{"course_title":"Sauer Group","course_number":6026,"instructor":"Melany Pacocha","location":"54080 Sipes Extension","time":"2018-07-14T06:32:35.248Z","enrolled":38761,"book":"https://jayson.org","course_url":"https://gay.org"},{"course_title":"Dicki, Koss and Boehm","course_number":47489,"instructor":"Foster Kuhn","location":"853 Stanton Pines","time":"2018-07-14T14:28:01.129Z","enrolled":41416,"book":"http://toney.org","course_url":"https://michel.com"},{"course_title":"Armstrong, Kihn and Kihn","course_number":92759,"instructor":"Tyrell Wunsch","location":"292 Boyle Mews","time":"2018-07-14T20:07:14.612Z","enrolled":61733,"book":"https://hunter.org","course_url":"http://jacklyn.name"},{"course_title":"Blanda - Batz","course_number":95125,"instructor":"Erick Maggio IV","location":"69094 Okuneva Crest","time":"2018-07-14T15:24:16.730Z","enrolled":63808,"book":"https://makenzie.com","course_url":"http://kirstin.com"},{"course_title":"Rogahn, Mraz and Pouros","course_number":33481,"instructor":"Hortense Kemmer","location":"72424 Kuphal Locks","time":"2018-07-14T09:38:54.405Z","enrolled":38683,"book":"https://kyler.net","course_url":"http://ara.info"},{"course_title":"Wilderman - Dicki","course_number":43614,"instructor":"Carson Botsford","location":"0442 Mae Tunnel","time":"2018-07-14T14:34:40.828Z","enrolled":83026,"book":"https://claude.com","course_url":"https://bethany.name"},{"course_title":"Nikolaus Inc","course_number":92095,"instructor":"Halie Brekke","location":"272 Heaney Estates","time":"2018-07-14T17:16:11.825Z","enrolled":14761,"book":"http://curt.biz","course_url":"http://deion.net"},{"course_title":"Jenkins - Rau","course_number":88776,"instructor":"Ronaldo Heathcote","location":"361 Florence Turnpike","time":"2018-07-14T19:01:47.725Z","enrolled":56982,"book":"http://jakayla.name","course_url":"http://susan.com"},{"course_title":"Muller, Gutkowski and Bode","course_number":28814,"instructor":"Zetta Jacobson","location":"3799 Flatley Camp","time":"2018-07-14T10:32:13.104Z","enrolled":81136,"book":"http://landen.info","course_url":"http://avery.com"},{"course_title":"Terry - Konopelski","course_number":25511,"instructor":"Myrna Zemlak","location":"921 Ena Tunnel","time":"2018-07-14T11:51:42.127Z","enrolled":97739,"book":"http://zella.com","course_url":"http://reanna.net"},{"course_title":"Kuhlman, Shields and Waters","course_number":44978,"instructor":"Adrianna Muller","location":"98062 Frieda Tunnel","time":"2018-07-14T14:25:52.736Z","enrolled":4965,"book":"http://jillian.info","course_url":"http://kelsi.info"},{"course_title":"Ritchie and Sons","course_number":96225,"instructor":"Marvin Ernser","location":"838 Kaela Hill","time":"2018-07-14T02:56:16.391Z","enrolled":51771,"book":"https://maximilian.info","course_url":"https://garth.info"},{"course_title":"Marquardt, Williamson and Lindgren","course_number":22919,"instructor":"Lenore Gislason","location":"736 Wintheiser Mills","time":"2018-07-14T13:59:47.379Z","enrolled":13316,"book":"https://janis.net","course_url":"http://holly.info"},{"course_title":"Robel and Sons","course_number":56631,"instructor":"Lloyd Nicolas","location":"01634 Schimmel Crest","time":"2018-07-14T23:04:29.019Z","enrolled":1403,"book":"http://candido.net","course_url":"http://cecil.name"},{"course_title":"Weber - Christiansen","course_number":5697,"instructor":"Lillie Bruen","location":"57720 Kelley Ridge","time":"2018-07-14T19:50:49.279Z","enrolled":30611,"book":"https://hailie.net","course_url":"https://alexane.info"},{"course_title":"Lind and Sons","course_number":47467,"instructor":"Anjali Trantow","location":"618 Brown Forges","time":"2018-07-14T04:31:17.705Z","enrolled":73657,"book":"https://mohamed.com","course_url":"https://cindy.org"},{"course_title":"Stark LLC","course_number":35737,"instructor":"Marley Weber","location":"6555 Raoul Village","time":"2018-07-13T23:59:41.422Z","enrolled":53301,"book":"http://giuseppe.name","course_url":"https://haylee.com"},{"course_title":"Huels LLC","course_number":12413,"instructor":"Orlando Bashirian","location":"0151 Denesik Streets","time":"2018-07-14T13:34:15.560Z","enrolled":38701,"book":"http://russ.org","course_url":"https://dwight.net"},{"course_title":"Jenkins, Walter and Carter","course_number":11683,"instructor":"Johan Morissette","location":"85440 Waylon Inlet","time":"2018-07-14T08:12:44.660Z","enrolled":78050,"book":"http://pascale.net","course_url":"https://donna.biz"},{"course_title":"McGlynn, Thompson and Renner","course_number":51862,"instructor":"Marcelino Stracke II","location":"764 Schowalter Branch","time":"2018-07-14T10:38:33.543Z","enrolled":2787,"book":"http://richmond.biz","course_url":"https://bryon.org"},{"course_title":"Kuhlman, Spinka and Hills","course_number":49811,"instructor":"Mrs. Danny Hermann","location":"202 DuBuque Gateway","time":"2018-07-14T18:55:56.723Z","enrolled":87172,"book":"https://roy.org","course_url":"http://kaylah.net"},{"course_title":"Kohler, Wisoky and Koch","course_number":57390,"instructor":"Demarcus Feil","location":"61318 Lon Port","time":"2018-07-14T11:03:21.055Z","enrolled":66130,"book":"https://neoma.name","course_url":"https://toy.org"},{"course_title":"Stehr - Hegmann","course_number":94535,"instructor":"Hosea Fadel","location":"8692 Tremblay Ferry","time":"2018-07-14T12:07:46.017Z","enrolled":55570,"book":"http://laurine.info","course_url":"https://amalia.org"},{"course_title":"Monahan and Sons","course_number":79732,"instructor":"Etha Block","location":"92206 Eldon Springs","time":"2018-07-14T13:35:53.914Z","enrolled":91099,"book":"http://lucie.name","course_url":"https://mustafa.org"},{"course_title":"Harber Group","course_number":68207,"instructor":"Presley Nitzsche","location":"46183 Murl Prairie","time":"2018-07-14T09:58:13.940Z","enrolled":27491,"book":"https://rod.com","course_url":"https://dameon.com"},{"course_title":"Spinka, Bosco and Borer","course_number":9645,"instructor":"Eudora Reilly","location":"824 Norma Corner","time":"2018-07-14T13:52:06.441Z","enrolled":93166,"book":"https://imogene.net","course_url":"http://alfreda.com"},{"course_title":"Thiel and Sons","course_number":53917,"instructor":"Mrs. Travon Satterfield","location":"680 Wilderman Isle","time":"2018-07-14T11:02:41.485Z","enrolled":41072,"book":"https://orlo.name","course_url":"http://elsie.com"},{"course_title":"Harber Group","course_number":12487,"instructor":"Ms. Jarret Little","location":"3280 Mathilde Burg","time":"2018-07-14T10:35:47.685Z","enrolled":35870,"book":"https://ashly.com","course_url":"http://carlee.org"},{"course_title":"Barton, Gottlieb and Ratke","course_number":21231,"instructor":"Isaiah Pagac","location":"09205 Hessel Manor","time":"2018-07-14T17:07:56.344Z","enrolled":61709,"book":"https://sophia.org","course_url":"http://darren.net"},{"course_title":"Carroll, Pacocha and Lesch","course_number":98223,"instructor":"Asa Crooks","location":"37443 Schaden Falls","time":"2018-07-14T03:31:46.990Z","enrolled":60020,"book":"https://tyler.org","course_url":"http://alfonso.com"},{"course_title":"Crona, Walter and Schamberger","course_number":8813,"instructor":"Tad Kunze","location":"4747 Lily Pass","time":"2018-07-14T12:57:05.182Z","enrolled":37045,"book":"http://lauretta.com","course_url":"https://germaine.name"},{"course_title":"Luettgen, Kuhic and King","course_number":19688,"instructor":"Holly Will","location":"7036 Mayert Mount","time":"2018-07-13T23:14:37.817Z","enrolled":15899,"book":"https://velda.org","course_url":"http://myrtle.net"},{"course_title":"Nitzsche - Ullrich","course_number":13796,"instructor":"Declan Hartmann","location":"21127 Noelia Land","time":"2018-07-14T12:42:35.536Z","enrolled":36756,"book":"http://anibal.net","course_url":"http://providenci.info"},{"course_title":"Reynolds Inc","course_number":50368,"instructor":"Lucinda McLaughlin","location":"6168 Lehner Loop","time":"2018-07-14T16:16:40.289Z","enrolled":68235,"book":"https://graciela.net","course_url":"https://georgianna.biz"},{"course_title":"Dickens, Rogahn and Terry","course_number":40080,"instructor":"Leanne Batz","location":"7821 Williamson Stravenue","time":"2018-07-14T10:50:14.865Z","enrolled":55919,"book":"https://allene.biz","course_url":"https://kurt.org"},{"course_title":"Koch, Lowe and Borer","course_number":35103,"instructor":"Lucienne Sporer PhD","location":"090 Rudolph Tunnel","time":"2018-07-14T09:42:17.388Z","enrolled":64167,"book":"https://isai.name","course_url":"https://kiel.com"},{"course_title":"Sipes - Boehm","course_number":41928,"instructor":"Dario Stark","location":"721 Mills Isle","time":"2018-07-14T02:33:44.521Z","enrolled":89126,"book":"https://beverly.info","course_url":"https://demond.net"},{"course_title":"Sawayn - Haley","course_number":53082,"instructor":"Aurelie Champlin","location":"02018 Reina Roads","time":"2018-07-14T19:51:59.345Z","enrolled":22044,"book":"http://lindsay.info","course_url":"http://tina.com"},{"course_title":"Hegmann and Sons","course_number":8193,"instructor":"Efren Hagenes IV","location":"74530 Weissnat Row","time":"2018-07-14T06:00:28.517Z","enrolled":57588,"book":"http://kailyn.info","course_url":"http://tressa.org"},{"course_title":"Aufderhar - Murray","course_number":8527,"instructor":"Jalyn Bahringer V","location":"62973 Antoinette Cliffs","time":"2018-07-14T22:44:10.147Z","enrolled":8863,"book":"https://winifred.biz","course_url":"https://penelope.com"},{"course_title":"Nienow - Smitham","course_number":4879,"instructor":"Madyson Kulas","location":"2852 Darby Viaduct","time":"2018-07-14T22:50:55.412Z","enrolled":86814,"book":"http://watson.name","course_url":"https://gloria.name"},{"course_title":"Breitenberg Inc","course_number":32490,"instructor":"Mr. Horace Hammes","location":"39358 Norma Plains","time":"2018-07-13T23:51:17.309Z","enrolled":58389,"book":"https://linnea.biz","course_url":"https://laury.net"},{"course_title":"Koch - Littel","course_number":79915,"instructor":"Korbin Hegmann","location":"07430 Ford Glens","time":"2018-07-14T02:18:31.521Z","enrolled":40901,"book":"https://elva.name","course_url":"https://thomas.com"},{"course_title":"Conn, Moen and Corkery","course_number":76041,"instructor":"Alexa Dibbert","location":"3791 Brennan Point","time":"2018-07-14T14:06:08.136Z","enrolled":47002,"book":"https://virginia.name","course_url":"http://corine.org"},{"course_title":"Walter - Denesik","course_number":54923,"instructor":"Daisha Daugherty","location":"92511 Purdy Light","time":"2018-07-14T12:05:55.757Z","enrolled":65671,"book":"https://jewell.name","course_url":"http://shaina.net"},{"course_title":"Wilkinson, Batz and Ruecker","course_number":35947,"instructor":"Alejandra Klein","location":"310 Brown Street","time":"2018-07-14T01:45:59.657Z","enrolled":19387,"book":"https://jamison.info","course_url":"http://eileen.org"},{"course_title":"O'Hara, Swaniawski and Bednar","course_number":50490,"instructor":"Eusebio Hahn","location":"573 Dallas Mall","time":"2018-07-14T04:33:34.769Z","enrolled":43940,"book":"https://alexandra.net","course_url":"http://roxanne.com"},{"course_title":"Collins, Langworth and Halvorson","course_number":12426,"instructor":"Patience Reichel","location":"914 Osvaldo Shoal","time":"2018-07-14T06:34:39.699Z","enrolled":24488,"book":"https://hadley.biz","course_url":"http://zula.info"},{"course_title":"Davis - Ritchie","course_number":17091,"instructor":"Salvador Funk","location":"25980 Wuckert Terrace","time":"2018-07-14T11:46:11.954Z","enrolled":42028,"book":"https://alessandra.org","course_url":"http://scarlett.com"},{"course_title":"Corwin - Ward","course_number":38818,"instructor":"Giovani Welch","location":"17287 Brigitte Lane","time":"2018-07-14T04:39:08.821Z","enrolled":19179,"book":"http://francesca.org","course_url":"http://ayden.org"},{"course_title":"Leuschke - Kshlerin","course_number":58588,"instructor":"Hadley Wisozk I","location":"10618 Schowalter Rue","time":"2018-07-14T17:07:55.087Z","enrolled":41806,"book":"https://natalie.biz","course_url":"http://carmella.info"},{"course_title":"Hirthe and Sons","course_number":26112,"instructor":"Mollie Von","location":"69585 Zemlak Branch","time":"2018-07-13T23:31:55.653Z","enrolled":31310,"book":"http://stanley.org","course_url":"http://moises.net"},{"course_title":"Daniel - O'Connell","course_number":27860,"instructor":"Manuel Lebsack","location":"844 Samanta Keys","time":"2018-07-14T16:20:58.352Z","enrolled":94731,"book":"http://arlene.biz","course_url":"http://neal.com"},{"course_title":"Dickens - Bruen","course_number":8052,"instructor":"Alexandrine Bergstrom","location":"43690 Yasmin Hollow","time":"2018-07-14T20:53:28.127Z","enrolled":44426,"book":"http://keira.name","course_url":"http://wendy.biz"},{"course_title":"McLaughlin, Kuhn and Mills","course_number":23138,"instructor":"Princess Hegmann","location":"783 Walter Expressway","time":"2018-07-14T13:53:33.916Z","enrolled":6906,"book":"http://cassie.info","course_url":"https://kennedy.name"},{"course_title":"Bruen - Armstrong","course_number":30347,"instructor":"Thurman Bechtelar","location":"081 Linnea Route","time":"2018-07-14T10:11:54.069Z","enrolled":58432,"book":"http://aliyah.name","course_url":"https://julien.biz"},{"course_title":"Kutch Group","course_number":30053,"instructor":"Jermaine Kunde","location":"61432 Effertz Junction","time":"2018-07-14T01:12:10.811Z","enrolled":48656,"book":"http://mollie.org","course_url":"https://kareem.name"},{"course_title":"Green - Schinner","course_number":24592,"instructor":"Mrs. Delores Sawayn","location":"7560 Hassan Field","time":"2018-07-14T00:26:52.156Z","enrolled":79994,"book":"http://charlie.name","course_url":"https://adan.name"},{"course_title":"Sawayn and Sons","course_number":8889,"instructor":"Jan Emmerich","location":"84778 Johann Station","time":"2018-07-14T12:01:02.304Z","enrolled":54694,"book":"http://london.com","course_url":"http://ramona.net"},{"course_title":"Bernhard - Goodwin","course_number":61376,"instructor":"Colton Becker","location":"592 Luettgen Greens","time":"2018-07-14T02:23:56.729Z","enrolled":387,"book":"http://kacey.info","course_url":"https://shanon.name"},{"course_title":"Lebsack and Sons","course_number":16064,"instructor":"Darrell Schuster","location":"07171 Carlee Ridge","time":"2018-07-14T07:48:10.129Z","enrolled":50620,"book":"http://dewitt.info","course_url":"http://lisette.info"},{"course_title":"Boyer, Turcotte and Oberbrunner","course_number":13343,"instructor":"Carmine Barrows","location":"4226 Bashirian Village","time":"2018-07-14T21:27:23.809Z","enrolled":37203,"book":"http://osbaldo.biz","course_url":"https://vesta.org"},{"course_title":"Reinger Group","course_number":40784,"instructor":"Modesto Feil","location":"4012 Morar Island","time":"2018-07-14T21:43:27.083Z","enrolled":75672,"book":"https://jairo.biz","course_url":"https://rudolph.name"},{"course_title":"Hermiston - Quigley","course_number":645,"instructor":"Dr. Spencer Kirlin","location":"05234 Leta Stravenue","time":"2018-07-14T01:20:25.362Z","enrolled":83078,"book":"http://abner.biz","course_url":"http://santiago.org"},{"course_title":"Bergstrom, Carroll and Schmidt","course_number":32337,"instructor":"Alejandra Rempel","location":"57845 Emelia Ports","time":"2018-07-14T15:32:30.348Z","enrolled":89366,"book":"http://cesar.com","course_url":"http://theresia.biz"},{"course_title":"Metz - Kunze","course_number":74254,"instructor":"Hosea Cummings","location":"09291 Fisher View","time":"2018-07-14T19:29:57.487Z","enrolled":53500,"book":"http://patricia.name","course_url":"https://jerrold.com"},{"course_title":"Lindgren Inc","course_number":78100,"instructor":"Arvilla Osinski","location":"7240 Kevon Wells","time":"2018-07-14T14:05:14.627Z","enrolled":45832,"book":"https://nikita.com","course_url":"https://gilda.org"},{"course_title":"Daniel - Stracke","course_number":86003,"instructor":"Petra McDermott","location":"81930 Grimes Estate","time":"2018-07-14T17:24:09.212Z","enrolled":16975,"book":"http://lilla.biz","course_url":"http://destiney.biz"},{"course_title":"Kemmer, Turcotte and O'Hara","course_number":7528,"instructor":"Layla Sanford","location":"7926 O'Hara Trail","time":"2018-07-14T10:45:04.628Z","enrolled":61594,"book":"http://zelda.info","course_url":"https://hilario.org"},{"course_title":"Mayer Group","course_number":75164,"instructor":"Nyasia Bosco","location":"90197 Gene Camp","time":"2018-07-14T06:28:06.167Z","enrolled":24348,"book":"http://liliana.biz","course_url":"http://ericka.net"},{"course_title":"Barrows - Kertzmann","course_number":84550,"instructor":"Carmine Murphy","location":"16145 Jerrod Circle","time":"2018-07-14T19:14:22.544Z","enrolled":66940,"book":"http://dedrick.biz","course_url":"https://lysanne.net"},{"course_title":"Schulist, Heller and Wuckert","course_number":49122,"instructor":"Marisol DuBuque","location":"76167 Runte Key","time":"2018-07-14T09:33:55.603Z","enrolled":88568,"book":"http://ezra.info","course_url":"https://eloisa.name"},{"course_title":"McLaughlin and Sons","course_number":42675,"instructor":"Shaniya Grimes","location":"965 Dietrich Fords","time":"2018-07-13T23:24:34.733Z","enrolled":14490,"book":"http://shana.org","course_url":"http://melba.com"},{"course_title":"Waelchi LLC","course_number":38396,"instructor":"Isabelle McLaughlin","location":"17960 Walton Creek","time":"2018-07-14T06:05:46.188Z","enrolled":48291,"book":"http://mireya.com","course_url":"http://dawson.org"},{"course_title":"Schmeler - Deckow","course_number":70712,"instructor":"Quincy Mante","location":"51631 Huels Village","time":"2018-07-14T05:10:12.434Z","enrolled":44704,"book":"http://zetta.info","course_url":"https://harmony.name"},{"course_title":"Willms, Funk and Senger","course_number":87172,"instructor":"Mikel Maggio","location":"50038 Morissette Cape","time":"2018-07-14T20:28:07.636Z","enrolled":36801,"book":"http://trevor.net","course_url":"https://hailey.biz"},{"course_title":"Wuckert, Schneider and Stehr","course_number":96245,"instructor":"Clementine Brown","location":"817 Keeling Throughway","time":"2018-07-14T13:08:56.036Z","enrolled":57722,"book":"http://doyle.com","course_url":"https://elliott.org"},{"course_title":"Stoltenberg - Nitzsche","course_number":88312,"instructor":"Cameron Powlowski","location":"5852 Cole Curve","time":"2018-07-14T09:13:33.873Z","enrolled":87848,"book":"https://aimee.org","course_url":"http://cheyanne.org"},{"course_title":"Smitham and Sons","course_number":21100,"instructor":"Hector Muller","location":"2161 Schumm Locks","time":"2018-07-14T09:43:12.268Z","enrolled":65335,"book":"https://allene.biz","course_url":"http://delpha.org"},{"course_title":"Runte LLC","course_number":89024,"instructor":"Delphine Wilkinson","location":"0711 Samantha Plain","time":"2018-07-14T17:08:36.359Z","enrolled":43871,"book":"https://brisa.biz","course_url":"http://wilmer.com"},{"course_title":"Wolf, Will and Davis","course_number":32700,"instructor":"Karelle Kunde","location":"15994 Laisha Courts","time":"2018-07-14T22:27:18.914Z","enrolled":14143,"book":"http://guido.com","course_url":"https://dayna.net"},{"course_title":"Kertzmann, Champlin and Leuschke","course_number":97063,"instructor":"Phyllis Koelpin","location":"017 Jonathan Place","time":"2018-07-14T05:51:53.635Z","enrolled":36161,"book":"http://elsa.com","course_url":"https://dominique.org"},{"course_title":"Larkin Group","course_number":37789,"instructor":"Keven McGlynn","location":"1499 Yost Lodge","time":"2018-07-14T00:20:42.340Z","enrolled":50201,"book":"http://santino.biz","course_url":"https://dorothea.name"},{"course_title":"Bode - Leffler","course_number":31427,"instructor":"Edmond Schumm","location":"933 Brakus Spur","time":"2018-07-14T04:11:21.267Z","enrolled":84998,"book":"http://emile.biz","course_url":"http://rhett.biz"},{"course_title":"Kozey and Sons","course_number":57964,"instructor":"Forest Lesch","location":"9611 Patsy Squares","time":"2018-07-14T22:00:44.964Z","enrolled":18942,"book":"https://petra.org","course_url":"http://ines.name"},{"course_title":"Bernhard, Miller and Goyette","course_number":54713,"instructor":"Jean Kohler","location":"051 Hank Mountain","time":"2018-07-14T12:16:06.371Z","enrolled":45127,"book":"https://clement.org","course_url":"https://clifton.info"},{"course_title":"Kub and Sons","course_number":58919,"instructor":"Ashley Wintheiser","location":"7022 Mann Lock","time":"2018-07-14T02:21:38.289Z","enrolled":40608,"book":"http://bo.info","course_url":"http://dock.info"},{"course_title":"Lang, Cronin and Nikolaus","course_number":2467,"instructor":"Jolie Shields","location":"03639 Considine Track","time":"2018-07-14T16:26:27.055Z","enrolled":68948,"book":"http://uriah.info","course_url":"https://waldo.org"},{"course_title":"Romaguera, Goodwin and Adams","course_number":42191,"instructor":"Abagail Wolff","location":"362 Bianka Branch","time":"2018-07-14T00:43:48.073Z","enrolled":97237,"book":"http://nigel.com","course_url":"https://deon.biz"},{"course_title":"Ondricka LLC","course_number":27545,"instructor":"Mary Streich","location":"575 Wyman Ford","time":"2018-07-14T07:26:16.727Z","enrolled":13328,"book":"https://katrina.org","course_url":"http://beverly.info"},{"course_title":"Schuppe Inc","course_number":30134,"instructor":"Ronaldo Thiel II","location":"901 Lyda Pike","time":"2018-07-14T09:18:30.615Z","enrolled":82996,"book":"http://rahsaan.com","course_url":"https://patricia.name"},{"course_title":"Reynolds, Hahn and Cremin","course_number":97343,"instructor":"Ms. Iva Dooley","location":"33137 Stuart Village","time":"2018-07-14T09:09:59.369Z","enrolled":86653,"book":"https://madilyn.com","course_url":"http://annamarie.net"},{"course_title":"Reinger, Kilback and Cronin","course_number":79507,"instructor":"Estel Schneider","location":"790 Douglas Stravenue","time":"2018-07-14T07:40:31.712Z","enrolled":53917,"book":"http://aaron.net","course_url":"http://dangelo.info"},{"course_title":"Zboncak, Deckow and Lehner","course_number":55845,"instructor":"Esta Doyle","location":"5660 Waters Manor","time":"2018-07-14T11:31:59.112Z","enrolled":36625,"book":"https://ford.net","course_url":"https://dolores.net"},{"course_title":"Fahey and Sons","course_number":28930,"instructor":"Edythe Wiegand","location":"8300 Rath Roads","time":"2018-07-14T03:44:55.463Z","enrolled":32900,"book":"http://aletha.org","course_url":"http://halle.org"},{"course_title":"Yundt - Lakin","course_number":45471,"instructor":"Cathrine Rohan","location":"0557 Icie Hollow","time":"2018-07-14T17:01:51.478Z","enrolled":40401,"book":"https://preston.net","course_url":"http://kurt.biz"},{"course_title":"Smith - Schamberger","course_number":693,"instructor":"Deangelo Carroll DDS","location":"04483 Gaylord Creek","time":"2018-07-14T01:01:53.694Z","enrolled":17690,"book":"https://michelle.info","course_url":"http://travis.biz"},{"course_title":"Brakus, Swaniawski and Pacocha","course_number":5138,"instructor":"Dr. Vergie Wolf","location":"208 Wilford Canyon","time":"2018-07-14T02:49:02.017Z","enrolled":38718,"book":"http://janae.biz","course_url":"http://lawrence.net"},{"course_title":"Schuppe - Konopelski","course_number":12023,"instructor":"Lindsey Schroeder I","location":"31505 Konopelski Ridge","time":"2018-07-14T02:27:16.154Z","enrolled":97537,"book":"http://eleanora.net","course_url":"http://jameson.name"},{"course_title":"Feil, Paucek and Conroy","course_number":56154,"instructor":"Andrew Roberts","location":"7883 Greta Island","time":"2018-07-14T00:00:49.756Z","enrolled":15590,"book":"http://ashlee.name","course_url":"https://marilie.org"},{"course_title":"Goldner, Koepp and Kling","course_number":75199,"instructor":"Dale Schulist","location":"9245 Borer Green","time":"2018-07-14T05:00:16.547Z","enrolled":55003,"book":"http://everardo.biz","course_url":"http://kaela.net"},{"course_title":"Ziemann - Farrell","course_number":16448,"instructor":"Lorenzo Lang","location":"406 Trantow Hills","time":"2018-07-14T18:20:27.243Z","enrolled":21621,"book":"https://nedra.com","course_url":"http://novella.name"},{"course_title":"Stokes - Stark","course_number":34827,"instructor":"Anabelle Satterfield","location":"120 Savion Forge","time":"2018-07-14T09:51:20.576Z","enrolled":98064,"book":"http://jacky.com","course_url":"https://earline.org"},{"course_title":"Williamson LLC","course_number":11744,"instructor":"Mrs. Opal Sporer","location":"373 Bernhard Court","time":"2018-07-14T16:41:37.688Z","enrolled":75402,"book":"http://kaley.net","course_url":"https://berniece.name"},{"course_title":"Ward - Adams","course_number":21502,"instructor":"Kianna Bruen","location":"871 Nannie Alley","time":"2018-07-13T23:29:18.090Z","enrolled":69972,"book":"http://rosemarie.net","course_url":"https://abe.com"},{"course_title":"Douglas LLC","course_number":15112,"instructor":"Stone Bradtke","location":"85702 Lloyd Stravenue","time":"2018-07-14T15:52:20.342Z","enrolled":46135,"book":"https://pansy.com","course_url":"http://name.name"},{"course_title":"Kiehn - Hilll","course_number":13916,"instructor":"Haskell Howe","location":"20310 Langosh Ways","time":"2018-07-14T11:50:49.918Z","enrolled":5769,"book":"http://althea.name","course_url":"https://isidro.biz"},{"course_title":"Bartoletti, Tillman and Mueller","course_number":41727,"instructor":"Royce Conn","location":"4691 Auer Ports","time":"2018-07-14T21:35:15.506Z","enrolled":25413,"book":"https://cathrine.net","course_url":"http://savanah.info"},{"course_title":"Lakin - Skiles","course_number":49648,"instructor":"Hector Doyle","location":"73061 Blick Rue","time":"2018-07-14T06:16:00.699Z","enrolled":49898,"book":"https://zack.com","course_url":"http://herbert.org"},{"course_title":"Fisher, Leffler and Lemke","course_number":37049,"instructor":"Miss Magdalena Gutkowski","location":"01483 Rodriguez Ways","time":"2018-07-14T19:41:04.684Z","enrolled":73005,"book":"https://lila.biz","course_url":"https://era.biz"},{"course_title":"Crooks - Kemmer","course_number":55462,"instructor":"Geoffrey Collins","location":"6822 Zulauf Ridges","time":"2018-07-14T06:39:17.940Z","enrolled":22161,"book":"http://jimmy.info","course_url":"https://jewell.info"},{"course_title":"Yundt, Weimann and Brakus","course_number":92274,"instructor":"Ms. Bill Skiles","location":"8999 Wuckert Island","time":"2018-07-14T16:18:49.311Z","enrolled":71901,"book":"https://luther.name","course_url":"http://emily.name"},{"course_title":"Leuschke, Gorczany and Osinski","course_number":63123,"instructor":"Vanessa Wilkinson","location":"40816 Nick Creek","time":"2018-07-14T08:26:34.325Z","enrolled":55568,"book":"https://gerda.biz","course_url":"http://megane.org"},{"course_title":"Morissette Group","course_number":4531,"instructor":"Ines VonRueden","location":"262 Bosco Fork","time":"2018-07-14T19:14:53.941Z","enrolled":28089,"book":"http://ivah.org","course_url":"http://jana.net"},{"course_title":"Grant Inc","course_number":30028,"instructor":"Rachael Cole","location":"029 Bahringer Loaf","time":"2018-07-14T01:55:37.299Z","enrolled":10976,"book":"https://leta.biz","course_url":"http://jerad.com"},{"course_title":"Towne and Sons","course_number":82574,"instructor":"Chet Koelpin","location":"3460 Franecki Turnpike","time":"2018-07-14T10:56:28.570Z","enrolled":56447,"book":"https://marge.biz","course_url":"http://brayan.org"},{"course_title":"Barton Group","course_number":71566,"instructor":"Maude Prohaska Jr.","location":"427 Rice Flat","time":"2018-07-14T09:52:25.544Z","enrolled":6167,"book":"http://paula.name","course_url":"https://bryana.net"},{"course_title":"Waelchi LLC","course_number":59401,"instructor":"Brad Mertz","location":"61749 Matilde Camp","time":"2018-07-14T18:52:27.970Z","enrolled":46594,"book":"http://rubye.org","course_url":"http://noelia.org"},{"course_title":"McGlynn, Jerde and Ledner","course_number":57887,"instructor":"Cheyanne Romaguera","location":"50765 Kamron Turnpike","time":"2018-07-14T04:00:48.423Z","enrolled":79913,"book":"http://frieda.name","course_url":"https://alysha.net"},{"course_title":"Wiza, Bashirian and Toy","course_number":70775,"instructor":"Ilene Koelpin","location":"2926 Toney Turnpike","time":"2018-07-14T01:41:27.753Z","enrolled":93136,"book":"http://lila.biz","course_url":"https://sonia.com"},{"course_title":"Emard Inc","course_number":9182,"instructor":"Fredy Hammes","location":"328 Konopelski Center","time":"2018-07-14T22:40:49.516Z","enrolled":30645,"book":"https://dexter.org","course_url":"http://vicente.net"},{"course_title":"Weissnat Inc","course_number":17628,"instructor":"Marilyne Koelpin","location":"90056 Keshaun Underpass","time":"2018-07-14T20:26:20.942Z","enrolled":13277,"book":"https://gabrielle.name","course_url":"https://velva.com"},{"course_title":"Gutkowski, Grady and Hessel","course_number":95516,"instructor":"Arlene Stanton","location":"94066 Lavon Street","time":"2018-07-14T06:55:28.795Z","enrolled":2377,"book":"http://hiram.org","course_url":"https://agustin.org"},{"course_title":"Konopelski - Carroll","course_number":45736,"instructor":"Rosalyn Roberts","location":"1239 Tod Dam","time":"2018-07-14T16:09:13.717Z","enrolled":53728,"book":"https://ruth.com","course_url":"https://madonna.org"},{"course_title":"Walter, Nitzsche and Wiza","course_number":89132,"instructor":"Gerda Vandervort","location":"254 Jacinthe Mills","time":"2018-07-14T10:44:08.496Z","enrolled":22469,"book":"http://tia.net","course_url":"https://reta.com"},{"course_title":"Powlowski, Hayes and Frami","course_number":67706,"instructor":"Francisca Kreiger","location":"949 Rau Plain","time":"2018-07-14T17:41:03.744Z","enrolled":31350,"book":"https://scotty.com","course_url":"https://sandra.net"},{"course_title":"Borer and Sons","course_number":47793,"instructor":"Wilmer Abbott","location":"078 Frederic Glen","time":"2018-07-14T18:37:18.534Z","enrolled":84889,"book":"http://frank.org","course_url":"https://fleta.biz"},{"course_title":"Kihn, Jerde and Hills","course_number":80973,"instructor":"Beatrice DuBuque III","location":"0192 Volkman Highway","time":"2018-07-14T22:00:36.165Z","enrolled":86642,"book":"http://tony.com","course_url":"https://markus.biz"},{"course_title":"Lueilwitz, Greenfelder and Kreiger","course_number":93464,"instructor":"Otha Runolfsdottir","location":"93185 Sterling Oval","time":"2018-07-14T19:41:31.636Z","enrolled":23885,"book":"https://adolphus.info","course_url":"http://myron.name"},{"course_title":"Cronin, Olson and Price","course_number":1211,"instructor":"Maud Hackett","location":"28048 Dejuan Springs","time":"2018-07-14T00:39:41.140Z","enrolled":30349,"book":"https://mervin.name","course_url":"http://lourdes.name"},{"course_title":"Mann and Sons","course_number":58327,"instructor":"Everett Kunze","location":"284 Raynor Port","time":"2018-07-14T03:59:25.682Z","enrolled":91293,"book":"http://ashley.net","course_url":"https://nicholas.net"},{"course_title":"Cole - Kovacek","course_number":9855,"instructor":"Kiera Hilpert I","location":"27541 Prosacco Trail","time":"2018-07-14T16:18:38.576Z","enrolled":21834,"book":"https://cade.org","course_url":"https://tremayne.org"},{"course_title":"Hirthe - Simonis","course_number":52617,"instructor":"Gisselle Gerhold","location":"815 Esmeralda Highway","time":"2018-07-14T14:46:55.901Z","enrolled":32621,"book":"https://megane.name","course_url":"https://micaela.info"},{"course_title":"Spencer - Gislason","course_number":8926,"instructor":"Carlo Labadie","location":"7726 Jimmy Union","time":"2018-07-14T01:16:32.760Z","enrolled":19358,"book":"http://barton.net","course_url":"http://camylle.com"},{"course_title":"O'Connell and Sons","course_number":3634,"instructor":"Kenna Nolan","location":"01964 Schmidt Oval","time":"2018-07-14T07:34:48.802Z","enrolled":93790,"book":"http://elisabeth.info","course_url":"https://claire.biz"},{"course_title":"Walsh - Renner","course_number":91544,"instructor":"Genesis Bechtelar","location":"4169 Kendra Route","time":"2018-07-14T22:28:49.212Z","enrolled":10467,"book":"https://barrett.net","course_url":"http://riley.name"},{"course_title":"Shields, Prohaska and Hermann","course_number":69335,"instructor":"Deja Rohan","location":"605 Corwin Knolls","time":"2018-07-14T19:05:43.777Z","enrolled":26613,"book":"http://vicky.name","course_url":"http://lilla.info"},{"course_title":"Gislason Group","course_number":23425,"instructor":"Anibal Schimmel","location":"306 Amparo Pine","time":"2018-07-14T14:42:29.353Z","enrolled":46948,"book":"http://ruthe.biz","course_url":"http://lexi.name"},{"course_title":"Purdy - Torp","course_number":79271,"instructor":"Frank Greenholt","location":"025 Gustave Trail","time":"2018-07-14T08:36:53.396Z","enrolled":66010,"book":"https://christina.com","course_url":"https://tyrel.biz"},{"course_title":"Hodkiewicz Group","course_number":74229,"instructor":"Howard Wolff","location":"93255 Homenick Divide","time":"2018-07-14T02:28:04.711Z","enrolled":66261,"book":"http://mertie.name","course_url":"https://kayley.com"},{"course_title":"Kuvalis - Bergstrom","course_number":26647,"instructor":"Cecil Kunze III","location":"37208 Jacobs Ridge","time":"2018-07-14T04:42:04.478Z","enrolled":81601,"book":"https://alexandro.org","course_url":"https://olga.net"},{"course_title":"Grimes, Johnston and Tromp","course_number":71429,"instructor":"Brain Cummings","location":"152 Mertz Mews","time":"2018-07-14T16:08:29.463Z","enrolled":83402,"book":"https://makenna.name","course_url":"https://stanford.org"},{"course_title":"Homenick, Bahringer and Kautzer","course_number":37465,"instructor":"Isadore Schowalter","location":"4880 Misty Roads","time":"2018-07-14T00:51:34.275Z","enrolled":53652,"book":"http://heloise.com","course_url":"https://chase.com"},{"course_title":"Welch, Ankunding and McClure","course_number":48977,"instructor":"Carlo Wiza","location":"08138 Earline Terrace","time":"2018-07-14T09:34:13.126Z","enrolled":63637,"book":"http://kyler.biz","course_url":"http://kathryn.net"},{"course_title":"Roob, Cremin and Marvin","course_number":52551,"instructor":"Cortney Heller","location":"788 Howe Highway","time":"2018-07-14T04:47:01.581Z","enrolled":66803,"book":"https://gillian.com","course_url":"https://therese.com"},{"course_title":"Keeling LLC","course_number":72323,"instructor":"Hank Haley MD","location":"8136 Heidenreich Canyon","time":"2018-07-14T21:40:29.733Z","enrolled":69342,"book":"http://laury.org","course_url":"http://nico.org"},{"course_title":"Larson, Ebert and Konopelski","course_number":39068,"instructor":"Presley Shields","location":"61481 Myrtis Centers","time":"2018-07-14T02:22:25.743Z","enrolled":69217,"book":"http://sammy.net","course_url":"https://etha.com"},{"course_title":"Waelchi Group","course_number":43430,"instructor":"Donato Wiza","location":"7863 Pollich Plains","time":"2018-07-14T05:31:52.035Z","enrolled":57459,"book":"http://maya.com","course_url":"https://wilmer.com"},{"course_title":"Hane LLC","course_number":40427,"instructor":"Dawn Schoen DDS","location":"1777 Jaiden Creek","time":"2018-07-14T07:11:38.820Z","enrolled":5610,"book":"http://enrique.com","course_url":"http://allan.biz"},{"course_title":"Robel Inc","course_number":76958,"instructor":"Leo Kautzer","location":"0695 Chanel Glen","time":"2018-07-14T19:46:15.724Z","enrolled":23440,"book":"http://jayda.info","course_url":"http://stephon.info"},{"course_title":"Prohaska - Hane","course_number":63860,"instructor":"Walker Bahringer","location":"76418 Sammie Crossroad","time":"2018-07-14T01:45:02.461Z","enrolled":12573,"book":"http://arvid.biz","course_url":"http://hailie.com"},{"course_title":"Bogisich - Lindgren","course_number":22556,"instructor":"Mrs. Micheal Brown","location":"239 Greenfelder Spur","time":"2018-07-14T15:48:00.836Z","enrolled":58863,"book":"http://lilliana.org","course_url":"http://zachary.com"},{"course_title":"Ullrich - Flatley","course_number":95072,"instructor":"Lila Denesik","location":"95725 Alisha Greens","time":"2018-07-14T08:32:27.184Z","enrolled":47843,"book":"http://carolanne.org","course_url":"https://beaulah.name"},{"course_title":"Flatley, Gleichner and Jacobs","course_number":78921,"instructor":"Freddie Corwin Jr.","location":"32058 Shanahan Ferry","time":"2018-07-14T04:49:45.660Z","enrolled":42835,"book":"https://cody.info","course_url":"https://hassie.info"},{"course_title":"Rogahn - DuBuque","course_number":59126,"instructor":"Coy Fahey","location":"357 Aisha Terrace","time":"2018-07-14T13:09:39.528Z","enrolled":6173,"book":"http://conner.biz","course_url":"http://florida.com"},{"course_title":"Sauer, Hermiston and Bogisich","course_number":48285,"instructor":"Priscilla Roberts","location":"9768 Renner Corner","time":"2018-07-14T09:09:37.631Z","enrolled":15045,"book":"http://bill.info","course_url":"https://finn.name"},{"course_title":"Gutkowski Group","course_number":8745,"instructor":"Ms. Margarett Mraz","location":"276 Johns Landing","time":"2018-07-14T10:42:12.982Z","enrolled":22288,"book":"https://gabe.info","course_url":"http://carissa.net"},{"course_title":"Goldner Group","course_number":67251,"instructor":"Cletus Wiegand","location":"707 Rowan Plains","time":"2018-07-14T16:14:33.016Z","enrolled":636,"book":"https://angus.name","course_url":"http://adonis.name"},{"course_title":"Sauer LLC","course_number":96214,"instructor":"Freddie Bode","location":"20240 Kayleigh Expressway","time":"2018-07-14T12:21:31.059Z","enrolled":64034,"book":"http://emile.net","course_url":"http://mollie.name"},{"course_title":"Bins - McCullough","course_number":56172,"instructor":"Ellen Green MD","location":"557 Huels Mountain","time":"2018-07-14T07:49:06.446Z","enrolled":67030,"book":"http://jalyn.info","course_url":"https://johanna.info"},{"course_title":"Carter and Sons","course_number":41884,"instructor":"Ova Brakus DVM","location":"48674 Amos Walks","time":"2018-07-14T15:18:41.148Z","enrolled":92833,"book":"https://perry.org","course_url":"https://judd.net"},{"course_title":"Kshlerin, Schneider and Glover","course_number":81263,"instructor":"Okey Prohaska","location":"02728 Lebsack Ranch","time":"2018-07-14T04:29:35.037Z","enrolled":41300,"book":"http://elinor.info","course_url":"https://mckayla.org"},{"course_title":"McGlynn, MacGyver and Schinner","course_number":29334,"instructor":"Miller Denesik","location":"427 Greenholt Unions","time":"2018-07-14T10:16:15.753Z","enrolled":3596,"book":"http://al.info","course_url":"http://michale.com"},{"course_title":"Nolan, Hauck and Powlowski","course_number":45834,"instructor":"Ofelia Stroman","location":"161 Willms Throughway","time":"2018-07-14T21:09:03.965Z","enrolled":5533,"book":"https://obie.name","course_url":"http://efren.name"},{"course_title":"Sanford, Turcotte and Gulgowski","course_number":55291,"instructor":"Maida Wisozk DDS","location":"435 Rene Turnpike","time":"2018-07-14T17:16:00.777Z","enrolled":66142,"book":"https://oren.com","course_url":"http://juvenal.com"},{"course_title":"Casper, Schoen and Homenick","course_number":87861,"instructor":"Miss Luz Kertzmann","location":"547 Clarissa Courts","time":"2018-07-14T18:43:24.511Z","enrolled":67557,"book":"https://ceasar.name","course_url":"https://elna.info"},{"course_title":"Spencer - Streich","course_number":20448,"instructor":"Diamond Huels","location":"338 Brain Freeway","time":"2018-07-14T00:15:21.723Z","enrolled":5312,"book":"https://theodore.org","course_url":"http://christina.org"},{"course_title":"Schuppe, Reinger and Turner","course_number":7930,"instructor":"Otho Schamberger","location":"947 Selmer Landing","time":"2018-07-14T02:03:48.892Z","enrolled":86098,"book":"https://florencio.com","course_url":"https://rosalee.name"},{"course_title":"Kemmer, Gleason and Monahan","course_number":52937,"instructor":"Cielo Raynor II","location":"20860 Berge Brook","time":"2018-07-14T08:30:38.426Z","enrolled":52280,"book":"https://gordon.biz","course_url":"https://mossie.name"},{"course_title":"Predovic Inc","course_number":55799,"instructor":"Caitlyn Romaguera","location":"140 Demarcus Stravenue","time":"2018-07-14T08:04:15.900Z","enrolled":21175,"book":"https://nathen.com","course_url":"http://reed.com"},{"course_title":"Shields LLC","course_number":63302,"instructor":"Kelley Sawayn","location":"099 Grayce Trail","time":"2018-07-14T07:33:35.629Z","enrolled":21514,"book":"https://monte.com","course_url":"https://kelton.info"},{"course_title":"Jacobs - Senger","course_number":28884,"instructor":"Jerrold Zieme II","location":"904 Benjamin Skyway","time":"2018-07-14T10:01:49.519Z","enrolled":7182,"book":"https://laurine.info","course_url":"https://harmony.com"},{"course_title":"Brown, Rutherford and Bergnaum","course_number":36107,"instructor":"Alden Zboncak","location":"78124 Graham Inlet","time":"2018-07-14T09:32:55.702Z","enrolled":15757,"book":"http://lois.com","course_url":"http://gabriel.biz"},{"course_title":"Feest - Emard","course_number":79638,"instructor":"Avery Hammes","location":"1222 Morar Fall","time":"2018-07-14T13:50:17.228Z","enrolled":68048,"book":"http://velda.com","course_url":"https://maverick.net"},{"course_title":"Parisian, Robel and Lubowitz","course_number":45571,"instructor":"Cecil Connelly","location":"752 Ronaldo Lights","time":"2018-07-14T22:24:39.227Z","enrolled":64004,"book":"https://jaiden.org","course_url":"http://bernardo.info"},{"course_title":"Ruecker, Pfannerstill and Hodkiewicz","course_number":91921,"instructor":"Eulalia Rath","location":"67162 Madisen Fork","time":"2018-07-14T14:17:30.382Z","enrolled":43271,"book":"https://carolyn.name","course_url":"http://lolita.info"},{"course_title":"Bednar Inc","course_number":6478,"instructor":"Perry Ferry","location":"7533 Metz Mountains","time":"2018-07-13T23:22:01.000Z","enrolled":7991,"book":"https://wilton.net","course_url":"http://karine.net"},{"course_title":"Witting and Sons","course_number":96263,"instructor":"Ettie Koss","location":"0032 Carter Rapid","time":"2018-07-14T09:35:52.453Z","enrolled":11580,"book":"http://simeon.com","course_url":"https://chase.name"},{"course_title":"Kris, Ziemann and Ledner","course_number":46544,"instructor":"Mr. Mina Torphy","location":"2211 Terence Lane","time":"2018-07-14T04:24:44.177Z","enrolled":57274,"book":"https://muhammad.biz","course_url":"http://rebecca.net"},{"course_title":"Hegmann - Dach","course_number":82046,"instructor":"Athena Mueller","location":"5033 Marcia Park","time":"2018-07-14T10:24:09.035Z","enrolled":51407,"book":"https://cali.info","course_url":"http://audie.com"},{"course_title":"Collier Inc","course_number":86455,"instructor":"Hudson Gulgowski V","location":"8133 Maurine Way","time":"2018-07-14T21:03:18.039Z","enrolled":37131,"book":"https://marietta.org","course_url":"http://jared.net"},{"course_title":"Prohaska Group","course_number":31917,"instructor":"Avis Tromp","location":"8426 Nickolas Turnpike","time":"2018-07-14T19:27:10.225Z","enrolled":92839,"book":"https://ocie.org","course_url":"https://conor.name"},{"course_title":"Jenkins, Marvin and Ward","course_number":46585,"instructor":"Willow O'Kon","location":"6144 Abshire Causeway","time":"2018-07-14T04:14:57.918Z","enrolled":66102,"book":"http://carey.net","course_url":"https://arch.biz"},{"course_title":"O'Hara Group","course_number":29763,"instructor":"Moshe Roberts","location":"5431 Maritza Views","time":"2018-07-14T13:01:45.785Z","enrolled":36831,"book":"http://weston.name","course_url":"http://hattie.org"},{"course_title":"Leffler, Herman and Lehner","course_number":29582,"instructor":"Efren Bradtke","location":"366 Nelson Keys","time":"2018-07-14T07:20:03.181Z","enrolled":20477,"book":"https://moriah.name","course_url":"https://oral.info"},{"course_title":"Crooks Group","course_number":59842,"instructor":"Caterina Wunsch","location":"43295 Shaylee Port","time":"2018-07-14T18:51:42.212Z","enrolled":57589,"book":"https://nyasia.biz","course_url":"http://diamond.biz"},{"course_title":"McDermott Inc","course_number":78337,"instructor":"Eliezer Sauer I","location":"0926 Greenholt Inlet","time":"2018-07-14T08:59:22.874Z","enrolled":90706,"book":"https://zachery.name","course_url":"https://darrick.biz"},{"course_title":"Mills - Ferry","course_number":66864,"instructor":"Ludie Kozey I","location":"6623 Littel Course","time":"2018-07-14T18:37:19.967Z","enrolled":2810,"book":"https://amani.biz","course_url":"https://ava.com"},{"course_title":"Becker, Senger and Kreiger","course_number":75368,"instructor":"Shayna Kling","location":"0042 Rippin Freeway","time":"2018-07-14T20:37:56.586Z","enrolled":36492,"book":"https://waylon.net","course_url":"http://colten.name"},{"course_title":"Senger and Sons","course_number":65869,"instructor":"Sydni Greenfelder","location":"25998 Friedrich Plains","time":"2018-07-14T00:35:10.206Z","enrolled":66394,"book":"https://madisyn.info","course_url":"https://kayleigh.info"},{"course_title":"Bode Group","course_number":61678,"instructor":"Sven McClure","location":"9504 Gleason Ridge","time":"2018-07-14T02:07:16.539Z","enrolled":93036,"book":"https://efrain.info","course_url":"https://barry.name"},{"course_title":"Hintz - Vandervort","course_number":81503,"instructor":"Nicole Conroy","location":"3770 Schaefer Light","time":"2018-07-14T15:10:52.687Z","enrolled":77275,"book":"https://mylene.biz","course_url":"https://juliet.biz"},{"course_title":"Herman, Johns and O'Reilly","course_number":60405,"instructor":"Roxane Bradtke","location":"44492 Federico Manor","time":"2018-07-14T08:50:55.010Z","enrolled":17756,"book":"http://richie.org","course_url":"https://lamont.com"},{"course_title":"Denesik LLC","course_number":46408,"instructor":"Maximo Schmitt","location":"336 Lockman Glen","time":"2018-07-14T04:36:18.489Z","enrolled":87394,"book":"http://irwin.info","course_url":"http://damaris.org"},{"course_title":"Altenwerth, Gulgowski and Wilkinson","course_number":54363,"instructor":"Spencer Strosin","location":"6955 Sipes Unions","time":"2018-07-14T10:55:42.674Z","enrolled":11868,"book":"https://garett.biz","course_url":"http://antonetta.com"},{"course_title":"Heathcote, Orn and Hodkiewicz","course_number":4602,"instructor":"Era Pfannerstill","location":"14614 Altenwerth Mews","time":"2018-07-14T12:05:00.907Z","enrolled":84228,"book":"https://al.name","course_url":"https://kane.biz"},{"course_title":"Cremin and Sons","course_number":71623,"instructor":"Dr. Myrtice Schuppe","location":"46707 Veum Avenue","time":"2018-07-14T18:47:25.324Z","enrolled":332,"book":"http://adolphus.biz","course_url":"https://vivian.info"},{"course_title":"Corkery LLC","course_number":61102,"instructor":"Ernest Schinner","location":"36580 Cummings Isle","time":"2018-07-14T12:10:55.186Z","enrolled":42326,"book":"http://cornelius.name","course_url":"http://anjali.info"},{"course_title":"Block and Sons","course_number":18192,"instructor":"Terrell Konopelski","location":"30964 Torp Haven","time":"2018-07-14T21:48:19.695Z","enrolled":13872,"book":"https://leon.info","course_url":"http://jarvis.org"},{"course_title":"O'Hara - Ruecker","course_number":56814,"instructor":"Kaycee Bogisich","location":"48307 Stamm Landing","time":"2018-07-14T03:10:14.328Z","enrolled":68115,"book":"http://shanna.com","course_url":"https://sophia.biz"},{"course_title":"Stanton - Kunde","course_number":93189,"instructor":"Miss Haleigh Kertzmann","location":"6730 Hilton Gateway","time":"2018-07-14T12:42:27.258Z","enrolled":22420,"book":"http://alyce.biz","course_url":"https://orville.name"},{"course_title":"Kozey - Considine","course_number":54686,"instructor":"Francisco Marks","location":"0607 Florian Extensions","time":"2018-07-14T04:40:24.620Z","enrolled":67803,"book":"https://watson.name","course_url":"https://kianna.net"},{"course_title":"Lindgren, Boyle and VonRueden","course_number":30234,"instructor":"Dillan Corwin","location":"573 Klocko Estate","time":"2018-07-14T14:59:47.821Z","enrolled":2757,"book":"https://macey.com","course_url":"http://nora.com"},{"course_title":"Strosin LLC","course_number":20434,"instructor":"Mrs. Velda Schmeler","location":"547 Winona Turnpike","time":"2018-07-14T05:49:35.318Z","enrolled":91915,"book":"https://jerry.biz","course_url":"https://russell.biz"},{"course_title":"Goodwin and Sons","course_number":87939,"instructor":"Shaun Toy II","location":"229 Littel River","time":"2018-07-14T18:00:16.595Z","enrolled":48266,"book":"https://zachery.com","course_url":"http://albert.com"},{"course_title":"Marks, Murray and Adams","course_number":80993,"instructor":"Ms. Alta Lynch","location":"0074 Josh Pines","time":"2018-07-14T09:19:13.907Z","enrolled":90987,"book":"https://bailee.info","course_url":"http://lindsey.net"},{"course_title":"Sawayn, Rodriguez and Deckow","course_number":61762,"instructor":"Rubye Lockman","location":"22198 Bartoletti Mountain","time":"2018-07-14T21:18:11.354Z","enrolled":97949,"book":"https://bernadine.name","course_url":"https://adolphus.biz"},{"course_title":"Jerde LLC","course_number":2145,"instructor":"Frederique Farrell II","location":"01283 Smitham Garden","time":"2018-07-14T16:18:02.086Z","enrolled":86929,"book":"http://oceane.info","course_url":"https://willard.com"},{"course_title":"Leffler Inc","course_number":80821,"instructor":"Columbus Baumbach","location":"96912 Bahringer Dale","time":"2018-07-14T04:13:58.796Z","enrolled":94806,"book":"https://dayton.com","course_url":"https://eldridge.name"},{"course_title":"Will - Zieme","course_number":40051,"instructor":"Leonie Sauer","location":"8377 Jena Field","time":"2018-07-14T16:18:22.329Z","enrolled":72056,"book":"https://camryn.net","course_url":"http://clifford.biz"},{"course_title":"Conn and Sons","course_number":86833,"instructor":"Declan Skiles IV","location":"511 Skiles Circles","time":"2018-07-14T01:45:46.340Z","enrolled":90425,"book":"http://zula.com","course_url":"https://jamison.info"},{"course_title":"Gaylord - Connelly","course_number":52715,"instructor":"Vallie Reichert","location":"085 Schaefer Estate","time":"2018-07-14T14:39:12.199Z","enrolled":86952,"book":"http://sallie.name","course_url":"https://cary.com"},{"course_title":"O'Conner - Gibson","course_number":68650,"instructor":"Jeffrey O'Hara","location":"347 Purdy Center","time":"2018-07-14T07:50:11.538Z","enrolled":23703,"book":"http://samanta.name","course_url":"http://enoch.info"},{"course_title":"Graham, Rempel and Walker","course_number":38902,"instructor":"Everette Sipes","location":"95147 Barrows Skyway","time":"2018-07-13T23:28:12.795Z","enrolled":40106,"book":"https://ruthie.biz","course_url":"https://jaida.name"},{"course_title":"Cronin Inc","course_number":1202,"instructor":"Maybell Osinski","location":"40049 Louisa Spur","time":"2018-07-14T21:55:38.031Z","enrolled":49032,"book":"https://brandon.org","course_url":"http://lexie.name"},{"course_title":"Kerluke Group","course_number":77800,"instructor":"Ana Wintheiser","location":"0401 Watson Summit","time":"2018-07-14T16:40:48.621Z","enrolled":99161,"book":"https://pierre.name","course_url":"http://elvera.biz"},{"course_title":"Ryan - Lebsack","course_number":96039,"instructor":"Morton Zemlak","location":"74353 Zander Bridge","time":"2018-07-14T14:49:50.189Z","enrolled":18823,"book":"http://rasheed.biz","course_url":"https://karianne.biz"},{"course_title":"Frami, Gutkowski and Ankunding","course_number":33132,"instructor":"Rashad DuBuque","location":"043 Lind Corner","time":"2018-07-14T16:47:52.410Z","enrolled":50547,"book":"http://jason.net","course_url":"https://clemmie.biz"},{"course_title":"Mohr - Robel","course_number":13184,"instructor":"Meda Roob","location":"1737 Erich Cove","time":"2018-07-14T03:28:32.011Z","enrolled":42440,"book":"http://alana.org","course_url":"https://jessie.biz"},{"course_title":"Ward, Hills and Mosciski","course_number":19976,"instructor":"Precious Greenfelder","location":"894 Connelly Crescent","time":"2018-07-14T20:45:21.243Z","enrolled":47132,"book":"https://wilburn.org","course_url":"https://arlo.info"},{"course_title":"Doyle - Bogan","course_number":90159,"instructor":"Miss Quinn Ratke","location":"53249 Alice Avenue","time":"2018-07-13T23:54:03.428Z","enrolled":12462,"book":"https://eulah.org","course_url":"https://noemie.name"},{"course_title":"Howell - Dietrich","course_number":88336,"instructor":"Hector Weber","location":"57023 Terrence Stream","time":"2018-07-14T19:08:20.528Z","enrolled":5504,"book":"https://daryl.name","course_url":"https://brain.org"},{"course_title":"Ortiz and Sons","course_number":90570,"instructor":"Yesenia Gutkowski","location":"0956 Ernser Burg","time":"2018-07-14T11:10:30.309Z","enrolled":76244,"book":"https://ashlynn.name","course_url":"https://selina.net"},{"course_title":"Franecki - Rohan","course_number":69653,"instructor":"Cecelia Quitzon","location":"21377 Olga Land","time":"2018-07-14T06:49:39.504Z","enrolled":36476,"book":"https://claire.com","course_url":"http://citlalli.biz"},{"course_title":"Bode, Carroll and Wolf","course_number":14425,"instructor":"Dane Zboncak","location":"86060 Emelie Place","time":"2018-07-14T13:19:39.798Z","enrolled":93595,"book":"https://zack.biz","course_url":"http://hayley.org"},{"course_title":"Cassin LLC","course_number":57433,"instructor":"Velda Marks","location":"920 Feest Summit","time":"2018-07-14T20:55:25.236Z","enrolled":88188,"book":"http://lura.biz","course_url":"https://marshall.name"},{"course_title":"Vandervort Inc","course_number":99465,"instructor":"Chris Mante","location":"897 Terrill Track","time":"2018-07-14T17:42:37.127Z","enrolled":33927,"book":"http://tatum.name","course_url":"http://elliot.name"},{"course_title":"Kerluke, Bailey and Dickens","course_number":57776,"instructor":"Kiel Stoltenberg","location":"1034 Reinger Dam","time":"2018-07-14T05:26:51.499Z","enrolled":4704,"book":"https://murray.name","course_url":"https://destiny.biz"},{"course_title":"Botsford, D'Amore and Keeling","course_number":89793,"instructor":"Reinhold Schamberger","location":"622 Koss Fall","time":"2018-07-13T23:48:55.336Z","enrolled":55551,"book":"https://jordi.org","course_url":"https://stanton.name"},{"course_title":"Lueilwitz and Sons","course_number":2539,"instructor":"Germaine Bayer","location":"2457 Yasmeen Track","time":"2018-07-14T06:46:37.381Z","enrolled":2091,"book":"http://antone.info","course_url":"http://reyes.biz"},{"course_title":"Tillman - Anderson","course_number":42858,"instructor":"Ansel Kling","location":"75775 Jonas Rapids","time":"2018-07-14T06:06:00.206Z","enrolled":81616,"book":"https://herman.net","course_url":"http://melody.biz"},{"course_title":"Legros Inc","course_number":46804,"instructor":"Alvis Ondricka","location":"489 Monahan Views","time":"2018-07-14T03:03:36.879Z","enrolled":30848,"book":"https://mariana.biz","course_url":"https://jose.net"},{"course_title":"Erdman, Johnston and Beer","course_number":87523,"instructor":"Katrine Bosco","location":"534 Sylvester Creek","time":"2018-07-14T06:01:20.663Z","enrolled":23302,"book":"https://polly.info","course_url":"http://isabelle.net"},{"course_title":"Beier - Price","course_number":40020,"instructor":"Mr. Amani Friesen","location":"138 Walter Vista","time":"2018-07-14T20:29:17.883Z","enrolled":63684,"book":"https://antwon.com","course_url":"https://kiarra.name"},{"course_title":"Stoltenberg, Schowalter and Weimann","course_number":64343,"instructor":"Carmela Flatley MD","location":"026 Kunze Green","time":"2018-07-14T06:25:16.146Z","enrolled":96435,"book":"http://woodrow.net","course_url":"https://joel.com"},{"course_title":"Keebler, Howe and Hilpert","course_number":36450,"instructor":"Gwendolyn Runolfsson PhD","location":"146 Meda Extension","time":"2018-07-14T08:15:35.684Z","enrolled":1792,"book":"http://jonathon.org","course_url":"http://kristina.net"},{"course_title":"Zboncak - Wehner","course_number":80697,"instructor":"Litzy Wiegand","location":"95196 Bradtke Bypass","time":"2018-07-14T04:17:15.870Z","enrolled":59238,"book":"http://andreanne.com","course_url":"http://berneice.name"},{"course_title":"Bernier - Paucek","course_number":97741,"instructor":"Miss Wilma Braun","location":"110 Hector Burgs","time":"2018-07-14T05:24:51.407Z","enrolled":66262,"book":"https://tomas.net","course_url":"https://kaelyn.biz"},{"course_title":"Stoltenberg - Mertz","course_number":35297,"instructor":"Elwyn Predovic","location":"9667 Ruthe Falls","time":"2018-07-14T08:06:58.716Z","enrolled":17719,"book":"https://walter.org","course_url":"http://herbert.org"},{"course_title":"Jacobson, Luettgen and Parker","course_number":77672,"instructor":"Noemi Effertz","location":"92019 Christ Ridge","time":"2018-07-14T15:24:21.766Z","enrolled":77740,"book":"https://thelma.net","course_url":"https://tracey.info"},{"course_title":"Langosh LLC","course_number":22631,"instructor":"Ms. Darlene O'Reilly","location":"169 Doyle Gateway","time":"2018-07-14T20:51:59.285Z","enrolled":70373,"book":"https://dillon.com","course_url":"http://danny.biz"},{"course_title":"Dooley - Hettinger","course_number":2817,"instructor":"Nicklaus Crona II","location":"900 Ila Shores","time":"2018-07-14T02:02:22.570Z","enrolled":10130,"book":"https://sadye.org","course_url":"http://alek.com"},{"course_title":"Schowalter and Sons","course_number":80633,"instructor":"Christ Bins","location":"2611 Kohler Springs","time":"2018-07-14T21:29:42.079Z","enrolled":70944,"book":"http://nora.net","course_url":"https://abdullah.info"},{"course_title":"Paucek - Abernathy","course_number":48172,"instructor":"Eldridge Upton MD","location":"5697 Koepp Meadow","time":"2018-07-14T20:05:24.288Z","enrolled":94473,"book":"http://bernadine.com","course_url":"https://dorothy.info"},{"course_title":"Kulas, Runte and Simonis","course_number":61642,"instructor":"Orin Hane","location":"7856 Leonie Turnpike","time":"2018-07-14T12:20:02.919Z","enrolled":92762,"book":"https://katherine.biz","course_url":"https://guy.info"},{"course_title":"Olson Inc","course_number":42363,"instructor":"Adah Lueilwitz","location":"1417 Diego Stravenue","time":"2018-07-14T14:08:09.415Z","enrolled":30471,"book":"http://eusebio.name","course_url":"http://matteo.biz"},{"course_title":"Spencer - Borer","course_number":49070,"instructor":"Allene Hayes DDS","location":"5215 Fernando Mission","time":"2018-07-13T23:26:07.106Z","enrolled":16562,"book":"https://emilie.com","course_url":"http://albertha.com"},{"course_title":"Champlin - Waters","course_number":37863,"instructor":"Destiny Bauch","location":"0868 Marquardt Pike","time":"2018-07-14T22:10:51.601Z","enrolled":75308,"book":"http://colton.org","course_url":"https://mckenna.info"},{"course_title":"Swift and Sons","course_number":29825,"instructor":"Isaac Howell","location":"8852 Maymie Prairie","time":"2018-07-14T11:41:03.721Z","enrolled":88432,"book":"http://reynold.name","course_url":"http://delores.com"},{"course_title":"Wehner, Buckridge and Sauer","course_number":39338,"instructor":"Wilfrid Towne","location":"8452 Kessler Junctions","time":"2018-07-14T18:46:45.669Z","enrolled":8842,"book":"http://elise.biz","course_url":"http://duncan.org"},{"course_title":"Sauer, Klein and MacGyver","course_number":47486,"instructor":"Sammie Bauch","location":"918 Bechtelar Spur","time":"2018-07-14T20:24:38.220Z","enrolled":40307,"book":"http://chaya.net","course_url":"http://carissa.net"},{"course_title":"Yost Group","course_number":48084,"instructor":"Ms. Mervin Doyle","location":"480 Roma Manors","time":"2018-07-13T23:59:38.616Z","enrolled":79758,"book":"http://jessyca.name","course_url":"https://norbert.org"},{"course_title":"Lueilwitz LLC","course_number":15648,"instructor":"Jeramy Harris","location":"34768 Seamus Green","time":"2018-07-14T05:20:53.537Z","enrolled":13912,"book":"http://esther.biz","course_url":"https://gonzalo.info"},{"course_title":"Kuhn, Beatty and Moore","course_number":19421,"instructor":"Cale Ryan Jr.","location":"492 Meagan Ramp","time":"2018-07-14T15:52:28.176Z","enrolled":39580,"book":"http://winfield.name","course_url":"http://will.net"},{"course_title":"Torphy Group","course_number":51672,"instructor":"Leola Quigley","location":"35658 Stroman Common","time":"2018-07-14T19:28:29.355Z","enrolled":85799,"book":"https://lillie.biz","course_url":"http://cody.biz"},{"course_title":"Bartell, Ruecker and Botsford","course_number":67985,"instructor":"Cordelia Dare","location":"740 Vilma Knoll","time":"2018-07-14T20:16:35.452Z","enrolled":64038,"book":"https://jaron.com","course_url":"https://brianne.org"},{"course_title":"Heller LLC","course_number":32836,"instructor":"Mr. Fern Mraz","location":"3108 Corwin Way","time":"2018-07-14T03:26:52.577Z","enrolled":37880,"book":"http://princess.net","course_url":"https://junius.com"},{"course_title":"Spencer - Mraz","course_number":71913,"instructor":"Lucas Marvin","location":"9378 Rutherford Plaza","time":"2018-07-14T16:36:47.230Z","enrolled":19993,"book":"https://kathryn.biz","course_url":"https://garrick.org"},{"course_title":"Cole, Collier and Runolfsdottir","course_number":31458,"instructor":"Ms. Christy Veum","location":"24608 Zieme Points","time":"2018-07-14T08:38:24.477Z","enrolled":44078,"book":"http://claudia.org","course_url":"http://armando.info"},{"course_title":"Waters Group","course_number":91570,"instructor":"Layne Armstrong","location":"140 Boyle Lights","time":"2018-07-14T00:26:10.425Z","enrolled":36288,"book":"http://adaline.com","course_url":"https://salma.net"},{"course_title":"Sipes, Bahringer and Shields","course_number":92070,"instructor":"Katlynn Schaefer","location":"78315 Elisa Falls","time":"2018-07-14T08:49:09.565Z","enrolled":12548,"book":"http://baron.biz","course_url":"https://dovie.name"},{"course_title":"Lind, Russel and Schroeder","course_number":26960,"instructor":"Annie Okuneva","location":"76308 Graham Alley","time":"2018-07-14T21:19:55.043Z","enrolled":88176,"book":"http://asia.org","course_url":"http://chris.info"},{"course_title":"Kuhn, Quigley and Breitenberg","course_number":14146,"instructor":"Genevieve Pagac","location":"86662 Bechtelar Ridge","time":"2018-07-14T13:03:17.329Z","enrolled":95526,"book":"http://reid.com","course_url":"http://joaquin.org"},{"course_title":"Windler - Feest","course_number":92971,"instructor":"Shakira Nicolas","location":"77322 Hills Court","time":"2018-07-14T09:05:39.164Z","enrolled":42979,"book":"https://celia.net","course_url":"http://berenice.org"},{"course_title":"Farrell - Morar","course_number":26273,"instructor":"Maxine Muller","location":"53901 Macejkovic Walks","time":"2018-07-14T00:05:33.569Z","enrolled":99119,"book":"https://aurelio.info","course_url":"https://katelin.org"},{"course_title":"Mohr - Carter","course_number":90256,"instructor":"Florine Runolfsson","location":"7809 Jamil Cliffs","time":"2018-07-14T01:25:41.217Z","enrolled":10166,"book":"https://lizeth.name","course_url":"https://issac.name"},{"course_title":"Kautzer - Osinski","course_number":53772,"instructor":"Kody Collins","location":"22209 Savanah Squares","time":"2018-07-14T06:30:42.043Z","enrolled":51280,"book":"http://clemens.biz","course_url":"http://akeem.biz"},{"course_title":"Tillman - Lueilwitz","course_number":43938,"instructor":"Jordan Lehner","location":"31440 Aufderhar Grove","time":"2018-07-14T02:51:13.597Z","enrolled":58590,"book":"http://laurel.com","course_url":"http://salvador.org"},{"course_title":"Braun Group","course_number":49480,"instructor":"Derrick Koelpin","location":"380 Pacocha Branch","time":"2018-07-14T10:32:17.597Z","enrolled":44639,"book":"https://providenci.name","course_url":"https://rickie.biz"},{"course_title":"Braun - Greenholt","course_number":76245,"instructor":"Cale Braun","location":"58559 Wisoky Light","time":"2018-07-14T23:08:23.349Z","enrolled":16132,"book":"http://jovanny.com","course_url":"https://deontae.name"},{"course_title":"Walsh, Krajcik and Anderson","course_number":82196,"instructor":"Dr. Ari Green","location":"577 Mossie Path","time":"2018-07-14T13:31:05.945Z","enrolled":28476,"book":"http://kane.name","course_url":"http://rodolfo.biz"},{"course_title":"Rau, Rice and Roob","course_number":42420,"instructor":"Claude Luettgen","location":"6058 Dietrich Manor","time":"2018-07-14T12:10:27.568Z","enrolled":29043,"book":"http://caitlyn.com","course_url":"https://jalen.biz"},{"course_title":"Nader - Jerde","course_number":64568,"instructor":"Reanna Rosenbaum I","location":"02176 Kuhlman Mills","time":"2018-07-14T12:33:34.384Z","enrolled":93826,"book":"http://kristina.com","course_url":"https://toy.biz"},{"course_title":"Kulas, Collier and Murazik","course_number":90990,"instructor":"Mrs. Shanna Jacobson","location":"697 Schulist Summit","time":"2018-07-14T19:28:35.728Z","enrolled":23195,"book":"http://clark.org","course_url":"https://aglae.info"},{"course_title":"Boehm, Turner and Breitenberg","course_number":95813,"instructor":"Dr. Dexter Kohler","location":"633 Ullrich Trace","time":"2018-07-14T13:11:48.540Z","enrolled":67442,"book":"https://dorris.net","course_url":"https://chad.biz"},{"course_title":"Fisher LLC","course_number":78496,"instructor":"Eliseo Windler","location":"11953 Bauch Court","time":"2018-07-14T18:24:19.652Z","enrolled":28143,"book":"https://kameron.info","course_url":"http://erik.com"},{"course_title":"Barton and Sons","course_number":43429,"instructor":"Ramiro Bergnaum","location":"2016 Grace Ridge","time":"2018-07-14T07:41:16.584Z","enrolled":10626,"book":"https://quentin.name","course_url":"http://grayson.com"},{"course_title":"Auer, Hane and Kilback","course_number":38733,"instructor":"Paxton Langosh","location":"267 Skiles Ridge","time":"2018-07-14T20:03:31.368Z","enrolled":40920,"book":"http://eryn.name","course_url":"http://cecilia.info"},{"course_title":"Reynolds, Welch and Renner","course_number":88629,"instructor":"Curt Reichel","location":"9618 Rodger Knolls","time":"2018-07-14T06:36:06.934Z","enrolled":2759,"book":"https://ruthe.org","course_url":"http://jermain.net"},{"course_title":"Lang - Leuschke","course_number":85124,"instructor":"Monserrat Deckow","location":"91984 Dewayne Forges","time":"2018-07-14T02:36:26.381Z","enrolled":93155,"book":"https://gideon.name","course_url":"https://clare.org"},{"course_title":"Balistreri - Blick","course_number":72976,"instructor":"Lizeth Stark","location":"75723 Sauer Path","time":"2018-07-14T04:15:03.495Z","enrolled":39115,"book":"https://maximillia.com","course_url":"https://constantin.org"},{"course_title":"Larson Group","course_number":82363,"instructor":"Shania D'Amore","location":"969 Jessika Circles","time":"2018-07-14T20:54:48.906Z","enrolled":46156,"book":"https://orin.org","course_url":"http://jovany.org"},{"course_title":"Dickinson - Green","course_number":97277,"instructor":"Rico Morissette","location":"48609 Runte Corners","time":"2018-07-14T10:22:04.991Z","enrolled":39624,"book":"https://rogelio.name","course_url":"https://cristina.org"},{"course_title":"Kuhlman Inc","course_number":38223,"instructor":"Stephany Lakin III","location":"622 Tromp Avenue","time":"2018-07-14T19:15:19.240Z","enrolled":33433,"book":"http://abigayle.net","course_url":"https://jeff.net"},{"course_title":"Goodwin - Nicolas","course_number":56441,"instructor":"Kelley Legros PhD","location":"48762 Alverta Mountain","time":"2018-07-14T19:14:39.802Z","enrolled":26425,"book":"http://christina.name","course_url":"https://frida.info"},{"course_title":"Labadie, Hansen and Goldner","course_number":64096,"instructor":"Zackary Runolfsson","location":"681 Walter Pine","time":"2018-07-14T02:03:01.029Z","enrolled":52171,"book":"http://thurman.com","course_url":"https://cynthia.net"},{"course_title":"Nienow and Sons","course_number":35994,"instructor":"Kaleb Dooley","location":"7100 Frami Road","time":"2018-07-14T11:19:33.071Z","enrolled":73112,"book":"https://garfield.org","course_url":"https://destini.name"},{"course_title":"Ebert, Swift and Aufderhar","course_number":18599,"instructor":"Miss Dasia Macejkovic","location":"234 Guido Fords","time":"2018-07-14T05:53:57.223Z","enrolled":66167,"book":"https://lilian.com","course_url":"https://rosanna.net"},{"course_title":"Ebert - Harris","course_number":65243,"instructor":"Charlene McGlynn","location":"151 Ralph Center","time":"2018-07-14T05:43:33.284Z","enrolled":13180,"book":"http://delilah.biz","course_url":"http://afton.name"},{"course_title":"Grimes and Sons","course_number":7738,"instructor":"Cathy Rowe","location":"0414 West Tunnel","time":"2018-07-14T10:09:34.297Z","enrolled":53758,"book":"https://adriana.org","course_url":"https://hildegard.org"},{"course_title":"Altenwerth LLC","course_number":83592,"instructor":"Tressa Schoen","location":"6411 Tremaine Green","time":"2018-07-13T23:34:53.818Z","enrolled":28235,"book":"https://euna.org","course_url":"http://derek.info"},{"course_title":"Johns and Sons","course_number":12875,"instructor":"Obie Mitchell","location":"662 Macie Locks","time":"2018-07-14T16:19:50.090Z","enrolled":58077,"book":"http://georgiana.biz","course_url":"http://bertrand.biz"},{"course_title":"Jast Inc","course_number":53493,"instructor":"Esmeralda Hermann","location":"48444 Cartwright Plaza","time":"2018-07-14T12:46:56.668Z","enrolled":20430,"book":"https://tia.info","course_url":"http://cruz.name"},{"course_title":"Pfannerstill, Dickinson and Franecki","course_number":97266,"instructor":"Sarah Dach","location":"739 Colin Landing","time":"2018-07-14T08:40:34.157Z","enrolled":13833,"book":"https://dayne.net","course_url":"https://milton.biz"},{"course_title":"Skiles, Hahn and Cartwright","course_number":88894,"instructor":"Camron Schoen","location":"09821 Gutmann Bridge","time":"2018-07-14T11:08:00.299Z","enrolled":41077,"book":"http://stephan.org","course_url":"http://alford.biz"},{"course_title":"Hagenes Group","course_number":95778,"instructor":"Wilfred Schmitt","location":"417 Corwin Drives","time":"2018-07-14T13:08:55.193Z","enrolled":85042,"book":"https://sven.net","course_url":"https://kylie.com"},{"course_title":"Kub - Gleason","course_number":81870,"instructor":"Camden Daniel","location":"28072 Berniece Mission","time":"2018-07-14T14:09:55.157Z","enrolled":13198,"book":"https://adelbert.name","course_url":"https://lazaro.org"},{"course_title":"Gottlieb - Lubowitz","course_number":42003,"instructor":"Jayson Kohler","location":"4769 Sipes Station","time":"2018-07-14T13:28:14.031Z","enrolled":85413,"book":"http://chance.name","course_url":"https://bettye.info"},{"course_title":"Willms and Sons","course_number":71900,"instructor":"Rosalind Kautzer","location":"7582 Jocelyn Stream","time":"2018-07-14T06:02:22.006Z","enrolled":18922,"book":"http://julien.info","course_url":"https://ignatius.info"},{"course_title":"Ledner Group","course_number":67542,"instructor":"Perry Auer","location":"18520 Royal Lodge","time":"2018-07-14T01:14:49.178Z","enrolled":28789,"book":"http://ericka.net","course_url":"http://muhammad.name"},{"course_title":"Wuckert, Olson and Monahan","course_number":14799,"instructor":"Jillian Fahey","location":"99128 Heller Groves","time":"2018-07-14T22:36:42.624Z","enrolled":45233,"book":"http://hope.org","course_url":"http://jessie.name"},{"course_title":"Denesik, Wisoky and Raynor","course_number":26357,"instructor":"Lucile Stamm","location":"4543 Wolff Cape","time":"2018-07-14T05:05:20.743Z","enrolled":26954,"book":"http://ezequiel.info","course_url":"http://davin.org"},{"course_title":"Mante - Gleason","course_number":92001,"instructor":"Hyman Hamill","location":"8048 Torphy Hills","time":"2018-07-14T06:11:24.458Z","enrolled":11194,"book":"https://arno.org","course_url":"https://arnulfo.com"},{"course_title":"Schamberger - Dooley","course_number":84645,"instructor":"Uriel Brekke","location":"914 Bruen Course","time":"2018-07-14T20:41:09.704Z","enrolled":19988,"book":"https://mayra.net","course_url":"https://destiny.biz"},{"course_title":"Carroll Group","course_number":52121,"instructor":"Ms. Nikolas Murphy","location":"28948 Ansel Flats","time":"2018-07-14T23:07:04.048Z","enrolled":87990,"book":"https://florine.net","course_url":"https://madalyn.info"},{"course_title":"D'Amore Group","course_number":16497,"instructor":"Lamont Fisher","location":"0172 Hackett Springs","time":"2018-07-14T16:03:59.667Z","enrolled":78328,"book":"https://zion.net","course_url":"http://solon.org"},{"course_title":"Lindgren - Reichel","course_number":58598,"instructor":"Kenyon Mertz Jr.","location":"897 Walter Stream","time":"2018-07-14T11:36:19.265Z","enrolled":81635,"book":"https://aurelio.com","course_url":"https://angelo.name"},{"course_title":"Hyatt - Huels","course_number":72474,"instructor":"Dr. Etha Schinner","location":"3761 Reynolds Spring","time":"2018-07-14T19:55:57.484Z","enrolled":57451,"book":"http://albert.net","course_url":"http://tyree.com"},{"course_title":"Okuneva - Macejkovic","course_number":6110,"instructor":"Shany Wunsch","location":"1829 Tressie Course","time":"2018-07-14T23:09:10.531Z","enrolled":57505,"book":"https://kip.info","course_url":"http://armand.net"},{"course_title":"Sanford, Shanahan and Bartoletti","course_number":10564,"instructor":"Laila Schaden","location":"15515 Abelardo Wells","time":"2018-07-14T06:46:00.063Z","enrolled":84902,"book":"http://efrain.biz","course_url":"https://kurtis.net"},{"course_title":"Veum - Bosco","course_number":64606,"instructor":"Ms. Branson Predovic","location":"00828 Rocky Drive","time":"2018-07-14T11:17:19.685Z","enrolled":52725,"book":"https://enola.name","course_url":"http://ewald.biz"},{"course_title":"Grady, Mohr and Schoen","course_number":81817,"instructor":"Odessa Gutmann","location":"9777 Kerluke Burgs","time":"2018-07-14T02:01:51.132Z","enrolled":49844,"book":"http://rodger.org","course_url":"http://providenci.org"},{"course_title":"Hagenes - Weimann","course_number":31858,"instructor":"Ewald Hauck","location":"5916 Anjali Drive","time":"2018-07-14T07:56:20.648Z","enrolled":23666,"book":"http://kim.com","course_url":"https://mia.name"},{"course_title":"Braun - Heidenreich","course_number":36571,"instructor":"Mr. Clinton Gislason","location":"988 Bednar Radial","time":"2018-07-14T22:22:20.644Z","enrolled":50306,"book":"https://rosalee.com","course_url":"http://anderson.com"},{"course_title":"Rolfson - Toy","course_number":32531,"instructor":"Dr. Alexandrine Glover","location":"31325 Funk Cove","time":"2018-07-14T00:58:58.944Z","enrolled":67545,"book":"http://haleigh.info","course_url":"https://reinhold.info"},{"course_title":"Cartwright - Schimmel","course_number":85638,"instructor":"Bernice Pfeffer","location":"657 Weber Hollow","time":"2018-07-14T16:36:15.223Z","enrolled":46024,"book":"http://jason.com","course_url":"http://joy.biz"},{"course_title":"Kautzer - Herzog","course_number":35482,"instructor":"Kennedi Hermiston Jr.","location":"5598 August Harbors","time":"2018-07-14T00:45:42.362Z","enrolled":59197,"book":"https://garfield.com","course_url":"https://raphael.org"},{"course_title":"Bahringer - Okuneva","course_number":70002,"instructor":"Danny Schoen","location":"0791 Maxime Cliff","time":"2018-07-14T20:58:32.500Z","enrolled":40749,"book":"https://chadrick.name","course_url":"https://pierce.name"},{"course_title":"Wintheiser - Jacobson","course_number":7129,"instructor":"Madison Mertz","location":"1372 Sawayn Glens","time":"2018-07-14T12:02:01.449Z","enrolled":41009,"book":"https://rosemarie.biz","course_url":"http://vada.com"},{"course_title":"Watsica, Swaniawski and Brown","course_number":57880,"instructor":"Candelario Walsh","location":"01694 Alanis Tunnel","time":"2018-07-14T02:25:02.599Z","enrolled":99628,"book":"https://layne.name","course_url":"https://iliana.biz"},{"course_title":"Klein, Morissette and Morissette","course_number":46313,"instructor":"Euna Wilkinson","location":"17032 Kane Circles","time":"2018-07-14T02:25:00.928Z","enrolled":37990,"book":"https://kallie.net","course_url":"https://korey.info"},{"course_title":"Champlin, Kovacek and Murray","course_number":85564,"instructor":"Travis Schmidt Jr.","location":"494 Ondricka Row","time":"2018-07-14T04:50:25.032Z","enrolled":7450,"book":"http://tracy.com","course_url":"http://kathlyn.org"},{"course_title":"Smith and Sons","course_number":55682,"instructor":"Katrina Marks","location":"94227 Von Knolls","time":"2018-07-14T16:12:29.082Z","enrolled":39010,"book":"https://tatyana.info","course_url":"http://angelina.com"},{"course_title":"Huels - Schroeder","course_number":79687,"instructor":"Marlee Bernhard Jr.","location":"549 Bennett Garden","time":"2018-07-14T16:59:01.155Z","enrolled":19642,"book":"http://kaley.info","course_url":"http://kianna.net"},{"course_title":"Boehm - Botsford","course_number":23226,"instructor":"Isaac Parisian","location":"4383 Kuvalis Gateway","time":"2018-07-14T04:34:25.242Z","enrolled":59060,"book":"http://meaghan.net","course_url":"https://erica.org"},{"course_title":"Mann, Goldner and Hartmann","course_number":87356,"instructor":"Lina Koepp","location":"29050 Gutmann Lake","time":"2018-07-14T17:58:04.301Z","enrolled":90975,"book":"http://kiel.biz","course_url":"http://westley.net"},{"course_title":"Brown LLC","course_number":20309,"instructor":"Mable Wunsch","location":"5083 Maci Underpass","time":"2018-07-14T06:05:12.486Z","enrolled":33566,"book":"https://nikki.biz","course_url":"http://lessie.net"},{"course_title":"Bauch - Cummings","course_number":51162,"instructor":"Mrs. Quinten Robel","location":"136 Dedric Valleys","time":"2018-07-14T18:51:09.042Z","enrolled":67890,"book":"http://alford.name","course_url":"http://sophie.info"},{"course_title":"Towne, Rowe and Cormier","course_number":73054,"instructor":"Hillary Dach MD","location":"242 Leila Mill","time":"2018-07-14T07:22:10.321Z","enrolled":88746,"book":"https://giovani.biz","course_url":"https://joelle.biz"},{"course_title":"Dicki - Parker","course_number":4043,"instructor":"Gerard Rohan","location":"206 Velva Summit","time":"2018-07-14T18:38:17.653Z","enrolled":16701,"book":"https://marianne.info","course_url":"http://alden.biz"},{"course_title":"Mills - Mills","course_number":80729,"instructor":"Mariela Bernier Jr.","location":"999 Skiles Expressway","time":"2018-07-14T08:17:21.376Z","enrolled":15267,"book":"https://willy.name","course_url":"http://mathilde.org"},{"course_title":"Steuber, Fisher and Murphy","course_number":99206,"instructor":"Aurelio Mitchell","location":"149 Blick Alley","time":"2018-07-14T18:03:24.735Z","enrolled":78081,"book":"http://mylene.info","course_url":"https://eden.info"},{"course_title":"Mante - Smitham","course_number":93045,"instructor":"Marlee Schroeder","location":"660 Wolf Orchard","time":"2018-07-14T14:19:14.992Z","enrolled":18752,"book":"http://jarrell.org","course_url":"https://athena.org"},{"course_title":"Corkery Group","course_number":84253,"instructor":"Julian Marquardt","location":"88690 Hettinger Summit","time":"2018-07-14T00:12:16.221Z","enrolled":94734,"book":"https://tomas.org","course_url":"https://addison.name"},{"course_title":"Rowe - Bahringer","course_number":34855,"instructor":"Abelardo Hoeger","location":"39796 Boyer Summit","time":"2018-07-14T19:12:50.542Z","enrolled":53082,"book":"http://orville.net","course_url":"http://edmond.com"},{"course_title":"Stark - Bartoletti","course_number":16858,"instructor":"Etha Krajcik","location":"8696 Bartoletti Hollow","time":"2018-07-14T03:10:58.975Z","enrolled":60388,"book":"https://kameron.name","course_url":"http://bonita.net"},{"course_title":"Abbott Inc","course_number":40175,"instructor":"Shayna Trantow","location":"73841 Schimmel Highway","time":"2018-07-14T16:07:37.454Z","enrolled":39234,"book":"https://davonte.info","course_url":"https://brain.org"},{"course_title":"Howell - Stoltenberg","course_number":77783,"instructor":"Ms. Jacinthe Ratke","location":"8925 Priscilla Neck","time":"2018-07-14T11:17:46.744Z","enrolled":10194,"book":"http://jerel.name","course_url":"http://valerie.info"},{"course_title":"Gutmann and Sons","course_number":64602,"instructor":"Alexandro Welch","location":"59493 Gretchen Terrace","time":"2018-07-14T00:16:29.126Z","enrolled":8965,"book":"https://dorothea.info","course_url":"https://robin.org"},{"course_title":"Pouros Inc","course_number":72872,"instructor":"Michel Jenkins","location":"36890 Harris Fields","time":"2018-07-14T01:52:45.601Z","enrolled":10077,"book":"http://sandra.info","course_url":"http://devyn.name"},{"course_title":"Zemlak - Fisher","course_number":88866,"instructor":"Payton Mann","location":"237 Emmie Manor","time":"2018-07-14T21:08:09.588Z","enrolled":3566,"book":"https://dorcas.name","course_url":"http://sadye.biz"},{"course_title":"Konopelski LLC","course_number":6698,"instructor":"Nicolas Monahan","location":"396 Adam Common","time":"2018-07-14T08:12:53.465Z","enrolled":78157,"book":"http://clyde.org","course_url":"https://aniya.info"},{"course_title":"Fritsch, Yundt and King","course_number":77487,"instructor":"Marjorie Gleason","location":"06456 Jerde Stravenue","time":"2018-07-14T20:30:46.253Z","enrolled":76697,"book":"https://kiarra.biz","course_url":"http://lauryn.com"},{"course_title":"Wuckert LLC","course_number":17619,"instructor":"Rosendo DuBuque","location":"6292 Jazmyne Common","time":"2018-07-14T06:09:36.673Z","enrolled":7800,"book":"http://marian.net","course_url":"http://carlo.com"},{"course_title":"Weissnat Group","course_number":82714,"instructor":"Annamae Konopelski","location":"0197 Bechtelar Street","time":"2018-07-14T03:57:47.886Z","enrolled":21653,"book":"http://freida.com","course_url":"http://rhiannon.org"},{"course_title":"Hodkiewicz - Boyer","course_number":81723,"instructor":"Annabelle Pfannerstill","location":"7073 Kautzer Point","time":"2018-07-14T07:14:24.095Z","enrolled":4733,"book":"https://enid.com","course_url":"https://theresia.name"},{"course_title":"Ruecker and Sons","course_number":72494,"instructor":"Mariano Schaden DVM","location":"020 Florian Field","time":"2018-07-14T04:16:18.188Z","enrolled":74511,"book":"http://chaz.name","course_url":"https://kathryn.name"},{"course_title":"Grant - Torphy","course_number":26060,"instructor":"Kariane Larson","location":"4369 Anastasia Hills","time":"2018-07-14T04:58:20.571Z","enrolled":4964,"book":"http://mittie.name","course_url":"https://kendrick.info"},{"course_title":"Trantow and Sons","course_number":78420,"instructor":"Brennon Trantow","location":"35773 Zemlak Parkway","time":"2018-07-14T11:04:25.902Z","enrolled":90635,"book":"https://ryleigh.net","course_url":"https://karelle.org"},{"course_title":"Nitzsche LLC","course_number":78599,"instructor":"Jeffry Hyatt","location":"5473 Rashad Route","time":"2018-07-14T19:33:32.730Z","enrolled":99024,"book":"https://modesto.org","course_url":"http://ronaldo.com"},{"course_title":"Koch Group","course_number":46739,"instructor":"Yvonne Jast","location":"256 Mya Streets","time":"2018-07-14T12:02:04.510Z","enrolled":36310,"book":"https://lenora.info","course_url":"https://daniela.com"},{"course_title":"Shanahan, Okuneva and Lind","course_number":2785,"instructor":"Verda O'Hara","location":"8614 Turner Path","time":"2018-07-13T23:39:34.606Z","enrolled":47315,"book":"https://berry.net","course_url":"https://logan.name"},{"course_title":"Purdy, Gerlach and Orn","course_number":22324,"instructor":"Jerry Glover","location":"354 Waters Unions","time":"2018-07-14T16:46:26.951Z","enrolled":4332,"book":"https://emil.biz","course_url":"http://dangelo.com"},{"course_title":"Boyer - Kautzer","course_number":7714,"instructor":"Ms. Bert Christiansen","location":"00849 Preston Shoals","time":"2018-07-14T04:54:03.012Z","enrolled":78287,"book":"https://alycia.com","course_url":"https://devon.org"},{"course_title":"Labadie and Sons","course_number":67494,"instructor":"Jo Paucek","location":"071 Nettie Drives","time":"2018-07-14T15:10:39.717Z","enrolled":48603,"book":"http://yasmeen.net","course_url":"https://kassandra.biz"},{"course_title":"Fadel LLC","course_number":48788,"instructor":"Shana Kulas","location":"65821 Aryanna Green","time":"2018-07-14T10:04:04.235Z","enrolled":60495,"book":"http://logan.biz","course_url":"https://yesenia.net"},{"course_title":"Emmerich LLC","course_number":57804,"instructor":"Juanita Lehner","location":"68971 Reta Path","time":"2018-07-14T03:01:51.354Z","enrolled":70293,"book":"https://esther.net","course_url":"http://elliot.net"},{"course_title":"Ruecker Inc","course_number":16859,"instructor":"Mariam Schuppe","location":"41466 Treutel Roads","time":"2018-07-14T18:56:42.496Z","enrolled":71542,"book":"http://braxton.biz","course_url":"https://jerad.net"},{"course_title":"Lemke - Cummings","course_number":57687,"instructor":"Oceane Glover","location":"592 Franecki Green","time":"2018-07-14T15:26:49.983Z","enrolled":56725,"book":"https://donnie.name","course_url":"http://gus.info"},{"course_title":"Feeney LLC","course_number":39531,"instructor":"Darlene Hickle","location":"064 Adonis Shores","time":"2018-07-14T07:40:41.340Z","enrolled":66730,"book":"http://deonte.biz","course_url":"https://myron.net"},{"course_title":"Johnson Group","course_number":75991,"instructor":"Juvenal Ernser","location":"50794 Walsh Viaduct","time":"2018-07-13T23:47:10.759Z","enrolled":37920,"book":"https://anastacio.biz","course_url":"https://quinn.biz"},{"course_title":"Feeney - Littel","course_number":85066,"instructor":"Dortha Hayes","location":"3149 Rau Manors","time":"2018-07-14T01:35:05.014Z","enrolled":94480,"book":"http://edgar.org","course_url":"https://reba.org"},{"course_title":"Sipes and Sons","course_number":69991,"instructor":"Name Thompson","location":"139 Augusta Centers","time":"2018-07-14T21:53:23.908Z","enrolled":14341,"book":"http://emmanuelle.name","course_url":"https://craig.info"},{"course_title":"Dibbert - Greenholt","course_number":21846,"instructor":"Torey MacGyver","location":"6480 Wunsch Ridge","time":"2018-07-14T22:12:49.771Z","enrolled":43051,"book":"http://jerald.biz","course_url":"https://josiane.info"},{"course_title":"Koch - Conn","course_number":66840,"instructor":"Violet O'Reilly","location":"9624 Brent Pike","time":"2018-07-14T09:25:45.462Z","enrolled":52123,"book":"http://sarina.net","course_url":"https://jakob.net"},{"course_title":"Stracke, Price and Ziemann","course_number":48515,"instructor":"Angeline Satterfield","location":"4418 Schaden Trafficway","time":"2018-07-14T20:04:40.647Z","enrolled":51628,"book":"http://clair.info","course_url":"http://andre.name"},{"course_title":"Bauch Group","course_number":96626,"instructor":"Tyson Jaskolski","location":"59020 Graham Loop","time":"2018-07-14T11:57:29.812Z","enrolled":28722,"book":"http://kaela.name","course_url":"https://allen.com"},{"course_title":"Kassulke - Wehner","course_number":14455,"instructor":"Gino Zulauf","location":"786 Nikolaus Extension","time":"2018-07-14T04:47:40.627Z","enrolled":43012,"book":"https://gerardo.info","course_url":"https://estrella.net"},{"course_title":"Herman - Halvorson","course_number":74661,"instructor":"Columbus Nitzsche","location":"109 Elton Walk","time":"2018-07-14T10:15:40.432Z","enrolled":79173,"book":"https://richie.org","course_url":"http://jeremie.org"},{"course_title":"Olson and Sons","course_number":43877,"instructor":"Charlotte Bailey","location":"68332 Jameson Isle","time":"2018-07-14T10:53:02.304Z","enrolled":89599,"book":"http://cary.com","course_url":"https://nels.name"},{"course_title":"Lueilwitz - Reichert","course_number":44861,"instructor":"Okey Jast","location":"8845 Schoen Ferry","time":"2018-07-14T10:23:16.742Z","enrolled":55377,"book":"https://laurel.net","course_url":"http://josie.com"},{"course_title":"Deckow, Wilkinson and Volkman","course_number":26016,"instructor":"Okey Price","location":"414 Schiller Manor","time":"2018-07-14T08:07:15.595Z","enrolled":16943,"book":"https://deonte.net","course_url":"http://reymundo.net"},{"course_title":"Balistreri - Goyette","course_number":10317,"instructor":"Mr. Chadd Romaguera","location":"18104 Stracke Greens","time":"2018-07-14T01:58:34.880Z","enrolled":61805,"book":"http://colten.com","course_url":"https://electa.name"},{"course_title":"Kovacek Inc","course_number":57865,"instructor":"Zachery Torphy","location":"0842 Feeney Streets","time":"2018-07-14T01:56:25.449Z","enrolled":68792,"book":"http://kane.com","course_url":"https://emilio.biz"},{"course_title":"Stokes - Johnson","course_number":787,"instructor":"Pierce Langworth","location":"7746 Yvonne Forest","time":"2018-07-14T21:08:06.220Z","enrolled":36644,"book":"http://emely.name","course_url":"https://edyth.info"},{"course_title":"Breitenberg, Mann and Boehm","course_number":54135,"instructor":"Elsa Beahan","location":"9602 Elvie Track","time":"2018-07-14T10:02:19.512Z","enrolled":78943,"book":"https://fanny.org","course_url":"https://mose.com"},{"course_title":"Effertz - Dibbert","course_number":25851,"instructor":"Trent Bogan","location":"464 Cody Expressway","time":"2018-07-14T11:49:03.317Z","enrolled":87151,"book":"https://louvenia.info","course_url":"http://glennie.org"},{"course_title":"Lind, McGlynn and Parker","course_number":99905,"instructor":"Brandyn Kertzmann","location":"54650 Patrick Cliff","time":"2018-07-14T06:05:16.869Z","enrolled":21890,"book":"http://stewart.org","course_url":"https://oran.name"},{"course_title":"Gaylord - Smitham","course_number":89402,"instructor":"Madaline Bins","location":"7522 Gunnar Shores","time":"2018-07-14T08:09:03.261Z","enrolled":91436,"book":"http://nathaniel.info","course_url":"http://jude.org"},{"course_title":"Nienow, O'Connell and Stokes","course_number":27111,"instructor":"Lenora Howell","location":"831 Mraz Circle","time":"2018-07-14T21:38:06.354Z","enrolled":96181,"book":"http://tressie.name","course_url":"https://thaddeus.name"},{"course_title":"Friesen, Schroeder and Ryan","course_number":71003,"instructor":"Darian Langosh","location":"10703 Carley Brook","time":"2018-07-14T14:34:27.327Z","enrolled":5117,"book":"http://erna.org","course_url":"http://cristal.org"},{"course_title":"Gislason - Mosciski","course_number":15547,"instructor":"Trace Brekke","location":"830 Schaden Villages","time":"2018-07-14T12:47:06.351Z","enrolled":9177,"book":"http://wyman.org","course_url":"https://rylan.name"},{"course_title":"Lakin, Dicki and Bauch","course_number":90610,"instructor":"Josefa Gottlieb MD","location":"261 Gorczany Court","time":"2018-07-14T03:31:15.950Z","enrolled":98716,"book":"http://murl.org","course_url":"http://darlene.biz"},{"course_title":"Steuber, King and Leannon","course_number":98653,"instructor":"Faustino Klein","location":"43644 Akeem Crest","time":"2018-07-14T10:02:09.255Z","enrolled":56251,"book":"https://arnold.biz","course_url":"https://marcelina.net"},{"course_title":"Jast - Beier","course_number":15291,"instructor":"Kayla Huels","location":"56885 Vidal Way","time":"2018-07-14T13:23:22.246Z","enrolled":82791,"book":"http://scotty.info","course_url":"http://jena.info"},{"course_title":"Conroy - Feest","course_number":7368,"instructor":"Wilbert McCullough","location":"37642 Weldon Tunnel","time":"2018-07-14T19:41:51.295Z","enrolled":93986,"book":"http://adriana.biz","course_url":"http://roman.com"},{"course_title":"Nader, McKenzie and Nitzsche","course_number":41848,"instructor":"Tod Abernathy","location":"18617 Beryl Port","time":"2018-07-14T06:42:12.094Z","enrolled":66811,"book":"http://bell.biz","course_url":"http://jaylan.org"},{"course_title":"Veum Group","course_number":59495,"instructor":"Gordon Goyette","location":"149 Connelly Forest","time":"2018-07-13T23:55:57.532Z","enrolled":91518,"book":"http://amparo.com","course_url":"http://eleazar.net"},{"course_title":"Kuhn, Kiehn and Towne","course_number":91912,"instructor":"Giovani Blanda DDS","location":"15694 Mathew Land","time":"2018-07-14T02:25:31.440Z","enrolled":92292,"book":"http://neha.org","course_url":"https://tia.net"},{"course_title":"Blanda Inc","course_number":75732,"instructor":"Miss Bradford Bogisich","location":"59639 Stevie Divide","time":"2018-07-14T07:47:17.597Z","enrolled":93648,"book":"https://nels.org","course_url":"http://chance.com"},{"course_title":"Eichmann, Weber and Wilkinson","course_number":41750,"instructor":"Dr. Creola Mohr","location":"64512 Jimmie Stravenue","time":"2018-07-14T22:27:41.528Z","enrolled":13588,"book":"http://durward.com","course_url":"https://louisa.name"},{"course_title":"Schuster, Cummerata and Herman","course_number":66430,"instructor":"Brandy Blanda","location":"786 Simonis Crossroad","time":"2018-07-14T12:55:04.090Z","enrolled":50712,"book":"http://leland.com","course_url":"https://alda.com"},{"course_title":"Swaniawski, Willms and Gorczany","course_number":63483,"instructor":"Melissa Schoen","location":"77931 Hamill Lodge","time":"2018-07-14T00:39:11.969Z","enrolled":36421,"book":"http://jesus.info","course_url":"https://derek.net"},{"course_title":"Bergstrom - Padberg","course_number":35846,"instructor":"Felicity Russel","location":"188 Valentine Mills","time":"2018-07-14T22:18:13.887Z","enrolled":86968,"book":"https://wilmer.info","course_url":"https://cole.name"},{"course_title":"Little - Hamill","course_number":90439,"instructor":"Stanley McLaughlin","location":"549 Witting Flats","time":"2018-07-14T09:54:53.909Z","enrolled":24812,"book":"http://gunner.biz","course_url":"https://hellen.org"},{"course_title":"Ferry and Sons","course_number":86064,"instructor":"Rosemarie Heathcote","location":"00406 Fisher Skyway","time":"2018-07-14T08:52:07.128Z","enrolled":79773,"book":"http://delmer.biz","course_url":"http://lelah.org"},{"course_title":"Robel Inc","course_number":58577,"instructor":"Geoffrey Bayer IV","location":"349 Lucie View","time":"2018-07-14T13:20:34.019Z","enrolled":98101,"book":"http://elyssa.com","course_url":"http://sabrina.biz"},{"course_title":"Flatley Inc","course_number":62442,"instructor":"Lyla Dooley","location":"4458 Breitenberg Mountains","time":"2018-07-14T10:08:50.369Z","enrolled":41001,"book":"http://johnpaul.biz","course_url":"https://charity.net"},{"course_title":"Langosh and Sons","course_number":95667,"instructor":"Nelson Heller","location":"447 Schumm Harbor","time":"2018-07-14T14:42:38.285Z","enrolled":30924,"book":"http://dakota.biz","course_url":"https://jaeden.info"},{"course_title":"Hegmann, Maggio and Feil","course_number":4792,"instructor":"Dr. Ruben Leannon","location":"44684 Kris Garden","time":"2018-07-14T15:43:50.746Z","enrolled":40330,"book":"http://ralph.biz","course_url":"https://consuelo.biz"},{"course_title":"Larson - Schneider","course_number":41461,"instructor":"Alexandrine Collins V","location":"89928 Auer Stream","time":"2018-07-14T01:17:03.934Z","enrolled":26827,"book":"https://nellie.biz","course_url":"http://nathanial.net"},{"course_title":"Lehner - Mueller","course_number":42286,"instructor":"Carolyne Predovic DVM","location":"33233 Ankunding Groves","time":"2018-07-14T16:58:28.264Z","enrolled":64129,"book":"http://clarissa.com","course_url":"https://gavin.org"},{"course_title":"Mante, Jacobson and Bosco","course_number":2097,"instructor":"Ozella Terry V","location":"1808 Larkin Cape","time":"2018-07-14T04:00:43.701Z","enrolled":85052,"book":"http://danyka.biz","course_url":"http://emory.info"},{"course_title":"Lemke Group","course_number":38119,"instructor":"Dominic Will","location":"843 Padberg Junctions","time":"2018-07-14T12:06:05.994Z","enrolled":14366,"book":"http://morris.net","course_url":"https://naomie.com"},{"course_title":"Boyer, Cassin and Heidenreich","course_number":56116,"instructor":"Eileen Gulgowski","location":"159 Harris Crossing","time":"2018-07-14T15:38:39.405Z","enrolled":10882,"book":"http://lavern.info","course_url":"http://arden.org"},{"course_title":"Schneider Inc","course_number":47797,"instructor":"Tamara Quigley","location":"5341 Quitzon Unions","time":"2018-07-14T16:41:30.057Z","enrolled":53768,"book":"https://jerry.name","course_url":"https://zechariah.org"},{"course_title":"Terry, Zemlak and Cummings","course_number":75649,"instructor":"Mayra Bartoletti Sr.","location":"28882 Assunta Haven","time":"2018-07-14T00:14:00.477Z","enrolled":91615,"book":"https://pearl.org","course_url":"https://kurtis.info"},{"course_title":"Jast and Sons","course_number":73802,"instructor":"Maudie Wiegand IV","location":"5106 Maegan Ranch","time":"2018-07-14T16:33:29.288Z","enrolled":83877,"book":"http://rebeka.info","course_url":"https://berenice.com"},{"course_title":"Funk LLC","course_number":75618,"instructor":"Mrs. Earl Breitenberg","location":"290 Sawayn Stravenue","time":"2018-07-13T23:59:00.290Z","enrolled":59026,"book":"https://xzavier.org","course_url":"http://loraine.org"},{"course_title":"Balistreri - Glover","course_number":89788,"instructor":"Casimir Cremin","location":"7154 Ibrahim Lake","time":"2018-07-14T09:07:44.810Z","enrolled":54235,"book":"https://chadd.net","course_url":"http://darron.info"},{"course_title":"Rohan - Goldner","course_number":16902,"instructor":"Pearlie Schiller","location":"60545 Nils Haven","time":"2018-07-14T08:30:14.860Z","enrolled":62812,"book":"https://saul.org","course_url":"http://brent.info"},{"course_title":"Swaniawski LLC","course_number":46497,"instructor":"Sharon Mante","location":"0978 Jewel Center","time":"2018-07-14T00:49:06.457Z","enrolled":6887,"book":"http://gabrielle.net","course_url":"https://kendra.biz"},{"course_title":"Keeling LLC","course_number":31418,"instructor":"Ellsworth Kuhic","location":"9494 Glover Underpass","time":"2018-07-14T18:46:37.269Z","enrolled":43163,"book":"http://houston.com","course_url":"http://laverna.biz"},{"course_title":"Volkman Group","course_number":74055,"instructor":"Evangeline Bosco","location":"3438 Berge Hills","time":"2018-07-14T14:12:21.976Z","enrolled":31928,"book":"http://gunnar.info","course_url":"http://josephine.org"},{"course_title":"Herman Group","course_number":93368,"instructor":"Jordi Rutherford","location":"586 Amiya Throughway","time":"2018-07-14T10:45:59.470Z","enrolled":43792,"book":"http://tianna.com","course_url":"http://samantha.info"},{"course_title":"Macejkovic, Pagac and Johnson","course_number":75191,"instructor":"Dr. Polly Bernier","location":"165 Karina Tunnel","time":"2018-07-14T12:17:58.953Z","enrolled":74757,"book":"https://juliet.com","course_url":"http://rita.biz"},{"course_title":"Kozey LLC","course_number":81089,"instructor":"Logan MacGyver","location":"9963 Corbin Branch","time":"2018-07-14T05:46:59.414Z","enrolled":61519,"book":"http://kaela.org","course_url":"http://aracely.name"},{"course_title":"Kub, Baumbach and Hauck","course_number":48377,"instructor":"Jovany Fahey","location":"5293 Jakubowski Stream","time":"2018-07-14T23:07:57.590Z","enrolled":46058,"book":"https://zoie.biz","course_url":"https://cassandre.org"},{"course_title":"Leffler, Steuber and Huels","course_number":69490,"instructor":"Miss Lorenzo Heidenreich","location":"6773 Mohr Hills","time":"2018-07-14T10:15:05.524Z","enrolled":54367,"book":"http://garrison.info","course_url":"https://moses.net"},{"course_title":"Koelpin LLC","course_number":91162,"instructor":"Reggie Strosin","location":"6932 Borer Motorway","time":"2018-07-14T21:21:33.922Z","enrolled":19521,"book":"https://noelia.org","course_url":"http://zola.biz"},{"course_title":"Stokes LLC","course_number":74425,"instructor":"Marjorie Fay Sr.","location":"78887 Konopelski Lane","time":"2018-07-14T11:22:56.579Z","enrolled":29926,"book":"https://eli.biz","course_url":"https://keara.name"},{"course_title":"Wilkinson, Hermiston and Lindgren","course_number":93018,"instructor":"Margarita Weissnat","location":"9375 Marks Avenue","time":"2018-07-13T23:50:27.286Z","enrolled":29536,"book":"http://jedediah.name","course_url":"http://reinhold.org"},{"course_title":"Schumm - Bogan","course_number":313,"instructor":"Novella Nicolas","location":"17753 Marquise Light","time":"2018-07-14T05:16:48.476Z","enrolled":84351,"book":"http://burdette.com","course_url":"https://rosie.net"},{"course_title":"Pouros LLC","course_number":48467,"instructor":"Elouise Dickens","location":"5227 Graham Bypass","time":"2018-07-14T13:52:49.701Z","enrolled":14264,"book":"http://elisabeth.info","course_url":"https://arvel.com"},{"course_title":"Fay Group","course_number":36026,"instructor":"Lilly Wiza","location":"3429 Wilderman Terrace","time":"2018-07-14T22:29:48.380Z","enrolled":106,"book":"http://jackeline.info","course_url":"https://georgianna.biz"},{"course_title":"Corkery Group","course_number":65726,"instructor":"Katlynn McLaughlin I","location":"98651 Waters Ramp","time":"2018-07-14T06:31:48.546Z","enrolled":46140,"book":"http://harmony.biz","course_url":"http://fae.name"},{"course_title":"Dickinson, Nikolaus and Feest","course_number":25970,"instructor":"Arely Davis","location":"7407 O'Keefe Row","time":"2018-07-14T01:42:49.410Z","enrolled":33,"book":"http://lisette.org","course_url":"https://werner.com"},{"course_title":"Hahn - Jast","course_number":42365,"instructor":"Hanna Kreiger","location":"710 Dach Radial","time":"2018-07-14T08:23:38.554Z","enrolled":95557,"book":"http://lilla.name","course_url":"https://berneice.net"},{"course_title":"Schaden, Hills and Okuneva","course_number":3299,"instructor":"Paris Koch","location":"3105 Abdiel Mill","time":"2018-07-14T00:40:32.368Z","enrolled":92449,"book":"http://garland.biz","course_url":"http://jaime.biz"},{"course_title":"Harber - Lesch","course_number":68420,"instructor":"Alexandra Gleason","location":"57300 Rosalee Hills","time":"2018-07-14T08:10:02.277Z","enrolled":50580,"book":"http://justyn.biz","course_url":"http://sofia.com"},{"course_title":"Shields LLC","course_number":36516,"instructor":"Amie Homenick","location":"3401 Steuber Mountain","time":"2018-07-14T07:21:21.975Z","enrolled":66741,"book":"http://gisselle.biz","course_url":"http://litzy.biz"},{"course_title":"Mueller - Herzog","course_number":22999,"instructor":"Dillan O'Connell","location":"398 Wyatt Keys","time":"2018-07-14T11:08:34.298Z","enrolled":30013,"book":"https://lincoln.net","course_url":"http://reagan.com"},{"course_title":"Batz, Larson and Osinski","course_number":51827,"instructor":"Caterina Fadel","location":"912 Dibbert Knoll","time":"2018-07-14T09:24:55.827Z","enrolled":91957,"book":"http://caterina.com","course_url":"https://cornell.name"},{"course_title":"Stehr LLC","course_number":52639,"instructor":"Kobe Zieme","location":"2874 Angie Track","time":"2018-07-14T13:46:47.104Z","enrolled":29178,"book":"https://kyler.com","course_url":"http://lonnie.biz"},{"course_title":"Hickle Group","course_number":86960,"instructor":"Elliott Strosin","location":"954 Jeanie Branch","time":"2018-07-14T18:37:47.771Z","enrolled":53418,"book":"http://rudolph.net","course_url":"http://earl.name"},{"course_title":"Towne and Sons","course_number":6770,"instructor":"Randall Rodriguez II","location":"949 Elmer Harbors","time":"2018-07-14T10:31:38.645Z","enrolled":35669,"book":"http://emmanuel.org","course_url":"https://peggie.org"},{"course_title":"Stroman, Keebler and Labadie","course_number":10793,"instructor":"Seth Lind","location":"793 Terrance Cliffs","time":"2018-07-14T14:04:10.031Z","enrolled":78840,"book":"http://jabari.biz","course_url":"https://zack.biz"},{"course_title":"Hudson Inc","course_number":78889,"instructor":"Noble Gislason","location":"390 Christelle Lights","time":"2018-07-14T05:52:31.859Z","enrolled":92387,"book":"https://reina.biz","course_url":"https://mervin.info"},{"course_title":"Fay - Hane","course_number":38187,"instructor":"Saige Bradtke","location":"955 Mack Streets","time":"2018-07-14T09:51:33.035Z","enrolled":95758,"book":"https://ryan.org","course_url":"http://maryjane.name"},{"course_title":"Armstrong, Zulauf and Gusikowski","course_number":82912,"instructor":"Ed VonRueden","location":"163 Kshlerin Mountains","time":"2018-07-14T08:18:53.107Z","enrolled":12676,"book":"https://mona.org","course_url":"https://nick.info"},{"course_title":"Frami Inc","course_number":56145,"instructor":"Augustine Armstrong","location":"079 Jaleel Flat","time":"2018-07-14T04:35:22.834Z","enrolled":30699,"book":"https://destinee.org","course_url":"http://annabell.net"},{"course_title":"Bechtelar - Tillman","course_number":3099,"instructor":"Edward Volkman","location":"2909 Abigale Canyon","time":"2018-07-14T11:40:39.508Z","enrolled":83315,"book":"http://daija.name","course_url":"https://kyla.biz"},{"course_title":"Stiedemann, Daugherty and Hyatt","course_number":54572,"instructor":"Ms. Iliana Pfeffer","location":"61637 Bode Trafficway","time":"2018-07-14T22:20:09.297Z","enrolled":49050,"book":"https://everardo.biz","course_url":"https://manuel.biz"},{"course_title":"Weber, Cassin and Deckow","course_number":38901,"instructor":"Alexis Swift","location":"284 Hyatt Rapid","time":"2018-07-14T15:17:40.370Z","enrolled":77291,"book":"https://raphael.org","course_url":"https://darrick.info"},{"course_title":"Blanda, Reinger and Lubowitz","course_number":48090,"instructor":"Jarred Crona","location":"3789 Jaqueline Plains","time":"2018-07-14T09:11:01.705Z","enrolled":77787,"book":"http://icie.name","course_url":"http://kolby.biz"},{"course_title":"Swaniawski - Kunze","course_number":47880,"instructor":"Roberta Reichel","location":"8543 Goodwin Spurs","time":"2018-07-14T08:51:38.654Z","enrolled":17093,"book":"http://keagan.net","course_url":"https://nolan.org"},{"course_title":"Johnson, Treutel and Zboncak","course_number":59375,"instructor":"Carole Klocko","location":"0469 Zack Villages","time":"2018-07-14T09:36:32.921Z","enrolled":27440,"book":"https://aaliyah.com","course_url":"http://hortense.net"},{"course_title":"Farrell Inc","course_number":17656,"instructor":"Giuseppe Conroy","location":"0980 Micah Mount","time":"2018-07-13T23:22:40.334Z","enrolled":24420,"book":"https://dayna.name","course_url":"https://ariel.info"},{"course_title":"Runolfsson, Dickinson and Gerhold","course_number":68819,"instructor":"Miss Rachel Jakubowski","location":"26264 Prosacco Branch","time":"2018-07-14T14:05:29.949Z","enrolled":81710,"book":"https://maurine.name","course_url":"http://nedra.net"},{"course_title":"Schumm Inc","course_number":26366,"instructor":"Paolo Von","location":"8336 Herman Unions","time":"2018-07-14T02:12:40.885Z","enrolled":59274,"book":"https://hilario.info","course_url":"https://darren.net"},{"course_title":"Schmidt - Sporer","course_number":94867,"instructor":"Shanon Schowalter DDS","location":"77104 Hills Trail","time":"2018-07-14T21:22:44.090Z","enrolled":19508,"book":"https://dashawn.info","course_url":"https://adolph.name"},{"course_title":"Mertz - Huel","course_number":65628,"instructor":"Myrtis Stanton","location":"30595 Jamar Port","time":"2018-07-14T21:10:42.934Z","enrolled":41524,"book":"http://brionna.info","course_url":"http://coralie.name"},{"course_title":"Howell and Sons","course_number":38202,"instructor":"Miss Katharina Becker","location":"98627 Stehr Shoals","time":"2018-07-14T07:15:25.496Z","enrolled":78609,"book":"http://ollie.info","course_url":"http://faustino.biz"},{"course_title":"Ryan Group","course_number":18767,"instructor":"Vernie Abernathy","location":"74741 Kenton Glen","time":"2018-07-14T19:19:12.508Z","enrolled":35887,"book":"https://junius.org","course_url":"https://yessenia.org"},{"course_title":"Muller - Roberts","course_number":18588,"instructor":"Johnathan Wiza","location":"3351 Smith Tunnel","time":"2018-07-14T00:39:26.953Z","enrolled":64168,"book":"http://marjorie.biz","course_url":"https://dejah.name"},{"course_title":"Hackett, Schmitt and Ebert","course_number":93008,"instructor":"Fatima Russel","location":"2205 Konopelski Motorway","time":"2018-07-14T14:54:45.034Z","enrolled":84049,"book":"https://mateo.info","course_url":"https://trudie.biz"},{"course_title":"Koelpin and Sons","course_number":22146,"instructor":"Pascale Brakus","location":"646 Molly Village","time":"2018-07-14T00:26:21.520Z","enrolled":83197,"book":"http://aliyah.name","course_url":"https://cornelius.net"},{"course_title":"Mayert and Sons","course_number":77697,"instructor":"Joanne Bednar","location":"7517 Klocko Overpass","time":"2018-07-14T18:04:15.252Z","enrolled":80004,"book":"https://jayda.name","course_url":"http://abdul.net"},{"course_title":"Bernhard, Weber and Goyette","course_number":548,"instructor":"Cruz Smitham IV","location":"3320 Franecki Summit","time":"2018-07-14T13:54:58.281Z","enrolled":12955,"book":"https://ransom.biz","course_url":"http://gerry.org"},{"course_title":"Dooley - Effertz","course_number":56961,"instructor":"Providenci Gulgowski","location":"0444 Kaleigh Route","time":"2018-07-14T06:01:50.159Z","enrolled":51898,"book":"https://oral.com","course_url":"http://dandre.net"},{"course_title":"Welch - Treutel","course_number":40766,"instructor":"Colten Pacocha MD","location":"7522 Ward Glens","time":"2018-07-14T22:14:01.843Z","enrolled":95693,"book":"http://melyssa.org","course_url":"http://deontae.info"},{"course_title":"Bauch - Waters","course_number":12490,"instructor":"Claire Schultz","location":"2671 Hills Circles","time":"2018-07-14T09:21:49.711Z","enrolled":31279,"book":"http://maybell.com","course_url":"http://lonzo.net"},{"course_title":"Feil, Daugherty and Haley","course_number":80600,"instructor":"Ayana Wisozk","location":"959 Alisha Mews","time":"2018-07-14T06:55:14.234Z","enrolled":48233,"book":"https://ciara.biz","course_url":"https://monserrate.net"},{"course_title":"Goldner - Carter","course_number":54076,"instructor":"Cierra Kirlin DVM","location":"53743 Garfield Shoals","time":"2018-07-14T13:10:42.317Z","enrolled":62871,"book":"https://gregorio.net","course_url":"https://rose.info"},{"course_title":"Kiehn, Kemmer and Feest","course_number":164,"instructor":"Kristopher Satterfield","location":"6492 Rickey Inlet","time":"2018-07-13T23:35:28.269Z","enrolled":1673,"book":"https://octavia.com","course_url":"https://elmira.biz"},{"course_title":"Grimes, Jaskolski and Hand","course_number":334,"instructor":"Dr. Ricardo Lakin","location":"86289 Adams Ports","time":"2018-07-14T15:39:25.322Z","enrolled":33238,"book":"https://elena.org","course_url":"https://stephen.net"},{"course_title":"Heller - Stoltenberg","course_number":35,"instructor":"Lolita Beer","location":"78787 Schroeder Knoll","time":"2018-07-14T14:18:35.529Z","enrolled":34072,"book":"https://ida.com","course_url":"http://rashawn.biz"},{"course_title":"Runte, Conn and VonRueden","course_number":4311,"instructor":"Kennedi Hansen","location":"8261 Brannon Cliffs","time":"2018-07-14T06:46:39.444Z","enrolled":59644,"book":"http://estelle.org","course_url":"https://nakia.net"},{"course_title":"Bechtelar - Stroman","course_number":31958,"instructor":"Reymundo Haag","location":"917 Darius Roads","time":"2018-07-14T11:46:53.200Z","enrolled":36475,"book":"http://miguel.name","course_url":"http://beryl.biz"},{"course_title":"Heathcote and Sons","course_number":6062,"instructor":"Norene Runolfsson","location":"5357 Abner Court","time":"2018-07-14T00:51:57.401Z","enrolled":92514,"book":"https://noemi.com","course_url":"http://weston.info"},{"course_title":"Mosciski, Hahn and Metz","course_number":99099,"instructor":"Nikolas Kulas","location":"179 Aylin Knoll","time":"2018-07-14T03:15:52.478Z","enrolled":6563,"book":"https://creola.org","course_url":"http://daniella.net"},{"course_title":"Metz - Bailey","course_number":66749,"instructor":"Martin Schaden","location":"3899 Federico Rapids","time":"2018-07-14T16:36:29.434Z","enrolled":37101,"book":"http://edwina.org","course_url":"https://reed.org"},{"course_title":"Rodriguez - Friesen","course_number":93783,"instructor":"Michaela Hahn","location":"02538 Ellie Corner","time":"2018-07-14T20:43:11.856Z","enrolled":84607,"book":"https://virginia.net","course_url":"http://weston.net"},{"course_title":"Keebler - Breitenberg","course_number":62738,"instructor":"Nick Wolf","location":"410 Brock Circle","time":"2018-07-14T12:03:45.861Z","enrolled":92792,"book":"http://dean.biz","course_url":"https://dasia.com"},{"course_title":"Lueilwitz - McDermott","course_number":55227,"instructor":"Dr. Leonie Rohan","location":"73147 Gislason Forks","time":"2018-07-14T15:19:30.611Z","enrolled":46566,"book":"https://carolyne.biz","course_url":"https://holly.net"},{"course_title":"Kohler - Toy","course_number":8864,"instructor":"Maud Reichert","location":"840 Hudson Centers","time":"2018-07-14T04:33:40.459Z","enrolled":6474,"book":"http://eleazar.org","course_url":"https://gracie.info"},{"course_title":"Rolfson Group","course_number":7523,"instructor":"Cristina Hand","location":"92268 Cassidy Centers","time":"2018-07-14T13:41:46.647Z","enrolled":11597,"book":"http://matteo.net","course_url":"https://rubie.name"},{"course_title":"Schuppe - Hauck","course_number":44032,"instructor":"Sheila Leffler","location":"828 Adams Gardens","time":"2018-07-14T00:21:35.354Z","enrolled":55657,"book":"https://kayla.com","course_url":"http://sid.info"},{"course_title":"O'Conner, Morar and Emard","course_number":4582,"instructor":"Mr. Ashton Kozey","location":"54515 Halvorson Views","time":"2018-07-14T05:18:18.818Z","enrolled":92709,"book":"http://loyal.biz","course_url":"http://giovanni.org"},{"course_title":"Lebsack Inc","course_number":30535,"instructor":"Rudolph Predovic","location":"488 Stark Meadow","time":"2018-07-14T09:46:06.107Z","enrolled":94991,"book":"http://jaida.name","course_url":"https://deja.info"},{"course_title":"Hayes, Kihn and Orn","course_number":52723,"instructor":"Alvera Jast","location":"947 Jillian Spur","time":"2018-07-14T05:24:10.620Z","enrolled":1760,"book":"https://major.com","course_url":"https://michel.org"},{"course_title":"Ratke, Aufderhar and Bernier","course_number":83171,"instructor":"Jess Schuppe","location":"0451 Koelpin Union","time":"2018-07-14T13:46:20.567Z","enrolled":25882,"book":"https://mike.info","course_url":"https://sidney.com"},{"course_title":"Mayert Inc","course_number":23899,"instructor":"Shyann White","location":"347 Dach Glens","time":"2018-07-14T03:26:25.406Z","enrolled":99115,"book":"https://earlene.net","course_url":"http://bart.net"},{"course_title":"Conn, Adams and Crooks","course_number":15822,"instructor":"Kaley Champlin","location":"786 Sidney Forge","time":"2018-07-14T01:40:26.750Z","enrolled":55084,"book":"https://dee.net","course_url":"http://anissa.net"},{"course_title":"Stamm and Sons","course_number":82238,"instructor":"Mrs. Seth Funk","location":"862 Zulauf Parkways","time":"2018-07-14T02:30:41.499Z","enrolled":82669,"book":"http://emerson.org","course_url":"http://kimberly.net"},{"course_title":"Barrows - Gerhold","course_number":47126,"instructor":"Miss Audrey O'Reilly","location":"6233 Dibbert Green","time":"2018-07-14T14:12:30.354Z","enrolled":49929,"book":"https://maxine.org","course_url":"http://leola.com"},{"course_title":"Jast, Upton and Romaguera","course_number":71211,"instructor":"Jacklyn Little","location":"801 Holden Lodge","time":"2018-07-14T12:18:22.945Z","enrolled":21832,"book":"https://arely.name","course_url":"https://sadye.name"},{"course_title":"Altenwerth Inc","course_number":94603,"instructor":"Alysson Hoppe","location":"67570 Bergnaum Track","time":"2018-07-14T00:06:56.676Z","enrolled":3278,"book":"http://jason.org","course_url":"https://sabryna.org"},{"course_title":"McLaughlin, Swift and Lindgren","course_number":1074,"instructor":"Guillermo Nienow","location":"877 Bayer Park","time":"2018-07-14T04:10:53.383Z","enrolled":7787,"book":"https://ambrose.info","course_url":"http://alexandrine.com"},{"course_title":"Block - Moore","course_number":73131,"instructor":"Briana Mosciski IV","location":"09059 Merlin Greens","time":"2018-07-14T10:45:12.186Z","enrolled":25829,"book":"http://elnora.biz","course_url":"http://celine.biz"},{"course_title":"Stracke and Sons","course_number":68966,"instructor":"Jensen Prohaska","location":"5447 Gregorio Plaza","time":"2018-07-14T17:57:38.293Z","enrolled":32484,"book":"http://johanna.name","course_url":"https://lawson.org"},{"course_title":"Rohan - Dicki","course_number":60434,"instructor":"Vernie Wolf","location":"0490 Predovic Row","time":"2018-07-14T15:05:26.961Z","enrolled":20612,"book":"https://gay.info","course_url":"http://judson.biz"},{"course_title":"Keebler, Lowe and Gleason","course_number":41787,"instructor":"Eddie Veum","location":"1256 Joanne Falls","time":"2018-07-14T06:17:49.403Z","enrolled":19012,"book":"https://amira.com","course_url":"https://benny.com"},{"course_title":"Jakubowski, Mills and Satterfield","course_number":52244,"instructor":"Mr. Fred Hayes","location":"49671 Brock Forges","time":"2018-07-14T09:57:14.638Z","enrolled":84921,"book":"https://merritt.info","course_url":"http://joelle.info"},{"course_title":"D'Amore Inc","course_number":94987,"instructor":"Mrs. Gerry Sipes","location":"08387 Deangelo Cove","time":"2018-07-14T22:11:13.491Z","enrolled":47046,"book":"http://abagail.info","course_url":"http://danyka.name"},{"course_title":"Denesik - Rogahn","course_number":35961,"instructor":"Francis Jast","location":"3069 Donnell Views","time":"2018-07-14T03:59:05.144Z","enrolled":14351,"book":"http://salvador.name","course_url":"http://zelda.name"},{"course_title":"Waelchi Group","course_number":62428,"instructor":"Mrs. Russel Bogan","location":"122 Arnoldo Isle","time":"2018-07-14T17:33:21.348Z","enrolled":50193,"book":"http://daphney.org","course_url":"https://alessandro.net"},{"course_title":"Kuphal - Von","course_number":94587,"instructor":"Milton Bailey","location":"220 David Plain","time":"2018-07-14T04:15:31.962Z","enrolled":28828,"book":"http://favian.net","course_url":"http://gilda.name"},{"course_title":"Renner, Nikolaus and Nikolaus","course_number":71462,"instructor":"Brent Bernhard DVM","location":"12691 Becker Locks","time":"2018-07-14T08:45:43.392Z","enrolled":30673,"book":"https://ottis.biz","course_url":"https://kailee.com"},{"course_title":"Romaguera and Sons","course_number":26110,"instructor":"Fabiola Kessler","location":"512 Lou Knoll","time":"2018-07-14T13:52:46.237Z","enrolled":17751,"book":"https://eda.biz","course_url":"https://macy.org"},{"course_title":"Lehner - Larson","course_number":72478,"instructor":"Celestino Ortiz","location":"325 Lemuel Park","time":"2018-07-14T13:23:53.876Z","enrolled":71921,"book":"http://giles.name","course_url":"http://taryn.com"},{"course_title":"Schmeler - Collins","course_number":79441,"instructor":"Dr. Cordell Schumm","location":"59362 Rogahn Terrace","time":"2018-07-14T10:32:54.715Z","enrolled":25888,"book":"http://arielle.info","course_url":"http://abdiel.com"},{"course_title":"Batz, Sporer and Schuster","course_number":11446,"instructor":"Jessy Kautzer","location":"02685 O'Reilly Mount","time":"2018-07-14T19:25:50.823Z","enrolled":62595,"book":"https://leann.biz","course_url":"http://zola.biz"},{"course_title":"Wyman and Sons","course_number":49622,"instructor":"Luella Ziemann","location":"927 Borer Pike","time":"2018-07-14T00:18:55.864Z","enrolled":59806,"book":"https://waino.net","course_url":"http://raymundo.name"},{"course_title":"Hickle Inc","course_number":77887,"instructor":"Jany Casper V","location":"734 Kohler Hills","time":"2018-07-14T14:29:53.779Z","enrolled":59684,"book":"http://ezra.info","course_url":"http://desiree.org"},{"course_title":"Fahey Inc","course_number":26509,"instructor":"Magdalen Crona II","location":"7798 Delilah Islands","time":"2018-07-14T20:02:50.106Z","enrolled":6026,"book":"http://simone.name","course_url":"https://keyon.biz"},{"course_title":"Murazik, Rippin and Watsica","course_number":23712,"instructor":"Dr. Levi Abshire","location":"5296 Miller Lane","time":"2018-07-14T17:00:25.620Z","enrolled":6804,"book":"http://ahmed.org","course_url":"http://carmella.net"},{"course_title":"Kshlerin Inc","course_number":36674,"instructor":"Jamar Leannon Jr.","location":"8962 Eve Island","time":"2018-07-14T19:45:27.830Z","enrolled":97350,"book":"https://asa.info","course_url":"https://karli.biz"},{"course_title":"Kutch Group","course_number":83820,"instructor":"Eloisa Wuckert","location":"5580 Nader Rapid","time":"2018-07-14T00:58:01.950Z","enrolled":4827,"book":"https://kris.com","course_url":"https://dawson.net"},{"course_title":"Vandervort LLC","course_number":15764,"instructor":"Deontae Senger Jr.","location":"78044 Adeline Loop","time":"2018-07-14T21:15:30.181Z","enrolled":52154,"book":"https://brandt.org","course_url":"http://eudora.name"},{"course_title":"Ferry, Weissnat and Schroeder","course_number":16941,"instructor":"Blanca Nienow","location":"30557 Hansen Brook","time":"2018-07-14T02:58:41.060Z","enrolled":68420,"book":"https://chaya.name","course_url":"http://amani.org"},{"course_title":"O'Kon, Collins and Krajcik","course_number":25399,"instructor":"Bryana O'Connell I","location":"83751 Balistreri Drive","time":"2018-07-14T18:33:17.363Z","enrolled":68118,"book":"https://yvonne.name","course_url":"https://javon.com"},{"course_title":"Grady - Schulist","course_number":161,"instructor":"Narciso Beatty","location":"6344 Berge Ridges","time":"2018-07-14T02:15:59.297Z","enrolled":58662,"book":"https://patience.net","course_url":"http://kathryn.info"},{"course_title":"Kertzmann, McLaughlin and Spencer","course_number":85143,"instructor":"Kailey Kilback","location":"13720 Klocko Squares","time":"2018-07-14T18:27:50.751Z","enrolled":48743,"book":"http://kassandra.net","course_url":"https://ryan.org"},{"course_title":"Goodwin LLC","course_number":43051,"instructor":"Arnoldo Pacocha","location":"38719 Adolph Fort","time":"2018-07-14T00:56:00.060Z","enrolled":27581,"book":"https://roma.org","course_url":"https://porter.net"},{"course_title":"Brekke and Sons","course_number":15851,"instructor":"Timmothy Denesik","location":"32421 Randy Ford","time":"2018-07-14T22:31:42.541Z","enrolled":78679,"book":"https://benjamin.net","course_url":"http://alverta.biz"},{"course_title":"Gleason, Shanahan and Leannon","course_number":30034,"instructor":"Kelsie Balistreri","location":"654 Baumbach Causeway","time":"2018-07-14T11:45:27.645Z","enrolled":56930,"book":"http://flavio.com","course_url":"http://ansel.name"},{"course_title":"Metz, Lemke and Kuhlman","course_number":44964,"instructor":"Domingo Simonis","location":"96749 Tristin Locks","time":"2018-07-13T23:38:14.508Z","enrolled":10813,"book":"https://laurianne.com","course_url":"https://lucio.info"},{"course_title":"Metz Inc","course_number":35433,"instructor":"Rodolfo Kutch","location":"8861 Reinger Trail","time":"2018-07-14T04:41:55.901Z","enrolled":85856,"book":"http://kellen.com","course_url":"http://dejuan.name"},{"course_title":"Ferry Group","course_number":68093,"instructor":"Stanton Bailey","location":"730 Dicki Unions","time":"2018-07-14T02:57:12.016Z","enrolled":56176,"book":"https://ismael.name","course_url":"https://assunta.name"},{"course_title":"Sauer, Schimmel and Rutherford","course_number":43412,"instructor":"Amaya Morissette IV","location":"1690 Randall Crossing","time":"2018-07-14T03:34:43.532Z","enrolled":26131,"book":"https://lauriane.biz","course_url":"https://felton.net"},{"course_title":"Connelly Inc","course_number":87037,"instructor":"Lavina Christiansen","location":"272 Okuneva Road","time":"2018-07-14T17:27:33.072Z","enrolled":7433,"book":"http://bella.org","course_url":"https://naomie.com"},{"course_title":"Mann, Kassulke and Parker","course_number":31107,"instructor":"Ezra Spinka","location":"5493 Clemmie Island","time":"2018-07-14T16:25:49.474Z","enrolled":8943,"book":"https://estefania.com","course_url":"https://derick.com"},{"course_title":"Cremin - Shanahan","course_number":53876,"instructor":"Miss Dameon Schuster","location":"293 Parker Falls","time":"2018-07-14T22:44:39.992Z","enrolled":96012,"book":"https://destiney.biz","course_url":"https://daisy.net"},{"course_title":"Kohler Group","course_number":28162,"instructor":"Ola Hills","location":"85233 Bogisich Street","time":"2018-07-14T08:22:53.533Z","enrolled":33329,"book":"http://charity.com","course_url":"http://barry.biz"},{"course_title":"Bradtke LLC","course_number":50155,"instructor":"Sincere Williamson","location":"459 Abshire Village","time":"2018-07-14T18:37:53.457Z","enrolled":19323,"book":"http://herta.net","course_url":"http://tatyana.biz"},{"course_title":"Batz, Schaefer and Breitenberg","course_number":13006,"instructor":"Lucy Torphy","location":"116 Cortney Crossing","time":"2018-07-14T01:12:30.062Z","enrolled":63428,"book":"https://ariel.net","course_url":"https://chester.biz"},{"course_title":"Bahringer, Graham and Blick","course_number":24857,"instructor":"Jabari Jacobson","location":"71328 Bradtke Lakes","time":"2018-07-14T09:20:37.924Z","enrolled":31554,"book":"https://emmitt.name","course_url":"https://christina.info"},{"course_title":"Denesik, Quigley and Moore","course_number":31145,"instructor":"Bridget Muller","location":"1635 Douglas Trace","time":"2018-07-14T19:00:13.536Z","enrolled":30865,"book":"http://evan.com","course_url":"https://morris.com"},{"course_title":"Jakubowski - Morissette","course_number":91699,"instructor":"Landen Breitenberg","location":"12517 Jacobson Forges","time":"2018-07-14T17:04:10.866Z","enrolled":65953,"book":"https://quinton.org","course_url":"https://sincere.org"},{"course_title":"Ferry - Wilderman","course_number":99163,"instructor":"Tanner Wintheiser","location":"3779 Imogene Unions","time":"2018-07-14T03:35:58.107Z","enrolled":91999,"book":"https://tobin.name","course_url":"https://yessenia.biz"},{"course_title":"Schuppe - Waters","course_number":88337,"instructor":"Florian Cruickshank","location":"92766 Considine Square","time":"2018-07-14T16:30:10.371Z","enrolled":10425,"book":"http://anabelle.net","course_url":"http://rosalinda.com"},{"course_title":"Lynch LLC","course_number":70709,"instructor":"Mr. River Jerde","location":"2574 Floyd Groves","time":"2018-07-14T08:34:47.227Z","enrolled":77243,"book":"https://yasmeen.biz","course_url":"https://marisa.net"},{"course_title":"Torphy - Nitzsche","course_number":25109,"instructor":"Mr. Clyde Barrows","location":"709 Stehr Station","time":"2018-07-14T14:41:39.751Z","enrolled":34203,"book":"https://virgie.org","course_url":"https://fiona.org"},{"course_title":"Kris, Parker and Rosenbaum","course_number":61011,"instructor":"Trevor Heathcote","location":"1462 Bill Grove","time":"2018-07-14T15:50:05.303Z","enrolled":15302,"book":"http://kali.org","course_url":"https://harmon.org"},{"course_title":"Nicolas LLC","course_number":75849,"instructor":"Lucio Sporer","location":"9550 Roscoe Prairie","time":"2018-07-14T07:00:05.813Z","enrolled":20762,"book":"https://elena.org","course_url":"https://ceasar.org"},{"course_title":"Huel, Donnelly and Stark","course_number":75256,"instructor":"Erik Kuphal","location":"8077 Emard Plains","time":"2018-07-14T07:06:42.050Z","enrolled":39238,"book":"https://virgil.net","course_url":"http://guido.org"},{"course_title":"Harber LLC","course_number":92457,"instructor":"Laura O'Keefe","location":"894 Ward Forest","time":"2018-07-14T18:03:34.592Z","enrolled":26291,"book":"https://abby.name","course_url":"http://devante.info"},{"course_title":"Boyer - Collins","course_number":54714,"instructor":"Molly Nitzsche","location":"05727 Fisher Knoll","time":"2018-07-14T22:28:07.873Z","enrolled":57050,"book":"http://emelia.net","course_url":"http://bethany.net"},{"course_title":"Towne, Hilpert and Fisher","course_number":49644,"instructor":"Kylee Kuhn IV","location":"1038 Elsie Stravenue","time":"2018-07-14T03:04:36.448Z","enrolled":2750,"book":"https://lauren.biz","course_url":"https://stefan.com"},{"course_title":"Schmeler and Sons","course_number":59563,"instructor":"Juliet Hahn","location":"4687 Kathryne Highway","time":"2018-07-14T03:48:00.087Z","enrolled":26772,"book":"https://kaelyn.biz","course_url":"http://trinity.com"},{"course_title":"Little Inc","course_number":29917,"instructor":"Macey Labadie","location":"5750 Ramona Falls","time":"2018-07-14T12:30:17.993Z","enrolled":72606,"book":"https://nicholas.com","course_url":"http://helena.org"},{"course_title":"Green - Feeney","course_number":49585,"instructor":"Dedrick Schmeler","location":"043 Adrain Land","time":"2018-07-14T06:00:51.234Z","enrolled":18940,"book":"https://camryn.info","course_url":"https://elaina.net"},{"course_title":"Kunde - Heaney","course_number":86207,"instructor":"Eulalia Huels","location":"91301 Carter Junctions","time":"2018-07-14T06:18:42.022Z","enrolled":94373,"book":"https://davin.info","course_url":"https://adonis.biz"},{"course_title":"Kuhn Group","course_number":75860,"instructor":"Anabelle Kris","location":"7624 Stella Rest","time":"2018-07-14T00:55:13.123Z","enrolled":91257,"book":"http://kathryn.org","course_url":"http://zane.name"},{"course_title":"Farrell LLC","course_number":59112,"instructor":"Ebba Reynolds","location":"66436 Destini Court","time":"2018-07-14T22:10:40.410Z","enrolled":59779,"book":"http://russell.net","course_url":"http://ally.net"},{"course_title":"Kertzmann, Ondricka and Maggio","course_number":80398,"instructor":"Lupe Parker","location":"807 Bulah Burgs","time":"2018-07-14T13:39:55.834Z","enrolled":22894,"book":"https://elroy.com","course_url":"https://brenna.com"},{"course_title":"Jaskolski and Sons","course_number":88071,"instructor":"Nova Paucek","location":"0236 Fredy Glens","time":"2018-07-14T06:31:38.206Z","enrolled":19744,"book":"http://carlee.name","course_url":"http://marcos.name"},{"course_title":"Wyman - Hickle","course_number":84363,"instructor":"Carey Brown","location":"78467 Marlen Flats","time":"2018-07-14T16:22:41.965Z","enrolled":49921,"book":"http://brant.net","course_url":"https://gideon.org"},{"course_title":"Wisoky, Hane and O'Kon","course_number":20773,"instructor":"Hector Farrell","location":"20804 Reichel Trace","time":"2018-07-14T00:24:54.757Z","enrolled":89730,"book":"https://watson.biz","course_url":"https://malachi.name"},{"course_title":"Pfannerstill - Grady","course_number":84393,"instructor":"Gennaro Thiel","location":"55506 Vandervort Highway","time":"2018-07-14T13:48:38.179Z","enrolled":80823,"book":"https://zane.biz","course_url":"https://stanton.biz"},{"course_title":"Osinski - Corwin","course_number":91195,"instructor":"Jevon Renner","location":"555 Bode Glens","time":"2018-07-14T21:55:12.585Z","enrolled":48063,"book":"https://melany.net","course_url":"https://jenifer.com"},{"course_title":"Moen, Hudson and Hermann","course_number":59279,"instructor":"Mrs. Pamela Rutherford","location":"10359 Johnston Plaza","time":"2018-07-14T13:28:53.022Z","enrolled":33664,"book":"https://cindy.info","course_url":"http://madilyn.name"},{"course_title":"Welch LLC","course_number":67920,"instructor":"Adella Bahringer","location":"7784 Heaney Pines","time":"2018-07-14T11:26:34.286Z","enrolled":70467,"book":"https://haven.net","course_url":"https://roosevelt.biz"},{"course_title":"Simonis, Mraz and Langosh","course_number":18658,"instructor":"Kory Conn DDS","location":"321 Schultz Stravenue","time":"2018-07-14T22:08:41.037Z","enrolled":11609,"book":"http://kieran.name","course_url":"http://piper.biz"},{"course_title":"Thompson - Bergnaum","course_number":30957,"instructor":"Westley Wunsch","location":"6509 Erich Prairie","time":"2018-07-14T22:37:25.314Z","enrolled":66049,"book":"https://bessie.biz","course_url":"http://lue.com"},{"course_title":"Maggio and Sons","course_number":51857,"instructor":"Neal Fisher","location":"758 Reichert Circle","time":"2018-07-14T07:39:07.136Z","enrolled":55312,"book":"https://godfrey.net","course_url":"http://hobart.name"},{"course_title":"Blanda, Metz and Smitham","course_number":30955,"instructor":"Parker Emmerich","location":"14398 Adriana Underpass","time":"2018-07-14T00:05:09.347Z","enrolled":51972,"book":"https://rebekah.org","course_url":"https://juwan.name"},{"course_title":"Pfannerstill - Mosciski","course_number":79294,"instructor":"Deven Runolfsson","location":"1628 Genesis Ports","time":"2018-07-14T09:47:14.270Z","enrolled":93449,"book":"http://broderick.info","course_url":"https://alexis.org"},{"course_title":"Glover Group","course_number":6210,"instructor":"Mozell Schiller","location":"7253 Donnelly Pass","time":"2018-07-14T11:50:19.421Z","enrolled":49444,"book":"https://florence.biz","course_url":"https://josiane.org"},{"course_title":"Pouros Group","course_number":69070,"instructor":"Kaylie Marvin Sr.","location":"392 Dave Spurs","time":"2018-07-14T10:23:22.450Z","enrolled":64240,"book":"https://kurtis.org","course_url":"https://mackenzie.net"},{"course_title":"Gerlach - Grimes","course_number":54239,"instructor":"Susanna Larkin III","location":"60017 Nitzsche Canyon","time":"2018-07-14T04:31:00.197Z","enrolled":97166,"book":"https://eliane.biz","course_url":"https://nick.net"},{"course_title":"Reichel, Gutmann and Hartmann","course_number":87524,"instructor":"Veda Dibbert I","location":"12858 Tamara Land","time":"2018-07-14T15:09:15.972Z","enrolled":76314,"book":"http://arianna.name","course_url":"https://aracely.com"},{"course_title":"Kozey, Mosciski and Oberbrunner","course_number":82680,"instructor":"Ms. Vincenzo Blanda","location":"2732 Jarrett Track","time":"2018-07-14T08:37:06.168Z","enrolled":60385,"book":"http://kody.biz","course_url":"https://kevon.biz"},{"course_title":"Smith, Schinner and Buckridge","course_number":8702,"instructor":"Natalie Gottlieb","location":"6782 Marks Rue","time":"2018-07-14T08:27:46.638Z","enrolled":75726,"book":"http://josiah.org","course_url":"https://eugene.biz"},{"course_title":"Dietrich LLC","course_number":372,"instructor":"Mr. Zechariah Raynor","location":"678 Anderson Cape","time":"2018-07-14T01:55:43.719Z","enrolled":40015,"book":"http://dianna.org","course_url":"https://paolo.net"},{"course_title":"Wolff Group","course_number":95777,"instructor":"Jarrod Mayert","location":"4968 Johnny Stream","time":"2018-07-14T21:38:41.919Z","enrolled":23441,"book":"http://graham.com","course_url":"https://cyril.name"},{"course_title":"McDermott, Russel and Renner","course_number":46428,"instructor":"Sylvia Kilback","location":"242 Barton Parkways","time":"2018-07-14T15:35:52.141Z","enrolled":20541,"book":"https://rhianna.net","course_url":"https://fleta.org"},{"course_title":"Heathcote, Zieme and Erdman","course_number":88035,"instructor":"Audreanne Daniel","location":"187 Greenfelder Vista","time":"2018-07-14T12:59:10.554Z","enrolled":34709,"book":"http://terrill.com","course_url":"https://everett.org"},{"course_title":"Gutkowski, Keebler and Sanford","course_number":58992,"instructor":"Josephine Pollich MD","location":"15910 Santiago Park","time":"2018-07-14T04:47:27.654Z","enrolled":91894,"book":"http://arlie.net","course_url":"http://danny.org"},{"course_title":"Wilderman - Gerhold","course_number":95858,"instructor":"Mozelle Cormier","location":"0872 Horace Turnpike","time":"2018-07-14T06:53:04.088Z","enrolled":44672,"book":"http://mariam.org","course_url":"http://odie.net"},{"course_title":"Schaefer, Terry and Bogisich","course_number":4958,"instructor":"Devan Funk","location":"00100 Dennis Spur","time":"2018-07-13T23:11:21.277Z","enrolled":58715,"book":"https://evans.com","course_url":"http://aidan.com"},{"course_title":"Spinka, Ondricka and Lueilwitz","course_number":11044,"instructor":"Carmel Little","location":"19289 Cielo Creek","time":"2018-07-14T20:42:17.210Z","enrolled":22057,"book":"https://paxton.com","course_url":"http://alek.org"},{"course_title":"Crona, Bahringer and Kling","course_number":28447,"instructor":"Kaylah Pfannerstill","location":"04623 Bernie Turnpike","time":"2018-07-14T22:18:35.148Z","enrolled":13023,"book":"http://ari.org","course_url":"https://jonatan.info"},{"course_title":"Leffler - Robel","course_number":43091,"instructor":"Mr. Candice Fay","location":"887 Gutmann Causeway","time":"2018-07-14T19:45:02.102Z","enrolled":55312,"book":"https://allan.org","course_url":"http://annalise.info"},{"course_title":"Ritchie and Sons","course_number":52930,"instructor":"Vidal Prohaska","location":"6981 Conn Squares","time":"2018-07-14T09:42:18.914Z","enrolled":10701,"book":"https://alphonso.net","course_url":"http://jimmy.org"},{"course_title":"Kris and Sons","course_number":34674,"instructor":"Rowena Treutel","location":"808 Sadie Creek","time":"2018-07-14T04:34:56.749Z","enrolled":51345,"book":"https://arlo.name","course_url":"https://kaylah.name"},{"course_title":"Runolfsdottir, Bosco and Zemlak","course_number":12497,"instructor":"Emiliano Emard Jr.","location":"6523 Wunsch Forest","time":"2018-07-14T18:29:44.307Z","enrolled":42887,"book":"https://karlee.name","course_url":"http://edgar.biz"},{"course_title":"Simonis - Russel","course_number":44880,"instructor":"Merlin Heidenreich","location":"8154 Ondricka Way","time":"2018-07-14T03:44:59.049Z","enrolled":24594,"book":"https://madisen.info","course_url":"http://annamae.org"},{"course_title":"Corwin - Champlin","course_number":60424,"instructor":"Sallie Monahan","location":"322 Andy Lodge","time":"2018-07-14T10:02:01.926Z","enrolled":23447,"book":"https://shana.org","course_url":"http://ward.net"},{"course_title":"Vandervort and Sons","course_number":37540,"instructor":"Loy Hahn","location":"448 Terry Center","time":"2018-07-14T05:31:39.995Z","enrolled":26506,"book":"http://dagmar.com","course_url":"https://stanley.org"},{"course_title":"Wyman - Gerhold","course_number":53198,"instructor":"Anibal Emmerich","location":"383 Toy Heights","time":"2018-07-14T16:02:15.317Z","enrolled":53964,"book":"http://karianne.com","course_url":"http://franz.net"},{"course_title":"Smith, Yost and VonRueden","course_number":9536,"instructor":"Christopher Sawayn","location":"461 White Club","time":"2018-07-14T22:45:00.386Z","enrolled":3035,"book":"https://blake.com","course_url":"http://erika.name"},{"course_title":"Morar - Jenkins","course_number":78743,"instructor":"Tyshawn Dickinson","location":"7516 Coby Burg","time":"2018-07-13T23:47:11.027Z","enrolled":24762,"book":"https://lurline.name","course_url":"http://chance.biz"},{"course_title":"Muller Group","course_number":74367,"instructor":"Dedrick Reynolds","location":"309 Harber Meadow","time":"2018-07-14T10:28:48.903Z","enrolled":94655,"book":"https://anais.com","course_url":"https://marina.com"},{"course_title":"Flatley, O'Conner and Ziemann","course_number":26482,"instructor":"Shayne Will","location":"901 Steuber Heights","time":"2018-07-14T21:26:27.322Z","enrolled":2856,"book":"https://loy.name","course_url":"https://cleo.com"},{"course_title":"Medhurst and Sons","course_number":43043,"instructor":"Katlyn Grimes","location":"45014 Rosina Garden","time":"2018-07-14T14:51:53.277Z","enrolled":9314,"book":"https://aron.org","course_url":"http://pascale.net"},{"course_title":"Balistreri LLC","course_number":11428,"instructor":"Nova Littel","location":"278 Muller Valleys","time":"2018-07-13T23:48:07.044Z","enrolled":93192,"book":"http://kaylah.name","course_url":"https://leonel.name"},{"course_title":"Rippin, Orn and Runte","course_number":82547,"instructor":"Nadia Hansen","location":"6308 Ray Pine","time":"2018-07-14T10:43:34.504Z","enrolled":88336,"book":"http://michaela.name","course_url":"http://joaquin.biz"},{"course_title":"Barton, Klein and Bergstrom","course_number":97420,"instructor":"Carmela Jacobson","location":"3105 Deanna Lock","time":"2018-07-14T06:23:44.036Z","enrolled":87826,"book":"http://layne.org","course_url":"https://connor.name"},{"course_title":"Runolfsdottir - Corkery","course_number":37842,"instructor":"Tracey Pouros","location":"91425 Sipes Bypass","time":"2018-07-14T14:18:09.376Z","enrolled":60022,"book":"http://mac.biz","course_url":"https://elijah.biz"},{"course_title":"Leannon, Padberg and Leffler","course_number":89954,"instructor":"Otilia Weber","location":"078 Bode Well","time":"2018-07-14T09:58:57.505Z","enrolled":65599,"book":"https://taya.net","course_url":"http://janis.org"},{"course_title":"Schuppe, Koelpin and Bins","course_number":65874,"instructor":"Queen Gottlieb","location":"6717 Lauretta Grove","time":"2018-07-14T03:52:15.061Z","enrolled":83096,"book":"https://randi.org","course_url":"http://elwin.name"},{"course_title":"Glover, Frami and Kuhic","course_number":65328,"instructor":"Shayne Wisoky","location":"128 Lind Landing","time":"2018-07-14T15:39:15.105Z","enrolled":73365,"book":"https://jaylen.info","course_url":"https://jena.biz"},{"course_title":"Hickle - Lowe","course_number":36651,"instructor":"Adella McKenzie","location":"5556 Reichel Summit","time":"2018-07-14T17:07:19.133Z","enrolled":50512,"book":"https://rhiannon.info","course_url":"http://blanche.org"},{"course_title":"Rowe - Feil","course_number":95247,"instructor":"Austin Fisher","location":"96955 Linnea Club","time":"2018-07-14T00:19:50.256Z","enrolled":76233,"book":"http://trey.info","course_url":"https://alisha.biz"},{"course_title":"Dooley - Denesik","course_number":16456,"instructor":"Delta Williamson","location":"7506 Garfield Spring","time":"2018-07-14T03:21:28.659Z","enrolled":29432,"book":"https://ned.biz","course_url":"http://deangelo.net"},{"course_title":"Koch - Schimmel","course_number":74963,"instructor":"Isabella Hegmann II","location":"3687 Bradtke Estates","time":"2018-07-14T02:15:38.217Z","enrolled":56870,"book":"http://marco.org","course_url":"https://allene.com"},{"course_title":"Witting - Johnson","course_number":41352,"instructor":"Aaliyah Greenfelder","location":"7686 Dudley Spring","time":"2018-07-14T06:29:33.805Z","enrolled":53230,"book":"http://zoila.info","course_url":"http://carlos.info"},{"course_title":"Barton - O'Connell","course_number":18962,"instructor":"Felicia Kunze","location":"2187 Erdman Shoal","time":"2018-07-14T07:05:19.580Z","enrolled":93702,"book":"https://shea.com","course_url":"http://horace.info"},{"course_title":"Predovic LLC","course_number":75803,"instructor":"Torrance Lynch","location":"002 Glover Springs","time":"2018-07-14T22:39:54.179Z","enrolled":3526,"book":"https://rosalinda.biz","course_url":"https://zakary.name"},{"course_title":"MacGyver - Price","course_number":46745,"instructor":"Mariela Upton","location":"15080 Klocko Rapid","time":"2018-07-14T03:21:12.372Z","enrolled":70874,"book":"https://bryana.com","course_url":"http://kacie.name"},{"course_title":"Bergnaum and Sons","course_number":26633,"instructor":"Jacinto Harber","location":"03663 Burdette Gardens","time":"2018-07-14T10:54:30.132Z","enrolled":98619,"book":"http://presley.biz","course_url":"https://nasir.info"},{"course_title":"Balistreri LLC","course_number":46091,"instructor":"Lexi Larkin","location":"9963 Alexis Coves","time":"2018-07-14T04:23:44.569Z","enrolled":17909,"book":"http://danielle.com","course_url":"https://raymond.name"},{"course_title":"Kutch Inc","course_number":33291,"instructor":"Polly Bailey","location":"54622 O'Connell Lane","time":"2018-07-14T11:54:58.498Z","enrolled":75235,"book":"http://felix.name","course_url":"https://yessenia.name"},{"course_title":"MacGyver - Feeney","course_number":52646,"instructor":"Ardith Reynolds","location":"21244 Leuschke Point","time":"2018-07-14T17:01:25.420Z","enrolled":63134,"book":"https://amelia.name","course_url":"http://hallie.info"},{"course_title":"Witting Group","course_number":62661,"instructor":"Layne Oberbrunner","location":"3802 Watsica Village","time":"2018-07-14T18:50:16.139Z","enrolled":91415,"book":"http://clementine.com","course_url":"http://gilda.info"},{"course_title":"Paucek LLC","course_number":54870,"instructor":"Lina Lehner","location":"7896 Torp Locks","time":"2018-07-14T06:24:45.275Z","enrolled":91824,"book":"http://bridie.org","course_url":"http://jackson.com"},{"course_title":"Larkin, Schaden and Schaefer","course_number":67040,"instructor":"Meda Dare Sr.","location":"56758 Metz Junction","time":"2018-07-14T15:30:44.516Z","enrolled":72789,"book":"https://isobel.com","course_url":"https://cassandre.name"},{"course_title":"Leuschke, Stracke and Nicolas","course_number":71746,"instructor":"Hubert Rath","location":"4455 Vella Parkways","time":"2018-07-14T04:54:13.727Z","enrolled":70011,"book":"https://frances.biz","course_url":"https://misael.com"},{"course_title":"Gislason - Kris","course_number":53553,"instructor":"Gisselle Fritsch Jr.","location":"41911 Bednar Pines","time":"2018-07-14T04:14:43.044Z","enrolled":38801,"book":"http://lesley.biz","course_url":"https://berenice.com"},{"course_title":"Bartoletti - Sauer","course_number":6393,"instructor":"Giovanni Kihn","location":"101 Jasper Trail","time":"2018-07-13T23:49:21.852Z","enrolled":2275,"book":"https://raphaelle.org","course_url":"https://willa.org"},{"course_title":"McGlynn - Kub","course_number":54014,"instructor":"Grady Wilkinson","location":"35586 Carrie Villages","time":"2018-07-14T17:08:02.499Z","enrolled":80663,"book":"http://ivah.net","course_url":"https://malvina.name"},{"course_title":"Moore Group","course_number":22893,"instructor":"Arjun Dietrich","location":"0048 Hickle Route","time":"2018-07-14T15:15:34.804Z","enrolled":44047,"book":"http://dusty.biz","course_url":"http://stephen.org"},{"course_title":"Davis, Harber and Reinger","course_number":68928,"instructor":"Conner Wiza","location":"80251 Kenyon Orchard","time":"2018-07-14T20:09:37.484Z","enrolled":36510,"book":"http://kian.net","course_url":"http://lonie.name"},{"course_title":"Rogahn - Tillman","course_number":94605,"instructor":"Enrico Weissnat","location":"4558 Demarco Plaza","time":"2018-07-14T04:04:11.111Z","enrolled":55634,"book":"https://letha.biz","course_url":"http://harley.org"},{"course_title":"Bosco, Gutkowski and Waelchi","course_number":18461,"instructor":"Waylon Kessler","location":"2980 Gwendolyn Dale","time":"2018-07-14T11:37:16.345Z","enrolled":20044,"book":"https://kelton.org","course_url":"http://kellie.org"},{"course_title":"Ledner, Donnelly and Bernier","course_number":80592,"instructor":"Zola Christiansen","location":"69157 Schroeder Throughway","time":"2018-07-14T02:01:33.342Z","enrolled":78926,"book":"https://osvaldo.net","course_url":"http://arvilla.info"},{"course_title":"Mertz - Gleichner","course_number":42836,"instructor":"Bernie McDermott","location":"04807 Dan Drive","time":"2018-07-14T19:32:17.694Z","enrolled":14976,"book":"http://rosemary.name","course_url":"http://terrell.info"},{"course_title":"Schmidt Group","course_number":61189,"instructor":"Minerva Cormier","location":"4619 Mia Unions","time":"2018-07-14T08:28:56.378Z","enrolled":67308,"book":"https://jovany.info","course_url":"https://josianne.org"},{"course_title":"Lynch, Lueilwitz and Altenwerth","course_number":13600,"instructor":"Ms. Julie Kris","location":"27573 Candido Bridge","time":"2018-07-14T01:46:16.010Z","enrolled":87724,"book":"https://isidro.biz","course_url":"http://noe.info"},{"course_title":"Hilpert Inc","course_number":30412,"instructor":"Dr. Augustus Cremin","location":"3131 Borer Trafficway","time":"2018-07-14T13:03:00.504Z","enrolled":57814,"book":"http://santina.net","course_url":"http://emmanuel.biz"},{"course_title":"Gaylord, Weimann and Torphy","course_number":88838,"instructor":"Waylon Leffler","location":"357 Marianne Wall","time":"2018-07-14T02:20:48.211Z","enrolled":3251,"book":"https://amelie.info","course_url":"http://enrique.biz"},{"course_title":"Gibson - Reichert","course_number":75627,"instructor":"Braulio Friesen","location":"9639 Bashirian Mill","time":"2018-07-14T08:42:01.799Z","enrolled":82828,"book":"https://marianne.org","course_url":"http://vance.name"},{"course_title":"Kulas, Conroy and Robel","course_number":41352,"instructor":"Josiane Dietrich","location":"6224 Rodriguez Curve","time":"2018-07-14T17:07:22.299Z","enrolled":64582,"book":"http://dorian.net","course_url":"http://chyna.biz"},{"course_title":"O'Connell Inc","course_number":22559,"instructor":"Ryleigh Waelchi","location":"92460 Shields Stream","time":"2018-07-14T05:23:09.976Z","enrolled":89689,"book":"https://sydni.biz","course_url":"http://rosemary.net"},{"course_title":"Ferry, Parker and Runolfsdottir","course_number":45097,"instructor":"Nicholas Wintheiser","location":"3185 Johnson Key","time":"2018-07-14T11:34:32.796Z","enrolled":64680,"book":"https://jerome.biz","course_url":"https://alycia.biz"},{"course_title":"Hamill - Streich","course_number":87142,"instructor":"Kelton Rutherford","location":"977 Erdman Forges","time":"2018-07-14T15:14:05.375Z","enrolled":71641,"book":"http://rahsaan.com","course_url":"http://flavie.com"},{"course_title":"Hahn - Considine","course_number":66864,"instructor":"Lennie Feest III","location":"68999 Kiera Road","time":"2018-07-14T15:18:05.476Z","enrolled":65313,"book":"http://cooper.biz","course_url":"https://randall.com"},{"course_title":"O'Reilly, Kertzmann and Kuvalis","course_number":21455,"instructor":"Frances Keeling","location":"5452 Robbie Cliff","time":"2018-07-14T09:38:26.449Z","enrolled":45643,"book":"http://imogene.org","course_url":"http://leonora.net"},{"course_title":"Wiegand, Heaney and Predovic","course_number":14037,"instructor":"Yazmin Yundt","location":"9517 Nils Wells","time":"2018-07-14T18:38:25.536Z","enrolled":38301,"book":"https://justen.org","course_url":"https://kassandra.com"},{"course_title":"Kautzer, Doyle and Murazik","course_number":64217,"instructor":"Margot Waelchi I","location":"7998 Tobin Summit","time":"2018-07-14T05:29:30.970Z","enrolled":34181,"book":"https://xzavier.info","course_url":"http://sabrina.org"},{"course_title":"Pfannerstill - D'Amore","course_number":12824,"instructor":"Domenico Koepp","location":"34287 Ankunding Road","time":"2018-07-14T15:50:41.554Z","enrolled":176,"book":"http://katelynn.com","course_url":"https://tom.info"},{"course_title":"Cummings, Cruickshank and Murray","course_number":65524,"instructor":"Beverly Schmitt DVM","location":"56133 Kautzer Mills","time":"2018-07-14T17:21:34.291Z","enrolled":19164,"book":"https://keenan.org","course_url":"https://diego.biz"},{"course_title":"Mayert, Schroeder and Hintz","course_number":44125,"instructor":"Javonte Rippin","location":"3581 Bethel Creek","time":"2018-07-14T21:19:30.382Z","enrolled":35980,"book":"http://rosina.biz","course_url":"https://mitchel.org"},{"course_title":"Littel - Von","course_number":79379,"instructor":"Ms. Reese Wilkinson","location":"000 Willms Knoll","time":"2018-07-14T19:52:21.006Z","enrolled":16153,"book":"http://chloe.org","course_url":"http://melvina.name"},{"course_title":"Kutch, Davis and O'Conner","course_number":50371,"instructor":"Reggie Morissette","location":"178 Gaetano Ranch","time":"2018-07-14T16:14:16.743Z","enrolled":72546,"book":"http://germaine.name","course_url":"http://gilda.com"},{"course_title":"Johnston, McKenzie and Bashirian","course_number":43738,"instructor":"Kasey Volkman DVM","location":"2771 Kreiger Plaza","time":"2018-07-14T01:52:54.927Z","enrolled":72999,"book":"https://aurore.com","course_url":"http://frank.com"},{"course_title":"Zieme - Goldner","course_number":63492,"instructor":"Alexie Wisozk","location":"031 Edgar Isle","time":"2018-07-14T11:34:17.353Z","enrolled":25899,"book":"https://durward.org","course_url":"http://camilla.biz"},{"course_title":"Howe, Littel and Schiller","course_number":53759,"instructor":"Miss Rhoda Kunze","location":"6176 Raul Crest","time":"2018-07-14T09:45:35.074Z","enrolled":87265,"book":"http://jermey.net","course_url":"https://nola.info"},{"course_title":"Dickinson - Bednar","course_number":97912,"instructor":"Brennan Moen II","location":"5607 Spencer Camp","time":"2018-07-14T12:47:58.115Z","enrolled":56063,"book":"https://doris.name","course_url":"http://aliza.biz"},{"course_title":"Orn, Kulas and Kshlerin","course_number":60507,"instructor":"Cleta Harvey","location":"8141 Tony Mews","time":"2018-07-14T13:52:53.508Z","enrolled":97993,"book":"http://walker.info","course_url":"http://arno.biz"},{"course_title":"Gerhold and Sons","course_number":49162,"instructor":"Brenden Schaden","location":"8314 Morissette Pines","time":"2018-07-14T19:39:46.946Z","enrolled":16033,"book":"http://sarai.info","course_url":"http://lorenz.name"},{"course_title":"Mann - Hammes","course_number":99787,"instructor":"Horace Runte","location":"125 Shields Valleys","time":"2018-07-13T23:32:48.152Z","enrolled":94184,"book":"http://angie.com","course_url":"http://grant.org"},{"course_title":"Treutel Group","course_number":6034,"instructor":"Jeremy Spencer","location":"2719 Joany Overpass","time":"2018-07-14T02:38:33.048Z","enrolled":43832,"book":"http://ulices.name","course_url":"http://darrin.biz"},{"course_title":"Trantow - McCullough","course_number":91967,"instructor":"Kale Bogisich","location":"82634 Wiegand Common","time":"2018-07-14T14:12:49.079Z","enrolled":80053,"book":"http://nelson.com","course_url":"http://pat.net"},{"course_title":"O'Conner, Schmitt and Rippin","course_number":23095,"instructor":"Sean Klein","location":"971 Lesley Walk","time":"2018-07-14T11:32:49.233Z","enrolled":18,"book":"http://lottie.org","course_url":"https://mavis.com"},{"course_title":"Mayer Inc","course_number":31180,"instructor":"Micah Runolfsdottir","location":"5292 Solon Points","time":"2018-07-14T10:11:53.566Z","enrolled":19439,"book":"http://jadon.net","course_url":"http://zack.org"},{"course_title":"Simonis, Swift and Zemlak","course_number":20782,"instructor":"Sydnie Monahan II","location":"62126 Schinner Passage","time":"2018-07-14T01:02:47.862Z","enrolled":37981,"book":"http://makenzie.org","course_url":"http://chyna.biz"},{"course_title":"Konopelski Inc","course_number":95371,"instructor":"Verdie Heathcote","location":"180 Gottlieb Row","time":"2018-07-14T21:56:45.842Z","enrolled":78202,"book":"http://julianne.org","course_url":"http://marlen.org"},{"course_title":"Glover, Terry and Reichel","course_number":29272,"instructor":"Miller Miller","location":"3305 Lewis Manors","time":"2018-07-14T02:32:53.592Z","enrolled":89287,"book":"http://cleta.org","course_url":"https://tate.biz"},{"course_title":"Paucek, Mraz and Simonis","course_number":49947,"instructor":"Consuelo Prosacco","location":"204 Koepp Crossing","time":"2018-07-14T16:14:41.617Z","enrolled":25340,"book":"http://mariane.biz","course_url":"http://kirstin.biz"},{"course_title":"Turcotte, Shanahan and Dickinson","course_number":91413,"instructor":"Elena Ankunding","location":"79319 Elisha Spring","time":"2018-07-14T23:07:57.295Z","enrolled":55583,"book":"https://angel.info","course_url":"https://izaiah.net"},{"course_title":"Wehner - Brown","course_number":8273,"instructor":"Telly Collins","location":"037 Luettgen Plaza","time":"2018-07-14T06:57:49.903Z","enrolled":940,"book":"http://israel.net","course_url":"http://jacynthe.biz"},{"course_title":"Simonis Group","course_number":42862,"instructor":"Freida Bosco","location":"006 Abbey Knolls","time":"2018-07-14T15:10:13.346Z","enrolled":67890,"book":"http://quentin.com","course_url":"http://jude.biz"},{"course_title":"Halvorson Group","course_number":53422,"instructor":"Macie Moen","location":"516 Krajcik Lake","time":"2018-07-14T20:32:58.046Z","enrolled":35843,"book":"http://paxton.info","course_url":"http://hector.biz"},{"course_title":"Hermann - Feeney","course_number":45104,"instructor":"Christiana Beahan","location":"85628 Bednar Burgs","time":"2018-07-14T12:17:30.380Z","enrolled":10139,"book":"http://pearlie.org","course_url":"http://maurice.net"},{"course_title":"Conn - Kerluke","course_number":31962,"instructor":"Jonathan Upton","location":"9568 Rhea River","time":"2018-07-14T13:50:48.154Z","enrolled":85423,"book":"https://sibyl.net","course_url":"https://cecelia.name"},{"course_title":"Mills and Sons","course_number":73503,"instructor":"Emilia Doyle","location":"4286 Bins Grove","time":"2018-07-13T23:38:08.222Z","enrolled":77744,"book":"http://kyla.biz","course_url":"http://gloria.biz"},{"course_title":"Ankunding, Pouros and Anderson","course_number":52746,"instructor":"Eryn Turcotte","location":"5215 Blair Heights","time":"2018-07-14T06:07:46.018Z","enrolled":96010,"book":"https://mario.org","course_url":"http://gabriel.info"},{"course_title":"Roberts, Becker and Gislason","course_number":99609,"instructor":"Hillard Zboncak","location":"60700 Runte Haven","time":"2018-07-14T10:39:13.893Z","enrolled":94863,"book":"https://zelma.com","course_url":"http://alvis.net"},{"course_title":"Welch, Dietrich and Schaefer","course_number":23144,"instructor":"Maximus Renner","location":"04780 Gabriel Bypass","time":"2018-07-14T02:18:28.137Z","enrolled":11200,"book":"http://bud.com","course_url":"https://jasmin.name"},{"course_title":"Quitzon - Jones","course_number":23533,"instructor":"Ronaldo Hegmann PhD","location":"317 Cummings Prairie","time":"2018-07-14T10:43:18.102Z","enrolled":10338,"book":"http://griffin.name","course_url":"https://tia.name"},{"course_title":"Kovacek and Sons","course_number":10601,"instructor":"Halie Murazik","location":"5443 Stone Summit","time":"2018-07-14T16:36:29.553Z","enrolled":20361,"book":"https://shane.net","course_url":"https://jordi.com"},{"course_title":"Murray, Haley and Bode","course_number":27749,"instructor":"Mayra McGlynn","location":"124 Rau Rapids","time":"2018-07-14T09:20:02.457Z","enrolled":26418,"book":"http://cooper.org","course_url":"https://royal.com"},{"course_title":"Jenkins, Robel and Roob","course_number":59061,"instructor":"Mr. Kellen Morar","location":"41447 Gorczany Shore","time":"2018-07-14T15:12:33.347Z","enrolled":62526,"book":"https://lexus.name","course_url":"https://nicole.info"},{"course_title":"Kub, Littel and Raynor","course_number":9663,"instructor":"Vada Rice","location":"45336 Waters Island","time":"2018-07-13T23:56:15.575Z","enrolled":56610,"book":"https://owen.biz","course_url":"http://sigmund.org"},{"course_title":"Sawayn and Sons","course_number":86582,"instructor":"Norwood Gutkowski","location":"46663 Fahey Throughway","time":"2018-07-14T17:06:14.591Z","enrolled":72167,"book":"https://roy.name","course_url":"https://london.info"},{"course_title":"Mraz Inc","course_number":22747,"instructor":"Percival Glover","location":"02301 Giuseppe Neck","time":"2018-07-14T11:06:44.973Z","enrolled":8183,"book":"http://tyrese.name","course_url":"http://hailie.biz"},{"course_title":"Sawayn - Kulas","course_number":11553,"instructor":"Nikolas Hane","location":"19878 Feil Pike","time":"2018-07-14T06:32:21.098Z","enrolled":89826,"book":"https://sigurd.name","course_url":"https://pansy.net"},{"course_title":"Carroll Group","course_number":38806,"instructor":"Bo Wyman","location":"32734 Oscar Corners","time":"2018-07-14T06:13:05.299Z","enrolled":54630,"book":"http://rey.com","course_url":"https://caesar.com"},{"course_title":"Torp, Wiegand and Harber","course_number":80636,"instructor":"Theodora Rowe","location":"93676 Celine Rapid","time":"2018-07-14T17:32:03.885Z","enrolled":71860,"book":"http://waino.name","course_url":"http://duncan.biz"},{"course_title":"Padberg Group","course_number":70619,"instructor":"Emilia Hoeger IV","location":"3984 Gus Ports","time":"2018-07-14T04:58:16.988Z","enrolled":657,"book":"https://jo.com","course_url":"https://mason.org"},{"course_title":"Bednar, McLaughlin and Treutel","course_number":97433,"instructor":"Jaylon Predovic","location":"437 Elva Street","time":"2018-07-14T20:38:03.259Z","enrolled":90142,"book":"http://breana.biz","course_url":"https://mavis.info"},{"course_title":"Bogisich, Sporer and Macejkovic","course_number":32336,"instructor":"Luisa Nicolas","location":"385 Reilly Fort","time":"2018-07-14T12:44:39.240Z","enrolled":14790,"book":"https://justice.biz","course_url":"http://alysson.biz"},{"course_title":"Ullrich, Gutkowski and Mraz","course_number":27691,"instructor":"Lonie Ebert","location":"16444 Nicholas Fork","time":"2018-07-14T14:24:08.252Z","enrolled":1979,"book":"https://marianna.net","course_url":"http://arch.info"},{"course_title":"Rodriguez and Sons","course_number":78143,"instructor":"Axel Fay","location":"843 Raquel Island","time":"2018-07-14T00:27:51.885Z","enrolled":8792,"book":"http://malika.info","course_url":"https://eleazar.com"},{"course_title":"Wunsch, Collins and Metz","course_number":92049,"instructor":"Amaya Baumbach","location":"790 Kuhic Fork","time":"2018-07-14T01:11:34.409Z","enrolled":57323,"book":"https://brayan.info","course_url":"https://gilberto.net"},{"course_title":"Mitchell, Bergnaum and Larkin","course_number":85992,"instructor":"Mrs. Justice Volkman","location":"2701 Lockman Mountains","time":"2018-07-14T12:41:40.261Z","enrolled":25313,"book":"https://olen.com","course_url":"http://lawrence.org"},{"course_title":"Runolfsson Inc","course_number":7964,"instructor":"Jayde Renner","location":"7950 Sabryna Canyon","time":"2018-07-14T17:40:44.332Z","enrolled":36957,"book":"http://jade.info","course_url":"http://cheyanne.info"},{"course_title":"Ziemann LLC","course_number":36629,"instructor":"Dr. Keanu Morar","location":"10969 Kris Station","time":"2018-07-14T04:21:03.124Z","enrolled":94497,"book":"https://elmore.com","course_url":"http://torrey.com"},{"course_title":"Gerlach, Altenwerth and Koelpin","course_number":44246,"instructor":"Melyna Nienow","location":"324 Gaylord Lodge","time":"2018-07-14T18:58:01.049Z","enrolled":27829,"book":"https://stefanie.biz","course_url":"https://savannah.info"},{"course_title":"Yundt, Runolfsdottir and Pacocha","course_number":5385,"instructor":"Moses Fahey","location":"776 Wintheiser Plain","time":"2018-07-14T21:08:26.644Z","enrolled":1138,"book":"https://marion.name","course_url":"https://arno.net"},{"course_title":"Botsford Group","course_number":3404,"instructor":"Candido Keebler","location":"7536 Donald Springs","time":"2018-07-14T19:55:16.390Z","enrolled":64626,"book":"http://dena.net","course_url":"http://german.net"},{"course_title":"Thompson - Schiller","course_number":94563,"instructor":"Crawford Nikolaus","location":"72820 Cormier Flat","time":"2018-07-14T04:29:39.795Z","enrolled":42890,"book":"http://flavie.com","course_url":"https://jaida.org"},{"course_title":"Hauck Group","course_number":63774,"instructor":"Bernice Becker","location":"35253 Stella Estates","time":"2018-07-14T10:24:25.432Z","enrolled":45096,"book":"https://dallas.net","course_url":"http://rocio.info"},{"course_title":"Oberbrunner - Graham","course_number":88441,"instructor":"Alanna Cassin","location":"46997 Schiller Pine","time":"2018-07-14T10:16:51.810Z","enrolled":93615,"book":"https://madie.com","course_url":"https://elenor.biz"},{"course_title":"Beahan, Bechtelar and Gottlieb","course_number":87707,"instructor":"Camilla Mitchell","location":"49413 Hane Circle","time":"2018-07-13T23:59:29.934Z","enrolled":16342,"book":"http://royce.com","course_url":"http://curtis.net"},{"course_title":"Stracke - Klocko","course_number":8451,"instructor":"Antwon Harber","location":"638 Thiel Junction","time":"2018-07-14T15:13:08.245Z","enrolled":47660,"book":"http://seamus.biz","course_url":"http://damon.info"},{"course_title":"Lebsack - Rutherford","course_number":29730,"instructor":"Vincenzo Schaden IV","location":"673 Fleta Coves","time":"2018-07-14T01:35:22.385Z","enrolled":46211,"book":"http://victoria.net","course_url":"https://justyn.com"},{"course_title":"Schaefer - Runolfsdottir","course_number":60705,"instructor":"Sylvia Jaskolski","location":"85339 Kihn Squares","time":"2018-07-14T00:36:24.584Z","enrolled":20492,"book":"https://brooklyn.biz","course_url":"http://kaci.info"},{"course_title":"Weber Inc","course_number":42426,"instructor":"Jermey Cormier Sr.","location":"06973 Toy Keys","time":"2018-07-14T06:35:11.427Z","enrolled":88589,"book":"http://minerva.net","course_url":"http://lillian.biz"},{"course_title":"Hamill LLC","course_number":99075,"instructor":"Aurore Predovic","location":"8385 Lockman Plains","time":"2018-07-14T09:06:45.981Z","enrolled":74833,"book":"http://delta.org","course_url":"http://devin.net"},{"course_title":"Casper, Bernhard and Wyman","course_number":44776,"instructor":"Glennie Gleason","location":"23561 Jeramy Springs","time":"2018-07-14T17:20:06.339Z","enrolled":71732,"book":"http://fred.com","course_url":"https://jimmy.net"},{"course_title":"Smitham - Kuvalis","course_number":11068,"instructor":"Sigurd Huel","location":"767 Irving Street","time":"2018-07-14T18:06:18.942Z","enrolled":64003,"book":"https://oral.biz","course_url":"https://america.info"},{"course_title":"Wilkinson, Koelpin and Hackett","course_number":12586,"instructor":"Ivah Ebert","location":"63587 Daniel Lane","time":"2018-07-14T23:01:11.616Z","enrolled":94150,"book":"http://dedric.com","course_url":"http://jessyca.biz"},{"course_title":"Schoen, Pouros and Green","course_number":17136,"instructor":"Judge Maggio","location":"944 Donnie Tunnel","time":"2018-07-14T11:32:07.591Z","enrolled":24430,"book":"https://kattie.biz","course_url":"http://alva.net"},{"course_title":"Strosin - Heller","course_number":34259,"instructor":"Rocky Turcotte","location":"219 Adelle Prairie","time":"2018-07-14T21:35:55.322Z","enrolled":67661,"book":"https://nasir.org","course_url":"http://baby.name"},{"course_title":"Fahey, Pollich and Hammes","course_number":62660,"instructor":"Neil Raynor","location":"472 Sigmund Road","time":"2018-07-14T09:56:19.090Z","enrolled":30069,"book":"https://hettie.name","course_url":"http://hattie.com"},{"course_title":"Schuster Group","course_number":17554,"instructor":"Amani Blanda","location":"7060 Brendon Dam","time":"2018-07-14T19:56:31.361Z","enrolled":33103,"book":"https://karen.biz","course_url":"https://rahul.net"},{"course_title":"Bradtke, Lemke and Wunsch","course_number":34177,"instructor":"Joanne Rath V","location":"3437 Ivory Throughway","time":"2018-07-14T19:55:43.115Z","enrolled":68584,"book":"https://heloise.net","course_url":"https://riley.info"},{"course_title":"Dickinson - Swift","course_number":15532,"instructor":"Mrs. Nannie Robel","location":"587 Jaiden Flat","time":"2018-07-14T04:55:56.987Z","enrolled":85723,"book":"http://keegan.net","course_url":"https://lesly.info"},{"course_title":"Spencer Group","course_number":11257,"instructor":"Darlene Stanton","location":"705 Aliya Glens","time":"2018-07-14T00:05:24.328Z","enrolled":12813,"book":"http://bryce.org","course_url":"http://hailey.biz"},{"course_title":"Olson, Hartmann and McDermott","course_number":49613,"instructor":"Clare Ward","location":"28244 Jarred Crescent","time":"2018-07-14T02:48:11.085Z","enrolled":83526,"book":"http://maurice.name","course_url":"https://paris.org"},{"course_title":"Renner - Huels","course_number":48873,"instructor":"Tatyana Hettinger I","location":"598 Welch Pike","time":"2018-07-14T04:11:35.789Z","enrolled":21224,"book":"http://verdie.name","course_url":"http://tyreek.org"},{"course_title":"Kessler and Sons","course_number":14337,"instructor":"Miss Karson Kozey","location":"6088 Schumm Brook","time":"2018-07-14T04:59:28.114Z","enrolled":79279,"book":"https://pattie.biz","course_url":"http://chelsey.biz"},{"course_title":"Romaguera - Kihn","course_number":25250,"instructor":"Kaley Thompson","location":"4919 Roxane Spurs","time":"2018-07-14T12:15:37.074Z","enrolled":30847,"book":"http://julianne.com","course_url":"http://justen.name"},{"course_title":"Roob - McGlynn","course_number":8360,"instructor":"Benton Rippin","location":"78566 Carlos Cliffs","time":"2018-07-13T23:51:51.995Z","enrolled":18368,"book":"http://trinity.com","course_url":"http://odie.biz"},{"course_title":"Bogisich Inc","course_number":75728,"instructor":"Freeda Zboncak","location":"56554 Jacklyn Key","time":"2018-07-14T10:55:50.157Z","enrolled":29692,"book":"http://mabelle.net","course_url":"https://crystal.name"},{"course_title":"Rogahn Inc","course_number":14590,"instructor":"Clarissa McGlynn","location":"3348 Laurine Lodge","time":"2018-07-14T06:06:48.198Z","enrolled":85000,"book":"https://dock.biz","course_url":"http://eulah.net"},{"course_title":"Legros, Moen and Skiles","course_number":34690,"instructor":"Mossie Collier","location":"4669 Neva Valleys","time":"2018-07-14T21:28:58.434Z","enrolled":83678,"book":"http://lance.com","course_url":"http://toby.name"},{"course_title":"Price - Monahan","course_number":48187,"instructor":"Miss Cale Carroll","location":"254 Elsie Lodge","time":"2018-07-14T00:03:31.096Z","enrolled":1898,"book":"http://bertrand.com","course_url":"https://cora.info"},{"course_title":"Greenfelder, Russel and Kemmer","course_number":88574,"instructor":"Megane D'Amore","location":"34938 Bailey Plaza","time":"2018-07-14T15:07:58.781Z","enrolled":54591,"book":"http://lilyan.info","course_url":"http://elmer.org"},{"course_title":"Schinner Inc","course_number":76440,"instructor":"Juwan Klocko","location":"5470 Goldner Mission","time":"2018-07-14T10:40:55.965Z","enrolled":65408,"book":"http://reagan.org","course_url":"http://lenore.net"},{"course_title":"Ward, Bechtelar and Ankunding","course_number":92331,"instructor":"Wilbert Dooley","location":"70574 Schulist Knolls","time":"2018-07-14T02:51:55.688Z","enrolled":21901,"book":"https://wallace.biz","course_url":"http://brant.info"},{"course_title":"Schmidt, Larkin and Murphy","course_number":16649,"instructor":"Dr. Evan Prohaska","location":"83066 Hand Groves","time":"2018-07-14T07:39:40.905Z","enrolled":33217,"book":"https://tressa.net","course_url":"https://laurence.name"},{"course_title":"Treutel, Waelchi and Klein","course_number":21952,"instructor":"Casper Ortiz","location":"027 Hyatt Inlet","time":"2018-07-14T17:49:57.663Z","enrolled":58961,"book":"https://yasmin.org","course_url":"https://montana.com"},{"course_title":"Leffler, Orn and Champlin","course_number":15999,"instructor":"Kaitlin Stark Sr.","location":"3442 Elton Tunnel","time":"2018-07-14T06:27:38.734Z","enrolled":57122,"book":"http://monserrate.biz","course_url":"http://brandon.biz"},{"course_title":"Rosenbaum Group","course_number":1411,"instructor":"Leif Cormier","location":"610 Nicolas Valleys","time":"2018-07-14T03:25:42.531Z","enrolled":71548,"book":"https://stan.org","course_url":"https://valentina.org"},{"course_title":"Cormier, Legros and Tillman","course_number":66692,"instructor":"Jodie Emmerich","location":"959 Klein Fork","time":"2018-07-14T22:33:49.145Z","enrolled":22254,"book":"http://emerson.info","course_url":"https://maximus.biz"},{"course_title":"Monahan - Koelpin","course_number":38511,"instructor":"Margarette Flatley","location":"634 Fay Harbors","time":"2018-07-14T22:53:08.144Z","enrolled":28211,"book":"http://marcia.com","course_url":"http://elise.biz"},{"course_title":"Herman, Parisian and Witting","course_number":61463,"instructor":"Vernice Hickle","location":"37530 Heaney Fall","time":"2018-07-14T11:55:56.238Z","enrolled":15594,"book":"https://ariel.info","course_url":"http://kelly.com"},{"course_title":"Green, West and Lueilwitz","course_number":45652,"instructor":"Geo Wilkinson","location":"6956 Arnaldo Gateway","time":"2018-07-14T00:25:27.370Z","enrolled":60067,"book":"https://ashly.info","course_url":"http://lexi.com"},{"course_title":"Kassulke, Kovacek and Carter","course_number":93093,"instructor":"Benton Keeling I","location":"3506 Dante Glens","time":"2018-07-14T07:32:08.217Z","enrolled":51056,"book":"http://elisha.biz","course_url":"http://kayley.info"},{"course_title":"Medhurst and Sons","course_number":54525,"instructor":"Talia Russel","location":"6388 Ratke Expressway","time":"2018-07-14T16:09:47.378Z","enrolled":43802,"book":"https://gideon.org","course_url":"https://layne.name"},{"course_title":"Prosacco, Turcotte and Cummings","course_number":51115,"instructor":"Karen Koelpin","location":"4795 Tito Courts","time":"2018-07-14T16:44:53.039Z","enrolled":15814,"book":"http://unique.name","course_url":"http://steve.org"},{"course_title":"Zemlak, Greenholt and Olson","course_number":71459,"instructor":"Mariam Fahey","location":"5309 Tyree Camp","time":"2018-07-14T19:18:33.203Z","enrolled":1965,"book":"https://javon.biz","course_url":"http://demario.biz"},{"course_title":"Russel - Kozey","course_number":61026,"instructor":"Ona Stark","location":"279 Thompson Camp","time":"2018-07-14T12:24:20.712Z","enrolled":49434,"book":"http://clarabelle.org","course_url":"https://damaris.com"},{"course_title":"Olson, Fritsch and Klocko","course_number":84832,"instructor":"Amina Hessel","location":"34788 Matilde Brooks","time":"2018-07-14T11:42:58.630Z","enrolled":88674,"book":"http://rubye.biz","course_url":"http://xzavier.name"},{"course_title":"Prohaska, Pagac and Ratke","course_number":80683,"instructor":"Kolby Schoen","location":"59594 Heathcote Rapid","time":"2018-07-14T11:00:37.798Z","enrolled":4701,"book":"https://deangelo.name","course_url":"http://guillermo.biz"},{"course_title":"Marquardt, Johnson and Jakubowski","course_number":9257,"instructor":"Brandt Hilpert","location":"724 Claudie Village","time":"2018-07-14T08:11:13.126Z","enrolled":31492,"book":"https://alisha.info","course_url":"https://deangelo.name"},{"course_title":"DuBuque - Olson","course_number":52194,"instructor":"Dewitt Sauer","location":"22446 Lamar Square","time":"2018-07-14T15:58:02.938Z","enrolled":10558,"book":"http://piper.info","course_url":"http://adriel.name"},{"course_title":"Bergnaum Group","course_number":27317,"instructor":"Violet Beahan","location":"027 Tiffany Common","time":"2018-07-14T07:29:28.803Z","enrolled":43645,"book":"https://grover.info","course_url":"http://carroll.net"},{"course_title":"Marks, Bruen and Altenwerth","course_number":4592,"instructor":"Darien Sauer","location":"2101 Spencer Shore","time":"2018-07-14T21:25:54.432Z","enrolled":38398,"book":"https://vickie.biz","course_url":"https://larry.info"},{"course_title":"Bogan - Tromp","course_number":97124,"instructor":"Drake Kertzmann","location":"11630 Cletus Island","time":"2018-07-14T19:38:11.029Z","enrolled":50847,"book":"https://luigi.info","course_url":"http://evert.name"},{"course_title":"Reichert - Wolff","course_number":5901,"instructor":"Afton Bayer","location":"09949 Pfannerstill Mountains","time":"2018-07-14T01:21:27.198Z","enrolled":12665,"book":"https://elyse.biz","course_url":"https://elouise.biz"},{"course_title":"Langworth, Blick and Hackett","course_number":21887,"instructor":"Rafael Leuschke IV","location":"43930 Margarett Shores","time":"2018-07-14T03:59:05.565Z","enrolled":12697,"book":"https://kiera.com","course_url":"https://florian.net"},{"course_title":"Pacocha LLC","course_number":27115,"instructor":"Zoey Koch","location":"29398 Upton Springs","time":"2018-07-14T22:20:10.019Z","enrolled":41717,"book":"https://giles.info","course_url":"http://mara.biz"},{"course_title":"Harber LLC","course_number":41901,"instructor":"Cathy Larkin","location":"01417 Jakubowski Knolls","time":"2018-07-14T00:32:36.903Z","enrolled":34961,"book":"https://assunta.biz","course_url":"http://whitney.com"},{"course_title":"Sporer and Sons","course_number":5680,"instructor":"Tad Wuckert","location":"72299 Mosciski Corners","time":"2018-07-14T00:02:54.275Z","enrolled":65616,"book":"http://macie.name","course_url":"http://keegan.org"},{"course_title":"Yost, Stehr and Mertz","course_number":20781,"instructor":"Connor Ondricka Sr.","location":"0758 Maddison Highway","time":"2018-07-14T23:05:25.640Z","enrolled":36543,"book":"http://lavern.info","course_url":"http://mattie.info"},{"course_title":"Murray, Kuvalis and Schulist","course_number":95676,"instructor":"Rosendo Kulas","location":"961 Quigley Manors","time":"2018-07-14T05:29:57.099Z","enrolled":79075,"book":"https://justina.info","course_url":"https://alexanne.net"},{"course_title":"DuBuque - Herzog","course_number":55899,"instructor":"Daryl Zboncak","location":"712 Johnson Mill","time":"2018-07-14T09:20:15.757Z","enrolled":7753,"book":"http://taryn.info","course_url":"http://camille.com"},{"course_title":"Schulist Inc","course_number":56492,"instructor":"Jason Collier IV","location":"275 Gutkowski Rapid","time":"2018-07-14T21:29:12.284Z","enrolled":46156,"book":"https://vernie.net","course_url":"http://icie.info"},{"course_title":"Crooks, Hoppe and Braun","course_number":37538,"instructor":"Libby Becker I","location":"814 Bernier Ford","time":"2018-07-14T01:51:29.562Z","enrolled":25027,"book":"https://lucinda.info","course_url":"http://boyd.info"},{"course_title":"Russel LLC","course_number":6358,"instructor":"Reese Anderson","location":"1949 Annabelle Squares","time":"2018-07-14T08:47:36.266Z","enrolled":45678,"book":"https://ashtyn.net","course_url":"https://dayne.org"},{"course_title":"Yundt - Moen","course_number":25154,"instructor":"Harmon Davis","location":"4787 Jacobi Vista","time":"2018-07-14T16:38:37.631Z","enrolled":32601,"book":"http://fae.net","course_url":"http://ole.org"},{"course_title":"Rice Inc","course_number":40852,"instructor":"Jaleel Strosin V","location":"9467 Gleichner Manors","time":"2018-07-14T07:18:35.330Z","enrolled":48895,"book":"http://dimitri.biz","course_url":"http://barton.com"},{"course_title":"Streich - Rosenbaum","course_number":66681,"instructor":"Hilario Beahan","location":"86278 Stanton Cliff","time":"2018-07-14T06:43:15.970Z","enrolled":3672,"book":"http://lucie.info","course_url":"http://angel.org"},{"course_title":"Pagac, Schmitt and Gleason","course_number":44968,"instructor":"Miss Domingo Lockman","location":"94289 Klocko Alley","time":"2018-07-14T23:09:07.125Z","enrolled":57759,"book":"http://abraham.net","course_url":"https://mathew.org"},{"course_title":"Cronin - Gusikowski","course_number":97300,"instructor":"Keshaun Mayert","location":"46275 Aurore Estate","time":"2018-07-14T15:06:01.349Z","enrolled":46846,"book":"https://jasmin.biz","course_url":"http://chandler.org"},{"course_title":"Brekke, Runte and Hickle","course_number":51672,"instructor":"Humberto Krajcik","location":"771 Lane Trail","time":"2018-07-14T06:12:31.059Z","enrolled":60830,"book":"https://saige.info","course_url":"http://emmitt.net"},{"course_title":"Purdy - Gibson","course_number":6028,"instructor":"Eudora Crist","location":"6206 Elwin Via","time":"2018-07-14T18:02:56.671Z","enrolled":13277,"book":"https://bethel.org","course_url":"https://krystina.name"},{"course_title":"Nolan - O'Reilly","course_number":35818,"instructor":"Mr. Jaylan Tillman","location":"51800 Haley Port","time":"2018-07-14T21:19:18.990Z","enrolled":53748,"book":"http://khalil.org","course_url":"https://gardner.org"},{"course_title":"Yundt - Mohr","course_number":64946,"instructor":"Karina Nicolas","location":"5128 Davon Summit","time":"2018-07-14T10:24:35.881Z","enrolled":50092,"book":"https://giuseppe.com","course_url":"https://charley.com"},{"course_title":"Kassulke Inc","course_number":99866,"instructor":"Kiana Klocko","location":"1720 Jaclyn Coves","time":"2018-07-14T19:34:56.889Z","enrolled":50949,"book":"http://jaydon.net","course_url":"https://alexandrea.name"},{"course_title":"Lowe, Collier and Labadie","course_number":87927,"instructor":"Dr. Roselyn Pacocha","location":"8752 Melissa Village","time":"2018-07-14T21:44:48.211Z","enrolled":77050,"book":"http://ansel.biz","course_url":"https://sim.info"},{"course_title":"Koelpin, Beer and Harris","course_number":20829,"instructor":"Myrtice Cormier","location":"432 Mraz Corner","time":"2018-07-14T09:40:34.020Z","enrolled":19765,"book":"http://ned.net","course_url":"https://damon.info"},{"course_title":"Olson and Sons","course_number":85916,"instructor":"Shania Cummerata","location":"422 Schoen Trail","time":"2018-07-14T02:41:25.060Z","enrolled":64852,"book":"http://jordane.info","course_url":"http://jailyn.biz"},{"course_title":"Hyatt, DuBuque and Durgan","course_number":45954,"instructor":"Dawson Rice","location":"6374 Bartell Courts","time":"2018-07-14T19:28:25.678Z","enrolled":56095,"book":"https://mittie.biz","course_url":"http://wilber.name"},{"course_title":"Heller, Daugherty and Shields","course_number":39190,"instructor":"Mortimer Zboncak","location":"6223 Bernier Roads","time":"2018-07-14T11:46:04.690Z","enrolled":6897,"book":"https://nora.biz","course_url":"https://yadira.biz"},{"course_title":"Robel - Ortiz","course_number":20918,"instructor":"Stephon Wunsch","location":"428 West Shores","time":"2018-07-14T17:45:28.668Z","enrolled":93326,"book":"http://wendell.net","course_url":"http://elian.org"},{"course_title":"Kuvalis Inc","course_number":49983,"instructor":"Miss Dane Kuhn","location":"4878 Bartell Ford","time":"2018-07-14T17:54:49.834Z","enrolled":85174,"book":"http://dedrick.info","course_url":"https://destany.name"},{"course_title":"Eichmann - Stehr","course_number":8683,"instructor":"Zachary Smith","location":"949 Giovanny Fall","time":"2018-07-14T19:39:25.555Z","enrolled":43033,"book":"https://madge.com","course_url":"https://bulah.org"},{"course_title":"Kihn - Streich","course_number":24717,"instructor":"Eryn Barrows","location":"481 Cremin Streets","time":"2018-07-14T22:47:55.028Z","enrolled":57001,"book":"https://paul.org","course_url":"http://karina.com"},{"course_title":"Hyatt Group","course_number":3590,"instructor":"Brielle Rice","location":"8132 Alexie Plaza","time":"2018-07-14T11:35:47.047Z","enrolled":15254,"book":"https://macie.info","course_url":"http://lenny.com"},{"course_title":"Treutel Inc","course_number":87027,"instructor":"Camila Cronin","location":"5280 Tomasa Branch","time":"2018-07-14T11:00:53.017Z","enrolled":71430,"book":"http://juliana.biz","course_url":"http://foster.org"},{"course_title":"Wiegand Inc","course_number":54166,"instructor":"Manley Altenwerth","location":"887 Emmy Courts","time":"2018-07-14T16:02:35.695Z","enrolled":92059,"book":"https://regan.info","course_url":"https://elias.com"},{"course_title":"Hessel Inc","course_number":35717,"instructor":"Conrad Nikolaus","location":"9731 Kelli Pine","time":"2018-07-14T18:46:32.419Z","enrolled":36876,"book":"http://eloy.name","course_url":"http://norberto.info"},{"course_title":"Stiedemann Inc","course_number":67720,"instructor":"Estel Emmerich","location":"782 Nolan Mills","time":"2018-07-14T05:57:00.820Z","enrolled":43978,"book":"https://norbert.net","course_url":"https://daryl.info"},{"course_title":"Johns, Wyman and Cole","course_number":37672,"instructor":"Carson Mitchell","location":"711 Marcia Overpass","time":"2018-07-14T00:32:12.610Z","enrolled":76827,"book":"http://tia.org","course_url":"https://magnus.org"},{"course_title":"Leffler and Sons","course_number":98785,"instructor":"Merl Gaylord","location":"578 Mitchell Terrace","time":"2018-07-14T16:22:51.097Z","enrolled":42076,"book":"https://leslie.net","course_url":"http://jayme.biz"},{"course_title":"Quigley, Torp and Gibson","course_number":94274,"instructor":"Dorothea Miller","location":"0892 Jamey Ports","time":"2018-07-14T13:12:42.313Z","enrolled":25719,"book":"https://elmer.net","course_url":"http://abdul.name"},{"course_title":"Hills Group","course_number":16443,"instructor":"Abbigail Jones","location":"03619 Naomie Heights","time":"2018-07-14T05:47:32.269Z","enrolled":27592,"book":"https://emmanuelle.name","course_url":"https://burley.org"},{"course_title":"Stroman LLC","course_number":35952,"instructor":"Mrs. Cruz Baumbach","location":"048 Consuelo Orchard","time":"2018-07-14T07:11:35.321Z","enrolled":76610,"book":"http://garret.name","course_url":"https://lilian.name"},{"course_title":"Grant, O'Conner and Hyatt","course_number":92717,"instructor":"Mr. Lucius Champlin","location":"39005 Keely Field","time":"2018-07-14T17:09:04.985Z","enrolled":84524,"book":"http://josianne.org","course_url":"https://talia.com"},{"course_title":"Bogisich, Thompson and Steuber","course_number":17474,"instructor":"Mr. Tyshawn Swift","location":"29313 Bernadette Shores","time":"2018-07-14T01:11:38.424Z","enrolled":64492,"book":"https://frances.biz","course_url":"http://boris.org"},{"course_title":"Jacobi, Rice and Hirthe","course_number":87627,"instructor":"Felipe Kemmer","location":"8689 Cassin Mountains","time":"2018-07-14T19:45:12.661Z","enrolled":751,"book":"http://lonnie.net","course_url":"https://orville.name"},{"course_title":"Kuhic Inc","course_number":36031,"instructor":"Loy Gulgowski","location":"0010 Isadore Keys","time":"2018-07-14T02:48:48.608Z","enrolled":57733,"book":"https://grayson.net","course_url":"https://torrance.name"},{"course_title":"Bauch LLC","course_number":63903,"instructor":"Eryn Kuhn","location":"5260 Josephine Fields","time":"2018-07-14T18:06:45.186Z","enrolled":22637,"book":"http://citlalli.org","course_url":"http://meredith.name"},{"course_title":"Gulgowski, Kessler and Russel","course_number":19075,"instructor":"Denis Flatley","location":"844 Rusty Plains","time":"2018-07-14T05:14:40.189Z","enrolled":85567,"book":"https://lucie.net","course_url":"http://shad.info"},{"course_title":"Herzog, Jerde and Sipes","course_number":99220,"instructor":"Barry Greenholt","location":"5212 Sigmund Squares","time":"2018-07-14T09:37:38.935Z","enrolled":67968,"book":"https://garland.name","course_url":"https://elvie.org"},{"course_title":"Leffler - Mertz","course_number":98779,"instructor":"Nannie Bradtke","location":"8280 Legros Plaza","time":"2018-07-14T09:47:10.169Z","enrolled":83615,"book":"https://leonie.net","course_url":"http://neoma.com"},{"course_title":"Bernhard LLC","course_number":88387,"instructor":"Izaiah Will I","location":"701 Sanford Pass","time":"2018-07-14T07:27:31.436Z","enrolled":5296,"book":"http://walton.org","course_url":"https://bryana.com"},{"course_title":"Ziemann, Senger and Hudson","course_number":72386,"instructor":"Paula Rath","location":"67917 Rogahn Village","time":"2018-07-14T13:34:45.208Z","enrolled":99152,"book":"http://bessie.com","course_url":"http://ana.name"},{"course_title":"Schuster - Weber","course_number":36174,"instructor":"Julien DuBuque DVM","location":"319 Toy Gateway","time":"2018-07-14T17:21:46.932Z","enrolled":72827,"book":"http://harvey.info","course_url":"http://donny.net"},{"course_title":"Wilkinson, Carroll and Wilkinson","course_number":86557,"instructor":"Willie Cole","location":"8520 Haleigh Fords","time":"2018-07-14T10:09:36.755Z","enrolled":71582,"book":"http://delfina.info","course_url":"http://jailyn.org"},{"course_title":"Price - Kling","course_number":38388,"instructor":"Harmon Huel","location":"692 Jevon Corners","time":"2018-07-14T20:06:38.550Z","enrolled":4296,"book":"https://kaylah.info","course_url":"http://gus.info"},{"course_title":"Rodriguez, Douglas and Robel","course_number":74652,"instructor":"Torrance Rowe","location":"49716 Bahringer Fields","time":"2018-07-14T01:37:19.319Z","enrolled":6947,"book":"https://jarod.net","course_url":"https://rosetta.info"},{"course_title":"Sporer - Deckow","course_number":55022,"instructor":"Elias Moore","location":"588 Streich Mall","time":"2018-07-14T21:23:03.389Z","enrolled":83133,"book":"https://tad.net","course_url":"https://francesca.net"},{"course_title":"Gulgowski LLC","course_number":78963,"instructor":"Aniya Shields","location":"4315 Myrtice Pass","time":"2018-07-14T05:48:22.163Z","enrolled":23277,"book":"http://carmen.biz","course_url":"http://drew.net"},{"course_title":"Heathcote - O'Conner","course_number":50183,"instructor":"Lindsey Muller","location":"0664 Dakota Point","time":"2018-07-14T21:01:19.595Z","enrolled":63804,"book":"https://dejah.biz","course_url":"http://marilyne.biz"},{"course_title":"Becker - Stehr","course_number":19257,"instructor":"Enid Turner","location":"9756 Marina Extension","time":"2018-07-14T01:33:52.307Z","enrolled":43394,"book":"https://zachery.org","course_url":"https://ethan.org"},{"course_title":"Willms - Ankunding","course_number":54568,"instructor":"Jack Romaguera I","location":"0914 Ryan Union","time":"2018-07-14T11:24:29.912Z","enrolled":96886,"book":"http://aida.info","course_url":"https://harry.net"},{"course_title":"Ferry - MacGyver","course_number":83578,"instructor":"Brennan Schuppe","location":"1211 Zack Roads","time":"2018-07-14T20:54:35.498Z","enrolled":44302,"book":"http://eleazar.name","course_url":"http://orville.biz"},{"course_title":"Ledner Group","course_number":84158,"instructor":"Van Pfannerstill","location":"769 Gulgowski Highway","time":"2018-07-14T22:00:35.730Z","enrolled":86158,"book":"https://lenna.info","course_url":"http://frida.info"},{"course_title":"Nikolaus - Tremblay","course_number":51832,"instructor":"Jermaine Collins","location":"4430 Ila Corners","time":"2018-07-14T09:05:10.028Z","enrolled":86688,"book":"https://chad.biz","course_url":"https://jules.org"},{"course_title":"Trantow Group","course_number":45260,"instructor":"Torrance Hickle","location":"96179 Pamela Ramp","time":"2018-07-14T17:37:18.279Z","enrolled":9936,"book":"https://jettie.info","course_url":"http://alvis.biz"},{"course_title":"Kemmer - Little","course_number":55645,"instructor":"Jacinto Crist Sr.","location":"72744 Franecki Creek","time":"2018-07-14T11:59:59.667Z","enrolled":9681,"book":"https://reinhold.net","course_url":"http://moses.info"},{"course_title":"Ryan LLC","course_number":81707,"instructor":"Elnora Botsford","location":"88217 Constance Gateway","time":"2018-07-14T22:20:48.127Z","enrolled":23829,"book":"https://peyton.name","course_url":"http://ezequiel.com"},{"course_title":"Jerde, Becker and Harber","course_number":649,"instructor":"Aleen Kassulke","location":"62652 Kunde Well","time":"2018-07-14T02:27:36.289Z","enrolled":35133,"book":"http://halie.com","course_url":"http://jarvis.info"},{"course_title":"Morissette - Swaniawski","course_number":62877,"instructor":"Mack Terry","location":"99061 Greg Meadows","time":"2018-07-14T02:26:07.095Z","enrolled":27973,"book":"https://nyah.info","course_url":"http://neoma.info"},{"course_title":"Mante LLC","course_number":35933,"instructor":"Octavia West","location":"5530 Madge Creek","time":"2018-07-14T18:11:16.285Z","enrolled":79553,"book":"https://blake.biz","course_url":"http://leon.org"},{"course_title":"Schulist - Bahringer","course_number":21686,"instructor":"Marques Zulauf","location":"21761 Nella Land","time":"2018-07-14T19:15:05.169Z","enrolled":64619,"book":"https://burley.name","course_url":"http://alexane.com"},{"course_title":"Dooley Inc","course_number":40348,"instructor":"Clay Boyer I","location":"0952 Hackett Keys","time":"2018-07-14T07:33:07.649Z","enrolled":38061,"book":"http://katelin.com","course_url":"http://paula.name"},{"course_title":"Will and Sons","course_number":80089,"instructor":"Donnie Senger","location":"62904 Friedrich Circles","time":"2018-07-14T14:21:22.069Z","enrolled":5226,"book":"http://bette.org","course_url":"http://cortez.com"},{"course_title":"Smitham - Bradtke","course_number":96270,"instructor":"Lester Heidenreich","location":"764 Johnson Locks","time":"2018-07-14T02:37:50.267Z","enrolled":60242,"book":"http://marques.org","course_url":"http://antonina.name"},{"course_title":"Mayert, Nader and Feest","course_number":32599,"instructor":"Meda Kulas","location":"8280 Turcotte Shoal","time":"2018-07-13T23:11:55.719Z","enrolled":43176,"book":"https://cade.org","course_url":"https://gerson.info"},{"course_title":"Stracke Inc","course_number":8527,"instructor":"Jaime Hane","location":"6738 Torp Forest","time":"2018-07-14T18:54:16.615Z","enrolled":36934,"book":"http://anita.name","course_url":"http://ole.com"},{"course_title":"Kshlerin Inc","course_number":60778,"instructor":"Amanda Jacobs","location":"496 Violette Vista","time":"2018-07-14T18:31:55.030Z","enrolled":69420,"book":"http://aletha.name","course_url":"https://russ.net"},{"course_title":"Tromp, Leannon and Kub","course_number":3605,"instructor":"Gregoria Gislason","location":"6556 Aufderhar Knoll","time":"2018-07-14T04:05:44.303Z","enrolled":95580,"book":"http://margot.biz","course_url":"http://karen.name"},{"course_title":"Jacobson Inc","course_number":40792,"instructor":"Rosendo Torphy","location":"17798 Jayda Via","time":"2018-07-14T11:17:52.914Z","enrolled":86417,"book":"https://garrison.net","course_url":"https://tom.name"},{"course_title":"Cassin - Hegmann","course_number":84089,"instructor":"Lisandro Runte I","location":"282 Frederick Glen","time":"2018-07-14T17:35:53.393Z","enrolled":74733,"book":"http://charlie.org","course_url":"https://norval.com"},{"course_title":"Altenwerth - Walter","course_number":12421,"instructor":"Deonte O'Kon","location":"29330 Lessie Rapids","time":"2018-07-14T00:39:31.820Z","enrolled":60410,"book":"https://katrine.com","course_url":"https://clarabelle.name"},{"course_title":"Beier - Lehner","course_number":11689,"instructor":"Viola Grady","location":"263 Wilburn Springs","time":"2018-07-14T21:38:59.542Z","enrolled":29034,"book":"https://alexandre.net","course_url":"https://rafaela.name"},{"course_title":"Franecki LLC","course_number":72036,"instructor":"Peyton Predovic","location":"8065 Gerard Village","time":"2018-07-14T10:33:59.520Z","enrolled":68951,"book":"https://alfonzo.net","course_url":"https://harvey.net"},{"course_title":"Davis Group","course_number":67210,"instructor":"Marilou Bauch","location":"987 Hermann Island","time":"2018-07-14T10:05:43.276Z","enrolled":95327,"book":"http://seamus.com","course_url":"http://chesley.com"},{"course_title":"Hirthe, Will and Bruen","course_number":17570,"instructor":"Annetta Parker DVM","location":"688 Kerluke Motorway","time":"2018-07-14T00:49:44.296Z","enrolled":44734,"book":"http://lila.info","course_url":"https://darryl.org"},{"course_title":"Abernathy, Marvin and Ebert","course_number":45895,"instructor":"Lula Wintheiser","location":"267 Carissa Loop","time":"2018-07-14T13:22:07.919Z","enrolled":27434,"book":"https://gabriel.name","course_url":"http://alisa.biz"},{"course_title":"Adams Group","course_number":32496,"instructor":"Bill Fay Jr.","location":"0409 Oberbrunner Pines","time":"2018-07-14T14:48:16.625Z","enrolled":69326,"book":"http://laurel.org","course_url":"https://maya.name"},{"course_title":"Gulgowski - Olson","course_number":17764,"instructor":"Bernita Zulauf","location":"79211 Conroy Shores","time":"2018-07-14T02:23:21.825Z","enrolled":81166,"book":"https://savanna.name","course_url":"http://emilio.com"},{"course_title":"Huels Inc","course_number":11072,"instructor":"Destin Green","location":"31580 Bethel Throughway","time":"2018-07-14T12:07:36.541Z","enrolled":18966,"book":"https://hermina.biz","course_url":"http://arnulfo.name"},{"course_title":"Johns Inc","course_number":41741,"instructor":"Leanne Mueller","location":"4799 Destinee Mountain","time":"2018-07-14T22:59:30.514Z","enrolled":18694,"book":"https://marian.name","course_url":"https://garland.info"},{"course_title":"Littel, Feest and Cremin","course_number":85277,"instructor":"Lacy Kohler","location":"411 Hintz Track","time":"2018-07-14T08:01:07.714Z","enrolled":35281,"book":"http://aliyah.biz","course_url":"http://dayna.info"},{"course_title":"Schroeder, Kunde and Stark","course_number":10181,"instructor":"Ismael Harvey","location":"602 Bernier Ramp","time":"2018-07-14T15:48:21.614Z","enrolled":24556,"book":"https://rosamond.net","course_url":"http://arno.name"},{"course_title":"Ebert - Douglas","course_number":48946,"instructor":"Miss Heather Herman","location":"63313 Wilton Club","time":"2018-07-14T01:48:16.451Z","enrolled":27403,"book":"http://monique.info","course_url":"http://mustafa.net"},{"course_title":"Raynor, Stehr and Watsica","course_number":77556,"instructor":"Ron Will","location":"166 Larue Turnpike","time":"2018-07-14T05:47:04.733Z","enrolled":76499,"book":"https://edward.net","course_url":"http://loraine.com"},{"course_title":"Pfeffer Inc","course_number":96429,"instructor":"Sonya Mann","location":"11779 Marisol Road","time":"2018-07-14T15:20:37.680Z","enrolled":98920,"book":"http://reese.biz","course_url":"https://saul.biz"},{"course_title":"Gislason Group","course_number":1091,"instructor":"Ocie Bradtke","location":"6494 Kiehn Forest","time":"2018-07-14T14:14:49.861Z","enrolled":80843,"book":"https://uriah.com","course_url":"https://kristy.name"},{"course_title":"Rowe, Eichmann and Ledner","course_number":59846,"instructor":"Price Hills","location":"48878 Ole Glens","time":"2018-07-14T14:35:10.223Z","enrolled":53314,"book":"https://manuel.com","course_url":"https://robyn.org"},{"course_title":"Welch, Schultz and Lowe","course_number":68849,"instructor":"Molly Bradtke","location":"7072 Wiza Mills","time":"2018-07-14T06:45:05.465Z","enrolled":66854,"book":"https://melvin.com","course_url":"http://kailyn.info"},{"course_title":"Block, Kovacek and Schumm","course_number":981,"instructor":"Cristobal Legros","location":"69707 Cassin Trafficway","time":"2018-07-14T21:21:31.090Z","enrolled":45955,"book":"https://cody.com","course_url":"https://buster.net"},{"course_title":"Simonis, Emmerich and Steuber","course_number":91200,"instructor":"Dedrick Weber","location":"43303 Burnice Forks","time":"2018-07-14T22:39:32.781Z","enrolled":97152,"book":"http://ivah.name","course_url":"https://verla.info"},{"course_title":"Ratke Inc","course_number":56380,"instructor":"Leopoldo Kreiger DDS","location":"71346 Kutch Springs","time":"2018-07-14T21:43:35.257Z","enrolled":56089,"book":"http://frieda.com","course_url":"https://vaughn.org"},{"course_title":"Brown - Hickle","course_number":8360,"instructor":"Brian Jones","location":"525 Wolff Camp","time":"2018-07-14T13:08:28.141Z","enrolled":28680,"book":"https://sherwood.com","course_url":"https://otho.name"},{"course_title":"Grimes LLC","course_number":30176,"instructor":"Zula Langosh","location":"2913 Frieda Highway","time":"2018-07-14T12:36:58.533Z","enrolled":658,"book":"http://dorian.name","course_url":"https://isadore.info"},{"course_title":"Johnston, Schumm and Gorczany","course_number":66350,"instructor":"Louie Kreiger","location":"09434 Grady Loop","time":"2018-07-14T14:17:39.717Z","enrolled":34388,"book":"http://bart.org","course_url":"https://kylee.org"},{"course_title":"Johnson, Abbott and Runte","course_number":51675,"instructor":"Tito Rath","location":"89232 Shaun Mills","time":"2018-07-14T17:00:32.542Z","enrolled":31619,"book":"http://gay.name","course_url":"http://jakayla.biz"},{"course_title":"Wisozk, Upton and Ziemann","course_number":39581,"instructor":"Bridie Jenkins","location":"4316 Moen Orchard","time":"2018-07-14T14:57:01.307Z","enrolled":55347,"book":"https://randal.org","course_url":"https://dedrick.biz"},{"course_title":"Conroy Inc","course_number":72586,"instructor":"Jessie Borer","location":"77414 Robyn Pass","time":"2018-07-14T11:46:29.314Z","enrolled":16387,"book":"https://marcia.net","course_url":"https://dorian.info"},{"course_title":"Anderson - Bergnaum","course_number":6877,"instructor":"Cordelia Spencer","location":"997 Mona Springs","time":"2018-07-14T21:37:54.238Z","enrolled":40650,"book":"http://napoleon.biz","course_url":"https://eino.name"},{"course_title":"Fahey, Carroll and Keeling","course_number":46334,"instructor":"Lottie Champlin","location":"7774 Prohaska Creek","time":"2018-07-14T12:56:00.959Z","enrolled":39019,"book":"http://jaron.net","course_url":"http://rae.com"},{"course_title":"Stokes - Romaguera","course_number":71174,"instructor":"Alaina Spinka","location":"693 Pfeffer Valley","time":"2018-07-14T04:36:06.124Z","enrolled":86557,"book":"http://leopold.biz","course_url":"http://royal.name"},{"course_title":"Anderson Inc","course_number":23376,"instructor":"Eunice Huels","location":"146 Gerhard Mountain","time":"2018-07-14T19:08:33.950Z","enrolled":36457,"book":"http://marlen.org","course_url":"http://rosendo.name"},{"course_title":"Kovacek, Miller and Beer","course_number":11912,"instructor":"Zachery Heathcote","location":"8684 Eldora Prairie","time":"2018-07-14T00:31:54.857Z","enrolled":23590,"book":"https://dario.net","course_url":"http://josefina.com"},{"course_title":"Hackett - Wilkinson","course_number":12627,"instructor":"Mr. Clark Schinner","location":"12666 Donnelly Meadows","time":"2018-07-14T03:28:24.278Z","enrolled":65531,"book":"https://amelie.net","course_url":"https://erik.name"},{"course_title":"Mueller, Huel and Aufderhar","course_number":69481,"instructor":"Mrs. Zena Bins","location":"3987 Sawayn Land","time":"2018-07-14T09:26:27.381Z","enrolled":49437,"book":"http://itzel.biz","course_url":"https://keyon.com"},{"course_title":"Graham, Rowe and Kertzmann","course_number":29434,"instructor":"Alyson Cremin MD","location":"19069 Ruecker Turnpike","time":"2018-07-14T19:49:09.149Z","enrolled":85711,"book":"https://melody.biz","course_url":"https://lula.com"},{"course_title":"Hoeger, Barton and Larkin","course_number":4076,"instructor":"David Robel","location":"1840 Russel Canyon","time":"2018-07-14T09:53:23.046Z","enrolled":3413,"book":"https://lois.org","course_url":"http://america.org"},{"course_title":"Mayert, Haag and Zboncak","course_number":66136,"instructor":"Maye Ryan","location":"188 Jarred Summit","time":"2018-07-14T17:16:42.647Z","enrolled":66195,"book":"http://garrett.info","course_url":"http://nils.info"},{"course_title":"Dickinson - Abbott","course_number":48081,"instructor":"Kaelyn Weissnat","location":"20049 Alysa Fords","time":"2018-07-14T19:40:19.298Z","enrolled":92760,"book":"https://sonya.com","course_url":"http://oliver.info"},{"course_title":"Leannon, Shields and Ziemann","course_number":25075,"instructor":"Floy McGlynn","location":"471 Jamie Throughway","time":"2018-07-14T21:51:02.517Z","enrolled":30123,"book":"https://lew.info","course_url":"https://nestor.name"},{"course_title":"Toy Inc","course_number":8718,"instructor":"Cierra Strosin","location":"914 Raynor Knoll","time":"2018-07-14T13:30:14.257Z","enrolled":50384,"book":"http://tristin.info","course_url":"https://nels.org"},{"course_title":"Cremin - VonRueden","course_number":87813,"instructor":"Koby Lindgren","location":"1759 Thiel Port","time":"2018-07-14T08:58:58.501Z","enrolled":9037,"book":"https://mavis.net","course_url":"http://stefanie.com"},{"course_title":"Kling LLC","course_number":4000,"instructor":"Rudolph Padberg","location":"975 Norma Passage","time":"2018-07-14T12:15:44.999Z","enrolled":23577,"book":"http://theodora.info","course_url":"http://derick.info"},{"course_title":"Hoppe LLC","course_number":95655,"instructor":"Shawna Hayes","location":"88322 Dibbert Freeway","time":"2018-07-14T09:18:56.774Z","enrolled":22782,"book":"https://sonny.net","course_url":"http://ashlynn.org"},{"course_title":"Kihn - Hettinger","course_number":13721,"instructor":"Brian Ebert","location":"82532 Jasmin Rue","time":"2018-07-14T20:47:41.351Z","enrolled":15007,"book":"https://ross.com","course_url":"http://layla.biz"},{"course_title":"Kassulke, Rempel and Hoppe","course_number":53650,"instructor":"Miss Yoshiko Reinger","location":"668 Derek Trace","time":"2018-07-14T15:03:01.320Z","enrolled":81173,"book":"http://samir.org","course_url":"https://charles.net"},{"course_title":"Hegmann, Rau and Reichel","course_number":54458,"instructor":"Joelle Herman","location":"273 Garnet Junctions","time":"2018-07-14T01:22:14.643Z","enrolled":76730,"book":"http://ari.info","course_url":"http://tatum.name"},{"course_title":"Olson, Haley and Kautzer","course_number":45307,"instructor":"Lillian Feeney","location":"28101 Beer Village","time":"2018-07-14T07:41:15.274Z","enrolled":36888,"book":"https://orin.org","course_url":"http://sigurd.net"},{"course_title":"Schowalter, Wehner and Carroll","course_number":7861,"instructor":"Giles Bosco","location":"635 Stephanie Cove","time":"2018-07-14T21:22:52.125Z","enrolled":56764,"book":"https://euna.biz","course_url":"http://salvatore.name"},{"course_title":"Hintz, Russel and Collins","course_number":17431,"instructor":"Lawrence Heathcote","location":"100 Desiree View","time":"2018-07-14T02:24:08.385Z","enrolled":79644,"book":"https://bernardo.biz","course_url":"https://hillard.net"},{"course_title":"Stoltenberg, Harvey and Mayer","course_number":72276,"instructor":"Althea Bins","location":"115 Sibyl Trace","time":"2018-07-14T03:36:40.777Z","enrolled":33109,"book":"https://rosella.net","course_url":"http://ebony.com"},{"course_title":"Johnston - Hessel","course_number":29223,"instructor":"Retta Crona","location":"792 Blanca Mall","time":"2018-07-14T16:08:30.450Z","enrolled":9626,"book":"https://flavie.net","course_url":"http://floy.com"},{"course_title":"Haley - Bergnaum","course_number":47915,"instructor":"Ethan Rath","location":"889 Ansel Forks","time":"2018-07-14T04:33:07.707Z","enrolled":10110,"book":"http://evangeline.name","course_url":"http://ned.biz"},{"course_title":"Jast - Beahan","course_number":554,"instructor":"Francis Crona","location":"57871 Emmitt Courts","time":"2018-07-14T22:48:11.256Z","enrolled":71358,"book":"https://herminio.info","course_url":"https://dillon.biz"},{"course_title":"Johnson - Corwin","course_number":61826,"instructor":"Pattie Homenick","location":"483 Clifford Stream","time":"2018-07-14T15:14:57.817Z","enrolled":37452,"book":"https://annabell.name","course_url":"http://cleveland.info"},{"course_title":"Schuster Inc","course_number":83991,"instructor":"Kelsi Langworth","location":"250 Tressie Brooks","time":"2018-07-14T13:27:23.541Z","enrolled":7044,"book":"http://erwin.org","course_url":"https://frederic.info"},{"course_title":"Schneider, Cremin and Conn","course_number":63765,"instructor":"Emely Haley","location":"755 Karolann Circles","time":"2018-07-14T18:39:39.334Z","enrolled":70341,"book":"https://carlee.com","course_url":"http://raquel.biz"},{"course_title":"Auer Group","course_number":80650,"instructor":"Cruz Emard","location":"1795 Sophie Light","time":"2018-07-14T20:33:32.297Z","enrolled":72497,"book":"http://jayde.org","course_url":"https://kianna.org"},{"course_title":"Reynolds and Sons","course_number":7232,"instructor":"Lillian Fay","location":"226 Jeramie Drives","time":"2018-07-14T19:51:04.343Z","enrolled":48406,"book":"http://anna.name","course_url":"https://lacy.name"},{"course_title":"Nolan, Buckridge and Pfannerstill","course_number":80303,"instructor":"Audra Sanford","location":"563 Macy Plains","time":"2018-07-14T10:53:18.266Z","enrolled":17435,"book":"https://rossie.name","course_url":"http://araceli.name"},{"course_title":"Thompson Group","course_number":22352,"instructor":"Lynn Schuster","location":"01969 Dietrich Groves","time":"2018-07-14T08:00:53.538Z","enrolled":83257,"book":"http://collin.net","course_url":"https://kiara.net"},{"course_title":"Medhurst, Prohaska and Keeling","course_number":36164,"instructor":"Arlie Hackett DDS","location":"4963 Victoria Stravenue","time":"2018-07-14T17:35:31.924Z","enrolled":3675,"book":"https://kevin.org","course_url":"https://maiya.name"},{"course_title":"Dare and Sons","course_number":62944,"instructor":"Frank Sanford","location":"7541 Rempel Port","time":"2018-07-13T23:50:41.453Z","enrolled":55741,"book":"http://van.biz","course_url":"http://raheem.name"},{"course_title":"Will - Nader","course_number":49385,"instructor":"Zakary Ruecker","location":"5148 Powlowski Summit","time":"2018-07-14T15:08:26.648Z","enrolled":93275,"book":"https://kelley.biz","course_url":"http://maritza.org"},{"course_title":"Mitchell, Reilly and Boyle","course_number":49257,"instructor":"Isabella Rodriguez","location":"9665 Waelchi Flats","time":"2018-07-14T09:15:39.681Z","enrolled":54042,"book":"http://catalina.org","course_url":"http://dustin.net"},{"course_title":"Batz - Runolfsson","course_number":71119,"instructor":"Dean Kemmer","location":"709 Brennan Circle","time":"2018-07-14T09:09:53.463Z","enrolled":46493,"book":"https://roselyn.net","course_url":"http://barney.biz"},{"course_title":"Pagac, Collins and Fritsch","course_number":51509,"instructor":"Veronica Nicolas","location":"218 Alexander Divide","time":"2018-07-14T02:13:07.471Z","enrolled":641,"book":"http://theresa.biz","course_url":"https://gustave.info"},{"course_title":"Robel - Kertzmann","course_number":97130,"instructor":"Ismael Mertz","location":"100 Rogahn Mission","time":"2018-07-13T23:21:24.245Z","enrolled":95344,"book":"http://reynold.org","course_url":"http://damion.biz"},{"course_title":"Miller - Rolfson","course_number":91317,"instructor":"Holly Denesik I","location":"9918 Ebert Lakes","time":"2018-07-14T01:14:04.206Z","enrolled":1127,"book":"https://denis.name","course_url":"https://kianna.org"},{"course_title":"Block, Hammes and Heathcote","course_number":76186,"instructor":"Princess Lockman","location":"47810 Kay Oval","time":"2018-07-14T13:08:51.774Z","enrolled":57227,"book":"http://manuel.name","course_url":"http://mckenzie.org"},{"course_title":"Goyette Group","course_number":92007,"instructor":"Lane Nicolas Sr.","location":"555 Juwan Meadow","time":"2018-07-14T01:05:56.589Z","enrolled":91366,"book":"http://syble.net","course_url":"http://kayleigh.name"},{"course_title":"Bruen, Abernathy and McKenzie","course_number":74220,"instructor":"Beth Cruickshank","location":"997 Larson Prairie","time":"2018-07-14T11:20:34.515Z","enrolled":93091,"book":"http://amy.info","course_url":"https://peyton.com"},{"course_title":"O'Connell - Flatley","course_number":96854,"instructor":"Mikel Huels","location":"627 Marks Mountain","time":"2018-07-14T16:50:56.142Z","enrolled":84710,"book":"http://kellen.com","course_url":"https://maybelle.com"},{"course_title":"Marvin, Von and Cummerata","course_number":97189,"instructor":"Vickie Morissette","location":"1493 Kuhic Summit","time":"2018-07-14T06:06:37.414Z","enrolled":58379,"book":"http://loren.com","course_url":"http://queen.info"},{"course_title":"Jacobi LLC","course_number":49430,"instructor":"Else Bosco","location":"084 Paucek Road","time":"2018-07-14T01:58:31.516Z","enrolled":97197,"book":"https://dawson.com","course_url":"https://oswald.name"},{"course_title":"Moore, Schneider and Towne","course_number":16097,"instructor":"Nathen Wehner DVM","location":"9728 Jayda Oval","time":"2018-07-14T02:40:22.601Z","enrolled":39824,"book":"https://sebastian.info","course_url":"http://wilburn.info"},{"course_title":"Greenfelder - Swift","course_number":13920,"instructor":"Jayme O'Conner","location":"762 Elias Mall","time":"2018-07-14T14:40:28.139Z","enrolled":53824,"book":"https://chauncey.org","course_url":"https://garret.biz"},{"course_title":"Lubowitz and Sons","course_number":30442,"instructor":"Cali Mraz","location":"66729 Schroeder Street","time":"2018-07-14T07:58:58.730Z","enrolled":45644,"book":"http://jeramie.biz","course_url":"http://ernie.info"},{"course_title":"Howell, Baumbach and Ortiz","course_number":63352,"instructor":"Jarod Pollich","location":"202 Smitham Fields","time":"2018-07-14T00:34:22.020Z","enrolled":45415,"book":"https://estella.org","course_url":"https://icie.info"},{"course_title":"Crooks - Littel","course_number":4891,"instructor":"Mrs. Domenic Bogan","location":"09164 Bogisich Village","time":"2018-07-14T11:50:08.501Z","enrolled":59818,"book":"https://laura.net","course_url":"http://hobart.info"},{"course_title":"Haag, Bednar and Spencer","course_number":69551,"instructor":"Dr. Waylon Runte","location":"20580 Zulauf Pines","time":"2018-07-14T05:22:46.193Z","enrolled":30381,"book":"https://kennith.name","course_url":"http://juanita.com"},{"course_title":"Smitham, Schmitt and Conroy","course_number":71471,"instructor":"Rogers Luettgen","location":"87854 Parker Cliff","time":"2018-07-14T21:46:13.209Z","enrolled":95311,"book":"https://lee.com","course_url":"http://chase.name"},{"course_title":"Weber, Turcotte and Carroll","course_number":15334,"instructor":"Carole Satterfield","location":"01259 Macejkovic Road","time":"2018-07-14T04:11:55.533Z","enrolled":64780,"book":"http://marilyne.net","course_url":"https://natasha.info"},{"course_title":"Smitham, Crooks and Quigley","course_number":69380,"instructor":"Destinee Medhurst","location":"5604 Uriel Meadow","time":"2018-07-14T05:27:27.301Z","enrolled":8326,"book":"https://marta.biz","course_url":"https://anabelle.net"},{"course_title":"Kilback - Robel","course_number":74523,"instructor":"Ignacio Collier","location":"802 Terry Wells","time":"2018-07-14T21:02:12.192Z","enrolled":53122,"book":"https://haleigh.info","course_url":"https://carlie.info"},{"course_title":"Yost - Rempel","course_number":95067,"instructor":"Celine Muller","location":"48273 Rashawn Summit","time":"2018-07-14T03:39:29.915Z","enrolled":52109,"book":"http://reginald.com","course_url":"https://rosie.org"},{"course_title":"Ritchie - Goodwin","course_number":20353,"instructor":"Jaydon Leffler","location":"186 Broderick Brook","time":"2018-07-14T18:32:38.205Z","enrolled":80848,"book":"https://kaylee.net","course_url":"http://brando.biz"},{"course_title":"Hilll, Emmerich and Carroll","course_number":36855,"instructor":"Gage Cole","location":"7413 Cade Freeway","time":"2018-07-14T14:05:17.639Z","enrolled":5722,"book":"https://cyril.com","course_url":"http://lawrence.org"},{"course_title":"Frami Group","course_number":20786,"instructor":"Kobe Bogan","location":"6645 Larkin Isle","time":"2018-07-14T01:58:17.980Z","enrolled":71193,"book":"http://earnestine.name","course_url":"https://emmanuel.com"},{"course_title":"Schmitt - Mitchell","course_number":43925,"instructor":"Miss Odie Ernser","location":"591 Gibson Keys","time":"2018-07-14T04:27:53.954Z","enrolled":17675,"book":"http://jaylan.biz","course_url":"http://monroe.biz"},{"course_title":"Stracke - Effertz","course_number":52805,"instructor":"Missouri Schiller","location":"2411 Leanne Estate","time":"2018-07-14T04:00:49.412Z","enrolled":70111,"book":"https://garry.biz","course_url":"https://benny.net"},{"course_title":"Hayes - Daugherty","course_number":34620,"instructor":"Ms. Felicia Ziemann","location":"391 Consuelo Mews","time":"2018-07-14T07:04:46.791Z","enrolled":20919,"book":"https://macy.info","course_url":"http://antonio.org"},{"course_title":"Goldner and Sons","course_number":35444,"instructor":"Kristina Kulas DDS","location":"41560 Cesar Divide","time":"2018-07-14T12:12:43.248Z","enrolled":20363,"book":"https://oren.net","course_url":"http://chanel.com"},{"course_title":"Feil - Cremin","course_number":27642,"instructor":"Ms. Sydney Ryan","location":"6324 Darron River","time":"2018-07-14T17:24:23.508Z","enrolled":11203,"book":"http://chauncey.name","course_url":"https://myrtie.org"},{"course_title":"Kunde, Reilly and Torphy","course_number":13266,"instructor":"Chadd Deckow","location":"62790 Lucy Overpass","time":"2018-07-14T06:38:52.811Z","enrolled":43832,"book":"http://geo.com","course_url":"http://wyman.net"},{"course_title":"Romaguera - Green","course_number":16290,"instructor":"Luis Mayert","location":"2596 Corwin Expressway","time":"2018-07-14T05:52:09.942Z","enrolled":39194,"book":"http://jaron.info","course_url":"http://cory.name"},{"course_title":"Harris - Brown","course_number":47341,"instructor":"Susan Kuphal","location":"65065 Stamm Spurs","time":"2018-07-14T22:12:10.107Z","enrolled":4732,"book":"http://virgil.name","course_url":"http://zaria.name"},{"course_title":"Mayer - Cummings","course_number":90207,"instructor":"Karen Thiel","location":"657 Dulce View","time":"2018-07-14T13:39:41.570Z","enrolled":59444,"book":"http://elena.net","course_url":"http://ashlynn.com"},{"course_title":"Balistreri LLC","course_number":7727,"instructor":"Dean Kuhlman","location":"112 Kaci Crossroad","time":"2018-07-14T13:37:49.057Z","enrolled":50649,"book":"https://june.biz","course_url":"https://jacquelyn.biz"},{"course_title":"Heaney and Sons","course_number":15611,"instructor":"April Anderson","location":"47163 Alicia Lake","time":"2018-07-14T11:58:36.930Z","enrolled":59940,"book":"http://augusta.name","course_url":"http://jamarcus.biz"},{"course_title":"Rath - Vandervort","course_number":23212,"instructor":"Mr. Meta Orn","location":"1097 Tillman Cliffs","time":"2018-07-14T16:47:15.784Z","enrolled":32753,"book":"http://stuart.biz","course_url":"http://jessie.org"},{"course_title":"Towne Group","course_number":1503,"instructor":"Rosetta Cronin","location":"9235 Sierra Port","time":"2018-07-14T02:54:38.035Z","enrolled":47837,"book":"http://genevieve.biz","course_url":"https://maybell.biz"},{"course_title":"Collins - Reichel","course_number":55343,"instructor":"Tito Corwin","location":"15711 Christiana Terrace","time":"2018-07-14T11:23:36.398Z","enrolled":4582,"book":"https://kenny.org","course_url":"https://delmer.name"},{"course_title":"Beier, Kerluke and Huel","course_number":31371,"instructor":"Eden McDermott","location":"660 Marion Club","time":"2018-07-14T15:34:30.727Z","enrolled":83931,"book":"https://verner.net","course_url":"https://william.net"},{"course_title":"Howe LLC","course_number":4962,"instructor":"Imogene Conn","location":"075 Newton Terrace","time":"2018-07-14T21:22:40.776Z","enrolled":30240,"book":"http://orlando.org","course_url":"https://isaias.com"},{"course_title":"Marks and Sons","course_number":49033,"instructor":"Gus Parisian IV","location":"46528 Hermann Plains","time":"2018-07-14T05:01:21.015Z","enrolled":71968,"book":"http://jeffry.biz","course_url":"https://abdiel.biz"},{"course_title":"Olson - McDermott","course_number":70828,"instructor":"Monserrate Koepp","location":"99820 Stracke Meadow","time":"2018-07-14T16:17:11.504Z","enrolled":43813,"book":"http://jayde.info","course_url":"http://vivien.org"},{"course_title":"Ruecker, Ankunding and Boyer","course_number":81091,"instructor":"Mrs. Darien Vandervort","location":"79886 Kariane Hills","time":"2018-07-14T10:25:34.608Z","enrolled":27570,"book":"http://ibrahim.biz","course_url":"http://carolina.org"},{"course_title":"Conroy Group","course_number":28330,"instructor":"Aliza Funk","location":"5906 King Orchard","time":"2018-07-14T14:51:52.621Z","enrolled":20579,"book":"https://dante.net","course_url":"http://raymundo.org"},{"course_title":"Bailey, Vandervort and Murazik","course_number":17302,"instructor":"Mrs. Mathias Reinger","location":"25044 Ward Ridges","time":"2018-07-14T15:17:14.934Z","enrolled":79340,"book":"http://nathen.org","course_url":"http://elwin.com"},{"course_title":"Farrell, Berge and Kunde","course_number":96799,"instructor":"Kirk Greenholt","location":"28576 Charlene Station","time":"2018-07-14T15:29:39.200Z","enrolled":8028,"book":"http://alessandra.info","course_url":"http://ilene.info"},{"course_title":"Greenholt and Sons","course_number":5021,"instructor":"Mrs. Janice Hermiston","location":"5292 Bert Place","time":"2018-07-14T17:26:52.470Z","enrolled":181,"book":"https://lindsay.biz","course_url":"https://mariela.org"},{"course_title":"Howell - Schowalter","course_number":38017,"instructor":"Geovany Baumbach","location":"96615 Ella Camp","time":"2018-07-14T22:25:07.077Z","enrolled":52974,"book":"http://rex.info","course_url":"https://barry.info"},{"course_title":"Orn, Abernathy and Pollich","course_number":88247,"instructor":"Herta Davis","location":"1226 Jaylin Ports","time":"2018-07-14T02:46:29.447Z","enrolled":96549,"book":"http://jerrod.net","course_url":"http://carlotta.com"},{"course_title":"Jacobson Group","course_number":73422,"instructor":"Lamont Blick","location":"8568 Mason Forges","time":"2018-07-14T07:34:49.407Z","enrolled":96630,"book":"https://cleveland.org","course_url":"https://bettye.name"},{"course_title":"Hane and Sons","course_number":62007,"instructor":"Cole Beatty","location":"90697 Dusty Lodge","time":"2018-07-14T05:10:07.015Z","enrolled":42476,"book":"https://ayla.info","course_url":"https://hardy.com"},{"course_title":"Fay LLC","course_number":99419,"instructor":"Raul Kuhn","location":"7663 Santos Terrace","time":"2018-07-14T01:50:04.167Z","enrolled":25539,"book":"http://anastacio.biz","course_url":"http://andreanne.com"},{"course_title":"Kemmer, Brakus and Watsica","course_number":56622,"instructor":"Waino Braun","location":"7276 Piper Valleys","time":"2018-07-13T23:31:59.927Z","enrolled":34516,"book":"http://eloise.biz","course_url":"https://mazie.info"},{"course_title":"Cronin - Hessel","course_number":818,"instructor":"Estel Ritchie","location":"84097 Era Wall","time":"2018-07-14T18:46:53.968Z","enrolled":15457,"book":"https://sofia.info","course_url":"https://lizzie.info"},{"course_title":"Corkery - Bode","course_number":27867,"instructor":"Selmer Fay","location":"840 Metz Rapids","time":"2018-07-14T02:17:49.454Z","enrolled":98590,"book":"https://alexis.com","course_url":"https://greyson.net"},{"course_title":"Bergnaum - Towne","course_number":81944,"instructor":"Mrs. Manley Rohan","location":"94452 Antwan Keys","time":"2018-07-14T06:33:40.644Z","enrolled":26908,"book":"https://lilian.name","course_url":"http://berenice.com"},{"course_title":"Abbott - Wintheiser","course_number":72810,"instructor":"Orion Hahn","location":"869 Stehr Harbor","time":"2018-07-14T15:12:36.857Z","enrolled":35392,"book":"https://roscoe.info","course_url":"http://garfield.biz"},{"course_title":"Beahan - Walsh","course_number":59606,"instructor":"Agustina Walsh","location":"14276 Kiehn Divide","time":"2018-07-13T23:48:37.712Z","enrolled":10550,"book":"https://william.biz","course_url":"http://eladio.name"},{"course_title":"Quigley - Kozey","course_number":33794,"instructor":"Oceane Daniel","location":"8688 Dean Lodge","time":"2018-07-14T07:51:28.691Z","enrolled":53837,"book":"https://rowan.net","course_url":"https://raegan.info"},{"course_title":"Dicki, Cartwright and Halvorson","course_number":19705,"instructor":"Yasmeen Reichel","location":"4458 Rempel Harbor","time":"2018-07-14T02:42:19.866Z","enrolled":13328,"book":"https://marquise.info","course_url":"http://mackenzie.org"},{"course_title":"Herzog, Veum and Barton","course_number":81051,"instructor":"Hilario Jacobson","location":"451 Beahan Ridges","time":"2018-07-14T11:59:01.162Z","enrolled":74861,"book":"http://anabel.net","course_url":"https://jennifer.net"},{"course_title":"Hahn - Goodwin","course_number":1556,"instructor":"Adolf Torp","location":"3002 Ondricka Summit","time":"2018-07-14T13:11:29.581Z","enrolled":24534,"book":"http://bettye.info","course_url":"https://erich.org"},{"course_title":"Mertz Inc","course_number":38465,"instructor":"Marcia Lesch","location":"0131 Koss Plains","time":"2018-07-14T11:52:10.741Z","enrolled":50077,"book":"https://mario.info","course_url":"http://odell.biz"},{"course_title":"Effertz, Cremin and Mueller","course_number":6586,"instructor":"Blanche Senger","location":"3058 Art Course","time":"2018-07-14T06:55:17.341Z","enrolled":50850,"book":"http://tianna.biz","course_url":"https://jazmyn.com"},{"course_title":"Bode - Mertz","course_number":69009,"instructor":"Athena Jakubowski","location":"275 Providenci Overpass","time":"2018-07-14T19:21:13.278Z","enrolled":43299,"book":"https://lexus.name","course_url":"https://elsie.biz"},{"course_title":"Weber Inc","course_number":9230,"instructor":"Keagan Kreiger","location":"190 Charlie Passage","time":"2018-07-14T07:28:04.951Z","enrolled":34861,"book":"http://constantin.name","course_url":"https://rick.org"},{"course_title":"Kerluke, Nader and Pouros","course_number":34053,"instructor":"Jesse Lindgren","location":"925 Dibbert Pines","time":"2018-07-14T14:27:10.843Z","enrolled":41659,"book":"http://molly.biz","course_url":"https://dylan.biz"},{"course_title":"Kerluke - Cormier","course_number":35012,"instructor":"Beatrice Jacobi","location":"59735 Georgiana Junction","time":"2018-07-14T15:12:56.908Z","enrolled":90704,"book":"http://kyra.com","course_url":"https://johan.net"},{"course_title":"Kassulke LLC","course_number":52594,"instructor":"Barbara Runte","location":"49802 Frami Park","time":"2018-07-14T22:01:41.632Z","enrolled":85349,"book":"http://carolanne.org","course_url":"http://michaela.org"},{"course_title":"McGlynn Group","course_number":45615,"instructor":"Simone Fay","location":"76604 Funk Island","time":"2018-07-14T21:53:03.788Z","enrolled":84169,"book":"https://pink.com","course_url":"https://kenyatta.org"},{"course_title":"Gibson, Wolf and Bernier","course_number":88762,"instructor":"Jedediah Durgan","location":"31704 Annabell Locks","time":"2018-07-14T09:44:21.132Z","enrolled":42682,"book":"http://lucy.org","course_url":"https://garret.info"},{"course_title":"Hudson, Bayer and Mante","course_number":61115,"instructor":"Sophie Lind","location":"104 Andreanne Knolls","time":"2018-07-14T06:04:47.224Z","enrolled":33713,"book":"http://kellen.com","course_url":"http://clara.org"},{"course_title":"Shanahan Group","course_number":25187,"instructor":"Tracey Emard","location":"38960 Rhianna Walks","time":"2018-07-14T07:18:48.111Z","enrolled":13462,"book":"http://amaya.info","course_url":"http://luigi.biz"},{"course_title":"Reinger, Macejkovic and Koelpin","course_number":26582,"instructor":"Zachary Boehm","location":"5901 Tyree Pass","time":"2018-07-14T21:51:05.276Z","enrolled":447,"book":"http://andy.info","course_url":"https://brandi.net"},{"course_title":"Bergstrom - Runolfsson","course_number":10139,"instructor":"Hellen Kling","location":"06889 Cayla Prairie","time":"2018-07-14T14:28:30.096Z","enrolled":81935,"book":"https://andres.name","course_url":"http://tanya.name"},{"course_title":"Hansen Group","course_number":50849,"instructor":"Chloe Pfannerstill PhD","location":"550 Gay Road","time":"2018-07-14T00:08:27.977Z","enrolled":32234,"book":"http://raleigh.info","course_url":"https://emely.info"},{"course_title":"Osinski Inc","course_number":93472,"instructor":"Oral Grant","location":"71048 Keeling Mills","time":"2018-07-14T20:21:59.683Z","enrolled":93748,"book":"https://green.name","course_url":"https://connie.net"},{"course_title":"Russel and Sons","course_number":81264,"instructor":"Lucienne Harber","location":"6373 Erdman Rapids","time":"2018-07-14T21:12:38.781Z","enrolled":50293,"book":"http://casandra.name","course_url":"https://darion.name"},{"course_title":"Dicki and Sons","course_number":66993,"instructor":"Broderick Zboncak","location":"8941 Shayne Cliff","time":"2018-07-14T05:23:06.186Z","enrolled":68560,"book":"https://ashley.info","course_url":"https://mario.info"},{"course_title":"Hoeger, Bauch and Jerde","course_number":78376,"instructor":"Clara Douglas","location":"574 Zoey Curve","time":"2018-07-14T14:06:30.762Z","enrolled":67275,"book":"https://tracey.name","course_url":"https://denis.biz"},{"course_title":"Dickinson LLC","course_number":50441,"instructor":"Miss Haven Schuppe","location":"9675 Keebler Islands","time":"2018-07-14T11:15:08.222Z","enrolled":42312,"book":"https://alfonzo.net","course_url":"https://amaya.biz"},{"course_title":"Sauer and Sons","course_number":3153,"instructor":"Lesly Shields","location":"934 Tevin Pike","time":"2018-07-14T07:15:34.387Z","enrolled":13187,"book":"http://newton.biz","course_url":"http://federico.biz"},{"course_title":"Smitham, Bergstrom and Mosciski","course_number":46904,"instructor":"Adolfo Hamill","location":"854 Labadie Pass","time":"2018-07-14T01:34:21.486Z","enrolled":70434,"book":"http://americo.net","course_url":"https://murl.info"},{"course_title":"Schowalter Group","course_number":21982,"instructor":"Issac Walker","location":"89539 Stokes Orchard","time":"2018-07-14T00:44:04.710Z","enrolled":31133,"book":"http://timmy.biz","course_url":"http://sean.info"},{"course_title":"Beahan, Lynch and Harris","course_number":97995,"instructor":"Jared Carter","location":"5971 Nitzsche Mill","time":"2018-07-14T07:58:49.397Z","enrolled":65497,"book":"http://erick.info","course_url":"https://dean.com"},{"course_title":"Cruickshank - Schoen","course_number":7621,"instructor":"Meagan Runte","location":"42113 Ewell Ports","time":"2018-07-14T17:28:46.658Z","enrolled":86981,"book":"https://anika.com","course_url":"http://martin.com"},{"course_title":"Von - Renner","course_number":4220,"instructor":"Jolie Brakus","location":"017 Makenzie Parkway","time":"2018-07-14T08:39:28.114Z","enrolled":15807,"book":"https://holden.info","course_url":"http://jeramy.info"},{"course_title":"Strosin and Sons","course_number":66454,"instructor":"Sanford Considine","location":"627 Swaniawski Orchard","time":"2018-07-14T18:14:14.334Z","enrolled":42038,"book":"http://janice.com","course_url":"http://blaise.info"},{"course_title":"Waters - Cremin","course_number":44388,"instructor":"Lowell Bailey","location":"38832 Glover Hill","time":"2018-07-14T18:08:20.575Z","enrolled":727,"book":"http://alfonzo.net","course_url":"http://kade.net"},{"course_title":"Koss Group","course_number":42421,"instructor":"Forrest Kling","location":"06890 Schultz Village","time":"2018-07-14T11:00:15.670Z","enrolled":90797,"book":"https://ryder.com","course_url":"https://fabiola.net"},{"course_title":"Herzog LLC","course_number":11807,"instructor":"Constantin Lehner IV","location":"291 Jean Fort","time":"2018-07-14T15:54:50.295Z","enrolled":66943,"book":"http://garry.biz","course_url":"https://jackie.info"},{"course_title":"Block and Sons","course_number":70943,"instructor":"Erika Parker","location":"0146 Lueilwitz Run","time":"2018-07-14T09:42:01.608Z","enrolled":85160,"book":"http://jackson.com","course_url":"http://kennith.info"},{"course_title":"Becker - Stokes","course_number":11751,"instructor":"Adrain Satterfield","location":"98181 Candice Courts","time":"2018-07-14T02:34:23.892Z","enrolled":74848,"book":"http://jaida.org","course_url":"https://stacey.info"},{"course_title":"Braun Inc","course_number":76443,"instructor":"Adan Spencer","location":"2517 Oliver Courts","time":"2018-07-14T00:12:57.213Z","enrolled":24037,"book":"https://lillian.com","course_url":"http://emerson.info"},{"course_title":"Sipes LLC","course_number":2111,"instructor":"Archibald Kshlerin","location":"9027 Kertzmann Isle","time":"2018-07-14T16:04:21.543Z","enrolled":8909,"book":"http://mauricio.name","course_url":"http://isabelle.org"},{"course_title":"Towne - Torphy","course_number":75908,"instructor":"Logan Gislason","location":"545 Langosh Point","time":"2018-07-14T17:24:49.769Z","enrolled":56721,"book":"http://germaine.net","course_url":"https://esmeralda.name"},{"course_title":"Jacobson - Wuckert","course_number":23927,"instructor":"Cordia Raynor MD","location":"07244 Marcus Crest","time":"2018-07-14T00:19:09.315Z","enrolled":46428,"book":"https://frederick.net","course_url":"http://beulah.info"},{"course_title":"Schumm, Kuphal and Barton","course_number":49627,"instructor":"Ms. Ivah Ziemann","location":"924 Filomena Unions","time":"2018-07-14T07:55:44.927Z","enrolled":85266,"book":"http://claude.net","course_url":"https://carolanne.com"},{"course_title":"Durgan, Stamm and Pfeffer","course_number":59293,"instructor":"Zena Kautzer","location":"205 Ryder Springs","time":"2018-07-14T22:30:10.619Z","enrolled":56904,"book":"http://tianna.net","course_url":"https://maureen.biz"},{"course_title":"Morissette, Wolff and Cassin","course_number":46466,"instructor":"Ms. Providenci Daugherty","location":"54724 Gunner Green","time":"2018-07-14T01:54:21.148Z","enrolled":53926,"book":"https://lacey.org","course_url":"https://marilyne.net"},{"course_title":"Schmitt, Blick and Kihn","course_number":28508,"instructor":"Dr. Nelson Gutkowski","location":"954 Roberts Station","time":"2018-07-14T01:53:17.798Z","enrolled":52529,"book":"http://hoyt.org","course_url":"http://clare.org"},{"course_title":"Jenkins Inc","course_number":98184,"instructor":"Dr. Shawn Robel","location":"11761 Miles Forest","time":"2018-07-14T13:35:33.822Z","enrolled":61197,"book":"http://aron.info","course_url":"https://eugene.org"},{"course_title":"Legros, Daugherty and Runolfsson","course_number":30007,"instructor":"Gerhard Price","location":"29592 Sheila Passage","time":"2018-07-14T14:16:01.089Z","enrolled":33165,"book":"http://devyn.info","course_url":"http://samantha.name"},{"course_title":"Schuster, Aufderhar and Runte","course_number":91357,"instructor":"Lucious Lebsack","location":"51834 Gilberto Ranch","time":"2018-07-14T01:24:34.131Z","enrolled":96839,"book":"https://anya.com","course_url":"https://giles.name"},{"course_title":"Rowe, Kiehn and Larkin","course_number":34835,"instructor":"Shad Hauck","location":"6840 Brekke Throughway","time":"2018-07-14T00:43:31.956Z","enrolled":71499,"book":"http://ressie.org","course_url":"https://nathanael.name"},{"course_title":"Becker Inc","course_number":60356,"instructor":"Kaley Kilback","location":"341 Kali Alley","time":"2018-07-14T07:15:25.788Z","enrolled":7362,"book":"https://chris.biz","course_url":"http://josefa.com"},{"course_title":"Cummerata Inc","course_number":19672,"instructor":"Haylee Larkin","location":"98645 Zemlak Islands","time":"2018-07-14T07:15:10.253Z","enrolled":81743,"book":"https://maegan.biz","course_url":"http://augusta.com"},{"course_title":"O'Conner and Sons","course_number":49618,"instructor":"Mrs. Neva Sporer","location":"44413 Fern Wells","time":"2018-07-14T12:29:57.817Z","enrolled":20108,"book":"http://ramiro.biz","course_url":"http://caleb.com"},{"course_title":"Cole - Braun","course_number":55908,"instructor":"Liza Hoppe DDS","location":"957 Evert Drive","time":"2018-07-14T05:28:24.216Z","enrolled":92585,"book":"http://marcelina.org","course_url":"https://kamren.info"},{"course_title":"Macejkovic - Johnson","course_number":51417,"instructor":"Keshaun Schumm MD","location":"3959 Jameson Divide","time":"2018-07-14T12:29:56.143Z","enrolled":22862,"book":"http://queenie.biz","course_url":"https://rico.biz"},{"course_title":"Hyatt Inc","course_number":73208,"instructor":"Dr. Ervin Mraz","location":"78116 Quigley Parkways","time":"2018-07-14T05:12:26.342Z","enrolled":78360,"book":"https://icie.net","course_url":"https://dale.com"},{"course_title":"Brown - Fisher","course_number":80984,"instructor":"Kaley Vandervort","location":"75368 Volkman Harbor","time":"2018-07-14T14:34:29.415Z","enrolled":5784,"book":"http://uriah.net","course_url":"https://napoleon.info"},{"course_title":"Rice - Koelpin","course_number":6684,"instructor":"Verla Gulgowski PhD","location":"17069 Nina Canyon","time":"2018-07-14T19:26:54.844Z","enrolled":77486,"book":"https://stuart.net","course_url":"https://samantha.net"},{"course_title":"Howe Inc","course_number":22724,"instructor":"Mitchel Harvey","location":"7743 Berge Shoals","time":"2018-07-14T16:07:26.459Z","enrolled":33775,"book":"https://brook.biz","course_url":"http://leila.com"},{"course_title":"Hartmann Inc","course_number":23068,"instructor":"Jose Braun","location":"3789 Clarissa Run","time":"2018-07-13T23:37:45.537Z","enrolled":71153,"book":"https://rodolfo.org","course_url":"https://kasandra.net"},{"course_title":"Wiza - Green","course_number":75305,"instructor":"Patrick Kub","location":"38527 Nader Well","time":"2018-07-14T09:42:01.622Z","enrolled":40786,"book":"http://kellie.com","course_url":"https://rudolph.net"},{"course_title":"Nitzsche - Schinner","course_number":19717,"instructor":"Eden Langosh","location":"697 Wisoky Loop","time":"2018-07-14T10:18:53.910Z","enrolled":33693,"book":"https://jamey.name","course_url":"http://bessie.info"},{"course_title":"Ullrich, Osinski and Tromp","course_number":97217,"instructor":"Terrance Boyer","location":"931 Doyle Falls","time":"2018-07-14T01:34:49.619Z","enrolled":67176,"book":"https://maximus.biz","course_url":"http://ruthe.org"},{"course_title":"Romaguera Group","course_number":28271,"instructor":"Pierre Bednar","location":"342 Monserrate Square","time":"2018-07-14T00:27:59.825Z","enrolled":82082,"book":"http://janet.org","course_url":"https://molly.biz"},{"course_title":"Rippin - Grant","course_number":75615,"instructor":"Meta McClure","location":"898 Walsh Forest","time":"2018-07-14T00:38:29.758Z","enrolled":48074,"book":"https://shaniya.name","course_url":"https://hank.name"},{"course_title":"Grimes Group","course_number":30372,"instructor":"Jocelyn Lindgren","location":"8020 Yost Bypass","time":"2018-07-14T05:37:50.568Z","enrolled":25893,"book":"https://arnold.com","course_url":"http://samantha.info"},{"course_title":"Will, Klocko and Larson","course_number":3658,"instructor":"Easton Satterfield Jr.","location":"2932 Tillman Garden","time":"2018-07-13T23:23:21.041Z","enrolled":4504,"book":"http://fredrick.info","course_url":"http://theresia.org"},{"course_title":"Ortiz LLC","course_number":12710,"instructor":"Barrett Hilll","location":"4115 Sammy Mountains","time":"2018-07-13T23:41:10.603Z","enrolled":12177,"book":"http://izaiah.com","course_url":"http://blanca.name"},{"course_title":"Wolf - Buckridge","course_number":77423,"instructor":"Karine Schulist","location":"5859 Crona Plaza","time":"2018-07-14T06:47:33.148Z","enrolled":93015,"book":"https://makenna.info","course_url":"http://earline.net"},{"course_title":"Mertz - Boyer","course_number":2777,"instructor":"Baby Brown II","location":"8499 Sonia Crossing","time":"2018-07-14T17:33:48.985Z","enrolled":62383,"book":"http://adrien.com","course_url":"http://ephraim.org"},{"course_title":"Rippin Inc","course_number":46407,"instructor":"Delilah Mraz","location":"6639 Ayana Key","time":"2018-07-14T10:33:28.525Z","enrolled":59455,"book":"http://fiona.info","course_url":"https://aditya.name"},{"course_title":"Hermann - O'Reilly","course_number":45727,"instructor":"Levi Greenholt","location":"1797 Glover Rue","time":"2018-07-14T08:13:55.820Z","enrolled":78991,"book":"https://raymundo.org","course_url":"http://ryley.info"},{"course_title":"Ziemann, Hahn and Hodkiewicz","course_number":98698,"instructor":"Kevon Zulauf","location":"0507 Weimann Rapid","time":"2018-07-14T16:53:21.179Z","enrolled":92093,"book":"http://pietro.org","course_url":"https://patience.info"},{"course_title":"Bashirian - Thiel","course_number":16021,"instructor":"Arno Huel","location":"10005 Green Parkways","time":"2018-07-14T10:17:15.283Z","enrolled":85728,"book":"https://kailyn.name","course_url":"http://maria.biz"},{"course_title":"Steuber and Sons","course_number":48520,"instructor":"Tito Gerlach","location":"616 Brianne Hollow","time":"2018-07-14T06:30:32.566Z","enrolled":95005,"book":"http://wilford.com","course_url":"https://annabel.name"},{"course_title":"Lesch LLC","course_number":14536,"instructor":"Mr. Onie Nader","location":"5722 Kellie Avenue","time":"2018-07-14T01:42:13.909Z","enrolled":66929,"book":"https://wade.name","course_url":"http://katelin.biz"},{"course_title":"Goyette - Heller","course_number":34002,"instructor":"Luis Heller","location":"3541 Suzanne Light","time":"2018-07-14T23:04:02.911Z","enrolled":20091,"book":"https://rodrick.com","course_url":"https://august.info"},{"course_title":"Bosco LLC","course_number":64710,"instructor":"Flossie Brakus","location":"2749 Deja Park","time":"2018-07-14T20:28:07.671Z","enrolled":26994,"book":"http://tate.com","course_url":"https://giovanni.info"},{"course_title":"Wehner Group","course_number":17605,"instructor":"Freeman Ortiz","location":"0819 Rupert Hollow","time":"2018-07-13T23:19:41.421Z","enrolled":12924,"book":"http://claudia.com","course_url":"http://jermey.net"},{"course_title":"Crooks - Upton","course_number":27153,"instructor":"Delia Frami","location":"7813 MacGyver Road","time":"2018-07-14T15:13:55.067Z","enrolled":15106,"book":"https://catalina.org","course_url":"https://rollin.org"},{"course_title":"Kerluke Inc","course_number":90305,"instructor":"Ryley Roob","location":"87532 Kristy Views","time":"2018-07-14T04:08:03.809Z","enrolled":93444,"book":"https://emelie.name","course_url":"https://jerel.biz"},{"course_title":"Turcotte LLC","course_number":7587,"instructor":"Jaylen Parisian","location":"1404 Carolyn Alley","time":"2018-07-14T14:20:24.075Z","enrolled":21725,"book":"http://khalil.com","course_url":"http://abdiel.biz"},{"course_title":"Yost, Steuber and Ziemann","course_number":52680,"instructor":"Clovis Kunde","location":"577 Hulda Station","time":"2018-07-14T01:18:34.396Z","enrolled":95209,"book":"https://kevon.com","course_url":"http://cesar.info"},{"course_title":"Halvorson, Frami and Runolfsson","course_number":77941,"instructor":"Winston Larkin","location":"90445 Lesch Ridge","time":"2018-07-14T07:21:24.333Z","enrolled":41160,"book":"http://saige.com","course_url":"https://sophie.name"},{"course_title":"Bergnaum, Gulgowski and Zemlak","course_number":10453,"instructor":"Keshawn Quigley","location":"38838 Brekke Green","time":"2018-07-14T20:16:47.414Z","enrolled":26086,"book":"http://tressie.name","course_url":"http://chaim.biz"},{"course_title":"Toy Group","course_number":50634,"instructor":"Monserrat Gislason","location":"67782 Lebsack Inlet","time":"2018-07-14T02:42:32.391Z","enrolled":13089,"book":"https://erick.org","course_url":"http://alvena.info"},{"course_title":"Cassin, Keeling and Mayert","course_number":862,"instructor":"Bell Deckow","location":"3507 D'angelo Fords","time":"2018-07-14T04:47:22.146Z","enrolled":90430,"book":"https://madisyn.info","course_url":"http://mable.info"},{"course_title":"Boehm - Anderson","course_number":68597,"instructor":"Ms. Haskell Schmeler","location":"642 Rippin Walks","time":"2018-07-14T06:32:46.713Z","enrolled":55164,"book":"https://einar.net","course_url":"https://kasandra.biz"},{"course_title":"Koelpin - Pfeffer","course_number":27926,"instructor":"Tevin Hermann","location":"80077 Maribel Radial","time":"2018-07-14T22:45:34.477Z","enrolled":68440,"book":"http://taurean.name","course_url":"http://gavin.info"},{"course_title":"Stamm, Hettinger and McKenzie","course_number":86222,"instructor":"Kassandra Borer I","location":"2489 Parker Lock","time":"2018-07-14T04:15:50.351Z","enrolled":76773,"book":"https://taurean.name","course_url":"https://bernadette.net"},{"course_title":"Nolan, Beer and Denesik","course_number":93233,"instructor":"Miss Bella Stiedemann","location":"5610 Ward Square","time":"2018-07-14T02:13:18.365Z","enrolled":70498,"book":"http://dolores.info","course_url":"http://patricia.info"},{"course_title":"Upton, Vandervort and Witting","course_number":74286,"instructor":"Dawson Stanton","location":"40996 Leffler Drive","time":"2018-07-14T18:23:53.263Z","enrolled":30250,"book":"https://kassandra.org","course_url":"https://maribel.org"},{"course_title":"Hackett LLC","course_number":62722,"instructor":"Ruthe Swift DVM","location":"70697 Leuschke Trail","time":"2018-07-14T05:34:37.174Z","enrolled":1260,"book":"https://jeffery.com","course_url":"https://jane.net"},{"course_title":"Champlin Inc","course_number":37694,"instructor":"Emmie Shanahan","location":"33611 Kara Grove","time":"2018-07-14T07:20:03.485Z","enrolled":52915,"book":"http://ana.info","course_url":"http://laura.com"},{"course_title":"Schuppe LLC","course_number":41389,"instructor":"Maryam Mills","location":"741 Hamill Throughway","time":"2018-07-14T12:30:58.090Z","enrolled":52886,"book":"http://edmund.org","course_url":"http://deanna.net"},{"course_title":"Howe - Torphy","course_number":82763,"instructor":"Dominic Yost","location":"681 Maggie Mission","time":"2018-07-14T00:22:12.449Z","enrolled":67089,"book":"https://alverta.org","course_url":"https://patsy.org"},{"course_title":"Homenick - McLaughlin","course_number":20447,"instructor":"Rene Botsford","location":"4691 Celine Drive","time":"2018-07-14T14:47:14.405Z","enrolled":95301,"book":"https://maci.org","course_url":"http://brent.biz"},{"course_title":"Kulas - Dickinson","course_number":8477,"instructor":"Noel Grady","location":"750 Langosh Ferry","time":"2018-07-14T01:25:31.974Z","enrolled":95887,"book":"https://kaela.info","course_url":"https://zakary.net"},{"course_title":"Tillman, Kohler and Eichmann","course_number":97727,"instructor":"Luisa Ritchie","location":"0931 Courtney Squares","time":"2018-07-14T01:23:13.712Z","enrolled":50716,"book":"https://roberta.net","course_url":"https://berta.info"},{"course_title":"Yundt - Crooks","course_number":87641,"instructor":"Onie Fahey","location":"79765 Aniyah Road","time":"2018-07-14T00:16:15.815Z","enrolled":78344,"book":"http://theresa.biz","course_url":"http://quinton.com"},{"course_title":"Nicolas - Conroy","course_number":18786,"instructor":"Herman Koss III","location":"9260 O'Kon Path","time":"2018-07-14T22:36:05.642Z","enrolled":14547,"book":"http://nathanial.info","course_url":"https://orpha.info"},{"course_title":"Waelchi - Von","course_number":51112,"instructor":"Caroline Oberbrunner DVM","location":"19905 Lauretta Skyway","time":"2018-07-14T12:34:16.891Z","enrolled":71596,"book":"http://brenden.org","course_url":"http://adriel.net"},{"course_title":"Ondricka - Schaden","course_number":41881,"instructor":"Lance Hudson","location":"597 Ova Land","time":"2018-07-14T12:37:57.900Z","enrolled":37501,"book":"http://warren.biz","course_url":"https://amelia.info"},{"course_title":"Davis Group","course_number":9796,"instructor":"Isom Kessler","location":"2098 Ashley View","time":"2018-07-14T14:29:05.341Z","enrolled":60757,"book":"https://angela.info","course_url":"http://alisha.biz"},{"course_title":"Simonis - Crooks","course_number":90121,"instructor":"Julien Ruecker","location":"885 Volkman Key","time":"2018-07-14T18:09:22.446Z","enrolled":8499,"book":"https://ofelia.net","course_url":"https://cordell.com"},{"course_title":"Kunze LLC","course_number":89986,"instructor":"Hannah Stoltenberg","location":"734 Lamont Manors","time":"2018-07-14T00:34:28.881Z","enrolled":30532,"book":"https://jalon.net","course_url":"http://gage.com"},{"course_title":"Nolan Group","course_number":62423,"instructor":"Cristian Roberts","location":"5526 Christ Mount","time":"2018-07-14T18:47:46.116Z","enrolled":18522,"book":"https://junior.org","course_url":"http://eliza.name"},{"course_title":"Parisian Inc","course_number":23116,"instructor":"Miss Roy Kilback","location":"2442 Howard Place","time":"2018-07-14T01:04:20.488Z","enrolled":13443,"book":"http://myrna.com","course_url":"https://liliane.org"},{"course_title":"Leuschke, Willms and Bernier","course_number":34397,"instructor":"Carlee Murphy","location":"986 Rempel Green","time":"2018-07-13T23:53:55.024Z","enrolled":66111,"book":"http://toby.org","course_url":"https://eudora.name"},{"course_title":"Dooley - Stamm","course_number":85234,"instructor":"Reid Thompson","location":"03725 Hodkiewicz Prairie","time":"2018-07-14T03:23:03.999Z","enrolled":28148,"book":"http://shyanne.name","course_url":"http://jerry.name"},{"course_title":"Ziemann LLC","course_number":30979,"instructor":"Whitney O'Kon","location":"902 Effertz Plaza","time":"2018-07-14T15:39:39.025Z","enrolled":45658,"book":"http://luisa.biz","course_url":"https://bernard.com"},{"course_title":"Armstrong Inc","course_number":91592,"instructor":"Adah Altenwerth","location":"69971 Bernhard Ways","time":"2018-07-14T09:15:09.989Z","enrolled":31454,"book":"https://tessie.name","course_url":"https://xavier.name"},{"course_title":"Zboncak, Kautzer and Adams","course_number":53073,"instructor":"Ciara Green Sr.","location":"8084 Reichel Well","time":"2018-07-14T08:52:37.364Z","enrolled":22105,"book":"https://eva.name","course_url":"http://richmond.name"},{"course_title":"Schmitt Inc","course_number":24242,"instructor":"Neil Nitzsche","location":"00337 Ozella Skyway","time":"2018-07-14T06:00:38.322Z","enrolled":63909,"book":"https://ima.com","course_url":"https://diamond.info"},{"course_title":"Frami, Turner and Senger","course_number":22167,"instructor":"Mrs. Colt Schiller","location":"933 Cristopher Springs","time":"2018-07-14T08:12:05.236Z","enrolled":18790,"book":"http://kathryne.name","course_url":"http://jennyfer.net"},{"course_title":"MacGyver Group","course_number":97980,"instructor":"Jarrod Herzog","location":"386 Wisozk Burgs","time":"2018-07-14T10:38:29.368Z","enrolled":47964,"book":"https://meaghan.biz","course_url":"http://magnus.info"},{"course_title":"Schamberger, Frami and Gerhold","course_number":87709,"instructor":"Penelope Conn","location":"55896 Zulauf Course","time":"2018-07-14T09:21:31.745Z","enrolled":9004,"book":"https://jackie.name","course_url":"http://jennyfer.net"},{"course_title":"Beier, Frami and Crist","course_number":65445,"instructor":"Lucas Dare","location":"783 Dena Estate","time":"2018-07-14T18:30:55.728Z","enrolled":7605,"book":"http://carli.org","course_url":"https://erica.net"},{"course_title":"Rau - Turcotte","course_number":74422,"instructor":"Ted Schamberger","location":"072 Roob Terrace","time":"2018-07-14T06:48:24.371Z","enrolled":91278,"book":"https://sydney.name","course_url":"http://antonette.org"},{"course_title":"McKenzie - Russel","course_number":43455,"instructor":"Elsa Braun Jr.","location":"274 Wiley Loop","time":"2018-07-14T15:51:19.762Z","enrolled":99160,"book":"http://pierce.biz","course_url":"http://mafalda.biz"},{"course_title":"Zboncak - Braun","course_number":81754,"instructor":"Ariel Metz","location":"9320 Beier Station","time":"2018-07-14T14:42:00.570Z","enrolled":23921,"book":"https://ryley.org","course_url":"https://gage.org"},{"course_title":"Champlin, McDermott and Denesik","course_number":35499,"instructor":"Roderick Lebsack","location":"07975 Russel Mountain","time":"2018-07-14T05:01:22.967Z","enrolled":44535,"book":"http://ernesto.info","course_url":"http://vivien.biz"},{"course_title":"Fay, Mills and Nitzsche","course_number":11102,"instructor":"Hillary Torp","location":"6691 Kiana Tunnel","time":"2018-07-14T22:15:46.649Z","enrolled":12414,"book":"https://ruth.org","course_url":"http://mekhi.name"},{"course_title":"Collins - Conroy","course_number":63701,"instructor":"Brett Weimann","location":"66647 Grant Village","time":"2018-07-14T15:18:48.763Z","enrolled":71177,"book":"http://kara.org","course_url":"https://augustus.info"},{"course_title":"Mraz, Stoltenberg and Barrows","course_number":64328,"instructor":"Mrs. Keith Wiegand","location":"00235 Hank Turnpike","time":"2018-07-14T16:15:12.209Z","enrolled":26035,"book":"http://oscar.org","course_url":"http://linda.net"},{"course_title":"Brown Inc","course_number":70656,"instructor":"Jannie Huels","location":"0568 Issac Highway","time":"2018-07-14T13:22:40.511Z","enrolled":6073,"book":"https://khalid.biz","course_url":"http://drew.biz"},{"course_title":"Weimann, Bashirian and Thiel","course_number":86175,"instructor":"Charlene Anderson","location":"269 Edgar Bridge","time":"2018-07-14T04:31:29.898Z","enrolled":24465,"book":"http://sherwood.biz","course_url":"http://jaylen.net"},{"course_title":"Jast - Ferry","course_number":51974,"instructor":"Amir Hoeger","location":"74623 Kuphal Ridge","time":"2018-07-14T04:17:13.592Z","enrolled":27734,"book":"https://micheal.biz","course_url":"http://beaulah.org"},{"course_title":"Konopelski - Tromp","course_number":41727,"instructor":"Delphia Bahringer","location":"5155 Malcolm Prairie","time":"2018-07-14T13:15:16.097Z","enrolled":49340,"book":"https://ricky.biz","course_url":"http://betsy.net"},{"course_title":"Rohan - Lueilwitz","course_number":84062,"instructor":"Nikita Bins","location":"69212 Adams Mall","time":"2018-07-14T20:47:19.379Z","enrolled":41731,"book":"https://terrell.com","course_url":"https://edythe.org"},{"course_title":"Conn - Skiles","course_number":8836,"instructor":"Joanie Pfannerstill","location":"578 Marquise Trail","time":"2018-07-14T22:35:38.078Z","enrolled":77082,"book":"https://gianni.biz","course_url":"http://elton.com"},{"course_title":"Wuckert, Monahan and Glover","course_number":46255,"instructor":"Jayme Bode","location":"6906 Blick Mountains","time":"2018-07-14T18:40:14.019Z","enrolled":76522,"book":"https://gwendolyn.org","course_url":"https://joesph.info"},{"course_title":"Witting LLC","course_number":99414,"instructor":"Quinten Kuhn","location":"69382 Elisha Roads","time":"2018-07-14T17:06:04.969Z","enrolled":8546,"book":"http://estel.com","course_url":"https://charley.com"},{"course_title":"Mertz, Renner and Kunde","course_number":8259,"instructor":"Chelsey Brakus","location":"439 Cristopher Meadows","time":"2018-07-14T20:29:32.643Z","enrolled":73863,"book":"https://cordell.info","course_url":"https://leila.org"},{"course_title":"Mante, O'Hara and Jones","course_number":43147,"instructor":"Billy Schmitt","location":"41205 Swift Point","time":"2018-07-14T21:42:05.578Z","enrolled":95927,"book":"http://alba.name","course_url":"https://keven.net"},{"course_title":"Barrows, Auer and Little","course_number":67467,"instructor":"Miss Ray Gibson","location":"4537 Gulgowski Cove","time":"2018-07-14T20:49:40.739Z","enrolled":86021,"book":"https://sophie.org","course_url":"https://beatrice.com"},{"course_title":"Bauch - Stiedemann","course_number":10904,"instructor":"Claudine Bruen","location":"2425 Arielle Circle","time":"2018-07-14T10:24:03.034Z","enrolled":73377,"book":"http://otilia.net","course_url":"https://wilmer.name"},{"course_title":"Kris, Zieme and Terry","course_number":72281,"instructor":"Blake Spinka PhD","location":"015 Brain Station","time":"2018-07-14T02:56:33.396Z","enrolled":78513,"book":"http://earline.name","course_url":"https://remington.biz"},{"course_title":"Mosciski - Kassulke","course_number":12972,"instructor":"Monroe Barton Jr.","location":"05479 Kamren Plains","time":"2018-07-14T00:25:54.352Z","enrolled":58306,"book":"https://turner.biz","course_url":"https://dax.biz"},{"course_title":"Bogisich Inc","course_number":67167,"instructor":"Roderick Emard","location":"440 Braun Loaf","time":"2018-07-14T03:10:57.752Z","enrolled":37580,"book":"http://jamel.org","course_url":"https://karli.com"},{"course_title":"Corwin - Deckow","course_number":78816,"instructor":"Lisa Maggio DVM","location":"96794 Dibbert Roads","time":"2018-07-14T08:17:10.996Z","enrolled":54579,"book":"http://magdalen.biz","course_url":"https://breanna.net"},{"course_title":"Gutkowski, Kling and Shields","course_number":71788,"instructor":"Alfredo Lowe","location":"9333 Bobbie Avenue","time":"2018-07-14T20:15:16.920Z","enrolled":32749,"book":"https://leila.info","course_url":"https://ignatius.org"},{"course_title":"Torp, Upton and Weissnat","course_number":19276,"instructor":"Alfred Pfannerstill","location":"838 Kemmer Groves","time":"2018-07-14T01:43:50.400Z","enrolled":44117,"book":"http://coleman.biz","course_url":"http://leola.biz"},{"course_title":"Hudson Group","course_number":30487,"instructor":"Shawna Oberbrunner","location":"43853 Layla Ranch","time":"2018-07-14T12:31:36.539Z","enrolled":33892,"book":"https://grady.name","course_url":"http://angus.org"},{"course_title":"Thiel LLC","course_number":32668,"instructor":"Mark Jones","location":"171 Felicity Plain","time":"2018-07-14T02:15:06.955Z","enrolled":91441,"book":"https://nikolas.info","course_url":"https://raymond.info"},{"course_title":"Fadel, Lind and Lang","course_number":50364,"instructor":"Enoch McKenzie DVM","location":"605 Clovis Bypass","time":"2018-07-14T16:34:56.229Z","enrolled":24677,"book":"http://keegan.com","course_url":"http://modesto.org"},{"course_title":"Kling - Adams","course_number":5149,"instructor":"Jade Wuckert","location":"66193 Fatima Bridge","time":"2018-07-14T20:22:46.558Z","enrolled":88300,"book":"http://birdie.org","course_url":"http://garret.net"},{"course_title":"Stanton - Littel","course_number":36683,"instructor":"Reyna Yost","location":"554 Feest Track","time":"2018-07-14T21:14:19.181Z","enrolled":27002,"book":"https://jessy.net","course_url":"http://rosa.org"},{"course_title":"Hackett Group","course_number":86724,"instructor":"Uriah Feil","location":"180 Becker Ports","time":"2018-07-14T16:59:49.827Z","enrolled":4307,"book":"https://yasmeen.name","course_url":"http://lavonne.net"},{"course_title":"Hirthe, D'Amore and Mills","course_number":24662,"instructor":"Nathan Spinka","location":"53756 Murl Burgs","time":"2018-07-14T00:15:10.868Z","enrolled":77594,"book":"http://katarina.name","course_url":"http://wilhelm.com"},{"course_title":"Dach - Jacobson","course_number":57204,"instructor":"Cortez White","location":"56268 Federico Track","time":"2018-07-14T11:22:20.688Z","enrolled":64250,"book":"https://okey.biz","course_url":"https://deanna.org"},{"course_title":"Schulist Group","course_number":74324,"instructor":"Clovis Sporer","location":"07433 Misael Trace","time":"2018-07-14T09:09:02.096Z","enrolled":27092,"book":"https://payton.org","course_url":"http://gaylord.info"},{"course_title":"Dicki - Turner","course_number":14594,"instructor":"Connor Stehr","location":"612 Feil Land","time":"2018-07-14T00:57:20.435Z","enrolled":72382,"book":"https://janiya.name","course_url":"http://sandrine.org"},{"course_title":"Baumbach, Friesen and Stehr","course_number":31585,"instructor":"Valentine Deckow","location":"397 Turcotte Trail","time":"2018-07-14T15:13:33.303Z","enrolled":50946,"book":"https://maximus.com","course_url":"https://madeline.name"},{"course_title":"Stanton, Parisian and Dickinson","course_number":2571,"instructor":"Mrs. Evelyn Dibbert","location":"0567 Gibson Path","time":"2018-07-14T02:25:42.526Z","enrolled":51295,"book":"http://sabryna.biz","course_url":"https://jettie.org"},{"course_title":"Deckow, Casper and Kessler","course_number":11738,"instructor":"Mrs. Axel Kirlin","location":"1362 Ruby Course","time":"2018-07-14T05:56:25.056Z","enrolled":37461,"book":"http://ezekiel.info","course_url":"https://harvey.net"},{"course_title":"Dickens, Harris and Witting","course_number":87264,"instructor":"Mabelle Powlowski MD","location":"66244 Hilma Knoll","time":"2018-07-14T04:41:04.576Z","enrolled":3009,"book":"https://jacquelyn.info","course_url":"http://deshawn.biz"},{"course_title":"Kreiger Inc","course_number":70595,"instructor":"Bret Lowe","location":"0383 Mazie Unions","time":"2018-07-14T03:14:19.576Z","enrolled":34644,"book":"http://caleigh.info","course_url":"http://jaylan.name"},{"course_title":"Dooley LLC","course_number":6070,"instructor":"Ivory Stracke","location":"1614 Veum Viaduct","time":"2018-07-14T01:19:54.200Z","enrolled":40086,"book":"http://nikko.info","course_url":"http://coty.org"},{"course_title":"Turcotte - Dach","course_number":43827,"instructor":"Elizabeth Jakubowski","location":"021 Treva Rapids","time":"2018-07-14T17:57:37.031Z","enrolled":74027,"book":"https://sigurd.com","course_url":"http://oma.name"},{"course_title":"Feil Inc","course_number":87909,"instructor":"Ellis Little","location":"274 Hessel Shore","time":"2018-07-14T05:11:12.647Z","enrolled":87496,"book":"http://lourdes.com","course_url":"https://noe.name"},{"course_title":"Wisoky, Macejkovic and Lebsack","course_number":34873,"instructor":"Zelda Senger","location":"6143 Cloyd Pine","time":"2018-07-14T21:10:52.266Z","enrolled":78735,"book":"http://donnie.net","course_url":"https://elmore.name"},{"course_title":"O'Hara, Dickinson and Kohler","course_number":46868,"instructor":"Owen Kessler Jr.","location":"6130 Halvorson Meadows","time":"2018-07-14T22:23:39.954Z","enrolled":28112,"book":"http://shana.biz","course_url":"https://ethyl.info"},{"course_title":"Witting - Kerluke","course_number":66624,"instructor":"Mr. Emerson Bernhard","location":"085 Bergstrom Common","time":"2018-07-14T04:59:36.496Z","enrolled":18983,"book":"https://saige.org","course_url":"https://bianka.com"},{"course_title":"Reichert LLC","course_number":84586,"instructor":"Deshawn Fritsch","location":"53372 Jedidiah Knolls","time":"2018-07-14T21:48:00.357Z","enrolled":85820,"book":"https://celine.name","course_url":"https://sandra.net"},{"course_title":"Strosin and Sons","course_number":4053,"instructor":"Bryce Kutch","location":"89786 Horacio Fort","time":"2018-07-14T04:32:59.489Z","enrolled":79955,"book":"http://mina.info","course_url":"https://lyla.net"},{"course_title":"Gorczany - Krajcik","course_number":58011,"instructor":"Miss Sarina Klocko","location":"398 Heathcote Walk","time":"2018-07-14T07:38:20.384Z","enrolled":15016,"book":"http://kasey.info","course_url":"https://vida.com"},{"course_title":"Marquardt, Lindgren and Gorczany","course_number":2835,"instructor":"Rico Greenfelder V","location":"215 Jewel Road","time":"2018-07-14T02:37:38.081Z","enrolled":42748,"book":"https://lauretta.com","course_url":"http://devyn.name"},{"course_title":"Abbott and Sons","course_number":48938,"instructor":"Victor Dietrich","location":"574 Laila Station","time":"2018-07-14T00:17:43.513Z","enrolled":44661,"book":"https://francesco.name","course_url":"http://kamille.info"},{"course_title":"Thiel and Sons","course_number":32116,"instructor":"Maureen Heller","location":"9645 Maverick Plaza","time":"2018-07-14T21:56:16.711Z","enrolled":68539,"book":"https://garth.org","course_url":"http://sophia.name"},{"course_title":"Anderson, Wolf and Lemke","course_number":48893,"instructor":"Valentine Olson","location":"8324 O'Kon Pike","time":"2018-07-14T02:15:16.364Z","enrolled":96492,"book":"https://dallin.org","course_url":"https://shane.org"},{"course_title":"Trantow, Kuphal and Doyle","course_number":90170,"instructor":"Alessia White","location":"123 Hahn Fort","time":"2018-07-14T15:25:36.012Z","enrolled":26266,"book":"http://bell.info","course_url":"https://anibal.org"},{"course_title":"Blick - Herzog","course_number":45087,"instructor":"Noble Fisher","location":"73891 Harvey Throughway","time":"2018-07-14T03:28:44.341Z","enrolled":58905,"book":"http://lora.info","course_url":"http://yolanda.net"},{"course_title":"Schinner Group","course_number":43240,"instructor":"Mr. Santa Stamm","location":"5671 Margarete Crossroad","time":"2018-07-14T05:43:29.772Z","enrolled":39664,"book":"http://nia.biz","course_url":"http://rocky.info"},{"course_title":"Romaguera Inc","course_number":48690,"instructor":"Wilma Satterfield IV","location":"8377 Kilback Throughway","time":"2018-07-14T10:02:05.553Z","enrolled":95535,"book":"http://esmeralda.com","course_url":"https://araceli.org"},{"course_title":"Moore - Christiansen","course_number":18508,"instructor":"Vivian Kemmer","location":"14962 Watsica Light","time":"2018-07-14T13:37:13.361Z","enrolled":69863,"book":"https://aliya.biz","course_url":"http://benjamin.name"},{"course_title":"Hamill - Lind","course_number":89760,"instructor":"Cora Herman","location":"6137 Gibson Ports","time":"2018-07-14T23:05:05.206Z","enrolled":79384,"book":"http://brayan.net","course_url":"http://brant.org"},{"course_title":"Wintheiser Inc","course_number":67373,"instructor":"Norene Williamson","location":"5899 Isaac Club","time":"2018-07-14T05:05:51.317Z","enrolled":18158,"book":"http://asha.org","course_url":"http://elmer.net"},{"course_title":"Herzog - Goyette","course_number":12409,"instructor":"Luis Predovic","location":"59133 Howell Passage","time":"2018-07-14T16:41:20.591Z","enrolled":65358,"book":"http://lenna.name","course_url":"http://tracy.biz"},{"course_title":"Schumm, Quigley and Sauer","course_number":40706,"instructor":"Shane Wunsch","location":"41076 Lacey Courts","time":"2018-07-14T04:48:27.608Z","enrolled":11503,"book":"http://rowena.biz","course_url":"https://vern.org"},{"course_title":"VonRueden, Franecki and Nikolaus","course_number":82756,"instructor":"Leon Moen","location":"33270 Kelton Plains","time":"2018-07-14T15:35:38.766Z","enrolled":18778,"book":"https://velva.info","course_url":"http://murl.com"},{"course_title":"Dickens and Sons","course_number":42173,"instructor":"Milford Predovic","location":"2702 Kub Grove","time":"2018-07-14T22:24:17.068Z","enrolled":36398,"book":"http://ibrahim.biz","course_url":"https://jermaine.com"},{"course_title":"Armstrong Group","course_number":45923,"instructor":"Theron Towne","location":"12833 Felix Via","time":"2018-07-14T12:34:27.268Z","enrolled":95480,"book":"https://consuelo.info","course_url":"http://talon.info"},{"course_title":"Walter LLC","course_number":69945,"instructor":"Mervin Marks","location":"7365 Jerrod Square","time":"2018-07-14T17:16:33.646Z","enrolled":16008,"book":"https://frederique.net","course_url":"http://jensen.com"},{"course_title":"Hackett Inc","course_number":63758,"instructor":"Eriberto Johnson","location":"4213 Pfannerstill Shoals","time":"2018-07-14T00:20:55.537Z","enrolled":33326,"book":"http://allie.org","course_url":"http://estevan.biz"},{"course_title":"Nitzsche - Bednar","course_number":85017,"instructor":"Jude Leffler","location":"26161 Rod Alley","time":"2018-07-14T06:50:50.800Z","enrolled":60566,"book":"http://sincere.info","course_url":"http://colin.com"},{"course_title":"Balistreri and Sons","course_number":13860,"instructor":"Corine Grimes","location":"6760 Schinner Islands","time":"2018-07-14T14:04:39.359Z","enrolled":30090,"book":"https://zackery.org","course_url":"https://thomas.name"},{"course_title":"Christiansen - Hintz","course_number":19309,"instructor":"Margaret Sanford","location":"150 Chandler Mountains","time":"2018-07-14T22:42:29.808Z","enrolled":41091,"book":"https://mertie.com","course_url":"https://leif.info"},{"course_title":"Stracke - Kessler","course_number":16952,"instructor":"Ruthie Halvorson","location":"12280 Jena Radial","time":"2018-07-14T21:44:13.287Z","enrolled":21455,"book":"https://jaylon.name","course_url":"http://berenice.org"},{"course_title":"Barrows - Hauck","course_number":90017,"instructor":"Dane Leffler","location":"639 Okuneva Forges","time":"2018-07-14T06:43:19.749Z","enrolled":59477,"book":"http://euna.info","course_url":"https://carmine.biz"},{"course_title":"Ritchie, Hills and Mante","course_number":85009,"instructor":"Shyann Schneider","location":"25027 Beer Center","time":"2018-07-14T00:15:03.052Z","enrolled":35271,"book":"https://francesco.name","course_url":"http://beau.info"},{"course_title":"Leannon, Gaylord and Durgan","course_number":15117,"instructor":"Pearline Harris","location":"4991 Jast Highway","time":"2018-07-14T14:52:39.701Z","enrolled":35536,"book":"http://wilford.info","course_url":"https://jarret.net"},{"course_title":"Skiles Inc","course_number":29453,"instructor":"Neva Pagac","location":"900 Brekke Knoll","time":"2018-07-14T03:17:45.403Z","enrolled":60699,"book":"https://trudie.com","course_url":"http://sadie.com"},{"course_title":"Rolfson Group","course_number":37378,"instructor":"Marcelina Rempel MD","location":"39532 Jordyn Wall","time":"2018-07-14T16:50:13.167Z","enrolled":64081,"book":"https://jaleel.org","course_url":"https://marvin.org"},{"course_title":"Muller, Mayer and Douglas","course_number":82243,"instructor":"Alvena O'Reilly","location":"1944 Clement Shoals","time":"2018-07-14T02:13:12.725Z","enrolled":57070,"book":"https://will.com","course_url":"http://shanel.info"},{"course_title":"Carter, Roob and Deckow","course_number":31639,"instructor":"Ian Franecki","location":"01037 Boyle Well","time":"2018-07-13T23:33:59.049Z","enrolled":46098,"book":"http://harvey.biz","course_url":"http://tyree.net"},{"course_title":"Harvey - Gerhold","course_number":87237,"instructor":"Madison Stroman","location":"18773 Lubowitz Street","time":"2018-07-14T17:14:02.801Z","enrolled":1418,"book":"https://enos.name","course_url":"http://asha.net"},{"course_title":"Abshire - Jacobson","course_number":64253,"instructor":"Pete Volkman","location":"746 Sarina Divide","time":"2018-07-14T01:26:26.461Z","enrolled":88798,"book":"http://miles.net","course_url":"https://yoshiko.biz"},{"course_title":"Bernhard, Mayert and Jacobi","course_number":88854,"instructor":"Gia Torphy","location":"72025 Braun Loaf","time":"2018-07-14T13:43:30.285Z","enrolled":89310,"book":"https://afton.info","course_url":"https://shanna.info"},{"course_title":"Parisian and Sons","course_number":86304,"instructor":"Bailee Tromp Sr.","location":"902 Aufderhar Ranch","time":"2018-07-14T03:16:39.515Z","enrolled":10788,"book":"https://madison.biz","course_url":"http://kylie.org"},{"course_title":"Kuhlman Group","course_number":97151,"instructor":"Baby Sauer","location":"363 Yazmin Throughway","time":"2018-07-14T20:49:34.442Z","enrolled":87900,"book":"http://miles.com","course_url":"https://waldo.info"},{"course_title":"Anderson - Rempel","course_number":61749,"instructor":"Mrs. Bobbie Ledner","location":"0942 Stokes Drives","time":"2018-07-14T18:59:38.065Z","enrolled":42843,"book":"http://ray.com","course_url":"http://terrance.biz"},{"course_title":"Boehm and Sons","course_number":57008,"instructor":"Casandra Aufderhar","location":"81873 Jerde Estate","time":"2018-07-14T08:41:03.494Z","enrolled":21821,"book":"http://jadyn.com","course_url":"https://branson.net"},{"course_title":"Tillman, Gottlieb and Carroll","course_number":53443,"instructor":"Deron Gaylord","location":"2929 Cummings Mountain","time":"2018-07-14T04:46:43.514Z","enrolled":85763,"book":"https://cody.biz","course_url":"https://anais.biz"},{"course_title":"Mohr - Collins","course_number":73886,"instructor":"Hyman Farrell","location":"369 Lilla Way","time":"2018-07-14T05:01:43.491Z","enrolled":35624,"book":"https://mattie.com","course_url":"https://kyleigh.org"},{"course_title":"Ruecker - Murazik","course_number":16762,"instructor":"Torrance Mills","location":"130 Johns Roads","time":"2018-07-14T21:39:39.671Z","enrolled":48711,"book":"http://frank.biz","course_url":"https://eldred.info"},{"course_title":"Rice, Langworth and Tillman","course_number":61418,"instructor":"Zachery Bartell","location":"0568 Schinner Station","time":"2018-07-14T16:09:36.855Z","enrolled":10954,"book":"https://jaiden.info","course_url":"https://casimir.com"},{"course_title":"Osinski and Sons","course_number":45097,"instructor":"Granville Stroman","location":"5866 Elvera Squares","time":"2018-07-14T13:14:10.341Z","enrolled":55381,"book":"http://kasandra.info","course_url":"http://sibyl.info"},{"course_title":"Yost - Schuppe","course_number":39838,"instructor":"Shanny Kshlerin II","location":"021 Abshire Mount","time":"2018-07-14T06:17:43.158Z","enrolled":36626,"book":"http://dagmar.biz","course_url":"http://heaven.biz"},{"course_title":"Schuster and Sons","course_number":82386,"instructor":"Merl Ebert","location":"176 Ellis Common","time":"2018-07-14T05:24:17.844Z","enrolled":53242,"book":"https://barry.net","course_url":"http://amber.biz"},{"course_title":"Russel - Langworth","course_number":44441,"instructor":"Dallas Casper","location":"399 Ocie Ramp","time":"2018-07-14T05:51:09.121Z","enrolled":86173,"book":"https://everette.org","course_url":"https://helmer.net"},{"course_title":"Daugherty and Sons","course_number":32710,"instructor":"Shyanne Cassin","location":"801 Denesik Dale","time":"2018-07-14T09:19:40.847Z","enrolled":80469,"book":"http://lelah.biz","course_url":"https://velda.info"},{"course_title":"Welch, Zulauf and Ziemann","course_number":22261,"instructor":"Lucio Bednar","location":"5011 Willow Brooks","time":"2018-07-14T14:34:33.418Z","enrolled":57993,"book":"https://ressie.org","course_url":"https://kali.net"},{"course_title":"Mante, Kilback and O'Hara","course_number":2906,"instructor":"Guadalupe Walker","location":"62188 Juanita Mountains","time":"2018-07-14T01:53:50.655Z","enrolled":88883,"book":"https://allison.info","course_url":"http://murphy.net"},{"course_title":"Strosin, Eichmann and O'Hara","course_number":54939,"instructor":"Jana McKenzie","location":"2850 Rory Glens","time":"2018-07-14T10:54:58.096Z","enrolled":35017,"book":"https://jordi.com","course_url":"https://demond.org"},{"course_title":"Herman - Conroy","course_number":9133,"instructor":"Dr. Jermain Buckridge","location":"257 Frami Unions","time":"2018-07-14T15:54:30.314Z","enrolled":47415,"book":"https://chase.name","course_url":"https://adolph.biz"},{"course_title":"Armstrong - Reilly","course_number":96096,"instructor":"Enola Keebler MD","location":"6066 Schoen Via","time":"2018-07-14T10:51:58.297Z","enrolled":33543,"book":"https://thora.biz","course_url":"https://gerald.com"},{"course_title":"Cremin - Kihn","course_number":8221,"instructor":"Chance Abbott","location":"3118 Schowalter Mews","time":"2018-07-14T21:55:36.073Z","enrolled":74481,"book":"http://noelia.com","course_url":"https://ashleigh.name"},{"course_title":"Tremblay, Ferry and Zulauf","course_number":99510,"instructor":"Kevon Carroll","location":"382 Joelle Greens","time":"2018-07-14T17:15:19.433Z","enrolled":80814,"book":"https://kenyatta.org","course_url":"https://jena.org"},{"course_title":"Durgan, O'Reilly and Kutch","course_number":40679,"instructor":"Jude Shanahan","location":"023 Wiza Cliff","time":"2018-07-14T01:03:31.069Z","enrolled":18094,"book":"https://dina.info","course_url":"https://garrett.name"},{"course_title":"Rodriguez - Simonis","course_number":78090,"instructor":"Charlotte Effertz","location":"39310 Jenkins Squares","time":"2018-07-14T14:07:43.669Z","enrolled":68457,"book":"http://curtis.info","course_url":"http://aiden.info"},{"course_title":"Lubowitz Group","course_number":41558,"instructor":"Kolby Dare","location":"377 Hansen Viaduct","time":"2018-07-14T10:36:16.917Z","enrolled":74667,"book":"http://isai.name","course_url":"http://rogelio.name"},{"course_title":"Powlowski Inc","course_number":60007,"instructor":"Melisa Keeling Sr.","location":"56380 West Rest","time":"2018-07-14T11:08:21.958Z","enrolled":28138,"book":"http://patience.name","course_url":"https://gavin.info"},{"course_title":"Greenholt Inc","course_number":57382,"instructor":"Randy Gutkowski","location":"50413 Gregory Curve","time":"2018-07-13T23:49:37.323Z","enrolled":75923,"book":"https://robert.info","course_url":"https://judson.net"},{"course_title":"Moore Group","course_number":85623,"instructor":"Eloy Beatty","location":"1187 Reina Point","time":"2018-07-14T12:21:23.959Z","enrolled":25456,"book":"https://shad.biz","course_url":"https://fidel.info"},{"course_title":"Spinka - Kertzmann","course_number":19861,"instructor":"Jaylon Braun V","location":"375 Leuschke Mount","time":"2018-07-14T03:22:56.637Z","enrolled":56589,"book":"https://viva.info","course_url":"http://sandrine.com"},{"course_title":"Gorczany and Sons","course_number":7000,"instructor":"Eliane Raynor","location":"2750 Stephan Terrace","time":"2018-07-14T06:39:26.862Z","enrolled":24714,"book":"http://seth.info","course_url":"http://joanie.net"},{"course_title":"Olson Group","course_number":6809,"instructor":"Ms. Taya Weber","location":"85189 Harvey Locks","time":"2018-07-14T06:14:09.092Z","enrolled":80450,"book":"https://vesta.name","course_url":"http://ola.net"},{"course_title":"Borer LLC","course_number":19747,"instructor":"Douglas Mohr","location":"94296 Lakin Knoll","time":"2018-07-14T01:12:31.126Z","enrolled":57973,"book":"http://raymundo.biz","course_url":"https://orville.info"},{"course_title":"Nolan and Sons","course_number":30744,"instructor":"Catalina Schuster","location":"333 Shields Rue","time":"2018-07-14T16:53:55.421Z","enrolled":28288,"book":"https://elnora.org","course_url":"http://jazmyn.com"},{"course_title":"Runolfsdottir, Zemlak and Wiegand","course_number":10394,"instructor":"Logan Parisian I","location":"60076 Lueilwitz Isle","time":"2018-07-14T00:23:10.522Z","enrolled":71531,"book":"https://finn.name","course_url":"http://precious.biz"},{"course_title":"Stanton, Torphy and Marks","course_number":99526,"instructor":"Precious Bradtke II","location":"4209 Lesch Mount","time":"2018-07-14T06:00:52.518Z","enrolled":34806,"book":"http://dortha.org","course_url":"https://celestino.name"},{"course_title":"Nitzsche, Walter and Stanton","course_number":97440,"instructor":"Jade Ryan","location":"4920 Kristin Overpass","time":"2018-07-14T03:33:52.759Z","enrolled":97149,"book":"http://landen.com","course_url":"https://brian.name"},{"course_title":"Schiller - Lowe","course_number":85128,"instructor":"Manley VonRueden","location":"298 Tyrique Parks","time":"2018-07-14T10:25:58.354Z","enrolled":46667,"book":"https://milton.net","course_url":"https://adrien.info"},{"course_title":"Harber LLC","course_number":24411,"instructor":"Mckenzie Crona","location":"49621 Eric Prairie","time":"2018-07-14T00:35:22.524Z","enrolled":50197,"book":"http://lavern.org","course_url":"https://scot.com"},{"course_title":"Maggio, Gorczany and Gerlach","course_number":79416,"instructor":"Gust Bode","location":"28555 Jewell Crest","time":"2018-07-14T06:00:14.001Z","enrolled":50271,"book":"https://kamron.net","course_url":"https://gabriella.org"},{"course_title":"Nader - Wisoky","course_number":22181,"instructor":"Mose Hessel IV","location":"59457 Walsh Square","time":"2018-07-14T10:13:22.791Z","enrolled":77800,"book":"https://kenyatta.com","course_url":"http://efren.biz"},{"course_title":"Von LLC","course_number":24570,"instructor":"Osbaldo Greenfelder","location":"1112 Johns Mission","time":"2018-07-14T18:02:27.738Z","enrolled":27869,"book":"http://brooklyn.com","course_url":"https://meagan.net"},{"course_title":"Funk - Will","course_number":57784,"instructor":"Adah Ferry V","location":"554 Jones Shoals","time":"2018-07-14T06:49:33.777Z","enrolled":25919,"book":"http://cesar.com","course_url":"https://vida.org"},{"course_title":"Upton and Sons","course_number":4882,"instructor":"Franz Sporer V","location":"88758 MacGyver Prairie","time":"2018-07-14T03:10:50.596Z","enrolled":68620,"book":"https://curtis.info","course_url":"http://syble.org"},{"course_title":"Wiegand Group","course_number":87470,"instructor":"Vernie Schuppe","location":"1887 Kianna Plains","time":"2018-07-14T21:17:25.396Z","enrolled":98991,"book":"http://oliver.org","course_url":"http://johanna.com"},{"course_title":"Torp, Huels and Windler","course_number":92151,"instructor":"Laron Okuneva Sr.","location":"364 McKenzie Springs","time":"2018-07-14T01:17:20.527Z","enrolled":6096,"book":"https://abelardo.org","course_url":"https://ismael.biz"},{"course_title":"Rolfson - Osinski","course_number":36004,"instructor":"Chris West DDS","location":"58344 West Meadows","time":"2018-07-14T02:54:22.314Z","enrolled":78649,"book":"https://elsie.org","course_url":"https://laila.org"},{"course_title":"Lebsack and Sons","course_number":15137,"instructor":"Terrell Roberts","location":"8416 Corbin Viaduct","time":"2018-07-14T00:27:15.889Z","enrolled":70876,"book":"http://vincent.org","course_url":"http://kristin.info"},{"course_title":"Reichert - Gaylord","course_number":54503,"instructor":"Garrett Nienow","location":"09280 Miller Port","time":"2018-07-14T20:15:24.085Z","enrolled":99668,"book":"http://vincenza.com","course_url":"https://justina.info"},{"course_title":"Frami, Carter and Bernhard","course_number":32395,"instructor":"Rosalind Jacobson","location":"333 Prosacco Gardens","time":"2018-07-13T23:34:06.081Z","enrolled":39709,"book":"http://timmy.org","course_url":"http://orval.info"},{"course_title":"Hessel - Adams","course_number":34483,"instructor":"Watson Hamill","location":"004 Stokes Fords","time":"2018-07-14T02:22:01.065Z","enrolled":54937,"book":"http://dangelo.net","course_url":"http://sylvia.name"},{"course_title":"Swaniawski - Considine","course_number":42382,"instructor":"Dedrick Flatley","location":"24111 Devon Tunnel","time":"2018-07-14T14:56:46.822Z","enrolled":52596,"book":"https://alfonso.name","course_url":"https://gudrun.name"},{"course_title":"Friesen, Dibbert and Rath","course_number":26666,"instructor":"Caleb Bartoletti","location":"9890 Brandon Key","time":"2018-07-14T13:18:47.040Z","enrolled":6625,"book":"http://raina.name","course_url":"https://royal.biz"},{"course_title":"Marks, Dickinson and Sporer","course_number":76520,"instructor":"Trycia Mueller I","location":"715 Kyleigh Streets","time":"2018-07-14T02:41:14.490Z","enrolled":5098,"book":"https://raymond.info","course_url":"http://skylar.com"},{"course_title":"Kiehn, Kunze and Fadel","course_number":98605,"instructor":"Ava Murray","location":"68654 Carole Overpass","time":"2018-07-14T11:08:38.696Z","enrolled":51170,"book":"http://clementine.org","course_url":"http://general.com"},{"course_title":"Roob, Hammes and Marvin","course_number":12906,"instructor":"Wilma Hamill","location":"300 Colton Centers","time":"2018-07-14T09:47:44.056Z","enrolled":33214,"book":"http://erwin.info","course_url":"http://louie.name"},{"course_title":"Bergstrom and Sons","course_number":15015,"instructor":"Quentin Schmeler II","location":"7366 Rohan Throughway","time":"2018-07-14T09:45:16.845Z","enrolled":13746,"book":"http://gerda.info","course_url":"https://shad.info"},{"course_title":"Kiehn - Keeling","course_number":97736,"instructor":"Albertha Swaniawski","location":"16214 Bauch Garden","time":"2018-07-14T21:03:45.441Z","enrolled":6012,"book":"https://quinn.net","course_url":"http://berneice.com"},{"course_title":"Cummerata LLC","course_number":47983,"instructor":"Ivory Flatley DVM","location":"346 Norene River","time":"2018-07-14T02:56:43.247Z","enrolled":11956,"book":"https://candido.org","course_url":"https://jalen.biz"},{"course_title":"Stroman, Marks and Johnston","course_number":37324,"instructor":"Tevin Kilback I","location":"282 Cremin Bypass","time":"2018-07-14T04:43:10.898Z","enrolled":85259,"book":"http://danielle.info","course_url":"https://maritza.net"},{"course_title":"Heaney, Wisoky and Carter","course_number":35058,"instructor":"Bonnie Bartell","location":"36634 Purdy Mountain","time":"2018-07-14T18:18:37.485Z","enrolled":78573,"book":"http://manuela.name","course_url":"https://alivia.com"},{"course_title":"Medhurst and Sons","course_number":18062,"instructor":"Lila Gleason","location":"647 Jewel Parks","time":"2018-07-14T21:42:44.657Z","enrolled":51919,"book":"https://ottilie.biz","course_url":"https://cathy.com"},{"course_title":"Hermann - Gulgowski","course_number":671,"instructor":"Trace Wintheiser","location":"88393 Heidi Ridge","time":"2018-07-14T22:59:47.147Z","enrolled":17522,"book":"https://della.name","course_url":"http://leland.info"},{"course_title":"Hand, Goodwin and Smitham","course_number":9964,"instructor":"Karolann Kris","location":"8252 Kovacek Extensions","time":"2018-07-13T23:33:47.637Z","enrolled":96875,"book":"http://savion.info","course_url":"http://stanford.info"},{"course_title":"Douglas - Toy","course_number":25462,"instructor":"Adaline Glover","location":"65198 Bernie Knoll","time":"2018-07-14T19:27:44.818Z","enrolled":91321,"book":"http://nathanael.info","course_url":"https://santina.biz"},{"course_title":"Kuphal and Sons","course_number":13349,"instructor":"Deven Halvorson","location":"82390 Bins Manors","time":"2018-07-14T00:35:27.914Z","enrolled":59619,"book":"http://rocio.biz","course_url":"https://martine.info"},{"course_title":"Fisher Inc","course_number":4030,"instructor":"Joaquin Bode","location":"08867 Kautzer Walks","time":"2018-07-14T10:37:14.770Z","enrolled":19397,"book":"http://sigmund.org","course_url":"https://mack.biz"},{"course_title":"Deckow and Sons","course_number":69394,"instructor":"Valentina Kessler IV","location":"02804 Cynthia Plain","time":"2018-07-14T03:03:26.769Z","enrolled":7697,"book":"http://francis.name","course_url":"https://hanna.name"},{"course_title":"Wolf, Waelchi and Mann","course_number":8259,"instructor":"Cecilia Steuber PhD","location":"090 Nienow Turnpike","time":"2018-07-14T08:39:38.072Z","enrolled":24958,"book":"http://patricia.org","course_url":"http://shanie.info"},{"course_title":"Gutkowski LLC","course_number":55833,"instructor":"Dante Osinski","location":"06950 Milton Club","time":"2018-07-14T00:10:53.545Z","enrolled":80353,"book":"http://brionna.name","course_url":"http://irwin.com"},{"course_title":"Bashirian, Schumm and Cassin","course_number":19867,"instructor":"Jessika Paucek","location":"559 Abdiel Tunnel","time":"2018-07-14T18:49:36.060Z","enrolled":61722,"book":"https://ward.name","course_url":"http://amani.info"},{"course_title":"Zemlak LLC","course_number":3167,"instructor":"Jerrell Jacobs","location":"348 Lucy Burgs","time":"2018-07-14T02:27:37.382Z","enrolled":13679,"book":"http://elwyn.biz","course_url":"https://amaya.net"},{"course_title":"Rodriguez - Kovacek","course_number":48858,"instructor":"Bulah Braun","location":"19599 Elyssa Parkway","time":"2018-07-14T10:40:50.245Z","enrolled":75091,"book":"https://leda.biz","course_url":"https://adela.info"},{"course_title":"Morar - Huel","course_number":72643,"instructor":"Claudie Hintz","location":"282 Perry Vista","time":"2018-07-14T02:02:12.659Z","enrolled":13725,"book":"https://corine.org","course_url":"https://emmet.name"},{"course_title":"Gislason - Cole","course_number":59316,"instructor":"Darron Rosenbaum","location":"671 Willms Route","time":"2018-07-14T04:17:51.268Z","enrolled":53067,"book":"https://jalon.com","course_url":"http://ewald.info"},{"course_title":"Pfannerstill, Nicolas and Fisher","course_number":92235,"instructor":"Kennedy Walsh","location":"849 Kunze Ford","time":"2018-07-14T13:24:51.222Z","enrolled":93391,"book":"http://ramona.info","course_url":"https://damion.name"},{"course_title":"Terry, Hammes and Metz","course_number":2265,"instructor":"Jennie Johnson","location":"860 Blick Skyway","time":"2018-07-14T17:26:02.235Z","enrolled":9954,"book":"https://charlotte.name","course_url":"https://ocie.biz"},{"course_title":"O'Connell - Fay","course_number":23975,"instructor":"Fletcher Prohaska","location":"9901 Hagenes Orchard","time":"2018-07-14T21:35:22.463Z","enrolled":5637,"book":"https://vernon.net","course_url":"https://cortney.net"},{"course_title":"Lubowitz, Moore and Hand","course_number":34952,"instructor":"Delores Koelpin","location":"151 Steuber Cliffs","time":"2018-07-14T08:20:23.710Z","enrolled":98285,"book":"http://amparo.org","course_url":"http://waldo.biz"},{"course_title":"Collier - Langosh","course_number":60962,"instructor":"Lottie Dooley","location":"90166 Murazik Station","time":"2018-07-14T20:42:35.070Z","enrolled":7059,"book":"http://domenico.info","course_url":"http://odessa.name"},{"course_title":"Upton - Swift","course_number":38128,"instructor":"Alfredo Satterfield","location":"22055 Yundt Harbors","time":"2018-07-14T15:34:36.180Z","enrolled":23929,"book":"http://evans.info","course_url":"http://rodolfo.net"},{"course_title":"Walter, McGlynn and Brown","course_number":17551,"instructor":"Brant Okuneva","location":"7588 Bryce Ford","time":"2018-07-14T17:22:58.080Z","enrolled":11661,"book":"http://vanessa.org","course_url":"http://bettie.org"},{"course_title":"Feeney Inc","course_number":42433,"instructor":"Mr. Wilton Roberts","location":"4897 Adele Ways","time":"2018-07-14T17:33:40.217Z","enrolled":84964,"book":"http://gabriella.info","course_url":"https://velva.com"},{"course_title":"Fisher - Lueilwitz","course_number":73199,"instructor":"Enos Paucek Jr.","location":"12725 Willms Ports","time":"2018-07-14T21:42:51.446Z","enrolled":76112,"book":"https://florencio.com","course_url":"http://stephon.com"},{"course_title":"Nikolaus Group","course_number":30815,"instructor":"Margot Howell","location":"630 Murray Ville","time":"2018-07-14T21:26:55.708Z","enrolled":78929,"book":"http://berry.org","course_url":"https://lucie.info"},{"course_title":"Marks - Bernhard","course_number":10755,"instructor":"Euna Schaden","location":"260 Orval Meadow","time":"2018-07-14T06:12:42.044Z","enrolled":75673,"book":"https://heber.info","course_url":"http://evalyn.info"},{"course_title":"Torphy and Sons","course_number":3605,"instructor":"Emmet Ankunding","location":"809 Nathen Extension","time":"2018-07-14T11:22:04.278Z","enrolled":19035,"book":"http://dixie.name","course_url":"http://meredith.name"},{"course_title":"Gerhold LLC","course_number":63984,"instructor":"Jeromy Jacobi","location":"17420 Lueilwitz Square","time":"2018-07-14T13:49:06.375Z","enrolled":49056,"book":"https://bernadette.com","course_url":"http://archibald.org"},{"course_title":"Baumbach, Hyatt and Wilderman","course_number":2586,"instructor":"Wyatt Bins","location":"758 Mills Gardens","time":"2018-07-14T19:44:40.720Z","enrolled":88093,"book":"http://cedrick.com","course_url":"https://annette.org"},{"course_title":"Schroeder - Will","course_number":49893,"instructor":"Krystina Ziemann","location":"874 Schimmel Rapid","time":"2018-07-14T03:10:32.855Z","enrolled":22109,"book":"https://itzel.com","course_url":"http://jarret.info"},{"course_title":"Gleichner, Rolfson and Moore","course_number":70413,"instructor":"Hillard Hickle MD","location":"6900 Bosco Locks","time":"2018-07-14T14:36:13.441Z","enrolled":78010,"book":"https://roel.info","course_url":"http://carlie.org"},{"course_title":"Stanton Inc","course_number":82398,"instructor":"Shawn Schoen","location":"0448 Larson Station","time":"2018-07-14T10:53:13.351Z","enrolled":78574,"book":"https://kolby.org","course_url":"https://mittie.info"},{"course_title":"Reilly and Sons","course_number":72905,"instructor":"Emanuel Schmitt","location":"150 Aufderhar Neck","time":"2018-07-14T08:20:18.665Z","enrolled":24692,"book":"http://drew.com","course_url":"https://maiya.biz"},{"course_title":"Braun Inc","course_number":28238,"instructor":"Augustus Marvin","location":"818 Dickens Inlet","time":"2018-07-14T00:05:52.633Z","enrolled":91514,"book":"http://loy.com","course_url":"http://oda.org"},{"course_title":"Mayer, Macejkovic and Bergstrom","course_number":9358,"instructor":"Mrs. Pablo Strosin","location":"206 Jamison Ford","time":"2018-07-14T02:55:19.507Z","enrolled":14427,"book":"https://justen.name","course_url":"http://nathan.com"},{"course_title":"Strosin Inc","course_number":96100,"instructor":"Dr. Tressie Moen","location":"194 Strosin Glens","time":"2018-07-14T09:37:07.792Z","enrolled":48019,"book":"http://ashly.name","course_url":"http://sydni.org"},{"course_title":"Nitzsche, Wyman and Langosh","course_number":74922,"instructor":"Modesto Pollich","location":"8218 Williamson Prairie","time":"2018-07-14T16:50:46.733Z","enrolled":33763,"book":"https://abagail.name","course_url":"http://gay.org"},{"course_title":"Barrows and Sons","course_number":50911,"instructor":"Randi Ritchie","location":"163 Christelle Track","time":"2018-07-14T15:46:40.136Z","enrolled":13225,"book":"http://annalise.org","course_url":"http://derek.name"},{"course_title":"Feil - Stark","course_number":47774,"instructor":"Tito Fadel","location":"26933 Deckow Lights","time":"2018-07-14T01:41:25.201Z","enrolled":29863,"book":"https://jules.net","course_url":"http://delbert.org"},{"course_title":"Daugherty - Wisoky","course_number":12696,"instructor":"Pearlie Pagac","location":"26633 Rylan Pines","time":"2018-07-14T05:29:36.670Z","enrolled":91631,"book":"https://vergie.org","course_url":"https://kevon.net"},{"course_title":"Barrows - Frami","course_number":82785,"instructor":"Ottilie Dooley Jr.","location":"39573 Gabrielle Causeway","time":"2018-07-14T09:58:08.312Z","enrolled":92573,"book":"http://ramona.biz","course_url":"https://paolo.biz"},{"course_title":"Heathcote - Schuster","course_number":34642,"instructor":"Reed Huels","location":"19637 Wilton Parkway","time":"2018-07-13T23:22:04.675Z","enrolled":38612,"book":"https://monte.biz","course_url":"http://quinton.net"},{"course_title":"Stanton - Greenfelder","course_number":90935,"instructor":"Elmo Muller","location":"30380 Kylie Roads","time":"2018-07-14T02:51:36.728Z","enrolled":27684,"book":"https://solon.net","course_url":"http://lila.com"},{"course_title":"Blick - Schaefer","course_number":72529,"instructor":"Orrin Hauck","location":"3524 Bins Harbors","time":"2018-07-14T12:01:49.599Z","enrolled":77974,"book":"https://jeramie.info","course_url":"http://casandra.biz"},{"course_title":"Luettgen and Sons","course_number":28330,"instructor":"Elyse Lind","location":"97485 Eliane Points","time":"2018-07-14T15:44:52.618Z","enrolled":58929,"book":"https://dina.name","course_url":"http://jamar.com"},{"course_title":"Klein - Metz","course_number":77415,"instructor":"Ruth Blanda MD","location":"122 Deron Flat","time":"2018-07-14T10:13:08.860Z","enrolled":58763,"book":"http://raheem.org","course_url":"http://maggie.net"},{"course_title":"Gleichner and Sons","course_number":56011,"instructor":"Emmet Balistreri","location":"135 Douglas Dale","time":"2018-07-14T08:33:50.568Z","enrolled":32693,"book":"http://jaren.org","course_url":"https://mohamed.net"},{"course_title":"White and Sons","course_number":36228,"instructor":"Luella O'Hara","location":"9186 Karine Neck","time":"2018-07-14T20:53:57.496Z","enrolled":3690,"book":"https://jeanne.com","course_url":"http://godfrey.com"},{"course_title":"Renner Inc","course_number":42150,"instructor":"Mertie Goyette","location":"31836 Brant Gardens","time":"2018-07-14T18:42:48.862Z","enrolled":17960,"book":"http://jeromy.biz","course_url":"https://liliana.biz"},{"course_title":"Hermann - Wolff","course_number":19720,"instructor":"Gaetano Crooks","location":"563 Neil Garden","time":"2018-07-14T01:03:45.328Z","enrolled":5543,"book":"http://tessie.com","course_url":"https://bruce.net"},{"course_title":"Schmidt, Wuckert and Prosacco","course_number":124,"instructor":"Verner Auer","location":"45646 Elnora Parks","time":"2018-07-13T23:55:12.119Z","enrolled":31878,"book":"https://jeffry.com","course_url":"https://modesta.info"},{"course_title":"Mitchell LLC","course_number":91746,"instructor":"Nico Schneider","location":"13273 Erik Centers","time":"2018-07-14T02:59:06.989Z","enrolled":18494,"book":"http://chandler.net","course_url":"https://cody.net"},{"course_title":"Anderson, Homenick and Sipes","course_number":45380,"instructor":"Hallie Daugherty","location":"0755 Kade Circle","time":"2018-07-14T16:49:00.738Z","enrolled":30352,"book":"https://guadalupe.biz","course_url":"https://luigi.net"},{"course_title":"Volkman LLC","course_number":34512,"instructor":"Clark Lynch","location":"3337 Dach Forks","time":"2018-07-14T14:20:45.743Z","enrolled":5671,"book":"http://quinn.info","course_url":"https://beatrice.net"},{"course_title":"Watsica, Morar and Lemke","course_number":74041,"instructor":"Della Bruen Jr.","location":"4452 McLaughlin Square","time":"2018-07-14T21:01:02.775Z","enrolled":26221,"book":"https://charles.name","course_url":"http://king.com"},{"course_title":"Roob, Schulist and Balistreri","course_number":41103,"instructor":"Kasandra Schmitt","location":"439 Harmony Road","time":"2018-07-14T08:49:34.163Z","enrolled":23069,"book":"http://emmett.biz","course_url":"http://brent.biz"},{"course_title":"Dooley Inc","course_number":82929,"instructor":"Hoyt O'Connell","location":"9763 Reece Courts","time":"2018-07-14T13:57:49.412Z","enrolled":78540,"book":"http://moriah.biz","course_url":"http://edythe.com"},{"course_title":"Nienow LLC","course_number":65546,"instructor":"Obie Douglas","location":"4442 Jacobson Gardens","time":"2018-07-14T15:27:57.133Z","enrolled":15367,"book":"http://maeve.org","course_url":"https://gerald.biz"},{"course_title":"Nolan - Sauer","course_number":24862,"instructor":"Freda Bergnaum","location":"9524 Crist Gardens","time":"2018-07-14T10:00:01.718Z","enrolled":27059,"book":"http://rosella.name","course_url":"http://joey.biz"},{"course_title":"Sporer - Block","course_number":88929,"instructor":"Nina King Sr.","location":"6363 Celine Square","time":"2018-07-14T22:13:20.282Z","enrolled":86438,"book":"http://valentina.name","course_url":"http://lukas.name"},{"course_title":"Mayer - McCullough","course_number":41491,"instructor":"Eddie Hagenes","location":"685 Modesta Passage","time":"2018-07-14T03:46:10.818Z","enrolled":26405,"book":"http://danial.org","course_url":"https://roberta.net"},{"course_title":"Farrell, Lind and Maggio","course_number":26477,"instructor":"Clint Sipes","location":"926 Feeney Causeway","time":"2018-07-14T08:22:07.682Z","enrolled":87418,"book":"http://mina.biz","course_url":"http://rudolph.com"},{"course_title":"Bins and Sons","course_number":12377,"instructor":"Mr. Ella Goodwin","location":"3678 Reanna Extensions","time":"2018-07-14T15:37:27.067Z","enrolled":56372,"book":"http://edwina.info","course_url":"https://manuel.com"},{"course_title":"Harvey, Lebsack and Orn","course_number":59590,"instructor":"Dr. Jarret Corwin","location":"421 Gislason Turnpike","time":"2018-07-14T08:54:37.581Z","enrolled":99327,"book":"https://leopold.biz","course_url":"http://maxwell.org"},{"course_title":"Pfannerstill, Wintheiser and Lang","course_number":97905,"instructor":"Dalton Dickinson","location":"8080 Arno Greens","time":"2018-07-14T21:27:07.026Z","enrolled":34841,"book":"http://vickie.name","course_url":"http://martine.net"},{"course_title":"Luettgen, Swift and Hilpert","course_number":82051,"instructor":"Murl Wiegand","location":"4710 Pouros Ports","time":"2018-07-14T04:18:16.018Z","enrolled":66721,"book":"http://ashly.info","course_url":"http://rocky.org"},{"course_title":"Crooks - Brakus","course_number":81733,"instructor":"Cornelius Altenwerth","location":"046 Noelia Parkway","time":"2018-07-14T22:14:36.550Z","enrolled":69353,"book":"http://oscar.com","course_url":"https://marquis.org"},{"course_title":"Hamill Group","course_number":86185,"instructor":"Beaulah Kuhn","location":"315 Colt Place","time":"2018-07-14T16:04:22.636Z","enrolled":60103,"book":"https://delaney.org","course_url":"http://prudence.name"},{"course_title":"Reilly, Kuvalis and Haag","course_number":62125,"instructor":"Savion Kuhic","location":"52741 Annamarie Wells","time":"2018-07-14T15:44:51.269Z","enrolled":21658,"book":"http://blaise.info","course_url":"https://kamille.net"},{"course_title":"Douglas LLC","course_number":99662,"instructor":"Alford Ruecker","location":"269 Shany Vista","time":"2018-07-14T12:09:54.213Z","enrolled":349,"book":"http://haleigh.org","course_url":"http://lilian.com"},{"course_title":"Miller LLC","course_number":61059,"instructor":"Lavonne Dibbert","location":"621 Caden Centers","time":"2018-07-14T07:38:36.591Z","enrolled":93216,"book":"http://sofia.org","course_url":"https://kaylee.net"},{"course_title":"Bergstrom Group","course_number":35405,"instructor":"Uriel Schmitt","location":"15014 Aracely Avenue","time":"2018-07-14T23:05:53.651Z","enrolled":32234,"book":"https://gerald.net","course_url":"http://domenica.info"},{"course_title":"Metz Inc","course_number":17160,"instructor":"Antonietta Gislason","location":"4769 Dallin Extension","time":"2018-07-14T19:09:37.330Z","enrolled":32285,"book":"https://cecelia.net","course_url":"https://arvilla.name"},{"course_title":"Corkery Group","course_number":4454,"instructor":"Kim Jast","location":"1412 Gonzalo Loaf","time":"2018-07-14T00:23:31.068Z","enrolled":74670,"book":"https://velda.net","course_url":"http://madaline.biz"},{"course_title":"Hintz, Robel and Hauck","course_number":20731,"instructor":"Ashtyn Littel","location":"70111 Vincenza Station","time":"2018-07-14T18:21:43.847Z","enrolled":85953,"book":"http://braeden.name","course_url":"https://sonia.name"},{"course_title":"Ortiz, Hahn and Strosin","course_number":93204,"instructor":"Nelson Gaylord","location":"5951 Rutherford Shores","time":"2018-07-14T22:26:05.731Z","enrolled":3899,"book":"http://rubye.name","course_url":"http://arlene.biz"},{"course_title":"Terry - Funk","course_number":47260,"instructor":"Pearl Keeling","location":"49239 Hector Cape","time":"2018-07-14T10:24:58.472Z","enrolled":96479,"book":"https://estelle.info","course_url":"http://toney.org"},{"course_title":"Mann, Hilpert and Stark","course_number":32835,"instructor":"Vicenta Senger","location":"682 Nicolas Field","time":"2018-07-14T03:47:48.530Z","enrolled":78050,"book":"https://gregg.info","course_url":"https://kailee.com"},{"course_title":"Swaniawski Group","course_number":99629,"instructor":"Maeve Ward","location":"007 Marks Terrace","time":"2018-07-14T21:03:24.366Z","enrolled":56487,"book":"https://khalid.name","course_url":"http://adriana.com"},{"course_title":"Daniel - Kihn","course_number":17011,"instructor":"Laila Kuhlman","location":"6335 Tillman Lights","time":"2018-07-14T19:47:07.899Z","enrolled":95263,"book":"http://mariam.biz","course_url":"http://percy.biz"},{"course_title":"Lesch, Gerlach and Dooley","course_number":29271,"instructor":"Wanda Marvin","location":"620 Botsford Island","time":"2018-07-14T22:34:14.678Z","enrolled":75950,"book":"https://kadin.org","course_url":"https://kendrick.net"},{"course_title":"Christiansen Group","course_number":93298,"instructor":"Casper Zemlak","location":"700 Kevon Causeway","time":"2018-07-14T17:34:14.859Z","enrolled":37119,"book":"https://lesly.org","course_url":"http://eldora.name"},{"course_title":"Quigley - Weimann","course_number":19447,"instructor":"Mikayla Herzog","location":"228 Fahey Ranch","time":"2018-07-14T20:42:49.370Z","enrolled":42018,"book":"https://jevon.biz","course_url":"https://erin.name"},{"course_title":"Murazik - Mills","course_number":43492,"instructor":"Joseph Ledner IV","location":"96201 Brannon Streets","time":"2018-07-14T21:05:31.007Z","enrolled":18507,"book":"https://edythe.com","course_url":"http://savanna.biz"},{"course_title":"Nader - Schmidt","course_number":23533,"instructor":"Emmanuelle Bogisich","location":"1075 Afton Ville","time":"2018-07-14T09:18:41.145Z","enrolled":31069,"book":"http://erling.net","course_url":"https://vallie.org"},{"course_title":"Satterfield - Cole","course_number":35586,"instructor":"Mr. Otha Funk","location":"1292 Coby Landing","time":"2018-07-14T15:01:48.315Z","enrolled":82972,"book":"http://gabe.org","course_url":"https://janick.biz"},{"course_title":"Grant Group","course_number":39911,"instructor":"Felicity Rath","location":"568 Arnoldo Path","time":"2018-07-14T02:01:59.665Z","enrolled":91594,"book":"https://marcelo.net","course_url":"http://jazmyn.info"},{"course_title":"Kessler, Lemke and Haag","course_number":42667,"instructor":"Kathlyn Wolf","location":"4885 Sarina Forks","time":"2018-07-14T12:24:03.247Z","enrolled":66070,"book":"https://jenifer.info","course_url":"https://zella.info"},{"course_title":"Carter - Bogan","course_number":18116,"instructor":"Jaycee Hand","location":"2945 Kelton Crossroad","time":"2018-07-14T04:07:00.030Z","enrolled":31453,"book":"https://ardith.name","course_url":"https://april.com"},{"course_title":"Sporer - Kertzmann","course_number":57188,"instructor":"Carrie Dietrich","location":"918 Bosco Viaduct","time":"2018-07-14T22:47:25.712Z","enrolled":59251,"book":"http://meta.info","course_url":"http://reese.com"},{"course_title":"Marks - Baumbach","course_number":45171,"instructor":"Dallas Schaefer","location":"1189 Schimmel Plaza","time":"2018-07-14T13:41:37.053Z","enrolled":24858,"book":"https://danial.name","course_url":"http://matteo.com"},{"course_title":"Jacobi and Sons","course_number":75598,"instructor":"Mittie Botsford","location":"2190 Price Circles","time":"2018-07-14T22:09:16.244Z","enrolled":50437,"book":"http://peyton.info","course_url":"https://kameron.net"},{"course_title":"Gibson - West","course_number":44599,"instructor":"Eduardo Auer","location":"14240 Mills Unions","time":"2018-07-14T14:25:20.627Z","enrolled":77447,"book":"https://melisa.net","course_url":"https://tyreek.name"},{"course_title":"Steuber and Sons","course_number":34902,"instructor":"Wallace Trantow","location":"579 Georgette Heights","time":"2018-07-14T06:58:53.358Z","enrolled":47497,"book":"http://lavon.name","course_url":"http://jaclyn.info"},{"course_title":"Kulas Group","course_number":28691,"instructor":"Wilhelmine Koepp Jr.","location":"7893 Kutch Knoll","time":"2018-07-14T16:50:50.236Z","enrolled":3560,"book":"https://alisha.info","course_url":"http://candido.biz"},{"course_title":"Stark and Sons","course_number":4542,"instructor":"Ethel Lubowitz","location":"568 Rutherford Glen","time":"2018-07-14T20:20:24.246Z","enrolled":87721,"book":"https://eric.net","course_url":"http://dangelo.net"},{"course_title":"Bechtelar, Hauck and Grant","course_number":68188,"instructor":"Claudia Cormier I","location":"260 Minerva Gateway","time":"2018-07-14T21:27:24.408Z","enrolled":51201,"book":"https://gene.name","course_url":"https://dangelo.info"},{"course_title":"Jerde - Koch","course_number":19661,"instructor":"Isabel Ruecker","location":"997 Powlowski Loaf","time":"2018-07-14T20:10:38.412Z","enrolled":485,"book":"http://tabitha.net","course_url":"http://wilfred.name"},{"course_title":"Bartoletti, Kiehn and Funk","course_number":54843,"instructor":"Ike Schowalter","location":"1622 Parker Drive","time":"2018-07-14T08:08:08.579Z","enrolled":84857,"book":"http://skyla.info","course_url":"https://amir.net"},{"course_title":"Powlowski LLC","course_number":76534,"instructor":"Jay Schmitt","location":"86920 Myrl Trail","time":"2018-07-14T04:22:23.205Z","enrolled":67584,"book":"https://jaiden.com","course_url":"http://tia.org"},{"course_title":"Ernser, Pfeffer and Mraz","course_number":85549,"instructor":"Cody Deckow","location":"7507 Davin Manor","time":"2018-07-14T17:00:27.203Z","enrolled":37164,"book":"https://hillary.org","course_url":"http://berta.info"},{"course_title":"Schroeder Inc","course_number":65334,"instructor":"Gerard Wuckert","location":"082 Kozey Harbor","time":"2018-07-14T18:33:16.441Z","enrolled":75750,"book":"http://anastacio.net","course_url":"http://veda.name"},{"course_title":"Bayer Inc","course_number":7888,"instructor":"Trystan Watsica","location":"406 Lee Junction","time":"2018-07-14T10:43:18.662Z","enrolled":93635,"book":"https://claud.biz","course_url":"http://greta.name"},{"course_title":"Collier Group","course_number":93540,"instructor":"Caesar Bosco","location":"7097 Predovic Haven","time":"2018-07-13T23:47:11.077Z","enrolled":17224,"book":"https://evans.com","course_url":"http://georgianna.info"},{"course_title":"Rohan, Gulgowski and Connelly","course_number":80241,"instructor":"Kody Prohaska","location":"50724 Sipes Lodge","time":"2018-07-14T18:07:37.267Z","enrolled":4057,"book":"https://mya.net","course_url":"https://xavier.name"},{"course_title":"Fritsch - Cormier","course_number":84337,"instructor":"Elyssa Fahey","location":"351 Rowe Pike","time":"2018-07-14T21:17:57.985Z","enrolled":16851,"book":"https://jameson.info","course_url":"https://kenyatta.net"},{"course_title":"Jast Inc","course_number":66285,"instructor":"Rhoda Walker","location":"4911 Dooley Vista","time":"2018-07-14T06:18:02.511Z","enrolled":21060,"book":"https://toy.org","course_url":"http://makayla.com"},{"course_title":"Will Inc","course_number":75694,"instructor":"Shanon Gorczany","location":"391 Bernier Prairie","time":"2018-07-14T19:10:06.562Z","enrolled":17647,"book":"https://maximillian.org","course_url":"http://modesta.info"},{"course_title":"Schowalter Inc","course_number":99472,"instructor":"Mable Stoltenberg V","location":"5989 Cormier Valleys","time":"2018-07-14T16:44:53.271Z","enrolled":99331,"book":"https://luigi.com","course_url":"https://izabella.net"},{"course_title":"Ratke Inc","course_number":83620,"instructor":"Buddy Reichel","location":"608 Brenden Creek","time":"2018-07-14T20:41:26.815Z","enrolled":56365,"book":"http://bessie.name","course_url":"http://rosalinda.com"},{"course_title":"Lindgren LLC","course_number":33128,"instructor":"Leonor Quigley","location":"108 Rempel Village","time":"2018-07-14T16:34:48.241Z","enrolled":80686,"book":"https://ladarius.name","course_url":"https://mellie.info"},{"course_title":"Konopelski and Sons","course_number":38807,"instructor":"Elyse Dicki","location":"09055 Omer Mountain","time":"2018-07-14T21:36:35.345Z","enrolled":90503,"book":"https://maybell.biz","course_url":"https://georgiana.org"},{"course_title":"Parisian Inc","course_number":30864,"instructor":"Felipa Raynor","location":"53053 Olga Walks","time":"2018-07-14T06:34:26.236Z","enrolled":84472,"book":"https://lenore.info","course_url":"https://jane.info"},{"course_title":"Gutmann - Ankunding","course_number":43318,"instructor":"Aglae Muller","location":"209 Kilback Ways","time":"2018-07-14T11:55:38.211Z","enrolled":59875,"book":"https://hazel.net","course_url":"https://antonetta.net"},{"course_title":"Mueller - Predovic","course_number":45028,"instructor":"Jonathan Kemmer","location":"5283 Schmeler Drives","time":"2018-07-14T21:17:57.361Z","enrolled":33221,"book":"http://jess.name","course_url":"http://ervin.name"},{"course_title":"Ryan - Volkman","course_number":37934,"instructor":"Nicholas Dietrich","location":"2937 Jacobson Place","time":"2018-07-14T00:36:18.987Z","enrolled":77483,"book":"https://dewitt.info","course_url":"https://violette.net"},{"course_title":"Kunde Group","course_number":86786,"instructor":"Douglas Kulas","location":"175 Orlo Flats","time":"2018-07-14T14:47:38.351Z","enrolled":7473,"book":"https://josefa.com","course_url":"https://rocio.info"},{"course_title":"Cormier, Pfeffer and Pacocha","course_number":73019,"instructor":"Marcellus Hills","location":"994 Ryan Ford","time":"2018-07-14T05:22:13.734Z","enrolled":83886,"book":"http://blake.biz","course_url":"http://lorenz.net"},{"course_title":"Cruickshank - Lebsack","course_number":32055,"instructor":"Jeff Crooks","location":"77527 Estel Fall","time":"2018-07-14T09:50:26.001Z","enrolled":89006,"book":"http://sabryna.info","course_url":"http://assunta.biz"},{"course_title":"Keeling, Schmidt and Beer","course_number":39822,"instructor":"Mrs. Felicia Ullrich","location":"691 Sonya Club","time":"2018-07-14T01:26:20.215Z","enrolled":41415,"book":"https://kyleigh.name","course_url":"https://gina.net"},{"course_title":"Schaefer - Wilkinson","course_number":58410,"instructor":"Abdullah Sanford","location":"17601 Kevon Brooks","time":"2018-07-14T07:51:51.564Z","enrolled":93973,"book":"https://ramon.com","course_url":"http://shirley.com"},{"course_title":"Schmidt Inc","course_number":88929,"instructor":"Amos Jakubowski","location":"278 Heidenreich Cliff","time":"2018-07-14T05:44:57.320Z","enrolled":15448,"book":"http://brandt.biz","course_url":"https://noble.org"},{"course_title":"Schamberger Group","course_number":1007,"instructor":"Sabryna Kozey","location":"4435 Lisandro Villages","time":"2018-07-14T11:03:52.287Z","enrolled":29913,"book":"http://tyrese.net","course_url":"http://constance.name"},{"course_title":"Schneider, Abernathy and Rogahn","course_number":30030,"instructor":"Reinhold Mosciski","location":"733 Taylor Mountain","time":"2018-07-14T06:47:40.192Z","enrolled":29421,"book":"https://jalen.com","course_url":"https://darrel.org"},{"course_title":"Russel - Wolff","course_number":48395,"instructor":"Edna Auer","location":"125 Maximo Stravenue","time":"2018-07-14T11:38:39.809Z","enrolled":6182,"book":"https://mayra.biz","course_url":"https://forest.name"},{"course_title":"Heaney, Greenfelder and Watsica","course_number":1484,"instructor":"Berta Padberg","location":"379 Alysa Trail","time":"2018-07-14T16:14:41.618Z","enrolled":59760,"book":"https://ike.info","course_url":"https://audrey.com"},{"course_title":"Shanahan, Lowe and Witting","course_number":6424,"instructor":"Quinton Marks","location":"83421 Corkery Branch","time":"2018-07-14T08:16:29.924Z","enrolled":85392,"book":"http://alysson.org","course_url":"http://kaya.info"},{"course_title":"Kutch, Abbott and Windler","course_number":15752,"instructor":"Dr. Lea Kassulke","location":"88357 Dashawn Land","time":"2018-07-14T17:07:30.321Z","enrolled":16786,"book":"http://reyes.org","course_url":"http://ulises.info"},{"course_title":"Lehner, Pagac and Harvey","course_number":18191,"instructor":"Fernando White","location":"9929 Steuber Highway","time":"2018-07-14T13:03:54.338Z","enrolled":38084,"book":"https://grover.name","course_url":"http://salma.biz"},{"course_title":"Torp Inc","course_number":30592,"instructor":"Barbara Jenkins","location":"131 Aufderhar Port","time":"2018-07-14T22:41:29.175Z","enrolled":49209,"book":"https://jenifer.info","course_url":"https://jamir.info"},{"course_title":"O'Reilly - Kozey","course_number":55969,"instructor":"Berta Welch","location":"4437 Lizeth Plains","time":"2018-07-14T02:36:32.579Z","enrolled":63472,"book":"http://kayleigh.info","course_url":"http://art.biz"},{"course_title":"Kautzer LLC","course_number":71557,"instructor":"Lela Trantow IV","location":"5672 Skiles Rue","time":"2018-07-14T03:34:29.649Z","enrolled":99602,"book":"http://frank.org","course_url":"http://aliza.biz"},{"course_title":"Tremblay Inc","course_number":6715,"instructor":"Marcelle Sauer","location":"94001 Dare Plain","time":"2018-07-14T09:56:46.718Z","enrolled":70874,"book":"http://jensen.org","course_url":"http://walton.net"},{"course_title":"Ledner - Klein","course_number":86567,"instructor":"Misty Stehr","location":"49445 Kozey Mills","time":"2018-07-13T23:11:34.620Z","enrolled":28691,"book":"https://daryl.net","course_url":"http://tomas.org"},{"course_title":"Batz, Wyman and Okuneva","course_number":50500,"instructor":"Alta Green","location":"14936 Alford Mission","time":"2018-07-14T02:39:57.292Z","enrolled":56897,"book":"http://cornell.com","course_url":"http://darrel.com"},{"course_title":"Kunze - Nienow","course_number":84209,"instructor":"Marcella Kerluke","location":"58021 Bayer Streets","time":"2018-07-14T18:27:22.510Z","enrolled":64141,"book":"https://janae.info","course_url":"http://cleveland.net"},{"course_title":"Corwin Group","course_number":37215,"instructor":"Tyra Baumbach","location":"9951 Rippin Divide","time":"2018-07-14T21:27:40.951Z","enrolled":99483,"book":"https://lilian.org","course_url":"http://estell.net"},{"course_title":"Ward - Satterfield","course_number":26096,"instructor":"Troy Runte DVM","location":"906 Devyn Junctions","time":"2018-07-14T10:17:19.631Z","enrolled":8102,"book":"http://julius.net","course_url":"http://damaris.info"},{"course_title":"Streich LLC","course_number":90859,"instructor":"Dereck Osinski","location":"0953 Genevieve Lock","time":"2018-07-14T03:30:48.888Z","enrolled":12080,"book":"http://hubert.info","course_url":"http://domenico.com"},{"course_title":"Connelly and Sons","course_number":87932,"instructor":"Dr. Presley Brown","location":"3579 Juvenal Row","time":"2018-07-14T14:42:52.422Z","enrolled":48609,"book":"https://eliseo.biz","course_url":"https://estelle.com"},{"course_title":"Prohaska, Tromp and Doyle","course_number":38801,"instructor":"Ethan Franecki","location":"15416 Graham Valley","time":"2018-07-14T04:06:08.982Z","enrolled":88045,"book":"https://kara.biz","course_url":"http://brycen.info"},{"course_title":"Olson, Hilll and Krajcik","course_number":19235,"instructor":"Brandt Weissnat","location":"5675 Herminio Flat","time":"2018-07-14T20:11:01.537Z","enrolled":24950,"book":"https://alda.info","course_url":"https://nayeli.biz"},{"course_title":"Abernathy, Halvorson and Hansen","course_number":48934,"instructor":"Theodore O'Conner MD","location":"65442 Ines Forges","time":"2018-07-14T13:30:25.518Z","enrolled":12416,"book":"https://tabitha.com","course_url":"https://jaunita.org"},{"course_title":"Reichert - Borer","course_number":57958,"instructor":"Catalina Windler","location":"6993 Giovani Stream","time":"2018-07-13T23:16:29.076Z","enrolled":37091,"book":"https://harvey.biz","course_url":"https://joaquin.net"},{"course_title":"Pollich, Reynolds and Kessler","course_number":79704,"instructor":"Tomasa Pfeffer","location":"35718 Martin Crossing","time":"2018-07-14T03:10:09.376Z","enrolled":42829,"book":"https://nasir.info","course_url":"https://marilyne.name"},{"course_title":"Lang, Shanahan and D'Amore","course_number":44399,"instructor":"April Thompson","location":"2993 Skiles Shoal","time":"2018-07-14T04:21:40.566Z","enrolled":19762,"book":"http://deven.info","course_url":"http://afton.org"},{"course_title":"Swaniawski and Sons","course_number":97990,"instructor":"Haven Bergstrom","location":"10254 Brenden Flat","time":"2018-07-14T16:57:20.749Z","enrolled":57581,"book":"http://derrick.net","course_url":"https://angel.org"},{"course_title":"Schroeder Inc","course_number":37393,"instructor":"Keon Schumm V","location":"37376 Stroman Ville","time":"2018-07-14T15:07:29.863Z","enrolled":62950,"book":"http://nannie.name","course_url":"http://tabitha.info"},{"course_title":"Reichert Inc","course_number":83963,"instructor":"Laron Friesen","location":"446 Chandler Green","time":"2018-07-14T00:26:48.376Z","enrolled":71945,"book":"http://cayla.biz","course_url":"https://eloisa.net"},{"course_title":"Upton, Hoppe and Nicolas","course_number":46069,"instructor":"Camila Adams","location":"8939 Eileen Union","time":"2018-07-14T13:01:03.980Z","enrolled":15605,"book":"http://lisandro.biz","course_url":"https://raymundo.net"},{"course_title":"Yundt and Sons","course_number":95120,"instructor":"Krystel Schneider","location":"61480 Hand Burg","time":"2018-07-14T20:48:41.331Z","enrolled":45049,"book":"https://frederic.info","course_url":"http://berniece.biz"},{"course_title":"O'Hara Group","course_number":43125,"instructor":"Miss Ansel Wolff","location":"5125 Louvenia Plain","time":"2018-07-14T12:17:48.212Z","enrolled":98660,"book":"https://jolie.name","course_url":"http://ewell.com"},{"course_title":"Harris LLC","course_number":48221,"instructor":"Mrs. Isadore Runolfsdottir","location":"4737 Ressie Spring","time":"2018-07-14T21:24:15.745Z","enrolled":90673,"book":"http://mikel.org","course_url":"http://deon.org"},{"course_title":"Schmeler LLC","course_number":33976,"instructor":"George Oberbrunner","location":"701 Hanna Centers","time":"2018-07-14T05:02:33.626Z","enrolled":67114,"book":"https://kale.net","course_url":"https://eriberto.name"},{"course_title":"Spencer - O'Conner","course_number":5293,"instructor":"Miss Eldon Grimes","location":"543 Hintz Trail","time":"2018-07-14T22:20:50.310Z","enrolled":6291,"book":"https://alexandro.info","course_url":"http://german.biz"},{"course_title":"Hudson, Vandervort and Kuvalis","course_number":91655,"instructor":"Jeanie Rutherford","location":"41244 Littel Spurs","time":"2018-07-14T00:32:30.745Z","enrolled":14099,"book":"http://destin.info","course_url":"https://tillman.org"},{"course_title":"Marks, O'Conner and Bailey","course_number":46112,"instructor":"Ms. Ayden Ward","location":"7278 Jakubowski Brook","time":"2018-07-14T03:04:58.215Z","enrolled":40156,"book":"http://patience.info","course_url":"https://kaylah.biz"},{"course_title":"Carter, Goldner and Balistreri","course_number":41892,"instructor":"Geovanny Sawayn","location":"44577 Oswaldo Street","time":"2018-07-14T17:04:06.578Z","enrolled":46519,"book":"http://junior.name","course_url":"http://adolphus.info"},{"course_title":"Herzog - Tillman","course_number":835,"instructor":"Wilhelmine Ebert I","location":"7653 Moen Manors","time":"2018-07-14T19:46:19.906Z","enrolled":35336,"book":"http://cierra.net","course_url":"https://elta.org"},{"course_title":"Schaefer - Farrell","course_number":12944,"instructor":"Felicia Volkman","location":"2112 Lesch Oval","time":"2018-07-14T12:55:14.525Z","enrolled":55953,"book":"http://jonas.info","course_url":"http://abbey.name"},{"course_title":"Schowalter and Sons","course_number":57540,"instructor":"Meggie McLaughlin","location":"83490 Amos Point","time":"2018-07-14T21:18:24.077Z","enrolled":62928,"book":"https://devonte.com","course_url":"https://jovan.info"},{"course_title":"Smith - Franecki","course_number":61280,"instructor":"Tabitha Simonis","location":"67470 Fadel Forges","time":"2018-07-14T14:49:27.711Z","enrolled":94822,"book":"http://vida.com","course_url":"http://garret.name"},{"course_title":"Eichmann - Hills","course_number":95443,"instructor":"Kamryn Runolfsson","location":"3464 Greg Fall","time":"2018-07-14T08:19:53.020Z","enrolled":57691,"book":"https://jolie.com","course_url":"http://marcel.name"},{"course_title":"Ondricka - O'Kon","course_number":73479,"instructor":"Florencio Mann","location":"9044 Gerlach Cove","time":"2018-07-13T23:52:17.534Z","enrolled":30551,"book":"https://jasmin.biz","course_url":"http://colt.net"},{"course_title":"Cronin - Kassulke","course_number":97123,"instructor":"Jarrett Zemlak","location":"208 Jadon Lights","time":"2018-07-13T23:10:05.405Z","enrolled":26966,"book":"http://clara.biz","course_url":"https://stephanie.org"},{"course_title":"Schoen, Buckridge and Barrows","course_number":15591,"instructor":"Kimberly Harris","location":"795 Aric Rest","time":"2018-07-14T15:16:40.691Z","enrolled":62727,"book":"http://rashawn.net","course_url":"http://riley.net"},{"course_title":"Kemmer and Sons","course_number":61694,"instructor":"Alison Langosh","location":"4540 Wehner Meadows","time":"2018-07-14T08:32:01.312Z","enrolled":87914,"book":"http://jarrell.com","course_url":"http://randi.info"},{"course_title":"Jaskolski, Deckow and Heller","course_number":91755,"instructor":"Paige O'Connell","location":"4017 Turner Neck","time":"2018-07-14T08:20:53.752Z","enrolled":20210,"book":"https://nigel.net","course_url":"http://isac.info"},{"course_title":"Carroll - Rice","course_number":58693,"instructor":"Napoleon Christiansen","location":"6203 Emerald Pass","time":"2018-07-14T06:05:49.056Z","enrolled":61338,"book":"https://afton.info","course_url":"https://devon.biz"},{"course_title":"Weissnat, Fahey and Runolfsdottir","course_number":81785,"instructor":"Angelina Legros","location":"1078 Georgianna Lakes","time":"2018-07-14T09:39:46.996Z","enrolled":68282,"book":"https://maybelle.com","course_url":"http://miguel.com"},{"course_title":"Larkin, Johnston and Schmeler","course_number":10949,"instructor":"Lacy Carroll","location":"4267 Cristina Well","time":"2018-07-14T16:37:09.383Z","enrolled":26784,"book":"http://lavon.name","course_url":"http://clement.biz"},{"course_title":"Bartoletti - Hettinger","course_number":84944,"instructor":"Rosemarie Jacobson","location":"6591 Baby Fords","time":"2018-07-14T15:13:02.817Z","enrolled":35801,"book":"https://nicolas.net","course_url":"http://brenda.info"},{"course_title":"Willms - Steuber","course_number":73798,"instructor":"Dr. Amir Swift","location":"41273 Heathcote Mountains","time":"2018-07-14T18:17:10.846Z","enrolled":99346,"book":"https://marietta.name","course_url":"http://sven.biz"},{"course_title":"Klein and Sons","course_number":37969,"instructor":"Haven Mante","location":"48246 Keshaun Mission","time":"2018-07-14T20:20:04.802Z","enrolled":19429,"book":"http://bailey.biz","course_url":"https://raquel.net"},{"course_title":"Koepp - Hegmann","course_number":71220,"instructor":"Addie Leffler","location":"9650 Rippin Dale","time":"2018-07-14T19:54:35.072Z","enrolled":76237,"book":"https://halle.net","course_url":"https://carrie.info"},{"course_title":"Torphy, Bogan and Jast","course_number":71821,"instructor":"Manuela Farrell","location":"58287 Kaitlin Square","time":"2018-07-13T23:33:01.609Z","enrolled":71279,"book":"http://ressie.biz","course_url":"http://roxane.info"},{"course_title":"Boehm Inc","course_number":17232,"instructor":"Jennyfer Balistreri","location":"4066 Rosamond Hills","time":"2018-07-14T17:34:03.345Z","enrolled":36138,"book":"http://lucy.info","course_url":"https://kavon.org"},{"course_title":"Cassin LLC","course_number":14862,"instructor":"Crystel O'Reilly","location":"93814 Royce Fords","time":"2018-07-14T19:04:32.195Z","enrolled":9470,"book":"http://leanne.net","course_url":"http://trisha.name"},{"course_title":"Cartwright Inc","course_number":13556,"instructor":"Lorenzo Rau","location":"6705 Ashtyn Flats","time":"2018-07-14T17:55:58.312Z","enrolled":87101,"book":"https://guido.org","course_url":"http://juana.org"},{"course_title":"McClure Group","course_number":35354,"instructor":"Teagan Carter","location":"59222 Izaiah Vista","time":"2018-07-14T01:39:04.861Z","enrolled":43205,"book":"http://carleton.info","course_url":"http://jerald.name"},{"course_title":"Kihn, Barton and Ankunding","course_number":51036,"instructor":"Mrs. Gabriel Gutmann","location":"54593 Polly Spring","time":"2018-07-14T17:39:56.732Z","enrolled":24634,"book":"https://kaden.org","course_url":"http://leonard.com"},{"course_title":"West - Welch","course_number":42628,"instructor":"Chesley Anderson","location":"69835 Fletcher Dam","time":"2018-07-14T21:20:36.865Z","enrolled":128,"book":"https://kenya.org","course_url":"https://guido.net"},{"course_title":"Bosco Group","course_number":23368,"instructor":"Cornelius Champlin","location":"939 Terry Square","time":"2018-07-14T03:35:06.664Z","enrolled":46157,"book":"http://khalil.com","course_url":"http://kristin.name"},{"course_title":"Olson LLC","course_number":97678,"instructor":"Gene Bayer","location":"5503 Kohler Lights","time":"2018-07-14T14:24:33.196Z","enrolled":23464,"book":"http://name.biz","course_url":"http://mozell.com"},{"course_title":"Lebsack, Greenfelder and Fisher","course_number":22550,"instructor":"Bill Walsh","location":"2029 Haley Street","time":"2018-07-14T04:16:19.882Z","enrolled":47034,"book":"http://eloise.org","course_url":"http://benton.org"},{"course_title":"Heathcote, Lindgren and Goodwin","course_number":80899,"instructor":"Kyra Dibbert","location":"250 Kuhlman Forges","time":"2018-07-14T07:04:32.954Z","enrolled":35280,"book":"http://evelyn.net","course_url":"https://hettie.info"},{"course_title":"Kautzer Group","course_number":65210,"instructor":"Jamison O'Conner","location":"1852 Lynch Stream","time":"2018-07-14T00:56:24.241Z","enrolled":89591,"book":"https://phoebe.biz","course_url":"https://sonya.org"},{"course_title":"Rogahn LLC","course_number":40695,"instructor":"Rebeca Aufderhar","location":"274 Zulauf Shoals","time":"2018-07-14T07:33:36.574Z","enrolled":21150,"book":"https://gerhard.com","course_url":"http://augusta.net"},{"course_title":"Doyle, Smitham and Lesch","course_number":39348,"instructor":"Mr. Sydni Stokes","location":"68611 Jameson Wells","time":"2018-07-14T10:29:35.250Z","enrolled":13750,"book":"http://filomena.net","course_url":"https://jasmin.org"},{"course_title":"McCullough - Haag","course_number":53347,"instructor":"Magdalena Treutel","location":"3419 Klein Harbors","time":"2018-07-14T08:43:29.036Z","enrolled":89435,"book":"http://jaycee.name","course_url":"https://cara.com"},{"course_title":"Green LLC","course_number":23810,"instructor":"Dayna Mayer","location":"687 Mraz Branch","time":"2018-07-14T17:04:57.940Z","enrolled":91462,"book":"https://guadalupe.biz","course_url":"http://macy.org"},{"course_title":"Durgan - Hodkiewicz","course_number":96553,"instructor":"Ray Bernhard","location":"26839 Stark Lake","time":"2018-07-14T15:19:12.259Z","enrolled":30405,"book":"https://izaiah.net","course_url":"http://anna.net"},{"course_title":"Hintz, Nader and O'Hara","course_number":53552,"instructor":"Lucius Mosciski","location":"03574 Cartwright Plains","time":"2018-07-14T17:11:38.170Z","enrolled":93449,"book":"https://zola.biz","course_url":"https://carole.info"},{"course_title":"Boyer Group","course_number":16914,"instructor":"Kaleb Koepp","location":"8590 Price Dale","time":"2018-07-14T04:08:51.963Z","enrolled":37431,"book":"https://chadrick.name","course_url":"http://doris.biz"},{"course_title":"Weimann, Koch and Schmitt","course_number":60574,"instructor":"Tiffany Kuphal","location":"94315 Stokes Station","time":"2018-07-14T12:41:03.729Z","enrolled":95854,"book":"http://alexa.biz","course_url":"https://lenny.biz"},{"course_title":"Hagenes LLC","course_number":17615,"instructor":"Madilyn Morar","location":"3576 Garfield Green","time":"2018-07-14T19:59:38.326Z","enrolled":90578,"book":"https://blaise.org","course_url":"https://deja.biz"},{"course_title":"Reichel and Sons","course_number":48985,"instructor":"Colby Schuster DVM","location":"1759 Mya Views","time":"2018-07-14T12:04:45.925Z","enrolled":47575,"book":"https://molly.net","course_url":"http://bertram.info"},{"course_title":"Adams - Dicki","course_number":25331,"instructor":"Anya Rempel","location":"665 Rempel Glens","time":"2018-07-14T12:44:36.545Z","enrolled":42095,"book":"http://audie.info","course_url":"http://sigurd.name"},{"course_title":"Dibbert - Schaden","course_number":51727,"instructor":"Callie Smith","location":"15231 Anais Plains","time":"2018-07-14T05:42:18.274Z","enrolled":30582,"book":"https://rossie.info","course_url":"http://jarod.info"},{"course_title":"Renner Inc","course_number":78982,"instructor":"Ericka Quitzon","location":"97966 Lue Crossing","time":"2018-07-14T02:31:15.593Z","enrolled":61052,"book":"https://shirley.net","course_url":"https://bethel.net"},{"course_title":"McCullough - Rempel","course_number":95858,"instructor":"Ms. Victor Effertz","location":"6360 Eliza Rue","time":"2018-07-14T14:31:30.750Z","enrolled":42209,"book":"http://henderson.name","course_url":"https://daisha.info"},{"course_title":"Klocko - Lynch","course_number":6148,"instructor":"Claud Hermann DDS","location":"0759 Lubowitz Hills","time":"2018-07-14T12:21:19.311Z","enrolled":20379,"book":"http://travon.info","course_url":"https://cyril.net"},{"course_title":"Block, Parker and Labadie","course_number":57715,"instructor":"Dorris Conroy","location":"5045 Brooks Knoll","time":"2018-07-14T04:37:40.919Z","enrolled":10809,"book":"https://cornelius.net","course_url":"https://lottie.com"},{"course_title":"Price, Cruickshank and Langworth","course_number":14335,"instructor":"Marisa Mitchell","location":"02003 Marianne Walks","time":"2018-07-14T02:40:16.829Z","enrolled":12221,"book":"http://adelia.net","course_url":"http://neva.org"},{"course_title":"Considine - Stoltenberg","course_number":55709,"instructor":"Lilla Robel","location":"448 Conn Springs","time":"2018-07-13T23:49:46.007Z","enrolled":12401,"book":"https://ron.org","course_url":"http://cleora.info"},{"course_title":"Nikolaus, Kulas and Durgan","course_number":33213,"instructor":"Cyril Lindgren","location":"50605 Loy Vista","time":"2018-07-14T18:34:13.132Z","enrolled":71388,"book":"https://melisa.info","course_url":"http://ronaldo.org"},{"course_title":"Nikolaus Inc","course_number":50526,"instructor":"Malika Lindgren","location":"571 Ezra Crescent","time":"2018-07-14T09:21:02.093Z","enrolled":56236,"book":"https://nelda.biz","course_url":"https://nora.name"},{"course_title":"Gaylord Inc","course_number":38235,"instructor":"Oran Zboncak","location":"6008 Xander Causeway","time":"2018-07-14T13:21:37.109Z","enrolled":96335,"book":"http://aniya.biz","course_url":"http://carlotta.name"},{"course_title":"Olson and Sons","course_number":94234,"instructor":"Bridgette Wiza","location":"1328 Schaden Squares","time":"2018-07-14T02:57:23.835Z","enrolled":76903,"book":"http://calista.net","course_url":"http://hal.name"},{"course_title":"Cruickshank - Fahey","course_number":84893,"instructor":"Danial Bins","location":"70142 Lueilwitz Ridge","time":"2018-07-14T20:13:42.411Z","enrolled":14314,"book":"http://rogers.org","course_url":"http://raquel.net"},{"course_title":"Runolfsdottir Group","course_number":71319,"instructor":"Ross Gulgowski","location":"99208 Doyle Divide","time":"2018-07-14T11:52:11.817Z","enrolled":5203,"book":"https://monroe.com","course_url":"http://maiya.biz"},{"course_title":"Bruen, Hoeger and Wintheiser","course_number":42210,"instructor":"Madonna Collier","location":"59961 Baylee Wells","time":"2018-07-14T07:26:00.858Z","enrolled":51031,"book":"https://marcelina.info","course_url":"https://jada.org"},{"course_title":"Nienow LLC","course_number":7907,"instructor":"Mr. Koby Daniel","location":"61372 Collins Way","time":"2018-07-14T11:02:08.336Z","enrolled":61637,"book":"http://nils.name","course_url":"http://kelton.org"},{"course_title":"Rogahn - Robel","course_number":54912,"instructor":"Eloisa Wintheiser","location":"76299 Grady Meadow","time":"2018-07-14T12:12:38.463Z","enrolled":90850,"book":"http://ashlee.org","course_url":"http://myra.org"},{"course_title":"Rogahn LLC","course_number":81668,"instructor":"Elta Collier","location":"594 Itzel Islands","time":"2018-07-14T21:23:34.882Z","enrolled":47169,"book":"http://mallie.org","course_url":"http://antonia.com"},{"course_title":"Cummerata and Sons","course_number":13639,"instructor":"Dr. Simeon Jast","location":"71630 Mills Turnpike","time":"2018-07-14T12:14:35.451Z","enrolled":98528,"book":"http://linnea.info","course_url":"http://carlo.info"},{"course_title":"McLaughlin - Witting","course_number":75350,"instructor":"Araceli Eichmann MD","location":"9794 Russel Stream","time":"2018-07-14T09:02:39.898Z","enrolled":93175,"book":"http://billie.info","course_url":"https://nicola.org"},{"course_title":"Medhurst - Homenick","course_number":83038,"instructor":"Elliott Marquardt","location":"52507 McGlynn Mission","time":"2018-07-14T10:09:00.329Z","enrolled":10750,"book":"http://valentine.com","course_url":"http://trever.biz"},{"course_title":"Schamberger, Hansen and Kohler","course_number":87544,"instructor":"Miss Jazmyne Hahn","location":"1518 Name Crescent","time":"2018-07-13T23:50:11.681Z","enrolled":47593,"book":"http://marlin.info","course_url":"https://casandra.info"},{"course_title":"Moen - Jenkins","course_number":43499,"instructor":"Melany Block","location":"6025 Ebert Springs","time":"2018-07-14T03:23:41.832Z","enrolled":22819,"book":"https://jan.name","course_url":"https://austen.net"},{"course_title":"Hartmann, Hoppe and Kohler","course_number":62574,"instructor":"Claud Wintheiser PhD","location":"2782 Thiel Spurs","time":"2018-07-13T23:39:32.489Z","enrolled":23563,"book":"https://donato.name","course_url":"https://felipe.info"},{"course_title":"VonRueden Inc","course_number":29227,"instructor":"Miss Olin Walsh","location":"74416 Kuphal Port","time":"2018-07-14T13:19:19.669Z","enrolled":36505,"book":"https://leda.biz","course_url":"https://madyson.info"},{"course_title":"Okuneva - McClure","course_number":86714,"instructor":"Alison Kohler","location":"288 Adams Isle","time":"2018-07-14T06:56:21.509Z","enrolled":2739,"book":"http://gay.com","course_url":"https://shaina.info"},{"course_title":"Schowalter, Rutherford and Koss","course_number":82762,"instructor":"Noemie Hermann MD","location":"906 Darwin Plain","time":"2018-07-14T01:22:19.618Z","enrolled":23974,"book":"http://annabelle.com","course_url":"http://isac.biz"},{"course_title":"Lemke, O'Connell and Bahringer","course_number":83485,"instructor":"Mr. Enoch Cremin","location":"96949 Ondricka Roads","time":"2018-07-14T20:59:20.010Z","enrolled":80841,"book":"http://murl.com","course_url":"https://aimee.biz"},{"course_title":"McClure Group","course_number":9736,"instructor":"Pierce Gerlach Sr.","location":"932 Alta Mill","time":"2018-07-14T15:43:01.634Z","enrolled":11336,"book":"https://joana.net","course_url":"http://meghan.org"},{"course_title":"McKenzie, Wisozk and Ankunding","course_number":11049,"instructor":"Ryleigh Halvorson","location":"19312 Zechariah Keys","time":"2018-07-14T16:00:13.563Z","enrolled":26560,"book":"http://marian.name","course_url":"https://gerald.name"},{"course_title":"Jaskolski, Harber and Stroman","course_number":76620,"instructor":"Tierra Ryan","location":"5073 Wiza Points","time":"2018-07-14T17:27:11.438Z","enrolled":34525,"book":"https://kyle.name","course_url":"http://bryon.net"},{"course_title":"Hamill - Barton","course_number":44116,"instructor":"Adrian Swift","location":"761 Dooley Avenue","time":"2018-07-14T07:59:46.543Z","enrolled":78040,"book":"http://ezra.info","course_url":"https://rahul.com"},{"course_title":"Nikolaus - Hilpert","course_number":90793,"instructor":"Nicholas Ziemann","location":"8092 Buckridge Views","time":"2018-07-14T06:14:26.036Z","enrolled":40218,"book":"http://norma.org","course_url":"https://rickie.info"},{"course_title":"Leuschke, Douglas and Erdman","course_number":88566,"instructor":"Vaughn Erdman I","location":"04781 Clinton Isle","time":"2018-07-14T07:36:56.791Z","enrolled":69322,"book":"https://stacey.biz","course_url":"https://jazmyn.net"},{"course_title":"Runolfsson - Keeling","course_number":32467,"instructor":"Burnice Quitzon","location":"5077 Pagac Knoll","time":"2018-07-14T23:09:27.501Z","enrolled":82911,"book":"https://estell.biz","course_url":"http://halie.info"},{"course_title":"Ullrich Inc","course_number":41780,"instructor":"Willa Kerluke","location":"41052 Wisozk Vista","time":"2018-07-14T03:59:49.634Z","enrolled":12783,"book":"http://thomas.info","course_url":"https://roderick.name"},{"course_title":"Hegmann Inc","course_number":31595,"instructor":"Julian DuBuque","location":"948 Kub Courts","time":"2018-07-14T09:57:50.558Z","enrolled":10804,"book":"https://jada.biz","course_url":"https://ken.name"},{"course_title":"Hoppe, Hamill and Hettinger","course_number":18138,"instructor":"Paige Pfeffer","location":"3620 Lilian Stravenue","time":"2018-07-14T11:39:06.440Z","enrolled":80037,"book":"https://monty.name","course_url":"https://edison.biz"},{"course_title":"Runolfsdottir, Gorczany and Jacobson","course_number":98998,"instructor":"Mr. Joesph Borer","location":"99577 Corwin Mountain","time":"2018-07-14T15:03:40.969Z","enrolled":42017,"book":"https://cornell.net","course_url":"http://carmen.biz"},{"course_title":"Rowe, Nader and Mayer","course_number":26254,"instructor":"Eduardo Bogisich","location":"75161 Cecilia Center","time":"2018-07-14T02:40:44.129Z","enrolled":54674,"book":"https://parker.info","course_url":"https://dandre.net"},{"course_title":"Torp - Feil","course_number":89882,"instructor":"Chadd Frami","location":"5238 Wallace Union","time":"2018-07-14T10:07:30.526Z","enrolled":53172,"book":"http://esther.name","course_url":"http://jenifer.com"},{"course_title":"Lueilwitz, Beer and Runolfsson","course_number":22669,"instructor":"Dr. Zaria Ankunding","location":"95861 Stella Mills","time":"2018-07-14T21:15:01.141Z","enrolled":11568,"book":"http://ursula.com","course_url":"http://jade.org"},{"course_title":"Schmidt - Bosco","course_number":90851,"instructor":"Terrell Dach","location":"45510 Miguel Squares","time":"2018-07-14T11:13:51.627Z","enrolled":62735,"book":"https://macie.info","course_url":"https://hudson.name"},{"course_title":"Macejkovic, Gibson and Buckridge","course_number":12912,"instructor":"Alayna Cormier","location":"24844 Waylon Island","time":"2018-07-14T09:59:16.806Z","enrolled":74086,"book":"http://buford.net","course_url":"https://raoul.com"},{"course_title":"Conroy Inc","course_number":5279,"instructor":"Friedrich Hills Sr.","location":"6595 Dooley Burgs","time":"2018-07-13T23:32:51.826Z","enrolled":33632,"book":"http://rosamond.com","course_url":"https://kareem.name"},{"course_title":"Pfeffer - Rath","course_number":34999,"instructor":"Dr. Cleve Baumbach","location":"06387 Heller Plains","time":"2018-07-14T09:41:36.384Z","enrolled":72536,"book":"http://kole.biz","course_url":"http://earnest.name"},{"course_title":"Wolff - Kohler","course_number":54057,"instructor":"Leonor Hudson","location":"00615 Maureen Glens","time":"2018-07-14T16:50:09.814Z","enrolled":13613,"book":"https://bradford.net","course_url":"https://virgil.biz"},{"course_title":"Schuppe - Simonis","course_number":75748,"instructor":"Jayce Hane","location":"282 Blick Shoals","time":"2018-07-14T19:14:27.036Z","enrolled":75299,"book":"http://ollie.name","course_url":"https://crystel.biz"},{"course_title":"Hermann, Zemlak and Rohan","course_number":60070,"instructor":"Ignacio Miller","location":"8572 Clint Junctions","time":"2018-07-14T11:47:30.242Z","enrolled":30221,"book":"https://yazmin.info","course_url":"http://allison.name"},{"course_title":"Botsford and Sons","course_number":31400,"instructor":"Karen Wiegand IV","location":"208 Labadie Plains","time":"2018-07-14T00:58:23.263Z","enrolled":82323,"book":"https://alexandrine.org","course_url":"https://roosevelt.org"},{"course_title":"Connelly - Trantow","course_number":42406,"instructor":"Wilmer Conroy","location":"35010 Cummerata Drives","time":"2018-07-14T18:50:50.513Z","enrolled":33835,"book":"http://leland.org","course_url":"https://ignacio.net"},{"course_title":"Osinski Group","course_number":64733,"instructor":"Nathaniel Schmeler","location":"67379 Eda Cape","time":"2018-07-14T00:00:00.106Z","enrolled":15957,"book":"https://carleton.net","course_url":"http://sven.net"},{"course_title":"Lind Group","course_number":54462,"instructor":"Daphnee Kohler","location":"64230 Naomie Trail","time":"2018-07-14T13:42:07.433Z","enrolled":93703,"book":"https://royal.org","course_url":"http://mario.com"},{"course_title":"Bogisich, Pfeffer and Prohaska","course_number":71057,"instructor":"Derrick Kunze","location":"1815 Thompson Camp","time":"2018-07-14T16:53:16.646Z","enrolled":14548,"book":"http://pearline.net","course_url":"http://geovany.biz"},{"course_title":"Gibson, Mueller and Fisher","course_number":78466,"instructor":"Nolan Gleason","location":"81119 Keaton Springs","time":"2018-07-13T23:45:03.713Z","enrolled":87375,"book":"https://valentina.biz","course_url":"http://davion.com"},{"course_title":"Swift, Reichert and Hintz","course_number":83374,"instructor":"Alfonzo Cummerata","location":"1825 Dasia Rest","time":"2018-07-14T05:00:35.468Z","enrolled":20979,"book":"https://jeanie.biz","course_url":"http://mona.biz"},{"course_title":"Ziemann - Bechtelar","course_number":75629,"instructor":"Ebba Nitzsche II","location":"339 Jacobs Crossing","time":"2018-07-14T07:17:44.205Z","enrolled":92720,"book":"https://margarete.com","course_url":"https://berenice.org"},{"course_title":"Reichert LLC","course_number":60057,"instructor":"Isaac Kohler","location":"069 Christelle Trail","time":"2018-07-14T18:13:17.597Z","enrolled":69483,"book":"http://malinda.biz","course_url":"http://hyman.org"},{"course_title":"Nolan, O'Kon and Botsford","course_number":71202,"instructor":"Caterina Senger","location":"0094 Flavie Oval","time":"2018-07-14T01:41:24.228Z","enrolled":60378,"book":"https://jaquelin.info","course_url":"http://katelynn.name"},{"course_title":"Feeney and Sons","course_number":13621,"instructor":"Evan Kihn","location":"701 Brandi Prairie","time":"2018-07-14T22:40:41.052Z","enrolled":34403,"book":"https://dawn.net","course_url":"http://nellie.info"},{"course_title":"Durgan, Torp and Schamberger","course_number":86407,"instructor":"Ephraim Barrows","location":"6407 Huels Ferry","time":"2018-07-14T21:37:13.831Z","enrolled":94872,"book":"http://carlee.net","course_url":"https://tyshawn.info"},{"course_title":"Hudson - Ruecker","course_number":72426,"instructor":"Alexandre Vandervort","location":"11711 Ora Court","time":"2018-07-14T02:56:04.041Z","enrolled":59756,"book":"https://noelia.org","course_url":"http://melvin.biz"},{"course_title":"Rath - Berge","course_number":72161,"instructor":"Jaqueline Schumm","location":"91559 Hand Court","time":"2018-07-14T03:10:04.812Z","enrolled":79308,"book":"http://armando.com","course_url":"http://hortense.biz"},{"course_title":"Mohr, Halvorson and Sawayn","course_number":6793,"instructor":"Landen Jerde","location":"2488 Kayli Plains","time":"2018-07-14T04:57:24.887Z","enrolled":19202,"book":"https://jaylon.name","course_url":"http://allen.org"},{"course_title":"Murphy, Durgan and Swaniawski","course_number":22216,"instructor":"Gertrude Bosco","location":"314 Reinger Gardens","time":"2018-07-14T14:15:54.857Z","enrolled":14682,"book":"https://franco.org","course_url":"http://nikita.info"},{"course_title":"Bahringer - Bernhard","course_number":15535,"instructor":"Marilie Ondricka","location":"7794 Zulauf Road","time":"2018-07-14T06:58:39.201Z","enrolled":73602,"book":"http://geovanny.info","course_url":"https://janiya.org"},{"course_title":"Greenholt - Bernhard","course_number":285,"instructor":"Juvenal McKenzie","location":"113 VonRueden Wall","time":"2018-07-14T18:40:34.851Z","enrolled":65873,"book":"http://wilhelmine.org","course_url":"http://lindsey.name"},{"course_title":"Reichert, Reilly and Macejkovic","course_number":82736,"instructor":"Jessika Zboncak","location":"3044 Brown Vista","time":"2018-07-14T15:52:44.573Z","enrolled":68788,"book":"https://diana.com","course_url":"http://osvaldo.name"},{"course_title":"Nolan and Sons","course_number":70488,"instructor":"Reanna Weissnat","location":"727 Alphonso Light","time":"2018-07-14T11:19:38.647Z","enrolled":12582,"book":"http://johanna.name","course_url":"https://juwan.info"},{"course_title":"Pfeffer - Gleichner","course_number":8328,"instructor":"Arnulfo Stoltenberg","location":"99613 Domenick Island","time":"2018-07-14T03:20:41.783Z","enrolled":93583,"book":"https://yvonne.name","course_url":"https://hershel.info"},{"course_title":"King - White","course_number":63835,"instructor":"Johnathon Ziemann","location":"21485 Stamm Mountain","time":"2018-07-14T16:36:13.950Z","enrolled":47348,"book":"http://janie.com","course_url":"https://westley.biz"},{"course_title":"Will Group","course_number":96043,"instructor":"Dr. Lavina King","location":"1879 Mitchell Light","time":"2018-07-14T09:23:00.834Z","enrolled":80629,"book":"http://willa.name","course_url":"http://lavern.name"},{"course_title":"Stamm, Schamberger and Bogan","course_number":45917,"instructor":"Leonel O'Connell","location":"2668 Rebecca Square","time":"2018-07-14T13:36:26.042Z","enrolled":68242,"book":"http://pasquale.org","course_url":"http://watson.name"},{"course_title":"Gibson - Terry","course_number":74183,"instructor":"Effie Schaden","location":"629 Jayme Drive","time":"2018-07-14T05:43:20.508Z","enrolled":68113,"book":"http://angie.com","course_url":"http://josh.info"},{"course_title":"Walsh and Sons","course_number":71510,"instructor":"Breana Runolfsson","location":"41461 Veum Circle","time":"2018-07-14T16:59:11.685Z","enrolled":37169,"book":"http://jordon.name","course_url":"https://burnice.com"},{"course_title":"Murray - Morissette","course_number":32354,"instructor":"Mr. Rubie Tillman","location":"359 Hegmann Causeway","time":"2018-07-14T14:09:35.556Z","enrolled":44636,"book":"http://kamryn.name","course_url":"https://deja.info"},{"course_title":"Wilkinson - Predovic","course_number":69076,"instructor":"Dr. Kirstin Champlin","location":"4312 Stroman Crossroad","time":"2018-07-14T13:46:44.662Z","enrolled":60317,"book":"https://hassie.info","course_url":"http://anita.org"},{"course_title":"Satterfield, Lesch and Yost","course_number":82586,"instructor":"Nickolas Glover Jr.","location":"2475 Katlyn Mill","time":"2018-07-14T13:40:22.763Z","enrolled":63219,"book":"http://edmund.info","course_url":"http://grady.name"},{"course_title":"Torphy - Champlin","course_number":37457,"instructor":"Era Konopelski","location":"257 Adolfo Cliff","time":"2018-07-14T18:58:55.260Z","enrolled":49832,"book":"https://preston.net","course_url":"http://katrina.com"},{"course_title":"Feeney Group","course_number":70369,"instructor":"Mr. Clemens Witting","location":"6816 Weston Viaduct","time":"2018-07-14T10:00:45.671Z","enrolled":86825,"book":"http://retha.info","course_url":"https://maurine.biz"},{"course_title":"Hammes - Deckow","course_number":56638,"instructor":"Maymie Harris","location":"7468 Schmitt Heights","time":"2018-07-14T00:59:41.224Z","enrolled":44966,"book":"http://vena.biz","course_url":"https://carol.org"},{"course_title":"Yost - West","course_number":90457,"instructor":"Jovan Rohan PhD","location":"5601 Brice Fork","time":"2018-07-14T11:16:18.573Z","enrolled":31399,"book":"http://kyleigh.org","course_url":"http://alia.org"},{"course_title":"Hamill, Harris and Beer","course_number":90113,"instructor":"Lorenzo Bartoletti","location":"4432 Schoen Park","time":"2018-07-14T10:39:32.511Z","enrolled":76343,"book":"http://orrin.net","course_url":"http://emilia.org"},{"course_title":"Wuckert, Marvin and Hilll","course_number":6705,"instructor":"Olen Bechtelar","location":"856 Brakus Ford","time":"2018-07-14T06:34:05.599Z","enrolled":67782,"book":"https://delores.net","course_url":"http://ruby.name"},{"course_title":"Nader - Abernathy","course_number":69898,"instructor":"Pablo Ondricka","location":"76778 Oral Orchard","time":"2018-07-14T11:56:52.026Z","enrolled":12147,"book":"http://marilie.biz","course_url":"https://katelynn.net"},{"course_title":"O'Conner - Hoppe","course_number":65469,"instructor":"Nolan Cruickshank","location":"35424 Koby Centers","time":"2018-07-14T13:02:09.873Z","enrolled":29123,"book":"http://marilie.info","course_url":"http://tara.net"},{"course_title":"Volkman LLC","course_number":59662,"instructor":"Miss Princess Osinski","location":"84997 Greenfelder Forges","time":"2018-07-14T04:16:23.950Z","enrolled":87816,"book":"https://magnus.net","course_url":"http://kian.name"},{"course_title":"Lueilwitz Group","course_number":27766,"instructor":"Elroy Barton","location":"9986 Yesenia Plain","time":"2018-07-14T02:20:52.765Z","enrolled":14727,"book":"http://alexandrine.com","course_url":"https://sydney.com"},{"course_title":"Hudson Inc","course_number":70219,"instructor":"Arno Heaney","location":"60991 Aliya Cape","time":"2018-07-14T08:19:37.973Z","enrolled":30581,"book":"http://sheila.name","course_url":"https://weston.info"},{"course_title":"Lubowitz Group","course_number":32387,"instructor":"Ashley Blick","location":"478 Nicole Fields","time":"2018-07-13T23:38:14.204Z","enrolled":52342,"book":"https://dorcas.name","course_url":"https://melba.name"},{"course_title":"Herzog and Sons","course_number":51216,"instructor":"Wilton Johnson III","location":"684 Wehner Stravenue","time":"2018-07-14T06:01:59.688Z","enrolled":51052,"book":"http://margot.net","course_url":"http://xavier.net"},{"course_title":"Schamberger - Keebler","course_number":58508,"instructor":"Vincent Kuvalis","location":"5141 Kamryn Underpass","time":"2018-07-14T22:04:52.781Z","enrolled":15031,"book":"https://jazlyn.name","course_url":"http://wilson.org"},{"course_title":"Satterfield - Reichel","course_number":20248,"instructor":"Lillian Roberts","location":"7662 Haylie Meadow","time":"2018-07-14T23:04:21.228Z","enrolled":41583,"book":"https://chandler.org","course_url":"http://jett.info"},{"course_title":"Nitzsche and Sons","course_number":25600,"instructor":"Winona Upton","location":"656 Demario Courts","time":"2018-07-14T19:47:59.009Z","enrolled":58115,"book":"https://mauricio.info","course_url":"https://amie.name"},{"course_title":"Pfannerstill LLC","course_number":7463,"instructor":"Janis Kutch","location":"8277 Rosamond Stravenue","time":"2018-07-14T22:52:54.309Z","enrolled":64113,"book":"https://jose.net","course_url":"https://amelia.com"},{"course_title":"Rippin LLC","course_number":37420,"instructor":"Nia Lehner","location":"45717 Veum Ridges","time":"2018-07-14T16:50:40.329Z","enrolled":48545,"book":"https://bethany.info","course_url":"https://yasmin.com"},{"course_title":"Ondricka Inc","course_number":7060,"instructor":"Florida Satterfield","location":"2203 Jaylan Road","time":"2018-07-14T12:58:49.326Z","enrolled":13742,"book":"https://kasandra.biz","course_url":"https://clotilde.info"},{"course_title":"Johns Inc","course_number":90468,"instructor":"Gino Muller","location":"29019 Quinn Mountain","time":"2018-07-14T12:57:03.755Z","enrolled":36245,"book":"https://chet.info","course_url":"https://taurean.net"},{"course_title":"Schuster, Tremblay and Metz","course_number":47067,"instructor":"Madelyn Bayer","location":"029 Douglas Spring","time":"2018-07-14T16:54:10.309Z","enrolled":56129,"book":"http://mikayla.biz","course_url":"http://yvonne.com"},{"course_title":"Emmerich - Bode","course_number":53758,"instructor":"Jimmy Konopelski","location":"8848 Koelpin Burg","time":"2018-07-14T07:14:06.431Z","enrolled":27541,"book":"https://alexzander.org","course_url":"https://donna.info"},{"course_title":"Klein - Stark","course_number":35030,"instructor":"Ally Wilderman","location":"491 Altenwerth Square","time":"2018-07-14T22:53:30.721Z","enrolled":16934,"book":"http://cristobal.info","course_url":"http://alysa.biz"},{"course_title":"Stiedemann, Will and Cartwright","course_number":90403,"instructor":"Pearline Carroll","location":"55967 Garrison Crescent","time":"2018-07-14T07:22:15.098Z","enrolled":39234,"book":"http://carmen.info","course_url":"http://marques.info"},{"course_title":"Heidenreich LLC","course_number":73680,"instructor":"Daphne Bahringer","location":"356 Anderson Junctions","time":"2018-07-14T02:14:08.779Z","enrolled":48871,"book":"http://erin.com","course_url":"http://rebecca.info"},{"course_title":"Kozey Group","course_number":53938,"instructor":"Ruby Aufderhar Sr.","location":"4027 Johnston Coves","time":"2018-07-14T02:39:28.782Z","enrolled":22607,"book":"https://robyn.info","course_url":"http://abelardo.net"},{"course_title":"O'Hara - Frami","course_number":12575,"instructor":"Tanya Schneider","location":"9794 Hills Drive","time":"2018-07-14T20:41:24.607Z","enrolled":27689,"book":"https://kamren.com","course_url":"http://bella.info"},{"course_title":"Vandervort, Kuvalis and Schimmel","course_number":15243,"instructor":"Mohamed Borer","location":"94156 Sharon Wells","time":"2018-07-14T15:58:45.886Z","enrolled":34670,"book":"http://mazie.com","course_url":"https://florine.name"},{"course_title":"Tremblay and Sons","course_number":54722,"instructor":"Clark Sporer","location":"0871 Prohaska Knoll","time":"2018-07-14T02:13:29.620Z","enrolled":16351,"book":"http://florine.info","course_url":"http://audie.biz"},{"course_title":"Gaylord Group","course_number":97395,"instructor":"Ima Kiehn","location":"4094 Rosemarie Loop","time":"2018-07-14T10:25:52.835Z","enrolled":50785,"book":"http://meda.info","course_url":"https://efrain.info"},{"course_title":"Hettinger and Sons","course_number":40088,"instructor":"Glenna Hudson","location":"949 Ezra Burgs","time":"2018-07-14T15:49:06.455Z","enrolled":37592,"book":"http://susanna.name","course_url":"https://kiera.name"},{"course_title":"Berge - Carter","course_number":21526,"instructor":"Mr. Tobin Emard","location":"062 Flatley Lake","time":"2018-07-14T05:26:37.651Z","enrolled":43625,"book":"http://lia.info","course_url":"http://ford.name"},{"course_title":"Brekke Inc","course_number":62401,"instructor":"Clara Douglas","location":"92584 Nannie Rue","time":"2018-07-14T12:08:28.684Z","enrolled":79279,"book":"http://kevon.org","course_url":"https://rashad.org"},{"course_title":"Gottlieb, Wisoky and Baumbach","course_number":77278,"instructor":"Eulalia Terry","location":"807 Citlalli Grove","time":"2018-07-14T23:08:15.434Z","enrolled":89629,"book":"https://raquel.org","course_url":"https://buford.com"},{"course_title":"Green - Emmerich","course_number":98717,"instructor":"Meaghan Abernathy","location":"2428 Dagmar Motorway","time":"2018-07-14T07:59:24.195Z","enrolled":81732,"book":"http://ross.biz","course_url":"https://cristina.info"},{"course_title":"Larson LLC","course_number":92892,"instructor":"Fermin Reinger","location":"04787 Nora Divide","time":"2018-07-14T02:58:29.540Z","enrolled":45147,"book":"https://edgar.info","course_url":"https://claudine.org"},{"course_title":"Purdy - Watsica","course_number":20913,"instructor":"Mr. Chelsey Treutel","location":"2179 Hahn Mount","time":"2018-07-14T03:51:51.180Z","enrolled":18218,"book":"https://mario.biz","course_url":"https://esteban.name"},{"course_title":"Bailey - Fahey","course_number":30881,"instructor":"Vincenza Wiza I","location":"8007 Kelly Light","time":"2018-07-14T20:38:14.500Z","enrolled":1310,"book":"http://jamel.com","course_url":"https://edmund.com"},{"course_title":"Heathcote, Cole and Heidenreich","course_number":90093,"instructor":"Dr. Millie Keeling","location":"64823 Parisian Ville","time":"2018-07-14T15:41:36.096Z","enrolled":98349,"book":"http://devon.info","course_url":"https://boyd.org"},{"course_title":"Collins Inc","course_number":96059,"instructor":"Miss Kennedi McLaughlin","location":"061 Bins Village","time":"2018-07-13T23:33:01.456Z","enrolled":12451,"book":"http://beth.net","course_url":"https://jeffery.org"},{"course_title":"Bosco Group","course_number":22572,"instructor":"Kallie Spinka","location":"661 Pouros Plaza","time":"2018-07-14T14:06:09.574Z","enrolled":87358,"book":"http://jarrod.net","course_url":"https://shanny.info"},{"course_title":"Baumbach, Labadie and Gerlach","course_number":31436,"instructor":"Miss Sean Towne","location":"86097 Marvin Way","time":"2018-07-14T09:04:43.149Z","enrolled":11807,"book":"https://kiera.org","course_url":"https://eloisa.net"},{"course_title":"Fay - Dickens","course_number":56115,"instructor":"Ezra Adams II","location":"7897 Flatley Mountain","time":"2018-07-14T18:41:24.232Z","enrolled":36890,"book":"http://beryl.name","course_url":"http://lavina.biz"},{"course_title":"Kris and Sons","course_number":54425,"instructor":"Monica Altenwerth","location":"12763 Tianna Court","time":"2018-07-14T09:50:15.316Z","enrolled":16129,"book":"http://rosalinda.org","course_url":"http://dorothea.org"},{"course_title":"Spinka Group","course_number":75543,"instructor":"Miss Chaz Mitchell","location":"9543 Abbott Way","time":"2018-07-14T00:32:48.331Z","enrolled":97162,"book":"https://orland.net","course_url":"https://cornell.com"},{"course_title":"Gerhold LLC","course_number":36348,"instructor":"Mrs. Fabiola Skiles","location":"9062 Richard Island","time":"2018-07-14T10:06:11.396Z","enrolled":60199,"book":"http://cassandra.info","course_url":"https://fritz.org"},{"course_title":"VonRueden - Schiller","course_number":28539,"instructor":"Mae Rempel","location":"686 Moen Drive","time":"2018-07-14T17:20:28.462Z","enrolled":8204,"book":"http://don.org","course_url":"https://carson.biz"},{"course_title":"Dietrich - Ortiz","course_number":8862,"instructor":"Arnoldo Mosciski","location":"6085 Walker Port","time":"2018-07-14T21:33:44.214Z","enrolled":20339,"book":"https://sadye.com","course_url":"https://dashawn.net"},{"course_title":"Powlowski Inc","course_number":69245,"instructor":"Otis Grimes","location":"95962 Sammy Divide","time":"2018-07-14T16:43:58.886Z","enrolled":51276,"book":"https://marlen.name","course_url":"http://presley.name"},{"course_title":"Becker, Gerlach and Jast","course_number":32395,"instructor":"Brenden Kertzmann","location":"613 Cummerata Way","time":"2018-07-14T12:57:07.327Z","enrolled":87919,"book":"https://lessie.name","course_url":"http://natalie.info"},{"course_title":"Feil Inc","course_number":76309,"instructor":"Jack Klein","location":"32354 Klocko Port","time":"2018-07-14T04:37:48.425Z","enrolled":61862,"book":"http://claudia.com","course_url":"https://adolfo.net"},{"course_title":"Bayer - Ernser","course_number":25651,"instructor":"Nyah Schumm","location":"567 Collins Squares","time":"2018-07-14T10:56:30.477Z","enrolled":36642,"book":"https://federico.org","course_url":"https://colten.net"},{"course_title":"Waters, Lindgren and Emmerich","course_number":53874,"instructor":"Leopold Reichel","location":"811 Dicki Island","time":"2018-07-13T23:32:36.765Z","enrolled":86455,"book":"http://david.name","course_url":"http://justus.com"},{"course_title":"Daniel, Green and Conroy","course_number":89433,"instructor":"Aiden Johnson Sr.","location":"38612 Stracke Avenue","time":"2018-07-14T15:28:43.434Z","enrolled":26084,"book":"http://marjolaine.net","course_url":"http://frederick.info"},{"course_title":"Sipes, Wiegand and Corkery","course_number":58842,"instructor":"Aliya Ferry","location":"4876 Hildegard Locks","time":"2018-07-14T06:04:15.948Z","enrolled":48386,"book":"http://heather.org","course_url":"http://kris.com"},{"course_title":"Simonis and Sons","course_number":67876,"instructor":"Katherine O'Keefe","location":"2064 Moses Drive","time":"2018-07-14T11:35:42.569Z","enrolled":3621,"book":"http://blaise.com","course_url":"http://kelsie.name"},{"course_title":"Homenick, Corwin and Berge","course_number":99923,"instructor":"Johann Kilback","location":"496 Cary Parkway","time":"2018-07-14T08:06:25.129Z","enrolled":74569,"book":"http://casimer.com","course_url":"https://axel.name"},{"course_title":"Boyle - Muller","course_number":24426,"instructor":"Myra Friesen","location":"938 Leannon Highway","time":"2018-07-14T11:59:11.633Z","enrolled":14065,"book":"http://brad.name","course_url":"http://litzy.com"},{"course_title":"Hodkiewicz - Wilkinson","course_number":94771,"instructor":"Hannah Bogan","location":"496 Jaskolski Oval","time":"2018-07-14T00:14:08.637Z","enrolled":34359,"book":"https://berta.biz","course_url":"https://jayson.biz"},{"course_title":"Flatley - Kuhn","course_number":65789,"instructor":"Lorenzo Fritsch","location":"5022 Rosalia Loop","time":"2018-07-14T17:23:44.249Z","enrolled":84738,"book":"http://taryn.biz","course_url":"https://skyla.biz"},{"course_title":"Padberg Group","course_number":44153,"instructor":"Dylan Hettinger","location":"6935 Veum Overpass","time":"2018-07-14T20:04:50.104Z","enrolled":68844,"book":"http://clarabelle.name","course_url":"http://catherine.org"},{"course_title":"Hackett Group","course_number":255,"instructor":"Kay Nienow","location":"832 Frederick Vista","time":"2018-07-14T20:59:48.048Z","enrolled":80504,"book":"http://dannie.info","course_url":"https://stacey.biz"},{"course_title":"Romaguera Inc","course_number":28593,"instructor":"Raven Koepp","location":"0342 Noemie Springs","time":"2018-07-14T15:34:41.945Z","enrolled":96828,"book":"https://damien.biz","course_url":"http://lucile.org"},{"course_title":"Ledner and Sons","course_number":45617,"instructor":"Elise Nader","location":"913 Metz Creek","time":"2018-07-14T13:04:18.843Z","enrolled":74992,"book":"http://evert.net","course_url":"http://michaela.net"},{"course_title":"Lemke and Sons","course_number":25539,"instructor":"Dan Rempel II","location":"7058 Emmanuel Parkways","time":"2018-07-14T07:23:57.288Z","enrolled":66717,"book":"https://spencer.name","course_url":"https://helena.net"},{"course_title":"Bogan LLC","course_number":55538,"instructor":"Mrs. Jerome Kerluke","location":"04226 Moen Fort","time":"2018-07-14T22:53:40.515Z","enrolled":26081,"book":"https://meta.info","course_url":"http://lucinda.org"},{"course_title":"Murphy, Jakubowski and Hamill","course_number":56642,"instructor":"Cordelia Reichel","location":"745 Claudie Forest","time":"2018-07-14T07:53:36.466Z","enrolled":49574,"book":"https://angelina.info","course_url":"http://ashlynn.info"},{"course_title":"Predovic, Hagenes and Reilly","course_number":14976,"instructor":"Mrs. Turner Wunsch","location":"22033 Romaguera Corners","time":"2018-07-14T21:45:10.820Z","enrolled":33857,"book":"https://rodger.info","course_url":"http://tara.net"},{"course_title":"Thiel - Cole","course_number":62990,"instructor":"Mrs. Gideon Stroman","location":"54353 Maverick View","time":"2018-07-14T11:24:44.000Z","enrolled":20541,"book":"http://noemy.org","course_url":"http://retta.biz"},{"course_title":"Lind, Windler and Adams","course_number":73522,"instructor":"Felipa Ferry","location":"40129 Eusebio Alley","time":"2018-07-14T02:51:18.320Z","enrolled":33997,"book":"http://sam.name","course_url":"https://odell.biz"},{"course_title":"Hickle Inc","course_number":64777,"instructor":"Earl Kling","location":"0912 Gibson Points","time":"2018-07-14T10:03:19.900Z","enrolled":54611,"book":"https://zachery.org","course_url":"https://willow.name"},{"course_title":"Dibbert Inc","course_number":44109,"instructor":"Nasir Conn","location":"51970 Bayer Roads","time":"2018-07-14T18:40:16.286Z","enrolled":17572,"book":"http://jaylen.biz","course_url":"https://celestino.name"},{"course_title":"Bednar - McDermott","course_number":72619,"instructor":"Ms. Gerda Schiller","location":"12754 Heloise Pass","time":"2018-07-14T13:33:11.718Z","enrolled":20025,"book":"https://lempi.info","course_url":"http://lauryn.org"},{"course_title":"Beier Inc","course_number":96715,"instructor":"Therese Conn","location":"967 Aniyah Views","time":"2018-07-14T00:20:49.562Z","enrolled":81584,"book":"http://ted.biz","course_url":"http://lura.org"},{"course_title":"McKenzie, Brakus and Bernier","course_number":93711,"instructor":"Josephine Zieme","location":"0594 Brad Drive","time":"2018-07-14T04:41:25.816Z","enrolled":54279,"book":"http://treva.com","course_url":"http://amira.net"},{"course_title":"Schiller - Macejkovic","course_number":86580,"instructor":"Ashly Heathcote V","location":"1917 Bruen Unions","time":"2018-07-14T18:58:21.286Z","enrolled":62774,"book":"https://silas.info","course_url":"https://davion.name"},{"course_title":"Schaefer - Kris","course_number":51521,"instructor":"Porter Boehm","location":"9615 Howe Roads","time":"2018-07-14T16:57:13.369Z","enrolled":53906,"book":"http://constantin.name","course_url":"http://augustus.name"},{"course_title":"Labadie Group","course_number":91403,"instructor":"Zoila Hand","location":"166 Tyrese Squares","time":"2018-07-14T19:47:33.164Z","enrolled":96191,"book":"https://montana.biz","course_url":"http://brando.name"},{"course_title":"Balistreri and Sons","course_number":55440,"instructor":"Dr. Lolita Trantow","location":"871 Dooley Shoals","time":"2018-07-14T08:46:52.271Z","enrolled":86249,"book":"https://hudson.com","course_url":"https://dillan.net"},{"course_title":"Ankunding Inc","course_number":83285,"instructor":"Elmore Weber","location":"1124 Lesch Point","time":"2018-07-14T06:05:14.882Z","enrolled":86943,"book":"https://minerva.name","course_url":"https://jeffry.info"},{"course_title":"Will - Jones","course_number":17152,"instructor":"Mike Johnston","location":"16093 Volkman Garden","time":"2018-07-14T18:26:52.900Z","enrolled":5301,"book":"https://levi.name","course_url":"http://kayley.org"},{"course_title":"VonRueden, Sipes and Miller","course_number":19199,"instructor":"Devin Towne","location":"589 Jakubowski Shores","time":"2018-07-14T05:30:48.038Z","enrolled":96397,"book":"https://manuel.name","course_url":"https://jarrell.com"},{"course_title":"Stroman - Kerluke","course_number":43209,"instructor":"Santina Morar","location":"564 Frank Plain","time":"2018-07-14T10:49:14.711Z","enrolled":37389,"book":"https://kathryn.org","course_url":"http://karson.net"},{"course_title":"Runte, Hodkiewicz and Schmidt","course_number":44870,"instructor":"Patricia Prohaska","location":"482 Casper Fields","time":"2018-07-14T20:24:19.397Z","enrolled":56845,"book":"https://zachery.net","course_url":"http://sedrick.com"},{"course_title":"Mosciski - Fay","course_number":29302,"instructor":"Carmelo Skiles","location":"229 Mohamed Forest","time":"2018-07-14T10:20:44.057Z","enrolled":19299,"book":"http://annabell.info","course_url":"https://magnus.org"},{"course_title":"Robel Inc","course_number":6809,"instructor":"Autumn Johnson","location":"209 Rico Lake","time":"2018-07-14T20:38:47.401Z","enrolled":94102,"book":"http://daphnee.info","course_url":"https://adah.biz"},{"course_title":"Lockman - Corwin","course_number":97762,"instructor":"Madisen McLaughlin","location":"91867 Will Wall","time":"2018-07-14T10:31:31.538Z","enrolled":27859,"book":"https://elwin.biz","course_url":"http://brandyn.biz"},{"course_title":"McLaughlin Inc","course_number":65023,"instructor":"Edwina Gusikowski","location":"77550 William Ports","time":"2018-07-14T12:16:50.351Z","enrolled":89934,"book":"https://jesus.org","course_url":"https://hobart.org"},{"course_title":"Labadie Group","course_number":16909,"instructor":"Moriah O'Connell","location":"612 Sonya Wall","time":"2018-07-14T13:13:04.681Z","enrolled":13001,"book":"https://liza.info","course_url":"http://oran.com"},{"course_title":"Renner - Olson","course_number":24573,"instructor":"Randal Hickle","location":"083 Collins Garden","time":"2018-07-14T23:01:51.227Z","enrolled":35740,"book":"http://dario.info","course_url":"https://kiel.name"},{"course_title":"Willms LLC","course_number":85397,"instructor":"Sterling O'Reilly","location":"78368 Sipes Forks","time":"2018-07-14T22:21:11.545Z","enrolled":24280,"book":"http://tyshawn.org","course_url":"https://armando.info"},{"course_title":"Dicki, Wyman and Mraz","course_number":25522,"instructor":"Waino Stokes","location":"10487 Kylee Plains","time":"2018-07-14T15:47:38.744Z","enrolled":40064,"book":"https://maureen.com","course_url":"https://hoyt.net"},{"course_title":"Swaniawski, Boehm and Kuphal","course_number":89327,"instructor":"Lurline Hills MD","location":"524 Marie Ports","time":"2018-07-14T17:24:43.236Z","enrolled":87085,"book":"http://harmony.net","course_url":"https://marian.name"},{"course_title":"Ruecker - Skiles","course_number":70942,"instructor":"May Reichel","location":"5080 Toy Green","time":"2018-07-14T22:00:17.484Z","enrolled":72972,"book":"https://robbie.info","course_url":"http://shawna.com"},{"course_title":"Boyer Inc","course_number":54744,"instructor":"Perry Lueilwitz","location":"9007 Kyleigh Freeway","time":"2018-07-14T02:36:40.872Z","enrolled":68038,"book":"https://isai.name","course_url":"https://tamia.info"},{"course_title":"Grady - Tremblay","course_number":74383,"instructor":"Dameon Hayes","location":"29576 Ferry Rue","time":"2018-07-14T02:03:07.494Z","enrolled":44398,"book":"http://fredrick.name","course_url":"https://elliott.biz"},{"course_title":"Lind Group","course_number":31567,"instructor":"Alysa Ferry","location":"96138 Stewart Ranch","time":"2018-07-14T02:44:51.134Z","enrolled":80799,"book":"https://amani.org","course_url":"http://lydia.net"},{"course_title":"Hammes Group","course_number":50833,"instructor":"Cathrine Ryan","location":"3123 Smith Prairie","time":"2018-07-14T10:15:58.680Z","enrolled":49614,"book":"http://abigail.net","course_url":"http://amber.net"},{"course_title":"Wilderman - Kulas","course_number":65449,"instructor":"Eddie Gulgowski","location":"31627 Maggio Village","time":"2018-07-14T07:39:48.491Z","enrolled":26510,"book":"http://annie.com","course_url":"https://gina.com"},{"course_title":"Larkin, Gibson and VonRueden","course_number":17711,"instructor":"Lewis Kutch","location":"38448 Linda Passage","time":"2018-07-14T18:45:22.550Z","enrolled":73369,"book":"http://layne.biz","course_url":"https://paige.name"},{"course_title":"Reilly - Wilkinson","course_number":64150,"instructor":"Kamron Robel","location":"2654 Russ Expressway","time":"2018-07-14T16:12:54.020Z","enrolled":31089,"book":"http://tessie.com","course_url":"http://kayden.com"},{"course_title":"Luettgen - Simonis","course_number":33607,"instructor":"Johanna Osinski","location":"05804 Aditya View","time":"2018-07-13T23:33:53.463Z","enrolled":32414,"book":"https://lupe.name","course_url":"http://malvina.org"},{"course_title":"Swift - Nolan","course_number":29873,"instructor":"Emanuel Lind","location":"455 Leannon Haven","time":"2018-07-14T13:47:00.199Z","enrolled":67126,"book":"http://josiane.biz","course_url":"http://julian.net"},{"course_title":"Gottlieb - Weber","course_number":44224,"instructor":"Miss Khalid Murray","location":"7408 Kolby Causeway","time":"2018-07-14T11:56:19.772Z","enrolled":33016,"book":"https://zelda.net","course_url":"http://orville.net"},{"course_title":"Collins - Swaniawski","course_number":30088,"instructor":"Lucious VonRueden","location":"0536 Felton Course","time":"2018-07-14T01:25:06.727Z","enrolled":8353,"book":"https://declan.net","course_url":"http://freeman.biz"},{"course_title":"Schimmel, Gibson and Lebsack","course_number":47875,"instructor":"Rocky Sanford","location":"9126 Everardo Forks","time":"2018-07-14T01:01:33.474Z","enrolled":82331,"book":"http://jakob.info","course_url":"http://olin.com"},{"course_title":"Mraz - Abbott","course_number":61253,"instructor":"Fidel Hane","location":"928 Anthony Island","time":"2018-07-14T16:15:23.809Z","enrolled":64116,"book":"https://jeanne.name","course_url":"http://magdalen.com"},{"course_title":"Hansen Inc","course_number":11662,"instructor":"Stanford Erdman","location":"85919 Branson Glens","time":"2018-07-14T11:12:26.359Z","enrolled":70857,"book":"http://irving.org","course_url":"https://cassandra.info"},{"course_title":"Satterfield - Hansen","course_number":20188,"instructor":"Archibald Reilly","location":"86252 Carolanne Station","time":"2018-07-14T08:56:48.009Z","enrolled":27333,"book":"https://isabel.org","course_url":"https://luigi.info"},{"course_title":"Strosin, Gerhold and Mitchell","course_number":88193,"instructor":"Cory Murphy","location":"8818 Leif Mountains","time":"2018-07-14T04:58:16.496Z","enrolled":59167,"book":"http://brenda.info","course_url":"http://rusty.org"},{"course_title":"Mosciski, Auer and Schneider","course_number":90084,"instructor":"Gino Leffler","location":"4432 Doyle Stravenue","time":"2018-07-14T16:07:12.755Z","enrolled":29598,"book":"http://antoinette.net","course_url":"http://marjory.com"},{"course_title":"Brakus - Bednar","course_number":141,"instructor":"Jeanne Wiegand","location":"8561 Vincenzo Key","time":"2018-07-14T02:35:55.641Z","enrolled":71964,"book":"https://giovanna.net","course_url":"http://alexanne.name"},{"course_title":"Reilly, Bayer and Block","course_number":59238,"instructor":"Frankie Tremblay","location":"668 Jacobi Street","time":"2018-07-14T21:56:10.937Z","enrolled":41485,"book":"http://austyn.info","course_url":"https://jimmy.com"},{"course_title":"Ferry - Koepp","course_number":24624,"instructor":"Edwina Langosh","location":"0199 Colin Shores","time":"2018-07-14T19:44:45.775Z","enrolled":6093,"book":"http://elmira.net","course_url":"http://chance.info"},{"course_title":"Krajcik - Keebler","course_number":71422,"instructor":"Norval Torp DVM","location":"38952 Mckenna Rapids","time":"2018-07-14T14:38:10.082Z","enrolled":16515,"book":"http://jeffrey.biz","course_url":"https://ashly.net"},{"course_title":"Klein - Boehm","course_number":87949,"instructor":"Ms. Verna Gulgowski","location":"99170 Haylee Port","time":"2018-07-14T13:52:21.372Z","enrolled":46770,"book":"https://emil.info","course_url":"http://kailyn.name"},{"course_title":"Wolff Group","course_number":19578,"instructor":"Bruce Boehm","location":"22025 Frederick Estate","time":"2018-07-14T21:45:50.693Z","enrolled":16450,"book":"http://angelica.org","course_url":"http://hobart.info"},{"course_title":"O'Conner, Harris and Daugherty","course_number":92261,"instructor":"Vivien Breitenberg","location":"73843 Stark Extension","time":"2018-07-14T07:47:58.157Z","enrolled":54875,"book":"https://cheyenne.net","course_url":"https://mohamed.net"},{"course_title":"Schneider - Jacobs","course_number":80253,"instructor":"Filomena Jacobson","location":"62667 Royal Mountain","time":"2018-07-14T09:37:01.493Z","enrolled":87830,"book":"https://fredrick.info","course_url":"http://kaitlin.name"},{"course_title":"Nicolas, Labadie and Daniel","course_number":80723,"instructor":"Sean Block","location":"07947 Heber Path","time":"2018-07-14T09:25:01.559Z","enrolled":51131,"book":"https://filiberto.name","course_url":"https://vincenzo.name"},{"course_title":"Dickens Inc","course_number":54849,"instructor":"Joesph Ruecker","location":"044 Muriel Course","time":"2018-07-14T02:45:01.942Z","enrolled":47767,"book":"https://lilliana.net","course_url":"https://edd.org"},{"course_title":"Bahringer - Sipes","course_number":91492,"instructor":"Zora Abernathy","location":"967 Alexandria Hills","time":"2018-07-14T18:05:28.307Z","enrolled":5650,"book":"https://montana.biz","course_url":"https://marlene.net"},{"course_title":"Kautzer - Denesik","course_number":89052,"instructor":"Amparo Walsh","location":"34224 Lolita Locks","time":"2018-07-14T02:02:16.972Z","enrolled":27107,"book":"https://catherine.name","course_url":"https://arjun.biz"},{"course_title":"Marks LLC","course_number":5879,"instructor":"Bert Lind","location":"05909 Reilly Fort","time":"2018-07-14T12:49:59.115Z","enrolled":60216,"book":"https://connor.com","course_url":"http://minnie.info"},{"course_title":"Kris, Kessler and Feil","course_number":56415,"instructor":"Deanna Jacobi","location":"55551 Haley Ford","time":"2018-07-14T00:34:21.689Z","enrolled":97457,"book":"http://dante.info","course_url":"http://derick.org"},{"course_title":"Wintheiser and Sons","course_number":78531,"instructor":"Estefania Jacobi","location":"45758 Trantow Coves","time":"2018-07-14T16:10:24.646Z","enrolled":77777,"book":"http://karson.name","course_url":"https://bailee.net"},{"course_title":"Mraz Group","course_number":62356,"instructor":"Nasir Romaguera","location":"32381 Weber Trail","time":"2018-07-14T09:39:16.176Z","enrolled":25432,"book":"https://alfredo.name","course_url":"https://raegan.org"},{"course_title":"Christiansen, Moen and Carroll","course_number":59255,"instructor":"Naomie Bins","location":"237 Rice Row","time":"2018-07-14T16:45:06.714Z","enrolled":96096,"book":"http://earline.com","course_url":"https://pauline.info"},{"course_title":"Kovacek Group","course_number":88517,"instructor":"Laron Zulauf","location":"79949 Mante Shores","time":"2018-07-14T18:16:49.767Z","enrolled":40471,"book":"https://deontae.org","course_url":"http://savanah.biz"},{"course_title":"Pacocha, Bosco and Hammes","course_number":9026,"instructor":"Arvilla Rosenbaum V","location":"6354 Rodrigo Tunnel","time":"2018-07-14T00:03:01.907Z","enrolled":73702,"book":"http://hershel.org","course_url":"http://aryanna.biz"},{"course_title":"Watsica - Wunsch","course_number":74601,"instructor":"Mozell Williamson","location":"4102 Boyle Vista","time":"2018-07-14T13:27:44.628Z","enrolled":55549,"book":"http://alexie.info","course_url":"https://sylvia.biz"},{"course_title":"Glover, Gulgowski and Jenkins","course_number":72027,"instructor":"Dr. Minerva Quitzon","location":"8695 Roberto Ways","time":"2018-07-14T17:08:49.611Z","enrolled":88876,"book":"https://mazie.com","course_url":"https://daniela.name"},{"course_title":"Kuvalis - Larkin","course_number":34841,"instructor":"Jeromy Schultz","location":"46847 Godfrey Crescent","time":"2018-07-14T05:45:42.052Z","enrolled":7546,"book":"https://elsa.name","course_url":"http://garrett.name"},{"course_title":"Marks, Renner and Blick","course_number":78337,"instructor":"Francesca Ledner","location":"8536 Ila Landing","time":"2018-07-14T03:23:36.411Z","enrolled":86266,"book":"https://boris.name","course_url":"http://alycia.com"},{"course_title":"Schulist Inc","course_number":24374,"instructor":"Turner Runte","location":"1436 Tillman Drive","time":"2018-07-14T12:22:56.133Z","enrolled":62497,"book":"http://ibrahim.name","course_url":"https://jeremie.info"},{"course_title":"Toy, Breitenberg and Kovacek","course_number":17900,"instructor":"Lolita Bradtke II","location":"3338 Prohaska Skyway","time":"2018-07-14T20:17:35.252Z","enrolled":14573,"book":"https://lexi.org","course_url":"https://bill.net"},{"course_title":"Runte, Hayes and Durgan","course_number":30337,"instructor":"Kiarra Kohler","location":"78153 Kulas Shoal","time":"2018-07-14T05:29:59.584Z","enrolled":75544,"book":"http://vince.com","course_url":"https://kiel.info"},{"course_title":"Watsica - Kautzer","course_number":61432,"instructor":"Kendrick Waelchi","location":"17559 Gibson Well","time":"2018-07-14T18:24:54.141Z","enrolled":33025,"book":"https://adela.net","course_url":"http://carmine.net"},{"course_title":"Rempel LLC","course_number":37233,"instructor":"Isaiah Stokes","location":"385 Kacey Shoal","time":"2018-07-14T10:20:57.990Z","enrolled":99088,"book":"https://jena.net","course_url":"http://darron.info"},{"course_title":"Sauer - Smith","course_number":5566,"instructor":"Barton Hickle","location":"936 Rosalinda Stream","time":"2018-07-13T23:35:25.195Z","enrolled":36002,"book":"https://charlie.name","course_url":"https://brianne.net"},{"course_title":"Pagac LLC","course_number":12395,"instructor":"Kieran Wilkinson","location":"283 Gleichner Plains","time":"2018-07-14T03:49:19.591Z","enrolled":45609,"book":"http://christelle.com","course_url":"https://kelton.info"},{"course_title":"Sawayn - Klocko","course_number":94143,"instructor":"Kirk Hettinger","location":"884 Block Rapids","time":"2018-07-14T01:15:44.309Z","enrolled":64103,"book":"https://mitchel.net","course_url":"https://michel.biz"},{"course_title":"DuBuque, Dietrich and Altenwerth","course_number":95429,"instructor":"Etha Glover","location":"261 Damian Cape","time":"2018-07-14T13:29:33.078Z","enrolled":84310,"book":"http://lorenz.biz","course_url":"https://katarina.com"},{"course_title":"Leannon - Prohaska","course_number":69509,"instructor":"Isabelle Gleichner","location":"1878 Wisoky Estates","time":"2018-07-14T10:00:20.683Z","enrolled":434,"book":"http://brad.name","course_url":"http://timmothy.com"},{"course_title":"Gusikowski - Berge","course_number":74601,"instructor":"Laverna Ferry","location":"5512 Jan Park","time":"2018-07-14T03:16:38.399Z","enrolled":70475,"book":"http://mireille.name","course_url":"http://stevie.info"},{"course_title":"Franecki - Gleason","course_number":41930,"instructor":"Rubye Abernathy","location":"1783 Osinski Locks","time":"2018-07-14T17:03:00.678Z","enrolled":86974,"book":"http://audie.info","course_url":"http://kiana.net"},{"course_title":"Rath - Kling","course_number":3705,"instructor":"Edison Waelchi","location":"3871 Claudie Roads","time":"2018-07-14T12:34:25.375Z","enrolled":14295,"book":"http://marquis.name","course_url":"http://loma.biz"},{"course_title":"Gorczany, Jaskolski and Sipes","course_number":47978,"instructor":"Eulalia Metz","location":"353 Gleason Knolls","time":"2018-07-14T15:14:30.154Z","enrolled":16379,"book":"http://camren.net","course_url":"https://rylan.net"},{"course_title":"Marks Group","course_number":82223,"instructor":"Dr. Ciara Kunze","location":"86620 Carlotta Estate","time":"2018-07-14T12:33:44.676Z","enrolled":52263,"book":"http://malinda.biz","course_url":"http://mac.org"},{"course_title":"Larson, Emmerich and Morar","course_number":24205,"instructor":"Mrs. Celestino Jast","location":"09710 Carter Summit","time":"2018-07-14T10:04:38.801Z","enrolled":70222,"book":"https://demarco.com","course_url":"https://nicolette.biz"},{"course_title":"Christiansen, Jast and Wiegand","course_number":12141,"instructor":"Darrell Kassulke","location":"0059 Feil Villages","time":"2018-07-14T02:57:09.292Z","enrolled":49134,"book":"http://eunice.name","course_url":"https://jannie.name"},{"course_title":"Kulas, Stiedemann and Corwin","course_number":89479,"instructor":"Miguel Cruickshank","location":"5228 Pouros Extension","time":"2018-07-14T10:42:52.886Z","enrolled":48945,"book":"http://joelle.net","course_url":"http://jaron.net"},{"course_title":"Daniel Group","course_number":59861,"instructor":"Lester Windler","location":"3611 Koch Mountain","time":"2018-07-14T20:31:32.972Z","enrolled":53211,"book":"http://ewald.com","course_url":"http://stanley.name"},{"course_title":"Prosacco, Trantow and Kohler","course_number":30134,"instructor":"Dayana Schuppe","location":"699 Huels Mount","time":"2018-07-14T04:18:00.111Z","enrolled":82470,"book":"http://dannie.biz","course_url":"http://santos.com"},{"course_title":"Zieme LLC","course_number":88957,"instructor":"Miss Charlene Parisian","location":"99168 Heller Mountains","time":"2018-07-14T06:43:55.588Z","enrolled":81934,"book":"http://mariana.biz","course_url":"http://annie.com"},{"course_title":"Emmerich Group","course_number":57859,"instructor":"Adrian Haag MD","location":"9153 Kassulke Crossroad","time":"2018-07-14T20:28:04.217Z","enrolled":79549,"book":"https://reynold.biz","course_url":"http://price.com"},{"course_title":"Bosco - Strosin","course_number":76191,"instructor":"Dr. Vito Ratke","location":"57496 Weston Shoals","time":"2018-07-14T15:43:22.974Z","enrolled":31386,"book":"http://leo.org","course_url":"http://marcia.org"},{"course_title":"Hoppe, Stiedemann and Price","course_number":54139,"instructor":"Verdie Mayert","location":"24718 Rowan Cove","time":"2018-07-14T04:59:09.706Z","enrolled":84133,"book":"https://kiley.org","course_url":"http://roxane.info"},{"course_title":"Boyer - Swaniawski","course_number":14747,"instructor":"Ellen Gleichner","location":"82527 Kuhn Bypass","time":"2018-07-14T06:57:25.664Z","enrolled":56085,"book":"http://katherine.org","course_url":"http://fabiola.net"},{"course_title":"Deckow - Moen","course_number":44618,"instructor":"Dillan Heidenreich","location":"5922 Allan Ford","time":"2018-07-14T10:39:39.255Z","enrolled":41580,"book":"https://terry.net","course_url":"https://cristopher.biz"},{"course_title":"Russel - Treutel","course_number":22495,"instructor":"Taurean Kuvalis","location":"0247 Predovic Groves","time":"2018-07-14T07:06:47.904Z","enrolled":45457,"book":"http://hildegard.net","course_url":"https://alden.org"},{"course_title":"Dicki Group","course_number":96756,"instructor":"Crystal Satterfield","location":"4541 Balistreri Mount","time":"2018-07-14T05:00:01.238Z","enrolled":46982,"book":"https://walter.org","course_url":"http://lesly.net"},{"course_title":"Klein - McKenzie","course_number":33273,"instructor":"Haleigh Littel","location":"9108 Kacey Roads","time":"2018-07-13T23:49:25.267Z","enrolled":72652,"book":"http://hiram.com","course_url":"https://joan.org"},{"course_title":"Considine - Wehner","course_number":81294,"instructor":"Lukas Hyatt","location":"00128 Bradtke Shoals","time":"2018-07-14T15:04:47.074Z","enrolled":27499,"book":"http://leatha.info","course_url":"https://leif.name"},{"course_title":"Aufderhar and Sons","course_number":98629,"instructor":"Kiarra Crooks MD","location":"0716 Breitenberg Forest","time":"2018-07-14T13:49:28.898Z","enrolled":75087,"book":"http://thad.info","course_url":"https://jennie.info"},{"course_title":"Hirthe - Stroman","course_number":6172,"instructor":"Adalberto Nader II","location":"82204 Juston Greens","time":"2018-07-14T15:49:23.440Z","enrolled":74035,"book":"https://korbin.info","course_url":"http://mabel.org"},{"course_title":"Borer - Terry","course_number":67279,"instructor":"Ida Medhurst","location":"987 Wilderman Lights","time":"2018-07-14T11:14:10.176Z","enrolled":90286,"book":"https://nolan.org","course_url":"http://selmer.info"},{"course_title":"Friesen Group","course_number":12353,"instructor":"Norris Gerhold","location":"101 Morar Dam","time":"2018-07-14T13:51:06.396Z","enrolled":37977,"book":"http://bridgette.org","course_url":"http://tiara.name"},{"course_title":"Upton and Sons","course_number":14390,"instructor":"Cruz O'Reilly","location":"94533 Kutch Cliff","time":"2018-07-14T16:25:50.538Z","enrolled":91183,"book":"http://marlin.biz","course_url":"http://oleta.biz"},{"course_title":"Blick - Upton","course_number":340,"instructor":"Keagan Stroman","location":"6107 Tyrel Walk","time":"2018-07-14T20:07:21.594Z","enrolled":70888,"book":"http://leola.net","course_url":"http://aida.net"},{"course_title":"Langworth Group","course_number":76788,"instructor":"Kennith Bailey","location":"78616 Meggie Motorway","time":"2018-07-14T09:55:14.427Z","enrolled":52705,"book":"http://garfield.org","course_url":"http://estevan.biz"},{"course_title":"Schumm LLC","course_number":93247,"instructor":"Mrs. Ezekiel Macejkovic","location":"56783 Buckridge Alley","time":"2018-07-14T22:33:59.645Z","enrolled":76169,"book":"https://royal.info","course_url":"https://maybell.com"},{"course_title":"Mann LLC","course_number":65204,"instructor":"Cassidy Reichel","location":"5808 Batz Manor","time":"2018-07-14T04:17:24.199Z","enrolled":69007,"book":"https://zena.biz","course_url":"http://gussie.net"},{"course_title":"Strosin, Moore and Ebert","course_number":30389,"instructor":"Isom Mueller","location":"080 Crist Spurs","time":"2018-07-14T13:53:57.076Z","enrolled":9945,"book":"http://renee.net","course_url":"https://torrance.org"},{"course_title":"Sipes LLC","course_number":40595,"instructor":"Bernardo Schneider","location":"803 Zion Ports","time":"2018-07-14T10:51:23.914Z","enrolled":14200,"book":"http://amiya.info","course_url":"http://terence.info"},{"course_title":"Terry, Koss and Terry","course_number":30734,"instructor":"Adelbert O'Connell","location":"530 Heidenreich Trace","time":"2018-07-14T13:24:02.433Z","enrolled":80844,"book":"https://rigoberto.com","course_url":"http://barry.net"},{"course_title":"Ferry - Mosciski","course_number":67268,"instructor":"Kennith Halvorson","location":"94310 Maybelle Village","time":"2018-07-14T17:39:15.566Z","enrolled":68321,"book":"https://jacquelyn.name","course_url":"https://toney.info"},{"course_title":"Ziemann Inc","course_number":85529,"instructor":"Marques Christiansen Sr.","location":"5337 Yost Mission","time":"2018-07-14T07:52:43.471Z","enrolled":76482,"book":"http://kevon.com","course_url":"https://jennifer.net"},{"course_title":"Senger and Sons","course_number":23570,"instructor":"Ima Kuphal III","location":"041 Jerel Mews","time":"2018-07-14T00:33:06.800Z","enrolled":39309,"book":"https://florian.net","course_url":"https://aliza.org"},{"course_title":"Jacobs, Erdman and Wehner","course_number":71696,"instructor":"Janelle Ebert","location":"17436 Karine Spur","time":"2018-07-14T12:00:55.626Z","enrolled":88503,"book":"https://christopher.biz","course_url":"https://guillermo.org"},{"course_title":"Prohaska LLC","course_number":13219,"instructor":"Marie Weissnat","location":"099 Joshua Tunnel","time":"2018-07-14T13:59:04.626Z","enrolled":90615,"book":"http://aleen.net","course_url":"http://chase.org"},{"course_title":"Bauch LLC","course_number":2009,"instructor":"Maverick Conn","location":"294 Cheyenne Village","time":"2018-07-14T19:01:12.064Z","enrolled":60499,"book":"http://asa.name","course_url":"https://hellen.org"},{"course_title":"Bashirian, Mueller and Boehm","course_number":47105,"instructor":"Clarissa Will","location":"247 Gerlach Island","time":"2018-07-14T14:07:05.398Z","enrolled":96094,"book":"https://conor.name","course_url":"https://marilou.com"},{"course_title":"Schroeder, Lemke and Breitenberg","course_number":61070,"instructor":"Zane Dooley","location":"7824 Marcelle Crescent","time":"2018-07-14T07:41:21.383Z","enrolled":60754,"book":"http://marjory.net","course_url":"http://maya.info"},{"course_title":"Toy Inc","course_number":19907,"instructor":"Braden Sporer","location":"06503 Hugh Roads","time":"2018-07-14T21:37:01.961Z","enrolled":61356,"book":"https://alfonso.biz","course_url":"https://magnus.net"},{"course_title":"Weber, Bartell and Auer","course_number":84111,"instructor":"Petra Prohaska","location":"64721 Collier Mills","time":"2018-07-14T15:50:00.658Z","enrolled":57424,"book":"https://estella.com","course_url":"http://keshawn.name"},{"course_title":"Orn LLC","course_number":4831,"instructor":"Antonia Stracke","location":"0865 Denesik Fall","time":"2018-07-14T03:00:34.209Z","enrolled":7177,"book":"https://keshaun.name","course_url":"http://elnora.net"},{"course_title":"Huel - Ondricka","course_number":38105,"instructor":"Patricia Koepp","location":"434 Larson Ville","time":"2018-07-14T04:01:54.863Z","enrolled":48517,"book":"http://brooke.biz","course_url":"https://shyanne.name"},{"course_title":"Shields, Denesik and Stehr","course_number":50206,"instructor":"Rowena Skiles","location":"4677 Johnson Inlet","time":"2018-07-14T01:11:32.316Z","enrolled":57610,"book":"http://vergie.net","course_url":"https://fae.org"},{"course_title":"Roob, Hyatt and Witting","course_number":93535,"instructor":"Fabian Klocko","location":"836 Hintz Prairie","time":"2018-07-14T14:11:52.671Z","enrolled":47871,"book":"https://heber.org","course_url":"https://gloria.org"},{"course_title":"Monahan, Luettgen and Lubowitz","course_number":68336,"instructor":"Jason Gutmann MD","location":"195 Smitham Parkway","time":"2018-07-13T23:37:49.938Z","enrolled":25195,"book":"http://reilly.org","course_url":"https://kacey.info"},{"course_title":"Thompson - Bins","course_number":57743,"instructor":"Jeramy Hoppe MD","location":"35835 Romaine Place","time":"2018-07-14T18:09:55.224Z","enrolled":55018,"book":"http://misael.net","course_url":"https://melba.org"},{"course_title":"Aufderhar LLC","course_number":77955,"instructor":"Oliver Lehner","location":"418 Mayert Lane","time":"2018-07-14T14:26:06.165Z","enrolled":45767,"book":"http://olen.info","course_url":"http://eulalia.net"},{"course_title":"Legros - Koepp","course_number":21778,"instructor":"Nya Schmidt DDS","location":"8147 Mosciski Lake","time":"2018-07-14T08:51:12.940Z","enrolled":79029,"book":"http://korbin.net","course_url":"https://carolyn.org"},{"course_title":"Haley Group","course_number":40601,"instructor":"Dr. Otha Rath","location":"49946 Wuckert Heights","time":"2018-07-14T03:02:22.430Z","enrolled":1222,"book":"http://solon.info","course_url":"http://bernadine.net"},{"course_title":"Buckridge, Feil and McKenzie","course_number":98747,"instructor":"Braulio Frami","location":"58845 Darren Lights","time":"2018-07-14T05:41:40.317Z","enrolled":77101,"book":"https://marc.com","course_url":"https://jacky.net"},{"course_title":"Feeney LLC","course_number":90778,"instructor":"Jayson Leffler","location":"6066 Josiah Summit","time":"2018-07-14T11:54:53.920Z","enrolled":72439,"book":"http://geraldine.net","course_url":"https://ella.org"},{"course_title":"Spinka Inc","course_number":81464,"instructor":"Kristofer Sporer","location":"5495 Oleta Village","time":"2018-07-14T06:24:29.971Z","enrolled":63741,"book":"https://angelina.info","course_url":"http://eliezer.com"},{"course_title":"Ritchie LLC","course_number":81301,"instructor":"Lonie Becker","location":"1483 Kamron Island","time":"2018-07-14T02:29:33.644Z","enrolled":19213,"book":"http://andreane.biz","course_url":"https://chadrick.com"},{"course_title":"Witting and Sons","course_number":20380,"instructor":"Mrs. Einar Cartwright","location":"39362 Mandy Pine","time":"2018-07-14T22:43:05.928Z","enrolled":81613,"book":"https://rod.net","course_url":"http://forest.name"},{"course_title":"Leffler - Mitchell","course_number":22388,"instructor":"Miss Lempi Runolfsson","location":"643 Huels Stream","time":"2018-07-14T19:51:55.407Z","enrolled":97142,"book":"https://lauretta.net","course_url":"https://princess.biz"},{"course_title":"Carter, Zulauf and Barton","course_number":60747,"instructor":"Miss Rogelio Kihn","location":"05646 Hammes Crescent","time":"2018-07-14T22:06:29.809Z","enrolled":69333,"book":"https://allan.com","course_url":"https://jan.biz"},{"course_title":"Runolfsson, Trantow and Kiehn","course_number":92945,"instructor":"Veda Wisoky","location":"4570 Gerhold Spur","time":"2018-07-14T14:23:49.150Z","enrolled":83789,"book":"http://tad.info","course_url":"http://celestine.info"},{"course_title":"Farrell - Kulas","course_number":28946,"instructor":"Ashly Murazik","location":"058 Kessler Port","time":"2018-07-13T23:49:31.399Z","enrolled":10497,"book":"https://casper.info","course_url":"https://ethelyn.name"},{"course_title":"Bernhard Group","course_number":49032,"instructor":"Retha Murray","location":"396 McKenzie Ford","time":"2018-07-14T18:50:50.080Z","enrolled":54782,"book":"http://jessyca.name","course_url":"https://sienna.name"},{"course_title":"Schroeder, Walker and Stark","course_number":16735,"instructor":"Lane Boyle","location":"121 Matteo Unions","time":"2018-07-14T19:53:55.697Z","enrolled":22915,"book":"http://alayna.name","course_url":"https://enrico.org"},{"course_title":"Ernser LLC","course_number":8722,"instructor":"Pascale Schaefer PhD","location":"3918 Marquis Lane","time":"2018-07-14T12:47:11.027Z","enrolled":75981,"book":"https://fausto.com","course_url":"http://suzanne.biz"},{"course_title":"Borer, Cummerata and Runolfsdottir","course_number":83489,"instructor":"Cindy Jenkins","location":"084 Forest Common","time":"2018-07-14T22:52:12.194Z","enrolled":90279,"book":"https://emmanuel.name","course_url":"https://dessie.org"},{"course_title":"Frami - Thiel","course_number":56404,"instructor":"Brett O'Reilly","location":"37635 Reyes Rapid","time":"2018-07-14T09:16:57.212Z","enrolled":13908,"book":"http://sunny.net","course_url":"http://emerson.info"},{"course_title":"Tromp, Beatty and Beier","course_number":37048,"instructor":"Dr. Alvera Cassin","location":"2788 Rosamond Ports","time":"2018-07-14T06:10:32.530Z","enrolled":14029,"book":"http://parker.com","course_url":"https://violette.info"},{"course_title":"Sporer and Sons","course_number":68454,"instructor":"Otha Wisozk","location":"5171 Smitham Light","time":"2018-07-14T05:32:56.024Z","enrolled":53676,"book":"http://ellis.info","course_url":"http://audrey.org"},{"course_title":"Haag Group","course_number":66391,"instructor":"Reagan Turner","location":"94266 Fisher Highway","time":"2018-07-14T17:00:41.427Z","enrolled":1161,"book":"http://alexandra.biz","course_url":"http://jacquelyn.org"},{"course_title":"Schroeder, Nikolaus and Murphy","course_number":53362,"instructor":"Alfreda O'Keefe","location":"9004 Gottlieb Springs","time":"2018-07-14T01:13:10.866Z","enrolled":1936,"book":"https://dario.biz","course_url":"http://chyna.com"},{"course_title":"Mayert, Yost and Shanahan","course_number":5972,"instructor":"Lilly Predovic","location":"379 Aiyana Spur","time":"2018-07-14T09:37:15.282Z","enrolled":57604,"book":"http://kelly.name","course_url":"https://emely.biz"},{"course_title":"Willms and Sons","course_number":65856,"instructor":"Heath Marvin","location":"0899 Estel Common","time":"2018-07-14T00:18:44.078Z","enrolled":12671,"book":"https://regan.org","course_url":"http://jalon.net"},{"course_title":"Wilkinson - Ritchie","course_number":67751,"instructor":"Noel Cole","location":"024 Myrtice Rest","time":"2018-07-14T08:07:04.207Z","enrolled":15050,"book":"https://coty.info","course_url":"https://howard.org"},{"course_title":"Johnson, Emard and Durgan","course_number":47731,"instructor":"Alexanne Runte","location":"6249 Tremblay Lane","time":"2018-07-14T02:17:29.652Z","enrolled":34849,"book":"http://keyon.net","course_url":"http://brock.com"},{"course_title":"Von, Rodriguez and Kutch","course_number":14219,"instructor":"Dakota Daugherty","location":"227 Quitzon Tunnel","time":"2018-07-14T01:31:55.557Z","enrolled":79723,"book":"http://mohammad.info","course_url":"http://rodger.name"},{"course_title":"Crona, Koelpin and Thiel","course_number":71989,"instructor":"Lisa Wolff","location":"332 Gislason Springs","time":"2018-07-14T03:09:55.085Z","enrolled":17451,"book":"https://terrance.biz","course_url":"https://markus.name"},{"course_title":"Romaguera - Quigley","course_number":67010,"instructor":"Ashlee Ortiz","location":"203 Darrion Keys","time":"2018-07-14T02:08:19.868Z","enrolled":75340,"book":"https://dora.name","course_url":"https://kaya.net"},{"course_title":"Johns LLC","course_number":98479,"instructor":"Judson Rice","location":"33560 Swift Walks","time":"2018-07-14T09:07:19.674Z","enrolled":62459,"book":"http://adrain.net","course_url":"http://ariel.biz"},{"course_title":"Wintheiser - Wuckert","course_number":94035,"instructor":"Jeffery Green","location":"338 Savion Wells","time":"2018-07-14T19:37:17.326Z","enrolled":2008,"book":"https://aileen.org","course_url":"http://robert.name"},{"course_title":"Toy - Pouros","course_number":41464,"instructor":"Cathrine Strosin","location":"34986 McClure Prairie","time":"2018-07-14T06:10:41.724Z","enrolled":3657,"book":"https://tess.biz","course_url":"http://herman.com"},{"course_title":"Gutkowski - Kutch","course_number":46950,"instructor":"Victoria Schinner Jr.","location":"4338 Ruben Lodge","time":"2018-07-14T00:00:50.944Z","enrolled":85658,"book":"http://edna.com","course_url":"http://arnoldo.name"},{"course_title":"Sauer, Denesik and Little","course_number":95380,"instructor":"Santiago Thompson","location":"2839 Benedict Hill","time":"2018-07-14T06:29:44.076Z","enrolled":75241,"book":"http://bill.name","course_url":"https://matteo.org"},{"course_title":"Gottlieb, Goldner and Bayer","course_number":24023,"instructor":"Tyrel Rodriguez DDS","location":"5312 Towne Drives","time":"2018-07-14T08:05:41.923Z","enrolled":89701,"book":"http://larue.org","course_url":"http://antonette.biz"},{"course_title":"Ritchie - Hackett","course_number":82442,"instructor":"Nicolas Hartmann","location":"7416 Nyah Underpass","time":"2018-07-13T23:31:46.916Z","enrolled":2327,"book":"https://willis.biz","course_url":"https://pablo.com"},{"course_title":"Mueller, Abernathy and Adams","course_number":25197,"instructor":"Tamara Rempel","location":"2288 Lincoln Neck","time":"2018-07-14T22:58:45.890Z","enrolled":25138,"book":"http://ashly.org","course_url":"https://gretchen.name"},{"course_title":"Reilly, Hackett and Botsford","course_number":47778,"instructor":"Ms. Augustine Bosco","location":"98793 Johnson Stream","time":"2018-07-14T09:03:21.541Z","enrolled":57617,"book":"https://herman.org","course_url":"http://delphine.info"},{"course_title":"Watsica, Lowe and Rosenbaum","course_number":67115,"instructor":"Osvaldo Halvorson III","location":"54430 Gerlach Burg","time":"2018-07-14T05:27:17.716Z","enrolled":95524,"book":"http://german.org","course_url":"http://pat.com"},{"course_title":"Heidenreich LLC","course_number":80501,"instructor":"Lorine Harber","location":"3316 Norene Highway","time":"2018-07-14T05:36:55.614Z","enrolled":87780,"book":"http://marcos.biz","course_url":"https://marlin.org"},{"course_title":"Connelly - Wehner","course_number":67156,"instructor":"Taryn Graham","location":"274 Kathryne Viaduct","time":"2018-07-14T17:15:49.808Z","enrolled":8747,"book":"http://murphy.info","course_url":"http://rubie.org"},{"course_title":"Trantow - Lynch","course_number":61586,"instructor":"Adan Spinka Sr.","location":"2678 Pfeffer Causeway","time":"2018-07-14T06:46:41.038Z","enrolled":35447,"book":"http://bruce.name","course_url":"http://gloria.net"},{"course_title":"Homenick and Sons","course_number":18394,"instructor":"Lindsey Braun","location":"7464 Savanah Avenue","time":"2018-07-14T09:09:32.485Z","enrolled":11521,"book":"http://lonny.org","course_url":"https://everardo.com"},{"course_title":"Carroll - Hansen","course_number":22420,"instructor":"Myrna Stiedemann","location":"7462 Gerard Trafficway","time":"2018-07-14T18:28:44.662Z","enrolled":53190,"book":"https://casper.net","course_url":"https://william.biz"},{"course_title":"Collins - Pfeffer","course_number":20990,"instructor":"Imelda Baumbach","location":"9867 O'Reilly Shore","time":"2018-07-14T08:00:58.573Z","enrolled":71718,"book":"https://daniella.net","course_url":"http://dianna.com"},{"course_title":"Hilpert LLC","course_number":37282,"instructor":"Clinton Cronin","location":"4354 Dickens Islands","time":"2018-07-14T07:38:06.099Z","enrolled":87439,"book":"https://kellen.biz","course_url":"https://ulises.info"},{"course_title":"Bergstrom - Bashirian","course_number":23638,"instructor":"Sabina Kshlerin","location":"93607 Roman Prairie","time":"2018-07-14T07:51:00.047Z","enrolled":39958,"book":"http://eusebio.name","course_url":"http://cassandre.com"},{"course_title":"Kozey LLC","course_number":60855,"instructor":"Rogelio Adams DVM","location":"5730 Agustin Mission","time":"2018-07-14T03:49:47.930Z","enrolled":50269,"book":"https://albin.biz","course_url":"https://cheyenne.net"},{"course_title":"Abshire - Morar","course_number":36698,"instructor":"Jaquelin Tromp","location":"64018 Eladio Fork","time":"2018-07-14T21:01:40.201Z","enrolled":55710,"book":"https://rhett.org","course_url":"http://meggie.info"},{"course_title":"Kulas, Zieme and Bins","course_number":13877,"instructor":"Antoinette Haag","location":"7311 Gerard Land","time":"2018-07-14T18:14:43.406Z","enrolled":36642,"book":"http://helena.name","course_url":"http://herman.com"},{"course_title":"Hand - Simonis","course_number":31843,"instructor":"Easton Prosacco DDS","location":"18966 Beverly Mills","time":"2018-07-14T16:03:54.478Z","enrolled":50577,"book":"https://kaitlyn.org","course_url":"https://naomi.name"},{"course_title":"Douglas, Renner and Treutel","course_number":17061,"instructor":"Katelyn Marks","location":"2147 Zulauf Harbor","time":"2018-07-14T04:06:02.538Z","enrolled":6752,"book":"https://elmer.com","course_url":"https://kirk.biz"},{"course_title":"Ruecker, Kautzer and Stoltenberg","course_number":72385,"instructor":"Saul Leannon","location":"1314 Hilll Meadow","time":"2018-07-14T06:25:18.332Z","enrolled":56828,"book":"http://virginie.com","course_url":"https://tiara.biz"},{"course_title":"Heller Inc","course_number":46787,"instructor":"Wendell Murazik","location":"6017 Adolph Common","time":"2018-07-14T01:07:36.806Z","enrolled":30469,"book":"http://theo.net","course_url":"https://sammie.org"},{"course_title":"Roob and Sons","course_number":73552,"instructor":"Mikayla Padberg","location":"187 Payton Trace","time":"2018-07-14T14:06:01.549Z","enrolled":97075,"book":"https://arnaldo.biz","course_url":"http://noel.info"},{"course_title":"Tromp - Waelchi","course_number":90679,"instructor":"Emile Schinner DDS","location":"681 Travon Plaza","time":"2018-07-14T18:37:37.934Z","enrolled":70600,"book":"https://kennith.biz","course_url":"https://blanca.biz"},{"course_title":"Nikolaus and Sons","course_number":41980,"instructor":"Miss Aniya Aufderhar","location":"5749 Sherman Manor","time":"2018-07-14T20:05:42.245Z","enrolled":16385,"book":"http://raven.org","course_url":"http://myles.com"},{"course_title":"Runolfsdottir, Tromp and Ferry","course_number":64020,"instructor":"Kamille Von","location":"5300 Vallie Crescent","time":"2018-07-14T00:29:29.991Z","enrolled":31539,"book":"http://myrl.com","course_url":"https://saul.name"},{"course_title":"Greenfelder - Jenkins","course_number":59633,"instructor":"Edd Schulist","location":"8461 Lesley Branch","time":"2018-07-14T22:48:02.735Z","enrolled":19762,"book":"http://trinity.biz","course_url":"http://nicholaus.biz"},{"course_title":"Keeling - Senger","course_number":52502,"instructor":"Jaida Jacobson","location":"68872 Fern Village","time":"2018-07-14T01:25:19.734Z","enrolled":63040,"book":"http://hyman.org","course_url":"https://dulce.com"},{"course_title":"Pfeffer LLC","course_number":50033,"instructor":"Sydnie Hauck","location":"4808 Savanah Rue","time":"2018-07-14T20:45:34.272Z","enrolled":90426,"book":"http://kaia.net","course_url":"https://lee.com"},{"course_title":"Fritsch, Greenfelder and Wolf","course_number":16434,"instructor":"Andrew Heathcote Sr.","location":"912 Carissa Shore","time":"2018-07-14T03:59:02.627Z","enrolled":24021,"book":"https://gustave.net","course_url":"https://keven.com"},{"course_title":"Barton, Haag and Barrows","course_number":76070,"instructor":"Idella Johnson","location":"79914 Heller Estates","time":"2018-07-13T23:52:02.960Z","enrolled":91245,"book":"http://kaley.biz","course_url":"http://armand.org"},{"course_title":"Christiansen Group","course_number":31891,"instructor":"Justina Dietrich","location":"4556 Cremin Groves","time":"2018-07-14T18:30:54.343Z","enrolled":63358,"book":"http://daniela.org","course_url":"http://vincent.org"},{"course_title":"Keeling, Adams and King","course_number":50343,"instructor":"Brad Hilll","location":"145 Rogahn Island","time":"2018-07-14T15:31:18.407Z","enrolled":14125,"book":"https://catharine.name","course_url":"http://easton.com"},{"course_title":"Goyette - Conroy","course_number":66657,"instructor":"Ayana Jacobson","location":"92240 Kassulke Fords","time":"2018-07-14T12:47:00.713Z","enrolled":49240,"book":"http://torey.info","course_url":"http://sabrina.net"},{"course_title":"Keebler, Schoen and Schinner","course_number":35336,"instructor":"Florida Harber","location":"6695 Metz Spur","time":"2018-07-14T21:29:28.695Z","enrolled":55776,"book":"https://oral.biz","course_url":"http://hosea.info"},{"course_title":"Hammes and Sons","course_number":51113,"instructor":"Dwight Streich I","location":"9811 Olson Forge","time":"2018-07-14T16:18:17.283Z","enrolled":69011,"book":"http://roscoe.biz","course_url":"http://colton.org"},{"course_title":"Corkery, Witting and Satterfield","course_number":5577,"instructor":"Fausto Hane","location":"8882 Ocie Spring","time":"2018-07-14T00:23:26.432Z","enrolled":28872,"book":"http://joel.net","course_url":"https://kyra.com"},{"course_title":"Cole and Sons","course_number":44003,"instructor":"Julien Orn","location":"39700 Lafayette Pine","time":"2018-07-14T18:50:37.030Z","enrolled":38691,"book":"http://jonathon.org","course_url":"https://emerald.net"},{"course_title":"Stiedemann - Larson","course_number":67081,"instructor":"Jarod Bauch","location":"04455 Ryann Green","time":"2018-07-14T16:14:17.178Z","enrolled":45787,"book":"http://alfreda.com","course_url":"http://ernestina.org"},{"course_title":"Dickens - Okuneva","course_number":44547,"instructor":"Ellen Considine","location":"3935 Legros Cove","time":"2018-07-14T10:52:07.328Z","enrolled":98402,"book":"https://ayla.info","course_url":"http://jaydon.net"},{"course_title":"Lehner Group","course_number":62912,"instructor":"Darrion Abernathy","location":"13804 Hayes Views","time":"2018-07-14T13:12:39.649Z","enrolled":54170,"book":"http://effie.net","course_url":"https://salvador.biz"},{"course_title":"Crooks, Connelly and Wilkinson","course_number":72400,"instructor":"Rosalyn Dare","location":"230 Malcolm Lodge","time":"2018-07-14T02:05:03.879Z","enrolled":92428,"book":"http://maryse.net","course_url":"http://francisca.biz"},{"course_title":"Willms and Sons","course_number":57031,"instructor":"Vince Boehm","location":"9397 Bahringer Divide","time":"2018-07-14T06:00:02.068Z","enrolled":79882,"book":"http://arvid.biz","course_url":"https://anika.com"},{"course_title":"Walter, Feeney and Herman","course_number":25412,"instructor":"Kristy Schaefer","location":"04646 Priscilla Ridge","time":"2018-07-14T18:03:31.480Z","enrolled":18818,"book":"https://cullen.org","course_url":"https://dale.org"},{"course_title":"Kuhlman Inc","course_number":52923,"instructor":"Bethany Marquardt II","location":"7622 Stiedemann Divide","time":"2018-07-14T14:38:29.321Z","enrolled":15126,"book":"https://edwina.info","course_url":"https://marietta.info"},{"course_title":"Larson - Swift","course_number":88599,"instructor":"Robert Denesik","location":"995 D'Amore Spur","time":"2018-07-14T11:25:34.093Z","enrolled":88436,"book":"http://angelica.biz","course_url":"https://renee.name"},{"course_title":"Morar - Legros","course_number":92905,"instructor":"Sanford Bahringer","location":"6886 Marquise Plains","time":"2018-07-14T03:01:00.065Z","enrolled":19423,"book":"https://maeve.biz","course_url":"http://retha.net"},{"course_title":"Hartmann - Hauck","course_number":74984,"instructor":"Judson Ryan","location":"067 Kessler Way","time":"2018-07-14T17:45:32.416Z","enrolled":94153,"book":"http://fleta.net","course_url":"https://magdalena.info"},{"course_title":"Willms - West","course_number":59156,"instructor":"Arnold Keebler","location":"5434 Felipa Corner","time":"2018-07-14T17:38:17.065Z","enrolled":77513,"book":"https://vanessa.com","course_url":"http://kattie.org"},{"course_title":"Rutherford, Kuhlman and O'Conner","course_number":5180,"instructor":"Mckenna Kirlin","location":"729 Abraham Park","time":"2018-07-13T23:25:20.955Z","enrolled":77994,"book":"https://reggie.com","course_url":"https://esperanza.org"},{"course_title":"Quigley, Greenholt and Haley","course_number":93567,"instructor":"Emmet Medhurst","location":"7716 Langosh Squares","time":"2018-07-14T04:42:55.815Z","enrolled":39327,"book":"https://emil.com","course_url":"http://kiana.info"},{"course_title":"Johnson - Bins","course_number":15671,"instructor":"Kaley Brakus","location":"823 Margarita Street","time":"2018-07-14T00:17:21.993Z","enrolled":88186,"book":"https://abdiel.name","course_url":"https://bert.com"},{"course_title":"Mosciski - Grant","course_number":68365,"instructor":"Bettie Morissette","location":"2080 Jerrold Row","time":"2018-07-14T16:05:02.047Z","enrolled":4455,"book":"https://summer.org","course_url":"https://angel.name"},{"course_title":"Brekke - Jerde","course_number":81488,"instructor":"Alberta Bartoletti","location":"13179 Brando Falls","time":"2018-07-14T18:52:27.903Z","enrolled":84400,"book":"http://jacquelyn.com","course_url":"https://clint.info"},{"course_title":"Lindgren, Kub and Langworth","course_number":89113,"instructor":"Miss Cecile Lueilwitz","location":"8825 Corwin Square","time":"2018-07-14T12:38:40.825Z","enrolled":50523,"book":"https://marcella.org","course_url":"http://austen.net"},{"course_title":"Wiegand Group","course_number":34646,"instructor":"Meghan Trantow","location":"6623 Sim Forest","time":"2018-07-14T00:09:21.216Z","enrolled":71037,"book":"http://johnny.info","course_url":"https://lilla.org"},{"course_title":"Schiller - Bergnaum","course_number":42684,"instructor":"Lonnie Sporer","location":"66480 Murphy Green","time":"2018-07-14T08:00:48.949Z","enrolled":50866,"book":"https://jammie.name","course_url":"https://rylee.info"},{"course_title":"Langworth - Bartell","course_number":57472,"instructor":"Elenora Hamill","location":"2209 Moore Canyon","time":"2018-07-14T23:06:46.946Z","enrolled":30474,"book":"https://kelsi.org","course_url":"https://kaylin.org"},{"course_title":"Lynch - Rowe","course_number":79511,"instructor":"Kayli Wilkinson","location":"05196 Schultz Tunnel","time":"2018-07-14T20:00:20.535Z","enrolled":36922,"book":"https://vicky.biz","course_url":"https://kellen.org"},{"course_title":"Runolfsdottir Group","course_number":77410,"instructor":"Ewell Gusikowski","location":"34131 Marcelo Coves","time":"2018-07-14T19:15:05.312Z","enrolled":3095,"book":"https://melba.biz","course_url":"http://nicholaus.com"},{"course_title":"Wiegand - Schroeder","course_number":55451,"instructor":"Pietro Roob","location":"8440 Dominic Ford","time":"2018-07-14T21:37:19.623Z","enrolled":60748,"book":"http://helena.net","course_url":"https://deanna.org"},{"course_title":"Lang Group","course_number":26092,"instructor":"Adriana Kemmer","location":"130 Destiny Passage","time":"2018-07-14T17:45:02.082Z","enrolled":27312,"book":"https://jan.net","course_url":"https://tyshawn.org"},{"course_title":"Vandervort, Tremblay and Erdman","course_number":87223,"instructor":"Muriel Kemmer","location":"00711 O'Connell Dale","time":"2018-07-14T11:06:15.946Z","enrolled":83144,"book":"https://bell.info","course_url":"https://bret.net"},{"course_title":"Jerde and Sons","course_number":37983,"instructor":"Cindy Volkman","location":"37008 Eichmann Union","time":"2018-07-14T21:24:12.353Z","enrolled":68335,"book":"http://jaleel.name","course_url":"http://peyton.net"},{"course_title":"Ledner, Stokes and Wuckert","course_number":41497,"instructor":"Amira Donnelly","location":"6132 Wiegand Inlet","time":"2018-07-14T18:52:08.406Z","enrolled":85146,"book":"https://kyla.info","course_url":"http://david.com"},{"course_title":"Walker, Predovic and Kassulke","course_number":87008,"instructor":"Darius Keebler","location":"955 Block Knolls","time":"2018-07-14T11:11:19.325Z","enrolled":22442,"book":"http://hailey.biz","course_url":"http://gunner.com"},{"course_title":"Gulgowski Group","course_number":80439,"instructor":"Cordie Marquardt","location":"581 Keenan Hollow","time":"2018-07-14T03:05:34.511Z","enrolled":78398,"book":"http://queenie.org","course_url":"https://kira.com"},{"course_title":"Littel Group","course_number":66166,"instructor":"Letha Schneider II","location":"54069 Tromp Squares","time":"2018-07-14T04:14:29.431Z","enrolled":3376,"book":"http://cary.com","course_url":"http://myrna.info"},{"course_title":"Davis - Becker","course_number":40655,"instructor":"Lacey Lesch","location":"94896 Becker Valley","time":"2018-07-14T15:55:27.773Z","enrolled":73915,"book":"http://julio.biz","course_url":"http://alexandre.biz"},{"course_title":"Hammes, Shanahan and Lesch","course_number":22659,"instructor":"Rudy Schmitt IV","location":"941 Buddy Unions","time":"2018-07-14T17:28:20.322Z","enrolled":76274,"book":"http://louvenia.info","course_url":"http://abner.name"},{"course_title":"Streich - Kreiger","course_number":80314,"instructor":"Miss Marietta Ullrich","location":"5259 Sydni Ranch","time":"2018-07-14T21:06:56.900Z","enrolled":12199,"book":"https://alessandra.org","course_url":"https://orrin.com"},{"course_title":"Hagenes - Rogahn","course_number":31601,"instructor":"Betsy Ratke","location":"37235 Noelia Garden","time":"2018-07-14T11:49:23.565Z","enrolled":87681,"book":"http://destany.org","course_url":"https://kiara.info"},{"course_title":"Shields, Paucek and Heidenreich","course_number":51160,"instructor":"Doris Goyette","location":"4769 Shawn Lodge","time":"2018-07-14T17:16:53.665Z","enrolled":9197,"book":"http://meaghan.biz","course_url":"https://tara.name"},{"course_title":"Hayes and Sons","course_number":62278,"instructor":"Derrick Reynolds","location":"28448 Nienow Light","time":"2018-07-14T18:43:16.485Z","enrolled":3156,"book":"http://arlie.org","course_url":"http://sierra.biz"},{"course_title":"McDermott - Borer","course_number":56546,"instructor":"Gerardo Olson","location":"27460 Kory Fields","time":"2018-07-14T01:09:53.183Z","enrolled":87491,"book":"http://merritt.org","course_url":"http://leann.org"},{"course_title":"Gulgowski, Schmidt and Emard","course_number":16418,"instructor":"Mrs. Crystel Ernser","location":"245 VonRueden Pass","time":"2018-07-14T14:21:37.706Z","enrolled":65089,"book":"http://amaya.com","course_url":"http://lafayette.info"},{"course_title":"Kuphal - Stamm","course_number":37346,"instructor":"Vesta Fadel Sr.","location":"769 Joshuah Roads","time":"2018-07-14T05:55:40.063Z","enrolled":2349,"book":"https://markus.biz","course_url":"http://bobbie.info"},{"course_title":"Turner, Collier and Fisher","course_number":71978,"instructor":"Dr. Tommie Lockman","location":"4761 Jaskolski Garden","time":"2018-07-14T23:03:52.982Z","enrolled":3070,"book":"https://billie.name","course_url":"https://bart.biz"},{"course_title":"Little - Schroeder","course_number":96711,"instructor":"Alison Von","location":"2772 Hodkiewicz Oval","time":"2018-07-14T11:42:01.151Z","enrolled":4114,"book":"http://roslyn.net","course_url":"https://wayne.biz"},{"course_title":"Farrell and Sons","course_number":63296,"instructor":"Talon Kozey","location":"0890 Kovacek Cliffs","time":"2018-07-14T13:38:01.981Z","enrolled":65822,"book":"http://katrine.name","course_url":"https://sid.org"},{"course_title":"Heaney - Strosin","course_number":78025,"instructor":"Vella Kertzmann","location":"524 Ronaldo Causeway","time":"2018-07-14T21:45:58.521Z","enrolled":75364,"book":"https://dorthy.name","course_url":"https://rodger.org"},{"course_title":"Goodwin Group","course_number":98537,"instructor":"Ms. Jamey Turner","location":"4223 Jasen Drive","time":"2018-07-14T08:22:12.497Z","enrolled":65841,"book":"http://dorcas.name","course_url":"http://ramon.name"},{"course_title":"Dietrich, Crooks and Rodriguez","course_number":7091,"instructor":"Kendall Parker","location":"1901 Quitzon Knoll","time":"2018-07-14T01:59:28.258Z","enrolled":58259,"book":"http://blaise.net","course_url":"http://darlene.biz"},{"course_title":"Monahan, Littel and Bode","course_number":36728,"instructor":"Lonzo Boehm","location":"306 Chase Ridge","time":"2018-07-14T16:59:00.378Z","enrolled":17793,"book":"https://maryam.info","course_url":"https://brett.net"},{"course_title":"Will, Hagenes and Metz","course_number":82130,"instructor":"Ms. Jerome Klocko","location":"79047 Dibbert Extension","time":"2018-07-14T20:16:49.234Z","enrolled":58906,"book":"http://fay.info","course_url":"https://rosie.org"},{"course_title":"Cole LLC","course_number":69496,"instructor":"Herminio Upton","location":"5258 Francesca Extension","time":"2018-07-14T00:01:21.822Z","enrolled":37639,"book":"https://bernadette.com","course_url":"http://arielle.com"},{"course_title":"Simonis, Dare and Pouros","course_number":78189,"instructor":"Belle Stracke","location":"14586 Louvenia Fort","time":"2018-07-13T23:43:56.847Z","enrolled":43258,"book":"https://shanelle.com","course_url":"http://lilly.net"},{"course_title":"Kerluke - Bernhard","course_number":89506,"instructor":"Lelah Schuppe","location":"8289 Hirthe Ferry","time":"2018-07-13T23:24:15.225Z","enrolled":66567,"book":"https://suzanne.org","course_url":"http://alejandrin.com"},{"course_title":"Rice Group","course_number":31929,"instructor":"Cheyenne Yundt","location":"5469 Brekke Hollow","time":"2018-07-14T03:44:32.353Z","enrolled":74330,"book":"http://brandi.name","course_url":"https://bennie.org"},{"course_title":"Stanton, Price and Muller","course_number":3005,"instructor":"Lambert Volkman","location":"5358 Erdman Prairie","time":"2018-07-13T23:51:01.354Z","enrolled":54737,"book":"https://jaclyn.org","course_url":"http://audie.org"},{"course_title":"Hessel - Jacobson","course_number":53228,"instructor":"Maynard Halvorson","location":"326 Irwin Shores","time":"2018-07-14T18:03:17.227Z","enrolled":41374,"book":"http://calista.net","course_url":"http://mckenzie.net"},{"course_title":"Friesen - Bayer","course_number":51077,"instructor":"Jaylen Mann","location":"919 Trent Junctions","time":"2018-07-14T08:27:44.943Z","enrolled":76149,"book":"https://adrianna.org","course_url":"https://catalina.info"},{"course_title":"Barrows - Russel","course_number":1448,"instructor":"Ole Barrows","location":"4527 Columbus Unions","time":"2018-07-14T03:36:33.088Z","enrolled":77642,"book":"http://maia.net","course_url":"http://caroline.net"},{"course_title":"Bernhard - Nader","course_number":64995,"instructor":"Bernhard Gerlach III","location":"4184 Bryana Village","time":"2018-07-14T02:34:46.692Z","enrolled":51892,"book":"http://molly.name","course_url":"https://ivory.name"},{"course_title":"Balistreri, Considine and Morar","course_number":62396,"instructor":"Prince Johns","location":"618 McDermott Union","time":"2018-07-14T20:56:48.810Z","enrolled":60781,"book":"https://friedrich.com","course_url":"https://mac.biz"},{"course_title":"Murazik, Stark and Haley","course_number":86598,"instructor":"Virginia Berge","location":"887 Miller Gateway","time":"2018-07-14T08:59:03.876Z","enrolled":27884,"book":"http://elenor.name","course_url":"http://alf.biz"},{"course_title":"Hills LLC","course_number":92770,"instructor":"Dr. Roxanne Hackett","location":"488 Ruthe Square","time":"2018-07-14T06:56:44.224Z","enrolled":67320,"book":"http://evalyn.com","course_url":"http://alvis.com"},{"course_title":"Rippin - Kunze","course_number":3102,"instructor":"Mathew Kertzmann","location":"71044 Nitzsche Drive","time":"2018-07-14T19:42:58.157Z","enrolled":38730,"book":"http://kaya.org","course_url":"http://josiah.org"},{"course_title":"Gleichner - McGlynn","course_number":65142,"instructor":"Leon Klein","location":"03770 Jonas Trail","time":"2018-07-14T14:28:46.953Z","enrolled":995,"book":"https://alice.org","course_url":"https://victoria.net"},{"course_title":"Hayes - Blanda","course_number":35566,"instructor":"Casper Rowe","location":"16584 Mack Valleys","time":"2018-07-14T18:05:39.447Z","enrolled":9033,"book":"http://tillman.biz","course_url":"https://larue.net"},{"course_title":"Franecki - Toy","course_number":68412,"instructor":"Santa Bauch","location":"4619 Viviane Rue","time":"2018-07-14T07:05:14.816Z","enrolled":86120,"book":"http://valerie.net","course_url":"http://sarah.com"},{"course_title":"Funk, Williamson and Kassulke","course_number":22073,"instructor":"Patricia Haag","location":"083 Cristal Land","time":"2018-07-13T23:32:39.393Z","enrolled":61911,"book":"http://edna.org","course_url":"http://braulio.info"},{"course_title":"Graham and Sons","course_number":59977,"instructor":"Odie Padberg","location":"37349 Franecki Roads","time":"2018-07-14T21:49:15.667Z","enrolled":7295,"book":"http://eveline.name","course_url":"https://louie.name"},{"course_title":"Gutkowski and Sons","course_number":55104,"instructor":"Kacie Auer","location":"29298 Keara Ridges","time":"2018-07-14T11:34:49.472Z","enrolled":54460,"book":"https://abbey.name","course_url":"https://perry.info"},{"course_title":"White - Volkman","course_number":3121,"instructor":"Michel Toy","location":"656 Braun Burgs","time":"2018-07-14T01:59:19.692Z","enrolled":7038,"book":"http://amari.biz","course_url":"http://cassandra.net"},{"course_title":"Robel - Welch","course_number":57957,"instructor":"Norma Kiehn","location":"830 Swift Ville","time":"2018-07-14T19:46:58.334Z","enrolled":83566,"book":"http://carlotta.net","course_url":"https://joe.info"},{"course_title":"Muller, Stoltenberg and Parisian","course_number":18538,"instructor":"Richmond Schoen","location":"74956 Sandra Squares","time":"2018-07-14T04:34:36.689Z","enrolled":28738,"book":"http://daron.com","course_url":"http://lisette.org"},{"course_title":"Lueilwitz, Jast and Wolff","course_number":34123,"instructor":"Alexander Hayes","location":"582 Stephan Way","time":"2018-07-14T15:31:25.192Z","enrolled":44450,"book":"https://domenico.info","course_url":"https://demarco.info"},{"course_title":"Anderson, Becker and Hagenes","course_number":39466,"instructor":"Maia Nitzsche","location":"4572 Effertz Court","time":"2018-07-14T05:52:48.155Z","enrolled":53708,"book":"http://cameron.info","course_url":"https://carley.net"},{"course_title":"Rice, Schulist and Bruen","course_number":40516,"instructor":"Garett Kunze","location":"983 Coy Avenue","time":"2018-07-14T15:13:23.735Z","enrolled":21757,"book":"https://marta.info","course_url":"http://erwin.name"},{"course_title":"Simonis - Osinski","course_number":33359,"instructor":"Chet Hirthe","location":"724 Kenya Fall","time":"2018-07-14T19:49:03.998Z","enrolled":62974,"book":"https://holden.net","course_url":"https://brycen.info"},{"course_title":"Bartoletti - Braun","course_number":9092,"instructor":"Miss Donato Schumm","location":"230 Fisher Summit","time":"2018-07-14T20:37:50.153Z","enrolled":85184,"book":"http://alfreda.net","course_url":"https://liza.biz"},{"course_title":"Blick, Bergstrom and Sipes","course_number":42191,"instructor":"Mrs. Lucy Grant","location":"20624 Hudson Gateway","time":"2018-07-14T05:56:41.001Z","enrolled":73779,"book":"http://adriana.com","course_url":"http://agnes.info"},{"course_title":"Grant Inc","course_number":37725,"instructor":"Darlene Kub","location":"1377 Herzog Parkways","time":"2018-07-14T05:43:30.928Z","enrolled":39978,"book":"https://nikki.name","course_url":"http://tito.org"},{"course_title":"Hilpert LLC","course_number":97919,"instructor":"Ariel Kiehn","location":"00277 Korbin Estate","time":"2018-07-13T23:32:09.092Z","enrolled":45665,"book":"https://mia.biz","course_url":"https://lauriane.com"},{"course_title":"Homenick, Green and Considine","course_number":11477,"instructor":"Nella White","location":"55278 Silas Shoals","time":"2018-07-14T20:33:44.014Z","enrolled":74312,"book":"http://consuelo.org","course_url":"https://erin.name"},{"course_title":"Krajcik, Trantow and Pfannerstill","course_number":42501,"instructor":"Royal Moen","location":"318 Kshlerin Knoll","time":"2018-07-14T08:34:09.209Z","enrolled":94800,"book":"https://issac.org","course_url":"https://justus.org"},{"course_title":"Nader - Schmeler","course_number":74178,"instructor":"Sienna VonRueden","location":"603 Monahan Tunnel","time":"2018-07-14T16:37:22.055Z","enrolled":73061,"book":"http://ezekiel.name","course_url":"http://hilma.biz"},{"course_title":"Harber, Runte and Considine","course_number":7579,"instructor":"Carissa Gusikowski","location":"0254 Danika Wall","time":"2018-07-14T22:36:54.667Z","enrolled":89611,"book":"https://deshaun.net","course_url":"https://janie.net"},{"course_title":"Torphy, Keebler and Jerde","course_number":44512,"instructor":"Miss Westley Hermiston","location":"133 Ernser Locks","time":"2018-07-14T10:21:36.413Z","enrolled":24419,"book":"http://dakota.info","course_url":"https://effie.net"},{"course_title":"Muller Inc","course_number":19780,"instructor":"Dr. Mozelle Considine","location":"1539 Gail Summit","time":"2018-07-14T11:35:33.315Z","enrolled":17268,"book":"https://greg.biz","course_url":"https://kendrick.net"},{"course_title":"O'Keefe, Keebler and Pouros","course_number":99997,"instructor":"Carlie Weissnat","location":"87251 Jensen Wall","time":"2018-07-14T02:10:34.674Z","enrolled":59105,"book":"https://rhea.net","course_url":"http://kelley.com"},{"course_title":"Champlin - Feil","course_number":1858,"instructor":"Rosie Bartell","location":"8029 Daniela Tunnel","time":"2018-07-14T07:59:14.249Z","enrolled":38073,"book":"https://jettie.org","course_url":"https://drake.info"},{"course_title":"Kovacek - Friesen","course_number":67674,"instructor":"Meagan Quigley","location":"324 Bednar Center","time":"2018-07-14T20:24:58.388Z","enrolled":97720,"book":"https://rico.info","course_url":"https://damon.net"},{"course_title":"Swaniawski, Keeling and Kautzer","course_number":25140,"instructor":"Marcel Wiza","location":"27798 Chet Avenue","time":"2018-07-14T03:31:29.055Z","enrolled":5814,"book":"https://connor.info","course_url":"https://darron.name"},{"course_title":"O'Hara, Gulgowski and Padberg","course_number":78253,"instructor":"Abe Block","location":"2745 Greenholt Bridge","time":"2018-07-14T09:42:49.676Z","enrolled":56682,"book":"https://crawford.org","course_url":"https://lue.com"},{"course_title":"Hills, Kessler and Muller","course_number":20748,"instructor":"Ally Beier","location":"295 Evangeline Knoll","time":"2018-07-14T07:53:02.124Z","enrolled":78183,"book":"http://evelyn.org","course_url":"http://lilyan.info"},{"course_title":"Kub - Price","course_number":95882,"instructor":"Travon Herzog","location":"7396 Arnold Vista","time":"2018-07-14T18:45:09.832Z","enrolled":46893,"book":"http://frederick.org","course_url":"http://juana.com"},{"course_title":"Schiller - Marvin","course_number":32869,"instructor":"Dr. Germaine Rice","location":"244 Lilyan Squares","time":"2018-07-14T20:07:24.820Z","enrolled":13130,"book":"https://briana.com","course_url":"https://tyrese.biz"},{"course_title":"Feest, Bahringer and McKenzie","course_number":58497,"instructor":"Tracy Schumm","location":"01113 Margarette Mountain","time":"2018-07-14T16:11:01.999Z","enrolled":93831,"book":"https://barbara.net","course_url":"https://danika.net"},{"course_title":"Walter - Barton","course_number":41352,"instructor":"Mariam Bergstrom","location":"228 Kuvalis Road","time":"2018-07-14T08:20:19.115Z","enrolled":81805,"book":"http://camden.info","course_url":"http://alexie.biz"},{"course_title":"Cummerata - Padberg","course_number":25719,"instructor":"Edmond Schaden","location":"3083 Jeramy Estate","time":"2018-07-14T19:50:14.991Z","enrolled":66637,"book":"https://reymundo.name","course_url":"https://ruthie.name"},{"course_title":"Moen, D'Amore and Cormier","course_number":18110,"instructor":"Madie Bauch","location":"43051 Lilliana Parkway","time":"2018-07-14T03:41:31.134Z","enrolled":76283,"book":"https://gabrielle.info","course_url":"https://gene.info"},{"course_title":"Klocko, Beahan and O'Reilly","course_number":39481,"instructor":"Krystal Durgan","location":"686 Eliseo Roads","time":"2018-07-14T13:07:48.151Z","enrolled":89087,"book":"http://luna.net","course_url":"http://elta.com"},{"course_title":"Welch, Blick and Mante","course_number":19131,"instructor":"Candace Schaden","location":"1856 Zulauf Isle","time":"2018-07-14T09:21:58.631Z","enrolled":45114,"book":"http://elouise.net","course_url":"https://constantin.com"},{"course_title":"Cartwright, Lowe and Upton","course_number":60578,"instructor":"Emmet Gislason","location":"769 Joey Trail","time":"2018-07-14T10:49:54.398Z","enrolled":97274,"book":"https://halle.com","course_url":"https://avis.com"},{"course_title":"Schmitt and Sons","course_number":70784,"instructor":"Bobbie Corkery","location":"8375 Volkman Pine","time":"2018-07-14T09:56:35.873Z","enrolled":77944,"book":"http://webster.name","course_url":"https://kenton.biz"},{"course_title":"Emard, Towne and Kihn","course_number":90791,"instructor":"Julia Carter","location":"93101 Kovacek Circles","time":"2018-07-14T14:40:02.627Z","enrolled":28572,"book":"http://drew.name","course_url":"http://coy.info"},{"course_title":"Kohler, Halvorson and Torphy","course_number":71257,"instructor":"Norma Veum","location":"56757 Kozey Walks","time":"2018-07-14T19:04:44.114Z","enrolled":10407,"book":"http://jarred.biz","course_url":"https://rosina.info"},{"course_title":"West, Jacobson and Monahan","course_number":61676,"instructor":"Adrain Hintz","location":"5002 Bauch Circles","time":"2018-07-14T04:04:40.335Z","enrolled":34995,"book":"http://furman.com","course_url":"http://roger.biz"},{"course_title":"Harvey, Lemke and Gerhold","course_number":54206,"instructor":"Brent Beer","location":"8682 Denesik Locks","time":"2018-07-14T18:35:08.702Z","enrolled":25409,"book":"http://alda.org","course_url":"http://garnet.net"},{"course_title":"Windler, Kshlerin and O'Connell","course_number":10831,"instructor":"Mrs. Jarret Rodriguez","location":"927 Ezekiel Wall","time":"2018-07-14T20:11:06.236Z","enrolled":43791,"book":"https://beryl.org","course_url":"https://margarita.net"},{"course_title":"Ernser Inc","course_number":50260,"instructor":"Makenna Schinner","location":"56661 Aliza Trafficway","time":"2018-07-13T23:33:31.023Z","enrolled":30000,"book":"http://margarete.com","course_url":"http://general.net"},{"course_title":"Moore, Botsford and Bernier","course_number":97098,"instructor":"Maynard Weimann","location":"4064 Kilback Wall","time":"2018-07-14T20:49:14.260Z","enrolled":73112,"book":"https://beth.org","course_url":"http://carter.name"},{"course_title":"Balistreri, Jacobs and Johnston","course_number":79496,"instructor":"Kody Kessler","location":"5601 Abby Lodge","time":"2018-07-14T04:00:03.895Z","enrolled":91914,"book":"http://christ.info","course_url":"http://agustina.org"},{"course_title":"Romaguera - Gibson","course_number":29745,"instructor":"Dr. Adonis Pfannerstill","location":"6688 Evelyn Parkway","time":"2018-07-14T00:40:16.994Z","enrolled":59566,"book":"http://antonio.biz","course_url":"http://virginia.org"},{"course_title":"O'Hara LLC","course_number":76093,"instructor":"Lucio Wisozk DVM","location":"60659 Hahn Lodge","time":"2018-07-14T02:16:36.400Z","enrolled":89822,"book":"http://norwood.com","course_url":"http://ethel.net"},{"course_title":"Mueller - Strosin","course_number":21117,"instructor":"Golden Carter","location":"563 Metz Mission","time":"2018-07-14T03:10:29.384Z","enrolled":15758,"book":"http://monica.biz","course_url":"https://ayden.org"},{"course_title":"Ullrich - Ratke","course_number":81100,"instructor":"Jayda Pagac","location":"98805 Chauncey Lock","time":"2018-07-14T18:19:39.945Z","enrolled":91462,"book":"http://stacy.net","course_url":"http://albina.name"},{"course_title":"Waelchi Inc","course_number":88263,"instructor":"Mrs. Kraig Heathcote","location":"91105 Bertram Summit","time":"2018-07-14T20:28:00.699Z","enrolled":93540,"book":"https://priscilla.biz","course_url":"http://elena.org"},{"course_title":"Rath, Kris and Schmidt","course_number":31791,"instructor":"Glenna Christiansen","location":"671 Jefferey Mount","time":"2018-07-13T23:19:15.227Z","enrolled":51288,"book":"http://curt.com","course_url":"https://amparo.biz"},{"course_title":"Osinski Group","course_number":5109,"instructor":"Randi Heidenreich","location":"7739 Nicolas Well","time":"2018-07-14T05:35:42.459Z","enrolled":77131,"book":"http://elyse.info","course_url":"https://braxton.com"},{"course_title":"Tromp, Batz and Simonis","course_number":85483,"instructor":"Theresa Parisian","location":"55487 Carey Forks","time":"2018-07-14T01:39:24.704Z","enrolled":13792,"book":"https://mallie.org","course_url":"https://enoch.biz"},{"course_title":"Windler Inc","course_number":61889,"instructor":"Miss Will Terry","location":"36540 Lubowitz Common","time":"2018-07-14T10:46:02.034Z","enrolled":36685,"book":"https://chanelle.com","course_url":"http://heaven.biz"},{"course_title":"Jerde LLC","course_number":64201,"instructor":"Allene Bogisich","location":"256 Orrin Parks","time":"2018-07-14T21:57:28.197Z","enrolled":18780,"book":"https://tommie.biz","course_url":"http://shawna.biz"},{"course_title":"Schroeder - Baumbach","course_number":37752,"instructor":"Lula Wyman","location":"98214 Kaci Ranch","time":"2018-07-14T12:39:40.596Z","enrolled":42770,"book":"https://kianna.net","course_url":"http://sammy.net"},{"course_title":"Schmeler, Emard and Jenkins","course_number":33358,"instructor":"Magdalena Feeney Sr.","location":"285 Austyn Club","time":"2018-07-14T11:32:16.159Z","enrolled":95867,"book":"https://rex.name","course_url":"https://candelario.info"},{"course_title":"Howell and Sons","course_number":8879,"instructor":"Serena Halvorson","location":"2518 Daniel Circles","time":"2018-07-14T11:59:39.836Z","enrolled":13383,"book":"https://freeman.info","course_url":"http://libby.info"},{"course_title":"Predovic, Bosco and Rogahn","course_number":64992,"instructor":"Abby Zemlak","location":"482 Merritt Points","time":"2018-07-14T13:31:36.986Z","enrolled":54991,"book":"http://vidal.org","course_url":"http://cristopher.biz"},{"course_title":"Gutkowski Inc","course_number":84838,"instructor":"Nathen Herzog","location":"78925 Lisandro Forges","time":"2018-07-13T23:24:41.244Z","enrolled":8297,"book":"https://eleazar.net","course_url":"https://zetta.name"},{"course_title":"Rutherford, Maggio and McDermott","course_number":47416,"instructor":"Romaine Blick","location":"763 Lynn Pass","time":"2018-07-14T18:56:09.313Z","enrolled":56401,"book":"http://vernon.com","course_url":"http://leonardo.net"},{"course_title":"Harris - Boyer","course_number":48339,"instructor":"Magnolia Padberg","location":"1161 Willow Estates","time":"2018-07-14T06:03:23.077Z","enrolled":96901,"book":"http://lupe.org","course_url":"http://jade.biz"},{"course_title":"Kirlin Inc","course_number":34743,"instructor":"Modesta Bosco","location":"33020 Ward Place","time":"2018-07-14T06:18:52.165Z","enrolled":57211,"book":"http://golden.biz","course_url":"http://maribel.info"},{"course_title":"Greenfelder - Kirlin","course_number":22261,"instructor":"Madie Murray","location":"4103 Torphy Square","time":"2018-07-14T07:18:38.461Z","enrolled":25807,"book":"https://ibrahim.biz","course_url":"https://tatum.name"},{"course_title":"Robel, Moen and Willms","course_number":71287,"instructor":"Emily Von","location":"019 Elton Crossroad","time":"2018-07-14T13:48:04.239Z","enrolled":75730,"book":"http://arely.com","course_url":"http://jazmyne.com"},{"course_title":"Hermann, Mitchell and Jakubowski","course_number":99272,"instructor":"Roxane Ziemann","location":"40110 Shyann Villages","time":"2018-07-14T00:20:05.802Z","enrolled":10848,"book":"https://gladys.biz","course_url":"https://destany.org"},{"course_title":"Ratke - Thiel","course_number":73491,"instructor":"Cheyenne Crooks","location":"02111 Isaias Cliff","time":"2018-07-14T22:10:47.935Z","enrolled":16580,"book":"https://frank.net","course_url":"https://zachariah.net"},{"course_title":"Schmitt, Gibson and Jaskolski","course_number":28209,"instructor":"Dashawn Kling","location":"540 Mckayla Squares","time":"2018-07-14T01:31:15.345Z","enrolled":22247,"book":"https://fabian.org","course_url":"https://santino.net"},{"course_title":"Terry and Sons","course_number":41981,"instructor":"Beth Hills","location":"71435 Eldridge Valley","time":"2018-07-14T19:04:36.835Z","enrolled":75181,"book":"https://missouri.biz","course_url":"https://isabella.org"},{"course_title":"Kuhn, Lebsack and Nader","course_number":93827,"instructor":"Amari Anderson","location":"539 Eldridge Expressway","time":"2018-07-14T01:41:55.020Z","enrolled":31387,"book":"http://maximilian.biz","course_url":"https://adrienne.name"},{"course_title":"Hyatt, Hermiston and Padberg","course_number":839,"instructor":"Zion Fahey","location":"024 Gulgowski Pass","time":"2018-07-14T18:40:42.207Z","enrolled":2046,"book":"http://rita.com","course_url":"https://morris.com"},{"course_title":"Kuhn - Howell","course_number":63023,"instructor":"Chelsea Cronin","location":"8056 Lisa Mission","time":"2018-07-14T13:34:42.829Z","enrolled":34438,"book":"http://lew.org","course_url":"https://ernestine.org"},{"course_title":"Eichmann - Marquardt","course_number":60599,"instructor":"Alivia Baumbach","location":"169 Bernier Mission","time":"2018-07-14T12:33:58.424Z","enrolled":82487,"book":"https://betty.info","course_url":"https://morgan.com"},{"course_title":"Pouros - Kessler","course_number":19322,"instructor":"Rollin Brakus","location":"33817 Torp Valleys","time":"2018-07-14T14:57:46.295Z","enrolled":71705,"book":"http://fredrick.biz","course_url":"http://kamren.info"},{"course_title":"Walker Inc","course_number":61196,"instructor":"Karianne Dickinson I","location":"8810 Fadel Summit","time":"2018-07-13T23:43:05.862Z","enrolled":62362,"book":"https://caitlyn.com","course_url":"https://naomi.com"},{"course_title":"Beier and Sons","course_number":29985,"instructor":"May Schinner","location":"933 Soledad Trail","time":"2018-07-14T21:04:06.105Z","enrolled":14309,"book":"http://christy.biz","course_url":"http://gia.name"},{"course_title":"Robel, Hoeger and O'Connell","course_number":48468,"instructor":"Brycen Keeling","location":"27949 Nathaniel Gateway","time":"2018-07-14T14:21:15.290Z","enrolled":51935,"book":"https://ivory.org","course_url":"http://rogers.info"},{"course_title":"Koepp, Robel and Hahn","course_number":1623,"instructor":"Mr. Gino Stracke","location":"661 Powlowski Highway","time":"2018-07-14T19:31:34.468Z","enrolled":70782,"book":"http://estevan.biz","course_url":"http://ervin.com"},{"course_title":"Ernser LLC","course_number":91042,"instructor":"Tess Bartoletti Sr.","location":"47910 Weissnat Rapid","time":"2018-07-14T07:12:41.703Z","enrolled":77194,"book":"http://leatha.biz","course_url":"http://cassandre.info"},{"course_title":"Pouros - Harber","course_number":72513,"instructor":"Jarred Hagenes","location":"834 Pacocha Via","time":"2018-07-14T16:10:20.562Z","enrolled":78238,"book":"http://cory.net","course_url":"https://keshaun.com"},{"course_title":"Rutherford and Sons","course_number":51047,"instructor":"Delaney Collins","location":"49795 Eloy Place","time":"2018-07-14T05:25:22.102Z","enrolled":28226,"book":"https://leone.info","course_url":"http://electa.info"},{"course_title":"Murray Group","course_number":74355,"instructor":"Mr. Holly Harber","location":"1549 Sarah Village","time":"2018-07-14T19:57:32.587Z","enrolled":20268,"book":"https://dario.org","course_url":"https://chad.name"},{"course_title":"Dibbert, Vandervort and Wyman","course_number":2324,"instructor":"Lou Mann Sr.","location":"746 Thompson Turnpike","time":"2018-07-14T03:56:45.280Z","enrolled":59614,"book":"https://helen.info","course_url":"http://tre.org"},{"course_title":"Schmidt Inc","course_number":74109,"instructor":"Edythe Wiza","location":"087 Oswald Terrace","time":"2018-07-14T07:50:51.566Z","enrolled":43034,"book":"https://kenya.info","course_url":"http://rachelle.com"},{"course_title":"Langosh - Kuhn","course_number":8602,"instructor":"Beau Ryan","location":"712 Alex Mission","time":"2018-07-14T01:19:31.717Z","enrolled":69658,"book":"http://weston.com","course_url":"https://lance.info"},{"course_title":"Eichmann Inc","course_number":51783,"instructor":"Melba Kovacek","location":"138 Okuneva Villages","time":"2018-07-14T04:02:13.900Z","enrolled":94368,"book":"https://kenneth.org","course_url":"https://krystina.info"},{"course_title":"Huels and Sons","course_number":10482,"instructor":"Vincenza Kiehn MD","location":"9565 Florence Plaza","time":"2018-07-14T21:41:57.469Z","enrolled":5249,"book":"http://eugenia.name","course_url":"http://kristopher.org"},{"course_title":"Jenkins and Sons","course_number":52585,"instructor":"Lavonne Ankunding","location":"9455 Melvina Mission","time":"2018-07-14T10:20:05.621Z","enrolled":29054,"book":"http://lucie.net","course_url":"http://fern.info"},{"course_title":"Gerlach Group","course_number":91978,"instructor":"Mrs. Roselyn Carter","location":"9244 Effertz Avenue","time":"2018-07-14T12:17:55.251Z","enrolled":87472,"book":"https://dell.org","course_url":"https://ozella.net"},{"course_title":"Prohaska LLC","course_number":2549,"instructor":"Rodger Jerde","location":"91749 Audrey Junctions","time":"2018-07-14T20:54:25.298Z","enrolled":73853,"book":"http://celestino.biz","course_url":"https://gordon.com"},{"course_title":"Lehner - Pfeffer","course_number":33297,"instructor":"Aliyah Ankunding","location":"70021 Leonora Mountains","time":"2018-07-14T04:20:38.905Z","enrolled":54970,"book":"http://demario.info","course_url":"http://alexandrea.info"},{"course_title":"Langosh Inc","course_number":1594,"instructor":"Emelia Effertz","location":"8415 Juwan View","time":"2018-07-14T07:07:01.099Z","enrolled":25744,"book":"http://jarret.info","course_url":"https://amparo.com"},{"course_title":"Nolan - Kertzmann","course_number":20951,"instructor":"Mrs. Haley Moore","location":"24540 Yolanda Pike","time":"2018-07-14T11:38:08.366Z","enrolled":91520,"book":"http://jayson.biz","course_url":"https://antoinette.com"},{"course_title":"Sipes, Mueller and Leffler","course_number":64147,"instructor":"Albertha Wiza","location":"5815 Kirstin Rapid","time":"2018-07-14T22:55:13.553Z","enrolled":62052,"book":"http://luigi.biz","course_url":"https://randall.net"},{"course_title":"Crist, Champlin and Zulauf","course_number":38430,"instructor":"Verner Hirthe","location":"759 Ryan Forge","time":"2018-07-14T17:33:40.489Z","enrolled":3057,"book":"https://michael.info","course_url":"https://demond.info"},{"course_title":"Halvorson - Mante","course_number":86024,"instructor":"Fae Olson","location":"12967 Williamson Crescent","time":"2018-07-14T14:28:16.643Z","enrolled":86367,"book":"http://nichole.name","course_url":"http://ollie.org"},{"course_title":"Jakubowski - Stehr","course_number":86295,"instructor":"Kassandra Wehner","location":"7161 Armani Union","time":"2018-07-14T13:46:31.135Z","enrolled":97501,"book":"https://candace.biz","course_url":"https://wilber.net"},{"course_title":"Borer LLC","course_number":65015,"instructor":"Dell Glover","location":"00724 Labadie Garden","time":"2018-07-13T23:28:58.551Z","enrolled":67853,"book":"https://flossie.name","course_url":"https://vivien.biz"},{"course_title":"Jakubowski, Green and Daniel","course_number":33280,"instructor":"Ms. Marjolaine Howe","location":"720 Sonya Run","time":"2018-07-14T04:16:09.614Z","enrolled":57642,"book":"https://malcolm.name","course_url":"http://chester.name"},{"course_title":"Brakus Inc","course_number":40321,"instructor":"Patience Doyle","location":"62338 Botsford Trail","time":"2018-07-14T01:18:47.931Z","enrolled":51895,"book":"http://lew.biz","course_url":"http://katlynn.info"},{"course_title":"Wilkinson, O'Hara and Hyatt","course_number":37483,"instructor":"Alvah McKenzie","location":"742 Harber Prairie","time":"2018-07-14T18:23:51.475Z","enrolled":6651,"book":"https://ansley.info","course_url":"http://genoveva.biz"},{"course_title":"Bradtke - Cole","course_number":43474,"instructor":"Marianne Hahn","location":"8663 Travis Lakes","time":"2018-07-14T05:02:28.026Z","enrolled":9161,"book":"https://wiley.name","course_url":"https://felicity.com"},{"course_title":"Turcotte, Mann and Ruecker","course_number":45551,"instructor":"Walter Buckridge","location":"0707 Rolfson Harbors","time":"2018-07-14T12:40:07.995Z","enrolled":83918,"book":"https://eliezer.com","course_url":"http://marianne.org"},{"course_title":"Cartwright Inc","course_number":23998,"instructor":"Miss Addie Klein","location":"9748 Schuster Overpass","time":"2018-07-14T19:37:58.872Z","enrolled":11400,"book":"http://verda.net","course_url":"https://rogelio.name"},{"course_title":"Walker Group","course_number":19466,"instructor":"Ms. Trever Schoen","location":"082 Sabina Route","time":"2018-07-14T02:32:11.071Z","enrolled":863,"book":"https://carole.name","course_url":"https://easter.net"},{"course_title":"Weimann, Mayert and Dietrich","course_number":17869,"instructor":"Cora D'Amore","location":"030 Morissette Plaza","time":"2018-07-14T21:10:26.514Z","enrolled":53797,"book":"https://lavern.net","course_url":"http://katrina.net"},{"course_title":"Barton, Upton and Gusikowski","course_number":29471,"instructor":"Marguerite Lemke","location":"7960 Sabrina Crescent","time":"2018-07-14T13:12:02.705Z","enrolled":54237,"book":"https://abigayle.org","course_url":"https://jaylan.com"},{"course_title":"Windler Group","course_number":72792,"instructor":"Libby Effertz","location":"4395 Joanie Roads","time":"2018-07-14T14:21:11.347Z","enrolled":81063,"book":"https://krista.biz","course_url":"https://stella.net"},{"course_title":"Conn, Goyette and Bode","course_number":85362,"instructor":"Mariano Crona","location":"696 Enos Key","time":"2018-07-14T05:50:26.195Z","enrolled":63409,"book":"http://carlotta.name","course_url":"https://frankie.biz"},{"course_title":"Schumm - Pfeffer","course_number":22215,"instructor":"Forest Kunde","location":"3791 Parisian Point","time":"2018-07-14T06:02:36.418Z","enrolled":25663,"book":"https://hobart.name","course_url":"http://daisy.name"},{"course_title":"Haag LLC","course_number":44123,"instructor":"Royal Ondricka","location":"182 Kody Turnpike","time":"2018-07-14T19:34:53.578Z","enrolled":9867,"book":"https://kimberly.name","course_url":"https://elisha.net"},{"course_title":"Stanton, Donnelly and Fritsch","course_number":63070,"instructor":"Odell Glover","location":"99132 Lelia Bypass","time":"2018-07-14T00:13:58.731Z","enrolled":34846,"book":"https://walker.info","course_url":"http://itzel.org"},{"course_title":"Huels LLC","course_number":14320,"instructor":"Wilmer Rohan","location":"64195 Kiehn Spurs","time":"2018-07-14T13:27:49.510Z","enrolled":96883,"book":"http://king.name","course_url":"https://edwin.net"},{"course_title":"Goodwin, Boyer and Kutch","course_number":31654,"instructor":"Gilbert Green","location":"5105 Gislason Center","time":"2018-07-13T23:20:00.162Z","enrolled":41894,"book":"http://benedict.name","course_url":"https://leila.com"},{"course_title":"Bruen Group","course_number":76238,"instructor":"Brenden Beier","location":"5349 Kelton Prairie","time":"2018-07-14T06:03:07.091Z","enrolled":90492,"book":"https://mittie.info","course_url":"https://ettie.com"},{"course_title":"Baumbach - Towne","course_number":96787,"instructor":"Mrs. Gilda Botsford","location":"0477 Ruecker Mill","time":"2018-07-14T03:08:55.781Z","enrolled":23435,"book":"https://trudie.net","course_url":"https://coby.net"},{"course_title":"Wilkinson - McLaughlin","course_number":8290,"instructor":"Arvilla Krajcik","location":"464 Heathcote Pike","time":"2018-07-14T07:11:05.214Z","enrolled":46269,"book":"https://patricia.name","course_url":"https://florence.net"},{"course_title":"Dach and Sons","course_number":19548,"instructor":"Gus Stiedemann","location":"2384 Tamia Rest","time":"2018-07-14T07:45:21.732Z","enrolled":55411,"book":"https://georgette.name","course_url":"http://raheem.biz"},{"course_title":"Berge, Wilderman and Satterfield","course_number":21428,"instructor":"Axel Witting","location":"48444 Wyman Mountains","time":"2018-07-14T15:51:59.688Z","enrolled":85870,"book":"https://gaetano.name","course_url":"https://howard.biz"},{"course_title":"Jast - MacGyver","course_number":64971,"instructor":"Macy Jacobi II","location":"1581 Jalon Glen","time":"2018-07-14T21:18:22.311Z","enrolled":97706,"book":"http://buddy.net","course_url":"http://nelson.info"},{"course_title":"Romaguera - Simonis","course_number":88215,"instructor":"Christ Konopelski","location":"45675 Conor Mill","time":"2018-07-14T16:20:53.343Z","enrolled":20516,"book":"https://ellis.com","course_url":"https://omer.name"},{"course_title":"Ward Group","course_number":2736,"instructor":"Sebastian Nitzsche","location":"9931 Armando Mills","time":"2018-07-14T05:40:45.510Z","enrolled":91595,"book":"http://lera.net","course_url":"https://noe.org"},{"course_title":"Cronin, Turner and Torphy","course_number":36556,"instructor":"Merl Sipes","location":"119 McClure Loaf","time":"2018-07-14T11:38:54.163Z","enrolled":94395,"book":"http://conrad.name","course_url":"http://modesto.com"},{"course_title":"Towne, Cartwright and Batz","course_number":68335,"instructor":"Jaylan Schultz","location":"7754 Alisa Brook","time":"2018-07-14T20:54:04.892Z","enrolled":39589,"book":"http://rita.org","course_url":"http://justen.name"},{"course_title":"Beahan, Pfannerstill and Waters","course_number":90347,"instructor":"Felipa Cartwright","location":"9959 Lesch View","time":"2018-07-14T09:42:14.439Z","enrolled":20614,"book":"https://jordi.net","course_url":"https://trent.name"},{"course_title":"Hirthe Group","course_number":67008,"instructor":"Nora Gislason","location":"23762 Bechtelar Stravenue","time":"2018-07-14T08:12:03.622Z","enrolled":73969,"book":"https://edmond.org","course_url":"https://meggie.net"},{"course_title":"Lowe - Dickinson","course_number":20184,"instructor":"Destiny McClure","location":"44353 Kovacek Canyon","time":"2018-07-14T16:26:39.428Z","enrolled":18320,"book":"http://kennith.name","course_url":"http://marta.info"},{"course_title":"Hane, Sauer and Adams","course_number":2032,"instructor":"Willow Bednar","location":"3587 Devin Radial","time":"2018-07-14T13:56:16.087Z","enrolled":73472,"book":"http://helena.net","course_url":"http://violet.net"},{"course_title":"Leannon - Greenfelder","course_number":32496,"instructor":"Mr. Maurine Rau","location":"0511 Will Meadows","time":"2018-07-14T07:00:01.563Z","enrolled":41103,"book":"http://rodolfo.net","course_url":"http://rashad.com"},{"course_title":"Graham - Cremin","course_number":73857,"instructor":"Jaunita Frami","location":"15653 Alta Fields","time":"2018-07-14T09:18:36.377Z","enrolled":35799,"book":"https://christina.name","course_url":"https://mellie.com"},{"course_title":"Kertzmann - King","course_number":57777,"instructor":"Landen Bradtke","location":"487 Kareem Locks","time":"2018-07-14T14:52:36.718Z","enrolled":44409,"book":"http://garland.biz","course_url":"https://august.net"},{"course_title":"Stokes, Zboncak and Kub","course_number":33463,"instructor":"Keagan Grant","location":"423 Marquardt Dale","time":"2018-07-14T18:13:19.332Z","enrolled":54760,"book":"https://terrill.biz","course_url":"https://yasmeen.name"},{"course_title":"Beier, Crona and O'Kon","course_number":89829,"instructor":"Genesis Wiza","location":"6333 Bode Junctions","time":"2018-07-14T06:12:20.905Z","enrolled":18483,"book":"https://adaline.net","course_url":"https://krista.info"},{"course_title":"Kulas Inc","course_number":28441,"instructor":"Mariela Ondricka IV","location":"4373 Carolanne Skyway","time":"2018-07-14T09:00:10.061Z","enrolled":56905,"book":"http://jayson.net","course_url":"https://austen.com"},{"course_title":"Rowe - Hauck","course_number":55773,"instructor":"Monique Paucek","location":"65703 Adele Spring","time":"2018-07-14T06:50:14.231Z","enrolled":57256,"book":"https://orin.name","course_url":"http://jayda.com"},{"course_title":"Champlin and Sons","course_number":25189,"instructor":"Rahsaan Lemke","location":"0098 Lueilwitz View","time":"2018-07-14T00:03:35.709Z","enrolled":79600,"book":"https://matt.name","course_url":"http://stanford.com"},{"course_title":"O'Kon - Frami","course_number":80547,"instructor":"Sebastian Pfannerstill","location":"6985 Rowe Motorway","time":"2018-07-14T05:11:26.862Z","enrolled":46508,"book":"http://araceli.org","course_url":"https://delfina.org"},{"course_title":"Abbott - McDermott","course_number":61355,"instructor":"Onie Cremin","location":"200 Jessica Pike","time":"2018-07-14T07:34:22.157Z","enrolled":80290,"book":"http://eleazar.org","course_url":"http://zelma.org"},{"course_title":"Roob and Sons","course_number":88772,"instructor":"Alessia Dicki","location":"27450 Bednar Ferry","time":"2018-07-14T12:46:53.274Z","enrolled":61007,"book":"https://thad.org","course_url":"https://clemmie.com"},{"course_title":"Feest and Sons","course_number":26551,"instructor":"Mrs. Maximilian Mosciski","location":"4459 Adela Harbors","time":"2018-07-14T22:48:28.814Z","enrolled":71494,"book":"https://janie.com","course_url":"https://albina.biz"},{"course_title":"Romaguera - Hirthe","course_number":98901,"instructor":"Mr. Lacy Klein","location":"2881 Beatty Islands","time":"2018-07-14T17:28:58.640Z","enrolled":15353,"book":"http://thelma.net","course_url":"http://adrien.info"},{"course_title":"Medhurst - McLaughlin","course_number":5250,"instructor":"Deja Quitzon","location":"380 Niko Forks","time":"2018-07-14T06:30:36.214Z","enrolled":46806,"book":"https://maddison.org","course_url":"https://steve.name"},{"course_title":"Ratke and Sons","course_number":90603,"instructor":"Jana Grant","location":"3001 Leuschke Passage","time":"2018-07-14T18:22:52.027Z","enrolled":24502,"book":"https://christian.biz","course_url":"http://abbigail.com"},{"course_title":"Vandervort, Stark and Casper","course_number":85066,"instructor":"Kendrick Abshire","location":"4983 Lydia Tunnel","time":"2018-07-14T14:13:12.754Z","enrolled":45884,"book":"https://lesley.com","course_url":"http://alta.biz"},{"course_title":"Nader, Thompson and Kiehn","course_number":68224,"instructor":"Allison Harber","location":"780 Spinka Highway","time":"2018-07-14T10:16:13.032Z","enrolled":88672,"book":"https://larry.com","course_url":"https://landen.org"},{"course_title":"Runolfsson - Ratke","course_number":23545,"instructor":"Shania Crooks MD","location":"2066 Dayana Fall","time":"2018-07-14T19:47:51.295Z","enrolled":86899,"book":"http://pablo.org","course_url":"https://erin.name"},{"course_title":"Fahey, Altenwerth and Feeney","course_number":67883,"instructor":"Delphine Cronin","location":"5592 Macejkovic Lane","time":"2018-07-14T22:03:50.847Z","enrolled":45682,"book":"http://millie.info","course_url":"https://shanel.net"},{"course_title":"Glover - Mills","course_number":82060,"instructor":"Ms. Ewald Roberts","location":"06548 Nigel Square","time":"2018-07-14T14:54:40.792Z","enrolled":4667,"book":"http://lionel.biz","course_url":"https://precious.name"},{"course_title":"White and Sons","course_number":6544,"instructor":"Graciela Kertzmann","location":"52412 Layla Forge","time":"2018-07-14T10:54:35.756Z","enrolled":31451,"book":"http://halle.net","course_url":"http://shanie.info"},{"course_title":"Greenholt Group","course_number":89618,"instructor":"Morgan Ward","location":"031 O'Keefe Dam","time":"2018-07-14T09:23:49.834Z","enrolled":46119,"book":"http://leone.com","course_url":"http://yolanda.net"},{"course_title":"Dicki Inc","course_number":74386,"instructor":"Alvis Turner","location":"2184 Charley Rest","time":"2018-07-14T03:41:54.982Z","enrolled":30705,"book":"https://archibald.net","course_url":"https://floyd.com"},{"course_title":"VonRueden and Sons","course_number":63749,"instructor":"Jovany Lowe I","location":"938 Jeromy Bridge","time":"2018-07-14T02:42:14.804Z","enrolled":97499,"book":"https://alivia.biz","course_url":"http://ressie.org"},{"course_title":"Tremblay and Sons","course_number":4213,"instructor":"Marvin Luettgen","location":"35485 Mayert Locks","time":"2018-07-14T14:55:32.418Z","enrolled":26376,"book":"https://cecilia.net","course_url":"http://lowell.org"},{"course_title":"Collier - Botsford","course_number":5112,"instructor":"Ethan Harris","location":"845 Ken Knoll","time":"2018-07-14T10:53:47.797Z","enrolled":76767,"book":"http://adriel.info","course_url":"https://dallin.name"},{"course_title":"Wehner - Rodriguez","course_number":99521,"instructor":"Mr. Ethel Batz","location":"199 Luz Dale","time":"2018-07-14T14:47:09.909Z","enrolled":46349,"book":"https://gene.biz","course_url":"http://zechariah.org"},{"course_title":"Padberg LLC","course_number":81430,"instructor":"Lacey Kertzmann","location":"37238 Kayden Parks","time":"2018-07-14T04:08:34.024Z","enrolled":68365,"book":"http://enoch.org","course_url":"http://tatyana.com"},{"course_title":"Steuber, Yundt and Lemke","course_number":5987,"instructor":"Nigel Stracke","location":"6410 Schinner Garden","time":"2018-07-14T19:53:23.160Z","enrolled":35794,"book":"https://alec.org","course_url":"http://aaliyah.com"},{"course_title":"Berge - Murphy","course_number":41031,"instructor":"Mac Stracke","location":"375 Desiree Forge","time":"2018-07-14T10:48:18.180Z","enrolled":43828,"book":"https://emelie.info","course_url":"https://gregory.com"},{"course_title":"Hilpert Group","course_number":83376,"instructor":"Raina Wiegand","location":"277 Sipes Estates","time":"2018-07-14T18:50:20.209Z","enrolled":68536,"book":"https://mohammed.biz","course_url":"https://paul.info"},{"course_title":"Yundt - Stanton","course_number":88490,"instructor":"Maeve Keeling","location":"050 Perry Corners","time":"2018-07-14T15:44:14.307Z","enrolled":26664,"book":"https://katherine.org","course_url":"https://lora.org"},{"course_title":"Ruecker - Marks","course_number":37284,"instructor":"Tanner Kreiger","location":"581 Parisian Skyway","time":"2018-07-14T10:14:34.768Z","enrolled":3953,"book":"https://kobe.biz","course_url":"http://isabel.name"},{"course_title":"Ratke, Considine and Schmidt","course_number":66359,"instructor":"Miss Ahmad Davis","location":"68062 Zulauf Road","time":"2018-07-14T05:15:40.237Z","enrolled":80733,"book":"http://krystina.net","course_url":"http://alva.biz"},{"course_title":"Rippin - Rowe","course_number":36489,"instructor":"Osbaldo Mueller I","location":"93718 Lakin Terrace","time":"2018-07-14T19:18:21.986Z","enrolled":23402,"book":"https://wendy.net","course_url":"http://osborne.name"},{"course_title":"Luettgen, Macejkovic and Armstrong","course_number":75035,"instructor":"Sophie Boehm","location":"485 Tierra Spurs","time":"2018-07-14T08:39:32.580Z","enrolled":1302,"book":"http://linda.net","course_url":"https://stanton.name"},{"course_title":"Romaguera, Cremin and Gorczany","course_number":36312,"instructor":"Damien Crist","location":"6701 Adelbert Key","time":"2018-07-14T15:05:39.779Z","enrolled":59702,"book":"https://jerrold.biz","course_url":"https://pearl.org"},{"course_title":"Runolfsdottir - Weber","course_number":26580,"instructor":"Carley Swift","location":"40708 Madge Mill","time":"2018-07-14T07:37:54.478Z","enrolled":64908,"book":"http://rocky.info","course_url":"https://junior.name"},{"course_title":"Lind Inc","course_number":82360,"instructor":"Gunner Bartoletti","location":"9621 Yolanda Landing","time":"2018-07-14T12:23:04.884Z","enrolled":65113,"book":"https://jalyn.name","course_url":"https://arely.org"},{"course_title":"Miller Group","course_number":27687,"instructor":"Estell Weimann","location":"47885 Ledner Row","time":"2018-07-14T11:16:41.500Z","enrolled":95283,"book":"https://magdalen.name","course_url":"https://rudolph.info"},{"course_title":"Rice, Grant and Haag","course_number":78972,"instructor":"Keith Weissnat","location":"6760 Botsford Club","time":"2018-07-13T23:15:53.053Z","enrolled":73267,"book":"https://frida.net","course_url":"https://haley.net"},{"course_title":"Upton - Schaefer","course_number":26153,"instructor":"Miss Norma Schumm","location":"493 Summer Ways","time":"2018-07-14T05:23:10.928Z","enrolled":87572,"book":"http://royal.biz","course_url":"http://taylor.name"},{"course_title":"Corkery LLC","course_number":26209,"instructor":"Shania Dooley","location":"131 Wolf Well","time":"2018-07-14T22:51:54.565Z","enrolled":82619,"book":"https://jackson.net","course_url":"http://albina.com"},{"course_title":"Gulgowski - Schmeler","course_number":60950,"instructor":"Davion Gutkowski DDS","location":"180 Antonietta Village","time":"2018-07-14T02:26:54.034Z","enrolled":85022,"book":"http://lawson.org","course_url":"https://ubaldo.biz"},{"course_title":"Orn Inc","course_number":21111,"instructor":"Marilou Shields","location":"433 Anderson Expressway","time":"2018-07-14T05:14:21.380Z","enrolled":47254,"book":"https://vita.biz","course_url":"http://jameson.com"},{"course_title":"Cronin, Krajcik and Littel","course_number":13499,"instructor":"Damien Mohr","location":"004 Merl Fort","time":"2018-07-14T03:59:11.974Z","enrolled":27204,"book":"http://fausto.org","course_url":"https://gregorio.org"},{"course_title":"Rowe LLC","course_number":69619,"instructor":"Emile Lesch","location":"9755 Reichert Points","time":"2018-07-14T08:51:00.458Z","enrolled":98159,"book":"https://alexandra.biz","course_url":"https://jarrod.org"},{"course_title":"Heidenreich - McDermott","course_number":30885,"instructor":"Bailey Collier","location":"85467 Treutel Lakes","time":"2018-07-14T15:44:36.279Z","enrolled":95614,"book":"http://ima.org","course_url":"https://sister.org"},{"course_title":"Keebler - Hackett","course_number":32245,"instructor":"Robyn Nitzsche","location":"7585 Cruickshank Grove","time":"2018-07-14T19:16:21.165Z","enrolled":17685,"book":"http://alexa.net","course_url":"http://myrtis.com"},{"course_title":"Green - Heller","course_number":94896,"instructor":"Aryanna Reynolds","location":"1331 Jamarcus Drive","time":"2018-07-14T14:12:11.418Z","enrolled":75233,"book":"https://kody.name","course_url":"https://eliezer.net"},{"course_title":"Lind, Morissette and Turcotte","course_number":80164,"instructor":"Angelina Conroy","location":"1442 McLaughlin Summit","time":"2018-07-14T09:51:14.476Z","enrolled":18697,"book":"http://juliana.biz","course_url":"http://orval.biz"},{"course_title":"Strosin LLC","course_number":25842,"instructor":"Breana Feil MD","location":"605 Vallie Fall","time":"2018-07-14T10:06:09.312Z","enrolled":79863,"book":"https://berta.org","course_url":"http://sterling.net"},{"course_title":"Emard, Dach and Witting","course_number":63293,"instructor":"Rogers Shanahan","location":"633 Maggio Park","time":"2018-07-14T06:00:26.285Z","enrolled":25206,"book":"http://genoveva.info","course_url":"https://rosalind.name"},{"course_title":"Krajcik and Sons","course_number":87161,"instructor":"Kallie Friesen","location":"7779 Cordelia Islands","time":"2018-07-14T01:07:54.782Z","enrolled":57794,"book":"https://ada.name","course_url":"https://joshuah.biz"},{"course_title":"Crona, Jaskolski and Davis","course_number":63385,"instructor":"Christophe Farrell","location":"0904 Rhianna Port","time":"2018-07-14T14:20:04.619Z","enrolled":48802,"book":"https://lauretta.net","course_url":"https://gaylord.net"},{"course_title":"Maggio Group","course_number":136,"instructor":"Jaleel Turcotte","location":"465 Stanley Springs","time":"2018-07-14T03:24:26.594Z","enrolled":67345,"book":"https://dorian.org","course_url":"http://shanie.name"},{"course_title":"Reinger and Sons","course_number":62737,"instructor":"Dannie Lueilwitz","location":"36588 Madonna Prairie","time":"2018-07-14T10:25:01.661Z","enrolled":79758,"book":"http://destiny.net","course_url":"https://nasir.org"},{"course_title":"Abbott Inc","course_number":76153,"instructor":"Gideon Bradtke","location":"98443 Prohaska Meadows","time":"2018-07-14T11:59:24.327Z","enrolled":2459,"book":"http://ayden.net","course_url":"http://cassandre.net"},{"course_title":"Herzog - DuBuque","course_number":1871,"instructor":"Darion Harber","location":"2322 Giovanni Camp","time":"2018-07-14T12:32:18.081Z","enrolled":85475,"book":"https://thurman.info","course_url":"http://haley.info"},{"course_title":"Ondricka and Sons","course_number":96297,"instructor":"Camille Boyer","location":"6092 Zelma Street","time":"2018-07-14T18:47:05.798Z","enrolled":20270,"book":"https://damon.com","course_url":"http://lelia.info"},{"course_title":"Hilll, Adams and Ankunding","course_number":20625,"instructor":"Trevor Windler","location":"664 Kulas Cliffs","time":"2018-07-14T09:42:01.764Z","enrolled":17027,"book":"https://cristina.org","course_url":"https://kade.biz"},{"course_title":"Ankunding, Turcotte and Lesch","course_number":43959,"instructor":"Alize Wunsch I","location":"9110 Hintz Ramp","time":"2018-07-13T23:13:05.772Z","enrolled":78766,"book":"https://ivory.net","course_url":"https://stefan.biz"},{"course_title":"Schinner - Raynor","course_number":20945,"instructor":"Marquis Smith","location":"5066 Jasper Flats","time":"2018-07-14T12:57:19.062Z","enrolled":82202,"book":"https://claire.net","course_url":"http://johanna.biz"},{"course_title":"Bogan - Davis","course_number":32126,"instructor":"Audra Schowalter","location":"78756 Mya Streets","time":"2018-07-14T13:28:37.738Z","enrolled":37649,"book":"https://heber.net","course_url":"http://titus.info"},{"course_title":"Yost Inc","course_number":6626,"instructor":"Zander Tillman","location":"404 Virginie Gateway","time":"2018-07-14T01:39:16.736Z","enrolled":59879,"book":"http://nelson.name","course_url":"https://tessie.biz"},{"course_title":"Mosciski, Graham and Spinka","course_number":5530,"instructor":"Mr. Amir Runolfsson","location":"8273 Gaylord Island","time":"2018-07-14T11:17:46.486Z","enrolled":96751,"book":"http://rossie.biz","course_url":"https://elta.org"},{"course_title":"Hudson Group","course_number":75479,"instructor":"Chaya Kutch Jr.","location":"106 Colt Loop","time":"2018-07-14T16:56:21.162Z","enrolled":79243,"book":"http://pink.net","course_url":"https://aurore.net"},{"course_title":"Weber LLC","course_number":30478,"instructor":"Marlene Carroll","location":"8753 Joesph Isle","time":"2018-07-14T19:01:13.189Z","enrolled":75809,"book":"http://sonya.info","course_url":"https://tressie.com"},{"course_title":"Gaylord, Rogahn and Frami","course_number":34569,"instructor":"Laverne Funk","location":"171 Schimmel Viaduct","time":"2018-07-14T08:19:47.200Z","enrolled":22040,"book":"http://hilma.org","course_url":"https://destini.net"},{"course_title":"Thiel, Morar and Will","course_number":85439,"instructor":"Isac Koelpin","location":"3513 Aufderhar Camp","time":"2018-07-14T01:11:18.483Z","enrolled":79979,"book":"http://germaine.name","course_url":"https://juanita.name"},{"course_title":"Carter - Wilderman","course_number":88955,"instructor":"Suzanne Hintz","location":"4567 Gibson Track","time":"2018-07-14T03:07:23.109Z","enrolled":76377,"book":"http://greyson.biz","course_url":"http://bette.biz"},{"course_title":"Muller, Gleason and Mohr","course_number":83690,"instructor":"Grady Christiansen","location":"69435 Bailey Harbors","time":"2018-07-14T21:15:55.462Z","enrolled":58520,"book":"http://reese.com","course_url":"http://ottilie.net"},{"course_title":"Bechtelar - Waelchi","course_number":65494,"instructor":"Ms. Zoey Tremblay","location":"34674 Aliya Forges","time":"2018-07-14T02:21:15.589Z","enrolled":83049,"book":"https://sven.org","course_url":"http://johann.info"},{"course_title":"Ondricka - Shields","course_number":17216,"instructor":"Adah McDermott","location":"826 Adell Cliff","time":"2018-07-14T19:47:28.150Z","enrolled":42396,"book":"http://emelia.net","course_url":"http://francesca.info"},{"course_title":"Cole - Weissnat","course_number":37053,"instructor":"Abdiel Goodwin II","location":"4124 Griffin Dale","time":"2018-07-14T17:26:55.694Z","enrolled":50404,"book":"https://boyd.net","course_url":"https://teagan.com"},{"course_title":"Frami Group","course_number":65238,"instructor":"Nels Yost","location":"897 Nienow Well","time":"2018-07-14T10:31:36.206Z","enrolled":75950,"book":"http://kory.biz","course_url":"https://aric.net"},{"course_title":"Carroll - Satterfield","course_number":54787,"instructor":"Rupert Thiel","location":"7109 Kuhlman Station","time":"2018-07-14T02:45:15.102Z","enrolled":168,"book":"http://lorenza.info","course_url":"https://isabelle.name"},{"course_title":"Gusikowski - Dickinson","course_number":64562,"instructor":"Kraig Borer","location":"05111 O'Hara Village","time":"2018-07-14T12:34:29.371Z","enrolled":46647,"book":"https://ozella.com","course_url":"http://junius.com"},{"course_title":"Yundt - Mayer","course_number":65456,"instructor":"Baron Stamm I","location":"870 Ullrich Lake","time":"2018-07-14T06:21:30.699Z","enrolled":94650,"book":"https://clovis.biz","course_url":"http://domenica.org"},{"course_title":"Bernier, Beer and Blick","course_number":43810,"instructor":"Ms. Weston Nienow","location":"332 Florian Estates","time":"2018-07-14T04:35:02.817Z","enrolled":38114,"book":"http://alisha.biz","course_url":"https://hunter.biz"},{"course_title":"Hudson, Trantow and Bogan","course_number":79909,"instructor":"Miss Ike Donnelly","location":"211 Destinee Roads","time":"2018-07-14T11:01:06.926Z","enrolled":79355,"book":"http://tanya.info","course_url":"https://kaitlin.biz"},{"course_title":"Sipes, Bins and McClure","course_number":89574,"instructor":"Clemmie Kemmer Sr.","location":"61208 Emery Tunnel","time":"2018-07-14T15:57:12.054Z","enrolled":68479,"book":"https://solon.net","course_url":"http://catherine.name"},{"course_title":"Swaniawski LLC","course_number":10304,"instructor":"Victoria Morar","location":"22982 Camryn Mount","time":"2018-07-14T07:40:02.246Z","enrolled":34887,"book":"http://brice.net","course_url":"https://fernando.name"},{"course_title":"Sanford, Stamm and Ratke","course_number":68946,"instructor":"Brittany Schumm","location":"1614 Clement Courts","time":"2018-07-14T04:16:21.821Z","enrolled":55490,"book":"http://alexandrea.biz","course_url":"http://sheldon.name"},{"course_title":"Kuphal Inc","course_number":60608,"instructor":"Leif Moen","location":"04287 Timmothy Station","time":"2018-07-14T06:34:24.942Z","enrolled":79695,"book":"http://devante.info","course_url":"http://garnett.net"},{"course_title":"Lockman Group","course_number":27388,"instructor":"Dr. Domenica Graham","location":"81228 Kozey Plains","time":"2018-07-14T00:22:42.170Z","enrolled":19801,"book":"https://dawson.info","course_url":"http://morton.com"},{"course_title":"Gerlach - Lowe","course_number":31368,"instructor":"Eliezer Effertz","location":"9523 Reva Villages","time":"2018-07-14T00:03:05.139Z","enrolled":16541,"book":"https://jovany.biz","course_url":"https://caitlyn.net"},{"course_title":"Leffler - Casper","course_number":87294,"instructor":"Eda Rohan","location":"8623 Kiehn Mountain","time":"2018-07-14T21:35:09.631Z","enrolled":62298,"book":"http://cayla.com","course_url":"http://alayna.info"},{"course_title":"Pfeffer, Swift and Crist","course_number":5390,"instructor":"Lindsay Donnelly","location":"7918 Daphne Square","time":"2018-07-14T20:33:13.173Z","enrolled":51321,"book":"https://ignacio.biz","course_url":"http://anika.net"},{"course_title":"Kovacek Inc","course_number":13911,"instructor":"Rosetta Aufderhar","location":"9150 Mraz Park","time":"2018-07-14T22:58:52.804Z","enrolled":16398,"book":"http://scottie.com","course_url":"https://norbert.biz"},{"course_title":"Thiel, Baumbach and Bechtelar","course_number":50165,"instructor":"Twila Abernathy","location":"40205 Bartell Tunnel","time":"2018-07-14T09:57:16.812Z","enrolled":72024,"book":"http://alaina.name","course_url":"http://robb.net"},{"course_title":"Marvin Group","course_number":8771,"instructor":"Johann Jenkins","location":"204 Kailee Cliff","time":"2018-07-14T04:03:39.999Z","enrolled":50994,"book":"http://korey.name","course_url":"http://manley.name"},{"course_title":"Schuppe, O'Connell and Romaguera","course_number":79349,"instructor":"Garett Fahey","location":"5631 Sawayn Way","time":"2018-07-14T10:49:13.829Z","enrolled":55481,"book":"http://hanna.com","course_url":"http://una.info"},{"course_title":"Champlin - Kovacek","course_number":98099,"instructor":"Pauline Graham","location":"633 Cade Gardens","time":"2018-07-14T19:01:23.171Z","enrolled":70284,"book":"https://autumn.biz","course_url":"https://monserrate.biz"},{"course_title":"Sawayn Inc","course_number":4296,"instructor":"Rafael Powlowski","location":"8093 Reichel Meadows","time":"2018-07-14T11:15:22.045Z","enrolled":44122,"book":"https://jaleel.org","course_url":"https://itzel.info"},{"course_title":"Schulist, Harris and Hayes","course_number":95222,"instructor":"Pattie Christiansen","location":"3591 Koch Mountains","time":"2018-07-14T08:12:33.432Z","enrolled":64150,"book":"http://gennaro.biz","course_url":"https://kenton.name"},{"course_title":"Treutel, Schumm and Muller","course_number":83945,"instructor":"Trace Paucek","location":"0230 Rath Extensions","time":"2018-07-14T09:51:20.320Z","enrolled":24981,"book":"http://kianna.biz","course_url":"https://norene.biz"},{"course_title":"Feest, Wiegand and VonRueden","course_number":7865,"instructor":"Greg Bogisich","location":"25782 Langosh Loop","time":"2018-07-14T05:16:10.679Z","enrolled":4229,"book":"https://claudie.name","course_url":"http://camden.com"},{"course_title":"Friesen and Sons","course_number":30954,"instructor":"Gaston Langworth","location":"9175 Lockman Walk","time":"2018-07-14T12:55:25.908Z","enrolled":43945,"book":"https://juanita.info","course_url":"https://erika.com"},{"course_title":"Purdy and Sons","course_number":47577,"instructor":"Mark Purdy","location":"6080 Joel Shoals","time":"2018-07-14T19:04:10.049Z","enrolled":81881,"book":"https://layne.name","course_url":"https://christian.biz"},{"course_title":"Jones, Larson and Legros","course_number":37407,"instructor":"Eloise Ortiz","location":"484 Tiana Fords","time":"2018-07-14T09:06:50.986Z","enrolled":35511,"book":"http://garnett.com","course_url":"http://erwin.biz"},{"course_title":"Hettinger, Fay and Bernhard","course_number":34629,"instructor":"Gilberto Lemke","location":"499 Roel Spur","time":"2018-07-14T01:07:26.209Z","enrolled":26645,"book":"http://reymundo.com","course_url":"https://brayan.net"},{"course_title":"Hand, Bailey and Ritchie","course_number":80032,"instructor":"Rogelio Dietrich","location":"54088 Estevan Centers","time":"2018-07-14T20:41:25.909Z","enrolled":25173,"book":"http://izabella.net","course_url":"https://peyton.com"},{"course_title":"Thiel, Satterfield and Hamill","course_number":55096,"instructor":"Joe Boehm","location":"9509 Heidenreich Fall","time":"2018-07-14T06:43:00.952Z","enrolled":92891,"book":"http://harvey.name","course_url":"https://leda.biz"},{"course_title":"Kreiger - Torphy","course_number":96338,"instructor":"Isabelle Cole","location":"13062 Kautzer Centers","time":"2018-07-14T12:26:43.910Z","enrolled":49184,"book":"http://dolores.com","course_url":"http://jeffrey.info"},{"course_title":"Langosh, Kuhic and Becker","course_number":43124,"instructor":"Evangeline Brekke","location":"88497 Lynch Rest","time":"2018-07-14T21:03:24.967Z","enrolled":84456,"book":"https://vincent.com","course_url":"https://darwin.biz"},{"course_title":"Mills, Koch and Collier","course_number":83523,"instructor":"Jody Waters","location":"3664 Wolf Summit","time":"2018-07-14T00:16:06.084Z","enrolled":19075,"book":"https://priscilla.name","course_url":"http://shaniya.com"},{"course_title":"O'Connell, Koss and Gorczany","course_number":44156,"instructor":"Mr. Anya Fay","location":"9132 Huel Locks","time":"2018-07-14T11:48:16.115Z","enrolled":26442,"book":"http://quinton.name","course_url":"https://reilly.net"},{"course_title":"Padberg, Collier and Dare","course_number":41372,"instructor":"Tyson Bruen","location":"6542 Shanny Center","time":"2018-07-14T05:09:44.041Z","enrolled":80729,"book":"https://tristian.info","course_url":"https://leanna.net"},{"course_title":"Nitzsche, Upton and Langworth","course_number":32921,"instructor":"Eldridge Hoppe","location":"9106 Kristin Points","time":"2018-07-14T00:13:35.492Z","enrolled":4016,"book":"https://jasen.net","course_url":"http://german.info"},{"course_title":"Wehner, Fisher and Nitzsche","course_number":40484,"instructor":"Marc Hermiston","location":"560 Faye Corner","time":"2018-07-14T02:19:53.882Z","enrolled":1081,"book":"https://dallas.com","course_url":"http://yasmine.net"},{"course_title":"Watsica - Ebert","course_number":69755,"instructor":"Richmond Thiel","location":"899 Bradford Freeway","time":"2018-07-14T01:52:54.006Z","enrolled":6076,"book":"https://janick.info","course_url":"http://clarissa.net"},{"course_title":"Farrell Inc","course_number":87406,"instructor":"Camron Brakus","location":"02388 Tyreek Loaf","time":"2018-07-14T17:15:42.725Z","enrolled":71125,"book":"https://monroe.info","course_url":"https://stevie.net"},{"course_title":"Lynch, Wyman and Nader","course_number":32970,"instructor":"Tobin Hoppe","location":"74953 Genoveva Roads","time":"2018-07-14T21:29:57.552Z","enrolled":35866,"book":"https://colleen.com","course_url":"http://harrison.name"},{"course_title":"Jerde - Gislason","course_number":9036,"instructor":"Branson Kirlin","location":"3773 Sigmund Viaduct","time":"2018-07-14T02:46:29.608Z","enrolled":94386,"book":"https://idella.org","course_url":"http://ryder.org"},{"course_title":"Quitzon, Cormier and O'Conner","course_number":34979,"instructor":"Darien Miller","location":"634 Bode Shores","time":"2018-07-14T02:58:25.924Z","enrolled":52384,"book":"http://jensen.com","course_url":"https://amani.info"},{"course_title":"Crona - McLaughlin","course_number":13112,"instructor":"Brayan Berge","location":"98311 Mariana Unions","time":"2018-07-14T15:31:37.081Z","enrolled":28088,"book":"http://ines.org","course_url":"http://magali.com"},{"course_title":"Kling - Harber","course_number":93268,"instructor":"Ora Effertz","location":"74258 Jacynthe Expressway","time":"2018-07-14T07:05:25.329Z","enrolled":17733,"book":"http://chance.name","course_url":"https://jonathon.name"},{"course_title":"Rau Inc","course_number":83632,"instructor":"Maribel Langosh","location":"974 Jaquan Radial","time":"2018-07-14T01:19:47.142Z","enrolled":5770,"book":"https://monserrat.org","course_url":"http://jerome.net"},{"course_title":"Auer, Champlin and O'Reilly","course_number":64692,"instructor":"Maymie Brekke","location":"4960 Isabelle Wells","time":"2018-07-14T06:24:16.067Z","enrolled":91427,"book":"https://cordie.net","course_url":"http://creola.name"},{"course_title":"McGlynn and Sons","course_number":93492,"instructor":"Aniyah Heller","location":"562 Brenna Loaf","time":"2018-07-14T17:00:25.682Z","enrolled":55076,"book":"https://timmothy.info","course_url":"http://aglae.net"},{"course_title":"Connelly - Ruecker","course_number":62525,"instructor":"Mia Haag","location":"5462 Gaylord Unions","time":"2018-07-14T08:35:12.580Z","enrolled":16977,"book":"https://rosanna.net","course_url":"https://melvin.com"},{"course_title":"Feeney - Blick","course_number":8417,"instructor":"Miss Bria Langosh","location":"7254 Guillermo Junctions","time":"2018-07-14T03:02:55.581Z","enrolled":93581,"book":"http://israel.biz","course_url":"https://julian.biz"},{"course_title":"Runte, Ortiz and Rosenbaum","course_number":89583,"instructor":"Nelle Satterfield V","location":"28973 Greenfelder Courts","time":"2018-07-14T13:24:57.318Z","enrolled":58442,"book":"https://simone.info","course_url":"http://arnold.org"},{"course_title":"Hirthe, Bartoletti and Rath","course_number":604,"instructor":"Emilio Purdy","location":"25368 Gaylord Orchard","time":"2018-07-14T16:40:52.892Z","enrolled":57755,"book":"http://everett.org","course_url":"http://sheldon.biz"},{"course_title":"Grimes, Moore and Hyatt","course_number":1083,"instructor":"Vince Kuphal","location":"14061 Tianna Forks","time":"2018-07-14T04:19:54.558Z","enrolled":77821,"book":"https://derek.com","course_url":"http://myah.com"},{"course_title":"Rath Inc","course_number":51883,"instructor":"Ms. Luciano Waelchi","location":"80181 Ortiz Route","time":"2018-07-14T11:45:00.268Z","enrolled":94390,"book":"https://zion.info","course_url":"http://lura.biz"},{"course_title":"Quitzon - Rutherford","course_number":57362,"instructor":"Dianna Hilpert","location":"7061 Schmitt Prairie","time":"2018-07-14T00:11:12.049Z","enrolled":85354,"book":"http://nathan.biz","course_url":"https://gregoria.info"},{"course_title":"Goodwin Group","course_number":55977,"instructor":"Walter Wuckert Sr.","location":"567 Crooks Lock","time":"2018-07-14T05:05:15.915Z","enrolled":53974,"book":"https://mac.name","course_url":"http://dee.com"},{"course_title":"Kub Group","course_number":45746,"instructor":"Brendon Daugherty","location":"0853 Bode Flats","time":"2018-07-14T06:30:05.873Z","enrolled":96292,"book":"http://dalton.biz","course_url":"https://elmo.com"},{"course_title":"Satterfield - Gutkowski","course_number":99953,"instructor":"Dr. Marjory Morar","location":"4965 Rebeka Mill","time":"2018-07-14T07:33:57.277Z","enrolled":43539,"book":"http://thora.biz","course_url":"http://concepcion.org"},{"course_title":"Nicolas, Kerluke and Shanahan","course_number":79496,"instructor":"Aurelio Brown","location":"7861 Kris Meadow","time":"2018-07-14T20:13:21.939Z","enrolled":18485,"book":"https://pablo.info","course_url":"http://duane.info"},{"course_title":"Reichel - Harris","course_number":43186,"instructor":"Creola Keeling DVM","location":"007 Retta Shoals","time":"2018-07-14T11:00:26.289Z","enrolled":65680,"book":"http://luigi.info","course_url":"http://claude.info"},{"course_title":"Thompson - Parisian","course_number":11371,"instructor":"Joelle Hudson","location":"72826 Stamm Fork","time":"2018-07-14T07:45:39.905Z","enrolled":69391,"book":"http://stacy.info","course_url":"http://wilburn.org"},{"course_title":"Ledner - Balistreri","course_number":67304,"instructor":"Mr. Immanuel Feil","location":"1092 Mossie Lake","time":"2018-07-14T20:20:31.316Z","enrolled":12903,"book":"https://yasmeen.org","course_url":"https://fredrick.biz"},{"course_title":"Spencer - Frami","course_number":76071,"instructor":"Emilio Gottlieb","location":"4360 Era River","time":"2018-07-14T18:35:46.541Z","enrolled":50349,"book":"https://marguerite.com","course_url":"https://rodolfo.name"},{"course_title":"Metz Group","course_number":14544,"instructor":"Baron Ward","location":"2312 Raoul Gateway","time":"2018-07-14T15:07:25.655Z","enrolled":21738,"book":"https://zachariah.org","course_url":"https://clark.net"},{"course_title":"Ziemann - Aufderhar","course_number":13279,"instructor":"Eulah Barrows","location":"31626 Ward Branch","time":"2018-07-14T02:05:31.324Z","enrolled":6046,"book":"https://asha.biz","course_url":"https://nedra.com"},{"course_title":"Bauch - Morar","course_number":59103,"instructor":"Ivory Labadie","location":"0130 Carmela Walk","time":"2018-07-14T20:07:46.383Z","enrolled":72415,"book":"https://ulices.net","course_url":"https://dariana.com"},{"course_title":"Hoeger, Marvin and Swift","course_number":72214,"instructor":"Virgie Satterfield","location":"24752 Simonis Walk","time":"2018-07-14T14:29:48.371Z","enrolled":56204,"book":"http://marietta.biz","course_url":"https://alba.biz"},{"course_title":"Bartell - Bernier","course_number":86069,"instructor":"Mrs. Danyka Botsford","location":"849 Raegan Curve","time":"2018-07-14T03:24:00.990Z","enrolled":13469,"book":"https://francesca.org","course_url":"http://jillian.biz"},{"course_title":"Prohaska - Koss","course_number":92933,"instructor":"Misty Russel","location":"725 Kuhic Motorway","time":"2018-07-14T08:29:55.194Z","enrolled":45506,"book":"http://edyth.biz","course_url":"http://cameron.biz"},{"course_title":"Schuster - Schowalter","course_number":48503,"instructor":"Oliver Cummings","location":"882 Pearl Corner","time":"2018-07-14T02:31:42.142Z","enrolled":89483,"book":"https://jordi.com","course_url":"http://ruth.name"},{"course_title":"Hand, McClure and Rau","course_number":91022,"instructor":"Mrs. Kathryne Krajcik","location":"01251 Klein Stream","time":"2018-07-14T15:40:14.939Z","enrolled":94051,"book":"https://marcellus.net","course_url":"https://luz.name"},{"course_title":"Heller Group","course_number":50731,"instructor":"Dorcas Dickinson","location":"2477 Amina Roads","time":"2018-07-14T12:52:31.562Z","enrolled":82769,"book":"http://guy.name","course_url":"https://greyson.com"},{"course_title":"Swift, Koch and Ortiz","course_number":30939,"instructor":"Ms. Derek Altenwerth","location":"479 Harris Drive","time":"2018-07-14T17:54:46.216Z","enrolled":3444,"book":"https://elvera.net","course_url":"https://anna.com"},{"course_title":"Boehm LLC","course_number":8490,"instructor":"Edwardo Leffler","location":"312 Macejkovic Junctions","time":"2018-07-14T01:54:02.446Z","enrolled":5248,"book":"http://sincere.name","course_url":"http://claudine.info"},{"course_title":"Mante, Ward and Parisian","course_number":58988,"instructor":"Dixie Larkin","location":"83708 Reinger Spurs","time":"2018-07-14T11:35:34.518Z","enrolled":13044,"book":"https://myah.biz","course_url":"http://michele.net"},{"course_title":"Ernser, Hudson and Considine","course_number":88204,"instructor":"Brandyn Howe","location":"96194 Brad Pass","time":"2018-07-14T12:48:52.232Z","enrolled":71658,"book":"http://cydney.org","course_url":"http://lonzo.com"},{"course_title":"Streich Inc","course_number":50583,"instructor":"Ben Dickinson","location":"494 Aditya Fall","time":"2018-07-14T15:01:01.341Z","enrolled":90910,"book":"https://darlene.com","course_url":"http://elmo.org"},{"course_title":"Hegmann, Tromp and Murazik","course_number":91909,"instructor":"Mr. Jacinthe Ortiz","location":"17284 Wilkinson Prairie","time":"2018-07-14T16:16:42.785Z","enrolled":52727,"book":"http://providenci.com","course_url":"https://aditya.biz"},{"course_title":"Runte - Goyette","course_number":38566,"instructor":"Russel Orn","location":"28608 Kuphal Alley","time":"2018-07-14T07:19:33.889Z","enrolled":78468,"book":"https://oma.org","course_url":"https://cordelia.biz"},{"course_title":"Cassin, Kertzmann and Murazik","course_number":67548,"instructor":"Esperanza White","location":"192 Betty Burgs","time":"2018-07-14T18:10:52.935Z","enrolled":27522,"book":"https://alexanne.biz","course_url":"http://celestine.biz"},{"course_title":"Powlowski - Dickinson","course_number":89570,"instructor":"Mrs. Kole Bogisich","location":"877 Lesch Forges","time":"2018-07-14T20:36:23.039Z","enrolled":47164,"book":"https://darrel.biz","course_url":"https://ceasar.name"},{"course_title":"Robel - Tremblay","course_number":983,"instructor":"Chelsey Bahringer","location":"99756 Schmeler Haven","time":"2018-07-14T04:03:34.025Z","enrolled":74480,"book":"https://jefferey.net","course_url":"http://tyrell.info"},{"course_title":"Von and Sons","course_number":50530,"instructor":"Madie Schneider","location":"012 MacGyver Hill","time":"2018-07-14T11:37:49.923Z","enrolled":79043,"book":"https://luther.info","course_url":"http://faustino.info"},{"course_title":"Hamill and Sons","course_number":60368,"instructor":"Dr. Daphnee Bergstrom","location":"38731 Robel Islands","time":"2018-07-14T14:58:10.661Z","enrolled":97726,"book":"http://karli.info","course_url":"https://nicolette.info"},{"course_title":"Rolfson Group","course_number":36864,"instructor":"Clinton Price","location":"173 Olga Spur","time":"2018-07-14T06:11:41.779Z","enrolled":21535,"book":"https://diamond.name","course_url":"http://constantin.org"},{"course_title":"Harvey - Farrell","course_number":81944,"instructor":"Marvin Dach","location":"312 Joel Mills","time":"2018-07-14T09:31:54.517Z","enrolled":63755,"book":"https://delilah.info","course_url":"http://lloyd.name"},{"course_title":"Wisoky and Sons","course_number":4527,"instructor":"Dasia Romaguera","location":"653 Conroy Cliff","time":"2018-07-14T21:08:11.901Z","enrolled":34595,"book":"http://bradly.info","course_url":"https://florida.org"},{"course_title":"Kshlerin - Hyatt","course_number":12307,"instructor":"Zora O'Hara","location":"4921 Treutel Flat","time":"2018-07-14T18:29:49.682Z","enrolled":37435,"book":"http://travis.net","course_url":"http://sigurd.org"},{"course_title":"Hettinger LLC","course_number":85551,"instructor":"Celia Bayer","location":"849 Olson Parks","time":"2018-07-14T11:30:00.236Z","enrolled":62863,"book":"http://claude.info","course_url":"http://jillian.com"},{"course_title":"Lindgren - Torp","course_number":40941,"instructor":"Maribel Stokes PhD","location":"5496 Aniyah Ports","time":"2018-07-14T22:02:49.590Z","enrolled":67217,"book":"https://loraine.com","course_url":"https://lilian.com"},{"course_title":"Schowalter Group","course_number":10287,"instructor":"Mr. Sibyl Langosh","location":"457 Mann Mountain","time":"2018-07-14T16:45:04.604Z","enrolled":6884,"book":"http://caesar.name","course_url":"https://destiny.biz"},{"course_title":"Olson - Mertz","course_number":2469,"instructor":"Ms. Madisen Torp","location":"4020 Guiseppe Ville","time":"2018-07-14T19:43:53.065Z","enrolled":13919,"book":"http://andrew.net","course_url":"https://heloise.org"},{"course_title":"Flatley Inc","course_number":86904,"instructor":"Fabian Schultz","location":"6386 Katarina Throughway","time":"2018-07-14T00:25:09.858Z","enrolled":57247,"book":"https://ashleigh.net","course_url":"http://sheila.info"},{"course_title":"Muller, Kemmer and Pfeffer","course_number":56816,"instructor":"Agustina Hauck","location":"94140 Beer Estates","time":"2018-07-14T21:44:55.774Z","enrolled":74578,"book":"http://jadon.info","course_url":"https://leatha.com"},{"course_title":"Walsh, Barton and Barrows","course_number":53277,"instructor":"Dwight Waters","location":"8425 Rebeca Locks","time":"2018-07-14T00:16:45.826Z","enrolled":21254,"book":"http://leopoldo.net","course_url":"http://hellen.org"},{"course_title":"Sawayn, Eichmann and Sawayn","course_number":51627,"instructor":"Ronny Hansen","location":"74705 Stoltenberg Loop","time":"2018-07-14T21:51:10.699Z","enrolled":38519,"book":"https://ottilie.info","course_url":"https://willow.net"},{"course_title":"Hartmann, Harris and Veum","course_number":14615,"instructor":"Hallie Daugherty","location":"7395 Cole Crest","time":"2018-07-14T14:52:29.359Z","enrolled":80516,"book":"http://otto.com","course_url":"http://providenci.biz"},{"course_title":"Ruecker Inc","course_number":55649,"instructor":"Mortimer Dickinson","location":"79515 Lulu Lake","time":"2018-07-14T11:06:38.129Z","enrolled":88838,"book":"https://axel.org","course_url":"http://zion.biz"},{"course_title":"Kuvalis, Wolff and Nolan","course_number":21573,"instructor":"Glennie Mayert","location":"8563 Cassin Islands","time":"2018-07-14T18:59:05.582Z","enrolled":32332,"book":"https://efren.biz","course_url":"https://freddie.info"},{"course_title":"Hegmann - Bartell","course_number":53121,"instructor":"Maddison Hickle IV","location":"588 Klocko Burgs","time":"2018-07-14T06:56:23.791Z","enrolled":81982,"book":"http://raleigh.info","course_url":"http://margaret.biz"},{"course_title":"Flatley, Feest and Crooks","course_number":66564,"instructor":"Kailee Mante","location":"72466 Fred Roads","time":"2018-07-14T07:16:32.116Z","enrolled":1691,"book":"https://sydni.net","course_url":"https://mandy.info"},{"course_title":"Hansen, Doyle and White","course_number":71324,"instructor":"Arne Moore","location":"22417 Terry Stream","time":"2018-07-14T01:46:14.764Z","enrolled":42808,"book":"https://olin.biz","course_url":"https://wilhelm.info"},{"course_title":"McCullough, Skiles and Jakubowski","course_number":31744,"instructor":"Ms. Ottilie Stark","location":"2155 Elyse Mountains","time":"2018-07-14T05:27:28.412Z","enrolled":20932,"book":"https://elwyn.net","course_url":"https://joshuah.info"},{"course_title":"Hills, Bruen and Goyette","course_number":47601,"instructor":"Tia Volkman","location":"81858 Ritchie Walks","time":"2018-07-14T15:51:15.761Z","enrolled":26332,"book":"http://morton.com","course_url":"http://elta.info"},{"course_title":"Hegmann, Lind and Ziemann","course_number":68294,"instructor":"Miss Stefan Fay","location":"3725 Kiehn Rest","time":"2018-07-14T11:37:02.046Z","enrolled":41893,"book":"http://hollie.biz","course_url":"https://holly.net"},{"course_title":"Will Group","course_number":68191,"instructor":"Destin Morissette DVM","location":"337 Sofia Fall","time":"2018-07-14T11:46:14.985Z","enrolled":9081,"book":"https://kurt.org","course_url":"http://jeremie.name"},{"course_title":"Johns Inc","course_number":47986,"instructor":"Archibald Bayer","location":"5268 Bashirian Rest","time":"2018-07-14T04:00:51.164Z","enrolled":93032,"book":"https://amely.net","course_url":"https://jalon.name"},{"course_title":"White Inc","course_number":8135,"instructor":"Aaron Sauer","location":"11812 Yundt Fork","time":"2018-07-14T19:50:00.450Z","enrolled":89373,"book":"https://josephine.net","course_url":"http://angel.info"},{"course_title":"Mayer, Moore and Bernier","course_number":32096,"instructor":"Geraldine Grady","location":"5638 Marley Station","time":"2018-07-14T07:07:49.198Z","enrolled":37219,"book":"https://clotilde.com","course_url":"https://ila.biz"},{"course_title":"Predovic - Stracke","course_number":39861,"instructor":"Werner Wilkinson","location":"5091 Bailey Pass","time":"2018-07-14T10:55:05.171Z","enrolled":63950,"book":"https://abigale.info","course_url":"http://gladyce.info"},{"course_title":"Zemlak Group","course_number":60681,"instructor":"Samantha Ondricka","location":"93500 Adrain Keys","time":"2018-07-14T17:36:28.344Z","enrolled":83126,"book":"https://rey.org","course_url":"https://isaac.org"},{"course_title":"Shields, Runolfsdottir and Padberg","course_number":41267,"instructor":"Hiram Veum","location":"994 Arch Dale","time":"2018-07-14T12:16:00.406Z","enrolled":13880,"book":"https://minerva.biz","course_url":"http://aidan.biz"},{"course_title":"Dooley Group","course_number":24064,"instructor":"Marcia Brekke","location":"26592 Ciara Brook","time":"2018-07-14T11:25:14.200Z","enrolled":57627,"book":"https://damion.name","course_url":"http://ima.info"},{"course_title":"Murray, MacGyver and Shanahan","course_number":89393,"instructor":"Brian Jacobson","location":"923 Estella Cliff","time":"2018-07-14T13:17:27.516Z","enrolled":66260,"book":"https://mabel.info","course_url":"https://gay.com"},{"course_title":"Torp, Keeling and Huel","course_number":39678,"instructor":"Katelin Schaden","location":"04403 Hoppe Prairie","time":"2018-07-14T11:08:01.081Z","enrolled":2875,"book":"https://melvin.com","course_url":"http://sage.org"},{"course_title":"Sporer Inc","course_number":92387,"instructor":"Vernon Heathcote Jr.","location":"84541 Kub Dale","time":"2018-07-14T18:13:00.515Z","enrolled":75356,"book":"https://rollin.org","course_url":"https://camryn.info"},{"course_title":"Murazik Inc","course_number":74575,"instructor":"Sienna Macejkovic","location":"9097 Gislason Manors","time":"2018-07-14T01:09:05.980Z","enrolled":40257,"book":"http://keon.net","course_url":"http://trudie.net"},{"course_title":"Gutkowski and Sons","course_number":13127,"instructor":"Myrtle Heathcote","location":"13612 Arnoldo Springs","time":"2018-07-14T11:43:52.676Z","enrolled":2559,"book":"http://stanley.org","course_url":"http://edmond.biz"},{"course_title":"Bradtke, Mraz and Goyette","course_number":85294,"instructor":"Fabiola Barton","location":"1496 Schowalter Union","time":"2018-07-14T05:39:48.647Z","enrolled":39814,"book":"http://kenyatta.net","course_url":"http://minerva.info"},{"course_title":"Koepp, Davis and Lueilwitz","course_number":53936,"instructor":"Miss Rico Kreiger","location":"0910 Brekke Branch","time":"2018-07-14T08:43:41.100Z","enrolled":33878,"book":"https://sophia.net","course_url":"https://gladyce.name"},{"course_title":"Kertzmann Group","course_number":15498,"instructor":"Mary Heller","location":"033 Marks Meadow","time":"2018-07-14T19:33:32.206Z","enrolled":41100,"book":"http://rosanna.name","course_url":"https://rosamond.org"},{"course_title":"Emmerich - Herzog","course_number":75476,"instructor":"Miss Jamir Murphy","location":"187 Ayden Island","time":"2018-07-14T17:39:49.726Z","enrolled":75285,"book":"https://kylee.name","course_url":"https://imani.name"},{"course_title":"Gislason, Bailey and Crooks","course_number":21347,"instructor":"Dewayne Shanahan IV","location":"49313 Gerlach Branch","time":"2018-07-14T19:36:52.274Z","enrolled":98512,"book":"http://krystina.biz","course_url":"http://cleveland.net"},{"course_title":"Dickinson, Jaskolski and Ortiz","course_number":53330,"instructor":"Milford Brown I","location":"8119 Grace Ways","time":"2018-07-14T07:08:51.405Z","enrolled":98182,"book":"http://nolan.name","course_url":"https://marguerite.info"},{"course_title":"Strosin, Lesch and Heaney","course_number":35977,"instructor":"Daphne Kuvalis","location":"475 Klocko Prairie","time":"2018-07-14T12:28:36.659Z","enrolled":87137,"book":"https://tyson.com","course_url":"http://dante.com"},{"course_title":"Goodwin LLC","course_number":42312,"instructor":"Vaughn Cassin","location":"18904 Will Neck","time":"2018-07-14T20:40:02.977Z","enrolled":99742,"book":"https://noe.org","course_url":"http://maurice.com"},{"course_title":"Abbott Inc","course_number":20953,"instructor":"Reba Cole","location":"9644 Funk Ranch","time":"2018-07-14T12:25:27.284Z","enrolled":82689,"book":"http://marion.net","course_url":"http://jamaal.org"},{"course_title":"Cormier and Sons","course_number":31028,"instructor":"Deondre Orn","location":"73878 Fay Fork","time":"2018-07-14T05:51:11.278Z","enrolled":25506,"book":"https://lexi.org","course_url":"https://minerva.org"},{"course_title":"Labadie - Macejkovic","course_number":64571,"instructor":"Blanche Huels","location":"178 Willa Ramp","time":"2018-07-14T16:23:52.781Z","enrolled":94820,"book":"http://alessia.name","course_url":"https://edythe.org"},{"course_title":"Wehner - Klocko","course_number":14969,"instructor":"Bethel Gutkowski","location":"71081 Friesen Avenue","time":"2018-07-14T10:31:00.497Z","enrolled":2847,"book":"https://amira.biz","course_url":"https://jalyn.name"},{"course_title":"O'Conner - Lindgren","course_number":38783,"instructor":"Nettie Auer","location":"62324 Koby Fork","time":"2018-07-14T10:25:20.532Z","enrolled":74079,"book":"https://bernita.com","course_url":"http://gregorio.net"},{"course_title":"Senger, Grimes and Sipes","course_number":79969,"instructor":"Hilton Rogahn","location":"0546 Gutmann Road","time":"2018-07-14T02:53:55.781Z","enrolled":44726,"book":"http://michaela.biz","course_url":"https://susan.org"},{"course_title":"Lowe Inc","course_number":75278,"instructor":"Stephania Nader","location":"371 Kuhlman Forest","time":"2018-07-14T21:43:38.150Z","enrolled":99814,"book":"https://lane.net","course_url":"https://jerrold.org"},{"course_title":"Kautzer, Cremin and Wintheiser","course_number":22220,"instructor":"Heber Stracke MD","location":"519 Gabriella Pass","time":"2018-07-14T07:46:26.880Z","enrolled":40681,"book":"http://annamarie.info","course_url":"https://gerard.biz"},{"course_title":"Schoen, Rau and Lesch","course_number":83923,"instructor":"Leo Schinner","location":"798 Abraham Lodge","time":"2018-07-14T06:01:14.820Z","enrolled":97431,"book":"http://mercedes.org","course_url":"https://barney.biz"},{"course_title":"Gutmann - Hayes","course_number":32188,"instructor":"Evan Bogisich","location":"459 Mertz Street","time":"2018-07-14T22:48:32.300Z","enrolled":62751,"book":"http://irving.net","course_url":"https://zena.org"},{"course_title":"Cummerata LLC","course_number":7312,"instructor":"Ansley Jast","location":"8336 Heath Place","time":"2018-07-14T00:25:35.968Z","enrolled":33796,"book":"http://laurence.biz","course_url":"https://stanton.net"},{"course_title":"Grady, O'Reilly and Rice","course_number":35136,"instructor":"Domenico Fritsch","location":"3813 Stroman Unions","time":"2018-07-14T18:33:11.001Z","enrolled":56422,"book":"http://asia.org","course_url":"http://holly.biz"},{"course_title":"Fahey - Auer","course_number":92493,"instructor":"Scot Kunze","location":"2130 Schulist Mountain","time":"2018-07-14T05:13:40.962Z","enrolled":88452,"book":"http://elta.biz","course_url":"http://cynthia.net"},{"course_title":"Halvorson - Eichmann","course_number":69568,"instructor":"Brigitte Schaden","location":"47305 Huels Canyon","time":"2018-07-14T22:17:53.731Z","enrolled":67985,"book":"https://sylvan.biz","course_url":"https://lavonne.com"},{"course_title":"Hammes, Renner and Crona","course_number":78619,"instructor":"Jeff Olson","location":"107 Medhurst Burgs","time":"2018-07-14T16:27:02.853Z","enrolled":15284,"book":"https://daisha.info","course_url":"http://lelah.net"},{"course_title":"Crist Group","course_number":14001,"instructor":"Coralie McDermott","location":"24413 Schuppe Fields","time":"2018-07-14T00:16:48.011Z","enrolled":79046,"book":"https://reinhold.name","course_url":"http://gayle.net"},{"course_title":"Ryan, Hermann and Hane","course_number":44984,"instructor":"Katlynn Heathcote","location":"6206 Jaclyn Plains","time":"2018-07-14T19:59:52.341Z","enrolled":7086,"book":"http://dorothea.net","course_url":"http://keira.name"},{"course_title":"Mante LLC","course_number":61468,"instructor":"Kolby Prosacco","location":"053 Stiedemann Mission","time":"2018-07-14T00:16:20.454Z","enrolled":83985,"book":"http://alfonso.name","course_url":"https://joany.name"},{"course_title":"Strosin - Brekke","course_number":29436,"instructor":"Ms. Tessie Ullrich","location":"801 Hackett Mount","time":"2018-07-14T06:00:51.082Z","enrolled":31823,"book":"https://filomena.info","course_url":"http://wilhelm.com"},{"course_title":"Lubowitz, Larson and Runolfsdottir","course_number":3195,"instructor":"Saul McDermott","location":"5868 Lucie Locks","time":"2018-07-14T00:54:57.816Z","enrolled":81883,"book":"https://max.net","course_url":"https://oliver.biz"},{"course_title":"Murphy - Connelly","course_number":89611,"instructor":"Willard McCullough","location":"390 Bechtelar Plaza","time":"2018-07-14T01:04:11.546Z","enrolled":83044,"book":"https://eldridge.com","course_url":"https://cathryn.name"},{"course_title":"Wolff - Carroll","course_number":63663,"instructor":"Johan Crist","location":"427 Krajcik Grove","time":"2018-07-14T03:43:40.293Z","enrolled":67709,"book":"https://sherwood.org","course_url":"https://jerrell.info"},{"course_title":"Berge LLC","course_number":14161,"instructor":"Bridgette Upton","location":"312 Wilfred Flats","time":"2018-07-14T01:37:11.629Z","enrolled":92360,"book":"http://daryl.biz","course_url":"https://mikel.org"},{"course_title":"Blick, Sipes and Glover","course_number":22610,"instructor":"Rachel Hansen","location":"4745 Amos Walks","time":"2018-07-13T23:29:15.222Z","enrolled":68700,"book":"http://maddison.info","course_url":"http://keyon.info"},{"course_title":"Beer - Denesik","course_number":35320,"instructor":"Miss Lue Reichel","location":"1241 Wolf Parks","time":"2018-07-14T11:44:04.667Z","enrolled":39269,"book":"http://bailey.biz","course_url":"https://macey.org"},{"course_title":"Hettinger - Ritchie","course_number":56175,"instructor":"Dr. Kaley Heller","location":"987 Adalberto Mountain","time":"2018-07-14T11:06:48.006Z","enrolled":73537,"book":"http://arvid.name","course_url":"https://akeem.info"},{"course_title":"Conn, Berge and Bayer","course_number":29813,"instructor":"Laurine Armstrong","location":"528 Nayeli Passage","time":"2018-07-13T23:11:23.428Z","enrolled":32593,"book":"https://madilyn.biz","course_url":"https://aurelio.info"},{"course_title":"MacGyver Group","course_number":81568,"instructor":"Tamia Schmidt","location":"1790 Connelly Squares","time":"2018-07-14T12:55:16.012Z","enrolled":87400,"book":"http://missouri.org","course_url":"http://jolie.info"},{"course_title":"Weissnat - Hamill","course_number":57552,"instructor":"Ms. Margarita Feest","location":"367 Mann Route","time":"2018-07-14T17:28:08.932Z","enrolled":11101,"book":"http://sydnie.name","course_url":"http://ian.name"},{"course_title":"Brakus - Balistreri","course_number":25409,"instructor":"Milford Gleason","location":"27825 Schmeler Loaf","time":"2018-07-14T05:19:41.617Z","enrolled":76952,"book":"https://ellen.com","course_url":"https://deion.name"},{"course_title":"Thiel - Steuber","course_number":86684,"instructor":"Gisselle Block","location":"749 Sauer Greens","time":"2018-07-14T13:28:11.150Z","enrolled":89343,"book":"https://vickie.net","course_url":"https://mertie.biz"},{"course_title":"Botsford Inc","course_number":55887,"instructor":"Gennaro Jast","location":"564 Carter Springs","time":"2018-07-14T06:05:30.245Z","enrolled":5029,"book":"http://rodrigo.com","course_url":"https://wade.name"},{"course_title":"Hermann Group","course_number":40916,"instructor":"Adonis Cronin","location":"3663 Kyra Path","time":"2018-07-13T23:30:45.520Z","enrolled":67139,"book":"https://robbie.biz","course_url":"https://araceli.com"},{"course_title":"Macejkovic, Dibbert and Powlowski","course_number":83967,"instructor":"Emie Howell","location":"9559 Ardella Camp","time":"2018-07-14T12:47:50.121Z","enrolled":7859,"book":"http://kiarra.info","course_url":"http://brandi.name"},{"course_title":"Swift, Nienow and Senger","course_number":99017,"instructor":"Jerrold Ruecker II","location":"02450 Sylvan Mill","time":"2018-07-14T03:42:31.414Z","enrolled":593,"book":"http://jazmyn.org","course_url":"https://frank.info"},{"course_title":"Hane, Swift and Considine","course_number":79261,"instructor":"Karianne Koss","location":"29996 Markus Square","time":"2018-07-14T08:19:46.187Z","enrolled":42128,"book":"http://dovie.biz","course_url":"https://mac.info"},{"course_title":"Lang LLC","course_number":22495,"instructor":"Elinore Doyle","location":"9686 Gerald Burgs","time":"2018-07-14T21:52:43.976Z","enrolled":90826,"book":"http://edison.com","course_url":"https://sophia.net"},{"course_title":"Toy, Dooley and Botsford","course_number":67590,"instructor":"Camden Dooley","location":"6227 Margret Ramp","time":"2018-07-14T14:21:58.136Z","enrolled":80085,"book":"http://christa.com","course_url":"http://kaleb.org"},{"course_title":"Upton - Heidenreich","course_number":30391,"instructor":"Glenda Farrell","location":"25635 Ernser Neck","time":"2018-07-14T01:07:44.494Z","enrolled":95182,"book":"https://rickey.biz","course_url":"http://beth.net"},{"course_title":"Kessler - McDermott","course_number":79064,"instructor":"Kimberly Wilkinson","location":"1821 Emilio Knoll","time":"2018-07-14T02:23:58.813Z","enrolled":26393,"book":"https://elyse.name","course_url":"https://carlee.biz"},{"course_title":"McClure - Lynch","course_number":56082,"instructor":"Una Torp","location":"614 Yundt Circles","time":"2018-07-14T10:00:39.155Z","enrolled":95420,"book":"https://easton.name","course_url":"https://jermaine.org"},{"course_title":"Swift, Ryan and Jones","course_number":38842,"instructor":"Tyra Ritchie","location":"14912 Koss Passage","time":"2018-07-14T14:09:40.712Z","enrolled":62919,"book":"http://vallie.org","course_url":"https://emmet.biz"},{"course_title":"Paucek - O'Keefe","course_number":29855,"instructor":"Serenity Gutkowski","location":"8648 Bogan Village","time":"2018-07-14T10:17:41.636Z","enrolled":5268,"book":"https://chyna.name","course_url":"https://kim.org"},{"course_title":"Langworth - McDermott","course_number":22081,"instructor":"Lexi Reinger","location":"372 Andre Stream","time":"2018-07-14T00:05:25.622Z","enrolled":65372,"book":"http://einar.name","course_url":"https://dameon.info"},{"course_title":"Collins Inc","course_number":76316,"instructor":"Anais Kohler","location":"91607 Albert Isle","time":"2018-07-14T20:21:16.355Z","enrolled":76886,"book":"http://kobe.biz","course_url":"http://kiara.net"},{"course_title":"Littel, Kerluke and Leannon","course_number":36118,"instructor":"Dr. Maureen Haag","location":"17693 West Path","time":"2018-07-14T03:05:23.337Z","enrolled":96393,"book":"http://hayden.info","course_url":"https://dwight.com"},{"course_title":"Hagenes Group","course_number":85017,"instructor":"Mrs. Friedrich Bednar","location":"861 Donna Plains","time":"2018-07-14T18:58:15.813Z","enrolled":88442,"book":"http://enrico.com","course_url":"http://marlon.net"},{"course_title":"Hintz Group","course_number":85922,"instructor":"Allene Leannon","location":"159 Ferry Union","time":"2018-07-14T01:32:40.223Z","enrolled":15101,"book":"https://jaqueline.org","course_url":"http://lionel.com"},{"course_title":"Hansen LLC","course_number":27230,"instructor":"Mrs. Jordon Stehr","location":"0812 Alessandra Pines","time":"2018-07-14T23:09:31.618Z","enrolled":62479,"book":"http://lesley.biz","course_url":"http://chaya.info"},{"course_title":"Kuhn Group","course_number":99567,"instructor":"Samanta Yost","location":"7465 Terrence Inlet","time":"2018-07-14T21:43:19.290Z","enrolled":80330,"book":"http://katrine.org","course_url":"https://cayla.org"},{"course_title":"Spinka Inc","course_number":62946,"instructor":"Mrs. Haven Predovic","location":"8976 Nicole Land","time":"2018-07-14T20:43:06.350Z","enrolled":54796,"book":"http://maurine.name","course_url":"https://jaleel.org"},{"course_title":"Pollich - Hagenes","course_number":15408,"instructor":"Antonina Berge","location":"2043 Cielo Street","time":"2018-07-14T04:55:15.419Z","enrolled":64530,"book":"https://barry.info","course_url":"http://zetta.name"},{"course_title":"Homenick - Bogisich","course_number":79763,"instructor":"Hazle Gulgowski","location":"484 Benjamin Walks","time":"2018-07-14T03:35:42.360Z","enrolled":95410,"book":"http://danielle.net","course_url":"https://trinity.com"},{"course_title":"Ullrich - Nitzsche","course_number":43064,"instructor":"Ransom Dare","location":"87039 Tyrel Summit","time":"2018-07-14T13:16:44.729Z","enrolled":15184,"book":"http://anthony.com","course_url":"https://emery.name"},{"course_title":"Kozey - Greenfelder","course_number":97960,"instructor":"Mr. Dexter Denesik","location":"06853 Aliya Common","time":"2018-07-14T07:41:01.882Z","enrolled":7761,"book":"http://abigail.net","course_url":"https://waylon.info"},{"course_title":"Morissette, Medhurst and Ziemann","course_number":65653,"instructor":"Gretchen Donnelly","location":"7600 Cassin Way","time":"2018-07-14T11:36:04.691Z","enrolled":27399,"book":"https://angelo.org","course_url":"http://clay.name"},{"course_title":"Moen, King and Rath","course_number":78269,"instructor":"Jonas Wiegand","location":"6386 Fadel Throughway","time":"2018-07-14T19:33:57.732Z","enrolled":95351,"book":"http://hazle.biz","course_url":"http://hertha.com"},{"course_title":"Gaylord Group","course_number":92315,"instructor":"Luciano Rolfson","location":"46106 Kellen Dam","time":"2018-07-14T04:41:57.130Z","enrolled":83817,"book":"http://alexzander.net","course_url":"https://michaela.com"},{"course_title":"Gleason - Nitzsche","course_number":12526,"instructor":"Laurence Bradtke","location":"54186 Considine Shoals","time":"2018-07-14T03:25:08.787Z","enrolled":81130,"book":"https://kaylie.net","course_url":"https://kenna.name"},{"course_title":"Schinner, Jaskolski and Mante","course_number":96162,"instructor":"Jared MacGyver","location":"204 Nicola Plaza","time":"2018-07-14T16:36:18.120Z","enrolled":43937,"book":"http://haven.name","course_url":"https://faustino.net"},{"course_title":"Schuppe - Brown","course_number":71077,"instructor":"Miss Petra Feeney","location":"95322 Hamill Crescent","time":"2018-07-14T16:18:46.775Z","enrolled":65135,"book":"http://brady.name","course_url":"http://thurman.name"},{"course_title":"Leffler, Auer and Dooley","course_number":65387,"instructor":"Giovanny Grady","location":"1502 Courtney Highway","time":"2018-07-14T12:37:39.381Z","enrolled":71170,"book":"http://micheal.name","course_url":"http://reba.name"},{"course_title":"Dooley and Sons","course_number":50731,"instructor":"Elmer Kohler","location":"7638 Becker Fall","time":"2018-07-14T00:53:46.089Z","enrolled":38881,"book":"https://guy.info","course_url":"https://karl.info"},{"course_title":"Lind, Farrell and Bergnaum","course_number":42182,"instructor":"Tad Lemke","location":"974 Conroy Vista","time":"2018-07-14T16:09:49.662Z","enrolled":37432,"book":"http://sister.info","course_url":"https://dusty.name"},{"course_title":"Orn - Mueller","course_number":76588,"instructor":"Westley Ledner","location":"468 Dewitt Run","time":"2018-07-14T20:56:16.646Z","enrolled":96014,"book":"https://gay.info","course_url":"https://henry.com"},{"course_title":"Okuneva - Ziemann","course_number":30737,"instructor":"Andre Kozey","location":"280 Gusikowski Trail","time":"2018-07-14T08:48:03.714Z","enrolled":43106,"book":"https://florian.biz","course_url":"http://therese.org"},{"course_title":"Morissette Group","course_number":68821,"instructor":"Ophelia Blick V","location":"61127 Marquardt Points","time":"2018-07-14T08:55:17.340Z","enrolled":9772,"book":"http://orin.info","course_url":"https://gladys.org"},{"course_title":"Ferry, Brakus and Corkery","course_number":97293,"instructor":"Koby Erdman","location":"06781 Kameron Path","time":"2018-07-14T20:26:21.524Z","enrolled":49069,"book":"http://jamaal.org","course_url":"https://charles.biz"},{"course_title":"Reinger - Windler","course_number":33189,"instructor":"Jarrod Lang","location":"279 Bashirian Crescent","time":"2018-07-14T19:01:06.238Z","enrolled":78264,"book":"http://guiseppe.name","course_url":"https://sonny.name"},{"course_title":"Effertz - Hauck","course_number":65104,"instructor":"Osvaldo Botsford","location":"0813 Nikita Key","time":"2018-07-14T15:11:11.945Z","enrolled":46537,"book":"http://tyreek.org","course_url":"https://renee.org"},{"course_title":"Breitenberg - Stokes","course_number":67898,"instructor":"Eleanore Crona IV","location":"21440 Edna Crossroad","time":"2018-07-14T01:53:38.495Z","enrolled":93121,"book":"http://aleen.biz","course_url":"https://tad.org"},{"course_title":"Runte Inc","course_number":8395,"instructor":"Mrs. Francesco Moore","location":"842 Brandt View","time":"2018-07-14T22:46:38.173Z","enrolled":61824,"book":"http://grayson.com","course_url":"http://adriel.net"},{"course_title":"Casper Inc","course_number":14742,"instructor":"Gardner Funk","location":"3777 Gottlieb Mount","time":"2018-07-14T20:03:46.438Z","enrolled":97855,"book":"http://arnulfo.info","course_url":"https://karlee.com"},{"course_title":"Vandervort and Sons","course_number":53520,"instructor":"Sierra Feest","location":"038 Donnelly Unions","time":"2018-07-14T12:08:08.123Z","enrolled":54445,"book":"https://roslyn.com","course_url":"https://orin.biz"},{"course_title":"Blanda - Mann","course_number":14988,"instructor":"Durward Kemmer","location":"96052 Cassin Pass","time":"2018-07-14T16:49:52.596Z","enrolled":65477,"book":"http://dallas.com","course_url":"http://eden.org"},{"course_title":"Roob - Lang","course_number":4760,"instructor":"Judy Klocko","location":"4714 Katharina Springs","time":"2018-07-14T05:28:13.582Z","enrolled":18153,"book":"http://durward.net","course_url":"http://kameron.biz"},{"course_title":"Walker - Raynor","course_number":85694,"instructor":"Nolan Rutherford","location":"9184 Efren Flats","time":"2018-07-14T07:58:55.833Z","enrolled":50450,"book":"http://rubie.name","course_url":"http://wiley.net"},{"course_title":"Schamberger LLC","course_number":35670,"instructor":"Penelope Zemlak","location":"546 Becker Canyon","time":"2018-07-14T05:30:32.719Z","enrolled":93124,"book":"http://ofelia.biz","course_url":"http://athena.biz"},{"course_title":"O'Hara - Hilll","course_number":40840,"instructor":"Jewell Marvin","location":"00914 Mante Street","time":"2018-07-14T20:47:23.863Z","enrolled":85426,"book":"http://shanna.name","course_url":"https://rebecca.info"},{"course_title":"Koelpin Group","course_number":12688,"instructor":"Antonette Skiles","location":"5695 Jacklyn Shore","time":"2018-07-14T05:47:36.239Z","enrolled":88013,"book":"https://orval.org","course_url":"https://assunta.name"},{"course_title":"Abshire Group","course_number":59653,"instructor":"Howell Mitchell","location":"295 Johnson Dale","time":"2018-07-14T03:55:49.400Z","enrolled":3789,"book":"http://sophia.org","course_url":"https://edwina.info"},{"course_title":"Morissette - Lynch","course_number":32935,"instructor":"Mr. Tyrel Herzog","location":"138 Cummings Gardens","time":"2018-07-14T16:42:51.740Z","enrolled":73314,"book":"https://georgette.info","course_url":"http://glenda.org"},{"course_title":"Haag - Schaden","course_number":97698,"instructor":"Deborah Morar I","location":"810 Cecil Lodge","time":"2018-07-14T15:40:55.971Z","enrolled":91739,"book":"http://allison.net","course_url":"http://hal.com"},{"course_title":"Stark, Strosin and Hirthe","course_number":25985,"instructor":"Davin Reichel","location":"916 Welch Glens","time":"2018-07-14T19:10:27.750Z","enrolled":43254,"book":"http://joy.biz","course_url":"http://colin.biz"},{"course_title":"Hayes and Sons","course_number":62399,"instructor":"Pierce Mohr","location":"2869 Nitzsche Extension","time":"2018-07-14T12:33:47.707Z","enrolled":70417,"book":"http://marguerite.info","course_url":"http://manuel.net"},{"course_title":"Tremblay, Rogahn and Windler","course_number":85492,"instructor":"Dr. Elise Emard","location":"985 Jovanny Loop","time":"2018-07-14T19:46:20.126Z","enrolled":79129,"book":"http://jillian.org","course_url":"https://lucas.org"},{"course_title":"Kihn - Wehner","course_number":95662,"instructor":"Vincenzo Bruen","location":"354 Leola Junction","time":"2018-07-14T20:08:02.692Z","enrolled":45901,"book":"https://devin.info","course_url":"http://adeline.com"},{"course_title":"Christiansen - Torp","course_number":81062,"instructor":"Chyna Douglas","location":"8411 Wehner Lane","time":"2018-07-14T08:53:48.973Z","enrolled":1148,"book":"http://corbin.name","course_url":"https://anita.com"},{"course_title":"Wolff - Labadie","course_number":64200,"instructor":"Mrs. Adonis Wehner","location":"4800 Stark Mountain","time":"2018-07-14T21:40:49.011Z","enrolled":46296,"book":"https://ottilie.org","course_url":"https://zane.com"},{"course_title":"Murray and Sons","course_number":98423,"instructor":"Jett Parisian","location":"769 Kovacek Brook","time":"2018-07-14T13:11:44.806Z","enrolled":24160,"book":"http://adell.com","course_url":"https://malvina.com"},{"course_title":"Skiles, Ondricka and Ratke","course_number":67318,"instructor":"Chester Beatty","location":"384 Tremblay Pine","time":"2018-07-14T13:30:58.036Z","enrolled":94699,"book":"https://bernita.org","course_url":"http://ellis.net"},{"course_title":"Strosin and Sons","course_number":39130,"instructor":"Olen Nolan","location":"351 Murazik Haven","time":"2018-07-14T16:05:53.289Z","enrolled":1027,"book":"http://yasmeen.info","course_url":"http://emery.name"},{"course_title":"Conn, Kozey and Wintheiser","course_number":92715,"instructor":"Stefan Haag","location":"51850 Sierra View","time":"2018-07-14T02:32:57.102Z","enrolled":55133,"book":"http://kelsie.info","course_url":"https://dillon.com"},{"course_title":"Haley, Keeling and Schamberger","course_number":45787,"instructor":"Margarett Jast","location":"92622 Rosalind Cliffs","time":"2018-07-14T17:08:34.411Z","enrolled":67612,"book":"https://guadalupe.org","course_url":"https://johan.info"},{"course_title":"Goldner - Swaniawski","course_number":64362,"instructor":"Lloyd Morissette","location":"554 Jerde Courts","time":"2018-07-14T06:09:04.914Z","enrolled":59332,"book":"https://krista.info","course_url":"http://lambert.org"},{"course_title":"Stark - Halvorson","course_number":96272,"instructor":"Eloise Dibbert","location":"78595 Bins Spurs","time":"2018-07-14T16:31:01.262Z","enrolled":79213,"book":"http://amina.com","course_url":"http://danielle.net"},{"course_title":"Mante and Sons","course_number":18626,"instructor":"Denis Klocko","location":"68873 Dianna Islands","time":"2018-07-14T20:23:34.505Z","enrolled":38963,"book":"http://gregory.net","course_url":"http://kavon.name"},{"course_title":"Steuber LLC","course_number":58759,"instructor":"Lavina Ruecker","location":"738 Hyatt Wells","time":"2018-07-14T17:44:08.745Z","enrolled":85428,"book":"http://delpha.com","course_url":"https://cassidy.name"},{"course_title":"Wisozk and Sons","course_number":85419,"instructor":"Abagail Deckow","location":"66596 Brown Haven","time":"2018-07-14T18:58:08.920Z","enrolled":88521,"book":"http://mariela.com","course_url":"https://kylie.name"},{"course_title":"Russel - Gutmann","course_number":17023,"instructor":"Marcia Schamberger","location":"509 Betty Stravenue","time":"2018-07-14T15:01:28.056Z","enrolled":26084,"book":"https://donato.org","course_url":"http://marley.org"},{"course_title":"O'Reilly - Heaney","course_number":64901,"instructor":"Dr. Rahsaan Metz","location":"758 Ritchie Way","time":"2018-07-14T19:28:43.111Z","enrolled":23199,"book":"https://janis.net","course_url":"https://bartholome.net"},{"course_title":"Connelly - Littel","course_number":59472,"instructor":"Chelsey Leannon","location":"83829 Aliya Plains","time":"2018-07-14T17:14:39.340Z","enrolled":13498,"book":"http://justen.name","course_url":"http://hannah.com"},{"course_title":"Streich and Sons","course_number":51179,"instructor":"Eve Lubowitz PhD","location":"36631 Marks Fork","time":"2018-07-14T03:07:14.534Z","enrolled":32591,"book":"https://rylee.name","course_url":"http://zetta.name"},{"course_title":"Hand - Anderson","course_number":31836,"instructor":"Kayli Armstrong","location":"261 Konopelski Fork","time":"2018-07-14T22:33:18.986Z","enrolled":94779,"book":"https://antonio.biz","course_url":"https://kirstin.info"},{"course_title":"Dibbert, Heathcote and Corwin","course_number":66993,"instructor":"Jamarcus Mitchell","location":"270 Zachariah Centers","time":"2018-07-14T05:25:45.671Z","enrolled":55156,"book":"https://annamae.net","course_url":"https://clark.name"},{"course_title":"Zulauf, Berge and Corwin","course_number":67722,"instructor":"Mercedes Volkman","location":"13894 Gleason Plains","time":"2018-07-14T01:43:29.675Z","enrolled":79715,"book":"http://rudolph.net","course_url":"https://enola.biz"},{"course_title":"Monahan, Kuhic and Bode","course_number":4521,"instructor":"Ms. Tristian Rice","location":"649 Ryan Street","time":"2018-07-14T12:29:59.083Z","enrolled":95596,"book":"http://camron.biz","course_url":"https://clyde.com"},{"course_title":"Graham, Schinner and McKenzie","course_number":35351,"instructor":"Dion Kohler","location":"77040 Schneider Extension","time":"2018-07-14T16:37:56.228Z","enrolled":89383,"book":"https://alessandro.info","course_url":"https://vida.com"},{"course_title":"Anderson Group","course_number":8494,"instructor":"June Koss","location":"225 Mohr Passage","time":"2018-07-14T08:25:50.427Z","enrolled":26710,"book":"http://jaida.com","course_url":"https://fermin.info"},{"course_title":"Hahn LLC","course_number":93852,"instructor":"Kendrick Hegmann","location":"7425 Funk Vista","time":"2018-07-13T23:26:12.996Z","enrolled":11330,"book":"https://stanley.info","course_url":"https://cornell.org"},{"course_title":"Tremblay - Corwin","course_number":58264,"instructor":"Arturo Heller","location":"1614 Leannon Crossing","time":"2018-07-14T05:59:42.706Z","enrolled":56733,"book":"http://akeem.info","course_url":"http://tyler.biz"},{"course_title":"Lubowitz, Zieme and Vandervort","course_number":17186,"instructor":"Annie Wuckert","location":"96452 Kelli Burgs","time":"2018-07-14T02:10:47.105Z","enrolled":55197,"book":"https://laura.com","course_url":"https://elijah.com"},{"course_title":"Weimann and Sons","course_number":62231,"instructor":"Aliyah Blick","location":"177 Wolff Camp","time":"2018-07-14T03:03:08.142Z","enrolled":25133,"book":"http://katheryn.org","course_url":"https://dario.info"},{"course_title":"Dickens Inc","course_number":63331,"instructor":"Cathrine Bode","location":"47148 Taryn Rapid","time":"2018-07-14T12:08:54.920Z","enrolled":36527,"book":"https://pietro.name","course_url":"https://florian.name"},{"course_title":"Erdman, Klein and Upton","course_number":22195,"instructor":"Lydia Kuvalis","location":"732 Leonie Flats","time":"2018-07-14T00:14:56.869Z","enrolled":52043,"book":"http://casper.info","course_url":"https://aglae.biz"},{"course_title":"Fisher, Turcotte and Hickle","course_number":31634,"instructor":"Viva Gusikowski","location":"4408 Daugherty Hollow","time":"2018-07-14T15:04:39.940Z","enrolled":65069,"book":"https://francis.name","course_url":"https://freddy.name"},{"course_title":"Kunze and Sons","course_number":22629,"instructor":"Lee Barrows PhD","location":"844 Morissette Forks","time":"2018-07-14T11:30:42.505Z","enrolled":10867,"book":"https://lisette.biz","course_url":"https://yessenia.net"},{"course_title":"Hamill - Rath","course_number":13084,"instructor":"Kiara Schroeder III","location":"4018 Shane Forest","time":"2018-07-14T00:37:58.957Z","enrolled":6825,"book":"http://uriel.info","course_url":"http://lilyan.com"},{"course_title":"Klein - Klocko","course_number":74317,"instructor":"Connie Douglas III","location":"5835 Yessenia Village","time":"2018-07-14T04:09:56.376Z","enrolled":67324,"book":"https://creola.biz","course_url":"http://amparo.net"},{"course_title":"Green, Morissette and O'Connell","course_number":24363,"instructor":"Cynthia VonRueden","location":"282 Kaitlin Brook","time":"2018-07-14T21:43:07.063Z","enrolled":92873,"book":"https://rahul.net","course_url":"http://lonzo.name"},{"course_title":"Reynolds and Sons","course_number":15524,"instructor":"Vernie Vandervort","location":"3898 Bogan Trail","time":"2018-07-14T11:53:41.263Z","enrolled":7118,"book":"http://keanu.name","course_url":"http://lucy.info"},{"course_title":"Batz, Douglas and Beatty","course_number":78593,"instructor":"Felicita Cummings","location":"419 Spinka Ports","time":"2018-07-14T16:53:20.036Z","enrolled":71830,"book":"http://freda.info","course_url":"https://noble.name"},{"course_title":"Altenwerth - Feil","course_number":35230,"instructor":"Arlo Kirlin","location":"19993 Santiago Shores","time":"2018-07-14T19:32:26.012Z","enrolled":98061,"book":"https://mittie.info","course_url":"https://stephany.biz"},{"course_title":"Gusikowski - Price","course_number":56315,"instructor":"Erica Emard","location":"1885 Gutkowski Mall","time":"2018-07-14T11:44:22.572Z","enrolled":43900,"book":"https://oliver.net","course_url":"http://kenyatta.net"},{"course_title":"Jast - Gleason","course_number":13182,"instructor":"Trinity Luettgen","location":"47813 McDermott Forges","time":"2018-07-14T13:13:22.818Z","enrolled":94089,"book":"http://winfield.biz","course_url":"http://enrico.org"},{"course_title":"Haley - Connelly","course_number":22024,"instructor":"Santa Berge","location":"94257 Witting Estates","time":"2018-07-14T05:53:57.139Z","enrolled":64846,"book":"http://alberta.net","course_url":"https://tremayne.info"},{"course_title":"Smith Inc","course_number":49481,"instructor":"Armando Fisher II","location":"658 Stanley Island","time":"2018-07-14T21:53:32.074Z","enrolled":95134,"book":"http://brook.info","course_url":"https://grayson.org"},{"course_title":"MacGyver - Stark","course_number":669,"instructor":"Valentine Oberbrunner","location":"497 Isabel Creek","time":"2018-07-14T03:41:56.223Z","enrolled":71892,"book":"https://eli.info","course_url":"http://jeramie.com"},{"course_title":"Wisozk, Kirlin and Cruickshank","course_number":86425,"instructor":"Mr. Tamara Cole","location":"34407 Konopelski Groves","time":"2018-07-14T19:24:09.348Z","enrolled":40027,"book":"http://reece.name","course_url":"https://magnus.com"},{"course_title":"Wilkinson - Rippin","course_number":85972,"instructor":"Mose Bogisich","location":"45017 Lyric Divide","time":"2018-07-14T22:39:58.860Z","enrolled":62060,"book":"https://natalie.org","course_url":"http://haleigh.com"},{"course_title":"Rice, Vandervort and Emmerich","course_number":36939,"instructor":"Cody Feeney","location":"84670 Pollich Cliff","time":"2018-07-14T13:00:33.306Z","enrolled":767,"book":"https://ashley.name","course_url":"https://price.com"},{"course_title":"Klein, Stehr and Hyatt","course_number":65444,"instructor":"Cecelia Turner","location":"1936 Bechtelar Junction","time":"2018-07-14T16:40:21.943Z","enrolled":91070,"book":"http://nina.name","course_url":"http://kiana.org"},{"course_title":"Krajcik LLC","course_number":7858,"instructor":"Shea Mraz","location":"014 Larson Freeway","time":"2018-07-14T20:59:26.304Z","enrolled":12058,"book":"http://kendra.info","course_url":"https://lew.org"},{"course_title":"Vandervort LLC","course_number":46224,"instructor":"Colt Weimann","location":"20104 Kautzer Road","time":"2018-07-13T23:33:48.384Z","enrolled":3721,"book":"https://krystina.biz","course_url":"https://henry.org"},{"course_title":"Mante - Predovic","course_number":95474,"instructor":"Dallas Ferry","location":"9277 Edison Oval","time":"2018-07-14T16:12:35.616Z","enrolled":56990,"book":"https://tara.biz","course_url":"http://macie.com"},{"course_title":"Bins, Willms and Sanford","course_number":44814,"instructor":"Rickey Reilly","location":"95535 Lockman Curve","time":"2018-07-14T19:56:23.787Z","enrolled":39314,"book":"https://lea.name","course_url":"http://ted.org"},{"course_title":"Lowe - Nader","course_number":97532,"instructor":"Sterling Gleason","location":"7573 Champlin Well","time":"2018-07-14T18:24:09.236Z","enrolled":82650,"book":"http://bernice.name","course_url":"http://retta.name"},{"course_title":"Lesch - Tremblay","course_number":58410,"instructor":"Kane Kulas","location":"7066 Wilkinson Locks","time":"2018-07-14T01:55:29.885Z","enrolled":69650,"book":"https://letitia.name","course_url":"https://ashly.com"},{"course_title":"Wintheiser LLC","course_number":82579,"instructor":"Therese Kuvalis","location":"99698 Eloise Knoll","time":"2018-07-14T07:44:30.988Z","enrolled":41017,"book":"https://jamie.name","course_url":"http://terry.com"},{"course_title":"Hermiston Inc","course_number":16452,"instructor":"Hiram Kihn","location":"2637 Padberg Locks","time":"2018-07-14T08:52:22.220Z","enrolled":98715,"book":"https://katelynn.biz","course_url":"http://louie.com"},{"course_title":"Kshlerin and Sons","course_number":40551,"instructor":"Alden Watsica","location":"9369 Florida Circles","time":"2018-07-14T15:11:50.726Z","enrolled":92736,"book":"https://regan.info","course_url":"https://donavon.info"},{"course_title":"Reynolds - Hegmann","course_number":35408,"instructor":"Dallin Purdy","location":"44213 Carlee Avenue","time":"2018-07-14T09:14:25.592Z","enrolled":74439,"book":"https://rae.name","course_url":"https://devante.net"},{"course_title":"Crooks - Deckow","course_number":61723,"instructor":"Nannie Corkery","location":"29338 Ondricka Field","time":"2018-07-14T14:48:23.795Z","enrolled":90915,"book":"https://coby.org","course_url":"http://grady.biz"},{"course_title":"Schroeder - Turner","course_number":25477,"instructor":"Rosella Mitchell","location":"249 Jerod Lodge","time":"2018-07-14T10:30:22.217Z","enrolled":43057,"book":"https://cindy.org","course_url":"http://karl.com"},{"course_title":"Kihn, Paucek and Mueller","course_number":17122,"instructor":"Yoshiko Ledner","location":"18100 Lessie Club","time":"2018-07-14T02:10:15.834Z","enrolled":93812,"book":"https://vincenzo.name","course_url":"http://lessie.org"},{"course_title":"Casper, Hilpert and Hills","course_number":3285,"instructor":"Cecelia Bahringer V","location":"47663 Ramona Islands","time":"2018-07-14T04:05:22.348Z","enrolled":79181,"book":"https://jimmie.org","course_url":"http://quinn.name"},{"course_title":"Osinski Inc","course_number":94886,"instructor":"Hans Parker","location":"42476 Wilderman Landing","time":"2018-07-14T12:30:47.932Z","enrolled":39248,"book":"http://judson.org","course_url":"http://elza.net"},{"course_title":"Champlin Inc","course_number":844,"instructor":"Celestine Heidenreich","location":"0937 Chesley Ports","time":"2018-07-14T08:02:06.790Z","enrolled":41424,"book":"http://cruz.org","course_url":"http://quincy.biz"},{"course_title":"Klocko - Kutch","course_number":37168,"instructor":"Warren VonRueden","location":"3697 Lavern Spurs","time":"2018-07-14T19:03:50.494Z","enrolled":21403,"book":"https://darby.info","course_url":"http://lue.com"},{"course_title":"Breitenberg, Hermann and Schumm","course_number":54049,"instructor":"Cletus Pacocha","location":"5290 Jayden Park","time":"2018-07-14T09:47:41.828Z","enrolled":18099,"book":"http://judson.com","course_url":"http://rachael.net"},{"course_title":"Schroeder and Sons","course_number":93588,"instructor":"Harrison Stamm","location":"6997 Uriah Spring","time":"2018-07-14T02:58:49.527Z","enrolled":71267,"book":"https://mavis.net","course_url":"https://margarete.name"},{"course_title":"Zemlak - Pfannerstill","course_number":8546,"instructor":"Augusta Zemlak","location":"4178 Greenholt Corner","time":"2018-07-14T21:16:43.845Z","enrolled":64498,"book":"https://conner.net","course_url":"https://pinkie.com"},{"course_title":"Ratke, Weimann and Hintz","course_number":58605,"instructor":"Emmalee Pollich","location":"848 O'Reilly Forest","time":"2018-07-14T16:54:51.342Z","enrolled":76814,"book":"https://jarrell.com","course_url":"http://wade.com"},{"course_title":"Hackett, Blick and O'Connell","course_number":40869,"instructor":"Macy Prohaska","location":"016 Pollich Stream","time":"2018-07-14T05:47:17.729Z","enrolled":72375,"book":"http://anjali.net","course_url":"https://berneice.com"},{"course_title":"Kling, Kertzmann and Sawayn","course_number":8290,"instructor":"Rigoberto Mraz","location":"50189 Cummerata Mills","time":"2018-07-14T16:25:52.671Z","enrolled":12023,"book":"http://gustave.biz","course_url":"https://cornelius.name"},{"course_title":"Nicolas - Huels","course_number":42527,"instructor":"Donato Hilpert","location":"085 Duane Circle","time":"2018-07-14T21:06:31.215Z","enrolled":79739,"book":"http://willie.biz","course_url":"https://fabian.info"},{"course_title":"Wolf - Mraz","course_number":36595,"instructor":"Gay Tremblay","location":"45770 Ernser Freeway","time":"2018-07-14T10:43:15.486Z","enrolled":2892,"book":"http://destany.net","course_url":"http://tod.com"},{"course_title":"Ebert, Hills and Konopelski","course_number":15969,"instructor":"Ms. Kaia Welch","location":"690 Zoie Knolls","time":"2018-07-14T03:48:40.052Z","enrolled":49244,"book":"https://stewart.name","course_url":"https://bridgette.com"},{"course_title":"Schoen Group","course_number":43772,"instructor":"Myrtice Blanda","location":"20536 Johnson Station","time":"2018-07-14T06:50:30.309Z","enrolled":47975,"book":"http://nakia.biz","course_url":"http://kaylin.name"},{"course_title":"Beer, Skiles and O'Conner","course_number":70567,"instructor":"Harley Mills","location":"2589 Hauck Lakes","time":"2018-07-14T07:15:39.822Z","enrolled":85697,"book":"https://lane.net","course_url":"https://zoey.info"},{"course_title":"Bahringer LLC","course_number":49415,"instructor":"Stanton Macejkovic MD","location":"716 Leonard Route","time":"2018-07-14T20:24:59.799Z","enrolled":8576,"book":"http://billy.net","course_url":"https://mitchell.info"},{"course_title":"Koss - Rogahn","course_number":13668,"instructor":"Hilda Schmeler","location":"8480 Bernie Pike","time":"2018-07-14T21:25:25.459Z","enrolled":68074,"book":"https://stefan.biz","course_url":"http://kenna.com"},{"course_title":"Goldner - Quitzon","course_number":87474,"instructor":"Marquis Thiel","location":"228 Angelita Walk","time":"2018-07-14T11:16:41.498Z","enrolled":50141,"book":"http://anne.net","course_url":"https://elwin.com"},{"course_title":"Davis, Wyman and Ullrich","course_number":39315,"instructor":"Alda Nitzsche","location":"34768 Nikolaus Place","time":"2018-07-14T06:29:56.909Z","enrolled":95349,"book":"https://marco.org","course_url":"https://dorthy.info"},{"course_title":"Stiedemann, Deckow and Dooley","course_number":99022,"instructor":"Aniya Green","location":"1083 Lucienne Landing","time":"2018-07-14T11:48:16.804Z","enrolled":46459,"book":"http://neva.name","course_url":"http://reyna.org"},{"course_title":"Effertz - Kuhic","course_number":15989,"instructor":"Susana Medhurst DVM","location":"007 Daniel Branch","time":"2018-07-14T04:41:13.247Z","enrolled":39293,"book":"https://adelle.org","course_url":"http://dante.com"},{"course_title":"Bartell, Frami and Braun","course_number":8958,"instructor":"Jasen Swift","location":"815 Lucie Forks","time":"2018-07-14T12:40:51.017Z","enrolled":84071,"book":"https://junius.name","course_url":"https://edward.name"},{"course_title":"Sipes, Flatley and Torp","course_number":8905,"instructor":"Myra Baumbach","location":"846 Santiago Harbors","time":"2018-07-14T21:47:49.791Z","enrolled":6348,"book":"http://kallie.info","course_url":"http://ines.org"},{"course_title":"Pagac Inc","course_number":34913,"instructor":"Orie Yundt","location":"9172 Hoeger Fords","time":"2018-07-14T10:06:52.827Z","enrolled":15012,"book":"https://marietta.biz","course_url":"https://rogers.name"},{"course_title":"Monahan, Parisian and Kemmer","course_number":26306,"instructor":"Antonietta Gorczany PhD","location":"6681 Altenwerth Junctions","time":"2018-07-14T10:27:02.256Z","enrolled":76544,"book":"https://claire.name","course_url":"http://mary.net"},{"course_title":"Stamm - Lubowitz","course_number":69604,"instructor":"Cassandra Keeling","location":"468 Franecki Walk","time":"2018-07-14T21:58:33.517Z","enrolled":73121,"book":"http://watson.name","course_url":"http://baylee.biz"},{"course_title":"Toy, Bernier and Klocko","course_number":53819,"instructor":"Dallas Hudson","location":"03340 Angie Locks","time":"2018-07-14T05:35:23.838Z","enrolled":30008,"book":"http://ludie.com","course_url":"https://jacques.net"},{"course_title":"Cormier, Jenkins and Schuppe","course_number":66415,"instructor":"Mason Kuhic","location":"341 Elias Roads","time":"2018-07-14T06:20:52.984Z","enrolled":20149,"book":"http://lizeth.name","course_url":"https://ceasar.org"},{"course_title":"Hand, Dibbert and Mayert","course_number":77673,"instructor":"Maybelle Lind","location":"53684 Larkin Plains","time":"2018-07-14T00:24:02.046Z","enrolled":32623,"book":"https://julianne.info","course_url":"http://darien.info"},{"course_title":"Reinger - Lesch","course_number":44342,"instructor":"Patience Boyer","location":"47529 Murazik Island","time":"2018-07-13T23:39:56.997Z","enrolled":78988,"book":"https://einar.name","course_url":"http://kelvin.biz"},{"course_title":"Gislason - Smitham","course_number":1930,"instructor":"Lavina Dickinson","location":"900 Kurtis Run","time":"2018-07-14T20:02:34.045Z","enrolled":69994,"book":"https://tyra.com","course_url":"http://mariane.name"},{"course_title":"Fay Group","course_number":92307,"instructor":"Mr. Gunnar Walter","location":"121 Stephon Alley","time":"2018-07-14T02:01:28.724Z","enrolled":10883,"book":"http://fae.com","course_url":"http://violette.com"},{"course_title":"Goyette Inc","course_number":16379,"instructor":"Danielle Fay","location":"4213 Stephen Streets","time":"2018-07-14T11:14:10.651Z","enrolled":31880,"book":"http://julien.org","course_url":"https://beatrice.com"},{"course_title":"Monahan, Bergnaum and Watsica","course_number":17093,"instructor":"Carlo Hackett","location":"6362 Aglae Run","time":"2018-07-14T20:21:20.215Z","enrolled":46447,"book":"https://taurean.com","course_url":"https://sherwood.biz"},{"course_title":"Flatley and Sons","course_number":41743,"instructor":"Dion McDermott PhD","location":"003 Wyman Flats","time":"2018-07-14T14:59:35.192Z","enrolled":23735,"book":"http://colten.net","course_url":"https://felton.org"},{"course_title":"Leffler and Sons","course_number":76384,"instructor":"Werner Heathcote","location":"610 Bernhard Walks","time":"2018-07-14T03:44:35.562Z","enrolled":68074,"book":"https://eladio.net","course_url":"https://kareem.info"},{"course_title":"Oberbrunner Inc","course_number":535,"instructor":"Miss Isabel Bruen","location":"303 Roma Lodge","time":"2018-07-14T23:02:36.896Z","enrolled":94510,"book":"https://ottis.org","course_url":"https://lila.biz"},{"course_title":"Barton, Homenick and West","course_number":10744,"instructor":"Ronaldo Waelchi","location":"24820 DuBuque Inlet","time":"2018-07-14T18:14:21.019Z","enrolled":56372,"book":"http://raymond.com","course_url":"https://taurean.net"},{"course_title":"Jones Group","course_number":421,"instructor":"Augusta Armstrong","location":"14126 Mosciski Knolls","time":"2018-07-14T05:55:21.532Z","enrolled":71328,"book":"http://maeve.com","course_url":"http://jevon.biz"},{"course_title":"Hudson Inc","course_number":47257,"instructor":"Valerie Labadie II","location":"4357 Hartmann Heights","time":"2018-07-14T10:40:20.027Z","enrolled":71167,"book":"http://mellie.info","course_url":"https://osborne.biz"},{"course_title":"Willms, Reilly and Barrows","course_number":27568,"instructor":"Rebeka Rath","location":"0166 Little Prairie","time":"2018-07-14T01:57:25.325Z","enrolled":21794,"book":"https://timothy.biz","course_url":"https://mitchell.name"},{"course_title":"Buckridge, Kiehn and Marks","course_number":54739,"instructor":"Breanne Heidenreich IV","location":"2069 Lilla Turnpike","time":"2018-07-14T04:11:56.372Z","enrolled":80860,"book":"https://lonzo.com","course_url":"http://pascale.org"},{"course_title":"Renner, Marquardt and Baumbach","course_number":46448,"instructor":"Ms. Luis Labadie","location":"57120 Sanford Turnpike","time":"2018-07-13T23:43:19.507Z","enrolled":42296,"book":"http://ahmad.info","course_url":"https://elenora.com"},{"course_title":"Little - Langosh","course_number":32707,"instructor":"Kathryne Gutkowski","location":"12656 Abelardo Cove","time":"2018-07-14T13:31:50.828Z","enrolled":94659,"book":"https://kian.org","course_url":"http://franco.com"},{"course_title":"Towne - Mueller","course_number":38896,"instructor":"Aliyah Lubowitz","location":"566 Keely Valley","time":"2018-07-14T13:25:38.931Z","enrolled":39870,"book":"http://creola.org","course_url":"https://marquise.com"},{"course_title":"Oberbrunner, Towne and Bradtke","course_number":58833,"instructor":"Bobby McDermott","location":"77015 Steuber Landing","time":"2018-07-14T05:09:10.092Z","enrolled":78494,"book":"http://javonte.info","course_url":"http://flo.biz"},{"course_title":"Klein, Barrows and McLaughlin","course_number":55499,"instructor":"Mrs. Krista Keeling","location":"62127 Delfina Hollow","time":"2018-07-14T18:27:25.484Z","enrolled":31407,"book":"http://isaias.name","course_url":"http://russel.com"},{"course_title":"Flatley Inc","course_number":5355,"instructor":"Noelia Halvorson","location":"87111 Haley Unions","time":"2018-07-14T04:46:53.642Z","enrolled":45131,"book":"http://morgan.org","course_url":"https://joan.net"},{"course_title":"Sauer Group","course_number":58160,"instructor":"Miss Violette Toy","location":"53141 King Ways","time":"2018-07-14T22:28:57.694Z","enrolled":75661,"book":"http://violette.org","course_url":"https://kevon.net"},{"course_title":"Corkery, Prohaska and Raynor","course_number":16404,"instructor":"Mr. Wanda Johnson","location":"6646 Lang Prairie","time":"2018-07-14T12:20:44.839Z","enrolled":81251,"book":"http://enid.info","course_url":"https://reginald.com"},{"course_title":"Harvey, Schumm and Keebler","course_number":22223,"instructor":"Ms. Jeffry Romaguera","location":"73726 Kadin Street","time":"2018-07-14T12:01:32.104Z","enrolled":73838,"book":"https://heidi.net","course_url":"https://melyssa.net"},{"course_title":"Shields, Kirlin and Berge","course_number":60133,"instructor":"Donnie Hagenes","location":"3283 Cassidy Mountains","time":"2018-07-14T04:55:37.042Z","enrolled":43766,"book":"https://justus.biz","course_url":"https://monroe.org"},{"course_title":"Leffler - Emard","course_number":29964,"instructor":"Jed Schuster","location":"74989 Marina Drive","time":"2018-07-14T02:53:47.623Z","enrolled":879,"book":"http://lamont.net","course_url":"http://alexandria.com"},{"course_title":"Thompson LLC","course_number":62280,"instructor":"Mallie Howe","location":"320 Harber Lakes","time":"2018-07-14T05:44:42.670Z","enrolled":23650,"book":"http://sid.net","course_url":"http://norbert.org"},{"course_title":"Ruecker - Feeney","course_number":11419,"instructor":"Turner Hessel","location":"8174 Pinkie Fork","time":"2018-07-14T22:23:04.873Z","enrolled":80621,"book":"http://ashlee.info","course_url":"https://velda.com"},{"course_title":"Kautzer Inc","course_number":15940,"instructor":"Carlos Ratke","location":"8956 Gleichner Fork","time":"2018-07-14T13:49:40.296Z","enrolled":68429,"book":"http://rosie.info","course_url":"https://jayson.com"},{"course_title":"Leuschke - Runte","course_number":2201,"instructor":"Carmella Goyette","location":"4430 Maria Branch","time":"2018-07-14T22:06:21.888Z","enrolled":78628,"book":"https://silas.info","course_url":"http://lou.info"},{"course_title":"Harris - Cassin","course_number":44671,"instructor":"Danial Sawayn","location":"28593 Stacey Wall","time":"2018-07-14T06:36:40.155Z","enrolled":24473,"book":"http://amya.net","course_url":"https://minerva.com"},{"course_title":"Yost - Corwin","course_number":39587,"instructor":"Estrella Shanahan","location":"90150 Oral Cape","time":"2018-07-14T21:59:16.098Z","enrolled":27349,"book":"http://geovanny.com","course_url":"https://horacio.com"},{"course_title":"Johns - Upton","course_number":57764,"instructor":"Ransom Welch","location":"732 Idella River","time":"2018-07-14T06:29:10.491Z","enrolled":64150,"book":"http://zetta.name","course_url":"https://harley.com"},{"course_title":"Cartwright, Kessler and Kohler","course_number":65674,"instructor":"Stan Olson","location":"300 John Mall","time":"2018-07-14T12:34:26.456Z","enrolled":24156,"book":"https://mohammad.com","course_url":"https://mack.name"},{"course_title":"Franecki, Gusikowski and Lakin","course_number":11050,"instructor":"Mrs. Waino Kessler","location":"2109 Cody Loop","time":"2018-07-14T03:33:10.728Z","enrolled":47086,"book":"http://coty.name","course_url":"https://nelson.org"},{"course_title":"Parker - Boehm","course_number":10182,"instructor":"Mr. Pinkie Funk","location":"868 Heathcote Lights","time":"2018-07-14T13:32:45.107Z","enrolled":71295,"book":"https://wilber.biz","course_url":"https://stacey.biz"},{"course_title":"Hegmann - Crooks","course_number":54885,"instructor":"Jacky McClure I","location":"9255 Dalton Plain","time":"2018-07-14T00:06:47.934Z","enrolled":5581,"book":"https://marcellus.com","course_url":"https://linnea.info"},{"course_title":"Herman and Sons","course_number":35695,"instructor":"Jayne King","location":"2043 Anita Pine","time":"2018-07-14T16:09:22.241Z","enrolled":12420,"book":"https://domingo.com","course_url":"http://antwan.org"},{"course_title":"Beer Inc","course_number":11122,"instructor":"Dejon Kerluke","location":"4397 Tiffany Parkway","time":"2018-07-14T07:53:46.217Z","enrolled":66867,"book":"http://camila.net","course_url":"https://kiarra.info"},{"course_title":"Koelpin Inc","course_number":1369,"instructor":"Penelope Braun","location":"7311 Ruecker Plaza","time":"2018-07-13T23:11:12.462Z","enrolled":31593,"book":"https://augustine.com","course_url":"https://omer.name"},{"course_title":"Windler, Gaylord and Bednar","course_number":95787,"instructor":"Mrs. Zander Murphy","location":"2916 Orn Plains","time":"2018-07-14T07:01:13.000Z","enrolled":48793,"book":"https://yasmeen.org","course_url":"http://stacy.com"},{"course_title":"Harber LLC","course_number":18685,"instructor":"Miss Imogene Oberbrunner","location":"5677 Parker Port","time":"2018-07-14T11:33:40.577Z","enrolled":79008,"book":"https://tania.net","course_url":"http://jayson.info"},{"course_title":"Heller, Nader and Mann","course_number":1183,"instructor":"Annamae Huels III","location":"830 Emilia Prairie","time":"2018-07-14T07:16:45.103Z","enrolled":70599,"book":"http://nash.name","course_url":"http://agustin.info"},{"course_title":"McGlynn Group","course_number":97192,"instructor":"Rhiannon Kemmer MD","location":"0082 Jaqueline Vista","time":"2018-07-14T14:41:53.131Z","enrolled":92133,"book":"http://sage.biz","course_url":"http://ted.net"},{"course_title":"Johnston - Morissette","course_number":37535,"instructor":"Marlee Collier MD","location":"71445 Travon Lights","time":"2018-07-14T16:00:21.808Z","enrolled":90348,"book":"https://tyrell.com","course_url":"http://evie.info"},{"course_title":"Rutherford - Langworth","course_number":65959,"instructor":"Elna Hettinger","location":"89036 Ignatius Mews","time":"2018-07-14T02:05:07.165Z","enrolled":87281,"book":"https://ahmad.name","course_url":"https://asha.net"},{"course_title":"Gleichner LLC","course_number":11208,"instructor":"Chase Leannon MD","location":"94502 Mitchel Village","time":"2018-07-14T05:26:04.131Z","enrolled":12457,"book":"https://eleonore.name","course_url":"https://nelda.name"},{"course_title":"White, Weber and Konopelski","course_number":93079,"instructor":"Keira Grimes","location":"9835 Mertz Key","time":"2018-07-14T15:44:51.852Z","enrolled":89280,"book":"https://antonina.name","course_url":"http://bud.biz"},{"course_title":"Mann, Cassin and Schneider","course_number":70796,"instructor":"Noelia Kiehn","location":"9003 Berry Knolls","time":"2018-07-14T07:39:01.432Z","enrolled":98532,"book":"https://alvah.info","course_url":"http://noble.net"},{"course_title":"Nicolas - Tromp","course_number":43805,"instructor":"Brice Yundt IV","location":"492 Jonathon Shores","time":"2018-07-14T14:24:52.353Z","enrolled":11831,"book":"http://golden.info","course_url":"http://wilbert.info"},{"course_title":"Mohr, Vandervort and Hirthe","course_number":89817,"instructor":"Elinore Zemlak","location":"556 Jeffry Junctions","time":"2018-07-14T00:03:52.873Z","enrolled":56238,"book":"https://wilmer.biz","course_url":"https://ryleigh.net"},{"course_title":"Feil - Pacocha","course_number":74755,"instructor":"Constantin Erdman","location":"9205 Kenyatta Lock","time":"2018-07-14T05:46:07.995Z","enrolled":54987,"book":"http://karley.biz","course_url":"http://ewell.net"},{"course_title":"Tremblay - Barrows","course_number":68473,"instructor":"Cary Hayes","location":"0221 Kavon Course","time":"2018-07-14T17:19:16.420Z","enrolled":39838,"book":"http://silas.biz","course_url":"https://brennan.org"},{"course_title":"Muller LLC","course_number":47835,"instructor":"Rosendo Walter","location":"683 Terry Overpass","time":"2018-07-14T00:20:54.282Z","enrolled":19761,"book":"https://nelda.name","course_url":"http://leland.net"},{"course_title":"Wilkinson - Bauch","course_number":43883,"instructor":"Fiona Hahn","location":"618 Furman Crest","time":"2018-07-14T01:41:51.017Z","enrolled":58482,"book":"https://kip.com","course_url":"https://dawson.name"},{"course_title":"Kirlin - Kemmer","course_number":41731,"instructor":"Allen Swaniawski","location":"9878 Durward Oval","time":"2018-07-14T11:02:28.897Z","enrolled":38774,"book":"https://euna.com","course_url":"http://laurianne.info"},{"course_title":"Simonis - Stark","course_number":77248,"instructor":"Craig Okuneva II","location":"46458 Zemlak Mountains","time":"2018-07-14T16:41:26.808Z","enrolled":43458,"book":"https://armani.com","course_url":"https://omer.net"},{"course_title":"Kilback, Tillman and Ullrich","course_number":6128,"instructor":"Royal Schaefer","location":"4315 Nolan Plaza","time":"2018-07-14T00:53:07.543Z","enrolled":26804,"book":"https://reina.com","course_url":"https://rodger.net"},{"course_title":"Leuschke Group","course_number":90543,"instructor":"Magdalen Bechtelar","location":"3454 Raynor Motorway","time":"2018-07-14T03:24:10.251Z","enrolled":14996,"book":"https://mozell.name","course_url":"http://maeve.net"},{"course_title":"Bernhard, Lesch and Crist","course_number":17043,"instructor":"Liam McCullough","location":"450 Stehr River","time":"2018-07-14T18:57:20.693Z","enrolled":2387,"book":"https://martin.com","course_url":"http://althea.biz"},{"course_title":"Schoen, Wisoky and Sawayn","course_number":32711,"instructor":"Alfred Kutch","location":"36473 Stuart Square","time":"2018-07-14T03:35:24.857Z","enrolled":46925,"book":"http://larry.org","course_url":"https://jonas.name"},{"course_title":"Wilderman - Leannon","course_number":62882,"instructor":"Corene Sanford","location":"13331 Balistreri Overpass","time":"2018-07-14T19:46:28.308Z","enrolled":63327,"book":"https://brady.info","course_url":"http://tremaine.net"},{"course_title":"Harber, Becker and Mueller","course_number":88554,"instructor":"Elouise Herman","location":"8964 Treutel Port","time":"2018-07-14T05:27:59.644Z","enrolled":62694,"book":"https://garrison.org","course_url":"https://josie.org"},{"course_title":"Bogisich, Wisozk and Kris","course_number":30741,"instructor":"Aron Williamson","location":"70599 Schroeder Prairie","time":"2018-07-14T05:31:14.133Z","enrolled":1877,"book":"http://elnora.com","course_url":"https://hermann.com"},{"course_title":"Bode - Miller","course_number":88030,"instructor":"Izaiah Turcotte","location":"001 Mueller Forge","time":"2018-07-14T07:10:52.480Z","enrolled":39374,"book":"https://napoleon.info","course_url":"http://gene.info"},{"course_title":"Kilback - Kozey","course_number":18990,"instructor":"Dwight Morar","location":"68396 Rodriguez Court","time":"2018-07-14T13:43:50.496Z","enrolled":80393,"book":"https://dina.biz","course_url":"http://rosalinda.name"},{"course_title":"Koss Group","course_number":17611,"instructor":"Mrs. Karen Aufderhar","location":"0374 Weldon Crossroad","time":"2018-07-14T14:55:15.331Z","enrolled":96743,"book":"https://eugenia.net","course_url":"https://vicky.biz"},{"course_title":"Fahey, Grady and Fay","course_number":55383,"instructor":"Sonya VonRueden","location":"84734 Judah Mills","time":"2018-07-14T13:02:38.169Z","enrolled":66864,"book":"https://elsa.org","course_url":"http://lola.com"},{"course_title":"Hills Group","course_number":40902,"instructor":"Miss Jaylan Brekke","location":"809 Feeney Village","time":"2018-07-14T07:12:35.094Z","enrolled":56850,"book":"https://anibal.org","course_url":"https://bernard.biz"},{"course_title":"Balistreri Group","course_number":29321,"instructor":"Irwin Howe PhD","location":"3234 Huels Bridge","time":"2018-07-14T07:04:23.230Z","enrolled":16689,"book":"https://karli.net","course_url":"http://eloy.org"},{"course_title":"Turner and Sons","course_number":79947,"instructor":"Candida Harvey PhD","location":"9704 Torphy Land","time":"2018-07-14T20:20:35.650Z","enrolled":15356,"book":"http://saige.com","course_url":"http://alva.biz"},{"course_title":"Steuber, Jones and Wisozk","course_number":63077,"instructor":"Luisa White","location":"347 Cummerata Estates","time":"2018-07-14T01:21:18.837Z","enrolled":59888,"book":"https://penelope.org","course_url":"http://enos.biz"},{"course_title":"Hickle Group","course_number":5923,"instructor":"Mrs. Nicole Dibbert","location":"49789 Heath Pines","time":"2018-07-14T04:00:49.914Z","enrolled":13516,"book":"http://jennyfer.com","course_url":"http://desmond.biz"},{"course_title":"Fahey Group","course_number":1315,"instructor":"Janice Turcotte","location":"1760 London Points","time":"2018-07-14T17:04:29.894Z","enrolled":61397,"book":"https://delpha.name","course_url":"http://ashtyn.name"},{"course_title":"Jones, Botsford and Hilpert","course_number":70100,"instructor":"Cierra VonRueden","location":"138 Reichert Crest","time":"2018-07-14T00:21:31.598Z","enrolled":32355,"book":"https://darrick.biz","course_url":"https://amir.org"},{"course_title":"Bradtke LLC","course_number":31405,"instructor":"Ms. Leola Kohler","location":"0503 Garnet Shores","time":"2018-07-14T02:04:58.572Z","enrolled":60199,"book":"https://rocio.org","course_url":"https://dannie.biz"},{"course_title":"Cruickshank Group","course_number":6589,"instructor":"Kattie Nienow","location":"828 Gerardo Oval","time":"2018-07-14T01:05:23.829Z","enrolled":84126,"book":"https://jackson.name","course_url":"http://johnathan.biz"},{"course_title":"Kuphal, Blick and Leffler","course_number":33325,"instructor":"Shanna Ruecker","location":"9449 Ferry Islands","time":"2018-07-14T01:47:05.982Z","enrolled":43519,"book":"https://fanny.com","course_url":"https://hollie.name"},{"course_title":"Breitenberg - Grant","course_number":52491,"instructor":"General Strosin","location":"275 Nova Shores","time":"2018-07-14T09:55:15.096Z","enrolled":80481,"book":"http://ray.biz","course_url":"http://jermain.org"},{"course_title":"Beer - Lindgren","course_number":47052,"instructor":"Arthur Dicki","location":"3659 Edward Vista","time":"2018-07-14T19:19:19.681Z","enrolled":57495,"book":"http://veda.com","course_url":"http://alberto.name"},{"course_title":"Denesik - Aufderhar","course_number":50243,"instructor":"Issac Witting","location":"71950 Hilbert Corner","time":"2018-07-14T18:33:12.518Z","enrolled":36793,"book":"https://sofia.name","course_url":"http://adela.biz"},{"course_title":"Schaden and Sons","course_number":5303,"instructor":"Emmie Gulgowski","location":"832 Jaime Fords","time":"2018-07-14T00:52:17.581Z","enrolled":73105,"book":"https://kristina.info","course_url":"http://wilton.net"},{"course_title":"Wyman, Fisher and Huels","course_number":897,"instructor":"Fabiola Wiza","location":"05092 Gerard Way","time":"2018-07-14T15:21:34.645Z","enrolled":21745,"book":"https://tod.org","course_url":"http://alexandria.biz"},{"course_title":"Murray Inc","course_number":18125,"instructor":"Lambert Lemke","location":"69357 Goyette Plain","time":"2018-07-14T00:20:01.434Z","enrolled":33410,"book":"http://mason.name","course_url":"http://benton.biz"},{"course_title":"Cruickshank - Conn","course_number":27006,"instructor":"Howard Anderson","location":"25972 Delbert Corners","time":"2018-07-14T12:37:11.768Z","enrolled":12315,"book":"https://alba.info","course_url":"http://alexandrea.name"},{"course_title":"Koepp - Dibbert","course_number":41925,"instructor":"Ella Walsh","location":"83316 Terry Plains","time":"2018-07-14T02:53:04.846Z","enrolled":39989,"book":"http://kristopher.net","course_url":"https://hugh.net"},{"course_title":"Lemke Group","course_number":13611,"instructor":"Viviane Parker","location":"2155 Schumm Islands","time":"2018-07-14T01:19:46.935Z","enrolled":85220,"book":"http://ken.org","course_url":"http://ressie.name"},{"course_title":"Runte LLC","course_number":34123,"instructor":"Leora Barton","location":"453 Rosa Corners","time":"2018-07-14T04:45:19.409Z","enrolled":2642,"book":"http://idella.com","course_url":"http://rafaela.com"},{"course_title":"Rolfson, Hilll and Zemlak","course_number":44167,"instructor":"Ally Marquardt","location":"2375 Kaela Mills","time":"2018-07-14T13:29:03.073Z","enrolled":9164,"book":"http://violette.net","course_url":"https://felix.org"},{"course_title":"Krajcik, Daugherty and Hyatt","course_number":44872,"instructor":"Jairo Cruickshank","location":"616 Wilkinson Neck","time":"2018-07-14T14:42:05.144Z","enrolled":54550,"book":"https://cordelia.net","course_url":"https://palma.org"},{"course_title":"Satterfield LLC","course_number":64410,"instructor":"Aric Pfannerstill II","location":"1504 Josiah Knoll","time":"2018-07-14T19:36:56.875Z","enrolled":33625,"book":"http://tavares.info","course_url":"http://tania.biz"},{"course_title":"Emmerich LLC","course_number":14932,"instructor":"Maritza Reynolds","location":"7489 Deckow Place","time":"2018-07-14T02:50:13.915Z","enrolled":53290,"book":"https://veda.net","course_url":"https://silas.org"},{"course_title":"Bartoletti - Stehr","course_number":6671,"instructor":"Domenica Gibson","location":"66339 Kozey Mission","time":"2018-07-14T08:41:25.524Z","enrolled":73027,"book":"http://judson.biz","course_url":"https://hettie.net"},{"course_title":"Cassin, Prosacco and Blick","course_number":91622,"instructor":"Nelda Johnson","location":"40011 Conn Course","time":"2018-07-14T12:47:39.713Z","enrolled":11820,"book":"https://richmond.biz","course_url":"https://aracely.name"},{"course_title":"Lindgren - Stanton","course_number":44117,"instructor":"Genoveva Turner","location":"8349 Leffler Stravenue","time":"2018-07-14T14:38:52.421Z","enrolled":24542,"book":"http://alize.net","course_url":"https://amos.info"},{"course_title":"Sauer, Terry and Spencer","course_number":14885,"instructor":"Delaney Sipes","location":"5081 Walsh Manors","time":"2018-07-14T00:17:02.302Z","enrolled":16467,"book":"http://justyn.info","course_url":"https://darion.com"},{"course_title":"Murphy Group","course_number":87185,"instructor":"Kurtis Morar","location":"334 Reinger Radial","time":"2018-07-14T17:14:55.039Z","enrolled":70039,"book":"http://sammie.info","course_url":"https://karley.org"},{"course_title":"Stanton - Orn","course_number":71011,"instructor":"Ken Tillman PhD","location":"27090 Garnet Manors","time":"2018-07-14T13:43:29.033Z","enrolled":28758,"book":"http://major.com","course_url":"https://jake.biz"},{"course_title":"Kuphal, Conn and Kemmer","course_number":16435,"instructor":"Clare Gutkowski","location":"107 Smith Forge","time":"2018-07-14T09:52:59.687Z","enrolled":75019,"book":"https://paris.org","course_url":"https://meaghan.net"},{"course_title":"Crona and Sons","course_number":42279,"instructor":"Adrienne Wyman","location":"140 Hettinger Inlet","time":"2018-07-14T10:00:40.745Z","enrolled":66908,"book":"https://araceli.com","course_url":"http://xzavier.org"},{"course_title":"D'Amore - Sanford","course_number":30284,"instructor":"Erik Carroll MD","location":"288 Considine Place","time":"2018-07-14T13:38:29.383Z","enrolled":38165,"book":"http://faye.com","course_url":"http://cary.org"},{"course_title":"Medhurst - O'Hara","course_number":91772,"instructor":"Roscoe Schmitt","location":"61982 Adams Shores","time":"2018-07-14T21:09:26.843Z","enrolled":60098,"book":"http://hildegard.com","course_url":"http://dawn.com"},{"course_title":"Hyatt - Leannon","course_number":74729,"instructor":"Tiffany Purdy","location":"981 Keeley Mission","time":"2018-07-14T05:59:23.120Z","enrolled":2385,"book":"http://zackery.net","course_url":"https://bria.info"},{"course_title":"Mann - Terry","course_number":81793,"instructor":"Asa Corkery","location":"76387 Samanta Knolls","time":"2018-07-14T09:20:32.414Z","enrolled":17279,"book":"https://athena.net","course_url":"http://jamar.biz"},{"course_title":"Beahan, Hane and Gibson","course_number":20209,"instructor":"Mr. Verdie Waelchi","location":"74097 Quigley Stream","time":"2018-07-14T02:37:25.917Z","enrolled":12047,"book":"https://cole.name","course_url":"https://moshe.biz"},{"course_title":"Lubowitz, Mann and White","course_number":82256,"instructor":"Fannie Koepp","location":"130 Mayer Bypass","time":"2018-07-14T19:53:19.692Z","enrolled":2322,"book":"http://kiarra.com","course_url":"http://easton.net"},{"course_title":"Rempel LLC","course_number":85399,"instructor":"Rachel Klein","location":"877 Pablo Hill","time":"2018-07-14T15:26:40.134Z","enrolled":43186,"book":"http://kristian.name","course_url":"https://candida.info"},{"course_title":"Paucek, Sipes and Walker","course_number":69520,"instructor":"Kolby Boyle","location":"0059 Destiney Track","time":"2018-07-14T08:59:40.606Z","enrolled":35365,"book":"https://bettye.name","course_url":"http://kenton.org"},{"course_title":"Bechtelar, Wuckert and Koelpin","course_number":75407,"instructor":"Brady Jacobs Jr.","location":"151 Baylee Brooks","time":"2018-07-14T01:23:59.542Z","enrolled":44267,"book":"http://leonor.com","course_url":"https://kathlyn.biz"},{"course_title":"Yost and Sons","course_number":66995,"instructor":"Donny Parker","location":"5848 Stephon Corners","time":"2018-07-14T20:19:53.125Z","enrolled":47195,"book":"http://arne.net","course_url":"http://abigail.name"},{"course_title":"Rutherford - Boehm","course_number":47199,"instructor":"Maye Leuschke Sr.","location":"178 Annamae Ways","time":"2018-07-14T18:35:53.770Z","enrolled":57947,"book":"http://luella.org","course_url":"https://davion.biz"},{"course_title":"Klocko LLC","course_number":92261,"instructor":"Ms. Stacy Schumm","location":"756 Noe Plaza","time":"2018-07-14T02:52:53.731Z","enrolled":80292,"book":"https://shayne.biz","course_url":"http://stefanie.net"},{"course_title":"Towne and Sons","course_number":70862,"instructor":"Yesenia Predovic","location":"266 Leffler Crossing","time":"2018-07-14T09:19:57.166Z","enrolled":51328,"book":"https://peyton.info","course_url":"https://keegan.name"},{"course_title":"Ryan Inc","course_number":18825,"instructor":"Salvatore Swift","location":"943 Schinner Locks","time":"2018-07-14T10:57:54.337Z","enrolled":8805,"book":"https://elian.org","course_url":"https://barbara.com"},{"course_title":"Kerluke - Heaney","course_number":21171,"instructor":"Ms. Abagail O'Hara","location":"655 Bode Orchard","time":"2018-07-14T18:30:50.139Z","enrolled":82318,"book":"http://kelli.info","course_url":"http://gino.biz"},{"course_title":"Considine - Pollich","course_number":90773,"instructor":"Burnice Braun","location":"4800 Lucious Lane","time":"2018-07-14T03:34:00.568Z","enrolled":53277,"book":"https://alexis.net","course_url":"https://gunner.org"},{"course_title":"Bailey, Stamm and Corwin","course_number":22861,"instructor":"Graciela Kozey","location":"35508 Britney Dale","time":"2018-07-14T09:19:51.783Z","enrolled":4555,"book":"http://broderick.info","course_url":"http://bianka.com"},{"course_title":"Lakin and Sons","course_number":77371,"instructor":"Jadon Upton","location":"08085 Ullrich Ford","time":"2018-07-14T20:34:09.172Z","enrolled":26397,"book":"http://kasey.info","course_url":"https://audrey.info"},{"course_title":"Denesik - Halvorson","course_number":97665,"instructor":"Cynthia Flatley","location":"16865 Bradford Ford","time":"2018-07-14T12:39:25.015Z","enrolled":52819,"book":"https://rhiannon.org","course_url":"https://john.com"},{"course_title":"Effertz, Grimes and Auer","course_number":69900,"instructor":"Jennings Marquardt MD","location":"232 Bonita Overpass","time":"2018-07-14T05:43:47.841Z","enrolled":63937,"book":"https://henderson.biz","course_url":"http://keanu.biz"},{"course_title":"Auer, Thompson and Rowe","course_number":4612,"instructor":"Willard Fay","location":"405 Koch Divide","time":"2018-07-14T17:27:51.182Z","enrolled":59593,"book":"https://ruby.info","course_url":"https://gwen.com"},{"course_title":"Douglas - Gerhold","course_number":67086,"instructor":"Eusebio Reichel","location":"9827 Felicia Club","time":"2018-07-14T03:33:48.319Z","enrolled":10954,"book":"https://august.name","course_url":"https://alaina.info"},{"course_title":"McLaughlin, Beatty and D'Amore","course_number":41248,"instructor":"Nico Moen","location":"3988 Wellington Mews","time":"2018-07-14T13:28:21.036Z","enrolled":29918,"book":"http://albin.org","course_url":"http://judd.info"},{"course_title":"Hintz - Zboncak","course_number":88432,"instructor":"Mr. Elva Schuster","location":"8703 Mayert Springs","time":"2018-07-14T02:13:14.239Z","enrolled":6176,"book":"http://kendra.biz","course_url":"https://gregoria.name"},{"course_title":"Conn, Berge and Grady","course_number":89030,"instructor":"Hector Wolff","location":"570 Brown Mission","time":"2018-07-14T07:34:33.408Z","enrolled":79898,"book":"http://jocelyn.com","course_url":"https://fabiola.com"},{"course_title":"Torp - Ryan","course_number":80488,"instructor":"Avis Mills","location":"93871 Williamson Extensions","time":"2018-07-14T07:19:31.351Z","enrolled":39795,"book":"https://shanon.org","course_url":"https://tyrell.name"},{"course_title":"Klein - Ziemann","course_number":63061,"instructor":"Sylvia O'Connell","location":"68993 Gage Plaza","time":"2018-07-14T13:13:24.286Z","enrolled":68049,"book":"http://lilian.net","course_url":"http://annabel.info"},{"course_title":"Zieme - Fadel","course_number":61271,"instructor":"Lelah Funk","location":"64702 Armstrong Falls","time":"2018-07-14T14:53:43.403Z","enrolled":59444,"book":"https://kenny.org","course_url":"http://adolfo.net"},{"course_title":"Hilpert - McGlynn","course_number":37482,"instructor":"Ignacio Dietrich Sr.","location":"95818 Filomena Mountains","time":"2018-07-14T00:29:48.914Z","enrolled":7916,"book":"https://thomas.org","course_url":"http://jakayla.biz"},{"course_title":"Cassin Inc","course_number":37669,"instructor":"Kenny Morissette II","location":"530 Wilhelmine Ports","time":"2018-07-14T21:01:46.439Z","enrolled":4719,"book":"https://kennedy.org","course_url":"http://myron.com"},{"course_title":"Dibbert - Morar","course_number":71585,"instructor":"Rowan Shields","location":"51597 Jana Shoal","time":"2018-07-14T12:53:07.859Z","enrolled":97690,"book":"https://vaughn.com","course_url":"http://rene.biz"},{"course_title":"Bergnaum - Jacobson","course_number":88964,"instructor":"Mr. Rosendo Walter","location":"8893 Agnes Square","time":"2018-07-14T01:08:23.918Z","enrolled":35078,"book":"http://herta.biz","course_url":"https://helga.net"},{"course_title":"Mraz, Schuster and Hoppe","course_number":35244,"instructor":"Joany Lynch","location":"06955 Brittany Forks","time":"2018-07-14T01:02:25.886Z","enrolled":12687,"book":"https://leila.info","course_url":"http://gardner.com"},{"course_title":"Rosenbaum - Beahan","course_number":64612,"instructor":"Keanu Mraz","location":"2736 Weber Flat","time":"2018-07-14T01:37:11.478Z","enrolled":49410,"book":"https://bennett.biz","course_url":"https://rosalyn.name"},{"course_title":"Zieme, Farrell and Rippin","course_number":20167,"instructor":"Mr. Tre Miller","location":"479 Spencer Lakes","time":"2018-07-14T00:29:09.678Z","enrolled":10366,"book":"http://coleman.net","course_url":"http://anjali.com"},{"course_title":"Nicolas, Larkin and Windler","course_number":76895,"instructor":"Norwood Senger","location":"193 Kreiger Garden","time":"2018-07-14T22:45:54.966Z","enrolled":1582,"book":"https://andreanne.net","course_url":"http://rebecca.net"},{"course_title":"Gleichner, Conroy and Dach","course_number":23169,"instructor":"Orin Moen","location":"21832 Carroll Shore","time":"2018-07-14T06:56:12.616Z","enrolled":69186,"book":"https://august.biz","course_url":"http://ceasar.biz"},{"course_title":"Lakin LLC","course_number":13950,"instructor":"Iliana Kessler","location":"8110 Swift Mount","time":"2018-07-14T05:10:08.834Z","enrolled":7639,"book":"https://sonia.biz","course_url":"https://jamar.org"},{"course_title":"Ziemann and Sons","course_number":49802,"instructor":"Lou O'Conner MD","location":"918 Glen Pines","time":"2018-07-14T22:53:55.187Z","enrolled":22206,"book":"https://elmo.info","course_url":"https://bonnie.info"},{"course_title":"Lind LLC","course_number":80260,"instructor":"Kayli Hansen","location":"7345 O'Hara Green","time":"2018-07-14T05:56:29.246Z","enrolled":25075,"book":"http://elmore.info","course_url":"https://raymond.net"},{"course_title":"Hermann - Reichel","course_number":2051,"instructor":"Kaci Kutch","location":"66014 Tromp Alley","time":"2018-07-14T19:34:08.121Z","enrolled":36463,"book":"http://jarrell.com","course_url":"https://baron.org"},{"course_title":"Sawayn and Sons","course_number":36038,"instructor":"Cary Stoltenberg Sr.","location":"360 Luettgen Mountain","time":"2018-07-14T07:52:20.374Z","enrolled":72964,"book":"http://georgette.info","course_url":"https://daren.org"},{"course_title":"Hamill and Sons","course_number":82510,"instructor":"Baby Murray","location":"318 Frami Groves","time":"2018-07-14T14:40:49.330Z","enrolled":98226,"book":"https://uriah.org","course_url":"http://thad.com"},{"course_title":"Nienow - D'Amore","course_number":38855,"instructor":"Cassie Volkman","location":"1617 Forest Island","time":"2018-07-14T13:21:10.789Z","enrolled":40170,"book":"https://kareem.name","course_url":"http://camylle.com"},{"course_title":"Hodkiewicz - Kuhn","course_number":93694,"instructor":"Diamond Mayer I","location":"5624 Heathcote Ridge","time":"2018-07-14T14:37:54.137Z","enrolled":87703,"book":"http://ephraim.biz","course_url":"https://rollin.info"},{"course_title":"Donnelly - Lind","course_number":55964,"instructor":"Marcelino Walker","location":"6456 Alexis Flats","time":"2018-07-14T05:48:32.521Z","enrolled":17493,"book":"http://reece.com","course_url":"http://madalyn.info"},{"course_title":"Lang Inc","course_number":67628,"instructor":"Garnett Mertz DDS","location":"6691 Bradtke Brook","time":"2018-07-14T19:03:18.143Z","enrolled":61094,"book":"https://seth.org","course_url":"http://ena.com"},{"course_title":"Dietrich, Keeling and Roberts","course_number":21719,"instructor":"Mr. Elliot Maggio","location":"322 Bins Mountains","time":"2018-07-14T14:27:47.100Z","enrolled":43989,"book":"http://dillan.name","course_url":"http://arielle.info"},{"course_title":"Gaylord LLC","course_number":74792,"instructor":"Elinore Braun","location":"6670 Tomas Estate","time":"2018-07-14T14:29:39.026Z","enrolled":32689,"book":"http://ransom.org","course_url":"http://layne.org"},{"course_title":"Haley - Christiansen","course_number":10911,"instructor":"Mrs. Olga Prohaska","location":"29371 Gisselle Mountain","time":"2018-07-14T22:22:47.075Z","enrolled":29320,"book":"https://michelle.biz","course_url":"http://isabell.com"},{"course_title":"Nienow, Batz and O'Reilly","course_number":58282,"instructor":"Antone Reynolds","location":"34292 Linwood Highway","time":"2018-07-14T16:42:56.272Z","enrolled":49673,"book":"https://wellington.info","course_url":"http://tessie.com"},{"course_title":"Eichmann - Smitham","course_number":22110,"instructor":"Maynard Witting","location":"2977 Nienow Common","time":"2018-07-14T08:41:27.308Z","enrolled":17671,"book":"http://rachel.biz","course_url":"http://madelynn.com"},{"course_title":"Zboncak - Grady","course_number":60589,"instructor":"Osborne Lebsack","location":"09451 Schuppe Forges","time":"2018-07-14T09:21:57.490Z","enrolled":10421,"book":"http://anderson.net","course_url":"https://cassie.org"},{"course_title":"Hahn - Pfannerstill","course_number":9954,"instructor":"Sibyl Bauch","location":"0670 Fred Point","time":"2018-07-14T11:13:35.444Z","enrolled":38691,"book":"http://layne.org","course_url":"https://citlalli.net"},{"course_title":"Ledner and Sons","course_number":51755,"instructor":"Linda Bins","location":"09413 Ullrich Drives","time":"2018-07-14T13:13:15.316Z","enrolled":77426,"book":"https://frieda.org","course_url":"https://jed.name"},{"course_title":"O'Keefe - Russel","course_number":51315,"instructor":"Dr. Dortha Mayer","location":"3556 Catharine Cliff","time":"2018-07-14T04:20:08.432Z","enrolled":77872,"book":"http://jennyfer.biz","course_url":"http://consuelo.name"},{"course_title":"Altenwerth, Douglas and Ritchie","course_number":15110,"instructor":"Dax Douglas","location":"45779 Maxie Stravenue","time":"2018-07-14T14:08:13.752Z","enrolled":22103,"book":"http://russ.info","course_url":"https://theodora.biz"},{"course_title":"Hand, Feil and Powlowski","course_number":29941,"instructor":"Tressie Pollich","location":"9137 Spinka Radial","time":"2018-07-14T13:58:58.168Z","enrolled":45140,"book":"https://hunter.biz","course_url":"http://cecilia.info"},{"course_title":"Hodkiewicz, Stokes and Nienow","course_number":44228,"instructor":"Ariane Kohler","location":"907 King Springs","time":"2018-07-14T19:59:03.297Z","enrolled":69002,"book":"http://lisandro.org","course_url":"https://watson.info"},{"course_title":"Wisozk - Block","course_number":17268,"instructor":"Mya Harber","location":"9788 Joshuah Tunnel","time":"2018-07-14T23:03:52.772Z","enrolled":9210,"book":"http://eliseo.net","course_url":"https://edmond.net"},{"course_title":"Schmitt, Prosacco and Wehner","course_number":93294,"instructor":"Fabian Bauch","location":"768 Schamberger Ridge","time":"2018-07-14T19:01:09.119Z","enrolled":27433,"book":"https://alyce.org","course_url":"http://corine.biz"},{"course_title":"Corkery and Sons","course_number":57572,"instructor":"Henry Jerde II","location":"0253 Gerda Shoals","time":"2018-07-14T21:50:00.063Z","enrolled":36367,"book":"http://norris.org","course_url":"https://harmon.org"},{"course_title":"Heaney, McCullough and Keeling","course_number":76389,"instructor":"Gay Hudson","location":"3553 Cecil Mountains","time":"2018-07-14T02:05:48.954Z","enrolled":4570,"book":"http://dewayne.org","course_url":"https://al.com"},{"course_title":"Funk, Wintheiser and Ritchie","course_number":63884,"instructor":"Rupert Stark","location":"91319 Cristina Oval","time":"2018-07-14T14:52:10.484Z","enrolled":4979,"book":"https://dasia.info","course_url":"https://maybelle.com"},{"course_title":"Heidenreich - Metz","course_number":27420,"instructor":"Valentine Waelchi","location":"19681 Margaretta Shoal","time":"2018-07-14T05:48:44.620Z","enrolled":73991,"book":"http://evangeline.net","course_url":"http://margot.com"},{"course_title":"Klocko - Schmidt","course_number":95459,"instructor":"Miss Eva Armstrong","location":"91675 Brown Freeway","time":"2018-07-14T05:31:21.041Z","enrolled":5181,"book":"https://lester.info","course_url":"https://dashawn.name"},{"course_title":"Collins, Boehm and Kuhlman","course_number":88429,"instructor":"Tracy Larkin","location":"77615 Kirk Pike","time":"2018-07-14T09:52:16.691Z","enrolled":115,"book":"https://lia.info","course_url":"https://emma.net"},{"course_title":"Stracke, Marquardt and Hahn","course_number":91017,"instructor":"Kailey Schaefer","location":"40753 Bauch Extension","time":"2018-07-14T17:16:34.171Z","enrolled":9397,"book":"http://erich.biz","course_url":"https://lourdes.com"},{"course_title":"O'Conner LLC","course_number":87458,"instructor":"Elizabeth VonRueden","location":"77559 Esther Crescent","time":"2018-07-14T04:05:12.128Z","enrolled":15239,"book":"https://linnie.net","course_url":"http://pauline.com"},{"course_title":"Olson Inc","course_number":48356,"instructor":"Eldora Conn","location":"64020 Avery Forks","time":"2018-07-14T00:56:02.125Z","enrolled":72497,"book":"http://lillie.biz","course_url":"https://freddy.com"},{"course_title":"Olson Group","course_number":35148,"instructor":"Rosamond Durgan","location":"016 Predovic View","time":"2018-07-14T22:52:13.176Z","enrolled":37515,"book":"https://twila.name","course_url":"http://cleveland.name"},{"course_title":"McGlynn - Wehner","course_number":75720,"instructor":"Miss Aileen Ruecker","location":"64291 Erich Heights","time":"2018-07-14T07:11:49.795Z","enrolled":49998,"book":"http://eda.biz","course_url":"http://lonny.org"},{"course_title":"MacGyver and Sons","course_number":93043,"instructor":"Jensen Schaefer","location":"258 Amanda Rue","time":"2018-07-14T08:03:26.638Z","enrolled":75356,"book":"https://asa.net","course_url":"https://dillon.biz"},{"course_title":"Pacocha - Greenfelder","course_number":16816,"instructor":"Derek Lockman","location":"930 Clifford Trafficway","time":"2018-07-14T12:31:53.621Z","enrolled":77821,"book":"https://donnell.org","course_url":"http://gerhard.org"},{"course_title":"Bernhard Inc","course_number":65638,"instructor":"Henri Rolfson IV","location":"101 Ernest Port","time":"2018-07-14T22:16:18.185Z","enrolled":66305,"book":"https://alessandra.biz","course_url":"https://willow.com"},{"course_title":"Farrell - VonRueden","course_number":63012,"instructor":"Ray Renner","location":"7588 Kreiger Fields","time":"2018-07-14T09:24:19.279Z","enrolled":13562,"book":"https://hayden.org","course_url":"https://dovie.net"},{"course_title":"Luettgen Inc","course_number":41705,"instructor":"Willis Armstrong DDS","location":"25652 Tiana Rest","time":"2018-07-14T00:00:00.057Z","enrolled":28441,"book":"https://heloise.info","course_url":"https://wilma.com"},{"course_title":"Collins - Brown","course_number":11808,"instructor":"Damien Rosenbaum","location":"83383 Dejah Street","time":"2018-07-14T16:17:08.721Z","enrolled":21380,"book":"https://demarco.biz","course_url":"http://lou.com"},{"course_title":"Sipes - Marquardt","course_number":64341,"instructor":"Makenna Witting IV","location":"605 Chadrick Harbor","time":"2018-07-14T20:28:11.833Z","enrolled":76103,"book":"http://lina.com","course_url":"https://henri.info"},{"course_title":"Paucek, Blanda and O'Reilly","course_number":39387,"instructor":"Joelle Morissette","location":"2191 Christine River","time":"2018-07-14T01:32:53.706Z","enrolled":1308,"book":"http://jose.com","course_url":"https://darron.biz"},{"course_title":"Schneider, Adams and Kutch","course_number":61615,"instructor":"Miss Quinn Ebert","location":"7079 Rutherford Key","time":"2018-07-14T16:39:14.648Z","enrolled":69251,"book":"https://myra.org","course_url":"http://burdette.biz"},{"course_title":"Ondricka, Turner and Pacocha","course_number":66509,"instructor":"Krystal Hoppe","location":"9641 Hoppe Trail","time":"2018-07-14T19:31:19.554Z","enrolled":94450,"book":"http://pamela.biz","course_url":"https://lucas.biz"},{"course_title":"Adams - Rau","course_number":95184,"instructor":"Connor Steuber","location":"5571 Charley Landing","time":"2018-07-14T12:29:40.531Z","enrolled":99494,"book":"http://benny.info","course_url":"http://gussie.biz"},{"course_title":"Frami, Brakus and Robel","course_number":13737,"instructor":"Jalon Hermann DDS","location":"4786 Will Cove","time":"2018-07-14T12:11:24.859Z","enrolled":11923,"book":"http://alvah.org","course_url":"http://willis.com"},{"course_title":"O'Reilly Group","course_number":38376,"instructor":"Mac Langworth","location":"096 Rosalinda Tunnel","time":"2018-07-14T05:41:32.724Z","enrolled":39485,"book":"https://haleigh.org","course_url":"http://angelica.net"},{"course_title":"Block and Sons","course_number":43898,"instructor":"Miss Desmond Doyle","location":"681 Wuckert Summit","time":"2018-07-14T13:12:51.638Z","enrolled":89910,"book":"http://rashad.biz","course_url":"http://elza.net"},{"course_title":"Miller, Borer and Yost","course_number":87576,"instructor":"Delia O'Reilly","location":"90865 Jamie Oval","time":"2018-07-14T19:29:48.376Z","enrolled":72780,"book":"http://melvin.com","course_url":"https://jordan.org"},{"course_title":"Roob - Heathcote","course_number":40607,"instructor":"Gerson Baumbach","location":"10378 Hackett Haven","time":"2018-07-13T23:17:49.820Z","enrolled":65545,"book":"http://austin.org","course_url":"http://elva.biz"},{"course_title":"Kirlin, Runolfsdottir and Boehm","course_number":81668,"instructor":"Abbigail Turcotte","location":"1591 Devon Dale","time":"2018-07-14T00:00:35.238Z","enrolled":94108,"book":"http://isom.name","course_url":"https://louvenia.name"},{"course_title":"Cruickshank - Russel","course_number":86468,"instructor":"Ramiro Davis","location":"284 Graham Common","time":"2018-07-14T06:55:21.592Z","enrolled":60925,"book":"http://haylee.com","course_url":"http://oren.biz"},{"course_title":"Skiles LLC","course_number":42389,"instructor":"Carmen Murphy","location":"514 Emard Streets","time":"2018-07-14T04:13:09.035Z","enrolled":93914,"book":"http://johnson.net","course_url":"https://justine.name"},{"course_title":"Dickinson - Dibbert","course_number":51943,"instructor":"Hulda Wyman","location":"80975 Emily Squares","time":"2018-07-14T22:00:36.919Z","enrolled":15942,"book":"https://maud.com","course_url":"http://valentina.com"},{"course_title":"Fahey, Mayert and Breitenberg","course_number":10441,"instructor":"Nicholas Ward","location":"26462 Jasmin Via","time":"2018-07-14T07:44:50.282Z","enrolled":19384,"book":"https://geoffrey.com","course_url":"https://danyka.com"},{"course_title":"Treutel - Bernhard","course_number":72882,"instructor":"Edison White","location":"9964 Ortiz Manor","time":"2018-07-14T12:20:45.772Z","enrolled":96843,"book":"http://josh.biz","course_url":"https://heath.org"},{"course_title":"Kautzer Inc","course_number":59164,"instructor":"Loyce Corkery","location":"12493 McDermott Unions","time":"2018-07-14T02:35:42.478Z","enrolled":83924,"book":"https://katelynn.biz","course_url":"http://shaun.org"},{"course_title":"Leuschke - Kutch","course_number":80581,"instructor":"Deshawn Buckridge IV","location":"18474 Glennie Manors","time":"2018-07-14T19:09:27.245Z","enrolled":10229,"book":"https://crystel.net","course_url":"http://carrie.biz"},{"course_title":"O'Kon, Cole and Rath","course_number":26451,"instructor":"Favian Jacobson","location":"9612 Meredith Islands","time":"2018-07-14T17:50:03.830Z","enrolled":25013,"book":"http://leilani.name","course_url":"https://amiya.com"},{"course_title":"McCullough and Sons","course_number":67422,"instructor":"Garnet Runolfsdottir","location":"640 Skyla Rapid","time":"2018-07-14T05:23:30.487Z","enrolled":79384,"book":"http://dixie.com","course_url":"https://vesta.org"},{"course_title":"Gorczany, Streich and Koepp","course_number":94443,"instructor":"Miss Darwin Robel","location":"2750 Breitenberg Lights","time":"2018-07-14T00:03:26.066Z","enrolled":51476,"book":"http://mariam.net","course_url":"https://beth.name"},{"course_title":"Fisher and Sons","course_number":42627,"instructor":"Josh Hickle","location":"5060 Ariane Trail","time":"2018-07-14T16:22:55.177Z","enrolled":95463,"book":"http://chaim.biz","course_url":"http://kendra.com"},{"course_title":"Mills Group","course_number":58502,"instructor":"Mckayla Hand","location":"941 Marquardt Skyway","time":"2018-07-14T04:52:32.228Z","enrolled":27410,"book":"https://wilton.biz","course_url":"https://mathilde.name"},{"course_title":"Franecki Inc","course_number":79689,"instructor":"Lavina Funk","location":"120 Hettie Overpass","time":"2018-07-14T11:30:23.206Z","enrolled":59983,"book":"https://jewel.name","course_url":"https://nolan.name"},{"course_title":"Cronin Group","course_number":9655,"instructor":"Tia Langworth V","location":"3682 Rath Shores","time":"2018-07-14T09:07:11.836Z","enrolled":21760,"book":"http://gaston.net","course_url":"https://jeffrey.info"},{"course_title":"Toy LLC","course_number":21628,"instructor":"Dedrick Dibbert I","location":"284 Katelynn Gateway","time":"2018-07-14T00:00:03.065Z","enrolled":12630,"book":"https://elyssa.name","course_url":"https://brooke.com"},{"course_title":"Tromp Group","course_number":18576,"instructor":"Fannie Fahey","location":"3270 Boehm Oval","time":"2018-07-14T07:44:13.186Z","enrolled":66339,"book":"http://nolan.com","course_url":"https://lorena.org"},{"course_title":"Moore LLC","course_number":19842,"instructor":"Katelin Thiel","location":"3944 Sporer Burgs","time":"2018-07-14T10:13:31.615Z","enrolled":83122,"book":"https://berneice.net","course_url":"https://nickolas.org"},{"course_title":"Harber, Huels and Murphy","course_number":23741,"instructor":"Hertha Haley","location":"5128 Althea Bypass","time":"2018-07-14T07:28:55.640Z","enrolled":90230,"book":"http://donavon.com","course_url":"https://mohamed.info"},{"course_title":"Hackett and Sons","course_number":14491,"instructor":"Camron Crist","location":"7610 McLaughlin Falls","time":"2018-07-14T19:23:51.203Z","enrolled":73458,"book":"https://heidi.biz","course_url":"https://bonnie.name"},{"course_title":"Daniel, Tremblay and Bayer","course_number":79691,"instructor":"Miss Hailey Kunde","location":"589 Wuckert Rue","time":"2018-07-14T08:04:39.003Z","enrolled":24756,"book":"https://abdullah.biz","course_url":"https://chelsie.org"},{"course_title":"Baumbach, Wintheiser and Boyle","course_number":33085,"instructor":"Xzavier Schumm","location":"4312 Morar Row","time":"2018-07-14T00:53:46.419Z","enrolled":17091,"book":"http://dario.org","course_url":"http://jackie.net"},{"course_title":"Little - Deckow","course_number":49862,"instructor":"Dr. Edyth Gutmann","location":"821 Wilford Point","time":"2018-07-14T13:23:47.537Z","enrolled":77533,"book":"http://fidel.name","course_url":"https://cristobal.net"},{"course_title":"Grady, Funk and Turcotte","course_number":19674,"instructor":"Mr. Zora Wilkinson","location":"56747 Herman Point","time":"2018-07-14T21:55:32.127Z","enrolled":49235,"book":"http://jack.biz","course_url":"http://jamir.name"},{"course_title":"Green, Reichel and Gislason","course_number":42477,"instructor":"Okey Cremin","location":"47138 Nya Mountains","time":"2018-07-14T20:24:43.279Z","enrolled":76337,"book":"http://dayton.biz","course_url":"http://nelda.name"},{"course_title":"Bernhard and Sons","course_number":96007,"instructor":"Ansel Paucek","location":"967 Ernser Burgs","time":"2018-07-14T19:13:49.378Z","enrolled":29368,"book":"http://deron.com","course_url":"https://kira.biz"},{"course_title":"Reynolds, Kuvalis and Morar","course_number":25367,"instructor":"Janiya Vandervort","location":"91659 Fahey Wells","time":"2018-07-14T15:22:19.140Z","enrolled":40512,"book":"https://bessie.info","course_url":"http://maurine.net"},{"course_title":"MacGyver Group","course_number":57264,"instructor":"Urban Langworth","location":"929 Leilani Neck","time":"2018-07-14T04:19:38.232Z","enrolled":27329,"book":"http://kylie.net","course_url":"http://ransom.biz"},{"course_title":"Klein, Cassin and Bauch","course_number":76197,"instructor":"Carolina Cruickshank","location":"75630 Willms Underpass","time":"2018-07-14T09:28:16.162Z","enrolled":22685,"book":"https://jerad.info","course_url":"http://darryl.com"},{"course_title":"Gottlieb Group","course_number":76902,"instructor":"Cleora Koss","location":"087 Lebsack Bypass","time":"2018-07-14T22:53:03.624Z","enrolled":84579,"book":"http://paris.biz","course_url":"http://alva.biz"},{"course_title":"McClure, Turcotte and Rath","course_number":26358,"instructor":"Jennie Cummerata","location":"358 Janessa Via","time":"2018-07-14T21:09:31.346Z","enrolled":77292,"book":"http://rex.biz","course_url":"http://verlie.info"},{"course_title":"Davis - Rippin","course_number":48513,"instructor":"Kayleigh Watsica","location":"993 Koch Ferry","time":"2018-07-14T20:49:45.523Z","enrolled":78675,"book":"http://reba.net","course_url":"http://ben.org"},{"course_title":"Walter LLC","course_number":65454,"instructor":"Deontae MacGyver","location":"77177 Estefania Lock","time":"2018-07-14T19:40:14.480Z","enrolled":38213,"book":"https://kasandra.name","course_url":"http://rusty.com"},{"course_title":"White LLC","course_number":43113,"instructor":"Mr. Dax Jacobs","location":"137 Kelli Cove","time":"2018-07-14T08:23:49.426Z","enrolled":97827,"book":"http://forrest.org","course_url":"http://ladarius.name"},{"course_title":"Skiles, Auer and Wehner","course_number":98429,"instructor":"Jaydon Johns","location":"79245 Lorine Mountain","time":"2018-07-14T10:10:17.038Z","enrolled":64944,"book":"http://elna.biz","course_url":"http://peter.com"},{"course_title":"Johnston and Sons","course_number":74998,"instructor":"Hazle Jenkins","location":"247 Kuvalis Fields","time":"2018-07-14T12:19:50.135Z","enrolled":7617,"book":"http://bulah.com","course_url":"http://tyson.com"},{"course_title":"Gislason, Jacobi and Mosciski","course_number":98427,"instructor":"Cleora Thiel","location":"8974 Mertz Hollow","time":"2018-07-14T00:27:12.431Z","enrolled":90207,"book":"http://araceli.biz","course_url":"https://cierra.net"},{"course_title":"Wintheiser - Ernser","course_number":81613,"instructor":"Wilburn Abbott","location":"06960 Zboncak Views","time":"2018-07-14T06:14:19.090Z","enrolled":16946,"book":"https://elinore.net","course_url":"https://noemi.net"},{"course_title":"Rippin LLC","course_number":75567,"instructor":"Hunter Abshire","location":"907 Tremayne Creek","time":"2018-07-14T02:37:44.410Z","enrolled":98050,"book":"https://gabriel.org","course_url":"http://joannie.biz"},{"course_title":"O'Kon - Cummerata","course_number":90039,"instructor":"Ms. Doug DuBuque","location":"717 O'Connell Street","time":"2018-07-14T04:05:40.191Z","enrolled":8863,"book":"https://reymundo.com","course_url":"http://sam.name"},{"course_title":"Heaney Group","course_number":18613,"instructor":"Helena Breitenberg V","location":"287 Rogahn Heights","time":"2018-07-14T21:35:49.011Z","enrolled":49682,"book":"http://chanelle.com","course_url":"https://dillon.name"},{"course_title":"Wolf - Quigley","course_number":62038,"instructor":"Stan Johnson","location":"94067 Rosendo Gardens","time":"2018-07-14T20:04:10.563Z","enrolled":31354,"book":"http://may.org","course_url":"http://celia.name"},{"course_title":"Douglas, Feil and Conroy","course_number":92495,"instructor":"Ms. Santiago Dietrich","location":"4355 Sheldon Flat","time":"2018-07-14T20:21:06.519Z","enrolled":41277,"book":"https://kailee.net","course_url":"http://demetrius.net"},{"course_title":"Bernier - Hartmann","course_number":9504,"instructor":"Chyna Abernathy","location":"891 Hailie Plaza","time":"2018-07-14T13:32:57.556Z","enrolled":21774,"book":"http://greta.biz","course_url":"https://reginald.name"},{"course_title":"Brekke Group","course_number":97707,"instructor":"Mr. Deon Hoeger","location":"16000 Gislason Plaza","time":"2018-07-14T20:15:42.499Z","enrolled":94341,"book":"http://talon.com","course_url":"http://georgianna.com"},{"course_title":"Ratke Inc","course_number":48445,"instructor":"Montana Stroman","location":"25856 Kunde Rue","time":"2018-07-14T15:06:38.934Z","enrolled":39366,"book":"http://ardella.name","course_url":"https://hillary.org"},{"course_title":"Dibbert - Botsford","course_number":52695,"instructor":"Elijah White","location":"4833 Schaden Extensions","time":"2018-07-14T08:00:37.885Z","enrolled":43922,"book":"http://esmeralda.biz","course_url":"https://markus.name"},{"course_title":"Kling, O'Conner and Quitzon","course_number":61979,"instructor":"Dayna Breitenberg","location":"619 Macie Wells","time":"2018-07-14T21:18:18.308Z","enrolled":35739,"book":"https://pink.info","course_url":"https://renee.com"},{"course_title":"Stark and Sons","course_number":2890,"instructor":"Sam Mraz Jr.","location":"0750 Hermiston Vista","time":"2018-07-14T16:56:48.158Z","enrolled":34460,"book":"https://albert.net","course_url":"http://elmer.name"},{"course_title":"Reinger, Schulist and Barrows","course_number":85660,"instructor":"Brody Cummings","location":"825 Ernestina Point","time":"2018-07-14T09:21:26.489Z","enrolled":23005,"book":"http://austin.name","course_url":"http://maximillia.info"},{"course_title":"Welch - Hauck","course_number":6736,"instructor":"Dusty Okuneva","location":"92698 Bergstrom Camp","time":"2018-07-14T02:03:47.804Z","enrolled":41874,"book":"http://maryjane.info","course_url":"https://ahmed.com"},{"course_title":"Wiegand and Sons","course_number":34280,"instructor":"Aniya Considine DVM","location":"481 Liana Via","time":"2018-07-14T02:21:37.050Z","enrolled":38924,"book":"https://markus.org","course_url":"http://bridie.info"},{"course_title":"Schinner Inc","course_number":91864,"instructor":"Dr. Lysanne Stracke","location":"44815 Harris Valleys","time":"2018-07-14T08:33:47.456Z","enrolled":3258,"book":"https://herman.net","course_url":"https://ruthe.net"},{"course_title":"Boehm - Jacobson","course_number":16241,"instructor":"Betty Mayert","location":"892 Senger Harbors","time":"2018-07-14T08:12:10.239Z","enrolled":61006,"book":"http://georgianna.org","course_url":"http://garrett.biz"},{"course_title":"Quitzon Inc","course_number":66265,"instructor":"Clemmie Effertz","location":"695 Powlowski Mill","time":"2018-07-14T07:43:26.589Z","enrolled":12904,"book":"http://gavin.com","course_url":"https://fay.com"},{"course_title":"Quigley Inc","course_number":20675,"instructor":"Hiram Ondricka Jr.","location":"17720 Fritsch Dale","time":"2018-07-14T15:18:24.889Z","enrolled":81661,"book":"https://woodrow.name","course_url":"https://steve.name"},{"course_title":"Jacobi - Braun","course_number":46795,"instructor":"Marcus Nitzsche","location":"67832 Kuhn Path","time":"2018-07-14T14:57:59.837Z","enrolled":31991,"book":"http://coleman.com","course_url":"https://rowena.com"},{"course_title":"McClure - Ruecker","course_number":54888,"instructor":"Sam Toy","location":"2463 Keeling Walk","time":"2018-07-14T22:11:40.192Z","enrolled":90111,"book":"http://jessie.org","course_url":"http://guadalupe.name"},{"course_title":"Block, Heller and Flatley","course_number":64379,"instructor":"Germaine Corwin","location":"17147 Halvorson Forge","time":"2018-07-14T13:36:29.673Z","enrolled":3264,"book":"https://bulah.com","course_url":"https://arnoldo.org"},{"course_title":"Beahan, Cronin and Kihn","course_number":42701,"instructor":"Ms. Angelica Abshire","location":"642 Andreanne Pine","time":"2018-07-14T00:48:06.543Z","enrolled":31190,"book":"http://lonnie.biz","course_url":"http://ryann.com"},{"course_title":"Dooley - Heathcote","course_number":13771,"instructor":"Bernice Legros I","location":"03835 Myrna Underpass","time":"2018-07-14T18:51:13.935Z","enrolled":613,"book":"http://maia.info","course_url":"http://rene.biz"},{"course_title":"Frami, Boyer and Schoen","course_number":96449,"instructor":"Don Conroy","location":"629 Barton Parkway","time":"2018-07-14T06:07:49.360Z","enrolled":50088,"book":"https://dashawn.org","course_url":"http://hayley.biz"},{"course_title":"Zemlak - Hyatt","course_number":16471,"instructor":"Dr. Paxton Luettgen","location":"94716 Ashley Canyon","time":"2018-07-14T04:37:31.349Z","enrolled":93898,"book":"https://erin.org","course_url":"http://judson.info"},{"course_title":"Rowe Group","course_number":22190,"instructor":"Rosalind Murazik","location":"858 Madilyn Field","time":"2018-07-14T14:30:27.284Z","enrolled":14224,"book":"http://hester.biz","course_url":"http://sherwood.info"},{"course_title":"Stark and Sons","course_number":88873,"instructor":"Janessa Hane","location":"805 Genevieve Groves","time":"2018-07-14T19:23:27.145Z","enrolled":57959,"book":"http://otha.biz","course_url":"http://allison.biz"},{"course_title":"Koepp Group","course_number":64306,"instructor":"Nichole Ebert","location":"67838 Jan Gateway","time":"2018-07-13T23:50:51.426Z","enrolled":31481,"book":"http://ceasar.biz","course_url":"http://ben.biz"},{"course_title":"Hodkiewicz, Flatley and Sporer","course_number":66568,"instructor":"Sigurd Willms","location":"6884 Schaefer Passage","time":"2018-07-14T19:01:05.071Z","enrolled":34821,"book":"https://lily.com","course_url":"http://claudine.name"},{"course_title":"Beier LLC","course_number":16466,"instructor":"Madelyn Fadel","location":"77645 Lonzo Crest","time":"2018-07-14T08:11:01.098Z","enrolled":7408,"book":"https://mina.biz","course_url":"https://aron.net"},{"course_title":"Kuhn, Murazik and Terry","course_number":53986,"instructor":"Michele Kshlerin IV","location":"79074 Alvina Avenue","time":"2018-07-14T12:55:42.397Z","enrolled":76967,"book":"http://tierra.biz","course_url":"http://gwen.net"},{"course_title":"Cummerata LLC","course_number":86564,"instructor":"Travis Lebsack DDS","location":"1277 Judge Valleys","time":"2018-07-14T17:14:47.346Z","enrolled":74265,"book":"http://shayne.biz","course_url":"https://vernie.com"},{"course_title":"Torphy, Mueller and Jast","course_number":87529,"instructor":"Gabe Stracke I","location":"31814 Mckayla Hollow","time":"2018-07-14T02:19:31.577Z","enrolled":51546,"book":"https://nelson.biz","course_url":"http://jesse.name"},{"course_title":"Hermiston LLC","course_number":22245,"instructor":"Otto Reynolds","location":"718 Wolf Landing","time":"2018-07-14T03:05:09.530Z","enrolled":69554,"book":"https://peggie.org","course_url":"https://hanna.org"},{"course_title":"Erdman - Denesik","course_number":6120,"instructor":"Violet Turner","location":"844 Hallie Bridge","time":"2018-07-14T15:38:15.144Z","enrolled":66834,"book":"https://connie.org","course_url":"http://julien.info"},{"course_title":"Hessel Group","course_number":28117,"instructor":"Josianne Predovic","location":"36422 Halvorson Crest","time":"2018-07-14T12:52:40.535Z","enrolled":62474,"book":"https://marcelina.net","course_url":"https://quincy.info"},{"course_title":"Stoltenberg - Greenholt","course_number":72797,"instructor":"Filomena Lind","location":"3540 Hodkiewicz Views","time":"2018-07-14T07:03:09.227Z","enrolled":42446,"book":"http://arlo.com","course_url":"http://layla.com"},{"course_title":"Lowe - Gulgowski","course_number":94702,"instructor":"Hudson Strosin","location":"00373 Jennifer Ford","time":"2018-07-14T01:27:41.084Z","enrolled":41391,"book":"http://elnora.name","course_url":"https://jordyn.com"},{"course_title":"Hintz - Dare","course_number":3352,"instructor":"Darion Lubowitz","location":"01954 Adolfo Mission","time":"2018-07-14T20:46:19.636Z","enrolled":23540,"book":"http://elyse.org","course_url":"https://ethel.org"},{"course_title":"Dickens, Gleichner and Little","course_number":80308,"instructor":"Vince Predovic","location":"723 Dorthy Mills","time":"2018-07-14T22:05:03.714Z","enrolled":25243,"book":"https://shanel.org","course_url":"http://lexus.name"},{"course_title":"Kreiger - Feil","course_number":92753,"instructor":"Amani Hintz","location":"01919 Vita Course","time":"2018-07-14T12:49:40.500Z","enrolled":77033,"book":"https://marlee.biz","course_url":"http://nathanial.name"},{"course_title":"Oberbrunner Inc","course_number":54802,"instructor":"Justine Reilly","location":"63466 Aleen Ramp","time":"2018-07-14T01:58:02.191Z","enrolled":22340,"book":"http://mossie.biz","course_url":"http://cayla.com"},{"course_title":"Doyle Inc","course_number":79672,"instructor":"Eldred Lowe","location":"427 Zieme Estates","time":"2018-07-14T19:24:24.052Z","enrolled":38172,"book":"https://morris.com","course_url":"http://michael.name"},{"course_title":"Murphy, Boyle and Murray","course_number":17656,"instructor":"Turner Nader V","location":"091 Koss Extensions","time":"2018-07-14T15:05:21.525Z","enrolled":21086,"book":"https://cordell.name","course_url":"https://blanca.org"},{"course_title":"Collins and Sons","course_number":69867,"instructor":"Gabe Gerhold","location":"85063 Cole Spurs","time":"2018-07-14T03:59:44.036Z","enrolled":9442,"book":"https://bobbie.biz","course_url":"https://kyla.com"},{"course_title":"McDermott, Rogahn and MacGyver","course_number":27444,"instructor":"Holly D'Amore","location":"581 Vernice Circles","time":"2018-07-14T19:55:59.345Z","enrolled":31291,"book":"http://vladimir.org","course_url":"https://juvenal.name"},{"course_title":"Ortiz, Heller and Kuhic","course_number":38296,"instructor":"Marcos Bartell","location":"979 Wuckert Wells","time":"2018-07-14T19:12:07.615Z","enrolled":33019,"book":"http://hildegard.net","course_url":"http://aracely.name"},{"course_title":"Bosco Inc","course_number":8840,"instructor":"Aurelia Weber Jr.","location":"1747 Sallie Ford","time":"2018-07-14T07:51:04.818Z","enrolled":32398,"book":"http://damaris.com","course_url":"http://asa.org"},{"course_title":"Mayert Inc","course_number":14759,"instructor":"Myah Corwin","location":"668 Little Fords","time":"2018-07-14T21:20:39.206Z","enrolled":29392,"book":"http://alene.com","course_url":"http://jerrell.net"},{"course_title":"Hartmann - Hand","course_number":68160,"instructor":"Mr. Gay Bayer","location":"4660 Patrick Mission","time":"2018-07-14T20:16:11.169Z","enrolled":57337,"book":"https://kari.info","course_url":"http://arjun.biz"},{"course_title":"Luettgen Inc","course_number":51834,"instructor":"Miller Watsica III","location":"08161 Brain Trafficway","time":"2018-07-14T02:25:26.783Z","enrolled":68571,"book":"https://johathan.biz","course_url":"https://christiana.biz"},{"course_title":"Reinger, Barton and Vandervort","course_number":67655,"instructor":"Oliver Tillman","location":"816 Schoen Drives","time":"2018-07-14T07:17:06.506Z","enrolled":95597,"book":"http://tyrique.name","course_url":"http://mike.info"},{"course_title":"Rohan Group","course_number":51523,"instructor":"Clement Johnson","location":"7320 Yundt Circle","time":"2018-07-14T10:49:17.252Z","enrolled":33657,"book":"http://chanelle.name","course_url":"https://wanda.name"},{"course_title":"Smitham, Berge and Cartwright","course_number":78087,"instructor":"Michael Williamson","location":"603 Ernser Islands","time":"2018-07-14T19:40:04.576Z","enrolled":47917,"book":"https://paolo.info","course_url":"https://dewitt.info"},{"course_title":"Heaney - Gottlieb","course_number":8161,"instructor":"Tyrell Effertz","location":"78617 Bashirian Circles","time":"2018-07-14T20:01:04.205Z","enrolled":59877,"book":"https://jude.name","course_url":"https://chelsey.com"},{"course_title":"West Group","course_number":81362,"instructor":"Mrs. Darron Ankunding","location":"760 Wilbert Forges","time":"2018-07-14T17:20:29.288Z","enrolled":32724,"book":"http://ofelia.com","course_url":"http://ford.com"},{"course_title":"Kautzer - Stark","course_number":42024,"instructor":"Jamar Keeling","location":"490 Erdman Drives","time":"2018-07-14T03:09:28.581Z","enrolled":51815,"book":"http://gayle.info","course_url":"http://mariam.info"},{"course_title":"Krajcik - Stanton","course_number":19886,"instructor":"Kaden Kassulke","location":"90726 Elijah Village","time":"2018-07-14T16:06:37.462Z","enrolled":74089,"book":"http://wilson.com","course_url":"http://freida.org"},{"course_title":"Kunde - Ankunding","course_number":70799,"instructor":"Ashton Boehm","location":"81342 Jalon Path","time":"2018-07-14T03:03:03.265Z","enrolled":32387,"book":"https://korbin.com","course_url":"https://lucile.name"},{"course_title":"Brekke - Lang","course_number":28303,"instructor":"Dr. Shemar Runolfsdottir","location":"68103 Thalia Walk","time":"2018-07-14T08:39:34.691Z","enrolled":50883,"book":"http://okey.com","course_url":"http://kelly.org"},{"course_title":"Boyle - Price","course_number":80085,"instructor":"Ansley Hilpert","location":"5613 Garnett Mall","time":"2018-07-14T14:18:17.662Z","enrolled":35904,"book":"https://dillan.name","course_url":"https://breana.org"},{"course_title":"Gutkowski and Sons","course_number":84336,"instructor":"Domenick Kohler","location":"46983 Christa Fall","time":"2018-07-14T21:38:38.225Z","enrolled":77379,"book":"https://david.name","course_url":"http://emmet.name"},{"course_title":"Johnston - Crooks","course_number":13047,"instructor":"Vicenta Kshlerin","location":"8043 West Forge","time":"2018-07-14T05:34:45.159Z","enrolled":84370,"book":"http://eleonore.com","course_url":"http://guido.net"},{"course_title":"Cronin - Carroll","course_number":47136,"instructor":"Lindsay Tillman Jr.","location":"50591 Lyla Loop","time":"2018-07-14T02:21:13.374Z","enrolled":89124,"book":"https://linnie.net","course_url":"https://fatima.org"},{"course_title":"Block Inc","course_number":22644,"instructor":"Antwon Walker","location":"19760 Crooks Lakes","time":"2018-07-14T16:55:14.265Z","enrolled":67637,"book":"http://karlee.name","course_url":"https://benny.biz"},{"course_title":"Hamill - Hilll","course_number":96183,"instructor":"Jonathon Gutkowski IV","location":"221 Adams Station","time":"2018-07-14T19:07:24.617Z","enrolled":89978,"book":"http://marley.info","course_url":"http://liana.biz"},{"course_title":"Lind - Kozey","course_number":81811,"instructor":"Wendy Prosacco","location":"844 Aiyana Overpass","time":"2018-07-14T11:27:22.188Z","enrolled":39712,"book":"https://yazmin.info","course_url":"http://mertie.biz"},{"course_title":"Raynor, Bartell and Roob","course_number":2459,"instructor":"Kamron Fisher","location":"038 Demarcus Shore","time":"2018-07-14T01:28:10.137Z","enrolled":85714,"book":"https://vickie.biz","course_url":"http://trystan.biz"},{"course_title":"Trantow - Predovic","course_number":11094,"instructor":"Casper Torphy","location":"85945 Maverick Hills","time":"2018-07-14T07:42:51.986Z","enrolled":60021,"book":"http://nikolas.info","course_url":"https://jayda.biz"},{"course_title":"Hyatt - Roberts","course_number":27737,"instructor":"Miss Christiana Schuppe","location":"232 Skylar Place","time":"2018-07-14T08:41:41.163Z","enrolled":92917,"book":"https://mae.net","course_url":"https://landen.info"},{"course_title":"Eichmann, Upton and Ruecker","course_number":45686,"instructor":"Hermann Jacobs","location":"9126 Marcella Junctions","time":"2018-07-14T15:18:40.770Z","enrolled":50786,"book":"https://eloise.org","course_url":"http://drew.biz"},{"course_title":"Bayer Inc","course_number":79292,"instructor":"Norwood Mills","location":"70206 Derek Road","time":"2018-07-14T06:55:52.192Z","enrolled":10415,"book":"http://kenny.org","course_url":"https://domenico.name"},{"course_title":"Upton Group","course_number":851,"instructor":"Dr. Janae Funk","location":"07714 Schimmel Summit","time":"2018-07-14T09:38:03.416Z","enrolled":6516,"book":"http://nyah.org","course_url":"https://chris.com"},{"course_title":"Boehm - Bechtelar","course_number":57700,"instructor":"Rhett Barton III","location":"9932 Demarcus Plaza","time":"2018-07-14T13:19:24.396Z","enrolled":5780,"book":"http://jarrett.name","course_url":"http://gregorio.info"},{"course_title":"Friesen, O'Connell and Hilll","course_number":10150,"instructor":"Jerod Rippin","location":"50448 Carlo Road","time":"2018-07-13T23:45:24.300Z","enrolled":86052,"book":"http://lola.name","course_url":"https://pierce.net"},{"course_title":"Franecki Inc","course_number":54636,"instructor":"Tyreek Funk","location":"22396 Nicolas Views","time":"2018-07-14T06:41:43.212Z","enrolled":54941,"book":"http://alek.org","course_url":"https://tony.biz"},{"course_title":"Torp Group","course_number":99905,"instructor":"Gia Quitzon","location":"68630 Ericka Mount","time":"2018-07-14T22:06:04.741Z","enrolled":83673,"book":"http://steve.com","course_url":"http://maxie.org"},{"course_title":"Bahringer, Jerde and Gutmann","course_number":37960,"instructor":"Isabel Cummerata","location":"504 Jaquan Wells","time":"2018-07-14T21:57:03.096Z","enrolled":72650,"book":"http://leilani.net","course_url":"http://eloisa.name"},{"course_title":"Schroeder Group","course_number":6973,"instructor":"Lucio Okuneva","location":"839 Kuhic Manor","time":"2018-07-14T22:48:55.023Z","enrolled":53905,"book":"http://cassidy.com","course_url":"https://javon.com"},{"course_title":"O'Connell LLC","course_number":15393,"instructor":"Karolann Mayert","location":"4491 McGlynn Plains","time":"2018-07-14T01:11:04.728Z","enrolled":33269,"book":"http://vance.name","course_url":"https://erwin.net"},{"course_title":"Frami - Marks","course_number":53350,"instructor":"Amya Fadel","location":"79991 Kub Street","time":"2018-07-14T16:40:48.235Z","enrolled":95641,"book":"http://keeley.info","course_url":"http://breanna.net"},{"course_title":"O'Keefe - Paucek","course_number":39699,"instructor":"Juana Weimann","location":"8149 Klein Mountains","time":"2018-07-14T07:54:36.195Z","enrolled":39853,"book":"http://mallie.info","course_url":"http://patience.org"},{"course_title":"Schmitt - Nolan","course_number":1491,"instructor":"Davonte Kuhic","location":"503 Roob Summit","time":"2018-07-14T00:12:44.112Z","enrolled":23670,"book":"http://bell.info","course_url":"https://lavada.net"},{"course_title":"Morissette LLC","course_number":19578,"instructor":"Brionna Sipes","location":"3013 Bashirian Avenue","time":"2018-07-14T05:57:55.844Z","enrolled":80901,"book":"http://kylee.info","course_url":"https://rosetta.name"},{"course_title":"Huel, Langworth and Christiansen","course_number":48219,"instructor":"Marion Rohan","location":"4450 Shania Rapids","time":"2018-07-14T04:54:53.272Z","enrolled":51169,"book":"http://nikita.biz","course_url":"https://david.org"},{"course_title":"Lowe LLC","course_number":66668,"instructor":"Nathen Pfannerstill","location":"2784 Macejkovic Prairie","time":"2018-07-14T01:39:44.208Z","enrolled":87025,"book":"https://afton.com","course_url":"https://mckenzie.biz"},{"course_title":"Senger - Cruickshank","course_number":39551,"instructor":"Morgan Sanford","location":"83987 Green Camp","time":"2018-07-14T20:15:24.060Z","enrolled":26924,"book":"http://ezequiel.net","course_url":"https://adela.com"},{"course_title":"Mosciski, Fritsch and Quigley","course_number":41887,"instructor":"Chris Smitham","location":"20653 Rippin Flat","time":"2018-07-14T17:39:59.061Z","enrolled":1375,"book":"https://nathan.net","course_url":"http://hillary.info"},{"course_title":"Morar, Schowalter and Wilderman","course_number":92129,"instructor":"Dovie Altenwerth","location":"160 Brain Isle","time":"2018-07-14T16:30:31.106Z","enrolled":37713,"book":"https://brandon.net","course_url":"https://ellis.net"},{"course_title":"Rempel Inc","course_number":78034,"instructor":"Neal Veum","location":"926 Raymundo Falls","time":"2018-07-14T19:03:47.175Z","enrolled":14177,"book":"https://marcelo.info","course_url":"https://leonard.org"},{"course_title":"Reichert - O'Connell","course_number":12231,"instructor":"Javier Tillman","location":"8473 Jared Mount","time":"2018-07-14T22:23:54.993Z","enrolled":98090,"book":"http://bernardo.com","course_url":"http://jonatan.info"},{"course_title":"Rutherford - Parker","course_number":47722,"instructor":"Kara Glover","location":"1105 Osinski Manors","time":"2018-07-14T05:34:53.988Z","enrolled":91959,"book":"https://pietro.biz","course_url":"http://marilou.com"},{"course_title":"Weimann, Hauck and Kertzmann","course_number":63637,"instructor":"Ada Mosciski","location":"147 Hudson Ridge","time":"2018-07-14T11:38:34.056Z","enrolled":32180,"book":"https://cecile.info","course_url":"https://isabel.net"},{"course_title":"Carter Group","course_number":8594,"instructor":"Winston Collier III","location":"05689 Christiansen Hills","time":"2018-07-14T10:28:01.265Z","enrolled":57830,"book":"http://elinor.biz","course_url":"http://marlon.name"},{"course_title":"Schmidt Inc","course_number":98686,"instructor":"Eliseo Padberg DVM","location":"89604 Abernathy Wall","time":"2018-07-14T13:36:54.564Z","enrolled":54378,"book":"http://jaron.info","course_url":"http://cornelius.net"},{"course_title":"Kassulke LLC","course_number":26665,"instructor":"Mr. Germaine Watsica","location":"05198 Davis Mission","time":"2018-07-14T15:28:09.993Z","enrolled":93764,"book":"https://carlee.net","course_url":"https://lola.org"},{"course_title":"Herzog, Heaney and Skiles","course_number":66090,"instructor":"Lesley Christiansen DVM","location":"542 Sarina Rest","time":"2018-07-14T01:36:48.125Z","enrolled":88077,"book":"https://bill.info","course_url":"http://dorian.com"},{"course_title":"Morissette - Conroy","course_number":24049,"instructor":"Maximillian Marks","location":"02966 Batz Terrace","time":"2018-07-14T08:20:06.536Z","enrolled":8726,"book":"https://marge.info","course_url":"http://tyrique.name"},{"course_title":"Hyatt - Tremblay","course_number":82225,"instructor":"Ms. Johnnie Smitham","location":"13395 Bayer Springs","time":"2018-07-14T13:10:49.750Z","enrolled":28438,"book":"http://meggie.biz","course_url":"https://rosalee.biz"},{"course_title":"Reichel and Sons","course_number":77658,"instructor":"Ms. Fred McGlynn","location":"319 Schamberger Manor","time":"2018-07-14T19:27:38.349Z","enrolled":19762,"book":"https://fabian.com","course_url":"https://annie.biz"},{"course_title":"Kiehn - Bauch","course_number":33462,"instructor":"Antonio Runolfsdottir Sr.","location":"076 Doyle Ports","time":"2018-07-14T14:02:14.284Z","enrolled":94664,"book":"http://alvera.biz","course_url":"https://roselyn.com"},{"course_title":"Koepp, Emard and Vandervort","course_number":64392,"instructor":"Yessenia Harris PhD","location":"13426 Little Stravenue","time":"2018-07-14T04:01:01.547Z","enrolled":46211,"book":"http://maybelle.net","course_url":"https://london.net"},{"course_title":"Schmitt - Hickle","course_number":52953,"instructor":"Elmo Volkman","location":"35829 Rae Oval","time":"2018-07-14T16:36:44.096Z","enrolled":36070,"book":"https://sadie.info","course_url":"http://maverick.info"},{"course_title":"Johnson, Prohaska and Gibson","course_number":91658,"instructor":"Mina Rath","location":"9761 Sedrick Ford","time":"2018-07-14T13:12:33.958Z","enrolled":75455,"book":"http://okey.net","course_url":"https://christiana.com"},{"course_title":"Heller Group","course_number":4675,"instructor":"Halle Jast","location":"003 Hadley Drives","time":"2018-07-14T21:46:19.350Z","enrolled":75204,"book":"http://casimer.info","course_url":"http://kara.net"},{"course_title":"Rodriguez and Sons","course_number":81627,"instructor":"Mallie Bosco","location":"030 Quentin Passage","time":"2018-07-14T22:30:38.519Z","enrolled":34235,"book":"https://freeda.info","course_url":"https://shawna.com"},{"course_title":"Sauer - Will","course_number":65206,"instructor":"Talia Jaskolski","location":"71440 Jerrell Gardens","time":"2018-07-14T18:01:47.905Z","enrolled":52537,"book":"https://amari.net","course_url":"http://dusty.com"},{"course_title":"Kreiger - Denesik","course_number":52661,"instructor":"Talon Pouros","location":"24487 Toby Hill","time":"2018-07-14T16:21:29.208Z","enrolled":93853,"book":"http://pete.org","course_url":"https://yvonne.name"},{"course_title":"Daugherty, Buckridge and Farrell","course_number":39683,"instructor":"Dejah Yost II","location":"616 Helene Village","time":"2018-07-14T08:22:08.911Z","enrolled":64483,"book":"https://heath.name","course_url":"https://tiara.com"},{"course_title":"Wiza - Emmerich","course_number":78295,"instructor":"Arnoldo Schiller","location":"497 Denesik Cliff","time":"2018-07-14T20:04:28.394Z","enrolled":14794,"book":"http://rashawn.info","course_url":"http://rosamond.info"},{"course_title":"Collier, Senger and Murray","course_number":29775,"instructor":"Idell Kling","location":"48676 Jones Rapids","time":"2018-07-14T12:33:30.420Z","enrolled":84995,"book":"https://alize.biz","course_url":"http://myrtice.net"},{"course_title":"Hermiston - Koepp","course_number":12249,"instructor":"Trever Ebert","location":"9654 Susan Cove","time":"2018-07-14T17:31:55.870Z","enrolled":69208,"book":"http://rolando.net","course_url":"https://kameron.info"},{"course_title":"Eichmann, Swaniawski and Schultz","course_number":47326,"instructor":"Serena Runolfsdottir","location":"4790 Emery Vista","time":"2018-07-14T16:35:02.499Z","enrolled":604,"book":"http://abbigail.biz","course_url":"https://izaiah.biz"},{"course_title":"Schneider - Koelpin","course_number":33074,"instructor":"Rey Kautzer","location":"55219 Kling Views","time":"2018-07-14T01:03:23.986Z","enrolled":23327,"book":"http://franco.com","course_url":"http://lorenz.com"},{"course_title":"Corwin - Crooks","course_number":90433,"instructor":"Ursula Wunsch","location":"320 Buckridge Plains","time":"2018-07-14T09:37:05.127Z","enrolled":13542,"book":"https://scotty.biz","course_url":"https://manuela.org"},{"course_title":"Fadel Group","course_number":85813,"instructor":"Raphael Hessel","location":"6079 Ziemann Inlet","time":"2018-07-14T16:25:08.783Z","enrolled":20649,"book":"http://hadley.com","course_url":"https://gillian.name"},{"course_title":"Hartmann - Witting","course_number":78,"instructor":"Ron Wolf","location":"06281 Katrine Street","time":"2018-07-14T07:42:51.602Z","enrolled":14722,"book":"https://kristy.net","course_url":"https://magali.com"},{"course_title":"Abernathy - Homenick","course_number":69814,"instructor":"Kristin Hickle","location":"1491 Destin Estates","time":"2018-07-14T10:32:06.617Z","enrolled":15662,"book":"http://gilda.info","course_url":"https://kelvin.com"},{"course_title":"Veum - Hudson","course_number":57775,"instructor":"Adrienne Gerhold","location":"5979 Arvel Common","time":"2018-07-14T08:49:13.262Z","enrolled":64698,"book":"https://joyce.info","course_url":"https://aiyana.name"},{"course_title":"Orn Inc","course_number":14875,"instructor":"Kieran Ernser","location":"62996 Crist Club","time":"2018-07-14T14:06:05.322Z","enrolled":89725,"book":"http://rose.net","course_url":"https://oscar.org"},{"course_title":"Flatley - Ferry","course_number":88239,"instructor":"Gene Buckridge","location":"8753 Lauriane Keys","time":"2018-07-14T06:32:40.757Z","enrolled":66515,"book":"http://lazaro.biz","course_url":"https://blanche.name"},{"course_title":"Heathcote, Ullrich and Nicolas","course_number":92613,"instructor":"Kale Bartoletti","location":"190 Aron Center","time":"2018-07-14T20:43:21.342Z","enrolled":90364,"book":"http://abelardo.name","course_url":"https://zion.net"},{"course_title":"Bailey and Sons","course_number":90001,"instructor":"Gilberto Schmeler","location":"6132 Wilbert Landing","time":"2018-07-14T17:15:26.064Z","enrolled":406,"book":"https://annabelle.org","course_url":"http://adrienne.biz"},{"course_title":"Conn, Jerde and Feest","course_number":17685,"instructor":"Devin Fadel","location":"56796 Glover Groves","time":"2018-07-14T21:48:56.073Z","enrolled":44926,"book":"http://keshawn.com","course_url":"http://dixie.net"},{"course_title":"Heathcote, Stanton and Marks","course_number":16062,"instructor":"Chelsea Graham","location":"21872 Reichert Courts","time":"2018-07-14T07:45:06.624Z","enrolled":25014,"book":"http://hayley.net","course_url":"https://vicente.net"},{"course_title":"Rau - O'Connell","course_number":33648,"instructor":"Dustin Thompson","location":"4259 Patrick Orchard","time":"2018-07-14T09:42:21.592Z","enrolled":49920,"book":"https://wilhelmine.biz","course_url":"https://eliezer.org"},{"course_title":"Balistreri and Sons","course_number":52360,"instructor":"Newell Volkman","location":"90912 Hintz Crossing","time":"2018-07-14T05:30:27.154Z","enrolled":25817,"book":"http://mose.com","course_url":"https://hassie.name"},{"course_title":"Sporer and Sons","course_number":30642,"instructor":"Emely Bartell","location":"17301 Kovacek Spur","time":"2018-07-14T07:28:38.988Z","enrolled":34872,"book":"http://afton.info","course_url":"http://ole.net"},{"course_title":"Senger - Gorczany","course_number":49717,"instructor":"Ezra Dibbert","location":"2318 Mckenna Ford","time":"2018-07-14T05:42:31.989Z","enrolled":8079,"book":"https://garry.name","course_url":"https://royce.name"},{"course_title":"Koss, O'Reilly and Zieme","course_number":4470,"instructor":"Amie Greenholt DVM","location":"193 Friesen Knoll","time":"2018-07-14T20:37:45.740Z","enrolled":24842,"book":"https://tyra.org","course_url":"http://jerod.com"},{"course_title":"Kunde, Hessel and Pagac","course_number":93036,"instructor":"Valerie Osinski","location":"487 Heathcote Road","time":"2018-07-14T16:11:48.381Z","enrolled":55913,"book":"https://isidro.com","course_url":"http://eliseo.name"},{"course_title":"Keebler, McDermott and Johns","course_number":4719,"instructor":"Rudolph Wiza","location":"7386 Laurine Coves","time":"2018-07-14T00:30:56.853Z","enrolled":42637,"book":"http://mortimer.biz","course_url":"https://melyna.com"},{"course_title":"Torphy, Rowe and Lakin","course_number":48760,"instructor":"Crystal Hermann","location":"3652 Kiehn Views","time":"2018-07-14T18:51:14.982Z","enrolled":92040,"book":"https://estrella.name","course_url":"https://isai.org"},{"course_title":"Kohler Inc","course_number":10275,"instructor":"Einar Wehner","location":"4649 Feest Overpass","time":"2018-07-14T18:52:36.503Z","enrolled":70233,"book":"http://lazaro.name","course_url":"http://elvera.com"},{"course_title":"Gusikowski, Kunde and Feest","course_number":19072,"instructor":"Kathleen Pfannerstill","location":"7997 Herzog Lodge","time":"2018-07-14T11:31:45.046Z","enrolled":97688,"book":"https://joel.name","course_url":"https://gino.com"},{"course_title":"Muller - Franecki","course_number":74924,"instructor":"Margaret Blanda","location":"8412 Julian Station","time":"2018-07-13T23:55:05.860Z","enrolled":49742,"book":"http://stephen.org","course_url":"http://daron.org"},{"course_title":"Glover, Lang and Ledner","course_number":13829,"instructor":"Russ Gerlach","location":"07737 Bergstrom Common","time":"2018-07-14T04:55:03.187Z","enrolled":79900,"book":"http://bennie.name","course_url":"http://garfield.name"},{"course_title":"Schaden Inc","course_number":77123,"instructor":"Amani Ryan","location":"84551 Annabel Mews","time":"2018-07-14T17:08:32.091Z","enrolled":83618,"book":"http://lula.org","course_url":"https://travon.biz"},{"course_title":"Conn Inc","course_number":70309,"instructor":"Trudie Vandervort","location":"57713 Hickle Glen","time":"2018-07-14T07:13:15.976Z","enrolled":50087,"book":"http://alison.org","course_url":"https://amparo.info"},{"course_title":"Hessel, Lesch and Crist","course_number":33204,"instructor":"Orville Harber","location":"40165 Harvey Burgs","time":"2018-07-14T02:36:47.134Z","enrolled":16628,"book":"http://finn.info","course_url":"https://anita.org"},{"course_title":"Dietrich, Wiegand and Reichel","course_number":94831,"instructor":"Jaylen Nader","location":"618 Walsh Mount","time":"2018-07-14T11:27:21.655Z","enrolled":64885,"book":"http://lina.name","course_url":"http://justina.net"},{"course_title":"Simonis, Legros and Douglas","course_number":2188,"instructor":"Selina Rau","location":"739 Garland Greens","time":"2018-07-13T23:54:45.191Z","enrolled":74628,"book":"http://favian.biz","course_url":"https://unique.org"},{"course_title":"Kuhlman LLC","course_number":58089,"instructor":"Pierce Pagac","location":"31308 Albina Parkways","time":"2018-07-14T19:25:17.469Z","enrolled":90941,"book":"https://raymond.name","course_url":"http://lambert.biz"},{"course_title":"Harvey, Jacobi and Bechtelar","course_number":73713,"instructor":"Jessie Lowe","location":"4084 Goodwin Vista","time":"2018-07-14T22:57:33.774Z","enrolled":12067,"book":"https://priscilla.info","course_url":"https://pink.net"},{"course_title":"Krajcik and Sons","course_number":26238,"instructor":"Dr. Destiny Collier","location":"81287 Blanda Well","time":"2018-07-14T19:37:58.881Z","enrolled":65358,"book":"http://fleta.info","course_url":"https://laverne.org"},{"course_title":"Keebler and Sons","course_number":80868,"instructor":"Noble Harvey Sr.","location":"606 Ardith Throughway","time":"2018-07-14T22:28:30.676Z","enrolled":14660,"book":"http://barton.biz","course_url":"https://thea.name"},{"course_title":"Bode, Jast and Conn","course_number":84283,"instructor":"Madison Walsh","location":"618 Purdy Port","time":"2018-07-14T20:06:35.123Z","enrolled":57558,"book":"https://kraig.info","course_url":"http://furman.com"},{"course_title":"Johnston, Reinger and Grant","course_number":38658,"instructor":"Isabelle Collier","location":"452 Ritchie Cliffs","time":"2018-07-14T03:40:44.582Z","enrolled":3840,"book":"http://alphonso.org","course_url":"http://raegan.biz"},{"course_title":"Adams - Hyatt","course_number":50776,"instructor":"Jackson Hermann","location":"044 Estelle Isle","time":"2018-07-14T14:03:12.026Z","enrolled":88946,"book":"https://kelly.net","course_url":"http://finn.net"},{"course_title":"Pfeffer, O'Kon and Lakin","course_number":77685,"instructor":"Rene Heaney","location":"17915 Brown Road","time":"2018-07-14T00:07:53.503Z","enrolled":65513,"book":"http://stanford.info","course_url":"https://derick.biz"},{"course_title":"Turcotte Inc","course_number":43775,"instructor":"Yolanda Hirthe","location":"4815 Kautzer Lodge","time":"2018-07-14T00:05:05.401Z","enrolled":28268,"book":"https://tobin.name","course_url":"https://elinore.com"},{"course_title":"Carroll - Metz","course_number":34473,"instructor":"Malinda Christiansen","location":"748 Sarah Loaf","time":"2018-07-14T20:30:02.977Z","enrolled":3590,"book":"https://clarissa.biz","course_url":"http://jessie.info"},{"course_title":"Becker - Sipes","course_number":62340,"instructor":"Kasandra Botsford","location":"77752 Lindgren Stravenue","time":"2018-07-14T03:00:08.579Z","enrolled":65445,"book":"https://misty.com","course_url":"https://beth.com"},{"course_title":"Wintheiser, Corwin and Mohr","course_number":19970,"instructor":"Marlin Nitzsche","location":"95189 Gislason Junctions","time":"2018-07-14T15:49:10.947Z","enrolled":80410,"book":"https://samantha.com","course_url":"https://donnell.biz"},{"course_title":"Lynch, Wolff and Zemlak","course_number":4416,"instructor":"Orie Funk","location":"900 Grady Path","time":"2018-07-14T16:15:31.147Z","enrolled":50054,"book":"http://zoila.name","course_url":"http://nora.biz"},{"course_title":"Kemmer - Fadel","course_number":58713,"instructor":"Seamus Rowe","location":"90821 Emile Dam","time":"2018-07-14T09:56:22.048Z","enrolled":39387,"book":"http://devyn.name","course_url":"https://boyd.biz"},{"course_title":"Spinka and Sons","course_number":55722,"instructor":"Price Willms","location":"7175 Weber Junction","time":"2018-07-13T23:56:12.666Z","enrolled":68521,"book":"https://vernie.info","course_url":"https://haskell.info"},{"course_title":"Conn - Gerhold","course_number":93824,"instructor":"Odessa Hammes","location":"078 Gibson Tunnel","time":"2018-07-13T23:45:05.093Z","enrolled":23090,"book":"http://douglas.biz","course_url":"http://wyman.biz"},{"course_title":"Gusikowski - Medhurst","course_number":59823,"instructor":"Ethyl Blanda","location":"91190 Sarai Cove","time":"2018-07-14T10:18:40.396Z","enrolled":86109,"book":"http://gaetano.org","course_url":"http://arjun.net"},{"course_title":"Lebsack, Kling and Quigley","course_number":74659,"instructor":"Nina Hagenes","location":"5683 Vivien Curve","time":"2018-07-14T22:24:50.908Z","enrolled":66160,"book":"https://genevieve.org","course_url":"https://stacey.net"},{"course_title":"Okuneva Group","course_number":459,"instructor":"Stephany Donnelly Sr.","location":"86978 Mitchell View","time":"2018-07-14T11:40:05.857Z","enrolled":5216,"book":"https://berneice.info","course_url":"https://marianna.info"},{"course_title":"Stamm - Larkin","course_number":59432,"instructor":"Ms. Missouri Hermann","location":"798 Runte Falls","time":"2018-07-14T22:27:22.595Z","enrolled":76860,"book":"https://sammie.info","course_url":"http://regan.info"},{"course_title":"Harris - McKenzie","course_number":33429,"instructor":"Ewald Emmerich","location":"98282 Wava Valley","time":"2018-07-14T05:58:51.830Z","enrolled":35906,"book":"http://whitney.info","course_url":"https://marcel.biz"},{"course_title":"Lynch - Schmidt","course_number":87604,"instructor":"Foster Wisoky","location":"87586 Erdman Street","time":"2018-07-14T06:29:20.516Z","enrolled":16275,"book":"https://timmy.biz","course_url":"https://april.net"},{"course_title":"Kovacek Group","course_number":51915,"instructor":"Margarita Prohaska","location":"442 Kellen Views","time":"2018-07-14T03:29:27.943Z","enrolled":27692,"book":"https://clemmie.com","course_url":"http://brendan.info"},{"course_title":"Spinka - Bauch","course_number":56802,"instructor":"Jamarcus Lemke","location":"7766 Neha Common","time":"2018-07-14T06:45:28.191Z","enrolled":14277,"book":"http://deondre.com","course_url":"https://alfonzo.info"},{"course_title":"Schoen - Beer","course_number":50740,"instructor":"Narciso Krajcik","location":"29851 White Passage","time":"2018-07-14T20:21:37.919Z","enrolled":99143,"book":"https://lourdes.com","course_url":"http://anita.com"},{"course_title":"Rau - Lynch","course_number":7588,"instructor":"Helena Von","location":"99395 Monahan Mountains","time":"2018-07-14T23:08:12.457Z","enrolled":10200,"book":"http://estell.com","course_url":"https://leonardo.com"},{"course_title":"Dare Group","course_number":50020,"instructor":"Chris Quigley","location":"653 Marquardt Ford","time":"2018-07-14T06:13:58.935Z","enrolled":8207,"book":"https://gina.info","course_url":"https://tod.info"},{"course_title":"Gleichner, Goodwin and Mueller","course_number":73292,"instructor":"Izabella Senger","location":"016 Kara Way","time":"2018-07-14T20:36:21.833Z","enrolled":24446,"book":"http://jaiden.com","course_url":"http://mitchel.info"},{"course_title":"Koelpin - Bartoletti","course_number":21507,"instructor":"Lisa Fadel","location":"53848 Nicolas Overpass","time":"2018-07-14T09:51:02.441Z","enrolled":72808,"book":"https://roman.net","course_url":"https://shany.info"},{"course_title":"Schoen - Eichmann","course_number":96640,"instructor":"Gerda Wilkinson","location":"121 Wehner Pike","time":"2018-07-14T06:29:25.611Z","enrolled":4752,"book":"https://nyasia.com","course_url":"http://tanya.com"},{"course_title":"Little LLC","course_number":96792,"instructor":"Catharine Bednar","location":"194 Joan Spurs","time":"2018-07-14T20:28:29.485Z","enrolled":17158,"book":"http://blake.net","course_url":"https://tod.info"},{"course_title":"Waelchi - Collier","course_number":57395,"instructor":"Odell Yundt","location":"29696 Mckayla Unions","time":"2018-07-14T14:58:10.984Z","enrolled":46395,"book":"http://samson.biz","course_url":"https://stacey.biz"},{"course_title":"Wuckert LLC","course_number":10309,"instructor":"Abelardo Johnston","location":"92719 Predovic Square","time":"2018-07-14T11:17:53.030Z","enrolled":85001,"book":"https://bertrand.net","course_url":"https://dawson.info"},{"course_title":"Crona, Heller and Shields","course_number":28972,"instructor":"Shannon Hodkiewicz","location":"0385 Noah Club","time":"2018-07-14T07:37:33.467Z","enrolled":82401,"book":"https://lessie.com","course_url":"http://scottie.biz"},{"course_title":"Maggio, Kshlerin and Green","course_number":29827,"instructor":"Peggie Howell","location":"686 Ethan Mills","time":"2018-07-14T11:43:37.662Z","enrolled":97466,"book":"http://kaitlyn.com","course_url":"http://norberto.name"},{"course_title":"Bergstrom, McLaughlin and Russel","course_number":20328,"instructor":"Mrs. Consuelo VonRueden","location":"0117 Maurice Burg","time":"2018-07-14T08:24:15.681Z","enrolled":12617,"book":"http://talia.biz","course_url":"https://helga.biz"},{"course_title":"Howell - Hintz","course_number":96284,"instructor":"Cyril Stiedemann IV","location":"069 Emmerich Land","time":"2018-07-14T17:50:44.170Z","enrolled":46194,"book":"https://lamont.name","course_url":"http://chloe.org"},{"course_title":"Braun - Hintz","course_number":29494,"instructor":"Sherman Balistreri","location":"092 Boehm Spurs","time":"2018-07-14T16:58:18.947Z","enrolled":95596,"book":"https://etha.biz","course_url":"https://jamir.org"},{"course_title":"Wiza - Shields","course_number":11285,"instructor":"Lyric Armstrong","location":"4250 Nella Rest","time":"2018-07-14T13:00:59.040Z","enrolled":74232,"book":"http://jean.name","course_url":"https://roselyn.net"},{"course_title":"Morar, Ortiz and Fritsch","course_number":51807,"instructor":"Rosamond Walker V","location":"28369 Hackett Summit","time":"2018-07-14T22:54:12.117Z","enrolled":23275,"book":"https://brian.org","course_url":"http://nicholas.com"},{"course_title":"Gerhold Inc","course_number":40498,"instructor":"Marianna Mueller","location":"722 Carter Divide","time":"2018-07-14T00:58:39.256Z","enrolled":499,"book":"https://crystal.net","course_url":"http://vidal.org"},{"course_title":"Klocko Inc","course_number":34117,"instructor":"Effie McLaughlin","location":"15078 Bart Junction","time":"2018-07-14T16:53:12.217Z","enrolled":70716,"book":"http://shaniya.com","course_url":"http://berta.net"},{"course_title":"Watsica - Miller","course_number":82062,"instructor":"Shaun Metz","location":"26672 Gerhold Heights","time":"2018-07-14T19:52:15.916Z","enrolled":14705,"book":"http://audra.org","course_url":"https://elinor.org"},{"course_title":"Rohan, Mayer and Howell","course_number":16431,"instructor":"Enid Pollich","location":"5949 Chaya Ports","time":"2018-07-14T08:22:33.185Z","enrolled":83586,"book":"http://rosie.com","course_url":"https://ezekiel.org"},{"course_title":"Schimmel - Treutel","course_number":81219,"instructor":"Clark Nikolaus","location":"599 Muller Plains","time":"2018-07-14T13:55:25.357Z","enrolled":37271,"book":"http://sonny.com","course_url":"http://jermaine.com"},{"course_title":"Dooley, Sauer and Lebsack","course_number":1126,"instructor":"Mrs. Viva Bailey","location":"28991 Hildegard Parkway","time":"2018-07-13T23:54:55.053Z","enrolled":25048,"book":"http://eriberto.net","course_url":"https://sydni.org"},{"course_title":"Keebler - Schmidt","course_number":60601,"instructor":"Hattie Dach MD","location":"463 Tabitha Divide","time":"2018-07-14T16:15:48.640Z","enrolled":8038,"book":"https://cali.name","course_url":"https://valerie.net"},{"course_title":"Marks, Mraz and Lang","course_number":60987,"instructor":"Aryanna Muller","location":"34004 Ruecker Village","time":"2018-07-14T02:53:11.898Z","enrolled":25753,"book":"https://alda.net","course_url":"http://florida.biz"},{"course_title":"Price - Ledner","course_number":23154,"instructor":"Cruz Hermann DVM","location":"763 Connelly Lights","time":"2018-07-14T18:32:14.277Z","enrolled":1575,"book":"http://lane.com","course_url":"https://sterling.name"},{"course_title":"Wolff - Grady","course_number":49703,"instructor":"Daron MacGyver","location":"1218 Gislason Hollow","time":"2018-07-14T05:25:59.126Z","enrolled":88938,"book":"https://corene.biz","course_url":"https://nelle.biz"},{"course_title":"Buckridge, Boehm and Herzog","course_number":25269,"instructor":"Tabitha Koss","location":"054 Ebert Prairie","time":"2018-07-14T05:46:07.591Z","enrolled":93087,"book":"http://stanley.com","course_url":"http://bobbie.net"},{"course_title":"Lind Group","course_number":24117,"instructor":"Abel Gibson","location":"63927 Donnell Key","time":"2018-07-14T20:11:07.690Z","enrolled":25408,"book":"http://margaret.name","course_url":"http://phyllis.info"},{"course_title":"Hilll - Langworth","course_number":88221,"instructor":"Jack Feest","location":"40158 June Throughway","time":"2018-07-14T05:37:30.351Z","enrolled":38489,"book":"http://marshall.name","course_url":"http://cory.biz"},{"course_title":"Turcotte and Sons","course_number":56537,"instructor":"Nora Nolan","location":"645 Dangelo Lock","time":"2018-07-13T23:52:05.757Z","enrolled":64427,"book":"http://callie.net","course_url":"https://melisa.com"},{"course_title":"Abbott Inc","course_number":13203,"instructor":"Delbert Dicki","location":"4442 Gerhold Trace","time":"2018-07-14T22:59:30.138Z","enrolled":71790,"book":"https://micheal.org","course_url":"http://chris.net"},{"course_title":"Stoltenberg, Konopelski and Gislason","course_number":42522,"instructor":"Cleta Homenick","location":"541 VonRueden Lodge","time":"2018-07-14T02:44:25.366Z","enrolled":72583,"book":"https://kathryne.net","course_url":"http://walker.info"},{"course_title":"Howell and Sons","course_number":59000,"instructor":"Billy Homenick","location":"11714 Hirthe Fork","time":"2018-07-14T21:14:15.404Z","enrolled":40547,"book":"https://kris.biz","course_url":"http://elisha.com"},{"course_title":"Jenkins - Schneider","course_number":8415,"instructor":"Louvenia Gorczany","location":"29836 Imelda Dam","time":"2018-07-14T19:43:28.544Z","enrolled":62596,"book":"https://nella.com","course_url":"http://jo.info"},{"course_title":"Monahan - McCullough","course_number":55307,"instructor":"Lauren Goyette","location":"48008 Torp Estate","time":"2018-07-14T09:21:20.247Z","enrolled":27667,"book":"http://eduardo.net","course_url":"http://bradford.info"},{"course_title":"Ritchie, Yundt and Rolfson","course_number":13665,"instructor":"Nakia Treutel","location":"602 Stroman Inlet","time":"2018-07-14T13:43:01.611Z","enrolled":5033,"book":"https://abner.info","course_url":"http://callie.name"},{"course_title":"Schultz - Sawayn","course_number":70059,"instructor":"Ola Labadie V","location":"1133 Gusikowski Loaf","time":"2018-07-14T06:47:50.103Z","enrolled":17459,"book":"https://cristobal.info","course_url":"https://ima.info"},{"course_title":"Strosin Group","course_number":37897,"instructor":"Carmella Jacobson DDS","location":"5133 Cara Summit","time":"2018-07-14T17:54:55.498Z","enrolled":19000,"book":"https://tomasa.org","course_url":"https://trinity.biz"},{"course_title":"Upton, Zboncak and Hammes","course_number":79059,"instructor":"Jordyn Haag","location":"15502 Ibrahim Trace","time":"2018-07-14T01:03:37.632Z","enrolled":98468,"book":"http://amelie.name","course_url":"http://alva.org"},{"course_title":"Boyle, Jacobs and Marvin","course_number":78810,"instructor":"Moises Howe","location":"961 DuBuque Bridge","time":"2018-07-14T16:03:46.444Z","enrolled":81534,"book":"http://jaunita.info","course_url":"https://braeden.name"},{"course_title":"Johnson - Hudson","course_number":65568,"instructor":"Mrs. Jasper Vandervort","location":"7718 Christiansen Brook","time":"2018-07-14T07:46:08.484Z","enrolled":33533,"book":"http://shawna.name","course_url":"https://wanda.net"},{"course_title":"Nicolas, Kris and Pacocha","course_number":63882,"instructor":"Clotilde Von","location":"21117 Cronin Oval","time":"2018-07-14T17:54:01.746Z","enrolled":61702,"book":"https://alva.org","course_url":"http://scottie.name"},{"course_title":"Mertz - Jacobs","course_number":93037,"instructor":"Desiree Reilly","location":"7996 Waters Lodge","time":"2018-07-14T03:46:59.993Z","enrolled":38971,"book":"http://lamont.biz","course_url":"http://abel.biz"},{"course_title":"Medhurst, Schumm and Runolfsdottir","course_number":32068,"instructor":"Ms. Mortimer Harber","location":"128 Lehner Trail","time":"2018-07-14T20:56:59.094Z","enrolled":28675,"book":"https://agnes.net","course_url":"https://doris.org"},{"course_title":"Sanford - Bradtke","course_number":73804,"instructor":"Terrance Balistreri","location":"5214 Stanton Highway","time":"2018-07-14T13:16:32.916Z","enrolled":10537,"book":"https://bella.biz","course_url":"https://coy.net"},{"course_title":"Kohler - Zulauf","course_number":69501,"instructor":"Leanne Wyman","location":"126 Gislason Spurs","time":"2018-07-14T14:00:36.428Z","enrolled":66241,"book":"https://elinor.name","course_url":"https://mozell.net"},{"course_title":"Denesik, Rutherford and Windler","course_number":47266,"instructor":"Sammy Wilderman","location":"767 Dillan Junction","time":"2018-07-14T08:47:10.613Z","enrolled":47234,"book":"http://onie.biz","course_url":"http://tobin.net"},{"course_title":"Reichert, Lehner and Wuckert","course_number":54494,"instructor":"Shayne Weimann","location":"15677 Schuster Mount","time":"2018-07-14T16:33:56.035Z","enrolled":39137,"book":"https://cassandra.net","course_url":"https://lenora.com"},{"course_title":"Hegmann LLC","course_number":95893,"instructor":"Sean Mante","location":"8597 Huels Spurs","time":"2018-07-14T19:13:27.869Z","enrolled":11092,"book":"http://noelia.biz","course_url":"https://lea.net"},{"course_title":"Cummings - Mohr","course_number":85499,"instructor":"Kallie Murphy","location":"959 Johns Drives","time":"2018-07-14T14:26:45.259Z","enrolled":19083,"book":"https://devin.info","course_url":"http://kenyon.info"},{"course_title":"Breitenberg and Sons","course_number":43604,"instructor":"London Kub","location":"09875 Emmy Common","time":"2018-07-14T22:05:29.198Z","enrolled":49618,"book":"https://preston.name","course_url":"http://madonna.name"},{"course_title":"Will and Sons","course_number":71276,"instructor":"Golden Lesch","location":"585 Idell Islands","time":"2018-07-14T09:52:26.490Z","enrolled":24518,"book":"http://ernestine.biz","course_url":"https://nola.net"},{"course_title":"Lesch Inc","course_number":21759,"instructor":"Lowell Berge","location":"13249 Dickinson Prairie","time":"2018-07-14T07:53:03.105Z","enrolled":52737,"book":"http://adelbert.com","course_url":"https://dejuan.biz"},{"course_title":"Schumm, Lockman and Williamson","course_number":10728,"instructor":"Jarrett Conroy","location":"4292 Odessa Courts","time":"2018-07-14T17:23:02.446Z","enrolled":17204,"book":"https://mohammed.net","course_url":"http://garrison.biz"},{"course_title":"Ondricka, Graham and Reilly","course_number":45222,"instructor":"Thea Hills","location":"25735 Lakin Cape","time":"2018-07-14T02:58:16.210Z","enrolled":31508,"book":"http://joannie.net","course_url":"http://julie.info"},{"course_title":"Ratke LLC","course_number":57238,"instructor":"Angelo Smith","location":"484 Marcelle Dale","time":"2018-07-14T02:45:31.402Z","enrolled":28997,"book":"https://jack.info","course_url":"https://agustina.name"},{"course_title":"Hamill, Koss and Bartoletti","course_number":99622,"instructor":"Ms. Orlo Renner","location":"0061 Roob Shore","time":"2018-07-14T10:03:01.573Z","enrolled":62255,"book":"http://kenny.com","course_url":"http://leone.net"},{"course_title":"Kilback, Pouros and Schamberger","course_number":68475,"instructor":"Dr. Madison Tromp","location":"13971 Heidenreich Loop","time":"2018-07-14T22:17:17.378Z","enrolled":45434,"book":"https://rubie.info","course_url":"https://darrick.org"},{"course_title":"Moen Inc","course_number":40199,"instructor":"Camilla Jast","location":"73606 Laurel Streets","time":"2018-07-14T15:39:11.579Z","enrolled":56017,"book":"https://terence.org","course_url":"https://ada.info"},{"course_title":"Klein - Cormier","course_number":28979,"instructor":"Catharine Goodwin","location":"317 Rosamond Fork","time":"2018-07-14T12:45:12.101Z","enrolled":28016,"book":"http://annie.net","course_url":"http://domenico.info"},{"course_title":"Kuhlman, Ward and Borer","course_number":84231,"instructor":"Giovani Swaniawski IV","location":"068 Dell Burgs","time":"2018-07-14T13:56:00.000Z","enrolled":68529,"book":"https://zola.name","course_url":"https://marcos.name"},{"course_title":"Bauch - Bogisich","course_number":46544,"instructor":"Stephany Schaden","location":"868 Petra Center","time":"2018-07-13T23:51:58.501Z","enrolled":71320,"book":"http://elian.net","course_url":"http://columbus.org"},{"course_title":"Emard and Sons","course_number":83974,"instructor":"Adelia Lang","location":"7697 Doyle Circle","time":"2018-07-14T09:03:56.561Z","enrolled":21664,"book":"http://cleora.name","course_url":"https://ambrose.name"},{"course_title":"Kihn Group","course_number":60300,"instructor":"Hadley MacGyver","location":"58175 Donnell Landing","time":"2018-07-13T23:34:19.968Z","enrolled":65490,"book":"https://vida.net","course_url":"http://damion.info"},{"course_title":"Jakubowski, Rowe and Greenholt","course_number":18314,"instructor":"Sheldon Block","location":"9548 Swaniawski Turnpike","time":"2018-07-14T11:57:54.566Z","enrolled":18918,"book":"http://dusty.com","course_url":"http://deshaun.com"},{"course_title":"Auer Inc","course_number":39225,"instructor":"Elda Walker","location":"518 Norma Curve","time":"2018-07-14T14:45:00.213Z","enrolled":41393,"book":"http://ethelyn.com","course_url":"https://wanda.biz"},{"course_title":"Hand, Lowe and Schneider","course_number":87207,"instructor":"Fred O'Conner","location":"3039 Boyer Port","time":"2018-07-14T21:24:36.196Z","enrolled":53884,"book":"http://brisa.info","course_url":"https://vladimir.org"},{"course_title":"Bruen, Boyle and Nader","course_number":73187,"instructor":"Roscoe Walter","location":"9157 Benjamin Mill","time":"2018-07-14T12:17:01.214Z","enrolled":76305,"book":"http://arvilla.com","course_url":"https://toby.name"},{"course_title":"Brown, Kunze and Considine","course_number":33077,"instructor":"Marilou Breitenberg","location":"5952 Crooks Ports","time":"2018-07-13T23:47:45.831Z","enrolled":21658,"book":"https://karianne.name","course_url":"http://gianni.com"},{"course_title":"Ratke Inc","course_number":39979,"instructor":"Lillie McCullough","location":"855 Jessy Course","time":"2018-07-14T08:07:30.893Z","enrolled":89826,"book":"https://jammie.biz","course_url":"https://garth.info"},{"course_title":"Bartell - Lowe","course_number":33741,"instructor":"Aditya Upton","location":"935 Tate Meadows","time":"2018-07-14T10:46:45.778Z","enrolled":13959,"book":"https://kiel.name","course_url":"https://earlene.com"},{"course_title":"Schowalter and Sons","course_number":81159,"instructor":"Andy Kunze","location":"806 Wehner Glen","time":"2018-07-14T15:58:19.832Z","enrolled":79650,"book":"https://diamond.name","course_url":"http://liana.info"},{"course_title":"Ryan - Stiedemann","course_number":7503,"instructor":"Nicola Bernhard","location":"47494 Johnson Pine","time":"2018-07-14T12:01:39.735Z","enrolled":56973,"book":"http://grover.net","course_url":"https://lynn.info"},{"course_title":"Bogan Inc","course_number":19891,"instructor":"Terrence Price","location":"769 Camila Corner","time":"2018-07-14T01:56:56.787Z","enrolled":32319,"book":"http://makayla.net","course_url":"https://ronaldo.name"},{"course_title":"Nikolaus, Boyle and Weimann","course_number":47241,"instructor":"Torey Kirlin","location":"47566 Rhoda Well","time":"2018-07-14T19:36:33.235Z","enrolled":77149,"book":"https://vinnie.org","course_url":"http://nia.name"},{"course_title":"Kuvalis, Hegmann and Bergstrom","course_number":65306,"instructor":"Mitchell Satterfield","location":"04745 Simone Courts","time":"2018-07-14T14:08:19.231Z","enrolled":82292,"book":"https://sophie.info","course_url":"https://garret.com"},{"course_title":"Herman, Rogahn and Sanford","course_number":38059,"instructor":"Ms. Maximillian Krajcik","location":"556 Windler Ferry","time":"2018-07-14T09:29:30.724Z","enrolled":65686,"book":"http://maximilian.com","course_url":"http://zackery.net"},{"course_title":"Stoltenberg, Mills and Becker","course_number":1882,"instructor":"Arely Jacobs","location":"744 Demetris Islands","time":"2018-07-14T07:38:45.774Z","enrolled":17850,"book":"http://rosemary.name","course_url":"http://brennan.net"},{"course_title":"Bauch - Weissnat","course_number":36377,"instructor":"Mr. Allan Bailey","location":"166 Maggio Hill","time":"2018-07-14T02:00:10.173Z","enrolled":2007,"book":"https://juliet.org","course_url":"http://rhiannon.biz"},{"course_title":"Feil - Borer","course_number":48368,"instructor":"Terrill Stracke","location":"1777 Dedric Expressway","time":"2018-07-14T12:36:44.474Z","enrolled":34615,"book":"http://chase.name","course_url":"https://winifred.biz"},{"course_title":"Schultz LLC","course_number":84823,"instructor":"Jewell O'Hara","location":"1574 Roob Curve","time":"2018-07-13T23:29:07.301Z","enrolled":80226,"book":"http://lauretta.info","course_url":"http://hershel.name"},{"course_title":"Watsica, Conn and Rutherford","course_number":27550,"instructor":"Angelo Bergnaum","location":"641 Ruecker Gardens","time":"2018-07-14T21:54:13.253Z","enrolled":85863,"book":"https://corine.name","course_url":"http://gage.biz"},{"course_title":"King - Rowe","course_number":22509,"instructor":"Dr. Annalise Grimes","location":"8307 Ferry Station","time":"2018-07-13T23:14:43.854Z","enrolled":58753,"book":"http://helene.org","course_url":"https://roman.info"},{"course_title":"Hagenes, Kovacek and Reichel","course_number":17205,"instructor":"Pat Jerde","location":"71120 Kristopher Path","time":"2018-07-14T20:32:13.090Z","enrolled":21319,"book":"http://nat.org","course_url":"https://abdul.org"},{"course_title":"O'Connell, Smith and Lueilwitz","course_number":96036,"instructor":"Elroy Pagac","location":"769 Easter Forges","time":"2018-07-14T05:17:52.095Z","enrolled":52322,"book":"https://corbin.name","course_url":"https://jermaine.com"},{"course_title":"Greenfelder LLC","course_number":35886,"instructor":"Shanon Balistreri","location":"585 Nicole Squares","time":"2018-07-14T19:07:11.830Z","enrolled":44420,"book":"https://cory.biz","course_url":"http://chandler.info"},{"course_title":"Nicolas Group","course_number":67538,"instructor":"Reymundo Schmitt","location":"6555 Johnson Parks","time":"2018-07-14T13:32:47.446Z","enrolled":16703,"book":"http://christine.name","course_url":"https://cameron.net"},{"course_title":"Aufderhar - Labadie","course_number":46812,"instructor":"Jacinto Paucek","location":"353 Greenholt Plaza","time":"2018-07-13T23:20:25.710Z","enrolled":555,"book":"http://norbert.biz","course_url":"https://kathlyn.biz"},{"course_title":"Ankunding, Renner and Dare","course_number":26688,"instructor":"Natalie Considine","location":"3684 Myrtle Points","time":"2018-07-14T18:25:13.973Z","enrolled":5307,"book":"https://eleazar.com","course_url":"https://roslyn.com"},{"course_title":"Dibbert - Halvorson","course_number":89949,"instructor":"Fermin Legros","location":"71668 Kessler Branch","time":"2018-07-14T03:01:23.535Z","enrolled":75172,"book":"http://layne.info","course_url":"http://yesenia.com"},{"course_title":"Schneider and Sons","course_number":98389,"instructor":"Destiny Larkin","location":"8272 Jenifer Plains","time":"2018-07-14T21:49:19.404Z","enrolled":33281,"book":"http://jason.info","course_url":"https://leta.name"},{"course_title":"McCullough Group","course_number":9315,"instructor":"Rae Parisian","location":"9978 Koby Turnpike","time":"2018-07-14T11:02:45.044Z","enrolled":33725,"book":"https://alan.biz","course_url":"http://mittie.net"},{"course_title":"Marks and Sons","course_number":90482,"instructor":"Mauricio Zieme","location":"30135 Hilma Terrace","time":"2018-07-14T18:50:57.980Z","enrolled":41943,"book":"https://weldon.biz","course_url":"https://florence.name"},{"course_title":"Boehm - Effertz","course_number":53442,"instructor":"Rylee Treutel","location":"32207 Gottlieb Stream","time":"2018-07-14T22:00:48.100Z","enrolled":33734,"book":"https://nicolas.info","course_url":"https://lempi.biz"},{"course_title":"Bartoletti LLC","course_number":64605,"instructor":"Dolores Gleason","location":"28916 Cormier Views","time":"2018-07-14T19:17:57.413Z","enrolled":71762,"book":"http://vicente.biz","course_url":"https://johan.name"},{"course_title":"Morar - McDermott","course_number":93334,"instructor":"Lowell Cassin","location":"328 Dicki Land","time":"2018-07-14T18:46:47.004Z","enrolled":91384,"book":"https://carole.net","course_url":"https://isaac.biz"},{"course_title":"Rath Group","course_number":80886,"instructor":"Mercedes Schimmel","location":"3554 Jessica Springs","time":"2018-07-14T09:31:15.388Z","enrolled":99194,"book":"http://thad.net","course_url":"https://freda.net"},{"course_title":"Bayer Group","course_number":18802,"instructor":"Emmett Littel","location":"581 Wellington Locks","time":"2018-07-14T21:35:31.666Z","enrolled":1410,"book":"https://blanche.org","course_url":"https://andrew.org"},{"course_title":"Donnelly, Trantow and Waters","course_number":24158,"instructor":"Kenna Turner","location":"56523 Jasen Springs","time":"2018-07-14T16:44:02.280Z","enrolled":89191,"book":"https://amya.org","course_url":"http://leda.info"},{"course_title":"O'Kon - Murray","course_number":73909,"instructor":"Miss Violet Funk","location":"3518 Grady Estate","time":"2018-07-14T00:11:38.367Z","enrolled":48097,"book":"https://xavier.net","course_url":"http://genoveva.info"},{"course_title":"Legros - Beahan","course_number":57508,"instructor":"Adelia Rosenbaum","location":"4396 Kaley Fork","time":"2018-07-14T21:54:08.313Z","enrolled":1837,"book":"https://marjolaine.com","course_url":"https://federico.info"},{"course_title":"Witting Inc","course_number":12265,"instructor":"Ahmed Reilly","location":"4259 Borer Roads","time":"2018-07-14T07:29:42.239Z","enrolled":35162,"book":"https://alaina.net","course_url":"https://nakia.name"},{"course_title":"Kulas, Reynolds and Jacobi","course_number":15540,"instructor":"Coby Donnelly","location":"54556 Eichmann Expressway","time":"2018-07-14T04:19:16.474Z","enrolled":69903,"book":"http://roel.org","course_url":"http://deangelo.com"},{"course_title":"Powlowski - Kunze","course_number":38819,"instructor":"Mariano Quitzon","location":"695 Devante Road","time":"2018-07-14T14:29:27.539Z","enrolled":77413,"book":"https://aaliyah.info","course_url":"http://jamaal.org"},{"course_title":"Heidenreich Group","course_number":84866,"instructor":"Frieda Crooks","location":"99084 Kreiger Lights","time":"2018-07-14T13:26:18.845Z","enrolled":94053,"book":"http://eusebio.org","course_url":"https://cedrick.info"},{"course_title":"Jones, Lang and Weber","course_number":4808,"instructor":"Claud Schultz III","location":"058 Prosacco Hollow","time":"2018-07-14T01:23:40.873Z","enrolled":58774,"book":"http://meggie.name","course_url":"http://tatyana.biz"},{"course_title":"Keebler, Barrows and Crona","course_number":97580,"instructor":"Linwood Emard V","location":"432 Sanford Mountains","time":"2018-07-14T17:32:06.603Z","enrolled":1757,"book":"https://devyn.info","course_url":"https://zoie.net"},{"course_title":"Macejkovic - Fahey","course_number":77143,"instructor":"Hettie Veum","location":"37607 Tanner Route","time":"2018-07-14T02:47:26.694Z","enrolled":86454,"book":"http://kacie.info","course_url":"https://leanna.net"},{"course_title":"Kilback - Carroll","course_number":71811,"instructor":"Madaline Carter III","location":"40444 Gudrun Well","time":"2018-07-14T09:28:46.025Z","enrolled":38292,"book":"https://marina.info","course_url":"http://virginia.org"},{"course_title":"Krajcik Group","course_number":3612,"instructor":"Delpha Kuhlman","location":"178 Kariane Wall","time":"2018-07-14T04:52:52.932Z","enrolled":14901,"book":"https://gudrun.info","course_url":"http://nadia.net"},{"course_title":"Bayer, Schoen and Ondricka","course_number":92263,"instructor":"Naomi Hermann","location":"9863 Tina Garden","time":"2018-07-14T13:43:30.158Z","enrolled":10407,"book":"http://forrest.net","course_url":"http://birdie.info"},{"course_title":"Schuster and Sons","course_number":15829,"instructor":"Olen Douglas","location":"8040 Torp Divide","time":"2018-07-14T21:19:24.513Z","enrolled":5979,"book":"https://greyson.org","course_url":"https://winnifred.net"},{"course_title":"Bahringer LLC","course_number":85175,"instructor":"Crawford Lind","location":"8182 Jacobs Valley","time":"2018-07-14T10:15:48.190Z","enrolled":4076,"book":"http://dennis.name","course_url":"https://easter.biz"},{"course_title":"Hauck - DuBuque","course_number":33964,"instructor":"Rico Dickinson","location":"065 Jacobs Junctions","time":"2018-07-14T18:00:19.630Z","enrolled":21782,"book":"https://kelly.name","course_url":"http://rosario.net"},{"course_title":"Barrows - Herzog","course_number":37089,"instructor":"Rosina Swift","location":"59601 Gleason Inlet","time":"2018-07-14T05:53:07.985Z","enrolled":83240,"book":"http://sim.org","course_url":"http://eldridge.info"},{"course_title":"O'Hara, Collier and Schowalter","course_number":51548,"instructor":"Alfredo Nienow","location":"9043 Walter Prairie","time":"2018-07-14T10:44:35.151Z","enrolled":83870,"book":"http://lucas.name","course_url":"https://addie.name"},{"course_title":"Bechtelar, Williamson and Hand","course_number":34622,"instructor":"Ebony Labadie","location":"3427 Kozey Lights","time":"2018-07-14T09:20:08.612Z","enrolled":36277,"book":"http://kiarra.com","course_url":"https://norval.org"},{"course_title":"Gleason Inc","course_number":88071,"instructor":"Shanel Cremin","location":"824 Davis Spur","time":"2018-07-14T02:02:28.435Z","enrolled":86802,"book":"https://izabella.info","course_url":"https://barney.info"},{"course_title":"Crooks - Wolf","course_number":46069,"instructor":"Einar West","location":"64020 Wilkinson Roads","time":"2018-07-14T22:54:37.096Z","enrolled":71012,"book":"http://nick.biz","course_url":"https://leta.com"},{"course_title":"Haley Group","course_number":55119,"instructor":"Lyric Mante","location":"8386 Kaci Parkways","time":"2018-07-14T20:17:35.037Z","enrolled":18042,"book":"https://dolly.info","course_url":"http://arielle.info"},{"course_title":"Jaskolski, Turner and Dare","course_number":78383,"instructor":"Helen Hagenes","location":"417 Ebba Cliff","time":"2018-07-14T11:03:05.534Z","enrolled":53366,"book":"http://carole.net","course_url":"http://carolina.name"},{"course_title":"Bins and Sons","course_number":71159,"instructor":"Dr. Robert Leffler","location":"08335 Miller Ways","time":"2018-07-14T15:49:54.550Z","enrolled":20300,"book":"https://esther.net","course_url":"http://zola.org"},{"course_title":"Cartwright, Witting and Bahringer","course_number":60389,"instructor":"Clemmie Brakus","location":"635 Warren Gardens","time":"2018-07-13T23:27:23.884Z","enrolled":43290,"book":"https://alverta.biz","course_url":"http://bette.biz"},{"course_title":"Little Group","course_number":14238,"instructor":"Phyllis Bashirian","location":"587 Eunice Throughway","time":"2018-07-14T10:29:33.360Z","enrolled":69849,"book":"http://claudine.info","course_url":"http://stone.net"},{"course_title":"Mertz, Mann and Kreiger","course_number":58026,"instructor":"Hailie Brakus","location":"7343 Sanford Plains","time":"2018-07-14T13:17:18.397Z","enrolled":54030,"book":"https://hubert.biz","course_url":"http://roberto.biz"},{"course_title":"Friesen, Corwin and Nicolas","course_number":21899,"instructor":"Dr. Haylie Doyle","location":"761 Volkman Stravenue","time":"2018-07-14T05:51:56.199Z","enrolled":99621,"book":"http://joel.net","course_url":"https://coleman.org"},{"course_title":"Pacocha - Wiegand","course_number":96397,"instructor":"Freda Sporer","location":"2746 Kennedi Row","time":"2018-07-14T14:53:59.839Z","enrolled":60890,"book":"http://luz.info","course_url":"http://autumn.org"},{"course_title":"Lind, Gibson and Labadie","course_number":14143,"instructor":"Nathan Lindgren","location":"742 Winfield Walks","time":"2018-07-14T07:13:29.355Z","enrolled":38268,"book":"https://alexzander.com","course_url":"http://kayleigh.com"},{"course_title":"Welch, Nader and Runte","course_number":28170,"instructor":"Janae Rau","location":"386 Keith Cliff","time":"2018-07-14T08:09:39.229Z","enrolled":89102,"book":"http://elaina.com","course_url":"https://marietta.com"},{"course_title":"Hintz - Klein","course_number":28505,"instructor":"Isaac Toy","location":"3977 Catherine Pike","time":"2018-07-14T16:03:29.760Z","enrolled":87605,"book":"https://assunta.net","course_url":"https://drew.name"},{"course_title":"Mertz Inc","course_number":46636,"instructor":"Mrs. Arno Gorczany","location":"64096 Nathaniel Street","time":"2018-07-14T14:21:44.887Z","enrolled":76426,"book":"https://rasheed.biz","course_url":"http://eleanora.com"},{"course_title":"Klein - Lebsack","course_number":58804,"instructor":"Lulu Fahey","location":"3287 McCullough Keys","time":"2018-07-14T01:21:32.644Z","enrolled":21635,"book":"http://philip.org","course_url":"https://leta.org"},{"course_title":"Waelchi, Reynolds and Hettinger","course_number":91029,"instructor":"Judd Bosco","location":"07133 Homenick Points","time":"2018-07-14T03:48:17.132Z","enrolled":27793,"book":"https://dillon.biz","course_url":"http://alexa.biz"},{"course_title":"West LLC","course_number":31255,"instructor":"Mrs. Isaiah Friesen","location":"763 Green Oval","time":"2018-07-14T05:41:11.314Z","enrolled":97959,"book":"http://mohammed.org","course_url":"http://maudie.biz"},{"course_title":"Kautzer Group","course_number":54269,"instructor":"Cleo Wisoky","location":"64750 Stefan Groves","time":"2018-07-14T23:08:08.638Z","enrolled":6782,"book":"http://sincere.org","course_url":"http://eliezer.net"},{"course_title":"Streich Group","course_number":34710,"instructor":"Sage Kuhn","location":"5650 Loyce Mills","time":"2018-07-14T17:37:08.272Z","enrolled":29518,"book":"https://coby.biz","course_url":"http://merlin.net"},{"course_title":"Kessler and Sons","course_number":12051,"instructor":"Cecilia Reynolds","location":"840 Towne Radial","time":"2018-07-13T23:17:06.161Z","enrolled":29025,"book":"http://dayna.name","course_url":"https://maiya.info"},{"course_title":"Hirthe, McLaughlin and Beahan","course_number":94035,"instructor":"Howard Leffler Jr.","location":"8102 Sawayn Views","time":"2018-07-14T15:07:01.272Z","enrolled":66791,"book":"https://ellsworth.biz","course_url":"http://darrel.name"},{"course_title":"Kilback - Mertz","course_number":59714,"instructor":"Dr. Werner Bogisich","location":"5289 Hayes Cape","time":"2018-07-14T07:56:03.543Z","enrolled":22426,"book":"http://ed.org","course_url":"http://gerda.name"},{"course_title":"Klocko - Jacobi","course_number":49590,"instructor":"Elva Turcotte","location":"684 Okuneva Vista","time":"2018-07-14T12:44:09.137Z","enrolled":76124,"book":"http://alayna.name","course_url":"http://millie.net"},{"course_title":"Gislason - Kilback","course_number":87455,"instructor":"Heaven Gutkowski","location":"74045 George Key","time":"2018-07-14T12:34:22.105Z","enrolled":57616,"book":"http://orie.info","course_url":"http://brianne.com"},{"course_title":"Heathcote - Hessel","course_number":99479,"instructor":"Dr. Guiseppe Bergstrom","location":"2444 Harmon Pike","time":"2018-07-14T03:46:37.013Z","enrolled":86224,"book":"https://myrtice.info","course_url":"https://jackson.biz"},{"course_title":"Franecki - Becker","course_number":97829,"instructor":"Lysanne Oberbrunner V","location":"358 Wilfredo Curve","time":"2018-07-14T15:44:09.406Z","enrolled":12964,"book":"http://zola.com","course_url":"http://drew.biz"},{"course_title":"Zieme Inc","course_number":87037,"instructor":"Lambert Osinski","location":"040 Issac Vista","time":"2018-07-14T15:34:42.358Z","enrolled":59961,"book":"http://shany.net","course_url":"https://baron.biz"},{"course_title":"Corkery, Legros and Hintz","course_number":53478,"instructor":"Rylan Kerluke","location":"452 Abernathy Pike","time":"2018-07-14T21:07:10.323Z","enrolled":36717,"book":"http://cordelia.org","course_url":"http://lew.name"},{"course_title":"Becker, Gusikowski and Okuneva","course_number":76628,"instructor":"Joanne Fahey","location":"08036 Electa Street","time":"2018-07-14T08:04:35.131Z","enrolled":45820,"book":"http://delbert.net","course_url":"http://devonte.name"},{"course_title":"Parisian - Hoppe","course_number":54297,"instructor":"Isai Rodriguez","location":"28934 Jessika Crescent","time":"2018-07-13T23:40:52.849Z","enrolled":90700,"book":"https://tressie.com","course_url":"https://lavon.biz"},{"course_title":"Wyman Group","course_number":71827,"instructor":"Kristofer Beier IV","location":"583 Reilly Freeway","time":"2018-07-14T12:03:24.593Z","enrolled":88647,"book":"http://margaret.net","course_url":"http://gilberto.name"},{"course_title":"Little LLC","course_number":83170,"instructor":"Jacynthe Schulist","location":"393 Georgianna Ridges","time":"2018-07-14T08:16:12.214Z","enrolled":12429,"book":"http://elmer.info","course_url":"http://beulah.name"},{"course_title":"Schumm Group","course_number":56901,"instructor":"Vernie Huel","location":"2128 Olson Park","time":"2018-07-14T14:28:59.241Z","enrolled":5451,"book":"http://joy.com","course_url":"http://tomas.name"},{"course_title":"O'Keefe Inc","course_number":24860,"instructor":"Brenda Bogisich","location":"8985 Aron Landing","time":"2018-07-14T02:39:19.947Z","enrolled":36020,"book":"https://emily.info","course_url":"http://fay.biz"},{"course_title":"Leannon - Tromp","course_number":4822,"instructor":"Orlo Streich","location":"395 Tevin Parkway","time":"2018-07-14T16:42:26.380Z","enrolled":53572,"book":"https://chase.net","course_url":"https://royce.net"},{"course_title":"Thompson Inc","course_number":47518,"instructor":"Rafael Krajcik","location":"3421 Fritsch Falls","time":"2018-07-14T04:06:00.306Z","enrolled":16321,"book":"http://devyn.net","course_url":"https://lucas.org"},{"course_title":"Bartoletti - Toy","course_number":91153,"instructor":"Brooklyn Jaskolski","location":"8623 Hessel Run","time":"2018-07-14T05:21:46.394Z","enrolled":36985,"book":"https://elizabeth.com","course_url":"https://kenyatta.com"},{"course_title":"Rau and Sons","course_number":13043,"instructor":"Dr. Matt Mertz","location":"4085 Doyle Trail","time":"2018-07-14T03:31:59.025Z","enrolled":67102,"book":"http://lorenza.org","course_url":"http://curt.info"},{"course_title":"Connelly - Sauer","course_number":91293,"instructor":"Juana Rutherford Jr.","location":"24533 West Lakes","time":"2018-07-14T05:10:09.864Z","enrolled":86493,"book":"https://vida.name","course_url":"https://shaylee.biz"},{"course_title":"Raynor Group","course_number":58540,"instructor":"Javier Wuckert","location":"36769 Grady Oval","time":"2018-07-14T17:06:45.158Z","enrolled":73782,"book":"http://frederick.net","course_url":"http://caden.net"},{"course_title":"Mills, Yundt and Gibson","course_number":59586,"instructor":"Kaci Balistreri","location":"344 Dovie Crest","time":"2018-07-14T03:40:29.225Z","enrolled":33784,"book":"http://troy.net","course_url":"https://jada.net"},{"course_title":"Dietrich, West and Raynor","course_number":4810,"instructor":"Maurine Bednar","location":"6858 Schultz Ports","time":"2018-07-14T10:16:36.108Z","enrolled":62351,"book":"http://mohammad.name","course_url":"http://annette.name"},{"course_title":"Ortiz, Romaguera and Lebsack","course_number":33633,"instructor":"Alvina Jacobs","location":"2232 Jesus Rest","time":"2018-07-14T01:55:35.234Z","enrolled":11717,"book":"http://albin.biz","course_url":"http://eleazar.name"},{"course_title":"Corwin, McGlynn and Ziemann","course_number":4466,"instructor":"Myrna Orn MD","location":"6718 Eddie Hollow","time":"2018-07-14T10:07:58.990Z","enrolled":44070,"book":"https://leonel.com","course_url":"http://loyal.biz"},{"course_title":"Price, Krajcik and Dietrich","course_number":71424,"instructor":"Bart Mante","location":"80316 Jacobi Pines","time":"2018-07-14T04:28:35.402Z","enrolled":14989,"book":"https://christelle.name","course_url":"http://abbie.org"},{"course_title":"Rau and Sons","course_number":81005,"instructor":"Rosario Schaefer","location":"2081 Erika River","time":"2018-07-14T06:18:51.311Z","enrolled":29180,"book":"https://amos.org","course_url":"https://noe.info"},{"course_title":"Sporer - Swift","course_number":10798,"instructor":"Marshall Ortiz","location":"746 Novella Station","time":"2018-07-14T15:36:21.253Z","enrolled":95368,"book":"https://hadley.name","course_url":"http://delphia.info"},{"course_title":"Sporer and Sons","course_number":23195,"instructor":"Constantin Olson DVM","location":"91153 Blanda Points","time":"2018-07-14T18:05:58.302Z","enrolled":7702,"book":"http://taurean.org","course_url":"https://barbara.net"},{"course_title":"Vandervort and Sons","course_number":17666,"instructor":"Miss Cesar Goodwin","location":"522 Kassandra Key","time":"2018-07-14T14:56:22.725Z","enrolled":27506,"book":"https://elvie.com","course_url":"http://thalia.org"},{"course_title":"Torp - Waelchi","course_number":13936,"instructor":"Trey Hahn I","location":"397 Strosin Ports","time":"2018-07-14T16:02:33.593Z","enrolled":75092,"book":"https://pete.biz","course_url":"http://lauren.name"},{"course_title":"Dickens - Tromp","course_number":7642,"instructor":"Willow Swaniawski Sr.","location":"12652 Ramiro Divide","time":"2018-07-14T02:02:39.578Z","enrolled":67523,"book":"http://derek.name","course_url":"http://kamron.org"},{"course_title":"Kihn - Bosco","course_number":13502,"instructor":"Laila Kilback","location":"9851 Emmerich Crest","time":"2018-07-14T04:08:01.042Z","enrolled":22706,"book":"http://lulu.org","course_url":"http://rosa.com"},{"course_title":"Kihn, McDermott and Rath","course_number":90765,"instructor":"Edward Yundt","location":"486 Lillian Mountains","time":"2018-07-14T18:41:02.591Z","enrolled":67112,"book":"https://aiden.com","course_url":"https://theresia.net"},{"course_title":"Douglas - Doyle","course_number":31301,"instructor":"Mrs. Urban Glover","location":"0562 Donato Wall","time":"2018-07-14T09:39:23.297Z","enrolled":40841,"book":"http://demarcus.name","course_url":"http://deion.biz"},{"course_title":"Jones - Carter","course_number":47471,"instructor":"Marquis Donnelly","location":"675 Luna Prairie","time":"2018-07-14T14:21:11.216Z","enrolled":3213,"book":"https://tyshawn.net","course_url":"http://nikolas.com"},{"course_title":"Sanford, Tillman and Parisian","course_number":47055,"instructor":"Dr. Manley Dare","location":"1185 Will Ramp","time":"2018-07-14T08:43:04.277Z","enrolled":33487,"book":"https://delores.name","course_url":"https://lurline.com"},{"course_title":"Bradtke - Rice","course_number":92096,"instructor":"Dr. Boris Dickens","location":"779 Koelpin Drive","time":"2018-07-14T14:49:28.036Z","enrolled":50375,"book":"http://fleta.net","course_url":"https://rebekah.name"},{"course_title":"Reichert - Zboncak","course_number":66045,"instructor":"Miss Curt Larson","location":"87224 Davis Village","time":"2018-07-14T10:25:19.884Z","enrolled":74410,"book":"http://donnell.biz","course_url":"http://lamar.com"},{"course_title":"Herman - Christiansen","course_number":71095,"instructor":"Dr. Eugenia Rutherford","location":"46162 Kenya Bridge","time":"2018-07-14T03:42:59.862Z","enrolled":84434,"book":"http://janice.name","course_url":"http://freeman.name"},{"course_title":"Rath, O'Keefe and Hartmann","course_number":85315,"instructor":"Patsy Nicolas","location":"610 Jacobs Station","time":"2018-07-14T01:41:32.138Z","enrolled":15485,"book":"http://selmer.name","course_url":"https://kailee.name"},{"course_title":"Block and Sons","course_number":99072,"instructor":"Yvette Schulist I","location":"461 Nicklaus Grove","time":"2018-07-14T08:03:04.974Z","enrolled":72431,"book":"http://russel.biz","course_url":"http://dylan.com"},{"course_title":"Batz - Boyle","course_number":38674,"instructor":"Royal Cassin","location":"45740 Guiseppe Overpass","time":"2018-07-14T12:08:24.326Z","enrolled":14543,"book":"http://leda.info","course_url":"http://willie.info"},{"course_title":"Reynolds LLC","course_number":32494,"instructor":"Miss Anahi Marks","location":"71717 Camren Burg","time":"2018-07-14T17:35:58.028Z","enrolled":42329,"book":"http://dora.biz","course_url":"http://breanne.name"},{"course_title":"Abbott - Schamberger","course_number":38049,"instructor":"Madelynn Mante II","location":"95304 Rowe Drive","time":"2018-07-14T23:07:58.814Z","enrolled":45428,"book":"https://freda.com","course_url":"https://rickey.name"},{"course_title":"Jast - Williamson","course_number":39327,"instructor":"Mr. Dorcas Frami","location":"8118 Buckridge Shoal","time":"2018-07-14T13:32:34.145Z","enrolled":97563,"book":"https://reuben.net","course_url":"http://vivienne.biz"},{"course_title":"Collins, Kuhlman and Hauck","course_number":41490,"instructor":"Dr. Ward Ondricka","location":"842 Parisian Canyon","time":"2018-07-14T05:24:56.745Z","enrolled":99280,"book":"http://elliot.info","course_url":"http://terrill.name"},{"course_title":"Satterfield Group","course_number":98521,"instructor":"Miss Herbert Hagenes","location":"725 Hassie Manors","time":"2018-07-14T15:16:08.251Z","enrolled":7629,"book":"http://david.com","course_url":"http://jonas.biz"},{"course_title":"Brekke, Runolfsson and Heaney","course_number":61193,"instructor":"Jana Kertzmann","location":"972 Gregory Roads","time":"2018-07-14T08:35:08.509Z","enrolled":94125,"book":"https://lavern.biz","course_url":"https://queenie.name"},{"course_title":"Schulist and Sons","course_number":68504,"instructor":"Crawford Crooks","location":"33024 Travis Isle","time":"2018-07-14T14:17:18.093Z","enrolled":67864,"book":"https://willa.com","course_url":"http://christina.com"},{"course_title":"Johnson Group","course_number":83106,"instructor":"Rachael Brakus","location":"5964 Marianna Crescent","time":"2018-07-14T07:58:29.124Z","enrolled":62375,"book":"https://patience.org","course_url":"https://magnus.biz"},{"course_title":"Cronin Inc","course_number":42472,"instructor":"Angus Moen","location":"90623 Keebler Mission","time":"2018-07-14T09:42:48.260Z","enrolled":83468,"book":"https://karlee.net","course_url":"https://cecelia.org"},{"course_title":"Carroll - Herman","course_number":32791,"instructor":"Jarod Hermiston Jr.","location":"17133 Yost Cove","time":"2018-07-14T02:00:10.013Z","enrolled":18612,"book":"http://harvey.net","course_url":"http://orville.com"},{"course_title":"Weber, Morissette and Will","course_number":37729,"instructor":"Kathryne Hills","location":"70714 Mabel Turnpike","time":"2018-07-14T11:40:15.463Z","enrolled":9928,"book":"https://isom.name","course_url":"https://vicky.name"},{"course_title":"Rodriguez LLC","course_number":87894,"instructor":"Meredith Mohr","location":"40104 Salvador Ramp","time":"2018-07-14T06:42:28.701Z","enrolled":46711,"book":"http://orville.biz","course_url":"http://kennedy.net"},{"course_title":"Jerde LLC","course_number":48849,"instructor":"Ms. Esmeralda Murphy","location":"667 Schmeler Station","time":"2018-07-14T21:19:25.007Z","enrolled":66593,"book":"http://kirk.org","course_url":"https://justice.com"},{"course_title":"Medhurst LLC","course_number":49691,"instructor":"Andrew Klocko","location":"7743 Breana Lake","time":"2018-07-14T17:12:59.264Z","enrolled":19337,"book":"http://dalton.net","course_url":"http://miller.name"},{"course_title":"Keeling and Sons","course_number":96432,"instructor":"Bennett Heidenreich","location":"11637 Schuppe Meadows","time":"2018-07-14T17:43:01.712Z","enrolled":51570,"book":"https://christa.com","course_url":"http://myriam.org"},{"course_title":"Johnson Group","course_number":47239,"instructor":"Janelle McLaughlin V","location":"3789 Sandy Estates","time":"2018-07-14T03:21:42.441Z","enrolled":23148,"book":"https://marianne.org","course_url":"https://rosalinda.com"},{"course_title":"McCullough Group","course_number":41728,"instructor":"Dagmar Kerluke","location":"92474 Crawford Well","time":"2018-07-14T20:09:06.676Z","enrolled":92672,"book":"http://jewell.net","course_url":"http://hester.info"},{"course_title":"Hand Group","course_number":42958,"instructor":"Bertram Hills","location":"15377 Jermaine Mountains","time":"2018-07-14T01:22:00.435Z","enrolled":37325,"book":"http://joe.name","course_url":"http://luigi.name"},{"course_title":"Gottlieb Group","course_number":77040,"instructor":"Miss Mervin Okuneva","location":"2094 Toney Pine","time":"2018-07-14T16:50:53.685Z","enrolled":54122,"book":"https://lorenzo.biz","course_url":"https://mara.info"},{"course_title":"Daugherty, Emmerich and Kling","course_number":79173,"instructor":"Bartholome Tremblay","location":"6827 Sauer Plains","time":"2018-07-14T05:59:48.931Z","enrolled":63625,"book":"https://doyle.name","course_url":"http://bernadine.info"},{"course_title":"Jakubowski - Renner","course_number":40,"instructor":"Jairo Bode","location":"09925 Satterfield Gardens","time":"2018-07-14T01:31:06.875Z","enrolled":2070,"book":"https://darlene.com","course_url":"http://ellis.com"},{"course_title":"Murphy, Gottlieb and Sporer","course_number":51369,"instructor":"Elenor Sporer","location":"2807 Jessy Burg","time":"2018-07-13T23:54:34.841Z","enrolled":69737,"book":"https://haven.org","course_url":"https://patricia.biz"},{"course_title":"Bogisich, Marvin and Herzog","course_number":43794,"instructor":"Bernadette Hauck","location":"3583 Wilkinson Shore","time":"2018-07-14T15:24:12.309Z","enrolled":34494,"book":"https://shanie.info","course_url":"http://scarlett.net"},{"course_title":"Wuckert, Aufderhar and O'Connell","course_number":63052,"instructor":"Tanya Howe","location":"0742 Stoltenberg Cliffs","time":"2018-07-14T15:43:01.792Z","enrolled":4813,"book":"https://maggie.com","course_url":"https://adrienne.org"},{"course_title":"Crooks, Ritchie and Rutherford","course_number":97970,"instructor":"Hobart Jacobson","location":"733 Fausto Hollow","time":"2018-07-14T12:36:07.552Z","enrolled":95698,"book":"https://kamryn.net","course_url":"https://keshaun.com"},{"course_title":"Boyle LLC","course_number":93730,"instructor":"Marquis Larkin","location":"59596 Bode Land","time":"2018-07-14T09:05:32.787Z","enrolled":93702,"book":"http://shirley.com","course_url":"https://francisca.info"},{"course_title":"Fahey - Bailey","course_number":35268,"instructor":"Erik Klein","location":"3477 Hauck Cove","time":"2018-07-14T05:17:37.206Z","enrolled":6731,"book":"http://lavada.com","course_url":"https://ronny.com"},{"course_title":"Kessler - Blanda","course_number":16904,"instructor":"Ashleigh Schiller","location":"25814 Green Village","time":"2018-07-14T16:56:35.635Z","enrolled":5109,"book":"https://lukas.com","course_url":"https://ardella.info"},{"course_title":"Conn - Williamson","course_number":1306,"instructor":"Keshawn Legros","location":"580 Freeman Ranch","time":"2018-07-14T00:09:53.972Z","enrolled":21640,"book":"https://alexis.com","course_url":"https://aidan.net"},{"course_title":"Okuneva - Konopelski","course_number":38605,"instructor":"Carmel Herzog","location":"12051 Metz Orchard","time":"2018-07-14T19:32:48.915Z","enrolled":82044,"book":"http://meaghan.info","course_url":"https://jerrold.name"},{"course_title":"Armstrong, Ankunding and Hartmann","course_number":82983,"instructor":"Ms. Rudolph Bahringer","location":"2573 Earlene Parkways","time":"2018-07-14T17:49:07.434Z","enrolled":70024,"book":"https://jamaal.biz","course_url":"http://marcellus.biz"},{"course_title":"Collins - Lindgren","course_number":5048,"instructor":"Elmore Schuster","location":"727 Alyce Causeway","time":"2018-07-14T22:10:23.046Z","enrolled":9648,"book":"https://rosalinda.com","course_url":"http://shayna.name"},{"course_title":"West and Sons","course_number":18121,"instructor":"Moises Champlin","location":"1573 Ullrich Stravenue","time":"2018-07-14T14:00:09.985Z","enrolled":79566,"book":"http://myah.com","course_url":"https://alvera.name"},{"course_title":"O'Conner, McGlynn and Mayer","course_number":94077,"instructor":"Elena Metz","location":"57508 Wintheiser Drive","time":"2018-07-14T08:24:08.128Z","enrolled":1460,"book":"https://deontae.biz","course_url":"https://jeanie.com"},{"course_title":"Murazik Group","course_number":22299,"instructor":"Nicholaus Hamill","location":"3781 Nikko Plaza","time":"2018-07-14T20:00:46.980Z","enrolled":36546,"book":"http://abigail.org","course_url":"https://chauncey.net"},{"course_title":"Prohaska LLC","course_number":76419,"instructor":"Tomas Goldner Jr.","location":"925 Lehner Stream","time":"2018-07-14T19:56:36.639Z","enrolled":45709,"book":"https://anais.name","course_url":"https://macie.net"},{"course_title":"Gutmann - Walter","course_number":49264,"instructor":"Misael Dietrich","location":"89177 Wuckert Burg","time":"2018-07-14T16:13:20.390Z","enrolled":39011,"book":"http://jack.name","course_url":"http://enid.name"},{"course_title":"Hand LLC","course_number":52911,"instructor":"Mrs. Mathias Abshire","location":"8342 Dorcas Falls","time":"2018-07-14T08:08:51.818Z","enrolled":2772,"book":"http://nina.name","course_url":"http://alphonso.com"},{"course_title":"Kulas, Lesch and Friesen","course_number":28723,"instructor":"Aliya Conroy","location":"1591 Jakubowski Cliffs","time":"2018-07-14T12:30:34.768Z","enrolled":96967,"book":"https://aglae.name","course_url":"http://kim.org"},{"course_title":"Doyle Inc","course_number":12750,"instructor":"Carmella Beer","location":"2438 Torey Plaza","time":"2018-07-14T04:39:37.986Z","enrolled":23247,"book":"https://sylvester.info","course_url":"http://river.org"},{"course_title":"Rogahn and Sons","course_number":10056,"instructor":"Lyda Wintheiser","location":"766 Hackett Light","time":"2018-07-14T14:04:18.966Z","enrolled":21789,"book":"http://kasey.org","course_url":"https://colt.biz"},{"course_title":"Ritchie - Hodkiewicz","course_number":1375,"instructor":"Hanna Cormier","location":"56899 Balistreri Stravenue","time":"2018-07-14T15:31:57.553Z","enrolled":41987,"book":"http://brady.info","course_url":"http://manuela.org"},{"course_title":"Weimann, Prosacco and Larkin","course_number":96912,"instructor":"Finn McGlynn","location":"6078 Hegmann Summit","time":"2018-07-14T11:54:04.974Z","enrolled":77715,"book":"http://maya.name","course_url":"https://cheyenne.info"},{"course_title":"Hilll Inc","course_number":78011,"instructor":"Moshe Kreiger","location":"6551 Javier Squares","time":"2018-07-14T02:54:14.555Z","enrolled":36095,"book":"https://mae.name","course_url":"http://berry.org"},{"course_title":"Greenholt, Buckridge and Hodkiewicz","course_number":4421,"instructor":"Felipe Heller","location":"9799 Alvena Lock","time":"2018-07-14T13:15:53.359Z","enrolled":54124,"book":"https://lorine.info","course_url":"https://nicklaus.com"},{"course_title":"Wintheiser, Wuckert and Langworth","course_number":25684,"instructor":"Preston Steuber","location":"6279 Collins Mill","time":"2018-07-14T20:36:06.545Z","enrolled":62471,"book":"https://antonietta.net","course_url":"https://winfield.name"},{"course_title":"Stokes - Medhurst","course_number":13964,"instructor":"Mertie Eichmann","location":"6415 Hackett Drives","time":"2018-07-14T15:01:14.596Z","enrolled":47013,"book":"https://aliza.org","course_url":"http://wilfrid.name"},{"course_title":"Hamill, Leannon and Johnson","course_number":58198,"instructor":"Edmond Fahey PhD","location":"5820 Deshaun Square","time":"2018-07-14T12:00:03.299Z","enrolled":11556,"book":"http://efren.org","course_url":"http://carole.org"},{"course_title":"Herzog, Cartwright and Gusikowski","course_number":52573,"instructor":"Tiana Quigley","location":"8345 Tyree Tunnel","time":"2018-07-14T00:34:35.604Z","enrolled":42362,"book":"https://bette.biz","course_url":"https://lila.net"},{"course_title":"Wintheiser - Reynolds","course_number":7548,"instructor":"Adolph Streich","location":"39564 Lynch Vista","time":"2018-07-14T21:52:34.531Z","enrolled":83571,"book":"http://kennith.org","course_url":"https://neha.info"},{"course_title":"Lynch, Rempel and Gorczany","course_number":52599,"instructor":"Ned Becker","location":"9891 Oberbrunner Avenue","time":"2018-07-14T02:49:17.491Z","enrolled":96514,"book":"https://estella.net","course_url":"http://dianna.net"},{"course_title":"Cartwright, Hermiston and Heidenreich","course_number":74996,"instructor":"Claire Ritchie","location":"102 Lebsack Hills","time":"2018-07-14T02:50:59.157Z","enrolled":31282,"book":"http://virgie.name","course_url":"http://juanita.biz"},{"course_title":"Ebert - Raynor","course_number":7135,"instructor":"Lempi Turcotte","location":"3551 Hudson Island","time":"2018-07-14T15:53:09.469Z","enrolled":96639,"book":"http://chance.com","course_url":"https://ava.info"},{"course_title":"Littel LLC","course_number":91181,"instructor":"Dimitri Kassulke","location":"466 Coleman Via","time":"2018-07-14T08:56:46.225Z","enrolled":13033,"book":"http://uriah.net","course_url":"http://carolanne.name"},{"course_title":"Hand, Jerde and Rippin","course_number":39563,"instructor":"Adelbert Abbott","location":"836 Lind Valleys","time":"2018-07-14T14:32:12.709Z","enrolled":22951,"book":"https://jovanny.info","course_url":"https://emmet.com"},{"course_title":"O'Keefe, Quitzon and Eichmann","course_number":9540,"instructor":"Bert Baumbach","location":"8686 Hane Islands","time":"2018-07-14T14:03:02.485Z","enrolled":55534,"book":"https://emanuel.name","course_url":"https://dave.com"},{"course_title":"Denesik Inc","course_number":68921,"instructor":"Ressie Ryan","location":"4684 Emmerich Wells","time":"2018-07-14T11:21:22.654Z","enrolled":70267,"book":"http://krystal.net","course_url":"https://buddy.biz"},{"course_title":"White - Sauer","course_number":77957,"instructor":"Norval Ondricka","location":"974 Karelle Parkway","time":"2018-07-14T05:53:50.244Z","enrolled":88205,"book":"http://fiona.com","course_url":"http://gunnar.org"},{"course_title":"West, Stiedemann and Konopelski","course_number":74527,"instructor":"Raquel Romaguera","location":"4071 Kennedi Island","time":"2018-07-14T16:14:07.159Z","enrolled":84127,"book":"http://urban.info","course_url":"https://sandy.biz"},{"course_title":"Cormier - Leuschke","course_number":70433,"instructor":"Genoveva Gusikowski","location":"91903 Bailey Stravenue","time":"2018-07-14T22:20:35.127Z","enrolled":71428,"book":"http://virginia.name","course_url":"http://reinhold.com"},{"course_title":"Hackett - Gutkowski","course_number":82443,"instructor":"Shania Dicki","location":"685 Fredy Terrace","time":"2018-07-14T08:58:49.859Z","enrolled":72143,"book":"http://wendy.org","course_url":"https://leonora.com"},{"course_title":"Fritsch, Kautzer and Mante","course_number":79119,"instructor":"Vella Leannon","location":"7092 Samara Rapid","time":"2018-07-14T02:16:33.032Z","enrolled":19860,"book":"https://helen.net","course_url":"https://scot.name"},{"course_title":"Reynolds - Wolff","course_number":54328,"instructor":"Dr. Sylvan Ledner","location":"2066 Smitham Fort","time":"2018-07-14T13:33:13.214Z","enrolled":46209,"book":"https://carley.net","course_url":"http://jefferey.net"},{"course_title":"Jakubowski Group","course_number":54521,"instructor":"Shemar Deckow","location":"0204 Farrell Courts","time":"2018-07-14T22:55:54.875Z","enrolled":37911,"book":"http://jules.net","course_url":"https://melyna.name"},{"course_title":"DuBuque, Prohaska and West","course_number":19950,"instructor":"Miss Lenny Bartoletti","location":"05078 Gusikowski Ramp","time":"2018-07-14T10:58:25.775Z","enrolled":80396,"book":"http://fanny.org","course_url":"https://ettie.info"},{"course_title":"Anderson and Sons","course_number":71686,"instructor":"Audreanne Corkery","location":"933 Lowe Course","time":"2018-07-14T19:18:42.727Z","enrolled":41389,"book":"https://daija.com","course_url":"http://alysa.biz"},{"course_title":"Dare, Lockman and Sauer","course_number":26747,"instructor":"Phoebe Ullrich","location":"3390 Louisa Plains","time":"2018-07-13T23:44:50.485Z","enrolled":90386,"book":"https://sylvia.biz","course_url":"https://bridget.info"},{"course_title":"Rutherford LLC","course_number":53221,"instructor":"Gabriel Prosacco","location":"6639 Daron Terrace","time":"2018-07-14T19:37:55.050Z","enrolled":75304,"book":"http://cora.org","course_url":"https://isidro.com"},{"course_title":"Grant and Sons","course_number":11261,"instructor":"Collin Grady","location":"06130 General Coves","time":"2018-07-14T22:17:51.772Z","enrolled":97144,"book":"http://david.name","course_url":"https://tressie.name"},{"course_title":"Mitchell and Sons","course_number":19811,"instructor":"Dr. Roy Hansen","location":"840 Wolf Rapids","time":"2018-07-14T12:21:24.258Z","enrolled":98147,"book":"https://mavis.com","course_url":"http://horacio.org"},{"course_title":"Ritchie and Sons","course_number":54413,"instructor":"Armand Connelly","location":"63014 Kristy Pine","time":"2018-07-14T06:43:36.598Z","enrolled":775,"book":"https://monserrat.info","course_url":"http://ardith.com"},{"course_title":"Schaefer, Howell and Block","course_number":26674,"instructor":"Jadyn Gutkowski","location":"58116 Kay Fort","time":"2018-07-14T06:22:25.334Z","enrolled":91367,"book":"http://anya.com","course_url":"https://tre.info"},{"course_title":"Sauer - Bechtelar","course_number":96848,"instructor":"Johnson Connelly","location":"46571 Claire Ferry","time":"2018-07-14T15:03:34.390Z","enrolled":73336,"book":"http://lilla.org","course_url":"http://kaleigh.net"},{"course_title":"Brekke - Weber","course_number":65462,"instructor":"Margaretta O'Reilly","location":"52464 Crona Valley","time":"2018-07-14T00:30:50.671Z","enrolled":53208,"book":"http://billy.name","course_url":"http://leonardo.com"},{"course_title":"Grimes Inc","course_number":59588,"instructor":"Dewitt Hermann","location":"883 Kayli Ways","time":"2018-07-14T08:08:01.391Z","enrolled":80196,"book":"http://bertram.net","course_url":"http://sandy.biz"},{"course_title":"Jacobs, Schimmel and Pouros","course_number":28870,"instructor":"Gracie Welch","location":"0987 Vance Rest","time":"2018-07-14T13:24:49.705Z","enrolled":97012,"book":"https://maxine.org","course_url":"https://marlene.net"},{"course_title":"Kerluke LLC","course_number":6712,"instructor":"Josiah Hegmann","location":"0370 Roberts Pike","time":"2018-07-14T01:51:20.001Z","enrolled":10738,"book":"http://micheal.net","course_url":"http://merlin.org"},{"course_title":"Champlin - Johnson","course_number":94311,"instructor":"Chester Koepp","location":"3698 Reichel Fort","time":"2018-07-14T19:46:04.537Z","enrolled":94373,"book":"https://oren.info","course_url":"https://marshall.name"},{"course_title":"Yost - Kuphal","course_number":70866,"instructor":"Victor Padberg","location":"3634 Ratke Mountains","time":"2018-07-14T10:27:18.656Z","enrolled":33517,"book":"http://jerome.info","course_url":"http://kathryn.info"},{"course_title":"Witting - Pacocha","course_number":45969,"instructor":"Durward Thompson","location":"02645 Willms Harbor","time":"2018-07-14T22:52:43.291Z","enrolled":16207,"book":"http://ruthe.net","course_url":"https://alec.biz"},{"course_title":"Larson, Padberg and Cruickshank","course_number":40873,"instructor":"Cory Greenholt Jr.","location":"0977 Shields Drive","time":"2018-07-14T19:22:35.440Z","enrolled":89153,"book":"https://robbie.org","course_url":"http://liza.net"},{"course_title":"Schaefer, Wolf and Nitzsche","course_number":89319,"instructor":"Madyson Crooks","location":"7598 Wehner Rapids","time":"2018-07-13T23:45:33.848Z","enrolled":27974,"book":"http://rico.biz","course_url":"http://angelo.org"},{"course_title":"Corkery, Adams and Heidenreich","course_number":51745,"instructor":"Dakota Okuneva","location":"62736 Agnes Island","time":"2018-07-14T10:44:47.306Z","enrolled":86540,"book":"https://royal.com","course_url":"https://edna.info"},{"course_title":"Hahn, Kilback and Ward","course_number":48599,"instructor":"Laney West","location":"4757 Jaime Run","time":"2018-07-14T16:24:50.354Z","enrolled":7469,"book":"http://nikko.org","course_url":"http://jailyn.com"},{"course_title":"Nader Inc","course_number":65222,"instructor":"Derick Swift","location":"2409 Brown Tunnel","time":"2018-07-14T04:32:13.349Z","enrolled":90297,"book":"http://davin.name","course_url":"http://golden.info"},{"course_title":"Langosh - Lockman","course_number":74901,"instructor":"Augusta Sawayn","location":"53248 Antwan Villages","time":"2018-07-14T15:46:31.809Z","enrolled":99406,"book":"http://shanel.net","course_url":"https://sabryna.com"},{"course_title":"Murphy Group","course_number":82109,"instructor":"Loyce Cronin","location":"918 Jacques Gateway","time":"2018-07-14T21:10:15.475Z","enrolled":42106,"book":"https://litzy.info","course_url":"http://ardella.name"},{"course_title":"Towne, Ullrich and Auer","course_number":38815,"instructor":"Jadon Mraz","location":"183 Schmidt Creek","time":"2018-07-14T08:03:24.601Z","enrolled":79735,"book":"http://willa.net","course_url":"http://nick.info"},{"course_title":"Kuhn - Koch","course_number":97937,"instructor":"Coralie Fritsch PhD","location":"6360 Kristoffer Pike","time":"2018-07-14T01:03:53.281Z","enrolled":4995,"book":"http://mozell.com","course_url":"https://werner.biz"},{"course_title":"Keeling - Schmitt","course_number":24789,"instructor":"Meggie Robel","location":"37285 Ashton Dale","time":"2018-07-14T11:25:41.944Z","enrolled":59476,"book":"http://weldon.net","course_url":"http://lacy.name"},{"course_title":"Kling, VonRueden and Mueller","course_number":11906,"instructor":"Maximus Donnelly","location":"1584 Lawson Inlet","time":"2018-07-14T09:19:26.601Z","enrolled":89175,"book":"http://franco.name","course_url":"https://moses.org"},{"course_title":"Wyman, Nitzsche and Fadel","course_number":45725,"instructor":"Timothy Jacobson II","location":"755 Tyson Road","time":"2018-07-14T06:42:11.230Z","enrolled":45060,"book":"http://jennings.biz","course_url":"http://viola.info"},{"course_title":"Nader Group","course_number":60430,"instructor":"Eriberto Gibson","location":"4999 Feil Curve","time":"2018-07-14T12:02:27.770Z","enrolled":28303,"book":"http://lexie.com","course_url":"http://jazmyne.biz"},{"course_title":"Reichel - Greenfelder","course_number":4561,"instructor":"Ella Bednar","location":"65508 Cummings Port","time":"2018-07-14T14:36:40.875Z","enrolled":33136,"book":"https://floyd.com","course_url":"http://philip.biz"},{"course_title":"Raynor and Sons","course_number":69749,"instructor":"Verna Romaguera","location":"832 Walsh Greens","time":"2018-07-14T06:21:19.647Z","enrolled":69336,"book":"http://maymie.com","course_url":"http://thad.info"},{"course_title":"Ebert LLC","course_number":2722,"instructor":"Harley Gorczany","location":"759 Maude Fords","time":"2018-07-14T00:12:32.510Z","enrolled":99686,"book":"https://zackery.net","course_url":"http://edna.name"},{"course_title":"Auer, Cruickshank and Graham","course_number":49797,"instructor":"Dallas Stiedemann","location":"2075 Raynor Groves","time":"2018-07-14T09:08:29.394Z","enrolled":22406,"book":"https://leone.biz","course_url":"http://mckayla.org"},{"course_title":"Emard, Welch and Rosenbaum","course_number":5912,"instructor":"Joanny Hamill","location":"3579 Harris Prairie","time":"2018-07-14T04:03:16.397Z","enrolled":55331,"book":"https://nannie.net","course_url":"http://katrina.org"},{"course_title":"Blick, Homenick and Hane","course_number":73465,"instructor":"Eldred Bernier","location":"4005 White Pines","time":"2018-07-14T05:14:49.297Z","enrolled":25622,"book":"https://julien.net","course_url":"http://deonte.name"},{"course_title":"Terry Inc","course_number":4791,"instructor":"Andy Koepp","location":"17061 Kaela Shores","time":"2018-07-14T20:57:51.545Z","enrolled":23916,"book":"http://skyla.biz","course_url":"https://kaleb.org"},{"course_title":"Upton - Sporer","course_number":11524,"instructor":"Liza Trantow","location":"44768 Elian Light","time":"2018-07-14T12:51:36.788Z","enrolled":37867,"book":"https://green.name","course_url":"https://erwin.com"},{"course_title":"O'Connell, Schultz and Beer","course_number":22299,"instructor":"Janessa Huel","location":"645 Nicola Mill","time":"2018-07-14T13:22:57.891Z","enrolled":67456,"book":"http://cheyanne.org","course_url":"http://yessenia.biz"},{"course_title":"Pfannerstill, Hagenes and O'Conner","course_number":44827,"instructor":"Darwin Dickinson","location":"1442 Otilia Village","time":"2018-07-14T05:56:45.569Z","enrolled":27025,"book":"https://geovanny.name","course_url":"http://jody.org"},{"course_title":"Donnelly, Bergstrom and Wilkinson","course_number":77173,"instructor":"Alvina Schimmel","location":"9748 Donnelly Isle","time":"2018-07-14T09:18:27.147Z","enrolled":95491,"book":"http://christ.net","course_url":"https://neha.biz"},{"course_title":"Jacobs, Rippin and Jaskolski","course_number":62102,"instructor":"Elisha Kilback","location":"6087 Cristina Burg","time":"2018-07-14T04:09:03.567Z","enrolled":1419,"book":"http://samson.org","course_url":"http://delores.com"},{"course_title":"Stokes - Osinski","course_number":25652,"instructor":"Mireya Greenfelder","location":"53004 Madeline Rue","time":"2018-07-14T08:34:34.307Z","enrolled":96820,"book":"https://ottilie.biz","course_url":"https://jennie.org"},{"course_title":"Miller, Spinka and Berge","course_number":96140,"instructor":"Kiel Rippin","location":"868 Jennings Street","time":"2018-07-14T07:48:07.043Z","enrolled":91851,"book":"http://elmore.org","course_url":"https://brenden.com"},{"course_title":"Kunze - MacGyver","course_number":21059,"instructor":"Jordy Schmitt","location":"233 Torphy Loaf","time":"2018-07-14T03:32:46.901Z","enrolled":40853,"book":"http://ryleigh.biz","course_url":"http://august.com"},{"course_title":"Nikolaus, Bauch and Beahan","course_number":50940,"instructor":"Arely Walker II","location":"3546 Gerhold Fields","time":"2018-07-14T16:07:51.425Z","enrolled":27539,"book":"https://adah.net","course_url":"https://noble.net"},{"course_title":"Schmitt, Heaney and Harber","course_number":39454,"instructor":"Ryan Greenholt III","location":"689 Abshire Fields","time":"2018-07-14T13:53:09.488Z","enrolled":66758,"book":"http://jeromy.info","course_url":"http://bridie.info"},{"course_title":"Torp - Rice","course_number":53712,"instructor":"Samara Mante","location":"0243 Kenyatta Inlet","time":"2018-07-14T18:55:51.362Z","enrolled":9205,"book":"https://cora.info","course_url":"https://mabelle.org"},{"course_title":"Kessler - Heaney","course_number":83259,"instructor":"Effie Cronin","location":"7766 Leopoldo Walks","time":"2018-07-14T01:54:59.278Z","enrolled":61668,"book":"https://dorothea.org","course_url":"https://arlo.biz"},{"course_title":"Reichert, Terry and Nitzsche","course_number":19822,"instructor":"Jacquelyn Heathcote","location":"9217 Noelia Isle","time":"2018-07-14T03:17:29.665Z","enrolled":30686,"book":"http://bella.name","course_url":"http://verona.biz"},{"course_title":"Cummerata, Cummerata and Koelpin","course_number":52246,"instructor":"Rita Weimann","location":"78277 Marvin Manor","time":"2018-07-14T16:06:58.524Z","enrolled":1298,"book":"http://brando.name","course_url":"http://telly.org"},{"course_title":"Altenwerth, Lockman and Hills","course_number":39169,"instructor":"Alisa Bayer","location":"5654 Leilani Ville","time":"2018-07-14T10:10:04.026Z","enrolled":51052,"book":"https://alice.com","course_url":"http://katarina.net"},{"course_title":"Morar, Reilly and Wolf","course_number":67893,"instructor":"Osvaldo Mann","location":"248 Thaddeus Way","time":"2018-07-14T15:22:34.563Z","enrolled":20710,"book":"http://braeden.name","course_url":"http://fabian.org"},{"course_title":"Little, Johnston and Konopelski","course_number":21038,"instructor":"Sonny Corkery","location":"662 Ford Meadows","time":"2018-07-13T23:36:44.199Z","enrolled":90900,"book":"https://trevor.name","course_url":"http://elsa.net"},{"course_title":"Bode, Smith and Sawayn","course_number":96324,"instructor":"Triston Schowalter","location":"176 Kiera Junction","time":"2018-07-14T08:16:58.421Z","enrolled":38019,"book":"http://rey.org","course_url":"http://furman.com"},{"course_title":"Maggio, Nikolaus and Rice","course_number":90711,"instructor":"Annie Mosciski","location":"530 Gottlieb Junctions","time":"2018-07-14T15:42:47.403Z","enrolled":85895,"book":"http://andrew.info","course_url":"https://eloy.org"},{"course_title":"O'Connell, Schimmel and Klein","course_number":75331,"instructor":"Julia Luettgen","location":"7367 Joan Drive","time":"2018-07-14T09:08:49.417Z","enrolled":2991,"book":"https://crystel.com","course_url":"https://angelita.com"},{"course_title":"Hickle LLC","course_number":40902,"instructor":"Dashawn Hills IV","location":"0389 Conroy Islands","time":"2018-07-14T10:35:26.424Z","enrolled":79754,"book":"http://buck.net","course_url":"http://brianne.net"},{"course_title":"Wilkinson, Feeney and Funk","course_number":40671,"instructor":"Ms. Abagail Keeling","location":"13286 Dorothea Bridge","time":"2018-07-14T10:07:04.509Z","enrolled":9740,"book":"http://evans.name","course_url":"http://emelia.info"},{"course_title":"Feil Group","course_number":58408,"instructor":"Darien Mayer","location":"0474 Reynold Place","time":"2018-07-14T16:02:04.103Z","enrolled":14968,"book":"http://leanne.info","course_url":"http://francisca.com"},{"course_title":"DuBuque and Sons","course_number":84572,"instructor":"Samantha Gerhold Jr.","location":"18649 Myrtle Manors","time":"2018-07-14T11:26:26.829Z","enrolled":20430,"book":"http://lavonne.biz","course_url":"https://edwina.org"},{"course_title":"Schimmel, Schiller and Corwin","course_number":14413,"instructor":"Horace Powlowski","location":"2556 King Trail","time":"2018-07-14T10:39:23.422Z","enrolled":99779,"book":"https://camille.com","course_url":"http://jarrett.info"},{"course_title":"Wolff - Hamill","course_number":99581,"instructor":"Paula Boyer V","location":"7243 Gracie Lane","time":"2018-07-14T16:28:22.022Z","enrolled":86138,"book":"http://kimberly.biz","course_url":"https://edythe.name"},{"course_title":"Nicolas - Jakubowski","course_number":60183,"instructor":"Marion Gulgowski","location":"2851 Stefan Junction","time":"2018-07-14T12:17:56.968Z","enrolled":24644,"book":"https://adrienne.info","course_url":"https://carey.com"},{"course_title":"Stroman - Mills","course_number":9381,"instructor":"Cornelius Wintheiser","location":"30939 Flo Islands","time":"2018-07-14T10:06:55.140Z","enrolled":72231,"book":"https://gianni.info","course_url":"https://westley.com"},{"course_title":"Little - Sanford","course_number":39,"instructor":"Maegan Marvin","location":"0898 Larson Branch","time":"2018-07-14T15:40:59.415Z","enrolled":88979,"book":"https://serenity.biz","course_url":"https://kamren.biz"},{"course_title":"Wolff, Cartwright and Windler","course_number":29247,"instructor":"Patsy Reichel","location":"59051 Hauck Islands","time":"2018-07-14T09:46:48.965Z","enrolled":7960,"book":"http://rosie.org","course_url":"http://virginia.biz"},{"course_title":"Grant, Klein and Murray","course_number":92589,"instructor":"Brenda Nitzsche","location":"956 Beryl Greens","time":"2018-07-14T04:03:52.119Z","enrolled":33756,"book":"http://lelah.biz","course_url":"https://josefina.info"},{"course_title":"Senger and Sons","course_number":45025,"instructor":"Quincy Hauck","location":"76386 Beahan Garden","time":"2018-07-14T07:34:26.681Z","enrolled":90886,"book":"https://kaia.info","course_url":"https://fredrick.name"},{"course_title":"Mayert and Sons","course_number":22115,"instructor":"George Yost","location":"36625 Wunsch Ramp","time":"2018-07-14T09:56:02.023Z","enrolled":72568,"book":"https://ashtyn.info","course_url":"https://ervin.info"},{"course_title":"Kulas Group","course_number":93599,"instructor":"Elizabeth Lind","location":"331 Devin Ridge","time":"2018-07-14T01:40:59.705Z","enrolled":67976,"book":"http://torrance.net","course_url":"http://genevieve.com"},{"course_title":"Auer Group","course_number":97950,"instructor":"Aiyana Dietrich","location":"35236 Schumm Shoals","time":"2018-07-14T06:06:50.952Z","enrolled":28904,"book":"https://murray.net","course_url":"https://eugenia.com"},{"course_title":"Fritsch Group","course_number":69212,"instructor":"Clementine Fritsch","location":"6246 Delfina Hollow","time":"2018-07-14T04:21:01.066Z","enrolled":50811,"book":"http://lela.org","course_url":"http://garret.org"},{"course_title":"Friesen, Schneider and Gislason","course_number":84466,"instructor":"Miss Rosemary Lindgren","location":"026 Lowe Inlet","time":"2018-07-14T18:43:47.720Z","enrolled":22135,"book":"http://brannon.info","course_url":"https://maurice.info"},{"course_title":"Simonis - Kerluke","course_number":48671,"instructor":"Alfonso Schamberger","location":"9234 Herminia Meadows","time":"2018-07-14T12:06:29.118Z","enrolled":62053,"book":"https://kelli.info","course_url":"http://jerad.info"},{"course_title":"Shanahan, Ziemann and King","course_number":86261,"instructor":"Zackery Gleason","location":"5260 Gudrun Villages","time":"2018-07-14T00:23:32.884Z","enrolled":19363,"book":"http://alyce.com","course_url":"https://freddy.info"},{"course_title":"Bashirian, Dickens and Schmeler","course_number":93032,"instructor":"Linnea Kunze III","location":"34292 Baylee Village","time":"2018-07-14T10:43:26.069Z","enrolled":20366,"book":"http://annette.info","course_url":"https://keira.name"},{"course_title":"Padberg Inc","course_number":35328,"instructor":"Jamie Kunde","location":"98212 Fay Orchard","time":"2018-07-14T16:21:58.873Z","enrolled":24767,"book":"http://burnice.biz","course_url":"http://verdie.com"},{"course_title":"Eichmann, Effertz and Price","course_number":99495,"instructor":"Joey Kulas","location":"827 Ryan Run","time":"2018-07-14T02:55:41.601Z","enrolled":91634,"book":"https://hailee.info","course_url":"https://sonia.net"},{"course_title":"Gorczany Inc","course_number":8901,"instructor":"Tyrese Hartmann","location":"885 Abraham Heights","time":"2018-07-13T23:56:09.504Z","enrolled":69389,"book":"https://helga.biz","course_url":"https://rafael.org"},{"course_title":"Goldner - Von","course_number":36164,"instructor":"Jacklyn Crist","location":"2970 Matt Forges","time":"2018-07-14T16:58:15.824Z","enrolled":65889,"book":"https://lorenz.name","course_url":"http://camryn.biz"},{"course_title":"Mann Inc","course_number":78547,"instructor":"Tyrique Mills","location":"730 Hailee Mission","time":"2018-07-14T07:38:17.406Z","enrolled":62932,"book":"http://jessica.org","course_url":"https://vergie.name"},{"course_title":"Gislason, Rice and Dickinson","course_number":52130,"instructor":"Kelvin McDermott","location":"53337 Moen Streets","time":"2018-07-14T08:20:55.692Z","enrolled":91220,"book":"https://estelle.info","course_url":"https://katelin.org"},{"course_title":"Hermann - Sporer","course_number":35782,"instructor":"Rick Baumbach","location":"8121 Zachery Mill","time":"2018-07-14T10:53:30.003Z","enrolled":87268,"book":"https://jamarcus.name","course_url":"https://elmo.org"},{"course_title":"Lind LLC","course_number":20588,"instructor":"Margie Heathcote","location":"5313 Little Causeway","time":"2018-07-13T23:16:33.649Z","enrolled":62920,"book":"http://tracey.name","course_url":"http://cecilia.name"},{"course_title":"Kihn Inc","course_number":6475,"instructor":"Mauricio Bosco","location":"1082 Leland Vista","time":"2018-07-14T05:04:02.510Z","enrolled":56477,"book":"https://leonor.biz","course_url":"https://laverna.net"},{"course_title":"Renner, Bogan and Moore","course_number":61658,"instructor":"Sterling Thompson","location":"8663 Kolby Roads","time":"2018-07-13T23:16:19.847Z","enrolled":86339,"book":"https://dangelo.name","course_url":"http://michale.org"},{"course_title":"Wiza - Mayert","course_number":83510,"instructor":"Adelia Zieme","location":"036 Johan Isle","time":"2018-07-14T03:00:45.331Z","enrolled":56033,"book":"https://letitia.info","course_url":"http://yazmin.com"},{"course_title":"Windler and Sons","course_number":72351,"instructor":"Michael Brekke","location":"35376 Joannie Circles","time":"2018-07-14T20:13:54.459Z","enrolled":62037,"book":"https://lula.net","course_url":"https://kasey.info"},{"course_title":"Mayer LLC","course_number":28740,"instructor":"Cullen Medhurst","location":"5572 Keeling Fields","time":"2018-07-14T01:43:25.555Z","enrolled":69423,"book":"http://timothy.biz","course_url":"http://colten.info"},{"course_title":"Hermiston - Carter","course_number":50243,"instructor":"Waino Crona","location":"99006 Nikolas Center","time":"2018-07-14T14:20:25.814Z","enrolled":28548,"book":"https://laisha.name","course_url":"https://rhianna.info"},{"course_title":"Kuhn and Sons","course_number":81260,"instructor":"Annalise Dickinson","location":"4541 Jennifer Trail","time":"2018-07-14T00:26:52.383Z","enrolled":79199,"book":"http://shanna.info","course_url":"https://maegan.org"},{"course_title":"Anderson Group","course_number":72643,"instructor":"Zetta Howe","location":"092 Ullrich Fall","time":"2018-07-14T07:20:27.600Z","enrolled":18951,"book":"https://alanna.biz","course_url":"https://kellen.name"},{"course_title":"Wiza, Terry and Barrows","course_number":24613,"instructor":"Isobel Kling IV","location":"93004 Sporer Centers","time":"2018-07-14T09:41:03.189Z","enrolled":63547,"book":"http://eddie.net","course_url":"https://aditya.net"},{"course_title":"Kassulke, Streich and Greenfelder","course_number":20434,"instructor":"Viva Nader","location":"442 Gideon Lodge","time":"2018-07-14T17:49:00.744Z","enrolled":78067,"book":"http://eli.org","course_url":"https://marielle.name"},{"course_title":"Daugherty - Abshire","course_number":41941,"instructor":"Anthony Dach","location":"0681 Balistreri Park","time":"2018-07-14T08:05:42.845Z","enrolled":59951,"book":"https://haven.info","course_url":"https://jailyn.biz"},{"course_title":"Kertzmann and Sons","course_number":32891,"instructor":"Edgar Boyer","location":"895 Alvera Lake","time":"2018-07-14T20:03:35.287Z","enrolled":65469,"book":"https://thaddeus.info","course_url":"http://elton.org"},{"course_title":"Conn LLC","course_number":19994,"instructor":"Helmer Toy","location":"61338 Koepp Well","time":"2018-07-14T16:28:40.570Z","enrolled":34502,"book":"https://ned.com","course_url":"https://david.biz"},{"course_title":"Buckridge Group","course_number":62616,"instructor":"Mr. Weston Lakin","location":"7093 Andreanne Divide","time":"2018-07-14T00:12:28.320Z","enrolled":96698,"book":"http://efren.name","course_url":"http://river.org"},{"course_title":"Klocko - Hilll","course_number":57580,"instructor":"Mr. Haley Adams","location":"5792 Kevon View","time":"2018-07-14T03:33:17.569Z","enrolled":75257,"book":"https://elliott.org","course_url":"http://russel.org"},{"course_title":"Nitzsche, Lakin and Donnelly","course_number":84932,"instructor":"Daphne Hintz","location":"04556 Sabina Forks","time":"2018-07-14T15:01:52.217Z","enrolled":67267,"book":"http://cristina.com","course_url":"http://nicola.org"},{"course_title":"Fahey, Parker and Kuphal","course_number":6455,"instructor":"Antonio Lindgren","location":"5124 Brady Spur","time":"2018-07-14T15:50:06.427Z","enrolled":21887,"book":"https://kiel.com","course_url":"https://loy.name"},{"course_title":"Olson - Emard","course_number":90995,"instructor":"Carmela Bashirian","location":"031 Tillman Points","time":"2018-07-14T22:07:20.349Z","enrolled":56462,"book":"http://hazel.com","course_url":"http://vivian.com"},{"course_title":"Schneider, Mraz and Ortiz","course_number":2730,"instructor":"Oscar Kassulke","location":"8278 Cleta Knolls","time":"2018-07-14T13:07:27.392Z","enrolled":64163,"book":"http://ariel.net","course_url":"http://bonnie.name"},{"course_title":"Torp - Kohler","course_number":72272,"instructor":"Cole Harvey","location":"54439 Tom Lane","time":"2018-07-14T15:08:55.608Z","enrolled":42644,"book":"https://julius.net","course_url":"https://elmer.name"},{"course_title":"Braun, Feil and Thompson","course_number":40696,"instructor":"Vicky Mitchell","location":"849 Raven Well","time":"2018-07-14T13:17:35.606Z","enrolled":57858,"book":"http://dominique.net","course_url":"http://mireille.info"},{"course_title":"Torphy, Christiansen and Orn","course_number":94328,"instructor":"Miss Santino O'Hara","location":"4577 Miguel Turnpike","time":"2018-07-14T09:27:02.253Z","enrolled":86701,"book":"https://annabelle.name","course_url":"https://aubrey.com"},{"course_title":"Hermiston Inc","course_number":46747,"instructor":"Maurice Daniel","location":"6368 Haley Summit","time":"2018-07-14T18:38:41.443Z","enrolled":99622,"book":"https://broderick.biz","course_url":"http://colin.biz"},{"course_title":"Cartwright and Sons","course_number":99003,"instructor":"Gerda Ferry","location":"73485 Barrett Branch","time":"2018-07-14T14:37:28.486Z","enrolled":66485,"book":"http://shaniya.info","course_url":"https://zechariah.biz"},{"course_title":"Green - Pfannerstill","course_number":52900,"instructor":"Wilton Hills","location":"6215 Vernice Coves","time":"2018-07-14T16:32:22.141Z","enrolled":4126,"book":"http://dixie.name","course_url":"http://mikayla.name"},{"course_title":"Stanton LLC","course_number":28242,"instructor":"Jasper Conroy V","location":"1189 Joseph Prairie","time":"2018-07-14T06:27:44.018Z","enrolled":51757,"book":"https://austen.info","course_url":"http://camron.name"},{"course_title":"Prosacco - Towne","course_number":54020,"instructor":"Mrs. Roosevelt Sanford","location":"2662 Ollie Ford","time":"2018-07-14T16:32:54.901Z","enrolled":23544,"book":"https://roscoe.com","course_url":"http://mafalda.info"},{"course_title":"Armstrong LLC","course_number":69276,"instructor":"Sid Medhurst","location":"10481 Ryann Land","time":"2018-07-14T19:25:11.771Z","enrolled":86581,"book":"http://donny.biz","course_url":"http://flavie.name"},{"course_title":"Murphy Inc","course_number":88783,"instructor":"Carter Price","location":"257 Christina Fork","time":"2018-07-14T13:08:15.079Z","enrolled":5396,"book":"http://cecelia.name","course_url":"https://stefan.org"},{"course_title":"Herman and Sons","course_number":37586,"instructor":"Toy Dietrich","location":"571 Deshaun Ports","time":"2018-07-14T18:05:12.939Z","enrolled":97962,"book":"http://adrien.net","course_url":"https://winston.biz"},{"course_title":"Wilkinson, Barton and Gislason","course_number":98132,"instructor":"Clinton Dickens","location":"19872 Spencer Radial","time":"2018-07-14T16:15:20.446Z","enrolled":56843,"book":"https://edyth.name","course_url":"http://daniella.name"},{"course_title":"Lesch, Cole and Kuvalis","course_number":15542,"instructor":"Janae Schaefer","location":"5204 Isabella Shoal","time":"2018-07-14T14:50:40.239Z","enrolled":31915,"book":"https://alize.net","course_url":"http://brennon.name"},{"course_title":"Terry Inc","course_number":53975,"instructor":"Domenic Quigley","location":"7481 Krajcik Underpass","time":"2018-07-14T00:04:15.257Z","enrolled":43363,"book":"http://lera.net","course_url":"http://eddie.biz"},{"course_title":"Nitzsche, D'Amore and Kreiger","course_number":94569,"instructor":"Mrs. Amiya Feil","location":"0204 Corwin Isle","time":"2018-07-14T06:16:47.879Z","enrolled":99467,"book":"http://antoinette.info","course_url":"https://patsy.org"},{"course_title":"Lowe LLC","course_number":25879,"instructor":"Caroline Schmeler","location":"96876 Juliana Mountains","time":"2018-07-14T19:15:35.830Z","enrolled":74308,"book":"http://ignatius.org","course_url":"https://laurie.net"},{"course_title":"Jacobson, Hermiston and Hills","course_number":78248,"instructor":"Greg Beer","location":"42548 Modesta Tunnel","time":"2018-07-14T06:00:25.051Z","enrolled":96176,"book":"https://dax.biz","course_url":"http://kiana.name"},{"course_title":"Murazik Inc","course_number":18328,"instructor":"Laura Kiehn","location":"306 Jacquelyn Burgs","time":"2018-07-14T17:02:54.562Z","enrolled":53818,"book":"http://tyreek.com","course_url":"https://micheal.net"},{"course_title":"Bergnaum - Simonis","course_number":61703,"instructor":"Rollin Buckridge","location":"6639 Bernadine Spur","time":"2018-07-14T23:04:05.453Z","enrolled":4557,"book":"https://addie.name","course_url":"http://princess.org"},{"course_title":"Langworth, Hegmann and Mueller","course_number":67040,"instructor":"Ernest Orn","location":"6492 Tod Cape","time":"2018-07-14T07:59:12.674Z","enrolled":59183,"book":"http://camila.name","course_url":"http://brianne.com"},{"course_title":"Lubowitz, White and Conroy","course_number":37116,"instructor":"Violet Prohaska","location":"2389 Bauch Mission","time":"2018-07-14T11:55:59.855Z","enrolled":90937,"book":"https://abel.org","course_url":"http://milan.name"},{"course_title":"Powlowski - Gerlach","course_number":10370,"instructor":"Dr. Turner Hermiston","location":"0271 Abdul Village","time":"2018-07-14T02:08:40.344Z","enrolled":13154,"book":"https://cleta.biz","course_url":"https://clemens.net"},{"course_title":"Wunsch Group","course_number":98047,"instructor":"Erwin Collier","location":"63574 Lowe Points","time":"2018-07-14T20:10:23.961Z","enrolled":78880,"book":"https://marilou.net","course_url":"http://nya.biz"},{"course_title":"Koepp, Hackett and Goldner","course_number":82517,"instructor":"Roman Dietrich","location":"340 Casper Groves","time":"2018-07-14T00:57:32.651Z","enrolled":65765,"book":"http://marietta.net","course_url":"https://myrna.net"},{"course_title":"Dare, O'Kon and Wiza","course_number":16548,"instructor":"Jeramie Simonis","location":"539 Sawayn Meadows","time":"2018-07-14T06:42:06.978Z","enrolled":23143,"book":"https://anabel.info","course_url":"http://lysanne.com"},{"course_title":"Jacobi - Larson","course_number":57150,"instructor":"Ciara Schowalter","location":"77196 Mervin Glen","time":"2018-07-14T13:46:34.480Z","enrolled":42835,"book":"https://olen.net","course_url":"https://christy.info"},{"course_title":"Kohler and Sons","course_number":47121,"instructor":"Willis Grimes PhD","location":"45038 Schuster Views","time":"2018-07-14T21:55:39.467Z","enrolled":22648,"book":"http://gerda.com","course_url":"https://consuelo.net"},{"course_title":"O'Keefe, D'Amore and Kuhic","course_number":3644,"instructor":"Abe Stroman","location":"3302 Maximo Pass","time":"2018-07-14T09:47:17.646Z","enrolled":61805,"book":"http://mabelle.net","course_url":"http://kristin.com"},{"course_title":"Senger, Kovacek and Shields","course_number":44536,"instructor":"Elbert Spinka","location":"102 Cormier Springs","time":"2018-07-14T13:36:19.415Z","enrolled":45523,"book":"https://hyman.org","course_url":"https://felicity.net"},{"course_title":"Ward - Gutmann","course_number":80212,"instructor":"Audreanne Walsh","location":"6305 Narciso Walks","time":"2018-07-14T20:39:03.381Z","enrolled":92891,"book":"http://eula.biz","course_url":"http://vilma.com"},{"course_title":"Mertz, Macejkovic and Vandervort","course_number":97317,"instructor":"Flavie Kub","location":"558 Julian Mall","time":"2018-07-14T17:12:02.983Z","enrolled":37150,"book":"https://quincy.org","course_url":"https://avery.name"},{"course_title":"Hodkiewicz Group","course_number":45435,"instructor":"Rosanna O'Connell","location":"384 Turner Springs","time":"2018-07-14T23:06:21.966Z","enrolled":15853,"book":"http://ambrose.name","course_url":"https://wilford.biz"},{"course_title":"Mills Inc","course_number":42006,"instructor":"Arno Mosciski","location":"81062 Roberts Lake","time":"2018-07-14T11:46:11.778Z","enrolled":77632,"book":"https://wilburn.name","course_url":"http://madie.net"},{"course_title":"Moen, Lind and D'Amore","course_number":95478,"instructor":"Annalise Reilly V","location":"0402 Swift Heights","time":"2018-07-14T11:12:05.915Z","enrolled":21106,"book":"https://lester.info","course_url":"https://colt.name"},{"course_title":"Emmerich, Sipes and Wuckert","course_number":51350,"instructor":"Stewart Lesch","location":"5417 Hettie Springs","time":"2018-07-14T13:18:41.278Z","enrolled":29377,"book":"https://alberta.biz","course_url":"https://pascale.org"},{"course_title":"Harvey, Goyette and Bergnaum","course_number":95378,"instructor":"Rozella Hammes","location":"467 Cristobal Green","time":"2018-07-14T08:14:51.795Z","enrolled":78044,"book":"https://lexus.biz","course_url":"https://nicolette.biz"},{"course_title":"Leannon Inc","course_number":20279,"instructor":"Juwan Zulauf","location":"04521 Tyson Course","time":"2018-07-14T16:06:17.681Z","enrolled":6555,"book":"https://jaydon.org","course_url":"http://ian.biz"},{"course_title":"Mosciski - Crona","course_number":52971,"instructor":"David Muller I","location":"0684 Jerrold Coves","time":"2018-07-14T11:12:28.823Z","enrolled":71141,"book":"http://terence.info","course_url":"https://emery.org"},{"course_title":"Gerhold, West and Buckridge","course_number":33490,"instructor":"German Crooks","location":"3244 Nolan Springs","time":"2018-07-14T22:54:23.416Z","enrolled":35382,"book":"http://humberto.info","course_url":"http://jared.biz"},{"course_title":"Douglas - Gleichner","course_number":91678,"instructor":"Dee Breitenberg","location":"516 Zachery Club","time":"2018-07-14T22:34:26.215Z","enrolled":89608,"book":"https://alana.name","course_url":"http://elisa.com"},{"course_title":"Hermiston - Bradtke","course_number":50049,"instructor":"Talia Keeling","location":"11907 Jessica Crest","time":"2018-07-14T18:30:28.425Z","enrolled":77928,"book":"https://torrance.com","course_url":"https://lessie.info"},{"course_title":"Price - Wuckert","course_number":64814,"instructor":"Davonte Halvorson II","location":"677 Jeff Mews","time":"2018-07-14T09:50:45.009Z","enrolled":76313,"book":"https://javon.name","course_url":"http://murphy.name"},{"course_title":"Smith Group","course_number":27498,"instructor":"Pietro Pfeffer MD","location":"3092 McCullough Camp","time":"2018-07-14T21:49:17.862Z","enrolled":39853,"book":"http://tiffany.net","course_url":"http://chaya.net"},{"course_title":"Connelly - Rutherford","course_number":10309,"instructor":"Jo Cole","location":"006 Heaven Glen","time":"2018-07-14T14:03:57.006Z","enrolled":84391,"book":"https://quinten.biz","course_url":"https://scot.net"},{"course_title":"O'Keefe - Hoppe","course_number":34986,"instructor":"Ms. Dovie Turcotte","location":"78227 Pfeffer Walks","time":"2018-07-14T13:50:41.137Z","enrolled":63220,"book":"https://zackery.name","course_url":"https://clare.info"},{"course_title":"Renner LLC","course_number":92565,"instructor":"Mr. Zita Hansen","location":"919 Gutkowski Alley","time":"2018-07-14T12:07:22.755Z","enrolled":95621,"book":"http://unique.org","course_url":"http://lizeth.org"},{"course_title":"Ernser, Runte and McKenzie","course_number":57436,"instructor":"Scarlett Lynch","location":"43239 Kuhic Island","time":"2018-07-14T06:10:31.502Z","enrolled":76384,"book":"https://casimer.com","course_url":"https://jarod.name"},{"course_title":"Wisoky LLC","course_number":98577,"instructor":"Sharon Grady","location":"43214 Bergnaum Unions","time":"2018-07-14T07:30:34.130Z","enrolled":44475,"book":"https://earline.com","course_url":"http://brooke.org"},{"course_title":"Franecki Inc","course_number":48100,"instructor":"Garfield Kutch","location":"38086 Gleason Garden","time":"2018-07-14T06:29:14.225Z","enrolled":32186,"book":"https://kris.net","course_url":"http://kendra.com"},{"course_title":"Nitzsche and Sons","course_number":89495,"instructor":"Darwin Sauer III","location":"440 Bailey Place","time":"2018-07-14T03:38:43.491Z","enrolled":98852,"book":"http://gladys.net","course_url":"http://cortney.info"},{"course_title":"Fadel - Medhurst","course_number":40337,"instructor":"Francesco Kihn","location":"100 Kiehn Circle","time":"2018-07-14T08:30:30.275Z","enrolled":57606,"book":"https://jordi.com","course_url":"http://jody.info"},{"course_title":"Blanda - Kutch","course_number":89266,"instructor":"Kaylah Bernier","location":"641 Winston Trail","time":"2018-07-14T05:47:16.793Z","enrolled":59284,"book":"https://reymundo.org","course_url":"https://may.biz"},{"course_title":"Schroeder, Reichel and Weimann","course_number":52184,"instructor":"Esther Hauck","location":"337 Rohan Overpass","time":"2018-07-14T12:36:20.789Z","enrolled":26149,"book":"https://eloise.net","course_url":"https://daniella.com"},{"course_title":"Leuschke - Gusikowski","course_number":83782,"instructor":"Thurman Ferry","location":"46865 Houston Extensions","time":"2018-07-14T05:25:31.610Z","enrolled":43301,"book":"https://juwan.info","course_url":"https://zackery.info"},{"course_title":"Bradtke - Ebert","course_number":71278,"instructor":"Rae Ryan","location":"138 Edwardo Roads","time":"2018-07-14T15:36:02.501Z","enrolled":46281,"book":"http://misty.biz","course_url":"https://connor.info"},{"course_title":"Hamill and Sons","course_number":92673,"instructor":"Daniela Kuhlman","location":"24515 Gulgowski Lodge","time":"2018-07-14T01:05:16.404Z","enrolled":25221,"book":"https://gregg.name","course_url":"http://ronaldo.net"},{"course_title":"Brekke - Kuphal","course_number":39287,"instructor":"Jasper Koepp","location":"23436 Broderick Ridges","time":"2018-07-14T07:33:18.049Z","enrolled":17116,"book":"https://delores.info","course_url":"https://ofelia.name"},{"course_title":"Green - Langosh","course_number":5144,"instructor":"Mrs. Fredrick Willms","location":"36670 Marvin Pine","time":"2018-07-14T17:07:14.564Z","enrolled":47279,"book":"https://edyth.org","course_url":"http://claudine.net"},{"course_title":"Effertz LLC","course_number":56092,"instructor":"Gene Wilkinson III","location":"53017 Alfredo Pine","time":"2018-07-14T03:26:22.479Z","enrolled":23681,"book":"http://stephen.com","course_url":"http://pietro.biz"},{"course_title":"Wilderman, Howe and Yundt","course_number":61319,"instructor":"Lola Schuppe","location":"8331 Kaycee Manor","time":"2018-07-14T19:43:36.453Z","enrolled":9324,"book":"https://annie.com","course_url":"http://aidan.com"},{"course_title":"Graham LLC","course_number":7084,"instructor":"Domenica Batz","location":"71414 Tillman Parkway","time":"2018-07-13T23:42:18.146Z","enrolled":85494,"book":"https://javon.biz","course_url":"http://royce.biz"},{"course_title":"Harvey Inc","course_number":38461,"instructor":"Dessie Donnelly II","location":"83709 Auer Mount","time":"2018-07-14T21:33:31.058Z","enrolled":90537,"book":"http://theresia.org","course_url":"http://constantin.net"},{"course_title":"Dare Inc","course_number":68031,"instructor":"Miss Vella Lindgren","location":"0290 Rogers Overpass","time":"2018-07-14T00:53:50.780Z","enrolled":9467,"book":"https://lila.com","course_url":"http://micaela.com"},{"course_title":"Kshlerin - Bruen","course_number":84840,"instructor":"Liana Barrows","location":"4404 Brooke Passage","time":"2018-07-14T04:21:15.254Z","enrolled":99833,"book":"http://lucinda.info","course_url":"http://matilda.org"},{"course_title":"Monahan, Schaefer and Cassin","course_number":76094,"instructor":"Savannah Kiehn","location":"577 Amparo Radial","time":"2018-07-14T02:51:43.926Z","enrolled":48809,"book":"https://cleo.info","course_url":"http://elda.org"},{"course_title":"Mueller, Dare and Beier","course_number":18506,"instructor":"Cortez Miller","location":"35898 Mavis Spurs","time":"2018-07-14T22:26:15.971Z","enrolled":59784,"book":"https://katheryn.name","course_url":"https://peyton.info"},{"course_title":"Block - Kunze","course_number":11837,"instructor":"Oleta Powlowski","location":"34093 Amanda Shoals","time":"2018-07-14T00:03:43.334Z","enrolled":30089,"book":"http://roel.net","course_url":"https://brigitte.net"},{"course_title":"Sauer - Krajcik","course_number":93746,"instructor":"Tania Ferry","location":"71961 Cummings Parkways","time":"2018-07-14T16:51:37.948Z","enrolled":85151,"book":"https://amani.org","course_url":"https://judy.info"},{"course_title":"Boyer, Wisoky and Swift","course_number":11253,"instructor":"Lola Runte Jr.","location":"187 Donato Terrace","time":"2018-07-14T08:15:21.323Z","enrolled":4955,"book":"https://luna.name","course_url":"https://wellington.com"},{"course_title":"Jakubowski - Nader","course_number":54173,"instructor":"Ms. Ramon Shanahan","location":"31409 Stoltenberg Mountains","time":"2018-07-14T14:19:00.772Z","enrolled":41999,"book":"http://noelia.biz","course_url":"https://carmelo.name"},{"course_title":"Bednar, Kuhn and Nolan","course_number":94965,"instructor":"Rodger Schaefer Sr.","location":"484 Yadira Center","time":"2018-07-14T22:57:53.369Z","enrolled":42330,"book":"http://krystel.com","course_url":"http://roel.net"},{"course_title":"Bogan - McCullough","course_number":99640,"instructor":"Earline Kassulke","location":"4782 Daphne Locks","time":"2018-07-14T08:30:28.067Z","enrolled":24852,"book":"https://kelton.info","course_url":"http://aylin.org"},{"course_title":"Bosco - Weissnat","course_number":35810,"instructor":"Marcos O'Kon","location":"62014 Tevin Hill","time":"2018-07-14T14:59:21.154Z","enrolled":84937,"book":"https://amy.biz","course_url":"https://lillian.com"},{"course_title":"Botsford - Sanford","course_number":38921,"instructor":"Reyna Stiedemann","location":"08273 Kohler Bypass","time":"2018-07-14T20:53:24.479Z","enrolled":63090,"book":"http://pasquale.org","course_url":"https://walton.com"},{"course_title":"Stehr - Upton","course_number":21491,"instructor":"Miss Garnet Lowe","location":"08533 Aylin Knoll","time":"2018-07-14T10:49:06.841Z","enrolled":65010,"book":"https://marquise.net","course_url":"http://taryn.org"},{"course_title":"Cruickshank, Corkery and Dibbert","course_number":29064,"instructor":"Stella Schiller","location":"09132 Powlowski Plaza","time":"2018-07-13T23:52:09.746Z","enrolled":87410,"book":"https://brooks.name","course_url":"https://precious.info"},{"course_title":"Terry - VonRueden","course_number":78595,"instructor":"Marilie Sporer","location":"894 Jeffrey Causeway","time":"2018-07-14T12:08:47.812Z","enrolled":12981,"book":"https://aaliyah.com","course_url":"http://bruce.com"},{"course_title":"Koss LLC","course_number":14658,"instructor":"Mohammad Windler","location":"9762 Jeff Circles","time":"2018-07-14T17:43:58.353Z","enrolled":81574,"book":"http://isabel.net","course_url":"https://emil.org"},{"course_title":"Waters and Sons","course_number":75932,"instructor":"Darian Zboncak","location":"54853 Olson Isle","time":"2018-07-14T19:58:05.853Z","enrolled":50198,"book":"http://tristin.net","course_url":"http://kelsie.net"},{"course_title":"O'Reilly, Rice and Mann","course_number":53932,"instructor":"Frederik Ankunding","location":"24736 Gottlieb Ports","time":"2018-07-14T20:48:45.945Z","enrolled":57538,"book":"https://loy.org","course_url":"https://ellsworth.org"},{"course_title":"Abshire - Schmitt","course_number":7519,"instructor":"Dave McLaughlin","location":"86210 Marvin Branch","time":"2018-07-14T22:18:43.534Z","enrolled":2512,"book":"http://dejon.info","course_url":"https://zion.org"},{"course_title":"Ruecker, Rolfson and Schuppe","course_number":94757,"instructor":"Ashley Frami","location":"78045 Hassan Pine","time":"2018-07-14T05:03:03.709Z","enrolled":57920,"book":"http://blaze.biz","course_url":"https://heloise.net"},{"course_title":"Crooks - Williamson","course_number":20228,"instructor":"Tristian Krajcik DVM","location":"57989 Greenholt Viaduct","time":"2018-07-14T11:27:42.046Z","enrolled":49308,"book":"http://fabian.biz","course_url":"http://murphy.info"},{"course_title":"DuBuque and Sons","course_number":11845,"instructor":"Tom Batz","location":"81388 VonRueden Mall","time":"2018-07-14T08:59:23.237Z","enrolled":17934,"book":"http://alexandro.net","course_url":"https://rebeca.org"},{"course_title":"Cormier, Toy and Gorczany","course_number":76837,"instructor":"Jonas Runolfsson","location":"4252 Mante Glen","time":"2018-07-14T10:24:20.922Z","enrolled":5647,"book":"https://orlando.com","course_url":"http://virgil.info"},{"course_title":"Schinner Group","course_number":95588,"instructor":"Ayden Morar","location":"2242 Lazaro Branch","time":"2018-07-14T09:45:16.998Z","enrolled":3648,"book":"http://helga.biz","course_url":"http://walton.info"},{"course_title":"Rogahn Inc","course_number":54790,"instructor":"Anastacio Jast","location":"184 Yasmine Circles","time":"2018-07-14T19:59:55.028Z","enrolled":65740,"book":"https://carroll.org","course_url":"https://vernice.info"},{"course_title":"Blick, Bayer and Koelpin","course_number":32306,"instructor":"Cleo Leannon","location":"855 Kozey Place","time":"2018-07-14T19:39:02.254Z","enrolled":39125,"book":"http://jett.biz","course_url":"https://evalyn.info"},{"course_title":"Corkery, Morissette and O'Kon","course_number":455,"instructor":"Irving Cassin","location":"5436 Lakin Fields","time":"2018-07-14T16:28:50.893Z","enrolled":8449,"book":"https://nia.net","course_url":"http://kenna.com"},{"course_title":"Walsh - O'Keefe","course_number":55687,"instructor":"Branson Simonis I","location":"985 Olen Flat","time":"2018-07-14T21:53:21.122Z","enrolled":40346,"book":"https://marilou.net","course_url":"https://susie.name"},{"course_title":"Metz, Block and Cummings","course_number":33546,"instructor":"Darren Dare","location":"9059 Price Center","time":"2018-07-14T21:25:30.244Z","enrolled":80862,"book":"http://stewart.name","course_url":"http://audra.net"},{"course_title":"Treutel, Ritchie and Schuppe","course_number":9574,"instructor":"Westley Kassulke","location":"1959 Koss Bridge","time":"2018-07-14T01:47:57.138Z","enrolled":78611,"book":"http://trisha.biz","course_url":"https://cleveland.org"},{"course_title":"Bradtke LLC","course_number":95024,"instructor":"Mathilde Shields","location":"149 Schmidt Junction","time":"2018-07-14T07:15:08.065Z","enrolled":47080,"book":"https://cyrus.info","course_url":"https://rigoberto.biz"},{"course_title":"Towne, Huel and Wilkinson","course_number":65647,"instructor":"Deborah Schroeder","location":"201 Van Square","time":"2018-07-13T23:17:27.063Z","enrolled":22791,"book":"https://maiya.org","course_url":"https://rhett.biz"},{"course_title":"Streich - Waters","course_number":9476,"instructor":"Dante Batz","location":"0493 Jevon Loop","time":"2018-07-14T04:36:59.000Z","enrolled":17812,"book":"https://lily.com","course_url":"https://marisol.info"},{"course_title":"Harber, Brakus and Schamberger","course_number":58807,"instructor":"Connie Zieme","location":"82278 Goodwin Gateway","time":"2018-07-14T09:06:36.878Z","enrolled":94458,"book":"https://berry.org","course_url":"https://russel.org"},{"course_title":"Hettinger - Johnston","course_number":81503,"instructor":"Amos Botsford","location":"427 Bednar Groves","time":"2018-07-13T23:17:12.514Z","enrolled":43742,"book":"http://arvid.com","course_url":"http://benedict.biz"},{"course_title":"Keeling, Cronin and Moen","course_number":84597,"instructor":"Emiliano Jakubowski","location":"66236 Schuppe Park","time":"2018-07-14T03:43:12.399Z","enrolled":28358,"book":"http://randi.org","course_url":"https://cornell.biz"},{"course_title":"Koepp, Pollich and Cummings","course_number":13528,"instructor":"Emory Harber","location":"93485 Bo Causeway","time":"2018-07-14T14:18:35.364Z","enrolled":11284,"book":"http://daniela.net","course_url":"http://keanu.info"},{"course_title":"Tillman - Rau","course_number":98778,"instructor":"Joany Fisher","location":"00720 Fannie Harbors","time":"2018-07-14T12:09:46.289Z","enrolled":32890,"book":"http://jackson.org","course_url":"http://amya.net"},{"course_title":"Schamberger - Mills","course_number":16150,"instructor":"Julianne Gerhold","location":"444 Ian Canyon","time":"2018-07-14T14:38:19.604Z","enrolled":29435,"book":"http://fabiola.name","course_url":"https://solon.name"},{"course_title":"Ebert - Zboncak","course_number":85797,"instructor":"Edwardo Raynor","location":"25939 Grady Villages","time":"2018-07-14T12:36:35.875Z","enrolled":62045,"book":"http://tomas.info","course_url":"https://dylan.name"},{"course_title":"Runte Group","course_number":69238,"instructor":"Buddy Miller","location":"5201 Hassan Place","time":"2018-07-14T21:35:25.376Z","enrolled":62106,"book":"http://gabrielle.name","course_url":"http://karson.org"},{"course_title":"Lynch LLC","course_number":33734,"instructor":"Jackson Wolff","location":"640 Tillman Stravenue","time":"2018-07-14T06:32:37.227Z","enrolled":98586,"book":"https://elissa.name","course_url":"https://laurie.name"},{"course_title":"Green, Wisozk and Jenkins","course_number":29335,"instructor":"Priscilla Smitham","location":"6673 Saul Alley","time":"2018-07-14T21:27:47.287Z","enrolled":81362,"book":"http://ashtyn.info","course_url":"https://noah.org"},{"course_title":"Jacobson - Friesen","course_number":62814,"instructor":"Glen Ziemann","location":"56103 Maybell Ridges","time":"2018-07-14T03:26:04.134Z","enrolled":30673,"book":"http://margot.biz","course_url":"https://johathan.biz"},{"course_title":"Strosin, Witting and Beer","course_number":60479,"instructor":"Alexys Kuhn","location":"277 Otha Crest","time":"2018-07-14T00:34:17.502Z","enrolled":34548,"book":"http://toni.org","course_url":"https://josefa.com"},{"course_title":"Dare, Ondricka and Satterfield","course_number":41132,"instructor":"Krystal Schowalter","location":"3754 Sabina Flat","time":"2018-07-14T17:43:43.883Z","enrolled":59380,"book":"https://eulalia.biz","course_url":"http://kayli.info"},{"course_title":"Shields, Bradtke and Zieme","course_number":4234,"instructor":"Liliana O'Hara","location":"18476 Colt Heights","time":"2018-07-13T23:55:34.620Z","enrolled":81625,"book":"https://madge.name","course_url":"https://sandrine.biz"},{"course_title":"O'Conner Inc","course_number":88587,"instructor":"Ramona Bayer","location":"21724 McGlynn Forge","time":"2018-07-14T02:01:39.348Z","enrolled":43320,"book":"http://trystan.name","course_url":"http://lily.net"},{"course_title":"Reichert LLC","course_number":94343,"instructor":"Mrs. Jackson Prohaska","location":"71339 Trisha Estate","time":"2018-07-14T15:03:41.547Z","enrolled":91610,"book":"http://corene.name","course_url":"http://opal.net"},{"course_title":"Ebert Group","course_number":5861,"instructor":"Ms. Pete Rath","location":"0333 Sipes Common","time":"2018-07-14T06:16:08.741Z","enrolled":26848,"book":"https://garrett.net","course_url":"https://theron.org"},{"course_title":"Wolff, Lockman and Donnelly","course_number":40010,"instructor":"Twila Morissette","location":"414 Daniel Wall","time":"2018-07-14T11:40:40.332Z","enrolled":26386,"book":"https://collin.com","course_url":"http://simone.net"},{"course_title":"Eichmann - Reinger","course_number":28991,"instructor":"Missouri Olson","location":"42639 Swift Ranch","time":"2018-07-14T08:24:07.128Z","enrolled":8843,"book":"https://garland.info","course_url":"http://weldon.info"},{"course_title":"Tromp, Nienow and Moore","course_number":3614,"instructor":"Joanie Feest","location":"451 Audreanne Junction","time":"2018-07-14T11:35:10.583Z","enrolled":5385,"book":"http://vernon.com","course_url":"https://brendan.com"},{"course_title":"Carroll - Wolff","course_number":17626,"instructor":"Miss Izabella Padberg","location":"085 Streich Plaza","time":"2018-07-14T11:30:51.302Z","enrolled":50985,"book":"http://dee.org","course_url":"http://hershel.name"},{"course_title":"Bergstrom - Hayes","course_number":62332,"instructor":"Alexane Stokes DVM","location":"9561 Clint Center","time":"2018-07-14T06:19:42.790Z","enrolled":60252,"book":"https://dorthy.biz","course_url":"https://jazlyn.name"},{"course_title":"Runte Inc","course_number":487,"instructor":"Selina Prosacco","location":"9110 Louisa Glens","time":"2018-07-14T10:28:05.892Z","enrolled":2921,"book":"https://myron.net","course_url":"http://kendra.biz"},{"course_title":"Ziemann - Hermann","course_number":92899,"instructor":"Maggie Robel","location":"060 Terry Mission","time":"2018-07-14T18:03:23.163Z","enrolled":28498,"book":"http://stacy.biz","course_url":"http://devan.org"},{"course_title":"Frami - Cassin","course_number":17938,"instructor":"Tom Bashirian","location":"23509 Jordane Causeway","time":"2018-07-14T06:28:21.757Z","enrolled":93111,"book":"http://esmeralda.org","course_url":"http://karl.biz"},{"course_title":"Brekke - Steuber","course_number":13521,"instructor":"Ryder Kreiger","location":"2502 Reynolds Rue","time":"2018-07-14T10:26:24.149Z","enrolled":20564,"book":"http://ansel.name","course_url":"http://iva.com"},{"course_title":"Armstrong - Harvey","course_number":43415,"instructor":"Linda Hauck","location":"9352 Schiller Centers","time":"2018-07-14T07:17:36.897Z","enrolled":50185,"book":"https://lafayette.org","course_url":"http://ismael.info"},{"course_title":"Senger, Kunze and Stracke","course_number":33028,"instructor":"Emery Prohaska","location":"68607 Abernathy Branch","time":"2018-07-14T00:34:27.977Z","enrolled":74736,"book":"http://alexander.biz","course_url":"https://jaquelin.net"},{"course_title":"Dickinson - Wehner","course_number":62381,"instructor":"Cleta Turcotte","location":"9734 Eli Manor","time":"2018-07-14T13:49:02.673Z","enrolled":78945,"book":"http://aleen.org","course_url":"https://waldo.name"},{"course_title":"Crona - Lang","course_number":39255,"instructor":"Kathleen Christiansen","location":"80166 Gerlach Prairie","time":"2018-07-14T17:09:16.763Z","enrolled":28428,"book":"http://michaela.name","course_url":"https://adelbert.org"},{"course_title":"Pagac Inc","course_number":16028,"instructor":"Orland Bechtelar","location":"56860 Imogene Rest","time":"2018-07-14T15:53:44.597Z","enrolled":65095,"book":"https://bertha.com","course_url":"http://emelie.biz"},{"course_title":"Fadel - Botsford","course_number":43232,"instructor":"Kathryne Fadel","location":"5914 Astrid Motorway","time":"2018-07-14T17:34:34.500Z","enrolled":23288,"book":"https://deshaun.org","course_url":"http://hallie.info"},{"course_title":"Eichmann, Hagenes and Armstrong","course_number":1417,"instructor":"Retta Prosacco","location":"4168 Kreiger Trail","time":"2018-07-14T01:22:26.645Z","enrolled":90379,"book":"https://kelli.biz","course_url":"http://kenton.net"},{"course_title":"Carroll - Dicki","course_number":63774,"instructor":"Brennon Sawayn","location":"21444 Bogan Ports","time":"2018-07-14T09:39:56.506Z","enrolled":66638,"book":"https://maximo.info","course_url":"http://shany.info"},{"course_title":"Roberts - Walter","course_number":67581,"instructor":"Mckayla Friesen","location":"9750 Kutch Terrace","time":"2018-07-14T05:21:19.436Z","enrolled":10821,"book":"http://shanie.name","course_url":"https://lizeth.name"},{"course_title":"Gulgowski and Sons","course_number":4420,"instructor":"Harley Ondricka II","location":"927 Quigley Manors","time":"2018-07-14T00:39:43.089Z","enrolled":72277,"book":"http://patsy.biz","course_url":"https://mariane.net"},{"course_title":"Farrell LLC","course_number":66978,"instructor":"Mya Marks Jr.","location":"47945 Roob Inlet","time":"2018-07-14T05:13:39.205Z","enrolled":40442,"book":"http://jenifer.biz","course_url":"http://gordon.info"},{"course_title":"Senger, Pfannerstill and Bartoletti","course_number":23208,"instructor":"Layne Kovacek","location":"8640 Homenick Road","time":"2018-07-14T15:06:06.610Z","enrolled":46779,"book":"http://rosario.name","course_url":"https://bobbie.name"},{"course_title":"Stehr LLC","course_number":3465,"instructor":"Hardy Will","location":"60738 Ari Court","time":"2018-07-14T10:06:14.484Z","enrolled":9402,"book":"https://agustin.info","course_url":"https://antonietta.org"},{"course_title":"Blanda Inc","course_number":21987,"instructor":"Calista Borer","location":"57788 Davion Junction","time":"2018-07-14T13:25:21.380Z","enrolled":40005,"book":"http://elouise.com","course_url":"http://tia.biz"},{"course_title":"Hettinger, Willms and Little","course_number":50133,"instructor":"Jason Powlowski","location":"11298 Murazik Underpass","time":"2018-07-14T21:44:32.903Z","enrolled":43956,"book":"https://eldridge.biz","course_url":"http://krystina.info"},{"course_title":"Mann - Fisher","course_number":21841,"instructor":"Mayra Dare","location":"3781 Cremin Dale","time":"2018-07-14T18:20:46.055Z","enrolled":30635,"book":"http://lizeth.org","course_url":"http://vanessa.net"},{"course_title":"Bednar, Cremin and Blanda","course_number":41420,"instructor":"Erna Kozey DDS","location":"63412 Lorine Turnpike","time":"2018-07-14T04:50:03.249Z","enrolled":47369,"book":"https://trycia.org","course_url":"https://sylvester.org"},{"course_title":"Cummings, Harvey and Doyle","course_number":71909,"instructor":"Tate Streich","location":"698 Batz Plain","time":"2018-07-14T01:05:31.840Z","enrolled":95627,"book":"http://lessie.net","course_url":"https://pierre.biz"},{"course_title":"Mante, Goldner and Sipes","course_number":80310,"instructor":"Bill Murphy","location":"377 Jonas Coves","time":"2018-07-14T00:14:16.180Z","enrolled":34290,"book":"http://lavada.name","course_url":"http://mohamed.net"},{"course_title":"West and Sons","course_number":2143,"instructor":"Antone Balistreri","location":"34227 Yazmin Turnpike","time":"2018-07-14T07:04:02.805Z","enrolled":39734,"book":"http://eula.com","course_url":"http://antonia.org"},{"course_title":"Hoeger LLC","course_number":38288,"instructor":"Shawna Mante","location":"35202 Gianni Tunnel","time":"2018-07-14T20:25:31.535Z","enrolled":90933,"book":"https://marcia.com","course_url":"https://roman.info"},{"course_title":"Stiedemann Group","course_number":72289,"instructor":"Robyn Wilkinson","location":"37854 Stroman Corners","time":"2018-07-14T14:08:23.112Z","enrolled":50996,"book":"https://serena.name","course_url":"https://allison.biz"},{"course_title":"Crooks, Greenfelder and Hand","course_number":33852,"instructor":"Verda Langosh","location":"90168 Lockman River","time":"2018-07-14T05:07:26.096Z","enrolled":37065,"book":"http://dane.com","course_url":"https://helen.com"},{"course_title":"Kiehn, Spinka and Pfannerstill","course_number":27117,"instructor":"Stacey Schulist","location":"4823 Funk Tunnel","time":"2018-07-14T22:40:48.238Z","enrolled":23382,"book":"https://reyna.net","course_url":"http://adrien.name"},{"course_title":"Howell, Lueilwitz and Gusikowski","course_number":70418,"instructor":"Oswald Kerluke","location":"05664 Freeda Extensions","time":"2018-07-14T12:11:31.440Z","enrolled":8358,"book":"https://lucious.info","course_url":"http://rodrick.net"},{"course_title":"Lubowitz Group","course_number":80887,"instructor":"Grace Murray","location":"0630 Santino Islands","time":"2018-07-14T19:04:44.288Z","enrolled":18668,"book":"https://tyreek.com","course_url":"https://derick.com"},{"course_title":"Stanton Inc","course_number":56718,"instructor":"Angelo Leannon","location":"553 Feil Lake","time":"2018-07-14T08:53:59.128Z","enrolled":19210,"book":"https://christ.info","course_url":"http://adrain.com"},{"course_title":"Wisozk, Goodwin and Barton","course_number":85079,"instructor":"Andre Steuber","location":"6389 Ashton Trafficway","time":"2018-07-14T07:48:10.227Z","enrolled":11386,"book":"http://damien.biz","course_url":"https://crystel.com"},{"course_title":"Conn, Conn and Haag","course_number":62181,"instructor":"Dillon Sauer","location":"35725 Blake Court","time":"2018-07-14T22:21:17.938Z","enrolled":44463,"book":"https://alyson.info","course_url":"https://richmond.net"},{"course_title":"Douglas - Rodriguez","course_number":24029,"instructor":"Conrad Roberts","location":"0260 Casper Key","time":"2018-07-14T20:23:31.921Z","enrolled":90607,"book":"http://adriana.biz","course_url":"https://jeramy.biz"},{"course_title":"Swaniawski, Schuppe and Nader","course_number":67097,"instructor":"Scot Schuppe","location":"93570 Stehr Mission","time":"2018-07-14T01:34:21.120Z","enrolled":16960,"book":"http://lola.info","course_url":"http://reed.info"},{"course_title":"Adams LLC","course_number":23515,"instructor":"Marjory Jast","location":"6249 Simonis Parkways","time":"2018-07-13T23:19:29.819Z","enrolled":80815,"book":"https://rylan.com","course_url":"https://colby.name"},{"course_title":"Bins Inc","course_number":5196,"instructor":"Magnus Torp","location":"89492 Albin Squares","time":"2018-07-14T19:05:04.330Z","enrolled":71938,"book":"http://emie.org","course_url":"http://frances.name"},{"course_title":"Hauck, Stokes and Greenfelder","course_number":13721,"instructor":"Henriette Nader","location":"572 Nellie Turnpike","time":"2018-07-14T19:17:27.439Z","enrolled":18648,"book":"http://kieran.info","course_url":"http://ezra.com"},{"course_title":"Legros, Parker and Schimmel","course_number":20252,"instructor":"Raegan Reichert","location":"8898 Nicholas Brooks","time":"2018-07-14T20:02:34.770Z","enrolled":94681,"book":"https://valentin.info","course_url":"http://christophe.biz"},{"course_title":"Schoen Inc","course_number":40390,"instructor":"Leora Senger","location":"258 Howell Estate","time":"2018-07-14T02:15:27.833Z","enrolled":43475,"book":"http://kendra.com","course_url":"https://isadore.org"},{"course_title":"Rogahn LLC","course_number":23968,"instructor":"Ms. Zola Oberbrunner","location":"95426 Schamberger Cliffs","time":"2018-07-14T19:14:09.728Z","enrolled":19373,"book":"https://nikko.com","course_url":"https://rosalind.info"},{"course_title":"Wintheiser - Cassin","course_number":70110,"instructor":"Emmanuelle Bergnaum","location":"0937 Leuschke Port","time":"2018-07-14T14:07:40.868Z","enrolled":90940,"book":"https://torrance.org","course_url":"https://stanford.biz"},{"course_title":"Roberts, Crooks and O'Reilly","course_number":46155,"instructor":"Dena Schoen","location":"97352 Cody Islands","time":"2018-07-14T15:01:05.872Z","enrolled":42694,"book":"http://kaela.com","course_url":"https://carey.info"},{"course_title":"Mayert LLC","course_number":55275,"instructor":"Eldora Bernier","location":"23369 Kaley Mall","time":"2018-07-14T06:12:26.957Z","enrolled":21910,"book":"https://marjolaine.net","course_url":"https://mitchell.com"},{"course_title":"Bailey, Reynolds and Bahringer","course_number":95596,"instructor":"Elmore Zemlak IV","location":"220 Daniel Cape","time":"2018-07-14T05:24:15.007Z","enrolled":22141,"book":"https://alene.biz","course_url":"http://waldo.biz"},{"course_title":"Runolfsson, Roob and Turcotte","course_number":557,"instructor":"Cornelius Harber","location":"0220 Evalyn Square","time":"2018-07-14T10:58:09.283Z","enrolled":56702,"book":"http://bret.net","course_url":"https://magdalena.info"},{"course_title":"Kris, Gleichner and VonRueden","course_number":55794,"instructor":"Kamron Skiles","location":"98011 Wehner Crossroad","time":"2018-07-14T11:40:06.134Z","enrolled":9696,"book":"https://matt.name","course_url":"http://haley.net"},{"course_title":"Murazik Inc","course_number":29768,"instructor":"Cassandra Rodriguez","location":"5251 Jaskolski Corner","time":"2018-07-14T03:24:59.919Z","enrolled":91719,"book":"http://rudy.com","course_url":"http://alvera.com"},{"course_title":"Monahan Group","course_number":1805,"instructor":"Creola Emmerich","location":"17841 Hermiston Turnpike","time":"2018-07-14T21:16:32.392Z","enrolled":74070,"book":"http://janiya.org","course_url":"http://dolly.info"},{"course_title":"Ebert, Daugherty and Nolan","course_number":60119,"instructor":"Ewell Kovacek","location":"90839 Judd Brooks","time":"2018-07-14T01:02:23.037Z","enrolled":96722,"book":"https://jaeden.org","course_url":"https://ollie.net"},{"course_title":"Bayer Inc","course_number":73800,"instructor":"Willa Johnston","location":"64096 Alexandre Center","time":"2018-07-13T23:59:19.301Z","enrolled":36582,"book":"http://susana.org","course_url":"https://judd.info"},{"course_title":"Reinger, Pfannerstill and Reichel","course_number":81031,"instructor":"Miss Aniyah Jacobson","location":"9405 Kulas Mews","time":"2018-07-14T08:42:03.795Z","enrolled":39953,"book":"https://sebastian.info","course_url":"http://shany.info"},{"course_title":"Hane LLC","course_number":45469,"instructor":"Ali Swaniawski","location":"93760 Bill Brook","time":"2018-07-14T17:56:49.838Z","enrolled":84671,"book":"http://luna.org","course_url":"http://carson.com"},{"course_title":"Prosacco - Rosenbaum","course_number":15691,"instructor":"Tania Hilpert","location":"7640 Hartmann Cliffs","time":"2018-07-14T21:58:54.157Z","enrolled":11134,"book":"https://terry.name","course_url":"http://bell.info"},{"course_title":"Gislason - Greenholt","course_number":18413,"instructor":"Keshawn Gusikowski","location":"592 Parisian Wells","time":"2018-07-14T02:11:12.805Z","enrolled":55232,"book":"https://uriel.net","course_url":"https://craig.info"},{"course_title":"Schimmel Inc","course_number":70570,"instructor":"Karen Kuhic","location":"1835 Prohaska Lakes","time":"2018-07-14T16:13:31.614Z","enrolled":86172,"book":"https://sabrina.info","course_url":"http://abner.com"},{"course_title":"Koch - Donnelly","course_number":59699,"instructor":"Raleigh Durgan","location":"0526 Kaitlyn Drives","time":"2018-07-14T06:09:56.804Z","enrolled":65033,"book":"https://tyson.org","course_url":"http://annabelle.info"},{"course_title":"Von Group","course_number":58396,"instructor":"Marianne Brekke","location":"918 Gorczany Falls","time":"2018-07-14T12:52:48.558Z","enrolled":77823,"book":"https://vickie.info","course_url":"https://salma.org"},{"course_title":"Boyer and Sons","course_number":23453,"instructor":"Ms. Cierra Huel","location":"603 Lindsey Divide","time":"2018-07-14T01:06:34.094Z","enrolled":49020,"book":"https://garrick.name","course_url":"https://abbey.name"},{"course_title":"Wiegand and Sons","course_number":70795,"instructor":"Vicente Ortiz","location":"21029 King Motorway","time":"2018-07-14T21:39:12.240Z","enrolled":33662,"book":"http://aurelie.com","course_url":"https://ressie.info"},{"course_title":"Bashirian Group","course_number":18701,"instructor":"Blanca Kihn","location":"0318 Kertzmann Knolls","time":"2018-07-14T11:48:10.343Z","enrolled":9256,"book":"http://tobin.com","course_url":"http://thad.org"},{"course_title":"Christiansen, Kub and Cummerata","course_number":40246,"instructor":"Evans Herman PhD","location":"33394 Benedict Lodge","time":"2018-07-14T18:56:42.672Z","enrolled":91177,"book":"https://joshua.net","course_url":"https://jaqueline.net"},{"course_title":"Pagac, Hodkiewicz and Bernier","course_number":99721,"instructor":"Erich Schmitt","location":"124 Magnolia Summit","time":"2018-07-13T23:28:30.718Z","enrolled":85358,"book":"https://oliver.biz","course_url":"http://sophie.name"},{"course_title":"Schroeder - Rempel","course_number":18732,"instructor":"Gertrude Gleichner","location":"9216 Crist Ramp","time":"2018-07-14T07:26:26.385Z","enrolled":13861,"book":"http://waldo.biz","course_url":"https://bobbie.org"},{"course_title":"Leuschke, Kessler and Schuppe","course_number":59787,"instructor":"Noelia Williamson","location":"0398 McDermott View","time":"2018-07-14T00:19:26.512Z","enrolled":86057,"book":"https://hulda.net","course_url":"https://dina.biz"},{"course_title":"Hessel, Lockman and Aufderhar","course_number":12108,"instructor":"Fletcher Lang","location":"90600 Velda Terrace","time":"2018-07-14T10:54:36.339Z","enrolled":31298,"book":"http://niko.org","course_url":"https://ludie.net"},{"course_title":"Kuphal - Romaguera","course_number":62832,"instructor":"Ms. Lilla Buckridge","location":"330 Arnulfo Keys","time":"2018-07-14T11:47:47.134Z","enrolled":3895,"book":"https://tatum.net","course_url":"http://marlene.net"},{"course_title":"Murphy Group","course_number":59513,"instructor":"Lester Kuvalis","location":"901 Shayna Way","time":"2018-07-14T06:23:11.636Z","enrolled":571,"book":"https://kirk.biz","course_url":"https://florine.info"},{"course_title":"Stehr Inc","course_number":53401,"instructor":"Arch Gulgowski","location":"630 Raynor Knoll","time":"2018-07-14T00:27:54.609Z","enrolled":22617,"book":"https://anais.info","course_url":"http://brendan.org"},{"course_title":"Leannon, Krajcik and White","course_number":58889,"instructor":"Billie Will","location":"8141 Bayer Centers","time":"2018-07-14T20:15:47.219Z","enrolled":76506,"book":"http://reece.com","course_url":"https://jacinthe.org"},{"course_title":"Carroll Inc","course_number":33843,"instructor":"Noemie Keeling","location":"8874 Rippin Crest","time":"2018-07-14T20:21:58.543Z","enrolled":94758,"book":"https://marcos.net","course_url":"http://moises.com"},{"course_title":"Emard - Kulas","course_number":1435,"instructor":"Frieda Boyer","location":"91116 Delaney Field","time":"2018-07-14T04:38:33.819Z","enrolled":15287,"book":"https://alexane.name","course_url":"https://cloyd.org"},{"course_title":"Pouros - Bauch","course_number":69642,"instructor":"Asa Romaguera","location":"0499 Rolfson Locks","time":"2018-07-14T06:16:57.545Z","enrolled":61166,"book":"http://myrtie.com","course_url":"https://faye.org"},{"course_title":"Robel - Beahan","course_number":15111,"instructor":"Pink Quitzon","location":"90944 Lueilwitz Ferry","time":"2018-07-14T03:44:24.275Z","enrolled":73557,"book":"https://rory.info","course_url":"https://ezekiel.info"},{"course_title":"Casper, MacGyver and Beier","course_number":60302,"instructor":"Dameon Terry","location":"210 Muller Prairie","time":"2018-07-14T19:37:22.271Z","enrolled":87395,"book":"http://barbara.info","course_url":"http://lessie.org"},{"course_title":"Heathcote - Wunsch","course_number":47987,"instructor":"Maryjane Jakubowski","location":"7574 Kunde Groves","time":"2018-07-14T15:51:00.429Z","enrolled":91414,"book":"https://tomas.name","course_url":"https://edmund.com"},{"course_title":"Littel Inc","course_number":59858,"instructor":"Leland White II","location":"16993 Taryn Corner","time":"2018-07-14T01:07:47.708Z","enrolled":27337,"book":"http://marlon.org","course_url":"http://andrew.org"},{"course_title":"Prosacco Group","course_number":40766,"instructor":"Johan Goodwin","location":"87414 Charlie Garden","time":"2018-07-14T20:17:09.703Z","enrolled":76247,"book":"https://rudy.net","course_url":"https://gaylord.info"},{"course_title":"Volkman, Von and Stanton","course_number":60661,"instructor":"Mrs. Adella Stoltenberg","location":"351 Glenna Ferry","time":"2018-07-14T07:31:18.495Z","enrolled":8678,"book":"http://hilda.info","course_url":"https://marlin.net"},{"course_title":"Fadel LLC","course_number":99970,"instructor":"Glennie Champlin","location":"25529 Dickens Neck","time":"2018-07-14T03:44:56.922Z","enrolled":16178,"book":"http://abbigail.net","course_url":"http://leila.info"},{"course_title":"Kirlin, Ziemann and Frami","course_number":12450,"instructor":"Jed Braun","location":"29682 Little Overpass","time":"2018-07-14T17:42:57.611Z","enrolled":75249,"book":"http://dorcas.com","course_url":"http://marietta.info"},{"course_title":"Torp Group","course_number":40527,"instructor":"Aylin Kub","location":"9049 Natasha Branch","time":"2018-07-14T06:16:34.115Z","enrolled":11277,"book":"http://emery.com","course_url":"http://april.biz"},{"course_title":"Medhurst - Metz","course_number":81522,"instructor":"Dr. Julian Vandervort","location":"1627 Alfonso Corner","time":"2018-07-14T16:40:58.341Z","enrolled":98861,"book":"http://liliana.info","course_url":"https://gladys.biz"},{"course_title":"Willms - Smitham","course_number":55138,"instructor":"Jeromy Kuhlman PhD","location":"004 Greenfelder Point","time":"2018-07-14T05:40:07.694Z","enrolled":24234,"book":"http://nora.com","course_url":"https://richie.biz"},{"course_title":"Tromp - Huel","course_number":93843,"instructor":"Aliya West","location":"01965 Dorian Springs","time":"2018-07-14T05:12:33.849Z","enrolled":34318,"book":"https://retta.name","course_url":"https://elmore.net"},{"course_title":"Witting Group","course_number":94166,"instructor":"Sabryna Feest","location":"80212 Bartell Prairie","time":"2018-07-14T15:38:47.945Z","enrolled":8866,"book":"https://twila.com","course_url":"https://lexus.net"},{"course_title":"Shanahan, Barton and Murray","course_number":15332,"instructor":"Ewell Wintheiser","location":"63530 Miller Squares","time":"2018-07-14T09:13:54.036Z","enrolled":42172,"book":"http://neva.biz","course_url":"https://garland.net"},{"course_title":"Koepp LLC","course_number":21076,"instructor":"Alan O'Hara","location":"105 Theodore Plains","time":"2018-07-14T07:21:34.832Z","enrolled":43342,"book":"http://stanford.org","course_url":"http://lance.org"},{"course_title":"Gutmann - Harber","course_number":23575,"instructor":"Abdul Schaden","location":"42989 Mueller Loop","time":"2018-07-14T16:13:10.294Z","enrolled":54884,"book":"https://elian.name","course_url":"http://ansel.com"},{"course_title":"Klein LLC","course_number":4233,"instructor":"Miss Nelda MacGyver","location":"088 Wisoky Mill","time":"2018-07-14T15:00:26.085Z","enrolled":69818,"book":"https://dannie.info","course_url":"https://arvilla.net"},{"course_title":"Tillman - Little","course_number":42538,"instructor":"Justice Moore","location":"233 Jaida Mission","time":"2018-07-14T15:02:46.398Z","enrolled":97467,"book":"http://terrill.name","course_url":"https://mireya.net"},{"course_title":"Fisher, Rath and Harris","course_number":1106,"instructor":"Hermina Keeling","location":"659 Adonis Via","time":"2018-07-14T13:24:26.881Z","enrolled":73455,"book":"https://deshaun.com","course_url":"https://geovany.info"},{"course_title":"Swaniawski - Bradtke","course_number":48461,"instructor":"Mrs. Nickolas Gaylord","location":"839 Corkery Square","time":"2018-07-14T05:24:32.593Z","enrolled":6060,"book":"https://bernardo.name","course_url":"http://tito.biz"},{"course_title":"Brown LLC","course_number":49686,"instructor":"Forrest Powlowski","location":"4516 Graham Point","time":"2018-07-14T20:05:53.590Z","enrolled":45111,"book":"http://gussie.name","course_url":"https://cale.info"},{"course_title":"Reichel - Ledner","course_number":66914,"instructor":"Baron McKenzie","location":"50756 Rachael Ford","time":"2018-07-14T13:43:57.614Z","enrolled":65844,"book":"https://fredy.org","course_url":"http://annamae.org"},{"course_title":"Wuckert Group","course_number":59475,"instructor":"Deangelo Hegmann","location":"02463 Davin Overpass","time":"2018-07-14T02:24:56.411Z","enrolled":50093,"book":"http://princess.org","course_url":"http://oma.org"},{"course_title":"O'Conner Inc","course_number":82025,"instructor":"Jevon Kessler","location":"1318 Vandervort Fork","time":"2018-07-14T17:19:49.971Z","enrolled":47906,"book":"http://eugenia.com","course_url":"https://dee.org"},{"course_title":"O'Reilly, Kreiger and Hagenes","course_number":3047,"instructor":"Eve Buckridge","location":"804 Skylar Ville","time":"2018-07-14T00:27:31.308Z","enrolled":42592,"book":"https://newton.biz","course_url":"http://alexandria.net"},{"course_title":"Lebsack, Krajcik and Carroll","course_number":74394,"instructor":"Kayleigh O'Hara","location":"4065 Runte Station","time":"2018-07-14T08:45:41.788Z","enrolled":92120,"book":"http://charity.com","course_url":"https://arielle.name"},{"course_title":"Krajcik - Gutmann","course_number":42742,"instructor":"Ilene Schumm","location":"127 Adaline Divide","time":"2018-07-14T14:01:18.107Z","enrolled":74542,"book":"http://jannie.com","course_url":"http://adele.net"},{"course_title":"Wisoky, King and Wehner","course_number":49250,"instructor":"Jade Mraz","location":"21685 Dahlia Valley","time":"2018-07-14T02:28:22.479Z","enrolled":78537,"book":"http://frances.name","course_url":"https://ethyl.net"},{"course_title":"Tillman, Ruecker and Halvorson","course_number":22352,"instructor":"Jalon Rath","location":"42458 Beatty Forest","time":"2018-07-14T07:16:04.014Z","enrolled":15759,"book":"http://norval.com","course_url":"https://salvatore.info"},{"course_title":"Mraz and Sons","course_number":82915,"instructor":"Angel Jenkins","location":"8935 Julian Walks","time":"2018-07-14T06:40:27.414Z","enrolled":45216,"book":"https://randal.net","course_url":"http://raheem.org"},{"course_title":"Weimann LLC","course_number":57485,"instructor":"Delbert Lind","location":"922 Duncan Oval","time":"2018-07-14T13:09:24.248Z","enrolled":54864,"book":"http://gerhard.name","course_url":"http://casey.org"},{"course_title":"Schumm, Donnelly and Hills","course_number":41273,"instructor":"Carmel Langworth","location":"330 Kemmer Islands","time":"2018-07-14T05:20:02.278Z","enrolled":60886,"book":"http://vaughn.info","course_url":"https://imelda.biz"},{"course_title":"Waelchi - Veum","course_number":60538,"instructor":"Akeem Bashirian","location":"22080 Sandra Orchard","time":"2018-07-14T01:46:05.792Z","enrolled":79113,"book":"http://hershel.biz","course_url":"https://vivian.name"},{"course_title":"Ryan, Wintheiser and Breitenberg","course_number":96484,"instructor":"Vivien Koch","location":"418 Arden Viaduct","time":"2018-07-14T03:58:55.360Z","enrolled":60243,"book":"http://seamus.org","course_url":"https://carmen.com"},{"course_title":"Feil, Cummerata and Murray","course_number":55578,"instructor":"Percival Bechtelar","location":"7277 Raynor Spurs","time":"2018-07-14T08:01:26.447Z","enrolled":16323,"book":"http://lucienne.name","course_url":"http://myrl.com"},{"course_title":"Koelpin - Kuphal","course_number":23716,"instructor":"Amanda Balistreri","location":"2072 Jailyn Island","time":"2018-07-14T09:28:42.051Z","enrolled":85287,"book":"http://adella.biz","course_url":"https://lilla.net"},{"course_title":"Powlowski - Bailey","course_number":77853,"instructor":"Kianna Walter","location":"33599 Trudie Alley","time":"2018-07-14T02:53:40.548Z","enrolled":73166,"book":"http://gay.com","course_url":"http://federico.name"},{"course_title":"Boyle LLC","course_number":30579,"instructor":"Burley Steuber","location":"81701 Schinner Burgs","time":"2018-07-14T17:38:59.937Z","enrolled":14269,"book":"https://ulises.org","course_url":"http://odie.com"},{"course_title":"Schneider, Brown and Berge","course_number":37132,"instructor":"Ms. Amos Leuschke","location":"96163 Ondricka Center","time":"2018-07-14T09:36:08.298Z","enrolled":11471,"book":"http://fredrick.name","course_url":"http://guy.net"},{"course_title":"Zemlak - Klocko","course_number":22852,"instructor":"Ernest Dickens II","location":"7167 Clotilde Estate","time":"2018-07-14T19:32:52.884Z","enrolled":31510,"book":"https://bettie.org","course_url":"http://dortha.net"},{"course_title":"Connelly Inc","course_number":83756,"instructor":"Domenic Shanahan","location":"16018 Ledner Stream","time":"2018-07-14T10:11:48.142Z","enrolled":43961,"book":"http://cristina.biz","course_url":"https://albin.net"},{"course_title":"Wehner LLC","course_number":77997,"instructor":"Aniyah Stracke","location":"660 Ankunding Glen","time":"2018-07-14T20:39:52.888Z","enrolled":58300,"book":"https://ozella.name","course_url":"http://rolando.net"},{"course_title":"Dickinson, Fritsch and Hudson","course_number":23884,"instructor":"Mrs. Holly Schulist","location":"789 Doyle Wall","time":"2018-07-14T21:10:22.192Z","enrolled":30144,"book":"https://jaylon.name","course_url":"https://adelia.com"},{"course_title":"Rosenbaum, Kuhlman and Koch","course_number":28292,"instructor":"Mrs. Rickie Emard","location":"2197 Tillman Spring","time":"2018-07-14T19:14:28.900Z","enrolled":70079,"book":"https://alfonzo.name","course_url":"https://makenna.biz"},{"course_title":"Koch and Sons","course_number":53341,"instructor":"Jazmin Mueller II","location":"447 Aniya Station","time":"2018-07-14T11:04:46.664Z","enrolled":38315,"book":"http://green.com","course_url":"https://ashtyn.org"},{"course_title":"Lesch, White and O'Conner","course_number":7512,"instructor":"Maddison O'Reilly","location":"329 Keven Tunnel","time":"2018-07-14T10:03:04.753Z","enrolled":30597,"book":"http://kassandra.info","course_url":"http://lindsay.biz"},{"course_title":"Welch LLC","course_number":54935,"instructor":"Georgiana Emard","location":"1660 Hudson Springs","time":"2018-07-14T00:58:25.743Z","enrolled":31280,"book":"https://rigoberto.biz","course_url":"http://royal.biz"},{"course_title":"Pouros Group","course_number":83042,"instructor":"Ashlynn Mraz","location":"31019 Issac Squares","time":"2018-07-14T09:51:02.459Z","enrolled":70106,"book":"https://maudie.biz","course_url":"https://sven.info"},{"course_title":"Lynch - Yundt","course_number":11713,"instructor":"Jimmy Wehner","location":"97825 Sabryna Mills","time":"2018-07-14T00:44:18.474Z","enrolled":81123,"book":"https://opal.net","course_url":"http://michaela.name"},{"course_title":"Corwin LLC","course_number":85778,"instructor":"Domenic Rempel","location":"72374 Thaddeus Plain","time":"2018-07-14T05:45:56.747Z","enrolled":38888,"book":"https://jackeline.net","course_url":"http://nya.org"},{"course_title":"Cormier - Walsh","course_number":418,"instructor":"Dr. Joannie Runolfsson","location":"61495 Gianni Mountains","time":"2018-07-14T14:32:09.213Z","enrolled":63027,"book":"http://lilian.biz","course_url":"http://erik.com"},{"course_title":"Mertz, Beier and Homenick","course_number":39691,"instructor":"Marcus Zboncak","location":"822 Wunsch Roads","time":"2018-07-14T07:40:23.876Z","enrolled":7176,"book":"http://gina.info","course_url":"https://ethelyn.net"},{"course_title":"Abbott LLC","course_number":17236,"instructor":"Sofia Sporer","location":"1207 Devyn Corners","time":"2018-07-14T12:51:04.331Z","enrolled":97180,"book":"http://dolly.name","course_url":"https://marlen.info"},{"course_title":"Rolfson - Lowe","course_number":17670,"instructor":"Mrs. Thalia Barrows","location":"309 Gorczany Lights","time":"2018-07-14T08:58:49.601Z","enrolled":9944,"book":"https://chad.info","course_url":"http://micah.name"},{"course_title":"Crona, Stehr and Kohler","course_number":26265,"instructor":"Ignatius Zboncak","location":"03577 Legros Grove","time":"2018-07-14T14:46:31.195Z","enrolled":62922,"book":"http://derick.net","course_url":"https://frida.com"},{"course_title":"Roob, Borer and Ryan","course_number":84731,"instructor":"Gregg Oberbrunner","location":"0296 Ritchie Place","time":"2018-07-14T18:37:28.748Z","enrolled":33655,"book":"http://garry.biz","course_url":"http://fredrick.net"},{"course_title":"Rath LLC","course_number":32864,"instructor":"Alia Ondricka V","location":"85814 Gleason Junction","time":"2018-07-14T15:09:38.584Z","enrolled":83706,"book":"https://marcella.net","course_url":"http://sonya.name"},{"course_title":"Schuster Inc","course_number":96891,"instructor":"Rosemarie Fisher","location":"287 Verdie Forge","time":"2018-07-14T15:59:38.204Z","enrolled":55427,"book":"http://mary.net","course_url":"https://wendy.net"},{"course_title":"Collier - Hackett","course_number":21443,"instructor":"Valentina Brown","location":"1228 Shields Fall","time":"2018-07-14T19:53:27.214Z","enrolled":52863,"book":"http://berniece.net","course_url":"https://garret.com"},{"course_title":"Herman Group","course_number":75986,"instructor":"Jackie Kessler","location":"1680 Batz Tunnel","time":"2018-07-14T05:44:42.163Z","enrolled":79343,"book":"http://jordon.com","course_url":"http://dillon.net"},{"course_title":"Bogisich - Heathcote","course_number":37905,"instructor":"Eric Roob","location":"9044 Olson Brook","time":"2018-07-14T19:10:49.287Z","enrolled":57781,"book":"http://aurelia.name","course_url":"http://carissa.com"},{"course_title":"Harris - Kerluke","course_number":8820,"instructor":"Jules Satterfield","location":"09965 Nakia Club","time":"2018-07-13T23:51:04.386Z","enrolled":78536,"book":"http://chanel.net","course_url":"http://lysanne.biz"},{"course_title":"Olson - Romaguera","course_number":38118,"instructor":"Bridie Windler","location":"63985 Frederick Squares","time":"2018-07-14T17:11:59.516Z","enrolled":45205,"book":"http://kailyn.com","course_url":"http://grady.biz"},{"course_title":"Hand, Waelchi and Boehm","course_number":88115,"instructor":"Miss Addie Zemlak","location":"9470 Nicolette Circle","time":"2018-07-14T08:59:21.251Z","enrolled":13747,"book":"http://lura.biz","course_url":"http://raegan.net"},{"course_title":"Effertz, Weber and Leuschke","course_number":5826,"instructor":"Bell Pfeffer","location":"625 Beatty Grove","time":"2018-07-14T00:25:20.844Z","enrolled":79301,"book":"http://josefina.com","course_url":"https://thea.name"},{"course_title":"Hayes LLC","course_number":15528,"instructor":"Scarlett Brekke","location":"87820 Carter Manors","time":"2018-07-14T16:20:22.264Z","enrolled":94271,"book":"https://estelle.org","course_url":"http://royce.org"},{"course_title":"Tromp, Ritchie and Ebert","course_number":51737,"instructor":"Kaylee Bradtke","location":"80849 Price Causeway","time":"2018-07-14T13:23:58.605Z","enrolled":15201,"book":"https://efrain.com","course_url":"http://anya.com"},{"course_title":"Block, Greenholt and Schuster","course_number":16008,"instructor":"Mattie Hansen","location":"11522 Heathcote Pass","time":"2018-07-14T05:33:40.043Z","enrolled":52414,"book":"http://jenifer.com","course_url":"http://emily.com"},{"course_title":"Hirthe - Simonis","course_number":40344,"instructor":"Sylvan Hartmann","location":"4034 Doris Ramp","time":"2018-07-14T20:27:13.364Z","enrolled":95910,"book":"http://glenda.net","course_url":"http://seamus.info"},{"course_title":"Wuckert and Sons","course_number":63132,"instructor":"Estevan Littel","location":"0225 Melyssa Islands","time":"2018-07-14T14:43:10.249Z","enrolled":69611,"book":"http://vito.info","course_url":"http://cristina.org"},{"course_title":"VonRueden, Erdman and Lakin","course_number":84303,"instructor":"Terrance Wintheiser","location":"5854 Ullrich Valley","time":"2018-07-14T19:28:49.348Z","enrolled":50834,"book":"https://keshaun.org","course_url":"https://alejandrin.net"},{"course_title":"Walter LLC","course_number":72631,"instructor":"Raphaelle Beer","location":"363 Boehm Grove","time":"2018-07-14T13:38:51.348Z","enrolled":28762,"book":"http://kristian.name","course_url":"https://vincenzo.info"},{"course_title":"Gibson Inc","course_number":94350,"instructor":"Kattie Franecki","location":"0279 Torp Course","time":"2018-07-14T02:00:03.671Z","enrolled":68239,"book":"http://delia.org","course_url":"http://laverne.net"},{"course_title":"Luettgen LLC","course_number":37436,"instructor":"Francisco Hartmann","location":"8476 Kihn Club","time":"2018-07-14T05:36:34.708Z","enrolled":61714,"book":"https://veda.info","course_url":"https://devyn.com"},{"course_title":"Grant, Ankunding and Johnson","course_number":2934,"instructor":"Wiley Larkin","location":"5516 Alanna Mountain","time":"2018-07-14T07:39:53.362Z","enrolled":23743,"book":"http://ronny.net","course_url":"https://lenny.name"},{"course_title":"Koss - Conroy","course_number":14411,"instructor":"Simeon Cartwright","location":"040 Kihn Burg","time":"2018-07-14T18:34:53.876Z","enrolled":77033,"book":"https://liam.net","course_url":"https://fay.biz"},{"course_title":"Leannon - O'Conner","course_number":28462,"instructor":"Ms. Ellsworth Little","location":"0197 Ariel Plains","time":"2018-07-14T05:02:20.677Z","enrolled":71930,"book":"http://cary.net","course_url":"https://adell.biz"},{"course_title":"Kris LLC","course_number":88537,"instructor":"Dimitri Sanford","location":"262 Renner Fields","time":"2018-07-14T07:07:41.913Z","enrolled":43689,"book":"http://alvena.org","course_url":"http://vladimir.net"},{"course_title":"Green, Turcotte and Nader","course_number":65374,"instructor":"Mrs. Jordon Sipes","location":"5204 Stoltenberg Fields","time":"2018-07-14T16:50:26.473Z","enrolled":12087,"book":"https://daphney.com","course_url":"https://andres.biz"},{"course_title":"Ankunding Inc","course_number":66597,"instructor":"Therese Larson","location":"5513 Lolita Passage","time":"2018-07-14T15:00:48.046Z","enrolled":57500,"book":"http://desiree.net","course_url":"http://norberto.net"},{"course_title":"Schiller, Brekke and Lang","course_number":50582,"instructor":"Mr. Spencer Rolfson","location":"0562 Scotty Knoll","time":"2018-07-14T03:44:22.719Z","enrolled":85376,"book":"https://jordi.com","course_url":"http://eliza.info"},{"course_title":"Thompson, Friesen and Considine","course_number":22032,"instructor":"Keagan Stark","location":"44791 Keeling Station","time":"2018-07-14T04:50:00.184Z","enrolled":73377,"book":"https://avis.name","course_url":"https://karl.org"},{"course_title":"Davis - Grady","course_number":33160,"instructor":"Janessa Mayert DVM","location":"895 Michelle Spring","time":"2018-07-14T07:26:32.509Z","enrolled":95270,"book":"https://jerel.com","course_url":"https://retha.info"},{"course_title":"Klocko Group","course_number":93138,"instructor":"Zella Nicolas","location":"735 Shayna Mountain","time":"2018-07-14T18:48:50.886Z","enrolled":96205,"book":"https://gregory.com","course_url":"http://dedric.net"},{"course_title":"Thompson - Walsh","course_number":36907,"instructor":"Kara Ferry","location":"474 Braulio Dam","time":"2018-07-14T08:31:18.142Z","enrolled":7240,"book":"https://curt.biz","course_url":"http://cameron.info"},{"course_title":"Harvey - Hickle","course_number":27026,"instructor":"Brice West","location":"9205 Daniel Valleys","time":"2018-07-14T19:23:54.335Z","enrolled":7473,"book":"http://buddy.com","course_url":"https://jonathon.com"},{"course_title":"Cole - Shanahan","course_number":85637,"instructor":"Ervin Brown","location":"36597 Prohaska Manor","time":"2018-07-14T12:41:53.841Z","enrolled":95940,"book":"https://landen.net","course_url":"http://deja.info"},{"course_title":"Kunze - Little","course_number":84929,"instructor":"Chadrick Koelpin","location":"70844 Adonis Plaza","time":"2018-07-14T13:04:07.455Z","enrolled":80406,"book":"http://johathan.info","course_url":"https://rico.biz"},{"course_title":"Johnston - Waelchi","course_number":98333,"instructor":"Hortense Ritchie","location":"676 Kole Lodge","time":"2018-07-14T05:22:43.284Z","enrolled":93602,"book":"http://camden.name","course_url":"https://cyril.org"},{"course_title":"Dietrich Group","course_number":54256,"instructor":"Oda Feest","location":"34700 Kattie Place","time":"2018-07-14T21:15:30.696Z","enrolled":83828,"book":"https://cleve.biz","course_url":"https://zoila.com"},{"course_title":"Leannon Group","course_number":32530,"instructor":"Jaylan Willms","location":"72761 Hilma Estate","time":"2018-07-14T05:20:07.325Z","enrolled":55422,"book":"http://brenden.net","course_url":"http://bonnie.info"},{"course_title":"Rohan, Sanford and Hamill","course_number":75910,"instructor":"Julian Gutkowski","location":"107 Cale Circles","time":"2018-07-14T16:29:48.397Z","enrolled":39869,"book":"http://sonny.name","course_url":"http://tito.org"},{"course_title":"Reynolds and Sons","course_number":27127,"instructor":"Sierra Kuvalis","location":"46794 Mitchel Fields","time":"2018-07-14T09:34:18.380Z","enrolled":75803,"book":"http://felicita.org","course_url":"https://kraig.net"},{"course_title":"Wisozk and Sons","course_number":44569,"instructor":"Melvina Ernser","location":"596 Chelsie Causeway","time":"2018-07-14T04:52:30.875Z","enrolled":46048,"book":"https://sherman.net","course_url":"https://emmanuel.biz"},{"course_title":"Goldner Inc","course_number":28440,"instructor":"Lenny Bartoletti Sr.","location":"0810 Kale Ridge","time":"2018-07-14T06:23:14.161Z","enrolled":89871,"book":"http://clifton.com","course_url":"http://delfina.com"},{"course_title":"Jacobs, Gibson and Rowe","course_number":61390,"instructor":"Brad Kihn","location":"01869 Lillian Walk","time":"2018-07-14T21:55:30.349Z","enrolled":14026,"book":"http://breanna.org","course_url":"https://marcelle.org"},{"course_title":"Hahn, Wisozk and Blick","course_number":82799,"instructor":"Joanie Schneider","location":"63849 Kihn Ports","time":"2018-07-14T20:29:00.264Z","enrolled":33769,"book":"https://emely.org","course_url":"http://bria.info"},{"course_title":"Prosacco and Sons","course_number":51324,"instructor":"Jefferey Rosenbaum","location":"3979 Brad Mount","time":"2018-07-14T03:31:04.904Z","enrolled":61900,"book":"https://kaia.net","course_url":"http://mikayla.org"},{"course_title":"Kreiger, Reynolds and Schoen","course_number":96378,"instructor":"Adriel Wehner","location":"690 Gleichner Brook","time":"2018-07-14T07:31:04.109Z","enrolled":52662,"book":"https://golden.org","course_url":"https://alysson.info"},{"course_title":"Jenkins and Sons","course_number":52874,"instructor":"Christa Adams","location":"4657 Marietta Streets","time":"2018-07-14T09:07:47.240Z","enrolled":30500,"book":"http://rowena.net","course_url":"https://annetta.info"},{"course_title":"Renner - Sporer","course_number":94295,"instructor":"Sedrick Bailey","location":"91407 Jared Passage","time":"2018-07-14T13:47:25.468Z","enrolled":30547,"book":"http://santa.org","course_url":"https://obie.net"},{"course_title":"Spinka Inc","course_number":85384,"instructor":"Lorena Witting","location":"4621 Howard Hills","time":"2018-07-14T06:08:22.216Z","enrolled":14330,"book":"https://alicia.net","course_url":"http://jamel.net"},{"course_title":"Hammes - Cummings","course_number":69310,"instructor":"Jade Klocko III","location":"048 Kassandra Fork","time":"2018-07-14T17:23:46.489Z","enrolled":62923,"book":"https://richard.name","course_url":"http://hanna.info"},{"course_title":"Weber - McGlynn","course_number":38823,"instructor":"Miss Meredith Ziemann","location":"92533 Lauriane Cape","time":"2018-07-14T15:03:28.314Z","enrolled":45781,"book":"http://abner.info","course_url":"http://leanne.biz"},{"course_title":"Johnston - Kunde","course_number":17492,"instructor":"Elda Strosin","location":"202 Mills Forks","time":"2018-07-14T11:21:38.365Z","enrolled":8355,"book":"https://hillary.net","course_url":"https://adolphus.biz"},{"course_title":"Quigley, Dare and Schmeler","course_number":25427,"instructor":"Marguerite Emmerich","location":"86059 Gibson Walk","time":"2018-07-14T10:01:30.629Z","enrolled":36732,"book":"http://jayda.biz","course_url":"http://golda.name"},{"course_title":"Simonis, Marks and Windler","course_number":6905,"instructor":"Frankie Bartell","location":"67367 Margarete Islands","time":"2018-07-13T23:46:58.759Z","enrolled":8516,"book":"https://linda.org","course_url":"http://rowland.net"},{"course_title":"Lakin - Walsh","course_number":60845,"instructor":"Lexi Kunze","location":"701 Von Vista","time":"2018-07-13T23:49:00.595Z","enrolled":12581,"book":"https://kade.com","course_url":"http://abdiel.name"},{"course_title":"McKenzie Inc","course_number":79788,"instructor":"Marcel Fay","location":"795 Friesen Row","time":"2018-07-14T17:17:25.639Z","enrolled":30570,"book":"https://rupert.info","course_url":"https://adriel.org"},{"course_title":"Eichmann Inc","course_number":71572,"instructor":"Kamron Hettinger","location":"068 Simone Rapids","time":"2018-07-14T10:00:54.829Z","enrolled":55270,"book":"http://jonatan.org","course_url":"http://richmond.net"},{"course_title":"Stehr, Miller and Ferry","course_number":65621,"instructor":"Dayna Luettgen","location":"01980 Cristian Cliffs","time":"2018-07-14T20:11:36.739Z","enrolled":3303,"book":"http://moshe.info","course_url":"https://neha.net"},{"course_title":"Collier and Sons","course_number":11720,"instructor":"Miss Gloria Kovacek","location":"96076 Claudia Islands","time":"2018-07-14T19:18:50.751Z","enrolled":95111,"book":"https://angus.net","course_url":"http://angus.biz"},{"course_title":"Haley - Roob","course_number":82521,"instructor":"Domenico Kuhic","location":"9845 Raegan Extensions","time":"2018-07-14T10:43:09.652Z","enrolled":39023,"book":"https://ralph.org","course_url":"http://sven.net"},{"course_title":"Hyatt, Dicki and Ward","course_number":44646,"instructor":"Lyla Larkin","location":"23596 Schmitt Extensions","time":"2018-07-14T02:50:30.185Z","enrolled":91124,"book":"http://kathryn.com","course_url":"https://daryl.name"},{"course_title":"Ankunding, Wiegand and DuBuque","course_number":67801,"instructor":"Shaun Labadie","location":"22190 Mack Lodge","time":"2018-07-14T09:20:02.486Z","enrolled":13898,"book":"http://julien.net","course_url":"http://bethel.org"},{"course_title":"Thompson and Sons","course_number":48802,"instructor":"Christopher Cronin","location":"0968 Kenton Spurs","time":"2018-07-14T19:28:39.669Z","enrolled":20958,"book":"https://kasandra.name","course_url":"https://rhianna.info"},{"course_title":"Marvin, Cummings and DuBuque","course_number":65121,"instructor":"Deven Becker I","location":"39494 Doyle Overpass","time":"2018-07-14T18:44:57.300Z","enrolled":42333,"book":"https://madonna.info","course_url":"http://ariel.name"},{"course_title":"Rutherford Inc","course_number":99653,"instructor":"Phyllis Bednar","location":"0251 Wilderman Island","time":"2018-07-14T14:57:36.014Z","enrolled":19137,"book":"http://davion.org","course_url":"https://kenyatta.net"},{"course_title":"Kuphal - Breitenberg","course_number":1517,"instructor":"Florencio Haley","location":"56522 Cole Village","time":"2018-07-14T10:39:30.839Z","enrolled":45860,"book":"https://jacques.name","course_url":"http://laurianne.org"},{"course_title":"Bashirian - Ernser","course_number":14157,"instructor":"Maurice Lebsack","location":"1760 Aiden Fields","time":"2018-07-14T01:15:56.329Z","enrolled":86745,"book":"http://teresa.biz","course_url":"https://mitchel.biz"},{"course_title":"Greenholt Inc","course_number":44570,"instructor":"Rosamond Orn","location":"9901 Drake Walks","time":"2018-07-13T23:46:28.723Z","enrolled":45902,"book":"http://brandyn.net","course_url":"https://alan.com"},{"course_title":"Okuneva Inc","course_number":69066,"instructor":"Alden Yost","location":"9541 Kassandra Divide","time":"2018-07-13T23:36:54.486Z","enrolled":67132,"book":"http://geo.org","course_url":"https://ethan.name"},{"course_title":"Kovacek and Sons","course_number":18886,"instructor":"Letha Berge","location":"92062 Ziemann Tunnel","time":"2018-07-14T14:29:48.610Z","enrolled":37177,"book":"http://merl.net","course_url":"http://winfield.info"},{"course_title":"Mraz, Rice and Bayer","course_number":3912,"instructor":"Cooper Purdy","location":"113 Shanahan Fork","time":"2018-07-14T11:28:27.005Z","enrolled":29133,"book":"http://geovany.net","course_url":"http://glen.com"},{"course_title":"Cummings - Parisian","course_number":26614,"instructor":"Jalon Okuneva","location":"209 Will Manor","time":"2018-07-14T17:07:32.503Z","enrolled":21959,"book":"http://armani.com","course_url":"http://dallas.info"},{"course_title":"Klein Inc","course_number":2030,"instructor":"Magnolia Ruecker","location":"8033 Bessie Ranch","time":"2018-07-14T18:17:38.271Z","enrolled":82702,"book":"http://jeromy.net","course_url":"https://furman.com"},{"course_title":"Funk LLC","course_number":82114,"instructor":"Rosina Parker","location":"6115 Margaret Wells","time":"2018-07-14T16:08:10.437Z","enrolled":65240,"book":"https://angel.biz","course_url":"https://immanuel.com"},{"course_title":"Haag and Sons","course_number":81072,"instructor":"Patrick Murphy","location":"023 Flavio Fall","time":"2018-07-14T00:24:44.612Z","enrolled":59958,"book":"https://betsy.net","course_url":"https://breanne.com"},{"course_title":"Waelchi - Smith","course_number":73546,"instructor":"Chelsie Hintz","location":"33642 Ziemann Plaza","time":"2018-07-14T12:06:02.492Z","enrolled":75954,"book":"https://velda.info","course_url":"https://jett.name"},{"course_title":"Schneider - Quitzon","course_number":54499,"instructor":"Weldon Carroll II","location":"6889 Will Mills","time":"2018-07-14T11:34:10.480Z","enrolled":72745,"book":"http://harmon.org","course_url":"https://yesenia.org"},{"course_title":"Boyer, Gleason and Jast","course_number":45493,"instructor":"Rosemary Hermann","location":"294 Dooley Locks","time":"2018-07-14T18:42:44.102Z","enrolled":43823,"book":"https://ramona.net","course_url":"http://stephanie.name"},{"course_title":"Stroman - Borer","course_number":39484,"instructor":"Reanna Cummerata","location":"93012 Wolff Port","time":"2018-07-14T13:06:09.408Z","enrolled":96613,"book":"http://ida.net","course_url":"http://bud.biz"},{"course_title":"Wehner - Bashirian","course_number":15329,"instructor":"Nathen Hudson","location":"56841 Hermiston Unions","time":"2018-07-14T03:01:04.257Z","enrolled":96508,"book":"https://yvonne.name","course_url":"https://vella.name"},{"course_title":"Volkman, Crist and Douglas","course_number":73151,"instructor":"Matt Kuhn","location":"3326 Hudson Expressway","time":"2018-07-14T09:54:14.770Z","enrolled":65307,"book":"http://jalon.info","course_url":"https://athena.com"},{"course_title":"Carroll - Kshlerin","course_number":31023,"instructor":"Ashly Bartoletti","location":"4105 Marquis Plaza","time":"2018-07-14T12:06:36.995Z","enrolled":52153,"book":"http://heaven.net","course_url":"https://adelia.com"},{"course_title":"Huel Group","course_number":36409,"instructor":"Ivah Wolf IV","location":"4842 Schaden Oval","time":"2018-07-14T05:03:36.125Z","enrolled":34809,"book":"https://lexie.biz","course_url":"http://margaret.org"},{"course_title":"Hodkiewicz and Sons","course_number":96121,"instructor":"Jedediah Goodwin","location":"21437 Heaney Forges","time":"2018-07-14T16:19:20.911Z","enrolled":17332,"book":"http://gwen.info","course_url":"http://nona.biz"},{"course_title":"Crooks LLC","course_number":19467,"instructor":"Alaina Lehner","location":"01184 Roman Centers","time":"2018-07-14T14:11:26.076Z","enrolled":31800,"book":"https://norma.name","course_url":"https://wendy.biz"},{"course_title":"Greenholt and Sons","course_number":91819,"instructor":"Laurie Hahn","location":"879 Jeremy Meadows","time":"2018-07-14T04:12:43.594Z","enrolled":46954,"book":"http://lewis.net","course_url":"https://kaitlyn.name"},{"course_title":"Maggio LLC","course_number":82527,"instructor":"Olin Lindgren","location":"560 Beer Mountain","time":"2018-07-14T01:53:03.357Z","enrolled":25599,"book":"http://tad.net","course_url":"https://brittany.info"},{"course_title":"Schinner - Kreiger","course_number":40916,"instructor":"Gregg Collier","location":"3502 Rosa Island","time":"2018-07-14T13:17:33.298Z","enrolled":15389,"book":"https://micaela.com","course_url":"https://johanna.name"},{"course_title":"Kertzmann - Cole","course_number":23255,"instructor":"Olen McKenzie Jr.","location":"7080 Jacobi Path","time":"2018-07-14T12:30:58.934Z","enrolled":73506,"book":"http://glen.name","course_url":"https://reed.info"},{"course_title":"Bechtelar and Sons","course_number":97368,"instructor":"Aliya Keeling","location":"568 Denesik Village","time":"2018-07-14T15:44:31.701Z","enrolled":78147,"book":"http://sydnee.org","course_url":"https://malcolm.com"},{"course_title":"Williamson - Hamill","course_number":82748,"instructor":"Maybell Robel","location":"03989 Mohamed Camp","time":"2018-07-14T03:13:12.283Z","enrolled":55706,"book":"https://justice.name","course_url":"https://houston.biz"},{"course_title":"Purdy, Becker and Legros","course_number":27196,"instructor":"Marcelo Ankunding","location":"19469 Pansy Rest","time":"2018-07-14T20:17:43.082Z","enrolled":34420,"book":"https://dennis.info","course_url":"http://ayana.biz"},{"course_title":"Nolan Inc","course_number":16038,"instructor":"Rebekah Bergstrom","location":"851 Lubowitz Stream","time":"2018-07-14T01:17:40.584Z","enrolled":79872,"book":"http://florence.info","course_url":"http://george.org"},{"course_title":"Pfeffer - Huels","course_number":53503,"instructor":"Robin Graham","location":"549 Cathy Square","time":"2018-07-14T22:39:39.941Z","enrolled":10921,"book":"https://lester.biz","course_url":"http://duncan.info"},{"course_title":"Kunde - McCullough","course_number":27610,"instructor":"Miss Yesenia Adams","location":"4969 Weissnat Brook","time":"2018-07-14T09:31:05.246Z","enrolled":40390,"book":"https://jerrold.net","course_url":"https://adelia.net"},{"course_title":"Cole - Ward","course_number":91734,"instructor":"Albert Miller PhD","location":"4337 Gislason Stravenue","time":"2018-07-14T21:58:03.100Z","enrolled":94259,"book":"https://karine.biz","course_url":"http://sven.biz"},{"course_title":"Morissette, Effertz and Lehner","course_number":64005,"instructor":"Loren Hammes","location":"03644 Watsica Shoals","time":"2018-07-14T23:07:27.280Z","enrolled":96594,"book":"https://mckayla.net","course_url":"http://jett.net"},{"course_title":"Kozey - Douglas","course_number":31421,"instructor":"Brandi Olson","location":"4004 Josephine Roads","time":"2018-07-14T13:19:05.339Z","enrolled":46728,"book":"http://santos.info","course_url":"http://jonatan.net"},{"course_title":"Hilpert, Abshire and Gulgowski","course_number":93515,"instructor":"Payton Schumm","location":"5198 Altenwerth Parks","time":"2018-07-14T19:10:00.596Z","enrolled":26096,"book":"http://sabina.name","course_url":"http://felicity.com"},{"course_title":"Trantow, Pagac and Murphy","course_number":82559,"instructor":"Destin Hammes","location":"906 Ora Parkway","time":"2018-07-14T22:01:45.059Z","enrolled":3995,"book":"http://jasmin.info","course_url":"https://maximillia.name"},{"course_title":"Johns, Jacobson and Williamson","course_number":58006,"instructor":"Mossie Cruickshank","location":"14996 Schuster Track","time":"2018-07-14T11:35:57.552Z","enrolled":86386,"book":"http://damion.net","course_url":"https://beth.net"},{"course_title":"Olson and Sons","course_number":4588,"instructor":"Jamaal Ondricka","location":"09176 Kuhlman Inlet","time":"2018-07-14T07:19:16.371Z","enrolled":15032,"book":"http://claudine.com","course_url":"https://dana.info"},{"course_title":"Greenholt, Ferry and Heidenreich","course_number":7535,"instructor":"Estrella Greenholt","location":"780 Genesis Dale","time":"2018-07-14T08:32:48.405Z","enrolled":73194,"book":"http://osvaldo.biz","course_url":"http://judy.net"},{"course_title":"Blick, Bogisich and Swift","course_number":49571,"instructor":"Leatha Beer","location":"425 Windler Tunnel","time":"2018-07-14T22:39:56.037Z","enrolled":30683,"book":"https://jaylon.info","course_url":"http://markus.net"},{"course_title":"Larson, Dietrich and Cruickshank","course_number":24505,"instructor":"Tressie Mann","location":"770 Rath Shore","time":"2018-07-14T15:12:54.061Z","enrolled":32083,"book":"http://reymundo.com","course_url":"http://marjory.net"},{"course_title":"Okuneva - Adams","course_number":94396,"instructor":"Kailyn Gerlach","location":"894 Marion Drive","time":"2018-07-14T01:27:17.671Z","enrolled":73906,"book":"https://orin.com","course_url":"http://izabella.com"},{"course_title":"Rau and Sons","course_number":98466,"instructor":"Sincere Cole","location":"6496 Jerrell Shoal","time":"2018-07-14T13:14:50.213Z","enrolled":14140,"book":"http://allan.name","course_url":"http://hanna.biz"},{"course_title":"Casper - Raynor","course_number":36856,"instructor":"Richie Deckow","location":"96017 Jerald Rue","time":"2018-07-14T15:08:39.195Z","enrolled":30637,"book":"https://weston.biz","course_url":"http://simone.name"},{"course_title":"Cummerata, Larkin and Sporer","course_number":57582,"instructor":"Miss Kole Block","location":"491 Brown Isle","time":"2018-07-14T03:23:27.186Z","enrolled":43535,"book":"http://lulu.name","course_url":"http://morgan.biz"},{"course_title":"Feeney, Dibbert and Schmeler","course_number":72743,"instructor":"Margarete O'Hara Jr.","location":"68991 Halvorson Throughway","time":"2018-07-14T15:22:27.399Z","enrolled":67366,"book":"http://verda.biz","course_url":"https://kayley.name"},{"course_title":"Hamill - Schmidt","course_number":62821,"instructor":"Mrs. Leora Brekke","location":"24950 Logan Fall","time":"2018-07-14T00:29:53.944Z","enrolled":22938,"book":"http://jovani.org","course_url":"https://wallace.name"},{"course_title":"Fahey Inc","course_number":39470,"instructor":"Willow Sipes","location":"5076 Baumbach Port","time":"2018-07-14T21:19:54.805Z","enrolled":75669,"book":"http://mathew.info","course_url":"http://jeanette.biz"},{"course_title":"Collins, Schmidt and Fritsch","course_number":78332,"instructor":"Rebeca Schumm","location":"4630 Harrison Views","time":"2018-07-14T04:49:12.608Z","enrolled":64765,"book":"http://samara.name","course_url":"http://neva.net"},{"course_title":"Mann LLC","course_number":38239,"instructor":"Elsie Gulgowski","location":"06191 Cathy Brooks","time":"2018-07-14T18:58:16.400Z","enrolled":81107,"book":"https://mayra.name","course_url":"http://billy.biz"},{"course_title":"Jacobson Inc","course_number":93824,"instructor":"Nico Orn MD","location":"5871 Carmine Ports","time":"2018-07-14T03:40:01.533Z","enrolled":11406,"book":"https://hilbert.biz","course_url":"https://emmitt.biz"},{"course_title":"West, Prosacco and Hagenes","course_number":5518,"instructor":"Weston McClure Sr.","location":"58000 Alfred Trafficway","time":"2018-07-14T09:05:47.097Z","enrolled":13446,"book":"https://rose.info","course_url":"http://gwendolyn.com"},{"course_title":"Tromp, Mann and Kihn","course_number":64315,"instructor":"Eloisa McLaughlin","location":"389 Adams Village","time":"2018-07-14T21:58:00.387Z","enrolled":52879,"book":"http://raymond.name","course_url":"https://pinkie.org"},{"course_title":"Cremin - Stiedemann","course_number":3926,"instructor":"Elouise DuBuque","location":"4731 Helen Plains","time":"2018-07-14T19:31:04.637Z","enrolled":14852,"book":"https://carrie.com","course_url":"https://gerry.name"},{"course_title":"MacGyver, Kirlin and Metz","course_number":30502,"instructor":"Amos Roob","location":"583 Reichel Ville","time":"2018-07-14T02:15:21.797Z","enrolled":10297,"book":"https://rosina.name","course_url":"http://mitchel.org"},{"course_title":"Stiedemann Group","course_number":13776,"instructor":"Micheal Stokes","location":"0008 Levi Club","time":"2018-07-14T20:55:50.760Z","enrolled":51544,"book":"https://xzavier.net","course_url":"https://landen.net"},{"course_title":"O'Hara Group","course_number":77869,"instructor":"Mrs. Name Zulauf","location":"075 Greenholt Crossing","time":"2018-07-14T13:26:33.174Z","enrolled":91794,"book":"http://lorenza.info","course_url":"https://lila.biz"},{"course_title":"Oberbrunner - Welch","course_number":67217,"instructor":"D'angelo Keebler PhD","location":"85302 O'Reilly Springs","time":"2018-07-14T13:31:04.660Z","enrolled":94407,"book":"http://autumn.org","course_url":"https://zita.name"},{"course_title":"Kihn, Schuster and Feest","course_number":45132,"instructor":"Joel Nicolas","location":"6149 Terry Village","time":"2018-07-14T08:20:24.901Z","enrolled":48608,"book":"https://guadalupe.net","course_url":"http://matteo.info"},{"course_title":"Davis, Bradtke and Balistreri","course_number":16662,"instructor":"Otis Nicolas","location":"64234 Talon Fords","time":"2018-07-14T01:37:20.831Z","enrolled":28815,"book":"http://amos.org","course_url":"https://felipe.com"},{"course_title":"Schneider - Wilkinson","course_number":91281,"instructor":"Helen Witting","location":"41341 Jacobs Station","time":"2018-07-14T05:11:52.077Z","enrolled":31751,"book":"http://armani.net","course_url":"https://khalil.biz"},{"course_title":"Rohan - Grimes","course_number":91895,"instructor":"Alex Bartell MD","location":"30897 Kaleigh Shore","time":"2018-07-14T20:49:43.720Z","enrolled":55127,"book":"https://sonny.org","course_url":"https://tatum.name"},{"course_title":"Walter Inc","course_number":7801,"instructor":"Florence Cormier","location":"930 Clementine Tunnel","time":"2018-07-14T01:39:12.803Z","enrolled":93980,"book":"https://lexi.org","course_url":"https://alf.name"},{"course_title":"Kutch and Sons","course_number":60289,"instructor":"Carissa Trantow","location":"35867 West Points","time":"2018-07-14T20:31:59.757Z","enrolled":58933,"book":"https://gillian.org","course_url":"http://freida.org"},{"course_title":"Koch, Tromp and Gorczany","course_number":81455,"instructor":"Kaitlin Cartwright DDS","location":"4626 Berniece Harbor","time":"2018-07-14T17:50:00.763Z","enrolled":58635,"book":"https://alyson.net","course_url":"http://lincoln.com"},{"course_title":"Kutch, Hyatt and Wisoky","course_number":96313,"instructor":"Dedric Von","location":"75483 Spencer Street","time":"2018-07-14T18:38:43.645Z","enrolled":289,"book":"http://crystel.biz","course_url":"http://king.info"},{"course_title":"Weber - Lockman","course_number":14470,"instructor":"Janelle Brekke","location":"0692 Cesar Spurs","time":"2018-07-14T16:55:04.206Z","enrolled":68693,"book":"https://mac.name","course_url":"http://della.name"},{"course_title":"Moen LLC","course_number":35174,"instructor":"Mia Christiansen","location":"2297 Bradtke Canyon","time":"2018-07-14T15:03:32.846Z","enrolled":87399,"book":"http://mariana.net","course_url":"https://summer.biz"},{"course_title":"Halvorson, Kshlerin and Murray","course_number":47014,"instructor":"Rosalee Windler","location":"213 Montana Divide","time":"2018-07-13T23:14:48.084Z","enrolled":41663,"book":"http://jesus.info","course_url":"https://gloria.name"},{"course_title":"Herman Group","course_number":36023,"instructor":"Valentine Gottlieb","location":"82336 Schiller Springs","time":"2018-07-14T06:55:52.493Z","enrolled":54703,"book":"https://khalil.info","course_url":"https://abbigail.org"},{"course_title":"Swift - Upton","course_number":61447,"instructor":"Lora Kling","location":"517 Bryce Key","time":"2018-07-14T08:03:43.454Z","enrolled":90032,"book":"https://camille.info","course_url":"http://vance.com"},{"course_title":"Ratke Group","course_number":26432,"instructor":"Nigel Harris","location":"80487 Gudrun Green","time":"2018-07-14T12:27:41.619Z","enrolled":68629,"book":"https://drew.biz","course_url":"https://raheem.biz"},{"course_title":"Lueilwitz Group","course_number":53921,"instructor":"Madisen Hauck","location":"215 O'Connell Spur","time":"2018-07-14T14:28:09.977Z","enrolled":19609,"book":"https://marcos.org","course_url":"http://salvador.net"},{"course_title":"Stark, Stark and Kuhic","course_number":42591,"instructor":"Rod Koch","location":"8537 Harley Rest","time":"2018-07-14T21:31:36.341Z","enrolled":25358,"book":"http://vicky.org","course_url":"https://donald.com"},{"course_title":"Torp, Nicolas and Ernser","course_number":3941,"instructor":"Caleb Hahn","location":"61977 Sim Stream","time":"2018-07-14T04:21:40.306Z","enrolled":11762,"book":"http://julian.org","course_url":"http://rylee.biz"},{"course_title":"Steuber, Kub and Stracke","course_number":2001,"instructor":"Rhea Nitzsche","location":"5215 Kulas Port","time":"2018-07-14T04:27:01.008Z","enrolled":76105,"book":"http://lyric.net","course_url":"https://deron.info"},{"course_title":"Russel - Jacobs","course_number":66523,"instructor":"Roberto Lehner","location":"011 Trantow Roads","time":"2018-07-14T10:09:42.032Z","enrolled":15171,"book":"http://hailie.net","course_url":"https://brandi.biz"},{"course_title":"Willms, Veum and Walter","course_number":48502,"instructor":"Rosalee Balistreri IV","location":"140 Cassie Manors","time":"2018-07-14T10:49:04.464Z","enrolled":92331,"book":"https://chanelle.com","course_url":"http://carley.net"},{"course_title":"McLaughlin - Hermiston","course_number":54566,"instructor":"Mollie Nikolaus","location":"86118 Eileen Estates","time":"2018-07-14T01:08:17.809Z","enrolled":84998,"book":"http://cassandra.name","course_url":"https://mac.org"},{"course_title":"Glover Group","course_number":93931,"instructor":"Monica Goldner DDS","location":"84598 Javon Locks","time":"2018-07-14T07:44:20.296Z","enrolled":51288,"book":"http://alford.com","course_url":"https://theodore.info"},{"course_title":"Dicki, Treutel and Hane","course_number":23846,"instructor":"Gabriella Upton","location":"6776 Darius Plain","time":"2018-07-14T12:25:10.295Z","enrolled":7553,"book":"http://chester.biz","course_url":"https://javonte.name"},{"course_title":"Monahan - Goldner","course_number":30818,"instructor":"Brady Padberg","location":"814 Crona Garden","time":"2018-07-14T18:09:05.272Z","enrolled":39472,"book":"http://lourdes.org","course_url":"https://wilhelmine.biz"},{"course_title":"Aufderhar - Toy","course_number":14963,"instructor":"Mr. Marian Goyette","location":"474 Clifton Turnpike","time":"2018-07-14T22:32:46.367Z","enrolled":51784,"book":"https://rodolfo.net","course_url":"http://lydia.name"},{"course_title":"Koch, Glover and Glover","course_number":27218,"instructor":"Narciso Kovacek","location":"55933 Cummerata Cliff","time":"2018-07-14T08:54:10.310Z","enrolled":32654,"book":"http://helmer.org","course_url":"https://nellie.com"},{"course_title":"Dicki - Barrows","course_number":18023,"instructor":"Dr. Junius Stehr","location":"66576 Wisozk Island","time":"2018-07-14T14:39:16.319Z","enrolled":77138,"book":"http://marilie.info","course_url":"http://sanford.info"},{"course_title":"Bergstrom Group","course_number":47600,"instructor":"Anabel Konopelski Jr.","location":"59168 Maud Stravenue","time":"2018-07-14T11:29:14.965Z","enrolled":57612,"book":"http://orland.info","course_url":"http://jerrod.com"},{"course_title":"Weissnat, Erdman and Gulgowski","course_number":97873,"instructor":"Mr. Kathlyn Stroman","location":"362 Jerde Springs","time":"2018-07-14T20:30:04.055Z","enrolled":50316,"book":"https://wilson.net","course_url":"https://freeman.biz"},{"course_title":"Douglas, Brekke and Lemke","course_number":44567,"instructor":"Neil Tillman II","location":"0095 Marty Ford","time":"2018-07-14T11:05:53.075Z","enrolled":3124,"book":"https://alaina.info","course_url":"https://helmer.info"},{"course_title":"Bergstrom - Will","course_number":24973,"instructor":"Ebony Gottlieb","location":"78420 Craig Place","time":"2018-07-14T22:00:03.627Z","enrolled":89441,"book":"http://reed.net","course_url":"http://jerod.name"},{"course_title":"Nader, Hessel and Weissnat","course_number":1318,"instructor":"Vallie Runolfsdottir","location":"85212 Leffler Well","time":"2018-07-14T20:00:07.697Z","enrolled":91931,"book":"http://ottilie.biz","course_url":"https://aaron.info"},{"course_title":"Hills, O'Hara and Adams","course_number":57880,"instructor":"Unique Balistreri","location":"74364 Wilderman Falls","time":"2018-07-14T05:02:00.894Z","enrolled":40797,"book":"http://tom.org","course_url":"https://felix.name"},{"course_title":"White - Hartmann","course_number":89677,"instructor":"Nina Cole","location":"533 Waelchi Estates","time":"2018-07-14T18:26:07.418Z","enrolled":68723,"book":"https://nedra.net","course_url":"https://tess.com"},{"course_title":"McLaughlin and Sons","course_number":46604,"instructor":"Terence Renner","location":"966 Braun Points","time":"2018-07-14T17:08:06.102Z","enrolled":99057,"book":"https://emmett.net","course_url":"http://alexzander.biz"},{"course_title":"Roberts - Conn","course_number":51136,"instructor":"Andreanne Reichert","location":"8051 Ullrich Mills","time":"2018-07-14T19:27:36.339Z","enrolled":32650,"book":"https://jerrod.biz","course_url":"https://colby.net"},{"course_title":"Fritsch - McLaughlin","course_number":37422,"instructor":"Arianna Mante","location":"819 Annie Springs","time":"2018-07-14T16:51:56.169Z","enrolled":63872,"book":"https://albin.info","course_url":"http://alford.com"},{"course_title":"Hessel - Klocko","course_number":53124,"instructor":"Leora Gibson","location":"29251 Kirk Drives","time":"2018-07-14T04:49:42.993Z","enrolled":30449,"book":"http://drake.org","course_url":"https://vella.com"},{"course_title":"Lowe - Blick","course_number":28367,"instructor":"Dedric DuBuque","location":"537 Lang Dale","time":"2018-07-14T17:07:09.944Z","enrolled":33314,"book":"https://calista.biz","course_url":"http://ida.net"},{"course_title":"Rau, Buckridge and Spencer","course_number":40796,"instructor":"Aiyana Watsica MD","location":"014 Barton Plains","time":"2018-07-14T16:30:39.421Z","enrolled":11154,"book":"https://madilyn.info","course_url":"http://mae.net"},{"course_title":"Schmidt LLC","course_number":2076,"instructor":"Ms. Tina Smitham","location":"0640 Madelynn Summit","time":"2018-07-14T09:08:28.622Z","enrolled":29425,"book":"http://george.biz","course_url":"http://shawna.org"},{"course_title":"Erdman, Zemlak and Kreiger","course_number":40707,"instructor":"Anderson Murray","location":"39685 Coby Valley","time":"2018-07-14T21:17:02.235Z","enrolled":97345,"book":"http://chelsea.net","course_url":"http://natasha.name"},{"course_title":"Block - Boyle","course_number":80389,"instructor":"Brycen Collier MD","location":"52077 Lehner Flat","time":"2018-07-14T21:49:10.740Z","enrolled":58653,"book":"http://yazmin.info","course_url":"https://maryam.com"},{"course_title":"Huels - Little","course_number":65432,"instructor":"Russel Thompson","location":"343 Runolfsson Divide","time":"2018-07-14T08:00:09.495Z","enrolled":69594,"book":"http://hester.net","course_url":"https://jude.net"},{"course_title":"Hayes and Sons","course_number":26262,"instructor":"Tiara Boyer","location":"873 Rogahn Parkways","time":"2018-07-14T12:54:38.815Z","enrolled":92455,"book":"http://jaycee.biz","course_url":"http://javonte.info"},{"course_title":"Schuster - McDermott","course_number":36190,"instructor":"Yasmin Streich","location":"3598 Upton Spur","time":"2018-07-14T00:50:54.284Z","enrolled":86275,"book":"http://adalberto.net","course_url":"https://jordon.net"},{"course_title":"Bashirian, Sporer and Emmerich","course_number":31118,"instructor":"Anais Wilderman","location":"995 Sawayn Streets","time":"2018-07-14T12:21:54.285Z","enrolled":87886,"book":"https://joe.biz","course_url":"https://orland.net"},{"course_title":"Schumm - Jones","course_number":18894,"instructor":"Luna Windler","location":"56601 Beahan Lane","time":"2018-07-14T09:38:52.482Z","enrolled":59844,"book":"http://taylor.org","course_url":"http://burley.biz"},{"course_title":"Berge, Kris and Dach","course_number":13174,"instructor":"Meaghan Abshire","location":"16903 Meggie Passage","time":"2018-07-13T23:45:54.632Z","enrolled":74986,"book":"https://granville.org","course_url":"https://leonor.org"},{"course_title":"Hayes, McLaughlin and Gutkowski","course_number":54437,"instructor":"Dr. Kianna O'Connell","location":"27516 Gusikowski Mews","time":"2018-07-14T21:47:19.660Z","enrolled":76510,"book":"https://sage.biz","course_url":"https://westley.info"},{"course_title":"Torphy, Hauck and Wyman","course_number":74069,"instructor":"Gonzalo Veum","location":"0549 Chase Key","time":"2018-07-14T04:16:52.833Z","enrolled":42149,"book":"http://jaquelin.com","course_url":"http://alexys.biz"},{"course_title":"Price Inc","course_number":54123,"instructor":"Rollin Osinski","location":"1829 Barrows Extension","time":"2018-07-14T18:09:26.823Z","enrolled":63226,"book":"http://adrienne.org","course_url":"https://bulah.org"},{"course_title":"McGlynn, Pouros and Ferry","course_number":43579,"instructor":"Miller Huel","location":"9165 Sawayn Harbor","time":"2018-07-14T11:11:07.017Z","enrolled":93303,"book":"http://giuseppe.org","course_url":"https://brad.com"},{"course_title":"Predovic - Padberg","course_number":18361,"instructor":"Lorena Stroman","location":"71694 D'Amore Streets","time":"2018-07-14T13:36:56.993Z","enrolled":39157,"book":"https://elizabeth.info","course_url":"https://theo.com"},{"course_title":"Effertz and Sons","course_number":24322,"instructor":"Leilani Walter","location":"1616 Bernadette Pine","time":"2018-07-14T01:56:22.874Z","enrolled":32172,"book":"https://arvid.name","course_url":"http://murray.info"},{"course_title":"Koelpin, Hoeger and White","course_number":35662,"instructor":"Ali Wehner I","location":"504 Jarred Knolls","time":"2018-07-14T09:09:15.368Z","enrolled":67855,"book":"https://adrianna.biz","course_url":"http://sydni.net"},{"course_title":"Nikolaus, Kuhic and Brown","course_number":45644,"instructor":"Jovany Toy Sr.","location":"04137 Hammes Turnpike","time":"2018-07-14T22:57:13.732Z","enrolled":57431,"book":"https://lizeth.biz","course_url":"https://natalia.net"},{"course_title":"Schowalter - Carroll","course_number":45822,"instructor":"Dulce Flatley","location":"841 Missouri Fall","time":"2018-07-14T18:27:06.924Z","enrolled":62017,"book":"https://raegan.com","course_url":"http://abner.com"},{"course_title":"Daniel - Cormier","course_number":11099,"instructor":"Kamren Altenwerth","location":"09113 Brandyn Tunnel","time":"2018-07-14T09:42:44.467Z","enrolled":42891,"book":"http://bartholome.name","course_url":"http://lera.com"},{"course_title":"Mosciski, D'Amore and Marquardt","course_number":21331,"instructor":"Zelda Kris","location":"64908 Hills Shoal","time":"2018-07-14T17:51:57.796Z","enrolled":31095,"book":"https://scotty.biz","course_url":"https://eino.biz"},{"course_title":"Beahan, Larson and Mills","course_number":37952,"instructor":"Mr. Florencio Skiles","location":"397 Malika Overpass","time":"2018-07-14T10:12:43.748Z","enrolled":66539,"book":"https://eulalia.info","course_url":"http://lonny.biz"},{"course_title":"Howell - Dickinson","course_number":44917,"instructor":"Issac Hane","location":"149 Donnie Islands","time":"2018-07-14T14:23:40.991Z","enrolled":56109,"book":"http://marina.net","course_url":"https://eugenia.biz"},{"course_title":"Pfeffer, Brown and Green","course_number":12650,"instructor":"Mckenna Beier","location":"03489 Dannie Knoll","time":"2018-07-14T00:03:17.631Z","enrolled":54263,"book":"http://hortense.biz","course_url":"http://colin.org"},{"course_title":"Grady - Huels","course_number":73870,"instructor":"Arturo Cronin","location":"9760 Gerhold Fall","time":"2018-07-14T10:55:43.350Z","enrolled":7372,"book":"https://johnnie.info","course_url":"http://amparo.name"},{"course_title":"Langworth - Beer","course_number":69777,"instructor":"Ettie Bechtelar","location":"61088 Aliyah Pines","time":"2018-07-14T12:54:56.180Z","enrolled":84432,"book":"http://orrin.org","course_url":"https://berta.name"},{"course_title":"Quigley, Littel and Williamson","course_number":63762,"instructor":"Jaren Gusikowski Sr.","location":"209 Conn Skyway","time":"2018-07-14T04:59:00.306Z","enrolled":54430,"book":"http://reece.name","course_url":"http://jany.com"},{"course_title":"Sporer LLC","course_number":2831,"instructor":"Cleta Cormier","location":"7759 Hessel Crossroad","time":"2018-07-14T02:05:15.722Z","enrolled":31641,"book":"http://verla.net","course_url":"http://rey.info"},{"course_title":"Becker Group","course_number":44,"instructor":"Eleonore Murray","location":"015 Koch Lane","time":"2018-07-14T04:02:20.137Z","enrolled":13481,"book":"https://maxime.com","course_url":"http://lorine.name"},{"course_title":"Walker, Shields and Lebsack","course_number":1712,"instructor":"Ferne Hettinger DVM","location":"84838 Grimes Radial","time":"2018-07-14T10:46:53.067Z","enrolled":93079,"book":"https://remington.info","course_url":"https://jeffry.name"},{"course_title":"Johnson Group","course_number":49262,"instructor":"Alfredo DuBuque","location":"0759 Mack Groves","time":"2018-07-14T11:49:15.701Z","enrolled":11269,"book":"http://judd.net","course_url":"https://frederique.biz"},{"course_title":"DuBuque - Dicki","course_number":69379,"instructor":"Camille Huels","location":"9536 Raheem Valleys","time":"2018-07-14T21:17:37.156Z","enrolled":249,"book":"http://derick.com","course_url":"https://marian.name"},{"course_title":"Swift Inc","course_number":34788,"instructor":"Shyanne Kulas","location":"708 Schulist Gateway","time":"2018-07-14T19:21:10.529Z","enrolled":277,"book":"https://ivory.net","course_url":"https://amira.net"},{"course_title":"Kuhic, Emmerich and Wunsch","course_number":35304,"instructor":"Mrs. Hunter Fahey","location":"4747 Metz Ville","time":"2018-07-13T23:56:34.841Z","enrolled":22000,"book":"http://desiree.com","course_url":"http://gust.org"},{"course_title":"Padberg - Emard","course_number":19423,"instructor":"Katelyn Satterfield","location":"19769 Sim Mews","time":"2018-07-14T13:39:36.627Z","enrolled":93704,"book":"http://daija.net","course_url":"http://maryam.com"},{"course_title":"Jakubowski Group","course_number":36827,"instructor":"Connie Franecki","location":"046 Esperanza View","time":"2018-07-14T08:06:32.079Z","enrolled":67059,"book":"https://delbert.info","course_url":"https://christy.name"},{"course_title":"Gleason - Feeney","course_number":40978,"instructor":"Lewis Hartmann","location":"86452 Etha Cape","time":"2018-07-14T14:00:46.958Z","enrolled":75095,"book":"http://margaret.info","course_url":"https://rebecca.org"},{"course_title":"Batz Inc","course_number":69336,"instructor":"Ewell Huel","location":"14026 Krystel Skyway","time":"2018-07-14T22:48:21.716Z","enrolled":48413,"book":"http://harry.net","course_url":"https://erin.name"},{"course_title":"Bechtelar, McClure and Pouros","course_number":81815,"instructor":"Mr. Shad Herzog","location":"4567 Zboncak Ford","time":"2018-07-14T16:53:27.923Z","enrolled":6963,"book":"https://george.org","course_url":"http://faye.org"},{"course_title":"Rodriguez - Gorczany","course_number":24600,"instructor":"Brant Powlowski","location":"78836 Wunsch Square","time":"2018-07-14T06:06:17.937Z","enrolled":8358,"book":"https://clifford.biz","course_url":"https://reginald.net"},{"course_title":"Boyer - Bode","course_number":17888,"instructor":"Deshaun Graham","location":"002 Langworth Parkway","time":"2018-07-14T04:55:41.744Z","enrolled":89505,"book":"http://laurianne.biz","course_url":"https://fredrick.org"},{"course_title":"Littel Group","course_number":98967,"instructor":"Abdul Kassulke","location":"437 Georgianna Hollow","time":"2018-07-14T12:33:17.293Z","enrolled":40510,"book":"http://jed.biz","course_url":"https://trenton.name"},{"course_title":"Jerde - Hudson","course_number":89104,"instructor":"Mervin Kris MD","location":"0919 Glover Vista","time":"2018-07-14T15:59:32.767Z","enrolled":99258,"book":"http://javon.biz","course_url":"https://stanton.info"},{"course_title":"Wiegand, Hegmann and Buckridge","course_number":37511,"instructor":"Mrs. Quinton Ward","location":"04624 Collier Estates","time":"2018-07-14T12:30:41.492Z","enrolled":66510,"book":"http://genesis.net","course_url":"http://arnulfo.biz"},{"course_title":"Abernathy Inc","course_number":85320,"instructor":"Mrs. Keyon Lehner","location":"904 Alberto Roads","time":"2018-07-13T23:34:39.914Z","enrolled":33904,"book":"http://hilda.info","course_url":"http://catherine.info"},{"course_title":"Jakubowski, Spinka and Hickle","course_number":95197,"instructor":"Gennaro Mraz","location":"7210 Streich Dam","time":"2018-07-14T08:52:34.413Z","enrolled":24473,"book":"http://francesco.biz","course_url":"https://katelin.info"},{"course_title":"Turcotte - Kihn","course_number":3422,"instructor":"Oma Hackett","location":"589 Adams Dale","time":"2018-07-14T14:30:04.346Z","enrolled":48111,"book":"http://jordyn.info","course_url":"http://dina.net"},{"course_title":"Lang, Yundt and Effertz","course_number":80903,"instructor":"Richard Corkery","location":"64936 Ratke Gateway","time":"2018-07-13T23:12:20.297Z","enrolled":21078,"book":"http://kristoffer.org","course_url":"https://tania.info"},{"course_title":"Satterfield LLC","course_number":3267,"instructor":"Leatha Feeney","location":"605 Krajcik Point","time":"2018-07-14T07:52:27.095Z","enrolled":95609,"book":"https://leilani.net","course_url":"https://marion.com"},{"course_title":"Hackett, Lockman and Rolfson","course_number":61182,"instructor":"Forrest Olson","location":"2793 Oceane Square","time":"2018-07-14T01:54:42.850Z","enrolled":80943,"book":"https://petra.com","course_url":"https://alene.info"},{"course_title":"Kirlin, DuBuque and Weissnat","course_number":4222,"instructor":"Frederic Jenkins","location":"17066 Alfonzo Center","time":"2018-07-14T14:13:07.361Z","enrolled":92205,"book":"http://lucinda.name","course_url":"http://adela.net"},{"course_title":"Koepp, Kertzmann and Crona","course_number":27112,"instructor":"Salma Douglas","location":"764 Walker Shores","time":"2018-07-14T20:25:29.335Z","enrolled":34434,"book":"http://linwood.com","course_url":"https://providenci.org"},{"course_title":"Nolan - Lynch","course_number":38061,"instructor":"Herbert Stiedemann","location":"7898 Rogelio Prairie","time":"2018-07-14T11:53:29.520Z","enrolled":78820,"book":"https://ola.biz","course_url":"https://dedrick.com"},{"course_title":"Langosh - Von","course_number":28551,"instructor":"Bennett Treutel","location":"0972 Bruen Drive","time":"2018-07-14T10:50:50.820Z","enrolled":22347,"book":"https://libbie.info","course_url":"https://kim.net"},{"course_title":"Bayer, Howe and Balistreri","course_number":36567,"instructor":"Wyatt Reichel","location":"013 Wolff Track","time":"2018-07-14T09:27:42.610Z","enrolled":86581,"book":"http://ozella.info","course_url":"https://juvenal.biz"},{"course_title":"Nienow and Sons","course_number":90194,"instructor":"Karine Emard","location":"68124 Monahan Fields","time":"2018-07-14T12:59:00.515Z","enrolled":25333,"book":"https://karlee.com","course_url":"http://allan.info"},{"course_title":"Koepp - Hahn","course_number":46122,"instructor":"Miss Juanita Ratke","location":"7974 Precious Points","time":"2018-07-14T11:16:22.724Z","enrolled":23741,"book":"http://ida.info","course_url":"https://sandra.name"},{"course_title":"Abernathy, Zulauf and Mayer","course_number":53483,"instructor":"Chet Pacocha","location":"781 Tremblay Loop","time":"2018-07-14T13:21:13.344Z","enrolled":23139,"book":"http://arlene.name","course_url":"https://esteban.org"},{"course_title":"Bartell - Schumm","course_number":92590,"instructor":"Chauncey Heathcote","location":"63407 Baylee Stream","time":"2018-07-14T03:40:40.338Z","enrolled":53525,"book":"https://mariah.com","course_url":"http://adonis.info"},{"course_title":"Roberts and Sons","course_number":8241,"instructor":"Franz Gusikowski","location":"32588 Anne Ramp","time":"2018-07-14T09:13:22.077Z","enrolled":41952,"book":"https://moshe.info","course_url":"http://enid.net"},{"course_title":"Predovic - Kling","course_number":96156,"instructor":"Jaycee Howell","location":"292 Koch Spur","time":"2018-07-14T15:46:35.766Z","enrolled":18924,"book":"https://myrtis.info","course_url":"https://eulalia.name"},{"course_title":"Ledner - Batz","course_number":31569,"instructor":"Kristy Spencer","location":"7628 Koch Mountain","time":"2018-07-14T17:13:56.662Z","enrolled":66955,"book":"http://chaim.net","course_url":"https://kameron.info"},{"course_title":"Conroy - Kulas","course_number":93163,"instructor":"Howell Hegmann","location":"5644 Cortez Street","time":"2018-07-14T07:38:37.438Z","enrolled":11678,"book":"https://muriel.biz","course_url":"http://otis.org"},{"course_title":"Jenkins, Bartell and Goyette","course_number":92270,"instructor":"Brennan Breitenberg I","location":"4805 Schaden Flat","time":"2018-07-14T08:44:20.462Z","enrolled":38877,"book":"http://hettie.com","course_url":"https://willard.name"},{"course_title":"Hilll Inc","course_number":51230,"instructor":"Donna Mosciski","location":"7120 Kub Inlet","time":"2018-07-14T16:44:07.892Z","enrolled":77413,"book":"https://pansy.com","course_url":"https://christelle.name"},{"course_title":"Stark, Lockman and Frami","course_number":16172,"instructor":"Asha Pagac","location":"5191 Chad Circle","time":"2018-07-14T16:08:33.737Z","enrolled":64247,"book":"http://carlos.org","course_url":"http://josh.info"},{"course_title":"Durgan - Grady","course_number":3190,"instructor":"Delores Funk","location":"03770 Kris Plains","time":"2018-07-14T01:22:29.393Z","enrolled":7888,"book":"https://zachery.com","course_url":"https://zackary.info"},{"course_title":"Gutmann, Hoppe and Altenwerth","course_number":4488,"instructor":"Josie Langosh III","location":"665 Shayna Trail","time":"2018-07-13T23:53:52.593Z","enrolled":92834,"book":"https://kayley.biz","course_url":"https://stevie.info"},{"course_title":"Zulauf - Ebert","course_number":88695,"instructor":"Verdie Swaniawski","location":"8059 Kristoffer Ways","time":"2018-07-14T02:43:10.588Z","enrolled":55518,"book":"http://onie.net","course_url":"http://randal.biz"},{"course_title":"Moen - Larson","course_number":12949,"instructor":"Ona Hoppe","location":"5599 Cassin Rapids","time":"2018-07-14T00:48:00.853Z","enrolled":70560,"book":"https://miracle.net","course_url":"https://otho.info"},{"course_title":"Rath, Green and Powlowski","course_number":21215,"instructor":"Jaime Rath","location":"683 Princess Station","time":"2018-07-14T17:44:58.519Z","enrolled":95141,"book":"https://julie.com","course_url":"https://cecil.net"},{"course_title":"Mueller, Farrell and Nienow","course_number":88895,"instructor":"Darlene Kohler","location":"01888 Valerie Row","time":"2018-07-14T12:21:11.539Z","enrolled":48070,"book":"https://patricia.info","course_url":"https://lorine.com"},{"course_title":"Hansen - Thompson","course_number":86456,"instructor":"Dolores Pagac","location":"94393 Larson Throughway","time":"2018-07-14T22:49:35.480Z","enrolled":69379,"book":"http://leopold.net","course_url":"https://eryn.name"},{"course_title":"Huels - DuBuque","course_number":71314,"instructor":"Gay Ebert","location":"29947 Audreanne Club","time":"2018-07-14T21:47:44.978Z","enrolled":92794,"book":"https://renee.name","course_url":"http://katrine.name"},{"course_title":"Osinski Group","course_number":18305,"instructor":"Harrison Weber","location":"65101 Quitzon Junctions","time":"2018-07-14T09:58:30.111Z","enrolled":9505,"book":"http://cordelia.com","course_url":"http://aylin.com"},{"course_title":"Kiehn - Prosacco","course_number":48435,"instructor":"Winfield Anderson","location":"1119 Schultz Greens","time":"2018-07-14T04:01:23.944Z","enrolled":45835,"book":"https://delphia.org","course_url":"http://beulah.net"},{"course_title":"Bosco, Johns and Sauer","course_number":60346,"instructor":"Arnulfo Beier","location":"17874 Kirk Island","time":"2018-07-14T10:12:07.785Z","enrolled":27596,"book":"https://marian.org","course_url":"https://kasandra.name"},{"course_title":"Renner Group","course_number":58124,"instructor":"Olga Mohr","location":"8483 Kutch Stravenue","time":"2018-07-14T06:00:08.119Z","enrolled":83150,"book":"https://juvenal.com","course_url":"http://mackenzie.info"},{"course_title":"Wintheiser - Kiehn","course_number":57454,"instructor":"Laurence Gaylord I","location":"32688 Christophe Centers","time":"2018-07-14T13:29:00.743Z","enrolled":50993,"book":"https://krystal.com","course_url":"http://dusty.com"},{"course_title":"Johns and Sons","course_number":27833,"instructor":"Lamar Parker","location":"369 Itzel Glens","time":"2018-07-14T16:57:10.190Z","enrolled":87593,"book":"https://jean.com","course_url":"http://ila.info"},{"course_title":"Jacobson LLC","course_number":26977,"instructor":"Novella Doyle","location":"16896 Haag Plains","time":"2018-07-14T18:34:18.394Z","enrolled":92393,"book":"http://fern.net","course_url":"http://brody.name"},{"course_title":"Schumm Group","course_number":17823,"instructor":"Kaycee Wisozk","location":"2695 Jacobi Glens","time":"2018-07-14T22:48:07.212Z","enrolled":61954,"book":"https://monique.biz","course_url":"https://julius.com"},{"course_title":"Streich - Christiansen","course_number":87659,"instructor":"Niko Bauch","location":"07803 Tyra Port","time":"2018-07-14T20:56:06.663Z","enrolled":99810,"book":"https://dario.biz","course_url":"http://patsy.info"},{"course_title":"Torphy, Schultz and Purdy","course_number":24787,"instructor":"Yasmin Dietrich V","location":"67997 Zboncak Fork","time":"2018-07-14T15:56:37.529Z","enrolled":5607,"book":"http://hailee.biz","course_url":"http://jeramy.net"},{"course_title":"Hettinger, Turner and Robel","course_number":98622,"instructor":"Chet Jast","location":"1209 Lavonne Stravenue","time":"2018-07-14T08:28:20.740Z","enrolled":5249,"book":"http://gladys.info","course_url":"https://margarette.biz"},{"course_title":"Shanahan Group","course_number":38971,"instructor":"Matilde Terry","location":"30592 Gaylord Extensions","time":"2018-07-14T12:46:25.662Z","enrolled":45291,"book":"https://matilde.org","course_url":"http://tania.name"},{"course_title":"Torphy, Klein and Mueller","course_number":61490,"instructor":"Marley Miller","location":"41919 Liliana Manors","time":"2018-07-14T22:35:16.950Z","enrolled":77863,"book":"https://perry.org","course_url":"https://genoveva.net"},{"course_title":"Daniel Inc","course_number":24997,"instructor":"Kendrick Klein","location":"750 Emilie Lodge","time":"2018-07-14T04:50:24.599Z","enrolled":4328,"book":"http://chelsey.net","course_url":"http://martina.net"},{"course_title":"Jones, Adams and Lueilwitz","course_number":17669,"instructor":"Vidal Morissette","location":"753 Vada Plaza","time":"2018-07-14T15:38:01.909Z","enrolled":80598,"book":"http://deanna.com","course_url":"http://jaylon.com"},{"course_title":"Heaney, Reynolds and Ortiz","course_number":64858,"instructor":"Adelle Howell","location":"60761 Grayce Walks","time":"2018-07-14T04:15:18.530Z","enrolled":47457,"book":"http://cyrus.com","course_url":"https://mariana.biz"},{"course_title":"Bayer, Veum and Hoeger","course_number":88133,"instructor":"Jerrell O'Keefe","location":"90336 Streich River","time":"2018-07-14T06:57:49.359Z","enrolled":97188,"book":"https://gino.info","course_url":"http://hannah.org"},{"course_title":"King Inc","course_number":24763,"instructor":"Arnaldo Bednar PhD","location":"42919 Quigley Extension","time":"2018-07-14T02:08:24.834Z","enrolled":88230,"book":"http://pearl.net","course_url":"http://jeromy.net"},{"course_title":"Champlin - Hermiston","course_number":83979,"instructor":"Effie Predovic","location":"521 Hettie Glens","time":"2018-07-14T10:44:43.206Z","enrolled":74564,"book":"https://ophelia.net","course_url":"https://branson.net"},{"course_title":"Gottlieb Inc","course_number":17213,"instructor":"Elfrieda Greenholt","location":"943 Feeney Point","time":"2018-07-14T11:27:27.463Z","enrolled":47877,"book":"https://justen.info","course_url":"http://cyrus.biz"},{"course_title":"Bruen - Bode","course_number":79212,"instructor":"Gilbert Casper","location":"551 Monahan Dale","time":"2018-07-14T12:03:23.716Z","enrolled":2299,"book":"https://beryl.info","course_url":"http://herminia.net"},{"course_title":"D'Amore, Stokes and Ernser","course_number":33350,"instructor":"Janae Hand","location":"1375 Grace Greens","time":"2018-07-14T20:15:06.992Z","enrolled":8172,"book":"http://ellen.info","course_url":"http://minerva.net"},{"course_title":"Conn, Barrows and Hoeger","course_number":87300,"instructor":"Jeremie Medhurst","location":"1168 Farrell River","time":"2018-07-14T16:26:09.954Z","enrolled":40400,"book":"http://madeline.biz","course_url":"http://skylar.net"},{"course_title":"Jones Inc","course_number":9833,"instructor":"Shakira Willms","location":"651 Lehner Trail","time":"2018-07-14T21:07:18.982Z","enrolled":63668,"book":"http://abdiel.name","course_url":"http://nicolas.com"},{"course_title":"Swaniawski and Sons","course_number":26017,"instructor":"Kraig Kunze","location":"3235 Camryn Locks","time":"2018-07-14T16:35:56.061Z","enrolled":61050,"book":"http://vivienne.info","course_url":"https://aylin.biz"},{"course_title":"Cummerata and Sons","course_number":59772,"instructor":"Matteo Wolf","location":"34458 Schiller Rue","time":"2018-07-14T11:09:30.736Z","enrolled":33867,"book":"https://nelle.name","course_url":"http://efrain.org"},{"course_title":"Dickens - Treutel","course_number":54818,"instructor":"Amina Ryan","location":"62284 Bergnaum Fall","time":"2018-07-14T13:46:56.591Z","enrolled":24745,"book":"http://julie.org","course_url":"http://laurel.com"},{"course_title":"Ward, Stoltenberg and Spencer","course_number":59967,"instructor":"Dion Oberbrunner","location":"9452 Hartmann Station","time":"2018-07-14T20:03:32.430Z","enrolled":72166,"book":"https://reagan.name","course_url":"https://robbie.name"},{"course_title":"Ondricka - West","course_number":15632,"instructor":"Reyna Wiegand","location":"4531 Hodkiewicz Creek","time":"2018-07-14T09:02:10.641Z","enrolled":6348,"book":"http://crystel.org","course_url":"https://philip.info"},{"course_title":"Kutch, Hagenes and Boyer","course_number":68459,"instructor":"Connor O'Keefe","location":"5741 Hal River","time":"2018-07-14T15:12:00.766Z","enrolled":299,"book":"https://mylene.com","course_url":"https://javonte.com"},{"course_title":"Durgan Group","course_number":65102,"instructor":"Sabina Reilly","location":"99152 Glennie Villages","time":"2018-07-14T14:54:35.179Z","enrolled":49149,"book":"https://keaton.info","course_url":"http://leonard.com"},{"course_title":"Mante and Sons","course_number":43976,"instructor":"Celia Gusikowski","location":"81636 Jose Common","time":"2018-07-14T11:31:20.995Z","enrolled":3406,"book":"http://baron.info","course_url":"http://augustine.com"},{"course_title":"Denesik, Donnelly and Wuckert","course_number":4889,"instructor":"Vena Klocko","location":"73392 Mills Corners","time":"2018-07-14T16:44:40.754Z","enrolled":19642,"book":"http://damion.biz","course_url":"https://kiera.net"},{"course_title":"Grimes - Renner","course_number":45220,"instructor":"Adolfo Larson","location":"5020 Rickie Passage","time":"2018-07-14T19:21:27.289Z","enrolled":32977,"book":"http://aurelie.name","course_url":"http://layla.net"},{"course_title":"Kunde - Gaylord","course_number":97711,"instructor":"Jamel Weissnat","location":"569 Altenwerth Ridges","time":"2018-07-14T10:09:49.072Z","enrolled":79239,"book":"http://hyman.com","course_url":"http://demario.com"},{"course_title":"Sipes, Rolfson and Gibson","course_number":13061,"instructor":"Trisha Koch","location":"26738 Mills Ford","time":"2018-07-14T17:37:05.733Z","enrolled":70025,"book":"http://hudson.biz","course_url":"https://alexie.info"},{"course_title":"Christiansen, Bosco and Marks","course_number":27155,"instructor":"Dr. Nova Waelchi","location":"238 Garret Walk","time":"2018-07-14T10:28:58.580Z","enrolled":26695,"book":"http://heather.com","course_url":"http://twila.name"},{"course_title":"White, Larkin and Fadel","course_number":13948,"instructor":"Julia Bosco","location":"8547 Cristobal Crossing","time":"2018-07-14T21:49:40.865Z","enrolled":77905,"book":"http://abigail.org","course_url":"http://maybell.net"},{"course_title":"Wilkinson - Treutel","course_number":38004,"instructor":"Caitlyn Casper","location":"552 Koss Light","time":"2018-07-14T17:33:43.238Z","enrolled":89071,"book":"http://thea.net","course_url":"https://silas.org"},{"course_title":"Mitchell and Sons","course_number":45873,"instructor":"Franco Stiedemann","location":"94957 Huel Path","time":"2018-07-14T07:53:41.495Z","enrolled":65998,"book":"http://declan.biz","course_url":"http://emie.biz"},{"course_title":"Padberg, Schultz and Hintz","course_number":76278,"instructor":"Telly Mertz","location":"8770 Waters Mount","time":"2018-07-14T05:59:11.966Z","enrolled":62387,"book":"https://walton.org","course_url":"https://claud.com"},{"course_title":"Hettinger - Koss","course_number":18532,"instructor":"Alvena Jacobson","location":"985 Lincoln Burgs","time":"2018-07-14T21:01:14.312Z","enrolled":92843,"book":"http://blanca.info","course_url":"http://jewel.com"},{"course_title":"Harris - Gleichner","course_number":23204,"instructor":"Anahi Kemmer","location":"947 Mertz Forks","time":"2018-07-14T17:15:58.987Z","enrolled":44049,"book":"https://lydia.org","course_url":"http://kiera.biz"},{"course_title":"Bechtelar - Von","course_number":46557,"instructor":"Dariana O'Connell","location":"52370 Shania Vista","time":"2018-07-14T04:36:49.287Z","enrolled":99486,"book":"http://amelia.net","course_url":"http://madge.com"},{"course_title":"Flatley, Tromp and Anderson","course_number":75444,"instructor":"Courtney Schaefer","location":"0412 Bo Knolls","time":"2018-07-14T07:45:44.572Z","enrolled":21527,"book":"http://francesca.org","course_url":"http://jarvis.biz"},{"course_title":"Hahn, Jaskolski and Nikolaus","course_number":99372,"instructor":"Elliot Champlin","location":"1056 Goyette Fall","time":"2018-07-14T01:33:45.858Z","enrolled":54017,"book":"https://brandt.com","course_url":"https://laurie.info"},{"course_title":"Will, Homenick and Beier","course_number":680,"instructor":"Kaia Ward","location":"229 Reta Squares","time":"2018-07-14T22:53:25.807Z","enrolled":17648,"book":"https://oda.name","course_url":"https://larry.name"},{"course_title":"Hamill, Bernier and Volkman","course_number":69481,"instructor":"Mrs. Yasmeen Vandervort","location":"407 White Garden","time":"2018-07-14T02:47:49.173Z","enrolled":24980,"book":"https://guido.biz","course_url":"http://tyler.net"},{"course_title":"Green - Mante","course_number":22171,"instructor":"Estrella Larson","location":"3188 Summer Knoll","time":"2018-07-14T19:48:51.850Z","enrolled":71306,"book":"https://malvina.com","course_url":"https://alexzander.org"},{"course_title":"West - DuBuque","course_number":96358,"instructor":"Nakia Kshlerin V","location":"753 Diamond Drive","time":"2018-07-14T02:51:39.687Z","enrolled":94114,"book":"https://joy.biz","course_url":"http://natalie.info"},{"course_title":"Aufderhar LLC","course_number":88848,"instructor":"Soledad Hane","location":"5155 Harrison Spring","time":"2018-07-14T02:16:25.904Z","enrolled":6983,"book":"http://berenice.name","course_url":"http://kailyn.biz"},{"course_title":"Von - Powlowski","course_number":70246,"instructor":"Kristin Kris","location":"64392 Hettinger Curve","time":"2018-07-14T04:42:27.844Z","enrolled":90149,"book":"https://jamel.com","course_url":"http://jordon.org"},{"course_title":"Robel - Bins","course_number":36918,"instructor":"Dustin Bauch","location":"958 Schimmel Shoals","time":"2018-07-14T06:31:29.669Z","enrolled":90908,"book":"http://ora.net","course_url":"http://makayla.biz"},{"course_title":"Emard - Schumm","course_number":2353,"instructor":"Dr. Katrina Batz","location":"0782 Leon Green","time":"2018-07-14T17:19:54.307Z","enrolled":75125,"book":"https://wilfredo.com","course_url":"https://lisa.name"},{"course_title":"Adams, Kemmer and Hackett","course_number":99651,"instructor":"Ryan Legros","location":"9070 Jerod Garden","time":"2018-07-14T08:02:58.570Z","enrolled":51967,"book":"http://eliezer.info","course_url":"http://kariane.net"},{"course_title":"Nolan, Bradtke and Wiegand","course_number":83031,"instructor":"Margie Williamson","location":"19470 Hertha Street","time":"2018-07-14T14:48:16.054Z","enrolled":25683,"book":"http://rashawn.info","course_url":"http://vella.org"},{"course_title":"Blick Group","course_number":16619,"instructor":"Liliana Botsford","location":"4880 Kulas Mountain","time":"2018-07-14T10:21:41.208Z","enrolled":24977,"book":"https://edwardo.name","course_url":"https://anibal.com"},{"course_title":"Stamm - Tromp","course_number":656,"instructor":"Brionna Smith","location":"208 Mayert Circles","time":"2018-07-14T15:37:18.745Z","enrolled":97139,"book":"http://ayana.name","course_url":"http://adele.org"},{"course_title":"Schumm LLC","course_number":99427,"instructor":"Adrienne Connelly Sr.","location":"68337 Gusikowski Ways","time":"2018-07-14T12:21:34.416Z","enrolled":35398,"book":"https://yadira.biz","course_url":"https://drake.net"},{"course_title":"Schinner - Kuhic","course_number":7056,"instructor":"Imani Dooley","location":"76895 Brakus Mountain","time":"2018-07-14T23:01:30.007Z","enrolled":91471,"book":"https://vivianne.net","course_url":"https://jada.net"},{"course_title":"Lesch LLC","course_number":26219,"instructor":"Miss Nils Toy","location":"3168 Colton Street","time":"2018-07-14T05:02:21.174Z","enrolled":75863,"book":"http://micheal.info","course_url":"https://sim.com"},{"course_title":"Rowe, Dickinson and Walter","course_number":39245,"instructor":"Tia Huel","location":"5655 Howe Centers","time":"2018-07-14T19:38:06.988Z","enrolled":37494,"book":"https://ella.org","course_url":"https://courtney.info"},{"course_title":"Bins - Glover","course_number":86700,"instructor":"Johathan Breitenberg","location":"2887 Veda Pines","time":"2018-07-14T10:21:06.184Z","enrolled":70419,"book":"https://brook.com","course_url":"http://onie.org"},{"course_title":"Reinger - Smith","course_number":60380,"instructor":"Keagan Stanton","location":"1180 Lesch Courts","time":"2018-07-14T01:08:28.424Z","enrolled":76351,"book":"http://chyna.biz","course_url":"https://karolann.org"},{"course_title":"Price, Armstrong and Crooks","course_number":5302,"instructor":"Ms. Georgette Roob","location":"78630 Ernser Spring","time":"2018-07-14T09:39:52.351Z","enrolled":74744,"book":"http://hershel.org","course_url":"http://carleton.name"},{"course_title":"Reilly and Sons","course_number":73873,"instructor":"Tyreek Brown","location":"1569 Sipes Meadows","time":"2018-07-14T05:57:00.976Z","enrolled":91703,"book":"https://aniyah.org","course_url":"https://gerry.org"},{"course_title":"Beer LLC","course_number":47410,"instructor":"Marvin Auer V","location":"3636 Bertha Viaduct","time":"2018-07-14T19:17:50.653Z","enrolled":66147,"book":"http://maribel.com","course_url":"http://neha.info"},{"course_title":"Smitham LLC","course_number":23735,"instructor":"Jaycee Wehner","location":"77068 Casper Trail","time":"2018-07-14T16:09:58.253Z","enrolled":56710,"book":"https://orrin.biz","course_url":"https://angelina.biz"},{"course_title":"Funk Inc","course_number":37017,"instructor":"Antonina Ledner","location":"6300 Jeremie Locks","time":"2018-07-14T21:13:09.150Z","enrolled":8878,"book":"https://estella.biz","course_url":"http://carlos.info"},{"course_title":"Mayert, Raynor and Grimes","course_number":58132,"instructor":"Angela MacGyver","location":"38740 Abshire Circle","time":"2018-07-14T01:32:43.413Z","enrolled":13750,"book":"https://mallie.info","course_url":"https://giovani.biz"},{"course_title":"Quigley LLC","course_number":47233,"instructor":"Ms. Vernice Walsh","location":"9317 Gregory Ports","time":"2018-07-14T00:09:06.736Z","enrolled":84622,"book":"http://lilly.name","course_url":"http://daisha.net"},{"course_title":"Ruecker - Klocko","course_number":39623,"instructor":"Jalon Kub","location":"988 Devon Street","time":"2018-07-14T03:53:53.819Z","enrolled":25122,"book":"https://coleman.name","course_url":"http://oran.com"},{"course_title":"Bernier, Harber and Grady","course_number":7566,"instructor":"Miss Damaris Torp","location":"192 Graciela Loaf","time":"2018-07-14T08:20:24.002Z","enrolled":12346,"book":"http://leo.com","course_url":"https://leone.info"},{"course_title":"Hayes - Bosco","course_number":84330,"instructor":"Tillman Larkin I","location":"94355 Kory Mount","time":"2018-07-14T03:33:09.642Z","enrolled":26573,"book":"http://toney.info","course_url":"http://ona.name"},{"course_title":"Mueller Inc","course_number":58437,"instructor":"Einar Goyette","location":"38684 Frank Wells","time":"2018-07-14T03:38:26.440Z","enrolled":94577,"book":"http://mariela.com","course_url":"https://angie.biz"},{"course_title":"Jones, Senger and Robel","course_number":15566,"instructor":"Judge Walker","location":"133 Abigail Plaza","time":"2018-07-14T02:14:14.537Z","enrolled":93317,"book":"https://savanah.name","course_url":"http://maverick.com"},{"course_title":"Parisian - Bergstrom","course_number":20326,"instructor":"Bobbie Powlowski II","location":"7119 Holden Mountains","time":"2018-07-13T23:50:37.138Z","enrolled":90351,"book":"https://corine.net","course_url":"http://hester.biz"},{"course_title":"Schowalter LLC","course_number":62141,"instructor":"Lon Medhurst","location":"797 Romaguera Lane","time":"2018-07-14T14:52:23.817Z","enrolled":58430,"book":"http://lizeth.org","course_url":"http://presley.net"},{"course_title":"Friesen - Walter","course_number":14175,"instructor":"Claudine Upton","location":"597 Laron Valley","time":"2018-07-14T18:44:17.517Z","enrolled":62333,"book":"http://margot.com","course_url":"http://anabelle.info"},{"course_title":"VonRueden, Osinski and Mann","course_number":98535,"instructor":"Lavon White","location":"7033 Maegan Camp","time":"2018-07-14T01:06:53.174Z","enrolled":65116,"book":"http://keeley.biz","course_url":"http://nicolas.info"},{"course_title":"Gerhold, Spinka and Legros","course_number":6782,"instructor":"Estella Wintheiser","location":"891 Lynch Expressway","time":"2018-07-14T01:42:54.834Z","enrolled":30363,"book":"http://emmy.name","course_url":"http://mervin.info"},{"course_title":"Goodwin - Barrows","course_number":48629,"instructor":"Monty Stokes","location":"1929 Lowell Hills","time":"2018-07-14T06:29:01.268Z","enrolled":69875,"book":"https://monserrat.net","course_url":"https://cornelius.net"},{"course_title":"Abshire and Sons","course_number":45976,"instructor":"Ms. Toby Hirthe","location":"18643 Beier Dam","time":"2018-07-14T01:41:59.193Z","enrolled":56556,"book":"https://roberta.info","course_url":"http://geo.org"},{"course_title":"Thiel - Osinski","course_number":82788,"instructor":"Torrey O'Reilly","location":"375 Goyette Hill","time":"2018-07-14T00:01:48.471Z","enrolled":88240,"book":"https://josiah.net","course_url":"http://brannon.name"},{"course_title":"Turcotte Inc","course_number":91050,"instructor":"Garrison McKenzie","location":"46983 Ethyl Court","time":"2018-07-14T13:01:48.800Z","enrolled":69726,"book":"http://deion.com","course_url":"https://tremaine.org"},{"course_title":"Russel and Sons","course_number":45408,"instructor":"Jameson Upton","location":"229 Gerlach Junctions","time":"2018-07-14T15:32:01.700Z","enrolled":42239,"book":"http://elliot.biz","course_url":"http://garrett.biz"},{"course_title":"Little, Cummerata and Miller","course_number":77075,"instructor":"Gabe Marvin","location":"046 Kerluke Lock","time":"2018-07-14T00:21:52.633Z","enrolled":90719,"book":"https://reva.net","course_url":"http://fabian.net"},{"course_title":"Schaden and Sons","course_number":50172,"instructor":"Henry Beahan","location":"7430 Ernser Fields","time":"2018-07-14T05:24:15.667Z","enrolled":60719,"book":"https://christine.biz","course_url":"https://jessica.name"},{"course_title":"Jerde - Hilll","course_number":31947,"instructor":"Arturo Lebsack","location":"151 Gottlieb Mountain","time":"2018-07-14T02:35:55.054Z","enrolled":51192,"book":"http://rodrigo.net","course_url":"http://xzavier.biz"},{"course_title":"Boyer Group","course_number":89267,"instructor":"Joyce Zulauf","location":"74690 Wiza Curve","time":"2018-07-14T21:32:45.428Z","enrolled":79159,"book":"http://vivien.biz","course_url":"http://sister.biz"},{"course_title":"Fadel, Barton and Wyman","course_number":43990,"instructor":"Evan Huel","location":"59020 Koepp Track","time":"2018-07-14T08:40:45.090Z","enrolled":22071,"book":"http://freeman.biz","course_url":"http://trudie.info"},{"course_title":"Tromp and Sons","course_number":92289,"instructor":"Marjolaine Wisozk","location":"238 Madalyn Springs","time":"2018-07-14T18:26:32.480Z","enrolled":82685,"book":"http://arielle.biz","course_url":"https://eusebio.biz"},{"course_title":"Greenfelder Inc","course_number":13424,"instructor":"Kelli Davis","location":"752 Wisoky Springs","time":"2018-07-14T17:29:10.180Z","enrolled":19691,"book":"http://dayna.net","course_url":"http://magdalena.org"},{"course_title":"Legros, Brakus and Stanton","course_number":22874,"instructor":"Missouri Ondricka","location":"2945 Bashirian Green","time":"2018-07-14T00:28:21.599Z","enrolled":94316,"book":"https://zechariah.name","course_url":"https://nayeli.info"},{"course_title":"Hand LLC","course_number":44621,"instructor":"Arnulfo Fadel","location":"29891 Michaela Expressway","time":"2018-07-14T01:10:06.911Z","enrolled":11176,"book":"https://maximilian.com","course_url":"https://maggie.biz"},{"course_title":"Conn - Zboncak","course_number":68039,"instructor":"Thelma Ullrich","location":"670 Rolfson Pike","time":"2018-07-14T10:05:02.422Z","enrolled":64922,"book":"http://brandon.name","course_url":"http://ashley.biz"},{"course_title":"Stanton and Sons","course_number":52159,"instructor":"Alfred O'Hara II","location":"0721 Krajcik Well","time":"2018-07-14T13:42:22.796Z","enrolled":12233,"book":"http://tessie.org","course_url":"http://dudley.net"},{"course_title":"Dare Group","course_number":2731,"instructor":"Mr. Nakia Olson","location":"40296 Priscilla Skyway","time":"2018-07-14T05:39:29.030Z","enrolled":36549,"book":"https://jaida.com","course_url":"http://kianna.biz"},{"course_title":"Runolfsdottir, Lueilwitz and Larson","course_number":62551,"instructor":"Freddie Schuppe","location":"1348 Flavio Well","time":"2018-07-14T16:35:41.658Z","enrolled":87277,"book":"https://dortha.info","course_url":"https://zander.org"},{"course_title":"Ortiz - Kub","course_number":15106,"instructor":"Clint Beatty Sr.","location":"817 Howe Walk","time":"2018-07-14T13:32:30.217Z","enrolled":48809,"book":"http://anjali.biz","course_url":"http://kenneth.org"},{"course_title":"Roob, Kessler and Bernier","course_number":59489,"instructor":"Catherine Mills","location":"87905 Steuber Fields","time":"2018-07-14T22:55:48.736Z","enrolled":49831,"book":"http://aurelio.net","course_url":"https://jolie.info"},{"course_title":"Kautzer Group","course_number":75539,"instructor":"Harley Waters PhD","location":"770 Rohan Roads","time":"2018-07-14T07:00:43.294Z","enrolled":10224,"book":"http://emiliano.info","course_url":"http://shakira.info"},{"course_title":"Effertz, Ankunding and Marquardt","course_number":29614,"instructor":"Efren King","location":"232 Yost Estates","time":"2018-07-14T16:17:42.187Z","enrolled":48756,"book":"https://abdul.org","course_url":"https://ray.com"},{"course_title":"Renner - Homenick","course_number":16082,"instructor":"Gladys Grady Jr.","location":"95521 Piper Bridge","time":"2018-07-14T08:47:36.291Z","enrolled":14937,"book":"https://jody.org","course_url":"http://zula.name"},{"course_title":"Corkery, Jacobi and Hickle","course_number":57126,"instructor":"Ambrose Goyette","location":"85164 Kristin Underpass","time":"2018-07-14T15:50:20.705Z","enrolled":5551,"book":"https://bessie.net","course_url":"http://mossie.name"},{"course_title":"Pouros - Ryan","course_number":11768,"instructor":"Nelle Parisian II","location":"746 Boris Lock","time":"2018-07-14T03:21:36.280Z","enrolled":18853,"book":"http://jett.info","course_url":"https://eduardo.net"},{"course_title":"Swift, Schuppe and Tillman","course_number":7655,"instructor":"Oscar Schimmel","location":"2220 Adrian Turnpike","time":"2018-07-13T23:25:14.475Z","enrolled":57130,"book":"http://americo.biz","course_url":"https://lelah.net"},{"course_title":"Steuber, Davis and Hayes","course_number":52937,"instructor":"Noelia Mraz","location":"1796 Gerda Dam","time":"2018-07-14T14:56:50.508Z","enrolled":58274,"book":"https://kelvin.net","course_url":"https://rhiannon.org"},{"course_title":"Abshire, Jast and Boehm","course_number":70447,"instructor":"Kelly Reilly","location":"2397 Henry Trail","time":"2018-07-14T13:01:05.650Z","enrolled":67658,"book":"http://delmer.biz","course_url":"https://kevin.net"},{"course_title":"Stehr - Metz","course_number":63911,"instructor":"Erling Kiehn","location":"815 Abernathy Views","time":"2018-07-14T04:28:14.140Z","enrolled":41075,"book":"http://aron.net","course_url":"http://virgil.net"},{"course_title":"Mayer, Abbott and Schinner","course_number":49986,"instructor":"Shayna O'Kon","location":"289 Madilyn Land","time":"2018-07-14T05:36:39.135Z","enrolled":14353,"book":"https://avis.biz","course_url":"http://lamont.org"},{"course_title":"Huels, Jast and Baumbach","course_number":54202,"instructor":"Laury Bins","location":"668 Piper Heights","time":"2018-07-14T04:44:05.600Z","enrolled":59611,"book":"https://wyatt.net","course_url":"http://ari.biz"},{"course_title":"Rempel and Sons","course_number":10493,"instructor":"Adolfo Runte","location":"03481 Bednar Common","time":"2018-07-14T18:04:23.664Z","enrolled":85983,"book":"https://joanie.net","course_url":"http://murphy.biz"},{"course_title":"Crist - Walsh","course_number":9294,"instructor":"Hershel Lesch DDS","location":"24815 Edgar Hills","time":"2018-07-14T07:16:11.040Z","enrolled":74364,"book":"http://jordane.biz","course_url":"http://alf.info"},{"course_title":"Langworth, Fahey and Ruecker","course_number":96395,"instructor":"Miss Aleen Kunde","location":"9276 Irwin Gardens","time":"2018-07-14T00:19:38.397Z","enrolled":39310,"book":"http://delmer.org","course_url":"http://iva.name"},{"course_title":"Buckridge, Heidenreich and Beahan","course_number":41657,"instructor":"Raegan Kozey","location":"35756 Bogisich Radial","time":"2018-07-14T20:36:09.118Z","enrolled":32699,"book":"http://ettie.net","course_url":"http://arnold.net"},{"course_title":"Johnson, Barrows and Greenfelder","course_number":52011,"instructor":"Juliana Upton","location":"3532 Lizzie Key","time":"2018-07-14T04:55:07.158Z","enrolled":99144,"book":"https://kenna.name","course_url":"http://tyra.org"},{"course_title":"Wisozk - Farrell","course_number":92929,"instructor":"Lonie Champlin","location":"5640 Louie Burg","time":"2018-07-14T15:17:54.777Z","enrolled":28931,"book":"https://hipolito.info","course_url":"https://josh.biz"},{"course_title":"Stoltenberg - Mitchell","course_number":15750,"instructor":"Nico Bernhard","location":"57729 Madelynn Island","time":"2018-07-14T05:50:40.614Z","enrolled":52524,"book":"http://noemy.name","course_url":"http://vivien.name"},{"course_title":"Kohler, Hoppe and Armstrong","course_number":13306,"instructor":"Quentin Barrows","location":"384 Reinger Parkway","time":"2018-07-14T08:30:59.856Z","enrolled":86419,"book":"https://moses.biz","course_url":"https://monique.com"},{"course_title":"Monahan - Mitchell","course_number":66423,"instructor":"Lamont Ebert","location":"2577 Green Mission","time":"2018-07-14T22:36:06.168Z","enrolled":58190,"book":"https://cicero.biz","course_url":"https://lucienne.org"},{"course_title":"Crona, Quitzon and Block","course_number":41027,"instructor":"Grover Langosh","location":"7623 Oberbrunner Mount","time":"2018-07-14T16:32:58.292Z","enrolled":12644,"book":"https://aiden.info","course_url":"https://muriel.name"},{"course_title":"Auer, Wolf and Schiller","course_number":39623,"instructor":"Royal Abernathy","location":"6068 Tristian Views","time":"2018-07-14T11:38:21.427Z","enrolled":75309,"book":"http://roma.com","course_url":"http://delbert.org"},{"course_title":"Gulgowski Group","course_number":61484,"instructor":"Miss Aliza Mraz","location":"454 Fabian Crescent","time":"2018-07-14T08:13:19.368Z","enrolled":70629,"book":"https://mary.org","course_url":"http://margaret.info"},{"course_title":"Hand - Crona","course_number":45017,"instructor":"Orie Langosh","location":"6427 Nathan Mountain","time":"2018-07-14T04:57:26.103Z","enrolled":88693,"book":"http://nia.biz","course_url":"https://laurence.net"},{"course_title":"Kutch and Sons","course_number":43688,"instructor":"Jerod Bruen","location":"54319 Martin Lane","time":"2018-07-14T12:15:57.648Z","enrolled":19806,"book":"https://rory.org","course_url":"http://bryce.com"},{"course_title":"Larson Group","course_number":67996,"instructor":"Garnett Kub","location":"05394 Adams Walk","time":"2018-07-14T10:06:41.983Z","enrolled":71442,"book":"http://cierra.info","course_url":"http://kitty.info"},{"course_title":"Schulist Group","course_number":83566,"instructor":"Davion Bradtke","location":"34765 Raynor Shoals","time":"2018-07-14T09:54:35.867Z","enrolled":79097,"book":"http://rae.info","course_url":"https://rey.name"},{"course_title":"Schroeder LLC","course_number":81540,"instructor":"Carissa Hoeger","location":"8323 Brandy Centers","time":"2018-07-14T03:06:53.605Z","enrolled":10986,"book":"http://nelda.biz","course_url":"https://jesus.org"},{"course_title":"Crona Group","course_number":63328,"instructor":"Enola Hansen","location":"0921 Marquardt Skyway","time":"2018-07-14T14:26:15.701Z","enrolled":2275,"book":"http://zoe.biz","course_url":"https://michele.biz"},{"course_title":"Kuhlman, Hoppe and Watsica","course_number":32312,"instructor":"Melany Mann","location":"20912 Labadie Street","time":"2018-07-14T10:26:15.291Z","enrolled":45275,"book":"http://misael.org","course_url":"https://franco.org"},{"course_title":"Lueilwitz, Braun and Ritchie","course_number":39667,"instructor":"Nelda Kessler","location":"578 Considine Manors","time":"2018-07-14T17:58:47.722Z","enrolled":45977,"book":"http://juwan.info","course_url":"http://hal.com"},{"course_title":"Gerlach Group","course_number":74903,"instructor":"Miller Walsh","location":"75054 Stoltenberg Fort","time":"2018-07-14T04:38:08.155Z","enrolled":51481,"book":"https://bryon.org","course_url":"https://louie.org"},{"course_title":"Grimes LLC","course_number":99232,"instructor":"Clementina Schulist","location":"7727 Weber Extensions","time":"2018-07-14T14:57:09.322Z","enrolled":85170,"book":"https://jessie.name","course_url":"http://eulah.name"},{"course_title":"Green and Sons","course_number":85715,"instructor":"Henriette Moore","location":"6679 Vivianne Walks","time":"2018-07-14T05:05:28.497Z","enrolled":30640,"book":"https://alexis.biz","course_url":"http://helena.biz"},{"course_title":"Bogan, Cummings and Rutherford","course_number":13270,"instructor":"Abdul Conroy","location":"20220 Kris Meadows","time":"2018-07-14T14:03:16.752Z","enrolled":74876,"book":"http://christa.org","course_url":"https://dessie.com"},{"course_title":"Stoltenberg LLC","course_number":7950,"instructor":"Kailey Kohler","location":"4202 Adolf Course","time":"2018-07-14T11:53:19.536Z","enrolled":82114,"book":"https://kaitlin.com","course_url":"http://daniella.org"},{"course_title":"Konopelski - Ebert","course_number":13755,"instructor":"Ms. Eino Steuber","location":"219 Danial Highway","time":"2018-07-14T02:18:58.722Z","enrolled":28931,"book":"http://karlie.info","course_url":"http://helene.biz"},{"course_title":"Bode, Marvin and O'Hara","course_number":37871,"instructor":"Miguel Schroeder","location":"906 Luettgen Terrace","time":"2018-07-14T20:57:45.125Z","enrolled":51425,"book":"https://darrick.net","course_url":"http://darion.net"},{"course_title":"Fahey, Carroll and Schmidt","course_number":95074,"instructor":"Rhett Goldner","location":"6456 Reggie Spurs","time":"2018-07-14T18:13:06.939Z","enrolled":26076,"book":"https://zoila.name","course_url":"https://ryleigh.info"},{"course_title":"Schimmel, Kling and Kutch","course_number":96573,"instructor":"Zoie Price","location":"7703 Josiah Avenue","time":"2018-07-14T03:12:44.323Z","enrolled":78683,"book":"http://lucious.org","course_url":"http://elian.name"},{"course_title":"Windler - Marvin","course_number":16639,"instructor":"Winnifred Schultz","location":"17752 Monahan Radial","time":"2018-07-14T07:47:51.656Z","enrolled":80195,"book":"https://ardith.name","course_url":"https://mikayla.biz"},{"course_title":"Ratke, Konopelski and Connelly","course_number":45897,"instructor":"Raven Roob","location":"831 Herman Pines","time":"2018-07-14T02:01:58.121Z","enrolled":93498,"book":"https://seth.biz","course_url":"http://kraig.info"},{"course_title":"Hayes, Schneider and Breitenberg","course_number":14966,"instructor":"Mervin Gottlieb","location":"677 Oberbrunner Causeway","time":"2018-07-14T07:36:40.327Z","enrolled":17714,"book":"http://dannie.biz","course_url":"http://tyra.name"},{"course_title":"Leuschke - Gleason","course_number":77780,"instructor":"Rex Crooks","location":"74709 Ali Divide","time":"2018-07-14T14:44:11.532Z","enrolled":74225,"book":"https://nicklaus.info","course_url":"https://deonte.net"},{"course_title":"O'Connell LLC","course_number":93052,"instructor":"Otto McCullough MD","location":"552 Everette Bypass","time":"2018-07-14T19:09:15.022Z","enrolled":35868,"book":"https://beaulah.biz","course_url":"http://katlynn.name"},{"course_title":"Lind LLC","course_number":54540,"instructor":"Fredrick Ernser IV","location":"641 Thompson Crossroad","time":"2018-07-14T10:57:35.995Z","enrolled":81724,"book":"https://enid.name","course_url":"http://andreanne.info"},{"course_title":"Mann, Emmerich and Sauer","course_number":73489,"instructor":"Sabrina Johns","location":"7578 Archibald Forest","time":"2018-07-14T14:10:26.672Z","enrolled":80692,"book":"https://orion.name","course_url":"http://juston.org"},{"course_title":"Reynolds and Sons","course_number":40918,"instructor":"Chelsey Pfeffer","location":"858 Bahringer Canyon","time":"2018-07-14T19:24:40.427Z","enrolled":43669,"book":"http://gracie.org","course_url":"https://isac.biz"},{"course_title":"Boehm Inc","course_number":78624,"instructor":"Raphaelle Zulauf","location":"838 Braxton Parks","time":"2018-07-14T08:52:54.650Z","enrolled":91334,"book":"http://jeffry.name","course_url":"https://thomas.net"},{"course_title":"Upton - Pfeffer","course_number":88647,"instructor":"Elva Hammes","location":"680 Pacocha Plains","time":"2018-07-14T05:10:26.345Z","enrolled":22362,"book":"http://sylvester.name","course_url":"https://arielle.net"},{"course_title":"Denesik, Shanahan and Lind","course_number":20957,"instructor":"Miss Anita Lockman","location":"56945 Hintz Skyway","time":"2018-07-14T10:28:10.428Z","enrolled":54731,"book":"http://geovany.com","course_url":"https://terence.biz"},{"course_title":"Simonis, Windler and McDermott","course_number":6156,"instructor":"Victoria Walter IV","location":"367 Joshua Common","time":"2018-07-14T11:29:25.537Z","enrolled":29498,"book":"http://kristopher.name","course_url":"http://torrey.info"},{"course_title":"Boehm - Schoen","course_number":57858,"instructor":"Rowland Konopelski","location":"32079 Bruen Plain","time":"2018-07-14T05:24:19.493Z","enrolled":23871,"book":"https://bert.com","course_url":"https://pamela.org"},{"course_title":"Auer and Sons","course_number":73075,"instructor":"Lester Pagac","location":"30377 Mante Route","time":"2018-07-14T22:07:08.410Z","enrolled":19644,"book":"https://verner.com","course_url":"https://jessy.biz"},{"course_title":"Feeney, Rolfson and Boyle","course_number":65383,"instructor":"Ladarius Kemmer","location":"4807 Adams Stream","time":"2018-07-14T10:02:11.487Z","enrolled":36154,"book":"http://halie.org","course_url":"http://karli.name"},{"course_title":"Hahn - Osinski","course_number":48721,"instructor":"Donnie Littel","location":"828 Marilou Radial","time":"2018-07-14T18:22:20.080Z","enrolled":74806,"book":"http://granville.info","course_url":"http://ethel.info"},{"course_title":"Halvorson and Sons","course_number":63973,"instructor":"Osvaldo Keeling","location":"641 Medhurst Streets","time":"2018-07-14T21:55:13.480Z","enrolled":98233,"book":"http://will.org","course_url":"https://conner.biz"},{"course_title":"Murray, Hagenes and Breitenberg","course_number":4711,"instructor":"Archibald Medhurst Sr.","location":"48238 Shayna Spurs","time":"2018-07-14T01:15:17.983Z","enrolled":12185,"book":"https://desiree.net","course_url":"http://ford.biz"},{"course_title":"Raynor - Bailey","course_number":72381,"instructor":"Tavares Durgan","location":"99163 Jaleel Alley","time":"2018-07-14T06:25:36.758Z","enrolled":49858,"book":"https://heloise.info","course_url":"http://emiliano.name"},{"course_title":"Bernhard, Hirthe and Hilll","course_number":18500,"instructor":"Retta Kunde","location":"56276 John Points","time":"2018-07-14T08:57:06.692Z","enrolled":76384,"book":"http://janessa.name","course_url":"https://ferne.com"},{"course_title":"Gerlach - Walker","course_number":50694,"instructor":"Marta Abshire","location":"240 Gregg Alley","time":"2018-07-14T06:25:59.362Z","enrolled":37206,"book":"http://demario.info","course_url":"https://dovie.name"},{"course_title":"Moore LLC","course_number":13272,"instructor":"Shanna Schowalter","location":"80385 Kiehn Crossroad","time":"2018-07-14T11:35:06.829Z","enrolled":11558,"book":"http://rosendo.org","course_url":"https://kane.net"},{"course_title":"Kunze - Wisozk","course_number":80057,"instructor":"Robin Turcotte","location":"5148 Runolfsdottir Viaduct","time":"2018-07-14T00:05:43.278Z","enrolled":43744,"book":"http://erling.com","course_url":"https://jovany.name"},{"course_title":"Lemke LLC","course_number":71821,"instructor":"Ms. Dax Kerluke","location":"32759 Casper Lakes","time":"2018-07-14T11:54:23.290Z","enrolled":76964,"book":"http://tressa.org","course_url":"https://dimitri.info"},{"course_title":"Barton, Schoen and Powlowski","course_number":25051,"instructor":"Cristian Johns","location":"135 Klocko Via","time":"2018-07-14T13:17:26.715Z","enrolled":37431,"book":"https://rosalee.net","course_url":"http://theodora.name"},{"course_title":"Gottlieb, Ledner and Kohler","course_number":50776,"instructor":"Rodrick Buckridge","location":"7573 Reinger Cliffs","time":"2018-07-14T11:10:37.948Z","enrolled":67981,"book":"https://roman.com","course_url":"http://sophie.org"},{"course_title":"Wuckert - Adams","course_number":84385,"instructor":"Clark Senger","location":"89122 Kohler Glen","time":"2018-07-14T02:17:34.457Z","enrolled":39931,"book":"http://arnoldo.name","course_url":"https://retta.info"},{"course_title":"Lubowitz, Kihn and Corwin","course_number":3695,"instructor":"Winifred Wiegand","location":"059 Seamus Wells","time":"2018-07-14T07:44:54.334Z","enrolled":76599,"book":"https://maxie.biz","course_url":"https://lucius.com"},{"course_title":"Emmerich, Cormier and Okuneva","course_number":79284,"instructor":"Dr. Edgar Schuppe","location":"267 Doyle Ville","time":"2018-07-14T17:57:59.869Z","enrolled":29377,"book":"https://eileen.biz","course_url":"http://nikolas.name"},{"course_title":"Bruen, Towne and Maggio","course_number":29594,"instructor":"River Crist","location":"75129 Greenfelder Land","time":"2018-07-14T09:07:08.476Z","enrolled":30637,"book":"http://brown.biz","course_url":"http://jaylan.org"},{"course_title":"Koepp, Leffler and Cremin","course_number":62975,"instructor":"Abigayle Boehm","location":"543 Brekke Mill","time":"2018-07-14T21:28:11.684Z","enrolled":60147,"book":"http://arlene.com","course_url":"http://delia.org"},{"course_title":"Ward, Lockman and Nienow","course_number":74670,"instructor":"Magali Hand","location":"02915 Judd Turnpike","time":"2018-07-14T06:21:08.886Z","enrolled":842,"book":"https://margret.org","course_url":"http://hanna.net"},{"course_title":"Sauer - Corkery","course_number":4481,"instructor":"Sven Cole","location":"45925 Wisozk Tunnel","time":"2018-07-14T14:39:08.775Z","enrolled":69486,"book":"https://dejuan.org","course_url":"http://jason.com"},{"course_title":"Rau, Denesik and Fahey","course_number":4233,"instructor":"Magnus Kling","location":"82664 Flo Court","time":"2018-07-14T18:26:24.280Z","enrolled":5508,"book":"https://carolyn.com","course_url":"https://orpha.com"},{"course_title":"Lindgren, Barrows and Morissette","course_number":69952,"instructor":"Geovany Balistreri DDS","location":"380 Novella Inlet","time":"2018-07-14T11:07:50.634Z","enrolled":89611,"book":"https://luis.biz","course_url":"http://roslyn.org"},{"course_title":"Powlowski, Block and Kuhic","course_number":57981,"instructor":"Mr. Immanuel Schimmel","location":"31744 Purdy Court","time":"2018-07-14T05:27:21.710Z","enrolled":49763,"book":"http://moshe.biz","course_url":"http://hugh.com"},{"course_title":"Wuckert, Graham and Willms","course_number":83604,"instructor":"Arthur Bernier","location":"2507 Vivian Falls","time":"2018-07-14T08:40:35.487Z","enrolled":94918,"book":"http://doyle.info","course_url":"https://dorcas.biz"},{"course_title":"VonRueden, Effertz and Grimes","course_number":47820,"instructor":"Willa Zboncak II","location":"5084 Rodger Ford","time":"2018-07-14T03:27:47.672Z","enrolled":74289,"book":"http://beaulah.net","course_url":"http://sammy.org"},{"course_title":"Berge - Pouros","course_number":37755,"instructor":"Nia Bauch","location":"2364 Denesik Passage","time":"2018-07-14T14:24:17.249Z","enrolled":51403,"book":"http://madelyn.biz","course_url":"https://judy.name"},{"course_title":"Boehm and Sons","course_number":15290,"instructor":"Elva Buckridge","location":"63788 Fahey Key","time":"2018-07-14T22:40:38.452Z","enrolled":93454,"book":"https://oscar.org","course_url":"http://bonita.com"},{"course_title":"Watsica Group","course_number":13648,"instructor":"Ariel Lesch MD","location":"388 Sporer Way","time":"2018-07-14T10:25:44.569Z","enrolled":51886,"book":"http://maurine.name","course_url":"https://rudy.org"},{"course_title":"Hayes - Kuphal","course_number":63496,"instructor":"Dallin Littel","location":"718 Kuhn Mountain","time":"2018-07-14T21:18:35.722Z","enrolled":12835,"book":"https://chad.net","course_url":"https://florine.com"},{"course_title":"Denesik - Kub","course_number":30812,"instructor":"Lance Barton","location":"422 Bergnaum Estate","time":"2018-07-14T04:48:22.761Z","enrolled":1942,"book":"http://reagan.name","course_url":"https://levi.biz"},{"course_title":"Schroeder and Sons","course_number":57619,"instructor":"Marilyne Cruickshank","location":"16857 Danial Crest","time":"2018-07-14T19:56:08.328Z","enrolled":82258,"book":"https://nannie.com","course_url":"https://alexzander.org"},{"course_title":"Marks - Mann","course_number":72693,"instructor":"Zoie Swaniawski","location":"61279 Larson Islands","time":"2018-07-14T12:17:35.014Z","enrolled":47251,"book":"http://destiny.com","course_url":"http://earl.info"},{"course_title":"Howe - Schmidt","course_number":24601,"instructor":"Laverne Kessler","location":"807 Rodriguez Dale","time":"2018-07-14T11:35:54.605Z","enrolled":66099,"book":"http://lenora.info","course_url":"http://karelle.net"},{"course_title":"Berge LLC","course_number":10948,"instructor":"Talia Schmeler","location":"531 Doug Well","time":"2018-07-14T08:35:10.731Z","enrolled":78404,"book":"http://otis.org","course_url":"http://lulu.info"},{"course_title":"Champlin Inc","course_number":52244,"instructor":"Peyton Roberts","location":"095 Strosin Inlet","time":"2018-07-14T07:51:21.143Z","enrolled":33785,"book":"http://dovie.info","course_url":"http://zoila.name"},{"course_title":"Konopelski, Breitenberg and Prosacco","course_number":49842,"instructor":"Kayley Renner","location":"0620 Kuvalis Fords","time":"2018-07-14T13:54:09.783Z","enrolled":99983,"book":"https://charlotte.com","course_url":"https://hershel.net"},{"course_title":"VonRueden Inc","course_number":54607,"instructor":"Vern Kozey","location":"92212 Hoeger Fields","time":"2018-07-14T04:53:42.874Z","enrolled":10635,"book":"https://nia.name","course_url":"http://candice.net"},{"course_title":"O'Connell, Heaney and Halvorson","course_number":2514,"instructor":"Jeanette Anderson","location":"96132 Terrell Locks","time":"2018-07-14T18:42:08.828Z","enrolled":89123,"book":"https://jolie.info","course_url":"https://laurel.com"},{"course_title":"Schuster and Sons","course_number":12445,"instructor":"Kristina Jacobi","location":"878 Dorris Ways","time":"2018-07-14T14:50:38.595Z","enrolled":9530,"book":"https://claude.net","course_url":"http://tremaine.info"},{"course_title":"Stokes, Nader and Mante","course_number":71915,"instructor":"Rosalee Kling","location":"139 Bogan Circle","time":"2018-07-14T13:41:36.987Z","enrolled":315,"book":"https://demetrius.info","course_url":"https://maximus.com"},{"course_title":"Champlin, Abshire and Kautzer","course_number":30730,"instructor":"Jaylen Legros","location":"5528 Kirsten Manors","time":"2018-07-14T17:03:38.457Z","enrolled":84411,"book":"http://janae.name","course_url":"https://carolyne.org"},{"course_title":"Borer - D'Amore","course_number":21495,"instructor":"Mrs. Elvera Walsh","location":"775 Caterina Stream","time":"2018-07-13T23:50:06.691Z","enrolled":93184,"book":"http://bernie.name","course_url":"http://jocelyn.name"},{"course_title":"Jones - Bernier","course_number":55441,"instructor":"Howard Hoppe","location":"45527 Treutel Key","time":"2018-07-14T13:12:30.997Z","enrolled":77626,"book":"https://shea.name","course_url":"http://jennifer.com"},{"course_title":"Wolff, McClure and Dickinson","course_number":86791,"instructor":"Makenna Stroman","location":"4870 Daniel Lodge","time":"2018-07-14T07:57:31.952Z","enrolled":6210,"book":"https://angelita.biz","course_url":"http://helmer.biz"},{"course_title":"Kemmer - Parker","course_number":35705,"instructor":"Angelina Williamson","location":"3099 Nader Alley","time":"2018-07-14T17:50:20.991Z","enrolled":76702,"book":"https://alec.name","course_url":"http://bernie.net"},{"course_title":"Crooks, Hyatt and Witting","course_number":30375,"instructor":"Mr. Kristian Rempel","location":"7665 Senger Ramp","time":"2018-07-14T10:18:12.361Z","enrolled":5801,"book":"https://lucie.net","course_url":"http://anika.com"},{"course_title":"O'Reilly - Kulas","course_number":2624,"instructor":"Elyssa Wehner","location":"777 Feil Inlet","time":"2018-07-14T02:55:27.510Z","enrolled":58170,"book":"http://adell.biz","course_url":"https://abigail.biz"},{"course_title":"Blick Group","course_number":47848,"instructor":"Oren Cormier","location":"2017 Zoey Forges","time":"2018-07-14T20:45:48.743Z","enrolled":31038,"book":"http://ora.name","course_url":"https://keely.org"},{"course_title":"Schroeder LLC","course_number":55698,"instructor":"Mrs. Florencio Hettinger","location":"77608 Homenick Station","time":"2018-07-14T11:16:40.273Z","enrolled":921,"book":"http://jared.name","course_url":"https://nyasia.info"},{"course_title":"Fadel, Jacobson and Mann","course_number":95664,"instructor":"Melyna Rutherford","location":"653 Joel Walk","time":"2018-07-14T03:05:06.951Z","enrolled":49977,"book":"https://mitchel.biz","course_url":"http://keely.name"},{"course_title":"Johns and Sons","course_number":74560,"instructor":"Helene Lindgren","location":"111 Deion Track","time":"2018-07-14T05:02:16.584Z","enrolled":58114,"book":"https://cordie.org","course_url":"http://narciso.biz"},{"course_title":"Johns - Kilback","course_number":72114,"instructor":"Carmella Dietrich","location":"97410 Stanton Mills","time":"2018-07-14T10:06:32.542Z","enrolled":58162,"book":"https://deontae.org","course_url":"http://paula.info"},{"course_title":"Konopelski Inc","course_number":992,"instructor":"Henri Anderson","location":"212 Sarina Courts","time":"2018-07-14T19:07:29.030Z","enrolled":24461,"book":"https://meredith.name","course_url":"http://omer.info"},{"course_title":"Romaguera - Mayert","course_number":8092,"instructor":"Ms. Yessenia Adams","location":"6372 Randy Lake","time":"2018-07-14T08:32:34.610Z","enrolled":69706,"book":"http://gregory.com","course_url":"http://alanis.info"},{"course_title":"Farrell, Morissette and Wiza","course_number":78644,"instructor":"Esmeralda Wiegand","location":"08241 Considine Corners","time":"2018-07-14T06:19:36.616Z","enrolled":90421,"book":"http://darlene.biz","course_url":"http://trycia.name"},{"course_title":"Rutherford - O'Keefe","course_number":57871,"instructor":"Kelli Bailey","location":"12336 Kenneth Harbors","time":"2018-07-14T20:13:59.637Z","enrolled":94233,"book":"https://libby.com","course_url":"https://lamar.name"},{"course_title":"Hackett Group","course_number":78410,"instructor":"Miss Dayne Cassin","location":"645 Dereck Inlet","time":"2018-07-14T14:51:41.149Z","enrolled":1018,"book":"http://isai.info","course_url":"http://allison.biz"},{"course_title":"Kshlerin, Fritsch and Runte","course_number":29775,"instructor":"Michel Bogisich","location":"865 Celia Tunnel","time":"2018-07-14T19:15:32.491Z","enrolled":22636,"book":"http://flavio.name","course_url":"http://boyd.net"},{"course_title":"Smitham LLC","course_number":71391,"instructor":"Lottie Gerlach Jr.","location":"74422 Porter Squares","time":"2018-07-14T14:55:18.002Z","enrolled":14118,"book":"http://josefina.name","course_url":"https://vivian.com"},{"course_title":"Mueller, Mayert and Mohr","course_number":41242,"instructor":"Dayton Graham","location":"612 Ines Landing","time":"2018-07-14T21:27:18.561Z","enrolled":97935,"book":"http://lue.com","course_url":"https://benny.net"},{"course_title":"Jaskolski and Sons","course_number":563,"instructor":"Dr. Raoul Herzog","location":"217 Farrell Valley","time":"2018-07-14T10:41:18.369Z","enrolled":60016,"book":"https://deontae.org","course_url":"https://easter.net"},{"course_title":"Wolff Group","course_number":32479,"instructor":"Marta Schoen","location":"014 Jacobson Ferry","time":"2018-07-14T02:11:42.415Z","enrolled":30885,"book":"https://izabella.com","course_url":"https://lysanne.org"},{"course_title":"Krajcik, Effertz and Connelly","course_number":40011,"instructor":"Concepcion Adams","location":"34700 Virgie Pine","time":"2018-07-14T19:29:51.708Z","enrolled":58455,"book":"http://grace.net","course_url":"http://margarita.biz"},{"course_title":"Hudson, Considine and Abshire","course_number":56677,"instructor":"Noemi Dibbert","location":"05089 Thalia Summit","time":"2018-07-14T07:25:01.839Z","enrolled":47704,"book":"http://ronny.info","course_url":"http://muhammad.info"},{"course_title":"Hessel - Kuhn","course_number":3293,"instructor":"Fletcher Becker","location":"679 Mac Ville","time":"2018-07-14T13:26:39.197Z","enrolled":9094,"book":"http://vance.net","course_url":"http://lupe.name"},{"course_title":"Crona, Wolff and Schuster","course_number":69329,"instructor":"Johan Predovic","location":"7718 Marquardt Row","time":"2018-07-14T16:47:56.030Z","enrolled":40284,"book":"http://chester.biz","course_url":"http://hester.biz"},{"course_title":"Gerlach, Durgan and Jast","course_number":31681,"instructor":"Miss Bennie Kuhic","location":"6051 Hartmann Burg","time":"2018-07-14T00:51:25.383Z","enrolled":51753,"book":"http://malika.net","course_url":"https://federico.org"},{"course_title":"Predovic LLC","course_number":34517,"instructor":"Miss Antonina Lesch","location":"87961 Feeney Prairie","time":"2018-07-14T20:59:38.925Z","enrolled":36439,"book":"http://ewald.name","course_url":"http://hillard.biz"},{"course_title":"Hand, Langosh and Wuckert","course_number":66786,"instructor":"Domingo Ortiz","location":"44288 Brennon Burgs","time":"2018-07-14T09:24:57.687Z","enrolled":55082,"book":"https://daija.com","course_url":"https://rubie.biz"},{"course_title":"Beer - Volkman","course_number":19891,"instructor":"Jane Waelchi","location":"11039 Name Hollow","time":"2018-07-14T23:04:51.558Z","enrolled":70341,"book":"http://frank.info","course_url":"https://murray.org"},{"course_title":"Durgan, Kovacek and Dooley","course_number":19123,"instructor":"Alexis O'Hara","location":"55780 Ahmad Mountain","time":"2018-07-14T08:08:59.601Z","enrolled":52549,"book":"https://robin.net","course_url":"http://claudia.info"},{"course_title":"Bergnaum and Sons","course_number":95089,"instructor":"Miss Jarret Gleason","location":"4783 Lessie Branch","time":"2018-07-14T16:18:30.225Z","enrolled":85583,"book":"http://theodora.net","course_url":"https://eveline.net"},{"course_title":"Jacobson, Douglas and Frami","course_number":14793,"instructor":"Dina Kihn","location":"9752 Sauer Junction","time":"2018-07-14T17:00:59.392Z","enrolled":65683,"book":"https://javon.org","course_url":"http://rosario.info"},{"course_title":"McCullough and Sons","course_number":9978,"instructor":"Donato Robel","location":"767 Gustave Shores","time":"2018-07-14T21:17:52.410Z","enrolled":92587,"book":"http://lori.name","course_url":"https://marisa.name"},{"course_title":"Stracke - Powlowski","course_number":99469,"instructor":"Ms. Magnus Bernhard","location":"07546 Windler Trace","time":"2018-07-13T23:56:49.434Z","enrolled":34561,"book":"https://bradly.biz","course_url":"https://trudie.net"},{"course_title":"Homenick Group","course_number":89930,"instructor":"Emiliano Ruecker","location":"754 White Fork","time":"2018-07-14T12:43:24.185Z","enrolled":70969,"book":"https://tess.name","course_url":"https://sandrine.org"},{"course_title":"Mohr, Schmeler and Blanda","course_number":82863,"instructor":"Buck Leannon","location":"725 Amelie Loop","time":"2018-07-14T15:39:28.981Z","enrolled":6175,"book":"https://eugene.org","course_url":"http://vivian.name"},{"course_title":"Terry - Herzog","course_number":45913,"instructor":"Aubrey Pagac","location":"6760 Hagenes Prairie","time":"2018-07-14T04:22:54.120Z","enrolled":96668,"book":"http://jenifer.org","course_url":"https://effie.com"},{"course_title":"Beer - Gottlieb","course_number":51689,"instructor":"Dr. Courtney Braun","location":"98687 Danielle Isle","time":"2018-07-14T22:12:39.064Z","enrolled":660,"book":"http://oren.name","course_url":"http://hellen.info"},{"course_title":"Botsford - Kassulke","course_number":98635,"instructor":"Tom Stroman","location":"09352 Pfeffer Knoll","time":"2018-07-14T07:53:55.468Z","enrolled":82683,"book":"https://christophe.com","course_url":"http://gertrude.org"},{"course_title":"Homenick, Toy and Nikolaus","course_number":42525,"instructor":"Miss Roslyn Stroman","location":"1704 Bulah Road","time":"2018-07-14T21:51:27.135Z","enrolled":74395,"book":"https://mason.info","course_url":"http://soledad.name"},{"course_title":"Spencer - Schiller","course_number":8212,"instructor":"Keanu Parisian","location":"141 Mathew Track","time":"2018-07-14T12:05:35.965Z","enrolled":58373,"book":"http://rasheed.com","course_url":"http://rigoberto.biz"},{"course_title":"Pagac - Blick","course_number":20280,"instructor":"Demarco Reinger","location":"531 Colten Village","time":"2018-07-14T21:26:07.865Z","enrolled":18178,"book":"http://loma.info","course_url":"https://nina.net"},{"course_title":"Leuschke - Waelchi","course_number":21532,"instructor":"Tiana Jaskolski","location":"56159 Braulio Village","time":"2018-07-14T12:26:26.519Z","enrolled":28684,"book":"http://eleanore.org","course_url":"http://benny.com"},{"course_title":"Zboncak, Koch and Murphy","course_number":73262,"instructor":"Maximillia Jacobi","location":"502 O'Reilly Green","time":"2018-07-14T04:54:56.694Z","enrolled":58083,"book":"http://milford.biz","course_url":"https://kianna.com"},{"course_title":"Lehner LLC","course_number":84919,"instructor":"Ellie Purdy","location":"121 Waters Mall","time":"2018-07-14T15:23:08.831Z","enrolled":81319,"book":"https://zola.info","course_url":"http://marcelo.biz"},{"course_title":"Labadie, Ward and Weimann","course_number":6091,"instructor":"Bernita Dickens","location":"5665 Zander Dam","time":"2018-07-14T16:13:36.929Z","enrolled":35841,"book":"https://cornell.biz","course_url":"http://joe.name"},{"course_title":"Toy - Torp","course_number":92948,"instructor":"Camylle Dibbert","location":"89121 Willms Avenue","time":"2018-07-14T20:29:41.092Z","enrolled":1439,"book":"https://bart.biz","course_url":"http://twila.org"},{"course_title":"Schaefer Inc","course_number":17319,"instructor":"Coy Schamberger","location":"463 Presley Crest","time":"2018-07-14T03:26:41.329Z","enrolled":37582,"book":"http://jeramie.net","course_url":"http://lottie.net"},{"course_title":"Hahn - Marquardt","course_number":80919,"instructor":"Edgardo Wisozk","location":"560 Sasha Route","time":"2018-07-14T21:57:54.353Z","enrolled":96951,"book":"https://kelsi.net","course_url":"https://tamia.com"},{"course_title":"Heidenreich, Kerluke and Sauer","course_number":92399,"instructor":"Gene Schmitt","location":"2145 Bashirian Shore","time":"2018-07-14T10:45:17.713Z","enrolled":79751,"book":"https://brenden.biz","course_url":"https://katherine.com"},{"course_title":"Gusikowski and Sons","course_number":95648,"instructor":"Blaze Blick","location":"626 Vivienne Glen","time":"2018-07-14T18:05:41.731Z","enrolled":64072,"book":"http://lowell.org","course_url":"https://donny.com"},{"course_title":"Rempel, Jast and Schultz","course_number":97267,"instructor":"Nickolas Hoppe","location":"5124 Leffler Flats","time":"2018-07-14T19:12:47.430Z","enrolled":15188,"book":"http://katrina.org","course_url":"http://herminia.com"},{"course_title":"Braun, Dach and Lowe","course_number":87954,"instructor":"Luigi Goldner","location":"2750 Mabel Groves","time":"2018-07-13T23:31:40.171Z","enrolled":96993,"book":"http://rey.org","course_url":"https://leo.org"},{"course_title":"Corwin Inc","course_number":76763,"instructor":"Jaquan Gaylord","location":"98872 Lambert Radial","time":"2018-07-14T05:16:35.172Z","enrolled":93907,"book":"http://georgette.biz","course_url":"http://kyleigh.com"},{"course_title":"Marvin - Lynch","course_number":56953,"instructor":"Duncan Dibbert","location":"98877 Lera Stravenue","time":"2018-07-14T22:35:53.266Z","enrolled":55197,"book":"http://kevin.com","course_url":"http://sammy.org"},{"course_title":"Turcotte, Jakubowski and Flatley","course_number":64521,"instructor":"Shaylee Feil","location":"115 Franecki Port","time":"2018-07-14T17:03:44.994Z","enrolled":66730,"book":"https://mertie.net","course_url":"https://vicente.name"},{"course_title":"Runolfsson - Effertz","course_number":71495,"instructor":"Nathanial Schumm","location":"3422 Kurtis Park","time":"2018-07-14T20:50:33.410Z","enrolled":4083,"book":"https://juwan.com","course_url":"http://kristin.name"},{"course_title":"Waters, D'Amore and Fay","course_number":4732,"instructor":"Zoie Rempel","location":"8238 Wendell Isle","time":"2018-07-14T09:37:53.928Z","enrolled":32613,"book":"http://chadrick.com","course_url":"http://theron.name"},{"course_title":"Armstrong and Sons","course_number":43954,"instructor":"Brandyn Harvey","location":"571 Stamm Islands","time":"2018-07-14T17:04:01.883Z","enrolled":85051,"book":"http://elisa.info","course_url":"https://margarette.com"},{"course_title":"Ledner, Olson and Schulist","course_number":86104,"instructor":"Lazaro McDermott","location":"476 Kautzer Meadows","time":"2018-07-14T02:55:59.212Z","enrolled":89721,"book":"http://santino.biz","course_url":"https://rubye.info"},{"course_title":"Stokes Group","course_number":19152,"instructor":"Maci Trantow","location":"1303 Bahringer Meadows","time":"2018-07-14T01:09:51.755Z","enrolled":82998,"book":"http://maximo.info","course_url":"http://izaiah.info"},{"course_title":"Wehner - Brekke","course_number":11211,"instructor":"Chesley Boehm I","location":"9068 VonRueden Cove","time":"2018-07-14T15:24:42.879Z","enrolled":68853,"book":"http://dakota.org","course_url":"http://maribel.net"},{"course_title":"Goodwin - Daugherty","course_number":85276,"instructor":"Melyna Beahan","location":"3362 Marc Knolls","time":"2018-07-14T00:50:20.759Z","enrolled":17272,"book":"https://brain.com","course_url":"http://assunta.biz"},{"course_title":"Kohler, Mitchell and Pfeffer","course_number":33051,"instructor":"Adrianna Berge","location":"471 Wisozk Turnpike","time":"2018-07-14T21:22:54.896Z","enrolled":68090,"book":"http://susanna.com","course_url":"http://lilliana.info"}] \ No newline at end of file diff --git a/data/ucsd_all_data.json b/data/ucsd_all_data.json new file mode 100644 index 0000000..864f985 --- /dev/null +++ b/data/ucsd_all_data.json @@ -0,0 +1,124472 @@ +{ + "course_info": { + "ucsd": { + "courses": { + "10A-B-C": { + "dept": "10A-B-C", + "description": "(No prior study of Japanese language is required for 10A.) Prerequisites", + "name": "10A-B-C", + "prereqs": [], + "title": "First-Year Japanese" + }, + "130A-B-C": { + "dept": "130A-B-C", + "description": "", + "name": "130A-B-C", + "prereqs": [], + "title": "Third-Year Japanese" + }, + "140A-B-C": { + "dept": "140A-B-C", + "description": "", + "name": "140A-B-C", + "prereqs": [], + "title": "Fourth-Year Japanese" + }, + "150A-B-C": { + "dept": "150A-B-C", + "description": "", + "name": "150A-B-C", + "prereqs": [], + "title": "Advanced Japanese" + }, + "20A-B-C": { + "dept": "20A-B-C", + "description": "", + "name": "20A-B-C", + "prereqs": [], + "title": "Second-Year Japanese" + }, + "AAS 10": { + "dept": "AAS", + "description": "This course will cover the experiences of peoples of African descent in the U.S. and broader African Diaspora from the vantage points of cultural production, political practice, socioeconomic conditions, and the overall struggle for social justice along intersecting lines of race, gender, and class. Topics reviewed include slavery (and slave rebellion), Reconstruction, Jim Crow apartheid, the Great Migration and Harlem Renaissance, and the Civil Rights and Black Power Movements.", + "name": "AAS 10", + "prereqs": [], + "title": "Introduction to African American Studies (4)" + }, + "AAS 190": { + "dept": "AAS", + "description": "This course will explore specialized, relevant topics in the field of African American studies.\u00a0Course topics will vary from quarter to quarter, so it may be repeated up to three times as long as the quarterly topics vary.", + "name": "AAS 190", + "prereqs": [], + "title": "Special Topics in African American Studies (1\u20134)" + }, + "AAS 198": { + "dept": "AAS", + "description": "Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. P/NP grades only. May be taken for credit two times. ", + "name": "AAS 198", + "prereqs": [], + "title": "Directed Group Study in African American Studies (2 or 4)" + }, + "AAS 199": { + "dept": "AAS", + "description": "Individual research and study on a particular subject related to African American studies by special arrangement with and under the direction of a faculty member. P/NP grades only. May be taken for credit two times. ", + "name": "AAS 199", + "prereqs": [], + "title": "Independent Study in African American Studies (2 or 4)" + }, + "AAS 87": { + "dept": "AAS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to 15-20 students. Enrollment priority will be given to freshmen. Seminars are open to sophomores, juniors and seniors on a space available basis. P/NP grades only. May be taken for credit four times.", + "name": "AAS 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "AAS/ANSC 185": { + "dept": "AAS/ANSC", + "description": "(Cross-listed with ANSC 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for AAS 185 and ANSC 185.", + "name": "AAS/ANSC 185", + "prereqs": [], + "title": "#BlackLivesMatter (4)" + }, + "AESE 241": { + "dept": "AESE", + "description": "Focuses on analytic techniques supporting rational business decision making, providing systematic approaches to complex decision situations. Addresses analysis of conflicting objectives and use of tools such as value trees, decision trees, influence diagrams, and value hierarchies, Bayesian networks, and data mining. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "name": "AESE 241", + "prereqs": [ + "AESE 241", + "MGT 241" + ], + "title": "Decision and Risk Analysis (4)" + }, + "AESE 261": { + "dept": "AESE", + "description": "Addresses critical processes and frameworks required to build effective business relationships internally and externally. Focuses on the skills required by functional or technical leaders to envision strategic value and create business development strategies aligned with organizational needs. This workshop meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ", + "name": "AESE 261", + "prereqs": [ + "MGT 406", + "MGT 261", + "AESE 261" + ], + "title": "Managing Stakeholder Relationships (4)" + }, + "AESE 278A": { + "dept": "AESE", + "description": "Comprehensive introduction to system and event complexity, software and systems engineering practices for complexity management, agile and plan-driven development, development and management processes and process models, data-, information- and knowledge-management, basics of distributed data and computation. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "name": "AESE 278A", + "prereqs": [ + "AESE 278A", + "MAE 277A", + "CSE 278A", + "ECE 205A" + ], + "title": "Complexity and Large-Scale Systems (4)" + }, + "AESE 278B": { + "dept": "AESE", + "description": "Architectural foundations, frameworks, standards, and infrastructures with an emphasis on layered architectures, loose coupling, architecture evolution, service- and component-oriented architectures, enterprise service buses, metadata and information virtualization, ontologies, Semantic Web, policy and governance, service-level agreements, information assurance essentials. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "name": "AESE 278B", + "prereqs": [ + "MGT 406", + "MAE 277A", + "ECE 205", + "AESE 278A", + "CSE 278A", + "MGT 291" + ], + "title": "Enterprise Architecting (4)" + }, + "AESE 278C": { + "dept": "AESE", + "description": "Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "name": "AESE 278C", + "prereqs": [ + "MAE 278A", + "MGT 291", + "AESE 278B", + "AESE 278C", + "ECE 206", + "AESE 278A", + "CSE 278C" + ], + "title": "Modeling, Simulation, and Analysis (4)" + }, + "AESE 278D": { + "dept": "AESE", + "description": "Engineering tools and their use in defining the layered and service-oriented architectures, Unified Modeling Language and enterprise architecture tools, business and process modeling tools, visualization methods, data and information management tools, comprehensive domain modeling, architecture implementation via enterprise service buses. This workshop course meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ", + "name": "AESE 278D", + "prereqs": [ + "MAE 278A", + "ECE 205A", + "MAE 277A", + "AESE 278C", + "ECE 206", + "AESE 278A", + "CSE 278A", + "CSE 278C" + ], + "title": "Engineering Essentials for Open, Distributed Systems (4)" + }, + "AESE 278E": { + "dept": "AESE", + "description": "Fundamental aspects of pattern methodologies and re-use, requirements, design and architecture patterns, patterns for service-oriented architectures, enterprise application and integration patterns, E-business patterns, event-driven architectures and patterns for complex event processing, process patterns, architecture evolution and refactoring using patterns. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "name": "AESE 278E", + "prereqs": [ + "AESE 278B", + "AESE 278C", + "AESE 278D" + ], + "title": "Patterns for Enterprise Architecting (4)" + }, + "AESE 279A": { + "dept": "AESE", + "description": "Students will work collaboratively on a team project, mostly in a lab setting, to demonstrate their knowledge of leadership teams and enterprise architecting for complex systems. Students are required to take three instances of AESE 279A before they can take AESE 279B (the final for the team project). ", + "name": "AESE 279A", + "prereqs": [], + "title": "Architecture-based Enterprise Systems Engineering Quarterly Team Project (1)" + }, + "AESE 279B": { + "dept": "AESE", + "description": "Students will work collaboratively on a team project, mostly in a lab setting, to demonstrate their grasp of the material in the entire project sequence. ", + "name": "AESE 279B", + "prereqs": [ + "AESE 279A" + ], + "title": "Architecture-based Enterprise Systems Engineering Capstone Team Project (3)" + }, + "ANAR 100": { + "dept": "ANAR", + "description": "Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the Department of Anthropology website. May be taken for credit four times. ", + "name": "ANAR 100", + "prereqs": [], + "title": "Special Topics in Anthropological Archaeology (4)" + }, + "ANAR 111": { + "dept": "ANAR", + "description": "As part of the broad discipline of anthropology, archaeology provides the long chronological record needed for investigating human and social evolution. The theories and methods used in this field are examined. (Archaeology core sequence course.) Recommended preparation: ANTH 3. ", + "name": "ANAR 111", + "prereqs": [], + "title": "Foundations of Archaeology (4)" + }, + "ANAR 112": { + "dept": "ANAR", + "description": "The origins and development of early cities in the Old and New Worlds are compared and contrasted from an archaeological anthropological perspective. ", + "name": "ANAR 112", + "prereqs": [], + "title": "Ancient Urbanism (4)" + }, + "ANAR 114": { + "dept": "ANAR", + "description": "Israel, like California, is located on a complex tectonic boundary, which is responsible for a history of earthquakes, volcanism, and tsunamis. How great is the risk today and what will be the regional impact of a major earthquake? We will try to answer these questions by understanding the basic geology of Israel and reviewing the history of natural disasters as recorded by archaeology and historical documentation. ", + "name": "ANAR 114", + "prereqs": [], + "title": "Environmental Hazards in Israel (4)" + }, + "ANAR 115": { + "dept": "ANAR", + "description": "Students will develop a broad understanding of the morphological features that are identified in coastal systems, and the short- and long-term processes that shape them through time. Students will become familiar with terminology, approaches, and methodologies used in coastal geomorphological research, which are relevant for today\u2019s study of climate and environmental change, with a focus on coastal sedimentary environments and an emphasis on the coast of Israel from ancient times until today. ", + "name": "ANAR 115", + "prereqs": [], + "title": "Coastal Geomorphology and Environmental Change\u2014Perspectives from Israel and the South-Eastern Mediterranean (4)" + }, + "ANAR 116": { + "dept": "ANAR", + "description": "This course provides students with a broad understanding of the most current sea level change research that has been conducted around the globe. Students will be introduced to the general terminology used in this field, coastal shallow marine and deep sea sea-level indicators, and their degree of uncertainty, along with corresponding dating methods. An emphasis will be given to sea-level studies conducted in Israel and neighboring lands. ", + "name": "ANAR 116", + "prereqs": [], + "title": "Sea Level Change\u2014The Israel Case in World Perspective (4)" + }, + "ANAR 117": { + "dept": "ANAR", + "description": "The archaeological field and laboratory class will take place in the field in San Diego or adjacent counties. This course is a hands-on introduction to the research design of interdisciplinary archaeological projects and techniques of data collection, including survey, excavation, or laboratory analysis. May be taken for credit up to two times. Program or materials fees may apply. ", + "name": "ANAR 117", + "prereqs": [], + "title": "Archaeological Field and Lab Class, Southern California (4)" + }, + "ANAR 118": { + "dept": "ANAR", + "description": "Our campus houses some of the earliest human settlements in North America. This course reviews the archaeology, climate, and environment of the sites and outlines research aimed at understanding the lives of these early peoples. ", + "name": "ANAR 118", + "prereqs": [], + "title": "Archaeology of the UC San Diego Campus (4)" + }, + "ANAR 119S": { + "dept": "ANAR", + "description": "The archaeological field and laboratory class will take place at Moquegua, Peru. It is an introduction to the research design of interdisciplinary projects, the technique of data collections, the methods of excavation and postexcavation lab work. Course materials fees may apply. ", + "name": "ANAR 119S", + "prereqs": [], + "title": "Archaeological Field and Lab Class (8)" + }, + "ANAR 121": { + "dept": "ANAR", + "description": "Concerns the latest developments in digital data capture, analyses, curation, and dissemination for cultural heritage. Introduction to geographic information systems (GIS), spatial analysis, and digital technologies applied to documentation and promotion of cultural heritage and tourism. Lectures and lab exercises. ", + "name": "ANAR 121", + "prereqs": [], + "title": "Cyber-Archaeology and World Digital Cultural Heritage (4)" + }, + "ANAR 124": { + "dept": "ANAR", + "description": "This course explores the archaeology of Asia from the first humans through the rise of state societies. Topics include the environmental setting, pioneer migrations, hunting and gathering societies, plant and animal domestication, and the development of metallurgy, agriculture, technology, trade, and warfare in early civilizations. We consider how ancient political, intellectual, and artistic achievements shape the archaeological heritage in present-day Asia. ", + "name": "ANAR 124", + "prereqs": [], + "title": "Archaeology of Asia (4)" + }, + "ANAR 135S": { + "dept": "ANAR", + "description": "Study Abroad program that examines the origins and history of ancient Mediterranean civilizations from the late Neolithic period through the Classical era. During the course, students will visit some of the most important archaeological sites in the world, from the ancient megalithic temples of Malta, to Phoenician colonies of the early Iron Age, to the Carthaginian and Greek cities of Sicily, and ending with Roman Pompeii and Herculaneum, destroyed by the eruption of Vesuvius in AD 79. Students are required to apply for this Study Abroad course. Program or materials fees may apply. ", + "name": "ANAR 135S", + "prereqs": [], + "title": "Ancient Mediterranean Civilization (8)" + }, + "ANAR 138": { + "dept": "ANAR", + "description": "This course explores in detail the rise of the world\u2019s earliest cities and states in Mesopotamia and the ancient Near East during the fourth millennium B.C. ", + "name": "ANAR 138", + "prereqs": [], + "title": "Mesopotamia: The Emergence of Civilization (4)" + }, + "ANAR 141": { + "dept": "ANAR", + "description": "Israel is a land-bridge between Africa and Asia. Course highlights the prehistory of the Levant and its interconnections from the Paleolithic to the rise of the earliest cities in anthropological perspective. ", + "name": "ANAR 141", + "prereqs": [], + "title": "Prehistory of the Holy Land (4)" + }, + "ANAR 142": { + "dept": "ANAR", + "description": "The emergence and consolidation of the state in ancient Israel is explored by using archaeological data, biblical texts, and anthropological theories. The social and economic processes responsible for the rise and collapse of ancient Israel are investigated. Recommended preparation: ANTH 3. ", + "name": "ANAR 142", + "prereqs": [], + "title": "The Rise and Fall of Ancient Israel (4)" + }, + "ANAR 143": { + "dept": "ANAR", + "description": "The relationship between archaeological data, historical research, the Hebrew Bible, and anthropological theory are explored along with new methods and current debates in Levantine archaeology. ", + "name": "ANAR 143", + "prereqs": [], + "title": "Biblical Archaeology\u2014Fact or Fiction (4)" + }, + "ANAR 144": { + "dept": "ANAR", + "description": "An introductory survey of the archaeology, history, art, and architecture of ancient Egypt that focuses on the men and women who shaped Western civilization. ", + "name": "ANAR 144", + "prereqs": [], + "title": "Pharaohs, Mummies, and Pyramids: Introduction to Egyptology (4)" + }, + "ANAR 145S": { + "dept": "ANAR", + "description": "Introduction to the archaeology, history, art, architecture, and hieroglyphs of ancient Egypt. Taught in the field through visits to important temples, pyramids, palaces, and museums in Egypt. Complementary to ANAR 144.\u00a0Course/program fees may apply. ", + "name": "ANAR 145S", + "prereqs": [], + "title": "Study Abroad: Egypt of the Pharaohs (4)" + }, + "ANAR 146": { + "dept": "ANAR", + "description": "What should we eat and how should we farm to guide a sustainable future? This course will examine what humans evolved to eat and how we began to first cultivate the foods we rely on today. After a survey of traditional farming methods around the world, we will examine how farming systems have changed since the Green Revolution and its successes and failures. The final part of class will focus on the last twenty years, when humans began to modify plant life at the genetic level. Students may not receive credit for ANAR 146 and SIO 146. ", + "name": "ANAR 146", + "prereqs": [], + "title": "Feeding the World (4)" + }, + "ANAR 153": { + "dept": "ANAR", + "description": "The archaeology, anthropology, and history of the Maya civilization, which thrived in Mexico and Central America from 1000 BC, until the Spanish conquest.\u00a0", + "name": "ANAR 153", + "prereqs": [], + "title": "The Mysterious Maya (4)" + }, + "ANAR 154": { + "dept": "ANAR", + "description": "Introduction to the archaeology of the ancient culture of Mexico from the early Olmec culture through the Postclassic Aztec, Tarascan, Zapotec, and Mixtec states. Agriculture; trade and exchange; political and social organization; kinship networks; religious system, ideology, and worldviews. ", + "name": "ANAR 154", + "prereqs": [], + "title": "The Aztecs and their Ancestors (4)" + }, + "ANAR 155S": { + "dept": "ANAR", + "description": "Introduction to archaeology of Mesoamerica, taught through visits to important ancient cities and museums of Mexico and Central America. Complementary to ANAR 154. Itinerary and subject will vary, so course may be taken more than once. Course/program fees may apply. ", + "name": "ANAR 155S", + "prereqs": [ + "ANAR 155S", + "ANRG 106" + ], + "title": "Study Abroad: Ancient Mesoamerica (4)" + }, + "ANAR 156": { + "dept": "ANAR", + "description": "This course will examine archaeological evidence for the development of societies in the South American continent. From the initial arrival of populations through to the Inca period and the arrival of the Spaniards. ", + "name": "ANAR 156", + "prereqs": [], + "title": "The Archaeology of South America (4)" + }, + "ANAR 157": { + "dept": "ANAR", + "description": "The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500\u20131000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Students may not receive credit for both ANAR 157S and ANAR 157. ", + "name": "ANAR 157", + "prereqs": [], + "title": "Early Empires of the Andes: The Middle Horizon (4)" + }, + "ANAR 157S": { + "dept": "ANAR", + "description": "The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500\u20131000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Course is offered during summer Study Abroad. Students may not receive credit for both ANAR 157 and ANAR 157S. ", + "name": "ANAR 157S", + "prereqs": [], + "title": "Early Empires of the Andes: The Middle Horizon (4)" + }, + "ANAR 158": { + "dept": "ANAR", + "description": "The history and culture of the Inca Empire of South America and its fatal encounter with the West. Archaeological excavations, accounts from the sixteenth and seventeenth centuries, and ethnographies of present-day peoples of the Andes are explored. ", + "name": "ANAR 158", + "prereqs": [], + "title": "The Inca: Empire of the Andes (4)" + }, + "ANAR 160": { + "dept": "ANAR", + "description": "This course considers in detail a particular region or archaeological site within the Maya area.\u00a0Content will cover primary literature on Maya archaeology, epigraphy, and art history. Course content will vary based on the specific region/site. May be taken for credit three times. ", + "name": "ANAR 160", + "prereqs": [ + "ANAR 153", + "ANTH 202" + ], + "title": "Ancient Maya: Archaeological Problems and Perspectives (4)" + }, + "ANAR 165": { + "dept": "ANAR", + "description": "This course will follow the interaction between humans and the sea in cultures that formed the biblical world of the second and first millennium BCE: the Canaanites, Israelites, Egyptians, Phoenicians, Philistines, and cultures of the Aegean Sea. Themes discussed will be maritime matters in the Canaanite and biblical narrative, key discoveries in maritime coastal archaeology of the eastern Mediterranean, shipwrecks: Canaanite, Phoenician, and Aegean, Egyptian ports, and Egyptian sea adventures. ", + "name": "ANAR 165", + "prereqs": [], + "title": "Marine and Coastal Archaeology and the Biblical Seas (4)" + }, + "ANAR 166": { + "dept": "ANAR", + "description": "(Cross-listed with SIO 166.) Introduction to the multidisciplinary tools for paleoenvironmental analysis\u2014from ecology, sedimentology, climatology, zoology, botany, chemistry, and others\u2014and provides the theory and method to investigate the dynamics between human behavior and natural processes. This socioecodynamic perspective facilitates a nuanced understanding of topics such as resource overexploitation, impacts on biodiversity, social vulnerability, sustainability, and responses to climate change. Students may not receive credit for ANAR 166 and SIO 166. ", + "name": "ANAR 166", + "prereqs": [], + "title": "Introduction to Environmental Archaeology\u2014Theory and Method of Socioecodynamics and Human Paleoecology (4)" + }, + "ANAR 167": { + "dept": "ANAR", + "description": "(Cross-listed with SIO 167.) As specialists in human timescales, archaeologists are trained to identify subtle details that are often imperceptible for other geoscientists. This course is designed to train archaeologists to identify the natural processes affecting the archaeological record, and geoscientists to identify the influence of human behavior over land surfaces. The course, which includes lectures, laboratory training, and field observations, focuses on the articulation of sedimentology and human activity. Students may not receive credit for both ANAR 167 and SIO 167. ", + "name": "ANAR 167", + "prereqs": [ + "SIO 50", + "ANTH 3" + ], + "title": "Geoarchaeology in Theory and Practice (6)" + }, + "ANAR 170": { + "dept": "ANAR", + "description": "This course trains students to design, implement, and conduct research in anthropological archaeology. Writing and presenting work in progress will take place in a seminar-like forum. ", + "name": "ANAR 170", + "prereqs": [], + "title": "Research Design in Anthropological Archaeology (4)" + }, + "ANAR 180": { + "dept": "ANAR", + "description": "This course examines the ways in which archaeologists study ancient artifacts, contexts, and their distribution in time and space to interpret ancient cultures. It will cover basic techniques of collections and field research with particular concentration on the quantitative contextual, spatial, stylistic, and technological analyses of artifacts and ecofacts from ongoing UC San Diego field projects in archaeology.", + "name": "ANAR 180", + "prereqs": [], + "title": "Archaeology Workshop: Advanced Lab Work in Archaeology (4)" + }, + "ANAR 181": { + "dept": "ANAR", + "description": "Archaeology of Hunters-Gatherers (4)", + "name": "ANAR 181", + "prereqs": [], + "title": "The" + }, + "ANAR 182": { + "dept": "ANAR", + "description": "Varying theoretical models and available archaeological evidence are examined to illuminate the socio-evolutionary transition from nomadic hunter-gathering groups to fully sedentary agricultural societies in the Old and New Worlds. Archaeology concentration course. Recommended preparation: ANTH 3. ", + "name": "ANAR 182", + "prereqs": [], + "title": "Origins of Agriculture and Sedentism (4)" + }, + "ANAR 183": { + "dept": "ANAR", + "description": "", + "name": "ANAR 183", + "prereqs": [], + "title": "Chiefdoms, States, and the Emergence of Civilizations (4)" + }, + "ANAR 184": { + "dept": "ANAR", + "description": "In what ways were ancient empires different from modern ones? We discuss theories of imperialism and examine cross-cultural similarities and differences in the strategies ancient empires used to expand and explore how they produced, acquired, and distributed wealth. ", + "name": "ANAR 184", + "prereqs": [], + "title": "Empires in Archaeological Perspective (4)" + }, + "ANAR 185": { + "dept": "ANAR", + "description": "Field study in Jordan. Examines how cultural systems interact with deserts by examining technology, economic organization, kinship and religion in relation to environmental variables through time. Program fees may apply.\u00a0", + "name": "ANAR 185", + "prereqs": [], + "title": "Middle East Desert Cultural Ecology (4)" + }, + "ANAR 186": { + "dept": "ANAR", + "description": "The course uses a comparative perspective to examine changes in how human societies organized themselves after the end of the last Ice Age across the world and the impact that those changes had on the planet\u2019s natural environment. ", + "name": "ANAR 186", + "prereqs": [], + "title": "The Human Era: The Archaeology of the Anthropocene (4)" + }, + "ANAR 190": { + "dept": "ANAR", + "description": "The archaeological field school will take place in the eastern Mediterranean region. It is an introduction to the design of research projects, the techniques of data collection, and the methods of excavation. Includes post-excavation lab work, study trips, and field journal. Program or materials fees may apply. ", + "name": "ANAR 190", + "prereqs": [], + "title": "Eastern Mediterranean Archaeological Field School (12)" + }, + "ANAR 191": { + "dept": "ANAR", + "description": "Students learn advanced field methods in cyber-archaeology and excavation. Includes 3-D data capture tools and processing, digital photography, construction of research designs, cyber-infrastructure. Takes place in the eastern Mediterranean region. Program or materials fees may apply. ", + "name": "ANAR 191", + "prereqs": [], + "title": "Advanced Cyber-Archaeology Field School (12)" + }, + "ANBI": { + "dept": "ANBI", + "description": "132. Conservation and the Human Predicament (4)", + "name": "ANBI", + "prereqs": [], + "title": "" + }, + "ANBI 109": { + "dept": "ANBI", + "description": "A weekly forum for presentation and discussion of work in anthropology and cognitive neuroscience by faculty, students, and guest speakers. P/NP only. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. ", + "name": "ANBI 109", + "prereqs": [], + "title": "Brain Mind Workshop (2)" + }, + "ANBI 111": { + "dept": "ANBI", + "description": "Major stages of human evolution including the fossil evidence for biological and cultural changes through time. ", + "name": "ANBI 111", + "prereqs": [], + "title": "Human Evolution (4)" + }, + "ANBI 112": { + "dept": "ANBI", + "description": "Cytoarchitecture reveals the fundamental structural organization of the human brain and stereology extracts quantitative information in a three-dimensional space. Students will learn the principles of both fields and their applications. ", + "name": "ANBI 112", + "prereqs": [ + "ANBI 140" + ], + "title": "Methods in Human Comparative Neuroscience (4)" + }, + "ANBI 114": { + "dept": "ANBI", + "description": "Primate (and other vertebrate) conservation involves a variety of methods: field (e.g., population and habitat assessment), computer (e.g., population genetic models), and increasingly the web (e.g. interactive GIS and databases). Course takes problem-solving approach to learning some of these methods. ", + "name": "ANBI 114", + "prereqs": [], + "title": "Methods in Primate Conservation (4)" + }, + "ANBI 120": { + "dept": "ANBI", + "description": "All human endeavors are subject to human biases. We\u2019ll cover several issues that are subject to such biases: \u201crace\u201d concept; transfer of human remains to Native American tribal members; nonhuman primate testing; and use of human materials, including cell lines. ", + "name": "ANBI 120", + "prereqs": [], + "title": "Ethical Dilemmas in Biological Anthropology (4)" + }, + "ANBI 130": { + "dept": "ANBI", + "description": "Biological and health consequences of racial and social inequalities. Psychosocial stress and measurement of health impact. Effects on disease and precursors to disease, including measures of molecular biology (e.g., epigenetics, gene expression), and biomarkers of inflammation, cardiometabolic health, and immune function. ", + "name": "ANBI 130", + "prereqs": [], + "title": "Biology of Inequality (4)" + }, + "ANBI 131": { + "dept": "ANBI", + "description": "This course examines conceptions of race from both evolutionary and sociocultural perspectives. We will examine current patterns of human genetic variation and critically determine how these patterns map onto current and historic conceptions of race in the United States, and abroad. We will also explore the social construction of race throughout US history, the use of racial categories in biomedicine today, and consequences of racism and discrimination on health. ", + "name": "ANBI 131", + "prereqs": [], + "title": "Biology and Culture of Race (4)" + }, + "ANBI 133": { + "dept": "ANBI", + "description": "The great apes are our closest living relatives and their ecology and evolution provide insights for human evolutionary history and perhaps ideas about how to coexist with them. The course examines the natural history, behavior, ecology, and life history of each of the great apes including: orangutans, gorillas, bonobos, and chimpanzees. We will also consider conservation issues facing wild great apes, the welfare of apes in captivity, and ethical debates on ape \u201cpersonhood.\u201d ", + "name": "ANBI 133", + "prereqs": [], + "title": "Planet of the Apes: Evolution and Ecology of the Great Ape (4)" + }, + "ANBI 134": { + "dept": "ANBI", + "description": "This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANTH 264. ", + "name": "ANBI 134", + "prereqs": [], + "title": "Human Evolutionary Genetics (4)" + }, + "ANBI 135": { + "dept": "ANBI", + "description": "This course provides hands-on experience with the latest molecular techniques as applied to questions of anthropological and human genetic interest. Students will isolate their own DNA and generate DNA sequence data. They will also measure and analyze the percent of DNA methylation at certain regions of their own genomes. We will also discuss measurement of other nongenetic biomarkers that can be incorporated into anthropological research of living populations, e.g., cortisol measures. ", + "name": "ANBI 135", + "prereqs": [], + "title": "Genetic Anthropology Lab Techniques (4)" + }, + "ANBI 139": { + "dept": "ANBI", + "description": "The course will explore the major epidemiological transitions from ape-like ancestors to foraging tribes, farmers, and pastoralists to the global metropolitan primate we now are. We will focus on how diseases have shaped humans and how humans have shaped disease. ", + "name": "ANBI 139", + "prereqs": [], + "title": "Evolution of Human Disease (4)" + }, + "ANBI 140": { + "dept": "ANBI", + "description": "Introduction to the organization of the brain of humans and apes. Overview of the theoretical perspectives on the evolution of the primate cortex and limbic system. Exposure to contemporary techniques applied to the comparative study of the hominoid brain. ", + "name": "ANBI 140", + "prereqs": [], + "title": "The Evolution of the Human Brain (4)" + }, + "ANBI 141": { + "dept": "ANBI", + "description": "The genotype of our ancestors had no agriculture or animal domestication, or rudimentary technology. Our modern diet contributes to heart disease, cancers, and diabetes. This course will outline the natural diet of primates and compare it with early human diets. ", + "name": "ANBI 141", + "prereqs": [], + "title": "The Evolution of Human Diet (4)" + }, + "ANBI 143": { + "dept": "ANBI", + "description": "Learn the bones of your body; how bone pairs differ even within the body, between men, women, ethnic groups; and how nutrition and disease affect them. Course examines each bone and its relation with other bones and muscles that allow your movements. ", + "name": "ANBI 143", + "prereqs": [], + "title": "The Human Skeleton (4)" + }, + "ANBI 144": { + "dept": "ANBI", + "description": "This course will introduce students to the internal structure of the human body through dissection tutorials on CD-ROM. ", + "name": "ANBI 144", + "prereqs": [], + "title": "Human Anatomy (4)" + }, + "ANBI 145": { + "dept": "ANBI", + "description": "How are skeletal remains used to reconstruct human livelihoods throughout prehistory? The effects of growth, use, and pathology on morphology and the ways that skeletal remains are understood and interpreted by contemporary schools of thought. Recommend related course in human anatomy. ", + "name": "ANBI 145", + "prereqs": [], + "title": "Bioarchaeology\u00a0(4)" + }, + "ANBI 146": { + "dept": "ANBI", + "description": "The stable isotopes of carbon, nitrogen, oxygen, and hydrogen in animal tissues, plant tissues, and soils indicate aspects of diet and ecology. The course will introduce students to this approach for reconstructing paleo-diet, paleo-ecology, and paleo-climate. ", + "name": "ANBI 146", + "prereqs": [], + "title": "Stable Isotopes in Ecology (4)" + }, + "ANBI 148": { + "dept": "ANBI", + "description": "The course examines the evolution of primate behaviors (e.g., group formation, dispersal, parenting, coalition formation) from a comparative behavioral, ecological, and evolutionary perspective. Observational methodology and analytical methods will also be discussed. Attendance in lab sections is required. ", + "name": "ANBI 148", + "prereqs": [], + "title": "Not by Genes Alone: The Ecology and Evolution of Primate Behavior (4)" + }, + "ANBI 159": { + "dept": "ANBI", + "description": "Attitudes toward other individuals (and species) are often shaped by their apparent \u201cintelligence.\u201d This course discusses the significance of brain size/complexity, I.Q. tests, communication in marine mammals and apes, complex behavioral tactics, and the evolution of intelligence. ", + "name": "ANBI 159", + "prereqs": [], + "title": "Biological and Cultural Perspectives on Intelligence (4)" + }, + "ANBI 173": { + "dept": "ANBI", + "description": "The last divide between humans and other animals is in the area of cognition. A comparative perspective to explore recent radical reinterpretations of the cognitive abilities of different primate species, including humans and their implications for the construction of evolutionary scenarios. ", + "name": "ANBI 173", + "prereqs": [], + "title": "How Monkeys See the World (4)" + }, + "ANBI 174": { + "dept": "ANBI", + "description": "Conservation on a human-dominated planet is a complex topic. Sometimes a picture is worth a thousand words. This course explores how films about conservation and the human predicament tackle current problems. What makes them effective and what makes them \u201cfail\u201d? We view one film a week and discuss it based on articles and books about that week\u2019s topic. Corequisite: must be enrolled in ANBI 132.", + "name": "ANBI 174", + "prereqs": [], + "title": "Conservation and the Media: Film Lab (4)" + }, + "ANBI 175": { + "dept": "ANBI", + "description": "Models of human evolution combine science and myth. This course examines methods used in reconstructions of human evolution. Models such as \u201cman the hunter\u201d and \u201cwoman the gatherer\u201d are examined in light of underlying assumptions, and cultural ideals. ", + "name": "ANBI 175", + "prereqs": [], + "title": "Paleofantasy: The Evidence for Our Early Ancestors (4)" + }, + "ANSC": { + "dept": "ANSC", + "description": "160. Nature, Culture, and Environmentalism (4)", + "name": "ANSC", + "prereqs": [], + "title": "" + }, + "ANSC 100": { + "dept": "ANSC", + "description": "Course usually taught by visiting faculty in sociocultural anthropology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the anthropology department website. (Can be taken a total of four times as topics vary.) ", + "name": "ANSC 100", + "prereqs": [], + "title": "Special Topics in Sociocultural Anthropology (4)" + }, + "ANSC 101": { + "dept": "ANSC", + "description": "Examines aging as process of human development, from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. ", + "name": "ANSC 101", + "prereqs": [], + "title": "Aging: Culture and Health in Late Life Human Development (4)" + }, + "ANSC 105": { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. ", + "name": "ANSC 105", + "prereqs": [], + "title": "Global Health and Inequality (4)" + }, + "ANSC 105GS": { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health-care systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems\u2014multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. Program or materials fees may apply. Students must apply at", + "name": "ANSC 105GS", + "prereqs": [], + "title": "Global Health and Inequality (4)" + }, + "ANSC 105S": { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, and human trafficking, etc. Students must apply to the Study Abroad Program online at", + "name": "ANSC 105S", + "prereqs": [], + "title": "Global Health and Inequality\u2014Study Abroad (4)" + }, + "ANSC 106": { + "dept": "ANSC", + "description": "Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Freshmen and sophomores cannot enroll without consent of the instructor.", + "name": "ANSC 106", + "prereqs": [], + "title": "Global Health: Indigenous Medicines in Latin America (4)" + }, + "ANSC 106S": { + "dept": "ANSC", + "description": "Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Students must apply to the Study Abroad UC San Diego program online at", + "name": "ANSC 106S", + "prereqs": [], + "title": "Global Health: Indigenous Medicines in Latin America\u2014Study Abroad (4)" + }, + "ANSC 110": { + "dept": "ANSC", + "description": "This course examines societies and cultures of the Caribbean in anthropological and historical perspective. Topics include slavery, emancipation, indentureship, kinship, race, ethnicity, class, gender, politics, food, religion, music, festivals, popular culture, migration, globalization, and tourism. ", + "name": "ANSC 110", + "prereqs": [], + "title": "Societies and Cultures of the Caribbean (4)" + }, + "ANSC 111": { + "dept": "ANSC", + "description": "This course will provide an anthropological perspective on Chinese culture in Taiwan from its earliest settlement to the present, including distinctive Taiwanese variants of traditional Chinese marriage and family life, institutions, festivals, agricultural practices, etc. ", + "name": "ANSC 111", + "prereqs": [], + "title": "The Chinese Heritage in Taiwan (4)" + }, + "ANSC 113": { + "dept": "ANSC", + "description": "Young people draw on language as well as clothing and music to display identities in contemporary societies. We examine the relation of language to race, class, gender, and ethnicity in youth identity construction, especially in multilingual and multiracial societies. ", + "name": "ANSC 113", + "prereqs": [], + "title": "Language, Style, and Youth Identities (4)" + }, + "ANSC 116": { + "dept": "ANSC", + "description": "An introduction to the languages and cultures of speakers of the Mayan family of languages, with emphasis on linguistic structures, ethnography, and the social history of the region. The course will concentrate on linguistic and ethnographic literature of a single language or sub-branch, emphasizing commonalities with the family and region as a whole. ", + "name": "ANSC 116", + "prereqs": [], + "title": "Languages of the Americas: Mayan (4)" + }, + "ANSC 117": { + "dept": "ANSC", + "description": "This course contrasts mainstream Anglo-American conceptualizations of transgenderism with ethnographic accounts of the experiences and practices of gender expansive people of color (African, Native, Asian/Pacific Islander, and Latinx Americans) in the U.S. and abroad. It will question the idea of transgenderism as a crossing from one gender to another one, the distinction between gender identity and sexuality, and the analytic of intersectionality. Students will not receive credit for both CGS 117 and ANSC 117. ", + "name": "ANSC 117", + "prereqs": [], + "title": "Transgenderisms (4)" + }, + "ANSC 117GS": { + "dept": "ANSC", + "description": "A critical introduction to the study of cultural patterns of thought, action, and expression, in relation to language. Topics include semiotics and structuralism, cognition and categorization, universal vs. particulars, and ethnopoetics. ", + "name": "ANSC 117GS", + "prereqs": [], + "title": "Language and (Multi)Culture (4)" + }, + "ANSC 118": { + "dept": "ANSC", + "description": "An introduction to the study of cultural patterns of thought, action, and expression, in relation to language. We consider comparatively semiotics and structuralism, cognition and categorization, universals versus particulars, ideologies of stasis and change, cultural reconstruction, and ethnopoetics. ", + "name": "ANSC 118", + "prereqs": [], + "title": "Language and Culture (4)" + }, + "ANSC 119": { + "dept": "ANSC", + "description": "Communication, and the Body (4)", + "name": "ANSC 119", + "prereqs": [], + "title": "Gesture," + }, + "ANSC 119GS": { + "dept": "ANSC", + "description": "Gesture, Communication, and the Body (4)", + "name": "ANSC 119GS", + "prereqs": [], + "title": "" + }, + "ANSC 120": { + "dept": "ANSC", + "description": "Explores religious life in various cultures. Topics addressed include the problem of religious meaning, psychocultural aspects of religious experience, religious conversion and revitalization, contrasts between traditional and world religions, religion and social change. ", + "name": "ANSC 120", + "prereqs": [], + "title": "Anthropology of Religion (4)" + }, + "ANSC 121": { + "dept": "ANSC", + "description": "Interrelationships of aspects of individual personality and various aspects of sociocultural systems are considered. Relations of sociocultural contexts to motives, values, cognition, personal adjustment, stress and pathology, and qualities of personal experience are emphasized. ", + "name": "ANSC 121", + "prereqs": [], + "title": "Psychological Anthropology (4)" + }, + "ANSC 122": { + "dept": "ANSC", + "description": "This course examines the role of communicative practices and language differences in organizing social life. Topics include social action through language; child language socialization; language and social identity (ethnicity, gender, class); interethnic communication; language ideologies; and language and power in social institutions and everyday life. ", + "name": "ANSC 122", + "prereqs": [], + "title": "Language in Society (4)" + }, + "ANSC 123": { + "dept": "ANSC", + "description": "Humans are goal seekers, some with public goals. Course considers ways goals are pursued, which are desirable, and how this pursuit is carried out at the local level with attention to the parts played by legitimacy and coercion. ", + "name": "ANSC 123", + "prereqs": [], + "title": "Political Anthropology (4)" + }, + "ANSC 124": { + "dept": "ANSC", + "description": "This course introduces the concept of culture and the debates surrounding it. Cultural anthropology asks how people create meaning and order in society, how culture intersects with power, and how national and global forces impact local meanings and practices. ", + "name": "ANSC 124", + "prereqs": [], + "title": "Cultural Anthropology (4)" + }, + "ANSC 125": { + "dept": "ANSC", + "description": "How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125 and ANSC 125GS. ", + "name": "ANSC 125", + "prereqs": [], + "title": "Gender, Sexuality, and Society (4)" + }, + "ANSC 125GS": { + "dept": "ANSC", + "description": "How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125GS and ANSC 125. Program or materials fees may apply. ", + "name": "ANSC 125GS", + "prereqs": [], + "title": "Gender, Sexuality, and Society (4)" + }, + "ANSC 126": { + "dept": "ANSC", + "description": "This course examines the diversity of practices of child-rearing, socialization, and enculturation across cultures, and the role of culture in the development of personality, morality, spirituality, sexuality, emotion, and cognition. ", + "name": "ANSC 126", + "prereqs": [], + "title": "Childhood and Adolescence (4)" + }, + "ANSC 127": { + "dept": "ANSC", + "description": "The course considers how social life is constituted and negotiated through language and interaction. How do people establish, maintain, and alter social relationships through face-to-face talk, and how do different modalities of interaction (including discourse and gesture) affect social life? ", + "name": "ANSC 127", + "prereqs": [], + "title": "Discourse, Interaction, and Social Life (4)" + }, + "ANSC 128": { + "dept": "ANSC", + "description": "This course examines the diversity of emotional experience in human societies and the contribution of the study of emotion to understanding culture and human nature. ", + "name": "ANSC 128", + "prereqs": [], + "title": "Culture and Emotion (4)" + }, + "ANSC 129": { + "dept": "ANSC", + "description": "This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. ", + "name": "ANSC 129", + "prereqs": [], + "title": "Meaning and Healing (4)" + }, + "ANSC 131": { + "dept": "ANSC", + "description": "Legal systems are central in (re)organizing social institutions, international arrangements, (in)equalities, and are an arena where linguistic practices predominate and define outcomes. With an anthropological approach to language, examine languages of the law, legal conceptions of language, and most importantly, the nature and structure of talk in a range of legal institutions and activities. Students will engage in direct anthropological fieldwork in local contexts involving the legal bureaucracy. ", + "name": "ANSC 131", + "prereqs": [], + "title": "Language, Law, and Social Justice (4)" + }, + "ANSC 132": { + "dept": "ANSC", + "description": "What is love? This course explores evolutionary, historical, philosophical, physiological, psychological, sociological, political-economic, and anthropological perspectives on love. We examine how love has evolved, study various aspects considered biological or cultural, and address contemporary debates around the nature and uses of love, including topics such as monogamy, arranged marriage, companionship, interracial relationships, and online dating. ", + "name": "ANSC 132", + "prereqs": [], + "title": "Sex and Love (4)" + }, + "ANSC 135": { + "dept": "ANSC", + "description": "Indigenous peoples in the Americas have long been dominated and exploited. They have also resisted and reworked the powerful forces affecting them. This course will trace this centuries-long contestation, focusing on ways anthropological representations have affected those struggles. ", + "name": "ANSC 135", + "prereqs": [], + "title": "Indigenous Peoples of Latin America (4)" + }, + "ANSC 136": { + "dept": "ANSC", + "description": "Course examines major institutions and culture patterns of traditional China, especially as studied through ethnographic sources. Topics include familism, religion, agriculture, social mobility, and personality. ", + "name": "ANSC 136", + "prereqs": [], + "title": "Traditional Chinese Society (4)" + }, + "ANSC 137": { + "dept": "ANSC", + "description": "The religious world of ordinary precommunist times, with some reference to major Chinese religious traditions. Recommended preparation: background in premodern Chinese history. ", + "name": "ANSC 137", + "prereqs": [], + "title": "Chinese Popular Religion (4)" + }, + "ANSC 138": { + "dept": "ANSC", + "description": "Explores anthropological approaches to finding solutions to human problems. Using cultural analysis and ethnographic approaches, students conduct supervised field projects to assess real-world problems and then design, evaluate, and communicate possible solutions. ", + "name": "ANSC 138", + "prereqs": [], + "title": "The Cultural Design Practicum: Using Anthropology to Solve Human Problems (4)" + }, + "ANSC 140": { + "dept": "ANSC", + "description": "Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections\u2014against genocide, torture, enslavement, political persecution, etc.\u2014and their violation, from the early Cold War to the present. Students may not receive credit for both ANSC 140 and HMNR 101. ", + "name": "ANSC 140", + "prereqs": [], + "title": "Human Rights II: Contemporary Issues (4)" + }, + "ANSC 141": { + "dept": "ANSC", + "description": "This course explores the interrelationships of language, politics, and identity in the United States: the ways that language mediates politics and identity, the ways that the connection between identity and language is inherently political, and the ways that political language inevitably draws on identity in both subtle and explicit ways. ", + "name": "ANSC 141", + "prereqs": [], + "title": "Language, Politics, and Identity (4)" + }, + "ANSC 142": { + "dept": "ANSC", + "description": "This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens\u2019 efforts to promote social change in contemporary democracies. ", + "name": "ANSC 142", + "prereqs": [], + "title": "Anthropology of Latin America (4)" + }, + "ANSC 144": { + "dept": "ANSC", + "description": "Examines physical and mental health sequalae of internal and transnational movement of individuals and populations due to warfare, political violence, natural disaster, religious persecution, poverty and struggle for economic survival, and social suffering of communities abandoned by migrants and refugees. May be coscheduled with ANTH 238. ", + "name": "ANSC 144", + "prereqs": [ + "ANTH 238", + "ANSC 144" + ], + "title": "Immigrant and Refugee Health (4)" + }, + "ANSC 145": { + "dept": "ANSC", + "description": "This course addresses: 1) Diversity among traditional Native American cultures with respect to social organization, religion, environmental adaptation, subsistence, and reaction to colonial conquest and domination; and, 2) Contemporary social issues including tribal sovereignty, religious freedom, health, education, gambling, and repatriation of artifacts/remains. ", + "name": "ANSC 145", + "prereqs": [], + "title": "Indigenous Peoples of North America (4)" + }, + "ANSC 146": { + "dept": "ANSC", + "description": "HIV is a paradigmatic disease: globally and locally patterned, biologically and socially constructed, involving science and social change. Cases from the Americas, Africa, and Asia examine how HIV necessitated new practices in policy, research, prevention, treatment, and activism. Health disparities, social inequalities, and stigma associated with the populations that have been most affected, community responses, and their political contexts are highlighted. ", + "name": "ANSC 146", + "prereqs": [], + "title": "A Global Health Perspective on HIV (4)" + }, + "ANSC 147": { + "dept": "ANSC", + "description": "Examines interactions of culture, health, and environment. Rural and urban human ecologies, their energy foundations, sociocultural systems, and characteristic health and environmental problems are explored. The role of culture and human values in designing solutions will be investigated. ", + "name": "ANSC 147", + "prereqs": [], + "title": "Global Health and the Environment (4)" + }, + "ANSC 148": { + "dept": "ANSC", + "description": "Introduction to global health from the perspective of medical anthropology on disease and illness, cultural conceptions of health, doctor-patient interaction, illness experience, medical science and technology, mental health, infectious disease, and health-care inequalities by ethnicity, gender, and socioeconomic status. ", + "name": "ANSC 148", + "prereqs": [], + "title": "Global Health and Cultural Diversity (4)" + }, + "ANSC 150": { + "dept": "ANSC", + "description": "This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcome in non-European and North American countries are explored. ", + "name": "ANSC 150", + "prereqs": [], + "title": "Culture and Mental Health (4)" + }, + "ANSC 151": { + "dept": "ANSC", + "description": "This course examines ethnographies of the US-Mexican borderlands to understand how the binational relationship shapes social life on both sides of the border. Topics discussed will include the maquiladora industry, drug trafficking, militarization, migration, tourism, missionary work, feminicide, and prostitution. ", + "name": "ANSC 151", + "prereqs": [], + "title": "U.S.-Mexico Border Ethnographies (4)" + }, + "ANSC 154": { + "dept": "ANSC", + "description": "How and why is gender important to religious practices, doctrines, and ideologies? Focusing on modern Islam, Christianity, and Judaism, we will look at women\u2019s involvement in religious movements as well as religious debates over issues of gender, sexuality, and marriage. ", + "name": "ANSC 154", + "prereqs": [], + "title": "Gender and Religion (4)" + }, + "ANSC 155": { + "dept": "ANSC", + "description": "This course examines the intended and unintended consequences of humanitarian aid. How do organizations negotiate principles of equality with the reality of limited resources? What role does medicine play in aid efforts? In spaces where multiple vulnerabilities coexist, how do we decide whom we should help first? While the need for aid, charity, and giving in the face of suffering is often taken as a commonsensical good, this course reveals the complexities underpinning humanitarian aid. ", + "name": "ANSC 155", + "prereqs": [ + "ANTH 101", + "ANSC 148", + "ANSC 123" + ], + "title": "Humanitarian Aid: What Is It Good For? (4)" + }, + "ANSC 156": { + "dept": "ANSC", + "description": "This course examines historical and cultural dimensions of madness as depicted in iconic and popular films such as \u201cOne Flew Over the Cuckoo\u2019s Nest,\u201d \u201cGirl Interrupted,\u201d \u201cSilver Linings Playbook,\u201d along with ethnographic and artistic films that utilize anthropological approaches. ", + "name": "ANSC 156", + "prereqs": [], + "title": "Mad Films: Cultural Studies of Mental Illness in Cinema (4)" + }, + "ANSC 158": { + "dept": "ANSC", + "description": "Starting at the crisis of 2008, but with beginnings in the early 1980s, the theme of this course is the dynamic mechanisms that lead to crisis, systemic and otherwise. It will deal with historical and archaeological discussions of particular cases of breakdowns, collapses, and transformations. It also deals extensively with crisis misrecognition and its causes from moral dramas, witchcraft epidemics, intimate violence, overt conflict, ethnicity, etc. ", + "name": "ANSC 158", + "prereqs": [], + "title": "Comparative Anthropology of Crisis (4)" + }, + "ANSC 159": { + "dept": "ANSC", + "description": "What can we learn by looking at a society\u2019s ideas about marriage, intimate relationships, and family? Why do these \u201cprivate\u201d institutions draw so much public scrutiny and debate? How are they linked to concepts of national progress, individualism, religion, status, or morality? We will explore these questions in Western and non-Western contexts through such topics as polygamy, same-sex marriage, transnational marriage, and the global impact of Western ideas of love and companionate marriage. ", + "name": "ANSC 159", + "prereqs": [], + "title": "The Anthropology of Marriage (4)" + }, + "ANSC 162": { + "dept": "ANSC", + "description": "This course examines the use of language difference in negotiating identity in bilingual and bidialectal communities, and in structuring interethnic relations. It addresses social tensions around language variation and the social significance of language choices in several societies. ", + "name": "ANSC 162", + "prereqs": [], + "title": "Language, Identity, and Community (4)" + }, + "ANSC 164": { + "dept": "ANSC", + "description": "Basic concepts and theory of medical anthropology are introduced and applied to comparison of medical systems including indigenous and biomedical, taking into account cross-cultural variation in causal explanation, diagnosis, perception, management, and treatment of illness and disease. ", + "name": "ANSC 164", + "prereqs": [], + "title": "Introduction to Medical Anthropology (4)" + }, + "ANSC 165": { + "dept": "ANSC", + "description": "This course explores contemporary cultural life in South Asia by examining selected works of literature, film, and ethnography. ", + "name": "ANSC 165", + "prereqs": [], + "title": "Contemporary South Asia (4)" + }, + "ANSC 166": { + "dept": "ANSC", + "description": "Explores films from China, India, Japan and other Asian countries. Popular, documentary, and ethnographic films are examined for what they reveal about family life, gender, politics, religion, social change and everyday experience in South Asia. ", + "name": "ANSC 166", + "prereqs": [], + "title": "Film and Culture in Asia (4)" + }, + "ANSC 168": { + "dept": "ANSC", + "description": "This course explores experiences of the human life cycle\u2014birth, death, love, family relations, coming of age, suffering, the quest for identity, the need for meaning\u2014from diverse cultural perspectives. Examines anthropological thought concerning what it means to be human. ", + "name": "ANSC 168", + "prereqs": [], + "title": "The Human Condition (4)" + }, + "ANSC 169": { + "dept": "ANSC", + "description": "Examines the role of culture in the way people perceive and interact with the natural environment. Combines reading of select anthropological studies with training in ethnographic research methods. Students develop a research project and analyze data. Limit: fifteen students. ", + "name": "ANSC 169", + "prereqs": [], + "title": "Culture and Environment: Research Seminar and Practicum (4)" + }, + "ANSC 170": { + "dept": "ANSC", + "description": "What is modernity? How does it shape human experience? Using selected works of art, film, literature, anthropology, philosophy and social theory, the course explores conceptions of self, identity, and culture that characterize modernity. ", + "name": "ANSC 170", + "prereqs": [], + "title": "Modernity and Human Experience (4)" + }, + "ANSC 171": { + "dept": "ANSC", + "description": "Examines methods for employing iconic recording techniques into ethnographic field research, with an emphasis on digital audio and video recording technologies and analysis. ", + "name": "ANSC 171", + "prereqs": [], + "title": "Multimodal Methods in Ethnography (4)" + }, + "ANSC 173": { + "dept": "ANSC", + "description": "This practicum course will explore anthropology\u2019s traditional methodology, ethnography, through texts, films, and literature, and give students practical experience through a quarter-long case study. ", + "name": "ANSC 173", + "prereqs": [], + "title": "Ethnography in Practice (4)" + }, + "ANSC 174": { + "dept": "ANSC", + "description": "This course examines ideologies surrounding intersections of sex and money as well as ethnographies of sex workers in diverse contexts throughout the world. ", + "name": "ANSC 174", + "prereqs": [], + "title": "Sex and Money: The Anthropology of Sex Work (4)" + }, + "ANSC 175": { + "dept": "ANSC", + "description": "This course considers together the economic, political, social, and cultural dimensions of capitalist relations on the planet. Focuses on the current trajectory of capitalism, especially its changing margins and centers. Emphasizes new research on money, paid and unpaid work, and the material concerns of water, energy, food, and shelter. ", + "name": "ANSC 175", + "prereqs": [], + "title": "Money, Work, and Nature: The Anthropology of Capitalism (4)" + }, + "ANSC 176": { + "dept": "ANSC", + "description": "Examines interdisciplinary field of Critical Military Studies (CMS), led by sociocultural anthropologist research on aspects of militarism and on specific military forces in varied geographical and historical context. Focuses on changing strategies and doctrines into specific forms of military practice in regards to the way past conflicts inform current approaches and tactics. Also looks at field research conducted by social scientists on behalf of the US military, drawing on local experts in San Diego. ", + "name": "ANSC 176", + "prereqs": [], + "title": "The Meaning of Political Violence (4)" + }, + "ANSC 177": { + "dept": "ANSC", + "description": "Course aims to explore the ways in which historicity can be turned to a critical field of inquiry and reflection. Shows how the past isn\u2019t something that \u201chas happened,\u201d but that actively lingers\u00a0and invades the present, both inviting and constraining possible futures. Challenges the assumptions and practices of each modern discipline, affecting key concepts, methods, modes of analysis, and narrative forms that both anthropologists and historians have used. ", + "name": "ANSC 177", + "prereqs": [], + "title": "Step Into Anthrohistory: The Past and Its Hold on the Future (4)" + }, + "ANSC 178": { + "dept": "ANSC", + "description": "Students will learn firsthand a new transdisciplinary effort to understand the intersection of individual and society at all levels of analysis. This course introduces students to a remarkable convergence led by transdisciplinary scholars at UC San Diego (anthropology, cognitive science, psychology, history, philosophy, the arts, etc.), based on the recognition that individual neurological, cognitive, emotional, and behavioral capacities are reciprocally related to aggregate social, cultural, and historical processes. ", + "name": "ANSC 178", + "prereqs": [], + "title": "Brain, Mind, Culture, and History (4)" + }, + "ANSC 179": { + "dept": "ANSC", + "description": "This course introduces students to the field of economic anthropology and situates it within the historical development of the discipline since the late nineteenth century. In particular, the course focuses on the complexities of capitalism and its relations with what appear to be \u201cnon-capitalist\u201d contexts and ways of life. ", + "name": "ANSC 179", + "prereqs": [], + "title": "The New Economic Anthropology: Producing, Consuming, and Exchanging Stuff Worldwide (4)" + }, + "ANSC 180": { + "dept": "ANSC", + "description": "Drawing insight from anti-colonial and queer of color critique, this course critically examines the demands capitalism makes on us to perform gender, and how that relates to processes of exploitation and racialization. We will explore alternatives and develop strategies for navigating jobs in this system. Students may receive credit for one of the following: CGS 120, CGS 180 and ANSC 180. CGS 120 is renumbered from CGS 180. ", + "name": "ANSC 180", + "prereqs": [], + "title": "Capitalism and Gender (4)" + }, + "ANSC 181": { + "dept": "ANSC", + "description": "We humans are animals. How do our relations with other animals\u2014how we rely on them, how we struggle against them, how we live among them\u2014shape our own worlds? In this course, we examine, through ethnography and speculative fiction, the boundary between human and other animals. ", + "name": "ANSC 181", + "prereqs": [], + "title": "Animal Affairs (4)" + }, + "ANSC 182": { + "dept": "ANSC", + "description": "In this seminar, we investigate gun violence from a critical perspective that draws on social and health sciences, films, media, and more. While we take the contemporary issue of gun violence in the United States as a primary case study, we employ a global and comparative perspective. We explore controversies to include cultural, gendered, ethnic, political, and economic analysis. We examine discourses on gun violence as rational/irrational, healthy/pathological, and individually or socially produced. ", + "name": "ANSC 182", + "prereqs": [], + "title": "Gun Violence as Social Pathology (4)" + }, + "ANSC 183": { + "dept": "ANSC", + "description": "Explores the role of film, photography, digital media, and visualization technologies in understanding human life. Students develop their own visualization projects. ", + "name": "ANSC 183", + "prereqs": [], + "title": "Visualizing the Human: Film, Photography, and Digital Technologies (4)" + }, + "ANSC 184": { + "dept": "ANSC", + "description": "This seminar addresses the production, consumption, and distribution of food, with particular emphasis on the culture of food. Food studies provide insight into a wide range of topics including class, poverty, hunger, ethnicity, nationalism, capitalism, gender, race, and sexuality. ", + "name": "ANSC 184", + "prereqs": [], + "title": "Food, Culture, and Society (4)" + }, + "ANSC 185": { + "dept": "ANSC", + "description": "(Cross-listed with AAS 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for ANSC 185 and AAS 185. ", + "name": "ANSC 185", + "prereqs": [], + "title": "#BlackLivesMatter (4)" + }, + "ANSC 186": { + "dept": "ANSC", + "description": "(Cross-listed with CGS 118.) This course investigates the ways in which forces of racism, gendered violence, and state control intersect in the penal system. The prison-industrial complex is analyzed as a site where certain types of gendered and racialized bodies are incapacitated, neglected, or made to die. Students may not receive credit for ANSC 186 and CGS 118. ", + "name": "ANSC 186", + "prereqs": [], + "title": "Gender and Incarceration (4)" + }, + "ANSC 190GS": { + "dept": "ANSC", + "description": "This course introduces students to the medical anthropology of South Asia. This course will be divided into two parts. First, we will analyze how religious, cultural, political, and economic structures impact health and well-being. Second, we will look at ethnomedicine, that is, how local systems of healing provide alternative ideas of illness and health. Program or materials fees may apply. ", + "name": "ANSC 190GS", + "prereqs": [ + "ANSC 148", + "ANTH 103", + "ANSC 155", + "ANSC 146", + "ANSC 147", + "ANSC 164", + "ANSC 173", + "ANSC 121", + "ANSC 101" + ], + "title": "Medicine and Healing in South Asia (4)" + }, + "ANSC 191GS": { + "dept": "ANSC", + "description": "Popular representations of South Asia abound in clich\u00e9s: poverty and luxury, cities and hamlets, ascetics and call centers. What do these clich\u00e9s do to our understanding of South Asia? How do we get beneath or beyond these representations? We will respond to these questions by exploring how people in South Asia live on a day-to-day basis, while also attending to how major historical events, such as colonialism and the Partition of India and Pakistan, shape contemporary life and politics. Program or materials fees may apply. ", + "name": "ANSC 191GS", + "prereqs": [ + "ANSC 148", + "ANTH 103", + "ANSC 155", + "ANTH 1", + "ANSC 164", + "ANTH 23", + "ANTH 21", + "ANSC 121" + ], + "title": "Everyday Life in South Asia: Beyond the Clich\u00e9s (4)" + }, + "ANSC 192GS": { + "dept": "ANSC", + "description": "Why are so many people poor? What does poverty mean for those who live it and for those who try to help them? This course examines the field of international development, to understand the discourses and practices that governments, aid agencies, and communities have tried. To what extent are these practices linked to colonial legacies, race, and class? Looking to new innovations in participatory and compassionate development, this will prepare students for critical engagement with development. Program or materials fees may apply. ", + "name": "ANSC 192GS", + "prereqs": [], + "title": "Rethinking Poverty and Development (4)" + }, + "ANSC 193GS": { + "dept": "ANSC", + "description": "In this course, we will examine the dominant human rights framework to think about one issue that has escaped its purview: environmental justice. If we all share a common planet, is there a universal right to a clean environment? Why are the effects of pollution and climate change unequally distributed among the world\u2019s peoples? Can human rights norms serve as effective tools to fight the unequal effects of climate change and contamination? Program or materials fees may apply. ", + "name": "ANSC 193GS", + "prereqs": [], + "title": "Human Rights and Environmental Justice (4)" + }, + "ANTH": { + "dept": "ANTH", + "description": "286. Topics in Anthropological Archaeology (4)", + "name": "ANTH", + "prereqs": [], + "title": "" + }, + "ANTH 1": { + "dept": "ANTH", + "description": "An introduction to the anthropological approach to understanding human behavior, with an examination of data from a selection of societies and cultures.", + "name": "ANTH 1", + "prereqs": [], + "title": "Introduction to Culture (4)" + }, + "ANTH 101": { + "dept": "ANTH", + "description": "Course examines archaeological evidence for three key \u201ctipping points\u201d in the human career: (1) the origins of modern human social behaviors, (2) the beginnings of agriculture and village life, and (3) the emergence of cities and states. ", + "name": "ANTH 101", + "prereqs": [], + "title": "Foundations of Social Complexity (4)" + }, + "ANTH 102": { + "dept": "ANTH", + "description": "This class examines humans from a comparative perspective; if we ignore culture, what\u2019s left? How do culture and biology interact? And how does biology inform cultural debates over race, sex, marriage, war, peace, etc.? ", + "name": "ANTH 102", + "prereqs": [], + "title": "Humans Are Cultural Animals (4)" + }, + "ANTH 103": { + "dept": "ANTH", + "description": "A systematic analysis of social anthropology and of the concepts and constructs required for cross-cultural and comparative study of human societies. Required for all majors in anthropology. ", + "name": "ANTH 103", + "prereqs": [], + "title": "Sociocultural Anthropology (4)" + }, + "ANTH 147": { + "dept": "ANTH", + "description": "This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ", + "name": "ANTH 147", + "prereqs": [], + "title": "Understanding the Human Social Order: Anthropology and the Long-Term (4)" + }, + "ANTH 192": { + "dept": "ANTH", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in anthropology (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and consent of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "ANTH 192", + "prereqs": [], + "title": "Senior Seminar in Anthropology (1)" + }, + "ANTH 195": { + "dept": "ANTH", + "description": "Course gives students experience in teaching of anthropology at the lower-division level. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Course not counted toward minor or major.\u00a0P/NP grades only. ", + "name": "ANTH 195", + "prereqs": [], + "title": "Instructional Apprenticeship in Anthropology (4)" + }, + "ANTH 196A": { + "dept": "ANTH", + "description": "Seminar to explore student research interests and methodologies needed to complete Honors Thesis in ANTH 196B. Students will be admitted to the Honors Program by invitation of the department in the spring of their junior year. Completion of this course with a grade of at least B+ is a prerequisite to ANTH 196B. ", + "name": "ANTH 196A", + "prereqs": [], + "title": "Honors Studies in Anthropology (4)" + }, + "ANTH 196B": { + "dept": "ANTH", + "description": "Independent preparation of a senior thesis under the supervision of a faculty member. Students begin two-quarter sequence in fall quarter. ", + "name": "ANTH 196B", + "prereqs": [ + "ANTH 196A" + ], + "title": "Honors Studies in Anthropology (4)" + }, + "ANTH 196C": { + "dept": "ANTH", + "description": "A weekly research seminar where students share, read, and discuss in-depth research findings resulting from ANTH 196A and 196B along with selected background literature used in each individual thesis. Students are also taught how to turn their theses into brief presentations for both specialized and broader audiences. Students will be offered opportunities to present their findings at campus events and outreach events during the quarter. ", + "name": "ANTH 196C", + "prereqs": [ + "ANTH 196B", + "ANTH 196A" + ], + "title": "Honors Studies in Anthropology (4)" + }, + "ANTH 197": { + "dept": "ANTH", + "description": "Individually arranged field studies giving practical experience outside the university. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "name": "ANTH 197", + "prereqs": [ + "ANPR 197" + ], + "title": "Field Studies (4)" + }, + "ANTH 198": { + "dept": "ANTH", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "name": "ANTH 198", + "prereqs": [ + "ANPR 198" + ], + "title": "Directed Group Study (2\u20134)" + }, + "ANTH 199": { + "dept": "ANTH", + "description": "Independent study and research under the direction of a member of the faculty. Student may take this course twice for credit. Please note: majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "name": "ANTH 199", + "prereqs": [ + "ANPR 199" + ], + "title": "Independent Study (2\u20134)" + }, + "ANTH 2": { + "dept": "ANTH", + "description": "An introduction to human evolution from the perspective of physical anthropology, including evolutionary theory and the evolution of the primates, hominids, and modern humans. Emphasis is placed on evidence from fossil remains and behavioral studies of living primates.", + "name": "ANTH 2", + "prereqs": [], + "title": "Human Origins (4)" + }, + "ANTH 201": { + "dept": "ANTH", + "description": "Course usually taught by visiting faculty in anthropological archaeology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes on", + "name": "ANTH 201", + "prereqs": [], + "title": "Special Topics in Anthropological Archaeology (4)" + }, + "ANTH 202": { + "dept": "ANTH", + "description": "Course examines the birth of Olmec and Maya civilizations in the Formative period, the rise of city states during the Early Classic, the decline of the Classic Maya, and the resurgence of the Postclassic period. ", + "name": "ANTH 202", + "prereqs": [], + "title": "Olmec and Maya Archaeology (4)" + }, + "ANTH 204": { + "dept": "ANTH", + "description": "This course, intended for first-year anthropology graduate students, examines the contemporary practice of anthropology. We discuss the construction of a multiple-year research project including how to differentiate theory and evidence, the contours of anthropological interest, the question of audience, and rhetorical style. We analyze nine recent ethnographies as possible models for our own practice. ", + "name": "ANTH 204", + "prereqs": [], + "title": "Contemporary Anthropology (4)" + }, + "ANTH 206": { + "dept": "ANTH", + "description": "This graduate seminar examines how racial and ethnic categories are constructed, how contemporary societies manage difference through multicultural policies, and how discourses and institutions of citizenship can act as sites of contestation over inclusion and exclusion. ", + "name": "ANTH 206", + "prereqs": [], + "title": "Race, Ethnicity, and Citizenship (4)" + }, + "ANTH 207": { + "dept": "ANTH", + "description": "This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the \u201cfoundational\u201d culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207. ", + "name": "ANTH 207", + "prereqs": [], + "title": "Eastern Mediterranean Archaeology\u2014New Perspectives (4)" + }, + "ANTH 21": { + "dept": "ANTH", + "description": "Why does racism still matter? How is racism experienced in the United States and across the globe? With insights from the biology of human variation, archaeology, colonial history, and sociocultural anthropology, we examine how notions of race and ethnicity structure contemporary societies.", + "name": "ANTH 21", + "prereqs": [], + "title": "Race and Racisms (4)" + }, + "ANTH 210": { + "dept": "ANTH", + "description": "Examines the worldwide resurgence of religion in the context of migration, missionization, the media, postcolonialism, and personal mobility in contemporary global culture. ", + "name": "ANTH 210", + "prereqs": [], + "title": "Religion and Globalization (4)" + }, + "ANTH 211": { + "dept": "ANTH", + "description": "With special attention to the relationship between theory and data, this course deals with psychoanalytic approaches to the study of religion through a close examination of key ethnographic and historical studies of religious systems and experience. ", + "name": "ANTH 211", + "prereqs": [], + "title": "Psychoanalysis and Religion (4)" + }, + "ANTH 212": { + "dept": "ANTH", + "description": "A critical exploration of timely and/or controversial topics in biological anthropology. Course will vary in title and content. ", + "name": "ANTH 212", + "prereqs": [], + "title": "Advanced Topics in Biological Anthropology (4)" + }, + "ANTH 213": { + "dept": "ANTH", + "description": "This seminar examines intersection of anthropology and psychiatry. Topics include cultural conceptions and social determinants of anxiety, depression, trauma, and psychosis, corporeal experience and manifestation of illness, transnational variation in course and outcome, global circulation of psychiatric knowledge/practice and pharmaceuticals. ", + "name": "ANTH 213", + "prereqs": [], + "title": "Anthropology and Mental Health (4)" + }, + "ANTH 214": { + "dept": "ANTH", + "description": "This seminar considers three major tropes for cultivating human relations\u2014being together, living together, and working together. In examining recent inquiries into kinship, environment, and labor, we explore each of these tropes as concrete channels of human relation along which such qualities as love, attachment, stigma, and threat might travel. How do people consider themselves related, and what are the potentials of those relations? ", + "name": "ANTH 214", + "prereqs": [], + "title": "Kin, Land, and Labor-Cultivating Relations (4)" + }, + "ANTH 215": { + "dept": "ANTH", + "description": "A critical exploration of timely and/or controversial topics in sociocultural anthropology. Course will vary in title and content. ", + "name": "ANTH 215", + "prereqs": [], + "title": "Advanced Topics in Sociocultural Anthropology (4)" + }, + "ANTH 216": { + "dept": "ANTH", + "description": "Pentecostal and charismatic Christianity have recently expanded around the globe. This course explores the cultural and social processes facilitating their spread and examines how these kinds of Christianity shape social life, politics, gender relations, and economic practices in convert societies. ", + "name": "ANTH 216", + "prereqs": [], + "title": "Global Pentecostalism (4)" + }, + "ANTH 217": { + "dept": "ANTH", + "description": "The opposition between materiality and ideology structures our practice as social scientists and as neoliberal citizens. This course explores the underpinnings of this division, its current manifestations, and attempts to trouble it analytically, methodologically, and politically. ", + "name": "ANTH 217", + "prereqs": [], + "title": "Materiality (4)" + }, + "ANTH 218": { + "dept": "ANTH", + "description": "This seminar deals with recent developments in the anthropology of the political: contemporary forms of power and governance; the formation of the subject; imperial regimes and colonial/postcolonial orders; \u201cgovernmentality\u201d; global process and the contemporary transformations of the state and governance. ", + "name": "ANTH 218", + "prereqs": [], + "title": "Anthropology of the State and Governance (4)" + }, + "ANTH 219": { + "dept": "ANTH", + "description": "The focus here is \u201cpolitics,\u201d broadly constructed, in various societies. Analysis is from the perspective of the recourses deployed by all involved, including but not limited to power, with emphasis on the role of culture and social structure. ", + "name": "ANTH 219", + "prereqs": [ + "ANGR 219" + ], + "title": "Seminar in Political Anthropology (4)" + }, + "ANTH 220": { + "dept": "ANTH", + "description": "This is an interdisciplinary seminar examining the place of the body and embodiment in contemporary culture and culture theory. ", + "name": "ANTH 220", + "prereqs": [], + "title": "The Human Body in Discourse and Experience (4)" + }, + "ANTH 221": { + "dept": "ANTH", + "description": "This seminar will focus on a close and intensive reading of Maurice Merleau-Ponty\u2019s masterwork, The Phenomenology of Perception. Emphasis will be placed on the relevance of this work for theory, method, and practice in the social sciences. ", + "name": "ANTH 221", + "prereqs": [], + "title": "Phenomenology of Perception (4)" + }, + "ANTH 222": { + "dept": "ANTH", + "description": "The study of subjectivity has emerged as an anthropological focal point for theorizing the interconnections among culture, experience, and power. This seminar explores the shaping of the lived experience and structures of knowledge that reciprocally produce forms of subjectivity. ", + "name": "ANTH 222", + "prereqs": [], + "title": "Anthropological Studies of Subjectivity (4)" + }, + "ANTH 223": { + "dept": "ANTH", + "description": "The course teaches techniques of long-term, intensive interviewing in fieldwork settings with an emphasis on psychodynamic inference and its usefulness in different cultural settings. ", + "name": "ANTH 223", + "prereqs": [ + "ANGR 223" + ], + "title": "Anthropological Interviewing (4)" + }, + "ANTH 224": { + "dept": "ANTH", + "description": "A critical analysis of ethnographic and theoretical texts focusing on the sociocultural study of gender. We will also draw on studies of gender and feminist theory from other disciplines (e.g., history, philosophy) to illuminate issues relevant to anthropology. ", + "name": "ANTH 224", + "prereqs": [], + "title": "The Anthropology of Gender and Sexuality (4)" + }, + "ANTH 226": { + "dept": "ANTH", + "description": "Directed to graduate students planning ethnographic work in Christian societies, this course explore", + "name": "ANTH 226", + "prereqs": [], + "title": "Ethnography of Christianity (4)" + }, + "ANTH 229": { + "dept": "ANTH", + "description": "This seminar is an in-depth analysis of cultural meaning, personal experience, and therapeutic process in ritual healing, emphasizing performative/persuasive aspects of the relation between religion and health in comparative, cross-cultural perspective. ", + "name": "ANTH 229", + "prereqs": [], + "title": "Religion and Healing (4)" + }, + "ANTH 23": { + "dept": "ANTH", + "description": "This course focuses on the debate about multiculturalism in American society. It examines the interaction of race, ethnicity, and class, historically and comparatively, and considers the problem of citizenship in relation to the growing polarization of multiple social identities.", + "name": "ANTH 23", + "prereqs": [], + "title": "Debating Multiculturalism: Race, Ethnicity, and Class in American Societies (4)" + }, + "ANTH 230": { + "dept": "ANTH", + "description": "A forum to present work by faculty, students, and guests. Course will be offered quarterly. ", + "name": "ANTH 230", + "prereqs": [ + "ANGR 230" + ], + "title": "Department Colloquium (1)" + }, + "ANTH 232": { + "dept": "ANTH", + "description": "Indexing a social identity is an achievement; it takes work. But what kind? This course examines Peircean semiotics as a theory of labor, putting it into conversation with traditional Marxist and practice-based conceptualizations of labor. ", + "name": "ANTH 232", + "prereqs": [], + "title": "Labor and Semiotics (4)" + }, + "ANTH 233": { + "dept": "ANTH", + "description": "This seminar takes up Marx\u2019s varied critiques of capitalist forms, categories, doctrines, practices, and tendencies and brings them to bear on contemporary conditions. In particular, the seminar examines what may be understood as Marx\u2019s ontology, epistemology, and ethico-political stance. ", + "name": "ANTH 233", + "prereqs": [], + "title": "Critical Studies of Capitalism (4)" + }, + "ANTH 234": { + "dept": "ANTH", + "description": "Examination of the actual operation of culture with attention to the importance of cultural products and social structures. Course goal is to develop skill in understanding the influence, direct and indirect, of culture and behavior. ", + "name": "ANTH 234", + "prereqs": [ + "ANGR 234" + ], + "title": "Dynamics of Culture (4)" + }, + "ANTH 235": { + "dept": "ANTH", + "description": "This graduate seminar will attend to the theory and praxis of social justice. Social justice is primarily concerned with the ways in which wealth and privileges are distributed in society. This course explores the ideologies and logics of wealth distribution at various points in history and in different places across the globe. The ways in which we understand basic human needs and the distribution of entitlements are also critical components of theories of social justice. ", + "name": "ANTH 235", + "prereqs": [], + "title": "Theories of Social Justice (4)" + }, + "ANTH 238": { + "dept": "ANTH", + "description": "Examines physical and mental health sequelae of internal and transnational movement of individuals and populations due to warfare, political violence, natural disaster, religious persecution, poverty and struggle for economic survival, and social suffering of communities abandoned by migrants and refugees. May be coscheduled with ANSC 144. ", + "name": "ANTH 238", + "prereqs": [], + "title": "Immigrant and Refugee Health (4)" + }, + "ANTH 239": { + "dept": "ANTH", + "description": "Recent decades have witnessed the dramatic rise of religious movements worldwide, posing challenges to secular models of modernity. We will study the sociocultural and political implications of this phenomenon comparatively, focusing especially on new forms of Islamic and Christian practice. ", + "name": "ANTH 239", + "prereqs": [], + "title": "Contemporary Religious Movements (4)" + }, + "ANTH 240": { + "dept": "ANTH", + "description": "This seminar will focus on classic and contemporary studies of Southeast Asia, concentrating on Thailand, Indonesia, and the Philippines. Particular attention will be paid to the impact of the state and global forces on Southeast Asian cultural and social dynamics. Formerly known as ANGR 240. Students may not receive credit for both ANGR 240 and ANTH 240.\u00a0", + "name": "ANTH 240", + "prereqs": [], + "title": "Culture and Politics in Southeast Asia (4)" + }, + "ANTH 242": { + "dept": "ANTH", + "description": "This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens\u2019 efforts to promote social change in contemporary democracies. ", + "name": "ANTH 242", + "prereqs": [], + "title": "Anthropology of Latin America (4)" + }, + "ANTH 243": { + "dept": "ANTH", + "description": "Why is mental health a global concern? This anthropological course reviews globalization, culture, and mental health. We examine issues of social suffering, stigma, and economic burden associated with mental illness, gender inequality, political violence, \u201cglobal security,\u201d pharmaceutical and illegal drugs. ", + "name": "ANTH 243", + "prereqs": [], + "title": "Mental Health as Global Health Priority (4)" + }, + "ANTH 244": { + "dept": "ANTH", + "description": "This seminar examines the prehistory of the Andean region from the peopling of the New World through the formation of Archaic, Preceramic, and Initial periods; the Chavin Horizon; and the Nasca and Moche States of the Early Intermediate Period. ", + "name": "ANTH 244", + "prereqs": [], + "title": "Andean Prehistory: Origins of Chiefdoms and States (4)" + }, + "ANTH 245": { + "dept": "ANTH", + "description": "This seminar compares the distinct urban and expansive state phenomena of the highland Wari and Tiwanaku cultures (AD 500\u20131000) with emphasis on their formative origins and the ideological, agrarian, and technological foundations of Middle Horizon political development. ", + "name": "ANTH 245", + "prereqs": [], + "title": "The Middle Horizon (4)" + }, + "ANTH 246": { + "dept": "ANTH", + "description": "This seminar considers the ethnohistory, ethnography, and archaeology of the Inca Empire Tawantinsuyu, with emphasis on the economic, social, and ideological foundations of the Cusco Inca state and the dynamics of Inca imperial expansion throughout Andean South America. ", + "name": "ANTH 246", + "prereqs": [], + "title": "The Inca and the Late Horizon (4)" + }, + "ANTH 247": { + "dept": "ANTH", + "description": "Human society evolved in the context of face-to-face interaction. The course will examine methods and theoretical approaches to different modalities of interaction\u2014especially speech, gesture, and gaze\u2014their mutual integration, and their relevance to ethnography. ", + "name": "ANTH 247", + "prereqs": [], + "title": "Multimodal Interaction (4)" + }, + "ANTH 248": { + "dept": "ANTH", + "description": "This seminar investigates global health from the perspective of medical anthropology on disease and illness; cultural conceptions of health; doctor-patient interaction; illness experience; medical science and technology; mental health; infectious disease; and health-care inequalities by ethnicity, gender, and socioeconomic status. ", + "name": "ANTH 248", + "prereqs": [], + "title": "Global Health and Cultural Diversity (4)" + }, + "ANTH 249": { + "dept": "ANTH", + "description": "This course examines gender and mental health by considering social, cultural, and biological explanations for problems such as depression, trauma, anxiety, drugs/alcohol use. Cross-cultural similarities and differences of gender are considered with respect to etiology, epidemiology, symptomatology, treatment, and recovery. ", + "name": "ANTH 249", + "prereqs": [], + "title": "Gender and Mental Health (4)" + }, + "ANTH 250": { + "dept": "ANTH", + "description": "This graduate seminar will explore the theories and critiques of the contemporary human rights framework, through history and ethnography. ", + "name": "ANTH 250", + "prereqs": [], + "title": "The Anthropology of Human Rights (4)" + }, + "ANTH 251": { + "dept": "ANTH", + "description": "How is the idea of modernity experienced in diverse cultural and historical settings? This seminar focuses on ethnographic representations of modernity, exploring such topics as globalization, mass media, consumerism, gender and modernity, modern religious movements, and theories of modernity. ", + "name": "ANTH 251", + "prereqs": [], + "title": "The Ethnography of Modernity (4)" + }, + "ANTH 252": { + "dept": "ANTH", + "description": "This seminar will consider the theoretical constructions and deployments of neoliberalism, which has produced an assemblage of capitalist restructuring, transformed governance, and newly produced subjectivities. ", + "name": "ANTH 252", + "prereqs": [], + "title": "Interrogating Neoliberalism (4)" + }, + "ANTH 253": { + "dept": "ANTH", + "description": "This course pulls on classical Western social theory as well as recent ethnographies to examine the role of sympathetic engagement in liberal governance. We also interrogate the role anthropology has played as liberalism\u2019s witness in this regard. ", + "name": "ANTH 253", + "prereqs": [], + "title": "Who Cares? Sympathy and the Conduct of Liberalism (4)" + }, + "ANTH 254": { + "dept": "ANTH", + "description": "Students writing their dissertations present work-in-progress and receive structured peer and mentor feedback. Supervising or coparticipating faculty lead workshops about doctoral completion, publication, and other professionalization processes. S/U grades only. May be taken for credit six times. ", + "name": "ANTH 254", + "prereqs": [], + "title": "Dissertation Practicum (4)" + }, + "ANTH 255": { + "dept": "ANTH", + "description": "This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ", + "name": "ANTH 255", + "prereqs": [], + "title": "Understanding the Human Social Order (4)" + }, + "ANTH 256": { + "dept": "ANTH", + "description": "We will review the neural basis of cognition in humans and other primates. Neurobiological findings will be related to contributions from various subfields of anthropology. Brain/mind associations will be explored in the context of hominid evolution. ", + "name": "ANTH 256", + "prereqs": [ + "ANGR 256" + ], + "title": "Seminar on Brain Evolution\u00a0(4)" + }, + "ANTH 257": { + "dept": "ANTH", + "description": "This seminar critically examines social, cultural, and psychological theories of the person, and their relationship to conceptions of the person found in moral political and religious discourses. It explores the role of concepts of the person in ethnographic research. Formerly known as ANGR 257. ", + "name": "ANTH 257", + "prereqs": [], + "title": "Mind, Self, and Identity (4)" + }, + "ANTH 258": { + "dept": "ANTH", + "description": "Specialized scientific techniques are increasingly important to archaeology. This seminar examines chronometric date techniques, site-formation processes, and geoarchaeology and pedology, chemical analyses of soils, zooarchaeology, palaeoethnobotany, and how land-use strategies can be inferred from archaeological remains. ", + "name": "ANTH 258", + "prereqs": [ + "ANGR 258" + ], + "title": "Analytical Methods in Archaeology (4)" + }, + "ANTH 259": { + "dept": "ANTH", + "description": "This seminar in psychological/psychiatric anthropology takes a comparative approach to the study of gender and mental health. Culture and feminist theory is employed to address questions of gender in relation to various problems, such as depression, anxiety, and eating disorders. ", + "name": "ANTH 259", + "prereqs": [], + "title": "Gender and Mental Health (4)" + }, + "ANTH 260": { + "dept": "ANTH", + "description": "This seminar examines medical, psychological, and psychiatric anthropology through reading, discussion, and presentation of work 1) essential to the development of and 2) exemplifying the state of the art in these related fields. May be taken for credit up to two times. ", + "name": "ANTH 260", + "prereqs": [], + "title": "Seminar in Medical and Psychological Anthropology (4)" + }, + "ANTH 262": { + "dept": "ANTH", + "description": "Anthropology has long analyzed the relations between culture, economics, and politics. This seminar will examine these issues through ethnographic and historical accounts, engaging contemporary theory and debates. S/U grades only. May be taken for credit ten times. ", + "name": "ANTH 262", + "prereqs": [], + "title": "Critical Anthropology Workshop (4)" + }, + "ANTH 263": { + "dept": "ANTH", + "description": "This graduate seminar discusses recent publications on topics related to human evolution and health in modern and ancient populations, using data beyond traditional genetics, including the microbiome, various levels of epigenetic regulation (DNA and histone modifications, micro and non-coding RNAs), telomeres, hormonal influences on the genome (e.g., cortisol, oxytocin), and gender-biased selection in reproductive success under stressful environments. ", + "name": "ANTH 263", + "prereqs": [], + "title": "Beyond the Genome (4)" + }, + "ANTH 264": { + "dept": "ANTH", + "description": "This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANBI 134. ", + "name": "ANTH 264", + "prereqs": [], + "title": "Human Evolutionary Genetics (4)" + }, + "ANTH 265": { + "dept": "ANTH", + "description": "The seminar will follow recent advances and key discoveries in the coastal and maritime archaeology of Israel and the eastern Mediterranean from the Neolithic period to the end of the classical period. Topics include methodologies of underwater excavations and surveys, sunken Neolithic villages of the Carmel coast, archaeology and geoarchaeology of Canaanite and Phoenician harbors, shipwrecks of the eastern Mediterranean and maritime trade, the Anthropocene, sea level changes, and paleoclimate. ", + "name": "ANTH 265", + "prereqs": [], + "title": "Marine and Coastal Archaeology: Israel and the Neighboring Lands (4)" + }, + "ANTH 266": { + "dept": "ANTH", + "description": "This course interrogates the association of romantic love with modernity, egalitarianism, and choice. The focus is on how cultural political economy shapes desires and structures relationships. We consider how race, class, nation, gender, and sexuality reinforce or undermine status hierarchies. For example, we examine the concept of racial and transnational hypergamy, in which women, men, and trans people from lower status ethnic groups and developing countries \u201cmarry up.\u201d ", + "name": "ANTH 266", + "prereqs": [], + "title": "Anthropology of Love (4)" + }, + "ANTH 267": { + "dept": "ANTH", + "description": "Despite being foundational to the discipline of anthropology, ethnographic methods are often mystifying to graduate students. Students are expected to simply go into their respective field sites armed with a notebook, voice recorder, and hope. Drawing on feminist and decolonial epistemologies, we will examine, critique, and reconstruct ethnography\u2019s dilemmas, changing forms, and ethical stakes as we understand it as a particular mode of writing and representation. ", + "name": "ANTH 267", + "prereqs": [], + "title": "Decolonizing Ethnography: Ethics, Politics, and Praxis (4)" + }, + "ANTH 270": { + "dept": "ANTH", + "description": "This seminar studies the dynamics of climate change and human responses through time. Topics include research methods in socioecodynamics, human responses to change in different sociopolitical and economic contexts, and lessons from the past that can inform the present. Students may not receive credit for ANTH 270 and SIOG 270. ", + "name": "ANTH 270", + "prereqs": [], + "title": "The Archaeology of Climate Change\u2014Social Adaptation and Vulnerability in Temporal Perspective (4)" + }, + "ANTH 274": { + "dept": "ANTH", + "description": "This seminar will review a series of current or recent significant debates in anthropology. The debates will be examined in the light of their substantive, theoretical, and epistemological implications, with some attention to the rhetorical elements of the arguments themselves. ", + "name": "ANTH 274", + "prereqs": [ + "ANGR 274" + ], + "title": "Debates in Anthropology (4)" + }, + "ANTH 280C": { + "dept": "ANTH", + "description": "Core seminar focuses on motives, values, cognition, and qualities of personal experience. ", + "name": "ANTH 280C", + "prereqs": [ + "ANGR 280C" + ], + "title": "Core Seminar in Psychological Anthropology (4)" + }, + "ANTH 280D": { + "dept": "ANTH", + "description": "Seminar focuses on the development of archaeological theory. Required of archaeological and biological anthropology graduate students, sociocultural students may take this course to fulfill core distribution requirement. ", + "name": "ANTH 280D", + "prereqs": [ + "ANGR 280D" + ], + "title": "Core Seminar in Anthropological Archaeology (4)" + }, + "ANTH 280E": { + "dept": "ANTH", + "description": "This seminar will examine the central problems and concepts of biological anthropology, laying the foundation for first-year graduate students in Biological Anthropology as well as providing an overview of the field for graduate students in other areas of anthropology. ", + "name": "ANTH 280E", + "prereqs": [ + "ANGR 280E" + ], + "title": "Core Seminar in Biological Anthropology (4)" + }, + "ANTH 280F": { + "dept": "ANTH", + "description": "Examines the theoretical and methodological foundations and principal research questions of linguistic anthropology, providing the fundamentals for graduate study in this area. Required for students specializing in linguistic anthropology and open to other students. Course formerly numbered as ANTH 263. Students will not receive credit for both ANTH 263 and ANTH 280F. ", + "name": "ANTH 280F", + "prereqs": [], + "title": "Core Seminar in Linguistic Anthropology (4)" + }, + "ANTH 281A": { + "dept": "ANTH", + "description": "These seminars are held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ", + "name": "ANTH 281A", + "prereqs": [], + "title": "Introductory Seminar (1)" + }, + "ANTH 281B": { + "dept": "ANTH", + "description": "Continuation of seminars held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ", + "name": "ANTH 281B", + "prereqs": [], + "title": "Introductory Seminar (1)" + }, + "ANTH 283A": { + "dept": "ANTH", + "description": "A seminar given to acquaint students with the techniques and problems of fieldwork. Students carry out ethnographic field research in a local community group under faculty supervision. ", + "name": "ANTH 283A", + "prereqs": [ + "ANGR 283A" + ], + "title": "Fieldwork Seminar (4)" + }, + "ANTH 284": { + "dept": "ANTH", + "description": "This workshop is designed for second year students writing their MA theses. It includes study of thesis and article writing styles, standards of documentation, and argumentation. Students will be expected to share their work with each other. ", + "name": "ANTH 284", + "prereqs": [], + "title": "Master Writing Practicum (4)" + }, + "ANTH 285": { + "dept": "ANTH", + "description": "This workshop is designed for third and fourth year students writing grant proposals for dissertation research. Students will learn grant writing, research methods, ethics, and budgets. Students will be expected to share their work with each other. ", + "name": "ANTH 285", + "prereqs": [], + "title": "Grants Writing Practicum (4)" + }, + "ANTH 287": { + "dept": "ANTH", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ", + "name": "ANTH 287", + "prereqs": [], + "title": "Ethnography Practicum (4)" + }, + "ANTH 288": { + "dept": "ANTH", + "description": "Field and laboratory training for graduate students in archaeology. Students will design and implement archaeological fieldwork or analyze data collected in the field. ", + "name": "ANTH 288", + "prereqs": [ + "ANGR 288" + ], + "title": "Archaeology Practicum (12)" + }, + "ANTH 289S": { + "dept": "ANTH", + "description": "Graduate students will visit key sites representing the three major approaches to studying human origins: fossils evidence, comparison with nonhumans, and study of human foragers. Visits will be combined with lectures, discussion, and brief training in conducting relevant field research. ", + "name": "ANTH 289S", + "prereqs": [], + "title": "Tanzania Anthropogeny Study Tour (1\u20134)" + }, + "ANTH 291": { + "dept": "ANTH", + "description": "Survey of Mesoamerican archaeology focusing on highland Mexico. Topics covered: settling of Mesoamerica, agricultural origins, development of social complexity, rise of cities, emergence of large-scale states. ", + "name": "ANTH 291", + "prereqs": [ + "ANGR 291" + ], + "title": "Archaeology of Highland Mexico (4)" + }, + "ANTH 292": { + "dept": "ANTH", + "description": "The Iron Age (ca. 1200\u2013586 BCE) represents", + "name": "ANTH 292", + "prereqs": [], + "title": "Social Evolution/Iron Age Levant (4)" + }, + "ANTH 293": { + "dept": "ANTH", + "description": "Course examines theories for the causes of sociality in primates. Implications for our understanding of human evolution are considered. ", + "name": "ANTH 293", + "prereqs": [ + "ANGR 293" + ], + "title": "Primate Socioecology (4)" + }, + "ANTH 295": { + "dept": "ANTH", + "description": "The student will work on the master\u2019s thesis under the direction of the departmental committee chair. The course will be taken in the student\u2019s second year. S/U grades only. ", + "name": "ANTH 295", + "prereqs": [ + "ANGR 295" + ], + "title": "Master\u2019s Thesis Preparation (1\u201312)" + }, + "ANTH 296": { + "dept": "ANTH", + "description": "The student will work in cooperation with his or her departmental committee to develop a research proposal for the doctoral research project. S/U grades only. ", + "name": "ANTH 296", + "prereqs": [ + "ANGR 296A" + ], + "title": "Dissertation Fieldwork Proposal Preparation (4)" + }, + "ANTH 297": { + "dept": "ANTH", + "description": "Supervised advanced research studies with individual topics to be selected according to the student\u2019s special interests. S/U grades only. ", + "name": "ANTH 297", + "prereqs": [], + "title": "Research Practicum (1\u20134)" + }, + "ANTH 298": { + "dept": "ANTH", + "description": "Supervised study of individually selected anthropological topics under the direction of a member of the faculty. S/U grades only. ", + "name": "ANTH 298", + "prereqs": [ + "ANGR 298" + ], + "title": "Independent Study (1\u20134)" + }, + "ANTH 299": { + "dept": "ANTH", + "description": "S/U grades only. ", + "name": "ANTH 299", + "prereqs": [ + "ANGR 299" + ], + "title": "Dissertation Research (1\u201312)" + }, + "ANTH 3": { + "dept": "ANTH", + "description": "This course examines theories and methods used by archaeologists to investigate the origins and nature of human culture and its materiality. Case studies from the past and present, and digital heritage are explored. Recommended for many upper-division archaeology courses.", + "name": "ANTH 3", + "prereqs": [], + "title": "Global Archaeology (4)" + }, + "ANTH 4": { + "dept": "ANTH", + "description": "How does one\u2019s language mutually interact with the social, cultural, and conceptual worlds one inhabits and mutually constructs with others? This course will introduce the comparative study of social life through the lens of the uniquely human capacity for language.", + "name": "ANTH 4", + "prereqs": [], + "title": "Words and Worlds: Introduction to the Anthropology of Language (4)" + }, + "ANTH 42": { + "dept": "ANTH", + "description": "Major primate field studies will be studied to illustrate common features of primate behavior and behavioral diversity. Topics will include communication, female hierarchies, protocultural behavior, social learning and tool use, play, cognition, and self-awareness.", + "name": "ANTH 42", + "prereqs": [], + "title": "Primates in a Human-Dominated World (4)" + }, + "ANTH 43": { + "dept": "ANTH", + "description": "This course examines conceptions of race from evolutionary and sociocultural perspectives. We will critically examine how patterns of current human genetic variation map onto conceptions of race. We will also focus on the history of the race concept and explore ways in which biomedical researchers and physicians use racial categories today. Finally, we will examine the social construction of race, and the experiences and consequences of racism on health in the United States and internationally.", + "name": "ANTH 43", + "prereqs": [], + "title": "Introduction to Biology and Culture of Race (4)" + }, + "ANTH 44": { + "dept": "ANTH", + "description": "This course examines new media fandoms through the representation and reception of gender and sexuality in Korean media consumed around the world by highlighting how Korean images are differently interpreted by other national groups. Contrasting various understandings of masculinity, homosexuality, and transgenderism, we explore how the meanings attached to gender and sexuality are not fixed by the productive frame of Korean society, but cocreated and reimagined by international audiences.", + "name": "ANTH 44", + "prereqs": [], + "title": "Gender, Sexuality, and New Media Fandom in the Korean Wave (4)" + }, + "ANTH 5": { + "dept": "ANTH", + "description": "Course will provide an introduction to bones as a tissue, to different bones in the body, and the ligaments and muscles surrounding major joints. You will learn how the skeleton, ligaments, and muscles support our mode of locomotion; the differences between male and female skeletons; and the differences across human populations. You\u2019ll see how nutrition and disease can affect bones. Course examines functional areas within the body.", + "name": "ANTH 5", + "prereqs": [], + "title": "The Human Machine: The Skeleton Within (4)" + }, + "ANTH 500": { + "dept": "ANTH", + "description": "Anthropology graduate students participate in the undergraduate teaching program during one quarter anytime in the first four years of residence. Teaching may be in the anthropology department or other departments or programs on campus. Equivalent to duties expected of a 50 percent TA. Enrollment in four units documents the PhD requirement. S/U grades only. ", + "name": "ANTH 500", + "prereqs": [ + "ANGR 500" + ], + "title": "Apprentice Teaching (4)" + }, + "ANTH 87": { + "dept": "ANTH", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "ANTH 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "AUD 236": { + "dept": "AUD", + "description": "Observations in UC San Diego Otology clinic. Learn about procedures for taking histories and performing clinical examinations, patient treatment, and patient education from otologists. ", + "name": "AUD 236", + "prereqs": [], + "title": "Preceptorship in Neuro-Otology (2)" + }, + "AUD 255": { + "dept": "AUD", + "description": "Detailed anatomy of the auditory and vestibular systems, including the ultra-structure, histology, and neuronal connections of the systems. In addition, physiological responses that underlie the actions of each system are described, from the cellular to the systems levels. ", + "name": "AUD 255", + "prereqs": [], + "title": "Anatomy and Physiology of the Auditory and Vestibular Systems (4)" + }, + "AUD 256": { + "dept": "AUD", + "description": "Physiological and anatomical substrates of auditory and vestibular disorders including influences of neurological disorders. Topics include peripheral and central disorders, congenital disorders due to infections, as well as acquired ototoxic, noise-induced, infective, autoimmune, age-associated disorders, and traumatic disorders. ", + "name": "AUD 256", + "prereqs": [ + "AUD 255" + ], + "title": "Pathophysiology of the Auditory and Vestibular Systems (4)" + }, + "AUD 257": { + "dept": "AUD", + "description": "Differential diagnosis and treatment of auditory and vestibular disorders, audiological components of neuro-otology, as well as interactions between the audiologist and neuro-otologist in a clinical setting. ", + "name": "AUD 257", + "prereqs": [], + "title": "Ear Diseases and Treatment (3)" + }, + "AUD 263": { + "dept": "AUD", + "description": "Clinical evaluation of vestibular function, using techniques such as caloric and rotational electronystagmography and posturography. The interpretation of clinical findings and implications for rehabilitative strategies will be covered. The course will include observation of testing in otology clinic settings. ", + "name": "AUD 263", + "prereqs": [], + "title": "Physiological and Behavioral Tests of Vestibular Function (4)" + }, + "AUD 264": { + "dept": "AUD", + "description": "Embryology and functional development of the auditory and vestibular systems, from their initial appearance to adult function. Inherited disorders of these two sensory systems are also addressed, including phenotypic description and genetic basis. Genetic counseling and the potential for gene therapy are also discussed. ", + "name": "AUD 264", + "prereqs": [], + "title": "Auditory and Vestibular Development and Genetics (3)" + }, + "AUD 270": { + "dept": "AUD", + "description": "This course describes procedures and requirements for newborn hearing screening, and the detection and clinical management of congenital auditory disorders. Observations of newborn screening in a neonatal ICU environment. ", + "name": "AUD 270", + "prereqs": [], + "title": "Newborn Hearing Screening and Management (3)" + }, + "AUD 271": { + "dept": "AUD", + "description": "Detailed anatomy of the temporal bone, cranial nerves and basic neurophysiology for audiologists. Radiographic and magnetic resonance imaging of the temporal bone will be discussed. ", + "name": "AUD 271", + "prereqs": [], + "title": "Temporal Bone Anatomy (3)" + }, + "AUD 272": { + "dept": "AUD", + "description": "Central auditory processing assessment and management for pediatrics and adults. Focus on behavioral tests assessing dichotic listening, temporal processes, pattern recognition, performance with competing and degraded signals. ", + "name": "AUD 272", + "prereqs": [], + "title": "Central Auditory Processing Assessment and Management (4)" + }, + "AUD 274": { + "dept": "AUD", + "description": "Advanced technical aspects of assessing and fitting amplification devices for the hearing impaired. Intensive hands-on training to develop skills necessary for audiology clinical placement. ", + "name": "AUD 274", + "prereqs": [], + "title": "Advanced Technical Aspects of Hearing Amplification (4)" + }, + "AUD 275": { + "dept": "AUD", + "description": "Methods and procedures required for monitoring of evoked auditory responses in the operating room. The indications for the use of intraoperative monitoring and difficulties unique to this setting. The course will include the opportunity to observe auditory potential monitoring in the operating room. ", + "name": "AUD 275", + "prereqs": [], + "title": "Intraoperative Monitoring (3)" + }, + "AUD 276": { + "dept": "AUD", + "description": "Theory and practice of cochlear implantation with focus on audiological management of patients after implantation. Current concepts regarding the activation of primary auditory neurons by electrical stimulation and indications for cochlear implantation and surgical procedures are described. ", + "name": "AUD 276", + "prereqs": [], + "title": "Cochlear Implants and Other Implantable Sensory Aids (3)" + }, + "AUD 284": { + "dept": "AUD", + "description": "Applications of clinical procedures to patient assessment. Includes clinical observation, interaction with otologists, and supervised patient care involving diagnostics and hearing-aid evaluations in the UC San Diego audiology clinics. This course may be taken more than once. ", + "name": "AUD 284", + "prereqs": [ + "AUD 291" + ], + "title": "Clinical Practice in Audiology II (1-4)" + }, + "AUD 291": { + "dept": "AUD", + "description": "Presentations and discussion of clinical cases and issues related to clinical practice. Students\u2019 clinical experiences are discussed relative to medical and audiological assessment and management. This course may be taken more than once. ", + "name": "AUD 291", + "prereqs": [], + "title": "Clinical Case Studies/Staffing (1)" + }, + "AUD 296": { + "dept": "AUD", + "description": "Participation in specific faculty research activities. Become familiar with research methods and objectives of a faculty\u2019s research project. Participate in data collection and analysis at the discretion of the faculty investigator. ", + "name": "AUD 296", + "prereqs": [], + "title": "Research Practicum (3)" + }, + "AUD 298": { + "dept": "AUD", + "description": "Independent research on topics relevant to audiology, consisting of literature review, data collection. Faculty supervision and mentoring on practical elements of research design and methodology. The course will consist of laboratory experience, focused on practical elements of research and design and methodology. ", + "name": "AUD 298", + "prereqs": [], + "title": "Independent Research (3)" + }, + "AUD 299": { + "dept": "AUD", + "description": "Individual investigation and preparation of the doctoral project for the AuD degree will be performed under the supervision of an experienced research mentor. ", + "name": "AUD 299", + "prereqs": [], + "title": "Doctoral Project (3)" + }, + "AWP 1": { + "dept": "AWP", + "description": "AWP 1 provides underprepared writers the opportunity to develop their critical thinking and writing abilities. At the end of AWP 1, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 1. Students may take AWP 1 and ELWR 1 a combined total of three times to earn a passing grade of C or better to satisfy the UC Entry Level Writing Requirement.", + "name": "AWP 1", + "prereqs": [], + "title": "Analytical Writing (4)" + }, + "AWP 10": { + "dept": "AWP", + "description": "This course will introduce critical thinking, reading, writing, speaking, and listening practices appropriate to college-level work. It will prepare students who may not be familiar with the learning expectations of American universities to fully join the academic conversation. Students may not receive credit for AWP 10 and LTWR 4.", + "name": "AWP 10", + "prereqs": [], + "title": "Language and Learning in the American Academy (4)" + }, + "AWP 195": { + "dept": "AWP", + "description": "Under the supervision of an instructor, students will serve as peer mentors in analytical writing courses. Students will gain a fundamental understanding of the writing process and will develop the necessary skills to serve as productive writing mentors for their peers. ", + "name": "AWP 195", + "prereqs": [], + "title": "Academic Mentoring in Writing (2)" + }, + "AWP 2A": { + "dept": "AWP", + "description": "AWP 2A is the first of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. Students who enroll in AWP 2A are required to enroll in AWP 2B in the subsequent term. Renumbered from ELWR 2A. Students may not receive credit for AWP 2A and ELWR 2A. Students must earn a C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a grade of C or better is not earned, students are placed in AWP 1.", + "name": "AWP 2A", + "prereqs": [], + "title": "Analytical Writing and Academic English A (4)" + }, + "AWP 2B": { + "dept": "AWP", + "description": "AWP 2B is the second of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. At the end of AWP 2B, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 2B. Students may not receive credit for AWP 2B and ELWR 2B. Students must earn a grade of C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a C or better is not earned, students are placed in AWP 1. ", + "name": "AWP 2B", + "prereqs": [ + "ELWR 2A", + "AWP 2A" + ], + "title": "Analytical Writing and Academic English B (4)" + }, + "AWP 500": { + "dept": "AWP", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching of analytical writing, especially with regards to courses that fulfill the UC Entry Level Writing Requirement (ELWR). The course is required of all graduate teaching assistants who are engaged in or supporting instruction in the Analytical Writing Program. The course is potentially open to other graduate students seeking expertise in writing pedagogy, contingent upon the approval of the director. May be taken for credit up to eighteen times. ", + "name": "AWP 500", + "prereqs": [], + "title": "Apprentice Teaching in the Analytical Writing Program (1\u20134)" + }, + "BENG 1": { + "dept": "BENG", + "description": "An introduction to bioengineering that includes lectures and hands-on laboratory for design projects. The principles of problem definition, engineering inventiveness, team design, prototyping, and testing, as well as information access, engineering standards, communication, ethics, and social responsibility will be emphasized. P/NP grades only. ", + "name": "BENG 1", + "prereqs": [], + "title": "Introduction to Bioengineering (2)" + }, + "BENG 100": { + "dept": "BENG", + "description": "General introduction to probability and statistical analysis, applied to bioengineering design. Topics include preliminary data analysis, probabilistic models, experiment design, model fitting, goodness-of-fit analysis, and statistical inference/estimation. Written and software problems are provided for modeling and visualization. ", + "name": "BENG 100", + "prereqs": [ + "MATH 31AH", + "MATH 18", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "BENG 1" + ], + "title": "Statistical Reasoning for Bioengineering Applications (4)" + }, + "BENG 102": { + "dept": "BENG", + "description": "Introduction to molecular structures. Macromolecules and assemblies-proteins, nucleic acids, and metabolites. Principles of design of simple and complex components of organelles, cells, and tissues. ", + "name": "BENG 102", + "prereqs": [ + "BENG 120" + ], + "title": "Molecular Components of Living Systems (4)" + }, + "BENG 103B": { + "dept": "BENG", + "description": "Mass transfer in solids, liquids, and gases with application to biological systems. Free and facilitated diffusion. Convective mass transfer. Diffusion-reaction phenomena. Active transport. Biological mass transfer coefficients. Steady and unsteady state. Flux-force relationships. (Credit not allowed for both CENG 101C and BENG 103B.) ", + "name": "BENG 103B", + "prereqs": [ + "CENG 101A", + "MAE 101A", + "BENG 112A" + ], + "title": "Bioengineering Mass Transfer (4)" + }, + "BENG 110": { + "dept": "BENG", + "description": "Introduction to mechanics: statics and dynamics, free body diagrams, and bodies in contact. Vectors and tensors; stresses, theory of deformation, and constitutive equations. Equations of motion. Biomechanics design examples. ", + "name": "BENG 110", + "prereqs": [ + "MATH 20D", + "MATH 20E", + "MATH 20F", + "MATH 31AH", + "PHYS 2C", + "MATH 31CH" + ], + "title": "Foundation of Biomechanics (4)" + }, + "BENG 112A": { + "dept": "BENG", + "description": "Biomechanics of living tissues with emphasis on mechanical properties of major tissues and organs. Foundations of viscoelasticity. Field equations and stress analysis of living tissues. Bioengineering and medical design examples. ", + "name": "BENG 112A", + "prereqs": [ + "BENG 110" + ], + "title": "Tissue Biomechanics (4)" + }, + "BENG 112B": { + "dept": "BENG", + "description": "Foundations of membrane mechanics. Micro- and nano-mechanics of cells and their constituent protein networks. Biomechanics of the circulation, properties of blood, non-Newtonian behavior, dimensionless flow analysis. Applications to cardiovascular diseases. Polymer and statistical mechanics. Engineering design and problem solving. ", + "name": "BENG 112B", + "prereqs": [ + "BENG 112A" + ], + "title": "Fluid and Cell Biomechanics (4)" + }, + "BENG 119A": { + "dept": "BENG", + "description": "Development of design project in biomechanics. ", + "name": "BENG 119A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Biomechanics (3)" + }, + "BENG 119B": { + "dept": "BENG", + "description": "Design Implementation in Biomechanics (3)", + "name": "BENG 119B", + "prereqs": [], + "title": "" + }, + "BENG 120": { + "dept": "BENG", + "description": "Structural and design principles of carbon compounds. Structure and stereochemistry. Functional groups and chemical transformations. Structure and design principles of biomolecules. Molecules of life and their organization. ", + "name": "BENG 120", + "prereqs": [ + "CHEM 6A", + "CHEM 6B" + ], + "title": "Organic Chemistry Structural and Design Principles (4)" + }, + "BENG 122A": { + "dept": "BENG", + "description": "Systems and control theory applied to bioengineering. Modeling, linearization, transfer functions, Laplace transforms, closed-loop systems, design and simulation of controllers. Dynamic behavior and controls of first and second order processes. PID controllers. Stability. Bode design. Features of biological controls systems. A simulation term project using Matlab and an oral presentation are required. ", + "name": "BENG 122A", + "prereqs": [ + "MAE 140" + ], + "title": "Biosystems and Control (4)" + }, + "BENG 123": { + "dept": "BENG", + "description": "Dynamic simulation of biochemical reaction networks, including reconstruction of networks, mathematical description of kinetics of biochemical reactions, dynamic simulation of systems of biochemical reactions, and use of simulators for data interpretation and prediction in biology. Emphasis on a design project. ", + "name": "BENG 123", + "prereqs": [ + "MATH 20D", + "CHEM 40B", + "MATH 31AH", + "MATH 18", + "BENG 120" + ], + "title": "Dynamic Simulation in Bioengineering (4)" + }, + "BENG 125": { + "dept": "BENG", + "description": "Computational modeling of molecular bioengineering phenomena: excitable cells, regulatory networks, and transport. Application of ordinary, stochastic, and partial differential equations. Introduction to data analysis techniques: power spectra, wavelets, and nonlinear time series analysis. ", + "name": "BENG 125", + "prereqs": [ + "BENG 122A", + "BENG 123" + ], + "title": "Modeling and Computation in Bioengineering (4)" + }, + "BENG 126A": { + "dept": "BENG", + "description": "Development of design project in bioinformatics bioengineering. ", + "name": "BENG 126A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Bioinformatics Bioengineering (3)" + }, + "BENG 126B": { + "dept": "BENG", + "description": "Implementation of design project in bioinformatics bioengineering. ", + "name": "BENG 126B", + "prereqs": [ + "BENG 126A", + "BENG 187C" + ], + "title": "Design Implementation in Bioinformatics Bioengineering (3)" + }, + "BENG 127A": { + "dept": "BENG", + "description": "Development of design project in molecular systems bioengineering. ", + "name": "BENG 127A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Molecular Systems Bioengineering (3)" + }, + "BENG 127B": { + "dept": "BENG", + "description": "Implementation of design project in molecular systems bioengineering. ", + "name": "BENG 127B", + "prereqs": [ + "BENG 127A", + "BENG 187C" + ], + "title": "Design Implementation in Molecular Systems Bioengineering (3)" + }, + "BENG 128A": { + "dept": "BENG", + "description": "Development of design project in genetic circuits bioengineering. ", + "name": "BENG 128A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Genetic Circuits Bioengineering (3)" + }, + "BENG 128B": { + "dept": "BENG", + "description": "Implementation of design project in genetic circuits bioengineering. ", + "name": "BENG 128B", + "prereqs": [ + "BENG 128A", + "BENG 187C" + ], + "title": "Design Implementation in Genetic Circuits Bioengineering (3)" + }, + "BENG 129A": { + "dept": "BENG", + "description": "Development of design project in cell systems bioengineering. ", + "name": "BENG 129A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Cell Systems Bioengineering (3)" + }, + "BENG 129B": { + "dept": "BENG", + "description": "Implementation of design project in cell systems bioengineering. ", + "name": "BENG 129B", + "prereqs": [ + "BENG 129A", + "BENG 187C" + ], + "title": "Design Implementation in Cell Systems Bioengineering (3)" + }, + "BENG 130": { + "dept": "BENG", + "description": "An\u00a0introduction to physical principles that govern biological matter and processes, with engineering examples. Thermodynamic principles, structural basis of life, molecular reactions and kinetics, and models to illustrate biological phenomena. ", + "name": "BENG 130", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "MATH 20D", + "CHEM 6B", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B" + ], + "title": "Biotechnology Thermodynamics and Kinetics (4)" + }, + "BENG 133": { + "dept": "BENG", + "description": "Principles of digital computing, including number representation and arithmetic operations. Accuracy, stability, and convergence. Algorithms for solving linear systems of equations, interpolation, numerical differentiation, and integration and ordinary differential equations. ", + "name": "BENG 133", + "prereqs": [ + "MATH 20D", + "MATH 20F" + ], + "title": "Numerical Analysis and Computational Engineering (4)" + }, + "BENG 134": { + "dept": "BENG", + "description": "A combined lecture and laboratory course that provides an introductory treatment of probability theory, including distribution functions, moments, and random variables. Practical applications include estimation of means and variances, hypothesis testing, sampling theory, and linear regression. ", + "name": "BENG 134", + "prereqs": [ + "MATH 31AH", + "BENG 100", + "MATH 20D", + "MATH 18" + ], + "title": "Measurements, Statistics, and Probability (4)" + }, + "BENG 135": { + "dept": "BENG", + "description": "Discrete systems: linearity, convolution, impulse, and step responses. Linear systems properties. Difference equations. Fourier Series. Continuous FS. Discrete FS. Periodic signals, filtering, and FT. Discrete FT examples. Frequency response of linear systems. Sampling. Relationship between FT, DFT. Laplace Transform. LT and inverse LT. ", + "name": "BENG 135", + "prereqs": [ + "ECE 45", + "BENG 133" + ], + "title": "Biomedical Signals and Systems (4)" + }, + "BENG 139A": { + "dept": "BENG", + "description": "Development of design project in molecular bioengineering. ", + "name": "BENG 139A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Molecular Bioengineering (3)" + }, + "BENG 139B": { + "dept": "BENG", + "description": "Implementation of design project in molecular bioengineering. ", + "name": "BENG 139B", + "prereqs": [ + "BENG 139A", + "BENG 187C" + ], + "title": "Design Implementation in Molecular Bioengineering (3)" + }, + "BENG 140A": { + "dept": "BENG", + "description": "Introductory mammalian physiology for bioengineering students, with emphasis on control mechanisms and engineering principles. Basic cell functions; biological control systems; muscle; neural; endocrine, and circulatory systems. Not intended for premedical bioengineering students. Credit not allowed for both BIPN 100 and BENG 140A. ", + "name": "BENG 140A", + "prereqs": [ + "BENG 102", + "CHEM 6A", + "CHEM 6B", + "BILD 1", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B" + ], + "title": "Bioengineering Physiology (4)" + }, + "BENG 140B": { + "dept": "BENG", + "description": "Introductory mammalian physiology for bioengineering students, with emphasis on control mechanisms and engineering principles. Digestive, respiratory, renal, and reproductive systems; regulation of metabolism, and defense mechanisms. (Credit not allowed for both BIPN 102 and BENG 140B.) ", + "name": "BENG 140B", + "prereqs": [ + "BENG 140A" + ], + "title": "Bioengineering Physiology (4)" + }, + "BENG 141": { + "dept": "BENG", + "description": "Introduction to optics. Light propagation in tissue. Propagation modeling. Optical components. Laser concepts. Optical coherence tomography. Microscopic scattering. Tissue optics. Microscopy. Confocal microscopy. Polarization in tissue. Absorption, diffuse reflection, light scattering spectroscopy. Raman, fluorescence lifetime imaging. Photo-acoustic imaging. ", + "name": "BENG 141", + "prereqs": [ + "BENG 100" + ], + "title": "Biomedical Optics and Imaging (4)" + }, + "BENG 147A": { + "dept": "BENG", + "description": "Development of design project in neural engineering. ", + "name": "BENG 147A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Neural Engineering (3)" + }, + "BENG 147B": { + "dept": "BENG", + "description": "Implementation of design project in neural engineering. ", + "name": "BENG 147B", + "prereqs": [ + "BENG 147A", + "BENG 187C" + ], + "title": "Design Implementation in Neural Engineering (3)" + }, + "BENG 148A": { + "dept": "BENG", + "description": "Development of design project in cardiac bioengineering. ", + "name": "BENG 148A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Cardiac Bioengineering (3)" + }, + "BENG 148B": { + "dept": "BENG", + "description": "Implementation of design project in cardiac bioengineering. ", + "name": "BENG 148B", + "prereqs": [ + "BENG 148A", + "BENG 187C" + ], + "title": "Design Implementation in Cardiac Bioengineering (3)" + }, + "BENG 149A": { + "dept": "BENG", + "description": "Development of design project in vascular bioengineering. ", + "name": "BENG 149A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Vascular Bioengineering (3)" + }, + "BENG 149B": { + "dept": "BENG", + "description": "Implementation of design project in vascular bioengineering. ", + "name": "BENG 149B", + "prereqs": [ + "BENG 149A", + "BENG 187C" + ], + "title": "Design Implementation in Vascular Bioengineering (3)" + }, + "BENG 152": { + "dept": "BENG", + "description": "Experimental study of real and simulated systems and their controls (examples will include electrical, biological, and biomechanical systems). Projects consist of identification, input-output analysis, design, and implementation of analog controls. Laboratory examples will include electrical circuit design and analysis, analysis of living tissues such as bone, analysis and manipulation of cells (bacteria in chemostat). Program or materials fees may apply.\u00a0", + "name": "BENG 152", + "prereqs": [ + "BENG 102" + ], + "title": "BioSystems Engineering Laboratory (4)" + }, + "BENG 160": { + "dept": "BENG", + "description": "Introductory laboratory course in current principles and techniques of chemistry and molecular biology applicable to bioengineering. Quantitation of proteins and nucleic acids by spectrophotometric, immunological, and enzymatic methods. Separations and purification by centrifugation, chromatographic, and electrophoretic methods. Course materials fees may apply. ", + "name": "BENG 160", + "prereqs": [ + "MAE 170", + "BENG 100", + "BICD 100" + ], + "title": "Chemical and Molecular Bioengineering Techniques (4)" + }, + "BENG 161A": { + "dept": "BENG", + "description": "Engineering, biochemical, and physiological considerations in the design of bioreactor processes: enzyme kinetics, mass transfer limitations, microbial growth, and product formation kinetics. Fermentation reactor selection, design, scale-up, control. Quantitative bioengineering analysis and design of biochemical processes and experiments on biomolecules. ", + "name": "BENG 161A", + "prereqs": [ + "BENG 123", + "BENG 160" + ], + "title": "Bioreactor Engineering (4)" + }, + "BENG 161B": { + "dept": "BENG", + "description": "Commercial production of biochemical commodity products. Application of genetic control systems and mutant populations. Recombinant DNA and eucaryotic proteins in E. coli and other host organisms. Product recovery operations, including the design of bioseparation processes of filtration, adsorption, chromatography, and crystallization. Bioprocess economics. Human recombinant erythropoietin as an example, from genomic cloning to CHO cell expression, to bioreactor manufacturing and purification of medical products for clinical application. ", + "name": "BENG 161B", + "prereqs": [ + "BENG 161A" + ], + "title": "Biochemical Engineering (4)" + }, + "BENG 162": { + "dept": "BENG", + "description": "Laboratory practices and design principles for biotechnology. Culture of microorganisms and mammalian cells, recombinant DNA bioreactor design and operation. Design and implementation of biosensors. A team design-based term project and oral presentation required. Course materials fees may apply. ", + "name": "BENG 162", + "prereqs": [ + "MAE 170", + "BENG 160" + ], + "title": "Biotechnology Laboratory (4)" + }, + "BENG 166A": { + "dept": "BENG", + "description": "Engineering analysis of physico-chemical rate processes that affect, limit, and govern the function of cells and tissues. Cell migration, mitosis, apoptosis, and differentiation. Dynamic and structural interactions between mesenchyme and parenchyme. The role of the tissue microenvironment including cell-cell interactions, extracellular matrix, and growth factor communication. The design of functional tissue substitutes including cell and material sourcing, scale-up and manufacturability, efficacy and safety, regulatory, and ethical topics. Clinical applications. ", + "name": "BENG 166A", + "prereqs": [ + "BENG 103B", + "BENG 112B" + ], + "title": "Cell and Tissue Engineering (4)" + }, + "BENG 168": { + "dept": "BENG", + "description": "Basic molecular biology and recombinant DNA technologies. Structure and function of biomolecules that decode genomes and perform energy conversion, enzymatic catalysis, and active transport. Metabolism of macromolecules. Molecular diagnostics. Design, engineering, and manufacture of proteins, genomes, cells, and biomolecular therapies. ", + "name": "BENG 168", + "prereqs": [ + "BILD 1", + "BENG 100" + ], + "title": "Biomolecular Engineering (4)" + }, + "BENG 169A": { + "dept": "BENG", + "description": "Development of design project in tissue engineering. ", + "name": "BENG 169A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Tissue Engineering (3)" + }, + "BENG 169B": { + "dept": "BENG", + "description": "Implementation of design project in tissue engineering. ", + "name": "BENG 169B", + "prereqs": [ + "BENG 169A", + "BENG 187C" + ], + "title": "Design Implementation in Tissue Engineering (3)" + }, + "BENG 172": { + "dept": "BENG", + "description": "A laboratory course demonstrating basic concepts of biomechanics, bioengineering design, and experimental procedures involving animal tissue. Sources of error and experimental limitations. Computer data acquisition, modeling, statistical analysis. Experiments on artery, muscle and heart mechanics, action potentials, viscoelasticity, electrocardiography, hemorheology. Course materials fees may apply. ", + "name": "BENG 172", + "prereqs": [ + "MAE 170" + ], + "title": "Bioengineering Laboratory (4)" + }, + "BENG 179A": { + "dept": "BENG", + "description": "Development of design project in bioinstrumentation. ", + "name": "BENG 179A", + "prereqs": [ + "BENG 187B" + ], + "title": "Design Development in Bioinstrumentation (3)" + }, + "BENG 179B": { + "dept": "BENG", + "description": "Implementation of design project in bioinstrumentation. ", + "name": "BENG 179B", + "prereqs": [ + "BENG 179A", + "BENG 187C" + ], + "title": "Design Implementation in Bioinstrumentation (3)" + }, + "BENG 183": { + "dept": "BENG", + "description": "Principles and technologies for using genomic information for biomedical applications. Technologies will be introduced progressively, from DNA to RNA to protein to whole cell systems. The integration of biology, chemistry, engineering, and computation will be stressed. Topics include technology for the genome, DNA chips, RNA technologies, proteomic technologies, aphysiomic and phenomic technologies, and analysis of cell function. ", + "name": "BENG 183", + "prereqs": [ + "BICD 110", + "BIMM 100", + "CHEM 114C" + ], + "title": "Applied Genomic Technologies (4)" + }, + "BENG 186A": { + "dept": "BENG", + "description": "Fundamentals of materials science as applied to bioengineering design. Natural and synthetic polymeric materials. Materials characterization and design. Wound repair, blood clotting, foreign body response, transplantation biology, biocompatibility of materials, tissue engineering. Artificial organs and medical devices. Government regulations. Patenting. Economic impact. Ethical issues. A term project and oral presentation are required. ", + "name": "BENG 186A", + "prereqs": [ + "BENG 123", + "BENG 112B" + ], + "title": "Principles of Biomaterials Design (4)" + }, + "BENG 186B": { + "dept": "BENG", + "description": "Biophysical phenomena, transducers, and electronics as related to the design of biomedical instrumentation. Potentiometric and amperometric signals and amplifiers. Biopotentials, membrane potentials, chemical sensors. Electrical safety. Mechanical transducers for displacement, force, and pressure. Temperature sensors. Flow sensors. Light-based instrumentation. ", + "name": "BENG 186B", + "prereqs": [ + "MAE 170", + "ECE 45", + "ECE 35", + "MAE 140" + ], + "title": "Principles of Bioinstrumentation Design (4)" + }, + "BENG 187A": { + "dept": "BENG", + "description": "General engineering design topics including project planning and design objectives, background research, engineering needs assessment, technical design specifications, engineering standards, and design requirements and constraints. Introduction to biomedical and biotechnology design projects. Career and professional advising. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ", + "name": "BENG 187A", + "prereqs": [ + "BENG 152", + "BENG 112A", + "BENG 168" + ], + "title": "Bioengineering Design Project: Planning (1)" + }, + "BENG 187B": { + "dept": "BENG", + "description": "Development of an original bioengineering design for solution of a problem in biology or medicine. Analysis of economic issues, manufacturing and quality assurance, ethics, safety, design constraints, government regulations, and patent requirements. Oral presentation and formal engineering reports. Career and professional advising. Majors", + "name": "BENG 187B", + "prereqs": [], + "title": "Bioengineering Design Project: Development (1)" + }, + "BENG 187C": { + "dept": "BENG", + "description": "Approaches to implementation of senior design project, including final report. Teams will report on construction of prototypes, conduct of testing, collection of data, and assessment of reliability and failure. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ", + "name": "BENG 187C", + "prereqs": [ + "BENG 128B", + "BENG 129B", + "BENG 119B", + "BENG 127B", + "BENG 169B", + "BENG 126B", + "BENG 149B", + "BENG 179B", + "BENG 148B", + "BENG 187B", + "BENG 147B", + "BENG 139B" + ], + "title": "Bioengineering Design Project: Implementation (1)" + }, + "BENG 187D": { + "dept": "BENG", + "description": "Oral presentations of design projects, including design, development, and implementation strategies and results of prototype testing. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ", + "name": "BENG 187D", + "prereqs": [ + "BENG 187C" + ], + "title": "Bioengineering Design Project: Presentation (1)" + }, + "BENG 189": { + "dept": "BENG", + "description": "Quantitative description of physiological systems, e.g., electrical and mechanical properties of muscle (skeletal and cardiac). Modeling and simulation of properties. Kidney, transport, and models. Neural circuits and models. ", + "name": "BENG 189", + "prereqs": [ + "BENG 134", + "BENG 135", + "BENG 133", + "BENG 140B", + "BENG 140A" + ], + "title": "Physiological Systems Engineering (4)" + }, + "BENG 191/291": { + "dept": "BENG", + "description": "Senior Seminar I: Professional Issues in Bioengineering (2)", + "name": "BENG 191/291", + "prereqs": [], + "title": "" + }, + "BENG 193": { + "dept": "BENG", + "description": "Introduction on the integration of bioengineering and clinical medicine through lectures and rotations with clinical faculty. Students will work with clinical mentors and course faculty to identify areas where engineering can improve diagnostics, clinical practice, and/or treatment. ", + "name": "BENG 193", + "prereqs": [ + "BIPN 100", + "BIPN 102", + "BENG 140A", + "BENG 140B" + ], + "title": "Clinical Bioengineering (4)" + }, + "BENG 195": { + "dept": "BENG", + "description": "Teaching and tutorial assistance in a bioengineering course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ", + "name": "BENG 195", + "prereqs": [], + "title": "Teaching (2\u20134)" + }, + "BENG 196": { + "dept": "BENG", + "description": "Under the joint supervision of a faculty adviser and industry mentor, the student will work at a bioengineering industrial site to gain practical bioengineering experience, summarized in a technical report. With departmental approval, four units of credit may substitute for a technical elective. (P/NP grades only.) Course may be taken for credit three times. ", + "name": "BENG 196", + "prereqs": [], + "title": "Bioengineering Industrial Internship (1\u20134)" + }, + "BENG 197": { + "dept": "BENG", + "description": "An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, hospitals, and their practices. Subject to the availability of positions, students will work in a local industry or hospital (on a salaried or unsalaried basis) under the supervision of a faculty member and industrial, government, or hospital employee. Coordination of the Engineering Internship is conducted through UC San Diego\u2019s Academic Internship Program. Time and effort to be arranged. Units may not be applied toward major graduation requirements unless prior approval of a faculty adviser is obtained and internship is an unsalaried position. ", + "name": "BENG 197", + "prereqs": [], + "title": "Engineering Internship (1\u20134)" + }, + "BENG 198": { + "dept": "BENG", + "description": "Directed group study, on a topic or in a field", + "name": "BENG 198", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "BENG 199": { + "dept": "BENG", + "description": "Independent reading or research by arrangement with a bioengineering faculty member. May be taken for credit three times. (P/NP grades only.) ", + "name": "BENG 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (4)" + }, + "BENG 2": { + "dept": "BENG", + "description": "Introduction to Matlab is designed to give students fluency in Matlab, including popular toolboxes. Consists of interactive lectures with a computer running Matlab for each student. Topics: variables, operations, and plotting; visualization and programming; and solving equations and curve fitting. ", + "name": "BENG 2", + "prereqs": [], + "title": "Introductory Computer Programming and Matlab (2)" + }, + "BENG 202/CSE": { + "dept": "BENG", + "description": "282. Bioinformatics II: Introduction to Bioinformatics Algorithms (4)", + "name": "BENG 202/CSE", + "prereqs": [], + "title": "" + }, + "BENG 203/CSE": { + "dept": "BENG", + "description": "283. Genomics, Proteomics, and Network Biology (4)", + "name": "BENG 203/CSE", + "prereqs": [], + "title": "" + }, + "BENG 207": { + "dept": "BENG", + "description": "Course given at the discretion of the faculty on current topics of interest in bioengineering. (F,W,S)", + "name": "BENG 207", + "prereqs": [], + "title": "Topics in Bioengineering (4)" + }, + "BENG 208": { + "dept": "BENG", + "description": "Course given at the discretion of the faculty", + "name": "BENG 208", + "prereqs": [], + "title": "Topics in Bioengineering with Lab (4)" + }, + "BENG 211": { + "dept": "BENG", + "description": "Components of biological systems, their biochemical properties and function. The technology used for obtaining component lists. Relationship within and integration of component lists. Structured vocabularies and component ontologies. Algorithms for comparative approaches in deciphering and mining component lists. ", + "name": "BENG 211", + "prereqs": [ + "BENG 230A", + "BIMM 100" + ], + "title": "Systems Biology and Bioengineering I: Biological Components (4)" + }, + "BENG 212": { + "dept": "BENG", + "description": "This course will cover the process of reconstructing complex biological reaction networks. Reconstruction of metabolic networks, regulatory networks and signaling networks. Bottom-up and top-down approaches. The use of collections of historical data. The principles underlying high-throughput experimental technologies and examples given on how this data is used for network reconstruction, consistency checking, and validation. ", + "name": "BENG 212", + "prereqs": [ + "BENG 211" + ], + "title": "Systems Biology and Bioengineering II: Network Reconstruction (4)" + }, + "BENG 213": { + "dept": "BENG", + "description": "Mathematical models of reconstructed reaction networks and simulation of their emergent properties. Classical kinetic theory, stochastic simulation methods and constraints-based models. Methods that are scalable and integrate multiple cellular processes will be emphasized. Existing genome-scale models will be described and computations performed. Emphasis will be on studying the genotype-phenotype relationship in an in silico model driven fashion. Comparisons with phenotypic data will be emphasized. ", + "name": "BENG 213", + "prereqs": [ + "BENG 212" + ], + "title": "Systems Biology and Bioengineering III: Building and Simulating Large-Scale In Silico Models (4)" + }, + "BENG 221": { + "dept": "BENG", + "description": "Introduction of the foundations of engineering by teaching the mathematical methods that describe the engineering principles. Analytical and numerical approaches to solving the equations. ", + "name": "BENG 221", + "prereqs": [], + "title": "Mathematical Methods for Bioengineering (4)" + }, + "BENG 223": { + "dept": "BENG", + "description": "Thermodynamics, statistical mechanics, and interfacial phenomena that emphasize the chemical natures of living systems. Topics include intermolecular and surface forces, calculation of energetic processes, computation of electrical forces and fields, and principles of physics in multiscale engineering and design. ", + "name": "BENG 223", + "prereqs": [], + "title": "Thermodynamics, Statistical Mechanics, Interfacial Phenomena in Living Systems (4)" + }, + "BENG 225": { + "dept": "BENG", + "description": "Biotech is a special breed of business, especially in start-up and early phases. Whether you are considering joining a biotech start-up or want to be successful in a life-science organization, it pays to understand this unique business model. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies. The format is highly interactive and learning is enhanced by means of exercises, team presentations, and case studies. ", + "name": "BENG 225", + "prereqs": [], + "title": "BioBusiness: Starting, Growing, and Harvesting a Biotech Company (4)" + }, + "BENG 226": { + "dept": "BENG", + "description": "Modern development of biomechanics at an advanced mathematical level. Description of internal stresses and deformation in living tissues and fluids, thermodynamics. Mechanics of soft connective tissue, extracellular matrix, cells, membranes, and cytoskeleton. Mechanotransduction, migration, adhesion. Blood flow in microvessels. Biomechanical analysis of tissue injury. Students that have taken BENG 222 cannot take BENG 226 for credit. Recommended preparation: A previous background in biomechanics is strongly recommended prior to taking this course. ", + "name": "BENG 226", + "prereqs": [], + "title": "Foundations of Bioengineering I: Tissue and Cell Properties (4)" + }, + "BENG 227": { + "dept": "BENG", + "description": "This course describes the movement of heat and chemical mass in biological systems. Diffusion, convection and biochemical reactions in a variety of biological and engineering examples are analyzed and modeled. Students that have taken BENG 222 cannot take BENG 227 for credit. ", + "name": "BENG 227", + "prereqs": [ + "BENG 221" + ], + "title": "Transport Phenomena in Living Systems (4)" + }, + "BENG 230A": { + "dept": "BENG", + "description": "A graduate course in biochemistry especially tailored to the requirements and background of bioengineering graduate students. It will cover the important macro- and small molecules in cells that are the major constituents, or that function as signaling molecules or molecular machineries. The structures, pathways, interactions, methodologies, and molecular designs using recombinant DNA technology will be covered. ", + "name": "BENG 230A", + "prereqs": [], + "title": "Biochemistry (4)" + }, + "BENG 230B": { + "dept": "BENG", + "description": "A general survey of structure-function relationships", + "name": "BENG 230B", + "prereqs": [], + "title": "Cell and Molecular Biology (4)" + }, + "BENG 230C": { + "dept": "BENG", + "description": "Cardiovascular Physiology (4)", + "name": "BENG 230C", + "prereqs": [], + "title": "" + }, + "BENG 230D": { + "dept": "BENG", + "description": "Mechanics of breathing. Gas diffusion. Pulmonary", + "name": "BENG 230D", + "prereqs": [], + "title": "Respiratory and Renal Physiology (4)" + }, + "BENG 232": { + "dept": "BENG", + "description": "An overview of the musculoskeletal system from a bioengineering perspective. Health, injury, disease of bone, cartilage, tendon, ligament, meniscus, synovium, intervertebral disc, skeletal muscle, peripheral nerve. Mechanisms and models underlying current and future therapies. ", + "name": "BENG 232", + "prereqs": [], + "title": "Musculoskeletal Health, Injury, and Disease (4)" + }, + "BENG 233": { + "dept": "BENG", + "description": "Mechanical properties of structures involved in movement (muscles, tendons, bones). Models of neuromuscular adaptation to chronic electrical stimulation, voluntary exercise, surgical overload, spinal cord injury, denervation, limb immobilization, exercise-induced injury and muscle regeneration. Stem cells in muscle function and plasticity. ", + "name": "BENG 233", + "prereqs": [], + "title": "Neuromuscular Physiology and Biomechanics (4)" + }, + "BENG 234": { + "dept": "BENG", + "description": "Introduction to molecular and cellular neurobiology and their integration with systems neurophysiology. Homeostasis will be an organizing theme. The material will be presented both qualitatively and quantitatively, emphasizing the mathematical, physical, and chemical foundations and dynamics that underlie neurophysiological functions. ", + "name": "BENG 234", + "prereqs": [], + "title": "Intro to Neurophysiology: Molecules to Systems (4)" + }, + "BENG 235": { + "dept": "BENG", + "description": "This course will introduce quantitative fluorescence microscopy techniques for imaging, manipulating, and quantifying the spatiotemporal characteristics of molecular events in live cells. A laboratory component will be integrated with students organized into small teams for projects. Recommended preparation: basic optics at the level of ECE 181, introductory molecular and cellular biology at the level of BIMM 100 and BICD 110, respectively. ", + "name": "BENG 235", + "prereqs": [], + "title": "Molecular Imaging and Quantitation in Living Cells (4)" + }, + "BENG 238/MED 238": { + "dept": "BENG", + "description": "An overview of heart, vascular development and associated diseases from a molecular biological perspective. Current approaches for generating mouse models of cardiovascular disease and recently developed technologies for physiological assessment in small animal models will be presented. (W)", + "name": "BENG 238/MED 238", + "prereqs": [], + "title": "Molecular Biology of the Cardiovascular System (4)" + }, + "BENG 241A": { + "dept": "BENG", + "description": "Overview and foundations of tissue engineering and regenerative medicine. Tissue structure, function, and dynamics in health and disease. Cells, microenvironment, extracellular matrix, and biomaterials as components of engineered tissues and organs. Functional goals, design, testing, and evaluation of therapies. ", + "name": "BENG 241A", + "prereqs": [], + "title": "Tissue Engineering and Regenerative Medicine: Foundations (4)" + }, + "BENG 241B": { + "dept": "BENG", + "description": "The role of the cellular microenvironment in directing cell behavior and function in health and disease. Cell adherence and deformation and cell-mediated matrix remodeling. Bioengineering of the microenvironment in tissue engineering and regenerative medicine. ", + "name": "BENG 241B", + "prereqs": [ + "BENG 241A" + ], + "title": "Tissue Engineering and Regenerative Medicine: Cell Microenvironment (4)" + }, + "BENG 241C": { + "dept": "BENG", + "description": "Development, morphogenesis, growth, and remodeling of tissues and organs in health and disease. Integrative metabolism and biomechanics of cells and extracellular matrix at tissue, organ, and organism scales. Bioengineering restoration of tissues and organs. Industry applications and regulations. ", + "name": "BENG 241C", + "prereqs": [ + "BENG 241A" + ], + "title": "Tissue Engineering and Regenerative Medicine: Development and Growth (4)" + }, + "BENG 242/MATS 257/NANO 257": { + "dept": "BENG", + "description": "Quantitative basic understanding of different", + "name": "BENG 242/MATS 257/NANO 257", + "prereqs": [], + "title": "Polymer Science and Engineering (4)" + }, + "BENG 247A/ECE 247A/NANO 247A": { + "dept": "BENG", + "description": "Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. ", + "name": "BENG 247A/ECE 247A/NANO 247A", + "prereqs": [], + "title": "Advanced Biophotonics (4)" + }, + "BENG 247B/ECE 247B/NANO 247B": { + "dept": "BENG", + "description": "Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.). Form heterogeneous materials and components. ", + "name": "BENG 247B/ECE 247B/NANO 247B", + "prereqs": [], + "title": "Bioelectronics (4)" + }, + "BENG 247C/ECE 247C/NANO 247C": { + "dept": "BENG", + "description": "Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices; nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles; nanostructures with biological molecules; nanostructural aspects of fuel cells, biofuel cells; potential use of DNA, other biomolecules. ", + "name": "BENG 247C/ECE 247C/NANO 247C", + "prereqs": [], + "title": "Bionanotechnology (4)" + }, + "BENG 260/BGGN 260/PHYS 279": { + "dept": "BENG", + "description": "Introduction to the nonlinear dynamics of neurons and neural systems using bifurcation theory and chaotic motions, at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells. Laboratory exercises will accompany the lectures. ", + "name": "BENG 260/BGGN 260/PHYS 279", + "prereqs": [], + "title": "Neurodynamics (4)" + }, + "BENG 267": { + "dept": "BENG", + "description": "Structural and functional aspects of transport and blood-tissue exchange in key organs during circulatory shock, bacterial toxemia, hypertension. Physical and ultrastructural techniques used to analyze small-vessel dynamics. ", + "name": "BENG 267", + "prereqs": [], + "title": "Microcirculation in Health and Disease (4)" + }, + "BENG 276/Chem 276/Math 276/Pharm 276": { + "dept": "BENG", + "description": "Multiscale Biology (4)", + "name": "BENG 276/Chem 276/Math 276/Pharm 276", + "prereqs": [], + "title": "Numerical Analysis in" + }, + "BENG 278/RAD 278": { + "dept": "BENG", + "description": "This lab course provides hands-on experience with MR physics, data acquisition, image formation, and data analysis, using a human MRI scanner. It will cover basic principles of MRI and key applications, including scanner hardware, spin echoes, gradient echoes, echo-planar imaging, MR angiography, fMRI, and perfusion imaging. This will be accomplished through one hour of formal instruction and four hours of scanner time per week. Each week will cover one topic, and grading will be based on lab reports. The last two weeks are reserved for a final project, which can be student initiated. ", + "name": "BENG 278/RAD 278", + "prereqs": [ + "BENG 280A" + ], + "title": "Magnetic Resonance Imaging (4)" + }, + "BENG 280A": { + "dept": "BENG", + "description": "Fundamentals of Fourier transform and linear systems theory including convolution, sampling, noise, filtering, image reconstruction and visualization with an emphasis on applications to biomedical imaging. Examples from optical imaging, CT, MR, ultrasound, nuclear, PET, and radiography. ", + "name": "BENG 280A", + "prereqs": [], + "title": "Principles of Biomedical Imaging (4)" + }, + "BENG 280B": { + "dept": "BENG", + "description": "Application of biomedical imaging to the measurement of structure, function, and dynamics of organ systems from the microscopic to the organ level. Emphasis on detailed evaluation and comparison of specific imaging modalities. ", + "name": "BENG 280B", + "prereqs": [], + "title": "Comparative Biomedical Imaging (4)" + }, + "BENG 281": { + "dept": "BENG", + "description": "Weekly seminars by faculty, visitors, postdoctoral", + "name": "BENG 281", + "prereqs": [], + "title": "Seminar in Bioengineering (1)" + }, + "BENG 282": { + "dept": "BENG", + "description": "Weekly seminars by bioengineering faculty presenting their research. May be repeated for credit. Course does not apply toward MS or PhD graduation requirements. (S/U grades only.) (F)", + "name": "BENG 282", + "prereqs": [], + "title": "Seminar: Faculty Research (1)" + }, + "BENG 283/Chem 283/BIOM 283": { + "dept": "BENG", + "description": "A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ", + "name": "BENG 283/Chem 283/BIOM 283", + "prereqs": [], + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + "BENG 285/BNFO 285/ECE 204": { + "dept": "BENG", + "description": "A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BENG 285 and ECE 204 and BNFO 285. ", + "name": "BENG 285/BNFO 285/ECE 204", + "prereqs": [ + "ECE 271A", + "ECE 271B", + "MATH 283" + ], + "title": "Statistical Learning in Bioinformatics (4)" + }, + "BENG 291/191": { + "dept": "BENG", + "description": "(Conjoined with BENG 191.) Instills skills", + "name": "BENG 291/191", + "prereqs": [], + "title": "Senior Seminar I: Professional Issues in Bioengineering (2)" + }, + "BENG 295": { + "dept": "BENG", + "description": "Training (4)", + "name": "BENG 295", + "prereqs": [], + "title": "Bioengineering Design Project and Industrial" + }, + "BENG 296": { + "dept": "BENG", + "description": "", + "name": "BENG 296", + "prereqs": [], + "title": "Independent Study (4)" + }, + "BENG 298": { + "dept": "BENG", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. (S/U grades only.) ", + "name": "BENG 298", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "BENG 298L": { + "dept": "BENG", + "description": "Laboratory research rotation for first-year BENG PhD students. Students will write a final paper. (S/U grades only.) ", + "name": "BENG 298L", + "prereqs": [], + "title": "Laboratory Research Rotation (4)" + }, + "BENG 299": { + "dept": "BENG", + "description": "Independent work by graduate students engaged in research and writing theses. (S/U grades only.) ", + "name": "BENG 299", + "prereqs": [], + "title": "Graduate Research (1\u201312)" + }, + "BENG 500": { + "dept": "BENG", + "description": "Teaching experience in one of the six bioengineering lab courses designated as a part of the BENG PhD Specialization in Multi-Scale Biology. Student is under the direction of the faculty member in charge of the course. (S/U grades only.) ", + "name": "BENG 500", + "prereqs": [], + "title": "Apprentice Teaching for Specialization in Multi-Scale Biology (2, 4)" + }, + "BENG 501": { + "dept": "BENG", + "description": "Teaching experience in an appropriate bioengineering undergraduate course under direction of the faculty member in charge of the course. Lecturing one to two hours per week in either a problem-solving section or regular lecture. (S/U grades only.) ", + "name": "BENG 501", + "prereqs": [], + "title": "Teaching Experience (2, 4)" + }, + "BENG 87": { + "dept": "BENG", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. (F,W,S)", + "name": "BENG 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "BENG 97": { + "dept": "BENG", + "description": "An enrichment program available to a limited number of lower-division undergraduate students, which provides work experience with industry, government offices, and hospitals. The internship is coordinated through UC San Diego\u2019s Academic Internship Program under the supervision of a faculty member and an industrial, government, or hospital employee. ", + "name": "BENG 97", + "prereqs": [], + "title": "Internship/Field Studies (1\u20134)" + }, + "BENG 98": { + "dept": "BENG", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum. (P/NP grades only.) ", + "name": "BENG 98", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "BENG 99": { + "dept": "BENG", + "description": "Independent reading or research by arrangement with a bioengineering faculty member. (P/NP grades only.) ", + "name": "BENG 99", + "prereqs": [], + "title": "Independent Study for Undergraduates (4)" + }, + "BENG 99H": { + "dept": "BENG", + "description": "Independent study or research under direction of a member of the faculty. ", + "name": "BENG 99H", + "prereqs": [], + "title": "Independent Study (1)" + }, + "BENG/BIMM/CSE 181": { + "dept": "BENG/BIMM/CSE", + "description": "(Cross-listed as BIMM 181 and CSE 181.) This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNA sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. ", + "name": "BENG/BIMM/CSE 181", + "prereqs": [ + "BIMM 100", + "CSE 101", + "CSE 100", + "CHEM 114C" + ], + "title": "Molecular Sequence Analysis (4)" + }, + "BENG/BIMM/CSE/Chem 182": { + "dept": "BENG/BIMM/CSE/Chem", + "description": "(Cross-listed as BIMM 182, CSE 182, and Chem 182.) This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object-oriented databases, data modeling, and data description. Survey of current biological database with respect to above; implementation of database focused on a biological topic. ", + "name": "BENG/BIMM/CSE/Chem 182", + "prereqs": [ + "CSE 100" + ], + "title": "Biological Databases (4)" + }, + "BENG/BIMM/CSE/Chem 184": { + "dept": "BENG/BIMM/CSE/Chem", + "description": "(Cross-listed as BIMM 184, CSE 184, and Chem 184.) This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, hidden Markov models/support vector machines/neural network/profiles, protein structure prediction, functional characterization of proteins, functional genomics/proteomics, metabolic pathways/gene networks. ", + "name": "BENG/BIMM/CSE/Chem 184", + "prereqs": [ + "CHEM 182", + "BIMM 181", + "BIMM 182", + "BENG 182", + "BENG 181", + "CSE 181", + "CSE 182" + ], + "title": "Computational Molecular Biology (4)" + }, + "BGGN 200": { + "dept": "BGGN", + "description": "in the Division of Biological Sciences (2)", + "name": "BGGN 200", + "prereqs": [], + "title": "Graduate School Fundamentals: Introduction to Graduate Studies" + }, + "BGGN 201": { + "dept": "BGGN", + "description": "Introduction to the computational methods most frequently used in neuroscience research. Aimed at first-year graduate students in neuroscience and related disciplines. Minimal quantitative background will be assumed. Topics include Poisson processes, Markov Chains, auto- and cross-correlation analysis, Fourier/Spectral analysis, principal components/linear algebra, signal detection theory, information theory, Bayes Theorem, hypothesis testing. Nongraduate students may enroll with consent of instructor.", + "name": "BGGN 201", + "prereqs": [], + "title": "Methods in Computational Neuroscience (3)" + }, + "BGGN 202": { + "dept": "BGGN", + "description": "Discussions cover professional preparation for future scientists. Topics include: how to read/write/publish papers, to write grant and fellowship proposals, to give oral presentations, and how to apply for research positions. Behind-the-scenes look at reviewing papers, grant and fellowship proposals. Discussions of career options in biological sciences will be included. Scientific content is in the area of eukaryotic gene expression, but knowledge is applicable to all areas of biology. Undergraduate students with senior standing may enroll with consent of instructor.", + "name": "BGGN 202", + "prereqs": [], + "title": "Professional Development for Biologists (2)" + }, + "BGGN 203": { + "dept": "BGGN", + "description": "The course teaches different topics on theory and key concepts in ecology, behavior, and evolution. Students will read materials in depth, attend weekly discussions, and explore relevant topics, theories, and models with advanced analytical tools. S/U grades only. May be taken for credit three times when topics vary.", + "name": "BGGN 203", + "prereqs": [], + "title": "Topics in Ecology, Behavior, and Evolution (3)" + }, + "BGGN 204": { + "dept": "BGGN", + "description": "This course teaches a different topic each", + "name": "BGGN 204", + "prereqs": [], + "title": "Topics in Community and Population Ecology (3)" + }, + "BGGN 205": { + "dept": "BGGN", + "description": "Learn effective ways of communicating science to nonscientists. Develop an understanding of how people\u2019s views of science and background knowledge can influence their learning and develop methods to tailor communication for different audiences. S/U grades only. ", + "name": "BGGN 205", + "prereqs": [], + "title": "Communicating Science to the Public (2)" + }, + "BGGN 207": { + "dept": "BGGN", + "description": "(Cross-listed with SOMI 226.) Lectures, reading, and discussions about the responsible conduct and reporting of research, working with others in science, and social responsibilities; the course is designed as an option for meeting current federal regulations. S/U grades only. ", + "name": "BGGN 207", + "prereqs": [], + "title": "Scientific Ethics (1)" + }, + "BGGN 208": { + "dept": "BGGN", + "description": "Intensive lecture-, seminar-, and laboratory-based course", + "name": "BGGN 208", + "prereqs": [], + "title": "Biological Sciences Graduate Boot Camp (4)" + }, + "BGGN 210": { + "dept": "BGGN", + "description": "For incoming doctoral students in neurobiology, computational neurobiology, and neurosciences. During first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ", + "name": "BGGN 210", + "prereqs": [], + "title": "Neurobiology Boot Camp (4)" + }, + "BGGN 211": { + "dept": "BGGN", + "description": "Introduces students to advanced concepts of modern biology (e.g. molecular and cell biology, biochemistry, genomics, and epigenomics, etc.). Current experimental approaches (including high-throughput sequencing, microarray technology, RNAi, proteomic technologies, ChIP-seq) are discussed using primary research papers. The course provides training in critical analysis of scientific papers, data interpretation, scientific writing, and experimental design. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.", + "name": "BGGN 211", + "prereqs": [], + "title": "Recent Advances and Experimental Approaches in Modern Biology (4)" + }, + "BGGN 212": { + "dept": "BGGN", + "description": "The goal of the course is to provide an introduction to modern evolutionary biology using quantitative approaches. The course will focus on mathematical modeling, experimental, and genomic approaches to study evolution.", + "name": "BGGN 212", + "prereqs": [], + "title": "Introduction to Quantitative Evolutionary Biology (4)" + }, + "BGGN 213": { + "dept": "BGGN", + "description": "This course provides a hands-on introduction to the computer-based analysis of genomic and biomolecular data. Major topics include sequencing technologies, genome informatics, structural bioinformatics, and transcriptomics. Students completing this course will be able to evaluate new genomic and biomolecular information using existing software and will have experience in combining bioinformatic approaches to answer biological questions. Enrollment restricted to the following major codes: BI77, BI78, and BS75. Course limited to PhD level students.", + "name": "BGGN 213", + "prereqs": [], + "title": "Foundations of Bioinformatics (4)" + }, + "BGGN 214": { + "dept": "BGGN", + "description": "The course goal is to discuss and work through examples where quantitative biology approaches were necessary to yield novel biological insights. Problems will be presented with a historic perspective to instill a philosophy for when, how, and why q-bio approaches are most effective. The course may also appeal to physics and engineering graduate students. ", + "name": "BGGN 214", + "prereqs": [], + "title": "Introduction to Q-Biology (4)" + }, + "BGGN 216": { + "dept": "BGGN", + "description": "Fundamentals behind and practical application of biostatistics, including central tendency and variability, hypothesis testing, inferential techniques (parametric and nonparametric), correlation and regression. Practice examples taken from the laboratory bench and primary literature. Training in the use of biostatistical software. ", + "name": "BGGN 216", + "prereqs": [], + "title": "Graduate Biostatistics (4)" + }, + "BGGN 220": { + "dept": "BGGN", + "description": "Provides a broad, advanced-level coverage of modern molecular biology for first-year graduate students. Topics include prokaryotic and eukaryotic gene structure and regulation, chromatin structure, DNA replication, translation, mechanisms of transcription, and an introduction to viruses. Open only to students enrolled in a graduate degree program. Letter grades only.", + "name": "BGGN 220", + "prereqs": [], + "title": "Graduate Molecular Biology (6)" + }, + "BGGN 220D": { + "dept": "BGGN", + "description": "The course covers chromatin structure and dynamics as well as the regulation of transcription initiation by RNA polymerase II. The format includes lectures and discussion of selected papers. Enrollment restricted to the following major codes: BI77 and BI78.", + "name": "BGGN 220D", + "prereqs": [], + "title": "Chromatin Structure and Transcriptional Regulation (2)" + }, + "BGGN 220E": { + "dept": "BGGN", + "description": "The course covers mechanisms of gene regulation at the post-transcriptional level, including RNA processing, translation, and mRNA turnover. The format includes lectures and discussion of selected papers. Enrollment restricted to the following major codes: BI77 and BI78.", + "name": "BGGN 220E", + "prereqs": [], + "title": "Post-Transcriptional Gene Regulation (2)" + }, + "BGGN 220F": { + "dept": "BGGN", + "description": "The course will cover post-translational control mechanisms governing cellular activity. The course will traverse molecular and systems-level approaches aimed at understanding the governing principles of post-translation regulation and the consequences of improper regulation. The format includes lectures and discussion of selected papers. Enrollment restricted to the following major codes: BI77 and BI78.", + "name": "BGGN 220F", + "prereqs": [], + "title": "Shaping Cellular Function through Post-Translational Regulation (2)" + }, + "BGGN 222": { + "dept": "BGGN", + "description": "Coverage of modern cell biology. Topics may include structure and function of membranes; ion pumps, ion channels, transmembrane signaling; receptor-mediated endocytosis; protein targeting; the role of RER and Golgi apparatus; the biosynthesis of intracellular organelles in animal and plant cells; the cytoskeleton, motility, molecular motors, and cell-cell interactions; mitosis and the control of cell division; and cell-signaling mechanisms and discussions on molecular approaches to cell biology. ", + "name": "BGGN 222", + "prereqs": [ + "BGGN 220F", + "BGGN 220E", + "BGGN 220D" + ], + "title": "Graduate Cell Biology (6)" + }, + "BGGN 223": { + "dept": "BGGN", + "description": "Advanced-level coverage of molecular and formal aspects of genetics. Topics include bacterial genetics, recombination in prokaryotes and eukaryotes, mammalian somatic-cell genetics, developmental genetics, sex determination, dosage compensation, and immunogenetics. Extensive coverage of the use of model systems like Drosophila and C. elegans is included. General and specific aspects of cellular signaling mechanisms will be covered. ", + "name": "BGGN 223", + "prereqs": [ + "BGGN 222", + "BGGN 220F", + "BGGN 220E", + "BGGN 220D" + ], + "title": "Graduate Genetics (6)" + }, + "BGGN 225": { + "dept": "BGGN", + "description": "The course is devoted to immunology and is organized as a combined lecture-tutorial course stressing classical as well as current literature. Each week will compose an independent section. Topics will include cellular interactions involved in the immune response and the molecular biology unique to lymphoid factor and receptors. ", + "name": "BGGN 225", + "prereqs": [], + "title": "Graduate Immunology (4)" + }, + "BGGN 226": { + "dept": "BGGN", + "description": "This course consists of a review of fundamental concepts together with an in-depth analysis of the structure, genetics, multiplication and oncogenicity of animal viruses. Particular emphasis will be given to the DNA and RNA tumor viruses. The format of this section includes lectures and discussion of selected papers. ", + "name": "BGGN 226", + "prereqs": [], + "title": "Graduate Animal Virology (4)" + }, + "BGGN 227": { + "dept": "BGGN", + "description": "This course covers advanced topics in plant biology in the areas of molecular genetic developmental, and physiological biology. We will discuss plant-microbe interactions, transposable elements, protein trafficking, ion transport, and organ development. The format of this section includes lectures and discussion of selected papers. ", + "name": "BGGN 227", + "prereqs": [], + "title": "Graduate Topics in Plant Biology (4)" + }, + "BGGN 228": { + "dept": "BGGN", + "description": "This course covers graduate level lectures on developmental biology, emphasizing the use of genetically tractable model systems. Discussion of recent research articles is an integral aspect of this course. Students are introduced to classical experiments and given detailed coverage of recent fundamental findings in developmental biology. ", + "name": "BGGN 228", + "prereqs": [], + "title": "Graduate Developmental Biology (4)" + }, + "BGGN 230": { + "dept": "BGGN", + "description": "The course will introduce students to a variety of signal transduction pathways and their function in the regulation of cellular processes. Special emphasis will be given to signaling cascades regulating immunological responses and alterations of signaling pathways during oncogenesis. Open only to students enrolled in a graduate degree program. Letter grades only.", + "name": "BGGN 230", + "prereqs": [], + "title": "Graduate Signal Transduction (4)" + }, + "BGGN 231": { + "dept": "BGGN", + "description": "Research papers from all aspects of stem cell biology will be read, presented, and discussed. Papers will range from landmark to current studies, spanning many developmental organisms and cell types. Students will present one paper, provide relevant background, and lead discussions. ", + "name": "BGGN 231", + "prereqs": [], + "title": "Current Concepts in Stem Cell Biology (4)" + }, + "BGGN 234": { + "dept": "BGGN", + "description": "(Cross-listed with PATH 234, MED 234, BIOM 238.) This course is designed to train those who need to analyze mouse models of human disease that are an essential part of their research. Sessions will include hematology, chemistry, histology, and immunohistochemistry methods used in the phenotyping assays. (Quarter offered varies and course is not offered every year.) ", + "name": "BGGN 234", + "prereqs": [], + "title": "Practical Histopathology and Mouse Models of Human Disease (2)" + }, + "BGGN 236": { + "dept": "BGGN", + "description": "(Cross-listed with BIOM 222, CMM 225, MED 225, Chem 237.) Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.", + "name": "BGGN 236", + "prereqs": [], + "title": "Advanced Glycobiology (4)" + }, + "BGGN 237": { + "dept": "BGGN", + "description": "(Cross-listed with BIOM 262, CMM 262.) This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages.\u00a0", + "name": "BGGN 237", + "prereqs": [ + "BIOM 252", + "BGGN 223", + "BIOM 272" + ], + "title": "Quantitative Methods in Genetics (4)" + }, + "BGGN 238A": { + "dept": "BGGN", + "description": "To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. First course in series. ", + "name": "BGGN 238A", + "prereqs": [], + "title": "Integrative Microbiology I (4)" + }, + "BGGN 238B": { + "dept": "BGGN", + "description": "To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. Second course in series. ", + "name": "BGGN 238B", + "prereqs": [], + "title": "Integrative Microbiology II (4)" + }, + "BGGN 245": { + "dept": "BGGN", + "description": "Lectures on basic and advanced concepts in cancer biology, will include defining outstanding contemporary questions and cutting-edge basic and translational research. Will rely on participants reading assigned literature prior to lectures. For doctoral or master\u2019s students. Course will be held at the Salk Institute. S/U grades only. ", + "name": "BGGN 245", + "prereqs": [], + "title": "Advanced Topics in Cancer Research and Therapy (2)" + }, + "BGGN 246A": { + "dept": "BGGN", + "description": "Students read classic and modern papers that form the basis of the undergraduate lectures (BIPN 146), which they are encouraged to attend. Students present these papers at weekly discussion sessions. The focus of 246A is cellular neuronal properties. S/U grades only. ", + "name": "BGGN 246A", + "prereqs": [], + "title": "Computational Neurobiology (2)" + }, + "BGGN 248": { + "dept": "BGGN", + "description": "This course will cover the cellular", + "name": "BGGN 248", + "prereqs": [], + "title": "Molecular Mechanisms of Neural Development (4)" + }, + "BGGN 260": { + "dept": "BGGN", + "description": "Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, and PHYS 279. ", + "name": "BGGN 260", + "prereqs": [], + "title": "Neurodynamics (4)" + }, + "BGGN 262": { + "dept": "BGGN", + "description": "(Cross-listed with Chem 265.) The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells. The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed.\u00a0Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BIMM 162/Chem 165. Students may not receive credit for BGGN 262 and Chem 265.", + "name": "BGGN 262", + "prereqs": [], + "title": "3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)" + }, + "BGGN 264": { + "dept": "BGGN", + "description": "(Cross-listed with Chem 264.) An introduction of virus structures, how they are determined, and how they facilitate the various stages of the viral life cycle from host recognition and entry to replication, assembly, release, and transmission to uninfected host cells. Students will be required to complete a term paper. (May not be offered every year.) Recommended preparation: elementary biochemistry as treated in Chem 114A or BIBC 100 and a basic course in cell biology or consent of the instructor.", + "name": "BGGN 264", + "prereqs": [], + "title": "Structural Biology of Viruses (4)" + }, + "BGGN 266": { + "dept": "BGGN", + "description": "Experiments that emphasize biophysical principles through hands-on experience, with an emphasis on the blending of physical measurements with a clearly identified biological problem. Exercises include the use of optical tweezers to measure viscous forces at the level of cellular organelles, the characterization of sensorimotor control in the fly during visually guided flight, and the use of microscopic imaging techniques to characterize cell motility and organelle transport. Includes instruction in LabView. Students are encouraged to attend the Phys 173 undergraduate lectures. ", + "name": "BGGN 266", + "prereqs": [ + "BILD 1", + "PHYS 120A", + "CHEM 6CL" + ], + "title": "Advanced Laboratory in Biophysical Techniques (6)" + }, + "BGGN 271": { + "dept": "BGGN", + "description": "(4\u201312)", + "name": "BGGN 271", + "prereqs": [], + "title": "Advanced Experimental Methods in Biology" + }, + "BGGN 290": { + "dept": "BGGN", + "description": "Students present and discuss papers on", + "name": "BGGN 290", + "prereqs": [], + "title": "Advances in Cellular and Molecular Mechanisms (1)" + }, + "BGGN 292": { + "dept": "BGGN", + "description": "Students meet experienced science professionals from a wide variety", + "name": "BGGN 292", + "prereqs": [], + "title": "Professional Pathways in Biological Sciences (1)" + }, + "BGGN 293": { + "dept": "BGGN", + "description": "This course offers training in writing about students\u2019 own research; presenting the background to their thesis, preparing a figure, analyzing, and discussing data in a written form. Using published literature on scientific writing, students will practice revising their own writing and providing constructive feedback to their peers. Letter grades only.\u00a0Enrollment restricted to MS students only in the following major code: BI84.", + "name": "BGGN 293", + "prereqs": [], + "title": "Scientific Writing in Biology (2)" + }, + "BGGN 295": { + "dept": "BGGN", + "description": "Students learn effective ways of presenting their research to biologists and to the general public. Examples of posters and research talks will be analyzed and discussed. Students will practice short and extended oral presentations of their research. As a final project, students will prepare and present a poster of their research in the biological sciences Student Research Showcase. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.", + "name": "BGGN 295", + "prereqs": [], + "title": "Scientific Presentation in Biology (2)" + }, + "BGGN 297": { + "dept": "BGGN", + "description": "Group and individual discussion of research activities and of current literature. S/U grades only. ", + "name": "BGGN 297", + "prereqs": [], + "title": "Research Conference (1\u20133)" + }, + "BGGN 298": { + "dept": "BGGN", + "description": "An introduction to contemporary laboratory techniques and research interests through independent, original projects under the direction of individual faculty members. S/U grades only. ", + "name": "BGGN 298", + "prereqs": [], + "title": "Laboratory Projects in Biology (3\u201312)" + }, + "BGGN 299": { + "dept": "BGGN", + "description": "Directed research on dissertation topic. S/U grades only. ", + "name": "BGGN 299", + "prereqs": [], + "title": "Thesis Research in Biology (1\u201312)" + }, + "BGGN 500": { + "dept": "BGGN", + "description": "Through interactive discussions, students will explore topics such as how people learn, evidence-based teaching practices, professional ethics, and equity and inclusion in the classroom. Students will also participate in apprentice teaching under mentorship of faculty. S/U grades only. ", + "name": "BGGN 500", + "prereqs": [], + "title": "Introduction to College Biology Education (4)" + }, + "BGGN 502": { + "dept": "BGGN", + "description": "Students will explore selected areas of research on the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. Students will apply their understanding of this research through apprentice teaching under mentorship of faculty. Course restricted to Division of Biological Sciences doctoral students as part of the practical training in college teaching. S/U grades only. ", + "name": "BGGN 502", + "prereqs": [], + "title": "Evidence-Based Teaching and Learning in Biological Sciences (1)" + }, + "BGGN 504": { + "dept": "BGGN", + "description": "Through analysis of issues related to student learning, teaching practices, and equity and inclusion in the classroom, students will develop philosophies and scholarship of teaching as they advance in apprentice teaching under mentorship of faculty. S/U grades only. ", + "name": "BGGN 504", + "prereqs": [], + "title": "Scholarship of Teaching and Learning in Biological Sciences (1)" + }, + "BGJC 207": { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGJC 207", + "prereqs": [], + "title": "Journal Club in Neurobiology (1)" + }, + "BGJC 208": { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGJC 208", + "prereqs": [ + "BISP 199" + ], + "title": "Journal Club in Plant Molecular Biology (1)" + }, + "BGJC 213": { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGJC 213", + "prereqs": [ + "BISP 199" + ], + "title": "Journal Club in Computational Neurobiology (1)" + }, + "BGRD 205": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 205", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Plant Membrane Biology (1)" + }, + "BGRD 207": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 207", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Neuronal Pattern Generation (1)" + }, + "BGRD 210": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 210", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Virology (1)" + }, + "BGRD 211": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 211", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Developmental Cellular Neurobiology (1)" + }, + "BGRD 212": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 212", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Behavior and Development of Simple Nervous Systems (1)" + }, + "BGRD 213": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 213", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Golgi Structure and Function (1)" + }, + "BGRD 216": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 216", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Molecular and Cell Biology (1)" + }, + "BGRD 218": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 218", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Plant Molecular Genetics (1)" + }, + "BGRD 221": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 221", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Behavioral Ecology (1)" + }, + "BGRD 222": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 222", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Evolutionary Molecular Ecology (1)" + }, + "BGRD 230": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 230", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Cell Signaling Pathways (1)" + }, + "BGRD 231": { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 231", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Nuclear Transport and Function (1)" + }, + "BGRD 234": { + "dept": "BGRD", + "description": "Presentation of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGRD 234", + "prereqs": [ + "BISP 199" + ], + "title": "Research Discussion in Cell Signaling in Drosophila (3)" + }, + "BGSE 200": { + "dept": "BGSE", + "description": "Invited speakers from the United States and abroad, who are leaders in various aspects of biological research, describe their current research. S/U grades only. May be taken for credit sixteen times. ", + "name": "BGSE 200", + "prereqs": [ + "BISP 199" + ], + "title": "Seminar in Biology (1)" + }, + "BGSE 205": { + "dept": "BGSE", + "description": "Discussions of recent research in various aspects of biological research conducted by third- and fourth-year doctoral students in the Division of Biological Sciences. S/U grades only.", + "name": "BGSE 205", + "prereqs": [], + "title": "Graduate Research Seminar (1)" + }, + "BIBC 100": { + "dept": "BIBC", + "description": "The structure and function of biomolecules. Includes protein conformation, dynamics, and function; enzymatic catalysis, enzyme kinetics, and allosteric regulation; lipids and membranes; sugars and polysaccharides; and nucleic acids. ", + "name": "BIBC 100", + "prereqs": [ + "CHEM 40B", + "CHEM 40A", + "CHEM 140B", + "CHEM 140A", + "BIBC 100", + "BENG 120", + "CHEM 114A" + ], + "title": "Structural Biochemistry (4)" + }, + "BIBC 102": { + "dept": "BIBC", + "description": "Energy-producing pathways\u2013glycolysis, the TCA cycle, oxidative phosphorylation, photosynthesis, and fatty acid oxidation; and biosynthetic pathways\u2013gluconeogenesis, glycogen synthesis, and fatty acid biosynthesis. Nitrogen metabolism, urea cycle, amino acid metabolism, nucleotide metabolism, and metabolism of macromolecules. ", + "name": "BIBC 102", + "prereqs": [ + "CHEM 40B", + "CHEM 40A", + "BIBC 102", + "CHEM 140A", + "CHEM 140B", + "BENG 120", + "CHEM 114B" + ], + "title": "Metabolic Biochemistry (4)" + }, + "BIBC 103": { + "dept": "BIBC", + "description": "Introductory laboratory course in current principles and techniques applicable", + "name": "BIBC 103", + "prereqs": [], + "title": "Biochemical Techniques (4)" + }, + "BIBC 120": { + "dept": "BIBC", + "description": "Elaborates the relationship between diet and human metabolism, physiology, health, and disease. Covers the functions of carbohydrates, lipids, proteins, vitamins, and minerals, and discusses dietary influences on cardiovascular disease, diabetes, obesity, and cancer. ", + "name": "BIBC 120", + "prereqs": [ + "BIBC 102" + ], + "title": "Nutrition (4)" + }, + "BIBC 140": { + "dept": "BIBC", + "description": "Course will provide an overview of energy production and utilization and the consequences of this on the economy and environment. The course will introduce renewable energy technologies including biofuels, and explores the social, economic, and political aspects of energy use. ", + "name": "BIBC 140", + "prereqs": [ + "BILD 1" + ], + "title": "Our Energy Future\u2014Sustainable Energy Solutions (4)" + }, + "BIBC 151": { + "dept": "BIBC", + "description": "Nearly all interactions between organisms, including host-pathogen interactions and mate attraction, have a chemical basis. Plants and microorganisms are the dominant life forms on earth and remain a major source of pharmaceutical leads. Students in this course will utilize biochemical methods to extract, fractionate, and analyze plant and microbial compounds of medicinal and ecological significance including antibiotics, growth regulators, toxins, and signaling molecules. Students use own laptops. Course requires field studies. Transportation not provided by the university. Students must comply with all risk management policies and procedures. Course materials fees will be applied. ", + "name": "BIBC 151", + "prereqs": [ + "BIBC 102", + "BIBC 100" + ], + "title": "Chemistry of Biological Interactions (4)" + }, + "BIBC 194": { + "dept": "BIBC", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "name": "BIBC 194", + "prereqs": [], + "title": "Advanced Topics in Modern Biology: Biochemistry (2)" + }, + "BICD 100": { + "dept": "BICD", + "description": "An introduction to the principles of heredity emphasizing diploid organisms. Topics include Mendelian inheritance and deviations from classical Mendelian ratios, pedigree analysis, gene interactions, gene mutation, linkage and gene mapping, reverse genetics, population genetics, and quantitative genetics. ", + "name": "BICD 100", + "prereqs": [ + "BILD 1" + ], + "title": "Genetics (4)" + }, + "BICD 101": { + "dept": "BICD", + "description": "Course implements key concepts in genetics and genomics such as performing and interpreting results of genetic crosses, analyzing mutations and their phenotypic consequences, analyzing the genetic basis of quantitative traits, and analyzing genome sequences in relation to phenotypic variation. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 100. ", + "name": "BICD 101", + "prereqs": [ + "BILD 1" + ], + "title": "Eucaryotic Genetics Laboratory (4)" + }, + "BICD 110": { + "dept": "BICD", + "description": "The structure and function of cells and cell organelles, cell growth and division, motility, cell differentiation and specialization. ", + "name": "BICD 110", + "prereqs": [ + "BIBC 102", + "BIBC 100" + ], + "title": "Cell Biology (4)" + }, + "BICD 112": { + "dept": "BICD", + "description": "Stem cells maintain homeostasis of nearly all organ systems and the regenerative capacity of certain organisms. Course explores the paradigm of the tissue-specific stem cell, the cellular mechanisms of tissue regeneration, the evolution of stem cells and regenerative capacity over time, the basis of induced pluripotency, and how these basic processes can inform new approaches to human health. ", + "name": "BICD 112", + "prereqs": [ + "BIMM 100" + ], + "title": "Stem Cells and Regeneration (4)" + }, + "BICD 120": { + "dept": "BICD", + "description": "Introduction to the biology of plants with a particular focus on the underlying genetic and molecular mechanisms controlling plant development. Topics include the role of plant hormones and stem cells in the formation of embryos, roots, flowers, and fruit. ", + "name": "BICD 120", + "prereqs": [ + "BILD 1" + ], + "title": "Molecular Basis of Plant Development (4)" + }, + "BICD 123": { + "dept": "BICD", + "description": "Techniques in plant cell and tissue culture, plant transformation, genetic selection and screening of mutants, host pathogen interactions, gene regulation, organelle isolation, membrane transport. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 120. Material lab fees will apply. ", + "name": "BICD 123", + "prereqs": [], + "title": "Plant Molecular Genetics and Biotechnology Laboratory (4)" + }, + "BICD 124": { + "dept": "BICD", + "description": "Plant immunity protects against pathogens and enables symbioses. This course explores the agents of plant disease, the genetics of inherited immunity, mechanisms of pathogenesis and defense, the coordination of plant immunity by plant hormones, and the regulation of symbioses. ", + "name": "BICD 124", + "prereqs": [ + "BICD 100" + ], + "title": "Plant Innate Immunity (4)" + }, + "BICD 130": { + "dept": "BICD", + "description": "Developmental biology of animals at the tissue,", + "name": "BICD 130", + "prereqs": [], + "title": "Embryos, Genes, and Development (4)" + }, + "BICD 136": { + "dept": "BICD", + "description": "An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection, HIV testing, education and approaches to therapy, and the social, political, and legal impacts of AIDS on the individual and society. In order to count for their major, biology majors must take the upper-division course, BICD 136. ", + "name": "BICD 136", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "AIDS Science and Society (4)" + }, + "BICD 140": { + "dept": "BICD", + "description": "Formation and function of the mammalian immune system, molecular and cellular basis of the immune response, infectious diseases and autoimmunity. ", + "name": "BICD 140", + "prereqs": [ + "BIBC 100", + "BIMM 100", + "BICD 100" + ], + "title": "Immunology (4)" + }, + "BICD 145": { + "dept": "BICD", + "description": "This course focuses upon a molecular and immunological approach to study problems in modern medical research. The emphasis will be on novel approaches in medicine, including lymphocyte biology, cancer biology, and gene transfer. Material lab fees will apply. ", + "name": "BICD 145", + "prereqs": [ + "BIMM 100" + ], + "title": "Laboratory in Molecular Medicine (4)" + }, + "BICD 194": { + "dept": "BICD", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "name": "BICD 194", + "prereqs": [], + "title": "Advanced Topics in Modern Biology: Cellular Development (2)" + }, + "BIEB 100": { + "dept": "BIEB", + "description": "An interactive introduction to estimation, hypothesis testing, and statistical reasoning. Emphasis on the conceptual and logical basis of statistical ideas. Focus on randomization rather than parametric techniques. Topics include describing data, sampling, bootstrapping, and significance. Mandatory one-hour weekly section. Students may not receive credit for both BIEB 100 and SIO 187. ", + "name": "BIEB 100", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "MATH 10B", + "BILD 3", + "SIO 187", + "BIEB 100", + "MATH 10A" + ], + "title": "Biostatistics (4)" + }, + "BIEB 102": { + "dept": "BIEB", + "description": "This course emphasizes principles shaping organisms, habitats, and ecosystems. Topics covered include population regulation, physiological ecology, competition, predation, and human exploitation. This will be an empirical look at general principles in ecology and conservation with emphasis on the unique organisms and habitats of California. ", + "name": "BIEB 102", + "prereqs": [ + "BILD 3" + ], + "title": "Introductory Ecology-Organisms and Habitat (4)" + }, + "BIEB 121": { + "dept": "BIEB", + "description": "A laboratory course to familiarize students with ecological problem solving and methods. Students will perform outdoor fieldwork and use a computer for data exploration and analysis. Fieldwork can be expected in this course. Associated travel may be required, and students are responsible for their own transportation. Students may need to provide and use their own laptop. Material lab fees will apply. ", + "name": "BIEB 121", + "prereqs": [ + "BIEB 102", + "BIEB 100", + "MATH 11" + ], + "title": "Ecology Laboratory (4)" + }, + "BIEB 123": { + "dept": "BIEB", + "description": "Theory and practice of molecular biology techniques used in evolutionary and ecological research. Includes isolation and genotyping of DNA, PCR, and its applications. Phylogenetics, biodiversity, bioinformatics, and evolutionary and ecological analysis of molecular data. Material lab fees will apply. Students may not enroll in and receive credit for both BIMM 101 and BIEB 123. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. ", + "name": "BIEB 123", + "prereqs": [ + "BILD 1", + "BILD 3" + ], + "title": "Molecular Methods in Evolution and Ecology Lab (4)" + }, + "BIEB 126": { + "dept": "BIEB", + "description": "This course begins with an introduction to plant population biology including whole-plant growth and physiology. We then focus on three classes of ecological interactions: plant-plant competition, plant-herbivore coevolution, and plant reproductive ecology including animal pollination and seed dispersal. ", + "name": "BIEB 126", + "prereqs": [ + "BILD 3" + ], + "title": "Plant Ecology (4)" + }, + "BIEB 128": { + "dept": "BIEB", + "description": "Course begins with a survey of insect diversity and phylogenetic relationships. Course then addresses issues such as population dynamics (including outbreaks), movement and migration, competition, predation, herbivory, parasitism, insect defense, mimicry complexes, and sociality. Course also includes discussions of pest management, evolution of insecticide resistance, insect-borne diseases, and how insects are responding to global change. ", + "name": "BIEB 128", + "prereqs": [ + "BILD 3" + ], + "title": "Insect Diversity (4)" + }, + "BIEB 130": { + "dept": "BIEB", + "description": "Course integrates principles of ecology and marine biology to examine marine biodiversity loss resulting from overexploitation, habitat loss, invasion, climate change, and pollution. Course examines consequences of biodiversity loss to marine ecosystems and discusses the efficacy of various management regimes. Conservation problems facing the world\u2019s oceans with an emphasis on issues important for coastal California will be discussed. ", + "name": "BIEB 130", + "prereqs": [ + "BILD 3" + ], + "title": "Marine Conservation Biology (4)" + }, + "BIEB 131": { + "dept": "BIEB", + "description": "A laboratory course introducing students to coastal marine ecology. Students will participate in outdoor fieldwork and work in the laboratory gathering and analyzing ecological data. We will focus on ecological communities from a variety of coastal habitats and use them to learn about basic ecological processes as well as issues related to sustainability and conservation of biodiversity. Fieldwork is expected in this course. Associated travel in the San Diego area is required and students are responsible for their own transportation. Material lab fees will apply. ", + "name": "BIEB 131", + "prereqs": [ + "BILD 3", + "BIEB 100", + "MATH 11" + ], + "title": "Marine Invertebrate Ecology Lab (4)" + }, + "BIEB 135": { + "dept": "BIEB", + "description": "Course provides overview of physical, chemical, and biological processes that characterize inland waters (lakes and rivers), estuaries, and near-shore environments. Dominant biota of lakes, rivers, and streams, and how they are related to physical and chemical processes of the systems in which they reside will be covered. Methods will be introduced for assessing the chemical composition of water and detecting organisms that affect drinking water quality and coastal water quality management. Course requires field studies. Students should expect to fully participate in field trips; transportation not provided by the university. Students must comply with all risk management policies/procedures. Material lab fees will apply. ", + "name": "BIEB 135", + "prereqs": [ + "BILD 3" + ], + "title": "Aquatic Ecology Lab (4)" + }, + "BIEB 140": { + "dept": "BIEB", + "description": "An introduction to the patterns of geographic distribution and natural history of plants and animals living in terrestrial and marine ecosystems. We will explore: ecological and evolutionary processes responsible for generating and maintaining biological diversity; and the nature of extinction both in past and present ecosystem. ", + "name": "BIEB 140", + "prereqs": [ + "BILD 3" + ], + "title": "Biodiversity (4)" + }, + "BIEB 143": { + "dept": "BIEB", + "description": "An introduction to computer modeling in evolution and ecology. Students will use the computer language \u201cR\u201d to write code to analyze ecological and evolutionary processes. Topics include natural selection, genetic drift, community ecology, game theory, and chaos. Students will use their own laptop computers. ", + "name": "BIEB 143", + "prereqs": [ + "BIEB 100", + "BIEB 150" + ], + "title": "Computer Modeling in Evolution and Ecology (4)" + }, + "BIEB 146": { + "dept": "BIEB", + "description": "Modern sequencing technology has revolutionized our ability to detect how genomes vary in space among individuals, populations, and communities, and over time. This course will review methods and concepts in ecological and evolutionary genomics that help us understand these differences, including their relevance to health (human microbiome, cancer evolution), evolutionary history (ancestor reconstruction, human evolution), and the environment (effect of climate change). ", + "name": "BIEB 146", + "prereqs": [ + "BILD 1", + "BILD 3" + ], + "title": "Genome Diversity and Dynamics (4)" + }, + "BIEB 150": { + "dept": "BIEB", + "description": "Evolutionary processes are discussed in their genetic, historical, and", + "name": "BIEB 150", + "prereqs": [], + "title": "Evolution (4)" + }, + "BIEB 152": { + "dept": "BIEB", + "description": "Treating infectious diseases is a uniquely difficult problem since pathogens often evolve, rendering today\u2019s therapies useless tomorrow. This course will provide a review of concepts and methods in evolutionary medicine, with an emphasis on microbial genomics and molecular evolution. ", + "name": "BIEB 152", + "prereqs": [ + "BILD 3" + ], + "title": "Evolution of Infectious Diseases (4)" + }, + "BIEB 154": { + "dept": "BIEB", + "description": "Students will investigate selected in-depth topics in evolutionary biology through reading and writing. Students will read books and articles written for a general audience as well as primary literature. Example topics include the origins of novel features, the impact of human activity and environmental changes on evolutionary processes, the rate and intensity of natural selection, and how our own evolutionary history affects human health. ", + "name": "BIEB 154", + "prereqs": [ + "BILD 1", + "BILD 3" + ], + "title": "Evolutionary Inquiry (4)" + }, + "BIEB 156": { + "dept": "BIEB", + "description": "The goal of the course is to learn about the population-level processes that govern evolution. Mathematical foundations of population genetics are laid out and applications are discussed. Topics include: evolution of drug resistance, origin of species, evolution of engineered organisms. ", + "name": "BIEB 156", + "prereqs": [ + "MATH 11", + "BIEB 100", + "MATH 186", + "BICD 100" + ], + "title": "Population Genetics (4)" + }, + "BIEB 166": { + "dept": "BIEB", + "description": "An integrated approach to animal behavior", + "name": "BIEB 166", + "prereqs": [], + "title": "Animal Behavior and Communication (4)" + }, + "BIEB 167": { + "dept": "BIEB", + "description": "Laboratory exercises will introduce students to quantitative methods of visual, auditory, and olfactory signal analysis and to lab and field studies of animal signaling. ", + "name": "BIEB 167", + "prereqs": [ + "BIEB 102", + "BIEB 166" + ], + "title": "Animal Communication Lab (4)" + }, + "BIEB 174": { + "dept": "BIEB", + "description": "This course will teach the principles of ecosystem ecology in terrestrial and marine systems and will use examples from recent research to help students understand how global environmental changes are altering processes from leaf-level ecophysiology to global cycling of carbon, water, and nutrients. Fieldwork may be required. ", + "name": "BIEB 174", + "prereqs": [ + "BILD 3" + ], + "title": "Ecosystems and Global Change (4)" + }, + "BIEB 176": { + "dept": "BIEB", + "description": "and the Human Predicament (4)", + "name": "BIEB 176", + "prereqs": [], + "title": "Biology of Conservation" + }, + "BIEB 194": { + "dept": "BIEB", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "name": "BIEB 194", + "prereqs": [], + "title": "Advanced Topics in Modern Biology: Ecology, Behavior, Evolution (2)" + }, + "BILD 1": { + "dept": "BILD", + "description": "An introduction to cellular structure and function, to biological molecules, bioenergetics, to the genetics of both prokaryotic and eukaryotic organisms, and to the elements of molecular biology. Recommended preparation: prior completion of high school- or college-level chemistry course.", + "name": "BILD 1", + "prereqs": [], + "title": "The Cell (4)" + }, + "BILD 10": { + "dept": "BILD", + "description": "Concepts of Modern Biology (4)", + "name": "BILD 10", + "prereqs": [], + "title": "Fundamental" + }, + "BILD 12": { + "dept": "BILD", + "description": "Introduction to the organization and functions of the nervous system; topics include molecular, cellular, developmental, systems, and behavioral neurobiology. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for both BILD 12 and COGS 17.", + "name": "BILD 12", + "prereqs": [], + "title": "Neurobiology and Behavior (4)" + }, + "BILD 18": { + "dept": "BILD", + "description": "Course will focus on issues such as global warming, species extinction, and human impact on the oceans and forests. History and scientific projections will be examined in relation to these events. Possible solutions to these worldwide processes and a critical assessment of their causes and consequences will be covered.", + "name": "BILD 18", + "prereqs": [], + "title": "Human Impact on the Environment (4)" + }, + "BILD 2": { + "dept": "BILD", + "description": "An introduction to the development and the physiological processes of plants and animals. Included are treatments of reproduction, nutrition, respiration, transport systems, regulation of the internal environment, the nervous system, and behavior. ", + "name": "BILD 2", + "prereqs": [ + "BILD 1" + ], + "title": "Multicellular Life (4)" + }, + "BILD 20": { + "dept": "BILD", + "description": "Fundamentals of human genetics and introduction to modern genetic technology", + "name": "BILD 20", + "prereqs": [], + "title": "Human Genetics in Modern Society (4)" + }, + "BILD 22": { + "dept": "BILD", + "description": "A survey of our understanding of the basic", + "name": "BILD 22", + "prereqs": [], + "title": "Human Nutrition (4)" + }, + "BILD 26": { + "dept": "BILD", + "description": "Introduction to the elements of human physiology and the functioning of the various organ systems. The course presents a broad, yet detailed, analysis of human physiology, with particular emphasis toward understanding disease processes. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 26 after receiving credit for BIPN 100.", + "name": "BILD 26", + "prereqs": [], + "title": "Human Physiology (4)" + }, + "BILD 3": { + "dept": "BILD", + "description": "The first principles of evolutionary theory, classification, ecology,", + "name": "BILD 3", + "prereqs": [], + "title": "Organismic and Evolutionary Biology (4)" + }, + "BILD 36": { + "dept": "BILD", + "description": "An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection; HIV testing; education and approaches to therapy; and the social, political, and legal impacts of AIDS on the individual and society. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 36 after receiving credit for BICD 136.", + "name": "BILD 36", + "prereqs": [], + "title": "AIDS Science and Society (4)" + }, + "BILD 38": { + "dept": "BILD", + "description": "Introduction to basic human neuroscience leading to a discussion of brain diseases classified under the rubric Dementia. Topics include basic brain structure and function, diseases of the aging brain and their economic, social, political and ethical impacts on society.", + "name": "BILD 38", + "prereqs": [], + "title": "Dementia, Science, and Society (4)" + }, + "BILD 4": { + "dept": "BILD", + "description": "Students gain hands-on experience and learn the theoretical basis of lab techniques common to a variety of biological disciplines such as biochemistry, molecular biology, cell biology, and bioinformatics. Students will work in groups, learning how to collect, analyze, and present data while using the scientific method to conduct inquiry-based laboratory experiments. Material lab fees will apply.", + "name": "BILD 4", + "prereqs": [], + "title": "Introductory Biology Lab (2)" + }, + "BILD 40": { + "dept": "BILD", + "description": "Course introduces students to some of the research approaches employed by physicians and scientists at the UC San Diego School of Medicine to investigate the etiology, biology, prevention and treatment of human diseases, including cancer, diabetes, and others. P/NP grades only.", + "name": "BILD 40", + "prereqs": [], + "title": "Introduction to Biomedical Research (2)" + }, + "BILD 51": { + "dept": "BILD", + "description": "Course covers two important aspects: (1) interdisciplinary and research-based education and (2) teaching fundamental experimental and computational skills in quantitative studies of living systems. Participation by application only. Material lab fees will apply. ", + "name": "BILD 51", + "prereqs": [], + "title": "Quantitative Biology Project Lab (4)" + }, + "BILD 60": { + "dept": "BILD", + "description": "This course will examine diversity, equity, and inclusion beginning with a biological framework. Focus will be on how underlying biological differences have been used to support bias and prejudice against particular groups such as women, African Americans, and Latinos. This course is approved to meet the campus Diversity, Equity, and Inclusion (DEI) requirement. ", + "name": "BILD 60", + "prereqs": [ + "BILD 1", + "BILD 3", + "BILD 2" + ], + "title": "Exploring Issues of Diversity, Equity, and Inclusion in Relation to Human Biology (4)" + }, + "BILD 7": { + "dept": "BILD", + "description": "An introduction to the basic principles of plant and animal development, emphasizing the similar strategies by which diverse organisms develop. Practical applications of developmental principles as well as ethical considerations arising from these technologies will be discussed.", + "name": "BILD 7", + "prereqs": [], + "title": "The Beginning of Life (4)" + }, + "BILD 70": { + "dept": "BILD", + "description": "Students will isolate bacterial viruses or other organisms from the environment and characterize them by methods including electron microscopy and nucleic acid analysis. The genomic DNA will be purified and sent for sequencing. Restricted to student participants in the Phage Genomics Research program. Renumbered from BIMM 171A. Students may not receive credit for BILD 70 and BIMM 171A. Material lab fees will apply. ", + "name": "BILD 70", + "prereqs": [], + "title": "Genomics Research Initiative Lab I (4)" + }, + "BILD 87": { + "dept": "BILD", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "BILD 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "BILD 91": { + "dept": "BILD", + "description": "Course is designed to assist new freshmen in making a smooth and informed transition from high school. Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problems solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new freshmen.", + "name": "BILD 91", + "prereqs": [], + "title": "Biology Freshmen: Strategies for Success (1)" + }, + "BILD 92": { + "dept": "BILD", + "description": "Seminars will introduce students to various professional development topics in the biological sciences. Emphasis may include current research in academe and industry, using campus and community resources to help achieve academic, personal and professional goals, and career exploration. Activities may include presentations by faculty, alumni, and practicing professional biologists, as well as panel discussions with professionals from industry.", + "name": "BILD 92", + "prereqs": [], + "title": "Professional Development Topics in the Biological Sciences (1)" + }, + "BILD 95": { + "dept": "BILD", + "description": "The workshops will be restricted to lower-division undergraduates. The course will introduce students to the methods of scientific research and to a variety of research topics in the biological/biomedical sciences. Examples of topics are: Introduction to Scientific Research, AIDS, Medical and Social Aspects, Is the Mind the Same as the Brain, Wildlife Conservation.", + "name": "BILD 95", + "prereqs": [], + "title": "Undergraduate Workshops (1)" + }, + "BILD 96": { + "dept": "BILD", + "description": "Weekly seminar providing Biological Sciences Scholars Program students with the opportunity to learn more about research and scholarly activities available to them and acquaints them with UC San Diego faculty members. The course will promote student\u2019s participation in research and other scholarly activities on campus. ", + "name": "BILD 96", + "prereqs": [], + "title": "Biology: Honors Seminar (2)" + }, + "BILD 98": { + "dept": "BILD", + "description": "Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. Students must complete a special studies application. Paperwork for a BILD 98 must be submitted to SIS by Friday of the eighth week of the quarter preceding the quarter in which the 98 will be completed. P/NP grades only. May be taken for credit two times. ", + "name": "BILD 98", + "prereqs": [], + "title": "Directed Group Study (1 to 4)" + }, + "BILD 99": { + "dept": "BILD", + "description": "Independent research by special arrangement with a faculty member. (P/NP grades only.) Students must have an overall UC San Diego GPA of at least 3.0 and a minimum of thirty units complete. Students must complete a Special Studies form and a Division of Biological Sciences Research Plan. Credit may not be received for a course numbered 99 subsequent to receiving credit for a course numbered 199. ", + "name": "BILD 99", + "prereqs": [], + "title": "Independent Research (2 or 4)" + }, + "BIMM 100": { + "dept": "BIMM", + "description": "Molecular basis of biological processes, emphasizing gene action in context of entire genome. Chromosomes and DNA metabolism: chromatin, DNA replication, repair, mutation, recombination, transposition. Transcription, protein synthesis, regulation of gene activity. Procaryotes and eukaryotes. Note: Students will not receive credit for both BIMM 100 and Chem 114C. ", + "name": "BIMM 100", + "prereqs": [ + "CHEM 40B", + "CHEM 40A", + "BILD 1", + "BIBC 103", + "BILD 4", + "BIMM 101", + "BENG 120", + "CHEM 40BH", + "CHEM 40AH" + ], + "title": "Molecular Biology (4)" + }, + "BIMM 101": { + "dept": "BIMM", + "description": "Theory and practice of recombinant DNA and molecular biology techniques. Includes construction and screening of DNA libraries, DNA sequencing, PCR and its applications, bioinformatics, and RNA analysis. Nonattendance may result in the student\u2019s being dropped from the course roster. Note: Students may not enroll in or receive credit for both BIMM 101 and BIEB 123, or BIMM 101 and Chem 109. Material lab fees will apply. ", + "name": "BIMM 101", + "prereqs": [], + "title": "Recombinant DNA Techniques (4)" + }, + "BIMM 110": { + "dept": "BIMM", + "description": "An examination of the molecular basis of human diseases. Course emphasizes inherited human disorders, and some important diseases caused by viruses. Focus on the application of genetic, biochemical, and molecular biological principles to an understanding of the diseases. ", + "name": "BIMM 110", + "prereqs": [ + "BIBC 100", + "BIMM 100", + "BIBC 102", + "BICD 100" + ], + "title": "Molecular Basis of Human Disease (4)" + }, + "BIMM 112": { + "dept": "BIMM", + "description": "This course explores the mechanisms by which gene activity is regulated in eukaryotes, with an emphasis on transcriptional regulation and chromatin. Topics will include chromatin structure, histone modifications, chromatin dynamics, transcription factors, transcriptional elongation, enhancers, CpG methylation, heterochromatin, and epigenetics. ", + "name": "BIMM 112", + "prereqs": [ + "BIMM 100" + ], + "title": "Regulation of Eukaryotic Gene Expressions (4)" + }, + "BIMM 114": { + "dept": "BIMM", + "description": "An introduction to eukaryotic virology, with emphasis on animal virus systems. Topics discussed include the molecular structure of viruses; the multiplication strategies of the major virus families; and viral latency, persistence, and oncology. ", + "name": "BIMM 114", + "prereqs": [ + "BIMM 100" + ], + "title": "Virology (4)" + }, + "BIMM 116": { + "dept": "BIMM", + "description": "(Cross-listed with Psych 133; however, biology majors must take the course as BIMM 116.) This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. ", + "name": "BIMM 116", + "prereqs": [ + "BILD 1", + "PSYC 106", + "PSYC 2" + ], + "title": "Circadian Rhythms\u2014Biological Clocks (4)" + }, + "BIMM 116B": { + "dept": "BIMM", + "description": "The BioClock Studio is an innovative course in which a team of undergraduate students, drawn from diverse disciplines, will work collaboratively to develop their scientific and communicative skills to produce creative educational materials that will enhance understanding of circadian biology. Students are expected to attend the annual Circadian Biology Symposium held each winter, to the extent course schedules allow, to conduct interviews with prominent scientists. BIMM 116 is not a prerequisite to enroll in BIMM 116B. May be taken for credit three times. ", + "name": "BIMM 116B", + "prereqs": [], + "title": "BioClock Studio (4)" + }, + "BIMM 118": { + "dept": "BIMM", + "description": "Basics of pharmacology such as drug absorption, distribution, metabolism, and elimination. Concepts in toxicology and pharmacognosy are used to survey the major drug categories. ", + "name": "BIMM 118", + "prereqs": [ + "BIPN 100", + "BIBC 102", + "BIBC 100" + ], + "title": "Pharmacology (4)" + }, + "BIMM 120": { + "dept": "BIMM", + "description": "A discussion of the structure, growth, physiology, molecular genetics, genomics, and ecology of prokaryotic microorganisms, with emphasis on the genetic and metabolic diversity of bacteria and Archaea and their interactions with hosts and the environment. ", + "name": "BIMM 120", + "prereqs": [ + "BILD 1", + "BIBC 102", + "BIBC 100" + ], + "title": "Microbiology (4)" + }, + "BIMM 121": { + "dept": "BIMM", + "description": "Course emphasizes fundamental principles of microbiology, including comparative", + "name": "BIMM 121", + "prereqs": [], + "title": "Laboratory in Microbiology (6)" + }, + "BIMM 122": { + "dept": "BIMM", + "description": "Course will consider the organization and function of prokaryotic genomes including content, DNA supercoiling, histone-like proteins, chromosomal dynamics (short-term and long-term), extrachromosomal elements, bacterial sex, transduction, transformation, mobile elements (transposon), epigenetic change, adaptive and directed mutation, transcription and its regulation, sensory transduction, bacterial differentiation, symbiosis, and pathogenesis. ", + "name": "BIMM 122", + "prereqs": [ + "BIMM 100" + ], + "title": "Microbial Genetics (4)" + }, + "BIMM 124": { + "dept": "BIMM", + "description": "Encompasses the increasingly important areas", + "name": "BIMM 124", + "prereqs": [], + "title": "Medical Microbiology (4)" + }, + "BIMM 130": { + "dept": "BIMM", + "description": "Prokaryotic cell biology will be discussed primarily from physiological and biochemical standpoints with a focus on conceptual understanding, integration, and mechanism. Topics will vary from year to year but will include the following themes: bioenergetics, cell polarity, cell adhesion, the molecular basis of morphogenesis and differentiation, prokaryotic motility and behavior, rotary and linear molecular machines, bacterial organelles, pheromones and messengers, circadian rhythms, biological warfare, and bioremediation. ", + "name": "BIMM 130", + "prereqs": [ + "BIBC 102", + "BIBC 100" + ], + "title": "Microbial Physiology (4)" + }, + "BIMM 134": { + "dept": "BIMM", + "description": "This course explores the molecular and cellular pathways that become dysregulated during carcinogenesis. We will synthesize principles from genetics and molecular, cellular, and developmental biology to investigate how normal cells evolve into tumors. We will examine how tissues distinct from the tumor itself can participate in both facilitating and fighting tumor growth and explore historical and current approaches employed to inhibit tumorigenesis. ", + "name": "BIMM 134", + "prereqs": [ + "BILD 1" + ], + "title": "Biology of Cancer (4)" + }, + "BIMM 140": { + "dept": "BIMM", + "description": "Course considers problems in biology that were solved using quantitative biology approaches. Problems will range from the molecular to the population level. Students will learn about the scientific method and process, and how to apply it. ", + "name": "BIMM 140", + "prereqs": [ + "BILD 1" + ], + "title": "Quantitative Principles in Biology (4)" + }, + "BIMM 143": { + "dept": "BIMM", + "description": "Bioinformatics is the analysis of big data in the biosciences. This course provides a hands-on introduction to the computer-based analysis of biomolecular and genomic data. Major topic areas include advances in sequencing technologies, genome resequencing and variation analysis, transcriptomics, structural bioinformatics, and personal genomics. This course will utilize free, web-based bioinformatics tools and no programming skills are required. ", + "name": "BIMM 143", + "prereqs": [ + "BILD 1", + "BIEB 123", + "BILD 4", + "BIMM 101" + ], + "title": "Bioinformatics Laboratory (4)" + }, + "BIMM 149": { + "dept": "BIMM", + "description": "Course will provide students with the computational tools and problem-solving skills that are increasingly important to the biosciences. Students learn to program in a modern general-purpose programming language and write their own programs to explore a variety of applications in biology including simulations, sequence analysis, phylogenetics, among others. Students will use their own laptop computers. ", + "name": "BIMM 149", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "Computation for Biologists (4)" + }, + "BIMM 162": { + "dept": "BIMM", + "description": "The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells.\u00a0The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed. Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BGGN 262/Chem 265. Note: Students may not receive credit for both BIMM 162 and Chem 165. Recommended preparation: Phys 1C or 2C. ", + "name": "BIMM 162", + "prereqs": [ + "BIBC 100", + "CHEM 114A" + ], + "title": "3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)" + }, + "BIMM 164": { + "dept": "BIMM", + "description": "An introduction to virus structures, how they are determined,", + "name": "BIMM 164", + "prereqs": [], + "title": "Structural Biology of Viruses (4)" + }, + "BIMM 170": { + "dept": "BIMM", + "description": "Genomics Research Initiative Laboratory II (4)", + "name": "BIMM 170", + "prereqs": [], + "title": "" + }, + "BIMM 181": { + "dept": "BIMM", + "description": "This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNA sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. This course open to bioinformatics majors only. ", + "name": "BIMM 181", + "prereqs": [ + "CSE 101", + "CSE 100", + "MATH 176", + "MATH 188", + "BIMM 100", + "CHEM 114C" + ], + "title": "Molecular Sequence Analysis (4)" + }, + "BIMM 182": { + "dept": "BIMM", + "description": "This course provides an introduction to the features of biological data, how that data is organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object-oriented databases, data modeling and description, survey of current biological database with respect to above, implementation of database focused on a biological topic. This course open to bioinformatics majors only. ", + "name": "BIMM 182", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Biological Databases (4)" + }, + "BIMM 184": { + "dept": "BIMM", + "description": "This advanced course covers the application", + "name": "BIMM 184", + "prereqs": [], + "title": "Computational Molecular Biology (4)" + }, + "BIMM 185": { + "dept": "BIMM", + "description": "This course emphasizes the hands-on application", + "name": "BIMM 185", + "prereqs": [], + "title": "Bioinformatics Laboratory (Advanced) (4)" + }, + "BIMM 194": { + "dept": "BIMM", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "name": "BIMM 194", + "prereqs": [], + "title": "Advanced Topics in Modern Biology: Molecular Biology (2)" + }, + "BIOM 200A": { + "dept": "BIOM", + "description": "This course provides a systematic approach to current biomedical research, using analysis of selected topics to focus on the process of research discovery and its critical evaluation. The course progresses through five thematic modules that cover genes, building a cell, cellular responses, organogenesis, and the processes that allow survival in the world. ", + "name": "BIOM 200A", + "prereqs": [], + "title": "Molecules to Organisms: Concepts (6)" + }, + "BIOM 200B": { + "dept": "BIOM", + "description": "Students will critically evaluate classic and current research papers in biomedical research, in addition to being exposed to state-of-the-art technologies in research. ", + "name": "BIOM 200B", + "prereqs": [], + "title": "Molecules to Organisms: Approaches (2)" + }, + "BIOM 201": { + "dept": "BIOM", + "description": "This course includes attendance at seminars in the biomedical sciences and is designed to provoke critical discussion of the presented findings and scientific approaches in a small-group setting. ", + "name": "BIOM 201", + "prereqs": [], + "title": "Seminars in Biomedical Research (4)" + }, + "BIOM 202": { + "dept": "BIOM", + "description": "Laboratory rotations provide first-year students with experience in the various experimental methods used in biomedical sciences. ", + "name": "BIOM 202", + "prereqs": [], + "title": "Biomedical Sciences Research Rotation (3)" + }, + "BIOM 209": { + "dept": "BIOM", + "description": "Overview of new systems biology \u201comics\u201d approaches to lipid metabolism and cell signaling including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Recommended: one quarter of undergraduate biochemistry. ", + "name": "BIOM 209", + "prereqs": [], + "title": "Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)" + }, + "BIOM 218": { + "dept": "BIOM", + "description": "Participation in the symposia held by CARTA three times a year. Students shadow one of the speakers during public and private symposia. Students meet after each symposium and each writes a summary of the speaker\u2019s presentation and ensuring discussion. ", + "name": "BIOM 218", + "prereqs": [], + "title": "Current Topics in Anthropogeny (1)" + }, + "BIOM 219": { + "dept": "BIOM", + "description": "Overview of ethical issues in scientific research, conflicts of interest; national, statewide and campus issues and requirement; ethical issues in publications; authorship; retention of research records; tracing of research records; attribution; plagiarism; copyright considerations; primary, archival and meeting summary publications; ethical procedures and policies; NIH, NSF, California and UC San Diego; case studies and precedents in ethics. ", + "name": "BIOM 219", + "prereqs": [], + "title": "Ethics in Scientific Research (1)" + }, + "BIOM 222": { + "dept": "BIOM", + "description": "Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.", + "name": "BIOM 222", + "prereqs": [], + "title": "Essentials of Glycobiology (2)" + }, + "BIOM 224": { + "dept": "BIOM", + "description": "Each quarter will focus on an important area of cancer research such as immunology (fall), growth regulation (winter), and cancer genetics (spring). One-hour lecture coordinated with a one-hour seminar with the opportunity to meet with the invited speaker. ", + "name": "BIOM 224", + "prereqs": [], + "title": "Topics in Cancer Research (2)" + }, + "BIOM 225": { + "dept": "BIOM", + "description": "An overview of the current state of research into human origins with illustration of the spatial and temporal scales: from million-year-old phylogenies to millisecond physiological processes, and from human societies dispersed across continents to cells and molecules. ", + "name": "BIOM 225", + "prereqs": [], + "title": "Introduction to Anthropogeny (2)" + }, + "BIOM 226": { + "dept": "BIOM", + "description": "The course covers recent advances in research into hormone action, molecular endocrinology, lipid, lipoprotein, and carbohydrate metabolism, and reproductive medicine. ", + "name": "BIOM 226", + "prereqs": [ + "BIOM 200B", + "BIOM 201", + "BIOM 200A" + ], + "title": "Hormone Action (3)" + }, + "BIOM 227": { + "dept": "BIOM", + "description": "This course provides an overview of the use of mouse models in biomedical research. Sessions will cover general mouse biology, genetics, technologies for generating mutant mice and will focus on model selection, methodological approaches, data interpretation, experimental design, and ethics of animal research. Student participation and discussion will be encouraged. ", + "name": "BIOM 227", + "prereqs": [], + "title": "Mouse Models of Human Disease (2)" + }, + "BIOM 228": { + "dept": "BIOM", + "description": "Drug discovery is an emerging science available to academic investigators. This course provides an overview of these drug discovery techniques, including high through-put screening, cell-based screening, computational methods of lead compound discovery, and chemical methods of optimization. ", + "name": "BIOM 228", + "prereqs": [], + "title": "Modern Drug Discovery Technologies (2)" + }, + "BIOM 229": { + "dept": "BIOM", + "description": "Advanced discussions following on \u201cIntroduction to Anthropogeny.\u201d Online \u201cMuseum of Comparative Anthropogeny (MOCA)\u201d will serve as major scaffold for this in-depth course. MOCA (", + "name": "BIOM 229", + "prereqs": [], + "title": "Advanced Anthropogeny (2)" + }, + "BIOM 231": { + "dept": "BIOM", + "description": "A selection of short courses in the biomedical and pharmacological sciences offered by resident experts. Topics will vary annually. Each short course will last one to two weeks, meeting five hours a week. ", + "name": "BIOM 231", + "prereqs": [], + "title": "Contemporary Topics in Pharmacology (2)" + }, + "BIOM 232": { + "dept": "BIOM", + "description": "Strategies such as positron emission tomography, magnetic resonance imaging, and ultrasound for nondestructively imaging molecular and cell biological events inside living animals and eventually human patients. Emphasis on detecting angiogenesis, apoptosis, and expression of tumor-specific genes. ", + "name": "BIOM 232", + "prereqs": [], + "title": "In vivo Cellular and Molecular Imaging (1)" + }, + "BIOM 233": { + "dept": "BIOM", + "description": "This class is taught by SBMRI program faculty, whose laboratories are actively involved in determining the three-dimensional structure of complex biological entities. The course covers basic principles of crystallization, cryo-electron microscopy, and NMR, and modern techniques for Ab-initio-structural analysis. ", + "name": "BIOM 233", + "prereqs": [], + "title": "Structural Biology in Cell Signaling and Drug Discovery (2)" + }, + "BIOM 234": { + "dept": "BIOM", + "description": "The course is designed to introduce or reintroduce histology and histopathology of the various organ systems to those who need to analyze mouse tissues as an essential part of their research. ", + "name": "BIOM 234", + "prereqs": [], + "title": "Practical Histopathology and Mouse Models of Human Diseases (2)" + }, + "BIOM 235": { + "dept": "BIOM", + "description": "This course provides an understanding of the evolving area of human genomics and correlation between an individual\u2019s or subpopulation\u2019s genetic makeup and their response to drugs. The information provides the student the basis for select prescribing and/or targeting drug development to improve drug therapy outcomes and reduce adverse drug responses. ", + "name": "BIOM 235", + "prereqs": [], + "title": "Pharmacogenomics (3)" + }, + "BIOM 240": { + "dept": "BIOM", + "description": "This course will focus on critical reading and understanding current areas in cell and molecular biology. The exact topic will vary, but will include such topics as protein trafficking, cell division, intracellular movement, cell interaction, and cell cycle.", + "name": "BIOM 240", + "prereqs": [], + "title": "Critical Reading in Cell Biology (3)" + }, + "BIOM 242": { + "dept": "BIOM", + "description": "Intended for graduate students interested in principles of classical and molecular genetics. Will attend weekly genetics seminar and participate in didactic/discussion preparatory session. ", + "name": "BIOM 242", + "prereqs": [], + "title": "Seminar in Genetics (1)" + }, + "BIOM 246": { + "dept": "BIOM", + "description": "Informal presentations on topics of current interest in glycobiology as represented in the current scientific literature. ", + "name": "BIOM 246", + "prereqs": [], + "title": "Current Literature in Glycobiology (1)" + }, + "BIOM 252": { + "dept": "BIOM", + "description": "This course will examine the basic principles of genetics and genomics. We will focus on classic discoveries and examples of approaches to current experimental problems. Emphasis areas will vary but general topics include Mendelian inheritance, imprinting, cytogenetics, genome structure, genetic variation, linkage and recombination, complex traits, statistical genetics, population genetics, genomic tools and methodology, medical genetics, model organisms. ", + "name": "BIOM 252", + "prereqs": [ + "BIOM 200B", + "BIOM 201", + "BIOM 200A" + ], + "title": "Genetics and Genomics (3)" + }, + "BIOM 253": { + "dept": "BIOM", + "description": "This course will examine the innate and adaptive immune responses of humans to microbial infection. In parallel, we will explore the virulence mechanisms through which certain medically important viruses, bacteria, fungi, and parasites subvert host defense to produce infectious disease. Emphasis will be placed on basic molecular genetic and cellular approaches to understanding microbial pathogenesis and host susceptibility, including progress toward novel antibiotic and immune stimulatory therapies. ", + "name": "BIOM 253", + "prereqs": [ + "BIOM 200B", + "BIOM 201", + "BIOM 200A" + ], + "title": "Pathogens and Host Defense (3)" + }, + "BIOM 254": { + "dept": "BIOM", + "description": "This course will examine the basic principles of molecular and cellular biology and their impact on medicine focusing on classic discoveries and examples of approaches to current experimental problems. Emphasis areas will vary but will include genes and genomics, chromosome biology and nuclear structure, transcriptional regulation, RNA processing, cell cycle control, cell growth and death, cell differentiation and stem cell biology, molecular motors and motility, membrane trafficking and signaling. ", + "name": "BIOM 254", + "prereqs": [ + "BIOM 200B", + "BIOM 201", + "BIOM 200A" + ], + "title": "Molecular and Cell Biology (3)" + }, + "BIOM 255": { + "dept": "BIOM", + "description": "Molecular basis of drug action; basis of disease; drug invention. Topics may include: basic principles, autonomic nervous system; CV, pulmonary, diabetes, cancer therapy, pharmacotherapy of CNS disease (depression, etc.) pain, infections (bacterial, viral, malarial). Students that have taken both 255A and 255B cannot take 255 for credit. ", + "name": "BIOM 255", + "prereqs": [ + "BIOM 200B", + "BIOM 201", + "BIOM 200A" + ], + "title": "Molecular Basis of Drug Action and Disease Therapy (3)" + }, + "BIOM 256": { + "dept": "BIOM", + "description": "This course outlines a current understanding of genetic mechanisms that underlie carcinogenesis and their impact on cell proliferation, differentiation, angiogenesis, metastasis, and survival. The topics of tumor histopathology, the tumor stem cell phenotype, and cancer drug design are also addressed. ", + "name": "BIOM 256", + "prereqs": [], + "title": "Molecular Pathology of Cancer (3)" + }, + "BIOM 262": { + "dept": "BIOM", + "description": "This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages. ", + "name": "BIOM 262", + "prereqs": [ + "BIOM 252", + "BGGN 223", + "BIOM 272" + ], + "title": "Quantitative Methods in Genetics (4)" + }, + "BIOM 264": { + "dept": "BIOM", + "description": "Lectures on the molecular and cellular mechanisms of pathogenesis. Topics will include Alzheimer\u2019s disease, cell surface and unclear receptors in disease, signal transduction by oncogenes in cancer cells, AIDS, human diseases affecting glycosylation pathways, rheumatoid arthritis, and arteriosclerosis. ", + "name": "BIOM 264", + "prereqs": [], + "title": "Molecular and Cellular Basis of Disease (2)" + }, + "BIOM 266": { + "dept": "BIOM", + "description": "Molecular and cellular mechanisms underlie the actions of environmental toxicants. This course will investigate approaches to study the impact of environmental toxicants on human health. Other modern approaches that are being implemented to detect and remediate environmental toxicants will also be examined. BGGN 256, BIOM 266 and Chem 266 students will be required to complete an additional paper and/or exam beyond that expected of students in Chem 166 and BIMM 166. ", + "name": "BIOM 266", + "prereqs": [ + "BIBC 102", + "BIBC 100", + "BIMM 166", + "CHEM 166", + "CHEM 114B", + "CHEM 114A" + ], + "title": "Environmental and Molecular Toxicology (4)" + }, + "BIOM 267": { + "dept": "BIOM", + "description": "This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ", + "name": "BIOM 267", + "prereqs": [], + "title": "Drug Discovery, Development, and Commercialization (3)" + }, + "BIOM 272": { + "dept": "BIOM", + "description": "This course includes attendance at seminars in genetics and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "name": "BIOM 272", + "prereqs": [], + "title": "Seminars in Genetics (2)" + }, + "BIOM 273": { + "dept": "BIOM", + "description": "This course includes attendance at seminars in microbiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "name": "BIOM 273", + "prereqs": [], + "title": "Seminars in Microbiology (2)" + }, + "BIOM 274": { + "dept": "BIOM", + "description": "This course includes attendance at seminars in molecular and cell biology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "name": "BIOM 274", + "prereqs": [], + "title": "Seminars in Molecular and Cell Biology (2)" + }, + "BIOM 275": { + "dept": "BIOM", + "description": "This course includes attendance at seminars in pharmacology and is designed to provoke critical discussion of the presented findings and the scientific approaches in a small group setting. ", + "name": "BIOM 275", + "prereqs": [], + "title": "Seminars in Pharmacology (2)" + }, + "BIOM 276": { + "dept": "BIOM", + "description": "This course includes attendance at seminars in physiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "name": "BIOM 276", + "prereqs": [], + "title": "Seminars in Physiology (2)" + }, + "BIOM 277": { + "dept": "BIOM", + "description": "This course presents developments in cellular and molecular pathology research ongoing in the molecular pathology division of BMS. Each session comprises three fifteen-minute presentations from different faculty members. Discussion questions are fielded during or after each presentation. ", + "name": "BIOM 277", + "prereqs": [], + "title": "Seminars in Molecular Pathology (2)" + }, + "BIOM 283": { + "dept": "BIOM", + "description": "A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ", + "name": "BIOM 283", + "prereqs": [], + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + "BIOM 285": { + "dept": "BIOM", + "description": "An introduction to basic techniques used in biomedical literature: t tests, ANOVA, chi-square, linear and nonlinear regression. Emphasis will be on understanding the appropriate use and interpretation of the tests, rather than on the calculations.", + "name": "BIOM 285", + "prereqs": [], + "title": "Statistical Inference in the Medical Sciences (2)" + }, + "BIOM 287": { + "dept": "BIOM", + "description": "Students will learn to conduct tissue engineering and developmental biology experiments, microfabricate cell culture systems, engineer biopolymer materials, and develop and analyze quantitative models of transport, cell fate, and growth mechanics. The understanding and manipulation of multicellular processes that comprise development and growth involves specialized areas of biomechanics, developmental biology, biomaterials, and the tools of molecular biology, as well as the integration of theory and experiment. To fabricate functional tissues, it is important to establish underlying molecular and physical mechanisms, and then control and integrate these. ", + "name": "BIOM 287", + "prereqs": [], + "title": "Tissue Engineering Laboratory (4)" + }, + "BIOM 294": { + "dept": "BIOM", + "description": "Current literature in molecular pharmacology and molecular biology is reviewed. Two papers are chosen per week for oral presentation by students. Faculty critique the student presentations. ", + "name": "BIOM 294", + "prereqs": [], + "title": "Pharmacology and Molecular Biology Journal Club (0\u20131)" + }, + "BIOM 295": { + "dept": "BIOM", + "description": "Student, faculty, and fellow discussion groups on research projects. Students are expected to present research findings to fellows, other PhD students, and faculty.", + "name": "BIOM 295", + "prereqs": [], + "title": "Pharmacology Research Discussions (0\u20131)" + }, + "BIOM 296": { + "dept": "BIOM", + "description": "Reading of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. ", + "name": "BIOM 296", + "prereqs": [], + "title": "Directed Reading (1\u20134)" + }, + "BIOM 297": { + "dept": "BIOM", + "description": "Papers describing recent progress in signal transduction from the cell-surface to the nucleus will be chosen from recent research literature. Two papers will be discussed and criticized in detail each week for one hour. ", + "name": "BIOM 297", + "prereqs": [], + "title": "Progress in Signal Transduction (1)" + }, + "BIOM 298": { + "dept": "BIOM", + "description": "Reading and laboratory study of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (F,W,S)", + "name": "BIOM 298", + "prereqs": [], + "title": "Directed Study (1\u201312)" + }, + "BIOM 299": { + "dept": "BIOM", + "description": "Independent study or research. ", + "name": "BIOM 299", + "prereqs": [], + "title": "Independent Study or Research (1\u201312)" + }, + "BIPN 100": { + "dept": "BIPN", + "description": "Course introduces the concepts of physiological regulation, controlled and integrated by the nervous and endocrine systems. Course then examines the muscular, cardiovascular, and renal systems in detail and considers their control through the interaction of nervous activity and hormones. Note: Students may not receive credit for both BIPN 100 and BENG 140A. ", + "name": "BIPN 100", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "Human Physiology I (4)" + }, + "BIPN 102": { + "dept": "BIPN", + "description": "Course completes a survey of organ systems begun in BIPN 100 by considering the respiratory and gastrointestinal systems. Consideration is given to interactions of these systems in weight and temperature regulation, exercise physiology, stress, and pregnancy and reproduction. Note: Students may not receive credit for both BIPN 102 and BENG 140B. ", + "name": "BIPN 102", + "prereqs": [ + "BIPN 100" + ], + "title": "Human Physiology II (4)" + }, + "BIPN 105": { + "dept": "BIPN", + "description": "Experiments are performed on membrane physiology, nerve and muscle function, hormone actions, cardiovascular physiology, and renal function. Subjects include experimental animals. Students will perform a research project and present their results in a symposium at the end of the quarter. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Material lab fees will apply. ", + "name": "BIPN 105", + "prereqs": [ + "BIPN 100" + ], + "title": "Animal Physiology Lab (6)" + }, + "BIPN 106": { + "dept": "BIPN", + "description": "This course examines the physiological adaptation", + "name": "BIPN 106", + "prereqs": [], + "title": "Comparative Physiology (4)" + }, + "BIPN 108": { + "dept": "BIPN", + "description": "Course addresses the human body\u2019s response to exercise, addressing energy metabolism and the effects of both acute and chronic exercise on function in several important organ systems. Designing training regimes and the role of exercise in health will be considered. ", + "name": "BIPN 108", + "prereqs": [], + "title": "Biology and Medicine of Exercise (4)" + }, + "BIPN 120": { + "dept": "BIPN", + "description": "Normal function and diseases of the major hormone systems of the body including the hypothalamus/pituitary axis, the thyroid gland, reproduction and sexual development, metabolism and the pancreas, bone and calcium metabolism, and the adrenal glands. Students may not receive credit for both BIPN 120 and BICD 150. ", + "name": "BIPN 120", + "prereqs": [ + "BIPN 100" + ], + "title": "Endocrinology (4)" + }, + "BIPN 134": { + "dept": "BIPN", + "description": "Course focuses on physiological aspects of the human reproductive systems. Emphasis will be on cellular and systems physiology. Topics will include: reproductive endocrinology, gametogenesis, fertilization and implantation, pregnancy and parturition, development of reproductive systems, and reproductive pathologies. Students may not receive credit for both BIPN 134 and BICD 134. ", + "name": "BIPN 134", + "prereqs": [ + "BIPN 100" + ], + "title": "Human Reproduction (4)" + }, + "BIPN 140": { + "dept": "BIPN", + "description": "This course covers the biophysics of the resting and active membranes of nerve cells. It also covers the mechanisms of sensory transduction and neuromodulation, as well as the molecular basis of nerve cell function. ", + "name": "BIPN 140", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "Cellular Neurobiology (4)" + }, + "BIPN 142": { + "dept": "BIPN", + "description": "Course will cover integrated networks of nerve cells, including simple circuits like those involved in spinal reflexes.\u00a0Course will study how information and motor output is integrated and processed in the brain. Course will also discuss higher-level neural processing. ", + "name": "BIPN 142", + "prereqs": [ + "BIPN 100", + "BIPN 140" + ], + "title": "Systems Neurobiology (4)" + }, + "BIPN 144": { + "dept": "BIPN", + "description": "Molecular basis of neuronal cell fate determination, axon pathfinding, synaptogenesis experience-based refinement of connections, and learning in the brain will be examined. ", + "name": "BIPN 144", + "prereqs": [], + "title": "Developmental Neurobiology (4)" + }, + "BIPN 146": { + "dept": "BIPN", + "description": "An exploration of computational brain models, including biophysical models of single neurons, small neural circuits, and larger scale network models. ", + "name": "BIPN 146", + "prereqs": [ + "PSYC 106", + "COGS 107", + "BIPN 140", + "BILD 12" + ], + "title": "Computational Neurobiology (4)" + }, + "BIPN 148": { + "dept": "BIPN", + "description": "Course will explore cellular and molecular mechanisms that underlie learning and memory. Topics will include synapse formation and synaptic plasticity, neurotransmitter systems and their receptors, mechanisms of synaptic modification, and effect of experience on neuronal connectivity, and gene expression. ", + "name": "BIPN 148", + "prereqs": [ + "BIPN 100" + ], + "title": "Cellular Basis of Learning and Memory (4)" + }, + "BIPN 150": { + "dept": "BIPN", + "description": "Course will be taught from a research perspective, highlighting the biological pathways impacted by different neurological diseases. Each disease covered will be used to illustrate a key molecular/cellular pathway involved in proper neurological function. ", + "name": "BIPN 150", + "prereqs": [ + "BIBC 102", + "BICD 100" + ], + "title": "Diseases of the Nervous System (4)" + }, + "BIPN 152": { + "dept": "BIPN", + "description": "Coverage of the history of research, diagnosis, and treatment of common neuropsychiatric disorders. Comparisons will be made between primary research data and existing treatments, and on developing skills to digest scientific literature aimed at understanding the neuroscience of disease. ", + "name": "BIPN 152", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "The Healthy and Diseased Brain (4)" + }, + "BIPN 160": { + "dept": "BIPN", + "description": "The course will cover a broad anatomical and functional description of the human nervous system and explore evidence implicating key brain areas in specific functions. This course will discuss modern techniques and the use of model organisms for dissecting the anatomical organization of the brain. ", + "name": "BIPN 160", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "Neuroanatomy (4)" + }, + "BIPN 189": { + "dept": "BIPN", + "description": "This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural systems that control them, emphasizing broad fundamental relationships between brain and behavior across species. Note: Students may not receive credit for Psyc 189 and BIPN 189. ", + "name": "BIPN 189", + "prereqs": [ + "PSYC 102", + "BILD 2", + "PSYC 106" + ], + "title": "Brain, Behavior, and Evolution (4)" + }, + "BIPN 194": { + "dept": "BIPN", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "name": "BIPN 194", + "prereqs": [], + "title": "Advanced Topics in Modern Biology: Physiology and Neuroscience (2)" + }, + "BISP 170": { + "dept": "BISP", + "description": "Course will examine different aspects of a current topic in biology and will include several speakers. Each speaker will introduce the scientific foundation of the chosen theme (\u201cbench\u201d), describe practical applications of their subject (\u201cbedside\u201d), and consider social and ethical implications of the topic (\u201cbeyond\u201d). The theme of the course will vary from year to year, and speakers will come from a variety of disciplines relevant to the theme. May be taken for credit three times. ", + "name": "BISP 170", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "Bioscholars Seminar: From Bench to Bedside and Beyond (2)" + }, + "BISP 191": { + "dept": "BISP", + "description": "Course is designed to assist new transfers in making a smooth and informed transition from community college.\u00a0Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problem-solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new transfers. ", + "name": "BISP 191", + "prereqs": [], + "title": "Biology Transfers: Strategies for Success (1)" + }, + "BISP 192": { + "dept": "BISP", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in biology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "BISP 192", + "prereqs": [], + "title": "Senior Seminar in Biology (1)" + }, + "BISP 193": { + "dept": "BISP", + "description": "Individual research on a problem in biology education by special arrangement with and under the direction of a faculty member. Projects are expected to involve novel research that examines issues in biology education such as the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. P/PN grades only. May be taken for credit five times. ", + "name": "BISP 193", + "prereqs": [ + "BISP 193" + ], + "title": "Biology Education Research (2 or 4)" + }, + "BISP 194": { + "dept": "BISP", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "name": "BISP 194", + "prereqs": [], + "title": "Advanced Topics in Modern Biology (2)" + }, + "BISP 195": { + "dept": "BISP", + "description": "Under the supervision of an instructor, student apprentices will assist in the instruction of a biology course. The purpose of the apprenticeship is to learn the methodology of teaching biology, at the college level, through theory and actual practice in a regularly scheduled course. Limited to upper-division students with a 3.0 GPA or higher. Students must apply the quarter preceding the quarter in which BISP 195 will be completed. Applications are reviewed by instructors, and assignments are made based on divisional need. P/NP grades only. May be taken for credit two times. ", + "name": "BISP 195", + "prereqs": [], + "title": "Undergraduate Instructional Apprenticeship in Biological Sciences (4)" + }, + "BISP 196": { + "dept": "BISP", + "description": "Course for student participants in the senior Honors thesis research program. Students complete individual research on a problem by special arrangement with, and under the direction of, a faculty member. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. P/NP grades only. May be taken for credit three times. Research to be approved by Honors thesis faculty adviser via application.\u00a0Note: Students must apply to the division via the online system. For complete details, applications, and deadlines, please consult the", + "name": "BISP 196", + "prereqs": [], + "title": "Honors Thesis in Biological Sciences (4)" + }, + "BISP 197": { + "dept": "BISP", + "description": "Individual research on a problem by special arrangement with, and under the direction of, a UC San Diego faculty member and a selected researcher in industry or at a research institution. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. Application deadlines are strictly enforced. Consult the", + "name": "BISP 197", + "prereqs": [], + "title": "Biology Internship Program (2 or 4)" + }, + "BISP 198": { + "dept": "BISP", + "description": "Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. P/NP grades only. May be taken for credit two times. ", + "name": "BISP 198", + "prereqs": [ + "BISP 198" + ], + "title": "Directed Group Study (1 to 4)" + }, + "BISP 199": { + "dept": "BISP", + "description": "Individual research on a problem by special arrangement with, and under the direction of, a faculty member. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. P/NP grades only. May be taken for credit five times. Note: Students must apply to the division via the online system. For complete details, applications, and deadlines, please consult the", + "name": "BISP 199", + "prereqs": [], + "title": "Individual Research for Undergraduates (2 or 4)" + }, + "CAT 1": { + "dept": "CAT", + "description": "A global historical overview of principles and patterns of human development, with emphasis on technology and the arts. Traces causes and consequences of cultural variation. Explores interactions of regional environments (geographic, climatic, biological) with social and cultural forces. ", + "name": "CAT 1", + "prereqs": [], + "title": "Culture, Art, and Technology 1 (4)" + }, + "CAT 124": { + "dept": "CAT", + "description": "Students initiate, plan, and carry out community-based and/or research-based projects that connect classroom-based experiences and knowledge to the outlying community, and that explicitly explore the interplay of culture, art, and technology. ", + "name": "CAT 124", + "prereqs": [], + "title": "Sixth College Practicum (4)" + }, + "CAT 125": { + "dept": "CAT", + "description": "Upper-division composition course in public rhetoric and practical communication, including oral presentation, writing in print formats, and digital content creation. This course also focuses on how writing can support and extend experiential learning before, during or after students do their practicum project. ", + "name": "CAT 125", + "prereqs": [ + "CAT 1", + "CAT 3", + "CAT 2" + ], + "title": "Public Rhetoric and Practical Communication (4)" + }, + "CAT 192": { + "dept": "CAT", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Culture, Art, and Technology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "CAT 192", + "prereqs": [], + "title": "Senior Seminar in Culture, Art, and Technology (1)" + }, + "CAT 195": { + "dept": "CAT", + "description": "Undergraduate instructional assistance. Responsibilities in areas of learning and instruction. May collect course material and assist with course projects, digital workshops, and collection, organization and analysis of formative assessment data. ", + "name": "CAT 195", + "prereqs": [], + "title": "Apprentice Teaching (4)" + }, + "CAT 197": { + "dept": "CAT", + "description": "Supervised community-based or industry-based fieldwork. Designated for Sixth College students to have the opportunity to work on a community-based or industry-based project supervised by a faculty member and community or industry mentor in which the subject or content of the project cannot be represented by a specific academic department. Students will submit written evaluations each week of their ongoing field study. ", + "name": "CAT 197", + "prereqs": [ + "CAT 1", + "CAT 3", + "CAT 2" + ], + "title": "Culture, Art, and Technology Field Studies (4)" + }, + "CAT 198": { + "dept": "CAT", + "description": "Directed group studies or, in group, field studies of a creative project. Designated for Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive than individual special studies. ", + "name": "CAT 198", + "prereqs": [ + "CAT 1", + "CAT 3", + "CAT 2" + ], + "title": "Culture, Art, and Technology Directed Group Studies (4)" + }, + "CAT 199": { + "dept": "CAT", + "description": "Individual independent research or creative project. Designated for Sixth College students to have the opportunity to work on a project supervised by a faculty member in a specific department, where the subject or content of the project cannot be represented by the academic department of the faculty member. ", + "name": "CAT 199", + "prereqs": [ + "CAT 1", + "CAT 3", + "CAT 2" + ], + "title": "Culture, Art, and Technology Independent Studies (4)" + }, + "CAT 2": { + "dept": "CAT", + "description": "Fundamental shifts in one area of endeavor can have a profound impact on whole cultures. Examines select events, technologies, and works of art that revolutionized ways of inhabiting the world. Intensive instructions in university-level writing: featured sections on information literacy. ", + "name": "CAT 2", + "prereqs": [ + "CAT 1" + ], + "title": "Culture, Art, and Technology 2 (6)" + }, + "CAT 24": { + "dept": "CAT", + "description": "to Special Projects/Topics (2 or 4)", + "name": "CAT 24", + "prereqs": [], + "title": "Introduction" + }, + "CAT 3": { + "dept": "CAT", + "description": "Students engage with various interdisciplinary modes of apprehending the near future. Working in teams on community projects, they are challenged to listen and communicate across cultures and develop cogent technological and artistic responses to local problems. Writing and information literacy instruction. ", + "name": "CAT 3", + "prereqs": [ + "CAT 2" + ], + "title": "Culture, Art, and Technology 3 (6)" + }, + "CAT 75": { + "dept": "CAT", + "description": "Seminars are hands-on arts experiences (performances, exhibits, site visits, etc.). Students and faculty attend events together and have discussions before or after, often with guest speakers such as the artists, curators, and/or faculty/graduate students from UC San Diego arts departments. Successful completion of this seminar series satisfies one of the eight Sixth College general education requirements for Art Making. May be taken for credit two times. ", + "name": "CAT 75", + "prereqs": [], + "title": "Experience Art!\u2014Sixth College Seminar Series (1)" + }, + "CAT 87": { + "dept": "CAT", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ", + "name": "CAT 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "CAT 98": { + "dept": "CAT", + "description": "Course designated for lower-division Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive then individual special studies. ", + "name": "CAT 98", + "prereqs": [], + "title": "Culture, Art, and Technology Lower-Division Group Study (2 or 4)" + }, + "CENG": { + "dept": "CENG", + "description": "299. Graduate Research in Chemical Engineering (1\u201312)", + "name": "CENG", + "prereqs": [], + "title": "" + }, + "CENG 101A": { + "dept": "CENG", + "description": "Kinematics and equation of motion; hydrostatics;", + "name": "CENG 101A", + "prereqs": [], + "title": "Introductory Fluid Mechanics (4)" + }, + "CENG 101B": { + "dept": "CENG", + "description": "Conduction, convection, radiation heat transfer;", + "name": "CENG 101B", + "prereqs": [], + "title": "Heat Transfer (4)" + }, + "CENG 101C": { + "dept": "CENG", + "description": "Diffusive and convective mass transfer in", + "name": "CENG 101C", + "prereqs": [], + "title": "Mass Transfer (4)" + }, + "CENG 102": { + "dept": "CENG", + "description": "Thermodynamic behavior of pure substances", + "name": "CENG 102", + "prereqs": [], + "title": "Chemical Engineering Thermodynamics (4)" + }, + "CENG 113": { + "dept": "CENG", + "description": "Principles of chemical reactor analysis and", + "name": "CENG 113", + "prereqs": [], + "title": "Chemical Reaction Engineering (4)" + }, + "CENG 114": { + "dept": "CENG", + "description": "Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with\u00a0NANO\u00a0114. Students may not receive credit for both CENG 114 and NANO 114. ", + "name": "CENG 114", + "prereqs": [ + "CENG 15", + "NANO 15", + "MAE 8", + "MATH 20F" + ], + "title": "Probability and Statistical Methods for Engineers (4)" + }, + "CENG 122": { + "dept": "CENG", + "description": "Principles of analysis and design of systems", + "name": "CENG 122", + "prereqs": [], + "title": "Separation Processes (4)" + }, + "CENG 124A": { + "dept": "CENG", + "description": "Principles of chemical process design and", + "name": "CENG 124A", + "prereqs": [], + "title": "Chemical Plant and Process Design I (4)" + }, + "CENG 134": { + "dept": "CENG", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine.\u00a0Cross-listed with\u00a0NANO\u00a0134. Students may not receive credit for both\u00a0CENG\u00a0134 and\u00a0NANO\u00a0134. ", + "name": "CENG 134", + "prereqs": [ + "CHEM 6C" + ], + "title": "Polymeric Materials (4)." + }, + "CENG 157": { + "dept": "CENG", + "description": "Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching).\u00a0", + "name": "CENG 157", + "prereqs": [ + "CENG 101C" + ], + "title": "Process Technology in the Semiconductor Industry (4)" + }, + "CENG 15: Engineering Computation Using Matlab (4)": { + "dept": "CENG", + "description": "Introduction to solution of engineering problems using computational methods. Formulating problem statements, selecting algorithms, writing computer programs, and analyzing output using Matlab. Computational problems from NanoEngineering, chemical engineering, and materials science are introduced. The course requires no prior programming skills. Cross-listed with NANO 15. Students may not receive credit for both CENG 15 and NANO 15. ", + "name": "CENG 15: Engineering Computation Using Matlab (4)", + "prereqs": [], + "title": "" + }, + "CENG 207": { + "dept": "CENG", + "description": "Introduction to nanomedicine; diffusion and", + "name": "CENG 207", + "prereqs": [], + "title": "Nanomedicine (4)" + }, + "CENG 208": { + "dept": "CENG", + "description": "Basic engineering principles of nanofabrication.", + "name": "CENG 208", + "prereqs": [], + "title": "Nanofabrication (4)" + }, + "CENG 210A": { + "dept": "CENG", + "description": "Basic conservation laws, flow kinematics. The Navier-Stokes equations and some of its exact solutions, nondimensional parameters and different flow regimes, vorticity dynamics. Cross-listed with MAE 210A. ", + "name": "CENG 210A", + "prereqs": [ + "MAE 110A", + "MAE 101A", + "MAE 101B" + ], + "title": "Fluid Mechanics I (4)" + }, + "CENG 211": { + "dept": "CENG", + "description": "Understanding nanotechnology,", + "name": "CENG 211", + "prereqs": [], + "title": "Introduction to NanoEngineering (4)" + }, + "CENG 212": { + "dept": "CENG", + "description": "Development of quantitative understanding of the different", + "name": "CENG 212", + "prereqs": [], + "title": "Intermolecular and Surface Forces (4)" + }, + "CENG 213": { + "dept": "CENG", + "description": "(4)", + "name": "CENG 213", + "prereqs": [], + "title": "Nanoscale Synthesis and Characterization" + }, + "CENG 214": { + "dept": "CENG", + "description": "and Modeling (4)", + "name": "CENG 214", + "prereqs": [], + "title": "Nanoscale Physics" + }, + "CENG 215": { + "dept": "CENG", + "description": "Integration\u00a0(4)", + "name": "CENG 215", + "prereqs": [], + "title": "Nanosystems" + }, + "CENG 221A": { + "dept": "CENG", + "description": "Conduction, convection, and radiation heat transfer development of energy conservation equations. Analytical and numerical solutions to heat transport problems. Specific topics and applications vary. Cross-listed with MAE 221A. ", + "name": "CENG 221A", + "prereqs": [ + "MAE 101A", + "MAE 101C", + "MAE 101B", + "CENG 101B", + "CENG 101C", + "CENG 101A" + ], + "title": "Heat Transfer (4)" + }, + "CENG 221B": { + "dept": "CENG", + "description": "Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. Cross-listed with MAE 221B. ", + "name": "CENG 221B", + "prereqs": [ + "MAE 101A", + "MAE 101C", + "MAE 101B", + "CENG 101B", + "CENG 101C", + "CENG 101A" + ], + "title": "Mass Transfer (4)" + }, + "CENG 230": { + "dept": "CENG", + "description": "Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with NANO 230. Students may not receive credit for both CENG 230 and NANO 230. ", + "name": "CENG 230", + "prereqs": [], + "title": "Synchrotron Characterization of Nanomaterials (4)" + }, + "CENG 252": { + "dept": "CENG", + "description": "Analysis of chemical rate processes; complex kinetic systems. Chemical reactor properties in steady state and transient operations; optimal design policies. The interaction of chemical and physical transport processes in affecting reactor design and operating characteristics. Uniqueness/multiplicity and stability in reactor systems. Applications of the heterogeneous reactor systems. ", + "name": "CENG 252", + "prereqs": [], + "title": "Chemical Reaction Engineering (4)" + }, + "CENG 253": { + "dept": "CENG", + "description": "Physics and chemistry of heterogeneous catalysis. Adsorption/desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with NANO 259. Students may not receive credit for both CENG 253 and NANO 259. ", + "name": "CENG 253", + "prereqs": [], + "title": "Heterogeneous Catalysis (4)" + }, + "CENG 254": { + "dept": "CENG", + "description": "Introduction to microbiology as relevant to the main topic, biological reactor analysis. Fermentation and enzyme technology. ", + "name": "CENG 254", + "prereqs": [], + "title": "Biochemical Engineering Fundamentals (4)" + }, + "CENG 255": { + "dept": "CENG", + "description": "Fundamentals of electrochemistry and electrochemical engineering. Structure of the double layer, cell potential and electrochemical thermodynamics, charge transfer kinetics, electrochemical transport phenomena, and introduction to colloidal chemistry. Applications such as corrosion prevention, electroplating, reactor design, batteries, and fuel cells. ", + "name": "CENG 255", + "prereqs": [], + "title": "Electrochemical Engineering (4)" + }, + "CENG 256": { + "dept": "CENG", + "description": "", + "name": "CENG 256", + "prereqs": [], + "title": "Biomaterials and Biomimetics (4)" + }, + "CENG 257": { + "dept": "CENG", + "description": "Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid-state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching).\u00a0", + "name": "CENG 257", + "prereqs": [], + "title": "Process Technology in the Semiconductor Industry (4)" + }, + "CENG 296": { + "dept": "CENG", + "description": "Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only.\u00a0", + "name": "CENG 296", + "prereqs": [], + "title": "Independent Study in Chemical Engineering (4)" + }, + "CENG 4": { + "dept": "CENG", + "description": "Hands-on, team-based laboratory activities to demonstrate modern applications of chemical engineering, and the role of the chemical engineer in academia and industry. Emphasis on teamwork, safe laboratory practices, and student-directed problem solving. ", + "name": "CENG 4", + "prereqs": [ + "CENG 4" + ], + "title": "Experience Chemical Engineering (1)" + }, + "CHEM 1": { + "dept": "CHEM", + "description": "This seminar connects first-year students with the chemistry community (peers, staff, faculty, and other researchers) as they explore learning resources, study strategies, professional development, and current areas of active research. With an emphasis on academic and career planning, the series will feature guest lectures by UC San Diego faculty and staff, as well as industrial scientists and representatives from professional organizations such as the American Chemical Society (ACS). P/NP grades only.", + "name": "CHEM 1", + "prereqs": [], + "title": "The Scope of Chemistry and Biochemistry (1)" + }, + "CHEM 100A": { + "dept": "CHEM", + "description": "Laboratory course emphasizing classical quantitative chemical analysis techniques, including separation and gravimetric methods, as well as an introduction to instrumental analysis. Program or materials fees may apply. ", + "name": "CHEM 100A", + "prereqs": [ + "CHEM 6CH", + "CHEM 7LM", + "CHEM 6C", + "CHEM 6BL", + "CHEM 7L", + "PHYS 2BL", + "PHYS 2CL" + ], + "title": "Analytical Chemistry Laboratory (4)" + }, + "CHEM 100B": { + "dept": "CHEM", + "description": "Hands-on laboratory course focuses on development of correct laboratory work habits and methodologies for the operation of modern analytical instrumentation. Gas chromatography, mass spectrometry, high performance liquid chromatography, ion chromatography, atomic absorption spectroscopy, fluorescence spectrometry, infrared spectrometry. Lecture focuses on fundamental theoretical principles, applications, and limitations of instrumentation used for qualitative and quantitative analysis. Program or materials fees may apply. Students may not receive credit for both CHEM 100B and 10. ", + "name": "CHEM 100B", + "prereqs": [ + "CHEM 100A", + "PHYS 2DL", + "PHYS 2C", + "PHYS 2D", + "PHYS 2BL", + "PHYS 2CL" + ], + "title": "Instrumental Chemistry Laboratory (5)" + }, + "CHEM 105A": { + "dept": "CHEM", + "description": "Laboratory course in experimental physical chemistry. Program or materials fees may apply. ", + "name": "CHEM 105A", + "prereqs": [ + "CHEM 100A", + "PHYS 2BL", + "PHYS 2DL", + "CHEM 133", + "CHEM 131", + "PHYS 2CL", + "CHEM 126", + "CHEM 127" + ], + "title": "Physical Chemistry Laboratory (4)" + }, + "CHEM 105B": { + "dept": "CHEM", + "description": "Laboratory course in experimental physical chemistry. Program or materials fees may apply. ", + "name": "CHEM 105B", + "prereqs": [ + "CHEM 105A" + ], + "title": "Physical Chemistry Laboratory (4)" + }, + "CHEM 108": { + "dept": "CHEM", + "description": "The application of techniques to study protein", + "name": "CHEM 108", + "prereqs": [], + "title": "Protein Biochemistry Laboratory (6)" + }, + "CHEM 109": { + "dept": "CHEM", + "description": "This laboratory will introduce students to the tools of molecular biology", + "name": "CHEM 109", + "prereqs": [], + "title": "Recombinant DNA Laboratory (6)" + }, + "CHEM 11": { + "dept": "CHEM", + "description": "Introduction to the material world of atoms and small inorganic molecules. Intended for nonscience majors. Students may not receive credit for both CHEM 4 and CHEM 11.", + "name": "CHEM 11", + "prereqs": [], + "title": "The Periodic Table (4)" + }, + "CHEM 111": { + "dept": "CHEM", + "description": "A chemical perspective of the origin and evolution of the biogeochemical systems of stars, elements, and planets through time. The chemical evolution of the earth, its atmosphere, and oceans, and their historical records leading to early life are discussed. The content includes search techniques for chemical traces of life on other planets. ", + "name": "CHEM 111", + "prereqs": [ + "CHEM 6CH", + "CHEM 6C" + ], + "title": "Origins of Life and the Universe (4)" + }, + "CHEM 113": { + "dept": "CHEM", + "description": "(4)", + "name": "CHEM 113", + "prereqs": [], + "title": "Physical Chemistry of Biological Macromolecules" + }, + "CHEM 114A": { + "dept": "CHEM", + "description": "Introduction to biochemistry from a structural", + "name": "CHEM 114A", + "prereqs": [], + "title": "Biochemical Structure and Function (4)" + }, + "CHEM 114B": { + "dept": "CHEM", + "description": "This course is an introduction to the metabolic reactions in the cell which produce and utilize energy. The course material will include energy-producing pathways: glycolysis, Krebs cycle, oxidative phosphorylation, fatty-acid oxidation. Biosynthesis of amino acids, lipids, carbohydrates, purines, pyrimidines, proteins, nucleic acids. Students may not receive credit for both CHEM 114B and BIBC 102. ", + "name": "CHEM 114B", + "prereqs": [ + "CHEM 40B", + "CHEM 40BH", + "CHEM 140B", + "CHEM 140BH" + ], + "title": "Biochemical Energetics and Metabolism (4)" + }, + "CHEM 114C": { + "dept": "CHEM", + "description": "Mechanisms of biosynthesis of macromolecules\u2014particularly", + "name": "CHEM 114C", + "prereqs": [], + "title": "Biosynthesis of Macromolecules (4)" + }, + "CHEM 114D": { + "dept": "CHEM", + "description": "This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 214. ", + "name": "CHEM 114D", + "prereqs": [ + "CHEM 114B", + "CHEM 114C", + "CHEM 114A" + ], + "title": "Molecular and Cellular Biochemistry (4)" + }, + "CHEM 116": { + "dept": "CHEM", + "description": "A discussion of the chemistry of representative enzyme catalyzed reactions", + "name": "CHEM 116", + "prereqs": [], + "title": "Chemistry of Enzyme Catalyzed Reactions (4)" + }, + "CHEM 118": { + "dept": "CHEM", + "description": "A survey of the biochemical action of drugs and toxins as well as their", + "name": "CHEM 118", + "prereqs": [], + "title": "Pharmacology and Toxicology (4)" + }, + "CHEM 12": { + "dept": "CHEM", + "description": "Introduction to molecular bonding and structure and chemical reactions, including organic molecules and synthetic polymers. Intended for nonscience majors. Cannot be taken for credit after any organic chemistry course. ", + "name": "CHEM 12", + "prereqs": [ + "CHEM 11" + ], + "title": "Molecules and Reactions (4)" + }, + "CHEM 120A": { + "dept": "CHEM", + "description": "The chemistry of the main group elements in", + "name": "CHEM 120A", + "prereqs": [], + "title": "Inorganic Chemistry I (4)" + }, + "CHEM 120B": { + "dept": "CHEM", + "description": "A continuation of the discussion of structure, bonding, and reactivity with emphasis on transition metals and other elements using filled d orbitals to form bonds. Coordination chemistry in terms of valence bond, crystal field, and molecular orbital theory. The properties and reactivities of transition metal complexes including organometallic compounds. ", + "name": "CHEM 120B", + "prereqs": [ + "CHEM 120A" + ], + "title": "Inorganic Chemistry II (4)" + }, + "CHEM 123": { + "dept": "CHEM", + "description": "Synthesis, analysis, and physical characterization of inorganic chemical compounds. Program or materials fees may apply. Recommended preparation: concurrent or prior enrollment in CHEM 120B. ", + "name": "CHEM 123", + "prereqs": [ + "CHEM 120A", + "CHEM 43AM", + "CHEM 143AM", + "CHEM 143A", + "CHEM 43A" + ], + "title": "Advanced Inorganic Chemistry Laboratory (4)" + }, + "CHEM 125": { + "dept": "CHEM", + "description": "The roles of metal ions in biological systems, with emphasis on transition metal ions in enzymes that transfer electrons, bind oxygen, and fix nitrogen. Also included are metal complexes in medicine, toxicity, and metal ion storage and transport. May be coscheduled with CHEM 225. ", + "name": "CHEM 125", + "prereqs": [ + "CHEM 120A", + "CHEM 114A" + ], + "title": "Bioinorganic Chemistry (4)" + }, + "CHEM 126": { + "dept": "CHEM", + "description": "With CHEM 127, CHEM 126 condenses Physical Chemistry into two quarters. They may be taken in either order. The emphasis is on biochemical and environmental applications. Quantum mechanics and molecular structure, spectroscopy. Students may receive credit for only one of the following: CHEM 126, 133, or 130. ", + "name": "CHEM 126", + "prereqs": [ + "PHYS 2C", + "MATH 20D", + "CHEM 6AH", + "CHEM 6B", + "PHYS 2D" + ], + "title": "Physical Chemistry: Quantum Mechanics (4)" + }, + "CHEM 127": { + "dept": "CHEM", + "description": "With CHEM 126, CHEM 127 condenses Physical Chemistry into two quarters. They may be taken in either order. The emphasis is on biochemical and environmental applications. Thermodynamics, first and second laws, thermochemistry, chemical equilibrium, solutions, kinetic theory, reaction kinetics. Students may not receive credit for both CHEM 127 and 131. ", + "name": "CHEM 127", + "prereqs": [ + "PHYS 2C", + "CHEM 6BH", + "MATH 20C", + "PHYS 2D", + "CHEM 6C" + ], + "title": "Physical Chemistry: Thermodynamics (4)" + }, + "CHEM 13": { + "dept": "CHEM", + "description": "Introduction to biochemistry for nonscience majors. Topics include carbohydrates, lipids, amino acids and proteins, with an introduction to metabolic pathways in human physiology.", + "name": "CHEM 13", + "prereqs": [], + "title": "Chemistry of Life (4)" + }, + "CHEM 130": { + "dept": "CHEM", + "description": "With CHEM 131 and 132, CHEM 130 is part of the Physical Chemistry sequence taught over three quarters. Recommended as the first course of the sequence. Key topics covered in this course include quantum mechanics, atomic and molecular spectroscopy, and molecular structure. Students may not receive credit for both CHEM 130, 133, or 126. ", + "name": "CHEM 130", + "prereqs": [ + "CHEM 6CH", + "PHYS 2C", + "MATH 20D", + "PHYS 2D", + "CHEM 6C" + ], + "title": "Chemical Physics: Quantum Mechanics (4)" + }, + "CHEM 131": { + "dept": "CHEM", + "description": "With CHEM 130 and 132, CHEM 131 is part of the Physical Chemistry sequence taught over three quarters. Recommended as the second course of the sequence. Key topics covered in this course include thermodynamics, chemical equilibrium, phase equilibrium, and chemistry of solutions. Students may receive credit for only one of the following: CHEM 131 or 127. ", + "name": "CHEM 131", + "prereqs": [ + "CHEM 6CH", + "PHYS 2C", + "MATH 20C", + "PHYS 2D", + "CHEM 6C" + ], + "title": "Chemical Physics: Stat Thermo I (4)" + }, + "CHEM 132": { + "dept": "CHEM", + "description": "With CHEM 130 and 131, CHEM 132 is part of the Physical Chemistry sequence taught over three quarters. Recommended as the third course of the sequence. Key topics covered in this course include chemical statistics, kinetic theory, and reaction kinetics. ", + "name": "CHEM 132", + "prereqs": [ + "CHEM 133", + "CHEM 131", + "CHEM 130" + ], + "title": "Chemical Physics: Stat Thermo II (4)" + }, + "CHEM 134": { + "dept": "CHEM", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine. Students may not receive credit for both CENG 134, CHEM 134, or NANO 134. ", + "name": "CHEM 134", + "prereqs": [ + "PHYS 2C", + "CHEM 6C" + ], + "title": "Polymeric Materials (4)" + }, + "CHEM 135": { + "dept": "CHEM", + "description": "Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena, and the density matrices. Instrumentation, measurement, and interpretation. May be coscheduled with CHEM 235. Prior or concurrent enrollment in CHEM 105A recommended. ", + "name": "CHEM 135", + "prereqs": [ + "CHEM 133", + "CHEM 130", + "MATH 20D", + "CHEM 126" + ], + "title": "Molecular Spectroscopy (4)" + }, + "CHEM 141": { + "dept": "CHEM", + "description": "This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science. ", + "name": "CHEM 141", + "prereqs": [ + "CHEM 40A", + "CHEM 140AH", + "CHEM 140A", + "CHEM 40AH" + ], + "title": "Organic Nanomaterials (4)" + }, + "CHEM 142": { + "dept": "CHEM", + "description": "The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field, starting from basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. May be coscheduled with CHEM 242. CHEM 40C and at least one course in either general biology, molecular biology, or cell biology is strongly encouraged. ", + "name": "CHEM 142", + "prereqs": [ + "CHEM 40B", + "BILD 1", + "CHEM 140B", + "CHEM 140BH", + "BIBC 100", + "CHEM 40BH", + "CHEM 114A" + ], + "title": "Introduction to Glycosciences (4)" + }, + "CHEM 143B": { + "dept": "CHEM", + "description": "Continuation of CHEM 43A, 143A, 43AM, and 143AM, emphasizing synthetic methods of organic chemistry. Enrollment is limited to majors in the Department of Chemistry and Biochemistry unless space is available. A materials fee is required. ", + "name": "CHEM 143B", + "prereqs": [ + "CHEM 43AM", + "CHEM 143AM", + "CHEM 143A", + "CHEM 140B", + "CHEM 43A" + ], + "title": "Organic Chemistry Laboratory (4)" + }, + "CHEM 143C": { + "dept": "CHEM", + "description": "Identification of unknown organic compounds by a combination of chemical and physical techniques. This course is intended for chemistry majors only (CH25, CH28, CH31, CH32, CH33, CH34, CH35, CH36, CH37). Program or materials fees may apply. ", + "name": "CHEM 143C", + "prereqs": [ + "CHEM 143A", + "CHEM 43AM", + "CHEM 43A", + "CHEM 140B", + "CHEM 143AM" + ], + "title": "Organic Chemistry Laboratory (5)" + }, + "CHEM 143D": { + "dept": "CHEM", + "description": "Advanced organic synthesis. Relationships between molecular structure and reactivity using modern synthetic methods and advanced instrumentation. Stresses importance of molecular design, optimized reaction conditions for development of practically useful synthesis, and problem-solving skills. A materials fee is required. ", + "name": "CHEM 143D", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH", + "CHEM 143B" + ], + "title": "Molecular Design and Synthesis (4)" + }, + "CHEM 145": { + "dept": "CHEM", + "description": "Fundamentals of the chemistry and biochemistry of petroleum and biofuel technologies. This course explores chemical identity and properties, metabolic pathways and engineering, refining processes, and analytical techniques related to current and future biofuels. ", + "name": "CHEM 145", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH" + ], + "title": "Chemistry and Biochemistry of Biofuels (4)" + }, + "CHEM 146": { + "dept": "CHEM", + "description": "Methodology of mechanistic organic chemistry; integration of rate expression, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. May be coscheduled with CHEM 246. ", + "name": "CHEM 146", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH" + ], + "title": "Kinetics and Mechanism of Organic Reactions (4)" + }, + "CHEM 151": { + "dept": "CHEM", + "description": "A look at some of nature\u2019s most intriguing molecules and the ability to discover, synthesize, modify, and use them. The role of chemistry in society, and how chemical synthesis\u2014the art and science of constructing molecules\u2014shapes our world. ", + "name": "CHEM 151", + "prereqs": [ + "CHEM 40A", + "CHEM 140AH", + "CHEM 140A", + "CHEM 40AH" + ], + "title": "Molecules that Changed the World (4)" + }, + "CHEM 152": { + "dept": "CHEM", + "description": "A survey of reactions of particular utility in the organic laboratory. Emphasis is on methods of preparation of carbon-carbon bonds and oxidation reduction sequences. May be coscheduled with CHEM 252. ", + "name": "CHEM 152", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH" + ], + "title": "Synthetic Methods in Organic Chemistry (4)" + }, + "CHEM 154": { + "dept": "CHEM", + "description": "A qualitative approach", + "name": "CHEM 154", + "prereqs": [], + "title": "Mechanisms of Organic Reactions (4)" + }, + "CHEM 155": { + "dept": "CHEM", + "description": "(Conjoined with CHEM 255.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper/exam. (May not be offered every year.) ", + "name": "CHEM 155", + "prereqs": [ + "CHEM 252", + "CHEM 152" + ], + "title": "Synthesis of Complex Molecules (4)" + }, + "CHEM 156": { + "dept": "CHEM", + "description": "and Properties of Organic Molecules (4)", + "name": "CHEM 156", + "prereqs": [], + "title": "Structure" + }, + "CHEM 157": { + "dept": "CHEM", + "description": "A comprehensive survey of modern bioorganic and natural products chemistry. Topics will include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 257. ", + "name": "CHEM 157", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH" + ], + "title": "Bioorganic and Natural Products Chemistry (4)" + }, + "CHEM 158": { + "dept": "CHEM", + "description": "Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be emphasized. May be coscheduled with CHEM 258. ", + "name": "CHEM 158", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH" + ], + "title": "Applied Spectroscopy (4)" + }, + "CHEM 164": { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 164.)", + "name": "CHEM 164", + "prereqs": [], + "title": "Structural Biology of Viruses (4)" + }, + "CHEM 165": { + "dept": "CHEM", + "description": "(Conjoined with CHEM 265; cross-listed with BIMM 162/BGGN 262.) Biological macromolecules and supramolecular complexes as well as organelles, and small cells are being examined in three dimensions by modern electron cryomicroscopy and image reconstruction techniques. The basic principles of transmission electron microscopy and 3D image reconstruction are discussed. CHEM 265/BGGN 262 students will be required to complete an additional assignment/exam beyond that expected of students in CHEM 165/BIMM 162. ", + "name": "CHEM 165", + "prereqs": [ + "BIBC 110", + "BIBC 100", + "PHYS 2C", + "PHYS 2D", + "PHYS 1C", + "CHEM 114A" + ], + "title": "3D Electron Microscopy of Macromolecules (4)" + }, + "CHEM 167": { + "dept": "CHEM", + "description": "Basics of medicinal chemistry, emphasizing rigorous descriptions of receptor-protein structure, interactions, and dynamics; their implications for drug development; and an integrated treatment of pharmacodynamic and pharmacokinetic considerations in drug design. Treats computational approaches as well as practical experimental approaches. ", + "name": "CHEM 167", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH", + "CHEM 114A" + ], + "title": "Medicinal Chemistry (4)" + }, + "CHEM 168": { + "dept": "CHEM", + "description": "Practical methods to make drugs currently in use and to design future drugs. Treats both chemical synthesis and biologics like monoclonal antibodies. Topics include fragment-based screening, solid phase synthesis, directed evolution, and bioconjugation as well as efficacy, metabolism, and toxicity. ", + "name": "CHEM 168", + "prereqs": [ + "CHEM 40C", + "CHEM 40CH", + "CHEM 140C", + "CHEM 140CH", + "CHEM 114A" + ], + "title": "Drug Synthesis and Design (4)" + }, + "CHEM 171": { + "dept": "CHEM", + "description": "An introduction to chemical concerns in nature with emphasis on atmospheric issues like air pollution, chlorofluorocarbons and the ozone hole, greenhouse effects and climate change, impacts of radioactive waste, sustainable resource usage, and risks and benefits of energy sources. Students may only receive credit for one of the following: CHEM 149A or 171. ", + "name": "CHEM 171", + "prereqs": [ + "CHEM 6CH", + "CHEM 6C" + ], + "title": "Environmental Chemistry I (4)" + }, + "CHEM 172": { + "dept": "CHEM", + "description": "An introduction to chemical concerns in nature with emphasis on soil and water issues like agricultural productivity, biological impacts in the environment, deforestation, ocean desserts, natural and manmade disasters (fires, nuclear winter, volcanoes), and waste handling. Recommended preparation: CHEM 171 (formerly 149A). Students may only receive credit for one of the following: CHEM 172 or 149B. ", + "name": "CHEM 172", + "prereqs": [ + "CHEM 6CH", + "CHEM 6C" + ], + "title": "Environmental Chemistry II (4)" + }, + "CHEM 173": { + "dept": "CHEM", + "description": "Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 273. ", + "name": "CHEM 173", + "prereqs": [ + "CHEM 6CH", + "CHEM 6C" + ], + "title": "Atmospheric Chemistry (4)" + }, + "CHEM 174": { + "dept": "CHEM", + "description": "(Cross-listed with SIO 141.) Introduction to the chemistry and distribution of the elements in seawater, emphasizing basic chemical principles such as electron structure, chemical bonding, and group and periodic properties and showing how these affect basic aqueous chemistry in marine systems. ", + "name": "CHEM 174", + "prereqs": [ + "CHEM 6C" + ], + "title": "Chemical Principles of Marine Systems (4)" + }, + "CHEM 182": { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 182/BENG 182/CSE 182.) This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object oriented databases, data modeling, and description. Survey of current biological database with respect to above, implementation of database on a biological topic. Bioinformatics majors only. ", + "name": "CHEM 182", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Biological Databases (4)" + }, + "CHEM 184": { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 184/BENG 184/CSE 184.)", + "name": "CHEM 184", + "prereqs": [], + "title": "Computational Molecular Biology (4)" + }, + "CHEM 185": { + "dept": "CHEM", + "description": "Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. ", + "name": "CHEM 185", + "prereqs": [ + "CHEM 133", + "MATH 21C", + "MATH 20C", + "CHEM 126" + ], + "title": "Introduction to Computational Chemistry (4)" + }, + "CHEM 187": { + "dept": "CHEM", + "description": "of Teaching and Learning Science (4)", + "name": "CHEM 187", + "prereqs": [], + "title": "Foundations" + }, + "CHEM 188": { + "dept": "CHEM", + "description": "(Cross-listed with EDS 123.) In the lecture", + "name": "CHEM 188", + "prereqs": [], + "title": "Capstone Seminar in Science Education (4)" + }, + "CHEM 192": { + "dept": "CHEM", + "description": "in Chemistry and Biochemistry (1)", + "name": "CHEM 192", + "prereqs": [], + "title": "Senior Seminar" + }, + "CHEM 194": { + "dept": "CHEM", + "description": "Selected topics in the field of chemistry. Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current subtitles will be listed on the Schedule of Classes. May be taken for credit up to four times as topics vary. Students may not receive credit for the same topic.", + "name": "CHEM 194", + "prereqs": [], + "title": "Special Topics in Chemistry (2 or 4)" + }, + "CHEM 195": { + "dept": "CHEM", + "description": "An introduction to teaching chemistry. Students are required to attend a weekly class on methods of teaching chemistry and will teach a discussion section of one of the lower-division chemistry courses. Attendance at lecture of the lower-division course in which the student is participating is required. P/NP grades only. ", + "name": "CHEM 195", + "prereqs": [], + "title": "Methods of Teaching Chemistry (4)" + }, + "CHEM 196": { + "dept": "CHEM", + "description": "Independent literature or classroom research", + "name": "CHEM 196", + "prereqs": [], + "title": "Reading and Research in Chemical Education (2 or 4)" + }, + "CHEM 197": { + "dept": "CHEM", + "description": "An internship program that provides work experience with public/private sector employers. Subject to the availability of positions, students will work in a local company under the supervision of a faculty member and site supervisor. P/NP grades only. May be taken for credit three times. ", + "name": "CHEM 197", + "prereqs": [ + "ESSC 197", + "ESSC 198", + "ESSC 199" + ], + "title": "Chemistry Internship (2 or 4)" + }, + "CHEM 198": { + "dept": "CHEM", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by arrangement with a chemistry and biochemistry faculty member. P/NP grades only. May be taken for credit two times. ", + "name": "CHEM 198", + "prereqs": [ + "ESSC 197", + "ESSC 198", + "ESSC 199" + ], + "title": "Directed Group Study (1\u20134)" + }, + "CHEM 199": { + "dept": "CHEM", + "description": "Independent literature or laboratory research by arrangement with, and under the direction of, a member of the Department of Chemistry and Biochemistry faculty. Students must register on a P/NP basis. ", + "name": "CHEM 199", + "prereqs": [ + "CHEM 199" + ], + "title": "Reading and Research (2 or 4)" + }, + "CHEM 200B": { + "dept": "CHEM", + "description": "Fundamental theoretical principles, capabilities, applications, and limitations of modern analytical instrumentation used for qualitative and quantitative analysis. Students will learn how to define the nature of an analytical problem and how to select an appropriate analytical method. Letter grades only. Recommended preparation: background equivalent to CHEM 100A and introductory optics and electricity from physics. (W)", + "name": "CHEM 200B", + "prereqs": [], + "title": "Fundamentals of Instrumental Analysis (4)" + }, + "CHEM 204": { + "dept": "CHEM", + "description": "(Conjoined with CHEM 104.) Analysis", + "name": "CHEM 204", + "prereqs": [], + "title": "Introduction to X-ray Crystallography (4)" + }, + "CHEM 207": { + "dept": "CHEM", + "description": "A broad introduction to the uses of nuclear magnetic resonance", + "name": "CHEM 207", + "prereqs": [], + "title": "Protein NMR (4)" + }, + "CHEM 209": { + "dept": "CHEM", + "description": "Structures and functions of nucleic acids, folding and catalysis of nucleic acids, motifs and domains of proteins, principles of protein-protein interactions, chemistry of protein/DNA and protein/RNA interfaces, conformational changes in macromolecular recognition. ", + "name": "CHEM 209", + "prereqs": [], + "title": "Macromolecular Recognition (4)" + }, + "CHEM 210": { + "dept": "CHEM", + "description": "Overview of new systems biology \u201c-omics\u201d approached to lipid metabolism and cell signaling, including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Cross-listed with BIOM 209 and PHAR 208. Recommended preparation: one quarter of undergraduate biochemistry.", + "name": "CHEM 210", + "prereqs": [], + "title": "Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)" + }, + "CHEM 213A": { + "dept": "CHEM", + "description": "A discussion of structures of nucleic acids and proteins and their larger assemblies. The theoretical basis for nucleic acid and protein structure, as well as methods of structure determination including X-ray crystallography, cryoEM, and computational modeling approaches will be covered. Letter grades only. ", + "name": "CHEM 213A", + "prereqs": [], + "title": "Structure of Biomolecules and Biomolecular Assemblies (4)" + }, + "CHEM 213B": { + "dept": "CHEM", + "description": "Renumbered from CHEM 213. A discussion of the physical principles governing biomolecular structure and function. Experimental and theoretical approaches to understand protein dynamics, enzyme kinetics, and mechanisms will be covered. Students may only receive credit for one of the following: CHEM 213 or 213B. May be coscheduled with CHEM 113.", + "name": "CHEM 213B", + "prereqs": [], + "title": "Biophysical Chemistry of Macromolecules (4)" + }, + "CHEM 214": { + "dept": "CHEM", + "description": "This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 114D. ", + "name": "CHEM 214", + "prereqs": [], + "title": "Molecular and Cellular Biochemistry (4)" + }, + "CHEM 216": { + "dept": "CHEM", + "description": "A discussion of current topics in chemical biology including mechanistic aspects of enzymes and cofactors, use of modified enzymes to alter biochemical pathways, chemical intervention in cellular processes, and natural product discovery. ", + "name": "CHEM 216", + "prereqs": [], + "title": "Chemical Biology (4)" + }, + "CHEM 217": { + "dept": "CHEM", + "description": "Selected topics in RNA structure and function, such as the ribosome, ribozyme, antibiotics, splicing and RNA interference, as they relate to the RNA role in gene expression and regulation. Emphasis on techniques to study the dynamics of macromolecular complexes and the mechanism of RNA catalysis. ", + "name": "CHEM 217", + "prereqs": [], + "title": "RNA Structure, Function, and Biology (4)" + }, + "CHEM 219A": { + "dept": "CHEM", + "description": "This special-topics course is designed for first-year graduate students in biochemistry. Topics presented in recent years have included protein processing, the chemical modification of proteins, the biosynthesis and function of glycoproteins, lipid biochemistry and membrane structure, and bioenergetics. ", + "name": "CHEM 219A", + "prereqs": [ + "CHEM 114A" + ], + "title": "Special Topics in Biochemistry (4)" + }, + "CHEM 219B": { + "dept": "CHEM", + "description": "Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.", + "name": "CHEM 219B", + "prereqs": [], + "title": "Special Topics in Biochemistry (4)" + }, + "CHEM 219C": { + "dept": "CHEM", + "description": "Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.", + "name": "CHEM 219C", + "prereqs": [], + "title": "Special Topics in Biochemistry (2 or 4)" + }, + "CHEM 220": { + "dept": "CHEM", + "description": "Modulation cellular activity and influencing viral fate involve", + "name": "CHEM 220", + "prereqs": [], + "title": "Regulatory Circuits in Cells (4)" + }, + "CHEM 221": { + "dept": "CHEM", + "description": "The aim of this course is to develop an appreciation for a variety of topics in signal transduction. We will discuss several historical developments while the focus will be on current issues. Both experimental approaches and results will be included in our discussions. Topics may vary from year to year. ", + "name": "CHEM 221", + "prereqs": [], + "title": "Signal Transduction (4)" + }, + "CHEM 222": { + "dept": "CHEM", + "description": "(Cross-listed with MATS 227.) Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands versus bonds, free electron theory.", + "name": "CHEM 222", + "prereqs": [], + "title": "Structure and Analysis of Solids (4)" + }, + "CHEM 223": { + "dept": "CHEM", + "description": "A survey of this field from a synthetic and mechanistic viewpoint. Fundamental reactivity patterns for transition element organometallic compounds will be discussed and organized according to periodic trends. Transition metal catalyzed reactions of importance to organic synthesis and industrial chemistry will be presented from a mechanistic perspective. Letter grades only. ", + "name": "CHEM 223", + "prereqs": [], + "title": "Organometallic Chemistry (4)" + }, + "CHEM 224": { + "dept": "CHEM", + "description": "Application of physical techniques to the elucidation of the structure of inorganic complex ions and organometallic compounds. Topics covered include group theory, and its application to vibrational, magnetic resonance and Raman spectroscopy. (May not be offered every year.)", + "name": "CHEM 224", + "prereqs": [], + "title": "Spectroscopic Techniques (4)" + }, + "CHEM 225": { + "dept": "CHEM", + "description": "The role of metal", + "name": "CHEM 225", + "prereqs": [], + "title": "Bioinorganic Chemistry (4)" + }, + "CHEM 226": { + "dept": "CHEM", + "description": "Advanced aspects of structure and bonding in transition metal", + "name": "CHEM 226", + "prereqs": [], + "title": "Transition Metal Chemistry (4)" + }, + "CHEM 227": { + "dept": "CHEM", + "description": "Seminars presented by faculty and students on topics of current interest in inorganic chemistry, including areas such as bioinorganic, organometallic and physical-inorganic chemistry. The course is designed to promote a critical evaluation of the available data in specialized areas of inorganic chemistry. Each quarter three or four different topics will be discussed. (S/U grades only.) ", + "name": "CHEM 227", + "prereqs": [], + "title": "Seminar in Inorganic Chemistry (2)" + }, + "CHEM 228": { + "dept": "CHEM", + "description": "Survey of the chemistry of semiconductors, superconductors, molecular magnetic materials, zeolites, fast ion conductors, electronically conducting polymers and ceramics. Synthetic techniques such as molecular precursor design, the sol-gel process, electrosynthesis, and high-temperature thermolysis will be covered. (May not be offered every year.)", + "name": "CHEM 228", + "prereqs": [], + "title": "Solid State Chemistry (4)" + }, + "CHEM 229": { + "dept": "CHEM", + "description": "Selection of topics of current interest. May be repeated for credit when topics vary. (May not be offered every year.)", + "name": "CHEM 229", + "prereqs": [], + "title": "Special Topics in Inorganic Chemistry (2\u20134)" + }, + "CHEM 230A": { + "dept": "CHEM", + "description": "Theoretical basis of quantum", + "name": "CHEM 230A", + "prereqs": [], + "title": "Quantum Mechanics I (4)" + }, + "CHEM 230B": { + "dept": "CHEM", + "description": "Mechanics II (4)", + "name": "CHEM 230B", + "prereqs": [], + "title": "Quantum" + }, + "CHEM 231": { + "dept": "CHEM", + "description": "Classical kinetics, transition state theory, unimolecular decomposition,", + "name": "CHEM 231", + "prereqs": [], + "title": "Chemical Kinetics and Molecular Reaction Dynamics (4)" + }, + "CHEM 232A": { + "dept": "CHEM", + "description": "Derivation of thermodynamics", + "name": "CHEM 232A", + "prereqs": [], + "title": "Statistical Mechanics I (4)" + }, + "CHEM 232B": { + "dept": "CHEM", + "description": "Interacting systems at equilibrium, both classical (liquids)", + "name": "CHEM 232B", + "prereqs": [], + "title": "Statistical Mechanics II (4)" + }, + "CHEM 235": { + "dept": "CHEM", + "description": "Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena and the density matrices. Instrumentation, measurement, and interpretation. ", + "name": "CHEM 235", + "prereqs": [], + "title": "Molecular Spectroscopy (4)" + }, + "CHEM 236": { + "dept": "CHEM", + "description": "Explore physical and analytical chemistry of surfaces. Topics include chemisorption and physisorption, sticking probabilities, adsorption isotherms, and passivation of semiconductors.", + "name": "CHEM 236", + "prereqs": [], + "title": "Chemical Dynamics on Surfaces (4)" + }, + "CHEM 239": { + "dept": "CHEM", + "description": "Topics of special interest will be presented. Examples include NMR, solid-state chemistry, phase transitions, stochastic processes, scattering theory, nonequilibrium processes, tensor transformations, and advanced topics in statistical mechanics, thermodynamics, and chemical kinetics. (May not be offered every year.)", + "name": "CHEM 239", + "prereqs": [], + "title": "Special Topics in Chemical Physics (2 or 4)" + }, + "CHEM 240": { + "dept": "CHEM", + "description": "(Cross-listed with NANO 255.) Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electro-chemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. (May not be offered every year.)", + "name": "CHEM 240", + "prereqs": [], + "title": "Electrochemistry (4)" + }, + "CHEM 241": { + "dept": "CHEM", + "description": "(Cross-listed with NANO 241.) This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science.", + "name": "CHEM 241", + "prereqs": [], + "title": "Organic Nanomaterials (4)" + }, + "CHEM 242": { + "dept": "CHEM", + "description": "The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field starting from the basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. This course is geared to introduce students with limited prior exposure to the field, supported by selected readings and class notes. May be coscheduled with CHEM 142. Recommended preparation: undergraduate-level organic chemistry and at least one previous course in either general biology, molecular biology, or cell biology is strongly encouraged.", + "name": "CHEM 242", + "prereqs": [], + "title": "Introduction to Glycosciences (4)" + }, + "CHEM 246": { + "dept": "CHEM", + "description": "Methodology of mechanistic organic chemistry: integration of rate expressions, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, substituent effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. (May not be offered every year.)", + "name": "CHEM 246", + "prereqs": [], + "title": "Kinetics and Mechanism (4)" + }, + "CHEM 250": { + "dept": "CHEM", + "description": "Course offers training in responsible conduct of research in chemistry and biochemistry, as well as presentation skills, teamwork, and other survival skills for a career in research. Objectives include learning rules, issues, and resources for research ethics; understanding the value of ethical decision-making; and creating a positive disposition toward learning about research ethics. The course is designed to meet federal grant requirements for training in the responsible conduct of research. (S/U grades only.)", + "name": "CHEM 250", + "prereqs": [], + "title": "Research Survival Skills (2)" + }, + "CHEM 251": { + "dept": "CHEM", + "description": "Group discussion of research activities and progress of the group members. (S/U grades only.) ", + "name": "CHEM 251", + "prereqs": [], + "title": "Research Conference (2)" + }, + "CHEM 252": { + "dept": "CHEM", + "description": "A survey of reactions of particular utility in the organic laboratory. Emphasis is on methods of preparation of carbon-carbon bonds and oxidation reduction sequences. May be coscheduled with CHEM 152. ", + "name": "CHEM 252", + "prereqs": [], + "title": "Synthetic Methods in Organic Chemistry (4)" + }, + "CHEM 253": { + "dept": "CHEM", + "description": "The course focuses on the discovery and development of modern antibiotics. We will discuss the discovery, synthesis, medicinal chemistry, mechanism of action studies, and preclinical as well as clinical development of drugs that are currently being used in the therapy of bacterial infections. Emphasis will be given to compounds approved over the last three decades and investigational drugs that are in clinical trials.", + "name": "CHEM 253", + "prereqs": [], + "title": "Antibiotics (4)" + }, + "CHEM 254": { + "dept": "CHEM", + "description": "A qualitative approach to the mechanisms of various organic reactions; substitutions, additions, eliminations, condensations, rearrangements, oxidations, reductions, free-radical reactions, and photochemistry. Includes considerations of molecular structure and reactivity, synthetic methods, spectroscopic tools, and stereochemistry. The topics emphasized will vary from year to year. This is the first quarter of the advanced organic chemistry sequence. May be coscheduled with CHEM 154. ", + "name": "CHEM 254", + "prereqs": [], + "title": "Mechanisms of Organic Reactions (4)" + }, + "CHEM 255": { + "dept": "CHEM", + "description": "(Conjoined with CHEM 155.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper and/or exam beyond that expected of students in CHEM 155. (May not be offered every year.) ", + "name": "CHEM 255", + "prereqs": [ + "CHEM 252", + "CHEM 152" + ], + "title": "Synthesis of Complex Molecules (4)" + }, + "CHEM 256": { + "dept": "CHEM", + "description": "and Properties of Organic Molecules (4)", + "name": "CHEM 256", + "prereqs": [], + "title": "Structure" + }, + "CHEM 257": { + "dept": "CHEM", + "description": "A comprehensive survey of modern bioorganic and natural products chemistry. Topics include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 157. ", + "name": "CHEM 257", + "prereqs": [], + "title": "Biorganic and Natural Products Chemistry (4)" + }, + "CHEM 258": { + "dept": "CHEM", + "description": "Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be strongly emphasized. Students will be required to write and submit a paper that reviews a recent research publication that reports the structure determination by spectroscopic methods of natural products. May be coscheduled with CHEM 158. ", + "name": "CHEM 258", + "prereqs": [], + "title": "Applied Spectroscopy (4)" + }, + "CHEM 259": { + "dept": "CHEM", + "description": "Various advanced topics in organic chemistry. Includes but is not limited to: advanced kinetics, advanced spectroscopy, computational chemistry, heterocyclic chemistry, medicinal chemistry, organotransition metal chemistry, polymers, solid-phase synthesis/combinatorial chemistry, stereochemistry, and total synthesis classics.", + "name": "CHEM 259", + "prereqs": [], + "title": "Special Topics in Organic Chemistry (2\u20134)" + }, + "CHEM 260": { + "dept": "CHEM", + "description": "Students will review basic principles of light and electron", + "name": "CHEM 260", + "prereqs": [], + "title": "Light and Electron Microscopy of Cells and Tissue (4)" + }, + "CHEM 262": { + "dept": "CHEM", + "description": "A survey of inorganic chemistry to prepare for graduate research in the field, including a detailed introduction to nuclear magnetic resonance (NMR), followed by applications of NMR to structural and mechanistic problems in inorganic chemistry.", + "name": "CHEM 262", + "prereqs": [], + "title": "Inorganic Chemistry and NMR (4)" + }, + "CHEM 264": { + "dept": "CHEM", + "description": "(Cross-listed with BGGN 264.) An introduction of virus structures,", + "name": "CHEM 264", + "prereqs": [], + "title": "Structural Biology of Viruses (4)" + }, + "CHEM 265": { + "dept": "CHEM", + "description": "(Cross-listed with BGGN", + "name": "CHEM 265", + "prereqs": [], + "title": "3D Electron Microscopy of Macromolecules (4)" + }, + "CHEM 270A-B-C": { + "dept": "CHEM", + "description": "Seminar series on the current topics in the field of environmental chemistry. Emphasis is on current research topics in atmospheric, oceanic, and geological environments. ", + "name": "CHEM 270A-B-C", + "prereqs": [], + "title": "Current Topics in Environmental Chemistry (2-2-2)" + }, + "CHEM 271": { + "dept": "CHEM", + "description": "Topics of special interest in analytical chemistry. May include, but is not limited to, chemical separation, sample introductions, mass analyzers, ionization schemes, and current state-of-the-art applications in environmental and biological chemistry.", + "name": "CHEM 271", + "prereqs": [], + "title": "Special Topics in Analytical Chemistry (4)" + }, + "CHEM 273": { + "dept": "CHEM", + "description": "Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 173. ", + "name": "CHEM 273", + "prereqs": [], + "title": "Atmospheric Chemistry (4)" + }, + "CHEM 276": { + "dept": "CHEM", + "description": "Introduces mathematical tools", + "name": "CHEM 276", + "prereqs": [], + "title": "Numerical Analysis in Multiscale Biology (4)" + }, + "CHEM 280": { + "dept": "CHEM", + "description": "(4)", + "name": "CHEM 280", + "prereqs": [], + "title": "Applied Bioinformatics" + }, + "CHEM 283": { + "dept": "CHEM", + "description": "A laboratory course combining hands-on mass spectrometry and", + "name": "CHEM 283", + "prereqs": [], + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + "CHEM 285": { + "dept": "CHEM", + "description": "Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. May be coscheduled with CHEM 185. ", + "name": "CHEM 285", + "prereqs": [], + "title": "Introduction to Computational Chemistry (4)" + }, + "CHEM 294": { + "dept": "CHEM", + "description": "Formal seminars or informal puzzle sessions on topics of current interest in organic chemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "name": "CHEM 294", + "prereqs": [], + "title": "Organic Chemistry Seminar (2)" + }, + "CHEM 295": { + "dept": "CHEM", + "description": "Formal seminars or informal puzzle sessions on topics of current interest in biochemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "name": "CHEM 295", + "prereqs": [], + "title": "Biochemistry Seminar (2)" + }, + "CHEM 296": { + "dept": "CHEM", + "description": "Formal seminars or informal sessions on topics of current interest in chemical physics as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "name": "CHEM 296", + "prereqs": [], + "title": "Chemical Physics Seminar (2)" + }, + "CHEM 297": { + "dept": "CHEM", + "description": "Experimental methods and techniques involved in chemical research are introduced. Hands-on experience provides training for careers in industrial research and for future thesis research. (S/U grades only.) ", + "name": "CHEM 297", + "prereqs": [], + "title": "Experimental Methods in Chemistry (4)" + }, + "CHEM 298": { + "dept": "CHEM", + "description": "Reading and laboratory study of special topics for first-year graduate students under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (S/U grades only.) ", + "name": "CHEM 298", + "prereqs": [], + "title": "Special Study in Chemistry (1\u20134)" + }, + "CHEM 299": { + "dept": "CHEM", + "description": "", + "name": "CHEM 299", + "prereqs": [], + "title": "Research in Chemistry (1\u201312)" + }, + "CHEM 4": { + "dept": "CHEM", + "description": "Offers less-well prepared science majors the fundamental skills necessary to succeed in CHEM 6. Emphasizes quantitative problems. Topics include nomenclature, stoichiometry, basic reactions, bonding, and the periodic table. May not receive credit for both CHEM 4 and CHEM 11. Includes a laboratory/discussion each week. Recommended: concurrent enrollment in MATH 3C, 4C or 10A or higher.", + "name": "CHEM 4", + "prereqs": [], + "title": "Basic Chemistry (4)" + }, + "CHEM 40A": { + "dept": "CHEM", + "description": "Introduction to organic chemistry with applications to biochemistry. Bonding theory, isomerism, stereochemistry, chemical and physical properties. Introduction to substitution, addition, and elimination reactions. Renumbered from CHEM 140A. Students may only receive credit for one of the following: CHEM 40A, 40AH, 140A, or 140AH. ", + "name": "CHEM 40A", + "prereqs": [ + "CHEM 6BH", + "CHEM 6B" + ], + "title": "Organic Chemistry I (4)" + }, + "CHEM 40B": { + "dept": "CHEM", + "description": "Renumbered from CHEM 140B. Continuation of CHEM 40A, Organic Chemistry I. Methods of analysis, chemistry of hydrocarbons, chemistry of the carbonyl group. Introduction to the reactions of biologically important molecules. Students may only receive credit for one of the following: CHEM 40B, 40BH, 140B, or 140BH. ", + "name": "CHEM 40B", + "prereqs": [ + "CHEM 40A", + "CHEM 140A" + ], + "title": "Organic Chemistry II (4)" + }, + "CHEM 40BH": { + "dept": "CHEM", + "description": "Organic chemistry course for honors-level students with a strong background in chemistry. Similar to CHEM 40B but emphasizes mechanistic aspects of reactions and effects of molecular structure on reactivity. Renumbered from CHEM 140BH. Students may only receive credit for one of the following: CHEM 40B, 140B, 40BH, or 140BH. ", + "name": "CHEM 40BH", + "prereqs": [ + "CHEM 40A", + "CHEM 140A" + ], + "title": "Honors Organic Chemistry (4)" + }, + "CHEM 40C": { + "dept": "CHEM", + "description": "Renumbered from CHEM 140C. Continuation of CHEM 40A, Organic Chemistry I and CHEM 40B, Organic Chemistry II. Organic chemistry of biologically important molecules: carboxylic acids, carbohydrates, proteins, fatty acids, biopolymers, natural products. Students may only receive credit for one of the following: CHEM 40C, 40CH, 140C, or 140CH. ", + "name": "CHEM 40C", + "prereqs": [ + "CHEM 40B", + "CHEM 140B" + ], + "title": "Organic Chemistry III (4)" + }, + "CHEM 40CH": { + "dept": "CHEM", + "description": "Renumbered from CHEM 140CH. Continuation of Organic Chemistry 40B or 40BH, at honors level. Chemistry of carboxylic acids, carbohydrates, proteins, lipids biopolymers, natural products. Emphasis on mechanistic aspects and structure reactivity relationships. Students may only receive credit for one of the following: CHEM 40C, 40CH, 140C, or 140CH. ", + "name": "CHEM 40CH", + "prereqs": [ + "CHEM 40B", + "CHEM 40BH", + "CHEM 140B", + "CHEM 140BH" + ], + "title": "Honors Organic Chemistry (4)" + }, + "CHEM 43A": { + "dept": "CHEM", + "description": "Renumbered from CHEM 143A. Introduction to organic laboratory techniques. Separation, purification, spectroscopy, product analysis, and effects of reaction conditions. A materials fee is required. Students must pass a safety exam. Students may only receive credit for one of the following: CHEM 43A, 43AM, 143A, or 143AM. ", + "name": "CHEM 43A", + "prereqs": [ + "CHEM 7LM", + "CHEM 40A", + "CHEM 7L", + "CHEM 140A", + "CHEM 140AH", + "CHEM 40AH" + ], + "title": "Organic Chemistry Laboratory (4)" + }, + "CHEM 43AM": { + "dept": "CHEM", + "description": "Organic chemistry laboratory for chemistry majors; non-majors with strong background in CHEM 40A or 140A may also enroll, though preference will be given to majors. Similar to CHEM 43A, but emphasizes instrumental methods of product identification, separation, and analysis. A materials fee is required. Students must pass a safety exam. CHEM 43AM is renumbered from CHEM 143AH. Students may only receive credit for one of the following: CHEM 43AM, 143AM, 43A, or 143A. ", + "name": "CHEM 43AM", + "prereqs": [ + "CHEM 7LM", + "CHEM 40A", + "CHEM 7L", + "CHEM 140A", + "CHEM 140AH", + "CHEM 40AH" + ], + "title": "Organic Chemistry Laboratory for Majors (4)" + }, + "CHEM 500": { + "dept": "CHEM", + "description": "Under the supervision and mentorship of a course instructor, MS and PhD students serve as teaching assistants to undergraduate laboratory and lecture courses. To support teaching competency, regular meetings with the instructor and attendance at lectures are required. S/U grades only. May be taken for credit twelve times. ", + "name": "CHEM 500", + "prereqs": [], + "title": "Apprentice Teaching (4)" + }, + "CHEM 509": { + "dept": "CHEM", + "description": "This course explores teaching strategies specific to chemistry at the college level, and promotes the development of skills for facilitating active, student-centered learning in both lecture and laboratory settings. It is required for first-time teaching assistants. S/U grades only. ", + "name": "CHEM 509", + "prereqs": [], + "title": "Teaching Methods in Chemistry and Biochemistry (2)" + }, + "CHEM 6A": { + "dept": "CHEM", + "description": "First quarter of a three-quarter sequence intended for science and engineering majors. Topics include: atomic theory, bonding, molecular geometry, stoichiometry, types of reactions, and thermochemistry. May not be taken for credit after CHEM 6AH. Recommended: proficiency in high school chemistry and/or physics. Corequisite: MATH 10A or 20A or prior enrollment.", + "name": "CHEM 6A", + "prereqs": [], + "title": "General Chemistry I (4)" + }, + "CHEM 6AH": { + "dept": "CHEM", + "description": "First quarter of a three-quarter honors sequence intended for well-prepared science and engineering majors. Topics include quantum mechanics, molecular orbital theory, and bonding. An understanding of nomenclature, stoichiometry, and other fundamentals is assumed. Students completing 6AH may not subsequently take 6A for credit. Recommended: completion of a high school physics course strongly recommended. Concurrent enrollment in MATH 20A or higher.", + "name": "CHEM 6AH", + "prereqs": [], + "title": "Honors General Chemistry I (4)" + }, + "CHEM 6B": { + "dept": "CHEM", + "description": "Second quarter of a three-quarter sequence intended for science and engineering majors. Topics include: covalent bonding, gases, liquids, and solids, colligative properties, physical and chemical equilibria, acids and bases, solubility. May not be taken for credit after CHEM 6BH. ", + "name": "CHEM 6B", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "CHEM 6A", + "CHEM 6AH", + "MATH 10B", + "MATH 10A" + ], + "title": "General Chemistry II (4)" + }, + "CHEM 6BH": { + "dept": "CHEM", + "description": "Second quarter of a three-quarter honors sequence intended for well-prepared science and engineering majors. Topics include: colligative properties, bulk material properties, chemical equilibrium, acids and bases, and thermodynamics. Three hours lecture and one hour recitation.", + "name": "CHEM 6BH", + "prereqs": [], + "title": "Honors General Chemistry II (4)" + }, + "CHEM 6C": { + "dept": "CHEM", + "description": "Third quarter of a three-quarter sequence intended for science and engineering majors. Topics include: thermodynamics, kinetics, electrochemistry, coordination chemistry, and introductions to nuclear, main group organic, and biochemistry. May not be taken for credit after CHEM 6CH. ", + "name": "CHEM 6C", + "prereqs": [ + "MATH 10B", + "MATH 20B", + "CHEM 6BH", + "CHEM 6B" + ], + "title": "General Chemistry III (4)" + }, + "CHEM 6CH": { + "dept": "CHEM", + "description": "Third quarter of a three-quarter honors sequence intended for well-prepared", + "name": "CHEM 6CH", + "prereqs": [], + "title": "Honors General Chemistry III (4)" + }, + "CHEM 7L": { + "dept": "CHEM", + "description": "Condenses a year of introductory", + "name": "CHEM 7L", + "prereqs": [], + "title": "General Chemistry Laboratory (4)" + }, + "CHEM 7LM": { + "dept": "CHEM", + "description": "Condenses a year of introductory training in analytical, inorganic, physical, and synthetic techniques into one intensive quarter. Students may not receive credit for both CHEM 7L and CHEM 7LM. A materials fee is required. A safety exam must be passed. Enrollment preference given to chemistry and biochemistry majors, followed by other science/engineering majors. ", + "name": "CHEM 7LM", + "prereqs": [ + "CHEM 6BH", + "CHEM 6B" + ], + "title": "General Chemistry Laboratory for Majors (4)" + }, + "CHEM 87": { + "dept": "CHEM", + "description": "This seminar will present topics in chemistry at a level appropriate for first-year students.", + "name": "CHEM 87", + "prereqs": [], + "title": "Freshman Seminar in Chemistry and Biochemistry (1)" + }, + "CHEM 96": { + "dept": "CHEM", + "description": "(Cross-listed with EDS 31.) Explores routine challenges and exceptional", + "name": "CHEM 96", + "prereqs": [], + "title": "Introduction to Teaching Science (2)" + }, + "CHEM 99": { + "dept": "CHEM", + "description": "Independent literature or laboratory research", + "name": "CHEM 99", + "prereqs": [], + "title": "Independent Study (2 or 4)" + }, + "CHEM 99R": { + "dept": "CHEM", + "description": "Independent study or research under the direction of a member", + "name": "CHEM 99R", + "prereqs": [], + "title": "Independent Study (1)" + }, + "CHIN": { + "dept": "CHIN", + "description": "160/260. Late Imperial and Twentieth-Century Chinese Historical Texts", + "name": "CHIN", + "prereqs": [], + "title": "" + }, + "CHIN 100AM": { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "name": "CHIN 100AM", + "prereqs": [], + "title": "Third Year Chinese\u2014Mandarin speakers I (4)" + }, + "CHIN 100AN": { + "dept": "CHIN", + "description": "Intermediate", + "name": "CHIN 100AN", + "prereqs": [], + "title": "Third Year Chinese\u2014Non-native speakers I (4)" + }, + "CHIN 100BM": { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "name": "CHIN 100BM", + "prereqs": [], + "title": "Third Year Chinese\u2014Mandarin speakers II (4)" + }, + "CHIN 100BN": { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with no background.", + "name": "CHIN 100BN", + "prereqs": [], + "title": "Third Year Chinese\u2014Non-native speakers II (4)" + }, + "CHIN 100CM": { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "name": "CHIN 100CM", + "prereqs": [], + "title": "Third Year Chinese\u2014Mandarin speakers III (4)" + }, + "CHIN 100CN": { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with no background.", + "name": "CHIN 100CN", + "prereqs": [], + "title": "Third Year Chinese\u2014Non-native speakers III (4)" + }, + "CHIN 10AD": { + "dept": "CHIN", + "description": "Introductory course of basic Chinese", + "name": "CHIN 10AD", + "prereqs": [], + "title": "First Year Chinese\u2014Dialect speakers I (5)" + }, + "CHIN 10AN": { + "dept": "CHIN", + "description": "Introductory course of basic Chinese", + "name": "CHIN 10AN", + "prereqs": [], + "title": "First Year Chinese\u2014Non-native speakers I (5)" + }, + "CHIN 10BD": { + "dept": "CHIN", + "description": "Continuation introduction of basic", + "name": "CHIN 10BD", + "prereqs": [], + "title": "First Year Chinese\u2014Dialect speakers II (5)" + }, + "CHIN 10BM": { + "dept": "CHIN", + "description": "Continuation introduction of basic", + "name": "CHIN 10BM", + "prereqs": [], + "title": "First Year Chinese\u2014Mandarin speakers II (5)" + }, + "CHIN 10BN": { + "dept": "CHIN", + "description": "Continuation of basic Chinese for students", + "name": "CHIN 10BN", + "prereqs": [], + "title": "First Year Chinese\u2014Non-native speakers II (5)" + }, + "CHIN 10CD": { + "dept": "CHIN", + "description": "Further continuation course of basic", + "name": "CHIN 10CD", + "prereqs": [], + "title": "First Year Chinese\u2014Dialect speakers III (5)" + }, + "CHIN 10CM": { + "dept": "CHIN", + "description": "Further continuation course of basic", + "name": "CHIN 10CM", + "prereqs": [], + "title": "First Year Chinese\u2014Mandarin speakers III (5)" + }, + "CHIN 10CN": { + "dept": "CHIN", + "description": "Continuation course of basic Chinese", + "name": "CHIN 10CN", + "prereqs": [], + "title": "First Year Chinese\u2014Non-native speakers III (5)" + }, + "CHIN 165A": { + "dept": "CHIN", + "description": "Basic training in oral and written communication", + "name": "CHIN 165A", + "prereqs": [], + "title": "Business Chinese (4)" + }, + "CHIN 165B": { + "dept": "CHIN", + "description": "Continuation of CHIN 165A. Basic training in oral and written communication skills for business, including introduction to modern business terminology and social conventions. ", + "name": "CHIN 165B", + "prereqs": [ + "CHIN 165A" + ], + "title": "Business Chinese (4)" + }, + "CHIN 165C": { + "dept": "CHIN", + "description": "Continuation of CHIN 165B. Basic training in oral and written communication skills for business, including introduction to modern business terminology and social conventions. ", + "name": "CHIN 165C", + "prereqs": [ + "CHIN 165B" + ], + "title": "Business Chinese (4)" + }, + "CHIN 169A": { + "dept": "CHIN", + "description": "Course focuses on conversational Chinese for students interested in medicine and health care. Designed to prepare students to speak, listen, and read effectively in a Chinese medical environment. Course aims to instruct students in basic to intermediate medical Chinese terminology for comprehensive patient review. ", + "name": "CHIN 169A", + "prereqs": [], + "title": "Medical Chinese I (4)" + }, + "CHIN 169B": { + "dept": "CHIN", + "description": "Course designed to improve conversational Chinese for students interested in medicine and health care. Course aims for stronger Chinese proficiency within a medical environment. ", + "name": "CHIN 169B", + "prereqs": [ + "CHIN 169A" + ], + "title": "Medical Chinese II (4)" + }, + "CHIN 182A": { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced I (4)", + "name": "CHIN 182A", + "prereqs": [], + "title": "Introduction" + }, + "CHIN 182B": { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced II (4)", + "name": "CHIN 182B", + "prereqs": [], + "title": "Introduction" + }, + "CHIN 182C": { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced III (4)", + "name": "CHIN 182C", + "prereqs": [], + "title": "Introduction" + }, + "CHIN 185A-B-C": { + "dept": "CHIN", + "description": "(4-4-4)", + "name": "CHIN 185A-B-C", + "prereqs": [], + "title": "Readings in Chinese Culture and Society" + }, + "CHIN 186A-B-C": { + "dept": "CHIN", + "description": "and Trade (4-4-4)", + "name": "CHIN 186A-B-C", + "prereqs": [], + "title": "Readings in Chinese Economics, Politics," + }, + "CHIN 196": { + "dept": "CHIN", + "description": "Bachelor\u2019s thesis, under the direction", + "name": "CHIN 196", + "prereqs": [], + "title": "Directed Thesis Research (4)" + }, + "CHIN 198": { + "dept": "CHIN", + "description": "Group Study in Chinese Studies (2 or 4)", + "name": "CHIN 198", + "prereqs": [], + "title": "Directed" + }, + "CHIN 199": { + "dept": "CHIN", + "description": "or 4)", + "name": "CHIN 199", + "prereqs": [], + "title": "Independent Study in Chinese Studies (2" + }, + "CHIN 20AD": { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with background in a", + "name": "CHIN 20AD", + "prereqs": [], + "title": "Second Year Chinese\u2014Dialect speakers I (4)" + }, + "CHIN 20AM": { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with background in Mandarin.", + "name": "CHIN 20AM", + "prereqs": [], + "title": "Second Year Chinese\u2014Mandarin speakers I (4)" + }, + "CHIN 20AN": { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with no background. First", + "name": "CHIN 20AN", + "prereqs": [], + "title": "Second Year Chinese\u2014Non-native speakers I (4)" + }, + "CHIN 20BD": { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "name": "CHIN 20BD", + "prereqs": [], + "title": "Second Year Chinese\u2014Dialect speakers II (4)" + }, + "CHIN 20BM": { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "name": "CHIN 20BM", + "prereqs": [], + "title": "Second Year Chinese\u2014Mandarin speakers II (4)" + }, + "CHIN 20BN": { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "name": "CHIN 20BN", + "prereqs": [], + "title": "Second Year Chinese\u2014Non-native speakers II (4)" + }, + "CHIN 20CD": { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with background", + "name": "CHIN 20CD", + "prereqs": [], + "title": "Second Year Chinese\u2014Dialect speakers III (4)" + }, + "CHIN 20CM": { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with background", + "name": "CHIN 20CM", + "prereqs": [], + "title": "Second Year Chinese\u2014Mandarin speakers III (4)" + }, + "CHIN 20CN": { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with no background.", + "name": "CHIN 20CN", + "prereqs": [], + "title": "Second Year Chinese\u2014Non-native speakers III (4)" + }, + "CHIN 269": { + "dept": "CHIN", + "description": "(2)", + "name": "CHIN 269", + "prereqs": [], + "title": "Conversational Mandarin for Medical Students\u2014Beginning" + }, + "CHIN 296": { + "dept": "CHIN", + "description": "Graduate thesis research under the guidance of a faculty member affiliated with the Program in Chinese Studies.", + "name": "CHIN 296", + "prereqs": [], + "title": "Directed Thesis Research (2\u201312)" + }, + "CHIN 299": { + "dept": "CHIN", + "description": "Independent graduate research under the guidance", + "name": "CHIN 299", + "prereqs": [], + "title": "Independent Study in Chinese Studies (2\u201312)" + }, + "CHIN 500": { + "dept": "CHIN", + "description": "A course in which graduate teaching assistants", + "name": "CHIN 500", + "prereqs": [], + "title": "Apprentice Teaching (2\u20134)" + }, + "CLRE 230": { + "dept": "CLRE", + "description": "This course covers how to develop and implement a digital strategy to drive a health research organization\u2019s online presence, specifically the processes for selecting, using, managing, and evaluating the effectiveness of web, social media, and mobile technologies. ", + "name": "CLRE 230", + "prereqs": [], + "title": "Digital Health (2)" + }, + "CLRE 231": { + "dept": "CLRE", + "description": "The goal of implementation science is to ensure that the knowledge and materials produced by health research actually leads to improved population health by: 1) reaching the people for whom they are intended; 2) being adapted to local circumstances; and 3) being implemented effectively, safely, equitably, and in a timely and patient-centered manner. ", + "name": "CLRE 231", + "prereqs": [], + "title": "Implementation Science (2)" + }, + "CLRE 232": { + "dept": "CLRE", + "description": "This course provides skills in designing and carrying out a qualitative study useful for program management (planning, monitoring, and evaluation) and ensuring quality in health-care delivery. The methods included in the course are a sample of commonly used qualitative methods: structured and unstructured interviews, participatory learning methods, group and individual methods. ", + "name": "CLRE 232", + "prereqs": [], + "title": "Qualitative Research (2)" + }, + "CLRE 233": { + "dept": "CLRE", + "description": "This course provides students with a strong foundation in regulatory science and drug device development and a hands-on introduction to current good manufacturing, laboratory and clinical practices, as well as product development. It offers graduates unique instruction for the specialized jobs in regulatory science in federal, academic, and industry work settings. ", + "name": "CLRE 233", + "prereqs": [], + "title": "Regulatory Science (2)" + }, + "CLRE 234": { + "dept": "CLRE", + "description": "This course will provide an overview of Institutional Review Board (IRB) considerations of social media in research, including those major ethical challenges and data security issues that may arise with the use of social media for recruitment, consent processes, data collection, and data dissemination. ", + "name": "CLRE 234", + "prereqs": [], + "title": "Social Media Research (2)" + }, + "CLRE 235": { + "dept": "CLRE", + "description": "This course offers practical guidance about how best to engage in interdisciplinary and multidisciplinary team science: to pursue complex science questions, to work effectively with team members, and to produce high impact research outcomes that help meet society\u2019s needs. ", + "name": "CLRE 235", + "prereqs": [], + "title": "Team Science (2)" + }, + "CLRE 236": { + "dept": "CLRE", + "description": "Students learn principles and practices of translational medicine as they apply to the development of new drugs, device, or diagnostic. Students receive training in the development of novel targets and leads, clinical pharmacology, regulatory process, and design of clinical trials. ", + "name": "CLRE 236", + "prereqs": [], + "title": "Translational Research (2)" + }, + "CLRE 237": { + "dept": "CLRE", + "description": "This course focuses on practical applications of the principles of translating stem cell based therapies, especially those in early development and phase 1 studies. Students will acquire skills to translate these interventions from the bench to the bedside by designing a trial. Differences between drug development and stem cell based therapies will be highlighted. ", + "name": "CLRE 237", + "prereqs": [], + "title": "Stem Cell Translation (2)" + }, + "CLRE 238": { + "dept": "CLRE", + "description": "Students will understand the drug discovery process through case studies in mentored teams. Each team is assigned a pharmacotherapeutic modality and will use publicly disclosed information to reconstruct the entire translational chain of events from new drug idea to market. ", + "name": "CLRE 238", + "prereqs": [ + "CLRE 236" + ], + "title": "Applied Drug Discovery and Development (2)" + }, + "CLRE 250": { + "dept": "CLRE", + "description": "This course will develop and apply the theory of clinical trials design and analysis, discuss the practical issues of financing and implementing clinical trials, and describe issues of monitoring trials and working in cooperative groups. The scholar will design and present to a group of peers a concept sheet for a phase I/II and phase II/III clinical trial. Class sessions may also be offered live via distance learning with established remote site.", + "name": "CLRE 250", + "prereqs": [], + "title": "Patient-Oriented Research I (2)" + }, + "CLRE 251": { + "dept": "CLRE", + "description": "Scholars will recognize and understand different types of study designs, the relative strengths and limitations of each, and the proper choice of study design in conducting their own research. They will also be able to identify and calculate the correct measure of risk for each study design. Participants will recognize major sources of bias, confounding and misclassification, and understand design and analysis methods of dealing with each. They will also be familiar with criteria to differentiate association from causation. Class sessions may also be offered live via distance learning with established remote site.", + "name": "CLRE 251", + "prereqs": [], + "title": "Epidemiology I (2)" + }, + "CLRE 252": { + "dept": "CLRE", + "description": "Scholars will evaluate relevant outcomes in patient-oriented research from the patient (quality of life) and societal (economic) perspectives and locate potential resources for assessing the relevant outcomes in a wide variety of study designs. They will also be able to describe the relative strengths of different health services research approaches to a clinical problem. Finally, they will understand the components of clinical practice guidelines, including patient preferences, and how these guidelines both depend upon as well as inform patient-oriented research. Class sessions may also be offered live via distance learning with established remote site.", + "name": "CLRE 252", + "prereqs": [], + "title": "Health Services Research (2)" + }, + "CLRE 253": { + "dept": "CLRE", + "description": "Scholars will understand principles of measurement of clinical data, recognize data types, and correctly identify statistical methods appropriate for analysis of a given clinical data set. They will gain experience in assembling a clinical dataset in formats suitable for analysis by STATA or other comparable statistical packages. They will learn skills to conduct graphical and numerical exploratory data analysis, comparative tests of categorical, ordinal, and continuous data, linear and logistic regression analysis, and survival analysis by life table and Kaplan-Meier techniques. Class sessions may also be offered live via distance learning with established remote site.", + "name": "CLRE 253", + "prereqs": [], + "title": "Biostatistics I (2)" + }, + "CLRE 254": { + "dept": "CLRE", + "description": "Scholars will understand and conduct advanced biostatistical analyses including: multiple linear and logistic regression, survival analysis, and Cox and extended Cox regression. The scholar will also be familiar with person-time rate analysis with Poisson regression and longitudinal data analysis in the presence of missing values and varying measurement times. Class sessions may also be offered live via distance learning with established remote site. ", + "name": "CLRE 254", + "prereqs": [ + "CLRE 253" + ], + "title": "Biostatistics II (2)" + }, + "CLRE 255": { + "dept": "CLRE", + "description": "This course provides an orientation to database design and management and covers key issues regarding data handling for clinical research and clinical trials. Scholars will also become familiar with technology assessment and decision-making methods and analysis. Class sessions may also be offered live via distance learning with established remote site.", + "name": "CLRE 255", + "prereqs": [], + "title": "Data Management and Informatics (2)" + }, + "CLRE 256": { + "dept": "CLRE", + "description": "This course will review the ethics and basic regulatory issues for research involving human subjects, including\u00a0access and confidentiality. Scholars will prepare a mock submission to an IRB for peer review and practice and will also review their peers\u2019 proposals. Class sessions may also be offered live via distance learning with established remote site. ", + "name": "CLRE 256", + "prereqs": [ + "CLRE 250" + ], + "title": "Patient-Oriented Research II (2)" + }, + "CLRE 257": { + "dept": "CLRE", + "description": "Scholars will select the appropriate sampling method and determine the sample size necessary for specific projects and adjust for confounding. Participants will be familiar with several specialized analytic techniques, including matched, cluster, and meta-analyses. They will also be familiar with methodological issues, unique to ecological, behavioral, and genetic studies. Class sessions may also be offered live via distance learning with established remote site. ", + "name": "CLRE 257", + "prereqs": [ + "CLRE 251" + ], + "title": "Epidemiology II (2)" + }, + "CLRE 258": { + "dept": "CLRE", + "description": "Students participate in a series of seminars on professional development topics that will focus on skills and knowledge to enhance the ability of clinical researchers to be successful. Seminar topics may include research management, team building and collaboration, leadership skills, career development in the clinical research field, negotiation skills, research project management, and research budgeting/financial management. ", + "name": "CLRE 258", + "prereqs": [], + "title": "Professional Development in Clinical Research (2)" + }, + "CLRE 259": { + "dept": "CLRE", + "description": "This course covers the key elements of scientific communication skills that are designed to enhance the clinical research\u2019s ability to be successful. Topics include secrets of making good oral presentations and engaging the audience, how to write and prepare abstracts, basics of grant writing and submission, and how grants are reviewed. Course includes mock grant study section. ", + "name": "CLRE 259", + "prereqs": [], + "title": "Scientific Communication Skills (2)" + }, + "CLRE 260": { + "dept": "CLRE", + "description": "Faculty member will direct a student\u2019s study in selected professional development topics in clinical research. Specific content will be tailored to the student\u2019s particular needs and interests. Students must make arrangements with the program and individual faculty member prior to enrolling in the course. ", + "name": "CLRE 260", + "prereqs": [], + "title": "Directed Studies in Clinical Research (2)" + }, + "CLRE 262": { + "dept": "CLRE", + "description": "Course will introduce the R Statistical Platform and help to build proficiency for data analysis. Students will perform their own analysis of the data, using linear regression methods, ANOVA, logistic regression, and regression methods for survival data. They will understand the assumptions, areas of applicability, and limitations of these statistical methods. ", + "name": "CLRE 262", + "prereqs": [ + "CLRE 253" + ], + "title": "Analyzing Medical Data Using \u201cR\u201d (2)" + }, + "CLRE 263": { + "dept": "CLRE", + "description": "The class will introduce statistical methods and techniques for analyzing medical data from longitudinal studies using PASW/SPSS software. Students will understand the challenges and statistical issues for designing and analyzing longitudinal studies, recognize and use longitudinal data analysis methods and perform analysis. ", + "name": "CLRE 263", + "prereqs": [ + "CLRE 253" + ], + "title": "Longitudinal Data Analysis (2)" + }, + "CLRE 264": { + "dept": "CLRE", + "description": "The course provides an introduction to the use of decision sciences in health care. Student will be able to construct and evaluate an appropriate decision analysis probability tree, value health outcomes, use sensitivity analysis and understand how to conduct a cost-effectiveness analysis. ", + "name": "CLRE 264", + "prereqs": [], + "title": "Clinical Decision Analysis (2)" + }, + "CLRE 265": { + "dept": "CLRE", + "description": "This course will expose and familiarize students with important advanced statistical methods such as methods for numeric outcomes (Linear regression), nonlinear regression, methods for binary outcomes (Logistic regression), methods for counts (Poisson regression) and categorical outcomes (Log-linear models). ", + "name": "CLRE 265", + "prereqs": [ + "CLRE 254", + "CLRE 253" + ], + "title": "Advanced Regression Methods (2)" + }, + "CLRE 268": { + "dept": "CLRE", + "description": "The objective of the course is to provide students instruction in contemporary methods and statistical analyses in behavioral science research. Will teach hands-on practical skills in developing and validating assessment measures, designing clinical trials in behavioral sciences, dissemination and implementation methods, and meta-analysis. ", + "name": "CLRE 268", + "prereqs": [], + "title": "Behavioral Science Research Methods (2)" + }, + "CLRE 270": { + "dept": "CLRE", + "description": "This experiential course builds on the knowledge gained in the core curriculum through hands-on lab and simulation-based exercises. Students will learn basic lab methods and communication skills pertinent to engaging subjects in clinical research. May be taken for credit four times. While students are required to take the course two times, the course would apply toward general elective requirements when taken a third and fourth time. ", + "name": "CLRE 270", + "prereqs": [ + "CLRE 251", + "CLRE 250" + ], + "title": "Experiential Learning in Clinical Research (2)" + }, + "CLRE 295A": { + "dept": "CLRE", + "description": "Students conduct a systemic review of the literature leading to the background and hypothesis/specific aim of their ISP, culminating in a written paper and class presentation for faculty and peer feedback. Mentorship and career development topics will be discussed by a series of guest speakers. ", + "name": "CLRE 295A", + "prereqs": [], + "title": "Independent Study Project (ISP) Seminar Series A (2)" + }, + "CLRE 295B": { + "dept": "CLRE", + "description": "Students present a research-in-progress talk related to their ongoing ISP work. They will submit an institutional review board (IRB) proposal/report including a master\u2019s protocol that would be submitted to the IRB. This will consist of the data management plans including case report forms, data analysis plans, sample size calculations, and budget. Mentorship and career development topics will be discussed by guest speakers from academia and industry. ", + "name": "CLRE 295B", + "prereqs": [ + "CLRE 295A" + ], + "title": "Independent Study Project (ISP) Seminar Series B (2)" + }, + "CLRE 296": { + "dept": "CLRE", + "description": "The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty and may also include industry advisers when appropriate. ", + "name": "CLRE 296", + "prereqs": [ + "CLRE 257", + "CLRE 256", + "CLRE 255", + "CLRE 254", + "CLRE 253", + "CLRE 252", + "CLRE 251", + "CLRE 250", + "CLRE 258" + ], + "title": "Independent Study Project (6)" + }, + "CLRE 297": { + "dept": "CLRE", + "description": "Students conduct a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will include their course work in CLRE 295A-B and be presented as a final report that includes a complete description of the project including the study manual, study results, statistical analysis, and a discussion of the findings. Students will make an oral presentation of their ISP to their three-member ISP committee comprised of faculty and industry advisers. The ISP is an independent, creative, and scholarly activity, and students will be graded on their written and oral presentations. ", + "name": "CLRE 297", + "prereqs": [ + "CLRE 295A" + ], + "title": "Independent Study Project\u00a0(2)" + }, + "CLRE 298": { + "dept": "CLRE", + "description": "The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty, and may also include industry advisors when appropriate. ", + "name": "CLRE 298", + "prereqs": [], + "title": "Independent Study Project (4)" + }, + "CLRE 299": { + "dept": "CLRE", + "description": "Faculty member directs student\u2019s study in development of mentorship and career plan as related to student\u2019s research specialization. Readings, assignments and formalized mentoring sessions designed to integrate and apply student\u2019s learning of clinical research theory and practice to individualized career development plan. ", + "name": "CLRE 299", + "prereqs": [], + "title": "Mentorship and Career Planning for Clinical Research Professionals (2)" + }, + "COGR 200A": { + "dept": "COGR", + "description": "This course focuses on the political economy of communication and the social organization of key media institutions. There will be both descriptive and analytical concerns. The descriptive concern will emphasize the complex structure of communication industries and organizations, both historically and cross-nationally. The analytic focus will examine causal relationships between the economic and political structure of societies, the character of their media institutions, public opinion, and public attitudes and behaviors expressed in patterns of voting, consuming, and public participation. The nature of evidence and theoretical basis for such relationships will be critically explored. ", + "name": "COGR 200A", + "prereqs": [], + "title": "Introduction to the Study of Communication as Social Force (4)" + }, + "COGR 200B": { + "dept": "COGR", + "description": "This course focuses on questions of interpretation and meaning. This course will examine how people use texts to interpret the world and coordinate their activities in social groups. Students will study both theories of interpretation in the conventional sense and theories about the act of interpreting. ", + "name": "COGR 200B", + "prereqs": [], + "title": "Introduction to Study of Communication: Communication and Culture (4)" + }, + "COGR 200C": { + "dept": "COGR", + "description": "This course will draw on theorists who examine human nature as constituted by social, material, and historical circumstances. This course considers the media in relation to the ontogenetic and historical development of the human being and an examination of the individual as socially constituted in a language-using medium. The role of new communication technologies as part of research methodologies is explored in lecture-seminar. ", + "name": "COGR 200C", + "prereqs": [], + "title": "Introduction to the Study of Communication: Communication and the Individual (4)" + }, + "COGR 201B": { + "dept": "COGR", + "description": "A supervised and coordinated group project will allow students to develop competence in a variety of ethnographic approaches to communication. Subjects covered include choosing a fieldwork site, setting or process for participation; entry and development of relationships; techniques of observation, interviewing, note taking, and transcription. Course may also include photography and video as research tools. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ", + "name": "COGR 201B", + "prereqs": [], + "title": "Ethnographic Methods for Communication Research (4)" + }, + "COGR 201C": { + "dept": "COGR", + "description": "Review and critique of studies employing discourse analysis, focusing on the ways that \u201cdiscourse\u201d is identified, recorded, and reported. A working notion of discourse will develop from works representing diverse disciplinary approaches. Students will record, transcribe, and report on segments of talk in an everyday setting. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ", + "name": "COGR 201C", + "prereqs": [], + "title": "Discourse Analysis (4)" + }, + "COGR 201D": { + "dept": "COGR", + "description": "Different approaches to conducting historical research in communication. Such approaches may include the social history of communication technology; structuralist and poststructuralist accounts of language, media, and collective memory; and new historicist treatments of cultural history. Sources, documentation, and the nature of argument from historical evidence are emphasized. ", + "name": "COGR 201D", + "prereqs": [], + "title": "Historical Methods for Communication Research (4)" + }, + "COGR 201J": { + "dept": "COGR", + "description": "The logic of comparative analysis and its role in communication research. Scientific inference in qualitative research. Selection of cases. Problems of translation across cultures. ", + "name": "COGR 201J", + "prereqs": [], + "title": "Comparative Analysis (4)" + }, + "COGR 201L": { + "dept": "COGR", + "description": "Historical and ethnographic studies of information systems\u2014the design and use of information and communication technologies in their social, ethical, political, and organizational dimensions. Objects of study range from the invention of file folders to e-mail use and distributed databases as communication systems. ", + "name": "COGR 201L", + "prereqs": [], + "title": "Qualitative Analysis of Information Systems (4)" + }, + "COGR 201M": { + "dept": "COGR", + "description": "History uses methodology of quantitative analysis of media content. Includes conceptual issues concerning the quantification of meaning and practical procedures for coding and data analysis. Students read examples of studies using content analysis and carry out their own pilot analyses. ", + "name": "COGR 201M", + "prereqs": [], + "title": "Content Analysis (4)" + }, + "COGR 201N": { + "dept": "COGR", + "description": "Training in genealogical analysis based on Foucault and Nietzsche. Weekly exercises in genealogical methods, and class discussions of findings. A final paper: a genealogy of an object, practice, utterance, or discourse. ", + "name": "COGR 201N", + "prereqs": [], + "title": "Genealogical Analysis (4)" + }, + "COGR 210": { + "dept": "COGR", + "description": "The social, legal, and economic forces affecting the evolution of mass communication institutions and structure in the industrialized world. Differential impacts of the free flow of information and unequal roles and needs of developed and developing economies. ", + "name": "COGR 210", + "prereqs": [], + "title": "Information and Society (4)" + }, + "COGR 211": { + "dept": "COGR", + "description": "Examines theories of social and distributed memory\u2014Maurice Halwachs to Ed Hutchins, John Sutton, and nature of the archive (Foucault and Derrida), reading databases (as memory prostheses), beginning with Manovich\u2019s work. Enquiry into mediated nature of memory practices. ", + "name": "COGR 211", + "prereqs": [], + "title": "Memory Practices (4)" + }, + "COGR 215": { + "dept": "COGR", + "description": "The course will look at the history of, and rationales for, the regulation of mass communications in the United States. The course will cover both broadcasting and common carrier regulation. We will analyze telecommunications regulatory structures as they were constituted historically with the 1934 Communications Act and examine their breakdown in the late 1970s. In a larger vein, the course will examine the rise and functions of regulatory agencies in modern American history. ", + "name": "COGR 215", + "prereqs": [], + "title": "Regulation of Telecommunications (4)" + }, + "COGR 219": { + "dept": "COGR", + "description": "A central part of organizational life is talk: interaction both in formal and informal meetings and social situations. In this course we will examine the discourse of organizations, drawing on conversational analysis, discourse analysis, and the sociology of organizations. ", + "name": "COGR 219", + "prereqs": [], + "title": "Discourse and Organizations (4)" + }, + "COGR 220": { + "dept": "COGR", + "description": "History, politics, social organization, and ideology of the American news media. Special attention will be paid to: historical origins of journalism as a profession and \u201cobjective reporting\u201d as ideology; empirical studies of print and TV journalism as social institutions; and news coverage of Vietnam and its implications for theories of the news media.", + "name": "COGR 220", + "prereqs": [], + "title": "The News Media (4)" + }, + "COGR 223": { + "dept": "COGR", + "description": "This course examines the legal and policy framework for free speech in the United States. We cover First Amendment case law, free speech theory, copyright, and the different legal and regulatory treatment historically accorded print, broadcasting, cable television, telephone, and Internet. ", + "name": "COGR 223", + "prereqs": [], + "title": "Communication Law and Policy (4)" + }, + "COGR 225A": { + "dept": "COGR", + "description": "Introduction to Science Studies: Part 1 (4)", + "name": "COGR 225A", + "prereqs": [], + "title": "" + }, + "COGR 225B": { + "dept": "COGR", + "description": "Study and discussion of a selected topic in the science studies field with an emphasis on the development of research and writing skills. The topic varies from year to year. ", + "name": "COGR 225B", + "prereqs": [], + "title": "Seminar in Science Studies (4)" + }, + "COGR 225C": { + "dept": "COGR", + "description": "A forum for the presentation and discussion of research in progress in science studies by graduate students, faculty, and visitors. Students must attend the colloquium series for their entire first and second years. They receive course credit in one quarter each year. ", + "name": "COGR 225C", + "prereqs": [], + "title": "Colloquium in Science Studies (4)" + }, + "COGR 225D": { + "dept": "COGR", + "description": "Introduction to Science Studies Part II (4)", + "name": "COGR 225D", + "prereqs": [], + "title": "" + }, + "COGR 237": { + "dept": "COGR", + "description": "Course is designed to introduce graduate students to the disciplinary, intellectual, and artistic genealogies of performance studies that bring together critical work from the fields of anthropology, art history, communication, critical gender studies, ethnic studies, film studies, literature, and theatre studies. ", + "name": "COGR 237", + "prereqs": [], + "title": "Performance Theory (4)" + }, + "COGR 238": { + "dept": "COGR", + "description": "This reading seminar will consider works by Frankfurt School theorists (Horkheimer, Adorno, Pollock, Lowenthal, Marcuse, Benjamin, Habermas) on mass media, mass culture, idology, art, authority and the individual, and their relevance in the analysis of contemporary capitalism. ", + "name": "COGR 238", + "prereqs": [], + "title": "The Frankfurt School on Mass Culture Social Theory (4)" + }, + "COGR 239": { + "dept": "COGR", + "description": "Course considers computer games as media, rule systems, technology, and sites of communication. Approaches include hands-on play and reading material from a variety of disciplinary perspectives. Course encompasses both commercial games and the longer, more diverse academic and independent traditions. ", + "name": "COGR 239", + "prereqs": [], + "title": "Computer Game Studies (4)" + }, + "COGR 240": { + "dept": "COGR", + "description": "(Cross-listed with HIGR 273.) This course will explore the development and cultural manifestations of consumerism in the nineteenth and twentieth centuries. Topics will include the rise of museums, the development of mass market journalism and literature, advertising, and the growth of commercial amusements. Readings will focus primarily, but not exclusively, on the United States. Students will be encouraged to think comparatively. ", + "name": "COGR 240", + "prereqs": [], + "title": "The Culture of Consumption (4)" + }, + "COGR 241": { + "dept": "COGR", + "description": "Geographies as media of political cultural communication. Not simply mapping but also territorial engineering as a way of constituting geographical significance. Cross-mapping practices\u2014intersecting representational practices\u2014as political forms of communication. Geographies as visual practices of power. ", + "name": "COGR 241", + "prereqs": [], + "title": "Geography and Communication (4)" + }, + "COGR 242": { + "dept": "COGR", + "description": "Examination of historical and contemporary reorderings of space, time, and experience through culture and commerce, social movements, war and trade, communication institutions and practices. Considers various disciplinary modes of analyzing the forms of life produced by these processes as well as the possibilities for intervention and transformation. ", + "name": "COGR 242", + "prereqs": [], + "title": "Globalization (4)" + }, + "COGR 243": { + "dept": "COGR", + "description": "Media technologies from books to electronic media. Consideration of both technological design processes and shifting uses of media. Reflection on media and broader patterns of technological innovation. Attention to the distinctive role of media in technological change. ", + "name": "COGR 243", + "prereqs": [], + "title": "Media Technologies (4)" + }, + "COGR 244": { + "dept": "COGR", + "description": "Course traces theoretical approaches to the study of culture from the Birmingham School to poststructuralist critiques of power, resistance, consumption, and pleasure. Students combine critical theory and empirical research in order to interpret the cultural politics of everyday life. ", + "name": "COGR 244", + "prereqs": [], + "title": "Cultural Studies (4)" + }, + "COGR 245": { + "dept": "COGR", + "description": "Course explores human-technology interaction, social constructivism, actor-network theory, gender and technology, critical and cultural studies of science and technology, and public understandings of science and technology. Emphasis on what STS can contribute to the study of media and communication. ", + "name": "COGR 245", + "prereqs": [], + "title": "Science and Technology Studies and Communication (4)" + }, + "COGR 246": { + "dept": "COGR", + "description": "Course provides an introduction to the design, evaluation, and development of media that invite and structure play. This includes digital and nondigital games, as well as related forms. Exercises, readings, and projects are required. ", + "name": "COGR 246", + "prereqs": [], + "title": "Playable Media (4)" + }, + "COGR 247": { + "dept": "COGR", + "description": "Course explores the potential and constraints specific to writing for one or more media forms. Approaches include writing exercises, studying media, reading theoretical and historical texts, and project work. ", + "name": "COGR 247", + "prereqs": [], + "title": "Writing for Media (4)" + }, + "COGR 248": { + "dept": "COGR", + "description": "The visual is an increasingly important component of communication in everyday life. This course covers post-1968 theories of visual culture in domains such as art, film, news, the media, popular culture, medicine, sciences, and many other aspects of everyday life. ", + "name": "COGR 248", + "prereqs": [], + "title": "Visual Culture (4)" + }, + "COGR 250": { + "dept": "COGR", + "description": "Course examines the historical impetus, development, and construction of \u201cThird Cinema\u201d\u2014a particular style of media making in Africa, Latin America, and Asia. An interdisciplinary approach interrogates how Third Cinema influences world cinema of today. Additional screening session required. ", + "name": "COGR 250", + "prereqs": [], + "title": "Third World Cinema Screening (4)" + }, + "COGR 251": { + "dept": "COGR", + "description": "Theories of the media considered in a historical and comparative context from the rise of preprint reproduction technologies to the digital age. Focuses on communication processes and practices in terms of formality, technology, the politics of subjectivity, and institutions. ", + "name": "COGR 251", + "prereqs": [], + "title": "Media Theory (4)" + }, + "COGR 252": { + "dept": "COGR", + "description": "Seminar focuses on race as a social, phenomenal, historical, and political formation. The seminar will address the historical emergence and theorization of race and the contemporary ways in which race/racism is a modern principle of social division, exclusion, and political mobilization. ", + "name": "COGR 252", + "prereqs": [], + "title": "Race and Racism (4)" + }, + "COGR 253": { + "dept": "COGR", + "description": "Seminar will focus on music and sound as social, aesthetic, historical, can political formations and phenomena. The relationship between musical and extramusical forces will be examined. This course intensively addresses cultural politics of sound/music making, hearing and performance. ", + "name": "COGR 253", + "prereqs": [], + "title": "Cultural Study of Music and Sound (4)" + }, + "COGR 254": { + "dept": "COGR", + "description": "The conceptual and regulatory boundaries of intellectual property law are increasingly challenged by technological change and by ownership claims over non-Western forms of creativity. Course focuses on those challenges from three interrelated perspectives: historical, philosophical, and political. ", + "name": "COGR 254", + "prereqs": [], + "title": "Intellectual Property (4)" + }, + "COGR 255": { + "dept": "COGR", + "description": "Considers classical and contemporary texts in primarily western political thought with an eye toward understanding how such theory is and/or might be brought to bear in grounding different approaches and agendas in the study of communication. ", + "name": "COGR 255", + "prereqs": [], + "title": "Studies in Political Theory (4)" + }, + "COGR 256": { + "dept": "COGR", + "description": "This course provides an overview of intellectual and political thought developed through decolonization struggles in Africa and the Caribbean, and the subsequent emergence of postcoloniality from subaltern studies in the 1980s to contemporary work shaped by globalization and neoliberal philosophies. ", + "name": "COGR 256", + "prereqs": [], + "title": "Postcolonial Theory (4)" + }, + "COGR 257": { + "dept": "COGR", + "description": "Social theory forms the theoretical foundation for much work in communication, including political communication, questions of the public and public opinion, propaganda and ideology. The course will consider Marx, Weber, Durkheim, Simmel, Dewey, Habermas, the Frankfurt School and its critics. ", + "name": "COGR 257", + "prereqs": [], + "title": "Communication and Social Theory (4)" + }, + "COGR 258": { + "dept": "COGR", + "description": "In this course language is broadly conceived as a medium of communication, expressed multimodally. Among the topics of this course are: origins of speech and gesture, culture and language, language and social practice, and language in performance. ", + "name": "COGR 258", + "prereqs": [], + "title": "Language in Human Communication (4)" + }, + "COGR 261": { + "dept": "COGR", + "description": "Approaches to Culture/Mind (4)", + "name": "COGR 261", + "prereqs": [], + "title": "Mediational" + }, + "COGR 262": { + "dept": "COGR", + "description": "This seminar focuses on how differences between groups of people, and the patterns of power, exclusion and conflict resulting from such differences, become embedded in geographical landscapes. The course examines place-based sites of difference, power, and conflict beginning with the map, and moving through such spatial environments as the body, the city, the nation, the landscape, the reservation, culminating in borderland conflict here in our own backyard. ", + "name": "COGR 262", + "prereqs": [], + "title": "Geographies of Difference, Exclusion and Conflict (4)" + }, + "COGR 263": { + "dept": "COGR", + "description": "This course is an introduction to the art of writing a research proposal. We will concentrate on proposals for ethnographic fieldwork, although the skills learned will be useful for many other purposes. The proposal writing process will be broken into component parts. Class time will be spent discussing these parts in greater detail and commenting on one another\u2019s work. By the end of the quarter students will have produced a research proposal of their own. ", + "name": "COGR 263", + "prereqs": [], + "title": "Writing Research Proposals (4)" + }, + "COGR 275": { + "dept": "COGR", + "description": "Specialized study in communication, with topics to be determined by the instructor for any given quarter.", + "name": "COGR 275", + "prereqs": [], + "title": "Topics in Communication (4)" + }, + "COGR 278": { + "dept": "COGR", + "description": "(Cross listed with EDS 278). This course explores the discourse of culture in American society and the problem of silenced or unheard voices. The interaction of individual and collective voice, language, and identity are discussed as they bear on the ways that culture moves through important social institutions such as schools. Of particular interest are issues of teaching, learning, displacement, inclusion, marginality, and the speaking center. ", + "name": "COGR 278", + "prereqs": [], + "title": "Talking Culture, Culture Talking: Voices of Diversity (4)" + }, + "COGR 280": { + "dept": "COGR", + "description": "This course is a project course in which students prepare a production or experiment using one of the forms of media. The course is designed to allow students to experiment in a communication form other than the usual oral presentation in class or a term paper. Students can do a video production, a coordinated photographic essay or exhibit, a computer instructional game, a published newspaper or magazine article directed at a special audience, a theatrical presentation, or some form other than those listed. ", + "name": "COGR 280", + "prereqs": [], + "title": "Advanced Workshop in Communication Media (4)" + }, + "COGR 281": { + "dept": "COGR", + "description": "In this course we review how we might go about studying and thinking about the everyday life both as a concept and as a domain of study. The course will have a balance of both theoretical and empirical work. ", + "name": "COGR 281", + "prereqs": [], + "title": "Understanding Everyday Life (4)" + }, + "COGR 282": { + "dept": "COGR", + "description": "Approaching reading from a historical perspective, the course concentrates on two analytic frames to connect memory to texts: ideas about \u201cthe memory palace,\u201d locating memories in things, and figured worlds theory, treating objects as forms of intellectual scaffolding and memory. ", + "name": "COGR 282", + "prereqs": [], + "title": "Reading and Memory (4)" + }, + "COGR 283": { + "dept": "COGR", + "description": "Political economy is an older interdisciplinary approach explaining how the state, political environment, law, and economic system influence one another. The course engages classic texts, with attention to issues in the political economy of communication toward the end. ", + "name": "COGR 283", + "prereqs": [], + "title": "Political Economy (4)" + }, + "COGR 284": { + "dept": "COGR", + "description": "This seminar will introduce key issues and readings in our understanding of time. Time is historical, not natural. We will examine ways that modern time structures and orders human interaction. ", + "name": "COGR 284", + "prereqs": [], + "title": "Time (4)" + }, + "COGR 285": { + "dept": "COGR", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ", + "name": "COGR 285", + "prereqs": [], + "title": "Ethnography Practicum (4)" + }, + "COGR 294": { + "dept": "COGR", + "description": "History of Communication Research (4)", + "name": "COGR 294", + "prereqs": [], + "title": "The" + }, + "COGR 296": { + "dept": "COGR", + "description": "A course that introduces students to the interdisciplinary nature of the field of communication research as represented by the work of faculty in the Department of Communication. Through faculty research, students are presented with concrete examples of communication research theory and practice that can provide them with insights for conducting their own research projects. ", + "name": "COGR 296", + "prereqs": [], + "title": "Communication Research as an Interdisciplinary Activity (4)" + }, + "COGR 298": { + "dept": "COGR", + "description": "The study and analysis of specific topics to be developed by a small group of graduate students under the guidance of an interested faculty member. ", + "name": "COGR 298", + "prereqs": [], + "title": "Directed Group Study (1\u201312)" + }, + "COGR 299": { + "dept": "COGR", + "description": "Advanced independent study in communication under the guidance of Department of Communication faculty.", + "name": "COGR 299", + "prereqs": [], + "title": "Graduate Research (1\u201312)" + }, + "COGR 500": { + "dept": "COGR", + "description": "A doctoral student in communication is required to assist in teaching undergraduate Department of Communication courses for a total of six quarters. One meeting per week with the instructor, one meeting per week with the assigned sections, and attendance at the lecture of the undergraduate course in which he or she is participating are part of this requirement.", + "name": "COGR 500", + "prereqs": [], + "title": "Practice Teaching in Communication (4)" + }, + "COGS 1": { + "dept": "COGS", + "description": "A team-taught course highlighting development of the field and the broad range of topics covered in the major. Example topics include addiction, analogy, animal cognition, human-computer interaction, language, neuroimaging, neural networks, reasoning, robots, and real-world applications.", + "name": "COGS 1", + "prereqs": [], + "title": "Introduction to Cognitive Science (4)" + }, + "COGS 10": { + "dept": "COGS", + "description": "This course examines the interrelationships of cognition and technology from the perspective of cognitive science. We address questions of importance for our increasingly technological society: How does technology shape our minds? How should what we know about our minds shape technology?", + "name": "COGS 10", + "prereqs": [], + "title": "Cognitive Consequences of Technology (4)" + }, + "COGS 100": { + "dept": "COGS", + "description": "Covers the theories of situated, distributed, enactive, and embodied cognition. Explains how cyborgs are a natural consequence of our current understanding of embodied minds embedded in culturally shaped niches; how mental systems can be distributed over other people and things. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ", + "name": "COGS 100", + "prereqs": [ + "COGS 10", + "COGS 1" + ], + "title": "Cyborgs Now and in the Future (4)" + }, + "COGS 101A": { + "dept": "COGS", + "description": "An introduction to the experimental study of cognition with a focus on sensation and perception. ", + "name": "COGS 101A", + "prereqs": [ + "COGS 1" + ], + "title": "Sensation and Perception (4)" + }, + "COGS 101B": { + "dept": "COGS", + "description": "A survey of the experimental study of learning, memory, and attention. Topics include conditioning, automaticity, divided attention, memory systems, and the nature of mental representation. ", + "name": "COGS 101B", + "prereqs": [ + "COGS 1", + "COGS 101A" + ], + "title": "Learning, Memory, and Attention (4)" + }, + "COGS 101C": { + "dept": "COGS", + "description": "An introduction to structure of natural language, and to the cognitive processes that underline its acquisition, comprehension, and production. This course covers findings from linguistics, computer science, psychology, and cognitive neuroscience to provide an integrated perspective on human language abilities. ", + "name": "COGS 101C", + "prereqs": [ + "COGS 14A", + "COGS 1" + ], + "title": "Language (4)" + }, + "COGS 102A": { + "dept": "COGS", + "description": "Cognitive processes extend beyond the boundaries of the person to include the environment, artifacts, social interactions, and culture. Major themes include the philosophy and history of cognitive science, the role of artifacts in human cognition, and theories of socially distributed, embodied, and extended cognition. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ", + "name": "COGS 102A", + "prereqs": [ + "COGS 14A", + "COGS 1" + ], + "title": "Distributed Cognition (4)" + }, + "COGS 102B": { + "dept": "COGS", + "description": "This course examines memory, reasoning, language understanding, learning, and planning directly in everyday, real-world settings. The course work includes projects in which students make observations of real-world activity and analyze their cognitive significance. ", + "name": "COGS 102B", + "prereqs": [], + "title": "Cognitive Ethnography (4)" + }, + "COGS 102C": { + "dept": "COGS", + "description": "This is a project-based course focused on the process of cognitive design. Students work in teams to design and evaluate a prototype application or redesign an existing system. Three hours of lecture and two hours of design laboratory. ", + "name": "COGS 102C", + "prereqs": [ + "COGS 102B" + ], + "title": "Cognitive Design Studio (6)" + }, + "COGS 107A": { + "dept": "COGS", + "description": "This first course in the sequence focuses on principles of brain organization, from neurons to circuits to functional networks. It explores developmental plasticity, neuronal connectivity, cellular communication, complex signaling, and how these various dimensions form functional brain systems. ", + "name": "COGS 107A", + "prereqs": [], + "title": "Neuroanatomy and Physiology (4)" + }, + "COGS 107B": { + "dept": "COGS", + "description": "This course focuses on the electrical dynamics of neurons and how their patterns relate to perception, thought, and action. Neural activity patterns underlying vision, touch, audition, proprioception, and head orientation are examined in detail. Also examined are motor control, sleep/wake state production, action planning, learning, memory, attention, spatial cognition and function of the cerebellum, basal ganglia, and hippocampus. ", + "name": "COGS 107B", + "prereqs": [], + "title": "Systems Neuroscience (4)" + }, + "COGS 107C": { + "dept": "COGS", + "description": "This course reviews research investigating the neural bases for human mental processes, including processing of affective, social, linguistic, and visuospatial information, as well as memory, attention, and executive functions. Also discussed are brain development and brain aging, and the nature of intelligence and creativity. ", + "name": "COGS 107C", + "prereqs": [ + "COGS 107B" + ], + "title": "Cognitive Neuroscience (4)" + }, + "COGS 108": { + "dept": "COGS", + "description": "Data science is multidisciplinary, covering computer science, statistics, cognitive science and psychology, data visualization, artificial intelligence and machine learning, among others. This course teaches critical skills needed to pursue a data science career using hands-on programming and experimental challenges. ", + "name": "COGS 108", + "prereqs": [ + "COGS 18", + "CSE 11", + "CSE 8A", + "CSE 7" + ], + "title": "Data Science in Practice (4)" + }, + "COGS 109": { + "dept": "COGS", + "description": "Exposure to the basic computational methods useful throughout cognitive science. Computing basic statistics, modeling learning individuals, evolving populations, communicating agents, and corpus-based linguistics will be considered. ", + "name": "COGS 109", + "prereqs": [ + "CSE 11", + "COGS 14B", + "COGS 18", + "MATH 31AH", + "MATH 18", + "CSE 7", + "CSE 8A" + ], + "title": "Modeling and Data Analysis (4)" + }, + "COGS 11": { + "dept": "COGS", + "description": "How damaged and normal brains influence the way humans solve problems, remember or forget, pay attention to things; how they affect our emotions, and the way we use language in daily life.", + "name": "COGS 11", + "prereqs": [], + "title": "Minds and Brains (4)" + }, + "COGS 110": { + "dept": "COGS", + "description": "(Cross-listed with HDP 121.)", + "name": "COGS 110", + "prereqs": [], + "title": "The Developing Mind (4)" + }, + "COGS 115": { + "dept": "COGS", + "description": "This course provides an overview of neurological", + "name": "COGS 115", + "prereqs": [], + "title": "Neurological Development and Cognitive Change (4)" + }, + "COGS 118A": { + "dept": "COGS", + "description": "This course with COGS 118B forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118A include: regression, nearest neighborhood, decision tree, support vector machine, and ensemble classifiers. ", + "name": "COGS 118A", + "prereqs": [ + "CSE 11", + "MATH 20E", + "MATH 180A", + "MATH 31AH", + "MATH 18", + "CSE 8B" + ], + "title": "Introduction to Machine Learning I (4)" + }, + "COGS 118B": { + "dept": "COGS", + "description": "This course, with Cognitive Science 118A, forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118B include: maximum likelihood estimation, Bayesian parameter estimation, clustering, principal component analysis, and some application areas. ", + "name": "COGS 118B", + "prereqs": [ + "CSE 11", + "MATH 20E", + "MATH 180A", + "MATH 31AH", + "MATH 18", + "CSE 8B" + ], + "title": "Introduction to Machine Learning II (4)" + }, + "COGS 118C": { + "dept": "COGS", + "description": "This course will cover theoretical foundations and practical applications of signal processing to neural data. Topics include EEG/field potential methods (filtering, Fourier (spectral) analysis, coherence) and spike train analysis (reverse correlation, spike sorting, multielectrode recordings). Some applications to neural imaging (optical microscopy, fMRI) data will also be discussed. ", + "name": "COGS 118C", + "prereqs": [ + "PSYC 60", + "COGS 14B", + "COGS 109", + "COGS 108", + "MATH 31AH", + "MATH 18" + ], + "title": "Neural Signal Processing (4)" + }, + "COGS 118D": { + "dept": "COGS", + "description": "Statistical methods for analyzing behavioral data. A mathematically sophisticated course covering both classical and Bayesian statistical methods for estimation, hypothesis testing, regression, and model comparison. Emphasis on both mathematical understanding of statistical methods as well as common applications. ", + "name": "COGS 118D", + "prereqs": [ + "MATH 180A", + "MATH 31AH", + "MATH 18" + ], + "title": "Mathematical Statistics for Behavioral Data Analysis (4)" + }, + "COGS 119": { + "dept": "COGS", + "description": "This course will help students in the behavioral sciences (cognitive science, psychology, linguistics, neuroscience, and related fields) learn how to program experiments and analyze and present data. ", + "name": "COGS 119", + "prereqs": [ + "CSE 7", + "COGS 14B", + "MATH 20F" + ], + "title": "Programming for Experimental Research (4)" + }, + "COGS 12": { + "dept": "COGS", + "description": "Do people who speak different languages think differently? Does learning new languages change the way you think? Are some thoughts unthinkable without language? Course will bring together ideas and findings from psychology, linguistics, anthropology, neuroscience, and philosophy.", + "name": "COGS 12", + "prereqs": [], + "title": "Language, Culture, and Cognition (4)" + }, + "COGS 120": { + "dept": "COGS", + "description": "(Cross-listed with CSE 170.) Introduces fundamental methods and principles for designing, implementing, and evaluating user interfaces. Topics: user-centered design, rapid prototyping, experimentation, direct manipulation, cognitive principles, visual design, social software, software tools. Learn by doing: work with a team on a quarter-long design project. Recommended preparation: basic familiarity with HTML. Students may not receive credit for both Cognitive Science 120 and CSE 170. ", + "name": "COGS 120", + "prereqs": [ + "CSE 11", + "COGS 1", + "COGS 187A", + "CSE 8A", + "DSGN 1" + ], + "title": "Interaction Design (5)" + }, + "COGS 121": { + "dept": "COGS", + "description": "This course covers fundamentals of user interface design and implementation of web-based systems. A major component is completion of a substantial programming project in which students work together in small teams. ", + "name": "COGS 121", + "prereqs": [ + "CSE 11", + "CSE 8B", + "COGS 120" + ], + "title": "Human Computer Interaction Programming Studio (4)" + }, + "COGS 122": { + "dept": "COGS", + "description": "Explores tools and processes for innovating novel business concepts to solve problems involving the interaction between humans and technology. Students will work with an interdisciplinary team to understand unmet user needs and to create a value proposition that balances technical feasibility, financial viability, and desirability. ", + "name": "COGS 122", + "prereqs": [ + "DSGN 100", + "CSE 170", + "COGS 187B", + "COGS 187A", + "COGS 120" + ], + "title": "Startup Studio (4)" + }, + "COGS 123": { + "dept": "COGS", + "description": "This course explores the intersection of social behavior and computational systems. Students will examine a range of organizational, technical, and business challenges related to social computing, and learn how to use tools to analyze, design, and build online communities. ", + "name": "COGS 123", + "prereqs": [ + "COGS 120", + "DSGN 1", + "COGS 187B", + "COGS 187A", + "COGS 102C" + ], + "title": "Social Computing (4)" + }, + "COGS 124": { + "dept": "COGS", + "description": "In this advanced project-based course, we study the state-of-the-art in research on technical systems for human-computer interaction (HCI). Students will deconstruct the systems described in top-tier HCI papers and work in teams to create novel technical systems of their own. ", + "name": "COGS 124", + "prereqs": [ + "COGS 121", + "COGS 120" + ], + "title": "HCI Technical Systems Research (4)" + }, + "COGS 125": { + "dept": "COGS", + "description": "This is a studio class for students who are passionate about diving deep into interaction design and honing their design skills. Introduces social computing, input and interaction techniques, and information design. Students will regularly present work in a studio format. ", + "name": "COGS 125", + "prereqs": [ + "CSE 11", + "CSE 170", + "CSE 8B", + "COGS 120" + ], + "title": "Advanced Interaction Design (4)" + }, + "COGS 13": { + "dept": "COGS", + "description": "This course introduces students to multiple methods to investigate cognition and behavior in natural settings. Students will learn about ethnography, videography (video data collection, coding, and analysis), surveys design and conducting interviews, and how to move from observations to modeling.", + "name": "COGS 13", + "prereqs": [], + "title": "Field Methods: Studying Cognition in the Wild (4)" + }, + "COGS 133": { + "dept": "COGS", + "description": "Data science is multidisciplinary, covering computer science, statistics, cognitive science and psychology, data visualization, artificial intelligence, and machine learning, among others. This course teaches critical skills needed to pursue a data science career using hands-on programming and experimental challenges. ", + "name": "COGS 133", + "prereqs": [ + "COGS 14B", + "COGS 9", + "CSE 8A" + ], + "title": "Data Science in Practice (4)" + }, + "COGS 143": { + "dept": "COGS", + "description": "Review of historical perspectives: introspectionist, behaviorist, and cognitivist models. Examination of how perceptual and motor constraints and ecological demands yield species-specific differences in cognitive repertoire. Contemporary issues in the comparative study of the evolution of human cognition. ", + "name": "COGS 143", + "prereqs": [], + "title": "Animal Cognition (4)" + }, + "COGS 144": { + "dept": "COGS", + "description": "This course presents the building blocks of social cognition from a developmental and evolutionary perspective and focuses on how and when children develop these abilities and how humans compare to other species such as great apes, birds, and dogs. ", + "name": "COGS 144", + "prereqs": [ + "COGS 14A", + "COGS 14B" + ], + "title": "Social Cognition: A Developmental and Evolutionary Perspective (4)" + }, + "COGS 14A": { + "dept": "COGS", + "description": "Introduction to the scientific method. Methods of knowledge acquisition, research questions, hypotheses, operational definitions, variables, control. Observation, levels of measurement, reliability, validity. Experimentation and design: between-groups, within-subjects, quasi-experimental, factorial, single-subject. Correlational and observational studies. Ethics in research.", + "name": "COGS 14A", + "prereqs": [], + "title": "Introduction to Research Methods (4)" + }, + "COGS 14B": { + "dept": "COGS", + "description": "Introduction to descriptive and inferential statistics. Tables, graphs, measures of central tendency and variability. Distributions, Z-scores, correlation, regression. Probability, sampling, logic of inferential statistics, hypothesis testing, decision theory. T-test, one and two-way Anova, nonparametric tests (Chi-square). ", + "name": "COGS 14B", + "prereqs": [ + "COGS 14A" + ], + "title": "Introduction to Statistical Analysis (4)" + }, + "COGS 15": { + "dept": "COGS", + "description": "This course uses the study of swearing to introduce topics in language: how children learn it, why it changes over time, and how people pronounce and understand it. Students who believe they could be offended by the study of swearing and other taboo language might not find this course appropriate for them.", + "name": "COGS 15", + "prereqs": [], + "title": "What the *#!?: An Uncensored Introduction to Language (4)" + }, + "COGS 151": { + "dept": "COGS", + "description": "Human thought and meaning are deeply tied to the capacity for mapping conceptual domains onto each other, inducing common schemas and performing mental simulation. This course examines major aspects of this cognitive activity including metaphor, conceptual blending, and embodied cognition. ", + "name": "COGS 151", + "prereqs": [], + "title": "Analogy and Conceptual Systems (4)" + }, + "COGS 152": { + "dept": "COGS", + "description": "How the human mind/brain creates mathematics: embodiment, innovation, and creativity. The emergence and power of abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero. Cognitive approaches that connect mathematics to human thought in general. ", + "name": "COGS 152", + "prereqs": [ + "PHIL 1", + "COGS 1", + "PSYC 1" + ], + "title": "Cognitive Foundations of Mathematics (4)" + }, + "COGS 153": { + "dept": "COGS", + "description": "", + "name": "COGS 153", + "prereqs": [], + "title": "Language Comprehension (4)" + }, + "COGS 154": { + "dept": "COGS", + "description": "Neural bases of language use in normal adults, and neural bases of language and communication development in normal children. Evidence on the language and communication deficits in adults (especially aphasia and dementia) and children (specific language impairment, focal brain injury, retardation, and autism). ", + "name": "COGS 154", + "prereqs": [], + "title": "Communication Disorders in Children and Adults (4)" + }, + "COGS 155": { + "dept": "COGS", + "description": "Spontaneous gestures and their relationship", + "name": "COGS 155", + "prereqs": [], + "title": "Gesture and Cognition (4)" + }, + "COGS 156": { + "dept": "COGS", + "description": "A comprehensive survey of theory, method and research findings", + "name": "COGS 156", + "prereqs": [], + "title": "Language Development (4)" + }, + "COGS 157": { + "dept": "COGS", + "description": "Explores how humans (and other species) process music, including pitch, meter, emotion, motor aspects, links to language, brain activity. Students should have experience reading musical notation. ", + "name": "COGS 157", + "prereqs": [ + "COGS 101A", + "COGS 101C", + "COGS 101B" + ], + "title": "Music and the Mind (4)" + }, + "COGS 160": { + "dept": "COGS", + "description": "Special topics in cognitive science are discussed. (May be repeated when topics vary.) ", + "name": "COGS 160", + "prereqs": [], + "title": "Upper-Division Seminar on Special Topics (4)" + }, + "COGS 163": { + "dept": "COGS", + "description": "Research is showing that cellular metabolic processes are mediating normal and abnormal brain function. For example, neurocognitive disorders often co-occur with metabolic disturbances, such as insulin resistance, diabetes, and obesity. An understanding of these mechanisms will provide insight to new treatments for cognitive and neurological disorders. The course will cover topics on the role of abnormal cellular structure, genetic, epigenetic and pathogenic influences on synaptic signaling. ", + "name": "COGS 163", + "prereqs": [], + "title": "Metabolic Disorders of the Brain (4)" + }, + "COGS 164": { + "dept": "COGS", + "description": "This course will address principles of motivation, valuation, and reward, spanning a large territory of topics, from rules of synaptic learning to classroom learning. Recommended preparation: courses in basic biology, physiology, Cognitive Science 107A or 107B or 107C, or courses in education. ", + "name": "COGS 164", + "prereqs": [], + "title": "Neurobiology of Motivation (4)" + }, + "COGS 169": { + "dept": "COGS", + "description": "Behavior draws on a wide range of genes acting as a complex source of information. Model organisms\u2014bacteria, Paramecium, C. elegans, Drosophila, and mice\u2014have provided insight into how genes influence both innate and learned behaviors. ", + "name": "COGS 169", + "prereqs": [ + "COGS 1", + "COGS 107A" + ], + "title": "Genetic Information for Behavior: From Single Cells to Mammals (4)" + }, + "COGS 17": { + "dept": "COGS", + "description": "Introduction to the organization and functions of the nervous system. Topics include molecular, cellular, developmental, systems, and behavioral neurobiology. Specifically, structure and function of neurons, peripheral and central nervous systems, sensory, motor, and control systems, learning and memory mechanisms. (Students may not receive credit for both Biology 12 and Cognitive Science 17. This course fulfills general-education requirements for Marshall and Roosevelt Colleges as well as Warren by petition.)", + "name": "COGS 17", + "prereqs": [], + "title": "Neurobiology of Cognition (4)" + }, + "COGS 170": { + "dept": "COGS", + "description": "This course will provide an interactive and hands-on introduction to rhythms and large-scale electrical potentials of the brain. Topics will include the resonance properties of neurons, rhythmic interactions between neurons, the coordination of activity across large populations of neurons that is measurable in the local field potential (LFP) and electroencephalogram (EEG), the advantages of temporally coordinated neural activity, and relevant insights about the brain and cognitive disorders. ", + "name": "COGS 170", + "prereqs": [ + "BILD 12", + "COGS 17" + ], + "title": "Brain Waves Across Scales (4)" + }, + "COGS 171": { + "dept": "COGS", + "description": "This class will examine the neuroanatomy, physiology, and functional correlates of the human mirror neuron system and its putative role in social cognition, e.g., action understanding, empathy, and theory of mind. We will examine the developmental, neuroimaging, electrophysiological, as well as clinical evidence, for and against this hypothesis. ", + "name": "COGS 171", + "prereqs": [], + "title": "Mirror Neuron System (4)" + }, + "COGS 172": { + "dept": "COGS", + "description": "A review of the patterns of impaired and intact cognitive abilities present in brain-damaged patients in terms of damage to one or more components of a model of normal cognitive functioning. ", + "name": "COGS 172", + "prereqs": [ + "COGS 107A" + ], + "title": "Brain Disorders and Cognition (4)" + }, + "COGS 174": { + "dept": "COGS", + "description": "This course explores how drugs interact with the brain/mind and culture. It covers evolutionary and historical perspectives, brain chemistry, pharmacology, expectancies and placebo effects, and models of addiction. It also provides a biopsychosocial survey of commonly used and abused substances. ", + "name": "COGS 174", + "prereqs": [], + "title": "Drugs: Brain, Mind, and Culture (4)" + }, + "COGS 175": { + "dept": "COGS", + "description": "This course will review the literature that correlates brain rhythms in the human EEG with aspects of cognition, behavioral states, neuropsycho-pharmacology, and psychopathology in order to understand the psychological and neurophysiological underpinnings of these experiences. ", + "name": "COGS 175", + "prereqs": [ + "COGS 101A", + "COGS 107A" + ], + "title": "The Neuropsychological Basis of Alternate States of Consciousness (4)" + }, + "COGS 176": { + "dept": "COGS", + "description": "This course will combine an examination of the neural character of quiet and active sleep states and their potential functions with an examination of the different mechanisms by which the brain mediates attention to specific features of the world. ", + "name": "COGS 176", + "prereqs": [], + "title": "From Sleep to Attention (4)" + }, + "COGS 177": { + "dept": "COGS", + "description": "The course examines features of neural dynamics that map spatial and temporal relationships. Lectures will cover interval timing, mapping of item-to-observer position, mapping of observer-to-world position, and the conjunction of spatial and temporal coding in hippocampus. ", + "name": "COGS 177", + "prereqs": [], + "title": "Space and Time in the Brain (4)" + }, + "COGS 178": { + "dept": "COGS", + "description": "Evidence for genetic mediation of behavioral and neural differences, mechanisms that may mediate these effects, and the roles of the environment and experience are discussed. ", + "name": "COGS 178", + "prereqs": [ + "COGS 107B", + "COGS 107A" + ], + "title": "Genes, Brains, and Behavior (4)" + }, + "COGS 179": { + "dept": "COGS", + "description": "Survey the theory and practice of using electrical", + "name": "COGS 179", + "prereqs": [], + "title": "Electrophysiology of Cognition (4)" + }, + "COGS 18": { + "dept": "COGS", + "description": "This class will teach fundamental Python programming skills and practices, including the \u201cZen of Python.\u201d Students will focus on scientific computing and learn to write functions and tests, as well as how to debug code using the Jupyter Notebook programming environment. Students with limited computing experience may take COGS 3 for preparation.", + "name": "COGS 18", + "prereqs": [], + "title": "Introduction to Python (4)" + }, + "COGS 180": { + "dept": "COGS", + "description": "This course covers recent advances in the understanding of neural mechanisms and computational principles underlying the brain\u2019s ability to make decisions. The role of various factors, as well as their neural encoding, will be considered, e.g., observation noise, reward, risk, internal uncertainty, emotional state, external incentives. ", + "name": "COGS 180", + "prereqs": [ + "CSE 11", + "MATH 20B", + "PSYC 106", + "COGS 108", + "MATH 20F", + "MATH 31AH", + "COGS 107B", + "MATH 18", + "CSE 7", + "CSE 8A", + "COGS 109", + "BILD 12" + ], + "title": "Decision Making in the Brain (4)" + }, + "COGS 181": { + "dept": "COGS", + "description": "This course will cover the basics about neural networks, as well as recent developments in deep learning including deep belief nets, convolutional neural networks, recurrent neural networks, long-short term memory, and reinforcement learning. We will study details of the deep learning architectures with a focus on learning end-to-end models for these tasks, particularly image classification. ", + "name": "COGS 181", + "prereqs": [ + "CSE 11", + "COGS 109", + "COGS 108", + "MATH 180A", + "MATH 31AH", + "MATH 18", + "ECE 109" + ], + "title": "Neural Networks and Deep Learning (4)" + }, + "COGS 184": { + "dept": "COGS", + "description": "This interdisciplinary course integrates data on evolutionary theory, hominid prehistory, primate behavior, comparative neuro-anatomy, cognitive development, and collaboration. After lectures, readings, discussions, and Museum of Man tour, students generate a detailed timeline of five million years of human cognitive evolution. ", + "name": "COGS 184", + "prereqs": [ + "COGS 107C", + "COGS 107B", + "COGS 107A", + "COGS 17" + ], + "title": "Modeling the Evolution of Cognition (4)" + }, + "COGS 185": { + "dept": "COGS", + "description": "This course is an advanced seminar and project course that follows the Natural Computation courses. Advanced and new machine learning methods will be discussed and used. ", + "name": "COGS 185", + "prereqs": [ + "COGS 118B", + "COGS 118A" + ], + "title": "Advanced Machine Learning Methods (4)" + }, + "COGS 187A": { + "dept": "COGS", + "description": "Examines the cognitive basis of successful web and multimedia design. Topics: information architecture, navigation, usability, graphic layout, transaction design, and how to understand user interaction. ", + "name": "COGS 187A", + "prereqs": [ + "COGS 10", + "CSE 11", + "COGS 18", + "CSE 7", + "CSE 8A", + "DSGN 1" + ], + "title": "Usability and Information Architecture (4)" + }, + "COGS 187B": { + "dept": "COGS", + "description": "This course follows up on the basics of multimedia design taught in Cognitive Science 187A. Students will probe more deeply into selective topics, such as animation, navigation, graphical display of information, and narrative coherence. ", + "name": "COGS 187B", + "prereqs": [ + "COGS 187A" + ], + "title": "Practicum in Professional Web Design (4)" + }, + "COGS 188": { + "dept": "COGS", + "description": "This class will cover a broad spectrum of machine learning algorithms. It builds on students\u2019 previous exposure to machine learning. It covers new artificial intelligence algorithms ranging from topic models as used in the text data analysis to genetic algorithms. ", + "name": "COGS 188", + "prereqs": [ + "COGS 109", + "COGS 118B", + "COGS 118A" + ], + "title": "AI Algorithm and Social Language (4)" + }, + "COGS 189": { + "dept": "COGS", + "description": "This course will discuss signal processing, pattern recognition algorithms, and human-computer interaction issues in EEG-based brain-computer interfaces. Other types of brain-computer interfaces will also be discussed. ", + "name": "COGS 189", + "prereqs": [ + "COGS 109", + "COGS 108", + "COGS 118A", + "COGS 118B" + ], + "title": "Brain Computer Interfaces (4)" + }, + "COGS 190A": { + "dept": "COGS", + "description": "This course prepares students for the Cognitive", + "name": "COGS 190A", + "prereqs": [], + "title": "Pre-Honors Project in Cognitive Science (4)" + }, + "COGS 190B": { + "dept": "COGS", + "description": "This course will allow cognitive science honors", + "name": "COGS 190B", + "prereqs": [], + "title": "Honors Studies in Cognitive Science (4)" + }, + "COGS 190C": { + "dept": "COGS", + "description": "This course will provide honors candidates", + "name": "COGS 190C", + "prereqs": [], + "title": "Honors Thesis in Cognitive Science (4)" + }, + "COGS 190D": { + "dept": "COGS", + "description": "This course is affiliated with the honors program (190A-B-C) and is required of honors students during spring quarter. Its aim is to prepare students to present research results to an audience. Emphasis will be on the oral presentation (organization, wording, graphics), but there will also be some discussion about written research reports. Seminar style format with occasional short lectures wherein students will practice oral presentations and provide constructive criticism to each other. ", + "name": "COGS 190D", + "prereqs": [], + "title": "Preparation for Thesis Presentation (1)" + }, + "COGS 195": { + "dept": "COGS", + "description": "Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. Applications must be submitted to and approved by the department. P/NP grades only. May be taken for credit three times. ", + "name": "COGS 195", + "prereqs": [], + "title": "Instructional Apprenticeship in Cognitive Science (4)" + }, + "COGS 198": { + "dept": "COGS", + "description": "This independent study course is for small groups of advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "name": "COGS 198", + "prereqs": [], + "title": "Directed Group Study (2 or 4)" + }, + "COGS 199": { + "dept": "COGS", + "description": "This independent study course is for individual, advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "name": "COGS 199", + "prereqs": [], + "title": "Special Project (2 or 4)" + }, + "COGS 2": { + "dept": "COGS", + "description": "This course is an introduction to the neuroscience behind the principles of economic decision-making. The topics in this course are aimed at exploring the underlying cognitive and neural mechanisms that drive the decisions behind traditional economic models.", + "name": "COGS 2", + "prereqs": [], + "title": "Cognitive NeuroEconomics (4)" + }, + "COGS 20": { + "dept": "COGS", + "description": "(Cross-listed with MUS 20.) How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both Cognitive Science 20 and MUS 20.", + "name": "COGS 20", + "prereqs": [], + "title": "Exploring the Musical Mind (4)" + }, + "COGS 200": { + "dept": "COGS", + "description": "This seminar emphasizes the conceptual basis of cognitive science, including representation, processing mechanisms, language, and the role of interaction among individuals, culture, and the environment. Current developments in each field are considered as they relate to issues in cognitive science. (May be repeated for credit.)", + "name": "COGS 200", + "prereqs": [], + "title": "Cognitive Science Seminar (4)" + }, + "COGS 201": { + "dept": "COGS", + "description": "Examination of the neurophysiological and neuroanatomical basis for perception, cognition, and learning. Lectures will focus on the dynamics of neural activity in cortical and subcortical structures as they relate to sensory processing, motor control, attention, arousal state, and memory.", + "name": "COGS 201", + "prereqs": [], + "title": "Systems Neuroscience (4)" + }, + "COGS 202": { + "dept": "COGS", + "description": "This course surveys the development of symbolic and connectionist models of cognition. Selected readings from the late 1940s to the present are covered. Topics include: Turing machines, information theory, computational complexity, search, learning, symbolic artificial intelligence, and neural networks.", + "name": "COGS 202", + "prereqs": [], + "title": "Cognitive Science Foundations: Computational Modeling of Cognition (4)" + }, + "COGS 203": { + "dept": "COGS", + "description": "Surveys a variety of theoretical and methodological approaches to the study of human cognition. Topics include language structure, language processing, concepts and categories, knowledge representation, analogy and metaphor, reasoning, planning and action, problem solving, learning and expertise, and emotion.", + "name": "COGS 203", + "prereqs": [], + "title": "Cognitive Science Foundations: Theories and Methods in the Study of Cognitive Phenomena (4)" + }, + "COGS 205": { + "dept": "COGS", + "description": "This course is taken to focus the students\u2019 development of a thesis topic and research proposal. Students prepare an outline of thesis proposal and make an oral public presentation of the proposed topic prior to the end of the third year. S/U only.", + "name": "COGS 205", + "prereqs": [], + "title": "Introduction to Thesis Research (4)" + }, + "COGS 210A-B-C": { + "dept": "COGS", + "description": "This sequence is an intensive research project. Students under faculty mentorship perform a thorough analysis of the problem and the literature, carry out original studies, and prepare oral and written presentations. Students should aim for a report of publishable quality. Letter grade required.", + "name": "COGS 210A-B-C", + "prereqs": [], + "title": "Introduction to Research (4-4-4)" + }, + "COGS 211A-B-C": { + "dept": "COGS", + "description": "Research Methods in Cognitive Science (2-2-2)", + "name": "COGS 211A-B-C", + "prereqs": [], + "title": "" + }, + "COGS 219": { + "dept": "COGS", + "description": "An applied hands-on programming course that focuses on the design, implementation and analysis of experiments. Topics include experiment design, stimulus presentation, response collection, file manipulation, data analysis, display, and presentation. Course work includes both team and individual projects. Graduate students who have not programmed at all should speak with the professor beforehand.", + "name": "COGS 219", + "prereqs": [], + "title": "Programming for Behavioral Sciences (4)" + }, + "COGS 220": { + "dept": "COGS", + "description": "This seminar surveys current research in information visualization with the goal of preparing students to do original research. The focus is on the cognitive aspects of information design, dynamic representations, and computational techniques. Topics vary each time course is offered.", + "name": "COGS 220", + "prereqs": [], + "title": "Information Visualization (4)" + }, + "COGS 225": { + "dept": "COGS", + "description": "This course is designed to open the doors for students who are interested in learning about the fundamental principles of visual perception and important applications of computer vision.", + "name": "COGS 225", + "prereqs": [], + "title": "Visual Computing (4)" + }, + "COGS 229": { + "dept": "COGS", + "description": "(Cross-listed with CSE 219.) New societal challenges, cultural values, and technological opportunities are changing design\u2014and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. S/U grades only. May be taken for credit ninety-nine times.", + "name": "COGS 229", + "prereqs": [], + "title": "Design at Large (1)" + }, + "COGS 230": { + "dept": "COGS", + "description": "(Cross-listed with CSE 216.) Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Letter grades only.", + "name": "COGS 230", + "prereqs": [], + "title": "Topics in Human-Computer Interaction (4)" + }, + "COGS 231": { + "dept": "COGS", + "description": "Graduate-level seminar studying the design of programming tools from a human-centered perspective, relying primarily on the latest research literature combined with classical theory in cognitive science and human-computer interaction. Course work involves critical reading, discussion, and programming projects. Letter grades only. Recommended preparation: Cognitive Science 120 or CSE 170.", + "name": "COGS 231", + "prereqs": [], + "title": "Design Seminar on Human-Centered Programming (4)" + }, + "COGS 234": { + "dept": "COGS", + "description": "This course focuses on aspects of individual and socially distributed cognition. Empirical examples are drawn from natural and experimental settings that presuppose, tacitly or explicitly, socially distributed knowledge among participants. The class examines the way locally managed, pragmatic conditions influence how decisions are framed.", + "name": "COGS 234", + "prereqs": [], + "title": "Distributed Cognition (4)" + }, + "COGS 238": { + "dept": "COGS", + "description": "(Same as Linguistics 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. (As topics vary, may be repeated for credit.)", + "name": "COGS 238", + "prereqs": [], + "title": "Topics in Cognitive Linguistics (1\u20134)" + }, + "COGS 241": { + "dept": "COGS", + "description": "(Same as Neurosciences 241.) This course will cover ethical issues that arise in academia, including: dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss \u201csurvival\u201d issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. S/U only.", + "name": "COGS 241", + "prereqs": [], + "title": "Ethics and Survival Skills in Academia (3)" + }, + "COGS 243": { + "dept": "COGS", + "description": "This course provides a rigorous treatment of hypothesis testing, statistical inference, model fitting, and exploratory data analysis techniques used in the cognitive and neural sciences. Students will acquire an understanding of mathematical foundations and hands-on experience in applying these methods using Matlab.", + "name": "COGS 243", + "prereqs": [], + "title": "Statistical Inference and Data Analysis (2 or 4)" + }, + "COGS 252": { + "dept": "COGS", + "description": "Empirical investigation of the nature of mathematics. How the human mind/brain creates abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero: embodiment, creativity, and history. Cognitive approaches that connect mathematics to human thought in general.", + "name": "COGS 252", + "prereqs": [], + "title": "Cognitive Science of Mathematics (4)" + }, + "COGS 260": { + "dept": "COGS", + "description": "Specific topics in cognitive science are discussed. (May be repeated when topics vary.)", + "name": "COGS 260", + "prereqs": [], + "title": "Seminar on Special Topics (1\u20134)" + }, + "COGS 277": { + "dept": "COGS", + "description": "The discovery of mirror neurons in the monkey brain raised the possibility that \u201cmirroring\u201d constitutes instances of mental simulation. In this seminar, we will examine the neural basis of social cognition and specifically the relationship between mirroring processes and cognition.", + "name": "COGS 277", + "prereqs": [], + "title": "Mirroring in Social Cognition (4)" + }, + "COGS 278": { + "dept": "COGS", + "description": "Evidence for the heritability and for the association of genetic variants with behavioral and neural phenotypes will be reviewed. Integrative models of gene-environment interaction will be discussed. Guest faculty will describe their own work in this area.", + "name": "COGS 278", + "prereqs": [], + "title": "Genetics and Individuality (4)" + }, + "COGS 279": { + "dept": "COGS", + "description": "(Cross-listed", + "name": "COGS 279", + "prereqs": [], + "title": "Electrophysiology of Cognition (4)" + }, + "COGS 280": { + "dept": "COGS", + "description": "Brain rhythms play a critical role in perception and cognition. What are they? Where do they come from? This course will examine the origin and function of neural oscillations and the role they play in neural computation, representation, and cognition. ", + "name": "COGS 280", + "prereqs": [], + "title": "Neural Oscillations (4)" + }, + "COGS 283": { + "dept": "COGS", + "description": "This course is designed for students interested in learning about basic tools and technologies for dealing with big image data in the sense of collecting, crawling, processing, and classifying images, focusing on matching, hashing, deep learning, and online learning.", + "name": "COGS 283", + "prereqs": [], + "title": "Big Visual Data Processing (4)" + }, + "COGS 290": { + "dept": "COGS", + "description": "Laboratory rotations provide students with experience in the various experimental methods used in cognitive science. ", + "name": "COGS 290", + "prereqs": [], + "title": "Cognitive Science Laboratory Rotation (2)" + }, + "COGS 291": { + "dept": "COGS", + "description": "Students engage in discussions of reading of recent research in an area designated and directed by the instructor and also participate in the design and execution of original research. Students are expected to demonstrate oral and written competence in presenting original research. ", + "name": "COGS 291", + "prereqs": [], + "title": "Laboratory Research (1\u20134)" + }, + "COGS 298": { + "dept": "COGS", + "description": "Students study and research selected topics under the direction of a member of the faculty.", + "name": "COGS 298", + "prereqs": [], + "title": "Directed Independent Study (1\u201312)" + }, + "COGS 299": { + "dept": "COGS", + "description": "Students are provided directed research on their dissertation topic by faculty advisers.", + "name": "COGS 299", + "prereqs": [], + "title": "Thesis Research (1\u201312)" + }, + "COGS 3": { + "dept": "COGS", + "description": "Covers the fundamental concepts that underlie all programming languages and provides an introduction to the essential information about algorithms and data structures. Students design and implement web applications using HTML5, CSS3, JavaScript, and Photoshop. No previous programming experience is required.", + "name": "COGS 3", + "prereqs": [], + "title": "Introduction to Computing (4)" + }, + "COGS 500": { + "dept": "COGS", + "description": "This practicum for graduate students provides experience in teaching undergraduate cognitive science courses. S/U only.", + "name": "COGS 500", + "prereqs": [], + "title": "Teaching Apprenticeship (1\u20134)" + }, + "COGS 8": { + "dept": "COGS", + "description": "Introductory-level course that will give students insight into the fundamental concepts of algorithmic thinking and design. The course will provide the students with first-person, hands-on experience programming a web crawler and simple physical robots.", + "name": "COGS 8", + "prereqs": [], + "title": "Hands-on Computing (4)" + }, + "COGS 87": { + "dept": "COGS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "COGS 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "COGS 9": { + "dept": "COGS", + "description": "Concepts of data and its role in science will be introduced, as well as the ideas behind data-mining, text-mining, machine learning, and graph theory, and how scientists and companies are leveraging those methods to uncover new insights into human cognition.", + "name": "COGS 9", + "prereqs": [], + "title": "Introduction to Data Science (4)" + }, + "COGS 90": { + "dept": "COGS", + "description": "Special topics in cognitive science are discussed. P/NP grades only. (May be repeated when topics vary.)", + "name": "COGS 90", + "prereqs": [], + "title": "Undergraduate Seminar (1)" + }, + "COGS 91": { + "dept": "COGS", + "description": "The department faculty and the Students for Cognitive and Neurosciences (SCANS) offer this seminar exploring issues in cognitive science. It includes informal faculty research presentations, investigations of topics not covered in the curriculum, and discussions on graduate school and careers. (May be repeated when topics vary.) (Will not be offered in 2017\u201318.)", + "name": "COGS 91", + "prereqs": [], + "title": "SCANS Presents (1)" + }, + "COGS 92": { + "dept": "COGS", + "description": "Psychological resiliency will be addressed both scientifically and pragmatically. Students will explore the way cognitive and behavioral factors contribute to one\u2019s ability to cope with the stresses of life and emerge from them stronger than before. P/NP only. (Will not be offered in 2017\u201318.)", + "name": "COGS 92", + "prereqs": [], + "title": "Resiliency in the Face of Adversity (2)" + }, + "COGS 99": { + "dept": "COGS", + "description": "Independent literature or laboratory research by arrangement with and under direction of a Department of Cognitive Science faculty member. ", + "name": "COGS 99", + "prereqs": [], + "title": "Independent Study (2 or 4)" + }, + "COMM 10": { + "dept": "COMM", + "description": "Introduction to the history, theory, and practice of communication, including language and literacy, representation and semiotics, mediated technologies and institutional formations, and social interaction. Integrates the study of communication with a range of media production (for example, writing, electronic media, film, performance). COMM 10 may be taken concurrently with the COMM A-B-C courses and intermediate electives. Course is offered fall, winter, and summer quarters.", + "name": "COMM 10", + "prereqs": [], + "title": "Introduction to Communication (4)" + }, + "COMM 100A": { + "dept": "COMM", + "description": "A critical introduction to processes of interaction and engagement in lived and built environments. Includes historical survey of theories/methods, including actor network theory, conversation analysis, ethnography, ethnomethodology, cultural linguistics, performance, and social cognition; and integrates scholarly study with production-oriented engagement. Students will not receive credit for COHI 100 and COMM 100A. ", + "name": "COMM 100A", + "prereqs": [ + "COMM 10" + ], + "title": "Communication, the Person, and Everyday Life (4)" + }, + "COMM 100B": { + "dept": "COMM", + "description": "A critical introduction to the practice and the effects of representation within historically situated cultural contexts. Surveys a range of theories/methods in interpretations and identity to understand the effects of these practices upon the form and content of various representational genres, and integrates scholarly study with production-oriented engagement. Students will not receive credit for COCU 100 and COMM 100B. ", + "name": "COMM 100B", + "prereqs": [ + "COMM 10" + ], + "title": "Communication, Culture, and Representation (4)" + }, + "COMM 100C": { + "dept": "COMM", + "description": "A critical introduction to structures of communication formed across the intersections of the state, economy, and civil society. Includes historical survey of communication industries, legal and policy-based arenas, civic and political organizations, and other social institutions; and integrates scholarly study with production-oriented engagement. Students will not receive credit for COSF 100 and COMM 100C. ", + "name": "COMM 100C", + "prereqs": [ + "COMM 10" + ], + "title": "Communication, Institutions, and Power (4)" + }, + "COMM 101": { + "dept": "COMM", + "description": "This upper-level undergraduate course is required as the gateway to all future media production courses. Students will learn about historical and theoretical contemporary media practices such as film, video, Internet, and social media production and how these practices are informed by technical and social constraints. In lab, students will work hands-on with video and new media equipment to apply what they have learned through genre and practical technique. Students will not receive credit for COGN 21 or 22 and COMM 101. ", + "name": "COMM 101", + "prereqs": [ + "COMM 10" + ], + "title": "Introduction to Audiovisual Media Practices (4)" + }, + "COMM 101D": { + "dept": "COMM", + "description": "Prepare students to edit on nonlinear editing facilities and introduce aesthetic theories of editing: time code editing, time line editing on the Media 100, digital storage and digitization of audio and video, compression, resolution, and draft mode editing. By the end of the course students will be able to demonstrate mastery of the digital editing facilities. May be taken for credit three times. Students will not receive credit for COMT 100 and COMM 101D. ", + "name": "COMM 101D", + "prereqs": [ + "COMM 101", + "COMM 10" + ], + "title": "MPL: Nonlinear/Digital Editing (4)" + }, + "COMM 101E": { + "dept": "COMM", + "description": "This is a practical course on ethnographic fieldwork\u2014obtaining informed consent interviewing, negotiating, formulating a research topic, finding relevant literature, writing a research paper, and assisting others with their research. May be taken for credit three times. Students will not receive credit for COMT 112 and COMM 101E. ", + "name": "COMM 101E", + "prereqs": [ + "COMM 101", + "COMM 10" + ], + "title": "MPL: Ethnographic Methods for Media Production (4)" + }, + "COMM 101K": { + "dept": "COMM", + "description": "Digital video is the medium used in this class both as a production technology and as a device to explore the theory and practice of documentary production. Technical demonstrations, lectures, production exercises, and readings will emphasize the interrelation between production values and ethics, problems of representation, and documentary history. May be taken for credit three times. Students will not receive credit for COMT 120 and COMM 101K. ", + "name": "COMM 101K", + "prereqs": [ + "COMM 101", + "COMM 10" + ], + "title": "MPL: Documentary Sketchbook (4)" + }, + "COMM 101M": { + "dept": "COMM", + "description": "This course introduces students to computers as media of communication. Each quarter students participate in a variety of networking activities designed to show the interactive potential of the medium. Fieldwork designed to teach basic methods is combined with readings designed to build a deeper theoretical understanding of computer-based communication. Students will not receive credit for COMT 111A and COMM 101M. ", + "name": "COMM 101M", + "prereqs": [ + "COMM 10" + ], + "title": "MPL: Communication and Computers (4)" + }, + "COMM 101N": { + "dept": "COMM", + "description": "Advanced seminar in sound production, design, editing. Students create projects by recording original sounds, editing on a Pro-Tools system. We consider the potential of sound in film, radio, TV, and the web by reviewing work and reading sound theory. May be taken for credit three times. Students will not receive credit for COMT 121 and COMM 101N. ", + "name": "COMM 101N", + "prereqs": [ + "COMM 101", + "COMM 10" + ], + "title": "MPL: Sound Production and Manipulation (4)" + }, + "COMM 101T": { + "dept": "COMM", + "description": "Specialized study in production with topics to be determined by the instructor for any given quarter. Students will use studio, editing rooms, cameras to construct a variety of in or outside studio productions that can include YouTube, Documentary shorts, Vimeo, with topics that show the effects on social issues. May be taken for credit three times. ", + "name": "COMM 101T", + "prereqs": [ + "COMM 101", + "VIS 70N", + "COGN 22" + ], + "title": "MPL: Topics in Production (4)" + }, + "COMM 102C": { + "dept": "COMM", + "description": "A combined lecture/lab in a specially designed after-school setting in southeastern San Diego working with children and adults. Students design new media and produce special projects, and explore issues related to human development, social justice, and community life. May be taken for credit three times. ", + "name": "COMM 102C", + "prereqs": [], + "title": "MMPP: Practicum in New Media and Community Life (6)" + }, + "COMM 102D": { + "dept": "COMM", + "description": "A combined lecture/lab course on after-school learning, social change, and community-based research. Students are expected to participate in a supervised after-school setting at one of four community labs in San Diego County. Students will learn ethnographic field methods, develop culturally relevant curriculum, and work in diverse settings. May be taken for credit three times. ", + "name": "COMM 102D", + "prereqs": [], + "title": "MMPP: Practicum in Child Development (6)" + }, + "COMM 102M": { + "dept": "COMM", + "description": "This course offers students the opportunity to produce and engage in critical discussions around various television production formats. We will study and produce a variety of projects, including public service announcements, panel programs, scripted drama, and performance productions. May be taken for credit three times. ", + "name": "COMM 102M", + "prereqs": [ + "COMM 101", + "COGN 22", + "VIS 70N", + "COMM 10" + ], + "title": "MMPP: Studio Television (6)" + }, + "COMM 102P": { + "dept": "COMM", + "description": "An introduction to the techniques and conventions common in television production with equal emphasis on method and content. Studio sessions provide students with opportunities to experiment in framing subject matter through a variety of cinematographic methods. May be taken for credit three times. ", + "name": "COMM 102P", + "prereqs": [ + "COMM 101", + "COGN 22", + "VIS 70N", + "COMM 10" + ], + "title": "MMPP: Television Analysis and Production (6)" + }, + "COMM 102T": { + "dept": "COMM", + "description": "An advanced television course that examines the history, form, and function of the television documentary in American society. Experimentation with documentary techniques and styles requires prior knowledge of television or film production. Laboratory sessions apply theory and methods in the documentary genre via technological process. Integrates research, studio, and field experience of various media components. May be taken for credit three times. ", + "name": "COMM 102T", + "prereqs": [ + "COMM 101", + "COGN 22", + "VIS 70N", + "COMM 10" + ], + "title": "MMPP: Television Documentary (6)" + }, + "COMM 103D": { + "dept": "COMM", + "description": "History of nonfiction film and video. Through film and written texts we survey the nonfiction film genre, considering technological innovations, ethical issues, and formal movements related to these representations of the \u201creal.\u201d Students write a research paper in lieu of a final. ", + "name": "COMM 103D", + "prereqs": [ + "COMM 10" + ], + "title": "CM: Documentary History and Theory (4)" + }, + "COMM 103E": { + "dept": "COMM", + "description": "This course considers the social, cultural, economic, and technological contexts that have shaped electronic media, from the emergence of radio and television to their convergence through the Internet, and how these pervasive forms of audiovisual culture have impacted American society. ", + "name": "COMM 103E", + "prereqs": [ + "COMM 10" + ], + "title": "CM: History of Electronic Media (4)" + }, + "COMM 103F": { + "dept": "COMM", + "description": "This course increases our awareness of the ways we interpret or make understanding from movies to enrich and increase the means by which one can enjoy and comprehend movies. We will talk about movies and explore a range of methods and approaches to film interpretation. Readings will emphasize major and diverse theorists, including Bazin, Eisenstein, Cavell, and Mulvey. ", + "name": "COMM 103F", + "prereqs": [ + "COMM 10" + ], + "title": "CM: How to Read a Film (4)" + }, + "COMM 104D": { + "dept": "COMM", + "description": "The development of media systems in Asia, focusing on India and China. Debates over nationalism, regionalism, globalization, new technologies, identity politics, censorship, privatization, and media piracy. Alignments and differences with North American and European media systems will also be considered. ", + "name": "COMM 104D", + "prereqs": [ + "COMM 10" + ], + "title": "CMS: Asia (4)" + }, + "COMM 104E": { + "dept": "COMM", + "description": "The development of media systems and policies in Europe. Differences between European and American journalism. Debates over the commercialization of television. The role of media in postcommunist societies in Eastern Europe. ", + "name": "COMM 104E", + "prereqs": [ + "COMM 10" + ], + "title": "CMS: Europe (4)" + }, + "COMM 104F": { + "dept": "COMM", + "description": "This course will critically examine the role of the mass media in sub-Saharan Africa in the areas of colonial rule, nationalist struggles, authoritarianism, and popular movements. It will examine general trends regionally and internationally, as well as individual national cases, from the early twentieth century to the Internet news services of the information age. ", + "name": "COMM 104F", + "prereqs": [ + "COMM 10" + ], + "title": "CMS: Africa (4)" + }, + "COMM 104G": { + "dept": "COMM", + "description": "The development of media systems and policies in Latin America and the Caribbean. Debates over dependency and cultural imperialism. The news media and the process of democratization. Development of the regional television industry. ", + "name": "COMM 104G", + "prereqs": [ + "COMM 10" + ], + "title": "CMS: Latin America and the Caribbean (4)" + }, + "COMM 105G": { + "dept": "COMM", + "description": "Course considers computer games both as media and as sites of communication. Games are studied through hands-on play and texts from a variety of disciplinary perspectives. Course encompasses commercial, academic, and independent games. ", + "name": "COMM 105G", + "prereqs": [ + "COMM 10" + ], + "title": "CT: Computer Games Studies (4)" + }, + "COMM 105M": { + "dept": "COMM", + "description": "Movement is central to our lives. This course draws on the latest research into how we travel, trade, and move. Diverse topics will be covered, including kids in cars, the New York subway, and theories of mobility. ", + "name": "COMM 105M", + "prereqs": [ + "COMM 10" + ], + "title": "CT: Mobile Communication (4)" + }, + "COMM 105P": { + "dept": "COMM", + "description": "This course examines photographic technologies as a set of instruments and practices that modern societies have developed and used to tell stories about themselves and make particular claims about truth and reality, focusing on the domains of science, policing, journalism, advertising, and self-expression. ", + "name": "COMM 105P", + "prereqs": [ + "COMM 10" + ], + "title": "CT: Photographic Technologies (4)" + }, + "COMM 106A": { + "dept": "COMM", + "description": "Course examines the organization of some of the many industries (e.g., film, music, gaming, and publishing) that make up the cultural landscape with an eye toward discerning the conditions that shape the production of cultural goods and services: how is production organized within cultural industries; how are products distributed; and what is the impact of both the organization and distribution of goods on the conditions of work and labor? ", + "name": "COMM 106A", + "prereqs": [ + "COMM 10" + ], + "title": "CI: Introduction (4)" + }, + "COMM 106C": { + "dept": "COMM", + "description": "Pasts have been conveyed through various media for millennia. This course will use comics to explore how this medium impacts how we might learn and understand Japanese history. Topics discussed include memory, storytelling, perspective, and visuality. ", + "name": "COMM 106C", + "prereqs": [ + "COMM 10" + ], + "title": "CI: History Through Comics\u2014Japan (4)" + }, + "COMM 106F": { + "dept": "COMM", + "description": "A study of the social organization of the film industry throughout its history. Who makes films, by what criteria, and for what audience. The changing relationships between studios, producers, directors, writers, actors, editors, censors, distributors, audience, and subject matter of the films will be explored. ", + "name": "COMM 106F", + "prereqs": [ + "COMM 10" + ], + "title": "CI: Film Industry (4)" + }, + "COMM 106G": { + "dept": "COMM", + "description": "The largest industry in the world has far-reaching cultural ramifications. We will explore tourism\u2019s history and its contemporary cultural effects, taking the perspective of the \u201ctoured\u201d as well as that of the tourist. ", + "name": "COMM 106G", + "prereqs": [ + "COMM 10" + ], + "title": "CI: Tourism: Global Industry and Cultural Form (4)" + }, + "COMM 106I": { + "dept": "COMM", + "description": "The political economy of the emergent Internet industry, charted through analysis of its hardware, software, and services components. The course specifies leading trends and changing institutional outcomes by relating the Internet industry to the adjoining media, telecommunications, and computer industries. ", + "name": "COMM 106I", + "prereqs": [ + "COMM 10" + ], + "title": "CI: Internet Industry (4)" + }, + "COMM 106T": { + "dept": "COMM", + "description": "How and what does television communicate? Emphasis will be on contemporary US television programming, placed in comparative and historical context. Special topics may include: TV genres, TV and politics, TV and other media. Frequent in-class screenings. ", + "name": "COMM 106T", + "prereqs": [ + "COMM 10" + ], + "title": "CI: Television Culture and the Public (4)" + }, + "COMM 106V": { + "dept": "COMM", + "description": "Course examines political economy of television throughout its history. How TV is made, who is involved, how is industry organized, how does it get regulated, distributed? Consider how these answers changed over time and look at recent influences of digital technologies. ", + "name": "COMM 106V", + "prereqs": [ + "COMM 10" + ], + "title": "CI: TV Industry (4)" + }, + "COMM 107": { + "dept": "COMM", + "description": "How visual images contribute to our understanding of the world and ourselves. Theoretical approaches from media studies, art history, gender studies, and social theory will be used to analyze cultures of science, art, mass media, and everyday life. ", + "name": "COMM 107", + "prereqs": [ + "COMM 108", + "COMM 10" + ], + "title": "Visual Culture (4)" + }, + "COMM 108A": { + "dept": "COMM", + "description": "How do political contests and debates come to be organized on and around bodies? In what sense is the natural body a sign system and how does its organization represent and reproduce cultural values, moral assumptions, social relations, and economic rationales? This course examines these and other questions through political, historical, and media analysis. ", + "name": "COMM 108A", + "prereqs": [ + "COMM 10" + ], + "title": "POB: Introduction (4)" + }, + "COMM 108D": { + "dept": "COMM", + "description": "Cultural and historical ways of defining and understanding disability relative to communication and assistive technologies, including the impact of digital technologies and the Americans with Disabilities Act. Course use of audiovisual texts and writings from fields including science and technology studies, and cultural studies. ", + "name": "COMM 108D", + "prereqs": [ + "COMM 10" + ], + "title": "POB: Disability (4)" + }, + "COMM 108G": { + "dept": "COMM", + "description": "Historical and cultural aspects of media, information, imaging technology use in biomedical research, clinical care, health communication to constructions of gender and identity. We approach the subject through audiovisual texts and writings from fields including science and technology studies and cultural studies. ", + "name": "COMM 108G", + "prereqs": [ + "COMM 10" + ], + "title": "POB: Gender and Biomedicine (4)" + }, + "COMM 109D": { + "dept": "COMM", + "description": "Advertising in historical and cross-cultural perspectives. Ideology and organization of the advertising industry; meaning of material goods; gifts in capitalist, socialist, and nonindustrial societies; natures of needs, desires, and whether advertising creates needs, desires; and approaches to decoding the advertising messages. ", + "name": "COMM 109D", + "prereqs": [ + "COMM 10" + ], + "title": "MC: Advertising and Society (4)" + }, + "COMM 109E": { + "dept": "COMM", + "description": "The social, legal, and economic forces affecting the evolution of mass communications institutions and structure in the industrialized world. The character and the dynamics of mass communications in the United States today. ", + "name": "COMM 109E", + "prereqs": [ + "COMM 10" + ], + "title": "MC: Mass Communication: Political Economy of Mass Communication (4)" + }, + "COMM 109N": { + "dept": "COMM", + "description": "History, politics, social organization, and ideology of the American news media. Surveys of the development of the news media as an institution, from earliest new newspapers to modern mass news media. ", + "name": "COMM 109N", + "prereqs": [ + "COMM 10", + "SOCI 1" + ], + "title": "MC: American News Media (4)" + }, + "COMM 109P": { + "dept": "COMM", + "description": "Propaganda, in political-economic, national settings; Soviet Union; Nazi Germany; US World War I and II. Propaganda films, contribution of filmmakers to propaganda campaign. Explore issues in propaganda; persuasive communication; political propaganda; persuasive advertising; public relations; practical, ethical perspectives. ", + "name": "COMM 109P", + "prereqs": [ + "COMM 10" + ], + "title": "MC: Propaganda and Persuasion (4)" + }, + "COMM 110M": { + "dept": "COMM", + "description": "This course examines forms of communication that affect people\u2019s everyday lives. Focusing on ways that ethnic communities transmit and acquire information and interact with mainstream institutions, we examine a variety of alternative local media, including murals, graffiti, newsletters, and community radio. ", + "name": "COMM 110M", + "prereqs": [ + "COMM 10" + ], + "title": "LLC: Communication and Community (4)" + }, + "COMM 110P": { + "dept": "COMM", + "description": "This course examines the interaction of language and culture in human communication. Beginning with language evolution, the course then discusses a broad range of human languages, including indigenous languages, sign languages, and hybrid languages spoken in urban centers. ", + "name": "COMM 110P", + "prereqs": [ + "COMM 10" + ], + "title": "LLC: Language and Human Communication (4)" + }, + "COMM 110T": { + "dept": "COMM", + "description": "This course examines the ways in which various communicative channels mediate human action and thought. A basic premise of the course is that human thought is shaped in important ways by the communicative devices used to communicate. There is a particular emphasis on how thought develops, both historically and in the individual. ", + "name": "COMM 110T", + "prereqs": [ + "COMM 10" + ], + "title": "LLC: Language, Thought, and Media (4)" + }, + "COMM 111A": { + "dept": "COMM", + "description": "This course examines the products of culture industries (e.g., music, television, fashion, food, landscape, architectural design) to analyze, specifically, how culture is consumed and by whom. How are spectators hailed and audiences fostered and shaped? And what is the role of audiences in fostering and shaping cultural forms and products? ", + "name": "COMM 111A", + "prereqs": [ + "COMM 10" + ], + "title": "CCP: Communication and Cultural Production: Introduction (4)" + }, + "COMM 111C": { + "dept": "COMM", + "description": "This course offers an introduction to the production of urban space. Cities are produced by sociocultural shifts wrought by migration, technological changes, new forms of production, globalization, and climate change. How is the landscape or built environment of the city shaped by the combined and often contradictory forces of capital, expert knowledge, social movements, and urban dwellers? ", + "name": "COMM 111C", + "prereqs": [ + "COMM 10" + ], + "title": "CCP: Cities and Space (4)" + }, + "COMM 111F": { + "dept": "COMM", + "description": "Folklore is characterized by particular styles, forms, and settings. Course introduces a range of folklore genres from different cultures, historical periods, oral narrative, material folk arts, dramas, rituals. Study of the relationship between expressive form and social context. ", + "name": "COMM 111F", + "prereqs": [ + "COMM 10" + ], + "title": "CCP: Folklore and Communication (4)" + }, + "COMM 111G": { + "dept": "COMM", + "description": "An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. ", + "name": "COMM 111G", + "prereqs": [ + "COMM 10" + ], + "title": "CCP: Popular Culture (4)" + }, + "COMM 111P": { + "dept": "COMM", + "description": "Explores performance as a range of aesthetic conventions (theatre, film, performance art) and as a mode of experiencing and conveying cultural identity. Texts include critical writing from anthropology, psychology, linguistics, media studies, as well as film/video, play scripts, live performance. ", + "name": "COMM 111P", + "prereqs": [ + "COMM 10" + ], + "title": "CCP: Performance and Cultural Studies (4)" + }, + "COMM 111T": { + "dept": "COMM", + "description": "Examine sports as play, performance, competition, an arena where there are politics, culture, power, identity struggles. Establishing the social meanings of sport, we address ethics, race, class, nation, gender, body, science, technology, entertainment industries, commerce, spectatorship, consumption, amateurism, professionalism. ", + "name": "COMM 111T", + "prereqs": [ + "COMM 10" + ], + "title": "CCP: Cultural Politics of Sport (4)" + }, + "COMM 112C": { + "dept": "COMM", + "description": "Our understanding of childhood as a stage of innocence is a modern idea. The idea of childhood has not been constant; different cultures, communities, and classes have shaped the integration of children according to their own standards. We examine the different ways that attitudes toward children have changed, how these attitudes have been connected to an understanding of the human being, and how the desires of society and parents are manifested in what they think the child should be. ", + "name": "COMM 112C", + "prereqs": [ + "HDP 1", + "COMM 10" + ], + "title": "IM: The Idea of Childhood (4)" + }, + "COMM 112G": { + "dept": "COMM", + "description": "The interaction of language and culture in human communication. New and old languages, standard and dialect, dominant and endangered are the special focus. Selected languages as examples of how languages exist in contemporary contexts. ", + "name": "COMM 112G", + "prereqs": [ + "COMM 10" + ], + "title": "IM: Language and Globalization (4)" + }, + "COMM 113T": { + "dept": "COMM", + "description": "Specialized study of communication topics, to be determined by the instructor, for any given quarter. May be taken for credit three times. ", + "name": "COMM 113T", + "prereqs": [ + "COMM 10" + ], + "title": "Intermediate Topics in Communication (4)" + }, + "COMM 114C": { + "dept": "COMM", + "description": "Consider \u201cconstitutions\u201d as meaning-making, world-building mechanisms and practices. Explore how constitutions work: as interpretive instruments designed to frame, organize, guide human thought, action, and systems (according to certain rules or principles often represented as divine in origin and universal in effect) and; as ongoing, dynamic interpretative processes that nevertheless congeal in objects, bodies, and social arrangements and are thus considered binding or unalterable. ", + "name": "COMM 114C", + "prereqs": [ + "COMM 10", + "COGN 20" + ], + "title": "CSI: On Constitutions (4)" + }, + "COMM 114D": { + "dept": "COMM", + "description": "Does \u201cnew media\u201d deliver on its promise to expand access to public participation? We will analyze, produce, and counter narratives about media, youth, and democracy. The course should interest students who care about politics, human development, community engagement, or human computer interaction. ", + "name": "COMM 114D", + "prereqs": [ + "COMM 10" + ], + "title": "CSI: New Media, Youth, and Democracy (4)" + }, + "COMM 114E": { + "dept": "COMM", + "description": "This course introduces students to different theories of globalization and of gender. Against this theoretical background, students critically examine the gendered (and racialized) nature of labor in the production of material, social, and cultural goods in the global economy. ", + "name": "COMM 114E", + "prereqs": [ + "COMM 10" + ], + "title": "CSI: Gender, Labor, and Culture in the Global Economy (4)" + }, + "COMM 114F": { + "dept": "COMM", + "description": "Examination of the legal framework of freedom of expression in the United States. Covers fundamentals of First Amendment law studying key cases in historical content. Prior restraint, incitement, obscenity, libel, fighting words, public forum, campaign finance, commercial speech, and hate speech are covered. ", + "name": "COMM 114F", + "prereqs": [ + "COMM 10", + "DOC 2", + "POLI 40" + ], + "title": "CSI: Law, Communication, and Freedom of Expression (4)" + }, + "COMM 114G": { + "dept": "COMM", + "description": "This course will focus on arguments about cognitive differences between men and women in science. We will review current arguments about essential differences, historical beliefs about gender attributes and cognitive ability, and gender socialization into patterns of learning in school. ", + "name": "COMM 114G", + "prereqs": [ + "COMM 10" + ], + "title": "CSI: Gender and Science (4)" + }, + "COMM 114I": { + "dept": "COMM", + "description": "Course explores the roles of media technologies in activist campaigns, social movements. Blending theory, historical case studies, and project-based group work, students will investigate possibilities and limitations of attempts to enroll new and old media technologies in collective efforts to make social change. ", + "name": "COMM 114I", + "prereqs": [ + "COMM 10" + ], + "title": "CSI: Media Technologies and Social Movements (4)" + }, + "COMM 114J": { + "dept": "COMM", + "description": "Examine food justice from multiple analytical and theoretical perspectives: race, class, diversity, equity, legal-institutional, business, ethical, ecological, scientific, cultural, and socio-technical. Compare political strategies of food justice organizations/movements aimed at creating healthy and sustainable food systems locally and globally.\u00a0", + "name": "COMM 114J", + "prereqs": [ + "COMM 10" + ], + "title": "CSI: Food Justice (4)" + }, + "COMM 114K": { + "dept": "COMM", + "description": "Specialized study in community-based and/or participatory design research with topics to be determined by the instructor, for any given quarter. Students who choose the option to do fieldwork for any given course, need to register for COMM 114K. May be taken for credit three times. ", + "name": "COMM 114K", + "prereqs": [], + "title": "CSI: Community Fieldwork (2)" + }, + "COMM 114M CSI: Communication and the Law (4)": { + "dept": "COMM", + "description": "Using classic and modern texts, the course explores fundamental questions of law and political theory: What are rights and where do they come from? What is the balance between freedom and equality, between individual and common goods? These theoretical explorations are then oriented to specifically communication concerns: What is the relationship between privacy and personhood? Between free speech and democracy? Between intellectual property and efficient markets? ", + "name": "COMM 114M CSI: Communication and the Law (4)", + "prereqs": [ + "COMM 10" + ], + "title": "" + }, + "COMM 114N": { + "dept": "COMM", + "description": "This course concentrates on one area of law specific to the concerns of communication: the relationship between privacy, personhood, and bodily autonomy. Using a combination of legal texts, court cases, and theoretical literature, we will consider the changing nature of each dimension of this relationship as the courts have been called upon to adjudicate conflicting claims and visions in matters of reproduction, sexual identity, genetic engineering, and the commodification of body parts. ", + "name": "COMM 114N", + "prereqs": [ + "COMM 10" + ], + "title": "CSI: Communication and the Law: The Body in Law (4)" + }, + "COMM 114P": { + "dept": "COMM", + "description": "This course will explore the role that \u201cpublic history\u201d\u2014history as created for general audiences\u2014plays in communicating cultural and national identities by examining museum exhibitions, their controversies, and how material objects mediate interpretations of the past. ", + "name": "COMM 114P", + "prereqs": [ + "COMM 10" + ], + "title": "CSI: Public History and Museum Studies (4)" + }, + "COMM 114T CSI: Science Communication (4)": { + "dept": "COMM", + "description": "Examine science communication as a profession and unique form of storytelling. Identify who does science communication, how, why, and with what impacts. Highlight science communication\u2019s role in democracy, power, public reason, technological trajectories, the sustainability transition, and shifting university-community relations. ", + "name": "COMM 114T CSI: Science Communication (4)", + "prereqs": [ + "COMM 10" + ], + "title": "" + }, + "COMM 120I": { + "dept": "COMM", + "description": "Analyze forms of social issue media production, photography, audio/radio, arts, crafts, web, print zines, political documentary. Students work with several forms of media making: video, audio, web design, and a project in their chosen format. ", + "name": "COMM 120I", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "AMP: Social Issues in Media Production (4)" + }, + "COMM 120M": { + "dept": "COMM", + "description": "An examination of how the media present society\u2019s members and activities in stereotypical formats. Reasons for and consequences of this presentation are examined. Student responsibilities will be (a) participation in measurement and analysis of stereotype presentations. (b) investigating techniques for assessing both cognitive and behavioral effects of such scripted presentations on the users of media. Students will not receive credit for COMT 105 and COMM 120M. ", + "name": "COMM 120M", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "AMP: Media Stereotypes (4)" + }, + "COMM 120N": { + "dept": "COMM", + "description": "Designed for students working in student news organizations or off-campus internships or jobs in news, public relations, or public information. A workshop in news writing and news analysis. ", + "name": "COMM 120N", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "AMP: News Media Workshop (4)" + }, + "COMM 120P": { + "dept": "COMM", + "description": "This course develops critical understanding of educational uses of digital media through firsthand experience in public educational settings, and readings/discussions of challenges, benefits, and pitfalls of educational applications of media technology. Three hours/week of fieldwork required. ", + "name": "COMM 120P", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "AMP: Digital Media in Education (4)" + }, + "COMM 120W": { + "dept": "COMM", + "description": "Practice, history, and theory of writing for digital media. Text combines with images, sounds, movement, and interaction. New network technologies (e-mail, blogs, wikis, and virtual worlds) create new audience relationships. Computational processes enable texts that are dynamically configured and more. ", + "name": "COMM 120W", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "AMP: Writing for Digital Media (4)" + }, + "COMM 124A": { + "dept": "COMM", + "description": "Hands-on course introduces design as political activity. How will differently designed objects, environments perpetuate, interrupt status quo. Examine design, architecture, media activism, workday life. Examine ambiguous problems, take and give feedback, create prototypes to engage communities, broader publics. Students see design as part of longer-term social transformations. ", + "name": "COMM 124A", + "prereqs": [ + "USP 1", + "POLI 10", + "POLI 10D", + "COMM 10", + "ESYS 10", + "COGS 1" + ], + "title": "Critical Design Practice/Advanced Studio (4)" + }, + "COMM 124B": { + "dept": "COMM", + "description": "Course builds on understanding design as political activity. Group work to design quarter-long projects that explore political role of design, include design in built environments, organizations, media technologies. Deepened capacities to design in public, for publics, with publics. May be taken for credit three times. ", + "name": "COMM 124B", + "prereqs": [ + "COMM 124A" + ], + "title": "Critical Design Practice/Topic Studio (4)" + }, + "COMM 125": { + "dept": "COMM", + "description": "How have politics, media, and society made visible features of life that were once hidden? From the women\u2019s health movement to gay liberation to laws requiring public disclosure, frankness challenges civility, privacy, and taste. How can this be understood? ", + "name": "COMM 125", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Transparent Society (4)" + }, + "COMM 126": { + "dept": "COMM", + "description": "A course that analyzes the influence of media on children\u2019s behavior and thought processes. The course takes a historical perspective, beginning with children\u2019s print literature, encompassing movies, music, television, and computers. Students will study specific examples of media products intended for children and apply various analytic techniques, including content analysis and experimentation to these materials. ", + "name": "COMM 126", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Children and Media (4)" + }, + "COMM 127": { + "dept": "COMM", + "description": "This course will explore the problem of self-expression for members of various ethnic and cultural groups. Of special interest is how writers find ways of describing themselves in the face of others\u2019 sometimes overwhelming predilection to describe them. ", + "name": "COMM 127", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Problem of Voice (4)" + }, + "COMM 128": { + "dept": "COMM", + "description": "Concepts, possibilities, and dilemmas inherent in the notion of global citizenship. Formulate goals and instructional strategies for global education, expected competence of individuals within society. Examine roles that communication and curriculum play in the formation of identity, language use, and civic responsibility of global citizens. ", + "name": "COMM 128", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Education and Global Citizenship (4)" + }, + "COMM 129": { + "dept": "COMM", + "description": "How does media representation of race, nation, and violence work? Taking multicultural California as our site, we will explore how social power is embedded in a variety of visual texts, and how media not only represents but also reproduces conflict. ", + "name": "COMM 129", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Race, Nation, and Violence in Multicultural California (4)" + }, + "COMM 131": { + "dept": "COMM", + "description": "Emergence of dissent in different societies, and relationship of dissent to movements of protest and social change. Movements studied include media concentration, antiwar, antiglobalization, death penalty, national liberation, and labor. Survey of dissenting voices seeking to explain the relationship of ideas to collective action and outcomes. ", + "name": "COMM 131", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Communication, Dissent, and the Formation of Social Movements (4)" + }, + "COMM 132": { + "dept": "COMM", + "description": "Specialized study of communication, politics, and society with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ", + "name": "COMM 132", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Advanced Topics in Communication, Politics, and Society (4)" + }, + "COMM 133": { + "dept": "COMM", + "description": "Television is a contested site for negotiating the rationales of inclusion and exclusion associated with citizenship and national belonging. Historical and contemporary case studies within international comparative contexts consider regulation, civil rights, cultural difference, social movements, new technologies, and globalization. ", + "name": "COMM 133", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Television and Citizenship (4)" + }, + "COMM 134": { + "dept": "COMM", + "description": "Examines the complex relationship between mass media and the consumers and viewers they target. This course covers theories about audiences, reading practices of audiences, the economics of audiences, and the role of audiences in the digital era. ", + "name": "COMM 134", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Media Audiences (4)" + }, + "COMM 135": { + "dept": "COMM", + "description": "This advanced course examines, analyzes, and discusses media works by contemporary Asian American, Native American, African American, and Latina/o American filmmakers. The course does not offer a historical survey of films by minority makers but rather will operate on themes such as cultural identity, urbanization, personal relationships, gender relations, cultural retentions, and music. The course will require students to attend some off-campus screenings, especially those at area film festivals. ", + "name": "COMM 135", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Contemporary Minority Media Makers and the Festival Experience (4)" + }, + "COMM 136": { + "dept": "COMM", + "description": "Transmedia is a mode of production in which a text or story unfolds across multiple media platforms. Exploring all the facets of this widespread phenomenon\u2014historical, aesthetic, industrial, theoretical, and practical. This course explores and critically analyzes the art and economics of contemporary transmedia. ", + "name": "COMM 136", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Transmedia (4)" + }, + "COMM 137": { + "dept": "COMM", + "description": "Students examine film and video media produced by black women filmmakers worldwide. This course will use readings from the writings of the filmmakers themselves as well as from film studies, women\u2019s studies, literature, sociology, and history. ", + "name": "COMM 137", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Black Women Filmmakers (4)" + }, + "COMM 138": { + "dept": "COMM", + "description": "This course examines the challenges that arise in using feminist theory to understand black women\u2019s experience in Africa and the United States. It also looks at the mass media and popular culture as arenas of black feminist struggle. ", + "name": "COMM 138", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Black Women, Feminism, and Media (4)" + }, + "COMM 140": { + "dept": "COMM", + "description": "Analysis of the changing content and sociopolitical role in Latin America of contemporary media, including the \u201cnew cinema\u201d movement, recent developments in film, and popular television programming, including the telenovela. Examples drawn from Mexico, Brazil, Cuba, and other countries. ", + "name": "COMM 140", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Cinema in Latin America (4)" + }, + "COMM 143": { + "dept": "COMM", + "description": "Focuses on science fiction\u2019s critical investigation of history, identity, and society across a range of media forms, including film, television, and literature. ", + "name": "COMM 143", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Science Fiction (4)" + }, + "COMM 144": { + "dept": "COMM", + "description": "Course will explore the politics and culture of the 1970s through the lens of network television programming and the decade\u2019s most provocative sitcoms, dramas, variety shows, and news features. Students will analyze television episodes and read relevant media studies scholarship. ", + "name": "COMM 144", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "American Television in the 1970s (4)" + }, + "COMM 145": { + "dept": "COMM", + "description": "What role does popular culture play in shaping and creating our shared memory of the past? The course examines diverse sources such as school textbooks, monuments, holidays and commemorations, museums, films, music, and tourist attractions. ", + "name": "COMM 145", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "History, Memory, and Popular Culture (4)" + }, + "COMM 146": { + "dept": "COMM", + "description": "Specialized advanced study in cultural production with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ", + "name": "COMM 146", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Advanced Topics in Cultural Production (4)" + }, + "COMM 151": { + "dept": "COMM", + "description": "Analysis of the forces propelling the Information Age. An examination of the differential benefits and costs, and a discussion of the presentation in the general media of the Information Age. ", + "name": "COMM 151", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "The Information Age: Fact and Fiction (4)" + }, + "COMM 152": { + "dept": "COMM", + "description": "This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ", + "name": "COMM 152", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Global Economy and Consumer Culture (4)" + }, + "COMM 153": { + "dept": "COMM", + "description": "This course examines how buildings, cities, towns, gardens, neighborhoods, roads, bridges, and other bits of infrastructure communicate. We consider both the materiality and language like properties of physical things in order to understand how built environments are represented, experienced, and remembered. ", + "name": "COMM 153", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Architecture as Communication (4)" + }, + "COMM 155": { + "dept": "COMM", + "description": "Develop a critical understanding of the history, politics, and poetics of the Latino barrio as a distinct urban form. Course covers key concepts such as the production of space, landscapes of power, spatial apartheid, everyday urbanism, urban renewal, and gentrification. ", + "name": "COMM 155", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Latino Space, Place, and Culture (4)" + }, + "COMM 158": { + "dept": "COMM", + "description": "The conflict between the state of Israel and the group of people known as Palestinians is arguably the most intractable conflict in the world today. This course is a critical engagement with debates about this conflict, and the different representations of these debates. ", + "name": "COMM 158", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Representations of the Israeli/Palestinian Conflict (4)" + }, + "COMM 159": { + "dept": "COMM", + "description": "Explores tourism encounters around the world to question the discourses, imaginaries, and social practices involved in the construction, consumption, and reproduction of stereotypical representations of otherness (place, nature, culture, bodies). ", + "name": "COMM 159", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Tourism, Power, and Place (4)" + }, + "COMM 160": { + "dept": "COMM", + "description": "The character and forms of international communications. Emerging structures of international communications. The United States as the foremost international communicator. Differential impacts of the free flow of information and the unequal roles and needs of developed and developing economies in international communications. ", + "name": "COMM 160", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Political Economy and International Communication (4)" + }, + "COMM 162": { + "dept": "COMM", + "description": "We examine how people interact with products of popular culture, production of cultural goods by looking at conditions in cultural industries. We examine film, music, publishing, focusing on how production is organized, what kind of working conditions arise, how products are distributed. ", + "name": "COMM 162", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Advanced Studies in Cultural Industries (4)" + }, + "COMM 163": { + "dept": "COMM", + "description": "This course examines some of the changing cultural, social, technological, and political meanings; practices; and aspirations that together constitute what is and has been called freedom. ", + "name": "COMM 163", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Concepts of Freedom (4)" + }, + "COMM 164": { + "dept": "COMM", + "description": "This course aims to unveil the vast and largely hidden infrastructures silently shaping how digital communication take place in contemporary societies as well as the visible and invisible geographic of power and inequality these infrastructures are helping to create. ", + "name": "COMM 164", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Behind the Internet: Invisible Geographies of Power and Inequality (4)" + }, + "COMM 166": { + "dept": "COMM", + "description": "Contributions of the field of communication to the study of surveillance and risk. Critical and legal perspectives on consumer research, copyright enforcement, the surveillance capacity of Information and Communication Technologies (ICTs), closed-circuit television, interactive media, and the \u201crhetorics of surveillance\u201d in television and film. ", + "name": "COMM 166", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Surveillance, Media, and the Risk Society (4)" + }, + "COMM 168": { + "dept": "COMM", + "description": "This course is designed to introduce students to multiple settings where bilingualism is the mode of communication. Examination of how such settings are socially constructed and culturally based. Language policy, bilingual education, and linguistic minorities, as well as field activities included. ", + "name": "COMM 168", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Bilingual Communication (4)" + }, + "COMM 169": { + "dept": "COMM", + "description": "The relationship between small groups and dominant culture is studied by exploring the world of deaf people who have for the past twenty years begun to speak as a cultural group. Issues of language, communication, self-representation, and social structure are examined. ", + "name": "COMM 169", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Deaf Culture in the U.S. (4)" + }, + "COMM 170": { + "dept": "COMM", + "description": "Course examines several different ways of telling stories as a form of communication: our own life and about the lives of others. There are also the occasions that the life stories of ordinary people are told at and celebrated, for example, funerals, Festschrifts, retirement dinners, fiftieth-anniversary parties, and retrospective art shows. ", + "name": "COMM 170", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Biography and Life Stories (4)" + }, + "COMM 171": { + "dept": "COMM", + "description": "Survey of the communication practices found in environment controversies. The sociological aspects of environmental issues will provide background for the investigation of environmental disputes in particular contested areas, such as scientific institutions, communities, workplaces, governments, popular culture, and the media. ", + "name": "COMM 171", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Environmental Communication (4)" + }, + "COMM 172": { + "dept": "COMM", + "description": "Specialized advanced study in mediation and interaction with topics to be determined by the instructor for any given quarter. May be taken three times for credit. ", + "name": "COMM 172", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Advanced Topics in Mediation and Interaction (4)" + }, + "COMM 173": { + "dept": "COMM", + "description": "In this class we will look closely at the everyday ways in which we interact with technology to discuss sociocultural character of objects, built environments; situated, distributed, and embodied character of knowledges; use of multimodal semiotic resources, talk, gesture, body orientation, and gaze in interaction with technology. ", + "name": "COMM 173", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Interaction with Technology (4)" + }, + "COMM 174": { + "dept": "COMM", + "description": "An examination of the questions that developments in robotics pose to the scholars of communication: How do we communicate when our interlocutors are nonhumans? How do we study objects that are claimed to be endowed with social and affective character? ", + "name": "COMM 174", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Communication and Social Machines (4)" + }, + "COMM 175": { + "dept": "COMM", + "description": "This course examines the cultural politics of consumption across time and cultures through several concepts: commodity fetishism; conspicuous consumption; taste; class; and identity formation; consumption\u2019s psychological, phenomenological, and poetic dimensions; and contemporary manifestations of globalization and consumer activism. ", + "name": "COMM 175", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Cultures of Consumption (4)" + }, + "COMM 176": { + "dept": "COMM", + "description": "The secularization thesis\u2014that as society becomes more modern and standards of living rise, the importance of religion will diminish and be confined to the private sphere\u2014may be wrong. We address religion, communication, culture, and politics in the United States. ", + "name": "COMM 176", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Communication and Religion (4)" + }, + "COMM 177": { + "dept": "COMM", + "description": "Explores theories and narratives of cultural power, contemporary practices of resistance. Texts from a wide range of disciplines consider how domination is enacted, enforced, and what modes of resistance are employed to contend with uses and abuses of political power. ", + "name": "COMM 177", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Culture, Domination, and Resistance (4)" + }, + "COMM 179": { + "dept": "COMM", + "description": "Considers globalization\u2019s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ", + "name": "COMM 179", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Global Nature/Global Culture (4)" + }, + "COMM 180": { + "dept": "COMM", + "description": "How are messages created, transmitted, and received? What is the relationship between thinking and communicating?\u00a0How are linguistic processes embedded in sociocultural practices?\u00a0Course discusses classic texts in the field of communication theory stemming from linguistics, semiotics, philosophy of language, literary theory.\u00a0", + "name": "COMM 180", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Advanced Studies in Communication Theory (4)" + }, + "COMM 181": { + "dept": "COMM", + "description": "Explores the uneven nature of globalization and its geographical expression in the built environment by looking into gentrification processes and community change in service-oriented economies in the Global North as well as into production offshoring and disputes over development in the Global South. ", + "name": "COMM 181", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Neoliberal Cities (4)" + }, + "COMM 183": { + "dept": "COMM", + "description": "This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ", + "name": "COMM 183", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Global Economy and Consumer Culture (4)" + }, + "COMM 184": { + "dept": "COMM", + "description": "Considers globalization\u2019s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ", + "name": "COMM 184", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Global Nature/Global Culture (4)" + }, + "COMM 190": { + "dept": "COMM", + "description": "The junior seminar entails a detailed examination of a specific topic from the field of communication, exploring in greater depth theories and methods introduced in the core communication curriculum. Seminars are limited to thirty students, with a heavy focus on class participation. Students complete a research project with a significant final product (typically a research paper). Students will not receive credit for both COGN 150 and COMM 190. ", + "name": "COMM 190", + "prereqs": [ + "COMM 100B", + "COMM 100C", + "COMM 100A", + "COMM 10" + ], + "title": "Junior Seminar in Communication (4)" + }, + "COMM 193": { + "dept": "COMM", + "description": "Specialized study in general communication with topics to be determined by the instructor for any given quarter. May be repeated for credit. ", + "name": "COMM 193", + "prereqs": [ + "AIP 197" + ], + "title": "Advanced Topics in Communication: General (2)" + }, + "COMM 194": { + "dept": "COMM", + "description": "(Same as PS 194, USP 194, Hist 193, SocE 194, Erth 194.) Course attached to six-unit internship taken by students participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistants and a substantial research paper. ", + "name": "COMM 194", + "prereqs": [], + "title": "Research Seminar in Washington, D.C. (4)" + }, + "COMM 196A": { + "dept": "COMM", + "description": "Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ", + "name": "COMM 196A", + "prereqs": [], + "title": "Honors Seminar in Communication (4)" + }, + "COMM 196B": { + "dept": "COMM", + "description": "Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ", + "name": "COMM 196B", + "prereqs": [], + "title": "Honors Seminar in Communication (4)" + }, + "COMM 198": { + "dept": "COMM", + "description": "Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. May be taken three times for credit. ", + "name": "COMM 198", + "prereqs": [], + "title": "Directed Group Study in Communication (4)" + }, + "COMM 199": { + "dept": "COMM", + "description": "Independent study and research under the direction of a member of the faculty. May be taken three times for credit. ", + "name": "COMM 199", + "prereqs": [], + "title": "Independent Study in Communication (4)" + }, + "COMM 87": { + "dept": "COMM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "COMM 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "CONT 1": { + "dept": "CONT", + "description": "Overview of the history and role of higher education in American society, including a focus on the relationship between society and institutions of higher learning. The course utilizes an interdisciplinary, multicultural perspective reflecting the diversity of the university. Summer Session only.", + "name": "CONT 1", + "prereqs": [], + "title": "CI: The University in Society (4)" + }, + "CONT 150A": { + "dept": "CONT", + "description": "The College Academic Mentor Program introduces students to the aspects of college advising at a local high school. Students will work with a diverse student population, focusing on low-income, first-generation students that are historically underrepresented at schools of higher education. Students will engage in both a training workshop and a field placement program. (P/NP grades only.)", + "name": "CONT 150A", + "prereqs": [], + "title": "College Academic Mentor Program (4)" + }, + "CONT 150B": { + "dept": "CONT", + "description": "CAMP students continue service learning in underserved local communities by working as paraprofessionals mentoring high school students to prepare for college application and attendance under the guidance of school counselors and the instructor. May be taken for credit two times. ", + "name": "CONT 150B", + "prereqs": [ + "CONT 150A" + ], + "title": "College Academic Mentor Program Field Study (2)" + }, + "CONT 196": { + "dept": "CONT", + "description": "A workshop for potential discussion leaders", + "name": "CONT 196", + "prereqs": [], + "title": "Contemporary Issues Workshop (2)" + }, + "CONT 198": { + "dept": "CONT", + "description": "Group studies, readings, projects, and discussions in areas of contemporary concern. Course is set up so that students may work together as a group in an area of contemporary concern whereby the group emphasis would be more beneficial and constructive than individual studies. May be taken for credit three times for a maximum of twelve units. ", + "name": "CONT 198", + "prereqs": [], + "title": "Group Studies in Contemporary Issues (2 or 4)" + }, + "CONT 68": { + "dept": "CONT", + "description": "This course will examine disability in the case of individuals with an intellectual or physical disability. Faced with ableism, intentional or unintentional, people with disabilities often experience difficulties in society. Using ableism provides an effective way of addressing ableist discrimination. The course will develop students\u2019 awareness of the challenges of disability in current society. Winter quarter only.", + "name": "CONT 68", + "prereqs": [], + "title": "Disability, Race, and Diversity (4)" + }, + "CSE 100": { + "dept": "CSE", + "description": "High-performance data structures and supporting", + "name": "CSE 100", + "prereqs": [], + "title": "Advanced Data Structures (4)" + }, + "CSE 101": { + "dept": "CSE", + "description": "Design and analysis of efficient algorithms with emphasis of nonnumerical algorithms such as sorting, searching, pattern matching, and graph and network algorithms. Measuring complexity of algorithms, time and storage. NP-complete problems. Credit not offered for both Math 188 and CSE 101. Equivalent to Math 188. ", + "name": "CSE 101", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Design and Analysis of Algorithms (4)" + }, + "CSE 103": { + "dept": "CSE", + "description": "Introduction to Probability and Statistics (4)", + "name": "CSE 103", + "prereqs": [], + "title": "A Practical" + }, + "CSE 105": { + "dept": "CSE", + "description": "An introduction to the mathematical theory of computability. Formal languages. Finite automata and regular expression. Push-down automata and context-free languages. Computable or recursive functions: Turing machines, the halting problem. Undecidability. Credit not offered for both Math 166 and CSE 105. Equivalent to Math 166. ", + "name": "CSE 105", + "prereqs": [ + "CSE 12", + "CSE 21", + "CSE 20", + "MATH 184", + "CSE 15L", + "MATH 100A", + "MATH 109", + "MATH 103A", + "MATH 15A" + ], + "title": "Theory of Computability (4)" + }, + "CSE 107": { + "dept": "CSE", + "description": "Topics include private and public-key cryptography, block ciphers, data encryption, authentication, key distribution and certification, pseudorandom number generators, design and analysis of protocols, zero-knowledge proofs, and advanced protocols. Emphasizes rigorous mathematical approach including formal definitions of security goals and proofs of protocol security. ", + "name": "CSE 107", + "prereqs": [ + "CSE 105", + "CSE 101", + "MATH 184A", + "MATH 15B", + "MATH 166", + "MATH 154", + "CSE 21" + ], + "title": "Introduction to Modern Cryptography (4)" + }, + "CSE 11": { + "dept": "CSE", + "description": "An accelerated introduction to computer science and programming using the Java language. Basic UNIX. Modularity and abstraction. Documentation, testing and verification techniques. Basic object-oriented programming, including inheritance and dynamic binding. Exception handling. Event-driven programming. Experience with AWT library or other similar library. Students who have completed CSE 8B may not take CSE 11. Students should\u00a0consult the", + "name": "CSE 11", + "prereqs": [], + "title": "Introduction to Computer Science and Object-Oriented Programming: Java (4)" + }, + "CSE 110": { + "dept": "CSE", + "description": "Engineering (4)", + "name": "CSE 110", + "prereqs": [], + "title": "Software" + }, + "CSE 112": { + "dept": "CSE", + "description": "This course will cover software engineering", + "name": "CSE 112", + "prereqs": [], + "title": "Advanced Software Engineering (4)" + }, + "CSE 118": { + "dept": "CSE", + "description": "Explores emerging opportunities enabled by cheap sensors and networked computing devices. Small research projects will be conducted in teams, culminating in project presentations at the end of the term. Section will cover material relevant to the project, such as research methods, software engineering, teamwork, and project management. ", + "name": "CSE 118", + "prereqs": [ + "ECE 191", + "ECE 192", + "COMT 111B", + "COMT 115", + "ECE 111", + "ICAM 160B", + "COGS 184", + "ECE 118", + "COGS 121", + "CSE 131", + "CSE 132B", + "COGS 102C" + ], + "title": "Ubiquitous Computing (4)" + }, + "CSE 12": { + "dept": "CSE", + "description": "Structures and Object-Oriented Design (4)", + "name": "CSE 12", + "prereqs": [], + "title": "Basic Data" + }, + "CSE 120": { + "dept": "CSE", + "description": "of Computer Operating Systems (4)", + "name": "CSE 120", + "prereqs": [], + "title": "Principles" + }, + "CSE 123": { + "dept": "CSE", + "description": "Introduction to concepts, principles, and practice of computer communication networks with examples from existing architectures, protocols, and standards with special emphasis on the Internet protocols. Layering and the OSI model; physical and data link layers; local and wide area networks; datagrams and virtual circuits; routing and congestion control; internetworking. Transport protocols. Credit may not be received for both CSE 123 and ECE 158A. ", + "name": "CSE 123", + "prereqs": [ + "CSE 110", + "CSE 101", + "CSE 30" + ], + "title": "Computer Networks (4)" + }, + "CSE 124": { + "dept": "CSE", + "description": "(Renumbered from CSE 123B.) The architecture of modern networked services, including data center design, enterprise storage, fault tolerance, and load balancing. Protocol software structuring, the Transmission Control Protocol (TCP), remote procedure calls, protocols for digital audio and video communication, overlay and peer-to-peer systems, secure communication. Credit may not be received for both CSE 124 and ECE 158B. Students may not receive credit for both CSE 123B and CSE 124. ", + "name": "CSE 124", + "prereqs": [ + "CSE 110", + "CSE 101", + "CSE 30" + ], + "title": "Networked Services (4)" + }, + "CSE 125": { + "dept": "CSE", + "description": "System Design and Implementation (4)", + "name": "CSE 125", + "prereqs": [], + "title": "Software" + }, + "CSE 127": { + "dept": "CSE", + "description": "Topics include basic cryptography, security/threat analysis, access control, auditing, security models, distributed systems security, and theory behind common attack and defense techniques. The class will go over formal models as well as the bits and bytes of security exploits. ", + "name": "CSE 127", + "prereqs": [ + "CSE 21", + "MATH 184A", + "MATH 154", + "CSE 123", + "CSE 120", + "CSE 124" + ], + "title": "Introduction to Computer Security (4)" + }, + "CSE 130": { + "dept": "CSE", + "description": "Languages: Principles and Paradigms (4)", + "name": "CSE 130", + "prereqs": [], + "title": "Programming" + }, + "CSE 131": { + "dept": "CSE", + "description": "(Formerly CSE 131B.) Introduction to the compilation of programming languages,", + "name": "CSE 131", + "prereqs": [], + "title": "Compiler Construction (4)" + }, + "CSE 132A": { + "dept": "CSE", + "description": "Basic concepts of databases, including data modeling, relational databases, query languages, optimization, dependencies, schema design, and concurrency control. Exposure to one or several commercial database systems. Advanced topics such as deductive and object-oriented databases, time allowing. ", + "name": "CSE 132A", + "prereqs": [ + "CSE 100" + ], + "title": "Database System Principles (4)" + }, + "CSE 132B": { + "dept": "CSE", + "description": "Design of databases, transactions, use of trigger facilities and datablades. Performance measuring, organization of index structures. ", + "name": "CSE 132B", + "prereqs": [ + "CSE 132A" + ], + "title": "Database Systems Applications (4)" + }, + "CSE 134B": { + "dept": "CSE", + "description": "Design and implementation of interactive World Wide Web clients using helper applications and plug-ins.\u00a0The main language covered will be Java. ", + "name": "CSE 134B", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Web Client Languages (4)" + }, + "CSE 135": { + "dept": "CSE", + "description": "Database, data warehouse, and data cube design; SQL programming and querying with emphasis on analytics; online analytics applications, visualizations, and data exploration; performance tuning. ", + "name": "CSE 135", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Online Database Analytics Applications (4)" + }, + "CSE 136": { + "dept": "CSE", + "description": "Design and implementation of very large-scale, web-based applications. Topics covered typically include modeling organizational needs, design and revision management, J2EE or similar software platforms, web server and application server functionality, reuse of object-oriented components, model-view-controller and other design patterns, clustering, load-balancing, fault-tolerance, authentication, and usage accounting. ", + "name": "CSE 136", + "prereqs": [ + "CSE 135" + ], + "title": "Enterprise-Class Web Applications (4)" + }, + "CSE 140": { + "dept": "CSE", + "description": "and Design Techniques for Digital Systems (4)", + "name": "CSE 140", + "prereqs": [], + "title": "Components" + }, + "CSE 140L": { + "dept": "CSE", + "description": "Implementation with computer-aided design tools for combinational logic minimization and state machine synthesis. Hardware construction of a small digital system. ", + "name": "CSE 140L", + "prereqs": [ + "CSE 140", + "MATH 109", + "CSE 20", + "CSE 30", + "MATH 15A" + ], + "title": "Digital Systems Laboratory (2)" + }, + "CSE 141": { + "dept": "CSE", + "description": "Introduction to computer architecture. Computer system design. Processor design. Control design. Memory systems. ", + "name": "CSE 141", + "prereqs": [ + "CSE 140", + "CSE 140L", + "CSE 30", + "CSE 141L" + ], + "title": "Introduction to Computer Architecture (4)" + }, + "CSE 141L": { + "dept": "CSE", + "description": "Hands-on computer architecture project aiming to familiarize students with instruction set architecture, and design of process. Control and memory systems. ", + "name": "CSE 141L", + "prereqs": [ + "CSE 141", + "CSE 140", + "CSE 110", + "CSE 140L", + "CSE 30" + ], + "title": "Project in Computer Architecture (2)" + }, + "CSE 143": { + "dept": "CSE", + "description": "VSLI process technologies; circuit characterization; logic design styles; clocking strategies; computer-aided design tools; subsystem design; design case studies. System design project from hardware description, logic synthesis, physical layout to design verification. ", + "name": "CSE 143", + "prereqs": [ + "CSE 170A", + "CSE 140", + "ECE 81" + ], + "title": "Microelectronic System Design (4)" + }, + "CSE 145": { + "dept": "CSE", + "description": "Project class building an embedded computing system. Learn fundamental knowledge of microcontrollers, sensors, and actuators. Introduction to the hardware and software tools to build project in a team environment and end-to-end system building. ", + "name": "CSE 145", + "prereqs": [ + "CSE 30" + ], + "title": "Embedded System Design Project (4)" + }, + "CSE 148": { + "dept": "CSE", + "description": "Processor Architecture Design Project (4)", + "name": "CSE 148", + "prereqs": [], + "title": "Advanced" + }, + "CSE 150": { + "dept": "CSE", + "description": "to Artificial Intelligence: Search and Reasoning (4)", + "name": "CSE 150", + "prereqs": [], + "title": "Introduction" + }, + "CSE 151": { + "dept": "CSE", + "description": "to Artificial Intelligence: Statistical Approaches (4)", + "name": "CSE 151", + "prereqs": [], + "title": "Introduction" + }, + "CSE 152": { + "dept": "CSE", + "description": "The goal of computer vision is to compute scene and object properties from images and video. This introductory course includes feature detection, image segmentation, motion estimation, object recognition, and 3-D shape reconstruction through stereo, photometric stereo, and structure from motion. ", + "name": "CSE 152", + "prereqs": [ + "MATH 188", + "CSE 101", + "CSE 100", + "MATH 20F" + ], + "title": "Introduction to Computer Vision (4)" + }, + "CSE 153": { + "dept": "CSE", + "description": "Construction of computational models that \u201cdo the same things people do,\u201d in terms of perception, categorization, memory, language, action, etc. and typically in a fashion that is plausibly carried out by the neural networks in our brains. The model must fit behavioral, neurophysiological, and/or neuropsychological data. Recommended preparation: background knowledge in computer science, cognitive science, psychology, or neuroscience, and a basic understanding of the most fundamental concepts of differential calculus, linear algebra, and statistics. Computer programming skills may be useful to some students as they conduct their term projects, but such skills are not required. ", + "name": "CSE 153", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Cognitive Modeling (4)" + }, + "CSE 158": { + "dept": "CSE", + "description": "Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. ", + "name": "CSE 158", + "prereqs": [ + "CSE 100" + ], + "title": "Recommender Systems and Web Mining (4)" + }, + "CSE 15L": { + "dept": "CSE", + "description": "Hands-on exploration of software development", + "name": "CSE 15L", + "prereqs": [], + "title": "Software Tools and Techniques Laboratory (2)" + }, + "CSE 160": { + "dept": "CSE", + "description": "Introduction to high performance parallel computing: parallel architecture, algorithms, software, and problem-solving techniques. Areas covered: Flynns\u2019 taxonomy, processor-memory organizations, shared and nonshared memory models: message passing and multithreading, data parallelism; speedup, efficiency and Amdahl\u2019s law, communication and synchronization, isoefficiency and scalability. Assignments given to provide practical experience. ", + "name": "CSE 160", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Introduction to Parallel Computing (4)" + }, + "CSE 163": { + "dept": "CSE", + "description": "Topics include an overview of many aspects of computer graphics, including the four main computer graphics areas of animation, modeling, rendering, and imaging. Programming projects in image and signal processing, geometric modeling, and real-time rendering. ", + "name": "CSE 163", + "prereqs": [ + "CSE 167" + ], + "title": "Advanced Computer Graphics (4)" + }, + "CSE 164": { + "dept": "CSE", + "description": "Principles and practices of programming graphics processing units (GPUs). GPU architecture and hardware concepts, including memory and threading models. Modern hardware-accelerated graphics pipeline programming. Application of GPU programming to rendering of game graphics, including physical, deferring, and global lighting models. Recommended preparation: Practical Rendering and Computation with Direct3D 11 by Jason Zink, Matt Pettineo, and Jack Hoxley. ", + "name": "CSE 164", + "prereqs": [ + "CSE 167" + ], + "title": "GPU Programming (4)" + }, + "CSE 165": { + "dept": "CSE", + "description": "This course focuses on design and evaluation of three-dimensional (3D) user interfaces, devices, and interaction techniques. The course consists of lectures, literature reviews, and programming assignments. Students will be expected to create interaction techniques for several different 3D interaction devices. Program or materials fees may apply. ", + "name": "CSE 165", + "prereqs": [ + "CSE 167" + ], + "title": "3D User Interaction (4)" + }, + "CSE 166": { + "dept": "CSE", + "description": "Principles of image formation, analysis, and representation. Image enhancement, restoration, and segmentation; stochastic image models. Filter design, sampling, Fourier and wavelet transforms. Selected applications in computer graphics and machine vision. ", + "name": "CSE 166", + "prereqs": [ + "MATH 176", + "CSE 100", + "MATH 20F" + ], + "title": "Image Processing (4)" + }, + "CSE 167": { + "dept": "CSE", + "description": "Representation and manipulation of pictorial data. Two-dimensional and three-dimensional transformations, curves, surfaces. Projection, illumination, and shading models. Raster and vector graphic I/O devices; retained-mode and immediate-mode graphics software systems and applications. Students may not receive credit for both Math 155A and CSE 167. ", + "name": "CSE 167", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Computer Graphics (4)" + }, + "CSE 168": { + "dept": "CSE", + "description": "Weekly programming assignments that will cover graphics rendering algorithms. During the course the students will learn about ray tracing, geometry, tessellation, acceleration structures, sampling, filtering, shading models, and advanced topics such as global illumination and programmable graphics hardware. ", + "name": "CSE 168", + "prereqs": [ + "CSE 167" + ], + "title": "Computer Graphics II: Rendering (4)" + }, + "CSE 169": { + "dept": "CSE", + "description": "Advanced graphics focusing on the programming techniques involved in computer animation. Algorithms and approaches for both character animation and physically based animation. Particular subjects may include skeletons, skinning, key framing, facial animation, inverse kinematics, locomotion, motion capture, video game animation, particle systems, rigid bodies, clothing, and hair. Recommended preparation: An understanding of linear algebra. ", + "name": "CSE 169", + "prereqs": [ + "CSE 167" + ], + "title": "Computer Animation (4)" + }, + "CSE 170": { + "dept": "CSE", + "description": "Introduces fundamental methods and principles for designing, implementing, and evaluating user interfaces. Topics: user-centered design, rapid prototyping, experimentation, direct manipulation, cognitive principles, visual design, social software, software tools. Learn by doing: Work with a team on a quarter-long design project. Cross-listed with COGS 120. Students may not receive credit for COGS 120 and CSE 170. Recommended preparation: Basic familiarity with HTML. ", + "name": "CSE 170", + "prereqs": [ + "CSE 11", + "COGS 1", + "COGS 187A", + "CSE 8A", + "DSGN 1" + ], + "title": "Interaction Design (5)" + }, + "CSE 176A": { + "dept": "CSE", + "description": "Robotics has the potential to improve well-being for millions of people and support caregivers and to aid the clinical workforce. We bring together engineers, clinicians, and end-users to explore this exciting new field. The course is project-based, interactive, and hands-on, and involves working closely with stakeholders to develop prototypes that solve real-world problems. Students will explore the latest research in health care robotics, human-robot teaming, and health design. Program or materials fees may apply. ", + "name": "CSE 176A", + "prereqs": [ + "CSE 110", + "CSE 170", + "COGS 120" + ], + "title": "Maker Topics: Health Care Robotics (4)" + }, + "CSE 180": { + "dept": "CSE", + "description": "Topics include an overview of various aspects of bioinformatics and will simultaneously introduce students to programming in Python. The assessments in the course represent various programming challenges and include solving diverse biological problems using popular bioinformatics tools. ", + "name": "CSE 180", + "prereqs": [ + "BILD 1" + ], + "title": "Biology Meets Computing (4)" + }, + "CSE 181": { + "dept": "CSE", + "description": "This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNS sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. ", + "name": "CSE 181", + "prereqs": [ + "CSE 101", + "CSE 100", + "MATH 176", + "MATH 188", + "BIMM 100", + "BENG 181", + "CSE 181", + "CHEM 114C", + "BIMM 181" + ], + "title": "Molecular Sequence Analysis (4)" + }, + "CSE 182": { + "dept": "CSE", + "description": "This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object oriented databases, data modeling and description. Survey of current biological database with respect to above, implementation of a database on a biological topic. Cross-listed with BIMM 182/BENG 182/CHEM 182. ", + "name": "CSE 182", + "prereqs": [ + "MATH 176", + "CSE 100" + ], + "title": "Biological Databases (4)" + }, + "CSE 184": { + "dept": "CSE", + "description": "This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, Hidden Markov models/support victor machines/neural network/profiles. Protein structure prediction, functional characterization or proteins, functional genomics/proteomics, metabolic pathways/gene networks. Cross-listed with BIMM 184/BENG 184/Chem 184. ", + "name": "CSE 184", + "prereqs": [ + "CHEM 182", + "BIMM 181", + "BIMM 182", + "BENG 182", + "BENG 181", + "CSE 181", + "CSE 182" + ], + "title": "Computational Molecular Biology (4)" + }, + "CSE 190": { + "dept": "CSE", + "description": "in Computer Science and Engineering (4)", + "name": "CSE 190", + "prereqs": [], + "title": "Topics" + }, + "CSE 191": { + "dept": "CSE", + "description": "A seminar course on topics of current interest. Students, as well as, the instructor will be actively involved in running the course/class. This course cannot be counted toward a technical elective. ", + "name": "CSE 191", + "prereqs": [], + "title": "Seminar in CSE (1\u20134)" + }, + "CSE 192": { + "dept": "CSE", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in CSE (at the upper-division level). Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ", + "name": "CSE 192", + "prereqs": [], + "title": "Senior Seminar in Computer Science and Engineering (1)" + }, + "CSE 195": { + "dept": "CSE", + "description": "Teaching and tutorial assistance in a CSE course under the supervision of the instructor. (P/NP grades only.) ", + "name": "CSE 195", + "prereqs": [], + "title": "Teaching (4)" + }, + "CSE 197": { + "dept": "CSE", + "description": "Study in Computer Science and Engineering (4, 8, 12, or 16)", + "name": "CSE 197", + "prereqs": [], + "title": "Field" + }, + "CSE 198": { + "dept": "CSE", + "description": "Computer science and engineering topics whose study involves reading and discussion by a small group of students under the supervision of a faculty member. (P/NP grades only.) ", + "name": "CSE 198", + "prereqs": [], + "title": "Directed Group Study (2 or 4)" + }, + "CSE 199": { + "dept": "CSE", + "description": "Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ", + "name": "CSE 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (2 or 4)" + }, + "CSE 199H": { + "dept": "CSE", + "description": "Undergraduate research for completing an honors project under the supervision of a CSE faculty member. May be taken across multiple quarters. Students should enroll for a letter grade. May be taken for credit three times. ", + "name": "CSE 199H", + "prereqs": [], + "title": "CSE Honors Thesis Research for Undergraduates (4)" + }, + "CSE 20": { + "dept": "CSE", + "description": "Basic discrete mathematical structures: sets, relations, functions, sequences, equivalence relations, partial orders, and number systems. Methods of reasoning and proofs: prepositional logic, predicate logic, induction, recursion, and pigeonhole principle. Infinite sets and diagonalization. Basic counting techniques; permutation and combinations. Applications will be given to digital logic design, elementary number theory, design of programs, and proofs of program correctness. Students who have completed Math 109 may not receive credit for CSE 20. Credit not offered for both Math 15A and CSE 20. Equivalent to Math 15A. ", + "name": "CSE 20", + "prereqs": [ + "CSE 11", + "COGS 7", + "CSE 8B" + ], + "title": "Discrete Mathematics (4)" + }, + "CSE 200": { + "dept": "CSE", + "description": "Computability review, including halting problem, decidable sets, r.e. sets, many-one reductions; TIME(t(n)), SPACE(s(n)) and general relations between these classes; L, P, PSPACE, NP; NP\u2014completeness; hierarchy theorems; RP, BPP. ", + "name": "CSE 200", + "prereqs": [ + "CSE 105" + ], + "title": "Computability and Complexity (4)" + }, + "CSE 201A": { + "dept": "CSE", + "description": "Polynomial-time hierarchy (PH), BPP in second level of PH, Savitch\u2019s theorem, NL=coNL, nonuniform and circuit complexity, some circuit lower bounds, IP=PSPACE, probabilistic proof checking (PCP), application of PCP to approximation hardness, complexity of proof systems, parallel complexity classes NC and AC, P-completeness. Recommended preparation: CSE 200. ", + "name": "CSE 201A", + "prereqs": [], + "title": "Advanced Complexity (4)" + }, + "CSE 202": { + "dept": "CSE", + "description": "The basic techniques for the design and analysis of algorithms. Divide-and-conquer, dynamic programming, data structures, graph search, algebraic problems, randomized algorithms, lower bounds, probabilistic analysis, parallel algorithms. ", + "name": "CSE 202", + "prereqs": [ + "CSE 101" + ], + "title": "Algorithm Design and Analysis (4)" + }, + "CSE 203A": { + "dept": "CSE", + "description": "Modern advances in design and analysis of algorithms. Exact syllabus varies. Topics include approximation, randomized algorithms, probabilistic analysis, heuristics, online algorithms, competitive analysis, models of memory hierarchy, parallel algorithms, number-theoretic algorithms, cryptanalysis, computational geometry, computational biology, network algorithms, VLSI CAD algorithms. ", + "name": "CSE 203A", + "prereqs": [ + "CSE 202" + ], + "title": "Advanced Algorithms (4)" + }, + "CSE 205A": { + "dept": "CSE", + "description": "(Formerly CSE 208D) Mathematical logic as a tool in computer science. Propositional logic, resolution, first-order logic, completeness and incompleteness theorems with computational viewpoint, finite model theory, descriptive complexity, logic programming, nonmonotonic reasoning, temporal logic. Applications to databases, automatic theorem proving, program verification, and distributed systems. ", + "name": "CSE 205A", + "prereqs": [ + "CSE 200" + ], + "title": "Logic in Computer Science (4)" + }, + "CSE 206A": { + "dept": "CSE", + "description": "(Formerly CSE 207C) Introduction to the algorithmic theory of point lattices (aka algorithmic geometry of numbers), and some of its most important applications in cryptography and cryptanalysis. Topics usually include: LLL basis reduction algorithm, cryptanalysis of broadcast RSA, hardness of approximating lattice problems. ", + "name": "CSE 206A", + "prereqs": [ + "CSE 202", + "CSE 200" + ], + "title": "Lattice Algorithms and Applications (4)" + }, + "CSE 207": { + "dept": "CSE", + "description": "Private and public key cryptography, introduction to reduction based proofs of security, concrete security, block ciphers, pseudorandom functions and generators, symmetric encryption, asymmetric encryption, computational number theory, RSA and discrete log systems, message authentication, digital signatures, key distribution and key management. ", + "name": "CSE 207", + "prereqs": [ + "CSE 202" + ], + "title": "Modern Cryptography (4)" + }, + "CSE 208": { + "dept": "CSE", + "description": "Zero-knowledge, secure computation, session-key distribution, protocols, electronic payment, one-way functions, trapdoor permutations, pseudorandom bit generators, hardcore bits. ", + "name": "CSE 208", + "prereqs": [ + "CSE 207", + "CSE 202", + "CSE 200" + ], + "title": "Advanced Cryptography (4)" + }, + "CSE 209A": { + "dept": "CSE", + "description": "and Logic (1\u20134)", + "name": "CSE 209A", + "prereqs": [], + "title": "Topics/Seminar in Algorithms, Complexity," + }, + "CSE 209B": { + "dept": "CSE", + "description": "Topics of special interest in cryptography to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "name": "CSE 209B", + "prereqs": [], + "title": "Topics/Seminar in Cryptography (1\u20134)" + }, + "CSE 21": { + "dept": "CSE", + "description": "This course will provide an introduction to the discrete mathematical tools needed to analyze algorithms and systems. Enumerative combinatorics: basic counting principles, inclusion-exclusion, and generating functions. Matrix notation. Applied discrete probability. Finite automata. Credit not offered for both Math 15B and CSE 21. Equivalent to Math 15B. ", + "name": "CSE 21", + "prereqs": [ + "CSE 20", + "MATH 15A" + ], + "title": "Mathematics for Algorithms and Systems (4)" + }, + "CSE 210": { + "dept": "CSE", + "description": "(Formerly CSE 264A.) General principles in modern software engineering. Both theoretical and practical topics are covered. Theoretical topics include proofs of correctness, programming language semantics, and theory of testing. Practical topics include structured programming, modularization techniques, design of languages for reliable programming, and software tools. ", + "name": "CSE 210", + "prereqs": [ + "CSE 131A", + "CSE 120", + "CSE 100" + ], + "title": "Principles of Software Engineering (4)" + }, + "CSE 211": { + "dept": "CSE", + "description": "Survey of testing and analysis methods. Introduction to advanced topics in area as well as traditional production methods. Topics include inspections and reviews, formal analysis, verification and validation standards, nonstatistical testing, statistical-testing and reliability models, coverage methods, testing and analysis tools, and organization management and planning. Methods special to special development approaches such as object-oriented testing will also be described. ", + "name": "CSE 211", + "prereqs": [], + "title": "Software Testing and Analysis (4)" + }, + "CSE 216": { + "dept": "CSE", + "description": "Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Cross-listed with COGS 230. ", + "name": "CSE 216", + "prereqs": [], + "title": "Research Topics in Human-Computer Interaction (4)" + }, + "CSE 218": { + "dept": "CSE", + "description": "Topics in Software Engineering (4)", + "name": "CSE 218", + "prereqs": [], + "title": "Advanced" + }, + "CSE 219": { + "dept": "CSE", + "description": "New societal challenges, cultural values, and technological opportunities are changing design\u2014and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. Cross-listed with COGS 229. (S/U grades only.) ", + "name": "CSE 219", + "prereqs": [], + "title": "Design at Large (1)" + }, + "CSE 221": { + "dept": "CSE", + "description": "Operating system structures, concurrent computation models, scheduling, synchronization mechanisms, address spaces, memory management protection and security, buffering, streams, data-copying reduction techniques, file systems, naming, caching, disk organization, mapped files, remote file systems, case studies of major operating systems. ", + "name": "CSE 221", + "prereqs": [ + "CSE 121", + "CSE 120" + ], + "title": "Operating Systems (4)" + }, + "CSE 222A": { + "dept": "CSE", + "description": "(Formerly CSE 222.) Computer communication network concepts, protocols, and architectures, with an emphasis on an analysis of algorithms, protocols, and design methodologies. Topics will include layering, error control, flow control, congestion control, switching and routing, quality of service management, mobility, naming, security, and selected contemporary topics. ", + "name": "CSE 222A", + "prereqs": [ + "CSE 123A" + ], + "title": "Computer Communication Networks (4)" + }, + "CSE 222B": { + "dept": "CSE", + "description": "(Formerly CSE 228H.) Techniques for speeding up Internet implementations, including system restructuring, new algorithms, and hardware innovations. Topics include: models for protocols, systems and hardware; efficiency principles; applying these principles to deriving techniques for efficient implementation of common endnode and router functions. ", + "name": "CSE 222B", + "prereqs": [ + "CSE 222A", + "CSE 123A" + ], + "title": "Internet Algorithmics (4)" + }, + "CSE 223B": { + "dept": "CSE", + "description": "Efficient primitives for distributed operating systems and high-performance network servers, including concurrent and event-driven server architectures, remote procedure calls, and load shedding. Distributed naming, directory, and storage services, replication for fault tolerance, and security in distributed systems. ", + "name": "CSE 223B", + "prereqs": [ + "CSE 222A", + "CSE 221" + ], + "title": "Distributed Computing and Systems (4)" + }, + "CSE 224": { + "dept": "CSE", + "description": "This course will provide a broad understanding of network design and implementation. Topics include techniques for building distributed applications, sockets programming, remote procedure calls (RPC), scale-out distributed directories, distributed consensus and state management, fault tolerance, networked storage, indirection, overlay networks, load balancing, and datacenter design. ", + "name": "CSE 224", + "prereqs": [], + "title": "Graduate Networked Systems (4)" + }, + "CSE 227": { + "dept": "CSE", + "description": "Security and threat models, risk analysis, authentication and authorization, auditing, operating systems security, access control mechanisms, protection mechanisms, distributed systems/network security, security architecture, electronic commerce security mechanisms, security evaluation. ", + "name": "CSE 227", + "prereqs": [ + "CSE 221" + ], + "title": "Computer Security (4)" + }, + "CSE 229A": { + "dept": "CSE", + "description": "Discussion on problems of current research interest in computer systems. Possible areas of focus include: distributed computing, computational grid, operating systems, fault-tolerant computing, storage systems, system services for the World Wide Web. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "name": "CSE 229A", + "prereqs": [], + "title": "Topics/Seminar in Computer Systems (1\u20134)" + }, + "CSE 229C": { + "dept": "CSE", + "description": "Discussion on problems of current research interest in computer security. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "name": "CSE 229C", + "prereqs": [], + "title": "Topics/Seminar in Computer Security (1\u20134)" + }, + "CSE 230": { + "dept": "CSE", + "description": "(Formerly CSE 273.) Functional versus imperative programming. Type systems and polymorphism; the ML language. Higher order functions, lazy evaluation. Abstract versus concrete syntax, structural and well-founded induction. The lambda calculus, reduction strategies, combinators. Denotational semantics, elementary domain theory. ", + "name": "CSE 230", + "prereqs": [ + "CSE 130" + ], + "title": "Principles of Programming Languages (4)" + }, + "CSE 231": { + "dept": "CSE", + "description": "(Formerly CSE 264C.) Advanced material in", + "name": "CSE 231", + "prereqs": [], + "title": "Advanced Compiler Design (4)" + }, + "CSE 232": { + "dept": "CSE", + "description": "(Formerly CSE 264D.) Database models including relational, hierarchic, and network approaches. Implementation of databases including query languages and system architectures. ", + "name": "CSE 232", + "prereqs": [ + "CSE 100" + ], + "title": "Principles of Database Systems (4)" + }, + "CSE 232B": { + "dept": "CSE", + "description": "A hands-on approach to the principles of databases implementation. Algebraic rewriters/optimizers, query processors, triggers. Beyond centralized relational databases. ", + "name": "CSE 232B", + "prereqs": [ + "CSE 232" + ], + "title": "Database System Implementation (4)" + }, + "CSE 233": { + "dept": "CSE", + "description": "Theory of databases. Theory of query languages, dependency theory, deductive databases, incomplete information, complex objects, object-oriented databases, and more. Connections to logic and complexity theory including finite model theory and descriptive complexity. ", + "name": "CSE 233", + "prereqs": [ + "CSE 200" + ], + "title": "Database Theory (4)" + }, + "CSE 237A": { + "dept": "CSE", + "description": "Embedded system technologies including processors, DSP, memory, and software. System interfacing basics, communication strategies, sensors, and actuators. Mobile and wireless technology in embedded systems. Using predesigned hardware and software components. Design case studies in wireless, multimedia, and/or networking domains. ", + "name": "CSE 237A", + "prereqs": [], + "title": "Introduction to Embedded Computing (4)" + }, + "CSE 237B": { + "dept": "CSE", + "description": "Embedded computing elements, device interfaces,", + "name": "CSE 237B", + "prereqs": [], + "title": "Software for Embedded Systems (4)" + }, + "CSE 237C": { + "dept": "CSE", + "description": "and Testing of Embedded Systems (4)", + "name": "CSE 237C", + "prereqs": [], + "title": "Validation" + }, + "CSE 237D": { + "dept": "CSE", + "description": "Automation and Prototyping for Embedded Systems (4)", + "name": "CSE 237D", + "prereqs": [], + "title": "Design" + }, + "CSE 239A": { + "dept": "CSE", + "description": "Discussion on problems of current research", + "name": "CSE 239A", + "prereqs": [], + "title": "Topics/Seminar in Databases (1\u20134)" + }, + "CSE 240A": { + "dept": "CSE", + "description": "(Formerly CSE 240.) This course will cover fundamental concepts in computer architecture. Topics include instruction set architecture, pipelining, pipeline hazards, bypassing, dynamic scheduling, branch prediction, superscalar issue, memory-hierarchy design, advanced cache architectures, and multiprocessor architecture issues. ", + "name": "CSE 240A", + "prereqs": [ + "CSE 141" + ], + "title": "Principles of Computer Architecture (4)" + }, + "CSE 240B": { + "dept": "CSE", + "description": "This course covers advanced topics in parallel computer architecture, including on-chip and off-chip interconnection networks, cache coherence, cache consistency, hardware multithreading, multi-core and tiled architectures. It incorporates the latest research and development on parallel architectures and compilation techniques for those architectures. CSE 240A recommended. ", + "name": "CSE 240B", + "prereqs": [], + "title": "Parallel Computer Architecture (4)" + }, + "CSE 240C": { + "dept": "CSE", + "description": "This course covers advanced topics in computer architecture. It incorporates the latest research and development on topics such as branch prediction, instruction-level parallelism, cache hierarchy design, speculative multithreading, reliable architectures, and power-management techniques. CSE 240A recommended. ", + "name": "CSE 240C", + "prereqs": [], + "title": "Advanced Microarchitecture (4)" + }, + "CSE 241A/ECE": { + "dept": "CSE", + "description": "260B. VLSI Integration of Computing Circuitry (4)", + "name": "CSE 241A/ECE", + "prereqs": [], + "title": "" + }, + "CSE 243A": { + "dept": "CSE", + "description": "to Synthesis Methodologies in VLSI CAD (4)", + "name": "CSE 243A", + "prereqs": [], + "title": "Introduction" + }, + "CSE 244A": { + "dept": "CSE", + "description": "Design for test, testing economics, defects, failures and faults, fault models, fault simulation, automatic test pattern generation, functional testing, memory, PLA, FPGA, microprocessor test, and fault diagnosis. ", + "name": "CSE 244A", + "prereqs": [], + "title": "VLSI Test (4)" + }, + "CSE 245": { + "dept": "CSE", + "description": "Aided Circuit Simulation and Verification (4)", + "name": "CSE 245", + "prereqs": [], + "title": "Computer" + }, + "CSE 248": { + "dept": "CSE", + "description": "Algorithmic techniques and optimization frameworks for large-scale, difficult optimizations. Primal-dual multicommodity flow approximations, approximations for geometric and graph Steiner formulations, continuous placement optimization, heuristics for Boolean satisfiability, multilevel methods, semidefinite programming, and application to other formulations (e.g., scheduling). ", + "name": "CSE 248", + "prereqs": [ + "CSE 242A", + "CSE 241A" + ], + "title": "Algorithmic and Optimization Foundations for VLSI CAD (4)" + }, + "CSE 249A": { + "dept": "CSE", + "description": "in Computer Architecture (1\u20134)", + "name": "CSE 249A", + "prereqs": [], + "title": "Topics/Seminar" + }, + "CSE 249B": { + "dept": "CSE", + "description": "Topics of special interest in VLSI to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "name": "CSE 249B", + "prereqs": [], + "title": "Topics/Seminar in VLSI (1\u20134)" + }, + "CSE 250A": { + "dept": "CSE", + "description": "Methods based on probability theory for reasoning and learning under uncertainty. Content may include directed and undirected probabilistic graphical models, exact and approximate inference, latent variables, expectation-maximization, hidden Markov models, Markov decision processes, applications to vision, robotics, speech, and/or text. Recommended preparation: CSE 103 or similar course. ", + "name": "CSE 250A", + "prereqs": [], + "title": "Principles of Artificial Intelligence: Probabilistic Reasoning and Learning (4)" + }, + "CSE 250B": { + "dept": "CSE", + "description": "Algorithms for supervised and unsupervised learning from data. Content may include maximum likelihood; log-linear models, including logistic regression and conditional random fields; nearest neighbor methods; kernel methods; decision trees; ensemble methods; optimization algorithms; topic models; neural networks; and backpropagation.", + "name": "CSE 250B", + "prereqs": [], + "title": "Principles of Artificial Intelligence: Learning Algorithms (4)" + }, + "CSE 250C": { + "dept": "CSE", + "description": "Theoretical foundations of machine learning. Topics include concentration of measure, the PAC model, uniform convergence bounds, and VC dimension. Possible topics include online learning, learning with expert advice, multiarmed bandits, and boosting. Recommended preparation: CSE 103 and CSE 101 or similar course. ", + "name": "CSE 250C", + "prereqs": [], + "title": "Machine Learning Theory (4)" + }, + "CSE 252A": { + "dept": "CSE", + "description": "Comprehensive introduction to computer vision", + "name": "CSE 252A", + "prereqs": [], + "title": "Computer Vision I (4)" + }, + "CSE 252B": { + "dept": "CSE", + "description": "Comprehensive introduction to computer vision", + "name": "CSE 252B", + "prereqs": [], + "title": "Computer Vision II (4)" + }, + "CSE 252C": { + "dept": "CSE", + "description": "Selected topics in computer vision and statistical pattern recognition, with an emphasis on recent developments. Possible topics include: grouping and segmentation, object recognition and tracking, multiple view geometry, kernel-based methods, dimensionality reduction, and mixture models. ", + "name": "CSE 252C", + "prereqs": [ + "CSE 250B", + "CSE 252" + ], + "title": "Selected Topics in Vision and Learning (1\u20134)" + }, + "CSE 253": { + "dept": "CSE", + "description": "Probability density estimation, perceptrons, multilayer neural networks, radial basis function networks, support vector machines, error functions, data preprocessing. Possible topics include unsupervised learning methods, recurrent networks, and mathematical learning theory. Recommended preparation: CSE 250B or equivalent. ", + "name": "CSE 253", + "prereqs": [], + "title": "Neural Networks for Pattern Recognition (4)" + }, + "CSE 254": { + "dept": "CSE", + "description": "Learning algorithms based on statistics. Possible topics include minimum-variance unbiased estimators, maximum likelihood estimation, likelihood ratio tests, resampling methods, linear logistic regression, feature selection, regularization, dimensionality reduction, manifold detection. An upper-division undergraduate course on probability and statistics such as Math 183 or 186, or any graduate course on statistics, pattern recognition, or machine learning is recommended. ", + "name": "CSE 254", + "prereqs": [], + "title": "Statistical Learning (4)" + }, + "CSE 255": { + "dept": "CSE", + "description": "Learning methods for applications. Content may include data preparation, regression and classification algorithms, support vector machines, random forests, class imbalance, overfitting, decision theory, recommender systems and collaborative filtering, text mining, analyzing social networks and social media, protecting privacy, A/B testing. Recommended preparation: CSE 103 or similar. ", + "name": "CSE 255", + "prereqs": [], + "title": "Data Mining and Predictive Analytics (4)" + }, + "CSE 258": { + "dept": "CSE", + "description": "Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. Recommended preparation: No previous background in machine learning is required, but students should be comfortable with programming (all example code will be in Python), and with basic optimization and linear algebra. ", + "name": "CSE 258", + "prereqs": [], + "title": "Recommender Systems and Web Mining (4)" + }, + "CSE 258A": { + "dept": "CSE", + "description": "Connectionist models and a sampling of other cognitive modeling techniques. Models of language processing, memory, sequential processes, and vision. Areas covered may vary depending on student and faculty interests. Can be repeated for credit. CSE 151 or CSE 250B or CSE 253 or CSE 254, or equivalent experience recommended. ", + "name": "CSE 258A", + "prereqs": [], + "title": "Cognitive Modeling (4)" + }, + "CSE 259": { + "dept": "CSE", + "description": "A weekly meeting featuring local (and occasional external) speakers discussing their current research in Artificial Intelligence Neural Networks, and Genetic Algorithms. (S/U grades only.) ", + "name": "CSE 259", + "prereqs": [], + "title": "Seminar in Artificial Intelligence (1)" + }, + "CSE 260": { + "dept": "CSE", + "description": "(Formerly CSE 274A.) This course provides an overview of parallel hardware, algorithms, models, and software. Topics include Flynn\u2019s taxonomy, interconnection networks, memory organization, a survey of commercially available multiprocessors, parallel algorithm paradigms and complexity criteria, parallel programming environments and tools for parallel debugging, language specification, mapping, performance, etc. ", + "name": "CSE 260", + "prereqs": [], + "title": "Parallel Computation (4)" + }, + "CSE 262": { + "dept": "CSE", + "description": "Support for Applications of Parallel Computation (4)", + "name": "CSE 262", + "prereqs": [], + "title": "System" + }, + "CSE 272": { + "dept": "CSE", + "description": "Computer graphics techniques for creating realistic images. Topics include ray tracing, global illumination, subsurface scattering, and participating media. CSE 168 or equivalent recommended.", + "name": "CSE 272", + "prereqs": [], + "title": "Advanced Image Synthesis (4)" + }, + "CSE 274": { + "dept": "CSE", + "description": "Selected topics in computer graphics, with an emphasis on recent developments. Possible topics include computer animation, shape modeling and analysis, image synthesis, appearance modeling, and real-time rendering. CSE 168 or CSE 169 recommended. ", + "name": "CSE 274", + "prereqs": [], + "title": "Selected Topics in Graphics (2\u20134)" + }, + "CSE 276A": { + "dept": "CSE", + "description": "This course provides an introduction to the fundamentals of robotics across kinematics, sensor systems, estimation, control, and planning. The contents include introduction to robotics in general, kinematics of robot systems, robot arm systems, sensors for robots, basic vision for robots, estimation methods, perception, robot localization and navigation, control of robot systems, robot motion planning, robot task planning, robot architectures, and evaluation of robot systems. It is expected that students have a solid understanding of linear algebra, can program in Python or C++, and have a basic understanding of methods for reasoning under uncertainty. ", + "name": "CSE 276A", + "prereqs": [], + "title": "Introduction to Robotics (4)" + }, + "CSE 276B": { + "dept": "CSE", + "description": "Robots are entering human spaces. How do we make them functional, useful, and acceptable? This course explores the core computational, engineering, and experimental challenges in human-robot interaction. Course topics include shared autonomy, perception of people and context, coordination, collaboration, human-guided learning, robot design, and experimental robotics. Students will review seminal and recent papers in the field and engage in team-based projects with physical, mobile robots. This class requires expertise in software development. Prior exposure to robotics, computer vision, or machine learning is recommended. Students should be comfortable reading and analyzing scientific papers at the graduate level. Students may not receive credit for CSE 276B and CSE 291 (A00) taught winter 2017 with the same subtitle. ", + "name": "CSE 276B", + "prereqs": [], + "title": "Human Robot Interaction (4)" + }, + "CSE 276C": { + "dept": "CSE", + "description": "The course will provide a comprehensive introduction to the key mathematical concepts used for modeling, implementing, and evaluation of robot systems. The course will use small home assignments tasks and a larger robot project to exercise the topics covered in class. The students should have a basic knowledge of mathematics and know one or more programming languages such as Python or Matlab for completion of homework assignments. ", + "name": "CSE 276C", + "prereqs": [], + "title": "Mathematics for Robotics (4)" + }, + "CSE 276D": { + "dept": "CSE", + "description": "Robotics has the potential to improve well-being for millions of people, support care givers, and aid the clinical workforce. This course brings together engineers, clinicians, and end-users to explore this exciting new field. It is project-based, interactive, and hands on, and involves working closely with stakeholders to develop prototypes that solve real-world problems.\u00a0Students will explore the latest research in healthcare robotics, human-robot teaming, and health design. JSOE students should be comfortable building and experimenting within their area of expertise (e.g., CSE, software development, MAE, rapid prototyping). Students with clinical backgrounds should be familiar with translational research methods. Students may not receive credit for CSE 276D and CSE 291 (H00) taught spring 2017 with the same subtitle. Program or materials fees may apply. ", + "name": "CSE 276D", + "prereqs": [], + "title": "Healthcare Robotics (4)" + }, + "CSE 280A": { + "dept": "CSE", + "description": "(Formerly CSE 206B.) The course focuses on algorithmic aspects of modern bioinformatics and covers the following topics: computational gene hunting, sequencing, DNA arrays, sequence comparison, pattern discovery in DNA, genome rearrangements, molecular evolution, computational proteomics, and others. ", + "name": "CSE 280A", + "prereqs": [ + "CSE 202" + ], + "title": "Algorithms in Computational Biology (4)" + }, + "CSE 282/BENG 202": { + "dept": "CSE", + "description": "(Formerly CSE 257A/BENG 202.) Introduction to methods for sequence analysis. Applications to genome and proteome sequences. Protein structure, sequence-structure analysis. ", + "name": "CSE 282/BENG 202", + "prereqs": [ + "PHARM 201" + ], + "title": "Bioinformatics II: Sequence and Structure Analysis\u2014Methods and Applications (4)" + }, + "CSE 283/BENG 203": { + "dept": "CSE", + "description": "Bioinformatics III: Functional Genomics (4)", + "name": "CSE 283/BENG 203", + "prereqs": [], + "title": "" + }, + "CSE 284": { + "dept": "CSE", + "description": "This course provides an introduction to bioinformatics techniques for analyzing and interpreting human genomes. Topics covered include an introduction to medical and population genetics, ancestry, finding and interpreting disease-causing variants, genome-wide association studies, genetic risk prediction, analyzing next-generation sequencing data, how to scale current genomics techniques to analyze hundreds of thousands of genomes, and the social impact of the personal genomics revolution. Programming experience, familiarity with the UNIX command line, and a basic course in probability and statistics are strongly recommended. Students may not receive credit for CSE 284 and CSE 291 (E00) taught winter 2017 with the same subtitle. ", + "name": "CSE 284", + "prereqs": [], + "title": "Personal Genomics for Bioinformaticians (4)" + }, + "CSE 290": { + "dept": "CSE", + "description": "in Computer Science and Engineering (1\u20134)", + "name": "CSE 290", + "prereqs": [], + "title": "Seminar" + }, + "CSE 291": { + "dept": "CSE", + "description": "in Computer Science and Engineering (1\u20134)", + "name": "CSE 291", + "prereqs": [], + "title": "Topics" + }, + "CSE 292": { + "dept": "CSE", + "description": "(Formerly CSE 282.) Computer science and engineering faculty will present one-hour seminars of the current research work in their areas of interest. ", + "name": "CSE 292", + "prereqs": [], + "title": "Faculty Research Seminar (1)" + }, + "CSE 293": { + "dept": "CSE", + "description": "Project in Computer Science and Engineering (1\u201312)", + "name": "CSE 293", + "prereqs": [], + "title": "Special" + }, + "CSE 294": { + "dept": "CSE", + "description": "Advanced study and analysis of active research in computer science and computer engineering. Discussion of current research and literature in the research specialty of the staff member teaching the course. ", + "name": "CSE 294", + "prereqs": [], + "title": "Research Meeting in CSE (2)" + }, + "CSE 298": { + "dept": "CSE", + "description": "Open to properly qualified graduate students who wish to pursue a problem through advanced study under the direction of a member of the staff. (S/U grades only.) ", + "name": "CSE 298", + "prereqs": [], + "title": "Independent Study (1\u201316)" + }, + "CSE 299": { + "dept": "CSE", + "description": "Research. ", + "name": "CSE 299", + "prereqs": [], + "title": "Research (1\u201316)" + }, + "CSE 3": { + "dept": "CSE", + "description": "Introduces the concepts and skills necessary to effectively use information technology. Includes basic concepts and some practical skills with computer and networks. ", + "name": "CSE 3", + "prereqs": [], + "title": "Fluency in Information Technology (4)" + }, + "CSE 30": { + "dept": "CSE", + "description": "Organization and Systems Programming (4)", + "name": "CSE 30", + "prereqs": [], + "title": "Computer" + }, + "CSE 42": { + "dept": "CSE", + "description": "This course allows students to use what they learned in introductory programming courses to make things happen in the real world. Working in teams, students will first learn to program Arduino-based devices. Teams of students will design a custom device and program it to do their bidding. This course is targeted to freshmen and sophomores in engineering and science disciplines who want to practice applying what they have learned in a programming class and to have the chance to program things other than computers. Program or materials fees may apply. ", + "name": "CSE 42", + "prereqs": [], + "title": "Building and Programming Electronic Devices (2)" + }, + "CSE 4GS": { + "dept": "CSE", + "description": "Exploration of topics in mathematics and engineering", + "name": "CSE 4GS", + "prereqs": [], + "title": "Mathematical Beauty in Rome (4)" + }, + "CSE 500": { + "dept": "CSE", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. May be used to meet teaching experience requirement for candidates for the PhD degree. Number of units for credit depends on number of hours devoted to class or section assistance. ", + "name": "CSE 500", + "prereqs": [], + "title": "Teaching Assistantship (2\u20134)" + }, + "CSE 599": { + "dept": "CSE", + "description": "Training in teaching methods in the field of computer science. This course examines theoretical and practical communication and teaching techniques particularly appropriate to computer science. ", + "name": "CSE 599", + "prereqs": [], + "title": "Teaching Methods in Computer Science (2)" + }, + "CSE 5A": { + "dept": "CSE", + "description": "Introduction to algorithms and top-down problem solving. Introduction to the C language, including functions, arrays, and standard libraries. Basic skills for using a PC graphical user interface operating system environment. File maintenance utilities are covered. A student may not receive credit for CSE 5A after receiving credit for CSE 11 or CSE 8B. Recommended preparation: A familiarity with high school-level algebra is expected, but this course assumes no prior programming knowledge. ", + "name": "CSE 5A", + "prereqs": [], + "title": "Introduction to Programming I (4)" + }, + "CSE 6GS": { + "dept": "CSE", + "description": "Companion course to CSE 4GS where theory is applied and lab experiments", + "name": "CSE 6GS", + "prereqs": [], + "title": "Mathematical Beauty in Rome Lab (4)" + }, + "CSE 7": { + "dept": "CSE", + "description": "Fundamentals of computer programming and basic software design covering topics related to variables, functions, and control structures; writing, testing, and debugging programs in Matlab. Examples focus on scientific applications. Recommended preparation: high school algebra and familiarity with the computing milieu. Students with limited computing experience may take CSE 3 for preparation. Program or materials fees may apply. ", + "name": "CSE 7", + "prereqs": [], + "title": "Introduction to Programming with Matlab (4)" + }, + "CSE 80": { + "dept": "CSE", + "description": "The objective of the course is to help the programmer create a productive UNIX environment. Topics include customizing the shell, file system, shell programming, process management, and UNIX tools. ", + "name": "CSE 80", + "prereqs": [ + "CSE 11", + "CSE 8B" + ], + "title": "UNIX Lab (2)" + }, + "CSE 86": { + "dept": "CSE", + "description": "Helps the Java programmer to be productive in the C++ programming environment. Topics include the similarities and differences between Java and C++ with special attention to pointers, operator overloading, templates, the STL, the preprocessor, and the C++ Runtime Environment. ", + "name": "CSE 86", + "prereqs": [ + "CSE 12" + ], + "title": "C++ for Java Programmers (2)" + }, + "CSE 87": { + "dept": "CSE", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "name": "CSE 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "CSE 8A": { + "dept": "CSE", + "description": "Introductory course for students interested in computer science. Fundamental concepts of applied computer science using media computation. Exercises in the theory and practice of computer science. Hands-on experience with designing, editing, compiling, and executing programming constructs and applications. CSE 8A is part of a two-course sequence (CSE 8A and CSE 8B) that is equivalent to CSE 11. Students should take CSE 8B to complete this track. Formerly offered as corequisite courses CSE 8A plus 8AL. Students who have taken CSE 8B or CSE 11 may not take CSE 8A. Recommended preparation: No prior programming experience is assumed, but comfort using computers is helpful. Students should consult the", + "name": "CSE 8A", + "prereqs": [], + "title": "Introduction to Computer Science: Java I (4)" + }, + "CSE 8B": { + "dept": "CSE", + "description": "Continuation of the Java language. Continuation of programming techniques. More on inheritance. Exception handling. CSE 8B is part of a two-course sequence (CSE 8A and CSE 8B) that is equivalent to CSE 11. Students should consult the", + "name": "CSE 8B", + "prereqs": [], + "title": "Introduction to Computer Science: Java II (4)" + }, + "CSE 90": { + "dept": "CSE", + "description": "A seminar providing an overview of a topic of current research interest to the instructor. The goal is to present a specialized topic in computer science and engineering students. May be taken for credit three times when topics vary.", + "name": "CSE 90", + "prereqs": [], + "title": "Undergraduate Seminar (1)" + }, + "CSE 91": { + "dept": "CSE", + "description": "in Computer Science and Engineering (2)", + "name": "CSE 91", + "prereqs": [], + "title": "Perspectives" + }, + "CSE 99": { + "dept": "CSE", + "description": "Study in Computer Science and Engineering (4)", + "name": "CSE 99", + "prereqs": [], + "title": "Independent" + }, + "Classics 200A": { + "dept": "Classics", + "description": "An introduction to contemporary literary theory, focusing on important", + "name": "Classics 200A", + "prereqs": [], + "title": "Contemporary Literary Theory and the Classics (4)" + }, + "Classics 200B": { + "dept": "Classics", + "description": "Examines ways in which classical texts and ideas have been received and", + "name": "Classics 200B", + "prereqs": [], + "title": "Historical Perspectives on Classical Antiquity (4)" + }, + "Classics 200C": { + "dept": "Classics", + "description": "Cultural Contexts (4)", + "name": "Classics 200C", + "prereqs": [], + "title": "Greece and Rome in Their Contemporary" + }, + "Classics 201": { + "dept": "Classics", + "description": "Covers various technical skills essential for research and pedagogy in classics, including use of digital resources (e.g., bibliographical databases). Provides an introduction to important disciplinary subfields, such as textual criticism and epigraphy. Selection of topics will be at instructor\u2019s discretion.", + "name": "Classics 201", + "prereqs": [], + "title": "Research and Pedagogical Tools for Classicists (4)" + }, + "Classics 205": { + "dept": "Classics", + "description": "Concurrent enrollment with advanced undergraduate courses (either Greek 105 or Latin 105) with enhanced readings and separate examinations. May be repeated for credit as topics vary.", + "name": "Classics 205", + "prereqs": [], + "title": "Concurrent Readings (2)" + }, + "Classics 220": { + "dept": "Classics", + "description": "Subject matter variable; mainly but not exclusively major literary topics.", + "name": "Classics 220", + "prereqs": [], + "title": "Classics Graduate Seminar (4)" + }, + "Classics 280": { + "dept": "Classics", + "description": "Supervised independent research. Subject varies.", + "name": "Classics 280", + "prereqs": [], + "title": "Independent Study (4)" + }, + "Classics 290": { + "dept": "Classics", + "description": "F,W,S.", + "name": "Classics 290", + "prereqs": [], + "title": "Research in Classics (4-4-4)" + }, + "Classics 299": { + "dept": "Classics", + "description": "F,W,S. May be repeated for credit. Satisfactory/Unsatisfactory", + "name": "Classics 299", + "prereqs": [], + "title": "Dissertation Research (4\u201312)" + }, + "Classics 399": { + "dept": "Classics", + "description": "F,W,S. Required of and limited to teaching", + "name": "Classics 399", + "prereqs": [], + "title": "University Teaching (4-4-4)" + }, + "DOC 1": { + "dept": "DOC", + "description": "This course focuses on sociocultural diversity in examining class, ethnicity, race, gender, and sexuality as significant markers of differences among persons. Emphasizing American society, it explores the cultural understandings of diversity and its economic, moral, and political consequences. Three hours of lecture, one hour of discussion. Open to Marshall College students only. (Letter grade only.) (F)", + "name": "DOC 1", + "prereqs": [], + "title": "Dimensions of Culture: Diversity (4)" + }, + "DOC 100D": { + "dept": "DOC", + "description": "This course provides a broad overview of key historical contradictions in US history and explores the origins of social stratifications and movements.\u00a0Students acquire tools for analyzing national tensions. Central aspects include slavery, women\u2019s rights, and rising corporate power.\u00a0Course introduces concepts at the intersections of class, gender, religion, race, and sexuality.\u00a0Students learn to analyze and discuss complex historical/societal artifacts. Designed for two student sectors: 1) Marshall College transfer students who have not taken the DOC sequence, and 2) Transfer and other upper-division students from all six colleges who want to fulfill the campuswide diversity requirement. May be taken for credit two times. ", + "name": "DOC 100D", + "prereqs": [], + "title": "Dimensions of Culture: Promises and Contradictions in US Culture (4)" + }, + "DOC 2": { + "dept": "DOC", + "description": "This course considers the nature of justice in philosophical, historical, and legal terms. Topics include racial justice, political representation, economic justice, gender and justice, the rights of cultural minorities, and crime and punishment. The course offers intensive instruction in writing university-level expository prose. Three hours of lecture, two hours of discussion and writing instruction. Open to Marshall College students only. (Letter grade only.) Prerequisite: completion of UC Entry Level Writing requirement. (W)", + "name": "DOC 2", + "prereqs": [], + "title": "Dimensions of Culture: Justice (6)" + }, + "DOC 3": { + "dept": "DOC", + "description": "Using the arts, this course examines the evolution of pluralistic culture to the modern period. There is a special emphasis on the interdisciplinary study of twentieth-century American culture, including music, literature, art, film, and photography. The course offers intensive instruction in writing university-level expository prose. Three hours of lecture, two hours of discussion and writing instruction. Open to Marshall College students only. (Letter grade only.) Prerequisite: completion of UC Entry Level Writing requirement. (S)", + "name": "DOC 3", + "prereqs": [], + "title": "Dimensions of Culture: Imagination (6)" + }, + "DSC 10": { + "dept": "DSC", + "description": "This introductory course develops computational thinking and tools necessary to answer questions that arise from large-scale datasets. This course emphasizes an end-to-end approach to data science, introducing programming techniques in Python that cover data processing, modeling, and analysis. ", + "name": "DSC 10", + "prereqs": [], + "title": "Principles of Data Science (4)" + }, + "DSC 20": { + "dept": "DSC", + "description": "Provides an understanding of the structures that underlie the programs, algorithms, and languages used in data science by expanding the repertoire of computational concepts introduced in DSC 10 and exposing students to techniques of abstraction. Course will be taught in Python and will cover topics including recursion, higher-order functions, function composition, object-oriented programming, interpreters, classes, and simple data structures such as arrays, lists, and linked lists. ", + "name": "DSC 20", + "prereqs": [ + "DSC 10" + ], + "title": "Programming and Basic Data Structures for Data Science (4)" + }, + "DSC 30": { + "dept": "DSC", + "description": "Builds on topics covered in DSC 20 and provides practical experience in composing larger computational systems through several significant programming projects using Java. Students will study advanced programming techniques including encapsulation, abstract data types, interfaces, algorithms and complexity, and data structures such as stacks, queues, priority queues, heaps, linked lists, binary trees, binary search trees, and hash tables. ", + "name": "DSC 30", + "prereqs": [ + "DSC 20" + ], + "title": "Data Structures and Algorithms for Data Science (4)" + }, + "DSC 40A": { + "dept": "DSC", + "description": "This course, the first of a two-course sequence (DSC 40A-B), will introduce the theoretical foundations of data science. Students will become familiar with mathematical language for expressing data analysis problems and solution strategies, and will receive training in probabilistic reasoning, mathematical modeling of data, and algorithmic problem solving. DSC 40A will introduce fundamental topics in machine learning, statistics, and linear algebra with applications to data analysis. DSC 40A-B connect to DSC 10, 20, and 30 by providing the theoretical foundation for the methods that underlie data science. ", + "name": "DSC 40A", + "prereqs": [ + "MATH 20C", + "MATH 31BH", + "MATH 20F", + "DSC 10", + "MATH 31AH", + "MATH 18" + ], + "title": "Theoretical Foundations of Data Science I (4)" + }, + "DSC 40B": { + "dept": "DSC", + "description": "This course will introduce the theoretical foundations of data science. Students will become familiar with mathematical language for expressing data analysis problems and solution strategies, and will receive training in probabilistic reasoning, mathematical modeling of data, and algorithmic problem-solving. DSC 40B introduces fundamental topics in combinatorics, graph theory, probability, and continuous and discrete algorithms with applications to data analysis. DSC 40A-B connect to DSC 10, 20, and 30 by providing the theoretical foundation for the methods that underlie data science. ", + "name": "DSC 40B", + "prereqs": [ + "DSC 40A" + ], + "title": "Theoretical Foundations of Data Science II (4)" + }, + "DSC 80": { + "dept": "DSC", + "description": "The marriage of data, computation, and inferential thinking, or \u201cdata science,\u201d is redefining how people and organizations solve challenging problems and understand the world. This course bridges lower- and upper-division data science courses as well as methods courses in other fields. Students master the data science life-cycle and learn many of the fundamental principles and techniques of data science spanning algorithms, statistics, machine learning, visualization, and data systems. ", + "name": "DSC 80", + "prereqs": [ + "DSC 30", + "DSC 40A" + ], + "title": "The Practice and Application of Data Science (4)" + }, + "DSGN 1": { + "dept": "DSGN", + "description": "A project-based course examining how principles from cognitive science apply to the design of things simple (doors) and complex (new technology). Learn about affordances, constraints, mappings, and conceptual models. Learn observational and design skills. Become a human-centered design thinker.", + "name": "DSGN 1", + "prereqs": [], + "title": "Design of Everyday Things (4)" + }, + "DSGN 100": { + "dept": "DSGN", + "description": "Explores cognitive principles of thinking through making. Introduces methods and tools for prototyping user experiences. Students make various prototypes and participate in weekly critique sessions. Topics: experience design, rapid prototyping, sketching, bodystorming, cardboard modeling, UI hacking, and design theory. ", + "name": "DSGN 100", + "prereqs": [ + "DSGN 1" + ], + "title": "Information Design (4)" + }, + "DSGN 119": { + "dept": "DSGN", + "description": "New societal challenges, cultural values, and technological opportunities are changing design, and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. P/NP grades only. ", + "name": "DSGN 119", + "prereqs": [], + "title": "Design at Large (2)" + }, + "DSGN 160": { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit three times when topics vary. ", + "name": "DSGN 160", + "prereqs": [], + "title": "Special Topics in Design (4)" + }, + "DSGN 161": { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit three times when topics vary. Recommended preparation: may require shop skills. ", + "name": "DSGN 161", + "prereqs": [], + "title": "Design Project (4)" + }, + "DSGN 195": { + "dept": "DSGN", + "description": "Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. P/NP grades only. May be taken for credit two times. ", + "name": "DSGN 195", + "prereqs": [], + "title": "Instructional Apprenticeship in Design (4)" + }, + "DSGN 198": { + "dept": "DSGN", + "description": "This directed group study course is for small groups of advanced students who wish to complete a one-quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit up to three times. ", + "name": "DSGN 198", + "prereqs": [], + "title": "Directed Group Study (2 or 4)" + }, + "DSGN 199": { + "dept": "DSGN", + "description": "This independent project course is for individual, advanced students who wish to complete a design project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "name": "DSGN 199", + "prereqs": [], + "title": "Independent Project (2 or 4)" + }, + "DSGN 260": { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit eighteen times. ", + "name": "DSGN 260", + "prereqs": [], + "title": "Advanced Topics in Design (4)" + }, + "DSGN 261": { + "dept": "DSGN", + "description": "Special topics in design. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ", + "name": "DSGN 261", + "prereqs": [], + "title": "Advanced Design Project (4)" + }, + "DSGN 299": { + "dept": "DSGN", + "description": "Students study, research, and implement project under the direction of a member of the faculty. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ", + "name": "DSGN 299", + "prereqs": [], + "title": "Independent Project (2 or 4)" + }, + "DSGN 90": { + "dept": "DSGN", + "description": "Special topics in design are discussed. P/NP grades only. May be taken for credit four times when topics vary.", + "name": "DSGN 90", + "prereqs": [], + "title": "Undergraduate Seminar (1)" + }, + "DSGN 99": { + "dept": "DSGN", + "description": "Independent literature or laboratory research by arrangement with and under direction of a design faculty member. P/NP grades only. May be taken for credit three times. ", + "name": "DSGN 99", + "prereqs": [], + "title": "Independent Study (2 or 4)" + }, + "ECE 100": { + "dept": "ECE", + "description": "Linear active circuit and system design. Topics include frequency response; use of Laplace transforms; design and stability of filters using operational amplifiers. Integrated lab and lecture involves analysis, design, simulation, and testing of circuits and systems. Program or materials fees may apply. ", + "name": "ECE 100", + "prereqs": [ + "ECE 45", + "ECE 65" + ], + "title": "Linear Electronic Systems (4)" + }, + "ECE 101": { + "dept": "ECE", + "description": "Complex variables. Singularities and residues. Signal and system analysis in continuous and discrete time. Fourier series and transforms. Laplace and z-transforms. Linear Time Invariant Systems. Impulse response, frequency response, and transfer functions. Poles and zeros. Stability. Convolution. Sampling. Aliasing. ", + "name": "ECE 101", + "prereqs": [ + "ECE 45" + ], + "title": "Linear Systems Fundamentals (4)" + }, + "ECE 102": { + "dept": "ECE", + "description": "Nonlinear active circuits design. Nonlinear device models for diodes, bipolar and field-effect transistors. Linearization of device models and small-signal equivalent circuits. Circuit designs will be simulated by computer and tested in the laboratory. ", + "name": "ECE 102", + "prereqs": [ + "ECE 65", + "ECE 100" + ], + "title": "Introduction to Active Circuit Design (4)" + }, + "ECE 103": { + "dept": "ECE", + "description": "Introduction to semiconductor materials and devices. Semiconductor crystal structure, energy bands, doping, carrier statistics, drift and diffusion, p-n junctions, metal-semiconductor junctions. Bipolar junction transistors: current flow, amplification, switching, nonideal behavior. Metal-oxide-semiconductor structures, MOSFETs, device scaling. ", + "name": "ECE 103", + "prereqs": [ + "PHYS 4E", + "PHYS 2D", + "ECE 65", + "PHYS 4D" + ], + "title": "Fundamentals of Devices and Materials (4)" + }, + "ECE 107": { + "dept": "ECE", + "description": "Electrostatics and magnetostatics; electrodynamics;", + "name": "ECE 107", + "prereqs": [], + "title": "Electromagnetism (4)" + }, + "ECE 108": { + "dept": "ECE", + "description": "A transistor-level view of digital integrated circuits. CMOS combinational logic, ratioed logic, noise margins, rise and fall delays, power dissipation, transmission gates. Short channel MOS model, effects on scaling. Sequential circuits, memory and array logic circuits. Three hours of lecture, one hour of discussion, three hours of laboratory. ", + "name": "ECE 108", + "prereqs": [ + "ECE 25", + "CSE 30", + "CSE 65", + "CSE 140", + "CSE 45", + "ECE 30" + ], + "title": "Digital Circuits (4)" + }, + "ECE 109": { + "dept": "ECE", + "description": "Axioms of probability, conditional probability,", + "name": "ECE 109", + "prereqs": [], + "title": "Engineering Probability and Statistics (4)" + }, + "ECE 111": { + "dept": "ECE", + "description": "Advanced topics in digital circuits and systems. Use of computers and design automation tools. Hazard elimination, synchronous/asynchronous FSM synthesis, synchronization and arbitration, pipelining and timing issues. Problem sets and design exercises. A large-scale design project. Simulation and/or rapid prototyping. ", + "name": "ECE 111", + "prereqs": [ + "CSE 140", + "ECE 25" + ], + "title": "Advanced Digital Design Project (4)" + }, + "ECE 115": { + "dept": "ECE", + "description": "Lab-based course. Students will learn how to prototype a mechatronic solution. Topics include: cheap/accessible materials and parts; suppliers; fast prototyping techniques; useful electronic sketches and system integration shortcuts. Students will learn to materialize their electromechanical ideas and make design decisions to minimize cost, improve functionality/robustness. Labs will culminate toward a fully functional robot prototype for demonstration. ", + "name": "ECE 115", + "prereqs": [ + "ECE 16" + ], + "title": "Fast Prototyping (4)" + }, + "ECE 118": { + "dept": "ECE", + "description": "Interfacing computers and embedded controllers", + "name": "ECE 118", + "prereqs": [], + "title": "Computer Interfacing (4)" + }, + "ECE 120": { + "dept": "ECE", + "description": "General introduction to planetary bodies,", + "name": "ECE 120", + "prereqs": [], + "title": "Solar System Physics (4)" + }, + "ECE 121A": { + "dept": "ECE", + "description": "This course introduces concepts of large-scale power system analysis: electric power generation, distribution, steady-state analysis and economic operation. It provides the fundamentals for advanced courses and engineering practice on electric power systems, smart grid, and electricity economics. The course requires implementing some of the computational techniques in simulation software. ", + "name": "ECE 121A", + "prereqs": [ + "ECE 35" + ], + "title": "Power Systems Analysis and Fundamentals (4)" + }, + "ECE 121B": { + "dept": "ECE", + "description": "Principles of electro-mechanical energy conversion, balanced three-phase systems, fundamental concepts of magnetic circuits, single-phase transformers, and the steady-state performance of DC and induction machines. Students may not receive credit for both ECE 121B and ECE 121. ", + "name": "ECE 121B", + "prereqs": [ + "ECE 121A" + ], + "title": "Energy Conversion (4)" + }, + "ECE 123": { + "dept": "ECE", + "description": "The electromagnetic and systems engineering of radio antennas for terrestrial wireless and satellite communications. Antenna impedance, beam pattern, gain, and polarization. Dipoles, monopoles, paraboloids, phased arrays. Power and noise budgets for communication links. Atmospheric propagation and multipath. ", + "name": "ECE 123", + "prereqs": [ + "ECE 107" + ], + "title": "Antenna Systems Engineering (4)" + }, + "ECE 125A": { + "dept": "ECE", + "description": "Power generation, system, and electronics. Topics include power semiconductor devices and characteristics, single-phase and three-phase half and full controlled AC-to-DC rectifiers, nonisolated/isolated DC-DC converters, power loss calculation, and thermal considerations, Snubber circuits. ", + "name": "ECE 125A", + "prereqs": [ + "ECE 121A" + ], + "title": "Introduction to Power Electronics I (4)" + }, + "ECE 125B": { + "dept": "ECE", + "description": "Design and control of DC-DC converters, PWM rectifiers, single-phase and three-phase inverters, power management, and power electronics applications in renewable energy systems, motion control, and lighting. ", + "name": "ECE 125B", + "prereqs": [ + "ECE 125A" + ], + "title": "Introduction to Power Electronics II (4)" + }, + "ECE 134": { + "dept": "ECE", + "description": "Materials Science of Integrated Circuits (4)", + "name": "ECE 134", + "prereqs": [], + "title": "Electronic" + }, + "ECE 135A": { + "dept": "ECE", + "description": "Crystal structure and quantum theory of solids; electronic band structure; review of carrier statistics, drift and diffusion, p-n junctions; nonequilibrium carriers, imrefs, traps, recombination, etc; metal-semiconductor junctions and heterojunctions. ", + "name": "ECE 135A", + "prereqs": [ + "ECE 103" + ], + "title": "Semiconductor Physics (4)" + }, + "ECE 135B": { + "dept": "ECE", + "description": "Structure and operation of bipolar junction transistors, junction field-effect transistors, metal-oxide-semiconductor diodes and transistors. Analysis of dc and ac characteristics. Charge control model of dynamic behavior. ", + "name": "ECE 135B", + "prereqs": [ + "ECE 135A" + ], + "title": "Electronic Devices (4)" + }, + "ECE 136L": { + "dept": "ECE", + "description": "Laboratory fabrication of diodes and field effect transistors covering photolithography, oxidation, diffusion, thin film deposition, etching and evaluation of devices. (Course materials and/or program fees may apply.) ", + "name": "ECE 136L", + "prereqs": [ + "ECE 103" + ], + "title": "Microelectronics Laboratory (4)" + }, + "ECE 138L": { + "dept": "ECE", + "description": "Processing Technology Laboratory (4)", + "name": "ECE 138L", + "prereqs": [], + "title": "Microstructuring" + }, + "ECE 140A": { + "dept": "ECE", + "description": "Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ", + "name": "ECE 140A", + "prereqs": [ + "CSE 11", + "ECE 15", + "CSE 8B" + ], + "title": "The Art of Product Engineering I (4)" + }, + "ECE 140B": { + "dept": "ECE", + "description": "Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ", + "name": "ECE 140B", + "prereqs": [ + "ECE 140A" + ], + "title": "The Art of Product Engineering II (4)" + }, + "ECE 143": { + "dept": "ECE", + "description": "This course covers the fundamentals of using the Python language effectively for data analysis. Students learn the underlying mechanics and implementation specifics of Python and how to effectively utilize the many built-in data structures and algorithms. The course introduces key modules for data analysis such as Numpy, Pandas, and Matplotlib. Participants learn to leverage and navigate the vast Python ecosystem to find codes and communities of individual interest. ", + "name": "ECE 143", + "prereqs": [ + "ECE 16" + ], + "title": "Programming for Data Analysis (4)" + }, + "ECE 144": { + "dept": "ECE", + "description": "Develop, debug, and test LabVIEW VIs, solve problems using LabVIEW, use data acquisition, and perform signal processing and instrument control in LabVIEW applications. Groups of students will build an elevator system from laser-cut and 3-D printed parts; integrate sensors, motors, and servos; and program using state-machine architecture in LabVIEW. Students will have the opportunity to take the National Instruments Certified LabVIEW Associate Developer (CLAD) exam at the end of the quarter. Program or materials fees may apply. ", + "name": "ECE 144", + "prereqs": [ + "CSE 11", + "ECE 15", + "CSE 8B" + ], + "title": "LabVIEW Programming: Design and Applications (4)" + }, + "ECE 145AL-BL-CL": { + "dept": "ECE", + "description": "Automated laboratory based on H-P GPIB controlled", + "name": "ECE 145AL-BL-CL", + "prereqs": [], + "title": "Acoustics Laboratory (4-4-4)" + }, + "ECE 148": { + "dept": "ECE", + "description": "Fundamentals of autonomous vehicles. Working in small teams, students will develop 1:8 scale autonomous cars that must perform on a simulated city track. Topics include: robotics system integration, computer vision, algorithms for navigation, on-vehicle vs. off-vehicle computation, computer learning systems such as neural networks, locomotion systems, vehicle steering, dead reckoning, odometry, sensor fusion, GPS auto-pilot limitations, wiring, and power distribution and management. Cross-listed with MAE 148. Students may not receive credit for ECE 148 and MAE 148. Program or materials fees may apply. ", + "name": "ECE 148", + "prereqs": [ + "MAE 2", + "MAE 3", + "ECE 15", + "ECE 35" + ], + "title": "Introduction to Autonomous Vehicles (4)" + }, + "ECE 15": { + "dept": "ECE", + "description": "Students learn the C programming language with an emphasis on high-performance numerical computation. The commonality across programming languages of control structures, data structures, and I/O is also covered. Techniques for using Matlab to graph the results of C computations are developed. ", + "name": "ECE 15", + "prereqs": [], + "title": "Engineering Computation (4)" + }, + "ECE 153": { + "dept": "ECE", + "description": "and Random Processes for Engineers (4)", + "name": "ECE 153", + "prereqs": [], + "title": "Probability" + }, + "ECE 154A": { + "dept": "ECE", + "description": "Study of analog modulation systems including AM, SSB, DSB, VSB, FM, and PM. Performance analysis of both coherent and noncoherent receivers, including threshold effects in FM. ", + "name": "ECE 154A", + "prereqs": [ + "ECE 153", + "ECE 101" + ], + "title": "Communications Systems I (4)" + }, + "ECE 154B": { + "dept": "ECE", + "description": "Design and performance analysis of digital modulation techniques, including probability of error results for PSK, DPSK, and FSK. Introduction to effects of intersymbol interference and fading. Detection and estimation theory, including optimal receiver design and maximum-likelihood parameter estimation. ", + "name": "ECE 154B", + "prereqs": [ + "ECE 154A" + ], + "title": "Communications Systems II (4)" + }, + "ECE 154C": { + "dept": "ECE", + "description": "Introduction to information theory and coding, including entropy, average mutual information, channel capacity, block codes and convolutional codes. ", + "name": "ECE 154C", + "prereqs": [ + "ECE 154B" + ], + "title": "Communications Systems III (4)" + }, + "ECE 156": { + "dept": "ECE", + "description": "Characteristics of chemical, biological, seismic, and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust sensor fabrics; current experience with low power, low cost sensor deployments. Undergraduate students must take a final exam; graduate students must write a term paper or complete a final project. Cross-listed with MAE 149 and SIO 238. ", + "name": "ECE 156", + "prereqs": [], + "title": "Sensor Networks (4)" + }, + "ECE 157A": { + "dept": "ECE", + "description": "Experiments in the modulation and demodulation of baseband and passband signals. Statistical characterization of signals and impairments. (Course materials and/or program fees may apply.) ", + "name": "ECE 157A", + "prereqs": [ + "ECE 154A" + ], + "title": "Communications Systems Laboratory I (4)" + }, + "ECE 157B": { + "dept": "ECE", + "description": "Advanced projects in communication systems. Students will plan and implement design projects in the laboratory, updating progress weekly and making plan/design adjustments based upon feedback. (Course materials and/or program fees may apply.) ", + "name": "ECE 157B", + "prereqs": [ + "ECE 154A" + ], + "title": "Communications Systems Laboratory II (4)" + }, + "ECE 158A": { + "dept": "ECE", + "description": "Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ", + "name": "ECE 158A", + "prereqs": [ + "ECE 109" + ], + "title": "Data Networks I (4)" + }, + "ECE 158B": { + "dept": "ECE", + "description": "Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ", + "name": "ECE 158B", + "prereqs": [ + "ECE 158A" + ], + "title": "Data Networks II (4)" + }, + "ECE 16": { + "dept": "ECE", + "description": "Students are introduced to embedded systems concepts with structured development of a computer controller based on electromyogram (EMG) signals through four lab assignments through the quarter. Key concepts include: sampling, signal processing, communication, and real-time control. Students will apply their prior knowledge in C (from ECE15) to program microcontrollers and will engage in data analysis using the Python programming language. ", + "name": "ECE 16", + "prereqs": [ + "CSE 11", + "MAE 8", + "ECE 15", + "CSE 8B" + ], + "title": "Rapid Hardware and Software Design for Interfacing with the World (4)" + }, + "ECE 161A": { + "dept": "ECE", + "description": "Review of discrete-time systems and signals, Discrete-Time Fourier Transform and its properties, the Fast Fourier Transform, design of Finite Impulse Response (FIR) and Infinite Impulse Response (IIR) filters, implementation of digital filters. ", + "name": "ECE 161A", + "prereqs": [ + "ECE 101" + ], + "title": "Introduction to Digital Signal Processing (4)" + }, + "ECE 161B": { + "dept": "ECE", + "description": "Sampling and quantization of baseband signals;", + "name": "ECE 161B", + "prereqs": [], + "title": "Digital Signal Processing I (4)" + }, + "ECE 163": { + "dept": "ECE", + "description": "Analysis and design of analog circuits and systems. Feedback systems with applications to operational amplifier circuits. Stability, sensitivity, bandwidth, compensation. Design of active filters. Switched capacitor circuits. Phase-locked loops. Analog-to-digital and digital-to-analog conversion. (Course materials and/or program fees may apply.) ", + "name": "ECE 163", + "prereqs": [ + "ECE 102", + "ECE 101" + ], + "title": "Electronic Circuits and Systems (4)" + }, + "ECE 164": { + "dept": "ECE", + "description": "Design of linear and nonlinear analog integrated circuits including operational amplifiers, voltage regulators, drivers, power stages, oscillators, and multipliers. Use of feedback and evaluation of noise performance. Parasitic effects of integrated circuit technology. Laboratory simulation and testing of circuits. ", + "name": "ECE 164", + "prereqs": [ + "ECE 102", + "ECE 163" + ], + "title": "Analog Integrated Circuit Design (4)" + }, + "ECE 165": { + "dept": "ECE", + "description": "VLSI digital systems. Circuit characterization, performance estimation, and optimization. Circuits for alternative logic styles and clocking schemes. Subsystems include ALUs, memory, processor arrays, and PLAs. Techniques for gate arrays, standard cell, and custom design. Design and simulation using CAD tools. ", + "name": "ECE 165", + "prereqs": [ + "ECE 102" + ], + "title": "Digital Integrated Circuit Design (4)" + }, + "ECE 166": { + "dept": "ECE", + "description": "Waves, distributed circuits, and scattering", + "name": "ECE 166", + "prereqs": [], + "title": "Microwave Systems and Circuits (4)" + }, + "ECE 171A": { + "dept": "ECE", + "description": "Stability of continuous- and discrete-time", + "name": "ECE 171A", + "prereqs": [], + "title": "Linear Control System Theory (4)" + }, + "ECE 171B": { + "dept": "ECE", + "description": "Time-domain, state-variable formulation of", + "name": "ECE 171B", + "prereqs": [], + "title": "Linear Control System Theory (4)" + }, + "ECE 172A": { + "dept": "ECE", + "description": "This course will introduce basic concepts", + "name": "ECE 172A", + "prereqs": [], + "title": "Introduction to Intelligent Systems: Robotics and Machine Intelligence (4)" + }, + "ECE 174": { + "dept": "ECE", + "description": "The linear least squares problem, including constrained and unconstrained quadratic optimization and the relationship to the geometry of linear transformations. Introduction to nonlinear optimization. Applications to signal processing, system identification, robotics, and circuit design. Recommended preparation: ECE 100. ", + "name": "ECE 174", + "prereqs": [ + "ECE 15", + "MATH 18", + "MATH 20F", + "ECE 109" + ], + "title": "Introduction to Linear and Nonlinear Optimization with Applications (4)" + }, + "ECE 175A": { + "dept": "ECE", + "description": "Introduction to pattern recognition and machine", + "name": "ECE 175A", + "prereqs": [], + "title": "Elements of Machine Intelligence: Pattern Recognition and Machine Learning (4)" + }, + "ECE 175B": { + "dept": "ECE", + "description": "Bayes\u2019 rule as a probabilistic reasoning engine; graphical models as knowledge encoders; conditional independence and D-Separation; Markov random fields; inference in graphical models; sampling methods and Markov Chain Monte Carlo (MCMC); sequential data and the Viterbi and BCJR algorithms; The Baum-Welsh algorithm for Markov Chain parameter estimation. ", + "name": "ECE 175B", + "prereqs": [ + "ECE 175A" + ], + "title": "Elements of Machine Intelligence: Probabilistic Reasoning and Graphical Models (4)" + }, + "ECE 180": { + "dept": "ECE", + "description": "Topics of special interest in electrical and computer engineering. Subject matter will not be repeated so it may be taken for credit more than once. ", + "name": "ECE 180", + "prereqs": [], + "title": "Topics in Electrical and Computer Engineering (4)" + }, + "ECE 181": { + "dept": "ECE", + "description": "Ray optics, wave optics, beam optics, Fourier optics, and electromagnetic optics. Ray transfer matrix, matrices of cascaded optics, numerical apertures of step and graded index fibers. Fresnel and Fraunhofer diffractions, interference of waves. Gaussian and Bessel beams, the ABCD law for transmissions through arbitrary optical systems. Spatial frequency, impulse response and transfer function of optical systems, Fourier transform and imaging properties of lenses, holography. Wave propagation in various (inhomogeneous, dispersive, anisotropic or nonlinear) media. (Course materials and/or program fees may apply.) ", + "name": "ECE 181", + "prereqs": [ + "ECE 107", + "ECE 103" + ], + "title": "Physical Optics and Fourier Optics (4)" + }, + "ECE 182": { + "dept": "ECE", + "description": "Optics, Guided-Wave, and Fiber Optics (4)", + "name": "ECE 182", + "prereqs": [], + "title": "Electromagnetic" + }, + "ECE 183": { + "dept": "ECE", + "description": "Quantum electronics, interaction of light and matter in atomic systems, semiconductors. Laser amplifiers and laser systems. Photodetection. Electrooptics and acoustooptics, photonic switching. Fiber optic communication systems. Labs: semiconductor lasers, semiconductor photodetectors. (Course materials and/or program fees may apply.) ", + "name": "ECE 183", + "prereqs": [ + "ECE 107", + "ECE 103" + ], + "title": "Optical Electronics (4)" + }, + "ECE 184": { + "dept": "ECE", + "description": "Processing and Holography (4)", + "name": "ECE 184", + "prereqs": [], + "title": "Optical Information" + }, + "ECE 185": { + "dept": "ECE", + "description": "(Conjoined with ECE 241BL) Labs: CO2 laser,", + "name": "ECE 185", + "prereqs": [], + "title": "Lasers and Modulators (4)" + }, + "ECE 187": { + "dept": "ECE", + "description": "to Biomedical Imaging and Sensing (4)", + "name": "ECE 187", + "prereqs": [], + "title": "Introduction" + }, + "ECE 188": { + "dept": "ECE", + "description": "Topics of special interest in electrical and computer engineering with laboratory. Subject matter will not be repeated so it may be taken for credit up to three times. ", + "name": "ECE 188", + "prereqs": [], + "title": "Topics in Electrical and Computer Engineering with Laboratory (4)" + }, + "ECE 189": { + "dept": "ECE", + "description": "Basics of technical public speaking, including speech organization, body language (eye contact, hand gestures, etc.), volume and rate, and design of technical slides. Students will practice technical public speaking, including speeches with PowerPoint slides and speaker introductions, and presenting impromptu speeches. Students may not receive credit for both ECE 189 and ENG 100E. ", + "name": "ECE 189", + "prereqs": [], + "title": "Technical Public Speaking (2)" + }, + "ECE 190": { + "dept": "ECE", + "description": "Students complete a project comprising at least 50 percent or more engineering design to satisfy the following features: student creativity, open-ended formulation of a problem statement/specifications, consideration of alternative solutions/realistic constraints. Written final report required. ", + "name": "ECE 190", + "prereqs": [ + "ECE 190" + ], + "title": "Engineering Design (4)" + }, + "ECE 191": { + "dept": "ECE", + "description": "Groups of students work to design, build,", + "name": "ECE 191", + "prereqs": [], + "title": "Engineering Group Design Project (4)" + }, + "ECE 193H": { + "dept": "ECE", + "description": "An advanced reading or research project performed under the direction of an ECE faculty member. Must contain enough design to satisfy the ECE program\u2019s four-unit design requirement. Must be taken for a letter grade. May extend over two quarters with a grade assigned at completion for both quarters. ", + "name": "ECE 193H", + "prereqs": [], + "title": "Honors Project (4\u20138)" + }, + "ECE 194": { + "dept": "ECE", + "description": "Students design, build, and race an autonomous car using principles in electrical engineering and computer science: circuit design, control theory, digital signal processing, embedded systems, microcontrollers, electromagnetism, and programming. ", + "name": "ECE 194", + "prereqs": [], + "title": "Viacar Design Project (4)" + }, + "ECE 195": { + "dept": "ECE", + "description": "Teaching and tutorial activities associated with courses and seminars. Not more than four units of ECE 195 may be used for satisfying graduation requirements. (P/NP grades only.) ", + "name": "ECE 195", + "prereqs": [], + "title": "Teaching (2 or 4)" + }, + "ECE 196": { + "dept": "ECE", + "description": "Groups of students work to build and demonstrate at least three engineering projects at the beginning, intermediate, and advanced levels. The final project consists of either a new project designed by the student team or extension of an existing project. The student teams also prepare a manual as part of their documentation of the final project. May be taken for credit two times. ", + "name": "ECE 196", + "prereqs": [], + "title": "Engineering Hands-on Group Project (4)" + }, + "ECE 197": { + "dept": "ECE", + "description": "Directed study and research at laboratories and observatories away from the campus. (P/NP grades only.) ", + "name": "ECE 197", + "prereqs": [], + "title": "Field Study in Electrical and Computer Engineering (4, 8, 12, or 16)" + }, + "ECE 198": { + "dept": "ECE", + "description": "Topics in electrical and computer engineering whose study involves reading and discussion by a small group of students under direction of a faculty member. (P/NP grades only.) ", + "name": "ECE 198", + "prereqs": [], + "title": "Directed Group Study (2 or 4)" + }, + "ECE 199": { + "dept": "ECE", + "description": "Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ", + "name": "ECE 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (2 or 4)" + }, + "ECE 200": { + "dept": "ECE", + "description": "Group discussion of research activities and progress of group members. (Consent of instructor is strongly recommended.) (S/U grades only.) ", + "name": "ECE 200", + "prereqs": [], + "title": "Research Conference (2)" + }, + "ECE 201": { + "dept": "ECE", + "description": "The class will cover fundamental physical principles of biological processes at the molecular, cellular, tissue and organ levels that are related to human physiology and diseases. Topics include energetics and dynamics of biological systems, physical factors of environment, and the kinetics of biological systems. ", + "name": "ECE 201", + "prereqs": [], + "title": "Introduction to Biophysics (4)" + }, + "ECE 202": { + "dept": "ECE", + "description": "This course will cover basic cellular and electrochemical processes, membrane potentials, ionic currents, nerve cell conductance, extracellular and intracellular stimulation, neural probe technology materials and devices, diagnostic and drug delivery devices, material/physiological considerations, biosensors, microfluids, optical, magnetic and electrical screening. ", + "name": "ECE 202", + "prereqs": [], + "title": "Medical Devices and Interfaces (4)" + }, + "ECE 203": { + "dept": "ECE", + "description": "Integrated circuit analysis and design for medical devices. Introduction to subthreshold conduction in MOS transistor and its similarities to biomolecular transport. Design of instrumentation amplifiers, sensors, and electrical stimulation interfaces. Transcutaneous wireless power transfer and electromagnetic effects on tissue. Recommended preparation: ECE 164 or BENG 186B or equivalent. ", + "name": "ECE 203", + "prereqs": [], + "title": "Biomedical Integrated Circuits and Systems (4)" + }, + "ECE 204": { + "dept": "ECE", + "description": "A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BNFO 285 and ECE 204 and BENG 285. Cross-listed with BNFO 285 and BENG 285. ", + "name": "ECE 204", + "prereqs": [ + "ECE 271A", + "ECE 271B", + "MATH 283" + ], + "title": "Statistical Learning in Bioinformatics (4)" + }, + "ECE 207": { + "dept": "ECE", + "description": "Fundamentals of Fourier transform and linear systems theory including convolution, sampling, noise, filtering, image reconstruction, and visualization with an emphasis on applications to biomedical imaging. Examples from optical imaging, CT, MR, ultrasound, nuclear, PET, and radiography. ", + "name": "ECE 207", + "prereqs": [], + "title": "Principles of Biomedical Imaging (4)" + }, + "ECE 208": { + "dept": "ECE", + "description": "Evolutionary biology (e.g., the study of the tree of life) uses computational methods from statistics and machine learning. We cover methods of broad use in many fields and apply them to biology, focusing on scalability to big genomic data. Topics include dynamic programming, continuous time Markov models, hidden Markov models, statistical inference of phylogenies, sequence alignment, uncertainty (e.g., bootstrapping), and heterogeneity (e.g., phylogenetic mixture models). ", + "name": "ECE 208", + "prereqs": [], + "title": "Computational Evolutionary Biology (4)" + }, + "ECE 212AN": { + "dept": "ECE", + "description": "of Nanoscience and Nanotechnology (4)", + "name": "ECE 212AN", + "prereqs": [], + "title": "Principles" + }, + "ECE 212BN": { + "dept": "ECE", + "description": "Quantum states and quantum transport of electrons;", + "name": "ECE 212BN", + "prereqs": [], + "title": "Nanoelectronics (4)" + }, + "ECE 212CN": { + "dept": "ECE", + "description": "Photonic properties of artificially engineered", + "name": "ECE 212CN", + "prereqs": [], + "title": "Nanophotonics (4)" + }, + "ECE 221": { + "dept": "ECE", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. ", + "name": "ECE 221", + "prereqs": [], + "title": "Magnetic Materials: Principles and Applications (4)" + }, + "ECE 222A": { + "dept": "ECE", + "description": "Antennas, waves, polarization. Friis transmission and Radar equations, dipoles, loops, slots, ground planes, traveling wave antennas, array theory, phased arrays, impedance, frequency independent antennas, microstrip antennas, cell phone antennas, system level implications such as MIMO, multi-beam and phased array systems. (Recommended prerequisites: ECE107 or an equivalent undergraduate course in electromagnetics.) ", + "name": "ECE 222A", + "prereqs": [], + "title": "Antennas and Their System Applications (4)" + }, + "ECE 222B": { + "dept": "ECE", + "description": "Electromagnetic Theory\u2014Electromagnetics (4)", + "name": "ECE 222B", + "prereqs": [], + "title": "Applied" + }, + "ECE 222C": { + "dept": "ECE", + "description": "Computational techniques for numerical analysis", + "name": "ECE 222C", + "prereqs": [], + "title": "Applied Electromagnetic Theory\u2014Computational Methods for Electromagnetics (4)" + }, + "ECE 222D": { + "dept": "ECE", + "description": "Review of 222A\u2013B. Fourier transform, waveguide", + "name": "ECE 222D", + "prereqs": [], + "title": "Advanced Antenna Design (4)" + }, + "ECE 225A": { + "dept": "ECE", + "description": "The course reinforces students\u2019 intuitive, theoretical, and computational understanding of probability and statistics, and builds on these foundations to introduce more advanced concepts useful in both data science research and practice. The following topics will be covered: basics, convergence, estimation, and hypothesis testing. Python programs, examples, and visualizations will be used throughout the course. ", + "name": "ECE 225A", + "prereqs": [], + "title": "Probability and Statistics for Data Science (4)" + }, + "ECE 225B": { + "dept": "ECE", + "description": "In many data science problems, there is only limited information on statistical properties of the data. This course develops the concept of universal probability that can be used as a proxy for the unknown distribution of data and provides a unified framework for several data science problems, including compression, portfolio selection, prediction, and classification. ", + "name": "ECE 225B", + "prereqs": [ + "ECE 250", + "ECE 225A" + ], + "title": "Universal Probability and Its Applications in Data Science (4)" + }, + "ECE 226": { + "dept": "ECE", + "description": "This course aims to present the mathematical and computational challenges for holistic content/algorithm/hardware codesign of an efficient deep learning framework. Participants will discuss selected topics including DNNs, CNNs, and RNNs in both supervised and unsupervised settings. Special emphasis will be on optimizing DL physical performance on different hardware platforms. The hardware platforms include CPU-CPU and CPU-GPU architectures. ", + "name": "ECE 226", + "prereqs": [ + "ECE 271A", + "ECE 250", + "ECE 269" + ], + "title": "Optimization and Acceleration of Deep Learning on Various Hardware Platforms (4)" + }, + "ECE 227": { + "dept": "ECE", + "description": "A course on network science driven by data analysis. The class will focus on both theoretical and empirical analysis performed on real data, including technological networks, social networks, information networks, biological networks, economic networks, and financial networks. Students will be exposed to a number of state-of-the-art software libraries for network data analysis and visualization via the Python notebook environment. Previous Python programming experience recommended. ", + "name": "ECE 227", + "prereqs": [], + "title": "Big Network Data (4)" + }, + "ECE 228": { + "dept": "ECE", + "description": "Machine learning has received enormous interest. To learn from data we use probability theory, which has been a mainstay of statistics and engineering for centuries. The class will focus on implementations for physical problems. Topics: Gaussian probabilities, linear models for regression, linear models for classification, neural networks, kernel methods, support vector machines, graphical models, mixture models, sampling methods, and sequential estimation.\u00a0", + "name": "ECE 228", + "prereqs": [], + "title": "Machine Learning for Physical Applications (4)" + }, + "ECE 230A": { + "dept": "ECE", + "description": "This course is designed to provide a general", + "name": "ECE 230A", + "prereqs": [], + "title": "Solid State Electronics I (4)" + }, + "ECE 230B": { + "dept": "ECE", + "description": "Physics of solid-state electronic devices, including p-n diodes, Schottky diodes, field-effect transistors, bipolar transistors, pnpn structures. Computer simulation of devices, scaling characteristics, high frequency performance, and circuit models. ", + "name": "ECE 230B", + "prereqs": [ + "ECE 230A" + ], + "title": "Solid State Electronics II (4)" + }, + "ECE 230C": { + "dept": "ECE", + "description": "This course is designed to provide a treatise of semiconductor devices based on solid state phenomena. Band structures carrier scattering and recombination processes and their influence on transport properties will be emphasized. (Recommended prerequisites: ECE 230A or equivalent.) ", + "name": "ECE 230C", + "prereqs": [ + "ECE 230B" + ], + "title": "Solid State Electronics III (4)" + }, + "ECE 235": { + "dept": "ECE", + "description": "This course covers modern research topics in sub-100 nm scale, state-of-the-art silicon VLSI devices. Starting with the fundamentals of CMOS scaling to nanometer dimensions, various advanced device and circuit concepts, including RF CMOS, low power CMOS, silicon memory, silicon-on-insulator, SiGe bipolar, strained silicon MOSFET\u2019s, etc. will be taught. The physics of nearballistic transport in an ultimately scaled 10 nm MOSFET will be discussed in light of the recently developed scattering theory. ", + "name": "ECE 235", + "prereqs": [], + "title": "Nanometer-Scale VLSI Devices (4)" + }, + "ECE 236A": { + "dept": "ECE", + "description": "This course covers the growth, characterization, and heterojunction properties of III-V compound semiconductors and group-IV heterostructures for the subsequent courses on electronic and photonic device applications. Topics include epitaxial growth techniques, electrical properties of heterojunctions, transport and optical properties of quantum wells and superlattices. ", + "name": "ECE 236A", + "prereqs": [ + "ECE 230A" + ], + "title": "III-V Compound Semiconductor Materials (4)" + }, + "ECE 236B": { + "dept": "ECE", + "description": "Absorption and emission of radiation in semiconductors. Radiative transition and nonradiative recombination. Laser, modulators, and photodetector devices will be discussed. (Recommended prerequisites: ECE 230A and ECE 230C or equivalent.) ", + "name": "ECE 236B", + "prereqs": [ + "ECE 236A" + ], + "title": "Optical Processes in Semiconductors (4)" + }, + "ECE 236C": { + "dept": "ECE", + "description": "The physics and circuit applications of heterojunction field effect transistors (HFETs) and heterojunction bipolar transistors (HBTs). Operating principles of FETs and BJTs are reviewed, and opportunities for improving their performance with suitable material choices and bandgap engineering are highlighted. SiGe and III-V HBTs, III-V FETs, and current research areas are covered. Microwave characteristics, models and representative circuit applications. Students who have already completed ECE 236C and/or D should not enroll in this course. Recommended preparation: ECE 230B or equivalent course with emphasis on physics of solid-state electronic devices. ", + "name": "ECE 236C", + "prereqs": [ + "ECE 236B" + ], + "title": "Heterojunction Field Effect Transistors (4)" + }, + "ECE 238A": { + "dept": "ECE", + "description": "The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. Cross-listed with Materials Science 201A and MAE 271A. ", + "name": "ECE 238A", + "prereqs": [], + "title": "Thermodynamics of Solids (4)" + }, + "ECE 238B": { + "dept": "ECE", + "description": "Thermally activated processes. Boltzman factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick\u2019s law, diffusion mechanisms, Kirkendall effects, Boltzmann-Manato analysis, high diffusivity paths. Cross-listed with Materials Science 201B and MAE 271B. ", + "name": "ECE 238B", + "prereqs": [ + "ECE 238A" + ], + "title": "Solid State Diffusion and Reaction Kinetics (4)" + }, + "ECE 240A": { + "dept": "ECE", + "description": "Fresnel and Fraunhofer diffraction theory. Optical resonators, interferometry. Gaussian beam propagation and transformation. Laser oscillation and amplification, Q-switching and mode locking of lasers, some specific laser systems. (Recommended prerequisites: ECE 107 and ECE 182 or equivalent, introductory quantum mechanics or ECE 183.) ", + "name": "ECE 240A", + "prereqs": [], + "title": "Lasers and Optics (4)" + }, + "ECE 240B": { + "dept": "ECE", + "description": "Space-bandwidth product, superresolution, space-variant optical system, partial coherence, image processing with coherent and incoherent light, processing with feedback, real-time light modulators for hybrid processing, nonlinear processing. Optical computing and other applications. (Recommended prerequisites: ECE 182 or equivalent.) ", + "name": "ECE 240B", + "prereqs": [ + "ECE 240A" + ], + "title": "Optical Information Processing (4)" + }, + "ECE 240C": { + "dept": "ECE", + "description": "Propagation of waves and rays in anisotropic media. Electro-optical switching and modulation. Acousto-optical deflection and modulation. Detection theory. Heterodyne detection, incoherent and coherent detection. (Recommended prerequisites: ECE 181, ECE 183 or equivalent.) ", + "name": "ECE 240C", + "prereqs": [ + "ECE 240B" + ], + "title": "Optical Modulation and Detection (4)" + }, + "ECE 241A": { + "dept": "ECE", + "description": "Second harmonic generation (color conversion), parametric amplification and oscillation, photorefractive effects and four-wave mixing, optical bistability; applications. (Recommended prerequisites: ECE 240A, C.) ", + "name": "ECE 241A", + "prereqs": [], + "title": "Nonlinear Optics (4)" + }, + "ECE 241B": { + "dept": "ECE", + "description": "Integrated photonic devices and components made using silicon, compound semiconductors, thin-film crystals, and dielectric materials. Design, analysis, and applications of components (e.g., waveguides, micro-resonators, couplers, modulators, lasers, and detectors) for use in communications, sensing, metrology, and other areas. ", + "name": "ECE 241B", + "prereqs": [ + "ECE 241A" + ], + "title": "Integrated Photonics (4)" + }, + "ECE 241C": { + "dept": "ECE", + "description": "Fresnel, Fraunhofer, and Fourier holography. Analysis of thin and volume holograms, reflection and transmission holograms, color and polarization holograms. Optically recorded and computer-generated holography. Applications to information storage, optical interconnects, 2-D and 3-D display, pattern recognition, and image processing. (Recommended prerequisites: ECE 182 or equivalent.) ", + "name": "ECE 241C", + "prereqs": [ + "ECE 241B" + ], + "title": "Holographic Optical Elements (4)" + }, + "ECE 243B": { + "dept": "ECE", + "description": "Optical fibers, waveguides, laser communication", + "name": "ECE 243B", + "prereqs": [], + "title": "Optical Fiber Communication (4)" + }, + "ECE 244A": { + "dept": "ECE", + "description": "Introduction to statistical phenomena in optics", + "name": "ECE 244A", + "prereqs": [], + "title": "Statistical Optics (4)" + }, + "ECE 247A": { + "dept": "ECE", + "description": "Basic physics and chemistry for the interaction of photons with matter, including both biological and synthetic materials; use of photonic radiation pressure for manipulation of objects and materials; advanced optoelectronic detection systems, devices and methods, including time resolved fluorescent and chemiluminescent methods, fluorescent energy transfer (FRET) techniques, quantum dots, and near-field optical techniques; underlying mechanisms of the light sensitive biological systems, including chloroplasts for photosynthetic energy conversion and the basis of vision processes. Cross-listed with BENG 247A and NANO 247A. ", + "name": "ECE 247A", + "prereqs": [], + "title": "Advanced BioPhotonics (4)" + }, + "ECE 247B": { + "dept": "ECE", + "description": "Topics to be covered will include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology used in microarrays and biosensor devices, and focus on problems related to making highly integrated devices (lab-on-a-chip, in-vivo biosensors, etc.) from heterogeneous materials and components. Cross-listed with BENG 247B and NANO 247B. ", + "name": "ECE 247B", + "prereqs": [], + "title": "BioElectronics (4)" + }, + "ECE 247C": { + "dept": "ECE", + "description": "Topics include: nanosensors and nanodevices for both clinical diagnostics and biowarfare (bioterror) agent detection; nanostructures for drug delivery; nanoarrays and nanodevices; use of nanoanalytical devices and systems; methods and techniques for modification or functionalization of nanoparticles and nanostructures with biological molecules; nanostructural aspects of fuel cells and bio-fuel cells; potential use of DNA and other biomolecules for computing and ultra-high-density data storage. Cross-listed with BENG 247C and NANO 247C. ", + "name": "ECE 247C", + "prereqs": [], + "title": "BioNanotechnology (4)" + }, + "ECE 25": { + "dept": "ECE", + "description": "This course emphasizes digital electronics. Principles introduced in lectures are used in laboratory assignments, which also serve to introduce experimental and design methods. Topics include Boolean algebra, combination and sequential logic, gates and their implementation in digital circuits. (Course materials and/or program fees may apply.) ", + "name": "ECE 25", + "prereqs": [], + "title": "Introduction to Digital Design (4)" + }, + "ECE 250": { + "dept": "ECE", + "description": "Random variables, probability distributions and densities, characteristic functions. Convergence in probability and in quadratic mean, Stochastic processes, stationarity. Processes with orthogonal and independent increments. Power spectrum and power spectral density. Stochastic integrals and derivatives. Spectral representation of wide sense stationary processes, harmonizable processes, moving average representations. (Recommended prerequisites: ECE 153.) ", + "name": "ECE 250", + "prereqs": [], + "title": "Random Processes (4)" + }, + "ECE 251A": { + "dept": "ECE", + "description": "Discrete random signals; conventional (FFT based) spectral estimation. Coherence and transfer function estimation; model-based spectral estimation; linear prediction and AR modeling. Levinson-Durbin algorithm and lattice filters, minimum variance spectrum estimation. Cross-listed with SIO 207B. SIO 207A is intended for graduate students who have not had an undergraduate course in DSP. (Recommended prerequisites: ECE 153 in addition to either ECE 161 or 161A and SIO 207A or equivalent background.) ", + "name": "ECE 251A", + "prereqs": [], + "title": "Digital Signal Processing I (4)" + }, + "ECE 251B": { + "dept": "ECE", + "description": "Adaptive filter theory, estimation errors", + "name": "ECE 251B", + "prereqs": [], + "title": "Digital Signal Processing II (4)" + }, + "ECE 251C": { + "dept": "ECE", + "description": "Fundamentals of multirate systems (Noble Identities, Polyphase representations), maximally decimated filter banks (QMF filters for 2-channels, M-channel perfect reconstruction systems), Paraunitary perfect reconstruction filter banks, the wavelet transform (Multiresolution, discrete wavelet transform, filter banks and wavelet). (Recommended prerequisites: ECE 161 or equivalent.) ", + "name": "ECE 251C", + "prereqs": [ + "ECE 251B" + ], + "title": "Filter Banks and Wavelets (4)" + }, + "ECE 251D": { + "dept": "ECE", + "description": "The coherent processing of data collected from sensors distributed in space for signal enhancement and noise rejection purposes or wavefield directionality estimation. Conventional and adaptive beamforming. Matched field processing. Sparse array design and processing techniques. Applications to acoustics, geophysics, and electromagnetics. Cross-listed with SIO 207D. (Recommended prerequisites: ECE 251A.) ", + "name": "ECE 251D", + "prereqs": [ + "SIO 207D", + "ECE 251D", + "ECE 251C", + "SIO 207C" + ], + "title": "Array Processing (4)" + }, + "ECE 252A": { + "dept": "ECE", + "description": "Speech signals, production and perception,", + "name": "ECE 252A", + "prereqs": [], + "title": "Speech Compression (4)" + }, + "ECE 252B": { + "dept": "ECE", + "description": "Signal analysis methods for recognition, dynamic", + "name": "ECE 252B", + "prereqs": [], + "title": "Speech Recognition (4)" + }, + "ECE 253": { + "dept": "ECE", + "description": "Image quantization and sampling, image transforms,", + "name": "ECE 253", + "prereqs": [], + "title": "Fundamentals of Digital Image Processing (4)" + }, + "ECE 254": { + "dept": "ECE", + "description": "Hypothesis testing, detection of signals in white and colored Gaussian noise; estimation of signal parameters, maximum-likelihood detection; resolution of signals; detection and estimation of stochastic signals; applications to radar, sonar, and communications. (Recommended prerequisites: ECE 153.) ", + "name": "ECE 254", + "prereqs": [], + "title": "Detection Theory (4)" + }, + "ECE 255A": { + "dept": "ECE", + "description": "Introduction to basic concepts, source coding theorems, capacity, noisy-channel coding theorem. (Recommended prerequisites: ECE 154A-B-C.) ", + "name": "ECE 255A", + "prereqs": [], + "title": "Information Theory (4)" + }, + "ECE 255B": { + "dept": "ECE", + "description": "Theory and practice of lossy source coding, vector quantization, predictive and differential encoding, universal coding, source-channel coding, asymptotic theory, speech and image applications. Students that have taken 255BN cannot take 255B for credit. (Recommended prerequisites: ECE 250, and 259A or 259AN) ", + "name": "ECE 255B", + "prereqs": [ + "ECE 255A" + ], + "title": "Source Coding (4)" + }, + "ECE 255C": { + "dept": "ECE", + "description": "The course aims to provide a broad coverage of key results, techniques, and open problems in network information theory. Topics include background (information measures and typical sequences, point-to-point communication) and single-hop networks (multiple access channels, degraded broadcast channels, interference channels, channels with state, general broadcast channels, Gaussian vector channels, distributed lossless source coding, source coding with side information). ", + "name": "ECE 255C", + "prereqs": [ + "ECE 255B", + "ECE 250" + ], + "title": "Network Information Theory (4)" + }, + "ECE 257A": { + "dept": "ECE", + "description": "Congestion control, convex programming and dual controller, fair end-end rate allocation, max-min fair vs. proportional fairness. Markov Chains and recurrence, Lyapunov-Foster theorem, rate stable switch scheduling, stable (back-pressure) routing versus minimum delay routing versus shortest path routing. ", + "name": "ECE 257A", + "prereqs": [], + "title": "Multiuser Communication Systems (4)" + }, + "ECE 257B": { + "dept": "ECE", + "description": "This course will focus on the principles, architectures, and analytical methodologies for design of multiuser wireless networks. Topics to be covered include cellular approaches, call processing, digital modulation, MIMO technology, broadband networks, ad-hoc networks, and wireless packet access. (Recommended prerequisites: ECE 159A and 154B, or equivalent.) ", + "name": "ECE 257B", + "prereqs": [ + "ECE 257A" + ], + "title": "Principles of Wireless Networks (4)" + }, + "ECE 257C": { + "dept": "ECE", + "description": "Elements of spatial point processes. Spatial", + "name": "ECE 257C", + "prereqs": [], + "title": "Stochastic Wireless Networks Models (4)" + }, + "ECE 258A\u2013B": { + "dept": "ECE", + "description": "Digital communication theory including performance of various modulation techniques, effects of inter-symbol interference, adaptive equalization, spread spectrum communication. ", + "name": "ECE 258A\u2013B", + "prereqs": [ + "ECE 154A", + "ECE 154C", + "ECE 154B", + "ECE 254" + ], + "title": "Digital Communication (4-4)" + }, + "ECE 259A": { + "dept": "ECE", + "description": "Fundamentals of block codes, introduction to groups, rings and finite fields, nonbinary codes, cyclic codes such as BCH and RS codes, decoding algorithms, applications. Students who have taken ECE 259AN may not receive credit for ECE 259A. ", + "name": "ECE 259A", + "prereqs": [], + "title": "Algebraic Coding (4)" + }, + "ECE 259B": { + "dept": "ECE", + "description": "Convolutional codes, maximum-likelihood (ML) decoding, maximum a-posteriori (MAP) decoding, parallel and serial concatenation architectures, turbo codes, repeat-accumulate (RA) codes, the turbo principle, turbo decoding, graph-based codes, message-passing decoding, low-density parity check codes, threshold analysis, applications. Students who have taken ECE 259BN may not receive credit for ECE 259B. (Recommended prerequisites: ECE 154A-B-C.) ", + "name": "ECE 259B", + "prereqs": [ + "ECE 259A" + ], + "title": "Probabilistic Coding (4)" + }, + "ECE 259C": { + "dept": "ECE", + "description": "Advanced topics in coding theory. Course contents vary by instructor. Example course topics: Coded-modulation for bandwidth-efficient data transmission; advanced algebraic and combinatorial coding theory; space-time coding for wireless communications; constrained coding for digital recording. Students who have taken ECE 259CN may not receive credit for ECE 259C. ", + "name": "ECE 259C", + "prereqs": [], + "title": "Advanced Topics in Coding (4)" + }, + "ECE 260A": { + "dept": "ECE", + "description": "System Algorithms and Architectures (4)", + "name": "ECE 260A", + "prereqs": [], + "title": "VLSI Digital" + }, + "ECE 260B": { + "dept": "ECE", + "description": "VLSI implementation methodology across block, circuit, and layout levels of abstraction. Circuit building blocks including embedded memory and clock distribution. Computer-aided design (synthesis, place-and-route, verification) and performance analyses, and small-group block implementation projects spanning RTL to tape-out using leading-edge EDA tools. Cross-listed with CSE 241A. (Recommended prerequisites: ECE 165.) ", + "name": "ECE 260B", + "prereqs": [], + "title": "VLSI Integrated Circuits and Systems Design (4)" + }, + "ECE 260C": { + "dept": "ECE", + "description": "Advanced topics in design practices and methodologies for modern system-on-chip design. Different design alternatives are introduced and analyzed. Advanced design tools are used to design a hardware-software system. Class discussion, participation, and presentations of projects and special topics assignments are emphasized. ", + "name": "ECE 260C", + "prereqs": [ + "ECE 260B" + ], + "title": "VLSI Advanced Topics (4)" + }, + "ECE 264A": { + "dept": "ECE", + "description": "Integrated Circuits and Systems I (4)", + "name": "ECE 264A", + "prereqs": [], + "title": "CMOS Analog" + }, + "ECE 264B": { + "dept": "ECE", + "description": "Integrated Circuits and Systems II (4)", + "name": "ECE 264B", + "prereqs": [], + "title": "CMOS Analog" + }, + "ECE 264C": { + "dept": "ECE", + "description": "Integrated Circuits and Systems III (4)", + "name": "ECE 264C", + "prereqs": [], + "title": "CMOS Analog" + }, + "ECE 264D": { + "dept": "ECE", + "description": "Integrated Circuits and Systems IV (4)", + "name": "ECE 264D", + "prereqs": [], + "title": "CMOS Analog" + }, + "ECE 265A": { + "dept": "ECE", + "description": "Introduction to noise and linearity concepts. System budgeting for optimum dynamic range. Frequency plan tradeoffs. Linearity analysis techniques. Down-conversion and up-conversion techniques. Modulation and demodulation. Microwave and RF system design communications. Current research topics in the field. ", + "name": "ECE 265A", + "prereqs": [ + "ECE 166" + ], + "title": "Communication Circuit Design I (4)" + }, + "ECE 265B": { + "dept": "ECE", + "description": "Radio frequency integrated circuits: low-noise amplifiers, AGCs, mixers, filters, voltage-controlled oscillators. BJT and CMOS technologies for radio frequency and microwave applications. Device modeling for radio frequency applications. Design and device tradeoffs of linearity, noise, power dissipation, and dynamic range. Current research topics in the field. ", + "name": "ECE 265B", + "prereqs": [ + "ECE 265A", + "ECE 166" + ], + "title": "Communication Circuit Design II (4)" + }, + "ECE 265C": { + "dept": "ECE", + "description": "Design of power amplifiers for mobile terminals and base-stations, with emphasis on high linearity and efficiency. After a discussion of classical designs (Class A, AB, B, C, D, E, F, and S), linearization procedures are presented and composite architectures (envelope tracking, EER, and Doherty) are covered. Familiarity with basic microwave design and communication system architecture is assumed. (Recommended prerequisites: ECE 166.) ", + "name": "ECE 265C", + "prereqs": [ + "ECE 265A" + ], + "title": "Power Amplifiers for Wireless Communications (4)" + }, + "ECE 267": { + "dept": "ECE", + "description": "Study of wireless networked systems from a system design perspective, covering the protocol stack from physical to network layer with a focus on energy. Topics include digital communications, networking and programming, and a basic knowledge of these is recommended. ", + "name": "ECE 267", + "prereqs": [], + "title": "Wireless Embedded and Networked Systems (4)" + }, + "ECE 268": { + "dept": "ECE", + "description": "The course gives an overview of areas of security and protection of modern hardware, embedded systems, and IoTs. Covers essential cryptographic methodologies and blocks required for building a secure system. Topics include low overhead security, physical and side-channel attacks, physical security primitives, physical security and proofs of presence, hardware-based secure program execution, scalable implementation of secure functions, emerging technologies, and rising threats. Recommended preparation: Programming in a standard programming language. Undergraduate level knowledge of the IC design flow and digital designs.\u00a0", + "name": "ECE 268", + "prereqs": [], + "title": "Security of Hardware Embedded Systems (4)" + }, + "ECE 269": { + "dept": "ECE", + "description": "This course will build mathematical foundations of linear algebraic techniques and justify their use in signal processing, communication, and machine learning. Topics include geometry of vector and Hilbert spaces, orthogonal projection, systems of linear equations and role of sparsity, eigenanalysis, Hermitian matrices and variational characterization, positive semidefinite matrices, singular value decomposition, and principal component analysis. ", + "name": "ECE 269", + "prereqs": [], + "title": "Linear Algebra and Application (4)" + }, + "ECE 271A": { + "dept": "ECE", + "description": "Bayesian decision theory; parameter estimation; maximum likelihood; the bias-variance trade-off; Bayesian estimation; the predictive distribution; conjugate and noninformative priors; dimensionality and dimensionality reduction; principal component analysis; Fisher\u2019s linear discriminant analysis; density estimation; parametric vs. kernel-based methods; expectation-maximization; applications. (Recommended prerequisites: ECE 109.) ", + "name": "ECE 271A", + "prereqs": [], + "title": "Statistical Learning I (4)" + }, + "ECE 271B": { + "dept": "ECE", + "description": "Linear discriminants; the Perceptron; the margin and large margin classifiers; learning theory; empirical vs. structural risk minimization; the VC dimension; kernel functions; reproducing kernel Hilbert spaces; regularization theory; Lagrangian optimization; duality theory; the support vector machine; boosting; Gaussian processes; applications. (Recommended prerequisites: ECE 109.) ", + "name": "ECE 271B", + "prereqs": [ + "ECE 271A" + ], + "title": "Statistical Learning II (4)" + }, + "ECE 271C": { + "dept": "ECE", + "description": "Foundations of deep learning. Deep learning architectures and learning algorithms. Feedforward, convolutional, and recurrent networks. Regularization. Applications to vision, speech, or text processing. ", + "name": "ECE 271C", + "prereqs": [ + "ECE 271A", + "ECE 271B" + ], + "title": "Deep Learning and Applications (4)" + }, + "ECE 272A": { + "dept": "ECE", + "description": "Diffusion equations, linear and nonlinear estimation and detection, random fields, optimization of stochastic dynamic systems, applications of stochastic optimization to problems. (Recommended prerequisites: ECE 250.) ", + "name": "ECE 272A", + "prereqs": [], + "title": "Stochastic Processes in Dynamic Systems I (4)" + }, + "ECE 272B": { + "dept": "ECE", + "description": "Continuous and discrete random processes, Markov models and hidden Markov models, Martingales, linear and nonlinear estimation. Applications in mathematical finance and real options. ", + "name": "ECE 272B", + "prereqs": [ + "ECE 272A" + ], + "title": "Stochastic Processes in Dynamic Systems II (4)" + }, + "ECE 273": { + "dept": "ECE", + "description": "This course covers some convex optimization", + "name": "ECE 273", + "prereqs": [], + "title": "Convex Optimization and Applications (4)" + }, + "ECE 275A": { + "dept": "ECE", + "description": "Linear least Squares (batch, recursive, total, sparse, pseudoinverse, QR, SVD); Statistical figures of merit (bias, consistency, Cramer-Rao lower-bound, efficiency); Maximum likelihood estimation (MLE); Sufficient statistics; Algorithms for computing the MLE including the Expectation Maximation (EM) algorithm. The problem of missing information; the problem of outliers. (Recommended prerequisites: ECE 109 and ECE 153.) ", + "name": "ECE 275A", + "prereqs": [], + "title": "Parameter Estimation I (4)" + }, + "ECE 275B": { + "dept": "ECE", + "description": "The Bayesian statistical framework; Parameter and state estimation of", + "name": "ECE 275B", + "prereqs": [], + "title": "Parameter Estimation II (4)" + }, + "ECE 276A": { + "dept": "ECE", + "description": "This course covers the mathematical fundamentals of Bayesian filtering and their application to sensing and estimation in mobile robotics. Topics include maximum likelihood estimation (MLE), expectation maximization (EM), Gaussian and particle filters, simultaneous localization and mapping (SLAM), visual features and optical flow, and hidden Markov models (HMM). ", + "name": "ECE 276A", + "prereqs": [], + "title": "Sensing and Estimation in Robotics (4)" + }, + "ECE 276B": { + "dept": "ECE", + "description": "This course covers optimal control and reinforcement learning fundamentals and their application to planning and decision-making in mobile robotics. Topics include Markov decision processes (MDP), Pontryagin\u2019s maximum principle, linear quadratic regulation (LQR), deterministic planning, value and policy iteration, and policy gradient methods. ", + "name": "ECE 276B", + "prereqs": [ + "ECE 276A" + ], + "title": "Planning and Learning in Robotics (4)" + }, + "ECE 276C": { + "dept": "ECE", + "description": "Course participants will explore new methods for robotics, particularly toward enabling robot manipulators in complex environments. This course is structured to rapidly consider the previous techniques in robot manipulation to date and explore methods in reinforcement learning to solve open problems in robot manipulation. Topics will review kinematics, dynamics, low-level control and motion planning, and machine learning approaches. ", + "name": "ECE 276C", + "prereqs": [ + "ECE 276A" + ], + "title": "Robot Reinforcement Learning (4)" + }, + "ECE 278": { + "dept": "ECE", + "description": "Mathematical topics covered in the ECE master\u2019s comprehensive exam including calculus, linear algebra and linear systems, and statistics and probability theory. ", + "name": "ECE 278", + "prereqs": [], + "title": "Mathematical Topics for the Master\u2019s Comprehensive Exam (2)" + }, + "ECE 279": { + "dept": "ECE", + "description": "A seminar course in which topics of special interest for electrical and computer engineering students will be presented. S/U grades only. May be taken for credit three times. ", + "name": "ECE 279", + "prereqs": [], + "title": "Special Seminar (2)" + }, + "ECE 280": { + "dept": "ECE", + "description": "in Electronic Devices and Materials/Applied Physics (4)", + "name": "ECE 280", + "prereqs": [], + "title": "Special Topics" + }, + "ECE 281": { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in nanoscience and nanotechnology will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "name": "ECE 281", + "prereqs": [], + "title": "Special Topics in Nanoscience/Nanotechnology (4)" + }, + "ECE 282": { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in photonics, optoelectronic materials, devices, systems, and applications will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "name": "ECE 282", + "prereqs": [], + "title": "Special Topics in Photonics/Applied Optics (4)" + }, + "ECE 283": { + "dept": "ECE", + "description": "in Electronic Circuits and Systems (4)", + "name": "ECE 283", + "prereqs": [], + "title": "Special Topics" + }, + "ECE 284": { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in computer engineering will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "name": "ECE 284", + "prereqs": [], + "title": "Special Topics in Computer Engineering (4)" + }, + "ECE 285": { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in signal and image processing or robotics and control systems will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "name": "ECE 285", + "prereqs": [], + "title": "Special Topics in Signal and Image Processing/Robotics and Control Systems (4)" + }, + "ECE 286": { + "dept": "ECE", + "description": "Class discusses both fundamental and state-of-the-art research topics in computational statistics and machine learning. Topics vary based upon current research and have included: nonparametric Bayesian models; sampling methods for inference in graphical models; Markov Chain Monte Carlo (MCMC) methods. ", + "name": "ECE 286", + "prereqs": [], + "title": "State-of-the-Art Topics in Computational Statistics and Machine Learning (4)" + }, + "ECE 287": { + "dept": "ECE", + "description": "in Communication Theory and Systems (4)", + "name": "ECE 287", + "prereqs": [], + "title": "Special Topics" + }, + "ECE 289": { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which general topics of interest in electrical and computer engineering will be presented by visiting or resident faculty members. May be taken for credit six times provided each course is a different topic. ", + "name": "ECE 289", + "prereqs": [], + "title": "Special Topics in Electrical and Computer Engineering (4)" + }, + "ECE 290": { + "dept": "ECE", + "description": "Weekly discussion of current research conducted", + "name": "ECE 290", + "prereqs": [], + "title": "Graduate Seminar on Current ECE Research (2)" + }, + "ECE 291": { + "dept": "ECE", + "description": "Engineering Design Project (4)", + "name": "ECE 291", + "prereqs": [], + "title": "Industry Sponsored" + }, + "ECE 293": { + "dept": "ECE", + "description": "in Communication Theory and Systems (2)", + "name": "ECE 293", + "prereqs": [], + "title": "Graduate Seminar" + }, + "ECE 294": { + "dept": "ECE", + "description": "in Electronic Devices and Materials/Applied Physics (2)", + "name": "ECE 294", + "prereqs": [], + "title": "Graduate Seminar" + }, + "ECE 295": { + "dept": "ECE", + "description": "Weekly discussion of research topics in signal and image processing of robotics and control systems. (S/U grades only.) ", + "name": "ECE 295", + "prereqs": [], + "title": "Graduate Seminar in Signal and Image Processing/Robotics and Control Systems (2)" + }, + "ECE 296": { + "dept": "ECE", + "description": "in Photonics/Applied Optics (2)", + "name": "ECE 296", + "prereqs": [], + "title": "Graduate Seminar" + }, + "ECE 297": { + "dept": "ECE", + "description": "Weekly discussion of current research topics in nanoscience and nanotechnology. (S/U grades only.) ", + "name": "ECE 297", + "prereqs": [], + "title": "Graduate Seminar in Nanoscience/Nanotechnology (2)" + }, + "ECE 298": { + "dept": "ECE", + "description": "Open to properly qualified graduate students", + "name": "ECE 298", + "prereqs": [], + "title": "Independent Study (1\u201316)" + }, + "ECE 299": { + "dept": "ECE", + "description": "(S/U grades only.)", + "name": "ECE 299", + "prereqs": [], + "title": "Research (1\u201316)" + }, + "ECE 30": { + "dept": "ECE", + "description": "The fundamentals of both the hardware and", + "name": "ECE 30", + "prereqs": [], + "title": "Introduction to Computer Engineering (4)" + }, + "ECE 35": { + "dept": "ECE", + "description": "Fundamental circuit theory concepts, Kirchoff\u2019s voltage and current laws, Thevenin\u2019s and Norton\u2019s theorems, loop and node analysis, time-varying signals, transient first order circuits, steady-state sinusoidal response. Math 20C and Phys 2B must be taken concurrently. Program or materials fees may apply. ", + "name": "ECE 35", + "prereqs": [ + "PHYS 2A", + "MATH 20A" + ], + "title": "Introduction to Analog Design (4)" + }, + "ECE 45": { + "dept": "ECE", + "description": "Steady-state circuit analysis, first and second order systems, Fourier Series and Transforms, time domain analysis, convolution, transient response, Laplace Transform, and filter design. ", + "name": "ECE 45", + "prereqs": [ + "ECE 35" + ], + "title": "Circuits and Systems (4)" + }, + "ECE 5": { + "dept": "ECE", + "description": "An introduction to electrical and computer engineering. Topics include circuit theory, assembly, and testing, embedded systems programming and debugging, transducer mechanisms and interfacing transducers, signals and systems theory, digital signal processing, and modular design techniques. ", + "name": "ECE 5", + "prereqs": [], + "title": "Introduction to Electrical and Computer Engineering (4)" + }, + "ECE 501": { + "dept": "ECE", + "description": "Teaching and tutorial activities associated with courses and seminars. Number of units for credit depends on number of hours devoted to class or section assistance. (S/U grades only.) ", + "name": "ECE 501", + "prereqs": [], + "title": "Teaching (1\u20134)" + }, + "ECE 65": { + "dept": "ECE", + "description": "Introduction to linear and nonlinear components and circuits. Topics will include: two terminal devices, bipolar and field-effect transistors, and large and small signal analysis of diode and transistor circuits. (Program or materials fees may apply.) ", + "name": "ECE 65", + "prereqs": [ + "ECE 35" + ], + "title": "Components and Circuits Laboratory (4)" + }, + "ECE 85": { + "dept": "ECE", + "description": "Topics include how devices such as iPods and iPhones generate, transmit, receive and process information (music, images, video, etc.), the relationship between technology and issues such as privacy and \u201cnet-neutrality,\u201d and current topics related to information technology. ", + "name": "ECE 85", + "prereqs": [], + "title": "iTunes 101: A Survey of Information Technology (4)" + }, + "ECE 87": { + "dept": "ECE", + "description": "The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "name": "ECE 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "ECE 90": { + "dept": "ECE", + "description": "This seminar class will provide a broad review of current research topics in both electrical engineering and computer engineering. Typical subject areas are signal processing, VLSI design, electronic materials and devices, radio astronomy, communications, and optical computing. ", + "name": "ECE 90", + "prereqs": [], + "title": "Undergraduate Seminar (1)" + }, + "ECON 1": { + "dept": "ECON", + "description": "Introduction to the study of the economic system. Course will introduce the standard economic models used to examine how individuals and firms make decisions in perfectly competitive markets, and how these decisions affect supply and demand in output markets.", + "name": "ECON 1", + "prereqs": [], + "title": "Principles of Microeconomics (4)" + }, + "ECON 100A": { + "dept": "ECON", + "description": "Economic analysis of household determination of the demand for goods and services, consumption/saving decisions, and the supply of labor. ", + "name": "ECON 100A", + "prereqs": [ + "ECON 1", + "MATH 10C", + "MATH 20C", + "MATH 31BH" + ], + "title": "Microeconomics A (4)" + }, + "ECON 100AH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100A or after successful completion of Econ 100A with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 100AH", + "prereqs": [], + "title": "Honors Microeconomics A (1)" + }, + "ECON 100B": { + "dept": "ECON", + "description": "Analysis of firms\u2019 production and costs, the supply of output and demand factors of production. Analysis of perfectly competitive markets. ", + "name": "ECON 100B", + "prereqs": [ + "ECON 100A" + ], + "title": "Microeconomics B (4)" + }, + "ECON 100BH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100B or after successful completion of Econ 100B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 100BH", + "prereqs": [], + "title": "Honors Microeconomics B (1)" + }, + "ECON 100C": { + "dept": "ECON", + "description": "Analysis of the effects of imperfect market structure, strategy, and imperfect information. ", + "name": "ECON 100C", + "prereqs": [ + "ECON 100B" + ], + "title": "Microeconomics C (4)" + }, + "ECON 100CH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100C or after successful completion of Econ 100C with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 100CH", + "prereqs": [], + "title": "Honors Microeconomics C (1)" + }, + "ECON 101": { + "dept": "ECON", + "description": "Examines theories of international trade in goods and services and relates the insights to empirical evidence. Explains international trade at the level of industries and firms and analyzes the consequences of trade for resource allocation, welfare, and the income distribution. Discusses sources of comparative advantage, motives for trade policies, and the effects of trade barriers and trading blocs on welfare and incomes. ", + "name": "ECON 101", + "prereqs": [ + "ECON 100B", + "ECON 102" + ], + "title": "International Trade (4)" + }, + "ECON 102": { + "dept": "ECON", + "description": "Presents theories of global economic integration, grounded in the principle of comparative advantage. Investigates patterns of trade when trade is balanced and capital flows when trade is not balanced. Assesses the consequences of global economic integration and economic policies for industry location, incomes, welfare and economic growth, and studies goods, services and sovereign debt markets. ", + "name": "ECON 102", + "prereqs": [ + "ECON 1", + "ECON 100B", + "ECON 3", + "ECON 2", + "MATH 20C" + ], + "title": "Globalization (4)" + }, + "ECON 102T": { + "dept": "ECON", + "description": "This course presents a selection of empirical applications and advanced topics that build on the material covered in Econ 102, Globalization. Students have the opportunity to analyze global trade and capital market data and to prepare a presentation and brief paper on a specific topic. ", + "name": "ECON 102T", + "prereqs": [ + "ECON 102" + ], + "title": "Advanced Topic in Globalization (2)" + }, + "ECON 103": { + "dept": "ECON", + "description": "Analyzes exchange rates and the current account. Relates their joint determination to financial markets and the real-side macroeconomy using international macroeconomic models and presents empirical regularities. Discusses macroeconomic policies under different exchange rate regimes and implications for financial stability and current account sustainability. ", + "name": "ECON 103", + "prereqs": [ + "ECON 110B", + "ECON 173A", + "ECON 102" + ], + "title": "International Monetary Relations (4)" + }, + "ECON 104": { + "dept": "ECON", + "description": "Economics of industries with network effects", + "name": "ECON 104", + "prereqs": [], + "title": "Economics of Network Industries (4)" + }, + "ECON 105": { + "dept": "ECON", + "description": "Theory of monopoly and oligopoly pricing, price discrimination, durable goods pricing, cartel behavior, price wars, strategic entry barriers, mergers, pro- and anti-competitive restraints on business. ", + "name": "ECON 105", + "prereqs": [ + "ECON 100C" + ], + "title": "Industrial Organization and Firm Strategy (4)" + }, + "ECON 106": { + "dept": "ECON", + "description": "Examines reasons for international economic agreements, their design, the strategic interactions that determine how the agreements are implemented and sustained, and consequences for global welfare and inequality. Draws on international economics, game theory, law and economics, and political economy to understand international economic agreements. These tools are used to understand multilateral trade and investment agreements, such as NAFTA, and international organizations, such as the WTO. ", + "name": "ECON 106", + "prereqs": [ + "ECON 100B", + "ECON 102" + ], + "title": "International Economic Agreements (4)" + }, + "ECON 107": { + "dept": "ECON", + "description": "Detailed treatment of antitrust policy: Sherman Act, price fixing, collusive practices, predatory pricing, price discrimination, double marginalization, exclusive territories, resale price maintenance, refusal to deal, and foreclosure. Theory of regulation and regulatory experience in electrical utilities, oil, telecommunications, broadcasting, etc. ", + "name": "ECON 107", + "prereqs": [ + "MATH 10C", + "ECON 100B", + "ECON 2", + "MATH 31BH", + "MATH 20C" + ], + "title": "Economic Regulation and Antitrust Policy (4)" + }, + "ECON 109": { + "dept": "ECON", + "description": "Introduction to game theory. Analysis of people\u2019s decisions when the consequences of the decisions depend on what other people do. This course features applications in economics, political science, and law. ", + "name": "ECON 109", + "prereqs": [ + "ECON 100C", + "MATH 109", + "CSE 20", + "MATH 31CH", + "MATH 20" + ], + "title": "Game Theory (4)" + }, + "ECON 109T": { + "dept": "ECON", + "description": "This course presents a selection of applications and advanced topics that build on the material covered in the Econ 109. Game Theory course. ", + "name": "ECON 109T", + "prereqs": [ + "ECON 109" + ], + "title": "Advanced Topics in Game Theory (2)" + }, + "ECON 110A": { + "dept": "ECON", + "description": "Analysis of the determination of long run growth and models of the determination of output, interest rates, and the price level. Analysis of inflation, unemployment, and monetary and fiscal policy. ", + "name": "ECON 110A", + "prereqs": [ + "ECON 1", + "MATH 10C", + "ECON 3", + "MATH 20C", + "MATH 31BH" + ], + "title": "Macroeconomics A (4)" + }, + "ECON 110AH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 110A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110A or after successful completion of Econ 110A with A\u2013or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 110AH", + "prereqs": [], + "title": "Honors Macroeconomics A (1)" + }, + "ECON 110B": { + "dept": "ECON", + "description": "Analysis of the determination of consumption spending at the aggregate level; extension of the basic macro model to include exchange rates and international trade; the aggregate money supply, and the business cycle. ", + "name": "ECON 110B", + "prereqs": [ + "ECON 110A" + ], + "title": "Macroeconomics B (4)" + }, + "ECON 110BH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 110B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110B or after successful completion of Econ 110B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 110BH", + "prereqs": [], + "title": "Honors Macroeconomics B (1)" + }, + "ECON 111": { + "dept": "ECON", + "description": "Financial structure of the US economy. Bank behavior. Monetary control. ", + "name": "ECON 111", + "prereqs": [ + "MATH 20A", + "ECON 3", + "MATH 10A" + ], + "title": "Monetary Economics (4)" + }, + "ECON 112": { + "dept": "ECON", + "description": "Examines time series methods for data analysis with an emphasis on macroeconomic applications. Students are provided with an overview of fundamental time series techniques, hands-on experience in applying them to real-world macroeconomic data, and expertise in performing empirical tests of policy-relevant macroeconomic theories, such as the permanent income hypothesis, the Keynesian fiscal multiplier, and the Phillips curve. ", + "name": "ECON 112", + "prereqs": [ + "ECON 110B", + "ECON 120B", + "MATH 181B" + ], + "title": "Macroeconomic Data Analysis (4)" + }, + "ECON 113": { + "dept": "ECON", + "description": "Mathematical concepts and techniques used in advanced economic analysis; applications to selected aspects of economic theory. ", + "name": "ECON 113", + "prereqs": [ + "ECON 100C", + "MATH 140A", + "MATH 142A" + ], + "title": "Mathematical Economics (4)" + }, + "ECON 114": { + "dept": "ECON", + "description": "Impact of immigration on the US economy. Empirical evidence on the labor market and fiscal impacts of immigration. Consequences of US immigration policies on the economy. ", + "name": "ECON 114", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "Economics of Immigration (4)" + }, + "ECON 116": { + "dept": "ECON", + "description": "Introduction to the economics of less developed countries, covering their international trade, human resources, urbanization, agriculture, income distribution, political economy, and environment. ", + "name": "ECON 116", + "prereqs": [ + "ECON 100B", + "ECON 2" + ], + "title": "Economic Development (4)" + }, + "ECON 117": { + "dept": "ECON", + "description": "Models of the economic growth of developed economies. ", + "name": "ECON 117", + "prereqs": [ + "ECON 100A" + ], + "title": "Economic Growth (4)" + }, + "ECON 118": { + "dept": "ECON", + "description": "Economics: Torts, Property, and Crime (4)", + "name": "ECON 118", + "prereqs": [], + "title": "Law and" + }, + "ECON 119": { + "dept": "ECON", + "description": "(4)", + "name": "ECON 119", + "prereqs": [], + "title": "Law and Economics: Contracts and Corporations" + }, + "ECON 120A": { + "dept": "ECON", + "description": "Probability and statistics used in economics. Probability and sampling theory, statistical inference, and use of spreadsheets. Credit not allowed for Econ 120A after ECE 109, MAE 108, Math 180A, Math 183, or Math 186. ", + "name": "ECON 120A", + "prereqs": [ + "ECON 1", + "MATH 10C", + "MATH 20C", + "MATH 31BH" + ], + "title": "Econometrics A (4)" + }, + "ECON 120AH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120A or after successful completion of Econ 120A with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 120AH", + "prereqs": [], + "title": "Honors Econometrics A (1)" + }, + "ECON 120B": { + "dept": "ECON", + "description": "Basic econometric methods, including the linear regression, hypothesis testing, quantifying uncertainty using confidence intervals, and distinguishing correlation from causality. Credit not allowed for both Econ 120B and Math 181B. ", + "name": "ECON 120B", + "prereqs": [ + "ECON 120A", + "MATH 180A", + "MATH 183", + "MATH 186", + "ECE 109" + ], + "title": "Econometrics B (4)" + }, + "ECON 120BH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120B or after successful completion of Econ 120B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 120BH", + "prereqs": [], + "title": "Honors Econometrics B (1)" + }, + "ECON 120C": { + "dept": "ECON", + "description": "Advanced econometric methods: estimation of linear regression models with endogeneity, economic methods designed for panel data sets, estimation of discrete choice models, time series analysis, and estimation in the presence of autocorrelated and heterskedastic errors. ", + "name": "ECON 120C", + "prereqs": [ + "ECON 120B", + "MATH 181B" + ], + "title": "Econometrics C (4)" + }, + "ECON 120CH": { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120C or after successful completion of Econ 120C with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "name": "ECON 120CH", + "prereqs": [], + "title": "Honors Econometrics C (1)" + }, + "ECON 121": { + "dept": "ECON", + "description": "Application of econometric methods to such areas as labor supply, human capital, and financial time series. Concurrent enrollment in Econ 120C is permitted. ", + "name": "ECON 121", + "prereqs": [ + "ECON 120C" + ], + "title": "Applied Econometrics (4)" + }, + "ECON 122": { + "dept": "ECON", + "description": "Detailed study of the small sample and asymptotic properties of estimators commonly used in applied econometric work: multiple linear regression, instrumental variables, generalized method of moments, and maximum likelihood. Econometric computation using MATLAB. Recommended preparation: Econ 120C. ", + "name": "ECON 122", + "prereqs": [ + "ECON 120B", + "MATH 31AH", + "MATH 181B", + "MATH 18" + ], + "title": "Econometric Theory (4)" + }, + "ECON 125": { + "dept": "ECON", + "description": "Interaction between economic forces and demographic changes are considered, as are demographic composition and analysis; fertility, mortality, and migration processes and trends. Course emphasizes the creation, evaluation, and interpretation of forecasts for states, regions, and subcounty areas. Econ 178 is recommended. ", + "name": "ECON 125", + "prereqs": [ + "ECON 120B", + "MATH 181B" + ], + "title": "Demographic Analysis and Forecasting (4)" + }, + "ECON 130": { + "dept": "ECON", + "description": "Course uses basic microeconomic tools to discuss a wide variety of public issues, including the war on drugs, global warming, natural resources, health care and safety regulation. Appropriate for majors who have not completed Econ 100A-B-C and students from other departments. ", + "name": "ECON 130", + "prereqs": [ + "ECON 100A", + "ECON 2" + ], + "title": "Public Policy (4)" + }, + "ECON 131": { + "dept": "ECON", + "description": "Environmental issues from an economic perspective. Relation of the environment to economic growth. Management of natural resources, such as forest and fresh water. Policies on air, water, and toxic waste pollution. International issues such as ozone depletion and sustainable development. ", + "name": "ECON 131", + "prereqs": [ + "ECON 100A", + "ECON 2" + ], + "title": "Economics of the Environment (4)" + }, + "ECON 132": { + "dept": "ECON", + "description": "Energy from an economic perspective. Fuel cycles for coal, hydro, nuclear, oil, and solar energy. Emphasis on efficiency and control of pollution. Comparison of energy use across sectors and across countries. Global warming. Role of energy in the international economy. ", + "name": "ECON 132", + "prereqs": [ + "MATH 20C", + "MATH 31BH", + "ESYS 103", + "MATH 10C", + "ECON 131", + "MAE 124", + "ECON 1", + "ECON 3", + "ECON 2", + "ECON 100A" + ], + "title": "Energy Economics (4)" + }, + "ECON 133": { + "dept": "ECON", + "description": "Addresses environmental issues that transcend national boundaries, such as climate change, biodiversity loss, over-fishing. Examines why international agreements are required, how they are negotiated and implemented, and studies their effectiveness. Explores whether more effective environmental treaties could be designed. ", + "name": "ECON 133", + "prereqs": [ + "ECON 100A", + "ECON 2" + ], + "title": "International Environmental Agreements (4)" + }, + "ECON 135": { + "dept": "ECON", + "description": "(Cross-listed with USP 102.) Economic analysis of why cities develop, patterns of land use in cities, why cities suburbanize, and the pattern of urban commuting. The course also examines problems of urban congestion, air pollution, zoning, poverty, crime, and discusses public policies to deal with them. Credit not allowed for both Econ 135 and USP 102. ", + "name": "ECON 135", + "prereqs": [ + "MATH 20A", + "ECON 100A", + "ECON 2", + "MATH 10A" + ], + "title": "Urban Economics (4)" + }, + "ECON 136": { + "dept": "ECON", + "description": "A practical yet theory-based study of the firm\u2019s role in managing workers, including issues related to hiring, education and training, promotions, layoffs and buyouts, and the overarching role that worker compensation plays in all of these. ", + "name": "ECON 136", + "prereqs": [ + "ECON 100B" + ], + "title": "Human Resources (4)" + }, + "ECON 138": { + "dept": "ECON", + "description": "This course will investigate differences in economic outcomes on the basis of race, gender, ethnicity, religion, and sexual orientation. We will study economic theories of discrimination, empirical work testing those theories, and policies aimed at alleviating group-level differences in economic outcomes. ", + "name": "ECON 138", + "prereqs": [ + "ECON 1" + ], + "title": "Economics of Discrimination (4)" + }, + "ECON 139": { + "dept": "ECON", + "description": "Theoretical and empirical analysis of labor markets. Topics include: labor supply, labor demand, human capital investment, wage inequality, labor mobility, immigration, labor market discrimination, labor unions and unemployment. ", + "name": "ECON 139", + "prereqs": [ + "ECON 100B", + "ECON 2" + ], + "title": "Labor Economics (4)" + }, + "ECON 140": { + "dept": "ECON", + "description": "Provides an overview of the physician, hospital, and pharmaceutical segments of the health sector. Uses models of physician behavior, for-profit and nonprofit institutions to understand the trade-offs facing health-sector regulators and the administrators of public and private insurance arrangements. ", + "name": "ECON 140", + "prereqs": [ + "ECON 100B", + "ECON 2" + ], + "title": "Economics of Health Producers (4)" + }, + "ECON 141": { + "dept": "ECON", + "description": "Demand for health care and health insurance, employer-provision of health insurance and impact on wages and job changes. Cross-country comparisons of health systems. ", + "name": "ECON 141", + "prereqs": [ + "ECON 100C" + ], + "title": "Economics of Health Consumers (4)" + }, + "ECON 142": { + "dept": "ECON", + "description": "Course will study economic models in which standard economic rationality assumptions are combined with psychologically plausible assumptions on behavior. We consider whether the new models improve ability to predict and understand phenomena including altruism, trust and reciprocity, procrastination, and self-control. ", + "name": "ECON 142", + "prereqs": [ + "ECON 109" + ], + "title": "Behavioral Economics (4)" + }, + "ECON 143": { + "dept": "ECON", + "description": "Explore use of experiments to study individual and interactive (strategic) decision-making. Topics may include choice over risky alternatives, altruism and reciprocity, allocation and information aggregation in competitive markets, cooperation and collusion, bidding in auctions, strategy in coordination and \u201coutguessing\u201d games. ", + "name": "ECON 143", + "prereqs": [ + "ECON 100C" + ], + "title": "Experimental Economics (4)" + }, + "ECON 144": { + "dept": "ECON", + "description": "Examines conservation of biodiversity from an economic perspective. Topics include valuing biodiversity, defining successful conservation, and evaluating the cost effectiveness of policies such as conservation payments, ecotourism, and privatization. Emphasis on forests, coral reefs, elephants, tigers, and sea turtles. ", + "name": "ECON 144", + "prereqs": [ + "ECON 100A", + "ECON 2" + ], + "title": "Economics of Conservation (4)" + }, + "ECON 145": { + "dept": "ECON", + "description": "Economic issues associated with oceans. Economics of managing renewable resources in the oceans, with an emphasis on fisheries, economics of conservation and biodiversity preservation for living marine resources, with an emphasis on whales, dolphins, sea turtles, and coral reefs. ", + "name": "ECON 145", + "prereqs": [ + "ECON 100A", + "ECON 2" + ], + "title": "Economics of Ocean Resources (4)" + }, + "ECON 146": { + "dept": "ECON", + "description": "Theory of business cycles and techniques used by governments to stabilize an economy. Discussion of recent economic experience. ", + "name": "ECON 146", + "prereqs": [ + "ECON 110B" + ], + "title": "Economic Stabilization (4)" + }, + "ECON 147": { + "dept": "ECON", + "description": "Examination of issues in education using theoretical and empirical approaches from economics. Analysis of decisions to invest in education. Consideration of various market structures in education, including school choice and school finance programs. ", + "name": "ECON 147", + "prereqs": [ + "ECON 100A", + "ECON 2", + "MATH 181B", + "ECON 120B" + ], + "title": "Economics of Education (4)" + }, + "ECON 150": { + "dept": "ECON", + "description": "Overview of the existing national tax structure in the United States, its effects on individual and firm decisions, and the resulting efficiency costs and distributional consequences. The course concludes with an examination of several commonly proposed tax reforms. ", + "name": "ECON 150", + "prereqs": [ + "ECON 100C" + ], + "title": "Public Economics: Taxation (4)" + }, + "ECON 151": { + "dept": "ECON", + "description": "Overview of the public sector in the United States and the scope of government intervention in economic life. Theory of public goods and externalities. Discussion of specific expenditure programs such as education and national defense. ", + "name": "ECON 151", + "prereqs": [ + "ECON 100C" + ], + "title": "Public Economics: Expenditures I (4)" + }, + "ECON 152": { + "dept": "ECON", + "description": "Overview of the public sector in the United States and the justifications for government intervention in economic life. Theory of income redistribution and social insurance. Applications to current policy in such areas as health insurance, welfare, unemployment insurance, and Social Security. ", + "name": "ECON 152", + "prereqs": [ + "ECON 100C" + ], + "title": "Public Economics: Expenditures II (4)" + }, + "ECON 158": { + "dept": "ECON", + "description": "(Cross-listed with HIUS 140.) The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism. Credit not allowed for both Econ 158 and HIUS 140. ", + "name": "ECON 158", + "prereqs": [], + "title": "Economic History of the United States I (4)" + }, + "ECON 159": { + "dept": "ECON", + "description": "(Cross-listed with HIUS 141.) The United States as a modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism. Credit not allowed for both Econ 159 and HIUS 141. ", + "name": "ECON 159", + "prereqs": [], + "title": "Economic History of the United States II (4)" + }, + "ECON 161": { + "dept": "ECON", + "description": "Examines the integration of Latin American and Caribbean countries into the global economy. Topics include trade in agricultural and manufactured goods, regional trade agreements, international capital flows to Latin America, financial vulnerabilities, and policy responses. ", + "name": "ECON 161", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "Global Integration of Latin America (4)" + }, + "ECON 162": { + "dept": "ECON", + "description": "Survey of the Mexican economy. Topics such as economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ", + "name": "ECON 162", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "Economics of Mexico (4)" + }, + "ECON 163": { + "dept": "ECON", + "description": "Survey of the Japanese economy. Economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ", + "name": "ECON 163", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "Japanese Economy (4)" + }, + "ECON 164": { + "dept": "ECON", + "description": "Survey of the Indian economy. Historical overview and perspective; political economy; democracy and development; economic growth; land, labor, and credit markets; poverty and inequality; health, education, and human development; technology and development; institutions and state capacity; contemporary policy issues and debates. ", + "name": "ECON 164", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "The Indian Economy (4)" + }, + "ECON 165": { + "dept": "ECON", + "description": "Socioeconomic development in the Arab world, Iran, and Turkey. Historical perspective; international trade and fuel resources; education, health, and gender gaps; unemployment and migration; population and environment; Islam and democracy. ", + "name": "ECON 165", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "Middle East Economics (4)" + }, + "ECON 165T": { + "dept": "ECON", + "description": "This course will cover certain country experiences and certain topics in more depth than in Econ 165. Students will also have the opportunity to choose countries and topics of particular interest to them for further reading and as subjects for a presentation and brief paper. ", + "name": "ECON 165T", + "prereqs": [ + "ECON 165" + ], + "title": "Advanced Topics in Middle East Economics (2)" + }, + "ECON 166": { + "dept": "ECON", + "description": "Long-run economic development and current economic issues of Southeast Asia. Topics include: economic growth, industrialization, financial development, demography, human capital and labor, inequality and poverty, corporate sector, institutions, and government. Designed to teach how to apply economics to the real world, with examples and case studies from Southeast Asian economies. Will start with general economic frameworks then use them to discuss issues from countries in Southeast Asia. ", + "name": "ECON 166", + "prereqs": [ + "ECON 110B" + ], + "title": "Economics of Southeast Asia (4)" + }, + "ECON 167": { + "dept": "ECON", + "description": "Survey of the Chinese economy. Topics such as economic growth, China\u2019s transition to a market economy, international trade, financial markets, labor markets, and industrial structure. ", + "name": "ECON 167", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "Economics of China (4)" + }, + "ECON 168": { + "dept": "ECON", + "description": "This course explores economic processes that shape the Israeli economy. Topics include: biblical economics, economics of religion, economic growth, income inequality and consumer protests, employment, globalization, inflation, the high-tech sector, terrorism, and education. ", + "name": "ECON 168", + "prereqs": [ + "ECON 1", + "ECON 3" + ], + "title": "Economics of Modern Israel (4)" + }, + "ECON 169": { + "dept": "ECON", + "description": "This course covers long-run economic development and current economic issues of South Korea. Topics include: examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea\u2019s industrial structure, including the role of large enterprises (chaebol); role of government; and links between Korea and other countries. ", + "name": "ECON 169", + "prereqs": [ + "ECON 3", + "ECON 100A" + ], + "title": "Economics of Korea (4)" + }, + "ECON 171": { + "dept": "ECON", + "description": "Decision making when the consequences are uncertain. Decision trees, payoff tables, decision criteria, expected utility theory, risk aversion, sample information. ", + "name": "ECON 171", + "prereqs": [ + "MATH 183", + "MATH 186", + "ECON 120A", + "MATH 180A", + "ECE 109", + "ECON 100A" + ], + "title": "Decisions Under Uncertainty (4)" + }, + "ECON 172A": { + "dept": "ECON", + "description": "Linear and integer programming, elements of zero-sum, two-person game theory, and specific combinatorial algorithms. Credit not allowed for both Econ 172A and Math 171A. ", + "name": "ECON 172A", + "prereqs": [ + "MATH 183", + "MATH 186", + "ECON 120A", + "MATH 180A", + "MATH 31AH", + "MATH 18", + "ECE 109", + "ECON 100A" + ], + "title": "Operations Research A (4)" + }, + "ECON 172B": { + "dept": "ECON", + "description": "Nonlinear programming, deterministic and stochastic dynamic programming, queuing theory, search models, and inventory models. Credit not allowed for both Econ 172B and Math 171B. ", + "name": "ECON 172B", + "prereqs": [ + "MATH 171A", + "ECON 172A" + ], + "title": "Operations Research B (4)" + }, + "ECON 173A": { + "dept": "ECON", + "description": "Financial market functions, institutions and", + "name": "ECON 173A", + "prereqs": [], + "title": "Financial Markets (4)" + }, + "ECON 173AL": { + "dept": "ECON", + "description": "Empirical, case-based analysis requiring students to use economic theory from Econ 173A: Financial Markets and data to address real-world issues such as conducting market research, conducting discounted cash flow analyses, and applying the CAPM model to identify issues in investment management, and more. Presentation of student analyses both orally and in writing. Can be used in conjunction with another two-unit upper-division Econ course to meet major elective requirements by petition. ", + "name": "ECON 173AL", + "prereqs": [ + "ECON 173A" + ], + "title": "Applied Finance Laboratory (2)" + }, + "ECON 173B": { + "dept": "ECON", + "description": "Introduces the firm\u2019s capital budgeting decision, including methods for evaluation and ranking of investment projects, the firm\u2019s choice of capital structure, dividend policy decisions, corporate taxes, mergers and acquisitions. ", + "name": "ECON 173B", + "prereqs": [ + "ECON 173A", + "ECON 4", + "MGT 4" + ], + "title": "Corporate Finance (4)" + }, + "ECON 174": { + "dept": "ECON", + "description": "Risk measures, hedging techniques, value of risk to firms, estimation of optimal hedge ratio, risk management with options and futures. Econ 171 is recommended. ", + "name": "ECON 174", + "prereqs": [ + "ECON 173A" + ], + "title": "Financial Risk Management (4)" + }, + "ECON 176": { + "dept": "ECON", + "description": "Role of marketing in the economy. Topics such as buyer behavior, marketing mix, promotion, product selection, pricing, and distribution. Concurrent enrollment in Econ 120C is permitted. ", + "name": "ECON 176", + "prereqs": [ + "ECON 120C" + ], + "title": "Marketing (4)" + }, + "ECON 177L": { + "dept": "ECON", + "description": "Applied theory and case-based class requiring students to develop hypothesis-driven, problem-solving skills. Students will work in teams and will develop management consultant skills by applying microeconomic theory, marketing, accounting, and econometric analyses to real-world business problems. Presentation of student analyses both orally and in writing. ", + "name": "ECON 177L", + "prereqs": [ + "ECON 100C", + "ECON 176", + "ECON 4" + ], + "title": "Applied Management Laboratory (4)" + }, + "ECON 178": { + "dept": "ECON", + "description": "Survey of theoretical and practical aspects of statistical and economic forecasting. Such topics as long-run and short-run horizons, leading indicator analysis, econometric models, technological and population forecasts, forecast evaluation, and the use of forecasts for public policy. Concurrent enrollment in Econ 120C is permitted. ", + "name": "ECON 178", + "prereqs": [ + "ECON 120C" + ], + "title": "Economic and Business Forecasting (4)" + }, + "ECON 182": { + "dept": "ECON", + "description": "Selected topics in microeconomics. ", + "name": "ECON 182", + "prereqs": [ + "ECON 100C" + ], + "title": "Topics in Microeconomics (4)" + }, + "ECON 191A": { + "dept": "ECON", + "description": "Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ", + "name": "ECON 191A", + "prereqs": [], + "title": "Senior Essay Seminar A (4)" + }, + "ECON 191B": { + "dept": "ECON", + "description": "Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ", + "name": "ECON 191B", + "prereqs": [], + "title": "Senior Essay Seminar B (4)" + }, + "ECON 195": { + "dept": "ECON", + "description": "Introduction to teaching economics. Each student will be responsible for a class section in one of the lower-division economics courses. Limited to advanced economics majors with at least a 3.5 GPA in upper-division economics work. (P/NP grades only.) Students may not earn more than eight units credit in 195 courses. ", + "name": "ECON 195", + "prereqs": [], + "title": "Introduction to Teaching Economics (4)" + }, + "ECON 198": { + "dept": "ECON", + "description": "Directed study on a topic or in a group field not included in regular department curriculum by special arrangement with a faculty member. ", + "name": "ECON 198", + "prereqs": [], + "title": "Directed Group Study (2 or 4)" + }, + "ECON 199": { + "dept": "ECON", + "description": "Independent reading or research under the direction of and by special arrangement with a Department of Economics faculty member. (P/NP grades only.) ", + "name": "ECON 199", + "prereqs": [], + "title": "Independent Study (2 or 4)" + }, + "ECON 2": { + "dept": "ECON", + "description": "Analysis of monopoly and imperfectly competitive markets, market imperfections and the role of government. ", + "name": "ECON 2", + "prereqs": [ + "ECON 1" + ], + "title": "Market Imperfections and Policy (4)" + }, + "ECON 200A": { + "dept": "ECON", + "description": "Modern consumer and producer theory. Preferences, utility maximization, demand, choice under uncertainty, intertemporal choice. Production, cost, profit maximization and supply. Comparative statics, duality. ", + "name": "ECON 200A", + "prereqs": [], + "title": "Microeconomics A (4)" + }, + "ECON 200B": { + "dept": "ECON", + "description": "Arrow-Debreu model of general economic equilibrium and welfare economics. Axiomatic theory of the firm and household. Existence of general economic equilibrium. First and Second Fundamental Theorems of Welfare Economics. Futures and contingent commodity markets. Core and core convergence. ", + "name": "ECON 200B", + "prereqs": [ + "ECON 200A" + ], + "title": "Microeconomics B (4)" + }, + "ECON 200C": { + "dept": "ECON", + "description": "Information economics: static and dynamic games of incomplete information, signaling, screening, and lemons. Institutional analysis: social choice, mechanism design, cooperative bargaining, contracts, strategic theory of the firm. ", + "name": "ECON 200C", + "prereqs": [ + "ECON 200B" + ], + "title": "Mircoeconomics C (4)" + }, + "ECON 201": { + "dept": "ECON", + "description": "An intensive examination of selected topics in economic theory. Course topic nonrepetitive in a three-year cycle. ", + "name": "ECON 201", + "prereqs": [ + "ECON 213", + "ECON 207" + ], + "title": "Advanced Economic Theory (4)" + }, + "ECON 202A-B-C": { + "dept": "ECON", + "description": "An examination of recent research in economic theory, including topics in general equilibrium, welfare economics, duality, and social choice; development of related research topics by both graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ", + "name": "ECON 202A-B-C", + "prereqs": [ + "ECON 207" + ], + "title": "Workshop in Economic Theory (0\u20134/0\u20134/0\u20134)" + }, + "ECON 204": { + "dept": "ECON", + "description": "This course reviews the theoretical foundations for the analysis of contractual interaction and it covers a selection of game-theoretic models and applications. The course is intended to provide a foundation for theoretical research on contracts as well as applied research on topics in behavioral/experimental, development, environmental, international, and labor economics, law and economics, and macroeconomics. ", + "name": "ECON 204", + "prereqs": [ + "ECON 200B", + "ECON 200C", + "ECON 200A" + ], + "title": "Contract Theory (4)" + }, + "ECON 205": { + "dept": "ECON", + "description": "Advanced calculus review for new graduate students. ", + "name": "ECON 205", + "prereqs": [], + "title": "Mathematics for Economists (4)" + }, + "ECON 206": { + "dept": "ECON", + "description": "Further topics in consumer and producer theory, intertemporal optimization, and decision making under uncertainty. (Previously numbered Econ 200D.) ", + "name": "ECON 206", + "prereqs": [ + "ECON 200B", + "ECON 200C", + "ECON 200A" + ], + "title": "Decisions (4)" + }, + "ECON 208": { + "dept": "ECON", + "description": "Further topics in game theory and the economics of information. (Previously numbered Econ 200F.) ", + "name": "ECON 208", + "prereqs": [ + "ECON 200B", + "ECON 200C", + "ECON 200A" + ], + "title": "Games and Information (4)" + }, + "ECON 210A": { + "dept": "ECON", + "description": "Dynamic optimization: Lagrangean methods and recursive methods. The neoclassical growth model: social planner, competitive equilibrium, first and second welfare theorems, steady state analysis, dynamic analysis, shocks, heterogeneity and aggregation, applications. ", + "name": "ECON 210A", + "prereqs": [], + "title": "Macroeconomics A (4)" + }, + "ECON 210B": { + "dept": "ECON", + "description": "Models of the household\u2019s intertemporal consumption/saving decision, and implications for risk aversion, basic portfolio allocation, and asset pricing. Models with heterogeneous agents\u2014overlapping generations, incomplete markets, precautionary saving. Implications of labor market frictions for equilibrium employment. ", + "name": "ECON 210B", + "prereqs": [ + "ECON 210A" + ], + "title": "Macroeconomics B (4)" + }, + "ECON 210C": { + "dept": "ECON", + "description": "Basic facts and time series for macroeconomics. Modern theories of short-run fluctuations: sources of business cycle and the evolution of income, employment, interest rate, and prices. Monetary and fiscal policy theories in the presence of real and nominal rigidities. ", + "name": "ECON 210C", + "prereqs": [ + "ECON 210B" + ], + "title": "Macroeconomics C (4)" + }, + "ECON 210D": { + "dept": "ECON", + "description": "Study of the determinants of economic fluctuations, inflation, and interest rates with particular focus on the effects of monetary policy. Overview of key methods and findings of empirical research in macroeconomics. Recommended preparation: Econ 220D. Prerequisite: graduate standing and Econ 210A-B-C.", + "name": "ECON 210D", + "prereqs": [], + "title": "Monetary Economics and Business Cycles (4)" + }, + "ECON 211": { + "dept": "ECON", + "description": "Covers various topics in macroeconomics at the frontiers of research, including theory, computation, and empirical work. Emphasis depends on the instructor. Students will read the latest working papers and publications in the covered areas. ", + "name": "ECON 211", + "prereqs": [ + "ECON 210C", + "ECON 210B", + "ECON 210A" + ], + "title": "Advanced Macroeconomics (4-4-4)" + }, + "ECON 212A-B-C": { + "dept": "ECON", + "description": "Examination of recent research in macroeconomics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ", + "name": "ECON 212A-B-C", + "prereqs": [ + "ECON 210C" + ], + "title": "Workshop in Macroeconomics (0\u20134/0\u20134/0\u20134)" + }, + "ECON 213": { + "dept": "ECON", + "description": "This course develops purely theoretical models for problems in macroeconomics. Topics include dynamic general equilibrium, asset market equilibrium, and economic growth and distribution. ", + "name": "ECON 213", + "prereqs": [ + "ECON 210C", + "ECON 210B", + "ECON 210A" + ], + "title": "Advanced Macroeconomic Theory (4)" + }, + "ECON 214": { + "dept": "ECON", + "description": "This course focuses on applied macroeconomics, including econometric testing of macroeconomic theories and empirical measurement guided by theoretical insights. Topics will vary from year to year depending on the latest developments in research. Students will complete the course with a broader understanding of a number of leading topics in macroeconomics as well as a toolkit of estimation and simulation programs. Recommended preparation: Econ 220D. ", + "name": "ECON 214", + "prereqs": [ + "ECON 210C", + "ECON 210B", + "ECON 210A" + ], + "title": "Applied Macroeconomics (4)" + }, + "ECON 215": { + "dept": "ECON", + "description": "This course focuses on theoretical models and empirical analysis aimed at understanding and directing macroeconomic policy, including monetary, fiscal, and structural policies. ", + "name": "ECON 215", + "prereqs": [ + "ECON 210C", + "ECON 210B", + "ECON 210A" + ], + "title": "Macroeconomic Policy (4)" + }, + "ECON 216": { + "dept": "ECON", + "description": "This course covers advanced computation techniques that are widely used in macroeconomics, finance, and other fields. Students will learn a range of numerical methods for handling systems of equations, integration, optimization, and other problems. ", + "name": "ECON 216", + "prereqs": [ + "ECON 210C", + "ECON 210B", + "ECON 210A" + ], + "title": "Computation for Macroeconomics (4)" + }, + "ECON 217": { + "dept": "ECON", + "description": "While understanding how the macro economy behaves in the ideal, frictionless setting is indispensable; most of the interesting issues in macro arise as a consequence of some sort of friction or missing market. In this course, we will study some models based on real frictions and financial frictions. Topics covered include convex and nonconvex adjustment costs, housing markets and investment decisions, and financial crises. ", + "name": "ECON 217", + "prereqs": [ + "ECON 210C", + "ECON 210B", + "ECON 210A" + ], + "title": "Real Frictions and Financial Frictions (4)" + }, + "ECON 219": { + "dept": "ECON", + "description": "This course will cover numerical analysis of dynamic macroeconomic models. Topics include numerical techniques, dynamic programming, linear systems, solution algorithms, and applications to dynamic general equilibrium. ", + "name": "ECON 219", + "prereqs": [], + "title": "Readings in Macroeconomics (4)" + }, + "ECON 220A": { + "dept": "ECON", + "description": "An introduction to probability and statistics for graduate students in economics. Topics include: random variables, sampling distributions, the law of large numbers, the central limit theorem, maximum likelihood estimation, hypothesis testing. Knowledge of multivariable calculus and linear algebra is assumed. ", + "name": "ECON 220A", + "prereqs": [], + "title": "Econometrics A (4)" + }, + "ECON 220B": { + "dept": "ECON", + "description": "Introduction to regression analysis and other estimation methods. Topics covered include: ordinary and generalized least squares, asymptotic approximations, specification testing, two-stage least squares, generalized method of moments, and maximum likelihood estimation. ", + "name": "ECON 220B", + "prereqs": [ + "ECON 220A" + ], + "title": "Econometrics B (4)" + }, + "ECON 220C": { + "dept": "ECON", + "description": "This course focuses on econometric analysis of panel data and cross-section data. Topics covered include: static/dynamic panel data models, discrete choice models, censored and truncated regression models, sample selection models, and evaluation of treatment effects. Theory of extreme estimators is used to study the specification, estimation, and testing of these models. ", + "name": "ECON 220C", + "prereqs": [ + "ECON 220B" + ], + "title": "Econometrics C (4)" + }, + "ECON 220D": { + "dept": "ECON", + "description": "Examines modern time series econometrics, extending methods from Econ 220A-C to dependent data. Topics covered include spectral density theory, HAC estimation, vector autoregressions, nonstationary econometrics, filtering. ", + "name": "ECON 220D", + "prereqs": [ + "ECON 220C" + ], + "title": "Econometrics D (4)" + }, + "ECON 220E": { + "dept": "ECON", + "description": "Identification of economic models. Topics include: rank and order conditions for identification in linear simultaneous equations systems; identification in nonlinear models; likelihood based identification criteria; nonparametric identification; identification in models with multiple equilibria. ", + "name": "ECON 220E", + "prereqs": [ + "ECON 220D" + ], + "title": "Econometrics E (4)" + }, + "ECON 220F": { + "dept": "ECON", + "description": "This course focuses on the application of econometric techniques to issues in microeconomics and macroeconomics. The major emphasis in the class is on the completion of an empirical project. ", + "name": "ECON 220F", + "prereqs": [ + "ECON 220E" + ], + "title": "Econometrics F (4)" + }, + "ECON 221": { + "dept": "ECON", + "description": "Advanced topics in econometrics. Topics may vary from year to year, covering areas such as cross-section, time-series, panel, limited dependent variables, conditional quantile estimation, bootstrapping, and large- and small-sample distribution theory. ", + "name": "ECON 221", + "prereqs": [ + "ECON 220D", + "ECON 220E", + "ECON 220A", + "ECON 220B", + "ECON 220C" + ], + "title": "Advanced Econometrics (4)" + }, + "ECON 222A-B-C": { + "dept": "ECON", + "description": "Examination of recent econometric research; development of own research by students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)", + "name": "ECON 222A-B-C", + "prereqs": [], + "title": "Workshop in Econometrics (4-4-4)" + }, + "ECON 225": { + "dept": "ECON", + "description": "Topics include testing for rationality of forecasts, Mincer-Zarnowitz regressions, asymmetric loss functions, tests for equal (superior) predictive ability, multivariate forecasting. ", + "name": "ECON 225", + "prereqs": [ + "ECON 220D", + "ECON 220E", + "ECON 220A", + "ECON 220B", + "ECON 220C" + ], + "title": "Forecasting (4)" + }, + "ECON 226": { + "dept": "ECON", + "description": "Topics include Bayesian inference and decision theory, loss functions, estimation of dynamic stochastic general equilibrium models, nonlinear time series, state-space models, spatial-temporal models, and high-frequency data. ", + "name": "ECON 226", + "prereqs": [ + "ECON 220D", + "ECON 220E", + "ECON 220A", + "ECON 220B", + "ECON 220C" + ], + "title": "Bayesian and Numerical Methods (4)" + }, + "ECON 227": { + "dept": "ECON", + "description": "Topics include neural networks, kernels, series, splines, estimation of densities and spectra, smoothing parameter selection, semiparametric models, efficiency and adaptation, forecasting with nonlinear models, over-fit, computation, and interpretation. ", + "name": "ECON 227", + "prereqs": [ + "ECON 220D", + "ECON 220E", + "ECON 220A", + "ECON 220B", + "ECON 220C" + ], + "title": "Nonparametric and Semiparametric Models (4)" + }, + "ECON 228": { + "dept": "ECON", + "description": "Topics include weak instruments, unit roots, break tests, switching models, set-based inference, maximum likelihood estimation and meaning of misspecified models, consistency, asymptotic normality, consistent covariance matrix estimation, and tests of model misspecification. ", + "name": "ECON 228", + "prereqs": [ + "ECON 220D", + "ECON 220E", + "ECON 220A", + "ECON 220B", + "ECON 220C" + ], + "title": "Nonstandard Inference (4)" + }, + "ECON 230": { + "dept": "ECON", + "description": "Exploration of existing theoretical literature evaluating the efficiency and distribution effects of income and commodity taxes. Characterization of an \u201coptimal\u201d tax structure, and examination of problems faced in tax administration. Scrutiny of behavioral responses to existing tax structures. ", + "name": "ECON 230", + "prereqs": [ + "ECON 220A", + "ECON 220B", + "ECON 220C", + "ECON 200B", + "ECON 200C", + "ECON 200A" + ], + "title": "Public Economics: Taxation (4)" + }, + "ECON 231": { + "dept": "ECON", + "description": "Public Goods and Externalities (4)", + "name": "ECON 231", + "prereqs": [], + "title": "Public Economics:" + }, + "ECON 232": { + "dept": "ECON", + "description": "Redistribution and Social Insurance (4)", + "name": "ECON 232", + "prereqs": [], + "title": "Public Economics:" + }, + "ECON 235A-B-C": { + "dept": "ECON", + "description": "Examination of recent research in applied economics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)", + "name": "ECON 235A-B-C", + "prereqs": [], + "title": "Workshop in Applied Economics (0\u20134/0\u20134/0\u20134)" + }, + "ECON 237": { + "dept": "ECON", + "description": "Governments serve functions key to economic development, including correcting market failures, raising taxes, delivering services, and protecting property rights. Correspondingly, research in development economics is increasingly focused on how institutions affect development. Generally, the aim of the course is to provide PhD students a complete introduction to the growing literature in this area. Students may not receive credit for Econ 237 and POLI 231E. ", + "name": "ECON 237", + "prereqs": [], + "title": "Political Economy: Microeconomic Perspectives (4)" + }, + "ECON 241": { + "dept": "ECON", + "description": "Course introduces the household as a decision-making unit, and the contracts and institutions that emerge to compensate for imperfect markets. Emphasis is placed on data and identification strategies that can be used to measure the impact of policy interventions. ", + "name": "ECON 241", + "prereqs": [], + "title": "Microeconomics of Development (4)" + }, + "ECON 242": { + "dept": "ECON", + "description": "This course covers development accounting, growth accounting, human capital accumulation, skill-biased technological change, multisector growth models, structural transformation, urban-rural migration, misallocation, informality, technology adoption and diffusion, and other related topics. ", + "name": "ECON 242", + "prereqs": [], + "title": "Macroeconomics of Development (4)" + }, + "ECON 243": { + "dept": "ECON", + "description": "The study of organizational effectiveness, in both the private and public sectors, bridges the gap between microeconomic analysis of individual and household behavior and macroeconomic analysis of economic aggregates such as capital and output. Topics covered include organizational capacity, leadership and management, staffing, incentives, contracting, finance, learning, market structure, regulations, and politics. ", + "name": "ECON 243", + "prereqs": [], + "title": "Organizational Economics of Development (4)" + }, + "ECON 245": { + "dept": "ECON", + "description": "This course covers the determinants of the pattern and volume of trade in goods and services, the interaction of international trade with income distribution and economic growth, and commercial policy. The emphasis is on theory, with some empirical illustration and motivation. ", + "name": "ECON 245", + "prereqs": [], + "title": "International Trade (4)" + }, + "ECON 246": { + "dept": "ECON", + "description": "This course presents open-economy macroeconomics and international finance. Topics include theories of the exchange rate, foreign-exchange regimes, current account adjustments, and international portfolio investments. The course examines real and monetary explanations, and implications of international capital market integration. ", + "name": "ECON 246", + "prereqs": [], + "title": "International Macroeconomics (4)" + }, + "ECON 247": { + "dept": "ECON", + "description": "This course examines the empirical work in international trade or international macroeconomics. International trade topics include empirical tests of theories of international trade and international capital movements. International macroeconomic topics include empirical studies of exchange rate and relative price adjustments. ", + "name": "ECON 247", + "prereqs": [], + "title": "Empirical Topics in International Economics (4)" + }, + "ECON 249A": { + "dept": "ECON", + "description": "Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ", + "name": "ECON 249A", + "prereqs": [], + "title": "International Development Workshop I (1\u20134)" + }, + "ECON 249C": { + "dept": "ECON", + "description": "Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ", + "name": "ECON 249C", + "prereqs": [], + "title": "International Development Workshop III (1\u20134)" + }, + "ECON 250": { + "dept": "ECON", + "description": "Theoretical and empirical issues in labor economics. (Previously numbered Econ 236A-B.) ", + "name": "ECON 250", + "prereqs": [], + "title": "Labor Economics (4)" + }, + "ECON 260": { + "dept": "ECON", + "description": "This course covers theory and empirical applications in the following areas of industrial organization: dynamic pricing, price discrimination, collusion, market power, discrete choice demand modeling, entry, asymmetric information, and search. ", + "name": "ECON 260", + "prereqs": [ + "ECON 220C" + ], + "title": "Industrial Organization: Firms (4)" + }, + "ECON 261": { + "dept": "ECON", + "description": "This course covers theory and empirical applications in the following areas of industrial organization: mergers, vertical integration, and innovation. Optional topics include network effects, technology adoption, and regulation. ", + "name": "ECON 261", + "prereqs": [ + "ECON 200C", + "ECON 220C" + ], + "title": "Industrial Organization: Markets (4)" + }, + "ECON 262": { + "dept": "ECON", + "description": "This course is intended to give students an introduction to the study of strategic interaction through a behavioral lens. We will review game theory experiments and analyze which theoretical predictions are validated and which are violated in practice. We will characterize the systematic violations of the theory that come from experiments and study how these behavioral regularities can be incorporated into new equilibrium concepts. ", + "name": "ECON 262", + "prereqs": [ + "ECON 200B", + "ECON 200C", + "ECON 200A" + ], + "title": "Behavioral Game Theory (4)" + }, + "ECON 263": { + "dept": "ECON", + "description": "Covers various models in behavioral economics including self-control, bounded memory, belief manipulation, framing effects, and behavioral game theory. The course will also discuss their role in industrial organization, finance, and political economy, and their implications for welfare. ", + "name": "ECON 263", + "prereqs": [ + "ECON 200B", + "ECON 200C", + "ECON 200A" + ], + "title": "Modeling Behavioral Economics (4)" + }, + "ECON 264": { + "dept": "ECON", + "description": "Design and interpretation of controlled experiments using human subjects. (Previously numbered Econ 207.) ", + "name": "ECON 264", + "prereqs": [], + "title": "Experimental Economics (4)" + }, + "ECON 265": { + "dept": "ECON", + "description": "Experimental findings by economists and psychologists of systematic departures from the classical model of decision making under risk and uncertainty. Issues of dynamic consistency in choice. Development, formal analysis and application of alternative models of risk preferences and beliefs. ", + "name": "ECON 265", + "prereqs": [ + "ECON 200B", + "ECON 200C", + "ECON 200A" + ], + "title": "Alternative Choice Theory (4)" + }, + "ECON 266": { + "dept": "ECON", + "description": "Theoretical and empirical issues in natural resource economics. (Previously numbered Econ 242.) ", + "name": "ECON 266", + "prereqs": [], + "title": "Economics of Natural Resources (4)" + }, + "ECON 267": { + "dept": "ECON", + "description": "The course will cover any of a variety of topics in environmental", + "name": "ECON 267", + "prereqs": [], + "title": "Topics in Environmental and Resource Economics (4)" + }, + "ECON 270": { + "dept": "ECON", + "description": "Theoretical and empirical issues in finance. (Previously numbered Econ 214A.)", + "name": "ECON 270", + "prereqs": [], + "title": "Finance\u2014Core Asset Pricing (4)" + }, + "ECON 272": { + "dept": "ECON", + "description": "Theoretical and empirical issues in finance. (Previously numbered Econ 214C.)", + "name": "ECON 272", + "prereqs": [], + "title": "Finance\u2014Theory and Testing of Intertemporal Asset Pricing Models (4)" + }, + "ECON 280": { + "dept": "ECON", + "description": "Introduction to computing for economists. ", + "name": "ECON 280", + "prereqs": [], + "title": "Computation (2)" + }, + "ECON 281": { + "dept": "ECON", + "description": "Lecture course at an advanced level on a special topic. May be repeated for credit if topic differs. (Previously numbered Econ 267.) ", + "name": "ECON 281", + "prereqs": [], + "title": "Special Topics in Economics (4)" + }, + "ECON 285": { + "dept": "ECON", + "description": "This course is a workshop in which students make formal presentations on the literature and on their own projects and receive input from other students and the instructor. ", + "name": "ECON 285", + "prereqs": [], + "title": "Precandidacy Presentation (2)" + }, + "ECON 286": { + "dept": "ECON", + "description": "The aim of the course is", + "name": "ECON 286", + "prereqs": [], + "title": "Graduate Research Presentation Workshop (3)" + }, + "ECON 291": { + "dept": "ECON", + "description": "Controlled reading and discussion with adviser; literature survey. May be repeated for credit. (S/U grades only.)", + "name": "ECON 291", + "prereqs": [], + "title": "Advanced Field Advising (4)" + }, + "ECON 296": { + "dept": "ECON", + "description": "In this course, students are guided toward the formulation of an original research idea and the writing of an original paper. Students receive support and input through group discussion and also through interaction with the instructor. ", + "name": "ECON 296", + "prereqs": [], + "title": "Original Research Paper (1\u201312)" + }, + "ECON 297": { + "dept": "ECON", + "description": "(S/U grades only.)", + "name": "ECON 297", + "prereqs": [], + "title": "Independent Study (1\u20135)" + }, + "ECON 299": { + "dept": "ECON", + "description": "(S/U grades only.)", + "name": "ECON 299", + "prereqs": [], + "title": "Research in Economics for Dissertation (1\u20139)" + }, + "ECON 3": { + "dept": "ECON", + "description": "Introductory macroeconomics: unemployment, inflation, business cycles, monetary and fiscal policy. ", + "name": "ECON 3", + "prereqs": [ + "ECON 1" + ], + "title": "Principles of Macroeconomics (4)" + }, + "ECON 4": { + "dept": "ECON", + "description": "(Cross-listed with MGT 4.) Recording, organizing, and communicating financial information relating to business entities. Credit not allowed for both Econ 4 and MGT 4.", + "name": "ECON 4", + "prereqs": [], + "title": "Financial Accounting (4)" + }, + "ECON 5": { + "dept": "ECON", + "description": "(Cross-listed with POLI 5D.) Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: Econ 5, POLI 5, or POLI 5D.", + "name": "ECON 5", + "prereqs": [], + "title": "Data Analytics for the Social Sciences (4)" + }, + "ECON 500A-B-C": { + "dept": "ECON", + "description": "The study and development of effective pedagogical materials and techniques in economics. Students who hold appointments as teaching assistants must enroll in this course, but it is open to other students as well. (S/U grades only.)", + "name": "ECON 500A-B-C", + "prereqs": [], + "title": "Teaching Methods in Economics (4-4-4)" + }, + "ECON 87": { + "dept": "ECON", + "description": "The Freshman Seminar Program is designed to", + "name": "ECON 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "EDS 105": { + "dept": "EDS", + "description": "(Same as Phys 180) A course on how people learn and understand key concepts in Newtonian mechanics. Reading in physics and cognitive science plus fieldwork teaching and evaluating K\u201312 students. Useful for students interested in teaching. ", + "name": "EDS 105", + "prereqs": [], + "title": "Teaching and Learning Physics (4)" + }, + "EDS 111": { + "dept": "EDS", + "description": "This course examines how early education programs collaborate with socioculturally diverse families to support child development. Theories will examine social learning, family socialization, risk and resilience, and community engagement and how these theories are enacted in schools, communities, and families. Course assignments will support undergraduates to utilize families\u2019 beliefs, strengths, and resources to support children\u2019s learning with opportunities to engage with them. ", + "name": "EDS 111", + "prereqs": [], + "title": "Child, Family, and Community Partnerships with Schools (4)" + }, + "EDS 112": { + "dept": "EDS", + "description": "Students will read, discuss, and analyze past and present urban education demographics, resources, policies, practices, and outcomes to deepen their knowledge and critique of issues in urban education. ", + "name": "EDS 112", + "prereqs": [], + "title": "Urban Education in the United States (4)" + }, + "EDS 113": { + "dept": "EDS", + "description": "An overview of the experiences, challenges, and opportunities for educating Chicano/Latino students. This course unpacks the socioeconomic and systematic factors that underlie these data. Further, to understand this persistent phenomenon and explore approaches to altering the current pathway of this group, this course will provide a comprehensive overview of Chicana/o-Latina/o students at every state in the P-20 education continuum. ", + "name": "EDS 113", + "prereqs": [], + "title": "Chicanas/os and Latinos in Education: Policy, Practice, and Challenges to Equity (4)" + }, + "EDS 114": { + "dept": "EDS", + "description": "Development and learning are increasingly supported by interactive computing environments. This course will explore technology-supported learning environments, looking at the ways they can be used to promote effective development, learning, and teaching. ", + "name": "EDS 114", + "prereqs": [], + "title": "Cognitive Development and Interactive Computing Environments (4)" + }, + "EDS 115": { + "dept": "EDS", + "description": "This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. Students may not receive credit for both EDS 115 and EDS 115GS. ", + "name": "EDS 115", + "prereqs": [ + "ED 78", + "ED 76" + ], + "title": "Cognitive Development and Education (4)" + }, + "EDS 115GS": { + "dept": "EDS", + "description": "This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for both EDS 115GS and EDS 115. ", + "name": "EDS 115GS", + "prereqs": [], + "title": "Cognitive Development and Education (4)" + }, + "EDS 116": { + "dept": "EDS", + "description": "College students tutoring college students. Curriculum: basic applied learning principles, specifying objectives, planning and designing instruction, testing, evaluation, interpersonal communication skills, study skills. Objectives will be specified for each area. Competency will be assessed by project completion and practicum feedback. This course is not creditable toward professional preparation requirements for the multiple subject credential. ", + "name": "EDS 116", + "prereqs": [], + "title": "The Psychology of Teaching and Structures of Information for Human Learning (4)" + }, + "EDS 117": { + "dept": "EDS", + "description": "(Same as SOCI 117) The mutual influence of language, culture, and education will be explored; explanations of students\u2019 school successes and failures that employ linguistic and cultural variables will be considered; bilingualism and cultural transmission through education. Students may not receive credit for EDS 117 and SOCI 117 and EDS 117GS. ", + "name": "EDS 117", + "prereqs": [], + "title": "Language, Culture, and Education (4)" + }, + "EDS 117GS": { + "dept": "EDS", + "description": "The mutual influence of language, culture, and education will be explored; explanations of students\u2019 school successes and failures that employ linguistic and cultural variables will be considered; bilingualism and cultural transmission through education. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for EDS 117GS and EDS 117 and SOCI 117. ", + "name": "EDS 117GS", + "prereqs": [], + "title": "Language, Culture, and Education (4)" + }, + "EDS 118": { + "dept": "EDS", + "description": "This course introduces prospective secondary teachers to the cognitive, social, and emotional development of adolescents, including developmental learning theory, the teaching/learning process, effective learning environments, and cross-cultural variation in development. Implications for classroom practice are drawn.", + "name": "EDS 118", + "prereqs": [], + "title": "Adolescent Development and Education (4)" + }, + "EDS 120": { + "dept": "EDS", + "description": "The course engages students in field research aimed at supporting education reform efforts in local schools. Students are introduced to a design-based, applied orientation to educational research on equity and diversity. In collaboration with local school leaders, students conduct qualitative research projects on a range of issues that impact youth in schools. Students will examine research on educational equity, theories of education reform, and qualitative research principles and methods. Students are required to travel to school sites. ", + "name": "EDS 120", + "prereqs": [ + "HILD 7A", + "DOC 100D", + "HILD 7C", + "HILD 7B", + "DOC 1", + "HITO 156", + "ANTH 23", + "ANTH 21", + "HITO 136", + "SOCI 117", + "SOCI 139", + "EDS 117", + "EDS 113", + "EDS 112", + "LTCS 130", + "EDS 136", + "ANTH 131", + "POLI 100Q", + "HIUS 180", + "EDS 126", + "EDS 125", + "POLI 100H", + "POLI 100O", + "SOCI 127", + "SOCI 126", + "USP 129", + "HIUS 136", + "POLI 108", + "ETHN 3", + "ETHN 2" + ], + "title": "Introduction to Design-Based Educational Research: A Field Experience for Improving San Diego Schools (4)" + }, + "EDS 121A/Math 121A": { + "dept": "EDS", + "description": "Develop teachers\u2019 knowledge base (knowledge of mathematics content, pedagogy, and student learning) in the context of advanced mathematics. This course builds on the previous courses where these components of knowledge were addressed exclusively in the context of high-school mathematics. ", + "name": "EDS 121A/Math 121A", + "prereqs": [ + "MATH 10C", + "EDS 30M", + "EDS 30", + "MATH 20C" + ], + "title": "Foundations of Teaching and Learning Mathematics I (4)" + }, + "EDS 121B/Math": { + "dept": "EDS", + "description": "121B. Foundations of Teaching and Learning Math II (4)", + "name": "EDS 121B/Math", + "prereqs": [], + "title": "" + }, + "EDS 122/Chem 187": { + "dept": "EDS", + "description": "Foundations of Teaching and Learning Science (4)", + "name": "EDS 122/Chem 187", + "prereqs": [], + "title": "" + }, + "EDS 123/Chem 188": { + "dept": "EDS", + "description": "In the lecture and observation format, students", + "name": "EDS 123/Chem 188", + "prereqs": [], + "title": "Capstone Seminar in Science Education (4)" + }, + "EDS 124A": { + "dept": "EDS", + "description": "Develop educators\u2019 knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124A and EDS 124AR. ", + "name": "EDS 124A", + "prereqs": [], + "title": "Teaching Computation in the Digital World (4)" + }, + "EDS 124AR": { + "dept": "EDS", + "description": "This online course develops educators\u2019 knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124AR and EDS 124A. ", + "name": "EDS 124AR", + "prereqs": [], + "title": "Teaching Computation in the Digital World (4)" + }, + "EDS 125": { + "dept": "EDS", + "description": "This course provides a historical overview and models of bilingual education in the United States. Students will examine socio-cultural, theoretical, and policy issues associated with native language and second-language instruction, and legal requirements for public bilingual program.", + "name": "EDS 125", + "prereqs": [], + "title": "History, Politics, and Theory of Bilingual Education (4)" + }, + "EDS 126": { + "dept": "EDS", + "description": "(Same as SOCI 126) The social organization of education in the United States and other societies; the functions of education for individuals and society; the structure of schools; educational decision making; educational testing; socialization and education; formal and informal education; cultural transmission. ", + "name": "EDS 126", + "prereqs": [], + "title": "Social Organization of Education (4)" + }, + "EDS 128 A-B": { + "dept": "EDS", + "description": "This course series is for undergraduates who are exploring a career in elementary school teaching. Topics addressed include: theories of teaching and learning; research on cognition and motivation; and the cultural context of classroom teaching and learning. EDS 128A focuses on the learner in the teaching-learning interaction and EDS 128B focuses on the teacher in the teaching-learning interaction. ", + "name": "EDS 128 A-B", + "prereqs": [ + "EDS 139", + "EDS 130", + "EDS 128A", + "EDS 134", + "EDS 128B" + ], + "title": "Introduction to Teaching and Learning (Elementary) (4-4)" + }, + "EDS 129 A-B-C": { + "dept": "EDS", + "description": "This course series is for undergraduates who are exploring a career in teaching secondary school. Topics addressed include: theories of teaching and learning processes and motivation for science, mathematics, and English instruction. EDS 129A focuses on the analysis of the needs of individual learners and small group instruction techniques; EDS 129B emphasizes the various roles of the classroom teacher and planning individual lessons; and EDS 129C emphasizes the assessment of student work and longer-range curriculum planning. ", + "name": "EDS 129 A-B-C", + "prereqs": [ + "EDS 139", + "EDS 138", + "EDS 129B", + "EDS 129C", + "EDS 129A", + "EDS 136" + ], + "title": "Introduction to Teaching and Learning (Secondary) (4-4-4)" + }, + "EDS 130": { + "dept": "EDS", + "description": "This course focuses on the role of undergraduate mentors in raising academic expectations for students and families traditionally underrepresented at the university. The relationship between the school and community, the social and political organization of elementary schools, and the academic achievement of elementary children are examined. ", + "name": "EDS 130", + "prereqs": [ + "EDS 139" + ], + "title": "Introduction to Academic Mentoring of Elementary/School Students (4)" + }, + "EDS 131": { + "dept": "EDS", + "description": "This course investigates early child development (birth through eight years) and education and the role of high quality early education on reducing inequities among diverse populations. Field experience and seminar focus on applying research and theory to experiences in early childhood classrooms (P\u20133). ", + "name": "EDS 131", + "prereqs": [ + "EDS 131", + "EDS 139" + ], + "title": "Early Childhood Development and Education (4)" + }, + "EDS 132": { + "dept": "EDS", + "description": "The \u201cHands-On Lab\u201d enables UC San Diego students to practice inquiry-based instructional strategies with elementary or high school students in authentic laboratory situations supervised be EDS faculty members. The hands-on lessons provide early teaching experience in science for undergraduates exploring teaching as a career. All lessons are based on the California content standards in science. Recommended preparation: knowledge of STEM field subject matter. ", + "name": "EDS 132", + "prereqs": [], + "title": "Hands-On Seminar (4)" + }, + "EDS 136": { + "dept": "EDS", + "description": "This course focuses on the role of undergraduate tutors in building academic resiliency in secondary students traditionally underrepresented at the university. The relationship between the school and community, the social and political organization of secondary schools, the philosophical, sociological, and political issues which relate to the US secondary educational system, and the academic achievement of secondary children are examined. ", + "name": "EDS 136", + "prereqs": [ + "EDS 139" + ], + "title": "Introduction to Academic Tutoring of Secondary School Students (4)" + }, + "EDS 137": { + "dept": "EDS", + "description": "to Discipline-Specific Teaching and Learning (4)", + "name": "EDS 137", + "prereqs": [], + "title": "Introduction" + }, + "EDS 138": { + "dept": "EDS", + "description": "to Academic Tutoring at Charter Schools (4)", + "name": "EDS 138", + "prereqs": [], + "title": "Introduction" + }, + "EDS 139": { + "dept": "EDS", + "description": "Students are placed in local schools and work with students in classrooms and the community. Students work on educational activities with K\u201312 students a minimum of four hours/week. P/NP grades only. May be taken for credit twelve times. Corequisites: One of the following courses must be taken concurrently: EDS 128A-B, or 129A-B-C, 130, 131, 134, 136, 137, 138, 140, or 141. ", + "name": "EDS 139", + "prereqs": [], + "title": "Practicum in Teaching and Learning (2)" + }, + "EDS 140": { + "dept": "EDS", + "description": "EDS 140 builds on the students\u2019 foundational knowledge about pre-K\u201312 public education obtained in introductory PAL courses. This course is conducted as a seminar, where students shape their research questions, theoretical frameworks, and data collection methods for the action research projects. In conjunction to their action research projects, EDS 140 students serve as mentors, tutors, and/or interns at local low-income, underserved pre-K\u201312 public schools and/or community centers. If students wish to continue their service-learning practicum at their host school, they can take EDS 139. ", + "name": "EDS 140", + "prereqs": [ + "EDS 139", + "EDS 138", + "EDS 131", + "EDS 130", + "EDS 134", + "EDS 137", + "EDS 136", + "EDS 140" + ], + "title": "Introduction to Action Research in Pre-K\u201312 Education (4)" + }, + "EDS 141": { + "dept": "EDS", + "description": "Course builds on students\u2019 prior knowledge, experiences, and work from PAL foundations and intermediate courses to prepare them to conduct action research on relevant P\u201312 education issues. Students in the course will continue serving as tutors/mentors/interns in schools and communities. Students will also learn how to design educational research, carry out research in ethical ways, and analyze data for themes that the schools and communities find important. ", + "name": "EDS 141", + "prereqs": [ + "EDS 139", + "EDS 138", + "EDS 131", + "EDS 130", + "EDS 134", + "EDS 137", + "EDS 136", + "EDS 140" + ], + "title": "Action Research in Pre-K\u201312 Education: Advanced Practicum in Pre-K\u201312 Schools and Communities (4)" + }, + "EDS 150": { + "dept": "EDS", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "EDS 150", + "prereqs": [], + "title": "Chancellor\u2019s Associates Scholars Program Transfer Introductory Course (2)" + }, + "EDS 180": { + "dept": "EDS", + "description": "This course examines special topics in P\u201312 education from a variety of theoretical and pedagogical perspectives. Topics will address pertinent and current issues related to P\u201312", + "name": "EDS 180", + "prereqs": [], + "title": "Topics in Education Studies (4)" + }, + "EDS 190": { + "dept": "EDS", + "description": "Supervised research studies with individual topics selected according to students\u2019 special interests. Students will develop a research proposal and begin to gather and analyze data. ", + "name": "EDS 190", + "prereqs": [], + "title": "Research Practicum (1\u20136)" + }, + "EDS 195": { + "dept": "EDS", + "description": "Advanced EDS students are prepared in effective methods of supervising the preparation of UC San Diego students serving as paraprofessionals in K\u201312 classrooms. Topics covered include: classroom management, interpersonal relations, supervision techniques, multicultural and multilingual education, politics in the school, and curriculum development. Each student serves as a discussion leader and conducts at least two workshops. ", + "name": "EDS 195", + "prereqs": [], + "title": "Apprentice Teaching (2\u20134)" + }, + "EDS 198": { + "dept": "EDS", + "description": "Directed group study, guided reading, and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ", + "name": "EDS 198", + "prereqs": [], + "title": "Directed Group Study (4\u20132)" + }, + "EDS 199": { + "dept": "EDS", + "description": "Individual guided reading and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ", + "name": "EDS 199", + "prereqs": [], + "title": "Special Studies (4)" + }, + "EDS 201": { + "dept": "EDS", + "description": "to Resources for Teaching and Learning (4)", + "name": "EDS 201", + "prereqs": [], + "title": "Introduction" + }, + "EDS 203": { + "dept": "EDS", + "description": "This course will review current literature on effective applications of technology in the classroom. Students will also become fluent in the use of productivity tools, presentation software, and web development for teaching and learning; critique software relevant to their area of teaching; and develop an educational activity based on their review of the literature that harnesses the power of technology. ", + "name": "EDS 203", + "prereqs": [ + "ED 79", + "ED 78", + "ED 80", + "ED 77", + "ED 76" + ], + "title": "Technology, Teaching, and Learning (4)" + }, + "EDS 204": { + "dept": "EDS", + "description": "and Professional Assessment (4)", + "name": "EDS 204", + "prereqs": [], + "title": "Technology" + }, + "EDS 205A": { + "dept": "EDS", + "description": "This course introduces principles and practices of reflective teaching. Student teachers and interns will systematically document their practice teaching and analyze observation data to improve performance. Students will collaborate with supervisors and expert teachers throughout the yearlong preservice teaching experience. ", + "name": "EDS 205A", + "prereqs": [], + "title": "Reflective Teaching Practice (2)" + }, + "EDS 205B": { + "dept": "EDS", + "description": "This course introduces principles and practices of reflective teaching. Student teachers and interns will systematically document their practice teaching and analyze observation data to improve performance. Students will collaborate with supervisors and expert teachers throughout the yearlong preservice teaching experience. ", + "name": "EDS 205B", + "prereqs": [ + "EDS 205A" + ], + "title": "Reflective Teaching Practice (2)" + }, + "EDS 206": { + "dept": "EDS", + "description": "Performance Assessment Portfolio (4)", + "name": "EDS 206", + "prereqs": [], + "title": "Teaching" + }, + "EDS 20S": { + "dept": "EDS", + "description": "Students will study discipline-specific principles of effective learning, including critical thinking, problem solving, collaboration, and group communication. Laboratory and hypothesis testing, library research and writing skills, and self-assessment. Students will explore concepts and procedures in mathematics, science, and economics. ", + "name": "EDS 20S", + "prereqs": [], + "title": "Introduction to Principles of Learning (4)" + }, + "EDS 21S": { + "dept": "EDS", + "description": "Reading, writing, and speaking exercises will introduce students to the teaching conventions and learning expectations of American universities. Students will use writing as a means of academic inquiry to explore the culture of higher education in the United States and will gain practice with appropriate style, structure, and mechanics. P/NP grades only. ", + "name": "EDS 21S", + "prereqs": [], + "title": "Writing and Learning\u2014Triton Transition (4)" + }, + "EDS 22": { + "dept": "EDS", + "description": "Cuba\u2019s educational system achieves higher outcomes than any other country in Latin America, and compared to the United States, it represents a very different institutional structure. Cuban education serves as an explicit vehicle for the transmission of Cuban culture and historical consciousness. This course examines Cuba\u2019s emphasis on educational achievement following the triumph of its revolution in 1959, including institutional structures, pedagogy, and content. ", + "name": "EDS 22", + "prereqs": [], + "title": "Education in Cuba: Institutional Structures, History, and Culture (2)" + }, + "EDS 229": { + "dept": "EDS", + "description": "This course prepares K\u201312 teacher-researchers", + "name": "EDS 229", + "prereqs": [], + "title": "Introduction to Educational Resources (4)" + }, + "EDS 22S": { + "dept": "EDS", + "description": "This course provides a combination of seminar work and intensive field experience after the end of the spring quarter, during special summer session. Topics are introduced and analyzed in seminars and reinforced and expanded upon in field visits to historic and cultural sites in Cuba.\u00a0Additional fees may be required for travel expenses. ", + "name": "EDS 22S", + "prereqs": [ + "EDS 22" + ], + "title": "Education in Cuba\u2014Field Experience (4)" + }, + "EDS 23": { + "dept": "EDS", + "description": "Course focuses on challenges that confront college students in their second year of higher education and solutions. Emphasis on historically underrepresented students of color with more complex adjustment to college. Analysis of national trends from research including High-Impact Practices. P/NP grades only. ", + "name": "EDS 23", + "prereqs": [], + "title": "Success and Satisfaction in the Second Year of Higher Education: Research Trends and Conclusions (2)" + }, + "EDS 230A-B-C": { + "dept": "EDS", + "description": "A yearlong course sequence, which provides an extensive overview of curriculum, design principles appropriate for K\u201312 instruction. Consensus and model building methods will be discussed using case studies of curriculum research and development projects appropriate for various subject areas and grade levels. Participants will design, implement, and evaluate a curriculum project in their own classrooms. ", + "name": "EDS 230A-B-C", + "prereqs": [], + "title": "Research in Curriculum Design (4-4-4)" + }, + "EDS 231": { + "dept": "EDS", + "description": "Topics in Instructional Practices (4)", + "name": "EDS 231", + "prereqs": [], + "title": "Advanced" + }, + "EDS 232": { + "dept": "EDS", + "description": "This course explores topical issues in education. It focuses on recent developments that have broad implications for research and practice in teaching and learning. Course topics will vary each time the course is offered. ", + "name": "EDS 232", + "prereqs": [], + "title": "Special Topics in Education (4)" + }, + "EDS 233A": { + "dept": "EDS", + "description": "Current topics and issues in education and educational research methodology, including action research, participant observation, ethnography, and survey research. This is the first in a two-course series. ", + "name": "EDS 233A", + "prereqs": [], + "title": "Topics in Education Research and Design (2)" + }, + "EDS 233B": { + "dept": "EDS", + "description": "in Education Research and Design (2)", + "name": "EDS 233B", + "prereqs": [], + "title": "Topics" + }, + "EDS 240A": { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "name": "EDS 240A", + "prereqs": [], + "title": "Research" + }, + "EDS 240B": { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "name": "EDS 240B", + "prereqs": [], + "title": "Research" + }, + "EDS 240C": { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "name": "EDS 240C", + "prereqs": [], + "title": "Research" + }, + "EDS 250": { + "dept": "EDS", + "description": "Educational Research and Practice (4)", + "name": "EDS 250", + "prereqs": [], + "title": "Equitable" + }, + "EDS 251": { + "dept": "EDS", + "description": "This course explores formal and informal learning environments with documented records of successful student engagement. Using an array of curriculum and learning theories, students investigate new and traditional pedagogical practices, curricula, and learning environments for elements of transformative practices. Students critique current literature on teaching for change as it applies to the contexts they chose to study, and identify new possibilities for teaching and learning in diverse student contexts. Letter grades only.\u00a0", + "name": "EDS 251", + "prereqs": [], + "title": "Transforming Learning Environments (4)" + }, + "EDS 252": { + "dept": "EDS", + "description": "The course focuses on factors that shape the unequal distribution of educational opportunities for marginalized groups. Students will interrogate societal and school structures, and underlying socio-cultural processes that impact engagement and outcomes for marginalized groups or students. Students will explore theories on student success and failure, family and community connections, and identity formation in relation to transforming outcomes. Letter grades only. ", + "name": "EDS 252", + "prereqs": [], + "title": "Transforming Inequities in Student Outcomes (4)" + }, + "EDS 253": { + "dept": "EDS", + "description": "This course exposes students to past and present systemic policies that influence the practices and efficiency of the P\u201320 system. Students will explore the barriers and facilitators of successful policy interventions at the local, state, and federal levels of education policy. Attention is given to each segment of the educational continuum, exposing students to strategies for transforming the educational system to ensure equitable opportunities to learn and achieve. ", + "name": "EDS 253", + "prereqs": [], + "title": "Transforming Educational Systems and Policy (4)" + }, + "EDS 254": { + "dept": "EDS", + "description": "Introduction to quantitative concepts, descriptive statistics, and fundamentals of statistical inference in social science. Emphasis on applying statistical concepts\u2014how to select the appropriate statistical techniques, execute those techniques, examine assumptions necessary for the techniques to work appropriately, interpret analytic results, and summarize findings in a professional manner. Hands-on computer-based practice of quantitative analyses will be an integral part of the course. Letter grades only. ", + "name": "EDS 254", + "prereqs": [], + "title": "Introduction to Research Design and Quantitative Data Analysis (4)" + }, + "EDS 255": { + "dept": "EDS", + "description": "In this course, students will extend their knowledge of statistical methods based on the general linear model, including correlation, regression, analysis of variance, and analysis of covariance to address questions that emerge in educational and social science research. Students will address a variety of substantive research questions by analyzing data and fitting increasingly sophisticated analytic models. Letter grades only. ", + "name": "EDS 255", + "prereqs": [], + "title": "Advanced Quantitative Data Analysis (4)" + }, + "EDS 256": { + "dept": "EDS", + "description": "This course offers an introduction to mixed methods research in education studies. Participants will learn how qualitative and quantitative data can be integrated to capture the perspectives of individuals and organizations to answer complex research questions. The course will cover formulating research questions, collecting and analyzing different types of data, choosing appropriate mixed methods designs, and interpreting mixed methods results. Letter grades only. ", + "name": "EDS 256", + "prereqs": [ + "EDS 264", + "EDS 254" + ], + "title": "Introduction to Mixed Methods Research Design and Analysis (4)" + }, + "EDS 257": { + "dept": "EDS", + "description": "This course will guide doctoral students in conducting rigorous case study research in the social sciences and the field of education. The course will address case study design, data collection, data analysis, and reporting. This will be accomplished through training on these stages of case study research. It will also provide hands-on experience designing case studies and analyzing case study data. The course will equip students with all the necessary tools to conduct independent case studies. Letter grades only. ", + "name": "EDS 257", + "prereqs": [], + "title": "Case Study Research (4)" + }, + "EDS 259": { + "dept": "EDS", + "description": "Universities are exploring new ways to convey the relevance of research directly to interested stakeholders beyond the academy. In this course, students will learn and practice a variety of strategies and tools for communicating their scholarship to a range of audiences, actively participate in discussion of education equity and access, and co-construct meaningful partnerships with education stakeholders. S/U grades only. May be taken for credit two times. ", + "name": "EDS 259", + "prereqs": [], + "title": "Communicating Research (2)" + }, + "EDS 260A": { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "name": "EDS 260A", + "prereqs": [], + "title": "Educational" + }, + "EDS 260B": { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "name": "EDS 260B", + "prereqs": [], + "title": "Educational" + }, + "EDS 260C": { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "name": "EDS 260C", + "prereqs": [], + "title": "Educational" + }, + "EDS 261A": { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "name": "EDS 261A", + "prereqs": [], + "title": "Advanced" + }, + "EDS 261B": { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "name": "EDS 261B", + "prereqs": [], + "title": "Advanced" + }, + "EDS 261C": { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "name": "EDS 261C", + "prereqs": [], + "title": "Advanced" + }, + "EDS 262A": { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the first of a three-course series. ", + "name": "EDS 262A", + "prereqs": [], + "title": "Dissertation Writing Seminar (4)" + }, + "EDS 262B": { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the second of a three-course series. ", + "name": "EDS 262B", + "prereqs": [ + "EDS 262A" + ], + "title": "Dissertation Writing Seminar (4)" + }, + "EDS 262C": { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third of a three-course series. ", + "name": "EDS 262C", + "prereqs": [ + "EDS 262B" + ], + "title": "Dissertation Writing Seminar (4)" + }, + "EDS 263": { + "dept": "EDS", + "description": "This seminar will examine basic approaches to the study of human development, drawing on theory, research, and methods from multiple disciplines to study how children and adults develop within the context of cultural communities. It includes discussion of cultural practices as mediators on developmental outcomes, notions of universals and diversity, and individualism and familism. We will discuss the complex ways that individual and sociocultural factors interact in learning and development.", + "name": "EDS 263", + "prereqs": [], + "title": "Developmental Theory and Culture (4)" + }, + "EDS 264": { + "dept": "EDS", + "description": "This course provides an introduction to qualitative approaches in education research. Students explore various qualitative methods and analytic strategies and gain hands-on experiences analyzing qualitative data collected on topics relevant to the study of education. The assigned readings include scholarship on the philosophical underpinnings and practice of qualitative research and varied examples of published qualitative research studies. ", + "name": "EDS 264", + "prereqs": [], + "title": "Introduction to Qualitative Analysis (4)" + }, + "EDS 265": { + "dept": "EDS", + "description": "This course series addresses special topics in education research and data analysis. Students explore a faculty-specified qualitative research method and analytic approach. Approaches may include case studies, video analysis, mixed methods, naturalistic observations, ethnography, and netnography. The assigned readings include scholarship on the practice and philosophical underpinnings of the specified qualitative research approach and examples of published qualitative studies. ", + "name": "EDS 265", + "prereqs": [], + "title": "Special Topics in Qualitative Methods (4)" + }, + "EDS 266": { + "dept": "EDS", + "description": "This course series addresses special topics in quantitative education research and data analysis. Students explore a faculty-specified quantitative research method and analytic approach. Approaches may include social network analysis, hierarchical linear modeling, latent class analysis, and structural equation modeling. The readings include scholarship on the practice and philosophical underpinnings of the specified quantitative research approach and examples of published quantitative studies. Letter grades only. ", + "name": "EDS 266", + "prereqs": [], + "title": "Special Topics in Quantitative Methods (4)" + }, + "EDS 267": { + "dept": "EDS", + "description": "This seminar integrates a range of perspectives to understand the contexts of teaching and change. There are three main foci: 1) how the profession of teaching in PK-16 is shaped by factors in the broader policy, political, and social context; 2) change, change agentry, and obstacles to change in educational institutions; 3) design-based research models to effect changes in the context of teaching. An international comparative approach is critical to consider levers for educational improvement. Letter grades only. ", + "name": "EDS 267", + "prereqs": [], + "title": "Contexts for Teaching and Change (4)" + }, + "EDS 270": { + "dept": "EDS", + "description": "and Equity in Educational Reform (4)", + "name": "EDS 270", + "prereqs": [], + "title": "Leadership" + }, + "EDS 272": { + "dept": "EDS", + "description": "This course examines schooling from an anthropological perspective, focusing on the impact of social and cultural forces on teaching and learning in US public schools using comparative materials from other societies and settings. ", + "name": "EDS 272", + "prereqs": [], + "title": "Education and Culture (4)" + }, + "EDS 278/COGR 278": { + "dept": "EDS", + "description": "Talking Culture, Culture Talking: Voices of Diversity (4)", + "name": "EDS 278/COGR 278", + "prereqs": [], + "title": "" + }, + "EDS 280": { + "dept": "EDS", + "description": "This course will present the evolution of leadership thought and theory, with an emphasis on the distinction between, and interrelatedness of, effective management and leadership. The ethics of leadership practice and epistemological perspectives of emerging leadership styles will be explored, and students will have opportunities to reflect on the nature of leadership as it is practiced in educational settings. Applying critical, self-reflective leadership practice through structured activities is also an element of this course.", + "name": "EDS 280", + "prereqs": [], + "title": "Rethinking Leadership (4)" + }, + "EDS 281": { + "dept": "EDS", + "description": "This course will explore various models of curriculum and instruction in response to students\u2019 learning needs. It also will examine models of school organization and the leader\u2019s role and responsibility in developing a school culture that promotes student achievement, using evidence-based decision making. A major emphasis will be on evaluating research on which theories and practice are based. ", + "name": "EDS 281", + "prereqs": [], + "title": "Leadership for Learning (4)" + }, + "EDS 282": { + "dept": "EDS", + "description": "This course will address theories and practices for achieving schools and classrooms that are informed by and built around the participation of diverse communities and cultures. The emphasis is on how leadership intersects with sociohistorical and sociocultural theories that suggest that the organization of schools and instruction is critical to student inclusion and outcomes. A basic premise of this course is that a socially just learning theory begins with using all of the resources and knowledge of families, communities, and cultures in formulating policy and practice. ", + "name": "EDS 282", + "prereqs": [], + "title": "Leadership for a Diverse Society (4)" + }, + "EDS 283": { + "dept": "EDS", + "description": "This course will present multiple theories of organizational change, explore group processes and identify models of decision making, and analyze human motivation theories. Establishing and nurturing a purpose-driven organization, while dealing with competing demands, will be discussed. A major emphasis in this course is on people as agents of change and on the creation of high-quality ethical and productive workplaces where employees can achieve success and satisfaction, while advancing the mission of the educational organization. ", + "name": "EDS 283", + "prereqs": [], + "title": "Leadership for Organizational Change (4)" + }, + "EDS 284": { + "dept": "EDS", + "description": "This course will investigate the skills and dispositions needed for students to lead the development of learning organizations. Faculty will teach and model concepts of working with people within educational organizations and programs. Emphasis will be placed on individual\u2019s team development and facilitation, organizational communications, adult learning, and professional development. ", + "name": "EDS 284", + "prereqs": [], + "title": "Leadership for Organizational Development (4)" + }, + "EDS 285": { + "dept": "EDS", + "description": "This course addresses interdisciplinary influences on leadership practice within learning organizations. Contributions from scholars in futures\u2019 studies, including those influenced by modernism and postmodernism, will be used to explore topics such as long-range planning, demographic trends, technology, and brain theory. ", + "name": "EDS 285", + "prereqs": [], + "title": "Leadership for the Future (4)" + }, + "EDS 286": { + "dept": "EDS", + "description": "This course explores topical issues in the field of leadership. It focuses on recent developments that have broad implications for research and practice in educational leadership. Course topics will vary each time the course is offered. ", + "name": "EDS 286", + "prereqs": [], + "title": "Advanced Topics in Leadership (4)" + }, + "EDS 287A": { + "dept": "EDS", + "description": "Research and Evaluation Design A (4)", + "name": "EDS 287A", + "prereqs": [], + "title": "Educational" + }, + "EDS 287B": { + "dept": "EDS", + "description": "Research and Evaluation Design B (4)", + "name": "EDS 287B", + "prereqs": [], + "title": "Educational" + }, + "EDS 287C": { + "dept": "EDS", + "description": "Research and Evaluation Design C\u2014Qualitative Methods (4)", + "name": "EDS 287C", + "prereqs": [], + "title": "Educational" + }, + "EDS 288A": { + "dept": "EDS", + "description": "This first course in a three-course series", + "name": "EDS 288A", + "prereqs": [], + "title": "Advanced Research and Evaluation Methods A\u2014Quantitative Methods (4)" + }, + "EDS 288B": { + "dept": "EDS", + "description": "Research and Evaluation Methods B\u2014Qualitative Methods (4)", + "name": "EDS 288B", + "prereqs": [], + "title": "Advanced" + }, + "EDS 288C": { + "dept": "EDS", + "description": "Research and Evaluation Methods C\u2014Quantitative Methods (4)", + "name": "EDS 288C", + "prereqs": [], + "title": "Advanced" + }, + "EDS 289A": { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the first in a four-course series. ", + "name": "EDS 289A", + "prereqs": [], + "title": "Dissertation Writing Seminar (4)" + }, + "EDS 289B": { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the second in a four-course series. ", + "name": "EDS 289B", + "prereqs": [ + "EDS 289A" + ], + "title": "Dissertation Writing Seminar (4)" + }, + "EDS 289C": { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third in a four-course series. ", + "name": "EDS 289C", + "prereqs": [ + "EDS 289B" + ], + "title": "Dissertation Writing Seminar (4)" + }, + "EDS 289D": { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the fourth course in a four-course series. ", + "name": "EDS 289D", + "prereqs": [ + "EDS 289C" + ], + "title": "Dissertation Writing Seminar (4)" + }, + "EDS 290": { + "dept": "EDS", + "description": "Supervised research studies with individual topics selected according to students\u2019 special interests. Students will develop a research proposal appropriate for MA thesis, begin to gather and analyze data. ", + "name": "EDS 290", + "prereqs": [], + "title": "Research Practicum (1\u201312)" + }, + "EDS 291A": { + "dept": "EDS", + "description": "Students use their placements in local schools and educational settings to examine leadership research and practice topics raised in the Leadership core courses and Research and Evaluation Design/Methods courses. This is the first in a three-course series. ", + "name": "EDS 291A", + "prereqs": [], + "title": "Leadership Research Practicum (2)" + }, + "EDS 291B": { + "dept": "EDS", + "description": "Students use their placements in local schools and educational settings to examine leadership research and practice topics raised in the Leadership core courses and Research and Evaluation Design/Methods courses. This is the second course in a three-course series. ", + "name": "EDS 291B", + "prereqs": [ + "EDS 291A" + ], + "title": "Leadership Research Practicum (2)" + }, + "EDS 292": { + "dept": "EDS", + "description": "This course will provide students with time, resources, and guidance for the purpose of developing a review of literature on a student-related topic, which typically becomes the focus of the dissertation research project. Students will be expected to use a variety of research tools in order to discover and identify relevant information. ", + "name": "EDS 292", + "prereqs": [], + "title": "Qualifying Paper Preparation (2)" + }, + "EDS 293A": { + "dept": "EDS", + "description": "Leadership Research Practicum (2)", + "name": "EDS 293A", + "prereqs": [], + "title": "Advanced" + }, + "EDS 293B": { + "dept": "EDS", + "description": "Leadership Research Practicum (2)", + "name": "EDS 293B", + "prereqs": [], + "title": "Advanced" + }, + "EDS 294A": { + "dept": "EDS", + "description": "Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the first course of a two-course series. ", + "name": "EDS 294A", + "prereqs": [], + "title": "Colloquium on Educational Leadership (2)" + }, + "EDS 294B": { + "dept": "EDS", + "description": "Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the second course in a two-course series. ", + "name": "EDS 294B", + "prereqs": [ + "EDS 294A" + ], + "title": "Colloquium on Educational Leadership (2)" + }, + "EDS 295": { + "dept": "EDS", + "description": "Research for the master\u2019s thesis (Educational Research) or curriculum design portfolio thesis (Curriculum Design). Open for repeated registration up to eight units (S/U grade only). ", + "name": "EDS 295", + "prereqs": [], + "title": "MA Thesis (1\u20138)" + }, + "EDS 296": { + "dept": "EDS", + "description": "The RAC will introduce students to transformational research and practice in education through involvement in faculty-led research teams. The RAC will provide a structured environment for mentoring through engagement in collaborative research activities. Each RAC will conceptualize and conduct research that is likely to result in student presentations at educational conferences and in student publications. The RAC also provides support for the analysis and write-up of dissertation research. S/U grades only. May be repeated for credit for a maximum of thirty-eight units. ", + "name": "EDS 296", + "prereqs": [], + "title": "Research Apprenticeship Course (2\u20134)" + }, + "EDS 297": { + "dept": "EDS", + "description": "Study and analysis of specific topics under the guidance of a faculty member. Offered for repeated registration. ", + "name": "EDS 297", + "prereqs": [], + "title": "Directed Group Study (1\u20136)" + }, + "EDS 298": { + "dept": "EDS", + "description": "Individual guided study and/or independent research in an area not covered by present course offerings. Offered for repeated registration. ", + "name": "EDS 298", + "prereqs": [], + "title": "Independent Study (1\u20136)" + }, + "EDS 299": { + "dept": "EDS", + "description": "Directed research on dissertation topic for students who have been admitted to candidacy for the EdD or PhD program. May be taken for credit up to four times for a maximum of forty-eight units. ", + "name": "EDS 299", + "prereqs": [], + "title": "Dissertation Research (1\u201312)" + }, + "EDS 30/Math 95": { + "dept": "EDS", + "description": "Revisit students\u2019 learning difficulties in mathematics in more depth to prepare students to make meaningful observations of how K\u201312 teachers deal with these difficulties. Explore how instruction can use students\u2019 knowledge to pose problems that stimulate students\u2019 intellectual curiosity.", + "name": "EDS 30/Math 95", + "prereqs": [], + "title": "Introduction to Math Teaching (2)" + }, + "EDS 31/Chem 96": { + "dept": "EDS", + "description": "Introduction to Teaching Science (2)", + "name": "EDS 31/Chem 96", + "prereqs": [], + "title": "" + }, + "EDS 342A": { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "name": "EDS 342A", + "prereqs": [], + "title": "ASL-English" + }, + "EDS 342B": { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "name": "EDS 342B", + "prereqs": [], + "title": "ASL-English" + }, + "EDS 342C": { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "name": "EDS 342C", + "prereqs": [], + "title": "ASL-English" + }, + "EDS 349": { + "dept": "EDS", + "description": "Education specialist credential candidate performs student teaching in participating schools for a minimum of seven weeks full-time under the supervision of a cooperating teacher and university supervisor. The field experience provides professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Deaf and Hard of Hearing Specialist and BCLAD Credential. ", + "name": "EDS 349", + "prereqs": [], + "title": "Deaf Education Specialist Student Teaching Practicum (9)" + }, + "EDS 351": { + "dept": "EDS", + "description": "Students will examine the principles of second language acquisition and approaches to bilingual education. They will develop a repertoire of strategies for teaching in elementary or secondary content areas. ", + "name": "EDS 351", + "prereqs": [], + "title": "Teaching the English Language Learner (4)" + }, + "EDS 352A": { + "dept": "EDS", + "description": "First course in a two-course sequence. Provides a theoretical and practical grounding in various pedagogical techniques for teaching in bilingual settings. Course covers principles of bilingualism and bilingual pedagogy; transfer between primary and target languages as appropriate to the language(s) of emphasis. Candidates study methods for teaching primary and target languages in a variety of program models; curriculum/assessment practices; and approaches for interacting with families/communities. ", + "name": "EDS 352A", + "prereqs": [], + "title": "Bilingual Instructional Practices I (2)" + }, + "EDS 352B": { + "dept": "EDS", + "description": "Second course in a two-course sequence. Provides a theoretical and practical grounding in various pedagogical techniques for teaching in bilingual settings. Course covers principles of bilingualism and bilingual pedagogy; transfer between primary and target languages as appropriate to the language(s) of emphasis. Candidates study methods for teaching primary and target languages in a variety of program models; curriculum/assessment practices; and approaches for interacting with families/communities.\u00a0", + "name": "EDS 352B", + "prereqs": [ + "EDS 352A" + ], + "title": "Bilingual Instructional Practices II (2)" + }, + "EDS 355A": { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "name": "EDS 355A", + "prereqs": [], + "title": "Advanced" + }, + "EDS 355B": { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "name": "EDS 355B", + "prereqs": [], + "title": "Advanced" + }, + "EDS 355C": { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "name": "EDS 355C", + "prereqs": [], + "title": "Advanced" + }, + "EDS 361A": { + "dept": "EDS", + "description": "First course in a three-course sequence. It provides pedagogical methods for multiple-subject teaching. Diverse subject areas (math, science, fine arts, P.E., and social studies) are integrated into a single intercurricular course of study by emphasizing activity/inquiry techniques of instruction. ", + "name": "EDS 361A", + "prereqs": [], + "title": "Innovative Instructional Practices I (6)" + }, + "EDS 361B": { + "dept": "EDS", + "description": "Second course in three-course sequence. It provides pedagogical methods for multiple subject teaching. Diverse subject areas (language arts, English language development, health education, mathematics, sciences, social studies, fine arts, and physical education) are integrated into a single intercurricular course of study by emphasizing activity/inquiry techniques of instructions. ", + "name": "EDS 361B", + "prereqs": [ + "EDS 361A" + ], + "title": "Innovative Instructional Practices II (6)" + }, + "EDS 361C": { + "dept": "EDS", + "description": "Last course in a three-course sequence. It provides pedagogical methods for multiple subject teaching. General teaching methods are integrated into a single intercurricular course of study by emphasizing activity/inquiry techniques of instruction. ", + "name": "EDS 361C", + "prereqs": [ + "EDS 361B" + ], + "title": "Innovative Instructional Practices III (4)" + }, + "EDS 369A": { + "dept": "EDS", + "description": "First course in a series. The elementary credential candidate performs student teaching in participating schools for seven to eight weeks full-time for each course (fifteen weeks total) under the supervision of a cooperating teacher and university supervisor. The student teaching experience offers professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Multiple Subject Teaching Credential. ", + "name": "EDS 369A", + "prereqs": [], + "title": "Multiple Subject (Elementary) Student Teaching Practicum-I (9)" + }, + "EDS 369B": { + "dept": "EDS", + "description": "Second course in a two-course series. The elementary credential candidate performs student teaching in participating schools for seven to eight weeks full-time for each course (fifteen weeks total) under the supervision of a cooperating teacher and university supervisor. The student teaching experience offers professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Multiple Subject Teaching Credential. ", + "name": "EDS 369B", + "prereqs": [ + "EDS 369A" + ], + "title": "Multiple Subject (Elementary) Student Teaching Practicum-II (9)" + }, + "EDS 372": { + "dept": "EDS", + "description": "Proficiency-oriented language teaching techniques, including project-based and communicative approaches, developing student knowledge and appreciation of the cultures and societies in which the target language is spoken, the use of technology to support instruction aligned to the California academic content standards.", + "name": "EDS 372", + "prereqs": [], + "title": "World Language Teaching Practices (4)" + }, + "EDS 373": { + "dept": "EDS", + "description": "The course introduces prospective secondary teachers to principles and strategies of teaching English language arts. Topics include: writing processes, reading processes, integrated language arts, assessment, the second language learner, the classroom community, the California English Language Arts Framework. ", + "name": "EDS 373", + "prereqs": [], + "title": "Secondary English Teaching Practices (4)" + }, + "EDS 374": { + "dept": "EDS", + "description": "Mathematics Teaching Practices (4)", + "name": "EDS 374", + "prereqs": [], + "title": "Secondary" + }, + "EDS 375": { + "dept": "EDS", + "description": "Science teaching techniques, including science curriculum design, California Model Curriculum Standards, instructional methods, computer applications, selection and use of textbooks, student assessment, lesson planning, and classroom organization. Professional matters including curriculum planning, professional organizations, paraprofessionals, professional ethics, education law, and parent involvement are addressed. ", + "name": "EDS 375", + "prereqs": [], + "title": "Secondary Science Teaching Practices (4)" + }, + "EDS 376": { + "dept": "EDS", + "description": "This course satisfies the California Commission on Teacher Credentialing requirement for preparation in reading theory and methods for all credential candidates. Theories of reading development, integration of the language arts, reading and writing in the content areas, teaching methods, and literature. ", + "name": "EDS 376", + "prereqs": [], + "title": "Language and Learning Instruction (4)" + }, + "EDS 379A": { + "dept": "EDS", + "description": "The secondary credential candidate teaches approximately one academic quarter for each course in this series (one public school academic year) under the guidance of a university supervisor with additional support provided by an on-site teacher. The internship offers extensive professional preparation and diversified teaching experience under actual classroom conditions for post-baccalaureate students pursuing the California Single Subject Teaching Credential. ", + "name": "EDS 379A", + "prereqs": [], + "title": "Single Subject (Secondary) Internship Practicum I (8)" + }, + "EDS 379B": { + "dept": "EDS", + "description": "Second course in the series. The secondary credential candidate teaches approximately one academic quarter for each course in this series (one public school academic year) under the guidance of a university supervisor with additional support provided by an on-site teacher. The internship offers extensive professional preparation and diversified teaching experience under actual classroom conditions for post-baccalaureate students pursuing the California Single Subject Teaching Credential. ", + "name": "EDS 379B", + "prereqs": [ + "EDS 379A" + ], + "title": "Single Subject (Secondary) Internship Practicum II (8)" + }, + "EDS 379C": { + "dept": "EDS", + "description": "Third course in the series. The secondary credential candidate teaches approximately one academic quarter for each course in this series (one public school academic year) under the guidance of a university supervisor with additional support provided by an on-site teacher. The internship offers extensive professional preparation and diversified teaching experience under actual classroom conditions for post-baccalaureate students pursuing the California Single Subject Teaching Credential. ", + "name": "EDS 379C", + "prereqs": [ + "EDS 379B" + ], + "title": "Single Subject (Secondary) Internship Practicum III (8)" + }, + "EDS 381": { + "dept": "EDS", + "description": "This course satisfies the Commission on Teacher Credentialing requirement for Health Education. Topics include: physical education, substance abuse, sex education, cardio-pulmonary resuscitation, nutrition, and first aid. ", + "name": "EDS 381", + "prereqs": [], + "title": "Health Education (4)" + }, + "EDS 382": { + "dept": "EDS", + "description": "This course satisfies the Commission on Teacher Credentialing requirements for Special Education. Topics include: teaching methods for accommodating special-needs students in the regular classroom, developing an Individual Education Plan, characteristics of special-needs students, lesson planning to accommodate individual differences, and legislated mandates. ", + "name": "EDS 382", + "prereqs": [], + "title": "Inclusive Educational Practices (4)" + }, + "EDS 385": { + "dept": "EDS", + "description": "Examines the underlying mathematical concepts of the elementary school mathematics curriculum and related pedagogical implications for teaching. Topics include number concepts, algebraic thinking, geometry, and data collection and analysis. ", + "name": "EDS 385", + "prereqs": [], + "title": "Elementary School Mathematics Content and Pedagogy (4)" + }, + "EDS 39": { + "dept": "EDS", + "description": "in Science and Math Teaching/Learning (2)", + "name": "EDS 39", + "prereqs": [], + "title": "Practicum" + }, + "EDS 50": { + "dept": "EDS", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. ", + "name": "EDS 50", + "prereqs": [], + "title": "Chancellor\u2019s Associates Scholars Program Freshman Introductory Course (1)" + }, + "EDS 500": { + "dept": "EDS", + "description": "The course, designed for graduate students serving as teaching assistants in teacher education courses, includes discussion of teaching theory and practice, instructional materials, organization of discussion sections, liaison with participating schools, and methods of evaluation/grading under the supervision of the instructor of the course. S/U grades only. May be taken for credit five times.", + "name": "EDS 500", + "prereqs": [], + "title": "Apprentice Teaching in Education (2\u20134)" + }, + "EDS 87": { + "dept": "EDS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Topics vary from quarter to quarter. P/NP grades only. ", + "name": "EDS 87", + "prereqs": [], + "title": "Freshman Seminar in Education Studies (1)" + }, + "EDS/LIGN 119": { + "dept": "EDS/LIGN", + "description": "An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ", + "name": "EDS/LIGN 119", + "prereqs": [], + "title": "First and Second Language Learning: From Childhood through Adolescence (4)" + }, + "ENG 1": { + "dept": "ENG", + "description": "Offered in the fall quarter, ENG 1 focuses on study skills, academic planning, time management, and the use of campus and community resources to help achieve academic, personal, and professional goals. It also presents engineering both as a field of study and as a profession. Activities include presentations by student organization officers and various UC San Diego organizations. Students may not receive credit for both ENG 1 and ECE 1A.", + "name": "ENG 1", + "prereqs": [], + "title": "Orientation to Engineering I (1)" + }, + "ENG 10": { + "dept": "ENG", + "description": "Application-oriented, hands-on introduction to engineering mathematics and design processes.\u00a0 Key mathematical concepts as they apply to engineering, including solving systems of equations and least-squares regression. In-class activities using Python and Arduino will complement the lectures and provide students hands-on experience with solving real-world engineering problems related to design, manufacturing and prototyping, electronics, and data analysis.", + "name": "ENG 10", + "prereqs": [], + "title": "Fundamentals of Engineering Applications (2)" + }, + "ENG 100A": { + "dept": "ENG", + "description": "Introduction to theory and practice of team", + "name": "ENG 100A", + "prereqs": [], + "title": "Team Engineering (2)" + }, + "ENG 100B": { + "dept": "ENG", + "description": "Engineering leadership attitudes,", + "name": "ENG 100B", + "prereqs": [], + "title": "Engineering Leadership (2)" + }, + "ENG 100C": { + "dept": "ENG", + "description": "Principles and procedures of technical writing and professional communication. The course is ideal for students pursuing careers in science and/or engineering and covers organizing information, writing for technical forms such as proposals and abstracts, and designing visual aids.", + "name": "ENG 100C", + "prereqs": [], + "title": "Technical Writing/Communication for Engineers and Scientist (2)" + }, + "ENG 100D": { + "dept": "ENG", + "description": "An introduction to the practice of human-centered design and team engineering within a humanitarian context. Includes a group project designing a solution for a local or global nonprofit organization. Topics include: design process, contextual listening, project management, needs and capacity assessment, stakeholder analysis, ethical issues, models of leadership, gender and cultural issues, sustainable community development, and social entrepreneurship. ENG 100D is the gateway course for the Global TIES program, but it is open to all undergraduate students. Please go to", + "name": "ENG 100D", + "prereqs": [], + "title": "Design for Development (4)" + }, + "ENG 100L": { + "dept": "ENG", + "description": "", + "name": "ENG 100L", + "prereqs": [], + "title": "Design for Development Lab (2)" + }, + "ENG 2": { + "dept": "ENG", + "description": "Academic and personal planning, time management, study skills, and paths to personal growth. Activities include individual and collaborative exercises, self-assessments, maintenance of a personal journal, and a final project.", + "name": "ENG 2", + "prereqs": [], + "title": "Orientation to Engineering II (1)" + }, + "ENG 201": { + "dept": "ENG", + "description": "Examines the engineering/entrepreneurism interface. Discovery, development, and implementation of new product ideas. Understanding markets, competitors, and selling innovations. Cultivating effective working relationships between research, engineering, manufacturing, and marketing elements of an organization. Priority enrollment given to engineering majors.", + "name": "ENG 201", + "prereqs": [], + "title": "Venture Mechanics (4)" + }, + "ENG 202": { + "dept": "ENG", + "description": "Case studies of start-ups, strategic technology management, practice in use of industrial decision-making tools, and speakers from successful firms combined with experience in making management decisions dynamically in a competitive computer-simulated enterprise. Field study of ongoing processes in a local high technology company. Priority enrollment given to engineering majors.", + "name": "ENG 202", + "prereqs": [], + "title": "Enterprise Dynamics (4)" + }, + "ENG 203": { + "dept": "ENG", + "description": "Course includes the examination of business plans developed by early stage technology businesses. Students expected to work on the development of business plans for real, innovative business organizations. Will explore all of the business research and analysis that needs to be undertaken in order to develop a complete business plan. Completion of ENG 201 or ENG 202 preferred.", + "name": "ENG 203", + "prereqs": [], + "title": "Applied Innovations (4)" + }, + "ENG 207": { + "dept": "ENG", + "description": "Corporate Entrepreneurship for Global Competitiveness (4)", + "name": "ENG 207", + "prereqs": [], + "title": "" + }, + "ENG 208": { + "dept": "ENG", + "description": "Learn basics of start-up through a series of lectures, workshops, and assignments. Students will learn to effectively communicate the values of their ideas to investors and partners. Learn to validate market potential of a technology. ", + "name": "ENG 208", + "prereqs": [], + "title": "Basics of Entrepreneurism and Technology Commercialization (4)" + }, + "ENG 210": { + "dept": "ENG", + "description": "This course examines the complexity of integrating components of product engineering, marketing and client requirements into a single engineering system. Case studies explore successes and failures in engineered systems and how to detect and avoid potential failures using strong leadership skills, systemic analysis and thinking. ", + "name": "ENG 210", + "prereqs": [], + "title": "Systems Engineering (4)" + }, + "ENG 211": { + "dept": "ENG", + "description": "This course is designed to teach leadership in teaching and learning at the college/university level. Students will learn through readings on engineering leadership, proposal development, ethics, and cognitive science, and thorough practical experience writing and developing course and project development plans. ", + "name": "ENG 211", + "prereqs": [], + "title": "Engineering Leadership in Academia (4)" + }, + "ENG 3": { + "dept": "ENG", + "description": "Offered in the spring quarter, ENG 3 focuses on leadership, engineering as a profession, personal and professional development, ethics, preparation for graduate school, resume development, and job offer evaluation. Activities include presentations by UC San Diego staff and panel discussions with practicing professionals from industry. Students may not receive credit for both ENG 3 and ECE 1C.", + "name": "ENG 3", + "prereqs": [], + "title": "Orientation to Engineering III (1)" + }, + "ENVR 102": { + "dept": "ENVR", + "description": "An interdisciplinary course focusing on one of a variety of topics related to environmental studies such as environmental policy and politics, foreign study in environmental problems, environmental history, nature writers, ethics and the environment. May be repeated three times for credit as topics vary. ", + "name": "ENVR 102", + "prereqs": [], + "title": "Selected Topics in Environmental Studies (4)" + }, + "ENVR 110": { + "dept": "ENVR", + "description": "Explores environmental policy in the United States and the ways in which it is reflected in law. The social and political issues addressed include environmental justice and environmental racism, as well as the role of government in implementing environmental law. ", + "name": "ENVR 110", + "prereqs": [], + "title": "Environmental Law (4)" + }, + "ENVR 120": { + "dept": "ENVR", + "description": "Explores the diverse ecosystems of coastal San Diego County (salt marsh, rocky intertidal, sandy beach, etc.) in the classroom and in the field with attention to basic principles of field ecology, natural history, and techniques for collecting ecological data. Course and/or materials fee may apply. ", + "name": "ENVR 120", + "prereqs": [], + "title": "Coastal Ecology (4)" + }, + "ENVR 130": { + "dept": "ENVR", + "description": "(4)", + "name": "ENVR 130", + "prereqs": [], + "title": "Environmental Issues: Social Sciences" + }, + "ENVR 195": { + "dept": "ENVR", + "description": "Instructor will define assistant\u2019s responsibilities in preparing class presentations, leading students\u2019 discussions, and evaluating students\u2019 work. May be taken two times for credit.", + "name": "ENVR 195", + "prereqs": [], + "title": "Apprentice Teaching (0-4)" + }, + "ENVR 198": { + "dept": "ENVR", + "description": "Directed group research and study, normally with a focus on areas not otherwise covered in the curriculum. ", + "name": "ENVR 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "ENVR 199": { + "dept": "ENVR", + "description": "Independent study in a topic not generally covered in the regular curriculum. ", + "name": "ENVR 199", + "prereqs": [], + "title": "Independent Study (4)" + }, + "ENVR 30": { + "dept": "ENVR", + "description": "Examines global and regional environmental issues. The approach is to consider the scientific basis for policy options. Simple principles of chemistry and biology are introduced. The scope of problems includes: air and water pollution, climate modification, solid waste disposal, hazardous waste treatment, and environmental impact assessment. ", + "name": "ENVR 30", + "prereqs": [], + "title": "Environmental Issues: Natural Sciences (4)" + }, + "ENVR 500": { + "dept": "ENVR", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. ", + "name": "ENVR 500", + "prereqs": [], + "title": "Apprentice Teaching in Environmental Studies (4)" + }, + "ENVR 87": { + "dept": "ENVR", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "ENVR 87", + "prereqs": [], + "title": "Environmental Studies Freshman Seminar (1)" + }, + "ERC 1": { + "dept": "ERC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "ERC 1", + "prereqs": [], + "title": "First Year Experience (2)" + }, + "ERC 188": { + "dept": "ERC", + "description": "This weekly seminar focuses on the skills required to write an upper-division research paper and prepare for a winter quarter internship through Academic Internship Program. The structure of the seminar is informal, giving students the opportunity to participate in interactive discussions based on required reading and faculty speakers. ", + "name": "ERC 188", + "prereqs": [], + "title": "Transfer Seminar: The Research University (1)" + }, + "ERC 192A": { + "dept": "ERC", + "description": "This is the first course of a two-course elective sequence (ERC 192A and ERC 192B) entitled ERC Global Service and Research. ERC 192A provides an academic introduction to the culture and history of the nation and region selected for this undergraduate academic, practicum, and research experience to prepare students for the subsequent service and research portion (ERC 192B). Note: The course is open to all students. Students must have completed course work in relevant topics, such as regional history, economics, culture. ", + "name": "ERC 192A", + "prereqs": [], + "title": "Global Service Research Seminar (2)" + }, + "ERC 192B": { + "dept": "ERC", + "description": "ERC 192B begins with the service learning practicum component over spring break where students dedicate twenty hours to an on-site service project abroad. Returning to UC San Diego, students begin their research seminar pursuing the project they proposed in MMW 192A. The project culminates with a research paper and presentation. ", + "name": "ERC 192B", + "prereqs": [ + "ERC 192A" + ], + "title": "Global Service Research Seminar (2)" + }, + "ERC 196": { + "dept": "ERC", + "description": "Senior thesis research project for students who have been accepted into the Eleanor Roosevelt College Individual Studies major. Project will be carried out under supervision of one or more faculty members. Depending on scope of the project, may be taken for four or eight units of credit in a single quarter, or eight units distributed over two quarters. ", + "name": "ERC 196", + "prereqs": [], + "title": "Honors Project (4)" + }, + "ERC 199": { + "dept": "ERC", + "description": "The content of this independent study course, which may not duplicate any existing course on campus, will be determined by a supervising faculty member and tailored to fit specific content needs of students pursuing the Eleanor Roosevelt College Individual Studies major. ", + "name": "ERC 199", + "prereqs": [], + "title": "ERC Independent Studies (4)" + }, + "ERC 2": { + "dept": "ERC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "ERC 2", + "prereqs": [], + "title": "Transfer Year Experience (2)" + }, + "ERC 20": { + "dept": "ERC", + "description": "Seminar: International Themes (1)", + "name": "ERC 20", + "prereqs": [], + "title": "Freshman Honors" + }, + "ERC 89": { + "dept": "ERC", + "description": "Undergraduate students will be provided with one hour of instruction on pedagogy of tutoring math in a public high school setting and placement in regional public high schools to provide five hours of one-on-one tutoring of math students under supervision of high school math teachers. P/NP grades only. May be taken for credit three times. ", + "name": "ERC 89", + "prereqs": [ + "MATH 20A", + "MATH 10A" + ], + "title": "Practicum in Math Tutoring (2)" + }, + "ERC 90": { + "dept": "ERC", + "description": "A seminar intended for exposing undergraduate students, especially freshmen and sophomores, to exciting research programs conducted by the faculty. ", + "name": "ERC 90", + "prereqs": [], + "title": "Undergraduate Seminar (1)" + }, + "ERC 92": { + "dept": "ERC", + "description": "Individual project on a topic chosen by the student, done under direction of a faculty member. ", + "name": "ERC 92", + "prereqs": [], + "title": "Honors Project (2)" + }, + "ESYS 10": { + "dept": "ESYS", + "description": "This course explores the interdisciplinary", + "name": "ESYS 10", + "prereqs": [], + "title": "Introduction to Environmental Systems (4)" + }, + "ESYS 101": { + "dept": "ESYS", + "description": "This course surveys biochemical and physiological processes governing the relationship between organisms and their environments, such as those involved in element cycling and cellular homeostasis. The course introduces biological perspectives on human activities ranging from antibiotic use to genetic engineering. ", + "name": "ESYS 101", + "prereqs": [ + "BILD 1", + "BILD 2" + ], + "title": "Environmental Biology (4)" + }, + "ESYS 102": { + "dept": "ESYS", + "description": "Earth\u2019s dynamic physical systems interact in complex ways with profound impact on our environment. Processes such as volcanism and weathering enable geochemical exchange between solid and fluid (ocean and atmosphere) systems. Sea level and climate changes interface with tectonic processes. ", + "name": "ESYS 102", + "prereqs": [ + "PHYS 2A", + "MATH 20A", + "MATH 10A", + "CHEM 6A", + "PHYS 1A" + ], + "title": "The Solid and Fluid Earth (4)" + }, + "ESYS 103/MAE 124": { + "dept": "ESYS", + "description": "This course explores the impacts of human, social, economic, and industrial activity on the environment. It highlights the central roles in ensuring sustainable development played by market forces, technological innovation, and government regulation on local, national, and global scales. ", + "name": "ESYS 103/MAE 124", + "prereqs": [], + "title": "Environmental Challenges: Science and Solutions (4)" + }, + "ESYS 190A": { + "dept": "ESYS", + "description": "All majors are required to complete an integrative Senior Project in their senior year. The Senior Project is designed by the student to focus on an interdisciplinary environmental problem or research topic and is developed either individually or as part of a team over two quarters. Appropriate topics could include biodiversity conservation, environmental health, and/or global change. An important component of the Senior Project is an off-campus or laboratory internship. ", + "name": "ESYS 190A", + "prereqs": [ + "ESYS 103" + ], + "title": "Senior Project (8)" + }, + "ESYS 190B": { + "dept": "ESYS", + "description": "The seminar provides a venue for the development, presentation, and evaluation of the Environmental Systems Integrative Project. The seminar will include work on research methods as well as paper presentation skills. ", + "name": "ESYS 190B", + "prereqs": [ + "ESYS 190A" + ], + "title": "Environmental Systems Senior Seminar (4)" + }, + "ESYS 199": { + "dept": "ESYS", + "description": "Individually guided readings or projects in the area of environmental systems. #EndEditable", + "name": "ESYS 199", + "prereqs": [], + "title": "Independent Study (2-4)" + }, + "ESYS 87": { + "dept": "ESYS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate college, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen.", + "name": "ESYS 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "ESYS 90": { + "dept": "ESYS", + "description": "Provides an introduction to environmental systems. Faculty members from departments in the natural sciences, geosciences, and social sciences will offer perspectives in these areas. (F)", + "name": "ESYS 90", + "prereqs": [], + "title": "Perspectives on Environmental Issues (1)" + }, + "ETHN 1": { + "dept": "ETHN", + "description": "This course examines key historical events and debates in the field that center around land and labor, including disputes about territory and natural resources, slavery and other forms of unfree labor, labor migration and recruitment, and US and transnational borders. Students may not receive credit for both ETHN 1A and ETHN 1.", + "name": "ETHN 1", + "prereqs": [], + "title": "Introduction to Ethnic Studies: Land and Labor (4)" + }, + "ETHN 100A": { + "dept": "ETHN", + "description": "An advanced survey of key issues, themes, and debates in the field of critical ethnic studies focusing on the connection between race and social structures. Students will use diverse theoretical frameworks to identify and interpret contemporary and historical social problems. ", + "name": "ETHN 100A", + "prereqs": [ + "ETHN 3", + "ETHN 2", + "ETHN 1" + ], + "title": "Ethnic Studies: Theoretical Approaches (4)" + }, + "ETHN 100B": { + "dept": "ETHN", + "description": "An introduction to interdisciplinary research methodologies in critical ethnic studies. By developing a critical analysis of the politics of knowledge production, students will learn to identify different methodological approaches in the field and to evaluate their use in practical application. ", + "name": "ETHN 100B", + "prereqs": [ + "ETHN 100A" + ], + "title": "Interdisciplinary Methodologies (4)" + }, + "ETHN 100C": { + "dept": "ETHN", + "description": "An intensive capstone experience for ethnic studies majors, this course combines an advanced exploration of praxis-based approaches to social justice with practicum-based independent campus, community, creative, or research projects. ", + "name": "ETHN 100C", + "prereqs": [ + "ETHN 100A", + "ETHN 100B" + ], + "title": "Social Justice Praxis\u00a0(4)" + }, + "ETHN 100H": { + "dept": "ETHN", + "description": "This discussion-based course will focus on the application of advanced research methods to the design of extensive, independent research-based projects. ", + "name": "ETHN 100H", + "prereqs": [ + "ETHN 100A", + "ETHN 100B" + ], + "title": "Honors Research Design (4)" + }, + "ETHN 101": { + "dept": "ETHN", + "description": "An upper-division lecture course studying representations of ethnicity in the American cinema. Topics include ethnic images as narrative devices, the social implications of ethnic images, and the role of film in shaping and reflecting societal power relations.", + "name": "ETHN 101", + "prereqs": [], + "title": "Ethnic Images in Film (4)" + }, + "ETHN 102": { + "dept": "ETHN", + "description": "This course examines the role of science and technology in forming popular conceptions of race, gender and class, and vice versa. We also consider how some populations benefit from the results of experimentation while others come to be its subjects.", + "name": "ETHN 102", + "prereqs": [], + "title": "Science and Technology in Society: Race/Gender/Class (4)" + }, + "ETHN 103": { + "dept": "ETHN", + "description": "This course will examine the concept of environmental racism, the empirical evidence of its widespread existence, and the efforts by government, residents, workers, and activists to combat it. We will examine those forces that create environmental injustices in order to understand its causes as well as its consequences. Students are expected to learn and apply several concepts and social scientific theories to the course material.", + "name": "ETHN 103", + "prereqs": [], + "title": "Environmental Racism (4)" + }, + "ETHN 104": { + "dept": "ETHN", + "description": "Through in-depth studies of housing segregation, urban renewal and displacement, neighborhood race effects, and the location of hazards and amenities, this course examines how space becomes racialized and how race becomes spatialized in the contemporary United States.", + "name": "ETHN 104", + "prereqs": [], + "title": "Race, Space, and Segregation (4)" + }, + "ETHN 105": { + "dept": "ETHN", + "description": "(Cross-listed with USP 104.) This course will examine the city as a crucible of ethnic identity, exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present.", + "name": "ETHN 105", + "prereqs": [], + "title": "Ethnic Diversity and the City (4)" + }, + "ETHN 106": { + "dept": "ETHN", + "description": "Using interdisciplinary approaches, this course examines some of the contexts in which the conditions of life and death become sites of political, economic, and cultural significance, and how categories of difference impact access to the protections of \u2018humanity.\u2019", + "name": "ETHN 106", + "prereqs": [], + "title": "Life, Death, and the Human (4)" + }, + "ETHN 107": { + "dept": "ETHN", + "description": "(Cross-listed with USP 130.) This is a research course examining social, economic, and political issues in ethnic and racial communities through a variety of research methods that may include interviews and archival, library, and historical research.", + "name": "ETHN 107", + "prereqs": [], + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + "ETHN 108": { + "dept": "ETHN", + "description": "(Cross-listed with MUS 151.) Aggrieved groups often generate distinctive forms of cultural expression by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States.", + "name": "ETHN 108", + "prereqs": [], + "title": "Race, Culture, and Social Change (4)" + }, + "ETHN 109": { + "dept": "ETHN", + "description": "This course explores collective mobilizations for resources, recognition, and power by members of aggrieved racialized groups, past and present. Emphasis will be placed on the conditions that generate collective movements, the strategies and ideologies that these movements have developed, and on the prospect for collective mobilization for change within aggrieved communities in the present and future.", + "name": "ETHN 109", + "prereqs": [], + "title": "Race and Social Movements (4)" + }, + "ETHN 110": { + "dept": "ETHN", + "description": "Places Native Americans/indigenous people\u2019s ways of living, knowing, and understanding the world in relation to settler-immigrant societies in North America.\u00a0Students gain analytical tools for thinking about world views through themes of cosmology, land, kinship, and identity formation.", + "name": "ETHN 110", + "prereqs": [], + "title": "Cultural Worldviews of Indigenous America (4)" + }, + "ETHN 111": { + "dept": "ETHN", + "description": "This course analyzes Native American written and oral traditions. Students will read chronicles and commentaries on published texts, historic speeches, trickster narratives, oratorical and prophetic tribal epics, and will delve into the methodological problems posed by tribal literature in translation.", + "name": "ETHN 111", + "prereqs": [], + "title": "Native American Literature (4)" + }, + "ETHN 112A": { + "dept": "ETHN", + "description": "of Native Americans in the United States I (4)", + "name": "ETHN 112A", + "prereqs": [], + "title": "History" + }, + "ETHN 112B": { + "dept": "ETHN", + "description": "of Native Americans in the United States II (4)", + "name": "ETHN 112B", + "prereqs": [], + "title": "History" + }, + "ETHN 113": { + "dept": "ETHN", + "description": "This course considers decolonial theories of education in relation to classroom pedagogy, focusing on US urban high schools.", + "name": "ETHN 113", + "prereqs": [], + "title": "Decolonizing Education (4)" + }, + "ETHN 114A": { + "dept": "ETHN", + "description": "History and theory: Introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization. Study of Plains Indian drawings from 1860 to 1890 will allow the class to create new approaches to designing a museum exhibition.", + "name": "ETHN 114A", + "prereqs": [], + "title": "Representing Native America (4)" + }, + "ETHN 114B": { + "dept": "ETHN", + "description": "The class will work in teams to design all aspects of an actual museum exhibition of Plains Indian drawings from 1860 to 1890, turning theory into practice. In some quarters, the exhibition will be installed in a San Diego museum directly after completion of the course. ", + "name": "ETHN 114B", + "prereqs": [ + "ETHN 114A" + ], + "title": "Representing Native America\u2014Exhibition Design (4)" + }, + "ETHN 115": { + "dept": "ETHN", + "description": "This course considers dark agencies, queer threats, and how they seep through cracks in containers meant to disable them. This class will be writing intensive with an artistic production component. Recommended: ETHN 100 is recommended prior to enrollment in this course.", + "name": "ETHN 115", + "prereqs": [], + "title": "Monsters, Orphans, and\u00a0Robots\u00a0(4)" + }, + "ETHN 116": { + "dept": "ETHN", + "description": "States\u2013Mexico Border in Comparative Perspective (4)", + "name": "ETHN 116", + "prereqs": [], + "title": "The United" + }, + "ETHN 117": { + "dept": "ETHN", + "description": "Examination of local responses to global change and social disruption through the examination of organic movements in indigenous societies. In-depth analysis of the Kuna Indians of San Blas, Panama; Maya-Zapatistas of Chiapas, Mexico; and Micronesians of the western Pacific.", + "name": "ETHN 117", + "prereqs": [], + "title": "Organic Social Movements (4)" + }, + "ETHN 118": { + "dept": "ETHN", + "description": "This course examines the diversity of today\u2019s immigrants\u2014their social origins and contexts of exit and their adaptation experiences and contexts of incorporation.", + "name": "ETHN 118", + "prereqs": [], + "title": "Contemporary Immigration Issues (4)" + }, + "ETHN 119": { + "dept": "ETHN", + "description": "This course explores the genesis, evolution, and contradictions of racially heterogeneous societies in the Americas, from European conquest to the present. Topics: the social history of Native Americans, blacks, and Asians, their interactions with European settlers, and racial, sexual, and class divisions.", + "name": "ETHN 119", + "prereqs": [], + "title": "Race in the Americas (4)" + }, + "ETHN 120": { + "dept": "ETHN", + "description": "Performance: The Politics of Popular Culture (4)", + "name": "ETHN 120", + "prereqs": [], + "title": "Race and" + }, + "ETHN 121": { + "dept": "ETHN", + "description": "The course will study changes in Asian American communities as a result of renewed immigration since 1965; the influx of refugees from Vietnam, Kampuchea, and Laos; the impact of contemporary social movements on Asian Americans\u2019 current economic, social, and political status.", + "name": "ETHN 121", + "prereqs": [], + "title": "Contemporary Asian American History (4)" + }, + "ETHN 122": { + "dept": "ETHN", + "description": "A survey of Asian American cultural expressions in literature, art, and music to understand the social experiences that helped forge Asian American identity. Topics: culture conflict, media portrayals, assimilation pressures, the model minority myth, and interethnic and class relations.", + "name": "ETHN 122", + "prereqs": [], + "title": "Asian American Culture and Identity (4)" + }, + "ETHN 123": { + "dept": "ETHN", + "description": "This course will examine the development of Asian American politics by studying the historical and contemporary factors, such as political and economic exclusion, that have contributed to the importance and complexity of ethnicity as a mobilizing force in politics.", + "name": "ETHN 123", + "prereqs": [], + "title": "Asian American Politics (4)" + }, + "ETHN 124": { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 181.) Selected topics in the literature by men and women of Asian descent who live and write in the United States. May be repeated for credit when topics vary.", + "name": "ETHN 124", + "prereqs": [], + "title": "Asian American Literature (4)" + }, + "ETHN 125": { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 124.) Explore how Asian Americans were involved in the political, economic and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.", + "name": "ETHN 125", + "prereqs": [], + "title": "Asian American History (4)" + }, + "ETHN 126": { + "dept": "ETHN", + "description": "This course compares the historical and contemporary social, political, and economic experiences of Filipino and Vietnamese Americans, paying particular attention to the impact of US wars in the Philippines and in Vietnam on their respective lives.", + "name": "ETHN 126", + "prereqs": [], + "title": "Comparative Filipino and Vietnamese American Identities and Communities (4)" + }, + "ETHN 127": { + "dept": "ETHN", + "description": "(Cross-listed with CGS 112.) This course explores the nexus of sex, race, ethnicity, gender, and nation and considers their influence on identity, sexuality, migration, movement, and borders and other social, cultural, and political issues that these constructs affect.", + "name": "ETHN 127", + "prereqs": [], + "title": "Sexuality and Nation (4)" + }, + "ETHN 128": { + "dept": "ETHN", + "description": "(Cross-listed with MUS 152.) Examination of hip-hop\u2019s technology, lyrics, and dance and its influences in graffiti, film, music video, fiction, advertising, gender, corporate investment, government, and censorship with a critical focus on race, gender, and popular culture and the politics of creative expression.", + "name": "ETHN 128", + "prereqs": [], + "title": "Hip-Hop: The Politics of Culture (4)" + }, + "ETHN 129": { + "dept": "ETHN", + "description": "Latina Immigrant Workers in the Global Economy (4)", + "name": "ETHN 129", + "prereqs": [], + "title": "Asian and" + }, + "ETHN 130": { + "dept": "ETHN", + "description": "Economic History of the Southwest I (4)", + "name": "ETHN 130", + "prereqs": [], + "title": "Social and" + }, + "ETHN 131": { + "dept": "ETHN", + "description": "Economic History of the Southwest II (4)", + "name": "ETHN 131", + "prereqs": [], + "title": "Social and" + }, + "ETHN 132": { + "dept": "ETHN", + "description": "(Cross-listed with TDHT 110.) Focusing on the contemporary evolution of Chicano dramatic literature, the course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant actors, plays, and documentaries for their contributions to the developing Chicano theatre movement.", + "name": "ETHN 132", + "prereqs": [], + "title": "Chicano Dramatic Literature (4)" + }, + "ETHN 134": { + "dept": "ETHN", + "description": "and Ethnicity in Modern American Society (4)", + "name": "ETHN 134", + "prereqs": [], + "title": "Immigration" + }, + "ETHN 135A": { + "dept": "ETHN", + "description": "Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)", + "name": "ETHN 135A", + "prereqs": [], + "title": "Early" + }, + "ETHN 135B": { + "dept": "ETHN", + "description": "Latino/a-Chicano/a Cultural Production: 1960 to Present (4)", + "name": "ETHN 135B", + "prereqs": [], + "title": "Contemporary" + }, + "ETHN 136": { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with SIO 114.) Introduction to the scientific basis and critical analysis of environmental justice, with an emphasis on case studies, activism, and community engagement. This course will prepare students to critique and develop scientific models, research designs, and measurements consistent with environmental justice. Students may not receive credit for both ETHN 136 and SIO 114.", + "name": "ETHN 136", + "prereqs": [], + "title": "The Science and Critical Analysis of Environmental Justice (4)" + }, + "ETHN 137": { + "dept": "ETHN", + "description": "(Cross-listed with CGS 137.) This course will focus on the intersection of labor, class, race, ethnicity, gender, sexuality, and immigration in Latina cultural production. Examined from a socioeconomic, feminist, and cultural perspective, class readings will allow for historically grounded analyses of these issues. Course may be repeated as topics vary.", + "name": "ETHN 137", + "prereqs": [], + "title": "Latina Issues and Cultural Production (4)" + }, + "ETHN 139": { + "dept": "ETHN", + "description": "", + "name": "ETHN 139", + "prereqs": [], + "title": "Chicano Literature in English (4)" + }, + "ETHN 140": { + "dept": "ETHN", + "description": "This course critically examines the impact of the Vietnam War on refugees from Vietnam, Laos, and Cambodia. Focusing on everyday refugee life, it pays particular attention to how the refugees have created alternative memories, epistemologies, and lifeworlds.", + "name": "ETHN 140", + "prereqs": [], + "title": "Comparative Refugee Communities from Vietnam, Laos, and Cambodia (4)" + }, + "ETHN 141": { + "dept": "ETHN", + "description": "Martin Luther King was inspired by Gandhi, but in his own time, Gandhi was as controversial as he was revered. Nonviolence was not widely accepted as a form of political protest. This course explores Gandhi\u2019s complex legacy of nonviolence for places and peoples embroiled in conflict.", + "name": "ETHN 141", + "prereqs": [], + "title": "Gandhi in the Modern World: From Civil Rights to the Arab Spring (4)" + }, + "ETHN 142": { + "dept": "ETHN", + "description": "Race, and the Global Politics of Inequality (4)", + "name": "ETHN 142", + "prereqs": [], + "title": "Medicine," + }, + "ETHN 143": { + "dept": "ETHN", + "description": "This course is a historical survey of Chicana and Chicano media from roughly 1950 to the present. The goals of the course include learning about Chicana/o history, politics, and culture through different media and gaining the critical tools to analyze Chicana/o media and media more broadly.", + "name": "ETHN 143", + "prereqs": [], + "title": "Chicana/o Film and Media Studies (4)" + }, + "ETHN 146A": { + "dept": "ETHN", + "description": "(Cross-listed with TDAC 120.) An intensive theatre practicum designed to generate theatre created by an ensemble, with particular emphasis upon the analysis of text. Students will explore and analyze scripts and authors. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell\u2019arte. May be taken for credit two times.", + "name": "ETHN 146A", + "prereqs": [], + "title": "Ensemble (4)" + }, + "ETHN 147": { + "dept": "ETHN", + "description": "(Cross-listed with CGS 147.) An advanced introduction to historical and contemporary black feminisms in the United States and transnationally. Students will explore the theory and practice of black feminists/womanists and analyze the significance of black feminism to contemporary understandings of race, class, gender, and sexuality.", + "name": "ETHN 147", + "prereqs": [], + "title": "Black Feminisms, Past and Present\u00a0(4)" + }, + "ETHN 149": { + "dept": "ETHN", + "description": "American History in the Twentieth Century (4)", + "name": "ETHN 149", + "prereqs": [], + "title": "African" + }, + "ETHN 150": { + "dept": "ETHN", + "description": "(Cross-listed with CGS 150.) Examines the role of the visual in power relations; the production of what we \u201csee\u201d regarding race and sexuality; the interconnected history of the casta system, plantation slavery, visuality, and contemporary society; decolonial and queer counternarratives to visuality.", + "name": "ETHN 150", + "prereqs": [], + "title": "Visuality, Sexuality, and Race (4)" + }, + "ETHN 151": { + "dept": "ETHN", + "description": "This course will survey the political effects of immigration, ethnic mobilization, and community building in America, and the contemporary role of ethnicity in politics and intergroup relations.", + "name": "ETHN 151", + "prereqs": [], + "title": "Ethnic Politics in America (4)" + }, + "ETHN 152": { + "dept": "ETHN", + "description": "In this course, students explore the relationship between race, class, and law as it applies to civil rights both in a historical and a contemporary context. Topics include racism and the law, history of the Fourteenth Amendment, equal protection, school desegregation, and affirmative action.", + "name": "ETHN 152", + "prereqs": [], + "title": "Law and Civil Rights (4)" + }, + "ETHN 153": { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 136.) This course traces the history of the institution of United States citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.", + "name": "ETHN 153", + "prereqs": [], + "title": "Citizenship and Civil Rights in the Twentieth Century\u00a0(4)" + }, + "ETHN 154": { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 113.) This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history\u00a0of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.", + "name": "ETHN 154", + "prereqs": [], + "title": "History of Mexican America (4)" + }, + "ETHN 155": { + "dept": "ETHN", + "description": "This course considers rationales for and responses to American military expansion as well as its social, environmental, and cultural consequences.\u00a0We will examine racialized, gendered, and sexualized aspects of militarized institutions and practices, including militarized colonialism, tourism, and sex work. ", + "name": "ETHN 155", + "prereqs": [], + "title": "US Militarism\u00a0(4)" + }, + "ETHN 155GS": { + "dept": "ETHN", + "description": "This course examines the impact of the Vietnam War on three populations: Americans, Vietnamese in Vietnam, and Viet Kieu (overseas Vietnamese). We will supplement scholarly texts on the war with films, literature, and visits to war museums and monuments. Program or materials fees may apply. ", + "name": "ETHN 155GS", + "prereqs": [], + "title": "Critical Perspectives on the Vietnam War (4)" + }, + "ETHN 157": { + "dept": "ETHN", + "description": "(Cross-listed with USP 149.) This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes.", + "name": "ETHN 157", + "prereqs": [], + "title": "Madness and Urbanization\u00a0(4)" + }, + "ETHN 158": { + "dept": "ETHN", + "description": "This course examines Native American intellectuals\u2019 work. It provides a broad historical perspective on the development of twentieth-century Native American political thinking and discusses the recurring issues, problems, and themes inherent to Indian-white relations, as seen from Indian perspectives.", + "name": "ETHN 158", + "prereqs": [], + "title": "Native American Intellectuals in the Twentieth Century (4)" + }, + "ETHN 159": { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 183.) A colloquium dealing with special topics in the history of people of African descent in the United States. Themes will vary from quarter to quarter. Requirements will vary for undergraduate, MA, and PhD students. Graduate students will be required to submit a more substantial piece of work.", + "name": "ETHN 159", + "prereqs": [], + "title": "Topics in African American History (4)" + }, + "ETHN 160": { + "dept": "ETHN", + "description": "Focusing on transregional relationships to land and decolonization in the Pacific, Caribbean, and the Americas, this course is a comparative study of cultural and political phenomena that shape indigenous communities globally. We will examine enduring legacies of colonialism, nationalism, and Western normativities, and explore indigenous activism within the decolonial movement.", + "name": "ETHN 160", + "prereqs": [], + "title": "Global Indigenous Studies (4)" + }, + "ETHN 162": { + "dept": "ETHN", + "description": "Work with California native tribal groups, leaders, and members to identify common, pressing questions surrounding Indian law. In partnership with legal experts, develop and disseminate new media programs and useful documents accessible to native communities throughout California.", + "name": "ETHN 162", + "prereqs": [], + "title": "Practicum in California Tribal Law and Journalism\u00a0(4)" + }, + "ETHN 163E": { + "dept": "ETHN", + "description": "Decolonial Theory will focus on historical and contemporary intellectual work produced by activists from colonized regions of the world. This course will be international in scope, but attentive to local struggles.", + "name": "ETHN 163E", + "prereqs": [], + "title": "Decolonial Theory (4)" + }, + "ETHN 163F": { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with TDGE 131.) This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America\u2019s First Peoples in Hollywood cinema. Carving spaces of \u201cvisual sovereignty\u201d (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for TDGE 131 and ETHN 163F.", + "name": "ETHN 163F", + "prereqs": [], + "title": "Playing Indian: Native American and First Nations Cinema (4)" + }, + "ETHN 163G": { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with TDHT 120.) This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for TDHT 120 and ETHN 163G.", + "name": "ETHN 163G", + "prereqs": [], + "title": "Indigenous Theatre and Performance (4)" + }, + "ETHN 163I": { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 177.) This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries. Fulfills the race, ethnicity, and migration and global/transnational field requirements for the history major. Students may not receive credit for both ETHN 163I and HIUS 177. May be coscheduled with HIUS 277 and ETHN 273.", + "name": "ETHN 163I", + "prereqs": [], + "title": "Asian American Histography (4)" + }, + "ETHN 163J": { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 125.) This course introduces students to the history of Asian American social movements from the late-nineteenth century to the present, with an emphasis on inter-ethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anticolonial movements, redress, hate crimes, and police brutality. Students may not receive credit for HIUS 125 and ETHN 163J.", + "name": "ETHN 163J", + "prereqs": [], + "title": "Asian American Social Movements (4)" + }, + "ETHN 164": { + "dept": "ETHN", + "description": "(Cross-listed with MUS 153.) This course will examine the media representations of African Americans from slavery through the twentieth century. Attention will be paid to the emergence and transmission of enduring stereotypes, and their relationship to changing social, political, and economic frameworks in the United States. The course will also consider African Americans\u2019 responses to and interpretations of these mediated images.", + "name": "ETHN 164", + "prereqs": [], + "title": "African Americans and the Mass Media (4)" + }, + "ETHN 165": { + "dept": "ETHN", + "description": "(Cross-listed with CGS 165.) This course will investigate the changing constructions of sex, gender, and sexuality in African American communities defined by historical period, region, and class. Topics will include the sexual division of labor, myths of black sexuality, the rise of black feminism, black masculinity, and queer politics.", + "name": "ETHN 165", + "prereqs": [], + "title": "Gender and Sexuality in African American Communities (4)" + }, + "ETHN 166": { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 179.) This class explores (self) representations of Muslim and Arab Americans in US popular culture with a focus on the twentieth and twenty-first centuries. Topics include the racing of religion, \u201cthe war on terror\u201d in the media, feminism and Islam, immigration, race, and citizenship. May be repeated for credit three times when content varies.", + "name": "ETHN 166", + "prereqs": [], + "title": "Arab/Muslim American Identity and Culture (4)" + }, + "ETHN 168": { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 178.) A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.", + "name": "ETHN 168", + "prereqs": [], + "title": "Comparative Ethnic Literature (4)" + }, + "ETHN 169": { + "dept": "ETHN", + "description": "An examination of interactions among the peoples of western Europe, Africa, and the Americas that transformed the Atlantic basin into an interconnected \u201cAtlantic World.\u201d Topics will include maritime technology and the European Age of Discovery, colonization in the Americas, the beginnings of the transatlantic slave trade, and early development of plantation slavery in the New World. Students may not receive credit for both ETHN 170A and 169.", + "name": "ETHN 169", + "prereqs": [], + "title": "Origins of the Atlantic World, c. 1450\u20131650 (4)" + }, + "ETHN 170": { + "dept": "ETHN", + "description": "The development of the Atlantic slave trade and the spread of racial slavery in the Americas before 1800. Explores the diversity of slave labor in the Americas and the different slave cultures African Americans produced under the constraints of slavery. Students may not receive credit for both ETHN 170 and 170B.", + "name": "ETHN 170", + "prereqs": [], + "title": "Slavery and the Atlantic World (4)" + }, + "ETHN 172": { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 183.) Students will analyze and discuss the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characters of Afro-American narrative and the cultural and social circumstances that influence their development.", + "name": "ETHN 172", + "prereqs": [], + "title": "Afro-American Prose (4)" + }, + "ETHN 173GS": { + "dept": "ETHN", + "description": "This course examines the effects of war and militarism on women\u2019s lives, focusing in particular on the experiences of Vietnamese women during and in the aftermath of the Vietnam War. Program or materials fees may apply. ", + "name": "ETHN 173GS", + "prereqs": [], + "title": "Gender, Sexuality, and War (4)" + }, + "ETHN 174": { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 185.) This course focuses on the influence of slavery upon African American writers. Our concern is not upon what slavery was but upon what it is within the works and what these texts reveal about themselves, their authors, and their audiences.", + "name": "ETHN 174", + "prereqs": [], + "title": "Themes in Afro-American Literature (4)" + }, + "ETHN 175": { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 186.) The Harlem Renaissance (1917\u201339) focuses on the emergence of the \u201cNew Negro\u201d and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.", + "name": "ETHN 175", + "prereqs": [], + "title": "Literature of the Harlem Renaissance (4)" + }, + "ETHN 177": { + "dept": "ETHN", + "description": "This course considers the history of listening to the music of the world in Western culture. We will critically examine how the history of perception directs us to listen for familiar and different sounds in music. No musical training required.", + "name": "ETHN 177", + "prereqs": [], + "title": "Listening to the World (4)" + }, + "ETHN 178": { + "dept": "ETHN", + "description": "(Cross-listed with MUS 126.) This course will examine the development of the blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of urban blues and the close relationship of the blues with jazz, rhythm and blues, and rock and roll.", + "name": "ETHN 178", + "prereqs": [], + "title": "Blues: An Oral Tradition (4)" + }, + "ETHN 179": { + "dept": "ETHN", + "description": "(Cross-listed with MUS 127.) Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year.\u00a0May be taken for credit two times. Students may receive a combined total of eight units for MUS 127 and ETHN 179.", + "name": "ETHN 179", + "prereqs": [], + "title": "Discover Jazz (4)" + }, + "ETHN 180": { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 167.) This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences.", + "name": "ETHN 180", + "prereqs": [], + "title": "Topics in Mexican American History (4)" + }, + "ETHN 182": { + "dept": "ETHN", + "description": "This course focuses on race, gender, and sexuality in twentieth- and twenty-first-century fantasy and science fiction. We will study literature, film, music, television, video games, and the Internet in order to situate such speculative visions in historical and transmedia contexts.", + "name": "ETHN 182", + "prereqs": [], + "title": "Race, Gender, and Sexuality in Fantasy and Science Fiction\u00a0(4)" + }, + "ETHN 183": { + "dept": "ETHN", + "description": "(Cross-listed with CGS 114.) Gender is often neglected in studies of ethnic/racial politics. This seminar explores the relationship of race, ethnicity, class, and gender by examining the participation of working class women of color in community politics and how they challenge mainstream political theory.", + "name": "ETHN 183", + "prereqs": [], + "title": "Gender, Race, Ethnicity, and Class (4)" + }, + "ETHN 184": { + "dept": "ETHN", + "description": "An analysis of black cultural and intellectual", + "name": "ETHN 184", + "prereqs": [], + "title": "Black Intellectuals in the Twentieth Century (4)" + }, + "ETHN 185": { + "dept": "ETHN", + "description": "While discourse analysis has transformed numerous disciplines, a gap separates perspectives that envision discourse as practices that construct inequality from approaches that treat discourse as everyday language. This course engages both perspectives critically in analyzing law, medicine, and popular culture.", + "name": "ETHN 185", + "prereqs": [], + "title": "Discourse, Power, and Inequality (4)" + }, + "ETHN 187": { + "dept": "ETHN", + "description": "(Cross-listed with CGS 187.) The construction and articulation of Latinx sexualities will be explored in this course through interdisciplinary and comparative perspectives. We will discuss how immigration, class, and norms of ethnicity, race, and gender determine the construction, expression, and reframing of Latinx sexualities.", + "name": "ETHN 187", + "prereqs": [], + "title": "Latinx Sexualities\u00a0(4)" + }, + "ETHN 188": { + "dept": "ETHN", + "description": "(Cross-listed with USP 132.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived.", + "name": "ETHN 188", + "prereqs": [], + "title": "African Americans, Religion, and the City (4)" + }, + "ETHN 189": { + "dept": "ETHN", + "description": "A reading and discussion course that explores special topics in ethnic studies. Themes will vary from quarter to quarter; therefore, course may be repeated three times as long as topics vary.", + "name": "ETHN 189", + "prereqs": [], + "title": "Special Topics in Ethnic Studies (4)" + }, + "ETHN 190": { + "dept": "ETHN", + "description": "Methods: Studying Racial and Ethnic Communities (4)", + "name": "ETHN 190", + "prereqs": [], + "title": "Research" + }, + "ETHN 196H": { + "dept": "ETHN", + "description": "Independent study to complete an honors thesis under the supervision of a faculty member who serves as thesis adviser. ", + "name": "ETHN 196H", + "prereqs": [ + "ETHN 100A", + "ETHN 100H", + "ETHN 100B" + ], + "title": "Honors Thesis\u00a0(4)" + }, + "ETHN 197": { + "dept": "ETHN", + "description": "This course comprises supervised community fieldwork on topics of importance to racial and ethnic communities in the greater San Diego area. Regular individual meetings with faculty sponsor and written reports are required. (May be repeated for credit.)", + "name": "ETHN 197", + "prereqs": [], + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + "ETHN 198": { + "dept": "ETHN", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. (May be repeated for credit.)", + "name": "ETHN 198", + "prereqs": [], + "title": "Directed Group Studies (4)" + }, + "ETHN 199": { + "dept": "ETHN", + "description": "Individual research on a topic that leads to the writing of a major paper. (May be repeated for credit.)", + "name": "ETHN 199", + "prereqs": [], + "title": "Supervised Independent Study and Research (4)" + }, + "ETHN 2": { + "dept": "ETHN", + "description": "Focusing on historical and contemporary migration and the circulation of commodities, knowledge, bodies, and culture, this course looks at how racial formation in the United States and transnationally is shaped and contested by such movements. Students may not receive credit for both ETHN 1B and ETHN 2.", + "name": "ETHN 2", + "prereqs": [], + "title": "Introduction to Ethnic Studies: Circulations of Difference (4)" + }, + "ETHN 20": { + "dept": "ETHN", + "description": "This course introduces students to key issues in Asian American lives, with emphasis on the global historical context of migration; changing ethnic and racial consciousness; economic, social, and political status; cultural production; and family and gender relations.", + "name": "ETHN 20", + "prereqs": [], + "title": "Introduction to Asian American Studies (4)" + }, + "ETHN 200A": { + "dept": "ETHN", + "description": "A Genealogy of Critical Racial and Ethnic Studies (4)", + "name": "ETHN 200A", + "prereqs": [], + "title": "Departures:" + }, + "ETHN 200B": { + "dept": "ETHN", + "description": "This course uses model studies to explore how comparative and relational problems are posed as research projects, how research questions are constructed, and how they employ theory to frame the project and establish what is at stake in the research. ", + "name": "ETHN 200B", + "prereqs": [], + "title": "Formulations: Interdisciplinarity and Knowledge Production in Ethnic Studies (4)" + }, + "ETHN 200C": { + "dept": "ETHN", + "description": "(Proseminar): Research in Ethnic Studies (4)", + "name": "ETHN 200C", + "prereqs": [], + "title": "Projects" + }, + "ETHN 201": { + "dept": "ETHN", + "description": "This course seeks to develop research skills in historical methods; to understand techniques and tools historians use to create historical narratives using archival and historical sources; and to compare and relate the value of these to ethnic studies research. Students may not receive credit for both ETHN 240 and ETHN 201. ", + "name": "ETHN 201", + "prereqs": [], + "title": "Historical Methods and Archives (4)" + }, + "ETHN 202": { + "dept": "ETHN", + "description": "This course focuses on conceptual and methodological frameworks of ethnography and qualitative inquiry, including research design, grounded theory, the field note journal, participant observation, and interviewing; major themes include the role of indigenous/insider researchers, ethics of involvement, and community collaboration. Students may not receive credit for both ETHN 242 and ETHN 202. ", + "name": "ETHN 202", + "prereqs": [], + "title": "Qualitative Methods/Ethnography (4)" + }, + "ETHN 203": { + "dept": "ETHN", + "description": "This course will train students in approaches to interdisciplinary research concerned with power and the production of knowledge, with a focus on conducting multimedia field research, applying discourse analysis, and recognizing forms of data across disciplinary divides. Students may not receive credit for both ETHN 241 and ETHN 203. ", + "name": "ETHN 203", + "prereqs": [], + "title": "Cultural Studies and Cultural Production (4)" + }, + "ETHN 214A": { + "dept": "ETHN", + "description": "This course provides an introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization. In addition to a wide-ranging look at the complex foundations of systems of representing Indians and Indianness, the course includes a study of a specific art form and history of a specific Native American community that will allow the class to create new approaches to designing a museum exhibition. May be coscheduled with ETHN 114A.", + "name": "ETHN 214A", + "prereqs": [], + "title": "Representing Native America (4)" + }, + "ETHN 214B": { + "dept": "ETHN", + "description": "This course follows the introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization (part one). Students will develop the proposals they completed in part one of the course, finishing with curatorial briefs for an exhibition of Native American art with a partner museum incorporating new and decolonizing approaches to representation. May be coscheduled with ETHN 114B. ", + "name": "ETHN 214B", + "prereqs": [ + "ETHN 214A" + ], + "title": "Representing Native America: Exhibition Design (4)" + }, + "ETHN 230": { + "dept": "ETHN", + "description": "This course is a forum for the presentation of recent research by guests, faculty, and students. This course may be taken for credit six times. ", + "name": "ETHN 230", + "prereqs": [], + "title": "Departmental Colloquium (1)" + }, + "ETHN 252": { + "dept": "ETHN", + "description": "This course offers scholars of race, gender, and sexuality an introduction to spatial theory and geographic methodologies. Particular attention will be given to theories of spatial formation, the interplay of social and spatial mobility and containment, and alternative spatio-political imaginaries. ", + "name": "ETHN 252", + "prereqs": [], + "title": "Race, Gender, and Space (4)" + }, + "ETHN 255": { + "dept": "ETHN", + "description": "This seminar explores the centrality of race to the formation of the discipline of psychoanalysis as well as the relevance of psychoanalysis to the study of race, gender, and sexuality. We will read key texts by Freud, Lacan, and Fanon and follow the development of their ideas in the works of late twentieth and twenty-first century scholars like Spillers, Marriott, Judy, Seshadri-Crooks, Eng, and Mercer. Nongraduate students may enroll with consent of instructor.", + "name": "ETHN 255", + "prereqs": [], + "title": "Race and Psychoanalysis (4)" + }, + "ETHN 256": { + "dept": "ETHN", + "description": "This course studies the body cross-culturally as the site for the construction of gender, sex, ethnic, and racial identities. ", + "name": "ETHN 256", + "prereqs": [], + "title": "Gender, Sexuality, and Race (4)" + }, + "ETHN 257A-B": { + "dept": "ETHN", + "description": "An intensive survey of social and cultural theory, focusing on how constructions of science, language, politics, and social inequality shaped early modernity, romantic nationalism, Marxism, cultural relativity, psychoanalysis, and fin de si\u00e8cle social thought. The second quarter surveys poststructuralist, postmodern, feminist, subaltern studies, globalization, and other critiques. ETHN 257A is not a prerequisite for ETHN 257B.", + "name": "ETHN 257A-B", + "prereqs": [], + "title": "Social Theory (4-4)" + }, + "ETHN 260": { + "dept": "ETHN", + "description": "and Borderlands: The Local and Global (4)", + "name": "ETHN 260", + "prereqs": [], + "title": "Transnationalism" + }, + "ETHN 265": { + "dept": "ETHN", + "description": "This course surveys the field of immigration and refugee studies and introduces students to recent theories and cutting-edge research in the field. Key topics: gender and migration; diaspora and transnationalism; immigration, race, and citizenship; and globalization and immigrant labor. ", + "name": "ETHN 265", + "prereqs": [], + "title": "Critical Immigration and Refugee Studies (4)" + }, + "ETHN 266": { + "dept": "ETHN", + "description": "This course examines popular culture as a site of domination", + "name": "ETHN 266", + "prereqs": [], + "title": "Popular Culture and Pedagogy (4)" + }, + "ETHN 267": { + "dept": "ETHN", + "description": "We analyze how concepts of power and memory are appropriated in diverse narratives: literature, theatre, personal testimonies, monuments, museums, memorials; and examine how mutually constituted processes of remembering/forgetting work to produce official discourses of nationalism, colonialism, violence, and construction of subaltern subjectivities. ", + "name": "ETHN 267", + "prereqs": [], + "title": "History and Memory (4)" + }, + "ETHN 268": { + "dept": "ETHN", + "description": "How did the United States become an empire? This course approaches the historical and contemporary problem of the United States as an imperial power through analyses of hierarchies and cultures at home and outside of formal US borders. Nongraduate students may enroll with consent of instructor.", + "name": "ETHN 268", + "prereqs": [], + "title": "Theories and Cultures of US Imperialism (4)" + }, + "ETHN 270": { + "dept": "ETHN", + "description": "This seminar will explore indigenous epistemologies, their ontological dimensions, the methodological issues surrounding related research, and their significance in relation to the production of knowledge and the histories, presents, and futures of Native American and Indigenous people. ", + "name": "ETHN 270", + "prereqs": [], + "title": "Indigenous Epistemologies and their Disruptions (4)" + }, + "ETHN 275": { + "dept": "ETHN", + "description": "This seminar examines critical engagements between scholarship from postcolonial, feminist and other radical Marxist traditions. We focus on philosophical and political debates stemming from issues of race and gender, tracing them in Marx\u2019s texts and their historical contexts. ", + "name": "ETHN 275", + "prereqs": [], + "title": "Marxist Thought (4)" + }, + "ETHN 280": { + "dept": "ETHN", + "description": "This course explores major currents in black intellectual history, and some paths less well tread, structured thematically, geographically, and chronologically from the nineteenth century to the present. Students read foundational primary sources and contemporary scholarly studies of African diasporic texts. ", + "name": "ETHN 280", + "prereqs": [], + "title": "Black Thought: Roots and Routes (4)" + }, + "ETHN 287": { + "dept": "ETHN", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287.", + "name": "ETHN 287", + "prereqs": [], + "title": "Ethnography Practicum (4)" + }, + "ETHN 289": { + "dept": "ETHN", + "description": "This course is a research seminar on themes of contemporary and historic importance in ethnic studies. Themes will be determined by instructor. Course may be repeated three times for credit.", + "name": "ETHN 289", + "prereqs": [], + "title": "Topics in Ethnic Studies Research (4)" + }, + "ETHN 291A": { + "dept": "ETHN", + "description": "Using key theoretical approaches, debates, and frameworks of ethnic studies, students develop a critical analysis of how existing scholarship within the field of ethnic studies informs a specific research question, topic, or object of study; this literature review demonstrates comprehensive and holistic knowledge of critical approaches and constructs a coherent theoretical framework that effectively summarizes, synthesizes, and assesses a particular body of relevant ethnic studies literature.", + "name": "ETHN 291A", + "prereqs": [], + "title": "Comprehensive Research Preparation: The Literature Review (4)" + }, + "ETHN 291B": { + "dept": "ETHN", + "description": "Implementing interdisciplinary research methods, students produce independent, generative research germane to the study of race and ethnicity. Students write a twenty- to twenty-five-page critical paper that poses an appropriate research question; engages relevant literature to provide a conceptual framework; develops and incorporates appropriate research methodologies; and constructs a critical, thorough, and cohesive argument based on the collection, organization, interpretation, and analysis of evidence. ", + "name": "ETHN 291B", + "prereqs": [ + "ETHN 291A" + ], + "title": "Comprehensive Research Preparation: The Methodologies Paper (4)" + }, + "ETHN 298": { + "dept": "ETHN", + "description": "This is an independent research or individual guided tutorial in an area not covered by present course offerings. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course.", + "name": "ETHN 298", + "prereqs": [], + "title": "Directed Reading (1\u201312)" + }, + "ETHN 299": { + "dept": "ETHN", + "description": "Open to graduate students conducting doctoral thesis research. This course may be repeated for an indefinite number of times due to the independent nature of thesis research and writing.", + "name": "ETHN 299", + "prereqs": [], + "title": "Thesis Research (1\u201312)" + }, + "ETHN 3": { + "dept": "ETHN", + "description": "Through examining the historical and contemporary politics of representation in both popular and community-focused media, film, art, music, and literature, this course tracks racial formation through studying the sphere of cultural production, consumption, and contestation. Students may not receive credit for both ETHN 1C and ETHN 3.", + "name": "ETHN 3", + "prereqs": [], + "title": "Introduction to Ethnic Studies: Making Culture (4)" + }, + "ETHN 500": { + "dept": "ETHN", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations.", + "name": "ETHN 500", + "prereqs": [], + "title": "Apprentice Teaching in Ethnic Studies (4)" + }, + "ETHN 87": { + "dept": "ETHN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "ETHN 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "ETHN 97": { + "dept": "ETHN", + "description": "in Racial and Ethnic Communities (1\u20134)", + "name": "ETHN 97", + "prereqs": [], + "title": "Field Studies" + }, + "ETHN 98": { + "dept": "ETHN", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ", + "name": "ETHN 98", + "prereqs": [], + "title": "Directed Group Studies (1\u20134)" + }, + "ETHN 99": { + "dept": "ETHN", + "description": "Directed study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ", + "name": "ETHN 99", + "prereqs": [], + "title": "Independent Study (1\u20134)" + }, + "FILM 87": { + "dept": "FILM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "name": "FILM 87", + "prereqs": [], + "title": "Film Studies Freshman Seminar (1)" + }, + "FMPH 101": { + "dept": "FMPH", + "description": "This course covers the basic principles of epidemiology, with applications to investigations of noninfectious (\u201cchronic\u201d) and infectious diseases. Explores various study designs appropriate for disease surveillance and studies of etiology and prevention. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 101. Students may not receive credit for FMPH 101 and either FPMU 101 or FPMU 101A. ", + "name": "FMPH 101", + "prereqs": [ + "PSYC 60", + "COGS 14B", + "FMPH 40", + "MATH 11" + ], + "title": "Epidemiology (4)" + }, + "FMPH 102": { + "dept": "FMPH", + "description": "Fundamentals of biostatistics and basic methods for analysis of continuous and binary outcomes for one, two, or several groups. Includes: summarizing and displaying data; probability; statistical distributions; central limit theorem, confidence intervals, hypothesis testing; comparing means of continuous variables between two groups; comparing proportions between two groups; simple and multiple linear regression. Hands-on data analysis using software and statistical applications in public health. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 102. Students may not receive credit for FMPH 102 and either FPMU 101B or FPMU 102. ", + "name": "FMPH 102", + "prereqs": [ + "PSYC 60", + "COGS 14B", + "FMPH 40", + "MATH 11" + ], + "title": "Biostatistics in Public Health (4)" + }, + "FMPH 110": { + "dept": "FMPH", + "description": "This course introduces health behavior concepts through applications to chronic disease prevention. The focus is on smoking, dietary behaviors, and physical activity and is organized around relationships to health, measurement, influencing factors, interventions, and translation to public health practice. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 110. Students may not receive credit for FPMU 110 and FMPH 110. ", + "name": "FMPH 110", + "prereqs": [ + "FMPH 40" + ], + "title": "Health Behavior and Chronic Diseases (4)" + }, + "FMPH 120": { + "dept": "FMPH", + "description": "This course covers the rationale for and effectiveness of policies to influence nutrition, physical activity, and substance use behavior. Policies include legalization, taxation, labeling, produce manufacturing, warning labels, licensing, marketing, and counter-marketing practices and restrictions on use. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 120. Students may not receive credit for FPMU 120 and FMPH 120. ", + "name": "FMPH 120", + "prereqs": [ + "FMPH 40" + ], + "title": "Health Policies for Healthy Lifestyles (4)" + }, + "FMPH 130": { + "dept": "FMPH", + "description": "This core public health course addresses the fundamentals of environmental and occupational health, including identification of hazards, basic toxicology, risk assessment, prevention/protection, and regulatory/control policies. Specific environmental and occupational hazards and relevant case studies will be presented. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 130. Students may not receive credit for FPMU 130 and FMPH 130. ", + "name": "FMPH 130", + "prereqs": [ + "FMPH 50", + "FMPH 101" + ], + "title": "Environmental and Occupational Health (4)" + }, + "FMPH 180A": { + "dept": "FMPH", + "description": "Emphasizes key public health concepts including program planning, research design, and written/oral communication skills. Practicum done in combination with research, internship, or overseas experiences, completed after FMPH 180A. Open to public health majors with upper-division standing.Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180A. Students may not receive credit for FPMU 180A and FMPH 180A. ", + "name": "FMPH 180A", + "prereqs": [ + "FMPH 110", + "FMPH 50", + "FMPH 102", + "FMPH 40", + "FMPH 101" + ], + "title": "Public Health Advanced Practicum I (4)" + }, + "FMPH 180B": { + "dept": "FMPH", + "description": "Practicum participants will engage in an experiential learning program at a pre-approved practicum site. Students will participate in applied public health research and/or programs under supervision of UC San Diego faculty. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180B. Students may not receive credit for FPMU 180B and FMPH 180B. ", + "name": "FMPH 180B", + "prereqs": [], + "title": "Public Health Advanced Practicum II (4)" + }, + "FMPH 180C": { + "dept": "FMPH", + "description": "Practicum participants will interpret and contextualize findings from the experiential learning program planned in 180A and completed during 180B. Oral and written presentations will focus on disseminating public health information in diverse formats. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180C. Students may not receive credit for FPMU 180C and FMPH 180C. ", + "name": "FMPH 180C", + "prereqs": [ + "FMPH 180B" + ], + "title": "Public Health Advanced Practicum III (4)" + }, + "FMPH 191": { + "dept": "FMPH", + "description": "Selected topics in the field of public health. Must be taken for a letter grade to be applied to the public health major. May be taken for credit up to three times. ", + "name": "FMPH 191", + "prereqs": [ + "FMPH 40" + ], + "title": "Topics in Public Health (4)" + }, + "FMPH 193": { + "dept": "FMPH", + "description": "This is the first of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will integrate the skills and knowledge gained throughout the BSPH program and learn critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ", + "name": "FMPH 193", + "prereqs": [ + "FMPH 110", + "FMPH 50", + "FMPH 102", + "FMPH 40", + "FMPH 101" + ], + "title": "Public Capstone I (4)" + }, + "FMPH 194": { + "dept": "FMPH", + "description": "This is the second of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will interpret and contextualize findings from their projects completed in the first part of the series. Oral and written presentations will focus on disseminating public health information in diverse formats.Must be taken for a letter grade to be applied to the public health major. ", + "name": "FMPH 194", + "prereqs": [ + "FMPH 110", + "FMPH 50", + "FMPH 120", + "FMPH 193", + "FMPH 102", + "FMPH 40", + "FMPH 101" + ], + "title": "Public Capstone II (4)" + }, + "FMPH 195": { + "dept": "FMPH", + "description": "Introduction to teaching in a public health course. As an undergraduate instructional apprentice, students will attend the lectures of the course, weekly meetings with students of the course, and weekly meetings with the course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. Renumbered from FPMU 195. FMPH 195 and/or FPMU 195 may be taken for credit for a combined total of two times. ", + "name": "FMPH 195", + "prereqs": [], + "title": "Instruction in Public Health (4)" + }, + "FMPH 196A": { + "dept": "FMPH", + "description": "This is the first of a three-part honors series that serves as the culminating experience for the BS in public health (BSPH) majors. Students review, reinforce, and complement skills and knowledge gained throughout the BSPH program, and prepare a proposal integrating critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ", + "name": "FMPH 196A", + "prereqs": [ + "FMPH 110", + "FMPH 50", + "FMPH 102", + "FMPH 40", + "FMPH 101" + ], + "title": "Public Health Honors Practicum I (4)" + }, + "FMPH 196B": { + "dept": "FMPH", + "description": "This is the second of a three-part honors series that serves as the culminating experience for the BS in public health majors. This course represents an experiential learning opportunity at a pre-approved community site. Under supervision of public health faculty and pertinent site representatives, students will refine and implement the public health proposal developed in the first part of the honors series. Must be taken for a letter grade to be applied to the public health major. ", + "name": "FMPH 196B", + "prereqs": [ + "FMPH 196A" + ], + "title": "Public Health Honors Practicum II (4)" + }, + "FMPH 196C": { + "dept": "FMPH", + "description": "This is the third of a three-part honors series that serves as the culminating experience for the BS in public health majors. Students will analyze, interpret, and contextualize findings from their projects completed in the series. Oral and written communication will focus on disseminating public health information in diverse formats, and will include a presentation and an honors thesis. Must be taken for a letter grade to be applied to the public health major. ", + "name": "FMPH 196C", + "prereqs": [ + "FMPH 196B" + ], + "title": "Public Health Honors Practicum III (4)" + }, + "FMPH 199": { + "dept": "FMPH", + "description": "", + "name": "FMPH 199", + "prereqs": [], + "title": "Independent Study (2\u20134)" + }, + "FMPH 221": { + "dept": "FMPH", + "description": "Introductory graduate course on the analysis of biomedical data using the R statistical software. Topics include t-tests, ANOVAs, linear regression, model diagnostics, model building and selection, interaction, confounding, multiple comparisons, and robust tests based on ranks and resampling. ", + "name": "FMPH 221", + "prereqs": [], + "title": "Biostatistical Methods I (4)" + }, + "FMPH 222": { + "dept": "FMPH", + "description": "Intermediate-level graduate course in the analysis of categorical data. Topics include generalized linear models (logistic, Poisson, loglinear models); splines and nonlinear regression; stratified and case-control studies. Maximum likelihood, quasi likelihood, and Bayesian approaches; large scale model selection and inference. ", + "name": "FMPH 222", + "prereqs": [ + "MATH 281A", + "MATH 282A", + "FMPH 221" + ], + "title": "Biostatistical Methods II (4)" + }, + "FMPH 223": { + "dept": "FMPH", + "description": "Covers analysis of longitudinal data, parametric modeling of covariance, generalized estimating equations, linear, nonlinear, and generalized linear mixed effects models and modeling dropout in longitudinal studies. Data analysis and computational issues are emphasized. ", + "name": "FMPH 223", + "prereqs": [ + "MATH 281B", + "MATH 281A", + "FMPH 222", + "MATH 282A", + "MATH 282B" + ], + "title": "Analysis of Longitudinal Data (4)" + }, + "FMPH 224": { + "dept": "FMPH", + "description": "The graduate class will cover statistical aspects of clinical trial design, monitoring, analysis, and ethics of human subjects research. Data analysis and computation will be emphasized. ", + "name": "FMPH 224", + "prereqs": [ + "FMPH 222", + "FMPH 221" + ], + "title": "Clinical Trials (4)" + }, + "FMPH 225": { + "dept": "FMPH", + "description": "The graduate class will cover modern statistical inference including non-parametric statistics, estimating equations, resampling methods, and statistical learning. Data analysis and computation will be emphasized. ", + "name": "FMPH 225", + "prereqs": [ + "FMPH 223", + "FMPH 222", + "FMPH 221" + ], + "title": "Advanced Topics in Biostatistical Inference (4)" + }, + "FMPH 226": { + "dept": "FMPH", + "description": "An introduction to inference and causal modeling for observational data, including propensity score adjustment, inverse probability weighting, instrumental variables, and sensitivity analysis. Data analysis and computation will be required. ", + "name": "FMPH 226", + "prereqs": [ + "FMPH 223", + "FMPH 222", + "FMPH 221" + ], + "title": "Statistical Methods for Observational Studies (4)" + }, + "FMPH 227": { + "dept": "FMPH", + "description": "This graduate course covers concepts, methods, and applications of multivariate data analysis, including multivariate regression, principal components, clustering and functional analysis. Data analysis will be emphasized. ", + "name": "FMPH 227", + "prereqs": [ + "FMPH 222", + "FMPH 221" + ], + "title": "Applied Multivariate Statistical Analysis (4)" + }, + "FMPH 241": { + "dept": "FMPH", + "description": "This practicum provides hand-on experience with biomedical research and data analysis. Working within a specific biomedical domain (e.g., cancer, genomics, or physical activity research), students will conduct original data analysis, and prepare or substantially contribute to a final project report. May be taken for credit up to five times. ", + "name": "FMPH 241", + "prereqs": [ + "FMPH 222", + "FMPH 221" + ], + "title": "Biostatistics Rotation (3)" + }, + "FMPH 242": { + "dept": "FMPH", + "description": "Biostatistics elective courses will be taught under this course heading. Courses will have a varying focus each year/quarter. Topics will include random field theory and image analysis, advanced statistical computing, Bayesian methods, and others. May be taken for credit up to three times. ", + "name": "FMPH 242", + "prereqs": [ + "FMPH 222", + "FMPH 221" + ], + "title": "Advanced Topics in Biostatistics (4)" + }, + "FMPH 277": { + "dept": "FMPH", + "description": "This course provides an overview of the US health policy landscape. It addresses the development of explicit health policies to promote certain health behaviors, policies aimed at public health safety, and policy issues related to emerging health and biomedical technologies. Renumbered from FPM 290. Students may not receive credit for FMPH 277 and FPM 290. ", + "name": "FMPH 277", + "prereqs": [], + "title": "Health Policy, Technology, and Public Health (4)" + }, + "FMPH 290": { + "dept": "FMPH", + "description": "This course requires attendance and participation in the Division of Biostatistics seminar series and journal club. Students will critically read the assigned articles and participate in biweekly journal clubs. Students are also required to lead at least one journal club discussion. ", + "name": "FMPH 290", + "prereqs": [], + "title": "Biostatistics Journal Club and Seminar (1)" + }, + "FMPH 291": { + "dept": "FMPH", + "description": "Topics of special interest in public health. Topics may vary from quarter to quarter. May be taken for credit up to twelve times for a maximum of forty-eight units.", + "name": "FMPH 291", + "prereqs": [], + "title": "Special Topics in Public Health (1\u20134)" + }, + "FMPH 40": { + "dept": "FMPH", + "description": "This course provides an introduction to the infrastructure of public health; the analytical tools employed by public health practitioners; bio-psychosocial perspectives of public health problems; health promotion/disease prevention; quality assessment in public health; and legal and ethical concerns. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 40. Students may not receive credit for FPMU 40 and FMPH 40. ", + "name": "FMPH 40", + "prereqs": [], + "title": "Introduction to Public Health (4)" + }, + "FMPH 50": { + "dept": "FMPH", + "description": "This course explores historical and current interactions, achievements, and challenges of primary care and public health. It will analyze the impact of common medical conditions such as obesity, diabetes, mental health disorders, and others on individuals, their families, and society. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 50. Students may not receive credit for FPMU 50 and FMPH 50. ", + "name": "FMPH 50", + "prereqs": [], + "title": "Primary Care and Public Health (4)" + }, + "FPM 231": { + "dept": "FPM", + "description": "", + "name": "FPM 231", + "prereqs": [], + "title": "Exposure Assessment and Biomarkers in Epidemiology (2)" + }, + "FPM 233": { + "dept": "FPM", + "description": "Clinical nutrition is the study of nutrition and diet as related to the prevention and treatment of human disease. Nutrition is an interdisciplinary field of study, built on a foundation of biomedical and behavioral sciences. This course emphasizes class discussion of clinical topics and assigned readings in current areas of research and practice (i.e., diet and cancer, vitamin and other diet supplements), with case studies and illustrative class exercises.", + "name": "FPM 233", + "prereqs": [], + "title": "Clinical Nutrition (2)" + }, + "FPM 237": { + "dept": "FPM", + "description": "This course is an introduction to microarray technology and analysis of gene expression data. This ten-lecture course will cover a range of microarray topics including platform types. Image processing, experimental design, and statistical analysis and application in medicine and health sciences.", + "name": "FPM 237", + "prereqs": [], + "title": "Microarray Technology and Informatics (2)" + }, + "FPM 238": { + "dept": "FPM", + "description": "Introduction to clinical ambulatory medicine where students spend one afternoon per week in a physician\u2019s practice participating in patient care commensurate with their training. Students may opt to continue the course over successive quarters or enroll full time during the summer for up to four weeks. S/U grades only. May be taken for credit two times. ", + "name": "FPM 238", + "prereqs": [], + "title": "Introduction to Clinical Family Medicine (1-7)" + }, + "FPM 244": { + "dept": "FPM", + "description": "(Cross-listed with MED 248) Integrated clinical and public health experience with US and Mexican graduate student and faculty teams over three to four days in Baja California, Mexico; emphasis on common clinical and public health problems in underserved populations. Minimal working knowledge of Spanish recommended. May be taken for credit four times. ", + "name": "FPM 244", + "prereqs": [], + "title": "Clinical and Public Health Elective, Baja California, Mexico (2)" + }, + "FPM 246": { + "dept": "FPM", + "description": "An introduction to the history and epidemiology of work-related disease. A review of occupational-related health problems, i.e., heart disease, pneumoconiosis, peripheral neuropathy, sterility, birth defects, psychiatric problems. Emphasis on the occupational history in the diagnosis of job-related disease and disability. Major modalities of prevention and control will be presented and the role of health practitioners, government, management and labor will be reviewed. The course will include guest lecturers, films, videotapes and field visits to local industries and/or clinicians treating occupational diseases. ", + "name": "FPM 246", + "prereqs": [ + "SM 208" + ], + "title": "Occupational/Environmental Health (2)" + }, + "FPM 247": { + "dept": "FPM", + "description": "This seminar is designed to expand the student\u2019s understanding of clinical epidemiology by investigating several major controversial issues, such as treatment of breast cancer, oral hypoglycemic in diabetes, and dietary habits as a risk factor for coronary artery disease. The seminar will address clinical and methodological issues in the epidemiology of various chronic diseases.", + "name": "FPM 247", + "prereqs": [], + "title": "Clinical Epidemiology Seminar (2)" + }, + "FPM 257": { + "dept": "FPM", + "description": "This course will provide an overview of the problem of cancer and its avoidable causes. It covers some of the hottest topics currently facing cancer prevention professional as they try to prevent cancer from occurring in the first place and delay its progression.", + "name": "FPM 257", + "prereqs": [], + "title": "Cancer: Cause and Prevention (2)" + }, + "FPM 258A": { + "dept": "FPM", + "description": "This first quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from II or III). ", + "name": "FPM 258A", + "prereqs": [], + "title": "Public Health Doctoral Lecture Series I (2)" + }, + "FPM 258B": { + "dept": "FPM", + "description": "This second quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or III). ", + "name": "FPM 258B", + "prereqs": [ + "FPM 258A" + ], + "title": "Public Health Doctoral Lecture Series II (2)" + }, + "FPM 258C": { + "dept": "FPM", + "description": "This third quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or II). ", + "name": "FPM 258C", + "prereqs": [ + "FPM 258B" + ], + "title": "Public Health Doctoral Lecture Series III (2)" + }, + "FPM 259A": { + "dept": "FPM", + "description": "Students will explore an epidemiologic research question by reviewing relevant published literature, and then design and conduct appropriate data analysis using a pre-existing dataset. May be taken for credit two times. ", + "name": "FPM 259A", + "prereqs": [], + "title": "Applied Epidemiology\u2014Scientific Analysis (4)" + }, + "FPM 259B": { + "dept": "FPM", + "description": "Students will learn the principles of scientific writing, review examples of scientific literature, and then complete a manuscript suitable for publication based on their project from FPM 259A. May be taken for credit two times. ", + "name": "FPM 259B", + "prereqs": [ + "FPM 259A" + ], + "title": "Applied Epidemiology\u2014Scientific Writing (4)" + }, + "FPM 259C": { + "dept": "FPM", + "description": "Students will learn the principles of scientific presentations, for the classroom, and for scientific meetings (both oral and poster presentations). Students will then prepare and deliver presentations based on their project from FPM 259A. May be taken for credit two times. ", + "name": "FPM 259C", + "prereqs": [ + "FPM 259B" + ], + "title": "Applied Epidemiology\u2014Scientific Presentations (4)" + }, + "FPM 270": { + "dept": "FPM", + "description": "To improve knowledge about health and illness within cultural contexts, including review and discussions of epidemiologic studies describing health indicators/beliefs/practices. Students interact with experts in cross-cultural health research to explore ethnicity/culture in health care delivery and utilization, and disease risk. ", + "name": "FPM 270", + "prereqs": [], + "title": "Cultural Perceptions of Health and Disease (4)" + }, + "FPM 272": { + "dept": "FPM", + "description": "The UC San Diego Student-Run Free Clinic Project operates in partnership with two community programs for the homeless and an inner-city elementary school. Students participate in didactic sessions learning principles of working with the underserved and are supervised in clinical, health education, and administrative roles at the clinic sites. S/U grades only. ", + "name": "FPM 272", + "prereqs": [], + "title": "Community Advocacy (4)" + }, + "FPM 276": { + "dept": "FPM", + "description": "Course will include a discussion of intervention goals suggested by major theories of health behavior change.\u00a0Common communication modes and messages will be studied, including examples using small group settings, mass media, legislation, and telephone counseling. ", + "name": "FPM 276", + "prereqs": [], + "title": "Health Behavior Interventions I (4)" + }, + "FPM 277": { + "dept": "FPM", + "description": "This course focuses on critical analyses of success and failure of behavior theories as applied to interventions in multiple fields (e.g. smoking, dietary behavior, and physical activity). It covers individual and population approaches to behavior change. ", + "name": "FPM 277", + "prereqs": [ + "PU 76", + "PU 75" + ], + "title": "Health Behavior Interventions II (4)" + }, + "FPM 278": { + "dept": "FPM", + "description": "Course will present theory and methods for developing scales to assess health behavior constructs (e.g., self-efficacy, social support). ", + "name": "FPM 278", + "prereqs": [], + "title": "Scale Development for Behavioral Health Measurement (4)" + }, + "FPM 280A": { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor to learn how to conduct a health behavior intervention. S/U grades only. ", + "name": "FPM 280A", + "prereqs": [], + "title": "Practicum in Health Behavior I (4)" + }, + "FPM 280B": { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in preparing manuscripts using data from a specific health behavior intervention. S/U grades only. ", + "name": "FPM 280B", + "prereqs": [], + "title": "Practicum in Health Behavior II (4)" + }, + "FPM 280C": { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in analyzing existing data sets. S/U grades only. ", + "name": "FPM 280C", + "prereqs": [], + "title": "Practicum in Health Behavior III (4)" + }, + "FPM 286": { + "dept": "FPM", + "description": "The Free Clinic Project operates at three community-based sites. In this class, students, under faculty supervision, provide clinical services and learn administrative, health education and leadership. S/U grades only. May be taken for credit as many times as desired. ", + "name": "FPM 286", + "prereqs": [ + "FPM 272" + ], + "title": "Free Clinic II (2 or 4)" + }, + "FPM 288": { + "dept": "FPM", + "description": "Focus on qualitative methods addressing both theoretical and practical dimensions of conducting qualitative research. Identify research questions for which qualitative methods are appropriate, and to critique qualitative research in terms of design, interview techniques, analysis, and interpretation.", + "name": "FPM 288", + "prereqs": [], + "title": "Introduction to Qualitative Research Methods (4)" + }, + "FPM 291": { + "dept": "FPM", + "description": "Focus on disseminating and scaling up health interventions in real-world settings. Interactive didactic sessions and guest lectures on implementation of research principles, approaches, and methods. Will design a proposal to implement or scale-up a clinical or public health intervention.", + "name": "FPM 291", + "prereqs": [], + "title": "Dissemination and Implementation Science in Health: An Introduction (4)" + }, + "GLBH 100": { + "dept": "GLBH", + "description": "Selected topics in global health. Content will vary from quarter to quarter. May be taken for credit up to four times.", + "name": "GLBH 100", + "prereqs": [], + "title": "Special Topics in Global Health (4)" + }, + "GLBH 101": { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 101.) Examines aging as a process of human development from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. Students may not receive credit for GLBH 101 and ANSC 101.", + "name": "GLBH 101", + "prereqs": [], + "title": "Aging: Culture and Health in Late Life Human Development (4)" + }, + "GLBH 105": { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 105.) Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health care systems in developed, underdeveloped, and developing countries. In addition, we'll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems\u2014multi-drug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: GLBH 105, ANSC 105, ANSC 105S, or ANSC 105GS.", + "name": "GLBH 105", + "prereqs": [], + "title": "Global Health and Inequality (4)" + }, + "GLBH 110": { + "dept": "GLBH", + "description": "This course will provide an overview of demographic principles, and their associations with maternal and child health outcomes. We will focus on demographic trends in developing countries, using research from the DHS to discuss inequalities in fertility, mortality, and morbidity. The remainder of the class will question why we see such spatial variation in many maternal and child health outcomes, with a focus on theories of social norms, and social network methods for uncovering those trends.", + "name": "GLBH 110", + "prereqs": [], + "title": "Demography and Social Networks in Global Health (4)" + }, + "GLBH 111": { + "dept": "GLBH", + "description": "Introduces students to the physical and mental health needs of vulnerable migrants and socially marginalized communities, including substance users, LGBTQ, deportees, and the homeless and medically indigent. Students will become integrated into a free clinic in Tijuana where they will obtain community-based field experiences in interacting with these populations; learn about delivering evidence-based health care in underserved settings and be introduced to issues regarding cultural appropriation. Program or materials fees may apply. May be taken for credit up to three times. Students are required to cross the US-Mexico border to attend clinic in Tijuana as part of the requirements for the course. Recommended preparation: upper-division global health course work prior to participation is recommended.", + "name": "GLBH 111", + "prereqs": [], + "title": "Clinic on the Border: Health Frontiers in Tijuana (4)" + }, + "GLBH 113": { + "dept": "GLBH", + "description": "The course examines women\u2019s and girls\u2019 health throughout the world, focusing on the main health problems experienced primarily in low resource settings. This course presents issues in the context of a woman\u2019s life from childhood, through adolescence, reproductive years, and aging. The course will have a strong emphasis on social, economic, environmental, behavioral, and political factors that affect health behaviors, reproductive health, maternal morbidity/mortality, and STIs/HIV.", + "name": "GLBH 113", + "prereqs": [], + "title": "Women\u2019s Health in Global Perspective (4)" + }, + "GLBH 129": { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 129.) This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. Students may not receive credit for GLBH 129 and ANSC 129.", + "name": "GLBH 129", + "prereqs": [], + "title": "Meaning and Healing (4)" + }, + "GLBH 146": { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 146.) An introductory course to HIV taught through a medical student format, with emphasis on research and experiential learning, including observation of physicians providing care for patients from diverse socioeconomic and cultural backgrounds, and who may be underinsured or uninsured, homeless, and/or immigrants. Students may not receive credit for ANSC 146 and GLBH 146.", + "name": "GLBH 146", + "prereqs": [], + "title": "A Global Health Perspective on HIV (4)" + }, + "GLBH 147": { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 147.) Examines interactions of culture, health, and environment. Rural and urban human ecologies, their energy foundations, sociocultural systems, and characteristic health and environmental problems are explored. The role of culture and human values in designing solutions will be investigated. Students may not receive credit for GLBH 147 and ANSC 147.", + "name": "GLBH 147", + "prereqs": [], + "title": "Global Health and the Environment (4)" + }, + "GLBH 148": { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 148.) Introduction to global health from the perspective of medical anthropology on disease and illness, cultural conceptions of health, doctor-patient interaction, illness experience, medical science and technology, mental health, infectious disease, and health-care inequalities by ethnicity, gender, and socioeconomic status. Students may not receive credit for GLBH 148 and ANSC 148.", + "name": "GLBH 148", + "prereqs": [], + "title": "Global Health and Cultural Diversity (4)" + }, + "GLBH 150": { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 150.) This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcomes in non-European and North American countries are explored. Students may not receive credit for GLBH 150 and ANSC 150.", + "name": "GLBH 150", + "prereqs": [], + "title": "Culture and Mental Health (4)" + }, + "GLBH 150A": { + "dept": "GLBH", + "description": "Course will consist of intensive reading and discussion in fields related to each student\u2019s primary interest and building on their Global Health Field Experience. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ", + "name": "GLBH 150A", + "prereqs": [], + "title": "Global Health Capstone Seminar I (4)" + }, + "GLBH 150B": { + "dept": "GLBH", + "description": "Course will be a workshop with critical input from all participants focused on preparing a senior thesis. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ", + "name": "GLBH 150B", + "prereqs": [ + "GLBH 150A" + ], + "title": "Global Health Capstone Seminar II (4)" + }, + "GLBH 160": { + "dept": "GLBH", + "description": "Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will focus on identifying critical global health policy challenges and solving them using a multidisciplinary approach that takes into account the perspectives of various stakeholders. ", + "name": "GLBH 160", + "prereqs": [], + "title": "Global Health Policy (4)" + }, + "GLBH 181": { + "dept": "GLBH", + "description": "Illustrates and explores ecologic settings and frameworks for study and understanding of global health and international health policy. Students acquire understanding of diverse determinants and trends of disease in various settings and interrelationships between socio-cultural-economic development and health. ", + "name": "GLBH 181", + "prereqs": [], + "title": "Essentials of Global Health (4)" + }, + "GLBH 195": { + "dept": "GLBH", + "description": "Course gives students experience in teaching global health courses. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Students will need to apply for the undergraduate instructional apprentice position through ASES, fulfill the Academic Senate regulations, and receive the approval of the department, instructor, department chair, and Academic Senate. May be taken for credit up to two times. Course cannot be used to fulfill requirements for the global health major or minor.", + "name": "GLBH 195", + "prereqs": [], + "title": "Instructional Apprenticeship in Global Health (4)" + }, + "GLBH 197": { + "dept": "GLBH", + "description": "Offers global health students the opportunity to intern and gain credit for their global health field experience requirement. Students will intern and work with a faculty adviser to elaborate on the intellectual analysis and critique of the field experience. Students must complete the AIP application process and have the consent of a faculty adviser. May be taken for credit up to two times. Must be taken for a letter grade to fulfill requirements for the global health major or minor.", + "name": "GLBH 197", + "prereqs": [], + "title": "Global Health Academic Internship Program (4)" + }, + "GLBH 198": { + "dept": "GLBH", + "description": "Directed group study for students to delve deeper into global health topics or elaborate the intellectual analysis and critique of their field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ", + "name": "GLBH 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "GLBH 199": { + "dept": "GLBH", + "description": "Independent study opportunity for students to work with global health affiliated faculty on relevant research or to elaborate the intellectual analysis and critique of their global health field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ", + "name": "GLBH 199", + "prereqs": [], + "title": "Independent Study in Global Health Field Experience (4)" + }, + "GLBH 20": { + "dept": "GLBH", + "description": "Provides a foundational interdisciplinary understanding of complex global health issues and introduces major concepts and principles in global health. The course surveys the range of problems contributing to the global burden of disease and disability including infectious disease, mental illness, refugee and immigrant health, natural disasters, climate change, and food insecurity.", + "name": "GLBH 20", + "prereqs": [], + "title": "Introduction to Global Health (4)" + }, + "GPCO 400": { + "dept": "GPCO", + "description": "This course is designed to teach students how to \u201cread\u201d a country\u2019s political and economic system. The course will examine how the particular evolution of institutional frameworks in the different countries of the Pacific region influences the way that political choices are made. Renumbered from IRCO 400. Students may not receive credit for GPCO 400 and IRCO 400. ", + "name": "GPCO 400", + "prereqs": [], + "title": "Policy-Making Processes (4)" + }, + "GPCO 401": { + "dept": "GPCO", + "description": "This course introduces microeconomics, emphasizing applications to public policy. We examine tools such as marginal analysis and game theory to understand markets, the behavior of individuals and firms, and what role policy plays when markets fail to maximize social welfare. Renumbered from IRCO 401. Students may not receive credit for GPCO 401 and IRCO 401. ", + "name": "GPCO 401", + "prereqs": [], + "title": "Microeconomics for Policy and Management (4)" + }, + "GPCO 403": { + "dept": "GPCO", + "description": "The theory and mechanics of international economics. Included will be such topics as real trade theory, international movements of capital, the effects of trade and capital flows on domestic economies, and policies toward trade and foreign investment. Renumbered from IRCO 403. Students may not receive credit for GPCO 403 and IRCO 403. ", + "name": "GPCO 403", + "prereqs": [], + "title": "International Economics (4)" + }, + "GPCO 404": { + "dept": "GPCO", + "description": "Builds on GPCO 410, Microeconomics for Policy and Management. Applies economic reasoning to public issues, policies, and programs with a focus on the logic of when and how policy makers intervene in the market. It considers incentives and organizations; models of economic behavior, including markets, the absence of markets, and interventions; the price system; policy objectives and instruments. Renumbered from IRCO 404. Students may not receive credit for GPCO 404 and IRCO 404. ", + "name": "GPCO 404", + "prereqs": [], + "title": "Market Failures and Policy Interventions (4)" + }, + "GPCO 405": { + "dept": "GPCO", + "description": "This course studies the structure of American government and the political dimensions of policy problems. Emphasis will be on the study of institutions and the influences and constraints on decision-making, interaction between branches of government, government and society, and the international context in which US policy makers must work. Attention will be given to considering the United States with a comparative perspective. Renumbered from IRCO 405. Students may not receive credit for GPCO 405 and IRCO 405. ", + "name": "GPCO 405", + "prereqs": [], + "title": "Policy and Political Decision-Making in the U.S. (4)" + }, + "GPCO 406": { + "dept": "GPCO", + "description": "This course introduces principles of taxation and expenditure analysis, public budgeting, and assessment of budget priorities. It will introduce students to concepts related to how public finance affects the private economy, how governments raise funds (and account for their expenditures to the public, foreign investors, and international organizations), and the major public policy tools for governing public finance. Renumbered from IRCO 406. Students may not receive credit for GPCO 406 and IRCO 406. ", + "name": "GPCO 406", + "prereqs": [], + "title": "Public Finance and Taxation (4)" + }, + "GPCO 407": { + "dept": "GPCO", + "description": "This course introduces students to the methods of policy analysis and decision-making theory, including methods to assemble panel data to capture the impact of new policy on observable data, decision-making theory, uncertainty, decision criteria, expected utility, and risk. Renumbered from IRCO 407. Students may not receive credit for GPCO 407 and IRCO 407. ", + "name": "GPCO 407", + "prereqs": [], + "title": "Policy Analysis and Decision Theory (4)" + }, + "GPCO 410": { + "dept": "GPCO", + "description": "Development of analytic tools for understanding international relations with applications to contemporary problems such as the environment, nuclear proliferation, human rights, humanitarian interventions, and the roots of conflict and cooperation among countries. Renumbered from IRCO 410. Students may not receive credit for GPCO 410 and IRCO 410. ", + "name": "GPCO 410", + "prereqs": [], + "title": "International Politics and Security (4)" + }, + "GPCO 412": { + "dept": "GPCO", + "description": "", + "name": "GPCO 412", + "prereqs": [], + "title": "Globalization, the World System, and the Pacific (4)" + }, + "GPCO 415": { + "dept": "GPCO", + "description": "", + "name": "GPCO 415", + "prereqs": [], + "title": "Accounting and Finance for Policy Makers (4)" + }, + "GPCO 453": { + "dept": "GPCO", + "description": "This course is designed to provide proficiency in quantitative methods that are used for optimization and decision making. The use of spreadsheets is applied to data analysis and problem solving. Statistical theory and regression analysis are introduced. Renumbered from IRCO 453. Students may not receive credit for GPCO 453 and IRCO 453. ", + "name": "GPCO 453", + "prereqs": [], + "title": "Quantitative Methods I (4)" + }, + "GPCO 454": { + "dept": "GPCO", + "description": "The course introduces the theory and application of econometric regression for policy analysis. Students will learn the underlying mathematical formalism, basic data management and coding skills, and appropriate interpretation and meaningful presentation of results. Renumbered from IRCO 454. Students may not receive credit for GPCO 454 and IRCO 454. ", + "name": "GPCO 454", + "prereqs": [], + "title": "Quantitative Methods II (4)" + }, + "GPCO 462": { + "dept": "GPCO", + "description": "The capstone paper should demonstrate mastery of the three components of a public policy program: 1) development of the methodologies for rigorous data collection and policy analysis; 2) an in-depth understanding of the regulatory and legal politics and processes surrounding the student\u2019s chosen policy area; and 3) mastery of the details of the particular issue area and policies intended or that were intended as solutions. Paper may focus on policy interest of the student or of a client. Letter grades only. Renumbered from IRCO 462. Students may not receive credit for GPCO 462 and IRCO 462. ", + "name": "GPCO 462", + "prereqs": [], + "title": "Public Policy Capstone (4)" + }, + "GPCO 463": { + "dept": "GPCO", + "description": "Using class exercises, this capstone class introduces the fundamentals of business strategy, based on case studies requiring market and corporate analysis, and the principles of negotiation. Students apply analytic problem-solving skills in a strategy consulting project with a real-world client company. Renumbered from IRCO 463. Students may not receive credit for GPCO 463 and IRCO 463. ", + "name": "GPCO 463", + "prereqs": [ + "GPIM 474" + ], + "title": "Strategy and Negotiation (4)" + }, + "GPCO 466": { + "dept": "GPCO", + "description": "The course will emphasize real world application of theories and methods of policy analysis to projects with real clients in the area of energy and the environment. The class will include case studies and seminar-style discussions of topics such as project finance and management of regulatory risk. Most of the class will be devoted to work in small teams with clients seeking strategic guidance. Students are expected to produce final projects suitable for senior management and governing boards. ", + "name": "GPCO 466", + "prereqs": [ + "GPPS 428", + "GPCO 400" + ], + "title": "Real World Projects in Energy and the Environment (4)" + }, + "GPCO 467": { + "dept": "GPCO", + "description": "This capstone is designed to test the analytic skills of students, using them to explain complex real-world problems: security, persistent recurring conflict, persistent inequality and intergenerational debt, women\u2019s rights, environmental change, energy/resource systems, and financial contagion. Emphasis will be placed on determining the nature and dimension of the problem, exploring a range of solutions and assessing the capacity of public institutions. Renumbered from IRCO 467. Students may not receive credit for GPCO 467 and IRCO 467. ", + "name": "GPCO 467", + "prereqs": [], + "title": "Policy Responses to Global Problems (4)" + }, + "GPCO 468: Evaluating Technological Innovation (4)": { + "dept": "GPCO", + "description": "This capstone is intended as a culminating intellectual experience for students, particularly those in economics-oriented tracks. Students will learn to analyze \u201cwhat works,\u201d integrating a technical understanding of innovation with rigorous statistical analysis. The first half of the course focuses on building a set of science/engineering tools, and the second half on building statistical tools of analysis. Renumbered from IRCO 468. Students may not receive credit for GPCO 468 and IRCO 468. ", + "name": "GPCO 468: Evaluating Technological Innovation (4)", + "prereqs": [ + "GPEC 446" + ], + "title": "" + }, + "GPCO 470": { + "dept": "GPCO", + "description": "This is the first quarter of a two-quarter requirement. The capstone paper must demonstrate: mastery of the development of the methodologies for rigorous data collection and analysis; an in-depth understanding of the historical regulatory, political and/or economic processes surrounding the chosen \u201cproblem\u201d for analysis; mastery of the working details of the \u201cproblem\u201d at the center of the research; and a requisite level of research proficiency in Mandarin Chinese. Topic to be approved. ", + "name": "GPCO 470", + "prereqs": [], + "title": "Master of Chinese Economics and Political Affairs Capstone (4)" + }, + "GPCO 471": { + "dept": "GPCO", + "description": "Students will work closely with the faculty of record and a GPS professor who specializes in the research who are chosen for the capstone project. This required second quarter will be focused on writing, developing a presentation, and presenting the work to either a real-world client or a panel of faculty. ", + "name": "GPCO 471", + "prereqs": [ + "GPCO 470" + ], + "title": "MCEPA Capstone Part II (4)" + }, + "GPCO 481": { + "dept": "GPCO", + "description": "This course provides an introduction to the international political economy of the Pacific Rim. The course covers important international developments, such as regionalism, as well as domestic decision-making processes. Renumbered from IRCO 481. Students may not receive credit for GPCO 481 and IRCO 481. ", + "name": "GPCO 481", + "prereqs": [], + "title": "The Politics of International and National Policy Making (4)" + }, + "GPCO 482": { + "dept": "GPCO", + "description": "This course studies major economies of the Pacific region by combining standard tools in economics with institutional background on each economy. Special attention is given to the challenges that economic globalization poses on the economic relations among those economies. Renumbered from IRCO 482. Students may not receive credit for GPCO 482 and IRCO 482. ", + "name": "GPCO 482", + "prereqs": [], + "title": "Economies of the Pacific Rim (4)" + }, + "GPCO 483": { + "dept": "GPCO", + "description": "Capstone class: Students collaborate on long-term projects analyzing important political, economic, and business issues in the Pacific regions using the tools acquired through other courses at GPS. Renumbered from IRCO 483. Students may not receive credit for GPCO 483 and IRCO 483. ", + "name": "GPCO 483", + "prereqs": [ + "GPCO 482", + "GPCO 481" + ], + "title": "Workshop on Policy Issues in the Pacific Rim (4)" + }, + "GPEC 243": { + "dept": "GPEC", + "description": "This course provides an introduction to GIS and spatial data analysis for applied social science research. Students will work in ArcGIS to manipulate different types of georeferenced data, visualize data, import/export data from Excel and STATA, and conduct spatial analysis. Course looks to motivate geography as an important lens through which to study society. Recommended preparation: Basic knowledge of statistics and regression (ordinary least squares) is assumed, as is familiarity with STATA. Students may not receive credit for GPEC 243 and IRGN 443. May be coscheduled with GPEC 443.", + "name": "GPEC 243", + "prereqs": [], + "title": "GIS and Spatial Data Analysis (4)" + }, + "GPEC 244": { + "dept": "GPEC", + "description": "Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. Previously taught as an IRGN 290, Special Topics course. Students may not receive credit for GPEC 244 and IRGN 290 or IRGN 490 with the same title. May be coscheduled with GPEC 444.", + "name": "GPEC 244", + "prereqs": [], + "title": "Advanced GIS and Remote Sensing (4)" + }, + "GPEC 246": { + "dept": "GPEC", + "description": "The goal of the course is to teach how to evaluate quantitative information in business and economics contexts, and to make sound managerial decisions in complex situations. Most of the problems and the course work will involve statistical software and spreadsheet analysis of data. The course covers various applied multivariate statistical methods beyond the basics. Renumbered from IRGN 240. Students may not receive credit for GPEC 246 and IRGN 240. May be coscheduled with GPEC 446.", + "name": "GPEC 246", + "prereqs": [], + "title": "Applied Data Analysis and Statistical Decision Making (4)" + }, + "GPEC 286": { + "dept": "GPEC", + "description": "This course examines China\u2019s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949, and contemporary problems and options. Renumbered from IRGN 260. Students may not receive credit for GPEC 286 and IRGN 260. May be coscheduled with GPEC 486.", + "name": "GPEC 286", + "prereqs": [], + "title": "Economic and Social Development of China (4)" + }, + "GPEC 406": { + "dept": "GPEC", + "description": "This course analyzes the roles of money and financial institutions in the economy. The first part of the course focuses on microeconomics and the financial system. The topics include money, financial markets, financial intermediaries, banking regulations, and bank runs. The second part of the course focuses on the microeconomics aspects of financial institutions. The topics include financial development, financial liberalization, and their effects on the economy, especially economic growth and development. Renumbered from IRGN 406. Students may not receive credit for GPEC 406 and IRGN 406. ", + "name": "GPEC 406", + "prereqs": [ + "GPCO 415", + "GPCO 403" + ], + "title": "Finance and Development (4)" + }, + "GPEC 409": { + "dept": "GPEC", + "description": "This course examines the economic policies implemented by Latin American countries over the last half century, focusing on their role in the process of economic development in the region, and considers the central role of politics in shaping policy. Renumbered from IRGN 409. Students may not receive credit for GPEC 409 and IRGN 409. ", + "name": "GPEC 409", + "prereqs": [ + "GPCO 403", + "GPCO 401" + ], + "title": "Economic Policy in Latin America (4)" + }, + "GPEC 411": { + "dept": "GPEC", + "description": "Why has China been growing so fast in the past few decades? Does the authoritarianism select competent leaders? How do firms and households behave in such a quasi-market economy? The course is designed to investigate these topical questions and provide students with a general overview of existing research on China\u2019s development. May not receive credit for GPEC 411 and IRGN 490, Topics in China\u2019s Development.", + "name": "GPEC 411", + "prereqs": [], + "title": "Topics in China\u2019s Development (4)" + }, + "GPEC 412": { + "dept": "GPEC", + "description": "This course studies the economic development, current economic issues, and future prospects and challenges of East Asia, broadly defined as China, Japan, Korea, and Southeast Asia. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies in the region. Renumbered from IRGN 412. Students may not receive credit for GPEC 412 and IRGN 412.", + "name": "GPEC 412", + "prereqs": [], + "title": "Comparative Development of the East Asian Economies (4)" + }, + "GPEC 414": { + "dept": "GPEC", + "description": "This course examines the theoretical and empirical questions around the supply and demand markets, and the use for energy in firms and households. We will consider the environmental consequences and regulations of use. The course emphasizes the application of economic theory to energy issues. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 414. Students may not receive credit for GPEC 414 and IRGN 414. ", + "name": "GPEC 414", + "prereqs": [], + "title": "The Economics of Energy Policy (4)" + }, + "GPEC 415": { + "dept": "GPEC", + "description": "This course explores the rationales and consequences of trade-related government interventions from an economic perspective. We will cover classical trade theory, \u201cnew\u201d trade theory, the process of global multilateral trade integration, and the political economy roots of trade policy. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 415. Students may not receive credit for GPEC 415 and IRGN 415.", + "name": "GPEC 415", + "prereqs": [], + "title": "The Economics of Trade Policy (4)" + }, + "GPEC 417": { + "dept": "GPEC", + "description": "This course will begin by examining financial systems in poor countries. We will investigate how microfinance contracts overcome problems which had previously barred the extension of business credit in many environments. Renumbered from IRGN 417. Students may not receive credit for GPEC 417 and IRGN 417.", + "name": "GPEC 417", + "prereqs": [], + "title": "Microfinance (4)" + }, + "GPEC 418": { + "dept": "GPEC", + "description": "The course looks at clean energy and related technologies, including a high-level understanding of the science, policy, and market forces governing innovation. Students will develop an understanding of the renewable energy sector and the market variability of new technology. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 418. Students may not receive credit for GPEC 418 and IRGN 418.", + "name": "GPEC 418", + "prereqs": [], + "title": "Green Technology (4)" + }, + "GPEC 421": { + "dept": "GPEC", + "description": "This course studies how the financial system works to support economic growth most of the time, but also how it gets into crisis and puts the economy into a recession. Course emphasizes the importance and incentive problems inherent in financial transactions. Renumbered from IRGN 421. Students may not receive credit for GPEC 421 and IRGN 421.", + "name": "GPEC 421", + "prereqs": [], + "title": "Financial Institutions (4)" + }, + "GPEC 422": { + "dept": "GPEC", + "description": "This course is devoted to studying the central player in the globalization process: the multinational corporation. From the perspective of both developed and developing countries, we will analyze the determinants of flows of multinational firms and foreign direct investment across countries; explore the incentives a firm has to become an MNC, particularly those to split production, and its consequences on a domestic economy; and the transfer of managerial abilities across countries. May not receive credit for GPEC 422 and IRGN 490. Knowledge of STATA is assumed.", + "name": "GPEC 422", + "prereqs": [], + "title": "Multinational Corporations (4)" + }, + "GPEC 431": { + "dept": "GPEC", + "description": "Effects of fiscal and monetary policies on aggregate variables such as output, nominal and real interest rates, price level, and employment. Additional topics include the inflation/ unemployment trade-off, budget deficit, and economic growth. Renumbered from IRGN 431. Students may not receive credit for GPEC 431 and IRGN 431.", + "name": "GPEC 431", + "prereqs": [], + "title": "Fiscal and Monetary Policy (4)" + }, + "GPEC 432": { + "dept": "GPEC", + "description": "The goals of the course are to help students acquire analytic skills used in the study of labor economics and international migration. We examine the causes of immigration, the consequences of immigration for wages and employment in sending and receiving countries, and policies governing high-skilled immigration, undocumented immigration, and refugees. Students produce an original project that demonstrates their master of quantitative tools used in economics. Renumbered from IRGN 432. Students may not receive credit for GPEC 432 and IRGN 432.", + "name": "GPEC 432", + "prereqs": [], + "title": "Immigration and Immigration Policy (4)" + }, + "GPEC 435": { + "dept": "GPEC", + "description": "This course helps students master analytical tools used by international economists. Topics covered include the causes of international trade, how trade agreements affect global commerce, and the labor-market consequences of globalization. The course is intensive in the use of data. Students produce an original econometrics project that demonstrates their quantitative aptitude in economics. Renumbered from IRGN 435. Students may not receive credit for GPEC 435 and IRGN 435.", + "name": "GPEC 435", + "prereqs": [], + "title": "Topics in International Trade (4)" + }, + "GPEC 443": { + "dept": "GPEC", + "description": "This course introduces GIS and spatial data analysis for social science research. We use ArcGIS to manipulate and visualize georeferenced data and learn various spatial analysis tools. We emphasize geography as an important lens through which to study society. Renumbered from IRGN 443. Students may not receive credit for GPEC 443 and IRGN 443. Basic knowledge of statistics and STATA is assumed.", + "name": "GPEC 443", + "prereqs": [], + "title": "GIS and Spatial Data Analysis (4)" + }, + "GPEC 444": { + "dept": "GPEC", + "description": "Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the Network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. May not receive credit for GPEC 444 and IRGN 490 with the subtitles: \u201cAdvanced GIS Spatial Analysis\u201d or \u201cAdvanced GIS and Remote Sensing.\u201d May be co-scheduled with GPEC 244. GPEC 443 or the equivalent training in GIS is recommended.", + "name": "GPEC 444", + "prereqs": [], + "title": "Advanced GIS and Remote Sensing (4)" + }, + "GPEC 446": { + "dept": "GPEC", + "description": "The goal of this course is to learn how to evaluate quantitative information in business, policy, and economic contexts, and to make sound decisions in complex situations. The course work will involve statistical software and spreadsheet analysis of data. The course covers various applied multivariate statistical methods beyond basics. Renumbered from IRGN 446. Students may not receive credit for GPEC 446 and IRGN 446. ", + "name": "GPEC 446", + "prereqs": [ + "GPCO 453", + "GPCO 454" + ], + "title": "Applied Data Analysis and Statistical Decision Making (4)" + }, + "GPEC 449": { + "dept": "GPEC", + "description": "The goal of this course is to better understand corruption in developing countries today: why it occurs, the consequences, and what can or should be done about it. Topics include: the conceptual and historical background of corruption; different views on how corruption affects regulatory processes; how the organization of a bureaucracy may affect the amount of corruption; effects on redistribution; methods for reducing corruption; and the role of information and elections as limits. Student may not get credit for GPEC 449 and IRGN 490, Corruption and Development.", + "name": "GPEC 449", + "prereqs": [], + "title": "Corruption and Development (4)" + }, + "GPEC 450": { + "dept": "GPEC", + "description": "This course will cover topics such as: economic growth in the long run; cross-country differences in income, labor supply, human capital, investment, and welfare; development accounting; technology adoption; misallocation and total-factor productivity; rural-urban income gaps and migration; structural transformation; and competition and productivity. Student may not receive credit for GPEC 450 and IRGN 490, Macroeconomics of Development. GPCO 401 and GPCO 403 are recommended.", + "name": "GPEC 450", + "prereqs": [], + "title": "Macroeconomics of Development (4)" + }, + "GPEC 451": { + "dept": "GPEC", + "description": "This course examines comparative patterns of industrialization and agricultural modernization with a focus on certain common features of the modernization process and widely varying endowments, policies, and experiences, of different countries. Renumbered from IRGN 451. Students may not receive credit for GPEC 451 and IRGN 451. ", + "name": "GPEC 451", + "prereqs": [ + "GPCO 403", + "GPCO 401" + ], + "title": "Economic Development (4)" + }, + "GPEC 453": { + "dept": "GPEC", + "description": "The course will cover the various aspects of the concept and application of sustainable development: the ways in which sustainable development can be measured, methods for the evaluation of environmental damages and benefits, and the role of discounting. We will analyze several cases demonstrating failure of the market. Renumbered from IRGN 453. Students may not receive credit for GPEC 453 and IRGN 453.", + "name": "GPEC 453", + "prereqs": [], + "title": "Sustainable Development (4)" + }, + "GPEC 455": { + "dept": "GPEC", + "description": "This course introduces students to the basic competencies and practical skills of a development practitioner. Lectures will be grounded in a practical, multi-sectorial approach that focuses on the interrelationship of the social sciences, health sciences, and natural sciences. It emphasizes a \u201cdifferential diagnosis for development\u201d through case studies of developing countries. Students will be asked to use both STATA and GIS to analyze household survey data to identify poverty hot spots. May not receive credit for GPEC 455 and the IRGN 490 course of the same title. Assumes competence in both STATA and GIS.", + "name": "GPEC 455", + "prereqs": [], + "title": "Integrated Development Practice (4)" + }, + "GPEC 458": { + "dept": "GPEC", + "description": "This course analyzes multilateral environmental agreements and negotiating positions of key countries on climate change, biodiversity conservation, sustainable development, and other subjects. It explores the challenges countries face to balance economic development objectives with global environmental concerns. Renumbered from IRGN 458. Students may not receive credit for GPEC 458 and IRGN 458.", + "name": "GPEC 458", + "prereqs": [], + "title": "International Environmental Policy and Politics (4)" + }, + "GPEC 462": { + "dept": "GPEC", + "description": "This course applies theoretical frameworks in microeconomics, international economics, and economic development to study comparative economic development and current issues of economics in Southeast Asia. Topics include economic growth, crises, development mechanisms, households, firms, governments, and institutional foundations. Renumbered from IRGN 462. Students may not receive credit for GPEC 462 and IRGN 462. May be coscheduled with GPEC 262. ", + "name": "GPEC 462", + "prereqs": [ + "GPCO 403", + "GPCO 401" + ], + "title": "Southeast Asian Economies (4)" + }, + "GPEC 464": { + "dept": "GPEC", + "description": "This course covers the applied practice of quantitative impact evaluation. The benchmark methodology will be randomized controlled trials. The broader set of nonexperimental tools will be understood through the ways they differ from random assignment. Practical issues in research and survey design will be discussed. Renumbered from IRGN 464. Students may not receive credit for GPEC 464 and IRGN 464. ", + "name": "GPEC 464", + "prereqs": [ + "GPCO 468", + "GPEC 446", + "GPCO 453", + "GPCO 454" + ], + "title": "Designing Field Experiments (4)" + }, + "GPEC 468": { + "dept": "GPEC", + "description": "Course provides an overview of health economics, focusing on developing countries. We will examine both how standard economics concepts and methods can be used to understand incentives and decision making in health-related transactions and their application to health policy. Renumbered from IRGN 468. Students may not receive credit for GPEC 468, IRGN 468, and IRGN 490, International Health Economics.", + "name": "GPEC 468", + "prereqs": [], + "title": "International Health Economics (4)" + }, + "GPEC 471": { + "dept": "GPEC", + "description": "A broad survey of the Japanese economy, together with in-depth examination of some distinctively Japanese phenomena such as savings behavior, financial structure, industrial organization, and labor markets. Renumbered from IRGN 471. Students may not receive credit for GPEC 471 and IRGN 471. ", + "name": "GPEC 471", + "prereqs": [ + "GPCO 403", + "GPCO 401" + ], + "title": "Japanese Economy (4)" + }, + "GPEC 480": { + "dept": "GPEC", + "description": "This course studies the development, current economic issues, and future prospects and challenges of Latin America, broadly defined to include Mexico and Central and South America. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies of the region. Renumbered from IRGN 480. Student may not receive credit for GPEC 480 and IRGN 480.", + "name": "GPEC 480", + "prereqs": [], + "title": "Comparative Development of the Latin American Economies (4)" + }, + "GPEC 485": { + "dept": "GPEC", + "description": "Analytical review of South Korea\u2019s economic performance. Examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea\u2019s industrial structure, including the role of large enterprises (chaebol); role of government; links between Korea and other countries. Renumbered from IRGN 485. Student may not receive credit for GPEC 485 and IRGN 485.", + "name": "GPEC 485", + "prereqs": [], + "title": "The Korean Economy (4)" + }, + "GPEC 486": { + "dept": "GPEC", + "description": "This course examines China\u2019s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949 and contemporary problems and options. Renumbered from IRGN 486. Student may not receive credit for GPEC 486 and IRGN 486.", + "name": "GPEC 486", + "prereqs": [], + "title": "Economic and Social Development of China (4)" + }, + "GPEC 488": { + "dept": "GPEC", + "description": "This course provides a broad overview of environmental and regulatory economics and its interface with public policy. This course will be grounded in micro-economic theory with applications to specific cases. Renumbered from IRGN 488. Student may not receive credit for GPEC 488 and IRGN 488. ", + "name": "GPEC 488", + "prereqs": [ + "GPCO 454", + "GPCO 401" + ], + "title": "Environmental and Regulatory Economics (4)" + }, + "GPEC 489": { + "dept": "GPEC", + "description": "Government policies with respect to cultural amenities, the environment, health, and transportation generate benefits and costs not directly priced by the market. This course covers the range of techniques economists utilize to place a monetary value on nonmarket outputs. Course renumbered from IRGN 489. Student may not receive credit for GPEC 489 and IRGN 489. ", + "name": "GPEC 489", + "prereqs": [ + "GPCO 454", + "GPCO 401" + ], + "title": "The Economics of Nonmarket Valuation (4)" + }, + "GPGN 490": { + "dept": "GPGN", + "description": "A seminar course at an advanced level on a special topic in Pacific international affairs. May be repeated for credit.", + "name": "GPGN 490", + "prereqs": [], + "title": "Special Topics in Pacific International Affairs (4)" + }, + "GPGN 491": { + "dept": "GPGN", + "description": "A seminar course at an advanced level on a special topic. These seminars are intended to cross disciplines and to be co-taught by GPS faculty and faculty from other departments or programs.", + "name": "GPGN 491", + "prereqs": [], + "title": "Cross-Disciplinary Special Topics (4)" + }, + "GPGN 493": { + "dept": "GPGN", + "description": "An Excel skills course tailored specifically to GPS classes and applicable to accounting, QM, finance, and second-year courses such as corporate finance, investments, applied financial management, and strategy and negotiation, among others. The course is also designed to help prepare students for the professional world by training in critical job skills competencies in Excel. (S/U grades only.) Department approval required. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 493. Students may not get credit for GPGN 493 and IRGN 493.", + "name": "GPGN 493", + "prereqs": [], + "title": "Excel Skills for Professional Proficiency (2)" + }, + "GPGN 496": { + "dept": "GPGN", + "description": "Independent research that draws on a substantive internship with an organization relevant to a student\u2019s career interests. The nature of the final project will be determined prior to assuming the internship and in consultation with the supervising professor. (S/U grades only.)", + "name": "GPGN 496", + "prereqs": [], + "title": "Washington Quarter Internship (4)" + }, + "GPGN 497": { + "dept": "GPGN", + "description": "Independent research that draws on an internship with an organization relevant to career track and/or regional specialization. Nature of the required product to be determined by professor supervising the course. May be repeated for credit.", + "name": "GPGN 497", + "prereqs": [], + "title": "Internship (2)" + }, + "GPGN 498": { + "dept": "GPGN", + "description": "Directed reading in a selected area. The content of each course is to be decided by the professor directing the course with the approval of the student\u2019s faculty adviser. May be repeated for credit.", + "name": "GPGN 498", + "prereqs": [], + "title": "Directed Group Study (2)" + }, + "GPGN 499": { + "dept": "GPGN", + "description": "Independent research under the guidance of a faculty member of GPS. May be repeated for credit.", + "name": "GPGN 499", + "prereqs": [], + "title": "Independent Research (2\u201312)" + }, + "GPIM 410": { + "dept": "GPIM", + "description": "This research-oriented class introduces: (a) frameworks from organization theory and strategy on innovation, corporate renewal, and system change; (b) the specific situation of Japan, including Japan\u2019s national system of innovation, research consortia and industrial policy, business models, HR practices, VC, and entrepreneurship. Ongoing changes toward open innovation and new management of technology in Japan are the subject of student research projects. May not receive credit for GPIM 410 and IRGN 490. Japan Lab.", + "name": "GPIM 410", + "prereqs": [], + "title": "Innovation and Entrepreneurship in Japan (4)" + }, + "GPIM 411": { + "dept": "GPIM", + "description": "This course introduces the core features of Japanese business and industrial organization, as well as Japanese management and HR practices. Business frameworks and concepts are introduced to enable students to analyze and evaluate organization change and the emergence of \u201cNew Japan\u201d companies. Renumbered from IRGN 411. Students may not receive credit for GPIM 411 and IRGN 411.", + "name": "GPIM 411", + "prereqs": [], + "title": "Business and Management in Japan (4)" + }, + "GPIM 413": { + "dept": "GPIM", + "description": "This seminar examines the ability of firms to increase shareholder value through improved environmental performance. Topics include product differentiation, strategic use of regulations, the \u201cPorter hypothesis,\u201d and environmental management systems. Readings include case studies and research articles. Renumbered from IRGN 413. Students may not receive credit for GPIM 413 and IRGN 413.", + "name": "GPIM 413", + "prereqs": [], + "title": "Corporate Strategy and the Environment (4)" + }, + "GPIM 419": { + "dept": "GPIM", + "description": "This course provides an introduction to derivative assets such as options, futures, and swap contracts. The main emphasis is on their valuation, use in hedging, and role as components of liabilities that mitigate risk and agency problems in business firms. Renumbered from IRGN 419. Students may not receive credit for GPIM 419 and IRGN 419.", + "name": "GPIM 419", + "prereqs": [], + "title": "Risk Management (4)" + }, + "GPIM 420": { + "dept": "GPIM", + "description": "The role and function of marketing in organizations and society. Attention is given to the analysis of markets and customers using primary and secondary sources of information and the planning, implementation, and evaluation of marketing strategies and programs. Renumbered from IRGN 420. Students may not receive credit for GPIM 420 and IRGN 420.", + "name": "GPIM 420", + "prereqs": [], + "title": "Marketing (4)" + }, + "GPIM 422": { + "dept": "GPIM", + "description": "An analysis of the risk/return characteristics of different assets as perceived by different investors and their implications for security price behavior, emphasizing real world capital market behavior. International aspects include the role of exchange rate risk and international diversification. Renumbered from IRGN 422. Students may not receive credit for GPIM 422 and IRGN 422.", + "name": "GPIM 422", + "prereqs": [], + "title": "Investments (4)" + }, + "GPIM 424": { + "dept": "GPIM", + "description": "The topics covered are dividend policy and capital structure, options, debt financing, and short- and long-term in financial planning. Course format will be mostly lectures with occasional cases. Some international aspects of corporate finance will also be discussed. Renumbered from IRGN 424. Students may not receive credit for GPIM 424 and IRGN 424.", + "name": "GPIM 424", + "prereqs": [], + "title": "Corporate Finance (4)" + }, + "GPIM 426": { + "dept": "GPIM", + "description": "This course provides a case-based approach to developing and implementing strategy. It uses business cases from Asia (China, Japan, Taiwan, and South Korea) and Latin America (Mexico, Brazil, Chile, and Argentina) to help students develop a well-defined methodology for approaching strategic decision making that would be applicable to any situation. Renumbered from IRGN 426. Students may not receive credit for GPIM 426 and IRGN 426.", + "name": "GPIM 426", + "prereqs": [], + "title": "Business Strategy in the Pacific Rim (4)" + }, + "GPIM 427": { + "dept": "GPIM", + "description": "This course explores the major types of business systems prevalent in developing Asia. These include, for example, the state-owned enterprises of China, Chinese private sector firms, family-owned businesses of HK/Taiwan/SE Asia, Taiwanese tech firms, the Korean Chaebol, Indian promoter-led companies, and companies of developed markets that operate in the region. Course explores the nature of incentives, constraints, and decision making within these different types of firms. May not receive credit for GPIM 427 and IRGN 490. Competing Business Systems of Developing Asia.", + "name": "GPIM 427", + "prereqs": [], + "title": "The Competing Business Systems of Developing Asia" + }, + "GPIM 428": { + "dept": "GPIM", + "description": "This course examines the challenges of corporate leadership and entrepreneurship in China, with discussion of business in Taiwan as well. The issues are explored from the perspective of various types of companies in China, including start-ups, larger private sector companies, state-owned enterprises, and multinational companies. We explore various major industries in China, and explore various managerial challenges including strategy, HR, partnership development, and government relations. May not receive credit for GPIM 428 and IRGN 490. Management and Entrepreneurship in China.", + "name": "GPIM 428", + "prereqs": [], + "title": "Management and Entrepreneurship in China (4)" + }, + "GPIM 429": { + "dept": "GPIM", + "description": "This course focuses on developing an in-depth understanding of four of China\u2019s most dynamic industries. These are health care, consumer goods and retail, high technology, and eCommerce. Students will select one of these four industries for deep study and will gain an overview of the other three. The course includes extensive analysis of investment bank analyst reports and Harvard case studies. The course also includes simulated job interviews in the targeted industries. May not receive credit for both GPIM 429 and IRGN 490, Understanding China\u2019s Dynamic Industries.", + "name": "GPIM 429", + "prereqs": [], + "title": "Understanding China\u2019s Dynamic Industries (4)" + }, + "GPIM 436": { + "dept": "GPIM", + "description": "This course examines the current business environment in Latin America, taking into account political, economic, and cultural factors. The course will be based on case studies, supplemented with guest lectures from business executives and discussions of selected readings. Students will be required to develop a business plan as a major part of the grade for the course. Renumbered from IRGN 436. Students may not receive credit for both GPIM 436 and IRGN 436.", + "name": "GPIM 436", + "prereqs": [], + "title": "Doing Business in Latin America (4)" + }, + "GPIM 438": { + "dept": "GPIM", + "description": "Introduction to operations and technology, including services, manufacturing, and R&D. How organizations produce useful outputs that meet customer needs. Capital cost, variable cost, speed, lead time, robustness, including process analysis, supply chains, total quality, and process improvement. Case studies, simulations, and lectures. Renumbered from IRGN 438. Students may not receive credit for GPIM 438 and IRGN 438. ", + "name": "GPIM 438", + "prereqs": [ + "GPCO 453" + ], + "title": "Operations and Technology Management (4)" + }, + "GPIM 440": { + "dept": "GPIM", + "description": "Focus on planning, managing, controlling, and evaluating costs for competitive advantage in global markets. Key topics will include cost structure, cost-based managerial decision making, strategic cost management, JIT/TQC cost management, and accounting control systems. Renumbered from IRGN 440. Students may not receive credit for GPIM 440 and IRGN 440. ", + "name": "GPIM 440", + "prereqs": [ + "GPCO 415" + ], + "title": "Managerial Accounting and Control (4)" + }, + "GPIM 444": { + "dept": "GPIM", + "description": "This course examines how high-tech companies develop successful products. Emphasizes interplay between business and technology issues, including marketing, finance, manufacturing, prototyping, testing, and design. Student teams develop novel products, from concept to working prototype, including a business plan for launching the product. Discussion of concurrent engineering, rapid prototyping, industrial design, and other design methodologies. Renumbered from IRGN 444. Students may not receive credit for GPIM 444 and IRGN 444.", + "name": "GPIM 444", + "prereqs": [], + "title": "Product Development (4)" + }, + "GPIM 447": { + "dept": "GPIM", + "description": "This course examines the economics of decisions and strategies made within non-governmental organizations. Topics covered include how and why organizations emerge and the impact that owner and manager decisions have on workers, strategy, and success. Renumbered from IRGN 447. Students may not receive credit for GPIM 447 and IRGN 447.", + "name": "GPIM 447", + "prereqs": [], + "title": "Organizational Economics (4)" + }, + "GPIM 452": { + "dept": "GPIM", + "description": "This course will use tools and case studies to illustrate the promise and challenges of analyzing big data sets. Emphasis will be on solving problems rather than testing hypothesis. Renumbered from IRGN 452. Students may not receive credit for GPIM 452 and IRGN 452.", + "name": "GPIM 452", + "prereqs": [], + "title": "Big Data Analytics (4)" + }, + "GPIM 457": { + "dept": "GPIM", + "description": "Examination of public policy analysis, such as cost-benefit analysis and project evaluation, for use in policy formation. Sustainable development will receive particular attention. Case studies emphasizing the environment, agriculture and food, and economic development will be included. Renumbered from IRGN 457. Students may not receive credit for GPIM 457 and IRGN 457.", + "name": "GPIM 457", + "prereqs": [], + "title": "Cost-Benefit Analysis (4)" + }, + "GPIM 461": { + "dept": "GPIM", + "description": "This course describes the Chinese commercial, organizational, and cultural environment. Case studies of foreign businesses in China are examined, and the opportunities and pitfalls of operation in China are considered. Negotiation with Chinese counterparts is covered through a negotiation exercise. The focus is on mainland China, but some attention is given to business in Hong Kong and Taiwan as well. Students are required to prepare business plans for proposed Chinese ventures. Renumbered from IRGN 461. Students may not receive credit for GPIM 461 and IRGN 461.", + "name": "GPIM 461", + "prereqs": [], + "title": "Doing Business in China (4)" + }, + "GPIM 470": { + "dept": "GPIM", + "description": "This course introduces basic concepts of international business decision making. It covers entry modes, headquarter tasks and organization charts, strategic planning for foreign subsidiaries, international HR management and payroll, international taxation, and an introduction to transfer pricing. Renumbered from IRGN 470. Students may not receive credit for GPIM 470 and IRGN 470.", + "name": "GPIM 470", + "prereqs": [], + "title": "International Business (4)" + }, + "GPIM 474": { + "dept": "GPIM", + "description": "The objective of this course is to develop an understanding of accounting procedures and learn how to judge corporate financial statements. Through case studies, students will learn to interpret the numbers and make inferences about the financial health of a company. The course includes a comparison of best practices and an introduction to International Financial Reporting Standards. Renumbered from IRGN 474. Students may not receive credit for GPIM 474 and IRGN 474.", + "name": "GPIM 474", + "prereqs": [], + "title": "Applied Financial Accounting (4)" + }, + "GPIM 480": { + "dept": "GPIM", + "description": "Markets that function well have five features: well defined and protected property rights; trust among market participants; adequate information flows; limited spillover effects from other market participants and stakeholders; and viable competition. These properties will be illustrated with economic experiments and through class discussion. Students may not receive credit for GPIM 480 and IRGN 480.", + "name": "GPIM 480", + "prereqs": [], + "title": "Comparative Market Institutions (4)" + }, + "GPIM 481": { + "dept": "GPIM", + "description": "Game theory in economics is a very serious business. A game is defined by a complete set of rules that govern who plays the game, the decisions they confront, their state of knowledge at decision points, and the outcomes resulting from their decisions. It is a sometimes-maddening field in which intuitively obvious strategies can be inferior, credible threats have no credibility, and flipping a coin might be the best decision. This course offers a careful study of game theory basics with the intention of leading to a coherent set of insights into real-world strategic concerns. Students may not receive credit for GPIM 481 and IRGN 490, Game Theory and Strategy via Economics Experiments.", + "name": "GPIM 481", + "prereqs": [], + "title": "Game Theory and Strategy via Economics Experiments (4)" + }, + "GPIM 482": { + "dept": "GPIM", + "description": "Traders in financial markets can have very different motivations. Some trade for personal reasons, perhaps to invest savings, to buy a house, to pay tuition for a child, or to provide recreational enjoyment. Some might possess value relevant private information about a security, or think they do. Some professional traders serve as counterparties for these other trader types. One of the central themes in this course is that institutions and experience matter, even when no trader possesses value relevant prior information. Students may not receive credit for GPIM 482 and IRGN 490, Governance, Public Administration, and Development.", + "name": "GPIM 482", + "prereqs": [], + "title": "Market Microstructure (4)" + }, + "GPLA 400A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 400A-B-C. Students may not get credit for any IRLA 400 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 400A-B-C", + "prereqs": [], + "title": "Low Intermediate Chinese Language for Professional Proficiency (4-4-4)" + }, + "GPLA 401A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 401A-B-C. Students may not get credit for any IRLA 401 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 401A-B-C", + "prereqs": [], + "title": "Intermediate Chinese Language for Professional Proficiency (4-4-4)" + }, + "GPLA 410A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 410A-B-C. Students may not get credit for any IRLA 410 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 410A-B-C", + "prereqs": [], + "title": "Low Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + "GPLA 411A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 411A-B-C. Students may not get credit for any IRLA 411 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 411A-B-C", + "prereqs": [], + "title": "Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + "GPLA 412A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students at an advanced-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 412A-B-C. Students may not get credit for any IRLA 412 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 412A-B-C", + "prereqs": [], + "title": "Advanced Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + "GPLA 441A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Spanish language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 441A-B-C. Students may not get credit for any IRLA 441 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 441A-B-C", + "prereqs": [], + "title": "Intermediate Spanish Language for Professional Proficiency (4-4-4)" + }, + "GPLA 460A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students with basic knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 460A-B-C. Students may not get credit for any IRLA 460 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 460A-B-C", + "prereqs": [], + "title": "Basic Bahasa Indonesia for Professional Proficiency (4-4-4)" + }, + "GPLA 461A-B-C": { + "dept": "GPLA", + "description": "This course is designed to enable students with low to intermediate knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 461A-B-C. Students may not get credit for any IRLA 461 course and the GPLA course of the same number and quarter designation.", + "name": "GPLA 461A-B-C", + "prereqs": [], + "title": "Low Intermediate Bahasa Indonesian for Professional Proficiency (4-4-4)" + }, + "GPPA 404": { + "dept": "GPPA", + "description": "Good governance and public administration underpin the effective implementation of almost the entire development agenda. This course examines rigorous evidence on both the drivers and impact of (mis)governance in developing countries. Students may not receive credit for GPPA 404 and IRGN 490, Governance, Public Administration, and Development.", + "name": "GPPA 404", + "prereqs": [], + "title": "Governance, Public Administration, and Development (4)" + }, + "GPPA 405": { + "dept": "GPPA", + "description": "Why do public authorities inefficiently distribute scarce economic resources? What are the impacts of such inefficient distribution on welfare and economic development? And how do we design policies to limit inefficiencies in distribution? This course surveys the literature on distributive politics to address these questions.\u00a0Students may not receive credit for GPPA 405 and the IRGN 490 with the same title.", + "name": "GPPA 405", + "prereqs": [], + "title": "Managing the Distributive Politics of Public Policy (4)" + }, + "GPPA 407": { + "dept": "GPPA", + "description": "Course builds on policy-making processes class by focusing on nonelected officials\u2019 role in setting and implementing policy. Ideally, elected officials make policies that unbiased, technically proficient bureaucrats carry out. Course provides insight into why the real world departs from this. Renumbered from IRGN 407. Students may not receive credit for GPPA 407 and IRGN 407.", + "name": "GPPA 407", + "prereqs": [], + "title": "Policy Implementation Process (4)" + }, + "GPPA 420": { + "dept": "GPPA", + "description": "The health care sector is one of the largest, and continues to grow in most countries. However, it has major quality, safety, and efficiency problems. This course shows how to improve health care delivery. Topics include tools such as checklists, Six Sigma, lean processes, and design of experiments. Some discussion of pharmaceutical development and clinical trials. Students may not receive credit for GPPA 420 and IRGN 490, Innovation in Healthcare Operations.", + "name": "GPPA 420", + "prereqs": [], + "title": "Innovation in Healthcare Operations (4)" + }, + "GPPA 450": { + "dept": "GPPA", + "description": "This course explores three topics: 1) democracy, which is primarily about procedural justice; 2) social policy, which is primarily about distributive justice; and, 3) corruption, which is a breach of formal justice. We will consider potential conflicts and reconciliation between justice and development, approaching various issues not just theoretically and conceptually, but also empirically and quantitatively. The course uses cross-national quantitative studies and case studies. Renumbered from IRGN 450. Students may not receive credit for GPPA 450 and IRGN 450.", + "name": "GPPA 450", + "prereqs": [], + "title": "Justice, Policy, and Development (4)" + }, + "GPPA 467": { + "dept": "GPPA", + "description": "This course will focus on three dimensions of Chinese environmental and energy policy. First, we will introduce the causes and consequences of environmental and energy problems. Second, we will examine Chinese environmental and energy governance: institutions, laws, and regulations for environmental protection, energy production and consumption. Third, we will explore the practices of the Chinese government to address the emerging environmental and energy options, focusing on climate change. Renumbered from IRGN 467. Students may not receive credit for GPPA 467 and IRGN 467.", + "name": "GPPA 467", + "prereqs": [], + "title": "Chinese Environmental and Energy Policy (4)" + }, + "GPPA 472": { + "dept": "GPPA", + "description": "This course examines the human dimension of environmental change, focusing on topics such as biodiversity conservation, climate change, land use systems, deforestation, and the institutions of regulation. The course uses Latin America as its central focus but, for comparative perspective, uses cases from Asia and Africa. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 472. Students may not receive credit for GPPA 472 and IRGN 472.", + "name": "GPPA 472", + "prereqs": [], + "title": "Latin American Environmental and Energy Policy (4)" + }, + "GPPA 477": { + "dept": "GPPA", + "description": "Course on the challenges of improving cyber security in the United States and globally. Topics to include the technical challenges involving cyber security, an understanding of the range of threats, fundamental problems of designing prudent national policies that are politically feasible, and the possibilities and limitations regarding the designing of prudent cooperative strategies. Renumbered from IRGN 477. Students may not receive credit for GPPA 477 and IRGN 477.", + "name": "GPPA 477", + "prereqs": [], + "title": "Cyber Security (4)" + }, + "GPPA 483": { + "dept": "GPPA", + "description": "The course will introduce students to the world food economy and its drivers. The first part of the course will consider the forces governing food prices and supply. The second part uses quantitative assessment of policy changes. The third part frames future constraints to food security. Renumbered from IRGN 483. Students may not receive credit for GPPA 483 and IRGN 483. Recommended preparation: GPCO 454, knowledge of regression analysis, and STATA.", + "name": "GPPA 483", + "prereqs": [], + "title": "Food Security (4)" + }, + "GPPS 204": { + "dept": "GPPS", + "description": "This course will analyze post-1949 Chinese politics, including political institutions, the policy-making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 261. Students may not receive credit for GPPS 204 and IRGN 261. May be coscheduled with GPPS 404.", + "name": "GPPS 204", + "prereqs": [], + "title": "Chinese Politics (4)" + }, + "GPPS 256": { + "dept": "GPPS", + "description": "Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 256. Students may not receive credit for GPPS 256 and IRGN 256.\t\tMay be coscheduled with GPPS 456.", + "name": "GPPS 256", + "prereqs": [], + "title": "Program Design and Evaluation (4)" + }, + "GPPS 400": { + "dept": "GPPS", + "description": "International relations and developing international political economies of nations bordering the Pacific. Topics include: the \u201cPacific Basin\u201d concept; the United States and \u201chegemonic-stability\u201d theory; legacies of the Korean War and Sino-Soviet dispute; immigration patterns and their consequences; and Japan\u2019s foreign policy. Renumbered from IRGN 400. Students may not receive credit for GPPS 400 and IRGN 400.", + "name": "GPPS 400", + "prereqs": [], + "title": "International Relations of Asia-Pacific (4)" + }, + "GPPS 401": { + "dept": "GPPS", + "description": "Post-2003 civil wars are different from previous ones in striking ways. First, the majority are situated in Muslim-majority countries. Second, most of the rebel groups espouse radical Islamist ideas. Third, of these groups, most are pursuing transnational rather than national goals. Current theory explains a great deal, but not everything. For example, it does not account for information and communication technology. These innovations are critical to understanding the new civil wars. Renumbered from IRGN 401. Students may not receive credit for GPPS 401 and IRGN 401.", + "name": "GPPS 401", + "prereqs": [], + "title": "The New \u201cNew\u201d Civil Wars (4)" + }, + "GPPS 402": { + "dept": "GPPS", + "description": "This course uses major banking, debt, and currency crises as lenses for focusing on the governance of international monetary and financial relations. It traces regional and global exchange regimes and cross-border financial flows beginning with the gold standard and Great Depression through the rise of regional currency blocs, the Euro, and the role of \"reserve currencies.\" The course concludes by investigating the politics and distributional consequences of banking and financial regulation. Renumbered from IRGN 402. Students may not receive credit for IRGN 402 and GPPS 402.", + "name": "GPPS 402", + "prereqs": [], + "title": "International Political Economy: Money and Finance (4)" + }, + "GPPS 403": { + "dept": "GPPS", + "description": "This course examines China\u2019s efforts to become a world-class technological and military power, focusing on the technological foundations of its security as it relates to long-term economic and strategic competitiveness and the sources of its growing technological innovation. Topics will include: Imperial and Maoist legacies; political economy of security and technology; ideologies and organizing strategies that China employs in moving up the innovation ladder; and others. Renumbered from IRGN 403. Students may not receive credit for IRGN 403 and GPPS 403.", + "name": "GPPS 403", + "prereqs": [], + "title": "Chinese Security, Technology, and Innovation (4)" + }, + "GPPS 404": { + "dept": "GPPS", + "description": "This course will analyze post-1949 Chinese politics, including political institutions, the policy making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 404. Students may not receive credit for IRGN 404 and GPPS 404.", + "name": "GPPS 404", + "prereqs": [], + "title": "Chinese Politics (4)" + }, + "GPPS 405": { + "dept": "GPPS", + "description": "Can the United States and China manage to develop a constructive relationship or are they headed toward a hostile relationship? This course addresses this question by examining the domestic and international influences on the foreign policies of both countries and key issues in the bilateral relationship. Students also do policy projects. Renumbered from IRGN 405. Students may not receive credit for IRGN 405 and GPPS 405.", + "name": "GPPS 405", + "prereqs": [], + "title": "US-China Relations (4)" + }, + "GPPS 406": { + "dept": "GPPS", + "description": "China\u2019s role in the global economy and its implications for regimes of global governance. Topics include trade, lending, investments, the globalization of state-owned enterprises, currency internationalization, participation in regional and international organizations, and China\u2019s economic diplomacy and foreign policy. We will ask whether China contributes to or threatens the liberal economic order; what governments and policy actors can do to engage China in a productive and peaceful fashion. Students may not receive credit for GPPS 406 and the IRGN 490 with the same title.", + "name": "GPPS 406", + "prereqs": [], + "title": "China in the Global Economic Order (4)" + }, + "GPPS 407": { + "dept": "GPPS", + "description": "This course examines the nature, evolution, dynamics, and key elements of China\u2019s approach and engagement with the international system, especially in the twenty-first century, with a focus on national security and defense. Topics include: understanding the structure and process of Chinese decision making; the nature of Chinese policies and strategies; the evolution of Chinese military power; the rise of the Chinese national security state; Chinese grand strategy, and US-China relations. May not receive credit for GPPS 407 and the IRGN 490 with the same title.", + "name": "GPPS 407", + "prereqs": [], + "title": "The International Relations and National Security of China (4)" + }, + "GPPS 408": { + "dept": "GPPS", + "description": "This course will consider major security issues on the Korean peninsula, including the evolution of the US-South Korea alliance and the management of the current nuclear crisis. A distinctive feature of the course will be a consideration of the political economy of recent developments on the peninsula, particularly with respect to North Korea, and an extended discussion of the logic and strategy of engagement. Renumbered from IRGN 408. Students may not receive credit for IRGN 408 and GPPS 408.", + "name": "GPPS 408", + "prereqs": [], + "title": "Korean Security (4)" + }, + "GPPS 410": { + "dept": "GPPS", + "description": "Why do corporate governance systems\u2014the way firms are run, the relationships among managers, stockholders, and workers\u2014differ widely around the world? This course examines the various explanations for these striking differences and the consequences. Renumbered from IRGN 410. Students may not receive credit for IRGN 410 and GPPS 410.", + "name": "GPPS 410", + "prereqs": [], + "title": "Corporate Governance (4)" + }, + "GPPS 416": { + "dept": "GPPS", + "description": "Overview of postwar politics in Japan, including American Occupation reforms, political institutions, major political factors, mass and elite, and political behavior. Special attention will be paid to the issue of Japan\u2019s changing democracy. Renumbered from IRGN 416. Students may not receive credit for IRGN 416 and GPPS 416.", + "name": "GPPS 416", + "prereqs": [], + "title": "Postwar Politics in Japan (4)" + }, + "GPPS 417": { + "dept": "GPPS", + "description": "Examination of the effects of national governments and international collaboration on global trade and investments, with a focus on the roles of national trade policies, international institutions such as the WTO, free trade areas, bilateral investment treaties, and multinational corporations. Implications of trade and investment are also considered for international development and emerging economic powers.", + "name": "GPPS 417", + "prereqs": [], + "title": "International Political Economy: Trade and Investments (4)" + }, + "GPPS 420": { + "dept": "GPPS", + "description": "This course focuses on the relationships between workers, employers, and governments in global supply chains. How is work and labor regulated in various industries and parts of the world? How has this changed over time? When have workers become important political forces and how have governments and capital owners responded? How and why? What will the future of work look like? May not receive credit for GPPS 420 and the IRGN 490 course with the same title.", + "name": "GPPS 420", + "prereqs": [], + "title": "Workers and Labor in Global Markets (4)" + }, + "GPPS 421": { + "dept": "GPPS", + "description": "The importance of inequality in income, wealth, and access to resources and opportunities can hardly be overstated. This course has several objectives: (1) to understand the measurement of inequality; (2) to understand the level of inequality in the United States versus other industrialized nations; (3) to see how political scientists and economists understand its causes and effects; (4) to understand why some think inequality is to their advantage; (5) to develop the tools and data for normative evaluations. May not receive credit for GPPS 421 and the IRGN 490 with the same title.", + "name": "GPPS 421", + "prereqs": [], + "title": "The Politics of Economic Inequality (4)" + }, + "GPPS 423": { + "dept": "GPPS", + "description": "Nongovernmental organizations monitor compliance with norms through shareholder activism, consumer pressures, political protest, creating \u201cbrands,\u201d and legal action. Course examines these strategies to determine what works best, and how organizations and individuals can influence corporations to \u201cdo the right thing.\u201d Renumbered from IRGN 423. Students may not receive credit for IRGN 423 and GPPS 423.", + "name": "GPPS 423", + "prereqs": [], + "title": "Corporate Social Responsibility (4)" + }, + "GPPS 427": { + "dept": "GPPS", + "description": "This course will introduce students to the major techniques for managing international problems through legal and administrative regulation. The class will offer an overview of the main theories relevant to policy, such as the choice and design of treaties and other legal instruments. Cases will be drawn from economics, finance, development, security, human rights, and environment. Renumbered from IRGN 427. Students may not receive credit for IRGN 427 and GPPS 427.", + "name": "GPPS 427", + "prereqs": [], + "title": "International Law and Regulation (4)" + }, + "GPPS 428": { + "dept": "GPPS", + "description": "The class introduces students to major theoretical perspectives that are used to show how societies design and implement policies related to energy, and applies these theories to major issues in energy policy, including ethanol, climate change, and energy security. Renumbered from IRGN 428. Students may not receive credit for GPPS 428 and IRGN 428.", + "name": "GPPS 428", + "prereqs": [], + "title": "The Politics of Energy and Environmental Regulation (4)" + }, + "GPPS 429": { + "dept": "GPPS", + "description": "This course acquaints students with the leading theories on the causes and consequences of civil war since 1945 and the challenges associated with rebuilding social structures after catastrophic collapse. It will also provide a number of hands-on examples of how \u201cnew media\u201d work to speed the process of political mobilization, coalition formation, the persistence of clandestine networks, and issues of transparency and translation, with particular implications for urban warfare and insurgency. Renumbered from IRGN 429. Students may not receive credit for GPPS 42 and IRGN 429.", + "name": "GPPS 429", + "prereqs": [], + "title": "Geopolitics, Insurgency, and Weak States (4)" + }, + "GPPS 430": { + "dept": "GPPS", + "description": "Prepares students to analyze the causes of repression and the effectiveness of political intervention. Attention will focus on the evaluation of the design, implementation, and effectiveness of human rights policy, including international organizations, democracy, trade, and social movement advocacy. Renumbered from IRGN 430. Students may not receive credit for GPPS 430 and IRGN 430.", + "name": "GPPS 430", + "prereqs": [], + "title": "Human Rights, Public Policy, and International Relations (4)" + }, + "GPPS 433": { + "dept": "GPPS", + "description": "Course engages central debates regarding US grand strategy and encourages analysis of regional crisis-spots using replicable open-source data. Emphasis is on deploying theoretical arguments in the service of a policy agenda and tensions between rival schools of theory in the context of contemporary politics. Topics include nuclear nonproliferation, humanitarian military interventions, democracy promotion, \u201cWar on Terror,\u201d and policy toward \u201crogue\u201d and unrecognized states. Renumbered from IRGN 433. Students may not receive credit for GPPS 433 and IRGN 433.", + "name": "GPPS 433", + "prereqs": [], + "title": "Debating US Security Policy\u00a0(4)" + }, + "GPPS 434": { + "dept": "GPPS", + "description": "This course encourages sustained debate about US interventions into conflict and post-conflict settings abroad since the end of the Cold War. We will consider the broad trends in international politics, with particular focus on the nature of\u00a0\u201cunipolarity,\u201d\u00a0\u201cresponsibility to protect,\u201d and the politics of border regions. We will look at both governmental and nongovernmental actors. Renumbered from IRGN 434. Students may not receive credit for GPPS 434 and IRGN 434.", + "name": "GPPS 434", + "prereqs": [], + "title": "Humanitarian Interventions (4)" + }, + "GPPS 441": { + "dept": "GPPS", + "description": "This course goes beyond the debates of the role of the market and the state in the process of economic growth and political development, seeking to provide an understanding of the complex interaction between political incentives, regulatory decisions, and their implementation. Non-GPS graduate students may enroll with consent of instructor.\u00a0Students may not receive credit for both renumbered from IRGN 441. Students may not receive credit for GPPS 441 and IRGN 441.", + "name": "GPPS 441", + "prereqs": [], + "title": "Government and Regulation (4)" + }, + "GPPS 442": { + "dept": "GPPS", + "description": "This course surveys the major contours of intellectual debates and conceptual frameworks that structure the field of international security studies. It introduces students to important strategic thinkers in order to analyze issues in the use of force. Topics include the development of strategic thought, theories on the course of war, the organizational and political nature of militaries, assessment of military effectiveness, and the peculiar problems of nuclear and unconventional warfare. Renumbered from IRGN 442. Students may not receive credit for GPPS 442 and IRGN 442.", + "name": "GPPS 442", + "prereqs": [], + "title": "Foundations of Strategic Studies (4)" + }, + "GPPS 445": { + "dept": "GPPS", + "description": "This course focuses on contemporary Cuba, its politics, economics, and foreign policy, and assesses the social gains of the revolution and the challenges of reforming socialism. The course also takes a brief look at the origins of the revolution and the role of Castro, explores Cuba-related social media, and examines current US-Cuba relations. Recommended preparation: Spanish proficiency is recommended. Renumbered from IRGN 445. Students may not receive credit for GPPS 445 and IRGN 445.", + "name": "GPPS 445", + "prereqs": [], + "title": "Cuba: Revolution and Reform (4)" + }, + "GPPS 446": { + "dept": "GPPS", + "description": "This course examines the interplay between structural factors, institutions, and key actors in politics and society in order to understand the democratization of and contemporary democratic politics in Latin America. May not receive credit for GPPS 446 and the IRGN 490 course with the same title.", + "name": "GPPS 446", + "prereqs": [], + "title": "Democratization in Latin America (4)" + }, + "GPPS 448": { + "dept": "GPPS", + "description": "To explore the roles that civil society/NGOs/the third sector can play in advancing political, social, and economic progress in developing countries. To consider the strengths and weaknesses, capacities, and limitations of NGOs in developing countries. To provide students with experience in evaluating NGOs and in making professional recommendations to enhance their ability to make a difference. To prepare students to take leadership roles\u2014whether in government, the private sector, or NGOs\u2014in promoting civil-society participation in development. Renumbered from IRGN 448. Students may not receive credit for GPPS 448 and IRGN 448.", + "name": "GPPS 448", + "prereqs": [], + "title": "Civil Society and Development (4)" + }, + "GPPS 449": { + "dept": "GPPS", + "description": "Analysis of the interests, structure, and procedures of the main executive branch agencies involved in the formulation of foreign policy, and of the roles of Congress, the media, public opinion, and nongovernmental actors. Case studies and \u201cdaily briefings\u201d to prepare students to perform professionally in the foreign policy arena. Renumbered from IRGN 449. Students may not receive credit for GPPS 449 and IRGN 449.", + "name": "GPPS 449", + "prereqs": [], + "title": "The Making of US Foreign Policy (4)" + }, + "GPPS 450": { + "dept": "GPPS", + "description": "The course is designed to develop the analytical tools to assess how foreign aid is allocated and whether it is effective. We will ask the following key questions: (1) Why do states give foreign aid?; (2) Is foreign aid effective?; (3) How do donors allocate foreign aid?; (4) What are the differences between bilateral and multilateral aid?; and, (5) Are there unintended consequences of foreign aid? The readings will consist of both seminal and recent works in political science and economics. May not receive credit for GPPS 450 and the IRGN 490 with the same course title.", + "name": "GPPS 450", + "prereqs": [], + "title": "The Political Economy of Foreign Aid (4)" + }, + "GPPS 451": { + "dept": "GPPS", + "description": "This course investigates how the public forms opinions about foreign policy and the various means, both direct and indirect, through which public opinion can influence the policy-making process. We consider such issues as: How does the public learn about foreign policy? Do they care about it? If so, under what circumstances will political leaders be responsive to the public\u2019s preferences? Do politics really stop at the water\u2019s edge? Should public opinion have a role in foreign policy? May not receive credit for GPPS 451 and the IRGN 490 with the same course title.", + "name": "GPPS 451", + "prereqs": [], + "title": "Public Opinion and Foreign Policy (4)" + }, + "GPPS 454": { + "dept": "GPPS", + "description": "Issues to be actively debated include the collective defense of democracy, coping with revolutionary change, counter-narcotics, anti-corruption, international finance, trade, and US-Mexican and US-Brazilian relations. In each case, students analyze the strengths and weaknesses of current US policy and advocate alternative options. Renumbered from IRGN 454. Students may not receive credit for GPPS 454 and IRGN 454.", + "name": "GPPS 454", + "prereqs": [], + "title": "Current Issues in US-Latin American Relations (4)" + }, + "GPPS 455": { + "dept": "GPPS", + "description": "This course investigates both the risks and the institutional and political underpinnings of financial deepening and financial repression in China. Students will keep track of the latest financial developments in China and learn to predict which will have consequences for the future evolution of the Chinese financial system. Renumbered from IRGN 455. Students may not receive credit for GPPS 455 and IRGN 455.", + "name": "GPPS 455", + "prereqs": [], + "title": "Financing the Chinese Miracle (4)" + }, + "GPPS 456": { + "dept": "GPPS", + "description": "Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 456. Students may not receive credit for GPPS 456 and IRGN 456.", + "name": "GPPS 456", + "prereqs": [], + "title": "Program Design and Evaluation (4)" + }, + "GPPS 460": { + "dept": "GPPS", + "description": "This course will analyze how the domestic politics of each country, their international negotiations, and their interaction concerning economic issues have affected the US-Japan relationship. Both the politics of cooperation and integration, and trade friction and conflict will be addressed in part through study of specific cases. Renumbered from IRGN 460. Students may not receive credit for GPPS 460 and IRGN 460.", + "name": "GPPS 460", + "prereqs": [], + "title": "The Politics of US-Japan Economic Relations (4)" + }, + "GPPS 463": { + "dept": "GPPS", + "description": "This course provides an introduction to five Southeast Asian countries: Indonesia, Thailand, Malaysia, the Philippines, and Vietnam. The focus will be on the national level of political and economic issues in these countries. In addition, a number of region-wide issues will also be examined such as: Chinese business groups and networks; clientelism and corruption; regional trade and investment linkages; democratization; and the implications of political change for future economic development. Renumbered from IRGN 463. Students may not receive credit for GPPS 463 and IRGN 463.", + "name": "GPPS 463", + "prereqs": [], + "title": "Politics of Southeast Asia (4)" + }, + "GPPS 465": { + "dept": "GPPS", + "description": "Analyzes the particular environment in which nonprofit organizations define and achieve their objectives. Management tools are applied to existing nonprofits and to student projects. Renumbered from IRGN 465. Students may not receive credit for GPPS 465 and IRGN 465.", + "name": "GPPS 465", + "prereqs": [], + "title": "Management of Nonprofit Organizations (4)" + }, + "GPPS 469": { + "dept": "GPPS", + "description": "", + "name": "GPPS 469", + "prereqs": [], + "title": "Comparative Grand Strategy and Defense Policy (4)" + }, + "GPPS 473": { + "dept": "GPPS", + "description": "This course examines the political economy of energy in Asia across a number of key themes, including the interaction between the economics and politics of energy markets, the search for energy security through cooperation and competition, the challenges of managing difficult energy policy choices and trade-offs, and the challenges of sustainable energy development. Emphasis will be placed on the oil industry and its pivotal role in global energy use, pricing, and geopolitics. Renumbered from IRGN 473. Students may not receive credit for GPPS 473 and IRGN 473.", + "name": "GPPS 473", + "prereqs": [], + "title": "Political Economy of Energy in Asia (4)" + }, + "GPPS 476": { + "dept": "GPPS", + "description": "This course involves intense engagement with original Chinese sources as a way to explore the evolution of the Chinese Communist Party and the contemporary Chinese economy. Students will be exposed to government, media, and statistical sources. Recommended preparation: At least second-year, college-level proficiency in Mandarin Chinese is expected. Renumbered from IRGN 476. Students may not receive credit for GPPS 476 and IRGN 476.", + "name": "GPPS 476", + "prereqs": [], + "title": "Chinese Sources and Methods (4)" + }, + "GPPS 478": { + "dept": "GPPS", + "description": "Examines the domestic and strategic sources of Japan\u2019s foreign policy in the postwar era. Unlike IRGN 460, this course emphasizes Japan\u2019s foreign economic policy in regional and global multilateral organizations, and the major security issues it confronts with its Asian neighbors. Renumbered from IRGN 478. Students may not receive credit for GPPS 478 and IRGN 478.", + "name": "GPPS 478", + "prereqs": [], + "title": "Japanese Foreign Policy (4)" + }, + "GPPS 479": { + "dept": "GPPS", + "description": "Overview of Latin American politics and the \u201crules of the game,\u201d both formal and informal. Key topics include military rule, presidentialism, and clientelism in the region as a whole, with special emphasis on Argentina, Brazil, Chile, and Mexico. Renumbered from IRGN 479. Students may not receive credit for GPPS 479 and IRGN 479.", + "name": "GPPS 479", + "prereqs": [], + "title": "Politics and Institutions in Latin America (4)" + }, + "GPPS 481: The Political Economy of Authoritarian Regimes (4)": { + "dept": "GPPS", + "description": "Are authoritarian regimes fundamentally different from democratic ones? If so, how are they different and what are the political and economic implications of such differences? This course will explore the different logics of authoritarian politics, followed by an investigation of the growth and inequality implications of those politics. Renumbered from IRGN 481. Students may not receive credit for GPPS 481 and IRGN 481.", + "name": "GPPS 481: The Political Economy of Authoritarian Regimes (4)", + "prereqs": [], + "title": "" + }, + "GPPS 484": { + "dept": "GPPS", + "description": "This course will examine characteristics and distinctive aspects of contemporary Korean society and politics. Emphasis will be placed on continuity and change in social values, political culture and leadership, economic growth and its impact, and democratization and its future prospects. Renumbered from IRGN 484. Students may not receive credit for GPPS 484 and IRGN 484.", + "name": "GPPS 484", + "prereqs": [], + "title": "Korean Politics (4)" + }, + "HDP 1": { + "dept": "HDP", + "description": "This course introduces students to the central issues in the basic areas in human development. The course will explain relationships between biological, cognitive, social, and cultural aspects of development across the life span.", + "name": "HDP 1", + "prereqs": [], + "title": "Introduction to Human Development (4)" + }, + "HDP 110": { + "dept": "HDP", + "description": "The purpose of this course is to familiarize students with basic mechanisms of brain and behavioral development from embryology through aging. Multiple levels of analysis will be discussed, including the effects of hormones on behavior, developmental events at the level of cells, structures, and neural systems, and the neural basis of cognition, social, perceptual, and language development. ", + "name": "HDP 110", + "prereqs": [ + "HDP 1", + "PSYC 101" + ], + "title": "Brain and Behavioral Development (4)" + }, + "HDP 111": { + "dept": "HDP", + "description": "The course will examine the human evolutionary past to inform our understanding of the biological, cognitive, and sociocultural aspects of growth and change across the lifespan. Lectures and readings will draw from diverse fields to situate our understanding of human development within its broader evolutionary context. Areas of focus will include but are not limited to human longevity, biology of growth, theory of mind, and social and biological development in cross-species comparison. ", + "name": "HDP 111", + "prereqs": [ + "HDP 1", + "BILD 3", + "ANTH 2" + ], + "title": "Evolutionary Principles in Human Development (4)" + }, + "HDP 120": { + "dept": "HDP", + "description": "Examination of children\u2019s acquisition of language from babbling to the formation of sentences. Topics covered include: prelinguistic gestures, relationships between babbling and sound systems, speech perception, linking words with objects, rule overgeneralization, bilingualism, nature vs. nurture, individual differences, cultural differences. ", + "name": "HDP 120", + "prereqs": [ + "HDP 1", + "LIGN 4" + ], + "title": "Language Development (4)" + }, + "HDP 121": { + "dept": "HDP", + "description": "(Same as COGS 110.) This course examines changes in thinking and perceiving the physical and social world from birth through childhood. Evidence of significant changes in encoding information, forming mental representations, and solving problems is culled from psychological research, cross-cultural studies, and cognitive science. ", + "name": "HDP 121", + "prereqs": [ + "HDP 1", + "COGS 1" + ], + "title": "The Developing Mind (4)" + }, + "HDP 122": { + "dept": "HDP", + "description": "This course covers topics in social development research. Content will address general principles such as the mutual influences of caregivers and children upon each other and the interplay of person and context. Discussion areas will include attachment, parenting styles, gender differences, aggression, social cognition, social components of achievement motivation, and development of conscience. ", + "name": "HDP 122", + "prereqs": [ + "HDP 1" + ], + "title": "Social Development (4)" + }, + "HDP 133": { + "dept": "HDP", + "description": "Foundations of Human Development (4)", + "name": "HDP 133", + "prereqs": [], + "title": "Sociocultural" + }, + "HDP 150": { + "dept": "HDP", + "description": "Seminar for graduating HDP seniors. Readings and discussion of special topics in human development. Provides advanced-level study on subfields of human development. Topics vary quarterly. (May repeat when topics vary.) ", + "name": "HDP 150", + "prereqs": [ + "HDP 181" + ], + "title": "Senior Seminar (4)" + }, + "HDP 160": { + "dept": "HDP", + "description": "Topics Seminar in Human Development (4)", + "name": "HDP 160", + "prereqs": [], + "title": "Special" + }, + "HDP 171": { + "dept": "HDP", + "description": "HDP 171 provides an introduction to the scholarship and practice in the field of cultural competency. Through relevant readings, associated assignments, and guest speakers from the community, students will acquire the knowledge and skills necessary for doing substantive research in diverse cultural contexts. ", + "name": "HDP 171", + "prereqs": [], + "title": "Diverse Communities in a Life-span Approach to Human Development (4)" + }, + "HDP 181": { + "dept": "HDP", + "description": "Projects in Human Development Research (6)", + "name": "HDP 181", + "prereqs": [], + "title": "Experimental" + }, + "HDP 191": { + "dept": "HDP", + "description": "This course combines lectures on research methodology (three hours/week) with an applied field research experience (four hours/week) conducted at a preapproved study site. Required: completion of a field notebook, review paper, oral presentation, and final paper. Students must submit the pre-enrollment questionnaire one academic year prior to enrollment. See", + "name": "HDP 191", + "prereqs": [], + "title": "Field Research in Human Development (6)" + }, + "HDP 193": { + "dept": "HDP", + "description": "Research in Human Development (4)", + "name": "HDP 193", + "prereqs": [], + "title": "Advanced" + }, + "HDP 194A-B-C": { + "dept": "HDP", + "description": "Students will take part in a weekly research seminar. In addition, they will plan and carry out a three-quarter research project under the guidance of a faculty member. The project will form the basis for their senior honors thesis. ", + "name": "HDP 194A-B-C", + "prereqs": [], + "title": "Honors Thesis (4-4-4)" + }, + "HDP 195": { + "dept": "HDP", + "description": "Apprentice in Human Development (4)", + "name": "HDP 195", + "prereqs": [], + "title": "Instructional" + }, + "HDP 199": { + "dept": "HDP", + "description": "Study in Human Development (4)", + "name": "HDP 199", + "prereqs": [], + "title": "Independent" + }, + "HDP 98": { + "dept": "HDP", + "description": "Directed group study, on a topic or in a field not included in the department curriculum, by arrangement with a faculty member. Pass/Not Pass grades only. May be taken for credit three times for a maximum of six units. Cannot be used toward HDP major credit. ", + "name": "HDP 98", + "prereqs": [ + "SSC 98", + "SSC 99", + "SSC 97" + ], + "title": "Directed Group Study (1\u20132)" + }, + "HDP 99": { + "dept": "HDP", + "description": "Study in Human Development (2\u20134)", + "name": "HDP 99", + "prereqs": [], + "title": "Independent" + }, + "HIAF 111": { + "dept": "HIAF", + "description": "A survey of African history dealing with the European scramble for territory, primary resistance movements, the rise of nationalism and the response of metropolitan powers, the transfer of power, self-rule and military coups, and the quest for identity and unity.", + "name": "HIAF 111", + "prereqs": [], + "title": "Modern Africa since 1880 (4)" + }, + "HIAF 112": { + "dept": "HIAF", + "description": "West Africa from the nineteenth century onwards and examines the broad outlines of historical developments in the sub-region through the twentieth century, including such themes as religious, political, and social changes.", + "name": "HIAF 112", + "prereqs": [], + "title": "West Africa since 1880 (4)" + }, + "HIAF 113": { + "dept": "HIAF", + "description": "Wars and the Global Order: Africa and Asia (4)", + "name": "HIAF 113", + "prereqs": [], + "title": "Small" + }, + "HIAF 120": { + "dept": "HIAF", + "description": "The origins and the interaction between the peoples of South Africa. Special attention will be devoted to industrial development, urbanization, African and Afrikaner nationalism, and the origin and development of apartheid and its consequences.", + "name": "HIAF 120", + "prereqs": [], + "title": "History of South Africa (4)" + }, + "HIAF 123": { + "dept": "HIAF", + "description": "Plant and animal domestication, ironworking and the distribution of ethnic/language groups, urbanization, regional and long-distance commerce, and the rise of medieval kingdoms.\u00a0+", + "name": "HIAF 123", + "prereqs": [], + "title": "West Africa from Earliest Times to 1800 (4)" + }, + "HIAF 161": { + "dept": "HIAF", + "description": "This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 261.", + "name": "HIAF 161", + "prereqs": [], + "title": "Special Topics in African History (4)" + }, + "HIAF 199": { + "dept": "HIAF", + "description": "Directed readings for undergraduates. ", + "name": "HIAF 199", + "prereqs": [], + "title": "Independent Study in African History (4)" + }, + "HIAF 261": { + "dept": "HIAF", + "description": "This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 161.", + "name": "HIAF 261", + "prereqs": [], + "title": "Special Topics in African History (4)" + }, + "HIEA": { + "dept": "HIEA", + "description": "171/271. Society and Culture in Premodern China (4)", + "name": "HIEA", + "prereqs": [], + "title": "" + }, + "HIEA 111": { + "dept": "HIEA", + "description": "Twelfth to Mid-Nineteenth Centuries (4)", + "name": "HIEA 111", + "prereqs": [], + "title": "Japan:" + }, + "HIEA 112": { + "dept": "HIEA", + "description": "From the Mid-Nineteenth Century through the US Occupation (4)", + "name": "HIEA 112", + "prereqs": [], + "title": "Japan:" + }, + "HIEA 113": { + "dept": "HIEA", + "description": "Fifteen-Year War in Asia and the Pacific (4)", + "name": "HIEA 113", + "prereqs": [], + "title": "The" + }, + "HIEA 114": { + "dept": "HIEA", + "description": "Examines social, cultural, political, and economic transformations and continuities in Japan since World War II. Emphases will differ by instructor.", + "name": "HIEA 114", + "prereqs": [], + "title": "Postwar Japan (4)" + }, + "HIEA 115": { + "dept": "HIEA", + "description": "and Cultural History of Twentieth-Century Japan (4)", + "name": "HIEA 115", + "prereqs": [], + "title": "Social" + }, + "HIEA 116": { + "dept": "HIEA", + "description": "Survey of relations between Japan and the United States in the nineteenth and twentieth centuries. Although the focus will be on these nation-states, the course will be framed within the global transformation of societies. Topics include cultural frameworks, political and economic changes, colonialism and imperialism, and migration.", + "name": "HIEA 116", + "prereqs": [], + "title": "Japan-U.S. Relations (4)" + }, + "HIEA 117": { + "dept": "HIEA", + "description": "By examining the roles of ghosts in Japanese belief systems in a nonscientific age, this course addresses topics including folk beliefs and ghost stories, religiosity, early science, tools of amelioration and authoritative knowledge, and the relationship between myth and history.", + "name": "HIEA 117", + "prereqs": [], + "title": "Ghosts in Japan (4)" + }, + "HIEA 120": { + "dept": "HIEA", + "description": "Chinese Philosophy and Culture (4)", + "name": "HIEA 120", + "prereqs": [], + "title": "Classical" + }, + "HIEA 121": { + "dept": "HIEA", + "description": "This course covers the period from the sixth century to the thirteenth century, the time of the glorious T\u2019angand Sung dynasties. We focus on the \u201cmedieval revolution\u201d that changed the political, economic, and social life of the empire. As much as possible, we study these changes from the eyes of the people who lived throughout them\u2014aristocrats, peasants, soldiers, merchants, women.", + "name": "HIEA 121", + "prereqs": [], + "title": "Medieval Chinese Culture and Society (4)" + }, + "HIEA 122": { + "dept": "HIEA", + "description": "Imperial Chinese Culture and Society (4)", + "name": "HIEA 122", + "prereqs": [], + "title": "Late" + }, + "HIEA 123": { + "dept": "HIEA", + "description": "Ming history from its beginnings under Mongol rule until its fall to rebels and the Manchus. We study government and society under each of the sixteen emperors, and major events like the Zheng He voyages and the first Sino-Japanese War. Recommended preparation: HILD 11.\u00a0+", + "name": "HIEA 123", + "prereqs": [], + "title": "China under the Ming Dynasty (1368\u20131644) (4)" + }, + "HIEA 124": { + "dept": "HIEA", + "description": "We read primary and secondary sources to explore the experiences, worldview, and relationships of Ming men and women, variously including emperors and empresses, scholar-officials, upper-class wives, merchants, weavers, painters, eunuchs, Daoists, fighting monks, farmers, actors, gardeners, courtesans, soldiers, and pirates. +", + "name": "HIEA 124", + "prereqs": [], + "title": "Life in Ming China (1369\u20131644) (4)" + }, + "HIEA 125": { + "dept": "HIEA", + "description": "The impact of modern transformations on female roles and gender relations in China, Japan, and Korea, focusing on the late imperial/early modern periods through the twentieth century.", + "name": "HIEA 125", + "prereqs": [], + "title": "Women and Gender in East Asia (4)" + }, + "HIEA 126": { + "dept": "HIEA", + "description": "Silk Road in Chinese and Japanese History (4)", + "name": "HIEA 126", + "prereqs": [], + "title": "The" + }, + "HIEA 128": { + "dept": "HIEA", + "description": "Introduction to material culture in China from a historical perspective. Consider Chinese primary sources (including both historical texts and objects) from the point of view of the new interdisciplinary field of material culture studies.\u00a0+", + "name": "HIEA 128", + "prereqs": [], + "title": "History of Material Culture in China (4)" + }, + "HIEA 129": { + "dept": "HIEA", + "description": "Through primary and secondary readings on the lives of individual prominent and ordinary men and women from China\u2019s past, we explore the relation of the individual to social structures and accepted norms; personal relationships; and the creation of historical sources. +", + "name": "HIEA 129", + "prereqs": [], + "title": "Faces of the Chinese Past (4)" + }, + "HIEA 130": { + "dept": "HIEA", + "description": "From the Opium War to the 1911 Revolution. Key topics include ethnic identity under Manchu rule, the impact of Western imperialism, the Taiping and other rebellions, overseas Chinese, social change and currents of reform, and the rise of Chinese nationalism.", + "name": "HIEA 130", + "prereqs": [], + "title": "End of the Chinese Empire, 1800\u20131911 (4)" + }, + "HIEA 131": { + "dept": "HIEA", + "description": "An exploration of the formative period of the twentieth-century Chinese Revolution: the New Culture Movement, modern urban culture, the nature of Nationalist (Guomindang) rule, war with Japan, revolutionary nationalism, and the Chinese Communist rise to power.", + "name": "HIEA 131", + "prereqs": [], + "title": "China in War and Revolution, 1911\u20131949 (4)" + }, + "HIEA 132": { + "dept": "HIEA", + "description": "This course analyzes the history of the PRC from 1949 to the present. Special emphasis is placed on the problem of post-revolutionary institutionalization, the role of ideology, the tension between city and countryside, Maoism, the Great Leap Forward, the Cultural Revolution.", + "name": "HIEA 132", + "prereqs": [], + "title": "Mao\u2019s China, 1949\u20131976 (4)" + }, + "HIEA 133": { + "dept": "HIEA", + "description": "China: Cultural History (4)", + "name": "HIEA 133", + "prereqs": [], + "title": "Twentieth-Century" + }, + "HIEA 134": { + "dept": "HIEA", + "description": "of Thought and Religion in China: Confucianism (4)", + "name": "HIEA 134", + "prereqs": [], + "title": "History" + }, + "HIEA 135": { + "dept": "HIEA", + "description": "of Thought and Religion in China: Buddhism (4)", + "name": "HIEA 135", + "prereqs": [], + "title": "History" + }, + "HIEA 136": { + "dept": "HIEA", + "description": "of Thought and Religion in China: Daoism (4)", + "name": "HIEA 136", + "prereqs": [], + "title": "History" + }, + "HIEA 137": { + "dept": "HIEA", + "description": "and the Family in Chinese History (4)", + "name": "HIEA 137", + "prereqs": [], + "title": "Women" + }, + "HIEA 138": { + "dept": "HIEA", + "description": "Examines women\u2019s roles and experiences in the twentieth-century Chinese revolution, the ways in which women participated in the process of historical change, the question of to what extent the revolution \u201cliberated\u201d women from \u201cConfucian tradition.\u201d", + "name": "HIEA 138", + "prereqs": [], + "title": "Women and the Chinese Revolution (4)" + }, + "HIEA 139GS": { + "dept": "HIEA", + "description": "This course provides an overview of Southeast Asian culture and history from 800 to the age of imperialism. It addresses regional geography, diversity, religion, political and social structures, mercantile and cultural ties abroad, the arrival of Islam, and the region\u2019s changing relationship with European and Asian power. Students must apply and be accepted into the Global Seminars Program.", + "name": "HIEA 139GS", + "prereqs": [], + "title": "An Introduction to Southeast Asia (circa 800\u20131900) (4)" + }, + "HIEA 140": { + "dept": "HIEA", + "description": "Examines China\u2019s attempts to manage the movements of people, ideas, and trade across its borders since 1900. How much control do individual countries such as China have over global processes? Special emphasis will be placed on global contexts and the impacts of China\u2019s decision to reintegrate its society and economy with capitalist countries since 1978. Recommended preparation: previous course work on China helpful but not required.", + "name": "HIEA 140", + "prereqs": [], + "title": "China since 1978 (4)" + }, + "HIEA 144": { + "dept": "HIEA", + "description": "Selected topics in East Asian History. Course may be taken for credit up to three times as topics vary.", + "name": "HIEA 144", + "prereqs": [], + "title": "Topics in East Asian History (4)" + }, + "HIEA 150": { + "dept": "HIEA", + "description": "This course examines Korea\u2019s entrance into the modern world. It", + "name": "HIEA 150", + "prereqs": [], + "title": "Modern Korea, 1800\u20131945 (4)" + }, + "HIEA 151": { + "dept": "HIEA", + "description": "This course traces the peninsula\u2019s division into two rival", + "name": "HIEA 151", + "prereqs": [], + "title": "The Two Koreas, 1945\u2013Present (4)" + }, + "HIEA 152": { + "dept": "HIEA", + "description": "This course places the Korean diaspora in national, regional, and global frames from the imperial age to our globalized present. It traces migrant experiences and community formations on the peninsula and in Japan, the United States, China, and the former USSR.", + "name": "HIEA 152", + "prereqs": [], + "title": "History and Cultures of the Korean Diaspora (4)" + }, + "HIEA 153": { + "dept": "HIEA", + "description": "This course explores the cultural and social structures that dominated twentieth-century Korea: imperialism, ethnonationalism, heteropatriarchy, capitalism, socialism, and militarism. It also uses individual and collective engagements with these hegemonic structures to demonstrate contentious interactions between individuals and society.", + "name": "HIEA 153", + "prereqs": [], + "title": "Social and Cultural History of Twentieth-Century Korea (4)" + }, + "HIEA 163/263": { + "dept": "HIEA", + "description": "This colloquium will explore the relationship between cinema and society in twentieth-century China. The emphasis will be on the social, political, and cultural impact of filmmaking. The specific period under examination (1930s, 1940s, post-1949) may vary each quarter. Graduate students will be expected to submit an additional paper. ", + "name": "HIEA 163/263", + "prereqs": [], + "title": "Cinema and Society in Twentieth-Century China (4)" + }, + "HIEA 166/266": { + "dept": "HIEA", + "description": "Ming was considered absolutist, closed, and stagnant. Nowadays its vibrant economy and culture are celebrated. We pair scholarship with primary sources to explore Ming\u2019s complexities and learn how historians work. May be coscheduled with HIEA 266. ", + "name": "HIEA 166/266", + "prereqs": [], + "title": "Creating Ming Histories (4)" + }, + "HIEA 168/268": { + "dept": "HIEA", + "description": "Chinese society, thought, religion, culture, economy and politics from the Shang through the Song dynasties, through primary and secondary sources. Topics vary; may be repeated for credit. Requirements differ for undergraduate, MA and PhD students. Graduate students will be required to submit a more substantial piece of work or an additional paper. ", + "name": "HIEA 168/268", + "prereqs": [], + "title": "Topics in Classical and Medieval Chinese History (4)" + }, + "HIEA 170": { + "dept": "HIEA", + "description": "Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China\u2019s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 270. +", + "name": "HIEA 170", + "prereqs": [], + "title": "Love and Marriage in Chinese History (4)" + }, + "HIEA 180": { + "dept": "HIEA", + "description": "This colloquium will examine selected topics in modern Korean", + "name": "HIEA 180", + "prereqs": [], + "title": "Topics in Modern Korean History (4)" + }, + "HIEA 198": { + "dept": "HIEA", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. May be taken for credit up to three times. Department approval required.", + "name": "HIEA 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "HIEA 199": { + "dept": "HIEA", + "description": "Study in East Asian History (4)", + "name": "HIEA 199", + "prereqs": [], + "title": "Independent" + }, + "HIEA 270": { + "dept": "HIEA", + "description": "Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China\u2019s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 170.", + "name": "HIEA 270", + "prereqs": [], + "title": "Love and Marriage in Chinese History (4)" + }, + "HIEA 280": { + "dept": "HIEA", + "description": "This course will examine selected topics in modern Korean history through both primary sources (in translation) and secondary sources. Topics will vary year to year.", + "name": "HIEA 280", + "prereqs": [], + "title": "Topics in Modern Korean History (4)" + }, + "HIEA 292": { + "dept": "HIEA", + "description": "The Chinese classics reading group translates into English (as a way of understanding and discussing) the Chinese classics and philosophy. Some classical Chinese is required. We consider every aspect of each text from individual words to the historical context.", + "name": "HIEA 292", + "prereqs": [], + "title": "Chinese Classics Reading Group (4)" + }, + "HIEU": { + "dept": "HIEU", + "description": "184/284. Yugoslavia: Before, During, and After (4)", + "name": "HIEU", + "prereqs": [], + "title": "" + }, + "HIEU 102": { + "dept": "HIEU", + "description": "This course treats the history of Rome from the foundation of the city in the eighth century BC until the end of the Flavian dynasty in 96 AD. It focuses particularly on the political, social, and cultural elements that fueled Roman development and expansion.", + "name": "HIEU 102", + "prereqs": [], + "title": "Roman History (4)" + }, + "HIEU 102A": { + "dept": "HIEU", + "description": "The political, economic, and intellectual history of the Roman world from the foundation of Rome to the disintegration of the Western empire. This course will emphasize the importance of the political and cultural contributions of Rome to modern society. +", + "name": "HIEU 102A", + "prereqs": [], + "title": "Ancient Roman Civilization (4)" + }, + "HIEU 103": { + "dept": "HIEU", + "description": "This course discusses the history of imperial Rome and its successor states between the second and seventh centuries AD. It considers whether the Roman Empire fell or if one should instead speak of Roman continuity amidst political and religious change.", + "name": "HIEU 103", + "prereqs": [], + "title": "Decline and Fall of the Roman Empire (4)" + }, + "HIEU 104": { + "dept": "HIEU", + "description": "A survey course of the history of the Byzantine state from the reign of Constantine to the fall of Constantinople. This course will emphasize the importance of the Byzantine state within a larger European focus, its relationship to the emerging Arab states, its political and cultural contributions to Russia and the late medieval west.\u00a0+", + "name": "HIEU 104", + "prereqs": [], + "title": "Byzantine Empire (4)" + }, + "HIEU 104A": { + "dept": "HIEU", + "description": "This course is devoted to the Early Byzantine Empire from Constantine through the challenges and transformations of the seventh century, examining the rise and triumph of Christianity, war, diplomacy, the rise of Islam, climate change, epidemic and natural disasters. Students cannot receive credit for both HIEU 104 and HIEU 104A. Recommended preparation: HIEU 105.\u00a0+", + "name": "HIEU 104A", + "prereqs": [], + "title": "The Byzantine Empire, 3rd\u20137th centuries (4)" + }, + "HIEU 104B": { + "dept": "HIEU", + "description": "This course covers the Middle Byzantine Empire from the seventh to the eleventh century, examining the impact of Islam; Iconoclasm; the conversion of the Slavs and the rise of Bulgaria and Russia; religious and intellectual developments; court culture and ceremonial. Students cannot receive credit for both HIEU 104 and HIEU 104B. Recommended preparation: HIEU 104A.\u00a0+", + "name": "HIEU 104B", + "prereqs": [], + "title": "The Byzantine Empire, 7th\u201311th centuries (4)" + }, + "HIEU 104C": { + "dept": "HIEU", + "description": "This course covers the Later Byzantine Empire from the eleventh through the fifteenth century, examining the eleventh century crisis; the rise of the West and the Crusades; the Komnenian revolution; Slavic empires; the Palaiologan Renaissance; Mongols and Ottomans; the Byzantine diaspora. Students cannot receive credit for both HIEU 104 and HIEU 104C. Recommended preparation: HIEU 104A and/or HIEU 104B.\u00a0+", + "name": "HIEU 104C", + "prereqs": [], + "title": "The Byzantine Empire, 11th\u201315th centuries (4)" + }, + "HIEU 105": { + "dept": "HIEU", + "description": "A study of the origin and development of early Christian thought, literature, and institution from the New Testament period to the Council of Chalcedon.\u00a0+", + "name": "HIEU 105", + "prereqs": [], + "title": "The Early Christian Church (4)" + }, + "HIEU 105S": { + "dept": "HIEU", + "description": "Multiple reformations of the European Christian Church confronted with the rise of universities, colonial exploration, absolutism, scientific revolutions, and the Enlightenment. Focused attention will be given to early modern Europe (Muslims, Jews, and Protestant sects).", + "name": "HIEU 105S", + "prereqs": [], + "title": "Devotions, Doctrines, and Divisions: Religion in Early Modern European Society (4)" + }, + "HIEU 106": { + "dept": "HIEU", + "description": "This course is a survey of the political, social, and cultural history of the ancient Mediterranean. It focuses on the ancient empires in the Near East (Sumer, Babylon, Assyria, Persia), Egypt, Greece, and Rome. +", + "name": "HIEU 106", + "prereqs": [], + "title": "Egypt, Greece, and Rome (4)" + }, + "HIEU 106GS": { + "dept": "HIEU", + "description": "This course examines Constantinople in its imperial period (Byzantine and Ottoman) when it served as the political, cultural, economic, and religious center of empire. We examine continuity and change in areas such as urban space, demography, institutions, and art and architecture. Students must apply and be accepted into the Global Seminar Program.", + "name": "HIEU 106GS", + "prereqs": [], + "title": "Constantinople: Imperial Capital (4)" + }, + "HIEU 107": { + "dept": "HIEU", + "description": "Cross-listed with RELI 147. This course explores the history of how Western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. Students may not receive credit for both HIEU 107 and RELI 147.\u00a0+", + "name": "HIEU 107", + "prereqs": [], + "title": "Pagan Europe and its Christian Aftermath (4)" + }, + "HIEU 108S": { + "dept": "HIEU", + "description": "Ancient Mediterranean conceptions of emotional and physical love through analysis of ancient romantic poetry, love letters, and romance novels. Students learn to interpret primary sources and to conduct independent critical assessment of documents and ideas.", + "name": "HIEU 108S", + "prereqs": [], + "title": "Sex and Romance in the Ancient World (4)" + }, + "HIEU 109": { + "dept": "HIEU", + "description": "This course will explore the history of nationalism as idea and political movement in European history, from the French Revolution to the present.\u00a0+", + "name": "HIEU 109", + "prereqs": [], + "title": "Blood, Soil, Boundaries: Nationalism in Europe (4)" + }, + "HIEU 110": { + "dept": "HIEU", + "description": "The development of European society and culture", + "name": "HIEU 110", + "prereqs": [], + "title": "The Rise of Europe (4)" + }, + "HIEU 111": { + "dept": "HIEU", + "description": "The development of European society and culture from 1050 to 1400. +", + "name": "HIEU 111", + "prereqs": [], + "title": "Europe in the Middle Ages (4)" + }, + "HIEU 112S": { + "dept": "HIEU", + "description": "Ancient travel into unexplored regions of the world and the discovery of new civilizations. Look at actual voyages, focusing on the remarkable figures who braved the unknown, the objects of their journeys, and their crude equipment and knowledge.", + "name": "HIEU 112S", + "prereqs": [], + "title": "Ancient Explorers (4)" + }, + "HIEU 114GS": { + "dept": "HIEU", + "description": "This course examines how Athenians during different epochs have dealt and still deal with the realities of everyday life and death. The topics covered by the course include work, war, religion, politics, and death. Students must apply and be accepted into the Global Seminar Program. +", + "name": "HIEU 114GS", + "prereqs": [], + "title": "Athens: A City in History (4)" + }, + "HIEU 115": { + "dept": "HIEU", + "description": "The year 2000 provokes questions about the transformation of time, culture, and society. Taking the year 1000 as a touchstone, this class examines the history of apocalyptic expectations in the Middle Ages through a close scrutiny of both texts and art.\u00a0+", + "name": "HIEU 115", + "prereqs": [], + "title": "The Pursuit of the Millennium (4)" + }, + "HIEU 116A": { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1350\u20131683). Topics covered: the rise of the Ottoman Empire, conquest of the Balkans, the Ottoman system of rule, religious life, rural and urban society, law and order, and material culture.\u00a0+", + "name": "HIEU 116A", + "prereqs": [], + "title": "Greece and the Balkans in the Age of Ottoman Expansion (4)" + }, + "HIEU 116B": { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1683\u20131914). Topics covered: social and economic development in the eighteenth century, nationalism, independence wars, state-nation formation, interstate relations, the Eastern Question, rural society, urbanization, emigration, and the Balkan Wars. Students may not get credit for both HIEU 116B and HIEU 117A.", + "name": "HIEU 116B", + "prereqs": [], + "title": "Greece and the Balkans in the Age of Nationalism (4)" + }, + "HIEU 116C": { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1914\u20132001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD.", + "name": "HIEU 116C", + "prereqs": [], + "title": "Greece and the Balkans during the Twentieth Century (4)" + }, + "HIEU 116CD": { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1914\u20132001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD, or HIEU 116CD and HIEU 117B.", + "name": "HIEU 116CD", + "prereqs": [], + "title": "Greece and the Balkans during the Twentieth Century (4)" + }, + "HIEU 117A": { + "dept": "HIEU", + "description": "Greece and the Balkans in the Age of Nationalism (4)", + "name": "HIEU 117A", + "prereqs": [], + "title": "" + }, + "HIEU 117B": { + "dept": "HIEU", + "description": "Greece and the Balkans during the Twentieth Century (4)", + "name": "HIEU 117B", + "prereqs": [], + "title": "" + }, + "HIEU 118": { + "dept": "HIEU", + "description": "Examines problems surrounding the transfer of American culture, values, and styles to Europe in the twentieth and twenty-first centuries. Topics may include: consumer society, popular culture, commercial and business practices, \u201cMcDonaldization,\u201d political and military influence, democratization, and resistance to Americanization. Students may not receive credit for both HIEU 117S and HIEU 118.", + "name": "HIEU 118", + "prereqs": [], + "title": "Americanization in Europe (4)" + }, + "HIEU 120": { + "dept": "HIEU", + "description": "The social, political, and cultural transformation of late-medieval Italy from the heyday of mercantile expansion before the plague to the dissolution of the Italian state system with the French invasions of 1494. Special focus upon family, associational life and factionalism in the city, the development of the techniques of capitalist accumulation, and the spread of humanism.\u00a0+", + "name": "HIEU 120", + "prereqs": [], + "title": "The Renaissance in Italy (4)" + }, + "HIEU 121GS": { + "dept": "HIEU", + "description": "A lecture-discussion course that examines the role of Scotland in the English Civil War during the first half of the seventeenth century, 1601\u20131689.", + "name": "HIEU 121GS", + "prereqs": [], + "title": "Scotland and the English Civil War, 1601\u20131689 (4)" + }, + "HIEU 122": { + "dept": "HIEU", + "description": "This course treats the history of the Greek world from the Mycenaeans to the aftermath of the Peloponnesian War. It focuses on the rise of the polis, the development of the Athenian democracy and imperialism, and the Peloponnesian War. +", + "name": "HIEU 122", + "prereqs": [], + "title": "Ancient Greece from the Bronze Age to the Peloponnesian War (4)" + }, + "HIEU 123": { + "dept": "HIEU", + "description": "This course explores the dramatic political, social, and cultural changes in the Greek world and the Eastern Mediterranean from the fourth century BCE and the rise of Alexander the Great to the death of Cleopatra. +", + "name": "HIEU 123", + "prereqs": [], + "title": "Ancient Greece from Classical Athens to Cleopatra (4)" + }, + "HIEU 123GS": { + "dept": "HIEU", + "description": "A lecture-discussion course that examines the origins and evolution of religious freedom from the age of Tudors to the adoption of the Bill of Rights in the United States in 1791. Course materials fee may be required. Students must apply and be accepted into the Global Seminar Program.", + "name": "HIEU 123GS", + "prereqs": [], + "title": "Origins of Law and Religious Freedom in England and America, 1530\u20131971 (4)" + }, + "HIEU 124GS": { + "dept": "HIEU", + "description": "Language and cultural study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fee may be required. Students may not receive credit for both HIEU 124 and HIEU 124GS. Students must apply and be accepted into the Global Seminar Program.", + "name": "HIEU 124GS", + "prereqs": [], + "title": "The City Italy (4)" + }, + "HIEU 125": { + "dept": "HIEU", + "description": "The intellectual and social history of the Reformation and Counter-Reformation from the French invasions to the Edict of Nantes. Emphasis is upon reform from below and above, the transformation of grass-roots spirituality into institutional control.\u00a0+", + "name": "HIEU 125", + "prereqs": [], + "title": "Reformation Europe (4)" + }, + "HIEU 127": { + "dept": "HIEU", + "description": "This course looks at the phenomenon of sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries.", + "name": "HIEU 127", + "prereqs": [], + "title": "Sport in the Modern World (4)" + }, + "HIEU 127D": { + "dept": "HIEU", + "description": "This course looks at sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries. Students may not get credit for both HIEU 127 and HIEU 127D.", + "name": "HIEU 127D", + "prereqs": [], + "title": "Sport in the Modern World (4)" + }, + "HIEU 128": { + "dept": "HIEU", + "description": "An analysis of European history since the end of the Second World War. Focus is on political, social, economic, and cultural developments within European societies as well as on Europe\u2019s relationship with the wider world (the Cold War, decolonization).", + "name": "HIEU 128", + "prereqs": [], + "title": "Europe since 1945 (4)" + }, + "HIEU 129": { + "dept": "HIEU", + "description": "This course surveys the historical and cultural significance of Paris from about 1500 to the present. The focus is on interactions between political, architectural, and urban evolutions, and the changing populations of Paris in times of war, revolutions, and peace.\u00a0+", + "name": "HIEU 129", + "prereqs": [], + "title": "Paris, Past and Present (4)" + }, + "HIEU 130": { + "dept": "HIEU", + "description": "A lecture-discussion course focusing on Europe", + "name": "HIEU 130", + "prereqs": [], + "title": "Europe in the Eighteenth Century (4)" + }, + "HIEU 131": { + "dept": "HIEU", + "description": "This course examines the Revolution in France and its impact in Europe and the Caribbean. Special emphasis will be given to the origins of the Revolution, the development of political and popular radicalism and symbolism from 1789 to 1794, the role of political participants (e.g., women, sans-culottes, Robespierre), and the legacy of revolutionary wars and the Napoleonic system on Europe.\u00a0+", + "name": "HIEU 131", + "prereqs": [], + "title": "The French Revolution: 1789\u20131814 (4)" + }, + "HIEU 132": { + "dept": "HIEU", + "description": "How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D. +", + "name": "HIEU 132", + "prereqs": [], + "title": "Germany from Luther to Bismarck (4)" + }, + "HIEU 132D": { + "dept": "HIEU", + "description": "How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D.", + "name": "HIEU 132D", + "prereqs": [], + "title": "Germany from Luther to Bismarck (4)" + }, + "HIEU 134": { + "dept": "HIEU", + "description": "Formation of the Russian Empire, 800\u20131855 (4)", + "name": "HIEU 134", + "prereqs": [], + "title": "The" + }, + "HIEU 135": { + "dept": "HIEU", + "description": "Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism\u2019s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity.", + "name": "HIEU 135", + "prereqs": [], + "title": "Sun, Sea, Sand, and Sex:\u00a0Tourism and Tourists in the Contemporary World (4)" + }, + "HIEU 135GS": { + "dept": "HIEU", + "description": "Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism\u2019s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity. Program or materials fees may apply. Students may not receive credit for HIEU 135 and HIEU 135GS. Students must apply and be accepted to the Global Seminars Program.", + "name": "HIEU 135GS", + "prereqs": [], + "title": "Sun, Sea, Sand, and Sex: Tourism and Tourists in the Contemporary World (4)" + }, + "HIEU 136B": { + "dept": "HIEU", + "description": "European Society and Social Thought, 1870\u20131989 (4)", + "name": "HIEU 136B", + "prereqs": [], + "title": "" + }, + "HIEU 137": { + "dept": "HIEU", + "description": "This course surveys the age of colonialism in the nineteenth and twentieth century. The course will focus on the debates on colonialism in the metropolis as well as on the conflicts inside the colonies. Considerable emphasis will be placed on colonialism in Africa.", + "name": "HIEU 137", + "prereqs": [], + "title": "History of Colonialism: From New Imperialism to Decolonization (4)" + }, + "HIEU 139": { + "dept": "HIEU", + "description": "This course places gender and sexuality at the center of European history from the Renaissance to the French Revolution. We examine the distinct roles that men and women played in the period\u2019s major events. We track how practices and understandings of gender and sexuality shifted during the four centuries between 1500 and 1800. +", + "name": "HIEU 139", + "prereqs": [], + "title": "Sex and Gender from the Renaissance to the French Revolution (4)" + }, + "HIEU 140": { + "dept": "HIEU", + "description": "This course explores the diverse history of women from the French Revolution to the present, with an emphasis on the variety of women\u2019s experience, the formation of gender identities, and the shifting relationship between gender and power over the course of the modern period. Topics include women and citizenship, science and gender, feminist movements, and the evolution of women\u2019s work.", + "name": "HIEU 140", + "prereqs": [], + "title": "History of Women and Gender in Europe: From the French Revolution to the Present (4)" + }, + "HIEU 140GS": { + "dept": "HIEU", + "description": "This course examines English responses to the French Revolution, industrialization, and engagement with other cultures during the eighteenth and nineteenth centuries. Readings from high, popular, and folk literature, both serious and satirical, illuminate life in the London metropolis. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "name": "HIEU 140GS", + "prereqs": [], + "title": "Art and Society in Nineteenth-Century London (4)" + }, + "HIEU 141": { + "dept": "HIEU", + "description": "European imperialism, alliances, and the outbreak of the First World War. The postwar settlement and its breakdown. The advent of Hitler and the disarray of the western democracies. The Second World War and the emergence of the super powers.", + "name": "HIEU 141", + "prereqs": [], + "title": "European Diplomatic History, 1870\u20131945 (4)" + }, + "HIEU 142": { + "dept": "HIEU", + "description": "Intellectual History, 1780\u20131870 (4)", + "name": "HIEU 142", + "prereqs": [], + "title": "European" + }, + "HIEU 143": { + "dept": "HIEU", + "description": "Intellectual History, 1870\u20131945 (4)", + "name": "HIEU 143", + "prereqs": [], + "title": "European" + }, + "HIEU 144": { + "dept": "HIEU", + "description": "Selected topics in European history. Course may be taken for credit up to three times as topics vary.", + "name": "HIEU 144", + "prereqs": [], + "title": "Topics in European History (4)" + }, + "HIEU 146": { + "dept": "HIEU", + "description": "A consideration of the political, social, and cultural crisis that faced Western liberal democracies in the interwar period, with emphasis on the mass movements that opposed bourgeois liberalism from both the left and the right.", + "name": "HIEU 146", + "prereqs": [], + "title": "Fascism, Communism, and the Crisis of Liberal Democracy: Europe 1919\u20131945 (4)" + }, + "HIEU 146S": { + "dept": "HIEU", + "description": "Examines existentialism as a way of thinking from the late nineteenth to mid-twentieth century. Explores the historical context of existentialism in Germany and France, e.g., World War II, the Holocaust, fascism, and communism. Selections from Heidegger, Sartre, Camus, and de Beauvoir.", + "name": "HIEU 146S", + "prereqs": [], + "title": "The Meaning of Life in the Modern World: Existentialism, Fascism, and Genocide (4)" + }, + "HIEU 150": { + "dept": "HIEU", + "description": "Emphasis on changes in social structure and corresponding shifts in political power. The expansion and the end of empire. Two World Wars and the erosion of economic leadership.", + "name": "HIEU 150", + "prereqs": [], + "title": "Modern British History (4)" + }, + "HIEU 151": { + "dept": "HIEU", + "description": "Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy.", + "name": "HIEU 151", + "prereqs": [], + "title": "Spain since 1808 (4)" + }, + "HIEU 151GS": { + "dept": "HIEU", + "description": "Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy. It will also include excursions to various sites of historical significance in and around Madrid. Program or materials fees may apply. Students may not receive credit for HIEU 151 and HIEU 151GS. Students must apply and be accepted to the Global Seminars Program.", + "name": "HIEU 151GS", + "prereqs": [], + "title": "History of Modern Spain, 1808\u2013Present (4)" + }, + "HIEU 152": { + "dept": "HIEU", + "description": "Examines how ordinary citizens coped with the problems of life under Europe\u2019s authoritarian regimes. Topics may include Nazism, fascism, and quasi-fascist societies (e.g., Franco\u2019s Spain, Salazar\u2019s Portugal), and communist practice from Leninism to Stalinism to the milder Titoism of Yugoslavia.", + "name": "HIEU 152", + "prereqs": [], + "title": "The Worst of Times: Everyday Life in Authoritarian and Dictatorial Societies (4)" + }, + "HIEU 153": { + "dept": "HIEU", + "description": "Selected topics in modern European history. Course may be taken for credit up to three times as topic vary.", + "name": "HIEU 153", + "prereqs": [], + "title": "Topics in Modern European History (4)" + }, + "HIEU 153A": { + "dept": "HIEU", + "description": "A study of the social, intellectual, and political currents in French history from the end of the French Revolution to the eve of the First World War. Lectures, slides, films, readings, and discussions.", + "name": "HIEU 153A", + "prereqs": [], + "title": "Nineteenth-Century France (4)" + }, + "HIEU 154": { + "dept": "HIEU", + "description": "German History: From Bismarck to Hitler (4)", + "name": "HIEU 154", + "prereqs": [], + "title": "Modern" + }, + "HIEU 154GS": { + "dept": "HIEU", + "description": "An analysis of the volatile course of German history from unification to the collapse of the Nazi dictatorship. Focus is on domestic developments inside Germany as well as on their impact on European and global politics in the twentieth century. Students may not receive credit for both HIEU 154 and HIEU 154GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "name": "HIEU 154GS", + "prereqs": [], + "title": "Modern Germany: From Bismarck to Hitler (4)" + }, + "HIEU 154XL": { + "dept": "HIEU", + "description": "Students will exercise advanced German language skills to read and discuss materials in HIEU 154. Must be enrolled in HIEU 154.", + "name": "HIEU 154XL", + "prereqs": [], + "title": "HIEU 154 Foreign Language Section (4)" + }, + "HIEU 156": { + "dept": "HIEU", + "description": "This course explores war, revolution, development, and terror in the Soviet Union from 1905\u20131991.", + "name": "HIEU 156", + "prereqs": [], + "title": "History of the Soviet Union, 1905\u20131991 (4)" + }, + "HIEU 157": { + "dept": "HIEU", + "description": "and the Law in Modern European History (4)", + "name": "HIEU 157", + "prereqs": [], + "title": "Religion" + }, + "HIEU 158": { + "dept": "HIEU", + "description": "Why did Germany in 1919 produce an Adolf Hitler;", + "name": "HIEU 158", + "prereqs": [], + "title": "Why Hitler? How Auschwitz? (4)" + }, + "HIEU 159": { + "dept": "HIEU", + "description": "For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?", + "name": "HIEU 159", + "prereqs": [], + "title": "Three Centuries of Zionism, 1648\u20131948 (4)" + }, + "HIEU 159S": { + "dept": "HIEU", + "description": "For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?", + "name": "HIEU 159S", + "prereqs": [], + "title": "Three Centuries of Zionism 1648\u20131948 (4)" + }, + "HIEU 160": { + "dept": "HIEU", + "description": "Selected topics in ancient Greek history. May be taken for credit three times. ", + "name": "HIEU 160", + "prereqs": [], + "title": "Topics in Ancient Greek History (4)" + }, + "HIEU 161/261": { + "dept": "HIEU", + "description": "Selected topics in Roman history. May be taken for credit three times as topics will vary. ", + "name": "HIEU 161/261", + "prereqs": [], + "title": "Topics in Roman History (4)" + }, + "HIEU 162/262": { + "dept": "HIEU", + "description": "Selected topics in Byzantine history. May be taken for credit three times as topics vary. ", + "name": "HIEU 162/262", + "prereqs": [], + "title": "Topics in Byzantine History (4)" + }, + "HIEU 163/263": { + "dept": "HIEU", + "description": "Intensive study of special problems or periods in the history of medieval Europe. Topics vary from year to year, and students may therefore repeat the course for credit. ", + "name": "HIEU 163/263", + "prereqs": [], + "title": "Special Topics in Medieval History (4)" + }, + "HIEU 164/264": { + "dept": "HIEU", + "description": "This course looks at the European and non-European in the early modern era. Topics will vary year to year. May be taken for credit three times.", + "name": "HIEU 164/264", + "prereqs": [], + "title": "Special Topics in Early Modern Europe (4)" + }, + "HIEU 167/267": { + "dept": "HIEU", + "description": "Topics will vary and may include political, socio-economic, and cultural developments in the era from 1650 to 1850. Some years the emphasis will be on the theory and practice of revolutions and their impact on Europe and the world. Graduate students will be required to submit an additional piece of work.", + "name": "HIEU 167/267", + "prereqs": [], + "title": "Special Topics in the Social History of Early Modern Europe (4)" + }, + "HIEU 172/272": { + "dept": "HIEU", + "description": "This course will be a comparative and thematic examination of the fascist movement and regimes in Europe from the 1920s to the 1940s. In particular, it will focus on the emergence of the two major fascist movements in Italy and Germany. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "name": "HIEU 172/272", + "prereqs": [], + "title": "Comparative European Fascism (4)" + }, + "HIEU 176/276": { + "dept": "HIEU", + "description": "This seminar addresses Jewish civic autonomy in the late medieval era, the terms of emancipation in the European states, the politics of Jewish socialists, the costs of assimilation, and the consequences of a successful Zionist state in 1948. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "name": "HIEU 176/276", + "prereqs": [], + "title": "Politics in the Jewish Past (4)" + }, + "HIEU 178/278": { + "dept": "HIEU", + "description": "Topics will vary from year to year. Graduate", + "name": "HIEU 178/278", + "prereqs": [], + "title": "Soviet History (4)" + }, + "HIEU 182/282": { + "dept": "HIEU", + "description": "Comparative study of Islam in Europe since 1945. Topics include indigenous populations; immigration; Islamic law/church-state questions; EU expansion/integration; gender issues; terrorism; Islamophobia; \u201cEuropeanizing\u201d Islam; the historical tradition of European-Muslim encounter and its present political/cultural issues. Graduate students will be required to do an additional paper. ", + "name": "HIEU 182/282", + "prereqs": [], + "title": "The Muslim Experience in Contemporary European Society (4)" + }, + "HIEU 198": { + "dept": "HIEU", + "description": "Directed group study on European history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. ", + "name": "HIEU 198", + "prereqs": [], + "title": "Directed Group Study (1, 2, 3, 4)" + }, + "HIEU 199": { + "dept": "HIEU", + "description": "Directed readings for undergraduates under the supervision of various faculty members. ", + "name": "HIEU 199", + "prereqs": [], + "title": "Independent Study in European History (4)" + }, + "HIEU 260": { + "dept": "HIEU", + "description": "Selected topics in ancient Greek history. May be coscheduled with HIEU 160. May be taken for credit up to three times. Department approval required.", + "name": "HIEU 260", + "prereqs": [], + "title": "Topics in Ancient Greek History (4)" + }, + "HIGR": { + "dept": "HIGR", + "description": "267A-B. Research Seminar in United States History (4-4)", + "name": "HIGR", + "prereqs": [], + "title": "" + }, + "HIGR 200": { + "dept": "HIGR", + "description": "An introductory graduate course for students in all fields. Themes include cross-field historiography and theory, interdisciplinary approaches to history and historical method. (May be taken twice for credit, if the reading list is significantly different.)", + "name": "HIGR 200", + "prereqs": [], + "title": "History and Theory (4)" + }, + "HIGR 205": { + "dept": "HIGR", + "description": "An introduction to historical scholarship on women and gender, this cross-field course is designed for graduate students from all fields in history as well as from other related disciplines. The course will introduce major themes, debates, and theoretical approaches to women\u2019s and gender history. The content of the course will change from year to year, but will include theoretical texts, historical case studies from different times and places, and primary sources. May be taken for credit two times.", + "name": "HIGR 205", + "prereqs": [], + "title": "Historical Scholarship on Women and Gender (4)" + }, + "HIGR 206": { + "dept": "HIGR", + "description": "Historical topics related to the human body, as a target of regulation, a site for the production of knowledge, the locus of an identity shaped by race, gender, and sexuality, and/or in terms of movement across geopolitical boundaries.", + "name": "HIGR 206", + "prereqs": [], + "title": "Histories of the Body (4)" + }, + "HIGR 207": { + "dept": "HIGR", + "description": "A transdisciplinary and comparative course on the interplay of nationalism, colonialism, and race (as well as class and gender/sexuality) in the nineteenth and twentieth centuries.", + "name": "HIGR 207", + "prereqs": [], + "title": "Nationalism, Colonialism, and Race (4)" + }, + "HIGR 208": { + "dept": "HIGR", + "description": "Provides instruction in academic professionalization, including qualifying exams; prospectus/grant writing; conference presentations; publishing articles/books; job market; and tenure review. Weekly readings, writing assignments, discussion, and peer review develop skills necessary for success as graduate students and future faculty.", + "name": "HIGR 208", + "prereqs": [], + "title": "Graduate Professional Development (4)" + }, + "HIGR 209": { + "dept": "HIGR", + "description": "An introductory graduate course for students in all field groups. The seminar introduces students to useful skills, methods, and techniques for teaching history. May be taken for credit two times. ", + "name": "HIGR 209", + "prereqs": [], + "title": "Historical Pedagogy (4)" + }, + "HIGR 210": { + "dept": "HIGR", + "description": "Scholarship on Modern Chinese History (4)", + "name": "HIGR 210", + "prereqs": [], + "title": "Historical" + }, + "HIGR 211": { + "dept": "HIGR", + "description": "Scholarship on Modern Japanese History (4)", + "name": "HIGR 211", + "prereqs": [], + "title": "Historical" + }, + "HIGR 212": { + "dept": "HIGR", + "description": "Scholarship on Modern East Asian History (4)", + "name": "HIGR 212", + "prereqs": [], + "title": "Historical" + }, + "HIGR 214": { + "dept": "HIGR", + "description": "This course will introduce students to the monographic literature and the main historiographic controversies of modern Korean history.", + "name": "HIGR 214", + "prereqs": [], + "title": "Historical Scholarship on Modern Korean History (4)" + }, + "HIGR 217A": { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Foundations\u2014China", + "name": "HIGR 217A", + "prereqs": [], + "title": "" + }, + "HIGR 217B": { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Han Dynasty", + "name": "HIGR 217B", + "prereqs": [], + "title": "" + }, + "HIGR 217C": { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Late Imperial Chinese", + "name": "HIGR 217C", + "prereqs": [], + "title": "" + }, + "HIGR 218A": { + "dept": "HIGR", + "description": "Graduate Seminar in Premodern Chinese History (4)", + "name": "HIGR 218A", + "prereqs": [], + "title": "" + }, + "HIGR 218B": { + "dept": "HIGR", + "description": "Graduate Seminar in Premodern Chinese History (4)", + "name": "HIGR 218B", + "prereqs": [], + "title": "" + }, + "HIGR 219A": { + "dept": "HIGR", + "description": "A two-quarter research seminar in Korean history. A paper, based on original research, will be due in HIGR 219B. Seminar topics will vary.", + "name": "HIGR 219A", + "prereqs": [], + "title": "Research Seminar in Modern Korean History (4)" + }, + "HIGR 219B": { + "dept": "HIGR", + "description": "A two-quarter research seminar in Korean history. Seminar topics will vary.", + "name": "HIGR 219B", + "prereqs": [], + "title": "Research Seminar in Modern Korean History (4)" + }, + "HIGR 220": { + "dept": "HIGR", + "description": "Scholarship on European History, 1500\u20131715 (4)", + "name": "HIGR 220", + "prereqs": [], + "title": "Historical" + }, + "HIGR 221": { + "dept": "HIGR", + "description": "Scholarship on European History, 1715\u20131850 (4)", + "name": "HIGR 221", + "prereqs": [], + "title": "Historical" + }, + "HIGR 222": { + "dept": "HIGR", + "description": "Scholarship on European History, since 1850 (4)", + "name": "HIGR 222", + "prereqs": [], + "title": "Historical" + }, + "HIGR 223A": { + "dept": "HIGR", + "description": "Research seminar in medieval history with selected topics in medieval history.", + "name": "HIGR 223A", + "prereqs": [], + "title": "Research Seminar in Medieval History (4)" + }, + "HIGR 223B": { + "dept": "HIGR", + "description": "Research seminar in medieval history with selected topics in medieval history.", + "name": "HIGR 223B", + "prereqs": [], + "title": "Research Seminar in Medieval History (4)" + }, + "HIGR 224": { + "dept": "HIGR", + "description": "An introduction to the historiography and major debates in modern German history from the Wilhelmine period to the present. Readings and discussion focus on the critical evaluation of sources, methodologies, and shifting interpretations of Germany\u2019s volatile transition to modernity.", + "name": "HIGR 224", + "prereqs": [], + "title": "Readings in Twentieth-Century German History (4)" + }, + "HIGR 225": { + "dept": "HIGR", + "description": "Students will read major works on revolutionary Russian and Soviet history. Attention will be paid to both classic and revisionist works.", + "name": "HIGR 225", + "prereqs": [], + "title": "Readings in Modern Russian History (4)" + }, + "HIGR 226": { + "dept": "HIGR", + "description": "An introduction to the historiography and major debates in modern Spanish history, nineteenth and twentieth centuries. Readings and discussion of both English and Spanish language scholarship will explore different aspects of Spain\u2019s political, economic, social, and cultural transformation in the modern period.", + "name": "HIGR 226", + "prereqs": [], + "title": "Readings in Modern Spanish History (4)" + }, + "HIGR 227A-B": { + "dept": "HIGR", + "description": "Readings and critical analysis of selected topics and important works in the history of Spain. May be repeated as content changes. Proficiency in Spanish required to repeat course, but not for first time taken. An IP grade will be awarded at the end of the first quarter. Final grade will not be given until the end of the second quarter.", + "name": "HIGR 227A-B", + "prereqs": [], + "title": "Seminar in Spanish History (4-4)" + }, + "HIGR 228": { + "dept": "HIGR", + "description": "Critical evaluation of selected topics on Greece and the Balkans during the late Ottoman period (1768\u20131923). Attention will be paid to both classic and revisionist works. May be taken for credit three times.", + "name": "HIGR 228", + "prereqs": [], + "title": "Historical Scholarship on Greece and the Balkans, 1768\u20131923 (4)" + }, + "HIGR 229": { + "dept": "HIGR", + "description": "Critical evaluation of selected topics on Greece and the Balkans during the twentieth century. Attention will be paid to both classic and revisionist works. May be taken for credit three times.", + "name": "HIGR 229", + "prereqs": [], + "title": "Historical Scholarship on Greece and the Balkans, 1923\u20132000 (4)" + }, + "HIGR 234": { + "dept": "HIGR", + "description": "This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the \u201cfoundational\u201d culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207.", + "name": "HIGR 234", + "prereqs": [], + "title": "Eastern Mediterranean Archaeology: New Perspectives (4)" + }, + "HIGR 237": { + "dept": "HIGR", + "description": "Cross-listed with SIO 201. Intensive study of specific problems in the history of the ocean sciences, and of related earth and atmospheric sciences, in the modern period. Topics vary from year to year, and students may therefore repeat the course for credit.", + "name": "HIGR 237", + "prereqs": [], + "title": "Topics in the History of Ocean Sciences (4)" + }, + "HIGR 238": { + "dept": "HIGR", + "description": "Cross-listed as Communication 225A, Philosophy 209A, and Sociology 255A. Study and discussion of classic work in history of science, sociology of science and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ", + "name": "HIGR 238", + "prereqs": [], + "title": "Introduction to Science Studies (4)" + }, + "HIGR 239": { + "dept": "HIGR", + "description": "Cross-listed as Communication 225B, Philosophy 209B, and Sociology 255B. Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ", + "name": "HIGR 239", + "prereqs": [], + "title": "Seminar in Science Studies (4)" + }, + "HIGR 240": { + "dept": "HIGR", + "description": "Cross-listed as Communication 225C, Philosophy 209C, and Sociology 255C. A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ", + "name": "HIGR 240", + "prereqs": [], + "title": "Colloquium in Science Studies (4)" + }, + "HIGR 241": { + "dept": "HIGR", + "description": "Approaches to Science Studies (4)", + "name": "HIGR 241", + "prereqs": [], + "title": "Advanced" + }, + "HIGR 244": { + "dept": "HIGR", + "description": "Study and discussion of classic and recent scholarship on sound production and cultures of listening. Emphasizes historical literature but also includes works in literary studies, art history, music, and other fields. ", + "name": "HIGR 244", + "prereqs": [], + "title": "Introduction to Sound Studies (4)" + }, + "HIGR 245": { + "dept": "HIGR", + "description": "This seminar traces the history of revolution and repression in modern Latin America and the Caribbean. We will spend one to two weeks on each of the following revolutions: Haiti (1791), Mexico (1910), Cuba (1959), and Central America (1970s\u201380s).", + "name": "HIGR 245", + "prereqs": [], + "title": "Revolution, Empire, and State Violence in Latin America and the Caribbean (4)" + }, + "HIGR 249": { + "dept": "HIGR", + "description": "One or two topics in colonial history will be analyzed in depth; reading knowledge of Spanish is expected.", + "name": "HIGR 249", + "prereqs": [], + "title": "Topics in Colonial Latin America (4)" + }, + "HIGR 252": { + "dept": "HIGR", + "description": "Social Evolution, and Intellectuals in the Andes: Mari\u00e1tegui, Haya de la", + "name": "HIGR 252", + "prereqs": [], + "title": "History," + }, + "HIGR 254": { + "dept": "HIGR", + "description": "Introduction to the bibliography, methodology, and ancillary disciplines for the study of ancient history together with readings and discussion on selected topics within the field. May be taken for credit three times.", + "name": "HIGR 254", + "prereqs": [], + "title": "Historical Scholarship in Ancient History (4)" + }, + "HIGR 255": { + "dept": "HIGR", + "description": "An in-depth examination of selected topics in ancient Greek history. May be taken for credit three times.", + "name": "HIGR 255", + "prereqs": [], + "title": "Readings in Ancient Greek History (4)" + }, + "HIGR 256": { + "dept": "HIGR", + "description": "An in-depth examination of original readings written in the Roman period. Topics will vary. May be taken for credit three times.", + "name": "HIGR 256", + "prereqs": [], + "title": "Readings in Ancient Roman History (4)" + }, + "HIGR 257A": { + "dept": "HIGR", + "description": "Readings in the historiographical literature on the late Ottoman Empire (eighteenth to twentieth century). ", + "name": "HIGR 257A", + "prereqs": [], + "title": "Historical Scholarship on Modern Middle East, Eighteenth to Twentieth Century (4)" + }, + "HIGR 257B": { + "dept": "HIGR", + "description": "Historical Scholarship on Modern Middle East, Colonial Period (4)", + "name": "HIGR 257B", + "prereqs": [], + "title": "" + }, + "HIGR 257C": { + "dept": "HIGR", + "description": "Readings in the historiographical literature on the Middle East in the national/postcolonial eras. ", + "name": "HIGR 257C", + "prereqs": [], + "title": "Historical Scholarship on Modern Middle East, Postcolonial Eras (4)" + }, + "HIGR 258": { + "dept": "HIGR", + "description": "Introduction to the bibliography, methodology, and ancillary disciplines for the study of medieval history together with readings and discussion on selected topics within the field. May be taken for credit three times.", + "name": "HIGR 258", + "prereqs": [], + "title": "Historical Scholarship in Medieval History (4)" + }, + "HIGR 259": { + "dept": "HIGR", + "description": "Readings in modern scholarship concerning ancient Greek or Roman history. Topics will vary. May be taken for credit six times.", + "name": "HIGR 259", + "prereqs": [], + "title": "Special Topics in Ancient History (4)" + }, + "HIGR 260A": { + "dept": "HIGR", + "description": "Research seminar in ancient history. Selected topics in ancient Greek and Roman history.", + "name": "HIGR 260A", + "prereqs": [], + "title": "Research Seminar in Ancient History (4)" + }, + "HIGR 260B": { + "dept": "HIGR", + "description": "Research seminar in ancient history. Selected topics in ancient Greek and Roman history. This is the second course in the IP sequence, which will be devoted to the presentation, discussion, and evaluation of the work in progress.", + "name": "HIGR 260B", + "prereqs": [], + "title": "Research Seminar in Ancient History (4)" + }, + "HIGR 264": { + "dept": "HIGR", + "description": "An in-depth examination of selected topics in the history of Jewish people and Jewish civilizations in pre-Islamic times.", + "name": "HIGR 264", + "prereqs": [], + "title": "Topics in Pre-Islamic Jewish History (4)" + }, + "HIGR 275A": { + "dept": "HIGR", + "description": "Research Seminar in Middle Eastern History (4)", + "name": "HIGR 275A", + "prereqs": [], + "title": "" + }, + "HIGR 275B": { + "dept": "HIGR", + "description": "Research Seminar in Middle Eastern History (4)", + "name": "HIGR 275B", + "prereqs": [], + "title": "" + }, + "HIGR 280": { + "dept": "HIGR", + "description": "Introduction to methods, theories, and critiques of writing early modern global/world history. It seeks to familiarize students with the main historiographical debates and defining narratives about the first phase of intensifying global connectivity that commenced in the fifteenth century. May be taken for credit three times. ", + "name": "HIGR 280", + "prereqs": [], + "title": "Global History: Approaches to the Early Modern Era (4)" + }, + "HIGR 281": { + "dept": "HIGR", + "description": "Introduction to methods, theories, and critiques of writing global/world history in the modern era. Will survey how scholars of diverse disciplinary backgrounds have analyzed global change since the nineteenth century. It assesses the methodological and theoretical contributions of several analysts, the concepts through which they have explained and typified modes of interaction across global space, and the problems posed by studying connectivity. May be taken for credit three times. ", + "name": "HIGR 281", + "prereqs": [], + "title": "Global History: Approaches to the Modern Era (4)" + }, + "HIGR 295": { + "dept": "HIGR", + "description": "For students advanced to candidacy to the doctorate. Discussion, criticism, and revision of drafts of chapters of theses and of work to be submitted for publication.", + "name": "HIGR 295", + "prereqs": [], + "title": "Thesis Seminar (4)" + }, + "HIGR 298": { + "dept": "HIGR", + "description": "Guided and supervised reading in the literature of the several fields of history. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course. (S/U grades permitted.)", + "name": "HIGR 298", + "prereqs": [], + "title": "Directed Reading (1\u201312)" + }, + "HIGR 299": { + "dept": "HIGR", + "description": "Independent work by graduate students engaged in research and writing of doctoral theses. This course may be repeated for an indefinite number of times due to the independent nature of thesis writing and research. (S/U grades only.)", + "name": "HIGR 299", + "prereqs": [], + "title": "PhD Thesis Direction (1\u201312)" + }, + "HIGR 500": { + "dept": "HIGR", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. (S/U grades only.)", + "name": "HIGR 500", + "prereqs": [], + "title": "Apprentice Teaching in History (1\u20134)" + }, + "HIGR 502": { + "dept": "HIGR", + "description": "Consideration and development of pedagogical methods appropriate to undergraduate teaching in the interdisciplinary Sixth College core sequence: Culture, Art, and Technology. Supervised by the core program faculty, director, and associate directors for the Writing and Thematic Programs.", + "name": "HIGR 502", + "prereqs": [], + "title": "Apprentice Teaching in Culture, Art, and Technology (CAT) (4)" + }, + "HIGR 505": { + "dept": "HIGR", + "description": "Teaching assistant for lower-level Hebrew courses, Judaic Studies 1, 2, 3. Must teach four or six sections and grade assignments.", + "name": "HIGR 505", + "prereqs": [], + "title": "Apprentice Teaching in Judaic Studies (4)" + }, + "HILA": { + "dept": "HILA", + "description": "162/262. Special Topics in Latin American History (4)", + "name": "HILA", + "prereqs": [], + "title": "" + }, + "HILA 100": { + "dept": "HILA", + "description": "Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptations, late colonial growth and the onset of independence. Students may not receive credit for both HILA 100 and HILA 100D.\u00a0+", + "name": "HILA 100", + "prereqs": [], + "title": "Conquest and Empire: The Americas (4)" + }, + "HILA 100D": { + "dept": "HILA", + "description": "Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptation, late colonial growth, and the onset of independence.", + "name": "HILA 100D", + "prereqs": [], + "title": "Latin America: Colonial Transformation (4)" + }, + "HILA 102": { + "dept": "HILA", + "description": "This course surveys the history of the region by focusing on two interrelated phenomena\u2014the absence of democracy in most nations and the region\u2019s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.", + "name": "HILA 102", + "prereqs": [], + "title": "Latin America in the Twentieth Century (4)" + }, + "HILA 102D": { + "dept": "HILA", + "description": "This course surveys the history of the region by focusing on two interrelated phenomena\u2014the absence of democracy in most nations and the region\u2019s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.", + "name": "HILA 102D", + "prereqs": [], + "title": "Latin America in the Twentieth Century (4)" + }, + "HILA 103": { + "dept": "HILA", + "description": "A political, economic, and social examination of the causes and consequences of the Mexican, Cuban, and Nicaraguan revolutions. Also examine guerrilla movements that failed to gain power in their respective countries, namely the Shining Path in Peru, FARC in Colombia, and the Zapatistas in Mexico.", + "name": "HILA 103", + "prereqs": [], + "title": "Revolution in Modern Latin America (4)" + }, + "HILA 106": { + "dept": "HILA", + "description": "Reviews the historical processes Latin American countries underwent after political independence from Spain/Portugal in the nineteenth century. Each country built its future, but there also were continuities. Assessing changes and continuities and their present-day consequences will be our goal.", + "name": "HILA 106", + "prereqs": [], + "title": "Changes and Continuities in Latin American History (4)" + }, + "HILA 110": { + "dept": "HILA", + "description": "Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.", + "name": "HILA 110", + "prereqs": [], + "title": "Lord and Peasant in Latin America (4)" + }, + "HILA 113D": { + "dept": "HILA", + "description": "Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.", + "name": "HILA 113D", + "prereqs": [], + "title": "Lord and Peasant in Latin America (4)" + }, + "HILA 114": { + "dept": "HILA", + "description": "How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.", + "name": "HILA 114", + "prereqs": [], + "title": "Dictatorships in Latin America (4)" + }, + "HILA 114D": { + "dept": "HILA", + "description": "How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.", + "name": "HILA 114D", + "prereqs": [], + "title": "Dictatorship in Latin America (4)" + }, + "HILA 115": { + "dept": "HILA", + "description": "A survey of the development of urban forms of Latin America and of the role that cities played in the region as administrative and economic centers. After a brief survey of pre-Columbian centers, the lectures will trace the development of cities as outposts of the Iberian empires and as \u201ccity-states\u201d that formed the nuclei of new nations after 1810. The course concentrates primarily on the cities of South America, but some references will be made to Mexico City. It ends with a discussion of modern social ills and Third World urbanization. Lima, Santiago de Chile, Buenos Aires, Rio de Janeiro, and Sao Paulo are its principal examples.", + "name": "HILA 115", + "prereqs": [], + "title": "The Latin American City, a History (4)" + }, + "HILA 117": { + "dept": "HILA", + "description": "The development of family structures and relations among different ethnic groups. State and economy define and are defined by family relations. Thus this family approach also provides an understanding to broader socioeconomic processes and cultural issues.", + "name": "HILA 117", + "prereqs": [], + "title": "Indians, Blacks, and Whites: Family Relations in Latin America (4)" + }, + "HILA 118": { + "dept": "HILA", + "description": "This course will focus on several instances of US aggression in Latin America since 1898, covering military invasions, covert actions, and economic forms of coercion. Specific case studies will include events in Mexico in 1914, Cuba in 1933 and 1959\u20131962, Guatemala in 1954, and Chile in 1973.", + "name": "HILA 118", + "prereqs": [], + "title": "Subverting Sovereignty: US Aggression in Latin America, 1898\u2013Present (4)" + }, + "HILA 120": { + "dept": "HILA", + "description": "A survey from the colonial period to the present, with an emphasis on the nineteenth and twentieth centuries. Among the topics covered: the expansion of the frontier, the creation of a cosmopolitan, predominately European culture, and the failure of industrialization to provide an economic basis for democracy.", + "name": "HILA 120", + "prereqs": [], + "title": "History of Argentina (4)" + }, + "HILA 121A": { + "dept": "HILA", + "description": "This course covers many of the most transformative and fascinating social, political, and racial phenomena in Brazilian society through 1889, including indigenous life, Portuguese colonization, slavery and abolition, royal exile, independence and Empire, the birth of the Republic, war, social unrest, and ideals of modernization. +", + "name": "HILA 121A", + "prereqs": [], + "title": "History of Brazil through 1889 (4)" + }, + "HILA 121B": { + "dept": "HILA", + "description": "This course examines factors that shed light on Brazil\u2019s label as a rising nation. In part, we will cover Brazil\u2019s two dictatorships, labor struggles, racial issues, immigration from Asia and Europe, environmental concerns, and emergence as economic and political powerhouse.", + "name": "HILA 121B", + "prereqs": [], + "title": "History of Brazil, 1889 to Present (4)" + }, + "HILA 122": { + "dept": "HILA", + "description": "A lecture-discussion course on the historical roots of revolutionary Cuba, with special emphasis on the impact of the United States on the island\u2019s development and society.", + "name": "HILA 122", + "prereqs": [], + "title": "Cuba: From Colony to Socialist Republic (4)" + }, + "HILA 123": { + "dept": "HILA", + "description": "The Incas called their realm Tahuantinsuyu (Land of the Four Quarters). But the Incas were only one of the many ethnic groups in the Andean region. Many different other groups became a part of the Tahuantinsuyu in the wake of Inca expansion. Over the past decade, new and fascinating information on these processes have been published, and allow for a rereading of Inca history between 900 and 1535. +", + "name": "HILA 123", + "prereqs": [], + "title": "The Incas and Their Ancestors (4)" + }, + "HILA 124": { + "dept": "HILA", + "description": "The course surveys Chile\u2019s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his or her own choosing and develop the topic for class presentation and a final paper. The course will cover politics, cultural changes, class struggles, Allende\u2019s revolutionary movement, and Pinochet\u2019s dictatorship to the present.", + "name": "HILA 124", + "prereqs": [], + "title": "The History of Chile 1880\u2013Present (4)" + }, + "HILA 124A": { + "dept": "HILA", + "description": "History of Women and Gender in Latin America (4)", + "name": "HILA 124A", + "prereqs": [], + "title": "" + }, + "HILA 126": { + "dept": "HILA", + "description": "Exploration of the relationships between socioeconomic and cultural development in Caribbean history; slavery and empire; nationalism and migration; vodun and Rastafarianism, and the literary arts.", + "name": "HILA 126", + "prereqs": [], + "title": "From Columbus to Castro: Caribbean Culture and Society (4)" + }, + "HILA 131": { + "dept": "HILA", + "description": "A century of Mexican history, 1821\u20131924: the", + "name": "HILA 131", + "prereqs": [], + "title": "A History of Mexico (4)" + }, + "HILA 132": { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS.", + "name": "HILA 132", + "prereqs": [], + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + "HILA 132D": { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation.", + "name": "HILA 132D", + "prereqs": [], + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + "HILA 132GS": { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "name": "HILA 132GS", + "prereqs": [], + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + "HILA 133S": { + "dept": "HILA", + "description": "This course surveys guerrilla movements in Latin America from the Cuban Revolution through the Zapatista movement in Mexico, comparing and contrasting the origins, trajectories, and legacies of armed insurgencies, and focusing on the politics of defining \u201cinsurgents,\u201d \u201crevolutionaries,\u201d and \u201cterrorists.\u201d", + "name": "HILA 133S", + "prereqs": [], + "title": "Guerrillas and Revolution in Latin America (4)" + }, + "HILA 134": { + "dept": "HILA", + "description": "This course surveys the history of the native peoples of Mexico and the Andes from Iberian contact to the late colonial period (1492\u20131800). It focuses on changes and continuities in postconquest society, exploring topics such as gender, sexuality, and resistance.", + "name": "HILA 134", + "prereqs": [], + "title": "Indians of Colonial Latin America (4)" + }, + "HILA 144": { + "dept": "HILA", + "description": "Selected topics in Latin American history. Course may be taken for credit up to three times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in HILA 144 will have the duplicate credit removed from their academic record.", + "name": "HILA 144", + "prereqs": [], + "title": "Topics in Latin American History (4)" + }, + "HILA 145": { + "dept": "HILA", + "description": "Recordings of Amazonia\u2019s past before Iberian adventurers searched for El Dorado are scarce. Environmental significance and the continued existence of large fluvial societies, read through the lenses of chroniclers, scientists, missionaries, and colonizers, allows a reconstruction of humankind\u2019s relationship to nature.", + "name": "HILA 145", + "prereqs": [], + "title": "People and Nature in Amazonia: An Unwritten History (4)" + }, + "HILA 161/261": { + "dept": "HILA", + "description": "A broad historical overview of Hispanic American women\u2019s history of focusing on the issues of gender, sexuality, and the family as they relate to women, as well as the historiographical issues in Latin American and Chicana women\u2019s history.", + "name": "HILA 161/261", + "prereqs": [], + "title": "History of Women in Latin America (4)" + }, + "HILA 163/263": { + "dept": "HILA", + "description": "The course surveys Chile\u2019s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his/her own choosing and develop the topic for class presentation and a final paper. Graduate students are expected to submit a more substantial piece of work. ", + "name": "HILA 163/263", + "prereqs": [], + "title": "The History of Chile 1880\u2013Present (4)" + }, + "HILA 164/264": { + "dept": "HILA", + "description": "Inside or outside the household, women have always worked. Where do we find Latin American women? How has the labor market changed? How was and is women\u2019s work perceived? What were the consequences of changing work patterns on family life? ", + "name": "HILA 164/264", + "prereqs": [], + "title": "Women\u2019s Work and Family Life in Latin America (4)" + }, + "HILA 167/267": { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the colonial period from Spanish and Portuguese conquests to the Wars of Independence. Requirements will vary for undergraduate, MS, and PhD students. Graduate students are required to submit an additional research paper. ", + "name": "HILA 167/267", + "prereqs": [], + "title": "Scholarship on Latin American History in the Colonial Period (4)" + }, + "HILA 168/268": { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the nineteenth century: world economy, nation-state building, agrarian processes, incipient industrialization, political and cultural thought, and social structure. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ", + "name": "HILA 168/268", + "prereqs": [], + "title": "Scholarship on Latin American History in the Nineteenth Century (4)" + }, + "HILA 169/269": { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the twentieth century: agrarian reforms, unionization, industrialization by import substitution, the political left, social development, and international relations. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ", + "name": "HILA 169/269", + "prereqs": [], + "title": "Scholarship on Latin American History in the Twentieth Century (4)" + }, + "HILA 171/271": { + "dept": "HILA", + "description": "Topics may vary from year to year. May be repeated for credit. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.", + "name": "HILA 171/271", + "prereqs": [], + "title": "Topics in Latin American History Since 1910 (4)" + }, + "HILA 198": { + "dept": "HILA", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "name": "HILA 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "HILA 199": { + "dept": "HILA", + "description": "Study in Latin American History (4)", + "name": "HILA 199", + "prereqs": [], + "title": "Independent" + }, + "HILD 10": { + "dept": "HILD", + "description": "The evolution of East Asian civilization from the first writing through classical Hei\u2019an Japan and late imperial Song China. Primary and secondary readings on basic ideas, institutions and practices of the Confucian, Daoist, and Buddhist paths and of the state and family.", + "name": "HILD 10", + "prereqs": [], + "title": "East Asia: The Great Tradition (4)" + }, + "HILD 11": { + "dept": "HILD", + "description": "From the Mongol conquests to China\u2019s last dynasty and Japan\u2019s annexation of Korea, this course examines political, institutional, and cultural ruptures and continuities as the East Asian countries responded to the challenges of Western imperialism with defense, reform, conservative reaction and creative imitation.", + "name": "HILD 11", + "prereqs": [], + "title": "East Asia and the West, 1279\u20131911 (4)" + }, + "HILD 12": { + "dept": "HILD", + "description": "Examines the emergence of a regionally dominant Japan before and after World War II; the process of revolution and state-building in China during the Nationalist and Communist eras; and Korea\u2019s encounter with colonialism, nationalism, war, revolution and industrialization.", + "name": "HILD 12", + "prereqs": [], + "title": "Twentieth-Century East Asia (4)" + }, + "HILD 14": { + "dept": "HILD", + "description": "Students watch films on Latin America and compare them to historical research on similar episodes or issues. Films will vary each year but will focus on the social and psychological consequences of colonialism, forced labor, religious beliefs, and \u201cModernization.\u201d", + "name": "HILD 14", + "prereqs": [], + "title": "Film and History in Latin America (4)" + }, + "HILD 2A-B-C": { + "dept": "HILD", + "description": "A year-long lower-division course that will provide students with a background in United States history from colonial times to the present, concentrating on social, economic, and political developments. (Satisfies Muir College humanities requirement and American History and Institutions requirement.)", + "name": "HILD 2A-B-C", + "prereqs": [], + "title": "United States (4-4-4)" + }, + "HILD 30": { + "dept": "HILD", + "description": "Explores the history of public health, from the plague hospitals of Renaissance Italy to the current and future prospects for global health initiatives, emphasizing the complex biological, cultural, and social dimensions of health, sickness, and medicine across time and space.", + "name": "HILD 30", + "prereqs": [], + "title": "History of Public Health (4)" + }, + "HILD 50": { + "dept": "HILD", + "description": "A survey of contemporary issues concerning law and society, with emphasis on historical analysis and context. Satisfies the lower-division requirement for the law and society minor.", + "name": "HILD 50", + "prereqs": [], + "title": "Introduction to Law and Society (4)" + }, + "HILD 7A-B-C": { + "dept": "HILD", + "description": "Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration.", + "name": "HILD 7A-B-C", + "prereqs": [], + "title": "Race and Ethnicity in the United States (4-4-4)" + }, + "HILD 7GS": { + "dept": "HILD", + "description": "Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, and rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration. Program or materials fees may apply. May be taken for credit up to three times. Students must apply and be accepted into the Global Seminars Program.", + "name": "HILD 7GS", + "prereqs": [], + "title": "Race and Ethnicity in the Global World (4)" + }, + "HINE": { + "dept": "HINE", + "description": "186/286. Special Topics in Middle Eastern History (4)", + "name": "HINE", + "prereqs": [], + "title": "" + }, + "HINE 100": { + "dept": "HINE", + "description": "The history and literature of ancient Israel c. 1300 to 300 BCE. Reading from the Bible, historical and archaeological surveys, and studies of authorship.\u00a0+", + "name": "HINE 100", + "prereqs": [], + "title": "The Hebrew Bible and History (4)" + }, + "HINE 101": { + "dept": "HINE", + "description": "Based on biblical and nonbiblical sources, a reconstruction of Israelite institutions, beliefs, and practices and their evolution over time.\u00a0+", + "name": "HINE 101", + "prereqs": [], + "title": "The Religion of Ancient Israel (4)" + }, + "HINE 102": { + "dept": "HINE", + "description": "Jews in Their Homeland in Antiquity (4)", + "name": "HINE 102", + "prereqs": [], + "title": "The" + }, + "HINE 103": { + "dept": "HINE", + "description": "The Jews outside their homeland and in pre-Islamic times, concentrating on the Greco-Roman West and the Parthian-Sasanian East. Topics include assimilation and survival; anti-Semitism and missionizing; patterns of organization and autonomy; cultural and religious developments.\u00a0+", + "name": "HINE 103", + "prereqs": [], + "title": "The Jewish Diaspora in Antiquity (4)" + }, + "HINE 104": { + "dept": "HINE", + "description": "Cross-listed with JUDA 136. This course examines biblical attitudes toward hetero- and homosexuality, rape, incest, bestiality, prostitution, marriage, and adultery in a variety of texts drawn from the Old Testament.", + "name": "HINE 104", + "prereqs": [], + "title": "Sex in the Bible (4)" + }, + "HINE 108": { + "dept": "HINE", + "description": "The peoples, politics, and cultures of Southwest Asia and Egypt from the sixth century BCE to the seventh century CE. The Achemenid Empire, the Ptolemaic and Seleucid kingdoms, the Roman Orient, the Parthian and Sasanian states.\u00a0+", + "name": "HINE 108", + "prereqs": [], + "title": "The Middle East before Islam (4)" + }, + "HINE 109": { + "dept": "HINE", + "description": "A survey of the history of the Middle East, in particular, the Ottoman Empire, from 1200\u20131800. The course examines the emergence of a new political and religious order following the Mongol conquests and its long-lasting effect on the region. +", + "name": "HINE 109", + "prereqs": [], + "title": "History of the Middle East (1200\u20131800): The Ottoman Empire (4)" + }, + "HINE 110": { + "dept": "HINE", + "description": "Explore the ancient sources for the life of Jesus. Students will learn about various modern approaches to reconstructing the historical Jesus and will examine the difficulties inherent in such a task.", + "name": "HINE 110", + "prereqs": [], + "title": "Jesus, the Gospels, and History (4)" + }, + "HINE 112A": { + "dept": "HINE", + "description": "A close reading of select prose narratives from the Hebrew Bible/Old Testament.\u00a0+", + "name": "HINE 112A", + "prereqs": [], + "title": "Great Stories from the Hebrew Bible (4)" + }, + "HINE 112AL": { + "dept": "HINE", + "description": "Great Stories from the Hebrew Bible/Foreign Language (1)", + "name": "HINE 112AL", + "prereqs": [], + "title": "" + }, + "HINE 112B": { + "dept": "HINE", + "description": "A close reading of select poetic passages from the Hebrew Bible/Old Testament.\u00a0+", + "name": "HINE 112B", + "prereqs": [], + "title": "Great Poems from the Hebrew Bible (4)" + }, + "HINE 112BL": { + "dept": "HINE", + "description": "Great Poems from the Hebrew Bible/Foreign Language (1)", + "name": "HINE 112BL", + "prereqs": [], + "title": "" + }, + "HINE 113": { + "dept": "HINE", + "description": "Course will analyze and compare major myths", + "name": "HINE 113", + "prereqs": [], + "title": "Ancient Near East Mythology (4)" + }, + "HINE 114": { + "dept": "HINE", + "description": "A survey of the Middle East from the rise of Islam to the region\u2019s economic, political, and cultural integration into the West (mid-nineteenth century). Emphasis on socioeconomic and political change in the early Arab empires and the Ottoman state.\u00a0+", + "name": "HINE 114", + "prereqs": [], + "title": "History of the Islamic Middle East (4)" + }, + "HINE 116": { + "dept": "HINE", + "description": "Examines the contacts of the late Ottoman", + "name": "HINE 116", + "prereqs": [], + "title": "The Middle East in the Age of European Empires (1798\u20131914) (4)" + }, + "HINE 118": { + "dept": "HINE", + "description": "Middle East in the Twentieth Century (4)", + "name": "HINE 118", + "prereqs": [], + "title": "The" + }, + "HINE 119": { + "dept": "HINE", + "description": "Mid-East Policy Post-WWII (4)", + "name": "HINE 119", + "prereqs": [], + "title": "US" + }, + "HINE 120": { + "dept": "HINE", + "description": "An examination of the conflicts, changes, and continuities in the Middle East since 2000. The course includes inspection of the US role in Iraq and the region generally.", + "name": "HINE 120", + "prereqs": [], + "title": "The Middle East in the New Century (4)" + }, + "HINE 126": { + "dept": "HINE", + "description": "Revolution in Historical Perspective (4)", + "name": "HINE 126", + "prereqs": [], + "title": "Iranian" + }, + "HINE 127": { + "dept": "HINE", + "description": "Eastern problems on the example of Turkey and with special attention to collective identities, state-society dynamics, foreign and regional policies, and varieties of modernity.", + "name": "HINE 127", + "prereqs": [], + "title": "History of Modern Turkey (4)" + }, + "HINE 130": { + "dept": "HINE", + "description": "Cross-listed with JUDA 130. This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. Students may not receive credit for both HINE 130 and JUDA 130. (Formerly known as JUDA 100A.) ", + "name": "HINE 130", + "prereqs": [], + "title": "Introduction to the Old Testament: The Historical Books (4)" + }, + "HINE 131": { + "dept": "HINE", + "description": "Cross-listed with JUDA 131. This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Students may not receive credit for both HINE 131 and JUDA 131. (Formerly known as JUDA 100B.) ", + "name": "HINE 131", + "prereqs": [], + "title": "Introduction to the Old Testament: The Poetic Books (4)" + }, + "HINE 135GS": { + "dept": "HINE", + "description": "This course introduces the students to contemporary Israeli society. Among the topics explored: Israeli-Arab conflict; relations between European, Arab, Russian, and Ethiopian Jews; between secular and religious Jews; between Jews and Arabs; and between Israel and World Jewry.", + "name": "HINE 135GS", + "prereqs": [], + "title": "Introduction to Contemporary Israeli Society and Culture (4)" + }, + "HINE 136GS": { + "dept": "HINE", + "description": "This course explores the evolution of Zionism from its late nineteenth-century origins to the present. Among the topics explored: political, cultural, spiritual and social varieties of Zionism; and the contending narratives about its nature, meaning, and accomplishments.", + "name": "HINE 136GS", + "prereqs": [], + "title": "Zionism and Post Zionism (4)" + }, + "HINE 144": { + "dept": "HINE", + "description": "Selected topics in the history of the Middle East. May be taken for credit three times.", + "name": "HINE 144", + "prereqs": [], + "title": "Topics in Middle Eastern History (4)" + }, + "HINE 145": { + "dept": "HINE", + "description": "A survey of the history of science in the Middle East from 600 to the present day. The course examines the relationship between science, learning, and religion in Islamic societies and its connections to other regions of the globe. +", + "name": "HINE 145", + "prereqs": [], + "title": "Islam and Science: The History of Science in the Middle East (600\u20131950) (4)" + }, + "HINE 160/260": { + "dept": "HINE", + "description": "The study of a single book, period, or issue on the Bible, in the context of the ancient Near Eastern world. Requirements will vary for undergraduate, master\u2019s, and doctoral students. Graduate students may be required to submit a more substantial piece of work. ", + "name": "HINE 160/260", + "prereqs": [], + "title": "Special Topics in the Bible and Ancient Near East (4)" + }, + "HINE 165/265": { + "dept": "HINE", + "description": "A colloquium focusing on the problems and patterns in the emergence of modern Middle Eastern states since 1920. ", + "name": "HINE 165/265", + "prereqs": [], + "title": "The Colonial Mandates in the Middle East (4)" + }, + "HINE 166/266": { + "dept": "HINE", + "description": "Growth of nationalism in relation to imperialism,", + "name": "HINE 166/266", + "prereqs": [], + "title": "Nationalism in the Middle East (4)" + }, + "HINE 170/270": { + "dept": "HINE", + "description": "This course studies a period or theme in Jewish history. Topics will vary from year to year. ", + "name": "HINE 170/270", + "prereqs": [], + "title": "Special Topics in Jewish History (4)" + }, + "HINE 198": { + "dept": "HINE", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "name": "HINE 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "HINE 199": { + "dept": "HINE", + "description": "Study in Near Eastern History (4)", + "name": "HINE 199", + "prereqs": [], + "title": "Independent" + }, + "HISC": { + "dept": "HISC", + "description": "175/275. The Historical Sciences in the Nineteenth Century (4)", + "name": "HISC", + "prereqs": [], + "title": "" + }, + "HISC 102": { + "dept": "HISC", + "description": "Technology as an agent of change. How have humans harnessed the power of nature? What factors have contributed to successes and failures? How has technology changed human life? How should we evaluate the quality of these changes?", + "name": "HISC 102", + "prereqs": [], + "title": "Technology in World History (4)" + }, + "HISC 103": { + "dept": "HISC", + "description": "and Science in Historical Perspective (4)", + "name": "HISC 103", + "prereqs": [], + "title": "Gender" + }, + "HISC 104": { + "dept": "HISC", + "description": "Historical aspects of the popularization of science. The changing relation between expert science and popular understanding. The reciprocal impact of scientific discoveries and theories, and popular conceptions of the natural world.", + "name": "HISC 104", + "prereqs": [], + "title": "History of Popular Science (4)" + }, + "HISC 105": { + "dept": "HISC", + "description": "History of human effects on the natural environment, with emphasis on understanding the roles of the physical and biological sciences in providing insights into environmental processes.", + "name": "HISC 105", + "prereqs": [], + "title": "History of Environmentalism (4)" + }, + "HISC 106": { + "dept": "HISC", + "description": "A cultural history of the formation of early modern science in the sixteenth and seventeenth centuries: the social forms of scientific life; the construction and meaning of the new cosmologies from Copernicus to Newton; the science of politics and the politics of science; the origins of experimental practice; how Sir Isaac Newton restored law and order to the West.\u00a0+", + "name": "HISC 106", + "prereqs": [], + "title": "The Scientific Revolution (4)" + }, + "HISC 107": { + "dept": "HISC", + "description": "The development of the modern conception of the sciences, and of the modern social and institutional structure of scientific activity, chiefly in Europe, during the eighteenth and nineteenth centuries.", + "name": "HISC 107", + "prereqs": [], + "title": "The Emergence of Modern Science (4)" + }, + "HISC 108": { + "dept": "HISC", + "description": "The history of twentieth-century life sciences, with an emphasis on the way in which model organisms such as fruit flies, guinea pigs, bacteriophage, and zebra fish shaped the quest to unlock the secrets of heredity, evolution, and development.", + "name": "HISC 108", + "prereqs": [], + "title": "Life Sciences in the Twentieth Century (4)" + }, + "HISC 109": { + "dept": "HISC", + "description": "Explores the origins of the idea of the \u201ctropics\u201d and \u201ctropical disease\u201d as a legacy of European conquest and colonization, and introduces students to themes in the history of colonialism, tropical medicine, and global public health.", + "name": "HISC 109", + "prereqs": [], + "title": "Invention of Tropical Disease (4)" + }, + "HISC 110": { + "dept": "HISC", + "description": "There was no such thing as a single, unchanging relationship between science and religion, and this is a course about it. Topics include the \u201cConflict Thesis,\u201d natural theology, the Galileo Affair, Darwinism, the antievolution crusade, creationism, secularization, atheism, and psychoanalysis. +", + "name": "HISC 110", + "prereqs": [], + "title": "Historical Encounters of Science and Religion (4)" + }, + "HISC 111": { + "dept": "HISC", + "description": "Development of nuclear science and weapons\u20141930s to present\u2014including the discovery of radioactivity and fission, the Manhattan project, the bombings of Hiroshima and Nagasaki and end of WWII, the H-bomb, and legacies of nuclear proliferation, environmental damage, and radioactive waste.", + "name": "HISC 111", + "prereqs": [], + "title": "The Atomic Bomb and the Atomic Age (4)" + }, + "HISC 114": { + "dept": "HISC", + "description": "The Origin of Species by means of Natural Selection, and its scientific, intellectual, and political legacies. Topics include social Darwinism, eugenics, Nazi racial hygiene, population control, neo-Malthusianism in the modern environmental movement.", + "name": "HISC 114", + "prereqs": [], + "title": "The Darwinian Legacy (4)" + }, + "HISC 115": { + "dept": "HISC", + "description": "Explores the origin of clinical method, the hospital, internal surgery, and the medical laboratory, as well as the historical roots of debates over health-care reform, genetic determinism, and the medicalization of society.", + "name": "HISC 115", + "prereqs": [], + "title": "History of Modern Medicine (4)" + }, + "HISC 116": { + "dept": "HISC", + "description": "The story behind the postwar rise of bioethics\u2014medical", + "name": "HISC 116", + "prereqs": [], + "title": "History of Bioethics (4)" + }, + "HISC 117": { + "dept": "HISC", + "description": "A survey of the history of the neurosciences from the seventeenth century to the present, exploring the political, philosophical, cultural, aesthetic and ethical aspects of research into the workings of the human brain.", + "name": "HISC 117", + "prereqs": [], + "title": "History of the Neurosciences (4)" + }, + "HISC 118": { + "dept": "HISC", + "description": "Analyzes the history of sexology as a series of episodes in the science of human difference, from the European reception of the first translation of the Kama Sutra in 1883 to the search for the \u201cgay gene\u201d in the 1990s.", + "name": "HISC 118", + "prereqs": [], + "title": "History of Sexology (4)" + }, + "HISC 119": { + "dept": "HISC", + "description": "This course explores contemporary issues in biology, ethics, and society. We will start by examining early cases of biopolitics, like social Darwinism and eugenics, and proceed to more recent issues, such as genetic engineering, patenting life, and the pharmaceutical industry.", + "name": "HISC 119", + "prereqs": [], + "title": "Biology and Society (4)" + }, + "HISC 120A": { + "dept": "HISC", + "description": "The role of technology in American history through the Civil War. Indigenous and colonial development, transportation infrastructures, and industrialization are explored to understand the connections among technology, society, and culture.\u00a0+", + "name": "HISC 120A", + "prereqs": [], + "title": "Technology in America I (4)" + }, + "HISC 130": { + "dept": "HISC", + "description": "Major technological developments in the twentieth century, including the rise and decline of technologies, unexpected hazards and unanticipated consequences, and why some technologies fail.", + "name": "HISC 130", + "prereqs": [], + "title": "Technology in the Twentieth Century (4)" + }, + "HISC 131": { + "dept": "HISC", + "description": "Science and law are two of the most powerful establishments of modern Western culture. Science organizes our knowledge of the world; law directs our action in it. Will explore the historical roots of the interplay between them.", + "name": "HISC 131", + "prereqs": [], + "title": "Science, Technology, and Law (4)" + }, + "HISC 144": { + "dept": "HISC", + "description": "Selected topics in the history of science. Course can be taken for credit up to three times as topics will vary.", + "name": "HISC 144", + "prereqs": [], + "title": "Topics in Science Studies (4)" + }, + "HISC 165": { + "dept": "HISC", + "description": "in Twentieth-Century Science and Culture (4)", + "name": "HISC 165", + "prereqs": [], + "title": "Topics" + }, + "HISC 166/266": { + "dept": "HISC", + "description": "Galileo\u2019s condemnation by the Catholic Church in 1633 is a well-known but misunderstood episode. Was Galileo punished for holding dangerous scientific views? Personal arrogance? Disobedience? Religious transgressions? Readings in original sources, recent historical interpretations. Graduate students will be expected to submit a more substantial piece of work.\u00a0+", + "name": "HISC 166/266", + "prereqs": [], + "title": "The Galileo Affair (4)" + }, + "HISC 167/267": { + "dept": "HISC", + "description": "Why have women been traditionally excluded from science? How has this affected scientific knowledge? How have scientists constructed gendered representations not only of women, but also of science and nature? We will address these questions from perspectives including history, philosophy, and psychoanalytic theory. ", + "name": "HISC 167/267", + "prereqs": [], + "title": "Gender and Science (4)" + }, + "HISC 169": { + "dept": "HISC", + "description": "A selection of topics from physical, biological, or medical writings up to 1500. Emphasis on analysis of primary sources and contexts. Topics vary from year to year. Graduate students will be expected to submit a more substantial piece of work.", + "name": "HISC 169", + "prereqs": [], + "title": "Topics in Pre-Renaissance Science (4)" + }, + "HISC 173/273": { + "dept": "HISC", + "description": "Examines evolutionary theory before Darwin, the development of the theory of natural selection, the ongoing challenge from Lamarckism, nineteenth-century social Darwinism, the emergence of the neo-Darwinist synthesis, and the recent controversies over evolutionary psychology and creationism. Graduate students are expected to submit an additional paper. ", + "name": "HISC 173/273", + "prereqs": [], + "title": "Seminar on Darwin and Darwinisms (4)" + }, + "HISC 176": { + "dept": "HISC", + "description": "This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.", + "name": "HISC 176", + "prereqs": [], + "title": "History of Medicine in East and Southeast Asia (4)" + }, + "HISC 177": { + "dept": "HISC", + "description": "In 1784, Kant asked, \u201cWhat is Enlightenment?\u201d In this course we will pursue this question, which has remained hotly debated ever since. ", + "name": "HISC 177", + "prereqs": [], + "title": "Science and the Enlightenment (4)" + }, + "HISC 180/280": { + "dept": "HISC", + "description": "This course will explore the evolution of the institutions, ideologies, procedures, standards, and expertise that modern democratic societies have used in applying science to generate and legitimate public policy.", + "name": "HISC 180/280", + "prereqs": [], + "title": "Science and Public Policy (4)" + }, + "HISC 198": { + "dept": "HISC", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "name": "HISC 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "HISC 199": { + "dept": "HISC", + "description": "Study in the History of Science (4)", + "name": "HISC 199", + "prereqs": [], + "title": "Independent" + }, + "HISC 276": { + "dept": "HISC", + "description": "This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.", + "name": "HISC 276", + "prereqs": [], + "title": "History of Medicine in East and Southeast Asia (4)" + }, + "HISC 277": { + "dept": "HISC", + "description": "\u201cWas ist Aufklarung?,\u201d asked Kant in 1748 and the question remains hotly debated ever since. In this course we will pursue this question in tandem with another: \u201cWhat is Enlightenment science?\u201d The answer to which is equally debated. +", + "name": "HISC 277", + "prereqs": [], + "title": "Science and the Enlightenment (4)" + }, + "HITO": { + "dept": "HITO", + "description": "172/272. War in the Twentieth Century: A Psychological Approach (4)", + "name": "HITO", + "prereqs": [], + "title": "" + }, + "HITO 101": { + "dept": "HITO", + "description": "The course will explore the cultural, religious, and social relationships between the three major religious groups in the medieval Mediterranean: Muslims, Christians, and Jews from the sixth through sixteenth centuries AD.", + "name": "HITO 101", + "prereqs": [], + "title": "Jews, Christians, and Muslims (4)" + }, + "HITO 103S": { + "dept": "HITO", + "description": "This course will examine the development of Gnostic Christianity in the first four centuries CE. Students will also explore similar non-Christian religious movements that claimed to have special knowledge (gnosis) of the self, the material world, and the divine.", + "name": "HITO 103S", + "prereqs": [], + "title": "Gnosis and Gnosticism (4)" + }, + "HITO 104": { + "dept": "HITO", + "description": "Jews and Judaism in the Ancient and Medieval Worlds (4)", + "name": "HITO 104", + "prereqs": [], + "title": "The" + }, + "HITO 105": { + "dept": "HITO", + "description": "Topics include the political emancipation of the Jews of Europe; the emergence of Reform, Conservative, and Modern Orthodox Judaism; Hasidism; modern anti-Semitism; Jewish socialism; Zionism; the Holocaust; the American Jewish community; the State of Israel.", + "name": "HITO 105", + "prereqs": [], + "title": "Jewish Modernity from 1648 to 1948 (4)" + }, + "HITO 106": { + "dept": "HITO", + "description": "This course explores Jewish women\u2019s experiences from the seventeenth century to the present, covering Europe, the United States, and Israel. Examines work, marriage, motherhood, spirituality, education, community, and politics across three centuries and three continents.\u00a0", + "name": "HITO 106", + "prereqs": [ + "HILD 14", + "HILD 7A", + "HILD 12", + "HILD 7C", + "HILD 7B", + "HUM 3", + "DOC 3", + "DOC 2", + "DOC 1", + "MMW 14", + "MMW 15", + "MMW 12", + "MMW 13", + "MMW 11", + "HILD 11", + "HUM 5", + "HILD 10", + "WCWP 10B", + "HUM 2", + "HUM 1", + "WCWP 10A", + "HUM 4", + "CAT 1", + "CAT 3", + "CAT 2", + "HILD 2B", + "HILD 2C", + "HILD 2A", + "MCWP 40", + "MCWP 41", + "MMW 22", + "MMW 21", + "MCWP 50", + "MCWP 125" + ], + "title": "Love and Family in the Jewish Past (4)" + }, + "HITO 107": { + "dept": "HITO", + "description": "Students will produce creative video projects by conducting interviews and drawing from relevant texts, lectures, archival resources, and other materials to expand and deepen their understanding of the Holocaust and help contribute to the body of work documenting this period in history.", + "name": "HITO 107", + "prereqs": [], + "title": "Holocaust Video Production (4)" + }, + "HITO 114": { + "dept": "HITO", + "description": "This course introduces students to the history of modern Vietnam, starting with the Tay Son rebellion in the late eighteenth century and ending with the economic reforms of the 1980s. Topics include the expansion and consolidation of the French colonial state, the rise of anti-colonialism and nationalism, the development of Vietnamese communism, World War II, and the First and Second Indochina Wars. A special emphasis will be focused on the place of Vietnam within wider regional and global histories.", + "name": "HITO 114", + "prereqs": [], + "title": "History of Modern Vietnam (4)" + }, + "HITO 115/115GS": { + "dept": "HITO", + "description": "The Cold War is often understood as a superpower rivalry between the U.S. and the Soviet Union. Yet, the second half of the twentieth century witnessed civil wars, revolutions, decolonization movements, and state violence throughout the world that do not fit in this bipolar framework. Focusing on these other events, this course reexamines the Cold War in global and comparative perspective, with a particular focus on political developments in Asia, Africa, and Latin America.", + "name": "HITO 115/115GS", + "prereqs": [], + "title": "The Global Cold War (4)" + }, + "HITO 115S": { + "dept": "HITO", + "description": "Sources for reconstructing ancient history present special challenges. Introduce and examine critically some basic myths and chronicles of the eastern Mediterranean and ancient Near East and assess the challenges to today\u2019s historian in reconstructing these histories.", + "name": "HITO 115S", + "prereqs": [], + "title": "Myth, History, and Archaeology (4)" + }, + "HITO 116": { + "dept": "HITO", + "description": "How did cars come to dominate the world? This course provides a survey of the world since 1900 to the near future through the history of cars and their impacts on politics, economics, society, and the environment.", + "name": "HITO 116", + "prereqs": [], + "title": "Car Wars: A Global History of the World since 1900 through Cars (4)" + }, + "HITO 117": { + "dept": "HITO", + "description": "This course examines the interaction between", + "name": "HITO 117", + "prereqs": [], + "title": "World History 1200\u20131800 (4)" + }, + "HITO 124": { + "dept": "HITO", + "description": "The course examines multiform mystical traditions in world religions and cultures, including Greco-Roman philosophy, Judaism, Christianity, Islam, Hinduism, and Buddhism by studying classics of mystical literature and secondary sources; also addressed are mystical beliefs and practices in contemporary society.", + "name": "HITO 124", + "prereqs": [], + "title": "Mystical Traditions (4)" + }, + "HITO 126": { + "dept": "HITO", + "description": "This course will examine the different ways that attitudes toward children have changed throughout history. By focusing on the way that the child was understood, we will examine the changing role of the family, the role of culture in human development, and the impact of industrialization and modern institutions on the child and childhood.", + "name": "HITO 126", + "prereqs": [], + "title": "A History of Childhood (4)" + }, + "HITO 133": { + "dept": "HITO", + "description": "An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.", + "name": "HITO 133", + "prereqs": [], + "title": "War and Society: The Second World War (4)" + }, + "HITO 133D": { + "dept": "HITO", + "description": "An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.", + "name": "HITO 133D", + "prereqs": [], + "title": "War and Society: The Second World War (4)" + }, + "HITO 134": { + "dept": "HITO", + "description": "Law\u2014War Crimes and Genocide (4)", + "name": "HITO 134", + "prereqs": [], + "title": "International" + }, + "HITO 136": { + "dept": "HITO", + "description": "Explore contrasts and parallels between African Americans and Jews from the seventeenth century to the present. Investigate slavery, the Civil War, shared music, political movements, urban geography, and longings to return to a homeland in Africa or Palestine.", + "name": "HITO 136", + "prereqs": [], + "title": "Jews and African Americans:\u00a0Slavery, Diaspora, Ghetto (4)" + }, + "HITO 140": { + "dept": "HITO", + "description": "An examination of the history of emotions from the early modern period to the present with a focus on Europe and North America. Analysis of different approaches to emotions as well as of specific emotions (love, honor, shame, fear, guilt).", + "name": "HITO 140", + "prereqs": [], + "title": "History of Emotions (4)" + }, + "HITO 150GS": { + "dept": "HITO", + "description": "A lecture-discussion course on the philosophical, political, and economic ideas that shaped the Scottish Enlightenment in the eighteenth century, especially the ideas of David Hume, Adam Smith, and John Witherspoon, and their impact upon the American Revolution and the Constitution of the United States.", + "name": "HITO 150GS", + "prereqs": [], + "title": "The Scottish Enlightenment and the Founding of the United States (4)" + }, + "HITO 155": { + "dept": "HITO", + "description": "This course tracks the worldwide interplay of sport and race. We begin with patterns of exclusion and participation on the part of African Americans, Latinos, and Native Americans. We then examine patterns of inequality across the globe.", + "name": "HITO 155", + "prereqs": [], + "title": "Race, Sport, and Inequality in the Twentieth Century (4)" + }, + "HITO 156": { + "dept": "HITO", + "description": "Comparative study of American and European multicultural politics and policy, focusing on developments since 1945. Coverage includes policies aimed at members of the African American, Native American, Latino/Chicano/Hispanic, and Asian/Pacific Islander communities and comparable European groups.", + "name": "HITO 156", + "prereqs": [], + "title": "Diversity, Equity, and Inclusion in the United States and Europe: Multiple Multiculturalisms (4)" + }, + "HITO 164/264": { + "dept": "HITO", + "description": "In this course we compare the Jewish experience to other religious minorities in American history. Topics include motives and rates of immigration, education and work patterns, religious experiences, women\u2019s roles, family life, and representations in popular and high culture.", + "name": "HITO 164/264", + "prereqs": [], + "title": "Jews and Other Ethnics in the American Past (4)" + }, + "HITO 165/265": { + "dept": "HITO", + "description": "Topics will examine lesbian, gay, bisexual, transgender, and queer identities, communities, culture, and politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units. ", + "name": "HITO 165/265", + "prereqs": [], + "title": "Topics\u2014LGBT History (4)" + }, + "HITO 167/267": { + "dept": "HITO", + "description": "This course will examine what has been called the Cultural Cold Wars. Sports were the most visible form of popular culture during the era (1945\u201391). It will make use of reports and essays produced for an international, multiyear research project. It will combine written and visual sources. Matters of class, race, gender, and nationality will be discussed. May be coscheduled with HITO 267. ", + "name": "HITO 167/267", + "prereqs": [], + "title": "Global History of Sports in the Cold War (4)" + }, + "HITO 168/268": { + "dept": "HITO", + "description": "The course analyzes mutual influences and exchanges between the United States and Germany from the late nineteenth to the mid-twentieth century. Topics include imperialism and racism, social thought and intellectual migration, economic relations, feminism, and youth cultures, war, and occupation. Graduate students must complete an additional paper. ", + "name": "HITO 168/268", + "prereqs": [], + "title": "The U.S. and Germany from the 1890s to the 1960s: Transitional Relations and Competing Modernities (4)" + }, + "HITO 178/278": { + "dept": "HITO", + "description": "Taught in conjunction with the San Diego Maritime Museum, this course investigates life at sea from the age of discovery to the advent of the steamship. We will investigate discovery, technology, piracy, fisheries, commerce, naval conflict, sea-board life, and seaport activity. ", + "name": "HITO 178/278", + "prereqs": [], + "title": "A History of Seafaring in the Age of Sail (4)" + }, + "HITO 180/280": { + "dept": "HITO", + "description": "The majority of the world\u2019s citizens now live in cities; this course examines the evolution of housing architecture and finance in the twentieth-century context of rapid urbanization, dissolving empire, industrialization, and globalization. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "name": "HITO 180/280", + "prereqs": [], + "title": "Housing in the Developing World (4)" + }, + "HITO 192": { + "dept": "HITO", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in history (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "HITO 192", + "prereqs": [], + "title": "Senior Seminar in History (1)" + }, + "HITO 193/POLI 194/COM GEN 194/USP 194": { + "dept": "HITO", + "description": "Course attached to six-unit internship taken by student participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial historical research paper. ", + "name": "HITO 193/POLI 194/COM GEN 194/USP 194", + "prereqs": [], + "title": "Research Seminar in Washington, DC (6)" + }, + "HITO 194": { + "dept": "HITO", + "description": "A program of independent study providing candidates for history honors an opportunity to develop, in consultation with an adviser, a preliminary proposal for the honors essay. An IP grade will be awarded at the end of this quarter. A final grade will be given for both quarters at the end of HITO 195. ", + "name": "HITO 194", + "prereqs": [], + "title": "History Honors (4)" + }, + "HITO 195": { + "dept": "HITO", + "description": "Independent study under the supervision of a faculty member leading to the preparation of an honors essay. A letter grade for both HITO 194 and 195 will be given at the completion of this quarter. ", + "name": "HITO 195", + "prereqs": [], + "title": "The Honors Essay (4)" + }, + "HITO 196": { + "dept": "HITO", + "description": "The nature and uses of history are explored through the study of the historian\u2019s craft based on critical analysis of historical literature relating to selected topics of concern to all historians. Required of all candidates for history honors and open to other interested students with the instructor\u2019s consent. Department stamp required.", + "name": "HITO 196", + "prereqs": [], + "title": "Honors Seminar (4)" + }, + "HITO 198": { + "dept": "HITO", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ", + "name": "HITO 198", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "HITO 199": { + "dept": "HITO", + "description": "Independent study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ", + "name": "HITO 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (4)" + }, + "HITO 274": { + "dept": "HITO", + "description": "Medieval and early modern origins of constitutional ideas and institutions. The question of the course is: Where did the ideas and institutions embodied in the constitutions of the U.S. (1787) and of France (1791) come from? Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.", + "name": "HITO 274", + "prereqs": [], + "title": "The Foundations of Constitutional Law (4)" + }, + "HITO 87": { + "dept": "HITO", + "description": "A seminar intended for exposing undergraduate students, especially freshmen, to exciting research programs conducted by department faculty. Enrollment is limited. Topic will vary quarter by quarter.", + "name": "HITO 87", + "prereqs": [], + "title": "Special Freshman Seminar (1)" + }, + "HITO 99": { + "dept": "HITO", + "description": "Study on History Topics (1, 2, 3, 4)", + "name": "HITO 99", + "prereqs": [], + "title": "Independent" + }, + "HIUS": { + "dept": "HIUS", + "description": "181/281. Topics in Twentieth Century United States History (4)", + "name": "HIUS", + "prereqs": [], + "title": "" + }, + "HIUS 103": { + "dept": "HIUS", + "description": "This course reconsiders US history from a Pacific world perspective, from the eighteenth century to the present. Themes include comparative colonialism and empire; race, gender, and indigeneity; militarism and tourism; labor migration and resistance.", + "name": "HIUS 103", + "prereqs": [], + "title": "The United States and the Pacific World (4)" + }, + "HIUS 104": { + "dept": "HIUS", + "description": "The upheavals that transformed the early modern Atlantic emphasizing the United States, Caribbean, and Great Britain. Topics: struggles to define democracy, the reorganization of the Atlantic state system, the Enlightenment, and international responses to the American and French Revolutions.\u00a0+", + "name": "HIUS 104", + "prereqs": [], + "title": "The Revolutionary Atlantic (4)" + }, + "HIUS 106A": { + "dept": "HIUS", + "description": "Course examines range of public and private interactions between the United States and the world, from the founding of the republic to the Spanish-American War. Topics include origins of federal foreign policy making power, territorial and commercial and ideological expansionism.", + "name": "HIUS 106A", + "prereqs": [], + "title": "American Foreign Relations, to 1900 (4)" + }, + "HIUS 106B": { + "dept": "HIUS", + "description": "American Foreign Relations, since 1900 (4)", + "name": "HIUS 106B", + "prereqs": [], + "title": "" + }, + "HIUS 106S": { + "dept": "HIUS", + "description": "Examine the development of apocalyptic Jewish movements in the Second Temple period and the influence these movements had on Rabbinic Judaism and early Christianity.", + "name": "HIUS 106S", + "prereqs": [], + "title": "Apocalyptic Judaism (4)" + }, + "HIUS 108A/ETHN": { + "dept": "HIUS", + "description": "112A. History of Native Americans in the United States I (4)", + "name": "HIUS 108A/ETHN", + "prereqs": [], + "title": "" + }, + "HIUS 108B/ETHN": { + "dept": "HIUS", + "description": "112B. History of Native Americans in the United States II (4)", + "name": "HIUS 108B/ETHN", + "prereqs": [], + "title": "" + }, + "HIUS 110": { + "dept": "HIUS", + "description": "A lecture course that explores the evolution of the interaction between the United States and the world from the American Revolution to the First World War, with particular emphasis upon the role of diplomacy, war, and economic change.", + "name": "HIUS 110", + "prereqs": [], + "title": "America and the World: Revolution to World War I (4)" + }, + "HIUS 111": { + "dept": "HIUS", + "description": "A lecture course that explores the evolution of the interaction between the United States and the world from 1914 to the present, with special attention to the era of the Great Depression, the Cold War, Vietnam, and the post 9/11 war on terror.", + "name": "HIUS 111", + "prereqs": [], + "title": "America and the World: World War I to the Present (4)" + }, + "HIUS 112": { + "dept": "HIUS", + "description": "The course addresses the causes, course, and consequences of the US Civil War. We will explore such themes as how Unionists and Confederates mobilized their populations and dealt with dissension, the war\u2019s effects on gender and race relations, and the transformation of the federal government.", + "name": "HIUS 112", + "prereqs": [], + "title": "The US Civil War (4)" + }, + "HIUS 113/ETHN 154": { + "dept": "HIUS", + "description": "This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.", + "name": "HIUS 113/ETHN 154", + "prereqs": [], + "title": "History of Mexican America (4)" + }, + "HIUS 114A": { + "dept": "HIUS", + "description": "This course surveys the history of California from the period just before Spanish contact in 1542 through California\u2019s admission to the Union in 1850. +", + "name": "HIUS 114A", + "prereqs": [], + "title": "California History 1542\u20131850 (4)" + }, + "HIUS 114B": { + "dept": "HIUS", + "description": "This course surveys the history of California from 1850 to the present.", + "name": "HIUS 114B", + "prereqs": [], + "title": "California History, 1850\u2013Present (4)" + }, + "HIUS 115": { + "dept": "HIUS", + "description": "Constructions of sex and sexuality in the United States from the time of precontact Native America to the present, focusing on sexual behaviors, sexual ideologies, and the uses of sexuality for social control.", + "name": "HIUS 115", + "prereqs": [], + "title": "History of Sexuality in the United States (4)" + }, + "HIUS 117": { + "dept": "HIUS", + "description": "This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification.", + "name": "HIUS 117", + "prereqs": [], + "title": "History of Los Angeles (4)" + }, + "HIUS 118": { + "dept": "HIUS", + "description": "This course explores the history of Jews in America from the colonial period to the present, focusing on both the development of Jewish communities primarily as a result of immigration and evolving relations between Jews and the larger American society.", + "name": "HIUS 118", + "prereqs": [], + "title": "How Jews Became American (4)" + }, + "HIUS 120": { + "dept": "HIUS", + "description": "Topics will include Quaker origins of the American peace movements and examples of opposition to wars in the twentieth century from World Wars I and II, Vietnam, anti-nuclear movements, and intervention in Central America to Iraq.", + "name": "HIUS 120", + "prereqs": [], + "title": "Peace Movements in America (4)" + }, + "HIUS 122": { + "dept": "HIUS", + "description": "A lecture-discussion course utilizing written texts and films to explore major themes in American politics and culture from the Great Depression through the 1990s. Topics will include the wars of America, McCarthyism, the counter-culture of the 1960s, and the transformation of race and gender relations.", + "name": "HIUS 122", + "prereqs": [], + "title": "History and Hollywood: America and the Movies since the Great Depression (4)" + }, + "HIUS 123/USP 167": { + "dept": "HIUS", + "description": "New York City breathes history. Whether it is in the music,", + "name": "HIUS 123/USP 167", + "prereqs": [], + "title": "History of New York City (4)" + }, + "HIUS 124/ETHN 125": { + "dept": "HIUS", + "description": "Explore how Asian Americans were involved in the political, economic, and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.", + "name": "HIUS 124/ETHN 125", + "prereqs": [], + "title": "Asian American History (4)" + }, + "HIUS 125/ETHN 163J": { + "dept": "HIUS", + "description": "This course introduces students to the history of Asian American social movements from the late nineteenth century to the present, with an emphasis on interethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anti-colonial movements, redress, hate crimes, and police brutality.", + "name": "HIUS 125/ETHN 163J", + "prereqs": [], + "title": "Asian American Social Movements (4)" + }, + "HIUS 126": { + "dept": "HIUS", + "description": "Examines key periods, events, and processes throughout the twentieth century that shaped the way Americans thought about race. Also examines the historical development of the category of race and racism, as well as how it is lived in everyday life.", + "name": "HIUS 126", + "prereqs": [], + "title": "The History of Race in the United States (4)" + }, + "HIUS 128": { + "dept": "HIUS", + "description": "This course sketches the shifting experience persons of African descent have had with the law in the United States. Films, cases, articles, and book excerpts are used to convey the complex nature of this four-hundred-year journey.", + "name": "HIUS 128", + "prereqs": [], + "title": "African American Legal History (4)" + }, + "HIUS 129/USP 106": { + "dept": "HIUS", + "description": "This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation.", + "name": "HIUS 129/USP 106", + "prereqs": [], + "title": "The History of Race and Ethnicity in American Cities (4)" + }, + "HIUS 130": { + "dept": "HIUS", + "description": "History from 1607 to 1865 (4)", + "name": "HIUS 130", + "prereqs": [], + "title": "Cultural" + }, + "HIUS 131": { + "dept": "HIUS", + "description": "History from 1865 to 1917 (4)", + "name": "HIUS 131", + "prereqs": [], + "title": "Cultural" + }, + "HIUS 131D": { + "dept": "HIUS", + "description": "This course will focus on the transformation of work and leisure and development of consumer culture. Students will consider connections between culture, class relations, gender ideology, and politics. Topics will include labor radicalism, Taylorism, the development of organized sports, the rise of department stores, and the transformation of middle-class sexual culture of the Cold War.", + "name": "HIUS 131D", + "prereqs": [], + "title": "Cultural History from the Civil War to the Present (4)" + }, + "HIUS 132S": { + "dept": "HIUS", + "description": "This course considers how cultural processes have shaped histories of the Civil War and Reconstruction. Students will analyze the relationship between popular culture and major themes of the era through the use of literature, texts, film, television, and print images. Students who took HIUS 132 cannot repeat this course.", + "name": "HIUS 132S", + "prereqs": [], + "title": "The Civil War and Reconstruction in Popular Culture (4)" + }, + "HIUS 133": { + "dept": "HIUS", + "description": "This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries.\u00a0Students may not receive credit for HIUS 133 and HIUS 133GS.\u00a0+", + "name": "HIUS 133", + "prereqs": [], + "title": "The Golden Age of Piracy (4)" + }, + "HIUS 133GS": { + "dept": "HIUS", + "description": "This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries. Program or materials fees may apply. Students must apply and be accepted into the Global Seminars Program. Students may not receive credit for HIUS 133 and HIUS 133GS.", + "name": "HIUS 133GS", + "prereqs": [], + "title": "The Golden Age of Piracy (4)" + }, + "HIUS 134": { + "dept": "HIUS", + "description": "Bebop to Hip-Hop: African American Cultural History since 1945 (4)", + "name": "HIUS 134", + "prereqs": [], + "title": "From" + }, + "HIUS 135": { + "dept": "HIUS", + "description": "This course focuses on the role the Atlantic played in bringing together in both volatile and beneficial ways the remarkably different cultures of four continents from the Columbian Exchange to the Haitian Revolution. Students may not receive credit for HIUS 135 and 135A or 135B.\u00a0+", + "name": "HIUS 135", + "prereqs": [], + "title": "The Atlantic World, 1492\u20131803 (4)" + }, + "HIUS 136/ETHN 153": { + "dept": "HIUS", + "description": "This course traces the history of the institution of US citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.", + "name": "HIUS 136/ETHN 153", + "prereqs": [], + "title": "Citizenship and Civil Rights in the Twentieth Century (4)" + }, + "HIUS 139/ETHN": { + "dept": "HIUS", + "description": "149. African American History in the Twentieth Century (4)", + "name": "HIUS 139/ETHN", + "prereqs": [], + "title": "" + }, + "HIUS 140/ECON 158": { + "dept": "HIUS", + "description": "The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism.", + "name": "HIUS 140/ECON 158", + "prereqs": [], + "title": "Economic History of the United States I (4)" + }, + "HIUS 141/ECON 159": { + "dept": "HIUS", + "description": "The United States as modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism.", + "name": "HIUS 141/ECON 159", + "prereqs": [], + "title": "Economic History of the United States II (4)" + }, + "HIUS 142A": { + "dept": "HIUS", + "description": "United States in the Twentieth Century, 1900\u20131945 (4)", + "name": "HIUS 142A", + "prereqs": [], + "title": "" + }, + "HIUS 142B": { + "dept": "HIUS", + "description": "United States in the Twentieth Century, 1945 to the Present (4)", + "name": "HIUS 142B", + "prereqs": [], + "title": "" + }, + "HIUS 143": { + "dept": "HIUS", + "description": "An examination of urban and regional planning as well as piecemeal change in the built environment. Topics include urban and suburban housing, work environments, public spaces, transportation and utility infrastructures, utopianism.", + "name": "HIUS 143", + "prereqs": [], + "title": "The Built Environment in the Twentieth Century (4)" + }, + "HIUS 144": { + "dept": "HIUS", + "description": "Selected topics in US history. Course may be taken for credit up to three times as topics vary.", + "name": "HIUS 144", + "prereqs": [], + "title": "Topics in US History (4)" + }, + "HIUS 145": { + "dept": "HIUS", + "description": "This course will examine the economic, social, and political changes underway in the United States from 1917 to 1945. Topics will include the 1920s, the Great Depression, the New Deal and the consequences of two World Wars.", + "name": "HIUS 145", + "prereqs": [], + "title": "From New Era to New Deal (4)" + }, + "HIUS 146": { + "dept": "HIUS", + "description": "Examining the history of urban riots in the United States since the late nineteenth century. Exploring how different groups of Americans have constructed competing notions of race, gender, labor, and national belonging by participating in street violence.", + "name": "HIUS 146", + "prereqs": [], + "title": "Race, Riots, and Violence in the U.S. (4)" + }, + "HIUS 148/USP": { + "dept": "HIUS", + "description": "103. The American City in the Twentieth Century (4)", + "name": "HIUS 148/USP", + "prereqs": [], + "title": "" + }, + "HIUS 149": { + "dept": "HIUS", + "description": "An overview of the social and political developments that polarized American society in the tumultuous decade of the 1960s. Themes include the social impact of the postwar baby boom, the domestic and foreign policy implications of the Cold War; the evolution of the civil rights and women\u2019s movements; and the transformation of American popular culture.", + "name": "HIUS 149", + "prereqs": [], + "title": "The United States in the 1960s (4)" + }, + "HIUS 150": { + "dept": "HIUS", + "description": "The history of American law and legal institutions. This quarter focuses on crime and punishment in the colonial era, the emergence of theories of popular sovereignty, the forging of the Constitution and American federalism, the relationship between law and economic change, and the crisis of slavery and Union.\u00a0+", + "name": "HIUS 150", + "prereqs": [], + "title": "American Legal History to 1865 (4)" + }, + "HIUS 151": { + "dept": "HIUS", + "description": "The history of American law and legal institutions. This course examines race relations and law, the rise of big business, the origins of the modern welfare state during the Great Depression, the crisis of civil liberties produced by two world wars and McCarthyism, and the Constitutional revolution wrought by the Warren Court. HIUS 150 is not a prerequisite for HIUS 151.", + "name": "HIUS 151", + "prereqs": [], + "title": "American Legal History since 1865 (4)" + }, + "HIUS 152A": { + "dept": "HIUS", + "description": "The historical development of constitutional thought and practice in the United States from the era of the American Revolution through the Civil War, with special attention to the role of the Supreme Court under Chief Justices Marshall and Taney.", + "name": "HIUS 152A", + "prereqs": [], + "title": "A Constitutional History of the United States to 1865 (4)" + }, + "HIUS 152B": { + "dept": "HIUS", + "description": "The historical development of constitutional", + "name": "HIUS 152B", + "prereqs": [], + "title": "A Constitutional History of the United States since 1865 (4)" + }, + "HIUS 153": { + "dept": "HIUS", + "description": "Survey of politicized criminal trials and", + "name": "HIUS 153", + "prereqs": [], + "title": "American Political Trials (4)" + }, + "HIUS 155": { + "dept": "HIUS", + "description": "Zoot Suits to Hip-Hop: Race and Popular Culture since World War II (4)", + "name": "HIUS 155", + "prereqs": [], + "title": "From" + }, + "HIUS 155A": { + "dept": "HIUS", + "description": "Selected problems in the history of the relationship between religious beliefs and practice and legal institutions in the Anglo American world. Topics include the English background, religion in the age of the American Revolution and the antebellum period.\u00a0+", + "name": "HIUS 155A", + "prereqs": [], + "title": "Religion and Law in American History: Foundations to the Civil War (4)" + }, + "HIUS 155B": { + "dept": "HIUS", + "description": "Religion and Law in American History: Civil War to the Present (4)", + "name": "HIUS 155B", + "prereqs": [], + "title": "" + }, + "HIUS 156": { + "dept": "HIUS", + "description": "Women, American Womanhood (4)", + "name": "HIUS 156", + "prereqs": [], + "title": "American" + }, + "HIUS 156D": { + "dept": "HIUS", + "description": "This course explores the emergence of a dominant ideology of womanhood in America in the early nineteenth century and contrasts the ideal with the historically diverse experience of women of different races and classes, from settlement to 1870. Topics include witchcraft, evangelicalism, cult of domesticity, sexuality, rise of industrial capitalism and the transformation of women\u2019s work, the Civil War, and the first feminist movement.", + "name": "HIUS 156D", + "prereqs": [], + "title": "American Women, American Womanhood (4)" + }, + "HIUS 157": { + "dept": "HIUS", + "description": "Women, American Womanhood 1870 to Present (4)", + "name": "HIUS 157", + "prereqs": [], + "title": "American" + }, + "HIUS 158/ETHN": { + "dept": "HIUS", + "description": "130. Social and Economic History of the Southwest I (4)", + "name": "HIUS 158/ETHN", + "prereqs": [], + "title": "" + }, + "HIUS 159/ETHN": { + "dept": "HIUS", + "description": "131. Social and Economic History of the Southwest II (4)", + "name": "HIUS 159/ETHN", + "prereqs": [], + "title": "" + }, + "HIUS 162/262": { + "dept": "HIUS", + "description": "This seminar will trace major themes in the history of the American West. Topics will include ethnicity, the environment, urbanization, demographics, and shifting concepts surrounding the significance of the West. Graduate students will be required to submit additional work in order to receive graduate credit for the course. ", + "name": "HIUS 162/262", + "prereqs": [], + "title": "The American West (4)" + }, + "HIUS 167/267/ETHN 180": { + "dept": "HIUS", + "description": "This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences. ", + "name": "HIUS 167/267/ETHN 180", + "prereqs": [], + "title": "Topics in Mexican American History (4)" + }, + "HIUS 168/268": { + "dept": "HIUS", + "description": "The course investigates race, resistance, and culture in the United States since the late nineteenth century. It interrogates how working-class whites, African Americans, Latinos, Asian Americans, and others have simultaneously challenged, shaped, and assimilated into US society. May be coscheduled with HIUS 268. ", + "name": "HIUS 168/268", + "prereqs": [], + "title": "Race, Resistance, and Cultural Politics (4)" + }, + "HIUS 174": { + "dept": "HIUS", + "description": "This seminar will examine racial formation in relation to US wars in American history. Topics include \u201cmanifest destiny\u201d and the frontier; radicalism and the \u201cRed Scare\u201d; the border patrol; civil rights movements; the \u201cwar on drugs\u201d and mass incarceration. ", + "name": "HIUS 174", + "prereqs": [], + "title": "Race Wars in American Culture (4)" + }, + "HIUS 176/276": { + "dept": "HIUS", + "description": "This seminar will explore the histories of sexual relations, politics, and cultures that both cross and define racial boundaries in the nineteenth and twentieth centuries. Reading will focus on the United States as well as take up studies sited in Canada and Latin America. Graduate students are expected to submit a more substantial piece of work. ", + "name": "HIUS 176/276", + "prereqs": [], + "title": "Race and Sexual Politics (4)" + }, + "HIUS 177": { + "dept": "HIUS", + "description": "This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.", + "name": "HIUS 177", + "prereqs": [], + "title": "Asian American Historiography (4)" + }, + "HIUS 178/278 The Atlantic World, 1400\u20131800 (4)": { + "dept": "HIUS", + "description": "This course explains the origin of the Atlantic as a zone of interaction for Europeans, indigenous Americans, and Africans, and evaluates the consequences of the interaction over several centuries by exploring contests over political power and economic/demographic change. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "name": "HIUS 178/278 The Atlantic World, 1400\u20131800 (4)", + "prereqs": [], + "title": "" + }, + "HIUS 180/ETHN": { + "dept": "HIUS", + "description": "134. Immigration and Ethnicity in Modern American Society (4)", + "name": "HIUS 180/ETHN", + "prereqs": [], + "title": "" + }, + "HIUS 182": { + "dept": "HIUS", + "description": "Cultural and political construction of the American nation. Topics include: how citizenship and national community were imagined and contested; importance of class, gender, and race in the nation\u2019s public sphere; debates over slavery, expansion, and democracy in defining national purpose. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial paper.", + "name": "HIUS 182", + "prereqs": [], + "title": "Special Topics in Intellectual History (4)" + }, + "HIUS 183": { + "dept": "HIUS", + "description": "A colloquium dealing with special topics in the history of people of African descent in the United States. Course may be taken for credit up to three times, as topics will vary from quarter to quarter. ", + "name": "HIUS 183", + "prereqs": [], + "title": "Topics in African American History (4)" + }, + "HIUS 185/285": { + "dept": "HIUS", + "description": "In this seminar, we will examine the shifting boundary between what constitutes a public and a private concern in twentieth-century US history. We will consider issues such as civil rights, immigration, health care, and the regulation of financial institutions. ", + "name": "HIUS 185/285", + "prereqs": [ + "HIUS 185", + "HIUS 285" + ], + "title": "In the Public Interest (4)" + }, + "HIUS 186": { + "dept": "HIUS", + "description": "Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary.\u00a0", + "name": "HIUS 186", + "prereqs": [], + "title": "Topics in US Economic History (4)" + }, + "HIUS 188/288": { + "dept": "HIUS", + "description": "Colloquium on select topics in culture and politics in the United States. Topics will vary from quarter to quarter. Graduate students will be required to submit an additional piece of work. ", + "name": "HIUS 188/288", + "prereqs": [], + "title": "Topics in Culture and Politics (4)" + }, + "HIUS 198": { + "dept": "HIUS", + "description": "Directed group study on United States history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "name": "HIUS 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "HIUS 199": { + "dept": "HIUS", + "description": "Study in United States History (4)", + "name": "HIUS 199", + "prereqs": [], + "title": "Independent" + }, + "HIUS 265": { + "dept": "HIUS", + "description": "This course examines the legal and cultural constructions of \u201cfreedom\u201d in American history, with a focus on its inherent limitations and exclusions. We will examine how marginalized groups have engaged in political struggles in pursuit of more expansive notions of freedom.", + "name": "HIUS 265", + "prereqs": [], + "title": "The Problem with Freedom (4)" + }, + "HIUS 274": { + "dept": "HIUS", + "description": "This seminar will examine racial formation in relation to US wars in American history. Topics include \u201cmanifest destiny\u201d and the frontier; radicalism and the \u201cRed Scare\u201d; the border patrol; civil rights movements; the \u201cwar on drugs,\u201d and mass incarceration.", + "name": "HIUS 274", + "prereqs": [], + "title": "Race Wars in American Culture (4)" + }, + "HIUS 277": { + "dept": "HIUS", + "description": "This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.", + "name": "HIUS 277", + "prereqs": [], + "title": "Asian American Historiography (4)" + }, + "HIUS 286": { + "dept": "HIUS", + "description": "Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary. ", + "name": "HIUS 286", + "prereqs": [], + "title": "Topics in US Economic History (4)" + }, + "HLAW 207A": { + "dept": "HLAW", + "description": "The course offers a broad introduction to the legal aspects of American health care, through an in-depth analysis of selected contemporary issues at the intersection of health care and legal systems. It draws heavily on the experiences of the participants as well as the faculty. The course attends to how and why the law came to be (legal policy), how it is used (legal process), and how it affects the shape, cost, and quality of health care in America (legal impact). Part A emphasizes \u201cprivate\u201d law topics\u2014the legal environment within which the private participants in health care interact with each other. ", + "name": "HLAW 207A", + "prereqs": [], + "title": "Principles in Health Law and Policy A (4.5)" + }, + "HLAW 207B": { + "dept": "HLAW", + "description": "This course presents a comprehensive view of modern issues at the intersection of health care and law, with an emphasis on improving understanding and synergy between the professions. The course stresses foundational understanding of how health law and policy is formulated and the application of health law and policy in current practice. A portion of the class is devoted to group work where students select and study issues in depth to build a framework for resolving enduring challenges in the field. A variety of timely topics on the health law system and procedures/processes, such as Medicare and Medi-Cal coverage, are introduced to reinforce understanding. Part B emphasizes \u201cpublic\u201d law\u2014the law concerning government\u2019s own activities and programs, such as Medicare and Medicaid. ", + "name": "HLAW 207B", + "prereqs": [], + "title": "Principles of Health Law and Policy B (4.5)" + }, + "HLAW 210": { + "dept": "HLAW", + "description": "The course focuses on legal issues from the viewpoint of the administrator or chief clinical officer, including the patient record/HIT/HIPAA. The course gives emphasis to practical application and knowledge/skills to prepare the students for job search or career transition. ", + "name": "HLAW 210", + "prereqs": [], + "title": "Applied Health Law and Policy (3)" + }, + "HLAW 212": { + "dept": "HLAW", + "description": "Given at the discretion of the faculty, topics of interest in health law will be presented for in-depth review and discussion by visiting or resident faculty members. The module will cover seminar topics related to health-care issues. May be taken for credit three times. ", + "name": "HLAW 212", + "prereqs": [], + "title": "Special Topics in Health Law (2)" + }, + "HLAW 213": { + "dept": "HLAW", + "description": "Under the guidance of faculty, this survey course features a speaker series of experts covering a range of the most current topics in health policy and law. ", + "name": "HLAW 213", + "prereqs": [], + "title": "Current Topics in Health Policy and Law (3)" + }, + "HLAW 215": { + "dept": "HLAW", + "description": "Assesses the major models for provision and financing of health care in the U.S. and the world today. Students gain an understanding of the health policy process and how health care is financed as well as learn to evaluate health policies according to range of criteria for cost, quality, and equity. Advantages and disadvantages of the various ways of organizing and financing health care are considered. Actions taken by employers, insurers, consumers, and government and the effects on physicians and provider organizations are analyzed. ", + "name": "HLAW 215", + "prereqs": [], + "title": "Comparative Study of Health-care Systems (3)" + }, + "HLAW 216": { + "dept": "HLAW", + "description": "Course examines bioethics from a clinical perspective using medical literature and case law to cover a range of topics such as the principles and theories of bioethics, truth telling and confidentiality, informed consent, research on animals and human subjects, technology and reproduction, surrogacy, abortion and fetal rights, maternal/fetal conflict, the right to die, physician-assisted suicide and euthanasia, medical decision making for incompetent patients, and the changing nature of the doctor-patient relationship. Medical ethical issues in health-care policy at the national and global level are also discussed including allocation of scarce medical resources, compulsory public health measures, clinical research in the developing world, and cross-cultural medical practice. ", + "name": "HLAW 216", + "prereqs": [], + "title": "Bioethics and Medical Practice (3)" + }, + "HLAW 219A": { + "dept": "HLAW", + "description": "Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will emphasize that global health policy challenges require a multidisciplinary approach involving a broad set of stakeholders and that local, national, and global health policy are all intertwined. ", + "name": "HLAW 219A", + "prereqs": [], + "title": "Global Health Policy A: Foundations (3)" + }, + "HLAW 219B": { + "dept": "HLAW", + "description": "This course examines advanced current topics in global health policy using a combination of instruction, student participation, and policy simulation. Topics examined are cross-cutting across local, national, regional, and international health policy-making with practical examples of why more coordinated global health governance is needed. ", + "name": "HLAW 219B", + "prereqs": [], + "title": "Global Health Policy B: Advanced Topics (3)" + }, + "HLAW 298": { + "dept": "HLAW", + "description": "Faculty member will direct a student\u2019s study in selected professional development topics in health law. Specific content will be tailored to the student\u2019s particular needs and area of interest. Students must make arrangements with the program and individual faculty member prior to enrolling in the course each time. May be taken for credit three times. ", + "name": "HLAW 298", + "prereqs": [], + "title": "Directed Studies in Health Law (2)" + }, + "HLAW 298A-C": { + "dept": "HLAW", + "description": "This course series focuses on developing students\u2019 research and scholarly writing skills for their Independent Study Projects (ISP). Topics include refining the research question, collecting/analyzing data, understanding research methodology, forming the ISP committee, and producing a viable ISP proposal. ", + "name": "HLAW 298A-C", + "prereqs": [], + "title": "Health Law Research Forum (1-1-1)" + }, + "HLAW 299": { + "dept": "HLAW", + "description": "Students will be involved in a high-level applied research project. The project will cover an area of health law related to topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty and may include industry advisors when appropriate. ", + "name": "HLAW 299", + "prereqs": [ + "HLAW 298C", + "HLAW 298A" + ], + "title": "Independent Study Project in Health Law (3)" + }, + "HMNR 100/HITO 119": { + "dept": "HMNR", + "description": "Explores where human rights come from and what they mean by integrating them into a history of modern society, from the Conquest of the Americas and the origins of the Enlightenment, to the Holocaust and the contemporary human rights regime.", + "name": "HMNR 100/HITO 119", + "prereqs": [], + "title": "Introduction to Human Rights and Global Justice (4)" + }, + "HMNR 101/ANSC 140": { + "dept": "HMNR", + "description": "Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections\u2014against genocide, torture, enslavement, political persecution, etc.\u2014and their violation, from early Cold War to the present.", + "name": "HMNR 101/ANSC 140", + "prereqs": [], + "title": "Human Rights II: Contemporary Issues (4)" + }, + "HUM 1": { + "dept": "HUM", + "description": "of Western Civilization: Israel and Greece (6)", + "name": "HUM 1", + "prereqs": [], + "title": "The Foundations" + }, + "HUM 195": { + "dept": "HUM", + "description": "An introduction to teaching humanities. Students are required to attend weekly discussions on methods of teaching humanities and will teach discussion sections of one of the humanities courses. Attendance at lecture of the course in which the student is participating is required. (P/NP grades only.) ", + "name": "HUM 195", + "prereqs": [], + "title": "Methods of Teaching Humanities (4)" + }, + "HUM 199": { + "dept": "HUM", + "description": "Individually guided readings or projects in area of humanities not normally covered in standard curriculum. ", + "name": "HUM 199", + "prereqs": [], + "title": "Special Studies (2\u20134)" + }, + "HUM 2": { + "dept": "HUM", + "description": "The Roman Empire, the Christian transformation of the classical world in late antiquity, and the rise of a European culture during the Middle Ages. Representative texts from Latin authors, early Christian literature, the Germanic tradition, and the high Middle Ages. Revelle students must take course for letter grade. ", + "name": "HUM 2", + "prereqs": [], + "title": "Rome, Christianity, and the Middle Ages (6)" + }, + "HUM 200": { + "dept": "HUM", + "description": "Selected topics in the history, literature, and thought of Mediterranean antiquity and its successor-cultures. Emphasis on identifying both common themes and cultural distinctiveness. Discussion of pedagogical approaches to this material. Required of all graduate instructional assistants in the humanities sequence. ", + "name": "HUM 200", + "prereqs": [], + "title": "Seminar in the Humanities (4)" + }, + "HUM 3": { + "dept": "HUM", + "description": "The revival of classical culture and values and the reaction against medieval ideas concerning the place of human beings in the world. The Protestant Reformation and its intellectual and political consequences. The philosophical background to the scientific revolution. Revelle students must take the course for a letter grade. Students may not receive credit for HUM 3 and HUM 3GS. ", + "name": "HUM 3", + "prereqs": [ + "HUM 2", + "HUM 1" + ], + "title": "Renaissance, Reformation, and Early Modern Europe (4)" + }, + "HUM 4": { + "dept": "HUM", + "description": "The enlightenment\u2019s revisions of traditional thought; the rise of classical liberalism; the era of the first modern political revolutions; romantic ideas of nature and human life. Revelle students must take course for letter grade. ", + "name": "HUM 4", + "prereqs": [], + "title": "Enlightenment, Romanticism, Revolution (1660\u20131848) (4)" + }, + "HUM 5": { + "dept": "HUM", + "description": "Challenges to liberalism posed by such movements as socialism, imperialism, and nationalism; the growth of new forms of self-expression and new conceptions of individual psychology. Revelle students must take course for letter grade. ", + "name": "HUM 5", + "prereqs": [], + "title": "Modern Culture (1848\u2013present) (4)" + }, + "INTL 101": { + "dept": "INTL", + "description": "and Society in International Perspective (4)", + "name": "INTL 101", + "prereqs": [], + "title": "Culture" + }, + "INTL 102": { + "dept": "INTL", + "description": "Politics, and International Change (4)", + "name": "INTL 102", + "prereqs": [], + "title": "Economics," + }, + "INTL 190": { + "dept": "INTL", + "description": "Required seminar for International Studies seniors. Readings and discussion of topics in international and comparative studies from an interdisciplinary perspective. Emphasis on independent work and completion of a research paper. ", + "name": "INTL 190", + "prereqs": [ + "INTL 101", + "INTL 102" + ], + "title": "Seminar in International Studies (4)" + }, + "INTL 190H": { + "dept": "INTL", + "description": "Honors Seminar in International Studies (4)", + "name": "INTL 190H", + "prereqs": [], + "title": "" + }, + "INTL 196H": { + "dept": "INTL", + "description": "Open only to seniors who have completed INTL 190H. Completion of an honors thesis under the supervision of a member of the International Studies faculty. ", + "name": "INTL 196H", + "prereqs": [ + "INTL 190H" + ], + "title": "International Studies Honors Program (4)" + }, + "INTL 197": { + "dept": "INTL", + "description": "Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ", + "name": "INTL 197", + "prereqs": [], + "title": "Internship (1)" + }, + "INTL 97": { + "dept": "INTL", + "description": "Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ", + "name": "INTL 97", + "prereqs": [], + "title": "Internship (1)" + }, + "JAPN 135A": { + "dept": "JAPN", + "description": "Training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ", + "name": "JAPN 135A", + "prereqs": [ + "JAPN 20C" + ], + "title": "Japanese for Professional Purposes (4)" + }, + "JAPN 135B": { + "dept": "JAPN", + "description": "Continuation of training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ", + "name": "JAPN 135B", + "prereqs": [ + "JAPN 135A" + ], + "title": "Japanese for Professional Purposes II (4)" + }, + "JAPN 135C": { + "dept": "JAPN", + "description": "Continuation of training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ", + "name": "JAPN 135C", + "prereqs": [ + "JAPN 135B" + ], + "title": "Japanese for Professional Purposes III (4)" + }, + "Jewish Studies": { + "dept": "Jewish", + "description": "199. Independent Study in Jewish Studies (1-4)", + "name": "Jewish Studies", + "prereqs": [], + "title": "" + }, + "Jewish Studies 1": { + "dept": "Jewish", + "description": "Acquisition of basic vocabulary, fundamentals of Hebrew grammar, conversation, and reading.", + "name": "Jewish Studies 1", + "prereqs": [], + "title": "Beginning Hebrew (5)" + }, + "Jewish Studies 101": { + "dept": "Jewish", + "description": "Reading and analysis of texts from Biblical through modern authors, study of advanced vocabulary and grammar. Course taught in Hebrew and in English.", + "name": "Jewish Studies 101", + "prereqs": [], + "title": "Introduction to Hebrew Texts (4)" + }, + "Jewish Studies 102": { + "dept": "Jewish", + "description": "Further reading and analysis of Hebrew literature from a range of periods. Advanced grammar and vocabulary. Course taught in Hebrew and in English.", + "name": "Jewish Studies 102", + "prereqs": [], + "title": "Intermediate Hebrew Texts (4)" + }, + "Jewish Studies 103": { + "dept": "Jewish", + "description": "Synthesis of fluency, reading, and grammatical skills. Reading of texts from a range of periods.", + "name": "Jewish Studies 103", + "prereqs": [], + "title": "Advanced Hebrew Texts (4)" + }, + "Jewish Studies 110": { + "dept": "Jewish", + "description": "An introductory survey of Jewish history, literature, and culture from antiquity to contemporary times. Topics include sacred texts; the variety of groups and views of Judaism; the historical and geographical movements of the Jewish people; and the intersection of religion, ethnicity, and culture.", + "name": "Jewish Studies 110", + "prereqs": [], + "title": "Introduction to Judaism (4)" + }, + "Jewish Studies 111": { + "dept": "Jewish", + "description": "Study of a particular period, theme, or literature in Jewish civilization. May be taken for credit three times. ", + "name": "Jewish Studies 111", + "prereqs": [], + "title": "Topics in Judaic Studies (4)" + }, + "Jewish Studies 130": { + "dept": "Jewish", + "description": "This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. ", + "name": "Jewish Studies 130", + "prereqs": [], + "title": "Introduction to the Old Testament: The Historical Books (4)" + }, + "Jewish Studies 131": { + "dept": "Jewish", + "description": "This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Topics include: prophecy, social justice, monotheism, suffering, humor, and love. ", + "name": "Jewish Studies 131", + "prereqs": [ + "JUDA 100A" + ], + "title": "Introduction to the Old Testament: The Poetic Books (4)" + }, + "Jewish Studies 198": { + "dept": "Jewish", + "description": "Directed group study on a topic not generally included in the regular curriculum. Student must make arrangements with individual faculty members. (P/NP only)", + "name": "Jewish Studies 198", + "prereqs": [], + "title": "Directed Group Study in Jewish Studies (1-4)" + }, + "Jewish Studies 2": { + "dept": "Jewish", + "description": "Continued study of vocabulary and grammar, emphasis on fluency in conversation, and reading.", + "name": "Jewish Studies 2", + "prereqs": [], + "title": "Intermediate Hebrew (5)" + }, + "Jewish Studies 3": { + "dept": "Jewish", + "description": "Vocabulary, grammar, conversation, introduction to literary and nonliterary texts.", + "name": "Jewish Studies 3", + "prereqs": [], + "title": "Intermediate Hebrew, Continued (5)" + }, + "Jewish Studies 87": { + "dept": "Jewish", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. P/NP grades only. May be taken for credit four times. Seminars are open to sophomores, juniors, and seniors on a space available basis.", + "name": "Jewish Studies 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LATI 122A": { + "dept": "LATI", + "description": "Introductory survey of methods used by social and health scientists to gather primary research data on international migrant and refugee populations, including sample surveys, unstructured interviewing, and ethnographic observation. Basic fieldwork practices, ethics, and problem-solving techniques will also be covered. Students may not receive credit for both SOCI 122A and LATI 122A. Recommended: advanced competency in conversational Spanish. ", + "name": "LATI 122A", + "prereqs": [], + "title": "Field Research Methods for Migration Studies: Seminar (4)" + }, + "LATI 122B": { + "dept": "LATI", + "description": "Students will collect survey and qualitative data among Mexican migrants to the United States and potential migrants, participate in team research, organize data collected for analysis, and submit a detailed outline of an article to be based on field data. Students may not receive credit for both SOCI 122B and LATI 122B. Recommended: advanced competency in conversational Spanish. ", + "name": "LATI 122B", + "prereqs": [ + "LATI 122A" + ], + "title": "Field Research Methods for Migration Studies: Practicum (12)" + }, + "LATI 122C": { + "dept": "LATI", + "description": "Continuation of SOCI 122B. Students analyze primary data they have collected in field research sites and coauthor an article for publication. Methods for organizing and processing field data, techniques of quantitative data analysis, and report preparation conventions will be covered. Students may not receive credit for both SOCI 122C and LATI 122C. ", + "name": "LATI 122C", + "prereqs": [ + "LATI 122B" + ], + "title": "Field Research Methods for Migration Studies: Data Analysis (4)" + }, + "LATI 180": { + "dept": "LATI", + "description": "Readings and discussion of substantive issues and research in Latin American studies. Topics may include the study of a specific society or a particular issue in comparative cross-national perspective. Topics will vary from year to year. ", + "name": "LATI 180", + "prereqs": [ + "LATI 50" + ], + "title": "Special Topics in Latin American Studies (4)" + }, + "LATI 190": { + "dept": "LATI", + "description": "Research seminar on selected topics in the study of Latin America; all students will be required to prepare and present independent research papers. (Honors students will present drafts of senior research theses, of no less than fifty pages in length; non-honors students will present final versions of analytical papers of approximately twenty-five to forty pages in length.) ", + "name": "LATI 190", + "prereqs": [ + "LATI 50" + ], + "title": "Senior Seminar (4)" + }, + "LATI 191": { + "dept": "LATI", + "description": "Independent reading and research under direction of a member of the faculty group in Latin American Studies; goal is to provide honors students with an opportunity to complete senior research thesis (to be defended before three-person interdisciplinary faculty committee). ", + "name": "LATI 191", + "prereqs": [ + "LATI 50" + ], + "title": "Honors Seminar (4)" + }, + "LATI 199": { + "dept": "LATI", + "description": "Guided and supervised reading of the literature on Latin America in the interdisciplinary areas of anthropology, communications, economics, history, literature, political science, and sociology. For students majoring in Latin American Studies, reading will focus around potential topics for senior papers; for honors students in Latin American Studies, reading will culminate in formulation of a prospectus for the research thesis. ", + "name": "LATI 199", + "prereqs": [ + "LATI 50" + ], + "title": "Individual Study (4)" + }, + "LATI 200": { + "dept": "LATI", + "description": "A team-taught course wherein members of the faculty group in Latin American Studies present diverse disciplinary and thematic approaches to the region. Topics vary from year to year. Grades are based on discussions and on a series of analytical papers. ", + "name": "LATI 200", + "prereqs": [], + "title": "Core Seminar on Interdisciplinary Research and Methodology in Latin American Studies (4)" + }, + "LATI 222A": { + "dept": "LATI", + "description": "Survey of methods used by social and health scientists to gather primary data on international migrant and refugee populations, including sample surveys, unstructured interviewing, and ethnographic observation. Students serve as team leaders, design questionnaires, and conduct literature reviews. ", + "name": "LATI 222A", + "prereqs": [], + "title": "Field Research Methods for Migration Studies: Seminar (4)" + }, + "LATI 222B": { + "dept": "LATI", + "description": "Students collect survey and qualitative data in Mexican migrants\u2019 communities of origin and destination, serve as team leaders, organize field data collection within specific subpopulations, and prepare a detailed outline of a proposed journal article to be based on field data. ", + "name": "LATI 222B", + "prereqs": [ + "LATI 222A" + ], + "title": "Field Research Methods for Migration Studies: Practicum (12)" + }, + "LATI 222C": { + "dept": "LATI", + "description": "Serving as team leaders, students design and execute analysis of data they have collected in Mexican and US field research sites, and coauthor a publishable article. Methods for organizing field data, advanced techniques of quantitative and qualitative data analysis, and report preparation conventions are covered. ", + "name": "LATI 222C", + "prereqs": [ + "LATI 222B" + ], + "title": "Field Research Methods for Migration Studies: Data Analysis (4)" + }, + "LATI 298": { + "dept": "LATI", + "description": "Guided and supervised reading of the literature of the several areas included in the interdisciplinary fields of anthropology, communications, economics, history, literature, political science, and sociology. ", + "name": "LATI 298", + "prereqs": [], + "title": "Directed Reading (1\u201312)" + }, + "LATI 299": { + "dept": "LATI", + "description": "Independent work by graduate students engaged in thesis research and writing under the direct supervision of a faculty adviser.", + "name": "LATI 299", + "prereqs": [], + "title": "Independent Research (1\u201312)" + }, + "LATI 50": { + "dept": "LATI", + "description": "Interdisciplinary overview of society and culture in Latin America\u2014including Mexico, the Caribbean, and South America: legacies of conquest, patterns of economic development, changing roles of women, expressions of popular culture, cycles of political change, and U.S.\u2013Latin American relations.", + "name": "LATI 50", + "prereqs": [], + "title": "Introduction to Latin America (4)" + }, + "LATI 500": { + "dept": "LATI", + "description": "The course is designed for teaching assistants to learn effective teaching methods through supervision and mentorship by the faculty. Student will learn handling of discussions; preparation and grading of examinations and other written exercises; and student relations.", + "name": "LATI 500", + "prereqs": [], + "title": "Teaching Apprenticeship (1-4)" + }, + "LATI 87": { + "dept": "LATI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "LATI 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LAWS 101": { + "dept": "LAWS", + "description": "This course will deal in depth each year with a different legal issue of contemporary significance, viewed from the perspectives of political science, history, sociology, and philosophy. Required for students completing the Law and Society minor. May be repeated for credit once, for a maximum total of eight units. ", + "name": "LAWS 101", + "prereqs": [], + "title": "Contemporary Legal Issues (4)" + }, + "LAWS 102S": { + "dept": "LAWS", + "description": "Through lectures and discussions on several controversial topics, students are introduced to the subjects taught in the first year of law school. They learn briefing, case analysis, and the Socratic method of instruction, engage in role-playing exercises, and take law-school examinations. ", + "name": "LAWS 102S", + "prereqs": [], + "title": "Crimes, Civil Wrongs, and Constitution (4)" + }, + "LHCO 202": { + "dept": "LHCO", + "description": "This course examines principles and applications of strategic management and the change management concepts necessary to effectively apply these principles in healthcare organizations. The course provides a structured, stepwise approach to the strategic management process and includes methods for assessing key features of organizational environments and competitive situations, approaches for developing strategic plans, and processes for insuring the successful implementation of strategy. ", + "name": "LHCO 202", + "prereqs": [], + "title": "Strategic Management and Organizational Change (4)" + }, + "LHCO 203": { + "dept": "LHCO", + "description": "and Managing Information and Information Technologies (4)", + "name": "LHCO 203", + "prereqs": [], + "title": "Using" + }, + "LHCO 204": { + "dept": "LHCO", + "description": "This course studies key management concepts and roles of management and how they apply in successful, dynamic organizations. The course examines competencies of effective managers in developing customer focus, planning, selecting and developing individuals and teams, communicating, managing resources, using technology and being adaptable. Students will be exposed to the theory and process of effective negotiation as well as various teambuilding and conflict resolution strategies in a variety of contexts. ", + "name": "LHCO 204", + "prereqs": [], + "title": "Conflict Resolution, Negotiation, and Team Building (2)" + }, + "LHCO 206": { + "dept": "LHCO", + "description": "", + "name": "LHCO 206", + "prereqs": [], + "title": "Topics in Financial Management and Decision Making (2)" + }, + "LHCO 209": { + "dept": "LHCO", + "description": "A critical overview of the tools used to measure outcomes and quality of care, development and use of practical guidelines, advantages and disadvantages of various methods, and the use of such analysis in administrative decision making.\t\t\t\t", + "name": "LHCO 209", + "prereqs": [], + "title": "Outcomes and Quality Improvement (4)" + }, + "LHCO 212": { + "dept": "LHCO", + "description": "Students will learn statistical methods and their most common applications in healthcare management. Topics covered include data presentation, sampling, the development and use of confidence intervals, hypothesis testing, analysis of variance and simple regression. We will also explore elementary probability theory and decision making under uncertainty. Students who have taken LHCO 208 may not receive credit for LHCO 212. ", + "name": "LHCO 212", + "prereqs": [], + "title": "Statistics and Applied Decision Making (2)" + }, + "LHCO 213": { + "dept": "LHCO", + "description": "Students will learn the use of financial information within a healthcare organization. Topics covered will include capital structure, working capital and cash management, the time value of money, and capital budgeting. ", + "name": "LHCO 213", + "prereqs": [], + "title": "Financial Accounting and Analysis (2)" + }, + "LHCO 214": { + "dept": "LHCO", + "description": "This course focuses on developing effective business communication skills for professionals in managerial/senior roles in health care. Writing scenarios include: preparing briefings and updates using presentation software and/or briefing packets; organizing data; constructing proposals and reports; solicitations; coordinating projects via e-mail; and drafting and editing group documents. On-the-job examples from the student\u2019s workplace are used throughout the course. ", + "name": "LHCO 214", + "prereqs": [], + "title": "Practical Business Communication Skills for Healthcare Professionals (2)" + }, + "LHCO 215": { + "dept": "LHCO", + "description": "", + "name": "LHCO 215", + "prereqs": [], + "title": "Modern Health Care (2)" + }, + "LHCO 216": { + "dept": "LHCO", + "description": "Describes the critical knowledge and skills needed to be effective leaders in today\u2019s complex healthcare environment. Sessions cover conflict resolution, leadership and negotiation skills, strategic planning, and ethics. Guest speakers include business leaders and entrepreneurs from the local healthcare industry. ", + "name": "LHCO 216", + "prereqs": [], + "title": "Healthcare Leadership (4)" + }, + "LHCO 217": { + "dept": "LHCO", + "description": "Covers core body of knowledge and skills of project management specific to the healthcare industry. Students learn how to define, plan, and execute a project on time, on budget and within performance specifications. Topics include project life cycle, definition, and charter creation; assembling high performance teams; risk analysis; and project closure. ", + "name": "LHCO 217", + "prereqs": [], + "title": "Project Management for Healthcare Professionals (2)" + }, + "LHCO 218": { + "dept": "LHCO", + "description": "Faculty member directs a student\u2019s study in development of mentorship and leadership skills as related to student\u2019s research interest. Readings, assignments, and formalized career assessment and mentoring sessions designed to integrate course work with the development of the student\u2019s ISP proposal on an applied research topic. This course is taken in the last quarter prior to enrollment in LHCO 298 Independent Study Project course. ", + "name": "LHCO 218", + "prereqs": [], + "title": "Professional Development Seminar: Mentorship and Assessment (2)" + }, + "LHCO 219": { + "dept": "LHCO", + "description": "Students learn and apply concepts and techniques of business process analysis and improvements as building blocks for operations improvement strategies in health care. Students will analyze and improve processes in various contexts using different process improvement tools from simple process-mapping to computer-based process-modeling. Use of fundamental and sophisticated analytical techniques to design and manage efficient and effective operations and processes will be covered. The importance of balancing technical/analytical and organizational/behavioral aspects of business process improvements will be highlighted. ", + "name": "LHCO 219", + "prereqs": [], + "title": "Process Improvement in Health Care (4)" + }, + "LHCO 220": { + "dept": "LHCO", + "description": "The survey course introduces students to the relationship of law to health care, including liability, government regulation, financial and ethical issues, contracting, and negotiation and dispute resolution. The course will incorporate the most current trends related to health law and feature guest speakers on relevant topics. ", + "name": "LHCO 220", + "prereqs": [], + "title": "Topics in Health Law (2)" + }, + "LHCO 298": { + "dept": "LHCO", + "description": "The Independent Study Project (ISP) is the cornerstone of the MAS Program. Students will be involved in a high-level applied research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee consisting of faculty and, when appropriate, industry advisers.\t\t", + "name": "LHCO 298", + "prereqs": [ + "LHCO 218" + ], + "title": "Independent Study Project in the Management of Health Care (4)" + }, + "LIGN 101": { + "dept": "LIGN", + "description": "Language is what makes us human, but how does it work? This course focuses on speech sounds and sound patterns, how words are formed, organized into sentences, and understood, how language changes, and how it is learned. ", + "name": "LIGN 101", + "prereqs": [], + "title": "Introduction to the Study of Language (4)" + }, + "LIGN 105": { + "dept": "LIGN", + "description": "The interpretation of language in understanding the law: 1) the language of courtroom interaction (hearsay, jury instructions); 2) written legal language (contracts, ambiguity, legal fictions); 3) language-based issues in the law (First Amendment, libel and slander). ", + "name": "LIGN 105", + "prereqs": [], + "title": "Law and Language (4)" + }, + "LIGN 108": { + "dept": "LIGN", + "description": "Africa is home to an astonishing variety of languages. This course investigates the characteristics of the major language families as well as population movements and language contact, and how governments attempt to regulate language use. ", + "name": "LIGN 108", + "prereqs": [], + "title": "Languages of Africa (4)" + }, + "LIGN 110": { + "dept": "LIGN", + "description": "The study of sounds that are used in human languages. How speech sounds are physically produced; acoustics of speech; speech perception; practical training in phonetic transcription and in interpreting visual representations of the acoustic signal. The class covers both English and its dialects and languages other than English. ", + "name": "LIGN 110", + "prereqs": [ + "LIGN 101" + ], + "title": "Phonetics (4)" + }, + "LIGN 111": { + "dept": "LIGN", + "description": "Why does one language sound different from another? This course analyzes how languages organize sounds into different patterns, how those sounds interact, and how they fit into larger units, such as syllables. Focus on a wide variety of languages and problem solving. ", + "name": "LIGN 111", + "prereqs": [ + "LIGN 110" + ], + "title": "Phonology I (4)" + }, + "LIGN 112": { + "dept": "LIGN", + "description": "How do we measure differences in the way sounds are produced and perceived? This course focuses on measuring and analyzing the acoustic and auditory properties of sounds as they occur in nonpathological and pathological speech. ", + "name": "LIGN 112", + "prereqs": [ + "LIGN 110" + ], + "title": "Speech Sounds and Speech Disorders (4)" + }, + "LIGN 119": { + "dept": "LIGN", + "description": "(Same as EDS 119) An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ", + "name": "LIGN 119", + "prereqs": [], + "title": "First and Second Language Learning: From Childhood through Adolescence (4)" + }, + "LIGN 120": { + "dept": "LIGN", + "description": "How do some languages express with one word complex meanings that English needs several words to express? Discovery of underlying principles of word formation through problem solving and analysis of data from a wide variety of languages. ", + "name": "LIGN 120", + "prereqs": [ + "LIGN 101" + ], + "title": "Morphology (4)" + }, + "LIGN 121": { + "dept": "LIGN", + "description": "What universal principles determine how words combine into phrases and sentences? Introduction to research methods and results. Emphasis on how argumentation in problem-solving can be used in the development of theories of language. ", + "name": "LIGN 121", + "prereqs": [ + "LIGN 101" + ], + "title": "Syntax I (4)" + }, + "LIGN 130": { + "dept": "LIGN", + "description": "Introduction to the formal study of meaning. What is the meaning of a word? What is the meaning of a sentence? Which role does the context play in determining linguistic meaning? ", + "name": "LIGN 130", + "prereqs": [ + "LIGN 101" + ], + "title": "Semantics (4)" + }, + "LIGN 143": { + "dept": "LIGN", + "description": "Surveys aspects of Spanish phonetics, phonology, morphology, and syntax. Topics include dialect differences between Latin American and Peninsular Spanish (both from a historical and contemporary viewpoint), gender classes, verbal morphology, and clause structure. ", + "name": "LIGN 143", + "prereqs": [ + "LIGN 101" + ], + "title": "The Structure of Spanish (4)" + }, + "LIGN 144": { + "dept": "LIGN", + "description": "A discourse-centered examination of ASL verbal arts: rhyme, meter, rhythm, handedness, nonmanual signals, and spatial mapping; creation of scene and mood; properties of character, dialogue, narration, and voice; cultural tropes; poetic constructions in everyday genres; transcription, body memory and performance. ", + "name": "LIGN 144", + "prereqs": [ + "LISL 1C" + ], + "title": "Discourse Analysis: American Sign Language and Performing Arts (4)" + }, + "LIGN 146": { + "dept": "LIGN", + "description": "An examination of sociolinguistic research on Deaf communities throughout the world, including: sociohistorical contexts for phonological, lexical and syntactic variation, contact between languages, multilingualism, language policies and planning, second language learning, language attitudes, and discourse analysis of specific social contexts. Course will be conducted in ASL. ", + "name": "LIGN 146", + "prereqs": [ + "LISL 1C" + ], + "title": "Sociolinguistics in Deaf Communities (4)" + }, + "LIGN 148": { + "dept": "LIGN", + "description": "The study of how sign languages are structured, and how they are understood and produced by adults. Topics include the contrast between gesture and language, sign language acquisition, brain processing, sociolinguistics, and the role of sign language in reading. ", + "name": "LIGN 148", + "prereqs": [ + "LIGN 101", + "LISL 1C" + ], + "title": "Psycholinguistics of Sign Language (4)" + }, + "LIGN 150": { + "dept": "LIGN", + "description": "Language is constantly changing. This course", + "name": "LIGN 150", + "prereqs": [], + "title": "Historical Linguistics (4)" + }, + "LIGN 152": { + "dept": "LIGN", + "description": "This course is an introduction to the study of the indigenous languages of the Americas. Its goals are to offer orientation in a broad field and to prepare students for possible future research. Topics covered include grammatical structures, genetic classification, characteristics of major language families, and factors affecting language use and mother tongue transmission of these languages in contemporary societies. Recommended preparation: LIGN 101.", + "name": "LIGN 152", + "prereqs": [], + "title": "Indigenous Languages of the Americas (4)" + }, + "LIGN 155": { + "dept": "LIGN", + "description": "History of thought on language", + "name": "LIGN 155", + "prereqs": [], + "title": "Evolution of Language (4)" + }, + "LIGN 160": { + "dept": "LIGN", + "description": "An introduction to the context-dependent aspects of language meaning. Topics include given versus new information, Gricean maxims and rules of conversation, presupposition, implicature, reference and cognitive status, discourse coherence and structure, and speech acts. ", + "name": "LIGN 160", + "prereqs": [ + "LIGN 101" + ], + "title": "Pragmatics (4)" + }, + "LIGN 165": { + "dept": "LIGN", + "description": "An introduction to the fundamental concepts of computational linguistics, in which we study natural language syntax and semantics from an interpretation perspective, describe methods for programming computer systems to perform such interpretation, and survey applications of computational linguistics technology. ", + "name": "LIGN 165", + "prereqs": [], + "title": "Computational Linguistics (4)" + }, + "LIGN 17": { + "dept": "LIGN", + "description": "A rigorous analysis of symbolic systems and their interpretations. Students will learn to encode and decode information using progressively more sophisticated methods; topics covered include ancient and modern phonetic writing systems, hieroglyphics, computer languages, and ciphers (secret codes). ", + "name": "LIGN 17", + "prereqs": [], + "title": "Making and Breaking Codes (4)" + }, + "LIGN 170": { + "dept": "LIGN", + "description": "The study of how humans learn, represent, comprehend, and produce language. Topics include visual and auditory recognition of words, sentence comprehension, reading, sentence production, language acquisition, neural representation of language, bilingualism, and language disorders. ", + "name": "LIGN 170", + "prereqs": [ + "LIGN 101" + ], + "title": "Psycholinguistics (4)" + }, + "LIGN 171": { + "dept": "LIGN", + "description": "A central cognitive, developmental mystery is how children learn their first language. Overview of research in the learning of sound systems, word forms and word meanings, and word combinations. Exploration of the relation between cognitive and language development. ", + "name": "LIGN 171", + "prereqs": [ + "LIGN 101" + ], + "title": "Child Language Acquisition (4)" + }, + "LIGN 174": { + "dept": "LIGN", + "description": "(Same as SOCI 116.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span, within ethnolinguistic minority communities in the United States, across sexual orientations and cultures. Recommended preparation: LIGN", + "name": "LIGN 174", + "prereqs": [], + "title": "Gender and Language in Society (4)" + }, + "LIGN 175": { + "dept": "LIGN", + "description": "The study of language in its social context, with emphasis on the different types of linguistic variation and the principles underlying them. Dialects, registers, gender-based linguistic differences, multilingualism, pidginization and creolization, factors influencing linguistic choice, formal models of variation; emphasis is given both to socially determined differences within the United States and US ethnic groups and to cross-cultural differences in language use and variation. ", + "name": "LIGN 175", + "prereqs": [ + "LIGN 101" + ], + "title": "Sociolinguistics (4)" + }, + "LIGN 176": { + "dept": "LIGN", + "description": "How can we explain the difference between what is literally said versus what is actually conveyed in the language of law, politics, and advertising? How people\u2019s ordinary command of language and their reasoning skills are used to manipulate them. ", + "name": "LIGN 176", + "prereqs": [], + "title": "Language of Politics and Advertising (4)" + }, + "LIGN 177": { + "dept": "LIGN", + "description": "Official and minority languages, pidgins and Creoles, language planning, bilingual education and literacy, code switching, and language attrition. ", + "name": "LIGN 177", + "prereqs": [ + "LIGN 101" + ], + "title": "Multilingualism (4)" + }, + "LIGN 179": { + "dept": "LIGN", + "description": "This course will investigate topics in second language acquisition including the critical period, the processing and neural representation of language in bilinguals, theories of second language acquisition and creolization, exceptional language learners, and parallels with first language acquisition. ", + "name": "LIGN 179", + "prereqs": [ + "LIGN 101" + ], + "title": "Second Language Acquisition Research (4)" + }, + "LIGN 180": { + "dept": "LIGN", + "description": "The mind/body problem, modularity,", + "name": "LIGN 180", + "prereqs": [], + "title": "Language Representation in the Brain (4)" + }, + "LIGN 181": { + "dept": "LIGN", + "description": "Modularity and models of language processing, basic neurophysiology,", + "name": "LIGN 181", + "prereqs": [], + "title": "Language Processing in the Brain (4)" + }, + "LIGN 192": { + "dept": "LIGN", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in linguistics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "LIGN 192", + "prereqs": [], + "title": "Senior Seminar in Linguistics (1)" + }, + "LIGN 195": { + "dept": "LIGN", + "description": "Students lead a class section of a lower-division linguistics course. They also attend a weekly meeting on teaching methods. (This course does not count toward minor or major.) May be repeated for credit, up to a maximum of four units. (P/NP grades only.) ", + "name": "LIGN 195", + "prereqs": [], + "title": "Apprentice Teaching (0\u20134)" + }, + "LIGN 197": { + "dept": "LIGN", + "description": "The student will undertake a program of practical research in a supervised work environment. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies. ", + "name": "LIGN 197", + "prereqs": [], + "title": "Linguistics Internship (2 or 4)" + }, + "LIGN 199": { + "dept": "LIGN", + "description": "The student undertakes a program of research or advanced reading in linguistics under the supervision of a faculty member of the Department of Linguistics. (P/NP grades only.) ", + "name": "LIGN 199", + "prereqs": [], + "title": "Independent Study in Linguistics (2 or 4)" + }, + "LIGN 199H": { + "dept": "LIGN", + "description": "The student undertakes a program of research and advanced reading in linguistics under the supervision of a faculty member in the Department of Linguistics. (P/NP grades only.) ", + "name": "LIGN 199H", + "prereqs": [], + "title": "Honors Independent Study in Linguistics (4)" + }, + "LIGN 200": { + "dept": "LIGN", + "description": "A forum for discussion of current issues. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 200", + "prereqs": [], + "title": "Research Forum (2)" + }, + "LIGN 210": { + "dept": "LIGN", + "description": "This is an introduction to articulatory, acoustic, and auditory phonetics. Major phonetic theories in these areas, and the relationship between phonetics and phonology are discussed. The course also covers experimental design and methodology and provides hands-on experience with laboratory equipment. ", + "name": "LIGN 210", + "prereqs": [], + "title": "Phonetics (4)" + }, + "LIGN 211": { + "dept": "LIGN", + "description": "Introduction to the description and analysis of the sound patterns of language and to the construction of theoretical models, including cognitive rules, representations, and constraints.", + "name": "LIGN 211", + "prereqs": [], + "title": "Phonology (4)" + }, + "LIGN 214": { + "dept": "LIGN", + "description": "This course examines recent developments in controversial areas of phonetics. Topics will vary and will address issues in speech production (articulation, acoustics), speech perception, phonetic theory, and the relationship between phonetics and phonology. May be taken for credit two times. ", + "name": "LIGN 214", + "prereqs": [ + "LIGN 211", + "LIGN 210" + ], + "title": "Topics in Phonetics (4)" + }, + "LIGN 215": { + "dept": "LIGN", + "description": "Discussion of a topic of current phonological interest, with a focus on descriptive, analytical, and theoretical issues in phonology and phonological theory.", + "name": "LIGN 215", + "prereqs": [], + "title": "Topics in Phonology (4)" + }, + "LIGN 220": { + "dept": "LIGN", + "description": "Theories of word structure are examined and confronted with data from a variety of languages: derivational and inflectional morphology, the morphology/phonology, and morphology/syntax interfaces.", + "name": "LIGN 220", + "prereqs": [], + "title": "Morphology (4)" + }, + "LIGN 221": { + "dept": "LIGN", + "description": "An introduction to syntactic phenomena, argumentation, analyses, and theoretical models. Phenomena to be discussed include phrase structure, argument structure, binding, control, and A- and A\u2019-dependencies.", + "name": "LIGN 221", + "prereqs": [], + "title": "Syntax (4)" + }, + "LIGN 225": { + "dept": "LIGN", + "description": "Descriptive and theoretical problems in syntactic analysis. Theoretical consequences of alternative analyses. May be repeated for credit when topics vary.", + "name": "LIGN 225", + "prereqs": [], + "title": "Topics in Syntax (4)" + }, + "LIGN 228": { + "dept": "LIGN", + "description": "(Same as Psychology 232.) Computational theories of human cognition, particularly Bayesian approaches.\u00a0Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision making; perception; causal reasoning; categorization; language. Recommended preparation: previous experience with statistics, machine learning, and/or functional programming helpful.", + "name": "LIGN 228", + "prereqs": [], + "title": "Probabilistic Models of Cognition (4)" + }, + "LIGN 230": { + "dept": "LIGN", + "description": "Theories of semantic structure. The relation of meaning to grammar, and how it is to be accommodated in an overall model of linguistic organization. The application of formal semantics to the description of natural language.", + "name": "LIGN 230", + "prereqs": [], + "title": "Semantics (4)" + }, + "LIGN 232": { + "dept": "LIGN", + "description": "(Same as Psychology 235.) This course will explore the development of concepts and linguistic meaning via classic case studies in semantics, including word learning, quantifier acquisition, and the foundations of mathematics. The course will draw on evidence from linguistics, the philosophy of language, and developmental psychology.", + "name": "LIGN 232", + "prereqs": [], + "title": "Semantic Development (4)" + }, + "LIGN 235": { + "dept": "LIGN", + "description": "Advanced material in special areas of the study of meaning and its relation to formal aspects of human language. May be taken for credit three times as topics vary.", + "name": "LIGN 235", + "prereqs": [], + "title": "Topics in Semantics (2\u20134)" + }, + "LIGN 238": { + "dept": "LIGN", + "description": "(Same as Cognitive Science 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. As topics vary, may be repeated for credit.", + "name": "LIGN 238", + "prereqs": [], + "title": "Topics in Cognitive Linguistics (0\u20134)" + }, + "LIGN 240": { + "dept": "LIGN", + "description": "Techniques of discovering the structure of a language through elicitation of data from native speaker consultants. Phonemic, morphemic, and syntactic analysis. ", + "name": "LIGN 240", + "prereqs": [ + "LIGN 110" + ], + "title": "Field Methods (4)" + }, + "LIGN 241": { + "dept": "LIGN", + "description": "Fieldwork continuing the research of the previous quarter; student-directed elicitations on topics of interest. ", + "name": "LIGN 241", + "prereqs": [ + "LIGN 240" + ], + "title": "Fieldwork (4)" + }, + "LIGN 245": { + "dept": "LIGN", + "description": "Introduction to computational corpus tools for performing empirically grounded linguistic investigations. Annotated and unannotated corpora; annotation schemes. Searching using regular expressions. UNIX tools. The PERL programming language. Publically available language processing systems.", + "name": "LIGN 245", + "prereqs": [], + "title": "Computational Corpus Linguistics (4)" + }, + "LIGN 247": { + "dept": "LIGN", + "description": "Advanced material covering particular topics relating to the theoretical analysis of the pragmatics of natural languages. May be taken for credit three times as topics vary. ", + "name": "LIGN 247", + "prereqs": [], + "title": "Topics in Pragmatics (2\u20134)" + }, + "LIGN 248": { + "dept": "LIGN", + "description": "Descriptive and theoretical problems in morphology. Theoretical and empirical consequences of alternative analyses. May be taken for credit three times. ", + "name": "LIGN 248", + "prereqs": [ + "LIGN 220" + ], + "title": "Topics in Morphology (4)" + }, + "LIGN 251": { + "dept": "LIGN", + "description": "Probabilistic approaches to language knowledge, acquisition, and use. Quantitative analysis of linguistic data. Quantitative models in linguistic theory. Covers basic probability theory and tools of statistical analysis for language, including linear regression, ANOVA, generalized linear models (e.g., logistic regression), data visualization. Familiarity with probability theory highly encouraged.", + "name": "LIGN 251", + "prereqs": [], + "title": "Probabilistic Methods in Linguistics (4)" + }, + "LIGN 252": { + "dept": "LIGN", + "description": "", + "name": "LIGN 252", + "prereqs": [], + "title": "Advanced Probabilistic Models of Language (4)" + }, + "LIGN 255": { + "dept": "LIGN", + "description": "The study of human language evolution from a variety of perspectives: anatomical, comparative, computational, cultural, experimental, generational, genetic, gestural, historical, neural, phonetic/phonological, pragmatic, semantic, semiotic, syntactic, etc. May be taken for credit three times when topics vary.", + "name": "LIGN 255", + "prereqs": [], + "title": "Topics in Language Evolution (4)" + }, + "LIGN 256": { + "dept": "LIGN", + "description": "(Same as CSE 256.) Introduction to modern statistical approaches to natural language processing: part-of-speech tagging, word-sense disambiguation and parsing, using Markov models, hidden Markov models, and probabilistic context-free grammars. Recommended prerequisites: one of LIGN 165, LIGN 245, CSE 151, CSE 250A, CSE 254. ", + "name": "LIGN 256", + "prereqs": [], + "title": "Statistical Natural Language Processing (4)" + }, + "LIGN 272": { + "dept": "LIGN", + "description": "Issues of language representation and neural instantiation that arise in studies of neural imaging, language disorders, multilingualism and second language acquisition, animal communication, and the origins and evolution of language. May be repeated for credit when topics vary.", + "name": "LIGN 272", + "prereqs": [], + "title": "Topics in Neurolinguistics (4)" + }, + "LIGN 274": { + "dept": "LIGN", + "description": "Investigation of problems in psycholinguistics\u2014the study of how humans learn, represent, comprehend, and produce language\u2014from a computational perspective. Research article readings covering word-level, sentence-level, and discourse-level processing. Prior background in psycholinguistics and/or computational linguistics highly recommended.", + "name": "LIGN 274", + "prereqs": [], + "title": "Computational Psycholinguistics (4)" + }, + "LIGN 279": { + "dept": "LIGN", + "description": "Language acquisition is central to theories about human development, cognition, brain organization, and language origins and change. Topics include the role of input and critical periods on language outcome and processing, neural organization, and sign language creation. ", + "name": "LIGN 279", + "prereqs": [], + "title": "Topics in Language Acquisition (4)" + }, + "LIGN 280": { + "dept": "LIGN", + "description": "An overview of sign language research in terms of how it informs language theory. Topics include the structure of ASL, acquisition, psycholinguistic and neurolinguistic processing of sign language in comparison to spoken language, critical period effects, and language evolution. ", + "name": "LIGN 280", + "prereqs": [], + "title": "Sign Language Research (4)" + }, + "LIGN 281": { + "dept": "LIGN", + "description": "Children\u2019s first language acquisition and how it illuminates linguistic, cognitive, and neurolingusitic theory. Topics include past and current research with a focus on design, methodology, and data analysis in child language.", + "name": "LIGN 281", + "prereqs": [], + "title": "Language Acquisition Theory and Research (4)" + }, + "LIGN 282": { + "dept": "LIGN", + "description": "How the environment and the biology of language, including sensory motor modality and neural development, affect language development. Topics include the paradigms used to study the critical period for language.", + "name": "LIGN 282", + "prereqs": [], + "title": "Biology and Environment in Language Acquisition (4)" + }, + "LIGN 283": { + "dept": "LIGN", + "description": "(Same as Psychology 260.) This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language.", + "name": "LIGN 283", + "prereqs": [], + "title": "Language and Conceptual Development (4)" + }, + "LIGN 293": { + "dept": "LIGN", + "description": "Gathering and interpreting data, formulating research questions and hypotheses, making the predictions of hypotheses explicit, finding relevant evidence, and organizing research results into suitable form for presentation in abstracts, talks, and research papers. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 293", + "prereqs": [], + "title": "Research Practicum (0\u20134)" + }, + "LIGN 296": { + "dept": "LIGN", + "description": "Individual research. May be repeated for credit.", + "name": "LIGN 296", + "prereqs": [], + "title": "Directed Research (1\u20138)" + }, + "LIGN 299": { + "dept": "LIGN", + "description": "Directed research on dissertation topic for students who have been admitted to candidacy for the PhD degree. May be repeated for credit. ", + "name": "LIGN 299", + "prereqs": [], + "title": "Doctoral Research (1\u201312)" + }, + "LIGN 3": { + "dept": "LIGN", + "description": "The role of language in thought, myth, ritual, advertising, politics, and the law. Language variation, change, and loss; multilingualism, pidginization and creolization; language planning, standardization, and prescriptivism; writing systems. ", + "name": "LIGN 3", + "prereqs": [], + "title": "Language as a Social and Cultural Phenomenon (4)" + }, + "LIGN 4": { + "dept": "LIGN", + "description": "Fundamental issues in language and cognition. Differences between animal communication, sign systems, and human language; origins and evolution of language; neural basis of language; language acquisition in children and adults. ", + "name": "LIGN 4", + "prereqs": [], + "title": "Language as a Cognitive System (4)" + }, + "LIGN 5": { + "dept": "LIGN", + "description": "Introduction to the study of language through the investigation of invented languages, whether conscious (Elvish, Klingon, Esperanto) or unconscious (creoles, twin/sibling languages). Students will participate in the invention of a language fragment. Topics discussed include language structure, history, culture, and writing systems. ", + "name": "LIGN 5", + "prereqs": [], + "title": "The Linguistics of Invented Languages (4)" + }, + "LIGN 502": { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in the department\u2019s linguistics courses, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. The student must be serving as a teaching assistant in a LIGN course to receive credit.", + "name": "LIGN 502", + "prereqs": [], + "title": "Apprentice Teaching of Linguistics (1\u20134)" + }, + "LIGN 503": { + "dept": "LIGN", + "description": "Teaching of American Sign Language (1\u20134)", + "name": "LIGN 503", + "prereqs": [], + "title": "Apprentice" + }, + "LIGN 504": { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in French, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 504", + "prereqs": [], + "title": "Apprentice Teaching of French (1\u20134)" + }, + "LIGN 505": { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in German, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 505", + "prereqs": [], + "title": "Apprentice Teaching of German (1\u20134)" + }, + "LIGN 506": { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Italian, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 506", + "prereqs": [], + "title": "Apprentice Teaching of Italian (1\u20134)" + }, + "LIGN 507": { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Spanish, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 507", + "prereqs": [], + "title": "Apprentice Teaching of Spanish (1\u20134)" + }, + "LIGN 508": { + "dept": "LIGN", + "description": "Teaching of Language/Directed Study (1\u20134)", + "name": "LIGN 508", + "prereqs": [], + "title": "Apprentice" + }, + "LIGN 509": { + "dept": "LIGN", + "description": "Teaching, Head Teaching Assistant (1\u20134)", + "name": "LIGN 509", + "prereqs": [], + "title": "Apprentice" + }, + "LIGN 510": { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Arabic, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 510", + "prereqs": [], + "title": "Apprentice Teaching of Arabic (1\u20134)" + }, + "LIGN 511": { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Portuguese, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "name": "LIGN 511", + "prereqs": [], + "title": "Apprentice Teaching of Portuguese (1\u20134)" + }, + "LIGN 512": { + "dept": "LIGN", + "description": "(1\u20134)", + "name": "LIGN 512", + "prereqs": [], + "title": "Apprentice Teaching of Heritage Korean" + }, + "LIGN 513": { + "dept": "LIGN", + "description": "Vietnamese (1\u20134)", + "name": "LIGN 513", + "prereqs": [], + "title": "Apprentice Teaching of Heritage" + }, + "LIGN 514": { + "dept": "LIGN", + "description": "Persian (1\u20134)", + "name": "LIGN 514", + "prereqs": [], + "title": "Apprentice Teaching of Heritage" + }, + "LIGN 515": { + "dept": "LIGN", + "description": "Filipino (1\u20134)", + "name": "LIGN 515", + "prereqs": [], + "title": "Apprentice Teaching of Heritage" + }, + "LIGN 7": { + "dept": "LIGN", + "description": "Deaf history since the eighteenth century. The structure of American Sign Language and comparison with oral languages. ASL poetry and narrative and Deaf people\u2019s system of cultural knowledge. Basic questions concerning the nature of language and its relation to culture. ", + "name": "LIGN 7", + "prereqs": [], + "title": "Sign Language and Its Culture (4)" + }, + "LIGN 8": { + "dept": "LIGN", + "description": "Language in American culture and society.", + "name": "LIGN 8", + "prereqs": [], + "title": "Languages and Cultures in America (4)" + }, + "LIGN 87": { + "dept": "LIGN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "LIGN 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LTAF 110": { + "dept": "LTAF", + "description": "Survey of various genres of African and oral literary traditions. Oral narrative genres, investigation of proverb, riddle, praise poetry, and epic. Development and use of a methodology to analyze aspects of performance, composition, and education in oral traditional systems.", + "name": "LTAF 110", + "prereqs": [], + "title": "African Oral Literature (4)" + }, + "LTAF 120": { + "dept": "LTAF", + "description": "This course traces the rise of modern literature in traditional African societies disrupted by the colonial and neocolonial experience. Contemporary films by African and Western artists will provide an additional insight into the complex social self-images of the continent.", + "name": "LTAF 120", + "prereqs": [], + "title": "Literature and Film of Modern Africa (4)" + }, + "LTAM 100": { + "dept": "LTAM", + "description": "An introductory historical and cultural overview of the various Latino/a populations in the United States with a study of representative cultural texts.", + "name": "LTAM 100", + "prereqs": [], + "title": "Latino/a Cultures in the United States (4)" + }, + "LTAM 101": { + "dept": "LTAM", + "description": "Latino/a-Chicano/a Cultures: 1848\u20131960 (4)", + "name": "LTAM 101", + "prereqs": [], + "title": "Early" + }, + "LTAM 105": { + "dept": "LTAM", + "description": "and Sexuality in Latino/a Cultural Production (4)", + "name": "LTAM 105", + "prereqs": [], + "title": "Gender" + }, + "LTAM 106": { + "dept": "LTAM", + "description": "Chicana and Mexican Women Writings (4)", + "name": "LTAM 106", + "prereqs": [], + "title": "Modern" + }, + "LTAM 107": { + "dept": "LTAM", + "description": "Latino/a and US Ethnic Cultures (4)", + "name": "LTAM 107", + "prereqs": [], + "title": "Comparative" + }, + "LTAM 108": { + "dept": "LTAM", + "description": "The course will center on Chicano/a-Latino/a writers and movements of literary, intellectual, cultural, or political significance. Texts may be read in the original language or in English. May be repeated for credit as topics vary.", + "name": "LTAM 108", + "prereqs": [], + "title": "Chicano/a and Latino/a Cultures: Intellectual and Political Traditions (4)" + }, + "LTAM 109": { + "dept": "LTAM", + "description": "Production of the Latino/a Diasporas (4)", + "name": "LTAM 109", + "prereqs": [], + "title": "Cultural" + }, + "LTAM 110": { + "dept": "LTAM", + "description": "Reading of representative works in Latin American literature with a view to literary analysis (form, theme, meaning), the developmental processes of the literature, and the many contexts: historical, social, cultural. Texts may be read in English. May be repeated for credit as topics vary.", + "name": "LTAM 110", + "prereqs": [], + "title": "Latin American Literature in Translation (4)" + }, + "LTAM 111": { + "dept": "LTAM", + "description": "Comparative survey of Caribbean literatures from the Spanish, French, English, and Dutch Caribbean. Literary texts trace historical paradigms including the development of plantation slavery, emancipation, the quest for nationhood, migration, and transnational identities. Films and music may complement discussion.", + "name": "LTAM 111", + "prereqs": [], + "title": "Comparative Caribbean Discourse (4)" + }, + "LTAM 120": { + "dept": "LTAM", + "description": "Examines the growing Iranian American culture, focusing on developments in Iranian American cinematic and popular culture.", + "name": "LTAM 120", + "prereqs": [], + "title": "Iranian American Culture (4)" + }, + "LTAM 130": { + "dept": "LTAM", + "description": "An analysis of the readings and appropriations of European and US traditions by Latin American, Caribbean, and Filipino writers. The course addresses philosophies, ideologies, and cultural movements and explores the specific literary strategies used by authors in constructing their particular \u201ccosmovisi\u00f3n.\u201d", + "name": "LTAM 130", + "prereqs": [], + "title": "Reading North by South (4)" + }, + "LTAM 140": { + "dept": "LTAM", + "description": "Study of the relationships between cultural production (literature, film, popular culture), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, and revolution. Repeatable for credit when topics vary.", + "name": "LTAM 140", + "prereqs": [], + "title": "Topics in Culture and Politics (4)" + }, + "LTAM 87": { + "dept": "LTAM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "LTAM 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LTCH 101": { + "dept": "LTCH", + "description": "in Contemporary Chinese Literature (4)", + "name": "LTCH 101", + "prereqs": [], + "title": "Readings" + }, + "LTCO 201": { + "dept": "LTCO", + "description": "Contemporary theories of the significance of literary form. The seminar will concentrate on major interpretive approaches drawn from several areas of literary, cultural, and political analysis, including Marxist theory, feminism, psychoanalytic theory, postcolonial studies, LGBT studies, diaspora studies, and others. The particular focus and approach may vary. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department. Nongraduate students may enroll with consent of instructor.", + "name": "LTCO 201", + "prereqs": [], + "title": "Theories and Methods of Literary Analysis (4)" + }, + "LTCO 274": { + "dept": "LTCO", + "description": "A consideration of a representative selection of works relating to a theme, form, or literary genre. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCO 274", + "prereqs": [], + "title": "Genre Studies (4)" + }, + "LTCO 281": { + "dept": "LTCO", + "description": "A study of literature and film in relation to one another, to critical and aesthetic theories, and to historical context. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCO 281", + "prereqs": [], + "title": "Literature and Film (4)" + }, + "LTCO 282": { + "dept": "LTCO", + "description": "Questions and problems from the history of philosophy or from the various fields of philosophy (e.g., epistemology, ethics, logic) in their interaction with intellectual issues and questions addressed by literary criticism and theory. May be taken for credit up to three times. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCO 282", + "prereqs": [], + "title": "Literature and Philosophy (4)" + }, + "LTCO 284": { + "dept": "LTCO", + "description": "This interdisciplinary course looks at performativity as a social process of cultural significance. It examines the works of John Searle, Jacques Derrida, Judith Butler, and Jose Esteban Munoz and underlines the role of performative action in linguistic, literary, cinematic, theatrical, political, and other forms of human interactivity. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCO 284", + "prereqs": [], + "title": "Performativity (4)" + }, + "LTCO 285": { + "dept": "LTCO", + "description": "Research in literary theory and aesthetic philosophies. Single and multiple authors and topics; Plato and Aristotle, Renaissance treatises, Winckleman, Kant and Hegel in the Enlightenment, Warburg, Heidegger and Panofsky, contemporary art theory, et al. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCO 285", + "prereqs": [], + "title": "Literature and Aesthetics (4)" + }, + "LTCO 287": { + "dept": "LTCO", + "description": "A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. May be repeated for credit as topics vary.", + "name": "LTCO 287", + "prereqs": [], + "title": "Culture and Political Theory (4)" + }, + "LTCO 297": { + "dept": "LTCO", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "name": "LTCO 297", + "prereqs": [], + "title": "Directed Studies: Reading Course (1\u201312)" + }, + "LTCO 298": { + "dept": "LTCO", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "name": "LTCO 298", + "prereqs": [], + "title": "Special Projects: Writing Course (1\u201312)" + }, + "LTCO 299": { + "dept": "LTCO", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "name": "LTCO 299", + "prereqs": [], + "title": "Dissertation (1\u201312)" + }, + "LTCS 100": { + "dept": "LTCS", + "description": "and Methods in Cultural Studies (4)", + "name": "LTCS 100", + "prereqs": [], + "title": "Theories" + }, + "LTCS 102": { + "dept": "LTCS", + "description": "Survey and application of methods central to cultural studies as a critical social practice, examining the relationship between cultural studies and social transformation. Students will study varieties of material culture, and experiment with techniques of reading, interpretation, and intervention.", + "name": "LTCS 102", + "prereqs": [], + "title": "Practicing Cultural Studies (4)" + }, + "LTCS 108": { + "dept": "LTCS", + "description": "This course explores the idea of artificial intelligence in both art and science, its relation to the quest to identify what makes us human, and the roles gender and race have played in both. Students may not receive credit for CGS 108 and LTCS 108.", + "name": "LTCS 108", + "prereqs": [], + "title": "Gender, Race, and Artificial Intelligence (4)" + }, + "LTCS 110": { + "dept": "LTCS", + "description": "A reading of recent theory on popular culture and a study of particular texts dealing with popular cultural practices, both contemporary and noncontemporary, as sites of conflict and struggle. LTCS 110 and LTCS 110GS may be taken for credit for a combined total of three times.", + "name": "LTCS 110", + "prereqs": [], + "title": "Popular Culture (4)" + }, + "LTCS 111": { + "dept": "LTCS", + "description": "Topics in Popular Culture in Historical Context (4)", + "name": "LTCS 111", + "prereqs": [], + "title": "Special" + }, + "LTCS 119": { + "dept": "LTCS", + "description": "(Cross-listed with CGS 119.) The course explores the politics of pleasure in relation to the production, reception, and performance of Asian American identities in the mass media of film, video, and the Internet. The course considers how the \u201cdeviant\u201d sexuality of Asian Americans (e.g., hypersexual women and emasculated men) does more than uniformly harm and subjugate Asian American subjects. The texts explored alternate between those produced by majoritarian culture and the interventions made by Asian American filmmakers. Students may not receive credit for LTCS 119 and CGS 119.", + "name": "LTCS 119", + "prereqs": [], + "title": "Asian American Film and Media (4)" + }, + "LTCS 120": { + "dept": "LTCS", + "description": "The course will explore the relation among cultural production, institutions, history, and ideology during selected historical periods. In considering different kinds of texts, relations of power and knowledge at different historical moments will be discussed. Repeatable for credit when topics vary.", + "name": "LTCS 120", + "prereqs": [], + "title": "Historical Perspectives on Culture (4)" + }, + "LTCS 125": { + "dept": "LTCS", + "description": "Perspectives on Immigration and Citizenship (4)", + "name": "LTCS 125", + "prereqs": [], + "title": "Cultural" + }, + "LTCS 130": { + "dept": "LTCS", + "description": "Race/Ethnicity, Class, and Culture (4)", + "name": "LTCS 130", + "prereqs": [], + "title": "Gender," + }, + "LTCS 131": { + "dept": "LTCS", + "description": "in Queer Cultures/Queer Subcultures (4)", + "name": "LTCS 131", + "prereqs": [], + "title": "Topics" + }, + "LTCS 132": { + "dept": "LTCS", + "description": "Topics in Social Identities and the Media (4)", + "name": "LTCS 132", + "prereqs": [], + "title": "Special" + }, + "LTCS 133": { + "dept": "LTCS", + "description": "Studies of cultural dimensions of immigration and citizenship. This course examines the diverse cultural texts\u2014literature, law, film, music, the televisual images, etc., that both shape and are shaped by immigration and the idea of citizenship in different national and historical contexts.", + "name": "LTCS 133", + "prereqs": [], + "title": "Globalization and Culture (4)" + }, + "LTCS 134": { + "dept": "LTCS", + "description": "This course examines the cultural practices of revolutionary societies from the French Revolution to present time. It focuses on China, Cuba, Russia, and Iran and explores how various cultural practices are produced in the course of building revolutionary societies.", + "name": "LTCS 134", + "prereqs": [], + "title": "Culture and Revolution (4)" + }, + "LTCS 141": { + "dept": "LTCS", + "description": "The role of race and culture within the history of empires; may select a single empire for consideration, such as France, Britain, United States, or Japan, or choose to examine the role of race and culture in comparative histories of colonialism. Repeatable for credit when readings and focus vary.", + "name": "LTCS 141", + "prereqs": [], + "title": "Special Topics in Race and Empire (4)" + }, + "LTCS 150": { + "dept": "LTCS", + "description": "The course will examine one or more forms of cultural production or cultural practice from a variety of theoretical and historical perspectives. Topics may include: contemporary debates on culture, genres of popular music/fiction/film, AIDS and culture, the history of sexuality, subcultural styles, etc. Repeatable for credit when topics vary.", + "name": "LTCS 150", + "prereqs": [], + "title": "Topics in Cultural Studies (4)" + }, + "LTCS 155": { + "dept": "LTCS", + "description": "A medical humanities course that examines compelling written and cinematic accounts of health issues confronting contemporary societies such as environmental pollution, contaminated food supply, recreational drug use, HIV/AIDS, cancer, chronic conditions (allergies, diabetes, obesity, arthritis), famine, natural disasters, and war. May be taken for credit two times when topics vary.", + "name": "LTCS 155", + "prereqs": [], + "title": "Health, Illness, and Global Culture (4)" + }, + "LTCS 165": { + "dept": "LTCS", + "description": "This course will examine the representation and politics of", + "name": "LTCS 165", + "prereqs": [], + "title": "Special Topics: The Politics of Food (4)" + }, + "LTCS 170": { + "dept": "LTCS", + "description": "The course will focus on visual practices and discourses in their intersection and overlap, from traditional media, print, and photography to film, video, TV, computers, medical scanners, and the Internet.", + "name": "LTCS 170", + "prereqs": [], + "title": "Visual Culture (4)" + }, + "LTCS 172": { + "dept": "LTCS", + "description": "Topics in Screening Race/Ethnicity, Gender and Sexuality (4)", + "name": "LTCS 172", + "prereqs": [], + "title": "Special" + }, + "LTCS 173": { + "dept": "LTCS", + "description": "This course focuses on the critical study of representations of violence, such as war, genocide, sexual violence, and crime, across a range of media, including literature, film, photography, and other forms of visual culture. Repeatable for credit when readings and focus vary.", + "name": "LTCS 173", + "prereqs": [], + "title": "Topics in Violence and Visual Culture (4)" + }, + "LTCS 180": { + "dept": "LTCS", + "description": "Introduction to a script programming language (like Python + NLTK or R) and its usages in the processing of literary and historical digital corpora.", + "name": "LTCS 180", + "prereqs": [], + "title": "Programming for the Humanities (4)" + }, + "LTCS 198": { + "dept": "LTCS", + "description": "Directed group research, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.) ", + "name": "LTCS 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTCS 199": { + "dept": "LTCS", + "description": "Individual reading in an area not covered in courses currently offered by the department. (P/NP only.) ", + "name": "LTCS 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTCS 222": { + "dept": "LTCS", + "description": "This course will consider various theoretical approaches to film texts (historical-materialist, feminist, psychoanalytic, semiotic) as well as the history of film, the political economy of film production and distribution, exhibition practices, and spectatorship in national and transnational contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCS 222", + "prereqs": [], + "title": "Topics in Theory and History of Film (4)" + }, + "LTCS 225": { + "dept": "LTCS", + "description": "and Historical Analysis of Cultural Texts (4)", + "name": "LTCS 225", + "prereqs": [], + "title": "Interdisciplinary" + }, + "LTCS 250": { + "dept": "LTCS", + "description": "This seminar will be organized around any of various topic areas relating to cultural studies. These might include studies in colonialism, historicism, gender, sexuality, social institutions, popular culture, subaltern practices, etc. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCS 250", + "prereqs": [], + "title": "Topics in Cultural Studies (4)" + }, + "LTCS 256": { + "dept": "LTCS", + "description": "The course will explore work in cultural studies, feminist studies, and queer theory of scientific practices altering social relations, cultural identities, and conceptions of \u201cnature.\u201d Issues may include the AIDS pandemic, genetic research, electronic communities, reproductive technologies, and other topics. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCS 256", + "prereqs": [], + "title": "Cultural Studies of Technoscience (4)" + }, + "LTCS 260": { + "dept": "LTCS", + "description": "Selected topics on the construction of national cultural identities. Investigation of the dynamics of canon formation and nation building in specific historical contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTCS 260", + "prereqs": [], + "title": "National Cultures (4)" + }, + "LTCS 297": { + "dept": "LTCS", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "name": "LTCS 297", + "prereqs": [], + "title": "Directed Studies: Reading Course (1\u201312)" + }, + "LTCS 298": { + "dept": "LTCS", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "name": "LTCS 298", + "prereqs": [], + "title": "Special Projects: Writing Course (1\u201312)" + }, + "LTCS 299": { + "dept": "LTCS", + "description": "Research toward the dissertation. Open only to PhD students who have advanced to candidacy. Repeatable for credit.", + "name": "LTCS 299", + "prereqs": [], + "title": "Dissertation (1\u201312)" + }, + "LTCS 50": { + "dept": "LTCS", + "description": "An introduction to cultural studies with a focus on the following areas: literary and historical studies, popular culture, women\u2019s studies, ethnic studies, science studies, and gay/lesbian studies. Particular emphasis on the question of \u201ccultural practices\u201d and their social and political conditions and effects.", + "name": "LTCS 50", + "prereqs": [], + "title": "Introduction to Cultural Studies (4)" + }, + "LTCS 52": { + "dept": "LTCS", + "description": "This course is designed to complement LTCS 50, Introduction to Cultural Studies. In this course, cultural studies methods are further introduced and applied to various concrete topics in order to illustrate the practical analysis of culture and cultural forms.", + "name": "LTCS 52", + "prereqs": [], + "title": "Topics in Cultural Studies (4)" + }, + "LTCS 87": { + "dept": "LTCS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "name": "LTCS 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LTEA 100A": { + "dept": "LTEA", + "description": "A survey of different genres of traditional Chinese poetry from various periods.", + "name": "LTEA 100A", + "prereqs": [], + "title": "Classical Chinese Poetry in Translation (4)" + }, + "LTEA 100B": { + "dept": "LTEA", + "description": "A survey of Chinese poetry written in the vernacular from 1918 to 1949.", + "name": "LTEA 100B", + "prereqs": [], + "title": "Modern Chinese Poetry in Translation (4)" + }, + "LTEA 100C": { + "dept": "LTEA", + "description": "Contemporary Chinese Poetry in Translation (4)", + "name": "LTEA 100C", + "prereqs": [], + "title": "" + }, + "LTEA 110A": { + "dept": "LTEA", + "description": "The course will focus on a few representative masterpieces of Chinese literature in its classical age, with emphasis on the formal conventions and the social or intellectual presuppositions that are indispensable to their understanding. May be repeated for credit when topics vary.", + "name": "LTEA 110A", + "prereqs": [], + "title": "Classical Chinese Fiction in Translation (4)" + }, + "LTEA 110B": { + "dept": "LTEA", + "description": "A survey of representative works of the modern period from 1919 to 1949. May be repeated for credit when topics vary.", + "name": "LTEA 110B", + "prereqs": [], + "title": "Modern Chinese Fiction in Translation (4)" + }, + "LTEA 110C": { + "dept": "LTEA", + "description": "", + "name": "LTEA 110C", + "prereqs": [], + "title": "Contemporary Chinese Fiction in Translation (4)" + }, + "LTEA 120A": { + "dept": "LTEA", + "description": "A survey of representative films from different periods of Chinese cinematic development. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "name": "LTEA 120A", + "prereqs": [], + "title": "Chinese Films (4)" + }, + "LTEA 120B": { + "dept": "LTEA", + "description": "A survey of \u201cNew Taiwan Cinema\u201d of the eighties and nineties. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "name": "LTEA 120B", + "prereqs": [], + "title": "Taiwan Films (4)" + }, + "LTEA 120C": { + "dept": "LTEA", + "description": "An examination of representative works of different film genres from Hong Kong. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "name": "LTEA 120C", + "prereqs": [], + "title": "Hong Kong Films (4)" + }, + "LTEA 132": { + "dept": "LTEA", + "description": "An introduction to later Japanese (kogo) literature in translation. Will focus on several \u201cmodern\u201d works, placing their form in the historical context. No knowledge of Japanese required. Repeatable for credit when topics vary.", + "name": "LTEA 132", + "prereqs": [], + "title": "Later Japanese Literature in Translation (4)" + }, + "LTEA 138": { + "dept": "LTEA", + "description": "An introduction to Japanese films. Attention given to representative Japanese directors (e.g., Ozu), form (e.g., anime), genre (e.g. feminist revenge horror), or historical context in which films are produced. Priority may be given to Japanese studies majors and literature majors.", + "name": "LTEA 138", + "prereqs": [], + "title": "Japanese Films (4)" + }, + "LTEA 140": { + "dept": "LTEA", + "description": "Korean Literature in Translation from Colonial Period (4)", + "name": "LTEA 140", + "prereqs": [], + "title": "Modern" + }, + "LTEA 141": { + "dept": "LTEA", + "description": "A survey of modern Korean prose fiction and poetry from 1945 to the 1990s. Examination of literary representations of national division, the Korean War, accelerated industrialization, authoritarian rule, and the labor/agrarian movements.", + "name": "LTEA 141", + "prereqs": [], + "title": "Modern Korean Literature in Translation from 1945 to Present (4)" + }, + "LTEA 142": { + "dept": "LTEA", + "description": "Film, Literature, and Popular Culture (4)", + "name": "LTEA 142", + "prereqs": [], + "title": "Korean" + }, + "LTEA 143": { + "dept": "LTEA", + "description": "and Sexuality in Korean Literature and Culture (4)", + "name": "LTEA 143", + "prereqs": [], + "title": "Gender" + }, + "LTEA 144": { + "dept": "LTEA", + "description": "American Literature and Other Literatures of Korean Diaspora (4)", + "name": "LTEA 144", + "prereqs": [], + "title": "Korean" + }, + "LTEA 151": { + "dept": "LTEA", + "description": "in Tagalog Literature and Culture I (4)", + "name": "LTEA 151", + "prereqs": [], + "title": "Readings" + }, + "LTEA 152A": { + "dept": "LTEA", + "description": "Topics in Filipino Literature and Culture (Nineteenth Century\u2013World War", + "name": "LTEA 152A", + "prereqs": [], + "title": "" + }, + "LTEA 152B": { + "dept": "LTEA", + "description": "Topics in Filipino Literature and Culture (World War II\u2013Present) (4)", + "name": "LTEA 152B", + "prereqs": [], + "title": "" + }, + "LTEA 198": { + "dept": "LTEA", + "description": "Research seminars and research, under the direction of a faculty member. May be taken up to three times for credit. (P/NP grades only)", + "name": "LTEA 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTEA 199": { + "dept": "LTEA", + "description": "Tutorial; individual guided reading in areas not normally covered in courses. (P/NP grades only.)", + "name": "LTEA 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTEN 107": { + "dept": "LTEN", + "description": "A study of Chaucer\u2019s poetic development, beginning with The Book of the Duchess and The Parliament of Fowls, including Troilus and Criseyde, and concluding with substantial selections from The Canterbury Tales.", + "name": "LTEN 107", + "prereqs": [], + "title": "Chaucer (4)" + }, + "LTEN 110": { + "dept": "LTEN", + "description": "Major literary works of the Renaissance, an exciting period of social and cultural transformation in England as elsewhere in Europe. Topics may include a central theme (e.g., humanism, reformation, revolution), a genre (e.g., pastoral), or comparison with other arts and sciences. May be repeated up to three times for credit when topics vary.", + "name": "LTEN 110", + "prereqs": [], + "title": "Topics: The Renaissance (4)" + }, + "LTEN 112": { + "dept": "LTEN", + "description": "A lecture/discussion course exploring the development of Shakespeare\u2019s dramatic powers in comedy, history, and tragedy, from the early plays to the middle of his career. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare\u2019s theatre and his society.", + "name": "LTEN 112", + "prereqs": [], + "title": "Shakespeare I: The Elizabethan Period (4)" + }, + "LTEN 113": { + "dept": "LTEN", + "description": "A lecture/discussion course exploring the rich and varied achievements of Shakespeare\u2019s later plays, including the major tragedies and late romances. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare\u2019s theatre and his society.", + "name": "LTEN 113", + "prereqs": [], + "title": "Shakespeare II: The Jacobean Period (4)" + }, + "LTEN 117": { + "dept": "LTEN", + "description": "", + "name": "LTEN 117", + "prereqs": [], + "title": "Topics: The Seventeenth Century (4)" + }, + "LTEN 120": { + "dept": "LTEN", + "description": "", + "name": "LTEN 120", + "prereqs": [], + "title": "Topics: The Eighteenth Century (4)" + }, + "LTEN 124": { + "dept": "LTEN", + "description": "", + "name": "LTEN 124", + "prereqs": [], + "title": "Topics: The Nineteenth Century (4)" + }, + "LTEN 125": { + "dept": "LTEN", + "description": "", + "name": "LTEN 125", + "prereqs": [], + "title": "Romantic Poetry (4)" + }, + "LTEN 127": { + "dept": "LTEN", + "description": "", + "name": "LTEN 127", + "prereqs": [], + "title": "Victorian Poetry (4)" + }, + "LTEN 130": { + "dept": "LTEN", + "description": "Selected topics concerned with modern British literature; study of various authors, issues, and trends in literatures of the British Isles from the mid-1850s through the present day. May be taken up to three times for credit when topics vary.", + "name": "LTEN 130", + "prereqs": [], + "title": "Modern British Literature (4)" + }, + "LTEN 132": { + "dept": "LTEN", + "description": "", + "name": "LTEN 132", + "prereqs": [], + "title": "Modern Irish Literature (4)" + }, + "LTEN 138": { + "dept": "LTEN", + "description": "", + "name": "LTEN 138", + "prereqs": [], + "title": "The British Novel: 1680\u20131790 (4)" + }, + "LTEN 140": { + "dept": "LTEN", + "description": "", + "name": "LTEN 140", + "prereqs": [], + "title": "The British Novel: 1790\u20131830 (4)" + }, + "LTEN 142": { + "dept": "LTEN", + "description": "", + "name": "LTEN 142", + "prereqs": [], + "title": "The British Novel: 1830\u20131890 (4)" + }, + "LTEN 144": { + "dept": "LTEN", + "description": "", + "name": "LTEN 144", + "prereqs": [], + "title": "The British Novel: 1890 to Present (4)" + }, + "LTEN 148": { + "dept": "LTEN", + "description": "", + "name": "LTEN 148", + "prereqs": [], + "title": "Genres in English and American Literature (4)" + }, + "LTEN 149": { + "dept": "LTEN", + "description": "", + "name": "LTEN 149", + "prereqs": [], + "title": "Topics: English-Language Literature (4)" + }, + "LTEN 150": { + "dept": "LTEN", + "description": "", + "name": "LTEN 150", + "prereqs": [], + "title": "Gender, Text, and Culture (4)" + }, + "LTEN 152": { + "dept": "LTEN", + "description": "", + "name": "LTEN 152", + "prereqs": [], + "title": "The Origins of American Literature (4)" + }, + "LTEN 153": { + "dept": "LTEN", + "description": "", + "name": "LTEN 153", + "prereqs": [], + "title": "The Revolutionary War and the Early National Period in US Literature (4)" + }, + "LTEN 154": { + "dept": "LTEN", + "description": "", + "name": "LTEN 154", + "prereqs": [], + "title": "The American Renaissance (4)" + }, + "LTEN 155": { + "dept": "LTEN", + "description": "", + "name": "LTEN 155", + "prereqs": [], + "title": "Interactions between American Literature and the Visual Arts (4)" + }, + "LTEN 156": { + "dept": "LTEN", + "description": "", + "name": "LTEN 156", + "prereqs": [], + "title": "American Literature from the Civil War to World War I (4)" + }, + "LTEN 157": { + "dept": "LTEN", + "description": "", + "name": "LTEN 157", + "prereqs": [], + "title": "Captivity and Prison Narratives (4)" + }, + "LTEN 158": { + "dept": "LTEN", + "description": "", + "name": "LTEN 158", + "prereqs": [], + "title": "Modern American Literature (4)" + }, + "LTEN 159": { + "dept": "LTEN", + "description": "", + "name": "LTEN 159", + "prereqs": [], + "title": "Contemporary American Literature (4)" + }, + "LTEN 169": { + "dept": "LTEN", + "description": "", + "name": "LTEN 169", + "prereqs": [], + "title": "Topics in Latino/a Literature (4)" + }, + "LTEN 171": { + "dept": "LTEN", + "description": "", + "name": "LTEN 171", + "prereqs": [], + "title": "Comparative Issues in Latino/a Immigration in US Literature (4)" + }, + "LTEN 172": { + "dept": "LTEN", + "description": "Poetry II\u2014Whitman through the Modernists (4)", + "name": "LTEN 172", + "prereqs": [], + "title": "American" + }, + "LTEN 174": { + "dept": "LTEN", + "description": "Fiction II\u2014Since Middle James (4)", + "name": "LTEN 174", + "prereqs": [], + "title": "American" + }, + "LTEN 175A": { + "dept": "LTEN", + "description": "New American Fiction\u2014Post-World War II to the Present (4)", + "name": "LTEN 175A", + "prereqs": [], + "title": "" + }, + "LTEN 175B": { + "dept": "LTEN", + "description": "New American Poetry\u2014Post-World War II to the Present (4)", + "name": "LTEN 175B", + "prereqs": [], + "title": "" + }, + "LTEN 176": { + "dept": "LTEN", + "description": "A study in depth of the works of major American writers. May be repeated up to three times for credit when topics vary.", + "name": "LTEN 176", + "prereqs": [], + "title": "Major American Writers (4)" + }, + "LTEN 178": { + "dept": "LTEN", + "description": "A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.", + "name": "LTEN 178", + "prereqs": [], + "title": "Comparative Ethnic Literature (4)" + }, + "LTEN 180": { + "dept": "LTEN", + "description": "Introduction to the literature in English by the Chicano population, the men and women of Mexican descent who live and write in the United States. Primary focus on the contemporary period.", + "name": "LTEN 180", + "prereqs": [], + "title": "Chicano Literature in English (4)" + }, + "LTEN 181": { + "dept": "LTEN", + "description": "Selected topics in the literature by men and women of Asian descent who live and write in the United States. Repeatable for credit when topics vary.", + "name": "LTEN 181", + "prereqs": [], + "title": "Asian American Literature (4)" + }, + "LTEN 183": { + "dept": "LTEN", + "description": "Analysis and discussion of the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characteristics of African American narrative and the cultural and social circumstances that influence their development.", + "name": "LTEN 183", + "prereqs": [], + "title": "African American Prose (4)" + }, + "LTEN 185": { + "dept": "LTEN", + "description": "An intensive examination of a characteristic theme, special issue, or period in African American literature. May be repeated for credit when topics vary.", + "name": "LTEN 185", + "prereqs": [], + "title": "Themes in African American Literature (4)" + }, + "LTEN 186": { + "dept": "LTEN", + "description": "The Harlem Renaissance (1917\u201339) focuses on the emergence of the \u201cNew Negro\u201d and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.", + "name": "LTEN 186", + "prereqs": [], + "title": "Literature of the Harlem Renaissance (4)" + }, + "LTEN 188": { + "dept": "LTEN", + "description": "This course will focus on contemporary literature of the English-speaking Caribbean. The parallels and contrasts of this Third World literature with those of the Spanish- and French-speaking Caribbean will also be explored.", + "name": "LTEN 188", + "prereqs": [], + "title": "Contemporary Caribbean Literature (4)" + }, + "LTEN 189": { + "dept": "LTEN", + "description": "Postcolonial Literatures (4)", + "name": "LTEN 189", + "prereqs": [], + "title": "Twentieth-Century" + }, + "LTEN 192": { + "dept": "LTEN", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "LTEN 192", + "prereqs": [], + "title": "Senior Seminar in Literatures in English (1)" + }, + "LTEN 196": { + "dept": "LTEN", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "name": "LTEN 196", + "prereqs": [], + "title": "Honors Thesis (4)" + }, + "LTEN 198": { + "dept": "LTEN", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "name": "LTEN 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTEN 199": { + "dept": "LTEN", + "description": "Tutorial; individual guided reading in an area not normally covered in courses. May be repeated for credit three times.(P/NP grades only.) ", + "name": "LTEN 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTEN 21": { + "dept": "LTEN", + "description": "to the Literature of the British Isles: Pre-1660 (4)", + "name": "LTEN 21", + "prereqs": [], + "title": "Introduction" + }, + "LTEN 22": { + "dept": "LTEN", + "description": "to the Literature of the British Isles: 1660\u20131832 (4)", + "name": "LTEN 22", + "prereqs": [], + "title": "Introduction" + }, + "LTEN 222": { + "dept": "LTEN", + "description": "Selected topics in the study of literary, dramatic, and other Elizabethan cultural texts. Emphasis will be upon articulations among a range of discourses, practices, and institutions. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 222", + "prereqs": [], + "title": "Elizabethan Studies (4)" + }, + "LTEN 23": { + "dept": "LTEN", + "description": "to the Literature of the British Isles: 1832\u2013Present (4)", + "name": "LTEN 23", + "prereqs": [], + "title": "Introduction" + }, + "LTEN 231": { + "dept": "LTEN", + "description": "and Eighteenth-Century English Literature (4)", + "name": "LTEN 231", + "prereqs": [], + "title": "Restoration" + }, + "LTEN 245": { + "dept": "LTEN", + "description": "Consideration of some of the principal writers and movements in nineteenth-century American literature. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 245", + "prereqs": [], + "title": "Nineteenth-Century American Studies (4)" + }, + "LTEN 246": { + "dept": "LTEN", + "description": "Consideration of one or more major figures, texts, or trends in the Victorian period. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 246", + "prereqs": [], + "title": "Victorian Literature (4)" + }, + "LTEN 25": { + "dept": "LTEN", + "description": "to the Literature of the United States, Beginnings to 1865 (4)", + "name": "LTEN 25", + "prereqs": [], + "title": "Introduction" + }, + "LTEN 252": { + "dept": "LTEN", + "description": "in Modern American Literature and Culture (4)", + "name": "LTEN 252", + "prereqs": [], + "title": "Studies" + }, + "LTEN 254": { + "dept": "LTEN", + "description": "in US Minority Literatures and Cultures (4)", + "name": "LTEN 254", + "prereqs": [], + "title": "Topics" + }, + "LTEN 256": { + "dept": "LTEN", + "description": "A survey of selected responses to imperialism and colonialism as presented in cultural texts produced by colonized or once-colonized peoples. Related issues to be examined: gender dynamics, class, representing others, mimicry, language, cultural theory, and the politics of literary genres. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 256", + "prereqs": [], + "title": "Postcolonial Discourses (4)" + }, + "LTEN 258": { + "dept": "LTEN", + "description": "Consideration of one or more major figures, texts, performance, or trends in literature and culture of Africa and/or the African Diaspora. Various theories and methodologies may be applied to the representations being studied. May be taken three times for credit as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 258", + "prereqs": [], + "title": "Studies in Anglophone African and/or African Diaspora Literature and Culture (4)" + }, + "LTEN 259": { + "dept": "LTEN", + "description": "New developments in the study of literature in diverse frameworks, including but not limited to: globalization, queer theory, diaspora studies, environmentalism, world literary systems, international literary awards, transnational feminism, literary markets, human rights discourse, and translation studies. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 259", + "prereqs": [], + "title": "Transnational Literary Studies (4)" + }, + "LTEN 26": { + "dept": "LTEN", + "description": "to the Literature of the United States, 1865 to the Present (4)", + "name": "LTEN 26", + "prereqs": [], + "title": "Introduction" + }, + "LTEN 27": { + "dept": "LTEN", + "description": "to African American Literature (4)", + "name": "LTEN 27", + "prereqs": [], + "title": "Introduction" + }, + "LTEN 271": { + "dept": "LTEN", + "description": "Consideration of one or more genres present in English and/or American literature; for instance, the ballad, landscape poetry, comedy, satire, the familiar essay. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 271", + "prereqs": [], + "title": "Genres in English (4)" + }, + "LTEN 272": { + "dept": "LTEN", + "description": "The study of writing produced over an extended period of time by members of an identifiable cultural formation as defined (e.g., by political/social ideology, class, religion, ethnicity, or sexual preference). May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTEN 272", + "prereqs": [], + "title": "Cultural Traditions in English (4)" + }, + "LTEN 28": { + "dept": "LTEN", + "description": "to Asian American Literature (4)", + "name": "LTEN 28", + "prereqs": [], + "title": "Introduction" + }, + "LTEN 281": { + "dept": "LTEN", + "description": "in Literary Research and Criticism (4)", + "name": "LTEN 281", + "prereqs": [], + "title": "Practicum" + }, + "LTEN 29": { + "dept": "LTEN", + "description": "This course provides an introduction to the literary production of the population of Mexican origin in the United States. Students will examine a variety of texts dealing with the historical (social, economic, and political) experiences of this heterogeneous population.", + "name": "LTEN 29", + "prereqs": [], + "title": "Introduction to Chicano Literature (4)" + }, + "LTEN 297": { + "dept": "LTEN", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "name": "LTEN 297", + "prereqs": [], + "title": "Directed Studies: Reading Course (1\u201312)" + }, + "LTEN 298": { + "dept": "LTEN", + "description": "Similar to a 297, but a paper is required. Papers are usually on subject not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "name": "LTEN 298", + "prereqs": [], + "title": "Special Projects: Writing Course (1\u201312)" + }, + "LTEN 299": { + "dept": "LTEN", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "name": "LTEN 299", + "prereqs": [], + "title": "Dissertation (1\u201312)" + }, + "LTEN 30": { + "dept": "LTEN", + "description": "Physicists have spoken of the beauty of equations. The poet John Keats wrote, \u201cBeauty is truth, truth beauty . . .\u201d What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Students may not receive credit for both LTEN 30 and PHYS 30. ", + "name": "LTEN 30", + "prereqs": [ + "MCWP 40", + "MCWP 50", + "WARR 11B", + "WCWP 10A", + "WARR 11A", + "WCWP 10B", + "DOC 3", + "DOC 2", + "HUM 1", + "HUM 2", + "MMW 12", + "MMW 13", + "CAT 3", + "CAT 2" + ], + "title": "Poetry for Physicists (4)" + }, + "LTEN 87": { + "dept": "LTEN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "name": "LTEN 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LTEU 105": { + "dept": "LTEU", + "description": "Studies in medieval culture and thought with focus on one of the \u201cthree crowns\u201d of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.", + "name": "LTEU 105", + "prereqs": [], + "title": "Medieval Studies (4)" + }, + "LTEU 109": { + "dept": "LTEU", + "description": "in Eighteenth-Century European Literature (4)", + "name": "LTEU 109", + "prereqs": [], + "title": "Studies" + }, + "LTEU 110": { + "dept": "LTEU", + "description": "Attention given to historical and cultural contexts. Topics to be considered include the concept of nature, the reaction to science, the role of the imagination.", + "name": "LTEU 110", + "prereqs": [], + "title": "European Romanticism (4)" + }, + "LTEU 111": { + "dept": "LTEU", + "description": "This course focuses on nineteenth-century European realism in historical and cultural context. Topics include definitions of realism, the impact of urbanization and industrialization on literary forms and themes, and relations between realism in literature and the visual arts. May be repeated up to three times for credit when topics vary.", + "name": "LTEU 111", + "prereqs": [], + "title": "European Realism (4)" + }, + "LTEU 125": { + "dept": "LTEU", + "description": "This course focuses on the theme of Faust in European literature from the Renaissance to the present, including works by Marlowe, Goethe, Bulgakov, and Thomas Mann. Concentration on how authors adapted the theme to differing national and historical contexts.", + "name": "LTEU 125", + "prereqs": [], + "title": "Faust in European Literature (4)" + }, + "LTEU 130": { + "dept": "LTEU", + "description": "One or more aspects of German literature, such as major authors, the contemporary novel, nineteenth-century poetry, German expressionism. Texts may be read in English or the original language. May be repeated for credit as topics vary.", + "name": "LTEU 130", + "prereqs": [], + "title": "German Literature in Translation (4)" + }, + "LTEU 137": { + "dept": "LTEU", + "description": "These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like.", + "name": "LTEU 137", + "prereqs": [], + "title": "Seminars in German Culture (4)" + }, + "LTEU 139": { + "dept": "LTEU", + "description": "Intensive examination of the major ideas of all three writers, with special attention to the literary styles and problematic aspects of their work.", + "name": "LTEU 139", + "prereqs": [], + "title": "Marx/Nietzsche/Freud (4)" + }, + "LTEU 140": { + "dept": "LTEU", + "description": "One or more periods and authors in Italian literature. Texts will be read in English. May be repeated for credit as topics vary.", + "name": "LTEU 140", + "prereqs": [], + "title": "Italian Literature in Translation (4)" + }, + "LTEU 145": { + "dept": "LTEU", + "description": "Study of the chief modern Italian poets, including Montale, Ungaretti, and Quasimodo, with attention to long, poetic form and contemporary Italian culture. May be repeated for credit as topics vary.", + "name": "LTEU 145", + "prereqs": [], + "title": "Studies in Modern Italian Poetry (4)" + }, + "LTEU 146": { + "dept": "LTEU", + "description": "A study of the chief modern Italian prosatori, including D\u2019Annunzio, Calvino, Pavese, and Pasolini. May be taken up to three times for credit as topic vary.", + "name": "LTEU 146", + "prereqs": [], + "title": "Studies in Modern Italian Prose (4)" + }, + "LTEU 150A-B-C": { + "dept": "LTEU", + "description": "A study of literary works from Pushkin to the present.", + "name": "LTEU 150A-B-C", + "prereqs": [], + "title": "Survey of Russian and Soviet Literature in Translation, 1800 to the Present (4-4-4)" + }, + "LTEU 154": { + "dept": "LTEU", + "description": "An introduction to Russia\u2019s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present.", + "name": "LTEU 154", + "prereqs": [], + "title": "Russian Culture (4)" + }, + "LTEU 158": { + "dept": "LTEU", + "description": "Author in Russian Literature in Translation (4)", + "name": "LTEU 158", + "prereqs": [], + "title": "Single" + }, + "LTEU 87": { + "dept": "LTEU", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "LTEU 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LTFR 115": { + "dept": "LTFR", + "description": "in Intellectual and Literary History (4)", + "name": "LTFR 115", + "prereqs": [], + "title": "Themes" + }, + "LTFR 116": { + "dept": "LTFR", + "description": "in Intellectual and Literary History (4)", + "name": "LTFR 116", + "prereqs": [], + "title": "Themes" + }, + "LTFR 121": { + "dept": "LTFR", + "description": "Major literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of the period. Medieval texts in modern French translation. May be repeated for credit as topics vary. ", + "name": "LTFR 121", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "The Middle Ages and the Renaissance (4)" + }, + "LTFR 122": { + "dept": "LTFR", + "description": "This course will cover major literary works and problems of seventeenth-century French literature. May be taken for credit three times as topics vary. ", + "name": "LTFR 122", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Topics in Seventeenth-Century French Literature (4)" + }, + "LTFR 123": { + "dept": "LTFR", + "description": "Major literary works and problems of the eighteenth century. May be repeated for credit as topics vary. ", + "name": "LTFR 123", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Eighteenth Century (4)" + }, + "LTFR 124": { + "dept": "LTFR", + "description": "Major literary works of the nineteenth century. May be repeated for credit as topics vary. ", + "name": "LTFR 124", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Nineteenth Century (4)" + }, + "LTFR 125": { + "dept": "LTFR", + "description": "Major literary works and problems of the twentieth century. May be repeated for credit as topics vary. ", + "name": "LTFR 125", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Twentieth Century (4)" + }, + "LTFR 141": { + "dept": "LTFR", + "description": "Examines one or more periods, themes, authors, and approaches in French literature. Topics will vary with instructor. May be repeated for credit. ", + "name": "LTFR 141", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Topics in Literatures in French (4)" + }, + "LTFR 142": { + "dept": "LTFR", + "description": "An examination of one or more major or minor genres of French literature: for example, drama, novel, poetry, satire, prose poem, essay. ", + "name": "LTFR 142", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Topics in Literary Genres in French (4)" + }, + "LTFR 143": { + "dept": "LTFR", + "description": "A study in depth of the works of a major French writer. Recommended for students whose primary literature is French. May be repeated for credit as topics vary. ", + "name": "LTFR 143", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Topics in Major Authors in French (4)" + }, + "LTFR 164": { + "dept": "LTFR", + "description": "A course on changing topics such as France during the 1960s, contemporary social and cultural structures (the school system, economy, political parties), myths of America in France, etc. May be repeated for credit as topics vary. ", + "name": "LTFR 164", + "prereqs": [ + "LTFR 116", + "LTFR 115" + ], + "title": "Topics in Modern French Culture (4)" + }, + "LTFR 198": { + "dept": "LTFR", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "name": "LTFR 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTFR 199": { + "dept": "LTFR", + "description": "Tutorial; individual guided reading in areas of French literature not normally covered in courses. (P/NP grades only.) ", + "name": "LTFR 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTFR 297": { + "dept": "LTFR", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "name": "LTFR 297", + "prereqs": [], + "title": "Directed Studies: Reading Course (1\u201312)" + }, + "LTFR 298": { + "dept": "LTFR", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "name": "LTFR 298", + "prereqs": [], + "title": "Special Projects: Writing Course (1\u201312)" + }, + "LTFR 299": { + "dept": "LTFR", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "name": "LTFR 299", + "prereqs": [], + "title": "Dissertation (1\u201312)" + }, + "LTFR 2A": { + "dept": "LTFR", + "description": "First course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. Basic techniques of literary analysis. ", + "name": "LTFR 2A", + "prereqs": [ + "LIFR 1CX", + "LIFR 1C" + ], + "title": "Intermediate French I (5)" + }, + "LTFR 2B": { + "dept": "LTFR", + "description": "Second course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. Basic techniques of literary analysis. ", + "name": "LTFR 2B", + "prereqs": [ + "LTFR 2A" + ], + "title": "Intermediate French II (5)" + }, + "LTFR 2C": { + "dept": "LTFR", + "description": "French III: Composition and Cultural Contexts (4)", + "name": "LTFR 2C", + "prereqs": [], + "title": "Intermediate" + }, + "LTFR 50": { + "dept": "LTFR", + "description": "Third course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. It also introduces the student to basic techniques of literary analysis. ", + "name": "LTFR 50", + "prereqs": [ + "LTFR 2B" + ], + "title": "Intermediate French III: Textual Analysis (4)" + }, + "LTGK 1": { + "dept": "LTGK", + "description": "Study of ancient Greek, including grammar and reading.", + "name": "LTGK 1", + "prereqs": [], + "title": "Beginning Greek (4)" + }, + "LTGK 101": { + "dept": "LTGK", + "description": "Greek prose composition. Corequisites: student must be concurrently enrolled in upper-division Literature/Greek course numbered 102 or above.", + "name": "LTGK 101", + "prereqs": [], + "title": "Greek Composition (4)" + }, + "LTGK 102": { + "dept": "LTGK", + "description": "", + "name": "LTGK 102", + "prereqs": [], + "title": "Greek Poetry (4)" + }, + "LTGK 103": { + "dept": "LTGK", + "description": "", + "name": "LTGK 103", + "prereqs": [], + "title": "Greek Drama (4)" + }, + "LTGK 104": { + "dept": "LTGK", + "description": "", + "name": "LTGK 104", + "prereqs": [], + "title": "Greek Prose (4)" + }, + "LTGK 105": { + "dept": "LTGK", + "description": "", + "name": "LTGK 105", + "prereqs": [], + "title": "Topics in Greek Literature (4)" + }, + "LTGK 198": { + "dept": "LTGK", + "description": "Directed group study in areas of Greek literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTGK 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTGK 199": { + "dept": "LTGK", + "description": "Tutorial; individual guided reading in an area not normally covered in courses. May be taken up to three times for credit. (P/NP grades only.) ", + "name": "LTGK 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTGK 2": { + "dept": "LTGK", + "description": "Continuation of study of ancient Greek, including grammar and reading. ", + "name": "LTGK 2", + "prereqs": [ + "LTGK 1" + ], + "title": "Intermediate Greek (I) (4)" + }, + "LTGK 3": { + "dept": "LTGK", + "description": "Continuation of study of ancient Greek, including grammar and reading of texts. ", + "name": "LTGK 3", + "prereqs": [ + "LTGK 1", + "LTGK 2" + ], + "title": "Intermediate Greek (II) (4)" + }, + "LTGM 100": { + "dept": "LTGM", + "description": "This course offers an overview of German aesthetic culture in its various forms (literature, film, art, music, and architecture) and methods of analysis. Materials will explore the diversity of aesthetic production from the eighteenth century to the present.", + "name": "LTGM 100", + "prereqs": [], + "title": "German Studies I: Aesthetic Cultures (4)" + }, + "LTGM 101": { + "dept": "LTGM", + "description": "This course offers an overview of issues in contemporary and historical German cultures. How has national identity been constructed in the past? What does it mean to be a German in the new Europe? Materials include fiction, historical documents, films, and the Internet.", + "name": "LTGM 101", + "prereqs": [], + "title": "German Studies II: National Identities (4)" + }, + "LTGM 130": { + "dept": "LTGM", + "description": "The development of major forms and modes of German literary prose. May be repeated for credit as topics vary.", + "name": "LTGM 130", + "prereqs": [], + "title": "German Literary Prose (4)" + }, + "LTGM 132": { + "dept": "LTGM", + "description": "The development of major forms and modes of German verse. May be repeated for credit as topics vary.", + "name": "LTGM 132", + "prereqs": [], + "title": "German Poetry (4)" + }, + "LTGM 134": { + "dept": "LTGM", + "description": "A survey of German cinema from the late 1960s to the early 1980s. Focus on films by such directors as Fassbinder, Herzog, Kluge, Schl\u04e7ndorff, von Trotta, and Wenders viewed in historical and cultural context. May be taken credit three times when topics vary.", + "name": "LTGM 134", + "prereqs": [], + "title": "New German Cinema (4)" + }, + "LTGM 190": { + "dept": "LTGM", + "description": "These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like. May be repeated for credit as topics vary.", + "name": "LTGM 190", + "prereqs": [], + "title": "Seminars in German Culture (4)" + }, + "LTGM 198": { + "dept": "LTGM", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "name": "LTGM 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTGM 199": { + "dept": "LTGM", + "description": "Tutorial; individual guided reading in areas of German literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTGM 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTGM 297": { + "dept": "LTGM", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "name": "LTGM 297", + "prereqs": [], + "title": "Directed Studies: Reading Course (1\u201312)" + }, + "LTGM 298": { + "dept": "LTGM", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "name": "LTGM 298", + "prereqs": [], + "title": "Special Projects: Writing Course (1\u201312)" + }, + "LTGM 2A": { + "dept": "LTGM", + "description": "LTGM 2A follows the basic language sequence of the Department of Linguistics and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. The course includes grammar review and class discussion of reading and audio-visual materials. Specifically, the course prepares students for LIGM 2B and 2C. ", + "name": "LTGM 2A", + "prereqs": [ + "LTGM 1C" + ], + "title": "Intermediate German I (5)" + }, + "LTGM 2B": { + "dept": "LTGM", + "description": "LTGM 2B is a continuation of LTGM 2A for those students who intend to practice their skills in reading, listening comprehension, and writing on a more advanced level. The literary texts are supplemented by readings from other disciplines as well as audio-visual materials. ", + "name": "LTGM 2B", + "prereqs": [ + "LTGM 2A" + ], + "title": "Intermediate German II (5)" + }, + "LTGM 2C": { + "dept": "LTGM", + "description": "A course designed for students who wish to improve their ability to speak and write German. Students will read and discuss a variety of texts and films, and complete the grammar review begun in 2A. 2C emphasizes speaking, writing, and critical thinking, and prepares students for upper-division course work in German. ", + "name": "LTGM 2C", + "prereqs": [ + "LTGM 2B" + ], + "title": "Intermediate German III (4)" + }, + "LTIT 100": { + "dept": "LTIT", + "description": "Reading and discussion of selections from representative authors. Review of grammar as needed. May be repeated for credit three times when topics vary. ", + "name": "LTIT 100", + "prereqs": [ + "LTIT 50" + ], + "title": "Introduction to Literatures in Italian (4)" + }, + "LTIT 115": { + "dept": "LTIT", + "description": "Studies in medieval culture and thought with focus on one of the \u201cthree crowns\u201d of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.", + "name": "LTIT 115", + "prereqs": [], + "title": "Medieval Studies (4)" + }, + "LTIT 122": { + "dept": "LTIT", + "description": "Politics, literature, and cultural issues of twentieth-century Italy. May be repeated for credit when topics vary. ", + "name": "LTIT 122", + "prereqs": [ + "LTIT 50" + ], + "title": "Studies in Modern Italian Culture (4)" + }, + "LTIT 137": { + "dept": "LTIT", + "description": "", + "name": "LTIT 137", + "prereqs": [], + "title": "Studies in Modern Italian Prose (4)" + }, + "LTIT 161": { + "dept": "LTIT", + "description": "Analysis of Italian essays, journalism, literature. Intensive practice in writing and Italian conversation. ", + "name": "LTIT 161", + "prereqs": [ + "LTIT 100" + ], + "title": "Advanced Stylistics and Conversation (4)" + }, + "LTIT 192": { + "dept": "LTIT", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "LTIT 192", + "prereqs": [], + "title": "Senior Seminar in Literatures in Italian (1)" + }, + "LTIT 196": { + "dept": "LTIT", + "description": "Senior thesis research and writing for students who have been accepted for the literature honors program and who have completed LTWL 191. Oral examination. ", + "name": "LTIT 196", + "prereqs": [], + "title": "Honors Thesis (4)" + }, + "LTIT 198": { + "dept": "LTIT", + "description": "Directed group study in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTIT 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTIT 199": { + "dept": "LTIT", + "description": "Tutorial; individual guided reading in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTIT 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTIT 2A": { + "dept": "LTIT", + "description": "A second-year course in Italian language and literature. Conversation, composition, grammar review, and an introduction to literary and nonliterary texts. ", + "name": "LTIT 2A", + "prereqs": [ + "LIIT 1C", + "LTIT 1C" + ], + "title": "Intermediate Italian I (5)" + }, + "LTIT 2B": { + "dept": "LTIT", + "description": "Continuation of second-year Italian language and literature. Reading, writing, conversation, grammar review, and an introduction to literary genres and contemporary Italian culture and society. ", + "name": "LTIT 2B", + "prereqs": [ + "LTIT 2A" + ], + "title": "Intermediate Italian II (5)" + }, + "LTIT 50": { + "dept": "LTIT", + "description": "This course constitutes the sixth and final quarter of the Italian language sequence. It offers an intensive study of Italian grammar, drills in conversation and composition, and readings in modern Italian literature. ", + "name": "LTIT 50", + "prereqs": [ + "LTIT 2A", + "LTIT 2B" + ], + "title": "Advanced Italian (4)" + }, + "LTKO 100": { + "dept": "LTKO", + "description": "in Korean Literature and Culture (4)", + "name": "LTKO 100", + "prereqs": [], + "title": "Readings" + }, + "LTKO 149": { + "dept": "LTKO", + "description": "This course is designed to develop cultural understanding and professional/academic level reading skill for students with coverage of materials on Korean language history from the fifteenth century to the present, previous and current writing systems, and Korean language structure. May be taken for credit three times as topics vary. ", + "name": "LTKO 149", + "prereqs": [ + "LTKO 3" + ], + "title": "Readings in Korean Language History and Structure (4)" + }, + "LTKO 1A": { + "dept": "LTKO", + "description": "Students develop beginning-level skills in the Korean language, beginning with an introduction to the writing and sound system. The remainder of the course will focus on basic sentence structures and expressions. ", + "name": "LTKO 1A", + "prereqs": [], + "title": "Beginning Korean: First Year I (5)" + }, + "LTKO 1B": { + "dept": "LTKO", + "description": "Students develop beginning-level skills in the Korean language, with an introduction to the writing and sound system. The remainder of the course will focus on basic sentence structures and expressions. ", + "name": "LTKO 1B", + "prereqs": [ + "LTKO 1A" + ], + "title": "Beginning Korean: First Year II (5)" + }, + "LTKO 1C": { + "dept": "LTKO", + "description": "Students develop beginning-level skills in the Korean language, beginning with an introduction to the writing and sound system. The remainder of the course will focus on basic sentence structures and expressions. ", + "name": "LTKO 1C", + "prereqs": [ + "LTKO 1B" + ], + "title": "Beginning Korean: First Year III (5)" + }, + "LTKO 2A-B-C": { + "dept": "LTKO", + "description": "This course will help students develop intermediate-level skills in the Korean language. Upon completion of this course, students are expected to have good command of Korean in various daily conversational situations. ", + "name": "LTKO 2A-B-C", + "prereqs": [ + "LTKO 1C" + ], + "title": "Intermediate Korean: Second Year I-II-III (5-5-5)" + }, + "LTKO 3": { + "dept": "LTKO", + "description": "This course will help students develop advanced-level skills in the Korean language. Upon completion of this course, students are expected to have good command of Korean in various formal settings and to understand daily news broadcasts/newspapers. ", + "name": "LTKO 3", + "prereqs": [ + "LTKO 2C" + ], + "title": "Advanced Korean: Third Year (5)" + }, + "LTLA 1": { + "dept": "LTLA", + "description": "Study of Latin, including grammar and reading.", + "name": "LTLA 1", + "prereqs": [], + "title": "Beginning Latin (4)" + }, + "LTLA 100": { + "dept": "LTLA", + "description": "Reading and discussion of selections from representative authors of one or more periods. Review of grammar as needed. ", + "name": "LTLA 100", + "prereqs": [ + "LTLA 3" + ], + "title": "Introduction to Latin Literature (4)" + }, + "LTLA 102": { + "dept": "LTLA", + "description": "", + "name": "LTLA 102", + "prereqs": [], + "title": "Latin Poetry (4)" + }, + "LTLA 103": { + "dept": "LTLA", + "description": "", + "name": "LTLA 103", + "prereqs": [], + "title": "Latin Drama (4)" + }, + "LTLA 104": { + "dept": "LTLA", + "description": "", + "name": "LTLA 104", + "prereqs": [], + "title": "Latin Prose (4)" + }, + "LTLA 105": { + "dept": "LTLA", + "description": "", + "name": "LTLA 105", + "prereqs": [], + "title": "Topics in Latin Literature (4)" + }, + "LTLA 198": { + "dept": "LTLA", + "description": "Directed group study in areas of Latin literature not normally covered in courses. May be repeated three times. (P/NP grades only.) ", + "name": "LTLA 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTLA 199": { + "dept": "LTLA", + "description": "Tutorial; individual guided reading in areas of Latin literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTLA 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTLA 2": { + "dept": "LTLA", + "description": "Study of Latin, including grammar and reading. ", + "name": "LTLA 2", + "prereqs": [ + "LTLA 1" + ], + "title": "Intermediate Latin (I) (4)" + }, + "LTLA 3": { + "dept": "LTLA", + "description": "Study of Latin, including grammar and reading. ", + "name": "LTLA 3", + "prereqs": [ + "LTLA 2" + ], + "title": "Intermediate Latin (II) (4)" + }, + "LTRU 104A": { + "dept": "LTRU", + "description": "", + "name": "LTRU 104A", + "prereqs": [], + "title": "Advanced Practicum in Russian (4)" + }, + "LTRU 104B": { + "dept": "LTRU", + "description": "", + "name": "LTRU 104B", + "prereqs": [], + "title": "Advanced Practicum in Russian: Analysis of Text and Film (4)" + }, + "LTRU 104C": { + "dept": "LTRU", + "description": "", + "name": "LTRU 104C", + "prereqs": [], + "title": "Advanced Practicum in Russian (4)" + }, + "LTRU 110A": { + "dept": "LTRU", + "description": "", + "name": "LTRU 110A", + "prereqs": [], + "title": "Survey of Russian and Soviet Literature in Translation, 1800\u20131860 (4)" + }, + "LTRU 110B": { + "dept": "LTRU", + "description": "", + "name": "LTRU 110B", + "prereqs": [], + "title": "Survey of Russian and Soviet Literature in Translation, 1860\u20131917 (4)" + }, + "LTRU 110C": { + "dept": "LTRU", + "description": "", + "name": "LTRU 110C", + "prereqs": [], + "title": "Survey of Russian and Soviet Literature in Translation, 1917\u2013present (4)" + }, + "LTRU 123": { + "dept": "LTRU", + "description": "Author in Russian Literature in Translation (4)", + "name": "LTRU 123", + "prereqs": [], + "title": "Single" + }, + "LTRU 150": { + "dept": "LTRU", + "description": "An introduction to Russia\u2019s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present. ", + "name": "LTRU 150", + "prereqs": [], + "title": "Russian Culture (4)" + }, + "LTRU 198": { + "dept": "LTRU", + "description": "Directed group study in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTRU 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTRU 199": { + "dept": "LTRU", + "description": "Tutorial; individual guided reading in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTRU 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTRU 1A": { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "name": "LTRU 1A", + "prereqs": [], + "title": "First-Year Russian (5)" + }, + "LTRU 1B": { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "name": "LTRU 1B", + "prereqs": [], + "title": "First-Year Russian (5)" + }, + "LTRU 1C": { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "name": "LTRU 1C", + "prereqs": [], + "title": "First-Year Russian (5)" + }, + "LTRU 2A": { + "dept": "LTRU", + "description": "Second-year Russian grammar, with attention to reading, writing, and speaking.", + "name": "LTRU 2A", + "prereqs": [], + "title": "Second-Year Russian (5)" + }, + "LTRU 2B": { + "dept": "LTRU", + "description": "Second-year Russian grammar, with attention to reading, writing, and speaking.", + "name": "LTRU 2B", + "prereqs": [], + "title": "Second-Year Russian (5)" + }, + "LTSP 100": { + "dept": "LTSP", + "description": "Major Spanish literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of this period. May be taken for credit three times as topics vary. ", + "name": "LTSP 100", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Major Works of the Middle Ages (4)" + }, + "LTSP 116": { + "dept": "LTSP", + "description": "Analysis of selected materials that represent the cultural and political relationship between Spain and its colonies. Close reading of literary texts and historical documents. Specific periods covered will fall between the origins of empire in the early sixteenth century to the demise of imperial Spain in 1898; topics may include cultural exchanges between Spain and Latin America, the Philippines, or the US Southwest. May be taken for credit two times as topics vary. ", + "name": "LTSP 116", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Representations of Spanish Colonialism (4)" + }, + "LTSP 119C": { + "dept": "LTSP", + "description": "Close reading of the 1605 and 1615 texts with special attention to the social and cultural background of the early seventeenth century in Spain. This course fulfills the pre-1900 requirement for Spanish literature majors. ", + "name": "LTSP 119C", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Cervantes: Don Quixote (4)" + }, + "LTSP 122": { + "dept": "LTSP", + "description": "", + "name": "LTSP 122", + "prereqs": [], + "title": "The Romantic Movement in Spain (4)" + }, + "LTSP 123": { + "dept": "LTSP", + "description": "Investigation of selected topics concerning Spanish cultural production after 1800. Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). May be taken for credit two times as topics vary. ", + "name": "LTSP 123", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Topics in Modern Spanish Culture (4)" + }, + "LTSP 129": { + "dept": "LTSP", + "description": "Analysis and discussion of literary production during and after the Franco dictatorship. May focus on specific genres, sub-period, or issues. May be taken for credit two times as topics vary. ", + "name": "LTSP 129", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Spanish Writing after 1939 (4)" + }, + "LTSP 130A": { + "dept": "LTSP", + "description": "An introduction to the major movements and periods of Spanish literary history, centered on close readings of representative texts, but aimed at providing a sense of the scope of Spanish literature and its relation to the course of Spain\u2019s cultural and social history. This course fulfills the pre-1900 requirement for Spanish literature majors. ", + "name": "LTSP 130A", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Development of Spanish Literature (4)" + }, + "LTSP 130B": { + "dept": "LTSP", + "description": "Development of Latin American Literature (4)", + "name": "LTSP 130B", + "prereqs": [], + "title": "" + }, + "LTSP 133": { + "dept": "LTSP", + "description": "Latin American Literature (4)", + "name": "LTSP 133", + "prereqs": [], + "title": "Contemporary" + }, + "LTSP 134": { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Argentine, Paraguayan, Uruguayan, and Chilean literatures, such as gaucho poetry, the realist novel, modern urban narratives, and the Borges School, etc. May be taken for credit two times as topics vary. ", + "name": "LTSP 134", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Literature of the Southern Cone (4)" + }, + "LTSP 135A": { + "dept": "LTSP", + "description": "Explores the relationships among cultural production, politics, and societal changes in Mexico before the 1910 Revolution, specifically the roles of intellectuals and popular culture in nation-building and modernization. Readings may include didactic literature and historiographic writings, forms of popular discourse, as well as novels and poetry. May be taken for credit two times as topics vary. ", + "name": "LTSP 135A", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Mexican Literature before 1910 (4)" + }, + "LTSP 135B": { + "dept": "LTSP", + "description": "Study of popular novels, movements, traditions, key authors, or major trends in modern Mexican literature. May be taken for credit two times as topics vary. ", + "name": "LTSP 135B", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Modern Mexican Literature (4)" + }, + "LTSP 136": { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Peruvian, Ecuadorian, and Bolivian literatures, such as indigenismo, urban narrative, and the works of authors such as Vallejo, Icaza, Arguedas, Vargas Llosa. May be taken for credit two times as topics vary. ", + "name": "LTSP 136", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Andean Literatures (4)" + }, + "LTSP 137": { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Caribbean literature in Spanish, such as the romantic movement, the literature of independence, the essay tradition, Afro-Antillean literature, the historical novel. May be taken for credit four times as topics vary. ", + "name": "LTSP 137", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Caribbean Literature (4)" + }, + "LTSP 138": { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in the literatures of Guatemala, El Salvador, Nicaragua, Honduras, Costa Rica, and Panama, such as the anti-imperialist novel, indigenismo, guerrilla poetry, and testimonio. May be taken for credit two times as topics vary. ", + "name": "LTSP 138", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Central American Literature (4)" + }, + "LTSP 140": { + "dept": "LTSP", + "description": "A study in depth of selected novelists of Latin America. May be organized around a specific theme or idea that is traced in its development through the narratives. May be taken for credit two times as topics vary. ", + "name": "LTSP 140", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Latin American Novel (4)" + }, + "LTSP 141": { + "dept": "LTSP", + "description": "A critical study of some of the major poets of Latin America, focusing on the poet\u2019s central themes, the evolution of poetic style, and the significance of the poetry to the historical context. May be taken for credit two times as topics vary. ", + "name": "LTSP 141", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Latin American Poetry (4)" + }, + "LTSP 142": { + "dept": "LTSP", + "description": "Readings and interpretation of the Latin American short story. Focus is primarily nineteenth and/or twentieth century. May be taken for credit two times as topics vary. ", + "name": "LTSP 142", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Latin American Short Story (4)" + }, + "LTSP 150A": { + "dept": "LTSP", + "description": "Early Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)", + "name": "LTSP 150A", + "prereqs": [], + "title": "" + }, + "LTSP 150B": { + "dept": "LTSP", + "description": "Cross-disciplinary study of late twentieth-century Latino/a-Chicano/a literature, the visual and performing arts, film, or other cultural practices. Specific periods covered will fall between the Kennedy years to the era of neoliberalism and the creation of \u201cHispanic\u201d or Latino identities. May be taken for credit no more than two times. ", + "name": "LTSP 150B", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Contemporary Chicano/a-Latino/a Cultural Production: 1960 to Present (4)" + }, + "LTSP 151": { + "dept": "LTSP", + "description": "Cross-disciplinary study of late twentieth-century Chicano/a-Latino/a literature, the visual and performing arts, film, or other cultural practices. Representative areas of study are social movements, revolution, immigration, globalization, gender and sexuality, cultures of the U.S.-Mexican border, and Chicano/a-Mexicano/a literary relations. May be taken up to two times for credit when topics vary. ", + "name": "LTSP 151", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Topics in Chicano/a-Latino/a Cultures (4)" + }, + "LTSP 154": { + "dept": "LTSP", + "description": "This course will study the representations of a variety of social issues (immigration, racism, class differences, violence, inter/intra-ethnic relations, etc.) in works written in Spanish by Latino/a and Chicano/a writers. May be taken up to two times for credit when topics vary. ", + "name": "LTSP 154", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Latino/a and Chicano/a Literature (4)" + }, + "LTSP 159": { + "dept": "LTSP", + "description": "An introduction to methodological and historical trends in Latin American and Caribbean cultural and literary studies. This course includes cultural representations from Latin America and the Caribbean such as film, literature, art, music, and/or photography. May be taken for credit two times as topics vary. ", + "name": "LTSP 159", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Methodological Approaches to the Study of History and Culture in Latin America and the Caribbean (4)" + }, + "LTSP 160": { + "dept": "LTSP", + "description": "A comparative study of the English and Spanish phonetic systems. Includes a study of the organs of articulation, manner of articulation stress and intonation patterns, as well as dialectal variations of Spanish. ", + "name": "LTSP 160", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Spanish Phonetics (4)" + }, + "LTSP 162": { + "dept": "LTSP", + "description": "A sociolinguistic study of the popular dialects in the United States of America and their relation to other Latin American dialects. The course will cover phonological and syntactic differences between the dialects as well as the influences of English on the Southwest dialects. ", + "name": "LTSP 162", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Spanish Language in the United States (4)" + }, + "LTSP 166": { + "dept": "LTSP", + "description": "A workshop designed to foster and encourage writing in Spanish of students working on short forms of fiction. The workshop will include discussions of techniques and intensive writing. ", + "name": "LTSP 166", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Creative Writing (4)" + }, + "LTSP 170": { + "dept": "LTSP", + "description": "Selected readings in recent cultural and literary theory. Students will be exposed to a variety of methodologies drawn from the Latin American, European, and US traditions. May be taken up to two times for credit when topics vary. ", + "name": "LTSP 170", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Contemporary Theories of Cultural Production (4)" + }, + "LTSP 171": { + "dept": "LTSP", + "description": "Focus on the interaction between literary expression and the study of society, covering issues such as the sociology of literature, the historical novel, literature and social change, the writer as the intellectual. May be taken for credit three times as topics vary. ", + "name": "LTSP 171", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Studies in Peninsular and/or Latin American Literature and Society (4)" + }, + "LTSP 172": { + "dept": "LTSP", + "description": "Themes in Latin American Literature (4)", + "name": "LTSP 172", + "prereqs": [], + "title": "Indigenista" + }, + "LTSP 174": { + "dept": "LTSP", + "description": "Study of the relationships between cultural production (literature, film, popular cultures), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, revolution. May be taken for credit two times as topics vary. ", + "name": "LTSP 174", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Topics in Culture and Politics (4)" + }, + "LTSP 175": { + "dept": "LTSP", + "description": "This course will examine issues of gender, sexuality, and culture in Spanish, Latin American, and/or Chicana/o literatures. May be taken for credit two times as topics vary. ", + "name": "LTSP 175", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Gender, Sexuality, and Culture (4)" + }, + "LTSP 176": { + "dept": "LTSP", + "description": "Study of literature as a means through which the nation has been imagined and as a site of debates over national identity and citizenship. Course materials may focus on Spain and/or Latin America. May be taken for credit two times as topics vary. ", + "name": "LTSP 176", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Literature and Nation (4)" + }, + "LTSP 177": { + "dept": "LTSP", + "description": "This course will focus on a variety of Latin American and/or Spanish intra- and international migrations throughout the world and on the literature produced by these exiles or immigrants. May be taken for credit two times as topics vary. ", + "name": "LTSP 177", + "prereqs": [ + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Literary and Historical Migrations (4)" + }, + "LTSP 196": { + "dept": "LTSP", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral Exam. ", + "name": "LTSP 196", + "prereqs": [], + "title": "Honors Thesis (4)" + }, + "LTSP 198": { + "dept": "LTSP", + "description": "", + "name": "LTSP 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTSP 199": { + "dept": "LTSP", + "description": "Tutorial: individual guided reading in areas of Spanish literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTSP 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTSP 258": { + "dept": "LTSP", + "description": "Consideration of one or more major figures, texts, trends, or problems in Spanish American prose. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTSP 258", + "prereqs": [], + "title": "Spanish American Prose (4)" + }, + "LTSP 272": { + "dept": "LTSP", + "description": "Special topics in practical criticism involving social and economic historical perspectives. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTSP 272", + "prereqs": [], + "title": "Literature and Society Studies (4)" + }, + "LTSP 297": { + "dept": "LTSP", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "name": "LTSP 297", + "prereqs": [], + "title": "Directed Studies: Reading Course (1\u201312)" + }, + "LTSP 298": { + "dept": "LTSP", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "name": "LTSP 298", + "prereqs": [], + "title": "Special Projects: Writing Course (1\u201312)" + }, + "LTSP 299": { + "dept": "LTSP", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "name": "LTSP 299", + "prereqs": [], + "title": "Dissertation (1\u201312)" + }, + "LTSP 2A": { + "dept": "LTSP", + "description": "Course is taught in Spanish, emphasizing the development of reading ability, listening comprehension, and writing skills. It includes grammar review, weekly compositions, and class discussions. Successful completion of LTSP 2A satisfies the requirement for language proficiency in Revelle College. ", + "name": "LTSP 2A", + "prereqs": [ + "LISP 1DX", + "LISP 1C", + "LISP 1D" + ], + "title": "Intermediate Spanish I: Foundations (5)" + }, + "LTSP 2B": { + "dept": "LTSP", + "description": "Spanish II: Readings and Composition (5)", + "name": "LTSP 2B", + "prereqs": [], + "title": "Intermediate" + }, + "LTSP 2C": { + "dept": "LTSP", + "description": "Spanish III: Cultural Topics and Composition (4)", + "name": "LTSP 2C", + "prereqs": [], + "title": "Intermediate" + }, + "LTSP 2D": { + "dept": "LTSP", + "description": "Spanish: Spanish for Bilingual Speakers (4)", + "name": "LTSP 2D", + "prereqs": [], + "title": "Intermediate/Advanced" + }, + "LTSP 2E": { + "dept": "LTSP", + "description": "Readings and Composition for Bilingual Speakers (4)", + "name": "LTSP 2E", + "prereqs": [], + "title": "Advanced" + }, + "LTSP 50A": { + "dept": "LTSP", + "description": "An introduction to Peninsular literature, this course offers a selection of authors and genres, introducing students to literary analysis through reading extensive texts in Spanish. Two or more quarters of LTSP 50 are suggested before proceeding to upper-division courses. May be taken for credit three times. ", + "name": "LTSP 50A", + "prereqs": [ + "LTSP 2E", + "LTSP 2C" + ], + "title": "Readings in Peninsular Literature (4)" + }, + "LTSP 50B": { + "dept": "LTSP", + "description": "An introduction to Latin American literature, this course offers a selection of authors and genres, introducing students to literary analysis through reading extensive texts in Spanish. Two or more quarters of LTSP 50 are suggested before proceeding to upper-division courses. May be taken for credit three times. ", + "name": "LTSP 50B", + "prereqs": [ + "LTSP 2E", + "LTSP 2C" + ], + "title": "Readings in Latin American Literature (4)" + }, + "LTSP 50C": { + "dept": "LTSP", + "description": "An introduction to major topics in Latin American literature, this course focuses on the literature of a particular region, period, or movement. Introduces students to literary analysis through reading extensive texts in Spanish. May be taken for credit three times. ", + "name": "LTSP 50C", + "prereqs": [ + "LTSP 2E", + "LTSP 2C" + ], + "title": "Readings in Latin American Topics (4)" + }, + "LTSP 87": { + "dept": "LTSP", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "LTSP 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LTTH 110": { + "dept": "LTTH", + "description": "A critical and interpretive review of some of the major documents in criticism from the classical period to the present time.", + "name": "LTTH 110", + "prereqs": [], + "title": "History of Criticism (4)" + }, + "LTTH 115": { + "dept": "LTTH", + "description": "A critical review of major contemporary theories of the nature of literature, its sociocultural function, and appropriate modes of evaluation.", + "name": "LTTH 115", + "prereqs": [], + "title": "Introduction to Critical Theory (4)" + }, + "LTTH 150": { + "dept": "LTTH", + "description": "Selected topics in critical theory such as a particular mode of literary theory; comparative study of theories of text and image; a problem or theme in the history of theory; and issues involved in the relationship between fiction and other discourses (science, law, history, philosophy, music). Repeatable for credit when topics vary.", + "name": "LTTH 150", + "prereqs": [], + "title": "Topics in Critical Theory (4)" + }, + "LTTH 198": { + "dept": "LTTH", + "description": "Directed group study, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.)", + "name": "LTTH 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTTH 199": { + "dept": "LTTH", + "description": "Individual reading in an area not covered in courses currently offered by the department. (P/NP only.)", + "name": "LTTH 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTTH 210A": { + "dept": "LTTH", + "description": "This proseminar, regularly offered in the fall quarter, consists of seven or eight guest lectures by the literature faculty and introduces their research and methodologies. This proseminar is organized by a literature faculty member or the director of doctoral studies. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTTH 210A", + "prereqs": [], + "title": "Proseminar on Literary Scholarship (4)" + }, + "LTTH 210B": { + "dept": "LTTH", + "description": "This seminar, regularly offered in the winter quarter, introduces various literary theories that are essential for graduate studies in the field of literature and other related fields. The list of readings is decided by the course instructor in consultation with the department. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTTH 210B", + "prereqs": [], + "title": "Introduction to Literary Theory (4)" + }, + "LTTH 210C": { + "dept": "LTTH", + "description": "This course, regularly offered in the spring quarter, prepares students for dissertation research, publication, conference presentation, and job search. The course is required in one of the first three years of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "name": "LTTH 210C", + "prereqs": [], + "title": "Practicum in Literary Professionalization (4)" + }, + "LTTH 250": { + "dept": "LTTH", + "description": "An overview of issues in modern critical theory as they pertain to writers. Will focus on issues of textuality, cultural forms, and aesthetics as they impact the process and meaning of writing. ", + "name": "LTTH 250", + "prereqs": [], + "title": "Writing and Theory (4)" + }, + "LTTH 255": { + "dept": "LTTH", + "description": "An introduction to modernist aesthetics with a focus on art and literary movements. Particular attention to be placed on relationships between modern literary movements (realism, imagism, surrealism) and their counterparts in visual arts, music, dance, and theatre, and the ways in which literary movements are components of or responses to issues of political and social identity. ", + "name": "LTTH 255", + "prereqs": [], + "title": "Modern Art Movements and Aesthetics (4)" + }, + "LTTH 298": { + "dept": "LTTH", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "name": "LTTH 298", + "prereqs": [], + "title": "Special Projects: Writing Course (1\u201312)" + }, + "LTWL": { + "dept": "LTWL", + "description": "19A-B-C. Introduction to the Ancient Greeks and Romans (4-4-4)", + "name": "LTWL", + "prereqs": [], + "title": "" + }, + "LTWL 100": { + "dept": "LTWL", + "description": "A study of various bodies of myth: their content, form, and meaning. May be repeated for credit as topics vary.", + "name": "LTWL 100", + "prereqs": [], + "title": "Mythology (4)" + }, + "LTWL 106": { + "dept": "LTWL", + "description": "Greek and Roman literature in translation. May be repeated for credit as topics vary.", + "name": "LTWL 106", + "prereqs": [], + "title": "The Classical Tradition (4)" + }, + "LTWL 110B": { + "dept": "LTWL", + "description": "A study of folk and fairy tales from various cultures, from the point of view of literary form, psychological meaning, and cultural function. May be repeated for credit as topics vary.", + "name": "LTWL 110B", + "prereqs": [], + "title": "Folk and Fairy Tales (4)" + }, + "LTWL 111": { + "dept": "LTWL", + "description": "A lecture/discussion course designed to explore a variety of topics in medieval literatures and cultures. Topics may include a genre or combination of genres (e.g., drama, romance, lyric, allegory), or a central theme (e.g., the Crusades or courtly love).", + "name": "LTWL 111", + "prereqs": [], + "title": "Medieval Studies (4)" + }, + "LTWL 114": { + "dept": "LTWL", + "description": "A study of literature written for children in various cultures and periods. May be repeated for credit as topics vary.", + "name": "LTWL 114", + "prereqs": [], + "title": "Children\u2019s Literature (4)" + }, + "LTWL 116": { + "dept": "LTWL", + "description": "A study of fiction written for the young adult in various cultures and periods. Consideration will be given to the young adult hero in fiction. May be repeated for credit as topics vary.", + "name": "LTWL 116", + "prereqs": [], + "title": "Adolescent Literature (4)" + }, + "LTWL 120": { + "dept": "LTWL", + "description": "A study of various popular forms\u2014such as pop music, cult books, film, fashion, magazines, graphic arts\u2014within a broader cultural context. Focus may be on a particular genre (e.g., best sellers) or era (e.g., the sixties). May be repeated for credit when topics vary.", + "name": "LTWL 120", + "prereqs": [], + "title": "Popular Literature and Culture (4)" + }, + "LTWL 123": { + "dept": "LTWL", + "description": "A study of representations of the vampire through a variety of methodological perspectives with an emphasis on historical context and cultural symbolism.", + "name": "LTWL 123", + "prereqs": [], + "title": "Vampires in Literature (4)" + }, + "LTWL 124": { + "dept": "LTWL", + "description": "An exploration of the genre\u2014past and present, in literature and the visual media\u2014as a cultural response to scientific and technological change, as modern mythmaking, and as an enterprise serving a substantial fan subculture. May be repeated for credit when topics vary.", + "name": "LTWL 124", + "prereqs": [], + "title": "Science Fiction (4)" + }, + "LTWL 128": { + "dept": "LTWL", + "description": "to Semiotics and Applications (4)", + "name": "LTWL 128", + "prereqs": [], + "title": "Introduction" + }, + "LTWL 129": { + "dept": "LTWL", + "description": "What is wisdom? Does wisdom refer to a specific type of discourse; a literary genre; a specific content that holds true transculturally and transtemporally? This class will consider these questions by reading literature from diverse times and places.", + "name": "LTWL 129", + "prereqs": [], + "title": "Wisdom: The Literature of Authority (4)" + }, + "LTWL 134": { + "dept": "LTWL", + "description": "This course examines histories and theories of cinema and Islam. It offers an overview on intersections between film and religious experience in various Muslim cultures, and how such experiences are ultimately grounded in shifting historical and social settings.", + "name": "LTWL 134", + "prereqs": [], + "title": "Cinema and Islam (4)" + }, + "LTWL 136": { + "dept": "LTWL", + "description": "This course explores the writings of Buddhists who actively engage with the problems of the world: social, environmental, economic, political. We will examine the historical development of engaged Buddhism in light of traditional Buddhist concepts of morality, interdependence, and liberation.", + "name": "LTWL 136", + "prereqs": [], + "title": "Socially Engaged Buddhism (4)" + }, + "LTWL 138": { + "dept": "LTWL", + "description": "Selected topics, texts, and problems in the study of religion. May be repeated for credit when content varies.", + "name": "LTWL 138", + "prereqs": [], + "title": "Critical Religion Studies (4)" + }, + "LTWL 140": { + "dept": "LTWL", + "description": "This course sets out to explore the relation between the novel and the \u201cdependent\u201d history of the Third World, contrasting and comparing the uses of history in the European novel as defined in the theoretical analysis of Lukacs with uses of history in the Third World novel. An analysis of major themes and movements common to selected ethnic literature in the United States and national literatures in the Third World.", + "name": "LTWL 140", + "prereqs": [], + "title": "Novel and History in the Third World (4)" + }, + "LTWL 143": { + "dept": "LTWL", + "description": "", + "name": "LTWL 143", + "prereqs": [], + "title": "Arab Literatures and Cultures (4)" + }, + "LTWL 144": { + "dept": "LTWL", + "description": "This course examines the relationship between cinema and Islam. It looks at how Islam is represented through various cinematic genres and historical periods from 1920s to the present.", + "name": "LTWL 144", + "prereqs": [], + "title": "Islam and Cinema (4)" + }, + "LTWL 150": { + "dept": "LTWL", + "description": "Explores the various cross-cultural historical, philosophical, and aesthetic ideas which formed the basis of most twentieth-century literature. Literature from the Americas, Europe, Asia, and Africa will be studied through lectures and the reading of texts in English translation. Repeatable for credit when topics vary.", + "name": "LTWL 150", + "prereqs": [], + "title": "Modernity and Literature (4)" + }, + "LTWL 155": { + "dept": "LTWL", + "description": "The study of the construction of sexual differences in literature and culture. May be repeated for credit when topics vary.", + "name": "LTWL 155", + "prereqs": [], + "title": "Gender Studies (4)" + }, + "LTWL 157": { + "dept": "LTWL", + "description": "Course sets out to explore the history and theory of Iranian films in the context of the country\u2019s political, cultural, and religious settings since 1945. Students are expected to watch and discuss Iranian films, particularly the postrevolutionary films of Kiarostami and Mokhbalbaf.", + "name": "LTWL 157", + "prereqs": [], + "title": "Iranian Film (4)" + }, + "LTWL 158A": { + "dept": "LTWL", + "description": "Literary and socio-historical considerations of the diverse writings that developed into the New Testament. Topics include Jewish origins of the \u201cJesus movement\u201d within Greco-Roman culture; varying patterns of belief/practice among earliest communities; oral tradition and development of canon.", + "name": "LTWL 158A", + "prereqs": [], + "title": "Topics in the New Testament (4)" + }, + "LTWL 158B": { + "dept": "LTWL", + "description": "Topics in Early Christian Texts and Cultures (4)", + "name": "LTWL 158B", + "prereqs": [], + "title": "" + }, + "LTWL 158C": { + "dept": "LTWL", + "description": "A survey of the Christian texts that comprise the fatalities of the battles defining Christian canon: e.g., apocryphal acts, noncanonical gospels, and \u201cGnostic\u201d texts. Considers the social communities, theological views, religious identities, and practices reflected in largely forgotten texts.", + "name": "LTWL 158C", + "prereqs": [], + "title": "Topics in Other Christianities (4)" + }, + "LTWL 159": { + "dept": "LTWL", + "description": "This course examines the role of Information Communication Technologies (ICTs) such as the Internet, mobile, and satellite TV in the reshaping of the Middle East and North Africa. It will focus on how ICTs like the Internet are changing culture, politics, and religion in the region and implication of such transformations.", + "name": "LTWL 159", + "prereqs": [], + "title": "Digital Middle East: Culture, Politics, and Religion (4)" + }, + "LTWL 160": { + "dept": "LTWL", + "description": "This course will explore the relationship between women and literature, i.e., women as producers of literature, as objects of literary discourse, and as readers. Foreign language texts will be read in translation. May be repeated for credit as topics vary.", + "name": "LTWL 160", + "prereqs": [], + "title": "Women and Literature (4)" + }, + "LTWL 165": { + "dept": "LTWL", + "description": "With primarily American (and a couple of English) readings, the course inquires into the relation of human and nonhuman nature. Topics include wilderness, animals, Native American thought, women in nature, description as a kind of writing, the spirituality of place.", + "name": "LTWL 165", + "prereqs": [], + "title": "Literature and the Environment (4)" + }, + "LTWL 166": { + "dept": "LTWL", + "description": "Yiddish literature is much more than folk songs and jokes. We will read major American and European works by Nobel laureate I. B. Singer, his brother I. J. Singer, and his sister Esther Kreytman, Sholem Aleichem, Mendele, Chava Rozenfarb, and others. (In English translation.)", + "name": "LTWL 166", + "prereqs": [], + "title": "The Yiddish Novel (4)" + }, + "LTWL 168": { + "dept": "LTWL", + "description": "This class investigates the link between desire and death in classical and modern Hindu thought. It considers the stories of Hindu deities, as well as the lives of contemporary South Asian men and women, in literature and film.", + "name": "LTWL 168", + "prereqs": [], + "title": "Death and Desire in India (4)" + }, + "LTWL 169": { + "dept": "LTWL", + "description": "This class investigates yoga as a practice aimed at integrating the body, intellect, and spirit. It considers a range of sources and representations, from foundational works in classical Sanskrit through the sometimes kitschy, sometimes serious, spirituality of contemporary pop culture.", + "name": "LTWL 169", + "prereqs": [], + "title": "Yoga, Body, and Transformation (4)" + }, + "LTWL 172": { + "dept": "LTWL", + "description": "Studies in specialized literary, philosophic, and artistic movements, approaches to literature, literary ideas, historical moments, etc. LTWL 172 and LTWL 172GS may be taken for credit for a combined total of three times.", + "name": "LTWL 172", + "prereqs": [], + "title": "Special Topics in Literature (4)" + }, + "LTWL 176": { + "dept": "LTWL", + "description": "The course will center on writers or movements of international literary, cultural, or ideological significance. The texts studied, if foreign, may be read either in the original language or in English. May be repeated for credit as topics vary.", + "name": "LTWL 176", + "prereqs": [], + "title": "Literature and Ideas (4)" + }, + "LTWL 180": { + "dept": "LTWL", + "description": "Studies and Literature: Film History (4)", + "name": "LTWL 180", + "prereqs": [], + "title": "Film" + }, + "LTWL 181": { + "dept": "LTWL", + "description": "Studies and Literature: Film Movement (4)", + "name": "LTWL 181", + "prereqs": [], + "title": "Film" + }, + "LTWL 183": { + "dept": "LTWL", + "description": "Studies and Literature: Director\u2019s Work (4)", + "name": "LTWL 183", + "prereqs": [], + "title": "Film" + }, + "LTWL 184": { + "dept": "LTWL", + "description": "Methods of literary analysis applied to the study of shots, sequences, poetics, and deep structure in filmic discourse. Repeatable for credit when topics vary.", + "name": "LTWL 184", + "prereqs": [], + "title": "Film Studies and Literature: Close Analysis of Filmic Text (4)" + }, + "LTWL 191": { + "dept": "LTWL", + "description": "Explorations in critical theory and method. This course, designed to prepare students to write an honors thesis, is open only to literature majors invited into the department\u2019s Honors Program.", + "name": "LTWL 191", + "prereqs": [], + "title": "Honors Seminar (4)" + }, + "LTWL 192": { + "dept": "LTWL", + "description": "Seminar in Literatures of the World (1)", + "name": "LTWL 192", + "prereqs": [], + "title": "Senior" + }, + "LTWL 194": { + "dept": "LTWL", + "description": "An advanced seminar open to all literature majors in their senior year. Required for those interested in the Honors Program. It offers an integrative experience by considering key facets of the discipline, including literary theory/historiography, knowledge of neighboring disciplines, and relevance of literature/culture studies in various professions outside of academia. ", + "name": "LTWL 194", + "prereqs": [], + "title": "Capstone Course for Literature Majors (4)" + }, + "LTWL 194A": { + "dept": "LTWL", + "description": "Honors practicum for those students in the literature department Honors Program. This is a one-unit course for which students in the Honors Program will present their work as part of organized panels at an Honors Program conference (within the department). Students will receive a P/NP grade for LTWL 194A for completing the presentation. ", + "name": "LTWL 194A", + "prereqs": [ + "LTWR 194", + "LTWL 194" + ], + "title": "Honors Practicum (1)" + }, + "LTWL 196": { + "dept": "LTWL", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "name": "LTWL 196", + "prereqs": [], + "title": "Honors Thesis (4)" + }, + "LTWL 198": { + "dept": "LTWL", + "description": "Research seminars and research, under the direction of faculty member. ", + "name": "LTWL 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "LTWL 199": { + "dept": "LTWL", + "description": "Tutorial; individual guided reading in areas of literature (in translation) not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "name": "LTWL 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTWL 500": { + "dept": "LTWL", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching in literature courses under the supervision of instructor of course. Doctoral students in literature are required to participate in undergraduate teaching for a minimum of twelve units (two to four units per quarter) prior to completion of the PhD degree.", + "name": "LTWL 500", + "prereqs": [], + "title": "Apprentice Teaching in Literature (2 or 4)" + }, + "LTWL 87": { + "dept": "LTWL", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "LTWL 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "LTWR 100": { + "dept": "LTWR", + "description": "A workshop for students with some experience and special interest in writing fiction. This workshop is designed to encourage regular writing in the short forms of prose fiction and to permit students to experiment with various forms. There will be discussion of student work, together with analysis and discussion of representative examples of short fiction from the present and previous ages. May be taken for credit three times. ", + "name": "LTWR 100", + "prereqs": [ + "LTWR 8A" + ], + "title": "Short Fiction Workshop (4)" + }, + "LTWR 101": { + "dept": "LTWR", + "description": "A workshop for students with interest in writing fiction in Spanish. Includes discussion of student work, together with analysis and discussion of representative examples of short fiction from the present and previous ages. A working knowledge of Spanish is required. May be taken for credit three times. ", + "name": "LTWR 101", + "prereqs": [ + "LTWR 8A", + "LTSP 50A", + "LTSP 50B", + "LTSP 50C" + ], + "title": "Writing Fiction in Spanish (4)" + }, + "LTWR 102": { + "dept": "LTWR", + "description": "A workshop for students with some experience and special interest in writing poetry. This workshop is designed to encourage regular writing of poetry. There will be discussion of student work, together with analysis and discussion of representative examples of poetry from the present and previous ages. May be taken for credit three times. ", + "name": "LTWR 102", + "prereqs": [ + "LTWR 8B" + ], + "title": "Poetry Workshop (4)" + }, + "LTWR 103": { + "dept": "LTWR", + "description": "This workshop includes instruction on using software and writing basic computer code to allow students to create innovative web-based works that experiment with poetic form, draw on rich media resources, and provide more accessibility and interactivity for public audiences. May be taken up to three times for credit. ", + "name": "LTWR 103", + "prereqs": [ + "LTWR 8B" + ], + "title": "Digital Poetics Workshop (4)" + }, + "LTWR 104A": { + "dept": "LTWR", + "description": "A two-quarter workshop for fiction writers ready to explore a longer form, and committed to developing a single piece over the course of two consecutive quarters. In addition to analyzing student work, we will read and discuss a wide range of published novellas. Two-quarter sequence; students must complete LTWR 104A and LTWR 104B in order to receive final grade in both courses. ", + "name": "LTWR 104A", + "prereqs": [ + "LTWR 100" + ], + "title": "The Novella I (4)" + }, + "LTWR 104B": { + "dept": "LTWR", + "description": "A continuation of LTWR 104A in which fiction writers complete the novella manuscripts they began during the previous quarter. Each student will produce a novella of at least fifty revised pages by the end of the quarter. We will continue to read and discuss published novellas with a particular emphasis on narrative strategy, structure, and revision. Two-quarter sequence; students must complete LTWR 104A and LTWR 104B in order to receive final grade in both courses. ", + "name": "LTWR 104B", + "prereqs": [ + "LTWR 104A" + ], + "title": "The Novella II (4)" + }, + "LTWR 106": { + "dept": "LTWR", + "description": "In this workshop, students will practice skills of narration, characterization, and style with particular attention to the demands of nonrealistic genres, especially the challenge of suspending disbelief in fictional environments that defy conventional logic. Readings and lectures will accompany writing exercises. May be taken for credit three times. ", + "name": "LTWR 106", + "prereqs": [ + "LTWR 8A" + ], + "title": "Science Fiction, Fantasy, and Irrealism Workshop (4)" + }, + "LTWR 110": { + "dept": "LTWR", + "description": "A workshop designed to encourage writing of original screenplays and adaptations. There will be discussion of study work, together with analysis of discussion of representative examples of screen writing. May be taken up to three times for credit. ", + "name": "LTWR 110", + "prereqs": [], + "title": "Screen Writing (4)" + }, + "LTWR 113": { + "dept": "LTWR", + "description": "This course is an introduction to modes of writing from other cultural systems vastly different from the cultural-aesthetic assumptions of Anglo American writing. While disclosing the limitations of the English language, this course attempts to provide new language strategies for students. May be taken for credit three times. ", + "name": "LTWR 113", + "prereqs": [ + "LTWR 8B", + "LTWR 8C", + "LTWR 8A" + ], + "title": "Intercultural Writing Workshop (4)" + }, + "LTWR 114": { + "dept": "LTWR", + "description": "From illuminated manuscripts to digital literature, from alphabets to concrete poems, from artists\u2019 books to comics, this course explores the histories and techniques of combinatory image/word literary arts. The course may emphasize specific movements or genres. May be taken for credit three times. ", + "name": "LTWR 114", + "prereqs": [ + "LTWR 8B", + "LTWR 8C", + "LTWR 8A" + ], + "title": "Graphic Texts Workshop (4)" + }, + "LTWR 115": { + "dept": "LTWR", + "description": "This workshop explores writing for which the traditional generic distinctions of prose/poetry, fiction/documentary, narrative/discourse do not apply. Students taking this course will be asked to challenge the boundaries of literature to discover new forms and modes of expression. May be taken for credit three times. ", + "name": "LTWR 115", + "prereqs": [ + "LTWR 8B", + "LTWR 8C", + "LTWR 8A" + ], + "title": "Experimental Writing Workshop (4)" + }, + "LTWR 119": { + "dept": "LTWR", + "description": "A workshop and survey of experimental approaches to the writing and production of performance works in a range of literary genres. Emphasis will be placed on the integration of written texts with nonverbal elements from the visual arts, theatre, and music. ", + "name": "LTWR 119", + "prereqs": [ + "LTWR 8B", + "LTWR 119", + "LTWR 8A" + ], + "title": "Writing for Performance (4)" + }, + "LTWR 120": { + "dept": "LTWR", + "description": "A workshop designed to encourage regular writing of all forms of personal experience narrative, including journals, autobiography, firsthand biography, and firsthand chronicle. Instructor and students will discuss student work as well as published personal narratives. May be taken for credit three times. ", + "name": "LTWR 120", + "prereqs": [ + "LTWR 8B", + "LTWR 8C", + "LTWR 8A" + ], + "title": "Personal Narrative Workshop (4)" + }, + "LTWR 121": { + "dept": "LTWR", + "description": "Workshop focusing on the review, the op-ed piece, the column, the blurb, the profile, the interview, and \u201ccontent-providing\u201d for websites. We\u2019ll examine current examples of media writing; students will produce a body of work and critique one another\u2019s productions. May be taken for credit three times. ", + "name": "LTWR 121", + "prereqs": [ + "LTWR 8C" + ], + "title": "Media Writing Workshop (4)" + }, + "LTWR 122": { + "dept": "LTWR", + "description": "A workshop in writing about science for the public. Students will study and then construct metaphors or analogues that introduce readers to scientific perplexities. Completion of LTWR 8A, 8B, or 8C highly recommended. May be repeated for credit three times. ", + "name": "LTWR 122", + "prereqs": [], + "title": "Writing for the Sciences Workshop (4)" + }, + "LTWR 124": { + "dept": "LTWR", + "description": "A writing workshop on the theory and practice of literary translation. Students will translate literary texts and workshop with the instructor and other course members. Selected readings in translation theory. May be taken for credit three times. ", + "name": "LTWR 124", + "prereqs": [ + "LTWR 8B", + "LTWR 8C", + "LTWR 8A" + ], + "title": "Translation of Literary Texts Workshop (4)" + }, + "LTWR 126": { + "dept": "LTWR", + "description": "A writing, reading, and critical-thinking workshop designed to produce nonfiction pieces that fall outside the limits of the essay form. Included are travel narratives, memoir, and information-based writing that transform their own materials into compelling literature. May be repeated for credit three times. ", + "name": "LTWR 126", + "prereqs": [ + "LTWR 8C" + ], + "title": "Creative Nonfiction Workshop (4)" + }, + "LTWR 129": { + "dept": "LTWR", + "description": "Workshop designed to critique and engage the means of distributing literature within culture. Publishing from \u201czine\u201d through mainstream publication; web publishings; readings and \u201cslams\u201d; publicity and funding; colloquia with writers; politics and literature; and the uses of performance and media. May be taken for credit three times. ", + "name": "LTWR 129", + "prereqs": [ + "LTWR 120", + "LTWR 102", + "LTWR 100" + ], + "title": "Distributing Literature Workshop (4)" + }, + "LTWR 140": { + "dept": "LTWR", + "description": "A review of the history of the development of alphabets and writing systems. Survey of the rise of literacy since the fifteenth century and analysis of continuing literacy problems in developed and developing countries.", + "name": "LTWR 140", + "prereqs": [], + "title": "History of Writing (4)" + }, + "LTWR 143": { + "dept": "LTWR", + "description": "A close look at sentence-level features of written discourse\u2013stylistics and sentence grammars. Students will review recent research on these topics and experiment in their own writing with various stylistic and syntactic options. ", + "name": "LTWR 143", + "prereqs": [], + "title": "Stylistics and Grammar (4)" + }, + "LTWR 144": { + "dept": "LTWR", + "description": "Wide reading in current theory and practice of teaching writing in schools and colleges. Careful attention to various models of classroom writing instruction and to different approaches in the individual conference. Students in this course may observe instruction in the UC San Diego college writing programs or tutor freshman students in those programs. ", + "name": "LTWR 144", + "prereqs": [], + "title": "The Teaching of Writing (4)" + }, + "LTWR 148": { + "dept": "LTWR", + "description": "Hybrid workshop offering writing students a working knowledge of literary theory while exposing literature students to practical techniques from poetry, fiction, and nonfiction to refresh their writing of theoretical nonfiction texts. Discussion of student work and published work. ", + "name": "LTWR 148", + "prereqs": [], + "title": "Theory for Writers/Writing for Theory (4)" + }, + "LTWR 194": { + "dept": "LTWR", + "description": "An advanced seminar open to all writing majors in their senior year. Required for those interested in the Honors Program. It offers an integrative experience by considering key facets of the discipline and profession, including relationships between aesthetics/culture and politics, genre writing, craft/technique, literary theories/theories of writing, and distribution/publication. ", + "name": "LTWR 194", + "prereqs": [], + "title": "Capstone Course for Writing Majors (4)" + }, + "LTWR 195": { + "dept": "LTWR", + "description": "Undergraduate instruction assistance. A student will 1) assist TA in editing students\u2019 writing for LTWR 8A-B-C during class and outside of class; and 2) prepare a paper and report for the professor at the end of the quarter. May be taken for credit up to two times. ", + "name": "LTWR 195", + "prereqs": [], + "title": "Apprentice Teaching (4)" + }, + "LTWR 196": { + "dept": "LTWR", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "name": "LTWR 196", + "prereqs": [], + "title": "Honors Thesis (4)" + }, + "LTWR 198": { + "dept": "LTWR", + "description": "Directed group study in areas of writing not normally covered in courses. (P/NP grades only.) Repeatable for credit when areas of study vary.", + "name": "LTWR 198", + "prereqs": [], + "title": "Directed Group Study (2 or 4)" + }, + "LTWR 199": { + "dept": "LTWR", + "description": "Tutorial; individual guidance in areas of writing not normally covered in courses. (P/NP grades only.) May be taken for credit three times. ", + "name": "LTWR 199", + "prereqs": [], + "title": "Special Studies (2 or 4)" + }, + "LTWR 215": { + "dept": "LTWR", + "description": "In the generative workshop, writers create intergenre works and practice unconventional workshopping techniques that function less as editorial roundtables and more as discussions of the relationships between aesthetics and culture. ", + "name": "LTWR 215", + "prereqs": [], + "title": "Cross-Genre Workshop (4)" + }, + "LTWR 220": { + "dept": "LTWR", + "description": "This seminar will be organized around any of various topic areas relating to writing (fiction, poetry, cross-genre, theory). Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). S/U grades only. May be taken for credit three times as content varies. ", + "name": "LTWR 220", + "prereqs": [], + "title": "Topics in Writing (4)" + }, + "LTWR 295": { + "dept": "LTWR", + "description": "Research for master\u2019s thesis. Offered for repeated registration. Open only to MFA students. ", + "name": "LTWR 295", + "prereqs": [], + "title": "MFA Thesis (1\u201312)" + }, + "LTWR 298": { + "dept": "LTWR", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. May be applied toward the guided research or graduate seminar in literature requirement of the MFA program. Repeatable for credit. ", + "name": "LTWR 298", + "prereqs": [], + "title": "Directed Studies: Writing Course (1\u201312)" + }, + "LTWR 8A": { + "dept": "LTWR", + "description": "Study of fiction in both theory and practice. Narrative technique studied in terms of subjectivity and atmosphere, description, dialogue, and the editing process will be introduced through readings from the history of the novel and short story. Students are required to attend at least three New Writing Series readings during the quarter. ", + "name": "LTWR 8A", + "prereqs": [ + "MCWP 40", + "MCWP 50", + "WARR 11B", + "WCWP 10A", + "WARR 11A", + "WCWP 10B", + "DOC 3", + "DOC 2", + "HUM 1", + "HUM 2", + "MMW 12", + "MMW 13", + "CAT 3", + "CAT 2" + ], + "title": "Writing Fiction (4)" + }, + "LTWR 8B": { + "dept": "LTWR", + "description": "Study and practice of poetry as artistic and communal expression. Techniques of composition (traditional forms, avant garde techniques, dramatic monologue, performance poetry, and new genre) studied through written and spoken examples of poetry. Students are required to attend at least three New Writing Series readings during the quarter. ", + "name": "LTWR 8B", + "prereqs": [ + "MCWP 40", + "MCWP 50", + "WARR 11B", + "WCWP 10A", + "WARR 11A", + "WCWP 10B", + "DOC 3", + "DOC 2", + "HUM 1", + "HUM 2", + "MMW 12", + "MMW 13", + "CAT 3", + "CAT 2" + ], + "title": "Writing Poetry (4)" + }, + "LTWR 8C": { + "dept": "LTWR", + "description": "Study of nonfictional prose in terms of genre and craft. Techniques of composition (journalism, essay, letters, reviews) will be studied through written examples of the genre. ", + "name": "LTWR 8C", + "prereqs": [ + "MCWP 40", + "MCWP 50", + "WARR 11B", + "WCWP 10A", + "WARR 11A", + "WCWP 10B", + "DOC 3", + "DOC 2", + "HUM 1", + "HUM 2", + "MMW 12", + "MMW 13", + "CAT 3", + "CAT 2" + ], + "title": "Writing Nonfiction (4)" + }, + "Linguistics (LIDS)": { + "dept": "Linguistics", + "description": "19. Directed Study\u2014Language (2\u20134)", + "name": "Linguistics (LIDS)", + "prereqs": [], + "title": "" + }, + "Linguistics/American": { + "dept": "Linguistics/American", + "description": "Sign Language (LISL) 1DX. Analysis of American Sign Language (2.5)", + "name": "Linguistics/American", + "prereqs": [], + "title": "" + }, + "Linguistics/American Sign Language (LISL) 1E": { + "dept": "Linguistics/American", + "description": "Course aims to improve language skills through discussion of topics relevant to the Deaf community. Central topics will include education and American Sign Language (ASL) literature. Conducted entirely in American Sign Language. ", + "name": "Linguistics/American Sign Language (LISL) 1E", + "prereqs": [ + "LISL 1D", + "LISL 1DX" + ], + "title": "Intermediate American Sign Language Conversation (4)" + }, + "Linguistics/American Sign Language (LISL) 5A, 5B, 5C": { + "dept": "Linguistics/American", + "description": "This course concentrates on those language", + "name": "Linguistics/American Sign Language (LISL) 5A, 5B, 5C", + "prereqs": [], + "title": "Fundamentals of American Sign Language (5)" + }, + "Linguistics/Arabic (LIAB) 1A": { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1AX. ", + "name": "Linguistics/Arabic (LIAB) 1A", + "prereqs": [], + "title": "Arabic Conversation (2.5)" + }, + "Linguistics/Arabic (LIAB) 1AX": { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1A. ", + "name": "Linguistics/Arabic (LIAB) 1AX", + "prereqs": [], + "title": "Analysis of Arabic (2.5)" + }, + "Linguistics/Arabic (LIAB) 1B": { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1BX. ", + "name": "Linguistics/Arabic (LIAB) 1B", + "prereqs": [ + "LIAB 1A", + "LIAB 1AX" + ], + "title": "Arabic Conversation (2.5)" + }, + "Linguistics/Arabic (LIAB) 1BX": { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1B. ", + "name": "Linguistics/Arabic (LIAB) 1BX", + "prereqs": [ + "LIAB 1A", + "LIAB 1AX" + ], + "title": "Analysis of Arabic (2.5)" + }, + "Linguistics/Arabic (LIAB) 1C": { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1CX. ", + "name": "Linguistics/Arabic (LIAB) 1C", + "prereqs": [ + "LIAB 1BX", + "LIAB 1B" + ], + "title": "Arabic Conversation (2.5)" + }, + "Linguistics/Arabic (LIAB) 1CX": { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1C. ", + "name": "Linguistics/Arabic (LIAB) 1CX", + "prereqs": [ + "LIAB 1BX", + "LIAB 1B" + ], + "title": "Analysis of Arabic (2.5)" + }, + "Linguistics/Arabic (LIAB) 1D": { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1DX. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "name": "Linguistics/Arabic (LIAB) 1D", + "prereqs": [ + "LIAB 1CX", + "LIAB 1C" + ], + "title": "Arabic Conversation (2.5)" + }, + "Linguistics/Arabic (LIAB) 1DX": { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1D. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "name": "Linguistics/Arabic (LIAB) 1DX", + "prereqs": [ + "LIAB 1CX", + "LIAB 1C" + ], + "title": "Analysis of Arabic (2.5)" + }, + "Linguistics/Arabic (LIAB) 1E": { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1EX. ", + "name": "Linguistics/Arabic (LIAB) 1E", + "prereqs": [ + "LIAB 1D", + "LIAB 1DX" + ], + "title": "Arabic Conversation (2.5)" + }, + "Linguistics/Arabic (LIAB) 1EX": { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1E. ", + "name": "Linguistics/Arabic (LIAB) 1EX", + "prereqs": [ + "LIAB 1D", + "LIAB 1DX" + ], + "title": "Arabic Conversation (2.5)" + }, + "Linguistics/Arabic (LIAB) 1F": { + "dept": "Linguistics/Arabic", + "description": "A course to increase the proficiency level of students who have completed LIAB 1E/1EX or who are at an equivalent level. Attention to listening comprehension, conversation, vocabulary building, reading, grammar analysis, and culture. ", + "name": "Linguistics/Arabic (LIAB) 1F", + "prereqs": [ + "LIAB 1E", + "LIAB 1EX" + ], + "title": "Intermediate Arabic Conversation and Analysis (4)" + }, + "Linguistics/French (LIFR) 11": { + "dept": "Linguistics/French", + "description": "(2\u20134)", + "name": "Linguistics/French (LIFR) 11", + "prereqs": [], + "title": "Elementary French Reading" + }, + "Linguistics/French (LIFR) 1A": { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1AX. ", + "name": "Linguistics/French (LIFR) 1A", + "prereqs": [], + "title": "French Conversation (2.5)" + }, + "Linguistics/French (LIFR) 1AX": { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1A. ", + "name": "Linguistics/French (LIFR) 1AX", + "prereqs": [], + "title": "Analysis of French (2.5)" + }, + "Linguistics/French (LIFR) 1B": { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1BX. ", + "name": "Linguistics/French (LIFR) 1B", + "prereqs": [ + "LIFR 1AX", + "LIFR 1A" + ], + "title": "French Conversation (2.5)" + }, + "Linguistics/French (LIFR) 1BX": { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1B. ", + "name": "Linguistics/French (LIFR) 1BX", + "prereqs": [ + "LIFR 1AX", + "LIFR 1A" + ], + "title": "Analysis of French (2.5)" + }, + "Linguistics/French (LIFR) 1C": { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1CX. ", + "name": "Linguistics/French (LIFR) 1C", + "prereqs": [ + "LIFR 1B", + "LIFR 1BX" + ], + "title": "French Conversation (2.5)" + }, + "Linguistics/French (LIFR) 1CX": { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1C. ", + "name": "Linguistics/French (LIFR) 1CX", + "prereqs": [ + "LIFR 1B", + "LIFR 1BX" + ], + "title": "Analysis of French (2.5)" + }, + "Linguistics/French (LIFR) 1D": { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in French. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIFR 1DX. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "name": "Linguistics/French (LIFR) 1D", + "prereqs": [ + "LIFR 1CX", + "LIFR 1C" + ], + "title": "French Conversation (2.5)" + }, + "Linguistics/French (LIFR) 1DX": { + "dept": "Linguistics/French", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in French. Must be taken in conjunction with LIFR 1D. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "name": "Linguistics/French (LIFR) 1DX", + "prereqs": [ + "LIFR 1CX", + "LIFR 1C" + ], + "title": "Analysis of French (2.5)" + }, + "Linguistics/French (LIFR) 5B, 5C, 5D": { + "dept": "Linguistics/French", + "description": "This course concentrates on those language skills essential for communication: listening comprehension, conversation, reading, writing, and grammar analysis. UC San Diego students: LIFR 5A is equivalent to LIFR 1A/1AX, LIFR 5B to LIFR 1B/1BX, LIFR 5C to LIFR 1C/1CX, and LIFR 5D to LIFR 1D/1DX. Enrollment is limited. ", + "name": "Linguistics/French (LIFR) 5B, 5C, 5D", + "prereqs": [], + "title": "Fundamentals of French (5)" + }, + "Linguistics/German": { + "dept": "Linguistics/German", + "description": "(LIGM) 5A, 5B, 5C, 5D. Fundamentals of German (5)", + "name": "Linguistics/German", + "prereqs": [], + "title": "" + }, + "Linguistics/German (LIGM) 11": { + "dept": "Linguistics/German", + "description": "(2\u20134)", + "name": "Linguistics/German (LIGM) 11", + "prereqs": [], + "title": "Elementary German Reading" + }, + "Linguistics/German (LIGM) 1A": { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1AX. ", + "name": "Linguistics/German (LIGM) 1A", + "prereqs": [], + "title": "German Conversation (2.5)" + }, + "Linguistics/German (LIGM) 1AX": { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1A. ", + "name": "Linguistics/German (LIGM) 1AX", + "prereqs": [], + "title": "Analysis of German (2.5)" + }, + "Linguistics/German (LIGM) 1B": { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1BX. ", + "name": "Linguistics/German (LIGM) 1B", + "prereqs": [ + "LIGM 1A", + "LIGM 1AX" + ], + "title": "German Conversation (2.5)" + }, + "Linguistics/German (LIGM) 1BX": { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1B. ", + "name": "Linguistics/German (LIGM) 1BX", + "prereqs": [ + "LIGM 1A", + "LIGM 1AX" + ], + "title": "Analysis of German (2.5)" + }, + "Linguistics/German (LIGM) 1C": { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1CX. ", + "name": "Linguistics/German (LIGM) 1C", + "prereqs": [ + "LIGM 1B", + "LIGM 1BX" + ], + "title": "German Conversation (2.5)" + }, + "Linguistics/German (LIGM) 1CX": { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1C. ", + "name": "Linguistics/German (LIGM) 1CX", + "prereqs": [ + "LIGM 1B", + "LIGM 1BX" + ], + "title": "Analysis of German (2.5)" + }, + "Linguistics/German (LIGM) 1D": { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in German. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIGM 1DX. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "name": "Linguistics/German (LIGM) 1D", + "prereqs": [ + "LIGM 1C", + "LIGM 1CX" + ], + "title": "German Conversation (2.5)" + }, + "Linguistics/German (LIGM) 1DX": { + "dept": "Linguistics/German", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in German. Must be taken in conjunction with LIGM 1D. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "name": "Linguistics/German (LIGM) 1DX", + "prereqs": [ + "LIGM 1C", + "LIGM 1CX" + ], + "title": "Analysis of German (2.5)" + }, + "Linguistics/Heritage Languages (LIHL) 112F": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112F. Courses may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 112F", + "prereqs": [], + "title": "Filipino for Filipino Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 112P": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112P. Courses may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 112P", + "prereqs": [], + "title": "Filipino for Filipino Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 112W": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112W. Courses may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 112W", + "prereqs": [], + "title": "Filipino for Filipino Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 113": { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal", + "name": "Linguistics/Heritage Languages (LIHL) 113", + "prereqs": [], + "title": "Armenian for Armenian Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 114F": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 114F", + "prereqs": [], + "title": "Vietnamese for Vietnamese Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 114W": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 114W", + "prereqs": [], + "title": "Vietnamese for Vietnamese Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 115F": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 115F", + "prereqs": [], + "title": "Korean for Korean Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 115P": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 115P", + "prereqs": [], + "title": "Korean for Korean Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 115W": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 115W", + "prereqs": [], + "title": "Korean for Korean Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 116F": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 116F", + "prereqs": [], + "title": "Arabic for Arabic Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 116P": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 116P", + "prereqs": [], + "title": "Arabic for Arabic Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 116W": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 116W", + "prereqs": [], + "title": "Arabic for Arabic Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 117F": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 117F", + "prereqs": [], + "title": "Persian for Persian Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 117P": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 117P", + "prereqs": [], + "title": "Persian for Persian Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 117W": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 117W", + "prereqs": [], + "title": "Persian for Persian Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 118": { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal", + "name": "Linguistics/Heritage Languages (LIHL) 118", + "prereqs": [], + "title": "Cantonese for Cantonese Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 119F": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 119F", + "prereqs": [], + "title": "Hindi for Hindi Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 119P": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 119P", + "prereqs": [], + "title": "Hindi for Hindi Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 119W": { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family media/arts; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 119W", + "prereqs": [], + "title": "Hindi for Hindi Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 132F": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 132F", + "prereqs": [], + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 132P": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 132P", + "prereqs": [], + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 132W": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 132W", + "prereqs": [], + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 134F": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 134F", + "prereqs": [], + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 134P": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 134P", + "prereqs": [], + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 134W": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 134W", + "prereqs": [], + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 135F": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 135F", + "prereqs": [], + "title": "Advanced Korean for Korean Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 135P": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 135P", + "prereqs": [], + "title": "Advanced Korean for Korean Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 135W": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 135W", + "prereqs": [], + "title": "Advanced Korean for Korean Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 136": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language functions required for advanced oral communication, reading, writing, and cultural understanding in professional contexts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Arabic. ", + "name": "Linguistics/Heritage Languages (LIHL) 136", + "prereqs": [], + "title": "Advanced Arabic for Arabic Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 137F": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 137F", + "prereqs": [], + "title": "Advanced Persian for Persian Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 137P": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 137P", + "prereqs": [], + "title": "Advanced Persian for Persian Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 137W": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 137W", + "prereqs": [], + "title": "Advanced Persian for Persian Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 138": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language functions required", + "name": "Linguistics/Heritage Languages (LIHL) 138", + "prereqs": [], + "title": "Advanced Cantonese for Cantonese Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 139F": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 139F", + "prereqs": [], + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 139P": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 139P", + "prereqs": [], + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 139W": { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "name": "Linguistics/Heritage Languages (LIHL) 139W", + "prereqs": [], + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 16": { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal spoken Arabic but who have little or no reading and writing skills. Topics include the Arabic alphabet, basic reading and writing, and differences between colloquial and written Arabic. ", + "name": "Linguistics/Heritage Languages (LIHL) 16", + "prereqs": [], + "title": "Arabic Literacy for Arabic Speakers (4)" + }, + "Linguistics/Heritage Languages (LIHL) 17": { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal spoken Persian but who have little or no reading and writing skills. Topics include the Persian alphabet, basic reading and writing, and differences between colloquial and written Persian. ", + "name": "Linguistics/Heritage Languages (LIHL) 17", + "prereqs": [], + "title": "Persian Literacy for Persian Speakers (4)" + }, + "Linguistics/Hindi": { + "dept": "Linguistics/Hindi", + "description": "(LIHI) 1C. Hindi Conversation (2.5)", + "name": "Linguistics/Hindi", + "prereqs": [], + "title": "" + }, + "Linguistics/Hindi (LIHI) 1A": { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "name": "Linguistics/Hindi (LIHI) 1A", + "prereqs": [], + "title": "Hindi Conversation (2.5)" + }, + "Linguistics/Hindi (LIHI) 1AX": { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "name": "Linguistics/Hindi (LIHI) 1AX", + "prereqs": [], + "title": "Analysis of Hindi (2.5)" + }, + "Linguistics/Hindi (LIHI) 1B": { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "name": "Linguistics/Hindi (LIHI) 1B", + "prereqs": [], + "title": "Hindi Conversation (2.5)" + }, + "Linguistics/Hindi (LIHI) 1BX": { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "name": "Linguistics/Hindi (LIHI) 1BX", + "prereqs": [], + "title": "Analysis of Hindi (2.5)" + }, + "Linguistics/Hindi (LIHI) 1CX": { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "name": "Linguistics/Hindi (LIHI) 1CX", + "prereqs": [], + "title": "Analysis of Hindi (2.5)" + }, + "Linguistics/Hindi (LIHI) 1D": { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "name": "Linguistics/Hindi (LIHI) 1D", + "prereqs": [], + "title": "Hindi Conversation (2.5)" + }, + "Linguistics/Hindi (LIHI) 1DX": { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "name": "Linguistics/Hindi (LIHI) 1DX", + "prereqs": [], + "title": "Analysis of Hindi (2.5)" + }, + "Linguistics/Italian": { + "dept": "Linguistics/Italian", + "description": "(LIIT) 1A. Italian Conversation (2.5)", + "name": "Linguistics/Italian", + "prereqs": [], + "title": "" + }, + "Linguistics/Italian (LIIT) 1AX": { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1A. ", + "name": "Linguistics/Italian (LIIT) 1AX", + "prereqs": [], + "title": "Analysis of Italian (2.5)" + }, + "Linguistics/Italian (LIIT) 1B": { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1BX. ", + "name": "Linguistics/Italian (LIIT) 1B", + "prereqs": [ + "LIIT 1A", + "LIIT 1AX" + ], + "title": "Italian Conversation (2.5)" + }, + "Linguistics/Italian (LIIT) 1BX": { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1B. ", + "name": "Linguistics/Italian (LIIT) 1BX", + "prereqs": [ + "LIIT 1A", + "LIIT 1AX" + ], + "title": "Analysis of Italian (2.5)" + }, + "Linguistics/Italian (LIIT) 1C": { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1CX. ", + "name": "Linguistics/Italian (LIIT) 1C", + "prereqs": [ + "LIIT 1B", + "LIIT 1BX" + ], + "title": "Italian Conversation (2.5)" + }, + "Linguistics/Italian (LIIT) 1CX": { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1C. ", + "name": "Linguistics/Italian (LIIT) 1CX", + "prereqs": [ + "LIIT 1B", + "LIIT 1BX" + ], + "title": "Analysis of Italian (2.5)" + }, + "Linguistics/Italian (LIIT) 1D": { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught", + "name": "Linguistics/Italian (LIIT) 1D", + "prereqs": [], + "title": "Italian Conversation (2.5)" + }, + "Linguistics/Italian (LIIT) 1DX": { + "dept": "Linguistics/Italian", + "description": "(2.5)", + "name": "Linguistics/Italian (LIIT) 1DX", + "prereqs": [], + "title": "Analysis of Italian" + }, + "Linguistics/Italian (LIIT) 5AS": { + "dept": "Linguistics/Italian", + "description": "A communicative introduction to Italian for students with no prior exposure, with attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1A/1AX. ", + "name": "Linguistics/Italian (LIIT) 5AS", + "prereqs": [], + "title": "Fundamentals of Italian I (5)" + }, + "Linguistics/Italian (LIIT) 5BS": { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1A/1AX, 5AS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1B/1BX. ", + "name": "Linguistics/Italian (LIIT) 5BS", + "prereqs": [ + "LIIT 1A" + ], + "title": "Fundamentals of Italian II (5)" + }, + "Linguistics/Italian (LIIT) 5CS": { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1B/1BX, 5BS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1C/1CX. ", + "name": "Linguistics/Italian (LIIT) 5CS", + "prereqs": [ + "LIIT 1B" + ], + "title": "Fundamentals of Italian III (5)" + }, + "Linguistics/Italian (LIIT) 5DS": { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1C/1CX, 5CS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT1D/1DX. ", + "name": "Linguistics/Italian (LIIT) 5DS", + "prereqs": [ + "LIIT 1C" + ], + "title": "Fundamentals of Italian IV (5)" + }, + "Linguistics/Portuguese": { + "dept": "Linguistics/Portuguese", + "description": "(LIPO) 16. Intermediate", + "name": "Linguistics/Portuguese", + "prereqs": [], + "title": "" + }, + "Linguistics/Portuguese (LIPO) 15": { + "dept": "Linguistics/Portuguese", + "description": "for the Social Sciences: Social Movements (2.0)", + "name": "Linguistics/Portuguese (LIPO) 15", + "prereqs": [], + "title": "Intermediate Brazilian Portuguese" + }, + "Linguistics/Portuguese (LIPO) 17": { + "dept": "Linguistics/Portuguese", + "description": "Portuguese for the Social Sciences: Ethnicity (2.0)", + "name": "Linguistics/Portuguese (LIPO) 17", + "prereqs": [], + "title": "Intermediate Brazilian" + }, + "Linguistics/Portuguese (LIPO) 1A": { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "name": "Linguistics/Portuguese (LIPO) 1A", + "prereqs": [], + "title": "Portuguese Conversation (2.5)" + }, + "Linguistics/Portuguese (LIPO) 1AX": { + "dept": "Linguistics/Portuguese", + "description": "Presentation and practice of the basic grammatical", + "name": "Linguistics/Portuguese (LIPO) 1AX", + "prereqs": [], + "title": "Analysis of Portuguese (2.5)" + }, + "Linguistics/Portuguese (LIPO) 1B": { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "name": "Linguistics/Portuguese (LIPO) 1B", + "prereqs": [], + "title": "Portuguese Conversation (2.5)" + }, + "Linguistics/Portuguese (LIPO) 1BX": { + "dept": "Linguistics/Portuguese", + "description": "(2.5)", + "name": "Linguistics/Portuguese (LIPO) 1BX", + "prereqs": [], + "title": "Analysis of Portuguese" + }, + "Linguistics/Portuguese (LIPO) 1C": { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "name": "Linguistics/Portuguese (LIPO) 1C", + "prereqs": [], + "title": "Portuguese Conversation (2.5)" + }, + "Linguistics/Portuguese (LIPO) 1CX": { + "dept": "Linguistics/Portuguese", + "description": "Presentation and practice of the basic grammatical", + "name": "Linguistics/Portuguese (LIPO) 1CX", + "prereqs": [], + "title": "Analysis of Portuguese (2.5)" + }, + "Linguistics/Portuguese (LIPO) 1D": { + "dept": "Linguistics/Portuguese", + "description": "Small conversion sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIPO 1DX. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "name": "Linguistics/Portuguese (LIPO) 1D", + "prereqs": [ + "LIPO 1C", + "LIPO 1CX" + ], + "title": "Portuguese Conversation (2.5)" + }, + "Linguistics/Portuguese (LIPO) 1DX": { + "dept": "Linguistics/Portuguese", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Portuguese. Must be taken in conjunction with LIPO 1D. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "name": "Linguistics/Portuguese (LIPO) 1DX", + "prereqs": [ + "LIPO 1C", + "LIPO 1CX" + ], + "title": "Analysis of Portuguese (2.5)" + }, + "Linguistics/Spanish (LISP) 15, 16, 17": { + "dept": "Linguistics/Spanish", + "description": "Conducted entirely in Spanish. Course aims to improve oral language skills through discussions of social science topics, with emphasis on political events and current affairs. Course materials encompass televised news broadcasts, newspapers and periodicals. LISP 15 is offered fall quarter only, LISP 16 is offered winter quarter only, and LISP 17 is offered spring quarter only. Each course may be taken one time and need not be taken in sequence. ", + "name": "Linguistics/Spanish (LISP) 15, 16, 17", + "prereqs": [ + "LISP 1DX", + "LISP 1D" + ], + "title": "Intermediate Spanish for the Social Sciences (2)" + }, + "Linguistics/Spanish (LISP) 1A": { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1AX. ", + "name": "Linguistics/Spanish (LISP) 1A", + "prereqs": [], + "title": "Spanish Conversation (2.5)" + }, + "Linguistics/Spanish (LISP) 1AX": { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1A. ", + "name": "Linguistics/Spanish (LISP) 1AX", + "prereqs": [], + "title": "Analysis of Spanish (2.5)" + }, + "Linguistics/Spanish (LISP) 1B": { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1BX. ", + "name": "Linguistics/Spanish (LISP) 1B", + "prereqs": [ + "LISP 1A", + "LISP 1AX" + ], + "title": "Spanish Conversation (2.5)" + }, + "Linguistics/Spanish (LISP) 1BX": { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1B. ", + "name": "Linguistics/Spanish (LISP) 1BX", + "prereqs": [ + "LISP 1A", + "LISP 1AX" + ], + "title": "Analysis of Spanish (2.5)" + }, + "Linguistics/Spanish (LISP) 1C": { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1CX. ", + "name": "Linguistics/Spanish (LISP) 1C", + "prereqs": [ + "LISP 1B", + "LISP 1BX" + ], + "title": "Spanish Conversation (2.5)" + }, + "Linguistics/Spanish (LISP) 1CX": { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1C. ", + "name": "Linguistics/Spanish (LISP) 1CX", + "prereqs": [ + "LISP 1B", + "LISP 1BX" + ], + "title": "Analysis of Spanish (2.5)" + }, + "Linguistics/Spanish (LISP) 1D": { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in Spanish. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LISP 1DX. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "name": "Linguistics/Spanish (LISP) 1D", + "prereqs": [ + "LISP 1C", + "LISP 1CX" + ], + "title": "Spanish Conversation (2.5)" + }, + "Linguistics/Spanish (LISP) 1DX": { + "dept": "Linguistics/Spanish", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Spanish. Must be taken in conjunction with LISP 1D. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "name": "Linguistics/Spanish (LISP) 1DX", + "prereqs": [ + "LISP 1C", + "LISP 1CX" + ], + "title": "Analysis of Spanish (2.5)" + }, + "Linguistics/Spanish (LISP) 5A, 5B, 5C, 5D": { + "dept": "Linguistics/Spanish", + "description": "This course concentrates on those language", + "name": "Linguistics/Spanish (LISP) 5A, 5B, 5C, 5D", + "prereqs": [], + "title": "Fundamentals of Spanish (5)" + }, + "MAE": { + "dept": "MAE", + "description": "03. Introduction to Engineering Graphics and Design (4)", + "name": "MAE", + "prereqs": [], + "title": "" + }, + "MAE 02": { + "dept": "MAE", + "description": "An introduction to topics in aeronautical and astronautical engineering including aerodynamics, propulsion, flight mechanics, structures, materials, orbital mechanics, design, mission planning, and environments. General topics include historical background, career opportunities, engineering ethics, and professionalism. ", + "name": "MAE 02", + "prereqs": [], + "title": "Introduction to Aerospace Engineering (4)" + }, + "MAE 05": { + "dept": "MAE", + "description": "Introductory course for nonengineering majors. Use of computers in solving problems; applications from life sciences, physical sciences, and engineering. Students run existing computer programs and complete some programming in BASIC. ", + "name": "MAE 05", + "prereqs": [], + "title": "Quantitative Computer Skills (4)" + }, + "MAE 07": { + "dept": "MAE", + "description": "(Cross-listed with SE 7.) Spatial visualization is the ability to manipulate 2-D and 3-D shapes in one\u2019s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ", + "name": "MAE 07", + "prereqs": [], + "title": "Spatial Visualization (1)" + }, + "MAE 08": { + "dept": "MAE", + "description": "Computer programming in Matlab with elementary numerical analysis of engineering problems. Arithmetic and logical operations, arrays, graphical presentation of computations, symbolic mathematics, solutions of equations, and introduction to data structures. ", + "name": "MAE 08", + "prereqs": [ + "MATH 20A", + "MATH 20B" + ], + "title": "Matlab Programming for Engineering Analysis (4)" + }, + "MAE 101A": { + "dept": "MAE", + "description": "Fluid statics; fluid kinematics; integral and differential forms of the conservation laws for mass, momentum, and energy; Bernoulli equation; potential flows; dimensional analysis and similitude. ", + "name": "MAE 101A", + "prereqs": [ + "PHYS 2A", + "MATH 20D", + "MATH 20E", + "MATH 21D" + ], + "title": "Introductory Fluid Mechanics (4)" + }, + "MAE 101B": { + "dept": "MAE", + "description": "Laminar and turbulent flow. Pipe flow including", + "name": "MAE 101B", + "prereqs": [], + "title": "Advanced Fluid Mechanics (4)" + }, + "MAE 101C": { + "dept": "MAE", + "description": "Extension of fluid mechanics in MAE 101A\u2013B", + "name": "MAE 101C", + "prereqs": [], + "title": "Heat Transfer (4)" + }, + "MAE 101D": { + "dept": "MAE", + "description": "Course builds on the MAE fluids sequence, offering more advanced concepts in conduction, convection, radiation, and heat exchanger design. This course covers numerical methods in conduction, boiling, condensation and evaporation analysis, natural and turbulent convection, spectral and directional radiative transfer, heatpipes, thermal design of spacecraft, heat exchanger analysis and design. ", + "name": "MAE 101D", + "prereqs": [ + "MAE 101C" + ], + "title": "Intermediate Heat Transfer (4)" + }, + "MAE 104": { + "dept": "MAE", + "description": "Basic relations describing flow field around", + "name": "MAE 104", + "prereqs": [], + "title": "Aerodynamics (4)" + }, + "MAE 105": { + "dept": "MAE", + "description": "Fourier series, Sturm Liouville theory, elementary", + "name": "MAE 105", + "prereqs": [], + "title": "Introduction to Mathematical Physics (4)" + }, + "MAE 107": { + "dept": "MAE", + "description": "Introduction to scientific computing and algorithms; iterative methods, systems of linear equations with applications; nonlinear algebraic equations; function interpolation and differentiation and optimal procedures; data fitting and least-squares; numerical solution of ordinary differential equations. ", + "name": "MAE 107", + "prereqs": [ + "MAE 8", + "MAE 9", + "MATH 31AH", + "MATH 20F", + "MATH 18" + ], + "title": "Computational Methods in Engineering (4)" + }, + "MAE 108": { + "dept": "MAE", + "description": "Probability theory, conditional probability, Bayes theorem,", + "name": "MAE 108", + "prereqs": [], + "title": "Probability and Statistical Methods for Mechanical Engineering (4)" + }, + "MAE 11": { + "dept": "MAE", + "description": "Fundamentals of engineering thermodynamics: energy, work, heat, properties of pure substances, first and second laws for closed systems and control volumes, gas mixtures. Application to engineering systems, power and refrigeration cycles, combustion. Renumbered from MAE 110A. Students may not receive credit for MAE 11 and MAE 110A. ", + "name": "MAE 11", + "prereqs": [ + "PHYS 2C", + "CHEM 6A" + ], + "title": "Thermodynamics (4)" + }, + "MAE 110": { + "dept": "MAE", + "description": "Thermodynamic analysis of power cycles with application to combustion driven engines: internal combustion, diesel, and gas turbines. Thermodynamics of mixtures and chemical and phase equilibrium. Computational methods for calculating chemical equilibrium. Renumbered from MAE 110B. Students may not receive credit for MAE 110 and MAE 110B. ", + "name": "MAE 110", + "prereqs": [ + "MAE 110A", + "MAE 11" + ], + "title": "Thermodynamic Systems (4)" + }, + "MAE 113": { + "dept": "MAE", + "description": "Compressible flow, thermodynamics, and combustion", + "name": "MAE 113", + "prereqs": [], + "title": "Fundamentals of Propulsion (4)" + }, + "MAE 117A": { + "dept": "MAE", + "description": "(Cross-listed with Physics 151.) Particle", + "name": "MAE 117A", + "prereqs": [], + "title": "Elementary Plasma Physics (4)" + }, + "MAE 118": { + "dept": "MAE", + "description": "Overview of present day primary energy sources and availability; fossil fuel, renewable, and nuclear; heat engines; energy conservation, transportation, air pollution, and climate change. Students may not receive credit for both MAE 118 and MAE 118A. ", + "name": "MAE 118", + "prereqs": [ + "CENG 101A", + "MAE 101A" + ], + "title": "Introduction to Energy Systems (4)" + }, + "MAE 119": { + "dept": "MAE", + "description": "Basic principles of solar radiation\u2014diffuse and direct radiation; elementary solar energy engineering\u2014solar thermal and solar photovoltaic; basic principles of wind dynamics\u2014hydrodynamic laws, wind intermittency, Betz\u2019s law; elementary wind energy engineering; solar and wind energy perspectives; operating the California power grid with 33 percent renewable energy sources. Students may not receive credit for both MAE 118B and MAE 119. ", + "name": "MAE 119", + "prereqs": [ + "CENG 101A", + "MAE 101A" + ], + "title": "Introduction to Renewable Energy: Solar and Wind (4)" + }, + "MAE 120": { + "dept": "MAE", + "description": "Overview of basic fission and fusion processes. Elementary fission reactor physics and engineering; environmental and waste disposal issues. Survey of fusion technology issues and perspectives. May not receive credit for both MAE 118C and MAE 120. ", + "name": "MAE 120", + "prereqs": [ + "CENG 101A", + "MAE 101A" + ], + "title": "Introduction to Nuclear Energy (4)" + }, + "MAE 121": { + "dept": "MAE", + "description": "Overview of air pollution and wastes and their impact. Characteristics of air pollutants. Air pollution transport. Atmospheric stability. Plume rise and dispersion. Meteorological data. Selecting the appropriate air quality model and case studies. Modeling complex terrain situations. Current air quality modeling issues. Laws and regulations to control air pollution. ", + "name": "MAE 121", + "prereqs": [ + "MAE 122", + "MAE 125A" + ], + "title": "Air Pollution Transport and Dispersion Modeling (4)" + }, + "MAE 122": { + "dept": "MAE", + "description": "Introduction to the air and aquatic environments. Buoyancy, stratification, and rotation. Earth surface energy balance. Introduction to the atmospheric boundary layer. Advection and diffusion. Turbulent diffusion and dispersion in rivers and in the atmospheric boundary layer. Surface waves and internal gravity waves. ", + "name": "MAE 122", + "prereqs": [ + "CENG 101A", + "MAE 101A" + ], + "title": "Flow and Transport in the Environment (4)" + }, + "MAE 123": { + "dept": "MAE", + "description": "Introduction to groundwater flow. Pollution transport through the water table. Fundamentals of flow. Single- and multi-phase flow. Darcy law. Well hydraulics. Diffusion and dispersion. Gravity currents and plumes in porous media. Chemistry of fluid-solid interactions. Fundamentals of adsorption and surface reactions. ", + "name": "MAE 123", + "prereqs": [ + "CENG 101B", + "MAE 105", + "MAE 107", + "MAE 101C" + ], + "title": "Introduction to Transport in Porous Media (4)" + }, + "MAE 124": { + "dept": "MAE", + "description": "Challenges: Science and Solutions (4)", + "name": "MAE 124", + "prereqs": [], + "title": "Environmental" + }, + "MAE 126A": { + "dept": "MAE", + "description": "Engineering Laboratory (4)", + "name": "MAE 126A", + "prereqs": [], + "title": "Environmental" + }, + "MAE 126B": { + "dept": "MAE", + "description": "Engineering Design (4)", + "name": "MAE 126B", + "prereqs": [], + "title": "Environmental" + }, + "MAE 130A": { + "dept": "MAE", + "description": "(Cross-listed with SE 101A.) Statics of particles and rigid bodies in two and three dimensions. Free body diagrams. Internal forces. Static analysis of trusses, frames, and machines. Shear force and bending moment diagrams in beams. Equilibrium problems with friction. Students may not receive credit for both MAE 130A and SE 101A. ", + "name": "MAE 130A", + "prereqs": [ + "PHYS 2A", + "SE 101A", + "MATH 20C" + ], + "title": "Mechanics I: Statics (4)" + }, + "MAE 130B": { + "dept": "MAE", + "description": "(Cross-listed with SE101B.) Kinematics and kinetics of particles in 2-D and 3-D motion. Newton\u2019s equations of motion. Energy and momentum methods. Impulsive motion and impact. Systems of particles. Kinematics and kinetics of rigid bodies in 2-D. Introduction to 3-D dynamics of rigid bodies. Students may not receive credit for both MAE 130B and SE 101B. ", + "name": "MAE 130B", + "prereqs": [ + "MAE 130A", + "SE 101A" + ], + "title": "Mechanics II: Dynamics (4)" + }, + "MAE 130C": { + "dept": "MAE", + "description": "(Cross-listed with SE 101C.) Free and forced", + "name": "MAE 130C", + "prereqs": [], + "title": "Mechanics III: Vibrations (4)" + }, + "MAE 131A": { + "dept": "MAE", + "description": "Concepts of stress and strain. Hooke\u2019s Law. Axial loading of bars. Torsion of circular shafts. Shearing and normal stresses in beam bending. Deflections in beams. Statically determinate and indeterminate problems. Combined loading. Principal stresses and design criteria. Buckling of columns. ", + "name": "MAE 131A", + "prereqs": [ + "MAE 130A", + "SE 101A", + "MATH 20D" + ], + "title": "Solid Mechanics I (4)" + }, + "MAE 131B": { + "dept": "MAE", + "description": "Continuous mechanics of solids and its application", + "name": "MAE 131B", + "prereqs": [], + "title": "Fundamentals of Solid Mechanics II (4)" + }, + "MAE 133": { + "dept": "MAE", + "description": "Element Methods in Mechanical and Aerospace Engineering (4)", + "name": "MAE 133", + "prereqs": [], + "title": "Finite" + }, + "MAE 140": { + "dept": "MAE", + "description": "Steady-state and dynamic behavior of linear, lumped-parameter electrical circuits. Kirchoff\u2019s laws. RLC circuits. Node and mesh analysis. Operational amplifiers. Signal acquisition and conditioning. Electric motors. Design applications in engineering. ", + "name": "MAE 140", + "prereqs": [ + "PHYS 2B", + "MATH 20D", + "MATH 20F", + "MATH 21D" + ], + "title": "Linear Circuits (4)" + }, + "MAE 142": { + "dept": "MAE", + "description": "and Control of Aerospace Vehicles (4)", + "name": "MAE 142", + "prereqs": [], + "title": "Dynamics" + }, + "MAE 143A": { + "dept": "MAE", + "description": "Dynamic modeling and vector differential equations. Concepts of state, input, output. Linearization around equilibria. Laplace transform, solutions to ODEs. Transfer functions and convolution representation of dynamic systems. Discrete signals, difference equations, z-transform. Continuous and discrete Fourier transform. ", + "name": "MAE 143A", + "prereqs": [ + "MATH 20D", + "MATH 20E", + "MATH 20F", + "MATH 21D", + "MAE 105", + "MATH 31AH", + "MATH 18" + ], + "title": "Signals and Systems (4)" + }, + "MAE 143B": { + "dept": "MAE", + "description": "Analysis and design of feedback systems in the frequency domain. Transfer functions. Time response specifications. PID controllers and Ziegler-Nichols tuning. Stability via Routh-Hurwitz test. Root locus method. Frequence response: Bode and Nyquist diagrams. Dynamic compensators, phase-lead and phase-lag. Actuator saturation and integrator wind-up. ", + "name": "MAE 143B", + "prereqs": [ + "MAE 143A" + ], + "title": "Linear Control (4)" + }, + "MAE 144": { + "dept": "MAE", + "description": "Each student builds, models, programs, and controls an unstable robotic system built around a small Linux computer. Review/synthesis of: A) modern physical and electrical CAD. B) dynamics, signals and systems, linear circuits; PWMs, H-bridges, quadrature encoders. C) embedded Linux, C, graphical programming; multithreaded applications; bus communication to supporting ICs. D) classical control theory in both continuous-time (CT) and discrete-time (DT); interconnection of CT and DT elements. Program or materials fees may apply. ", + "name": "MAE 144", + "prereqs": [ + "MAE 143B", + "ECE 171A", + "BENG 122A" + ], + "title": "Embedded Control and Robotics (4)" + }, + "MAE 145": { + "dept": "MAE", + "description": "This course is an introduction to robotic planning algorithms and programming. Topics: sensor-based planning (bug algorithms), motion planning via decomposition and search (basic search algorithms on graphs, A*), the configuration-space concept, free configuration spaces via sampling, collision detection algorithms, (optimal) planning via sampling (probabilistic trees), environment roadmaps, and (extended) Kalman filtering for robot localization and environment mapping (SLAM). ", + "name": "MAE 145", + "prereqs": [ + "MAE 130B" + ], + "title": "Introduction to Robotic Planning and Estimation (4)" + }, + "MAE 149": { + "dept": "MAE", + "description": "(Cross-listed with ECE 156.) Characteristics of chemical, biological, seismic and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust censor fabrics; current experience with low power, low-cost sensor deployments. Students may not receive credit for both MAE 149 and ECE 156. May be coscheduled with SIOC 238. ", + "name": "MAE 149", + "prereqs": [], + "title": "Sensor Networks (4)" + }, + "MAE 150": { + "dept": "MAE", + "description": "Computer-aided analysis and design. Design methodology, tolerance analysis, Monte Carlo analysis, kinematics and computer-aided design of linkages, numerical calculations of moments of inertia, design of cams and cam dynamics; finite element analysis, design using Pro-E, Mechanica Motion and Mechanica Structures. ", + "name": "MAE 150", + "prereqs": [ + "BENG 110", + "MAE 130A", + "MAE 107", + "SE 121", + "MAE 3", + "SE 101A" + ], + "title": "Computer-Aided Design (4)" + }, + "MAE 154": { + "dept": "MAE", + "description": "This course will teach teams of students how to develop concepts and business plans in the design of new and innovative products. Emphasis will be placed on identifying user needs, concept generation, and prototype fabrication. ", + "name": "MAE 154", + "prereqs": [], + "title": "Product Design and Entrepreneurship (4)" + }, + "MAE 155A": { + "dept": "MAE", + "description": "Fundamental principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. ", + "name": "MAE 155A", + "prereqs": [ + "MAE 130C", + "SE 160B", + "MAE 104", + "MAE 113", + "MAE 2", + "MAE 150", + "SE 2", + "MAE 142" + ], + "title": "Aerospace Engineering Design I (4)" + }, + "MAE 155B": { + "dept": "MAE", + "description": "The principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. Program or materials fees may apply. ", + "name": "MAE 155B", + "prereqs": [ + "MAE 170", + "MAE 155A", + "MAE 150", + "MAE 113", + "MAE 142" + ], + "title": "Aerospace Engineering Design II (4)" + }, + "MAE 156A": { + "dept": "MAE", + "description": "Principles of Mechanical Design I (4)", + "name": "MAE 156A", + "prereqs": [], + "title": "Fundamental" + }, + "MAE 156B": { + "dept": "MAE", + "description": "Principles of Mechanical Design II (4)", + "name": "MAE 156B", + "prereqs": [], + "title": "Fundamental" + }, + "MAE 160": { + "dept": "MAE", + "description": "Elasticity and inelasticity, dislocations and plasticity of crystals, creep, and strengthening mechanisms. Mechanical behavior of ceramics, composites, and polymers. Fracture: mechanical and microstructural. Fatigue. Laboratory demonstrations of selected topics. ", + "name": "MAE 160", + "prereqs": [ + "MAE 130A", + "MAE 20", + "SE 101A", + "MAE 131A" + ], + "title": "Mechanical Behavior of Materials (4)" + }, + "MAE 165": { + "dept": "MAE", + "description": "and Failure Analysis of Engineering Components (4)", + "name": "MAE 165", + "prereqs": [], + "title": "Fatigue" + }, + "MAE 166": { + "dept": "MAE", + "description": "Basic principles of synthesis techniques, processing, microstructural control and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. ", + "name": "MAE 166", + "prereqs": [], + "title": "Nanomaterials (4)" + }, + "MAE 167": { + "dept": "MAE", + "description": "Pressure and shear waves in infinite solids. Reflection and diffraction. Rayleigh and Love waves in semi-infinite space. Impulse load on a half space. Waveguides and group velocity. ", + "name": "MAE 167", + "prereqs": [], + "title": "Wave Dynamics in Materials (4)" + }, + "MAE 170": { + "dept": "MAE", + "description": "Principles and practice of measurement and control and the design and conduct of experiments. Technical report writing. Lectures relate to dimensional analysis, error analysis, signal-to-noise problems, filtering, data acquisition and data reduction, as well as background of experiments and statistical analysis. Experiments relate to the use of electronic devices and sensors. ", + "name": "MAE 170", + "prereqs": [ + "PHYS 2CL" + ], + "title": "Experimental Techniques (4)" + }, + "MAE 171A": { + "dept": "MAE", + "description": "Design and analysis of experiments in fluid mechanics, solid mechanics, and control engineering. Experiments in wind tunnel, water tunnel, vibration table and material testing machines, and refined electromechanical systems. Laboratory report writing; error analysis; engineering ethics. ", + "name": "MAE 171A", + "prereqs": [ + "MAE 143B", + "MAE 101C", + "MAE 130C", + "MAE 170", + "SE 101C", + "MAE 160", + "MAE 131B", + "CENG 101B", + "SE 110B", + "MAE 140", + "CENG 120" + ], + "title": "Mechanical Engineering Laboratory I (4)" + }, + "MAE 171B": { + "dept": "MAE", + "description": "Design and analysis of original experiments in mechanical engineering. Students research projects using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine and control systems. Students propose and design experiments, obtain data, complete engineering analysis and write a major report. ", + "name": "MAE 171B", + "prereqs": [ + "MAE 171A" + ], + "title": "Mechanical Engineering Laboratory II (4)" + }, + "MAE 175A": { + "dept": "MAE", + "description": "Analysis of aerospace engineering systems using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine. Students operate facilities, obtain data, complete engineering analysis and write major reports. ", + "name": "MAE 175A", + "prereqs": [ + "CENG 101B", + "MAE 143B", + "MAE 170", + "CENG 120", + "MAE 101C" + ], + "title": "Aerospace Engineering Laboratory I (4)" + }, + "MAE 180A": { + "dept": "MAE", + "description": "Astrodynamics, orbital motion, perturbations, coordinate systems and frames of reference. Geosynchronous orbits, stationkeeping. Orbital maneuvers, fuel consumption, guidance systems. Observation instrument point, tracking, control. Basic rocket dynamics. Navigation, telemetry, re-entry, and aero-assisted maneuvers. Mission design. Students perform analyses based on mission requirements. ", + "name": "MAE 180A", + "prereqs": [], + "title": "Spacecraft Guidance I (4)" + }, + "MAE 181": { + "dept": "MAE", + "description": "Space mission concepts, architectures, and analysis. Mission geometry. Astrodynamics. Orbit and constellation design. Space environment. Payload and spacecraft design and sizing. Power sources and distribution. Thermal management. Structural design. Guidance and navigation. Space propulsion. Orbital debris and survivability. Cost modeling and risk analysis. ", + "name": "MAE 181", + "prereqs": [], + "title": "Space Mission Analysis and Design (4)" + }, + "MAE 197": { + "dept": "MAE", + "description": "Students work in local industry or hospitals under faculty supervision. Units may not be applied toward graduation requirements. Salaried or unsalaried. Number of units determined by enrollment frequency. First quarter up to four units. Subsequent quarters cannot exceed one unit. ", + "name": "MAE 197", + "prereqs": [], + "title": "Engineering Internship (1\u20134)" + }, + "MAE 198": { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. May be taken P/NP only. ", + "name": "MAE 198", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "MAE 199": { + "dept": "MAE", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ", + "name": "MAE 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (4)" + }, + "MAE 20": { + "dept": "MAE", + "description": "The structure of materials: metals, ceramics, glasses, semiconductors, superconductors, and polymers to produce desired, useful properties. Atomic structures. Defects in materials, phase diagrams, microstructural control. Mechanical and electrical properties are discussed. Time temperature transformation diagrams. Diffusion. ", + "name": "MAE 20", + "prereqs": [ + "PHYS 2A", + "PHYS 4A", + "MATH 20C", + "CHEM 6A", + "CHEM 6AH" + ], + "title": "Elements of Materials Science (4)" + }, + "MAE 200": { + "dept": "MAE", + "description": "This course covers topics in probability and stochastic processes, linear control and estimation including optimal linear control, nonlinear stabilization, and optimal control and estimation for nonlinear systems. ", + "name": "MAE 200", + "prereqs": [], + "title": "Controls (4)" + }, + "MAE 201": { + "dept": "MAE", + "description": "This course covers topics in kinematics, equations of motion, dimensional analysis, laminar and irrotational flow, vorticity dynamics, and boundary layers. ", + "name": "MAE 201", + "prereqs": [], + "title": "Mechanics of Fluids (4)" + }, + "MAE 202": { + "dept": "MAE", + "description": "This course covers topics in energy conservation, heat conduction, convection, radiation, heat transfer in ducts, external boundary layer, and heat exchangers. ", + "name": "MAE 202", + "prereqs": [], + "title": "Thermal Processes (4)" + }, + "MAE 203": { + "dept": "MAE", + "description": "This course covers topics in kinematics, conservation laws, constitutive equation of linear elastic solids, plasticity, and viscoelasticity. ", + "name": "MAE 203", + "prereqs": [], + "title": "Solid Mechanics and Materials (4)" + }, + "MAE 204": { + "dept": "MAE", + "description": "This course covers topics in robotics, dynamics, kinematics, mechatronics, control, locomotion, and manipulation. ", + "name": "MAE 204", + "prereqs": [], + "title": "Robotics (4)" + }, + "MAE 205": { + "dept": "MAE", + "description": "Each graduate student in MAE is expected to attend one seminar per quarter, of his or her choice, dealing with current topics in fluid mechanics, solid mechanics, applied plasma physics and fusion, chemical engineering, applied ocean sciences, energy and combustion, environmental engineering, or materials science, and dynamics and controls. Topics will vary. (S/U grades only)", + "name": "MAE 205", + "prereqs": [], + "title": "Graduate Seminar (1)" + }, + "MAE 206": { + "dept": "MAE", + "description": "This course covers topics in primary energy sources, availability and variability, fossil fuels, renewables and nuclear, energy dependent energy sources, heat engine, energy conservation, exergy, transportation, air pollution, and climate change. ", + "name": "MAE 206", + "prereqs": [], + "title": "Energy Systems (4)" + }, + "MAE 207": { + "dept": "MAE", + "description": "A course to be given at the discretion of the faculty in which topics of current interest in engineering will be presented. ", + "name": "MAE 207", + "prereqs": [], + "title": "Topics in Engineering Science (4)" + }, + "MAE 208": { + "dept": "MAE", + "description": "This course will reintroduce the math fundamentals necessary for success in the engineering graduate program in MAE. Topics will include calculus, ODE\u2019s, vector calculus, linear algebra, probability and PDE\u2019s. ", + "name": "MAE 208", + "prereqs": [], + "title": "Mathematics for Engineers (4)" + }, + "MAE 209": { + "dept": "MAE", + "description": "Mechanics Applied to Medicine/Biology (4)", + "name": "MAE 209", + "prereqs": [], + "title": "Continuum" + }, + "MAE 21": { + "dept": "MAE", + "description": "Atomic structure and physical properties of engineering materials including metals, ceramics, glasses, polymers, and composite materials. Defects and phase diagram of materials. Material testing and processing. Program or materials fees may apply. ", + "name": "MAE 21", + "prereqs": [ + "MATH 20B", + "CHEM 6A", + "CHEM 6AH", + "PHYS 2A", + "MC 25", + "PHYS 4A" + ], + "title": "Aerospace Materials Science (4)" + }, + "MAE 210A": { + "dept": "MAE", + "description": "(Cross-listed with CENG 210A.) Basic conservation", + "name": "MAE 210A", + "prereqs": [], + "title": "Fluid Mechanics I (4)" + }, + "MAE 210B": { + "dept": "MAE", + "description": "Potential flows, boundary layers, low-Reynolds", + "name": "MAE 210B", + "prereqs": [], + "title": "Fluid Mechanics II (4)" + }, + "MAE 210C": { + "dept": "MAE", + "description": "Flow instabilities, linear stability theory;", + "name": "MAE 210C", + "prereqs": [], + "title": "Fluid Mechanics III (4)" + }, + "MAE 211": { + "dept": "MAE", + "description": "Fundamental aspects of flows of reactive gases, with emphasis on processes of combustion, including the relevant thermodynamics, chemical kinetics, fluid mechanics, and transport processes. Topics may include deflagrations, detonations, diffusion flames, ignition, extinction, and propellant combustion. ", + "name": "MAE 211", + "prereqs": [ + "MAE 101A", + "MAE 101C", + "MAE 101B", + "CENG 101B", + "CENG 101C", + "MAE 110A", + "CENG 101A" + ], + "title": "Introduction to Combustion (4)" + }, + "MAE 212": { + "dept": "MAE", + "description": "Equations of motion for compressible fluids; one-dimensional gas dynamics and wave motion, waves in supersonic flow, including oblique shock waves; flow in ducts, nozzles, and wind tunnels; methods of characteristics. Nongraduate students may enroll with consent of instructor.", + "name": "MAE 212", + "prereqs": [], + "title": "Introductory Compressible Flow (4)" + }, + "MAE 213": { + "dept": "MAE", + "description": "Fluid mechanics, thermodynamics and combustion processes involved in propulsion of aircraft and rockets by air breathing engines, and solid and liquid propellant rocket engines characteristics and matching of engine components; diffusers, compressors, combustors, turbines, pumps, nozzles. ", + "name": "MAE 213", + "prereqs": [ + "MAE 110A", + "MAE 212", + "MAE 101A", + "MAE 101C", + "MAE 101B" + ], + "title": "Mechanics of Propulsion (4)" + }, + "MAE 214A": { + "dept": "MAE", + "description": "to Turbulence and Turbulent Mixing (4)", + "name": "MAE 214A", + "prereqs": [], + "title": "Introduction" + }, + "MAE 216": { + "dept": "MAE", + "description": "(Cross-listed with SIO 213.) Mixing mechanisms, their identification, description and modeling. Introduction to turbulence, semi-empirical theories, importance of coherent structures, effects of stratification and rotation on turbulent structure, entrainment and mixing. S/U grades permitted.", + "name": "MAE 216", + "prereqs": [], + "title": "Turbulence and Mixing (4)" + }, + "MAE 217A": { + "dept": "MAE", + "description": "to Gas Discharge Plasma Physics (4)", + "name": "MAE 217A", + "prereqs": [], + "title": "Introduction" + }, + "MAE 217B": { + "dept": "MAE", + "description": "to Nonmagnetized Hot Plasma Physics (4)", + "name": "MAE 217B", + "prereqs": [], + "title": "Introduction" + }, + "MAE 217C": { + "dept": "MAE", + "description": "to Magnetized Hot Plasma Physics (4)", + "name": "MAE 217C", + "prereqs": [], + "title": "Introduction" + }, + "MAE 218A": { + "dept": "MAE", + "description": "to High Energy Density Physics (MHD and Pinches) (4)", + "name": "MAE 218A", + "prereqs": [], + "title": "Introduction" + }, + "MAE 218B": { + "dept": "MAE", + "description": "Propagation and absorption of laser beam in plasma, ablation pressure. Laser scattering and laser-plasma instabilities (stimulated Raman and Brillouin scattering, filamentation and decay instabilities). Electron heat transport, mechanisms of magnetic field generation. ", + "name": "MAE 218B", + "prereqs": [ + "MAE 217A" + ], + "title": "Introduction to High Energy Density Physics (Laser-Plasma Interactions) (4)" + }, + "MAE 220A": { + "dept": "MAE", + "description": "Thermodynamics of gases for use in gas dynamics.", + "name": "MAE 220A", + "prereqs": [], + "title": "Physics of Gases (4)" + }, + "MAE 220B": { + "dept": "MAE", + "description": "Velocity distribution functions, the Boltzmann equation, moment equations and the Navier-Stokes equations. The dynamics of molecular collisions. The Chapman-Enskog expansion and transport coefficients: shear and bulk viscosity, heat conduction, molecular and thermal diffusion. Linearizations about equilibrium: applications to acoustics and supersonic flows with relaxation. ", + "name": "MAE 220B", + "prereqs": [ + "MAE 101A", + "MAE 101C", + "MAE 101B", + "MAE 220A", + "CENG 101B", + "CENG 101C", + "CENG 101A" + ], + "title": "Physical Gas Dynamics (4)" + }, + "MAE 221A": { + "dept": "MAE", + "description": "(Cross-listed with CENG 221A.) Conduction, convection, and radiation heat transfer. Development of energy conservation equations. Analytical and numerical solutions to transport problems. Specific topics and applications vary. ", + "name": "MAE 221A", + "prereqs": [ + "MAE 101A", + "MAE 101C", + "MAE 101B", + "CENG 101B", + "CENG 101C", + "CENG 101A" + ], + "title": "Heat Transfer (4)" + }, + "MAE 221B": { + "dept": "MAE", + "description": "(Cross-listed with CENG 221B.) Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. ", + "name": "MAE 221B", + "prereqs": [ + "MAE 101A", + "MAE 101C", + "MAE 101B", + "CENG 101B", + "CENG 101C", + "CENG 101A" + ], + "title": "Mass Transfer (4)" + }, + "MAE 224A": { + "dept": "MAE", + "description": "Basics of stratified flows.", + "name": "MAE 224A", + "prereqs": [], + "title": "Environmental Fluid Dynamics I (4)" + }, + "MAE 224B": { + "dept": "MAE", + "description": "Plumes and thermals. Application", + "name": "MAE 224B", + "prereqs": [], + "title": "Environmental Fluid Dynamics II (4)" + }, + "MAE 225A": { + "dept": "MAE", + "description": "and Microscale Heat Transfer for Energy Conversion Applications I (4)", + "name": "MAE 225A", + "prereqs": [], + "title": "Nanoscale" + }, + "MAE 225B": { + "dept": "MAE", + "description": "Energy conversion and coupled transport processes; electron and phonons, equilibrium and non-equilibrium energy transfer in nanostructures. Ballistic-diffusive treatment, thermal radiation issues in nanomaterials, near-field energy transfer, molecular dynamics, and experimental methods. ", + "name": "MAE 225B", + "prereqs": [ + "MAE 221A", + "MAE 101A", + "MAE 101C", + "MAE 101B", + "MAE 225A" + ], + "title": "Nanoscale and Microscale Heat Transfer for Energy Conversion Applications II (4)" + }, + "MAE 228": { + "dept": "MAE", + "description": "Collisionless magnetic reconnection, interactions of relativistic laser field with plasma, plasma in astrophysics, computational plasma physics. ", + "name": "MAE 228", + "prereqs": [ + "MAE 217C", + "MAE 217B", + "MAE 217A" + ], + "title": "Selected Topics in Plasma Physics (4)" + }, + "MAE 231A": { + "dept": "MAE", + "description": "Specification of stress and strain; infinitesimal and finite deformation; conservation equations; typical constitutive equations; minimum potential energy principle.", + "name": "MAE 231A", + "prereqs": [], + "title": "Foundations of Solid Mechanics (4)" + }, + "MAE 231B": { + "dept": "MAE", + "description": "Basic field equations. Typical boundary value problems of classical linear elasticity. Problems of plane stress and plane strain. Variational principles. ", + "name": "MAE 231B", + "prereqs": [ + "MAE 209", + "MAE 209BENG", + "MAE 231A" + ], + "title": "Elasticity (4)" + }, + "MAE 231C": { + "dept": "MAE", + "description": "(Cross-listed with SE 273.) Overview of inelastic behavior of materials. Models of plasticity, viscoplasticity, viscoelasticity. Micromechanics and modeling of damage. Fatigue phenomena. Fracture mechanics. Processes and models of the failure of materials. Students may not receive credit for both SE 273 and MAE 231C. ", + "name": "MAE 231C", + "prereqs": [], + "title": "Inelasticity (4)" + }, + "MAE 232A": { + "dept": "MAE", + "description": "Element Methods in Solid Mechanics I (4)", + "name": "MAE 232A", + "prereqs": [], + "title": "Finite" + }, + "MAE 232B": { + "dept": "MAE", + "description": "Element Methods in Solid Mechanics II (4)", + "name": "MAE 232B", + "prereqs": [], + "title": "Finite" + }, + "MAE 232C": { + "dept": "MAE", + "description": "Element Methods in Solid Mechanics III (4)", + "name": "MAE 232C", + "prereqs": [], + "title": "Finite" + }, + "MAE 233A": { + "dept": "MAE", + "description": "Theoretical strength; stress concentration. Linear and nonlinear fracture mechanics: stress singularity, fracture modes, crack tip plastic zone, dugdale model, the R-curve; power-law materials, the J-integral; fatigue; special topics. ", + "name": "MAE 233A", + "prereqs": [ + "MAE 231B", + "MAE 231A" + ], + "title": "Fracture Mechanics (4)" + }, + "MAE 233B": { + "dept": "MAE", + "description": "General theory of transformation strains and corresponding elastic fields; Green\u2019s functions and other solution methods; dislocations; inclusions and inhomogeneities; micromechanics of plastic flow, microcracking, cavitation, and damage in crystalline and other solids. ", + "name": "MAE 233B", + "prereqs": [ + "MAE 231C", + "MAE 231B", + "MAE 231A" + ], + "title": "Micromechanics (4)" + }, + "MAE 235": { + "dept": "MAE", + "description": "(Cross-listed with SE 255.) Practical application of the finite element method to problems in solid mechanics. Elements of theory are presented as needed. Covered are static and dynamic heat transfer and stress analysis. Basic processing, solution methods, and postprocessing are practiced with commercial finite element software. Students may not receive credit for SE 233 and MAE 235. ", + "name": "MAE 235", + "prereqs": [], + "title": "Computational Techniques in Finite Elements (4)" + }, + "MAE 238": { + "dept": "MAE", + "description": "Linear wave propagation; plane waves; reflection and refraction; dispersion induced by geometry and by material properties. Application of integral transform methods. Selected topics in nonlinear elastic, anelastic, and anisotropic wave propagation. ", + "name": "MAE 238", + "prereqs": [ + "MAE 231C", + "MAE 231B", + "MAE 231A" + ], + "title": "Stress Waves in Solids (4)" + }, + "MAE 242": { + "dept": "MAE", + "description": "Modeling, solving, and analyzing planning problems for single robots or agents. Configuration space for motion planning, sampling-based motion planning, combinatorial motion planning, feedback motion planning, differential models, and nonholonomic constraints. Basic decision-theory and dynamic programming, sensor and information spaces.", + "name": "MAE 242", + "prereqs": [], + "title": "Robot Motion Planning (4)" + }, + "MAE 247": { + "dept": "MAE", + "description": "Tools for the design of cooperative control strategies for", + "name": "MAE 247", + "prereqs": [], + "title": "Cooperative Control of Multi-agent Systems (4)" + }, + "MAE 251": { + "dept": "MAE", + "description": "(Cross-listed with MATS 227 and Chem 222.)", + "name": "MAE 251", + "prereqs": [], + "title": "Structure and Analysis of Solids (4)" + }, + "MAE 253": { + "dept": "MAE", + "description": "(Cross-listed with MATS 236.) Topics include phase equilibria and crystallography, defects and thermodynamics (Kr\u00f6ger-Vink notation), glass scona, electrical and ionic transport behavior, Bronner diagrams, powder synthesis and compaction, sintering theory and grain growth, mechanical optical, magnetic, electrical properties, fuel cells. ", + "name": "MAE 253", + "prereqs": [], + "title": "Advanced Ceramics (4)" + }, + "MAE 254": { + "dept": "MAE", + "description": "(Cross-listed with MATS 256.) This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor, and chemical structures, and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. ", + "name": "MAE 254", + "prereqs": [], + "title": "Energy Materials and Applications (4)" + }, + "MAE 255": { + "dept": "MAE", + "description": "Layer and Renewable Energy Meteorology (4)", + "name": "MAE 255", + "prereqs": [], + "title": "Boundary" + }, + "MAE 256": { + "dept": "MAE", + "description": "Global insolation heat engine; solar-wind coupling; regional/seasonal insolation patterns; atmospheric radiation balance; RTE models; scattering; optical depth and transmittance of cloud layers; Schwarzschild\u2019s equation; absorption/emission lines; rotational, vibrational and electronic transitions; Doppler/pressure broadening; Elsasser/Malkmus/Edwards models; solution methods. ", + "name": "MAE 256", + "prereqs": [], + "title": "Radiative Transfer for Energy Applications (4)" + }, + "MAE 260": { + "dept": "MAE", + "description": "(Cross-listed with MATS 260.) Computational methods for MatSci will be discussed, dealing with atomic scale empirical or semiempirical potentials. How and why to develop such potentials for metallic materials will be a focus of the course. Molecular dynamics and Monte Carlo methods will be covered in detail. Applications of these techniques to some example problems in materials science, mechanical deformation, dislocation interactions, nucleation/growth of phases, melting solidification structures, and point defects are presented.", + "name": "MAE 260", + "prereqs": [], + "title": "Fundamentals and Applications of Computational Materials Science (4)" + }, + "MAE 261": { + "dept": "MAE", + "description": "Topics in the mechanics of blood flow including analytical solutions for flow in deformable vessels, one-dimensional equations, cardiovascular anatomy, lumped parameter models, vascular trees, scaling laws, and an introduction to the biomechanics and treatment of adult and congenital cardiovascular diseases. ", + "name": "MAE 261", + "prereqs": [ + "MAE 290A", + "MAE 210A" + ], + "title": "Cardiovascular Fluid Mechanics (4)" + }, + "MAE 262": { + "dept": "MAE", + "description": "Fluids phenomena relevant to the function, environment, and dynamics of biological cells. Topics include: low-Reynolds number flows, cell motility, internal cellular flows, development and morphogenesis, hydrodynamics of suspensions and polymers, rheology, diffusion, hydrodynamics of deformable bodies (vesicles, membranes, filaments), cells under shear flow. ", + "name": "MAE 262", + "prereqs": [ + "MAE 209", + "MAE 210A" + ], + "title": "Biological Fluid Mechanics (4)" + }, + "MAE 263": { + "dept": "MAE", + "description": "Methods in Cell Mechanics (4)", + "name": "MAE 263", + "prereqs": [], + "title": "Experimental" + }, + "MAE 264": { + "dept": "MAE", + "description": "This course will introduce the advanced graduate student to the topics of mechanical and thermodynamic analyses of cellular membranes, lipid bilayers, and the study of synthetic vesicles. ", + "name": "MAE 264", + "prereqs": [ + "MAE 209" + ], + "title": "Mechanics and Thermodynamics of Biological Membranes (4)" + }, + "MAE 265A": { + "dept": "MAE", + "description": "and Photonic Properties of Materials (4)", + "name": "MAE 265A", + "prereqs": [], + "title": "Electronic" + }, + "MAE 265B": { + "dept": "MAE", + "description": "Materials: Principles and Applications (4)", + "name": "MAE 265B", + "prereqs": [], + "title": "Magnetic" + }, + "MAE 266": { + "dept": "MAE", + "description": "(Cross-listed with MATS 252.) This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "name": "MAE 266", + "prereqs": [], + "title": "Biomaterials and Medical Devices (4)" + }, + "MAE 267": { + "dept": "MAE", + "description": "(Cross-listed with MATS 253.) This course discusses synthesis techniques, processing, microstructural control and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. ", + "name": "MAE 267", + "prereqs": [], + "title": "Nanomaterials and Properties (4)" + }, + "MAE 271A": { + "dept": "MAE", + "description": "(Cross-listed with MATS 201A and ECE 238A.) The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. ", + "name": "MAE 271A", + "prereqs": [], + "title": "Thermodynamics of Solids (4)" + }, + "MAE 271B": { + "dept": "MAE", + "description": "State Diffusion and Reaction Kinetics (4)", + "name": "MAE 271B", + "prereqs": [], + "title": "Solid" + }, + "MAE 271C": { + "dept": "MAE", + "description": "(Cross-listed with MATS 201C and ECE 238C.) Classification of phase transformations; displacive and reconstructive transformations; classical and nonclassical theories of nucleation; Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories; interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ", + "name": "MAE 271C", + "prereqs": [], + "title": "Phase Transformations (4)" + }, + "MAE 272": { + "dept": "MAE", + "description": "(Cross-listed with MATS 205A.) Point, line, and planar defects in crystalline solids, including vacancies, self interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements.", + "name": "MAE 272", + "prereqs": [], + "title": "Imperfections in Solids (4)" + }, + "MAE 273A": { + "dept": "MAE", + "description": "(Cross-listed with MATS 213A.) Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves, Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ", + "name": "MAE 273A", + "prereqs": [], + "title": "Dynamic Behavior of Materials (4)" + }, + "MAE 276": { + "dept": "MAE", + "description": "(Cross-listed with MATS 231.) Main focus is the large deformations and instabilities in soft materials, such as elastomers, gels, and biomaterials. Some contents in thermodynamics and finite deformation theory are reviewed and summarized. Fundamental theories are applied to study the mechanics of gels, electroactive polymers, and biomaterials. This course intends to use soft material as an example to illustrate how to study the interaction between mechanics and other fields in materials (e.g., electric field, chemical field). Students may not receive credit for both MAE 276 and MATS 231. ", + "name": "MAE 276", + "prereqs": [], + "title": "Mechanics of Soft Materials (4)" + }, + "MAE 277A": { + "dept": "MAE", + "description": "(Cross-listed with AESE 278A, CSE 278A, and ECE 205.) Comprehensive introduction to system and event complexity, software and systems engineering practices for complexity management, agile and plan-driven development, development and management processes and process models, data-, information- and knowledge-management, basics of distributed data and computation. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "name": "MAE 277A", + "prereqs": [], + "title": "Complexity and Large-Scale Systems (4)" + }, + "MAE 278A": { + "dept": "MAE", + "description": "(Cross-listed with AESE 278C, CSE 278C, and ECE 206.) Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "name": "MAE 278A", + "prereqs": [], + "title": "Modeling, Simulation, and Analysis (4)" + }, + "MAE 280A": { + "dept": "MAE", + "description": "Linear algebra: inner products, outer products, vector norms, matrix norms, least squares problems, Jordan forms, coordinate transformations, positive definite matrices, etc. Properties of linear dynamic systems described by ODEs: observability, controllability, detectability, stabilizability, trackability, optimality. Control systems design: state estimation, pole assignment, linear quadratic control.", + "name": "MAE 280A", + "prereqs": [], + "title": "Linear Systems Theory (4)" + }, + "MAE 280B": { + "dept": "MAE", + "description": "Parameterization of all stabilizing output feedback controllers, covariance controllers, H-infinity controllers, and L-2 to L-infinity controllers. Continuous and discrete-time treatment. Alternating projection algorithms for solving output feedback problems. Model reduction. All control design problems reduced to one critical theorem in linear algebra. ", + "name": "MAE 280B", + "prereqs": [ + "MAE 280A" + ], + "title": "Linear Control Design (4)" + }, + "MAE 281A": { + "dept": "MAE", + "description": "Existence and uniqueness of solutions of EDE\u2019s, sensitivity equations. Stability, direct and converse Lyapunov theorems, LaSalle\u2019s theorem, linearization, invariance theorems. Center manifold theorem. Stability of perturbed systems with vanishing and nonvanishing perturbations, input-to-state ability, comparison method. Input-output stability. Perturbation theory and averaging. Singular perturbations. Circle and Popov criteria. ", + "name": "MAE 281A", + "prereqs": [ + "MAE 280A" + ], + "title": "Nonlinear Systems (4)" + }, + "MAE 281B": { + "dept": "MAE", + "description": "Small gain theorem, passivity. Describing functions. Nonlinear controllability, feedback linearization, input-state and input-output linearization, zero dynamics. Stabilization, Brockett\u2019s necessary conditions (local), control Lyapunov functions, Sontag\u2019s formula (global). Integrator back stepping, forwarding. Inverse optimality, stability margins. Disturbance attenuation, deterministic and stochastic, nonlinear H-infinity. Nonlinear observers. ", + "name": "MAE 281B", + "prereqs": [ + "MAE 281A" + ], + "title": "Nonlinear Control (4)" + }, + "MAE 283A": { + "dept": "MAE", + "description": "Identification: Theory and Methods (4)", + "name": "MAE 283A", + "prereqs": [], + "title": "Parametric" + }, + "MAE 283B": { + "dept": "MAE", + "description": "Identification and Control (4)", + "name": "MAE 283B", + "prereqs": [], + "title": "Approximate" + }, + "MAE 284": { + "dept": "MAE", + "description": "Multivariable feedback systems: transfer function matrices, Smith-McMillan form, poles, zeros, principal gains, operator norms, limits on performance. Model uncertainties, stability and performance robustness. Design of robust controllers, H_inf and mu synthesis. Controller reduction. ", + "name": "MAE 284", + "prereqs": [ + "MAE 280A" + ], + "title": "Robust and Multivariable Control (4)" + }, + "MAE 285": { + "dept": "MAE", + "description": "Acoustofluidics is a burgeoning field reliant on high frequency acoustics and underpinning many new developments and devices at micro to nano scales. First the basics, piezoelectricity, microfluidics, acoustics, and device metrology. Then, new physics arising from the unusually large accelerations (10^7 to 10^9 m/s^2) induced by acoustic waves. Finally, how various phenomena of acoustofluidics at small scales can be used in designing practical devices. ", + "name": "MAE 285", + "prereqs": [ + "CENG 210A", + "MAE 210B", + "MAE 210A" + ], + "title": "Design of Micro/Nanoacoustofluidic Devices (4)" + }, + "MAE 286": { + "dept": "MAE", + "description": "Definition of hybrid system. Examples in mechanics, vision, and multi-agent systems. Trajectories of hybrid systems. Chattering, Zeno phenomena. Stability analysis. Arbitrary switching: common Lyapunov functions. Slow switching: dwell time. State-dependent switching: multiple Lyapunov functions, Invariance Principle. Hybrid control design. Applications. ", + "name": "MAE 286", + "prereqs": [ + "MAE 281A" + ], + "title": "Hybrid Systems (4)" + }, + "MAE 287": { + "dept": "MAE", + "description": "of Distributed Parameter Systems (4)", + "name": "MAE 287", + "prereqs": [], + "title": "Control" + }, + "MAE 288A": { + "dept": "MAE", + "description": "Deterministic methods: Pontryagin\u2019s Maximum Principle, dynamic programming, calculus of variations. Stochastic methods: Gauss-Markov processes, Linear Quadratic control, Markov chains. Linear Quadratic Gaussian Control and the Separation Principle. ", + "name": "MAE 288A", + "prereqs": [], + "title": "Optimal Control (4)" + }, + "MAE 288B": { + "dept": "MAE", + "description": "Least Squares and Maximum Likelihood Estimation methods, Gauss-Markov models, State Estimation and Kalman Filtering, prediction and smoothing. The extended Kalman filter. ", + "name": "MAE 288B", + "prereqs": [ + "MAE 280A" + ], + "title": "Optimal Estimation (4)" + }, + "MAE 289A": { + "dept": "MAE", + "description": "Topics in mathematical analysis, with the emphasis on those of use in applications. The topics may include: metric spaces, open and closed sets, compact sets, continuity, differentiation, series of functions and uniform convergence, convex sets and functions, transforms, and Stokes theorem. ", + "name": "MAE 289A", + "prereqs": [], + "title": "Mathematical Analysis for Applications (4)" + }, + "MAE 289B": { + "dept": "MAE", + "description": "Topics in real analysis, with the emphasis on those of use in applications.\u00a0May include: countable/uncountable, open and closed sets, topology, Borel sets, sigma algebras, measurable functions, integration (Lebesgue), absolute continuity, function spaces, and fixed-point theorems. ", + "name": "MAE 289B", + "prereqs": [ + "MAE 289A" + ], + "title": "Real Analysis for Applications (4)" + }, + "MAE 289C": { + "dept": "MAE", + "description": "Topics in functional analysis, with the emphasis on those of use in applications. May include: function spaces, linear functionals, dual spaces, reflexivity, linear operators, strong and weak convergence, Hahn-Banach Theorem, nonlinear functionals, differential calculus of variations, Pontryagin Maximum Principle. Students cannot obtain credit for MAE 289C if they have taken MAE 289. ", + "name": "MAE 289C", + "prereqs": [ + "MAE 289B" + ], + "title": "Functional Analysis and Applications (4)" + }, + "MAE 290A": { + "dept": "MAE", + "description": "Fundamental matrix decompositions: LU, QR, Eigen, Schur, Jordan, SVD. Exploiting sparsity, finding parallelism, minimizing storage. Pseudoinverses. Finite differences, adaptive integration. Stability and accuracy of Runge-Kutta and linear multistep methods for marching ODEs. Low-storage IMEXRK methods. ", + "name": "MAE 290A", + "prereqs": [], + "title": "Numerical Methods for Linear Algebra and ODE Simulation (4)" + }, + "MAE 290B": { + "dept": "MAE", + "description": "Methods for Differential Equations (4)", + "name": "MAE 290B", + "prereqs": [], + "title": "Numerical" + }, + "MAE 290C": { + "dept": "MAE", + "description": "Numerical methods in fluid dynamics and convective transport processes. Numerical solution of the Euler and Navier-Stokes equation. Additional topics will vary according to instructor. Examples include eigenvalue problems in hydrodynamic stability, vortex methods, spectral and panel methods. Students may not receive credit for both MAE 290C and MAE 223. ", + "name": "MAE 290C", + "prereqs": [ + "MAE 290B", + "MAE 290A", + "MAE 210B", + "MAE 210A" + ], + "title": "Computational Fluid Dynamics (4)" + }, + "MAE 291": { + "dept": "MAE", + "description": "and Mechanics in Computer Technology (4)", + "name": "MAE 291", + "prereqs": [], + "title": "Design" + }, + "MAE 292": { + "dept": "MAE", + "description": "Introduction to 2-D and 3-D computer-aided design. Design problems may include: ball bearing kinematics, Weibull statistics, nonrepeatable spindle run-out, four bar linkages, beam deflection and vibration, design of magnetic head suspension, hydrodynamic theory of lubrication, air bearings, heat transfer, optical servo, design of ink jet print head. ", + "name": "MAE 292", + "prereqs": [], + "title": "Computer-Aided Design and Analysis (4)" + }, + "MAE 293": { + "dept": "MAE", + "description": "Intersection of control theory and fluid mechanics. Applications: transition delay, turbulence mitigation, noise reduction, weather forecasting, shape optimization, and UAV\u2019s (perching). Tractable feedback (Riccati-based) formulations via parallel and parabolic flow assumptions. Regularization of variational (adjoint-based) formulations for MPC and MHE. EnKF and EnVE approaches for forecasting. ", + "name": "MAE 293", + "prereqs": [ + "MAE 290A" + ], + "title": "Flow Control (4)" + }, + "MAE 294A": { + "dept": "MAE", + "description": "(Cross-listed with SIO 203A.) Review of exact methods for ordinary differential equations. Expansions about regular and irregular singular points. Introduction to asymptotic expansions. Approximate methods for nonlinear differential equations. Regular and singular perturbation theory. Additional topics depending upon the interests of the instructor.", + "name": "MAE 294A", + "prereqs": [], + "title": "Introduction to Applied Mathematics (4)" + }, + "MAE 294B": { + "dept": "MAE", + "description": "to Applied Mathematics II (4)", + "name": "MAE 294B", + "prereqs": [], + "title": "Introduction" + }, + "MAE 294C": { + "dept": "MAE", + "description": "to Applied Mathematics III (4)", + "name": "MAE 294C", + "prereqs": [], + "title": "Introduction" + }, + "MAE 295": { + "dept": "MAE", + "description": "Provides field study in industry with faculty supervision. Analysis and problem solving using real world applications. ", + "name": "MAE 295", + "prereqs": [], + "title": "Field Study (1\u201312)" + }, + "MAE 296": { + "dept": "MAE", + "description": "Independent reading or research on a problem as arranged by a designated faculty member. Must be taken for a letter grade only. ", + "name": "MAE 296", + "prereqs": [], + "title": "Independent Study (1\u20134)" + }, + "MAE 298": { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ", + "name": "MAE 298", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "MAE 299": { + "dept": "MAE", + "description": "Independent work by graduate students engaged in research and writing theses. MAE graduate students only. (S/U grades only.)", + "name": "MAE 299", + "prereqs": [], + "title": "Graduate Research (1\u201312)" + }, + "MAE 501": { + "dept": "MAE", + "description": "Teaching experience in an appropriate MAE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. (S/U grade only.) ", + "name": "MAE 501", + "prereqs": [], + "title": "Teaching Experience (2)" + }, + "MAE 87": { + "dept": "MAE", + "description": "The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "name": "MAE 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "MAE 92A": { + "dept": "MAE", + "description": "Competition\u2014Design, Build, and Fly Aircraft (1)", + "name": "MAE 92A", + "prereqs": [], + "title": "Design" + }, + "MAE 93": { + "dept": "MAE", + "description": "Build, and Test Race Car (1)", + "name": "MAE 93", + "prereqs": [], + "title": "Design Competition\u2014Design," + }, + "MAE 98": { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum. P/NP grades only. May be taken for credit two times. Credit may not be received for a course numbered 97, 98, or 99 subsequent to receiving credit for a course numbered 197, 198, or 199. ", + "name": "MAE 98", + "prereqs": [], + "title": "Directed Group Study (2)" + }, + "MAE 99H": { + "dept": "MAE", + "description": "Independent study or research under direction of a member of the faculty. ", + "name": "MAE 99H", + "prereqs": [], + "title": "Independent Study (1)" + }, + "MATH 100A": { + "dept": "MATH", + "description": "First course in a rigorous three-quarter introduction to the methods and basic structures of higher algebra. Topics include: groups, subgroups and factor groups, homomorphisms, rings, fields. (Students may not receive credit for both Math 100A and Math 103A.) ", + "name": "MATH 100A", + "prereqs": [ + "MATH 109", + "MATH 31CH" + ], + "title": "Abstract Algebra I (4)" + }, + "MATH 100B": { + "dept": "MATH", + "description": "Second course in a rigorous three-quarter introduction to the methods and basic structures of higher algebra. Topics include: rings (especially polynomial rings) and ideals, unique factorization, fields; linear algebra from perspective of linear transformations on vector spaces, including inner product spaces, determinants, diagonalization. (Students may not receive credit for both Math 100B and Math 103B.) ", + "name": "MATH 100B", + "prereqs": [ + "MATH 100A" + ], + "title": "Abstract Algebra II (4)" + }, + "MATH 100C": { + "dept": "MATH", + "description": "Third course in a rigorous three-quarter introduction to the methods and basic structures of higher algebra. Topics include: linear transformations, including Jordan canonical form and rational canonical form; Galois theory, including the insolvability of the quintic. ", + "name": "MATH 100C", + "prereqs": [ + "MATH 100B" + ], + "title": "Abstract Algebra III (4)" + }, + "MATH 102": { + "dept": "MATH", + "description": "Second course in linear algebra from a computational yet geometric point", + "name": "MATH 102", + "prereqs": [], + "title": "Applied Linear Algebra (4)" + }, + "MATH 103A": { + "dept": "MATH", + "description": "First course in a two-quarter introduction to abstract algebra with some applications. Emphasis on group theory. Topics include: definitions and basic properties of groups, properties of isomorphisms, subgroups. (Students may not receive credit for both Math 100A and Math 103A.) ", + "name": "MATH 103A", + "prereqs": [ + "MATH 109", + "MATH 31CH" + ], + "title": "Modern Algebra I (4)" + }, + "MATH 103B": { + "dept": "MATH", + "description": "Second course in a two-quarter introduction to abstract algebra with some applications. Emphasis on rings and fields. Topics include: definitions and basic properties of rings, fields, and ideals, homomorphisms, irreducibility of polynomials. (Students may not receive credit for both Math 100B and Math 103B.) ", + "name": "MATH 103B", + "prereqs": [ + "MATH 103A", + "MATH 100A" + ], + "title": "Modern Algebra II (4)" + }, + "MATH 104A": { + "dept": "MATH", + "description": "Elementary number theory with applications. Topics include", + "name": "MATH 104A", + "prereqs": [], + "title": "Number Theory I (4)" + }, + "MATH 104B": { + "dept": "MATH", + "description": "II (4)", + "name": "MATH 104B", + "prereqs": [], + "title": "Number Theory" + }, + "MATH 104C": { + "dept": "MATH", + "description": "Topics in algebraic and analytic number theory, with an advanced", + "name": "MATH 104C", + "prereqs": [], + "title": "Number Theory III (4)" + }, + "MATH 109": { + "dept": "MATH", + "description": "This course uses a variety of topics in mathematics to introduce the students to rigorous mathematical proof, emphasizing quantifiers, induction, negation, proof by contradiction, naive set theory, equivalence relations and epsilon-delta proofs. Required of all departmental majors. ", + "name": "MATH 109", + "prereqs": [ + "MATH 20C", + "MATH 31AH", + "MATH 20F", + "MATH 18" + ], + "title": "Mathematical Reasoning (4)" + }, + "MATH 10A": { + "dept": "MATH", + "description": "Differential calculus of functions of one variable, with applications. Functions, graphs, continuity, limits, derivatives, tangent lines, optimization problems. (No credit given if taken after or concurrent with Math 20A.) ", + "name": "MATH 10A", + "prereqs": [ + "MATH 4C", + "Math Level 2", + "MATH 3C" + ], + "title": "Calculus I (4)" + }, + "MATH 10B": { + "dept": "MATH", + "description": "Integral calculus of functions of one variable, with applications. Antiderivatives, definite integrals, the Fundamental Theorem of Calculus, methods of integration, areas and volumes, separable differential equations. (No credit given if taken after or concurrent with Math 20B.) ", + "name": "MATH 10B", + "prereqs": [ + "MATH 20A", + "MATH 10A" + ], + "title": "Calculus II (4)" + }, + "MATH 10C": { + "dept": "MATH", + "description": "Introduction to functions of more than one variable. Vector geometry, partial derivatives, velocity and acceleration vectors, optimization problems. (No credit given if taken after or concurrent with 20C.) ", + "name": "MATH 10C", + "prereqs": [ + "MATH 10B", + "MATH 20B" + ], + "title": "Calculus III (4)" + }, + "MATH 11": { + "dept": "MATH", + "description": "Events and probabilities, conditional probability, Bayes\u2019 formula. Discrete and continuous random variables: mean, variance; binomial, Poisson distributions, normal, uniform, exponential distributions, central limit theorem. Sample statistics, confidence intervals, hypothesis testing, regression. Applications. Introduction to software for probabilistic and statistical analysis. Emphasis on connections between probability and statistics, numerical results of real data, and techniques of data analysis. ", + "name": "MATH 11", + "prereqs": [ + "MATH 10B", + "MATH 20B" + ], + "title": "Calculus-Based Introductory Probability and Statistics (5)" + }, + "MATH 110A": { + "dept": "MATH", + "description": "Fourier series, orthogonal expansions, and eigenvalue problems.", + "name": "MATH 110A", + "prereqs": [], + "title": "Introduction to Partial Differential Equations (4)" + }, + "MATH 110B": { + "dept": "MATH", + "description": "Equations (4)", + "name": "MATH 110B", + "prereqs": [], + "title": "Elements of Partial Differential Equations and Integral" + }, + "MATH 111A": { + "dept": "MATH", + "description": "Mathematical Modeling I (4)", + "name": "MATH 111A", + "prereqs": [], + "title": "" + }, + "MATH 111B": { + "dept": "MATH", + "description": "Continued study on mathematical modeling in the physical and social sciences, using advanced techniques that will expand upon the topics selected and further the mathematical theory presented in Math 111A. ", + "name": "MATH 111B", + "prereqs": [ + "MATH 111A" + ], + "title": "Mathematical Modeling II (4)" + }, + "MATH 120A": { + "dept": "MATH", + "description": "Complex numbers and functions. Analytic functions, harmonic functions,", + "name": "MATH 120A", + "prereqs": [], + "title": "Elements of Complex Analysis (4)" + }, + "MATH 120B": { + "dept": "MATH", + "description": "Applications of the residue theorem. Conformal", + "name": "MATH 120B", + "prereqs": [], + "title": "Applied Complex Analysis (4)" + }, + "MATH 121A": { + "dept": "MATH", + "description": "of Teaching and Learning Mathematics I (4)", + "name": "MATH 121A", + "prereqs": [], + "title": "Foundations" + }, + "MATH 121B": { + "dept": "MATH", + "description": "of Teaching and Learning Math II (4)", + "name": "MATH 121B", + "prereqs": [], + "title": "Foundations" + }, + "MATH 130A": { + "dept": "MATH", + "description": "Linear and nonlinear systems of differential equations. Stability theory, perturbation theory. Applications and introduction to numerical solutions. ", + "name": "MATH 130A", + "prereqs": [ + "MATH 31AH", + "MATH 20D", + "MATH 20F", + "MATH 18" + ], + "title": "Ordinary Differential Equations I (4)" + }, + "MATH 130B": { + "dept": "MATH", + "description": "Existence and uniqueness of solutions to differential equations. Local and global theorems of continuity and differentiability. ", + "name": "MATH 130B", + "prereqs": [ + "MATH 130A" + ], + "title": "Ordinary Differential Equations II (4)" + }, + "MATH 140A": { + "dept": "MATH", + "description": "First course in a rigorous three-quarter sequence on real analysis. Topics include: the real number system, basic topology, numerical sequences and series, continuity. (Students may not receive credit for both Math 140A and Math 142A.) ", + "name": "MATH 140A", + "prereqs": [ + "MATH 109", + "MATH 31CH" + ], + "title": "Foundations of Real Analysis I (4)" + }, + "MATH 140B": { + "dept": "MATH", + "description": "Second course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation, the Riemann-Stieltjes integral, sequences and series of functions, power series, Fourier series, and special functions. (Students may not receive credit for both Math 140B and Math 142B.) ", + "name": "MATH 140B", + "prereqs": [ + "MATH 140A" + ], + "title": "Foundations of Real Analysis II (4)" + }, + "MATH 140C": { + "dept": "MATH", + "description": "Third course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation of functions of several real variables, the implicit and inverse function theorems, the Lebesgue integral, infinite-dimensional normed spaces. ", + "name": "MATH 140C", + "prereqs": [ + "MATH 140B" + ], + "title": "Foundations of Real Analysis III (4)" + }, + "MATH 142A": { + "dept": "MATH", + "description": "First course in an introductory two-quarter", + "name": "MATH 142A", + "prereqs": [], + "title": "Introduction to Analysis I (4)" + }, + "MATH 142B": { + "dept": "MATH", + "description": "Second course in an introductory two-quarter sequence on analysis. Topics include: differentiation, the Riemann integral, sequences and series of functions, uniform convergence, Taylor and Fourier series, special functions. (Students may not receive credit for both Math 140B and Math 142B.) ", + "name": "MATH 142B", + "prereqs": [ + "MATH 140A", + "MATH 142A" + ], + "title": "Introduction to Analysis II (4)" + }, + "MATH 150A": { + "dept": "MATH", + "description": "Differential geometry of curves and surfaces.", + "name": "MATH 150A", + "prereqs": [], + "title": "Differential Geometry (4)" + }, + "MATH 150B": { + "dept": "MATH", + "description": "Calculus of functions of several variables,", + "name": "MATH 150B", + "prereqs": [], + "title": "Calculus on Manifolds (4)" + }, + "MATH 152": { + "dept": "MATH", + "description": "This course will give students experience", + "name": "MATH 152", + "prereqs": [], + "title": "Applicable Mathematics and Computing (4)" + }, + "MATH 153": { + "dept": "MATH", + "description": "Two- and three-dimensional Euclidean geometry", + "name": "MATH 153", + "prereqs": [], + "title": "Geometry for Secondary Teachers (4)" + }, + "MATH 154": { + "dept": "MATH", + "description": "Basic concepts in graph theory. Combinatorial", + "name": "MATH 154", + "prereqs": [], + "title": "Discrete Mathematics and Graph Theory (4)" + }, + "MATH 155A": { + "dept": "MATH", + "description": "Bezier curves and control lines, de Casteljau construction for subdivision,", + "name": "MATH 155A", + "prereqs": [], + "title": "Geometric Computer Graphics (4)" + }, + "MATH 155B": { + "dept": "MATH", + "description": "Spline curves, NURBS, knot insertion, spline interpolation, illumination models, radiosity, and ray tracing. ", + "name": "MATH 155B", + "prereqs": [ + "MATH 155A" + ], + "title": "Topics in Computer Graphics (4)" + }, + "MATH 157": { + "dept": "MATH", + "description": "A hands-on introduction to the use of a variety of open-source mathematical software packages, as applied to a diverse range of topics within pure and applied mathematics. Most of these packages are built on the Python programming language, but no prior experience with mathematical software or computer programming is expected. All software will be accessed using the CoCalc web platform (", + "name": "MATH 157", + "prereqs": [], + "title": "Introduction to Mathematical Software (4)" + }, + "MATH 15A": { + "dept": "MATH", + "description": "Basic discrete mathematical structure: sets, relations, functions, sequences, equivalence relations, partial orders, and number systems. Methods of reasoning and proofs: propositional logic, predicate logic, induction, recursion, and pigeonhole principle. Infinite sets and diagonalization. Basic counting techniques; permutation and combinations. Applications will be given to digital logic design, elementary number theory, design of programs, and proofs of program correctness. Credit not offered for both Math 15A and CSE 20. Equivalent to CSE 20. ", + "name": "MATH 15A", + "prereqs": [ + "CSE 11", + "CSE 8B", + "CSE 8A" + ], + "title": "Introduction to Discrete Mathematics (4)" + }, + "MATH 160A": { + "dept": "MATH", + "description": "An introduction to recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ", + "name": "MATH 160A", + "prereqs": [ + "MATH 103A", + "MATH 100A", + "MATH 140A" + ], + "title": "Elementary Mathematical Logic I (4)" + }, + "MATH 160B": { + "dept": "MATH", + "description": "A continuation of recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ", + "name": "MATH 160B", + "prereqs": [ + "MATH 160A" + ], + "title": "Elementary Mathematical Logic II (4)" + }, + "MATH 163": { + "dept": "MATH", + "description": "Topics will vary from year to year in areas of mathematics and their development. Topics may include the evolution of mathematics from the Babylonian period to the eighteenth century using original sources, a history of the foundations of mathematics and the development of modern mathematics. ", + "name": "MATH 163", + "prereqs": [ + "MATH 20B" + ], + "title": "History of Mathematics (4)" + }, + "MATH 168A": { + "dept": "MATH", + "description": "(4)", + "name": "MATH 168A", + "prereqs": [], + "title": "Topics in Applied Mathematics\u2014Computer Science" + }, + "MATH 170A": { + "dept": "MATH", + "description": "to Numerical Analysis: Linear Algebra (4)", + "name": "MATH 170A", + "prereqs": [], + "title": "Introduction" + }, + "MATH 170B": { + "dept": "MATH", + "description": "Rounding and discretization errors. Calculation of roots of polynomials and nonlinear equations. Interpolation. Approximation of functions. Knowledge of programming recommended. ", + "name": "MATH 170B", + "prereqs": [ + "MATH 170A" + ], + "title": "Introduction to Numerical Analysis: Approximation and Nonlinear Equations (4)" + }, + "MATH 170C": { + "dept": "MATH", + "description": "Numerical differentiation and integration. Ordinary differential equations and their numerical solution. Basic existence and stability theory. Difference equations. Boundary value problems. ", + "name": "MATH 170C", + "prereqs": [ + "MATH 20D", + "MATH 170B", + "MATH 21D" + ], + "title": "Introduction to Numerical Analysis: Ordinary Differential Equations (4)" + }, + "MATH 171A": { + "dept": "MATH", + "description": "to Numerical Optimization: Linear Programming (4)", + "name": "MATH 171A", + "prereqs": [], + "title": "Introduction" + }, + "MATH 171B": { + "dept": "MATH", + "description": "to Numerical Optimization: Nonlinear Programming (4)", + "name": "MATH 171B", + "prereqs": [], + "title": "Introduction" + }, + "MATH 173A": { + "dept": "MATH", + "description": "Introduction to convexity: convex sets, convex functions; geometry of hyperplanes; support functions for convex sets; hyperplanes and support vector machines. Linear and quadratic programming: optimality conditions; duality; primal and dual forms of linear support vector machines; active-set methods; interior methods. ", + "name": "MATH 173A", + "prereqs": [ + "MATH 20C", + "MATH 31AH", + "MATH 31BH", + "MATH 20F" + ], + "title": "Optimization Methods for Data Science I (4)" + }, + "MATH 173B": { + "dept": "MATH", + "description": "Unconstrained optimization: linear least squares; randomized linear least squares; method(s) of steepest descent; line-search methods; conjugate-gradient method; comparing the efficiency of methods; randomized/stochastic methods; nonlinear least squares; norm minimization methods. Convex constrained optimization: optimality conditions; convex programming; Lagrangian relaxation; the method of multipliers; the alternating direction method of multipliers; minimizing combinations of norms. ", + "name": "MATH 173B", + "prereqs": [ + "MATH 173A" + ], + "title": "Optimization Methods for Data Science II (4)" + }, + "MATH 174": { + "dept": "MATH", + "description": "(Conjoined with Math 274.) Floating point", + "name": "MATH 174", + "prereqs": [], + "title": "Numerical Methods for Physical Modeling (4)" + }, + "MATH 175": { + "dept": "MATH", + "description": "Methods for Partial Differential Equations (4)", + "name": "MATH 175", + "prereqs": [], + "title": "Numerical" + }, + "MATH 179": { + "dept": "MATH", + "description": "(Conjoined with Math 279.) Mathematical models of physical systems arising in science and engineering, good models and well-posedness, numerical and other approximation techniques, solution algorithms for linear and nonlinear approximation problems, scientific visualizations, scientific software design and engineering, project-oriented. Graduate students will do an extra paper, project, or presentation per instructor. ", + "name": "MATH 179", + "prereqs": [ + "MATH 274", + "MATH 174" + ], + "title": "Projects in Computational and Applied Mathematics (4)" + }, + "MATH 18": { + "dept": "MATH", + "description": "Matrix algebra, Gaussian elimination, determinants. Linear and affine subspaces, bases of Euclidean spaces. Eigenvalues and eigenvectors, quadratic forms, orthogonal matrices, diagonalization of symmetric matrices. Applications. Computing symbolic and graphical solutions using Matlab. Students may not receive credit\u00a0for both Math 18 and 31AH. ", + "name": "MATH 18", + "prereqs": [ + "MATH 20A", + "MATH 10A", + "MATH 4C", + "Math Level 2", + "MATH 3C" + ], + "title": "Linear Algebra (4)" + }, + "MATH 180A": { + "dept": "MATH", + "description": "Probability spaces, random variables, independence, conditional probability,", + "name": "MATH 180A", + "prereqs": [], + "title": "Introduction to Probability (4)" + }, + "MATH 180B": { + "dept": "MATH", + "description": "Random vectors, multivariate densities, covariance matrix, multivariate", + "name": "MATH 180B", + "prereqs": [], + "title": "Introduction to Stochastic Processes I (4)" + }, + "MATH 180C": { + "dept": "MATH", + "description": "Markov chains in discrete and continuous time, random walk, recurrent events. If time permits, topics chosen from stationary normal processes, branching processes, queuing theory. ", + "name": "MATH 180C", + "prereqs": [], + "title": "Introduction to Stochastic Processes II (4)" + }, + "MATH 181A": { + "dept": "MATH", + "description": "Multivariate distribution, functions of random variables, distributions related to normal. Parameter estimation, method of moments, maximum likelihood. Estimator accuracy and confidence intervals. Hypothesis testing, type I and type II errors, power, one-sample t-test. Prior or concurrent enrollment in Math 109 is highly recommended. ", + "name": "MATH 181A", + "prereqs": [ + "MATH 180A", + "MATH 20C", + "MATH 31AH", + "MATH 20F", + "MATH 18" + ], + "title": "Introduction to Mathematical Statistics I (4)" + }, + "MATH 181B": { + "dept": "MATH", + "description": "Hypothesis testing. Linear models, regression, and analysis of variance. Goodness of fit tests. Nonparametric statistics. Two units of credit offered for Math 181B if Econ 120B previously; no credit offered if Econ 120B concurrently. Prior enrollment in Math 109 is highly recommended. ", + "name": "MATH 181B", + "prereqs": [], + "title": "Introduction to Mathematical Statistics II (4)" + }, + "MATH 181C": { + "dept": "MATH", + "description": "Mathematical Statistics\u2014Nonparametric Statistics (4)", + "name": "MATH 181C", + "prereqs": [], + "title": "" + }, + "MATH 181E": { + "dept": "MATH", + "description": "Analysis of trends and seasonal effects, autoregressive and moving averages", + "name": "MATH 181E", + "prereqs": [], + "title": "Mathematical Statistics\u2014Time Series (4)" + }, + "MATH 183": { + "dept": "MATH", + "description": "Introduction to probability. Discrete and continuous random variables\u2013binomial, Poisson and Gaussian distributions. Central limit theorem. Data analysis and inferential statistics: graphical techniques, confidence intervals, hypothesis tests, curve fitting. (Credit not offered for Math 183 if Econ 120A, ECE 109, MAE 108, Math 181A, or Math 186 previously or concurrently taken. Two units of credit offered for Math 183 if Math 180A taken previously or concurrently.) ", + "name": "MATH 183", + "prereqs": [ + "MATH 20C", + "MATH 31BH" + ], + "title": "Statistical Methods (4)" + }, + "MATH 184A": { + "dept": "MATH", + "description": "Introduction to the theory and applications of combinatorics. Enumeration of combinatorial structures. Ranking and unranking. Graph theory with applications and algorithms. Recursive algorithms. Inclusion-exclusion. Generating functions. Polya theory. ", + "name": "MATH 184A", + "prereqs": [ + "MATH 109", + "MATH 31CH" + ], + "title": "Combinatorics (4)" + }, + "MATH 185": { + "dept": "MATH", + "description": "Statistical analysis of data by means of package programs. Regression, analysis of variance, discriminant analysis, principal components, Monte Carlo simulation, and graphical methods. Emphasis will be on understanding the connections between statistical theory, numerical results, and analysis of real data. Recommended preparation: exposure to computer programming (such as CSE 5A, CSE 7, or ECE 15) highly recommended. ", + "name": "MATH 185", + "prereqs": [ + "MATH 183", + "MAE 108", + "MATH 20C", + "MATH 186", + "MATH 20F", + "MATH 11", + "ECON 120A", + "MATH 31AH", + "MATH 181A", + "MATH 18", + "ECE 109" + ], + "title": "Introduction to Computational Statistics (4)" + }, + "MATH 186": { + "dept": "MATH", + "description": "This course will cover discrete and random variables, data analysis and inferential statistics, likelihood estimators and scoring matrices with applications to biological problems. Introduction to Binomial, Poisson, and Gaussian distributions, central limit theorem, applications to sequence and functional analysis of genomes and genetic epidemiology. (Credit not offered for Math 186 if Econ 120A, ECE 109, MAE 108, Math 181A, or Math 183 previously or concurrently. Two units of credit offered for Math 186 if Math 180A taken previously or concurrently.) ", + "name": "MATH 186", + "prereqs": [ + "MATH 20C", + "MATH 31BH" + ], + "title": "Probability and Statistics for Bioinformatics (4)" + }, + "MATH 187A": { + "dept": "MATH", + "description": "An introduction to the basic concepts and techniques of modern cryptography. Classical cryptanalysis. Probabilistic models of plaintext. Monalphabetic and polyalphabetic substitution. The one-time system. Caesar-Vigenere-Playfair-Hill substitutions. The Enigma. Modern-day developments. The Data Encryption Standard. Public key systems. Security aspects of computer networks. Data protection. Electronic mail. Recommended preparation: programming experience. Renumbered from Math 187. Students may not receive credit for both Math 187A and 187. ", + "name": "MATH 187A", + "prereqs": [], + "title": "Introduction to Cryptography (4)" + }, + "MATH 187B": { + "dept": "MATH", + "description": "The object of this course is to study modern public key cryptographic systems and cryptanalysis (e.g., RSA, Diffie-Hellman, elliptic curve cryptography, lattice-based cryptography, homomorphic encryption) and the mathematics behind them. We also explore other applications of these computational techniques (e.g., integer factorization and attacks on RSA). Recommended preparation: Familiarity with Python and/or mathematical software (especially SAGE) would be helpful, but it is not required. ", + "name": "MATH 187B", + "prereqs": [ + "MATH 187A", + "MATH 31AH", + "MATH 187", + "MATH 20F", + "MATH 18" + ], + "title": "Mathematics of Modern Cryptography (4)" + }, + "MATH 189": { + "dept": "MATH", + "description": "An introduction to various quantitative methods and statistical techniques for analyzing data\u2014in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. ", + "name": "MATH 189", + "prereqs": [ + "MATH 183", + "MAE 108", + "BENG 134", + "MATH 20C", + "CSE 103", + "MATH 20F", + "SE 125", + "ECON 120A", + "MATH 180A", + "MATH 31AH", + "MATH 18", + "ECE 109", + "MATH 186" + ], + "title": "Exploratory Data Analysis and Inference (4)" + }, + "MATH 190": { + "dept": "MATH", + "description": "Topological spaces, subspaces, products, sums", + "name": "MATH 190", + "prereqs": [], + "title": "Introduction to Topology (4)" + }, + "MATH 191": { + "dept": "MATH", + "description": "Topics to be chosen by the instructor from the fields of differential algebraic, geometric, and general topology. ", + "name": "MATH 191", + "prereqs": [ + "MATH 190" + ], + "title": "Topics in Topology (4)" + }, + "MATH 193A": { + "dept": "MATH", + "description": "Probabilistic Foundations of Insurance. Short-term", + "name": "MATH 193A", + "prereqs": [], + "title": "Actuarial Mathematics I (4)" + }, + "MATH 193B": { + "dept": "MATH", + "description": "Life Insurance and Annuities. Analysis of premiums and premium reserves. Introduction to multiple life functions and decrement models as time permits. ", + "name": "MATH 193B", + "prereqs": [ + "MATH 193A" + ], + "title": "Actuarial Mathematics II (4)" + }, + "MATH 194": { + "dept": "MATH", + "description": "Introduction to the mathematics of financial models. Basic probabilistic models and associated mathematical machinery will be discussed, with emphasis on discrete time models. Concepts covered will include conditional expectation, martingales, optimal stopping, arbitrage pricing, hedging, European and American options. ", + "name": "MATH 194", + "prereqs": [ + "MATH 20D", + "MATH 20F", + "ECON 120A", + "MATH 180A", + "MATH 31AH", + "MATH 18" + ], + "title": "The Mathematics of Finance (4)" + }, + "MATH 195": { + "dept": "MATH", + "description": "Students will be responsible for and teach a class section of a lower-division mathematics course. They will also attend a weekly meeting on teaching methods. (Does not count toward a minor or major.) ", + "name": "MATH 195", + "prereqs": [], + "title": "Introduction to Teaching in Mathematics (4)" + }, + "MATH 196": { + "dept": "MATH", + "description": "A variety of topics and current research results in mathematics will be presented by guest lecturers and students under faculty direction. May be taken for P/NP grade only. ", + "name": "MATH 196", + "prereqs": [], + "title": "Student Colloquium (1)" + }, + "MATH 197": { + "dept": "MATH", + "description": "An enrichment program which provides work", + "name": "MATH 197", + "prereqs": [], + "title": "Mathematics Internship (2 or 4)" + }, + "MATH 199": { + "dept": "MATH", + "description": "Independent reading in advanced mathematics by individual students. Three periods. (P/NP grades only.) ", + "name": "MATH 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (2 or 4)" + }, + "MATH 199H": { + "dept": "MATH", + "description": "Thesis Research for Undergraduates (2\u20134)", + "name": "MATH 199H", + "prereqs": [], + "title": "Honors" + }, + "MATH 2": { + "dept": "MATH", + "description": "A highly adaptive course designed to build on students\u2019 strengths while increasing overall mathematical understanding and skill. This multimodality course will focus on several topics of study designed to develop conceptual understanding and mathematical relevance: linear relationships; exponents and polynomials; rational expressions and equations; models of quadratic and polynomial functions and radical equations; exponential and logarithmic functions; and geometry and trigonometry. Workload credit only\u2014not for baccalaureate credit. ", + "name": "MATH 2", + "prereqs": [], + "title": "Introduction to College Mathematics (4)" + }, + "MATH 200A-B-C": { + "dept": "MATH", + "description": "Group actions, factor groups, polynomial rings, linear algebra, rational and Jordan canonical forms, unitary and Hermitian matrices, Sylow theorems, finitely generated abelian groups, unique factorization, Galois theory, solvability by radicals, Hilbert Basis Theorem, Hilbert Nullstellensatz, Jacobson radical, semisimple Artinian rings. ", + "name": "MATH 200A-B-C", + "prereqs": [], + "title": "Algebra (4-4-4)" + }, + "MATH 201A": { + "dept": "MATH", + "description": "Recommended for all students specializing in algebra. Basic topics include categorical algebra, commutative algebra, group representations, homological algebra, nonassociative algebra, ring theory. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 201A", + "prereqs": [ + "MATH 200C" + ], + "title": "Basic Topics in Algebra I (4)" + }, + "MATH 202A": { + "dept": "MATH", + "description": "Introduction to algebra from a computational perspective. Groups, rings, linear algebra, rational and Jordan forms, unitary and Hermitian matrices, matrix decompositions, perturbation of eigenvalues, group representations, symmetric functions, fast Fourier transform, commutative algebra, Grobner basis, finite fields. ", + "name": "MATH 202A", + "prereqs": [], + "title": "Applied Algebra I (4)" + }, + "MATH 202B": { + "dept": "MATH", + "description": "Second course in algebra from a computational perspective. Groups, rings, linear algebra, rational and Jordan forms, unitary and Hermitian matrices, matrix decompositions, perturbation of eigenvalues, group representations, symmetric functions, fast Fourier transform, commutative algebra, Grobner basis, finite fields. ", + "name": "MATH 202B", + "prereqs": [ + "MATH 202A" + ], + "title": "Applied Algebra II (4)" + }, + "MATH 202C": { + "dept": "MATH", + "description": "Third course in algebra from a computational perspective. Groups, rings, linear algebra, rational and Jordan forms, unitary and Hermitian matrices, matrix decompositions, perturbation of eigenvalues, group representations, symmetric functions, fast Fourier transform, commutative algebra, Grobner basis, finite fields. ", + "name": "MATH 202C", + "prereqs": [ + "MATH 202B" + ], + "title": "Applied Algebra III (4)" + }, + "MATH 203A": { + "dept": "MATH", + "description": "Introduction to algebraic geometry. Topics chosen from: varieties and their properties, sheaves and schemes and their properties. May be taken for credit up to three times. ", + "name": "MATH 203A", + "prereqs": [ + "MATH 200C" + ], + "title": "Algebraic Geometry I (4)" + }, + "MATH 203B": { + "dept": "MATH", + "description": "Second course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology. May be taken for credit up to three times. ", + "name": "MATH 203B", + "prereqs": [ + "MATH 203A" + ], + "title": "Algebraic Geometry II (4)" + }, + "MATH 203C": { + "dept": "MATH", + "description": "Third course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology, curves, and surfaces. May be taken for credit up to three times. ", + "name": "MATH 203C", + "prereqs": [ + "MATH 203B" + ], + "title": "Algebraic Geometry III (4)" + }, + "MATH 204A": { + "dept": "MATH", + "description": "First course in graduate-level number theory. Local fields: valuations and metrics on fields; discrete valuation rings and Dedekind domains; completions; ramification theory; main statements of local class field theory. ", + "name": "MATH 204A", + "prereqs": [ + "MATH 200C" + ], + "title": "Number Theory I (4)" + }, + "MATH 204B": { + "dept": "MATH", + "description": "Second course in graduate-level number theory. Global fields: arithmetic properties and relation to local fields; ideal class groups; groups of units; ramification theory; ad\u00e8les and id\u00e8les; main statements of global class field theory. ", + "name": "MATH 204B", + "prereqs": [ + "MATH 204A" + ], + "title": "Number Theory II (4)" + }, + "MATH 204C": { + "dept": "MATH", + "description": "Third course in graduate-level number theory. Zeta and L-functions; Dedekind zeta functions; Artin L-functions; the class-number formula and generalizations; density theorems. ", + "name": "MATH 204C", + "prereqs": [ + "MATH 204B" + ], + "title": "Number Theory III (4)" + }, + "MATH 205": { + "dept": "MATH", + "description": "Topics in algebraic and analytic number theory, such as: L-functions, sieve methods, modular forms, class field theory, p-adic L-functions and Iwasawa theory, elliptic curves and higher dimensional abelian varieties, Galois representations and the Langlands program, p-adic cohomology theories, Berkovich spaces, etc. May be taken for credit nine times. ", + "name": "MATH 205", + "prereqs": [], + "title": "Topics in Number Theory (4)" + }, + "MATH 206A": { + "dept": "MATH", + "description": "Introduction to varied topics in algebraic geometry. Topics will be drawn from current research and may include Hodge theory, higher dimensional geometry, moduli of vector bundles, abelian varieties, deformation theory, intersection theory. Nongraduate students may enroll with consent of instructor. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 206A", + "prereqs": [], + "title": "Topics in Algebraic Geometry (4)" + }, + "MATH 206B": { + "dept": "MATH", + "description": "Continued development of a topic in algebraic geometry. Topics will be drawn from current research and may include Hodge theory, higher dimensional geometry, moduli of vector bundles, abelian varieties, deformation theory, intersection theory. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 206B", + "prereqs": [ + "MATH 206A" + ], + "title": "Further Topics in Algebraic Geometry (4)" + }, + "MATH 207A": { + "dept": "MATH", + "description": "Introduction to varied topics in algebra. In recent years, topics have included number theory, commutative algebra, noncommutative rings, homological algebra, and Lie groups. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 207A", + "prereqs": [], + "title": "Topics in Algebra (4)" + }, + "MATH 208": { + "dept": "MATH", + "description": "Various topics in algebraic geometry. May be taken for credit nine times. ", + "name": "MATH 208", + "prereqs": [], + "title": "Seminar in Algebraic Geometry (1)" + }, + "MATH 209": { + "dept": "MATH", + "description": "Various topics in number theory. ", + "name": "MATH 209", + "prereqs": [], + "title": "Seminar in Number Theory (1)" + }, + "MATH 20A": { + "dept": "MATH", + "description": "Foundations of differential and integral calculus of one variable. Functions, graphs, continuity, limits, derivative, tangent line. Applications with algebraic, exponential, logarithmic, and trigonometric functions. Introduction to the integral. (Two credits given if taken after Math 1A/10A and no credit given if taken after Math 1B/10B or Math 1C/10C. Formerly numbered Math 2A.) ", + "name": "MATH 20A", + "prereqs": [ + "MATH 10A", + "MATH 2C", + "MATH 4C" + ], + "title": "Calculus for Science and Engineering (4)" + }, + "MATH 20B": { + "dept": "MATH", + "description": "Integral calculus of one variable and its", + "name": "MATH 20B", + "prereqs": [], + "title": "Calculus for Science and Engineering (4)" + }, + "MATH 20C": { + "dept": "MATH", + "description": "and Analytic Geometry for Science and Engineering (4)", + "name": "MATH 20C", + "prereqs": [], + "title": "Calculus" + }, + "MATH 20D": { + "dept": "MATH", + "description": "Ordinary differential equations: exact, separable,", + "name": "MATH 20D", + "prereqs": [], + "title": "Introduction to Differential Equations (4)" + }, + "MATH 20E": { + "dept": "MATH", + "description": "Change of variable in multiple integrals, Jacobian, Line integrals, Green\u2019s theorem. Vector fields, gradient fields, divergence, curl. Spherical/cylindrical coordinates. Taylor series in several variables. Surface integrals, Stoke\u2019s theorem. Gauss\u2019 theorem. Conservative fields. ", + "name": "MATH 20E", + "prereqs": [ + "MATH 21C", + "MATH 20C", + "MATH 31BH", + "MATH 20F", + "MATH 31AH", + "MATH 18" + ], + "title": "Vector Calculus (4)" + }, + "MATH 210A": { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "name": "MATH 210A", + "prereqs": [], + "title": "Mathematical" + }, + "MATH 210B": { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "name": "MATH 210B", + "prereqs": [], + "title": "Mathematical" + }, + "MATH 210C": { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "name": "MATH 210C", + "prereqs": [], + "title": "Mathematical" + }, + "MATH 217": { + "dept": "MATH", + "description": "In recent years, topics have included applied complex analysis, special functions, and asymptotic methods. May be repeated for credit with consent of adviser as topics vary. ", + "name": "MATH 217", + "prereqs": [], + "title": "Topics in Applied Mathematics (4)" + }, + "MATH 218": { + "dept": "MATH", + "description": "Various topics in the mathematics of biological systems. May be taken for credit nine times. ", + "name": "MATH 218", + "prereqs": [], + "title": "Seminar in Mathematics of Biological Systems (1)" + }, + "MATH 220A-B-C": { + "dept": "MATH", + "description": "Complex numbers and functions. Cauchy theorem and its applications, calculus of residues, expansions of analytic functions, analytic continuation, conformal mapping and Riemann mapping theorem, harmonic functions. Dirichlet principle, Riemann surfaces. ", + "name": "MATH 220A-B-C", + "prereqs": [ + "MATH 140A", + "MATH 140B" + ], + "title": "Complex Analysis (4-4-4)" + }, + "MATH 221A": { + "dept": "MATH", + "description": "Introduction to varied topics in several complex variables. In recent years, topics have included formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 221A", + "prereqs": [ + "MATH 200A", + "MATH 220C" + ], + "title": "Topics in Several Complex Variables (4)" + }, + "MATH 221B": { + "dept": "MATH", + "description": "Continued development of a topic in several complex variables. Topics include: formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 221B", + "prereqs": [ + "MATH 221A" + ], + "title": "Further Topics in Several Complex Variables (4)" + }, + "MATH 231A-B-C": { + "dept": "MATH", + "description": "Existence and uniqueness theorems. Cauchy-Kowalewski theorem, first order systems. Hamilton-Jacobi theory, initial value problems for hyperbolic and parabolic systems, boundary value problems for elliptic systems. Green\u2019s function, eigenvalue problems, perturbation theory. ", + "name": "MATH 231A-B-C", + "prereqs": [ + "MATH 210A", + "MATH 210B", + "MATH 240A", + "MATH 240C", + "MATH 240B" + ], + "title": "Partial Differential Equations (4-4-4)" + }, + "MATH 237A": { + "dept": "MATH", + "description": "Introduction to varied topics in differential equations. In recent years, topics have included Riemannian geometry, Ricci flow, and geometric evolution. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 237A", + "prereqs": [], + "title": "Topics in Differential Equations (4)" + }, + "MATH 237B": { + "dept": "MATH", + "description": "Continued development of a topic in differential equations. Topics include: Riemannian geometry, Ricci flow, and geometric evolution. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 237B", + "prereqs": [ + "MATH 237A" + ], + "title": "Further Topics in Differential Equations (4)" + }, + "MATH 240A-B-C": { + "dept": "MATH", + "description": "Lebesgue integral and Lebesgue measure, Fubini theorems, functions of bounded variations, Stieltjes integral, derivatives and indefinite integrals, the spaces L and C, equi-continuous families, continuous linear functionals general measures and integrations. ", + "name": "MATH 240A-B-C", + "prereqs": [ + "MATH 140A", + "MATH 140B", + "MATH 140C" + ], + "title": "Real Analysis (4-4-4)" + }, + "MATH 241A-B": { + "dept": "MATH", + "description": "Metric spaces and contraction mapping theorem;", + "name": "MATH 241A-B", + "prereqs": [], + "title": "Functional Analysis (4-4)" + }, + "MATH 242": { + "dept": "MATH", + "description": "In recent years, topics have included Fourier analysis in Euclidean spaces, groups, and symmetric spaces. May be repeated for credit with consent of adviser as topics vary. ", + "name": "MATH 242", + "prereqs": [ + "MATH 240C" + ], + "title": "Topics in Fourier Analysis (4)" + }, + "MATH 243": { + "dept": "MATH", + "description": "Various topics in functional analysis. May be taken for credit nine times. ", + "name": "MATH 243", + "prereqs": [], + "title": "Seminar in Functional Analysis (1)" + }, + "MATH 245A": { + "dept": "MATH", + "description": "Convex sets and functions, convex and affine hulls, relative", + "name": "MATH 245A", + "prereqs": [], + "title": "Convex Analysis and Optimization I (4)" + }, + "MATH 245B": { + "dept": "MATH", + "description": "Optimality conditions, strong duality and the primal function,", + "name": "MATH 245B", + "prereqs": [], + "title": "Convex Analysis and Optimization II (4)" + }, + "MATH 245C": { + "dept": "MATH", + "description": "Convex optimization problems, linear matrix inequalities,", + "name": "MATH 245C", + "prereqs": [], + "title": "Convex Analysis and Optimization III (4)" + }, + "MATH 247A": { + "dept": "MATH", + "description": "Introduction to varied topics in real analysis. In recent years, topics have included Fourier analysis, distribution theory, martingale theory, operator theory. May be taken for credit six times with consent of adviser. ", + "name": "MATH 247A", + "prereqs": [], + "title": "Topics in Real Analysis (4)" + }, + "MATH 247B": { + "dept": "MATH", + "description": "Continued development of a topic in real analysis. Topics include: Fourier analysis, distribution theory, martingale theory, operator theory. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 247B", + "prereqs": [ + "MATH 247A" + ], + "title": "Further Topics in Real Analysis (4)" + }, + "MATH 248": { + "dept": "MATH", + "description": "Various topics in real analysis. ", + "name": "MATH 248", + "prereqs": [], + "title": "Seminar in Real Analysis (1)" + }, + "MATH 250A-B-C": { + "dept": "MATH", + "description": "Differential manifolds, Sard theorem, tensor bundles, Lie derivatives, DeRham theorem, connections, geodesics, Riemannian metrics, curvature tensor and sectional curvature, completeness, characteristic classes. Differential manifolds immersed in Euclidean space. ", + "name": "MATH 250A-B-C", + "prereqs": [], + "title": "Differential Geometry (4-4-4)" + }, + "MATH 251A-B-C": { + "dept": "MATH", + "description": "Lie groups, Lie algebras, exponential map, subgroup subalgebra correspondence, adjoint group, universal enveloping algebra. Structure theory of semi-simple Lie groups, global decompositions, Weyl group. Geometry and analysis on symmetric spaces. ", + "name": "MATH 251A-B-C", + "prereqs": [ + "MATH 200", + "MATH 250" + ], + "title": "Lie Groups (4-4-4)" + }, + "MATH 256": { + "dept": "MATH", + "description": "Various topics in Lie groups and Lie algebras, including structure theory, representation theory, and applications. ", + "name": "MATH 256", + "prereqs": [], + "title": "Seminar in Lie Groups and Lie Algebras (1)" + }, + "MATH 257A": { + "dept": "MATH", + "description": "Introduction to varied topics in differential geometry. In recent years, topics have included Morse theory and general relativity. May be taken for credit six times with consent of adviser. ", + "name": "MATH 257A", + "prereqs": [], + "title": "Topics in Differential Geometry (4)" + }, + "MATH 257B": { + "dept": "MATH", + "description": "Continued development of a topic in differential geometry. Topics include Morse theory and general relativity. May be taken for credit three times with consent of adviser. ", + "name": "MATH 257B", + "prereqs": [ + "MATH 257A" + ], + "title": "Further Topics in Differential Geometry (4)" + }, + "MATH 258": { + "dept": "MATH", + "description": "Various topics in differential geometry. May be taken for credit nine times. ", + "name": "MATH 258", + "prereqs": [], + "title": "Seminar in Differential Geometry (1)" + }, + "MATH 259A-B-C": { + "dept": "MATH", + "description": "Manifolds, differential forms, homology, deRham\u2019s theorem. Riemannian geometry, harmonic forms. Lie groups and algebras, connections in bundles, homotopy sequence of a bundle, Chern classes. Applications selected from Hamiltonian and continuum mechanics, electromagnetism, thermodynamics, special and general relativity, Yang-Mills fields. ", + "name": "MATH 259A-B-C", + "prereqs": [], + "title": "Geometrical Physics (4-4-4)" + }, + "MATH 260A": { + "dept": "MATH", + "description": "Propositional calculus and first-order logic. Theorem proving, Model theory, soundness, completeness, and compactness, Herbrand\u2019s theorem, Skolem-Lowenheim theorems, Craig interpolation. ", + "name": "MATH 260A", + "prereqs": [], + "title": "Mathematical Logic I (4)" + }, + "MATH 260B": { + "dept": "MATH", + "description": "Theory of computation and recursive function theory, Church\u2019s thesis, computability and undecidability. Feasible computability and complexity. Peano arithmetic and the incompleteness theorems, nonstandard models. ", + "name": "MATH 260B", + "prereqs": [ + "MATH 260A" + ], + "title": "Mathematical Logic II (4)" + }, + "MATH 261A": { + "dept": "MATH", + "description": "Introduction to the probabilistic method. Combinatorial applications of the linearity of expectation, second moment method, Markov, Chebyschev, and Azuma inequalities, and the local limit lemma. Introduction to the theory of random graphs. ", + "name": "MATH 261A", + "prereqs": [], + "title": "Probabilistic Combinatorics and Algorithms (4)" + }, + "MATH 261B": { + "dept": "MATH", + "description": "Combinatorics and Algorithms II (4)", + "name": "MATH 261B", + "prereqs": [], + "title": "Probabilistic" + }, + "MATH 261C": { + "dept": "MATH", + "description": "Combinatorics and Algorithms III (4)", + "name": "MATH 261C", + "prereqs": [], + "title": "Probabilistic" + }, + "MATH 262A": { + "dept": "MATH", + "description": "Introduction to varied topics in combinatorial mathematics. In recent years topics have included problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 262A", + "prereqs": [], + "title": "Topics in Combinatorial Mathematics (4)" + }, + "MATH 262B": { + "dept": "MATH", + "description": "Continued development of a topic in combinatorial mathematics. Topics include: problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 262B", + "prereqs": [ + "MATH 262A" + ], + "title": "Further Topics in Combinatorial Mathematics (4)" + }, + "MATH 264A-B-C": { + "dept": "MATH", + "description": "Topics from partially ordered sets, Mobius functions, simplicial complexes and shell ability. Enumeration, formal power series and formal languages, generating functions, partitions. Lagrange inversion, exponential structures, combinatorial species. Finite operator methods, q-analogues, Polya theory, Ramsey theory. Representation theory of the symmetric group, symmetric functions and operations with Schur functions.", + "name": "MATH 264A-B-C", + "prereqs": [], + "title": "Combinatorics (4-4-4)" + }, + "MATH 267A": { + "dept": "MATH", + "description": "Introduction to varied topics in mathematical logic. Topics chosen from recursion theory, model theory, and set theory. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 267A", + "prereqs": [], + "title": "Topics in Mathematical Logic (4)" + }, + "MATH 267B": { + "dept": "MATH", + "description": "Continued development of a topic in mathematical logic. Topics chosen from recursion theory, model theory, and set theory. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 267B", + "prereqs": [ + "MATH 267A" + ], + "title": "Further Topics in Mathematical Logic (4)" + }, + "MATH 268": { + "dept": "MATH", + "description": "Various topics in logic. ", + "name": "MATH 268", + "prereqs": [], + "title": "Seminar in Logic (1)" + }, + "MATH 269": { + "dept": "MATH", + "description": "Various topics in combinatorics. ", + "name": "MATH 269", + "prereqs": [], + "title": "Seminar in Combinatorics (1)" + }, + "MATH 270A": { + "dept": "MATH", + "description": "Error analysis of the numerical solution of linear equations and least squares problems for the full rank and rank deficient cases. Error analysis of numerical methods for eigenvalue problems and singular value problems. Iterative methods for large sparse systems of linear equations. ", + "name": "MATH 270A", + "prereqs": [], + "title": "Numerical Linear Algebra (4)" + }, + "MATH 270B": { + "dept": "MATH", + "description": "Approximation and Nonlinear Equations (4)", + "name": "MATH 270B", + "prereqs": [], + "title": "Numerical" + }, + "MATH 270C": { + "dept": "MATH", + "description": "Initial value problems (IVP) and boundary value problems (BVP) in ordinary differential equations. Linear methods for IVP: one and multistep methods, local truncation error, stability, convergence, global error accumulation. Runge-Kutta (RK) Methods for IVP: RK methods, predictor-corrector methods, stiff systems, error indicators, adaptive time-stepping. Finite difference, finite volume, collocation, spectral, and finite element methods for BVP; a priori and a posteriori error analysis, stability, convergence, adaptivity. ", + "name": "MATH 270C", + "prereqs": [ + "MATH 270B" + ], + "title": "Numerical Ordinary Differential Equations (4)" + }, + "MATH 271A-B-C": { + "dept": "MATH", + "description": "Formulation and analysis of algorithms for constrained optimization. Optimality conditions; linear and quadratic programming; interior methods; penalty and barrier function methods; sequential quadratic programming methods. ", + "name": "MATH 271A-B-C", + "prereqs": [], + "title": "Numerical Optimization (4-4-4)" + }, + "MATH 272A": { + "dept": "MATH", + "description": "Survey of discretization techniques for elliptic partial differential equations, including finite difference, finite element and finite volume methods. Lax-Milgram Theorem and LBB stability. A priori error estimates. Mixed methods. Convection-diffusion equations. Systems of elliptic PDEs. ", + "name": "MATH 272A", + "prereqs": [], + "title": "Numerical Partial Differential Equations I (4)" + }, + "MATH 272B": { + "dept": "MATH", + "description": "Survey of solution techniques for partial differential equations. Basic iterative methods. Preconditioned conjugate gradients. Multigrid methods. Hierarchical basis methods. Domain decomposition. Nonlinear PDEs. Sparse direct methods. ", + "name": "MATH 272B", + "prereqs": [ + "MATH 272A" + ], + "title": "Numerical Partial Differential Equations II (4)" + }, + "MATH 272C": { + "dept": "MATH", + "description": "Time dependent (parabolic and hyperbolic) PDEs. Method of lines. Stiff systems of ODEs. Space-time finite element methods. Adaptive meshing algorithms. A posteriori error estimates. ", + "name": "MATH 272C", + "prereqs": [ + "MATH 272B" + ], + "title": "Numerical Partial Differential Equations III (4)" + }, + "MATH 273A": { + "dept": "MATH", + "description": "Techniques in Computational Mathematics I (4)", + "name": "MATH 273A", + "prereqs": [], + "title": "Advanced" + }, + "MATH 273B": { + "dept": "MATH", + "description": "Techniques in Computational Mathematics II (4)", + "name": "MATH 273B", + "prereqs": [], + "title": "Advanced" + }, + "MATH 273C": { + "dept": "MATH", + "description": "Techniques in Computational Mathematics III (4)", + "name": "MATH 273C", + "prereqs": [], + "title": "Advanced" + }, + "MATH 274": { + "dept": "MATH", + "description": "(Conjoined with Math 174.) Floating point", + "name": "MATH 274", + "prereqs": [], + "title": "Numerical Methods for Physical Modeling (4)" + }, + "MATH 275": { + "dept": "MATH", + "description": "(Conjoined with Math 175.) Mathematical background", + "name": "MATH 275", + "prereqs": [], + "title": "Numerical Methods for Partial Differential Equations (4)" + }, + "MATH 276": { + "dept": "MATH", + "description": "(Cross-listed with BENG 276/CHEM 276.) Introduces", + "name": "MATH 276", + "prereqs": [], + "title": "Numerical Analysis in Multiscale Biology (4)" + }, + "MATH 277A": { + "dept": "MATH", + "description": "Introduction to varied topics in computational and applied mathematics. In recent years, topics have included: applied functional analysis and approximation theory; numerical treatment of nonlinear partial differential equations; and geometric numerical integration for differential equations. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 277A", + "prereqs": [], + "title": "Topics in Computational and Applied Mathematics (4)" + }, + "MATH 278A": { + "dept": "MATH", + "description": "Various topics in computational and applied mathematics. ", + "name": "MATH 278A", + "prereqs": [], + "title": "Seminar in Computational and Applied Mathematics (1)" + }, + "MATH 278B": { + "dept": "MATH", + "description": "Various topics in mathematical physics and partial differential equations. ", + "name": "MATH 278B", + "prereqs": [], + "title": "Seminar in Mathematical Physics/PDE (1)" + }, + "MATH 278C": { + "dept": "MATH", + "description": "Various topics in optimization and applications. May be taken for credit nine times. ", + "name": "MATH 278C", + "prereqs": [], + "title": "Seminar in Optimization (1)" + }, + "MATH 279": { + "dept": "MATH", + "description": "(Conjoined with Math 179.) Mathematical models of physical", + "name": "MATH 279", + "prereqs": [], + "title": "Projects in Computational and Applied Mathematics (4)" + }, + "MATH 280A": { + "dept": "MATH", + "description": "This is the first course in a three-course sequence in probability theory. Topics covered in the sequence include the measure-theoretic foundations of probability theory, independence, the Law of Large Numbers, convergence in distribution, the Central Limit Theorem, conditional expectation, martingales, Markov processes, and Brownian motion. Recommended preparation: completion of real analysis equivalent to Math 140A-B strongly recommended. ", + "name": "MATH 280A", + "prereqs": [], + "title": "Probability Theory I (4)" + }, + "MATH 280B": { + "dept": "MATH", + "description": "This is the second course in a three-course sequence in probability theory. Topics covered in the sequence include the measure-theoretic foundations of probability theory, independence, the Law of Large Numbers, convergence in distribution, the Central Limit Theorem, conditional expectation, martingales, Markov processes, and Brownian motion. ", + "name": "MATH 280B", + "prereqs": [ + "MATH 280A" + ], + "title": "Probability Theory II (4)" + }, + "MATH 280C": { + "dept": "MATH", + "description": "This is the third course in a three-course sequence in probability theory. Topics covered in the sequence include the measure-theoretic foundations of probability theory, independence, the Law of Large Numbers, convergence in distribution, the Central Limit Theorem, conditional expectation, martingales, Markov processes, and Brownian motion. ", + "name": "MATH 280C", + "prereqs": [ + "MATH 280B" + ], + "title": "Probability Theory III (4)" + }, + "MATH 281A": { + "dept": "MATH", + "description": "Statistical models, sufficiency, efficiency, optimal estimation, least squares and maximum likelihood, large sample theory. ", + "name": "MATH 281A", + "prereqs": [], + "title": "Mathematical Statistics (4)" + }, + "MATH 281B": { + "dept": "MATH", + "description": "Hypothesis testing and confidence intervals,", + "name": "MATH 281B", + "prereqs": [], + "title": "Mathematical Statistics (4)" + }, + "MATH 281C": { + "dept": "MATH", + "description": "Nonparametrics: tests, regression, density estimation, bootstrap and jackknife. Introduction to statistical computing using S plus. ", + "name": "MATH 281C", + "prereqs": [], + "title": "Mathematical Statistics (4)" + }, + "MATH 282A": { + "dept": "MATH", + "description": "General theory of linear models with applications to regression analysis. Ordinary and generalized least squares estimators and their properties. Hypothesis testing, including analysis of variance, and confidence intervals. Completion of courses in linear algebra and basic statistics are recommended prior to enrollment. ", + "name": "MATH 282A", + "prereqs": [], + "title": "Applied Statistics I (4)" + }, + "MATH 282B": { + "dept": "MATH", + "description": "Diagnostics, outlier detection, robust regression. Variable selection, ridge regression, the lasso. Generalized linear models, including logistic regression. Data analysis using the statistical software R. Students who have not taken Math 282A may enroll with consent of instructor. ", + "name": "MATH 282B", + "prereqs": [ + "MATH 282A" + ], + "title": "Applied Statistics II (4)" + }, + "MATH 283": { + "dept": "MATH", + "description": "This course will cover material related to the analysis of modern genomic data; sequence analysis, gene expression/functional genomics analysis, and gene mapping/applied population genetics. The course will focus on statistical modeling and inference issues and not on database mining techniques. ", + "name": "MATH 283", + "prereqs": [], + "title": "Statistical Methods in Bioinformatics (4)" + }, + "MATH 284": { + "dept": "MATH", + "description": "Survival analysis is an important tool in many areas of applications including biomedicine, economics, engineering. It deals with the analysis of time to events data with censoring. This course discusses the concepts and theories associated with survival data and censoring, comparing survival distributions, proportional hazards regression, nonparametric tests, competing risk models, and frailty models. The emphasis is on semiparametric inference, and material is drawn from recent literature. ", + "name": "MATH 284", + "prereqs": [ + "MATH 282A" + ], + "title": "Survival Analysis (4)" + }, + "MATH 285": { + "dept": "MATH", + "description": "Elements of stochastic processes, Markov chains, hidden Markov models, martingales, Brownian motion, Gaussian processes. Recommended preparation: completion of undergraduate probability theory (equivalent to Math 180A) highly recommended. ", + "name": "MATH 285", + "prereqs": [], + "title": "Stochastic Processes (4)" + }, + "MATH 286": { + "dept": "MATH", + "description": "Review of continuous martingale theory. Stochastic integration for continuous semimartingales. Existence and uniqueness theory for stochastic differential equations. Strong Markov property. Selected applications. ", + "name": "MATH 286", + "prereqs": [ + "MATH 280A", + "MATH 280B" + ], + "title": "Stochastic Differential Equations (4)" + }, + "MATH 287A": { + "dept": "MATH", + "description": "Discussion of finite parameter schemes in the Gaussian and non-Gaussian context. Estimation for finite parameter schemes. Stationary processes and their spectral representation. Spectral estimation. Students who have not taken Math 282A may enroll with consent of instructor. ", + "name": "MATH 287A", + "prereqs": [ + "MATH 282A" + ], + "title": "Time Series Analysis (4)" + }, + "MATH 287B": { + "dept": "MATH", + "description": "Bivariate and more general multivariate normal distribution. Study of tests based on Hotelling\u2019s T2. Principal components, canonical correlations, and factor analysis will be discussed as well as some competing nonparametric methods, such as cluster analysis. Students who have not taken Math 282A may enroll with consent of instructor. ", + "name": "MATH 287B", + "prereqs": [ + "MATH 282A" + ], + "title": "Multivariate Analysis (4)" + }, + "MATH 287C": { + "dept": "MATH", + "description": "Nonparametric function (spectrum, density,", + "name": "MATH 287C", + "prereqs": [], + "title": "Advanced Time Series Analysis (4)" + }, + "MATH 287D": { + "dept": "MATH", + "description": "Topics include regression methods: (penalized) linear regression", + "name": "MATH 287D", + "prereqs": [], + "title": "Statistical Learning (4)" + }, + "MATH 288": { + "dept": "MATH", + "description": "Various topics in probability and statistics. ", + "name": "MATH 288", + "prereqs": [], + "title": "Seminar in Probability and Statistics (1)" + }, + "MATH 289A": { + "dept": "MATH", + "description": "Introduction to varied topics in probability and statistics. In recent years, topics have included Markov processes, martingale theory, stochastic processes, stationary and Gaussian processes, ergodic theory. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 289A", + "prereqs": [], + "title": "Topics in Probability and Statistics (4)" + }, + "MATH 289B": { + "dept": "MATH", + "description": "Continued development of a topic in probability and statistics. Topics include: Markov processes, martingale theory, stochastic processes, stationary and Gaussian processes, ergodic theory. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 289B", + "prereqs": [ + "MATH 289A" + ], + "title": "Further Topics in Probability and Statistics (4)" + }, + "MATH 289C": { + "dept": "MATH", + "description": "An introduction to various quantitative methods and statistical techniques for analyzing data\u2014in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. Recommended preparation: familiarity with linear algebra and mathematical statistics highly recommended. ", + "name": "MATH 289C", + "prereqs": [], + "title": "Exploratory Data Analysis and Inference (4)" + }, + "MATH 290A-B-C": { + "dept": "MATH", + "description": "Point set topology, including separation axioms, compactness, connectedness. Algebraic topology, including the fundamental group, covering spaces, homology and cohomology. Homotopy or applications to manifolds as time permits. ", + "name": "MATH 290A-B-C", + "prereqs": [ + "MATH 100A", + "MATH 100B", + "MATH 100C", + "MATH 140A", + "MATH 140B", + "MATH 140C" + ], + "title": "Topology (4-4-4)" + }, + "MATH 291A": { + "dept": "MATH", + "description": "Introduction to varied topics in topology. In recent years topics have included: generalized cohomology theory, spectral sequences, K-theory, homotophy theory. May be taken for credit six times with consent of adviser as topics vary. ", + "name": "MATH 291A", + "prereqs": [], + "title": "Topics in Topology (4)" + }, + "MATH 291B": { + "dept": "MATH", + "description": "Continued development of a topic in topology. Topics include generalized cohomology theory, spectral sequences, K-theory, homotophy theory. May be taken for credit three times with consent of adviser as topics vary. ", + "name": "MATH 291B", + "prereqs": [ + "MATH 291A" + ], + "title": "Further Topics in Topology (4)" + }, + "MATH 292": { + "dept": "MATH", + "description": "Various topics in topology. May be taken for credit nine times. ", + "name": "MATH 292", + "prereqs": [], + "title": "Seminar in Topology (1)" + }, + "MATH 294": { + "dept": "MATH", + "description": "Introduction to the mathematics of financial models. Hedging, pricing by arbitrage. Discrete and continuous stochastic models. Martingales. Brownian motion, stochastic calculus. Black-Scholes model, adaptations to dividend paying equities, currencies and coupon-paying bonds, interest rate market, foreign exchange models. ", + "name": "MATH 294", + "prereqs": [ + "MATH 180A" + ], + "title": "The Mathematics of Finance (4)" + }, + "MATH 295": { + "dept": "MATH", + "description": "A variety of topics and current research results in mathematics will be presented by staff members and students under faculty direction.", + "name": "MATH 295", + "prereqs": [], + "title": "Special Topics in Mathematics (1 to 4)" + }, + "MATH 296": { + "dept": "MATH", + "description": "A variety of advanced topics and current research in mathematics will be presented by department faculty. (S/U grades only.) May be taken for credit six times. ", + "name": "MATH 296", + "prereqs": [], + "title": "Graduate Student Colloquium (1)" + }, + "MATH 297": { + "dept": "MATH", + "description": "An enrichment program that provides work experience with public/private sector employers and researchers. Under supervision of a faculty adviser, students provide mathematical consultation services. ", + "name": "MATH 297", + "prereqs": [], + "title": "Mathematics Graduate Research Internship (2\u20134)" + }, + "MATH 299": { + "dept": "MATH", + "description": "Independent study and research for the doctoral dissertation. One to three credits will be given for independent study (reading) and one to nine for research. ", + "name": "MATH 299", + "prereqs": [], + "title": "Reading and Research (1 to 12)" + }, + "MATH 31AH": { + "dept": "MATH", + "description": "First quarter of three-quarter honors integrated linear algebra/multivariable calculus sequence for well-prepared students. Topics include: real/complex number systems, vector spaces, linear transformations, bases and dimension, change of basis, eigenvalues, eigenvectors, diagonalization. (Credit not offered for both Math 31AH and 20F.) ", + "name": "MATH 31AH", + "prereqs": [], + "title": "Honors Linear Algebra (4)" + }, + "MATH 31BH": { + "dept": "MATH", + "description": "Second quarter of three-quarter honors integrated linear algebra/multivariable calculus sequence for well-prepared students. Topics include: derivative in several variables, Jacobian matrices, extrema and constrained extrema, integration in several variables. (Credit not offered for both Math 31BH and 20C.) ", + "name": "MATH 31BH", + "prereqs": [ + "MATH 31AH" + ], + "title": "Honors Multivariable Calculus (4)" + }, + "MATH 31CH": { + "dept": "MATH", + "description": "Third quarter of honors integrated linear algebra/multivariable calculus sequence for well-prepared students. Topics include: change of variables formula, integration of differential forms, exterior derivative, generalized Stoke\u2019s theorem, conservative vector fields, potentials. ", + "name": "MATH 31CH", + "prereqs": [ + "MATH 31BH" + ], + "title": "Honors Vector Calculus (4)" + }, + "MATH 3C": { + "dept": "MATH", + "description": "Functions and their graphs. Linear and polynomial functions, zeroes, inverse functions, exponential and logarithmic, trigonometric functions and their inverses. Emphasis on understanding algebraic, numerical and graphical approaches making use of graphing calculators. (No credit given if taken after Math 4C, 1A/10A, or 2A/20A.) Three or more years of high school mathematics or equivalent recommended. ", + "name": "MATH 3C", + "prereqs": [], + "title": "Precalculus (4)" + }, + "MATH 4C": { + "dept": "MATH", + "description": "Review of polynomials. Graphing functions and relations: graphing rational functions, effects of linear changes of coordinates. Circular functions and right triangle trigonometry. Reinforcement of function concept: exponential, logarithmic, and trigonometric functions. Vectors. Conic sections. Polar coordinates. (No credit given if taken after Math 1A/10A or 2A/20A. Two units of credit given if taken after Math 3C.) ", + "name": "MATH 4C", + "prereqs": [ + "MATH 3C" + ], + "title": "Precalculus for Science and Engineering (4)" + }, + "MATH 500": { + "dept": "MATH", + "description": "Supervised teaching as part of the mathematics instructional program on campus (or, in special cases such as the CTF program, off campus). ", + "name": "MATH 500", + "prereqs": [], + "title": "Apprentice Teaching (1 to 4)" + }, + "MATH 87": { + "dept": "MATH", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshman. ", + "name": "MATH 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "MATH 95": { + "dept": "MATH", + "description": "(Cross-listed with EDS 30.) Revisit students\u2019 learning", + "name": "MATH 95", + "prereqs": [], + "title": "Introduction to Teaching Math (2)" + }, + "MATH 96": { + "dept": "MATH", + "description": "Students will develop skills in analytical thinking as they solve and present solutions to challenging mathematical problems in preparation for the William Lowell Putnam Mathematics Competition, a national undergraduate mathematics examination held each year. Students must sit for at least one half of the Putnam exam (given the first Saturday in December) to receive a passing grade. P/NP grades only. May be taken for credit up to four times.\u00a0", + "name": "MATH 96", + "prereqs": [ + "MATH 20A" + ], + "title": "Putnam Seminar (1)" + }, + "MATH 99R": { + "dept": "MATH", + "description": "Independent study or research under direction of a member of the faculty. ", + "name": "MATH 99R", + "prereqs": [], + "title": "Independent Study (1)" + }, + "MATS 200": { + "dept": "MATS", + "description": "Each graduate student in the Materials Science and Engineering Program is expected to attend a weekly seminar in materials science or related areas. MS students must enroll for three quarters, PhD students for six quarters, as of fall 1995. (S/U grades only.) (F,W,S)", + "name": "MATS 200", + "prereqs": [], + "title": "Graduate Seminar (0)" + }, + "MATS 201A": { + "dept": "MATS", + "description": "The thermodynamics and statistical mechanics of solids. Basic concepts; equilibrium properties of alloy systems; thermodynamic information from phase diagrams, surfaces, and interfaces; crystalline defects. ", + "name": "MATS 201A", + "prereqs": [], + "title": "Thermodynamics of Solids (4)" + }, + "MATS 201B": { + "dept": "MATS", + "description": "Thermally activated processes, Boltzmann factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick\u2019s laws, diffusion mechanisms, Kirkendall effect, Boltzman-Matano analysis, high diffusivity paths. ", + "name": "MATS 201B", + "prereqs": [], + "title": "Solid State Diffusion and Reaction Kinetics (4)" + }, + "MATS 201C": { + "dept": "MATS", + "description": "Classification of phase transformations: displacive and reconstructive transformations: classical and nonclassical theories of nucleation: Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories: interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics, and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ", + "name": "MATS 201C", + "prereqs": [ + "MAE 271C" + ], + "title": "Phase Transformations (4)" + }, + "MATS 205A": { + "dept": "MATS", + "description": "Point, line, and planar defects in crystalline solids, including vacancies, self-interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements. ", + "name": "MATS 205A", + "prereqs": [], + "title": "Imperfections in Solids (4)" + }, + "MATS 213A": { + "dept": "MATS", + "description": "Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves; Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ", + "name": "MATS 213A", + "prereqs": [ + "MAE 273A" + ], + "title": "Dynamic Behavior of Materials I (4)" + }, + "MATS 227": { + "dept": "MATS", + "description": "Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. ", + "name": "MATS 227", + "prereqs": [], + "title": "Structure and Analysis of Solids (4)" + }, + "MATS 231": { + "dept": "MATS", + "description": "Main focus is the large deformations and instabilities in soft materials, such as elastomers, gels, and biomaterials. Some contents in thermodynamics and finite deformation theory are reviewed and summarized. Fundamental theories are applied to study the mechanics of gels, electroactive polymers, and biomaterials. This course intends to use soft material as an example to illustrate how to study the interaction between mechanics and other fields in materials (e.g., electric field, chemical field). Students may not receive credit for both MAE 276 and MATS 231. ", + "name": "MATS 231", + "prereqs": [ + "MAE 276" + ], + "title": "Mechanics of Soft Materials (4)" + }, + "MATS 236": { + "dept": "MATS", + "description": "Topics include phase equilibria and crystallography, defects and thermodynamics (Kr\u00f6ger-Vink Notation), glass science, electrical and ionic transport behavior, Brouwer diagrams, powder synthesis and compaction, sintering theory and gain growth, mechanical, optical, magnetic, electrical properties, fuel cells. ", + "name": "MATS 236", + "prereqs": [], + "title": "Advanced Ceramic (4)" + }, + "MATS 243": { + "dept": "MATS", + "description": "Analysis of the near surface of materials via ion, electron, and X-ray spectroscopes. Topics to be covered include particle solid interactions. Rutherford Backscattering, secondary ion mass spectroscopy, electron energy loss spectroscopy, particle induced X-ray emission, Auger electron spectroscopy, extended X-ray absorption fine structure and channeling. ", + "name": "MATS 243", + "prereqs": [ + "ECE 237" + ], + "title": "Modern Materials Analysis (4)" + }, + "MATS 251A": { + "dept": "MATS", + "description": "and Photonic Properties of Materials (4)", + "name": "MATS 251A", + "prereqs": [], + "title": "Electronic" + }, + "MATS 251B": { + "dept": "MATS", + "description": "Materials: Principles and Applications (4)", + "name": "MATS 251B", + "prereqs": [], + "title": "Magnetic" + }, + "MATS 252": { + "dept": "MATS", + "description": "This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "name": "MATS 252", + "prereqs": [ + "MAE 266" + ], + "title": "Biomaterials and Medical Devices (4)" + }, + "MATS 253": { + "dept": "MATS", + "description": "This course discusses synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. ", + "name": "MATS 253", + "prereqs": [ + "MAE 267" + ], + "title": "Nanomaterials and Properties (4)" + }, + "MATS 254": { + "dept": "MATS", + "description": "Fabrication of Micro-Electro-Mechanical Systems (MEMS) by bulk and surface micromachining of single crystal, polycrystal, and amorphous silicon and other materials. Performance issues including electrostatic, magnetic, piezoelectric actuations, residual stresses, deformation. Novel device applications, future trends in smart materials and nano-electro-mechanical (NEMS) systems. ", + "name": "MATS 254", + "prereqs": [ + "MAE 268" + ], + "title": "Frontier Micro-Electro-Mechanical Systems (MEMS) Materials and Devices (4)" + }, + "MATS 255": { + "dept": "MATS", + "description": "Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Students may not receive credit for CENG 256 and NANO 252 and MATS 255.", + "name": "MATS 255", + "prereqs": [], + "title": "Biomaterials and Biomimetics (4)" + }, + "MATS 256": { + "dept": "MATS", + "description": "This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor; and chemical structures and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. (Cross-listed with MAE 278.) ", + "name": "MATS 256", + "prereqs": [], + "title": "Energy Materials and Applications (4)" + }, + "MATS 257": { + "dept": "MATS", + "description": "Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. (Cross-listed with BENG 242.) ", + "name": "MATS 257", + "prereqs": [ + "MS 76", + "BE 75" + ], + "title": "Polymer Science and Engineering (4)" + }, + "MATS 259": { + "dept": "MATS", + "description": "Nanotechnology has made a tremendous impact on drug and diagnostic delivery technology. This seminar series will expose PharmD students to the most cutting edge research on using nanotechnology for the delivery of agents to detect, treat, and prevent disease. ", + "name": "MATS 259", + "prereqs": [], + "title": "Frontiers in Therapeutic and Diagnostic Delivery (1)" + }, + "MATS 261A": { + "dept": "MATS", + "description": "Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment, material-processing-microstructure interaction, materials selection, form and quality control. Extrusion, injection molding, blow molding, compression molding, thermoforming, casting, foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. (Cross-listed with SE 251A.)\u00a0", + "name": "MATS 261A", + "prereqs": [], + "title": "Processing of Polymers and Composites (4)" + }, + "MATS 261B": { + "dept": "MATS", + "description": "Material-science oriented course on polymers and composites. Mechanical properties of polymers; micromechanisms of elastic and plastic deformations, fracture, and fatigue of polymers and composites. (Cross-listed with SE 251B.)\u00a0", + "name": "MATS 261B", + "prereqs": [], + "title": "Mechanical Behavior of Polymers and Composites (4)" + }, + "MATS 295": { + "dept": "MATS", + "description": "Group discussion of research activities and progress of group members. ", + "name": "MATS 295", + "prereqs": [], + "title": "Research Conference (2)" + }, + "MATS 296": { + "dept": "MATS", + "description": "", + "name": "MATS 296", + "prereqs": [], + "title": "Independent Study (4)" + }, + "MATS 299": { + "dept": "MATS", + "description": "Subject to the approval of a faculty adviser, students may choose courses offered by departments participating in the Materials Science and Engineering Program. Please see the graduate coordinator for more information.\t\t(S/U grades only.)", + "name": "MATS 299", + "prereqs": [], + "title": "Graduate Research (1\u201312)" + }, + "MBC 258": { + "dept": "MBC", + "description": "Topics/Marine Biology\u2013MAS-MBC Forum (1)", + "name": "MBC 258", + "prereqs": [], + "title": "Special" + }, + "MBC 296": { + "dept": "MBC", + "description": "Building on the knowledge and experience gained from the entire curriculum of the master\u2019s in Marine Biodiversity and Conservation (MAS-MBC) program, students will design and present a specific marine conservation project. ", + "name": "MBC 296", + "prereqs": [ + "MBC 296", + "SIOB 286" + ], + "title": "Capstone Independent Study Project (6)" + }, + "MCWP 125": { + "dept": "MCWP", + "description": "An advanced course in argumentation and analysis, with particular attention both to constructing arguments and analyzing the logic and rhetoric of others\u2019 arguments. Students will engage in close reading of texts, weekly writing and revision, and individual conferences. A course specially designed for and required of transfer students who enter Muir College under the aegis of TAG or IGETC. ", + "name": "MCWP 125", + "prereqs": [], + "title": "Argument and Analysis (4)" + }, + "MCWP 40": { + "dept": "MCWP", + "description": "First course of sequence in university reading and writing which satisfies the Muir College graduation requirement in writing. Required of all Muir College first-year students and of transfer students who have not completed a comparable course elsewhere. MCWP 40 introduces students to the basic elements of argument and analysis. Students engage in close reading of texts, weekly writing and revision, and individual conferences. Course must be taken for a letter grade. Those who need additional work to prepare for MCWP 50 will be given a grade of IP and will be required to take MCWP 41. ", + "name": "MCWP 40", + "prereqs": [], + "title": "Critical Writing (4)" + }, + "MCWP 50": { + "dept": "MCWP", + "description": "Second course of sequence in reading and writing which satisfies the Muir College graduation requirement in writing. Required of all Muir College first-year students and of transfer students. MCWP 50 focuses on advanced skills of argument and analysis. Students engage in close reading of texts, weekly writing and revision, and individual conferences. Course must be taken for a letter grade. ", + "name": "MCWP 50", + "prereqs": [ + "MCWP 40" + ], + "title": "Critical Writing (4)" + }, + "MDE 209": { + "dept": "MDE", + "description": "Introduction to the basic definitions of continuum mechanics and their mathematical formulation at the graduate level with applications to problems in medicine and biology. ", + "name": "MDE 209", + "prereqs": [], + "title": "Mechanics and Transport Phenomena for Biomedical Device Design (4)" + }, + "MDE 210": { + "dept": "MDE", + "description": "This course is a seminar series with invited clinician speakers intended to address needs and opportunities for meaningful application of engineering principles in clinical practice, with emphasis on next generation medical devices. ", + "name": "MDE 210", + "prereqs": [], + "title": "Medical Devices: Clinical Perspectives (4)" + }, + "MDE 225A": { + "dept": "MDE", + "description": "First in a two-quarter series focusing on early stages of a business plan. Biotech is a special breed of business, especially in the start-up and early phases. You will study and analyze (1) start-up proposals, (2) the genesis of the biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies. Students may not receive credit for both MDE 225 and MDE 225A. ", + "name": "MDE 225A", + "prereqs": [], + "title": "Biobusiness: Small to Large I (2)" + }, + "MDE 225B": { + "dept": "MDE", + "description": "Second in a two-quarter series focusing on finalizing and completing a business plan. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of the biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies to finalize your business plan. Students may not receive credit for both MDE 225 and MDE 225B. ", + "name": "MDE 225B", + "prereqs": [ + "MDE 225A" + ], + "title": "Biobusiness: Small to Large II (2)" + }, + "MDE 230": { + "dept": "MDE", + "description": "A general survey of modern high-throughput instruments used for imaging and analyzing structure-function relationships at the molecular and cellular levels. An overview of potential human genomic and systems approaches for designing and validating medical device safety and performance. ", + "name": "MDE 230", + "prereqs": [], + "title": "Life Sciences and Technologies (4)" + }, + "MDE 231A": { + "dept": "MDE", + "description": "A basic introduction to human physiology and anatomy form and function as it relates to clinical perspectives on patient needs. Students may not receive credit for both MDE 231A and MDE 231. ", + "name": "MDE 231A", + "prereqs": [], + "title": "Fundamentals of Physiology and Anatomy I (2)" + }, + "MDE 231B": { + "dept": "MDE", + "description": "Case studies of integrative physiology to understand how this information is used in designing combination medical devices and instruments for diagnosis or research. Students may not receive credit for both MDE 231A and MDE 231. ", + "name": "MDE 231B", + "prereqs": [ + "MDE 231A" + ], + "title": "Fundamentals of Physiology and Anatomy II (2)" + }, + "MDE 240": { + "dept": "MDE", + "description": "This course gives an introduction to digital signal processing (DSP) techniques and data-based parameter estimation (DBPE) techniques for the measurement, filtering, and analysis of experimental data obtained with embedded systems in medical devices. ", + "name": "MDE 240", + "prereqs": [], + "title": "Embedded System Design (4)" + }, + "MDE 260A": { + "dept": "MDE", + "description": "Introduction of project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. ", + "name": "MDE 260A", + "prereqs": [], + "title": "Design and Implementation of Medical Device Technology I (1)" + }, + "MDE 260B": { + "dept": "MDE", + "description": "Second of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will begin to design a medical device and an engineering strategy. ", + "name": "MDE 260B", + "prereqs": [ + "MDE 260A" + ], + "title": "Design and Implementation of Medical Device Technology II (2)" + }, + "MDE 260C": { + "dept": "MDE", + "description": "Third of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will complete and implement their medical device design and engineering strategy. ", + "name": "MDE 260C", + "prereqs": [ + "MDE 260B" + ], + "title": "Design and Implementation of Medical Device Technology III (1)" + }, + "MDE 266": { + "dept": "MDE", + "description": "This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues, and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "name": "MDE 266", + "prereqs": [], + "title": "Biomaterials for Medical Device Design (4)" + }, + "MDE 292": { + "dept": "MDE", + "description": "Computer-aided analysis and design with applications to medical devices. Solid model representation, finite element analysis for strength and deformation, material selection, kinematics, statistical analysis, and visualization of analytical results. Software packages used will include 3D CAD, FEA solvers, and student generated code. Analytical methods will be applied to case studies of medical devices. ", + "name": "MDE 292", + "prereqs": [], + "title": "Computer Aided Design of Medical Devices (4)" + }, + "MGT 103": { + "dept": "MGT", + "description": "Defining markets for products and services, segmenting these markets, and targeting critical customers within segments. Strategies to position products and services within segments. The critical role of pricing as well as market research, product management, promotion, selling, and customer support. ", + "name": "MGT 103", + "prereqs": [], + "title": "Product Marketing and Management (4)" + }, + "MGT 105": { + "dept": "MGT", + "description": "Principles and decisions to be considered in overall communications and promotion strategy for traditional channels and emerging social networks. Decisions on promotional mix, ad design, implementation and evaluation for establishing brand equity, measure brand performance and sustaining brand equity. ", + "name": "MGT 105", + "prereqs": [ + "MGT 103" + ], + "title": "Product Promotion and Brand Management (4)" + }, + "MGT 106": { + "dept": "MGT", + "description": "Examines the sales function from strategic competitive importance to the firm to required direct sales skills of individual salespersons. Major subject areas covered are: the sales process, recruitment and training, organization and focus, \u201cterritories,\u201d evaluation and compensation. ", + "name": "MGT 106", + "prereqs": [ + "MGT 103" + ], + "title": "Sales and Sales Management (4)" + }, + "MGT 112": { + "dept": "MGT", + "description": "Will examine the advantages and complications of the multinational organization with emphasis on translating marketing, financing, and operating plans in light of geographical, cultural, and legal differences across the globe. Will also cover organizational considerations for transglobal management. ", + "name": "MGT 112", + "prereqs": [ + "MGT 103", + "MGT 181", + "MGT 187" + ], + "title": "Global Business Strategy (4)" + }, + "MGT 117": { + "dept": "MGT", + "description": "Focuses on elements of business law that are essential for the basic management of business operations. Topics include the law of contracts, sales, partnership, corporations, bankruptcy, and securities. Students will also gain knowledge of intellectual property law and dispute resolution. ", + "name": "MGT 117", + "prereqs": [], + "title": "Business Law (4)" + }, + "MGT 119": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in business and addresses the new frontiers in the industry. Topics may include intellectual property, consumer behavior, market research, analytics, and spreadsheet modeling, etc. May be taken for credit three times. Instructional methods include face-to-face lecture, case presentation, assigned reading, and group discussion. ", + "name": "MGT 119", + "prereqs": [], + "title": "Topics in Business (4)" + }, + "MGT 12": { + "dept": "MGT", + "description": "Course examines management of personal financial assets: savings and checking accounts, fixed assets, and credit cards. Budgeting, loan applications, payment terms, and statement reconciliation will be covered as will credit ratings, cash management, compound interest, bank operations, and contract obligations.", + "name": "MGT 12", + "prereqs": [], + "title": "Personal Financial Management (4)" + }, + "MGT 121A": { + "dept": "MGT", + "description": "Consider new project concepts. Discern market needs, competitive environment, and determine \u201cgo to market\u201d strategy. Research potential markets, customers, partners, and competitors. Consider price versus attributes, alternative distribution channels, gaining unfair advantage. Examine the need and structure of a start-up team. ", + "name": "MGT 121A", + "prereqs": [], + "title": "Innovation to Market A (4)" + }, + "MGT 121B": { + "dept": "MGT", + "description": "Build a business plan. Establish intellectual property rights. Provide financial projections and determine financing needs. Explore investment sourcing, business valuation, and harvesting opportunities. Determine operational plans and key employee requirements. ", + "name": "MGT 121B", + "prereqs": [ + "MGT 121A", + "MGT 181", + "MGT 111", + "MGT 187" + ], + "title": "Innovation to Market B (4)" + }, + "MGT 127": { + "dept": "MGT", + "description": "Outlines frameworks and tools for formulating strategy to manage technology and think strategically in fast-moving industries (e.g., high tech, biotech, and clean tech). Students will gain insights into technology, strategy, and markets, especially how disruptive technologies create opportunities for startups and transform established firms, and how technology firms achieve competitive advantage through tech-enabled innovations. Illustrated by case studies on cutting-edge startups industry leaders. ", + "name": "MGT 127", + "prereqs": [], + "title": "Innovation and Technology Strategy (4)" + }, + "MGT 128": { + "dept": "MGT", + "description": "The service sector is the fastest-growing sector of the economy. This course will help students prepare for the transition to a service economy and identify career and entrepreneurial opportunities in the service industry. Students will learn how services differ from goods and gain understanding of the innovation process in the service industry. The course will also address trends of services getting systematized, industrialized, and professionalized for greater productivity and scalability. ", + "name": "MGT 128", + "prereqs": [], + "title": "Innovation in Service Enterprises (4)" + }, + "MGT 129": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in entrepreneurship. Examples of course topics include (but are not limited to): venture capital funding process, entrepreneurial business development and marketing, workplace climate and morale, and developing a capable workforce. Instructional methods include face-to-face lecture, case presentation, assigned reading and group discussion. May be taken for credit three times. ", + "name": "MGT 129", + "prereqs": [], + "title": "Topics in Entrepreneurship (2)" + }, + "MGT 131A": { + "dept": "MGT", + "description": "Preparation and interpretation", + "name": "MGT 131A", + "prereqs": [], + "title": "Intermediate Accounting A (4)" + }, + "MGT 131B": { + "dept": "MGT", + "description": "Preparation and interpretation", + "name": "MGT 131B", + "prereqs": [], + "title": "Intermediate Accounting B (4)" + }, + "MGT 132": { + "dept": "MGT", + "description": "Theory and practice of the attest", + "name": "MGT 132", + "prereqs": [], + "title": "Auditing (4)" + }, + "MGT 133": { + "dept": "MGT", + "description": "Covers cost accumulation and analysis, for both manufacturing", + "name": "MGT 133", + "prereqs": [], + "title": "Advanced Cost Accounting (4)" + }, + "MGT 134": { + "dept": "MGT", + "description": "Covers theory and practical application of federal income", + "name": "MGT 134", + "prereqs": [], + "title": "Federal Taxation\u2014Individuals (4)" + }, + "MGT 135": { + "dept": "MGT", + "description": "Covers the theory and practical", + "name": "MGT 135", + "prereqs": [], + "title": "Federal Taxation\u2014Companies (4)" + }, + "MGT 136": { + "dept": "MGT", + "description": "Accounting (4)", + "name": "MGT 136", + "prereqs": [], + "title": "Advanced" + }, + "MGT 137": { + "dept": "MGT", + "description": "Examines tools and techniques to analyze a firm\u2019s financial position and performance. This course combines both accounting and finance in a practical framework for debt and equity valuation methods from both a conceptual and practical framework. ", + "name": "MGT 137", + "prereqs": [ + "MGT 5", + "MGT 4", + "ECON 4" + ], + "title": "Financial Statement Analysis (4)" + }, + "MGT 138": { + "dept": "MGT", + "description": "This course provides an introduction to the role and use of models and modeling in managerial decision-making. Students will gain hands-on experience in evaluating accounting data using Microsoft Excel. Content includes creating data boxes in financial accounting, using multiple sheets with formulas, preparing professional quality financial reports, and creating graphs to interpret business results. Students will also explore the utility of QuickBooks and the functionality for small businesses. ", + "name": "MGT 138", + "prereqs": [], + "title": "Information Technology and Accounting (4)" + }, + "MGT 139": { + "dept": "MGT", + "description": "Develop an understanding of transaction cycles (e.g., sales order and purchase order processing) with a focus on processing steps, internal controls, and data used. Gain hands-on experience developing flowcharts, processing transactions in a manual accounting information system, and analyzing transaction data using Microsoft Excel and other tools. ", + "name": "MGT 139", + "prereqs": [ + "MGT 131B" + ], + "title": "Accounting Information Systems (4)" + }, + "MGT 143": { + "dept": "MGT", + "description": "Course covers key forensic accounting concepts including fraudulent financial reporting, money laundering, business valuation, and litigation support. Learning objectives are the application of analytical accounting and communication skills in identifying and presenting financial issues in both criminal or civil litigation. ", + "name": "MGT 143", + "prereqs": [ + "MGT 131B" + ], + "title": "Forensic Accounting (4)" + }, + "MGT 146": { + "dept": "MGT", + "description": "This course will focus on three major components: 1) what matters (the purpose of ethics in the accounting profession); 2) why ethics matter (the reasons, skills, and abilities that make a difference); and 3) how a professional \u201cwalks the walk.\u201d The course provides students with the opportunity to gain knowledge, awareness, and recognition of ethical terms, theories, codes, etc. Students will be given the opportunity to practice making choices and exercise professional judgment. ", + "name": "MGT 146", + "prereqs": [ + "MGT 132" + ], + "title": "Ethics in Accounting (4)" + }, + "MGT 147": { + "dept": "MGT", + "description": "Addresses issues faced in government and not-for-profit accounting. Students will gain insight into how and why these issues may have been resolved either similarly or differently from the for-profit business sector. Focus will be placed on how revenue and expense recognition, asset and liability valuation, the scope of the reporting entity, reporting cash flows, etc., differ in comparison to for-profit business accounting. ", + "name": "MGT 147", + "prereqs": [ + "MGT 131B" + ], + "title": "Not-For-Profit and Government Accounting (4)" + }, + "MGT 148": { + "dept": "MGT", + "description": "This course helps students understand the complexities involved in international deals. Examines current financial reporting practices for business entities engaged in international activities. Focuses on policy issues such as foreign currency translation, global inflation, transfer pricing, complying with reporting requirements, taxation, and international accounting and auditing standards. ", + "name": "MGT 148", + "prereqs": [ + "MGT 137", + "MGT 136" + ], + "title": "Mergers and Acquisitions (4)" + }, + "MGT 149": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in accounting. Examples of course topics include (but are not limited to): corporate valuation and forecasting, global taxation and business strategy, current issues in the practice and regulation of auditing. May be taken for credit two times for a maximum of eight credits if the topics are substantially different. ", + "name": "MGT 149", + "prereqs": [ + "MGT 131B" + ], + "title": "Topics in Accounting (4)" + }, + "MGT 153": { + "dept": "MGT", + "description": "This course is designed to help a business manager use data to make good decisions in complex decision-making situations. Students will gain foundation knowledge of several analytical and econometric methods including decision analysis, probability theory, statistical inference, regression analysis, and hypothesis testing. Students will also learn how to use available computing technology to arrive at optimal solutions. ", + "name": "MGT 153", + "prereqs": [ + "MATH 183", + "MATH 20A", + "MGT 3", + "BENG 100", + "MATH 181A", + "MAE 108", + "ECON 120A", + "MATH 180A", + "MATH 10A", + "MATH 11", + "MATH 31AH", + "MATH 18", + "COGS 14B", + "SIO 187", + "ECE 109", + "PSYC 60", + "BIEB 100", + "MATH 186" + ], + "title": "Business Analytics (4)" + }, + "MGT 157": { + "dept": "MGT", + "description": "Residential and commercial mortgage-backed securities markets and the market for structured real estate debt; the estimation of prices, yields, and various measures of investment performance; creating and structuring security issues; legal, regulatory, and institutional issues; derivative products (CDOs, CDSs, options, futures, etc.); and current political, economic, and policy issues. ", + "name": "MGT 157", + "prereqs": [ + "MGT 181" + ], + "title": "Real Estate Securitization (4)" + }, + "MGT 158": { + "dept": "MGT", + "description": "Introduction to the emerging real estate tech sector; newly available datasets and technologies are transforming the real estate sector; introduction of quantitative methods for analyzing real estate and urban trends; utilizing large datasets and software in making optimal decisions from the perspective of buyers, sellers, real estate agents and brokers, developers, and regulators. ", + "name": "MGT 158", + "prereqs": [], + "title": "Real Estate and the Tech Sector (4)" + }, + "MGT 16": { + "dept": "MGT", + "description": "Course examines the ethical foundation for choices individuals make every day both in the workplace and in their private lives, the connection between economic and ethical obligations with examples related to privacy, reporting, whistle-blowing, workplace relationships, confidentiality, and intellectual property.", + "name": "MGT 16", + "prereqs": [], + "title": "Personal Ethics at Work (4)" + }, + "MGT 162": { + "dept": "MGT", + "description": "The ability to negotiate effectively is a critical skill for business professionals. Students will develop a systematic and insightful approach to negotiation. The course provides an introduction to strategic thinking and the basic concepts, tactics, and cognitive aspects of negotiation. Interactive negotiation exercises are used to isolate and emphasize specific analytic points and essential skills. ", + "name": "MGT 162", + "prereqs": [], + "title": "Negotiation (2)" + }, + "MGT 164": { + "dept": "MGT", + "description": "Students will study alternative organizational structures, their stakeholders and corporate cultures, and their use in meeting strategic enterprise priorities facing a company. This course provides students with insights into motivational factors, communications networks, organizational cultures, and alternative leadership styles. The concept of change management and its challenges is also studied along with power and influence. Course previously listed as: Organizational Leadership. ", + "name": "MGT 164", + "prereqs": [], + "title": "Business and Organizational Leadership (4)" + }, + "MGT 166": { + "dept": "MGT", + "description": "Ethics and Corporate Responsibility (4)", + "name": "MGT 166", + "prereqs": [], + "title": "Business" + }, + "MGT 167": { + "dept": "MGT", + "description": "Social entrepreneurs create innovative solutions to solve challenging social and environmental issues affecting the world around them. In this course, students will learn how to apply entrepreneurial business and innovative skills to effectively tackle global issues impacting society such as environmental degradation, rural health care availability, educational improvements in economically disadvantaged regions of the world, famine in an era of obesity, and clean water development. ", + "name": "MGT 167", + "prereqs": [], + "title": "Social Entrepreneurship (4)" + }, + "MGT 171": { + "dept": "MGT", + "description": "Operations management (OM) involves the systematic design, execution, and improvement of business processes, projects, and partner relationships. This course goes beyond cost minimization and addresses issues that firms large and small must confront in their journey toward sustained scalability, growth, and profitability. Also examines human factors such as psychological contract, team management, empowerment, employee-initiated process improvements, morale, motivation, rewards, and incentives. ", + "name": "MGT 171", + "prereqs": [], + "title": "Operations Management (4)" + }, + "MGT 172": { + "dept": "MGT", + "description": "Addresses effective practices for management of business projects. Includes both project management processes\u2014scheduling, milestone setting, resource allocation, budgeting, risk mitigation\u2014and human capital management\u2014communication, teamwork, leadership. Also considers requirements for effectively working across functional and organizational boundaries. ", + "name": "MGT 172", + "prereqs": [], + "title": "Business Project Management (4)" + }, + "MGT 173": { + "dept": "MGT", + "description": "This course covers efficient techniques for managing health services projects, including both the technical aspects of project management as well as the human-capital management issues associated with blending administrative and technical staff with health-care professionals. Topics include scheduling methods, milestone setting, governmental regulations, resource allocation, interpersonal skills, and performing research and development projects\u2014all with a health services focus. ", + "name": "MGT 173", + "prereqs": [], + "title": "Project Management: Health Services (4)" + }, + "MGT 175": { + "dept": "MGT", + "description": "Supply chain management involves the flows of materials and information that contribute value to a product, from the source of raw materials to end customers. This course explains how supply chains work and describes the major challenges in managing an efficient supply chain. Covers various strategic and tactical supply chain issues such as distribution strategy, information sharing strategy, outsourcing, procurement (including e-markets), product design, virtual integration, and risk management. Credit is not allowed for both MGT 174 and MGT 175. ", + "name": "MGT 175", + "prereqs": [], + "title": "Supply Chain Management (4)" + }, + "MGT 18": { + "dept": "MGT", + "description": "The modern workplace includes people different in culture, gender, age, language, religion, education, and more. Students will learn why diverse teams make better decisions and are often integral to the success of organizations. Topics include challenges of diversity, and the impact of emotional, social, and cultural intelligence on team success. Content will include significant attention to the experiences of Asian Americans and African Americans as members and leaders of such diverse teams.", + "name": "MGT 18", + "prereqs": [], + "title": "Managing Diverse Teams (4)" + }, + "MGT 181": { + "dept": "MGT", + "description": "Will cover debt and equity financing of the enterprise, the role of commercial banks, venture firms, and investment banks; along with enterprise valuation, cash flow management, capital expenditure decisions, return on investment, economic value add, and foreign currency translation. ", + "name": "MGT 181", + "prereqs": [ + "MATH 20A", + "MGT 3", + "MGT 5", + "MGT 4", + "MATH 10A", + "MGT 45", + "ECON 4" + ], + "title": "Enterprise Finance (4)" + }, + "MGT 183": { + "dept": "MGT", + "description": "Examines financial theory and empirical evidence useful for making investment decisions. Portfolio theory, equilibrium models, and market efficiency are examined for stock securities and fixed income instruments. Risk adjusted ROIs for capital investments\u2019 impact on stock prices and free options will also be studied. ", + "name": "MGT 183", + "prereqs": [ + "MGT 181", + "MGT 187", + "ECON 173B" + ], + "title": "Financial Investments (4)" + }, + "MGT 184": { + "dept": "MGT", + "description": "Focuses on role of financial institutions, implications for firm financing and valuation as well as the Federal Reserve, financial regulation, the money supply process, and monetary policy. Mechanisms through which monetary policy affects businesses and credit channels will be covered. ", + "name": "MGT 184", + "prereqs": [ + "MGT 181", + "MGT 187", + "ECON 173B" + ], + "title": "Money and Banking (4)" + }, + "MGT 185": { + "dept": "MGT", + "description": "This course provides students with an overview of the investment banking industry, including IPOs, equity offerings, debt offerings, valuation, mergers and acquisition, private equity, asset securitization, prime brokerage, sales and trading, and market making. Emphasis of the class will be on traditional corporate finance, which includes equity and debt offerings as well as mergers and acquisitions. ", + "name": "MGT 185", + "prereqs": [ + "MGT 181", + "MGT 187" + ], + "title": "Investment Banking (4)" + }, + "MGT 187": { + "dept": "MGT", + "description": "Taking a global perspective, this course examines how innovation is funded and the financial tools necessary over the life cycle of a new venture\u2014development, growth, maturity, and exit. Students will learn to perform financial analysis to determine the feasibility of financing new, transformed, and growing ventures, whether foreign or domestic. The course will also cover term sheets, valuation methods, and the role of private equity investors\u2014angels, VCs, and vendors. ", + "name": "MGT 187", + "prereqs": [], + "title": "New Venture Finance (4)" + }, + "MGT 198": { + "dept": "MGT", + "description": "A small group undertaking, on a topic or in a field not included in the regular curriculum, by special arrangement with a faculty member. ", + "name": "MGT 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "MGT 199": { + "dept": "MGT", + "description": "Directed individual study", + "name": "MGT 199", + "prereqs": [], + "title": "Directed Independent Study (4)" + }, + "MGT 208A": { + "dept": "MGT", + "description": "This is the first course in a three-course sequence that introduces", + "name": "MGT 208A", + "prereqs": [], + "title": "Introduction to Management Research A (4)" + }, + "MGT 208B": { + "dept": "MGT", + "description": "Sequence introduces students to various", + "name": "MGT 208B", + "prereqs": [], + "title": "Introduction to Management Research B (4)" + }, + "MGT 208C": { + "dept": "MGT", + "description": "Sequence introduces students to various", + "name": "MGT 208C", + "prereqs": [], + "title": "Introduction to Management Research C (4)" + }, + "MGT 225": { + "dept": "MGT", + "description": "Introduction to formal and predictive approaches to incorporating", + "name": "MGT 225", + "prereqs": [], + "title": "Behavioral Economics (4)" + }, + "MGT 226": { + "dept": "MGT", + "description": "This course provides the theoretical underpinnings", + "name": "MGT 226", + "prereqs": [], + "title": "Theory of Industrial Organization and Business Strategy (4)" + }, + "MGT 245": { + "dept": "MGT", + "description": "This course addresses classical operations management models in inventory", + "name": "MGT 245", + "prereqs": [], + "title": "Theory of Technology and Operations Management (4)" + }, + "MGT 246": { + "dept": "MGT", + "description": "This course covers the management of technology and innovation emphasizing", + "name": "MGT 246", + "prereqs": [], + "title": "Research in Management and Technology Strategy (4)" + }, + "MGT 255": { + "dept": "MGT", + "description": "This course introduces students to theories and research in the field", + "name": "MGT 255", + "prereqs": [], + "title": "Psychology and Decision Making (4)" + }, + "MGT 256": { + "dept": "MGT", + "description": "This course covers concepts and theories useful in understanding and", + "name": "MGT 256", + "prereqs": [], + "title": "Consumer Behavior Research (4)" + }, + "MGT 257": { + "dept": "MGT", + "description": "Theories/research about behavior of employees/managers in organizations,", + "name": "MGT 257", + "prereqs": [], + "title": "Behavior in Organizations (4)" + }, + "MGT 285": { + "dept": "MGT", + "description": "This course covers the basic concepts and important models used in", + "name": "MGT 285", + "prereqs": [], + "title": "Financial Economics (4)" + }, + "MGT 286": { + "dept": "MGT", + "description": "This course covers most powerful tools in finance, i.e., which are", + "name": "MGT 286", + "prereqs": [], + "title": "Continuous-Time Finance (4)" + }, + "MGT 287": { + "dept": "MGT", + "description": "This course covers econometric methods including the linear regression", + "name": "MGT 287", + "prereqs": [], + "title": "Empirical Finance (4)" + }, + "MGT 293A": { + "dept": "MGT", + "description": "This course will require the student to identify and critique the", + "name": "MGT 293A", + "prereqs": [], + "title": "Literature Review and Critique Paper (4)" + }, + "MGT 293B": { + "dept": "MGT", + "description": "In this course, the student will continue work on the literature review", + "name": "MGT 293B", + "prereqs": [], + "title": "Literature Review and Critique Presentation (4)" + }, + "MGT 293C": { + "dept": "MGT", + "description": "In this course, the student will work on identifying and developing", + "name": "MGT 293C", + "prereqs": [], + "title": "Original Research Paper (4)" + }, + "MGT 293D": { + "dept": "MGT", + "description": "In this course, the student will continue work on the original research", + "name": "MGT 293D", + "prereqs": [], + "title": "Original Research Presentation (4)" + }, + "MGT 296": { + "dept": "MGT", + "description": "This course is taken by students actively working on their dissertation", + "name": "MGT 296", + "prereqs": [], + "title": "Dissertation (4\u201312)" + }, + "MGT 299": { + "dept": "MGT", + "description": "Each student who has not advanced to candidacy by June of the third year must enroll in and complete MGT 299 during the fall, winter, and spring quarters of the fourth year. ", + "name": "MGT 299", + "prereqs": [], + "title": "Advanced Field Advising (4)" + }, + "MGT 3": { + "dept": "MGT", + "description": "Introduction to techniques to develop/analyze data for informed tactical and strategic management decisions: statistical inference, probability, regression analysis, and optimization. Using these analytic approaches, theory-based formulas, and spreadsheets, students explore managerial applications across all areas of business activity.", + "name": "MGT 3", + "prereqs": [], + "title": "Quantitative Methods in Business (4)" + }, + "MGT 4": { + "dept": "MGT", + "description": "Cross-listed with Econ 4. Recording, organizing, and communicating", + "name": "MGT 4", + "prereqs": [], + "title": "Financial Accounting (4)" + }, + "MGT 401": { + "dept": "MGT", + "description": "The Professional Seminar presents up-to-date research, professional skills development, and experts and business leaders as speakers. Topics may vary by term. S/U grades only. May be taken for credit eight times. ", + "name": "MGT 401", + "prereqs": [], + "title": "Professional Seminar (1)" + }, + "MGT 402": { + "dept": "MGT", + "description": "Course focuses on various management communications platforms. Students will learn strategies to establish competence, build trust, motivate and inspire, and achieve commitment to action. Participants will develop, present, and receive intensive peer feedback for both written communications and presentations. Letter grades only. ", + "name": "MGT 402", + "prereqs": [], + "title": "Management Communications (1)" + }, + "MGT 403": { + "dept": "MGT", + "description": "Through lecture and online delivery, students will be introduced to key techniques for using data to make informed management decisions. Covers probability, statistics, decision analysis, and optimization techniques. Emphasizes managerial applications in such areas as operations management, marketing, and finance. Letter grades only. ", + "name": "MGT 403", + "prereqs": [], + "title": "Quantitative Analysis (4)" + }, + "MGT 404": { + "dept": "MGT", + "description": "Through lecture and online delivery, students will be introduced to the basic concepts and methods used in financial statements. The course highlights the linkages between accounting information and management planning, decision making, and control. Letter grades only. ", + "name": "MGT 404", + "prereqs": [], + "title": "Accounting (4)" + }, + "MGT 405": { + "dept": "MGT", + "description": "Through lecture and online delivery, this course will introduce students to the tools and concepts of microeconomics to analyze decision problems within technology driven firms through the coverage of microeconomic concepts relevant to managerial decision making. Letter grades only. ", + "name": "MGT 405", + "prereqs": [], + "title": "Managerial Economics (4)" + }, + "MGT 406": { + "dept": "MGT", + "description": "Through lecture and online delivery, introduces principles of effective teamwork and leadership and of strategic managerial communication. Provides an introduction to case study and to ethical issues confronting managers in technology or science-driven firms. Develops managerial communication skills. Letter grades only. ", + "name": "MGT 406", + "prereqs": [], + "title": "Leadership Skills, Values, and Teamwork in Technology Firms (4)" + }, + "MGT 407": { + "dept": "MGT", + "description": "By taking an analytical approach to the study of marketing problems, this course provides an understanding of customers and competitors as a basis for developing, pricing, promoting, and distributing goods and services that satisfy customer and organizational objectives. Letter grades only. ", + "name": "MGT 407", + "prereqs": [], + "title": "Marketing (4)" + }, + "MGT 408": { + "dept": "MGT", + "description": "Through lecture and online delivery, this course will focus on basic business financial concepts with particular attention to challenges of finance in start-up and small- and medium-sized enterprises. Letter grades only. ", + "name": "MGT 408", + "prereqs": [], + "title": "Finance (4)" + }, + "MGT 409": { + "dept": "MGT", + "description": "Strategy (4)", + "name": "MGT 409", + "prereqs": [], + "title": "Organizational" + }, + "MGT 410": { + "dept": "MGT", + "description": "Through lecture and online delivery, this course explores the strategic management of technology-driven firms focusing on the analytical tools and techniques that support strategy formulation and the related managerial skills and decision processes that foster strategy implementation. Letter grades only. ", + "name": "MGT 410", + "prereqs": [], + "title": "Strategy (4)" + }, + "MGT 412": { + "dept": "MGT", + "description": "Market: Opportunity and Business Model Analysis (4)", + "name": "MGT 412", + "prereqs": [], + "title": "Lab to" + }, + "MGT 413": { + "dept": "MGT", + "description": "Information Systems, and Data Analysis (4)", + "name": "MGT 413", + "prereqs": [], + "title": "Operations," + }, + "MGT 414A": { + "dept": "MGT", + "description": "Through lecture, provides broad coverage of leading edge developments in technical and scientific research, with an eye to their potential applicability and value in business. Provides basis for project-based Lab to Market Workshop II. An IP grade will be awarded at the end of the quarter. Final grade will not be given until the completion of MGT 414B. Letter grades only. ", + "name": "MGT 414A", + "prereqs": [], + "title": "Lab to Market Workshop I (4)" + }, + "MGT 414B": { + "dept": "MGT", + "description": "Project-based course, requiring identification and completion of major project assessing potential business value of emerging or potential technology or science. Students work individually or in teams. Periodic class meetings include presentation of interim and final reports. Letter grades only. ", + "name": "MGT 414B", + "prereqs": [ + "MGT 414A" + ], + "title": "Lab to Market Workshop II (4)" + }, + "MGT 416": { + "dept": "MGT", + "description": "Review and discussion of current research and literature on selected topics in business and management. Research paper and presentation required. May be taken for credit three times. Students may not earn credit for both MGT 416 and MGT 252 if the courses have the same course subtitle. They are course equivalents. ", + "name": "MGT 416", + "prereqs": [], + "title": "Readings in Management (1 or 2)" + }, + "MGT 417": { + "dept": "MGT", + "description": "Explores current issues in business law, emphasizing concerns faced by new companies. Students learn how the law regulates and shapes businesses; examine the legal role in business formations, operations, and dissolutions; and gain knowledge of contract and intellectual property law. Letter grades only. Students may not earn credit for both MGT 417 and MGT 212. Also, students may not receive credit for both MGT 417 and MGT 219 with the course subtitle Current Business Law Issues. ", + "name": "MGT 417", + "prereqs": [], + "title": "Current Business Law Issues (4)" + }, + "MGT 419": { + "dept": "MGT", + "description": "Introduces advanced topics in global business, with a regional emphasis. Instructional methods include lectures, case presentations, readings, and discussions. A substantial portion of learning outcomes will be met by visiting businesses in another world region, observing operations, and interviewing executives. The visit to the foreign region will typically be one to two weeks and may occur outside the normal academic quarter. S/U grades only. May be taken for credit two times. Students may not earn credit for both MGT 419 and MGT 259 if the courses have the same course subtitle. They are course equivalents. ", + "name": "MGT 419", + "prereqs": [], + "title": "Global Business Immersion (2)" + }, + "MGT 420": { + "dept": "MGT", + "description": "Examines methods of conflict resolution needed for effective management in a constantly changing business environment. Applies these tools to the broad spectrum of negotiation problems faced by the manager and professional. Includes simulations, role playing, and cases. Students may not earn credit for both MGT 420 and MGT 260. They are course equivalents. ", + "name": "MGT 420", + "prereqs": [], + "title": "Negotiation (4)" + }, + "MGT 421": { + "dept": "MGT", + "description": "Provides an understanding of relationships among shareholders, managers, and boards. Focuses on the office of the chief executive officer and on the board of directors, including the roles and responsibilities of directors, and the legal, economic, managerial, and psychological issues they confront. Students may not earn credit for both MGT 421 and MGT 211. They are course equivalents. ", + "name": "MGT 421", + "prereqs": [], + "title": "CEO, the Board of Directors, and Corporate Governance (4)" + }, + "MGT 422": { + "dept": "MGT", + "description": "This course focuses on fostering and maintaining creativity in entrepreneurial ventures and in general management more broadly. Reading materials, cases, classroom, and home exercises will help students understand and be able to use creativity in their own working lives. Students may not earn credit for both MGT 422 and MGT 222. They are course equivalents. ", + "name": "MGT 422", + "prereqs": [], + "title": "Creativity and Innovation (4)" + }, + "MGT 425": { + "dept": "MGT", + "description": "Builds on core management courses and deals with identifying and assessing new technological and product opportunities. Assessment methods and frameworks will be introduced for technologies and opportunities. Various business models to profitably address the market opportunities will also be discussed. ", + "name": "MGT 425", + "prereqs": [], + "title": "Opportunity and Business Model Analysis (2)" + }, + "MGT 426": { + "dept": "MGT", + "description": "Students will learn to develop a workforce that performs at the highest level through strategies and practices that recruit productive people, build commitment, foster innovation, and inspire and empower motivated employees to deliver results. Letter grades only. Students may not earn credit for both MGT 426 and MGT 262. Students may not receive credit for both MGT 426 and MGT 269 with the course subtitle Creating a High-Performing Workplace. ", + "name": "MGT 426", + "prereqs": [], + "title": "Creating a High-Performing Workplace (2)" + }, + "MGT 427": { + "dept": "MGT", + "description": "Provides practical techniques to help structure decision problems and analyze them quantitatively. Techniques help thinking clearly about objectives, alternatives, consequences, and uncertainties, and enable logical judgments with other types of information. Letter grades only. Students may not earn credit for both MGT 427 and MGT 240. They are course equivalents. ", + "name": "MGT 427", + "prereqs": [], + "title": "Decision Analysis (4)" + }, + "MGT 429": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in corporate governance. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 429 and MGT 219 if courses have same course subtitle. They are course equivalents. ", + "name": "MGT 429", + "prereqs": [], + "title": "Topics in Corporate Governance (2 or 4)" + }, + "MGT 430": { + "dept": "MGT", + "description": "Provides a business overview of the life science industry, its major market segments, financial structure, and financing strategies. Develops an understanding of major industry issues and strategies, including business development, financing, partnering and alliances, emerging trends, ethical and policy issues. Students may not earn credit for both MGT 430 and MGT 250. They are course equivalents. ", + "name": "MGT 430", + "prereqs": [], + "title": "Biotechnology Industry, Structure, and Strategy (4)" + }, + "MGT 439": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in management and organizational behavior. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 439 and MGT 269 when they have the same subtitles. ", + "name": "MGT 439", + "prereqs": [], + "title": "Topics in Organizational Behavior (2 or 4)" + }, + "MGT 442": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in management and decision sciences. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 442 and MGT 249 with same course subtitle. They are course equivalents. ", + "name": "MGT 442", + "prereqs": [], + "title": "Topics in Decision Sciences (2 or 4)" + }, + "MGT 443": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in international business. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 443 and MGT 229 when the course subtitles are the same. ", + "name": "MGT 443", + "prereqs": [], + "title": "Topics in International Business (2 or 4)" + }, + "MGT 444": { + "dept": "MGT", + "description": "Advanced topics of special interest in business strategy. Instructional methods include face-to-face lecture sessions and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 444 and MGT 251 when the subtitles are the same. ", + "name": "MGT 444", + "prereqs": [], + "title": "Topics in Business Strategy (2 or 4)" + }, + "MGT 445": { + "dept": "MGT", + "description": "Addresses the complex role of regulation in business innovation. Includes legal issues such as how to structure a business, whether to seek intellectual property protection, when and how to raise capital or formulate exit strategies, how to make employment decisions. ", + "name": "MGT 445", + "prereqs": [], + "title": "Regulation and Innovation (4)" + }, + "MGT 447": { + "dept": "MGT", + "description": "(Cross-listed with SPPS 273, PHAR 210, and BIOM 267). This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ", + "name": "MGT 447", + "prereqs": [], + "title": "Drug Discovery, Development, and Commercialization (3)" + }, + "MGT 449": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in operations. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 449 and MGT 279 when the course subtitles are the same. ", + "name": "MGT 449", + "prereqs": [], + "title": "Topics in Operations and Technology (2 or 4)" + }, + "MGT 45": { + "dept": "MGT", + "description": "Covers the principles, methods and applications of general accounting, cost accounting and investment ROI.\u00a0Development of the three key financial reports and their interrelations, cost identification, product costing, inventory control, operational performance, and investment return calculations are also covered. This course is designed for nonaccounting minors.", + "name": "MGT 45", + "prereqs": [], + "title": "Principles of Accounting (4)" + }, + "MGT 450": { + "dept": "MGT", + "description": "Provides management concepts and tools to enable the more effective design, planning, and control of projects. Includes both the qualitative and quantitative aspects of project management. Students may not earn credit for both MGT 450 and MGT 270. They are course equivalents. ", + "name": "MGT 450", + "prereqs": [], + "title": "Project Management (4)" + }, + "MGT 451": { + "dept": "MGT", + "description": "Outlines tools for formulating and evaluating technology strategy, including an introduction to the economics of technical change, models of technological evolution, and models of organizational dynamics and innovation. Provides an understanding of how technology firms gain and sustain competitive advantage. Students may not earn credit for both MGT 451 and MGT 271. They are course equivalents. ", + "name": "MGT 451", + "prereqs": [], + "title": "Technology and Innovation Strategy (4)" + }, + "MGT 452": { + "dept": "MGT", + "description": "Provides comprehensive analytical coverage of the new product development process, focusing on the basic tools, methods, and organizational structures used in new product development and management. Students may not earn credit for both MGT 452 and MGT 272. They are course equivalents. ", + "name": "MGT 452", + "prereqs": [], + "title": "New Product Development (4)" + }, + "MGT 453": { + "dept": "MGT", + "description": "Describes the systems approach to managing the entire flow of information, materials, and services from raw materials suppliers through factories and warehouses to the end customer, which is the key to productivity and competitiveness of manufacturing and service enterprises. Letter grades only. ", + "name": "MGT 453", + "prereqs": [], + "title": "Supply Chain Management (4)" + }, + "MGT 454": { + "dept": "MGT", + "description": "Introduces how IT will transform health sciences. Highlights how IT and associated disruptive innovations in health-care delivery will enable physicians, patients, and caregivers to cost effectively prevent, diagnose, and monitor health conditions; manage treatment; and facilitate timely communication and intervention. Letter grades only. Students may not earn credit for both MGT 454 and MGT 274. They are course equivalents. ", + "name": "MGT 454", + "prereqs": [], + "title": "Disruptive Technologies for Health Care (4)" + }, + "MGT 459": { + "dept": "MGT", + "description": "Advanced topics in business innovation, delivered by lecture, case presentation, and group discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 459 and MGT 221 if the course has the same course subtitle. They are course equivalents. ", + "name": "MGT 459", + "prereqs": [], + "title": "Topics in Innovation (2 or 4)" + }, + "MGT 463": { + "dept": "MGT", + "description": "This elective engages students in the process of commercializing technology through experiential learning. Students will gain an increased understanding of commercialization, including introducing a new product into the market, customer development, and market selection. Students will be required to incorporate the latest research methods for identifying customers, analyzing markets, and developing strategies for market entry and growth. Lectures and a student group project will be conducted. Students may not earn credit for both MGT 463 and MGT 223. Also, students may not receive credit for both MGT 463 and MGT 221 Topics in Innovation course with the subtitle Projects in Technology Commercialization. ", + "name": "MGT 463", + "prereqs": [], + "title": "Projects in Technology Commercialization (4)" + }, + "MGT 464": { + "dept": "MGT", + "description": "Students will use latest research in management, marketing, finance, strategy, and operations to analyze current business problems posed by real companies and will recommend to senior management strategies that resolve the problem(s) presented in the project. Students may not earn credit for both MGT464 and MGT224. Students may not receive credit for both MGT 224 and MGT 221 Topics in Innovation with the course subtitle Projects in Business Innovation. ", + "name": "MGT 464", + "prereqs": [], + "title": "Projects in Business Innovation (4)" + }, + "MGT 469": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in accounting. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not receive credit for both MGT 239 and MGT 469. ", + "name": "MGT 469", + "prereqs": [], + "title": "Topics in Accounting (2 or 4)" + }, + "MGT 475": { + "dept": "MGT", + "description": "Methods and applications of qualitative and quantitative marketing research to solve substantive marketing problems. Emphasis on integrating problem formulation, research design, questionnaire construction, and sampling to yield the most valuable information, and on the proper use of statistical methods. Students may not earn credit for both MGT 475 and MGT 202. They are course equivalents. ", + "name": "MGT 475", + "prereqs": [], + "title": "Research for Marketing Decisions (4)" + }, + "MGT 476": { + "dept": "MGT", + "description": "Addresses formulation and implementation of marketing strategy, based on an integrative view of competitive brand strategy over the product life cycle. Provides a framework for developing marketing strategies yielding sustainable competitive advantage based on customer, competitor, industry, and environmental analysis. Students may not earn credit for both MGT 476 and MGT 201. They are course equivalents. ", + "name": "MGT 476", + "prereqs": [], + "title": "Marketing Strategy (4)" + }, + "MGT 477": { + "dept": "MGT", + "description": "The course identifies the factors that influence the selection and usage of products and services. Students will be introduced to problems/decisions that include evaluating behavior; understanding the consumers\u2019 decision process, and strategies to create desirable consumer behavior. Students may not earn credit for both MGT 477 and MGT 203. They are course equivalents. ", + "name": "MGT 477", + "prereqs": [], + "title": "Consumer Behavior (4)" + }, + "MGT 478": { + "dept": "MGT", + "description": "This course differentiates decisions/principles considered when developing an overall communications and promotions strategy. Key decisions include the promotional mix, the design, implementation and evaluation of communications strategies and the thinking required to develop a creative strategy. Students may not earn credit for both MGT 478 and MGT 204. They are course equivalents. ", + "name": "MGT 478", + "prereqs": [], + "title": "Marketing Communications (4)" + }, + "MGT 479": { + "dept": "MGT", + "description": "This class covers issues in pricing decisions.\u00a0The main emphasis will be on the data and tools required to make successful profitable pricing decisions.\u00a0Students may not earn credit for both MGT 479 and MGT 205. They are course equivalents. ", + "name": "MGT 479", + "prereqs": [ + "MGT 407" + ], + "title": "Pricing (4)" + }, + "MGT 480": { + "dept": "MGT", + "description": "Offers a pragmatic view into the world of sales, from its strategic importance to the day-to-day creation and management of a sales organization. Students will also have the opportunity to develop and practice their own sales skills. Letter grades only. Students may not earn credit for both MGT 480 and MGT 206. Also, students may not receive credit for MGT 480 and MGT 209 Topics in Marketing with the course subtitle Sales and Sales Management. ", + "name": "MGT 480", + "prereqs": [], + "title": "Sales and Sales Management (4)" + }, + "MGT 489": { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in marketing. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 489 and MGT 209 if the course has the same course subtitle. They are course equivalents. ", + "name": "MGT 489", + "prereqs": [], + "title": "Topics in Marketing (2 or 4)" + }, + "MGT 491": { + "dept": "MGT", + "description": "Examines financial theory and empirical evidence useful for making investment decisions. Topics include: portfolio theory, equilibrium models of security prices, the empirical behavior of security prices, market efficiency, and fixed-income markets and behavioral finance. ", + "name": "MGT 491", + "prereqs": [ + "MGT 408" + ], + "title": "Investments (4)" + }, + "MGT 492": { + "dept": "MGT", + "description": "Explains how to identify, measure, and analyze investment risks associated with interest rates, currency exchange, and equity markets, and acquire techniques to manage and control risk through the use of over-the-counter and exchange-traded derivatives. Letter grades only. ", + "name": "MGT 492", + "prereqs": [], + "title": "Financial Risk Management (4)" + }, + "MGT 495": { + "dept": "MGT", + "description": "Advanced topics in finance. Instructional methods include face-to-face lecture and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 495 and MGT 282 when the course subtitles are the same. ", + "name": "MGT 495", + "prereqs": [], + "title": "Topics in Finance (2 or 4)" + }, + "MGT 496A": { + "dept": "MGT", + "description": "Hands-on experience in venture investing. Direct involvement in all stages of managing Rady Venture Fund, including applicant sourcing, initial analysis, due diligence, investment negotiation, portfolio monitoring. IP grade awarded at end of quarter. Final grade assigned upon completion of MGT 496B. Students may not earn credit for both MGT 496A and MGT 289A. S/U grades only. ", + "name": "MGT 496A", + "prereqs": [], + "title": "Venture Capital Management I (2)" + }, + "MGT 496B": { + "dept": "MGT", + "description": "Provides hands-on experience in venture investing. Direct involvement in all stages of managing the Rady Venture Fund, including sourcing applicants, performing initial analysis, due diligence, investment negotiation, monitoring of the portfolio. Students have substantial input into fund investment decisions. Students may not earn credit for both MGT 496B and MGT 289B. They are course equivalents. S/U grades only. ", + "name": "MGT 496B", + "prereqs": [ + "MGT 496A" + ], + "title": "Venture Capital Management II (2)" + }, + "MGT 497": { + "dept": "MGT", + "description": "Internship with approved business or governmental agency, allowing student to pursue topics raised in the management core and elective courses. S/U grades only. May be taken for credit four times, for a maximum of four units, with instructor consent. Students may not earn credit for both MGT 497 and MGT 297. Internship credit may not be applied to fulfill specific course requirements or to credits required for graduation. ", + "name": "MGT 497", + "prereqs": [], + "title": "Advanced Management Research Practicum (1)" + }, + "MGT 499": { + "dept": "MGT", + "description": "Individual study or research under the direction of a selected faculty member. May be taken for credit twelve times. Students may earn credit for a total of twelve units in MGT 299 and/or MGT 499. ", + "name": "MGT 499", + "prereqs": [], + "title": "Individual Directed Study (1\u20134)" + }, + "MGT 5": { + "dept": "MGT", + "description": "Internal accounting fundamentals, including cost behavior, cost application", + "name": "MGT 5", + "prereqs": [], + "title": "Managerial Accounting (4)" + }, + "MGT 52": { + "dept": "MGT", + "description": "This course introduces students to the psychometric, legal, ethical, and practical considerations of using tests and measurements for evidence-based decision-making in the workplace. Emphasis is given to selection and performance measurements for individual, team, business unit and organization-wide use in marketing, STEM, and operations. Student teams will develop managerial recommendations following company specific research and analysis.", + "name": "MGT 52", + "prereqs": [], + "title": "Test and Measurement in the Workplace (4)" + }, + "MGTA 401": { + "dept": "MGTA", + "description": "Discussion series where domain experts and business leaders present up-to-date research, discuss legal, privacy, and ethical issues, and provide professional skills development. S/U grades only. May be taken for credit two times. ", + "name": "MGTA 401", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Professional Seminar (1)" + }, + "MGTA 451": { + "dept": "MGTA", + "description": "Business analytics projects should strive to create substantial value to an organization by solving impactful business problems. In this class, students will learn to identify business opportunities in the substantive areas of marketing, finance, and operations. ", + "name": "MGTA 451", + "prereqs": [], + "title": "Business Analytics in Marketing, Finance, and Operations (4)" + }, + "MGTA 452": { + "dept": "MGTA", + "description": "This course aims to provide students with an introduction to data analytics in R where the emphasis is more on business \u201cdata\u201d than \u201canalytics.\u201d The emphasis is on collecting, handling, manipulating, and summarizing large data sets. Case studies are used throughout the course. ", + "name": "MGTA 452", + "prereqs": [ + "MGTA 451" + ], + "title": "Collecting and Analyzing Large Data (4)" + }, + "MGTA 453": { + "dept": "MGTA", + "description": "This course is designed to help a business manager to use data to make good decisions in complex decision-making situations. Several analytical and econometric methods will be covered including decision analysis, regression analysis, optimization, and simulation. ", + "name": "MGTA 453", + "prereqs": [ + "MGTA 451" + ], + "title": "Business Analytics (4)" + }, + "MGTA 454": { + "dept": "MGTA", + "description": "Students will pursue their capstone experience as part of a team to solve practical business problems faced by companies. Each team will work as external consultants on a project to create value for a client company. Student may not receive credit for both MGTA 454 and MGTA 454A or MGTA 454B. ", + "name": "MGTA 454", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Business Analytics Capstone Project (4)" + }, + "MGTA 454A": { + "dept": "MGTA", + "description": "Project-based course, in which students apply knowledge and methods acquired in their course work to a specific business analytics problem faced by a company. The project will be comprehensive in nature, allowing students to exhibit their acquired skills. Class meetings will be scheduled where teams will outline project goals, describe the available data and planned analyses, and present initial results. This course is part of a course series. An IP grade will be awarded at the end of the quarter. Final grade will not apply until the completion of MGTA 454B. Students may not receive credit for both MGTA 454A and MGTA 454. ", + "name": "MGTA 454A", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Business Analytics Capstone Project I (2)" + }, + "MGTA 454B": { + "dept": "MGTA", + "description": "Project-based course, in which students apply knowledge and methods acquired in their course work to a specific business analytics problem faced by a company. This is a continuation of MGTA 454A. Class meetings will be scheduled where teams will present their interim and final analysis results and outline how the partner company could use the project outcomes (e.g., a decision support tool) in decision-making. This course is part of a course series. Final grade will apply after the completion of MGTA 454B. Students may not receive credit for both MGTA454 and MGTA 454A or MGTA 454B. ", + "name": "MGTA 454B", + "prereqs": [ + "MGTA 454A" + ], + "title": "Business Analytics Capstone Project II (2)" + }, + "MGTA 455": { + "dept": "MGTA", + "description": "Many firms have extensive information about customers\u2019 choices and how they react to marketing campaigns, but few have the expertise to efficiently act on such information. In this course, students will learn a scientific approach to marketing with hands-on use of technologies such as databases, analytics, and computing systems to collect, analyze, and act on customer information. ", + "name": "MGTA 455", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Customer Analytics (4)" + }, + "MGTA 456": { + "dept": "MGTA", + "description": "This course focuses on improving the performance of production and service operations, as well as supply chains, through the combination of data and analytical tools including statistics, forecasting, and optimization. Students will learn to employ analytics in capacity and distribution facility planning and contracting; how to determine data collection requirements for dynamic management of inventory levels; and how to improve revenue management under demand learning. ", + "name": "MGTA 456", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Supply Chain Analytics (4)" + }, + "MGTA 457": { + "dept": "MGTA", + "description": "A decision support system consists of decision model, data, and user interface. This course covers the R and Shiny programming and design skills to develop a DSS that addresses a manager\u2019s decision-making needs. ", + "name": "MGTA 457", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Business Intelligence Systems (2)" + }, + "MGTA 458": { + "dept": "MGTA", + "description": "Students will learn to design and run experiments to guide policy and business decisions. They will learn to distinguish between a correlation and a causal effect and also to critically evaluate causal claims based on nonexperimental data. ", + "name": "MGTA 458", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Experiments in Firms (4)" + }, + "MGTA 459": { + "dept": "MGTA", + "description": "Decision making is difficult with scarce resources, inexact information, and conflicting stakeholder agendas (i.e., most of the time). Students will use advanced behavioral research to gain a competitive advantage, by improving their decisions and their understanding of how others decide. ", + "name": "MGTA 459", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Managerial Judgment and Decision-Making (4)" + }, + "MGTA 460": { + "dept": "MGTA", + "description": "Many projects fail to produce valuable results, are over budget, or not finished on time. This course will teach students how to set and manage goals and expectations of the team and of the executive sponsors for business analytics projects. ", + "name": "MGTA 460", + "prereqs": [ + "MGTA 452", + "MGTA 453", + "MGTA 451" + ], + "title": "Business Analytics Project Management (2)" + }, + "MGTF 401": { + "dept": "MGTF", + "description": "Overview of financial accounting reporting, with a primary focus on the analysis of economic events and their effect on the major financial statements (balance sheet, income statement, and statement of cash flows). Learn the nature and purpose of accounting methods. Letter grades only. Students may not receive credit for both MGTF 401 and MGT 404. ", + "name": "MGTF 401", + "prereqs": [], + "title": "Financial Accounting (4)" + }, + "MGTF 402": { + "dept": "MGTF", + "description": "Introduces quantitative methods for analyzing the pricing and return behavior of assets such as stocks, bonds, and derivatives; and develops methods for implementing modern portfolio theory in practice. The most influential financial models are derived; their practical applications are discussed. Letter grades only. ", + "name": "MGTF 402", + "prereqs": [], + "title": "Investment Analysis (4)" + }, + "MGTF 403": { + "dept": "MGTF", + "description": "Introduces ways to identify, measure, estimate, and control risks in the context of risk management as applied in fixed income, foreign exchange, and equity markets. Reviews the pricing and hedging applications of derivatives, such as futures, options, and CDSs. Letter grades only. ", + "name": "MGTF 403", + "prereqs": [], + "title": "Advanced Financial Risk Management (4)" + }, + "MGTF 404": { + "dept": "MGTF", + "description": "Bridging the gap between theoretical financial models and the real world. Covering the major accomplishments of empirical finance. Empirical exercises and analysis of real financial data will help students to truly appreciate the content of the course. Letter grades only. ", + "name": "MGTF 404", + "prereqs": [], + "title": "Financial Econometrics and Empirical Methods (4)" + }, + "MGTF 405": { + "dept": "MGTF", + "description": "Introduction to state-of-the-art forecasting methods in finance. Students will learn to estimate forecasting models based on past values of the predicted variable(s), surveys, market information, and other economic data. Participants will become critical consumers of forecasts reported in the media. Letter grades only. ", + "name": "MGTF 405", + "prereqs": [], + "title": "Business Forecasting (4)" + }, + "MGTF 406": { + "dept": "MGTF", + "description": "Develop theories of behavior motivated by psychology to describe various features of financial markets. Examine how the insights from behavioral finance complement the traditional paradigm and shed light on investors\u2019 trading patterns, the behavior of asset prices, and corporate finance. Letter grades only. ", + "name": "MGTF 406", + "prereqs": [ + "MGTF 402" + ], + "title": "Behavioral Finance (4)" + }, + "MGTF 407": { + "dept": "MGTF", + "description": "Covering the fundamentals of corporate finance and their application to valuation (including the WACC approach, APV approach, multiples, and real option valuation). We focus on important areas of corporate finance, including capital structure, real options, and financial distress and bankruptcy. Letter grades only. ", + "name": "MGTF 407", + "prereqs": [ + "MGTF 402" + ], + "title": "Valuation in Corporate Finance (4)" + }, + "MGTF 408": { + "dept": "MGTF", + "description": "Examination of real estate capital markets, both debt and equity. Covered topics include real estate valuation, real options applied to real estate, real estate equity markets, and the place of real estate within a diversified investor\u2019s portfolio. Letter grades only. ", + "name": "MGTF 408", + "prereqs": [ + "MGTF 402" + ], + "title": "Real Estate Finance (4)" + }, + "MGTF 409": { + "dept": "MGTF", + "description": "Explains the mergers and acquisitions process. Topics include history, motivation, valuation, legal framework and tax issues of mergers and acquisitions, antitakeover strategies, takeover tactics, leveraged buyouts, joint venture, and strategic alliances. Students may not earn credit for both MGTF 409 and MGT 284. ", + "name": "MGTF 409", + "prereqs": [], + "title": "Mergers, Acquisitions, and Corporate Restructuring (4)" + }, + "MGTF 410": { + "dept": "MGTF", + "description": "Focuses on the financing of new ventures and technological innovation. Includes perspectives of both the entrepreneur and the investor, investigating the venture capital process, and methods of financial valuation useful in the venture capital industry and for other technology investments. Letter grades only. Students may not receive credit for both MGTF 410 and MGT 280. They are course equivalents. ", + "name": "MGTF 410", + "prereqs": [], + "title": "New Venture Finance (4)" + }, + "MGTF 411": { + "dept": "MGTF", + "description": "Many closed-form analytic results in finance are obtained in the continuous-time setting. This course covers portfolio choice, derivative pricing, and term structure modeling in continuous time setting. The objective is to understand important topics and master techniques of continuous-time models. Letter grades only. Students may not receive credit for both MGTF411 and MGT286. These are course duplicates. ", + "name": "MGTF 411", + "prereqs": [], + "title": "Stochastic Calculus and Continuous Time Finance (4)" + }, + "MGTF 412": { + "dept": "MGTF", + "description": "Develop a deeper familiarity with financial accounting and assumptions underlying measurements reported in financial statements. Understanding of economic and regulatory forces underlying corporate disclosure of financial statements. Knowledge of data sources and analytical tools to extract and evaluate this data. Letter grades only. ", + "name": "MGTF 412", + "prereqs": [], + "title": "Financial Statement Analysis (4)" + }, + "MGTF 413": { + "dept": "MGTF", + "description": "This course introduces students to a variety of mathematical methods as applied in finance, including Monte Carlo simulation, optimization methods, and numerical solution to PDEs. Letter grades only. ", + "name": "MGTF 413", + "prereqs": [], + "title": "Computational Finance Methods (4)" + }, + "MGTF 414": { + "dept": "MGTF", + "description": "Introduction to both structured and unstructured data analysis. Methods for \u201charvesting\u201d Internet data and putting it into suitable format will be covered. Other topics include large market microstructure data (tick-by-tick data, high-frequency data), data with missing observations, and Kalman filtering. Letter grades only. ", + "name": "MGTF 414", + "prereqs": [], + "title": "Analyzing Large Data (4)" + }, + "MGTF 415": { + "dept": "MGTF", + "description": "Teaches students how to obtain and process data in order to answer empirical questions in finance. The data can be numerical or textual, and structured or unstructured. Specific data sources may include CRSP, Compustat, Thomson Reuters, and Bloomberg. Some programming. Letter grades only. ", + "name": "MGTF 415", + "prereqs": [], + "title": "Collecting and Analyzing Financial Data (4)" + }, + "MGTF 416": { + "dept": "MGTF", + "description": "Discussion series involving industry experts, alumni, and executives on current issues in financial services.\u00a0Educates students on industry trends. Prepares students to be effective users of the financial press and to be effective in discussion and interaction with financial professionals. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 401, which is a comparable course offered in the MBA program. ", + "name": "MGTF 416", + "prereqs": [], + "title": "Professional Seminars in Finance (1)" + }, + "MGTF 417": { + "dept": "MGTF", + "description": "Focuses on communications skills and abilities required for effective professionals in the financial services sector.\u00a0Addresses oral and written communications, including presentations, informational and job interviewing, resume writing, cross-cultural communication, and report writing. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 402, which is a comparable course offered in the MBA program. ", + "name": "MGTF 417", + "prereqs": [], + "title": "Professional Communications in Finance (1)" + }, + "MGTF 418": { + "dept": "MGTF", + "description": "The Chartered Financial Analyst (CFA) designation is the industry-accepted gold standard for financial analysts. To earn the CFA charter, students must pass three very challenging exams. Students will look at each of the ten major topic areas and explore the level of understanding that is required to pass the first-level exam. Students will do applied valuation work as well as highlight study habits of successful past candidates. ", + "name": "MGTF 418", + "prereqs": [], + "title": "Preparing for the CFA Exam (2)" + }, + "MGTF 420": { + "dept": "MGTF", + "description": "This course is aimed at developing analytical and transferable skills in the area of management of monetary policy and banking and nonbanking financial institutions, issues of credit and financial regulation. Making the connection with real life is the primary focus of this course. ", + "name": "MGTF 420", + "prereqs": [], + "title": "Money and Banking (4)" + }, + "MGTF 430": { + "dept": "MGTF", + "description": "Students will investigate the reasons behind resource expenditure related to Modern Portfolio Theory (MPT). They will examine ways in which an investor can aim to outperform the predictions of MPT, either by reducing risk without impacting return negatively, or increasing returns without increasing risk. The concepts of this course will be demonstrated through a combination of classroom lectures and case discussions. ", + "name": "MGTF 430", + "prereqs": [], + "title": "Asset Management (4)" + }, + "MGTF 432": { + "dept": "MGTF", + "description": "Provides students with a deeper and broader understanding of risk-return analysis (especially, but not exclusively, mean-variance analysis) than is common among users. Surveys how risk-return analysis is used in practice and examines the modern portfolio theory industry and its entrepreneurs. Letter grades only. Students may not receive credit for MGT 432, MGT 232, and MGT 282 Topics in Finance course with same course subtitle: Portfolio Theory in Practice. They are course equivalents. ", + "name": "MGTF 432", + "prereqs": [ + "MGT 281", + "MGT 491" + ], + "title": "Portfolio Theory in Practice (4)" + }, + "MGTF 458": { + "dept": "MGTF", + "description": "This course focuses on the means and methods of finance applied to social, economic, and environmental challenges of development. Financial innovations give rise to new intermediaries, new types of instruments, and new services or techniques to create jobs, build communities, and enable capital formation and economic growth. Students will discover why capital structure matters in aligning diverse interests into new business models to finance social and economic change. ", + "name": "MGTF 458", + "prereqs": [], + "title": "Financial Innovations for Economic Development (4)" + }, + "MGTF 490": { + "dept": "MGTF", + "description": "The Capstone project is one of the primary measures of student learning. Evaluation is based on students\u2019 ability to apply course material to the Capstone project. Satisfactory completion of the project is required for award of the degree. Letter grades only. ", + "name": "MGTF 490", + "prereqs": [ + "MGTF 404", + "MGTF 402", + "MGTF 403", + "MGTF 401" + ], + "title": "Capstone: Applied Finance Project (4)" + }, + "MGTF 495": { + "dept": "MGTF", + "description": "Introduces advanced topics of special interest in finance. Instructional methods can include face-to-face lecture, case presentations, assigned teaching, and/or online group discussions. May be taken for credit up to four times. Students may not earn credit when course subtitles are the same. ", + "name": "MGTF 495", + "prereqs": [], + "title": "Special Topics in Finance (2\u20134)" + }, + "MMW 11": { + "dept": "MMW", + "description": "MMW 11 explores human origins, the development of social organization, the strategies early peoples and societies used to negotiate their physical and social environments, and the rise of the ancient world\u2019s classical traditions (to ca. 100 BCE). Open to Eleanor Roosevelt College students only. Students may not receive credit for both MMW 1 and MMW 11. Must be taken for a letter grade to meet the requirement. (F)", + "name": "MMW 11", + "prereqs": [], + "title": "Prehistory and Ancient Foundations (4)" + }, + "MMW 12": { + "dept": "MMW", + "description": "Covering ca. 100 BCE to 1200 CE, MMW 12 examines the development of classical empires from China to the West, their collapse, and their transformation into distinct medieval forms. It also examines the rise and spread of Christianity, Islam, and Mahayana Buddhism. This course is the first of two writing-intensive quarters in the MMW sequence. ", + "name": "MMW 12", + "prereqs": [ + "MMW 12", + "MMW 2" + ], + "title": "Classical and Medieval Traditions (6)" + }, + "MMW 121": { + "dept": "MMW", + "description": "MMW 121, the first of two required courses for ERC transfer students, addresses\u00a0themes and topics from the premodern world (from antiquity to the eighteenth century) and strengthens students\u2019 analytical, research, and writing skills. Students may not receive credit for MMW 21 and 121. Students who previously took MMW 21 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ", + "name": "MMW 121", + "prereqs": [], + "title": "Exploring the Premodern World (4)" + }, + "MMW 122": { + "dept": "MMW", + "description": "MMW 122, the second of two required courses for ERC transfer students, addresses specific themes and topics from the modern world (from the eighteenth century to the present) and strengthens transfer students\u2019 analytical, research, and writing skills. Students may not receive credit for MMW 22 and 122. Students who previously took MMW 22 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ", + "name": "MMW 122", + "prereqs": [], + "title": "Exploring the Modern World (4)" + }, + "MMW 13": { + "dept": "MMW", + "description": "MMW 13 provides a framework for understanding developments in the global past from 1200 CE to 1750 CE and the transition from the medieval to the early modern world. This course is the second of two writing-intensive quarters in the MMW sequence. ", + "name": "MMW 13", + "prereqs": [ + "MMW 12", + "MMW 13", + "MMW 2", + "MMW 3" + ], + "title": "New Ideas and Cultural Encounters (6)" + }, + "MMW 14": { + "dept": "MMW", + "description": "This course examines the great changes in European society occurring from the late seventeenth century to the time of the Russian Revolution and considers the impact of those changes on the non-Western world. Topics include absolutist states and the Enlightenment, the French and American Revolutions, industrialization, the rise of nationalism and the nation-state, mass politics, Western imperialism, and the colonial experience. Developments in non-Western countries during this period will be examined from their own internal perspectives. ", + "name": "MMW 14", + "prereqs": [ + "MMW 5", + "MMW 2", + "MMW 3", + "MMW 14", + "MMW 12", + "MMW 13" + ], + "title": "Revolution, Industry, and Empire (4)" + }, + "MMW 15": { + "dept": "MMW", + "description": "This course begins with a consideration of the causes and consequences of World War I, and then looks at the postwar crisis of liberal values and institutions. It addresses the deepening crisis in the 1930s, especially evident in the emergence of ideological politics and extreme nationalism in the context of worldwide depression. That period provides the background for understanding World War II. Attention is then devoted to the Cold War, the competition between capitalism and communism, and the process of decolonization. The course ends with a discussion of the collapse of communism and the emergence of a new world order (or disorder). ", + "name": "MMW 15", + "prereqs": [ + "MMW 6", + "MMW 2", + "MMW 3", + "MMW 15", + "MMW 12", + "MMW 13" + ], + "title": "Twentieth Century and Beyond (4)" + }, + "MSED 290": { + "dept": "MSED", + "description": "Survey of recent literature highlighting critical issues in science education research. Specific focus on research in biology education, chemistry education, and physics education. Theoretical perspectives and research methodology (both qualitative and quantitative) used to understand learning will be discussed. ", + "name": "MSED 290", + "prereqs": [], + "title": "Issues in Science Education Research (4)" + }, + "MSED 294": { + "dept": "MSED", + "description": "In this course, the graduate student will teach or assist a teacher in a K\u201312 setting. The graduate student will have the mentorship of the classroom teacher as well as the supervision of an MSED faculty member. ", + "name": "MSED 294", + "prereqs": [], + "title": "Teaching Practicum (4)" + }, + "MSED 295": { + "dept": "MSED", + "description": "Each practicum lasts five weeks and is designed to inform students about a faculty member\u2019s research program. Assignment as a research assistant may be used as one practicum. This course should be taken during the first year. May be taken for credit three times. ", + "name": "MSED 295", + "prereqs": [], + "title": "MSED Orientation Practicum (1\u20133)" + }, + "MSED 296A": { + "dept": "MSED", + "description": "The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three-quarter sequence. ", + "name": "MSED 296A", + "prereqs": [], + "title": "Theories and Applications of Mathematics and Science Education (4)" + }, + "MSED 296B": { + "dept": "MSED", + "description": "The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three-quarter sequence. ", + "name": "MSED 296B", + "prereqs": [ + "MSED 296A", + "MSED 296B" + ], + "title": "Theories and Applications of Mathematics and Science Education (4)" + }, + "MSED 296C": { + "dept": "MSED", + "description": "The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three quarter sequence. ", + "name": "MSED 296C", + "prereqs": [ + "MSED 296C", + "MSED 296B" + ], + "title": "Theories and Applications of Mathematics and Science Education (4)" + }, + "MSED 297": { + "dept": "MSED", + "description": "Topics in Math and Science Education (1\u20134)", + "name": "MSED 297", + "prereqs": [], + "title": "Special" + }, + "MSED 298": { + "dept": "MSED", + "description": "Students will work on an independent research project under the supervision of MSED faculty.", + "name": "MSED 298", + "prereqs": [], + "title": "Research Project (2\u201312)" + }, + "MSED 299": { + "dept": "MSED", + "description": "Students will do independent study and research in preparation of their doctoral dissertation under the supervision of MSED faculty.", + "name": "MSED 299", + "prereqs": [], + "title": "Reading and Research (1\u201312)" + }, + "MUIR 1": { + "dept": "MUIR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "MUIR 1", + "prereqs": [], + "title": "First Year Experience (2)" + }, + "MUIR 199": { + "dept": "MUIR", + "description": "A course of independent work on a research or creative project to satisfy a Muir graduation requirement. (Only Muir students who have had Muir Special Project proposals approved may enroll in this course.) Students wishing to enroll must submit a written request with a description of the project. (Muir students must submit the Muir Special Project 199 form to the major advisor and to the Office of the Provost by the seventh week of the quarter prior to the quarter in which the 199 is to be undertaken. For information on other requirements, consult the provost\u2019s office.) ", + "name": "MUIR 199", + "prereqs": [], + "title": "Muir Special Project (4\u201316)" + }, + "MUIR 2": { + "dept": "MUIR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "MUIR 2", + "prereqs": [], + "title": "Transfer Year Experience (2)" + }, + "MUS 101A": { + "dept": "MUS", + "description": "Study of modal counterpart in the style of the sixteenth century. Two-voice species counterpoint studies. Analysis of music of the period. Musicianship studies: sight-singing, dictation, and keyboard skills. ", + "name": "MUS 101A", + "prereqs": [ + "MUS 2C", + "MUS 2CK" + ], + "title": "Music Theory and Practice I (4)" + }, + "MUS 101B": { + "dept": "MUS", + "description": "Study of tonal harmony and counterpoint. Analysis of Bach chorales and other music from the Baroque period. Musicianship studies: sight-singing, dictation, and keyboard skills. ", + "name": "MUS 101B", + "prereqs": [ + "MUS 2C" + ], + "title": "Music Theory and Practice II (4)" + }, + "MUS 101C": { + "dept": "MUS", + "description": "Tonal harmony and counterpoint. Analysis of larger classical forms: Sonata, Variation, Minuet and Trio, Rondo. Musicianship studies: sight-singing, dictation, and keyboard skills. ", + "name": "MUS 101C", + "prereqs": [ + "MUS 101B" + ], + "title": "Music Theory and Practice III (4)" + }, + "MUS 102": { + "dept": "MUS", + "description": "Selected topics in music theory. Covers Western classical repertoire from 1850 to the present. Includes chromatic and post-tonal harmony, formal analysis. May be taken for credit up to two times. ", + "name": "MUS 102", + "prereqs": [ + "MUS 101B" + ], + "title": "Topics in Music Theory (4)" + }, + "MUS 103A": { + "dept": "MUS", + "description": "First part in composition course sequence. Individual projects will be reviewed in seminar. Techniques of instrumentation will be developed through examination of scores and creative application. Assignments will include short exercises and analysis, and final project for standard ensemble. ", + "name": "MUS 103A", + "prereqs": [ + "MUS 33C" + ], + "title": "Seminar in Composition I (4)" + }, + "MUS 103B": { + "dept": "MUS", + "description": "Second part in composition course sequence. Intensive work in free composition by drafting a composition for presentation at the end of MUS 103C. Written analysis of contemporary repertoire is introduced. Instruction about calligraphic conventions including computer engraving programs. ", + "name": "MUS 103B", + "prereqs": [ + "MUS 103A" + ], + "title": "Seminar in Composition II (4)" + }, + "MUS 103C": { + "dept": "MUS", + "description": "Third part in composition course sequence. A mixture of individual lessons as well as group meetings, with discussion of topics germane to the development of composers, including musical aesthetics and contemporary orchestration techniques. Final performance of students\u2019 work will take place at the end of the quarter. ", + "name": "MUS 103C", + "prereqs": [ + "MUS 103B" + ], + "title": "Seminar in Composition III (4)" + }, + "MUS 103D-E-F": { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in composition. Projects will be critically reviewed in seminar with fellow students and faculty composers. ", + "name": "MUS 103D-E-F", + "prereqs": [], + "title": "Honors Seminar in Composition (4-4-4)" + }, + "MUS 105": { + "dept": "MUS", + "description": "This course will explore a range of compositional possibilities from song forms to modal and more extended forms. May be taken for credit two times. ", + "name": "MUS 105", + "prereqs": [ + "MUS 101B", + "MUS 101A" + ], + "title": "Jazz Composition (4)" + }, + "MUS 106": { + "dept": "MUS", + "description": "Topics in musical analysis. Covers full range of musical repertoire 1900 to present, including music that does not depend on notation. May be taken for credit up to two times. ", + "name": "MUS 106", + "prereqs": [ + "MUS 2C" + ], + "title": "Topics in Musical Analysis (4)" + }, + "MUS 107": { + "dept": "MUS", + "description": "This seminar explores the history of music in relation to critical issues, such as race, gender, sexuality, the environment, and politics. Readings include recent literature in cultural studies, musicology, and sociology. Topics vary. May be taken three times for credit. ", + "name": "MUS 107", + "prereqs": [ + "MUS 120C" + ], + "title": "Critical Studies Seminar (4)" + }, + "MUS 11": { + "dept": "MUS", + "description": "A course on folk music of the world, covered through lectures, films, and listening sessions devoted to detailed discussion of music indigenous to varying countries/areas of the world. Topics vary from year to year. May be repeated once for credit. ", + "name": "MUS 11", + "prereqs": [], + "title": "Folk Music (4)" + }, + "MUS 110": { + "dept": "MUS", + "description": "This seminar introduces the central theories, methods, and approaches used to study the music of contemporary cultures, in their local contexts. In addition to surveying key writings, students will document music from their local environment. ", + "name": "MUS 110", + "prereqs": [], + "title": "Introduction to Ethnomusicology Seminar (4)" + }, + "MUS 111": { + "dept": "MUS", + "description": "A study of particular regional music in their repertory, cultural context, and interaction with other traditions. Topics vary. May be taken for credit up to three times. ", + "name": "MUS 111", + "prereqs": [], + "title": "Topics/World Music Traditions (4)" + }, + "MUS 112": { + "dept": "MUS", + "description": "This course will address topics in medieval, Renaissance, and Baroque music; topics will vary from year to year. May be repeated five times for credit. ", + "name": "MUS 112", + "prereqs": [ + "MUS 8", + "MUS 4" + ], + "title": "Topics in European Music Before 1750 (4)" + }, + "MUS 113": { + "dept": "MUS", + "description": "This course will focus on Western music between 1750 and the early twentieth century; topics will vary from year to year. May be repeated five times for credit. ", + "name": "MUS 113", + "prereqs": [ + "MUS 8", + "MUS 4" + ], + "title": "Topics in Classic, Romantic, and Modern Music (4)" + }, + "MUS 114": { + "dept": "MUS", + "description": "An exploration of materials and methods used in the music of our time. There will be an extra discussion group for music majors. May be repeated once for credit. ", + "name": "MUS 114", + "prereqs": [], + "title": "Music of the Twentieth Century (4)" + }, + "MUS 115": { + "dept": "MUS", + "description": "A survey of the biographical, historical, sociological, and political issues affecting woman musicians, their creativity, their opportunities, and their perception by others. It compares and contrasts the work of women composers, performers, patrons, teachers, and writers on music from the Middle Ages through the present. ", + "name": "MUS 115", + "prereqs": [], + "title": "Women in Music (4)" + }, + "MUS 116": { + "dept": "MUS", + "description": "This course examines special topics in popular music from various sociopolitical, aesthetic, and performance perspectives. Readings include recent literature in cultural studies, musicology, and/or performance practice. Topics vary. May be taken three times for credit. ", + "name": "MUS 116", + "prereqs": [], + "title": "Popular Music Studies Seminar (4)" + }, + "MUS 12": { + "dept": "MUS", + "description": "A study of opera masterworks that often coincide with operas presented in the San Diego Opera season. Class consists of lectures, listening labs, live performances, and opera on video. ", + "name": "MUS 12", + "prereqs": [], + "title": "Opera (4)" + }, + "MUS 120A": { + "dept": "MUS", + "description": "First part of intensive historical, analytical, and cultural-aesthetic examination of music in Western culture from the ninth through the twenty-first centuries. Considers both sacred and secular repertories, from Gregorian chant through early opera, c. 800\u20131600. ", + "name": "MUS 120A", + "prereqs": [ + "MUS 2C", + "MUS 1C", + "MUS 101A" + ], + "title": "History of Music in Western Culture I (4)" + }, + "MUS 120B": { + "dept": "MUS", + "description": "Second part of intensive historical, analytical, and cultural-aesthetic examination of music in Western culture from the ninth through the twenty-first centuries. Considers both instrumental and vocal repertories, from the Baroque to the Romantic, c. 1600\u20131830. ", + "name": "MUS 120B", + "prereqs": [ + "MUS 101B", + "MUS 120A" + ], + "title": "History of Music in Western Culture II (4)" + }, + "MUS 120C": { + "dept": "MUS", + "description": "Third part of intensive historical, analytical,", + "name": "MUS 120C", + "prereqs": [], + "title": "History of Music in Western Culture III (4)" + }, + "MUS 126": { + "dept": "MUS", + "description": "This course will examine the development of the Blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of Urban Blues and the close relationship of the Blues with Jazz, Rhythm and Blues, and Rock and Roll. (Cross-listed with ETHN 178.) ", + "name": "MUS 126", + "prereqs": [], + "title": "Blues: An Oral Tradition (4)" + }, + "MUS 127": { + "dept": "MUS", + "description": "Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often-provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year. (Cross-listed with ETHN 179.) ", + "name": "MUS 127", + "prereqs": [], + "title": "Discover Jazz (4)" + }, + "MUS 128": { + "dept": "MUS", + "description": "The theory and practice of instrumental and/or choral conducting as they have to do with basic baton techniques, score reading, interpretation, orchestration, program building, and functional analysis. Members of the class will be expected to demonstrate their knowledge in the conducting of a small ensemble performing literature from the eighteenth, nineteenth, and twentieth centuries. ", + "name": "MUS 128", + "prereqs": [ + "MUS 2C", + "MUS 2B", + "MUS 2A", + "MUS 101C", + "MUS 101B", + "MUS 101A" + ], + "title": "Principles and Practice of Conducting (4)" + }, + "MUS 13": { + "dept": "MUS", + "description": "Through surveying selected musical traditions and practices from around the world, this course explores the ways in which music both reflects and affects social, cultural, and ecological relationships. Specific case studies will be covered through lectures, films, and listening sessions. ", + "name": "MUS 13", + "prereqs": [], + "title": "Worlds of Music (4)" + }, + "MUS 130": { + "dept": "MUS", + "description": "Instruction in the preparation of small group performances of representative instrumental and vocal chamber music literature. May be taken for credit six times, after which students must enroll for zero units. ", + "name": "MUS 130", + "prereqs": [], + "title": "Chamber Music Performance (2\u20134/0)" + }, + "MUS 131": { + "dept": "MUS", + "description": "Master class instruction in advanced improvisation performance for declared majors and minors only or consent of instructor. Audition required at first class meeting. May be repeated six times for credit. ", + "name": "MUS 131", + "prereqs": [], + "title": "Advanced Improvisation Performance (4/0)" + }, + "MUS 132": { + "dept": "MUS", + "description": "Individual or master class instruction in advanced instrumental performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ", + "name": "MUS 132", + "prereqs": [], + "title": "Proseminar in Music Performance (4)" + }, + "MUS 132C": { + "dept": "MUS", + "description": "Individual instruction in advanced vocal coaching. Emphasis placed on diction and musical issues. For declared music majors and minors. Students must be simultaneously enrolled in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ", + "name": "MUS 132C", + "prereqs": [ + "MUS 132V" + ], + "title": "Vocal Coaching (4)" + }, + "MUS 132R": { + "dept": "MUS", + "description": "Advanced instrumental/vocal preparation for senior music majors pursuing honors in performance. Repertoire for a solo recital will be developed under the direction of the appropriate instrumental/vocal faculty member. Special audition required during Welcome Week preceding fall quarter. ", + "name": "MUS 132R", + "prereqs": [ + "MUS 132" + ], + "title": "Recital Preparation (4)" + }, + "MUS 132V": { + "dept": "MUS", + "description": "Individual instruction in advanced vocal performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ", + "name": "MUS 132V", + "prereqs": [], + "title": "Proseminar in Vocal Instruction (4)" + }, + "MUS 133": { + "dept": "MUS", + "description": "Performance of new music of the twentieth century. Normally offered winter quarter only. Required a minimum of one time for all music majors. May be taken two times for credit. ", + "name": "MUS 133", + "prereqs": [], + "title": "Projects in New Music Performance (4)" + }, + "MUS 134": { + "dept": "MUS", + "description": "Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ", + "name": "MUS 134", + "prereqs": [], + "title": "Symphonic Orchestra (4)" + }, + "MUS 137A": { + "dept": "MUS", + "description": "Study of jazz theory and improvisation, focused on fundamental rhythmic, harmonic, melodic, and formal aspects of modern jazz style. Application of theoretical knowledge to instruments and concepts will be reinforced through listening, transcription work, and composition and improvisation exercises. First course of a yearlong sequence. ", + "name": "MUS 137A", + "prereqs": [ + "MUS 2C", + "MUS 2B", + "MUS 2A" + ], + "title": "Jazz Theory and Improvisation (4)" + }, + "MUS 137B": { + "dept": "MUS", + "description": "Study of jazz theory and improvisation, focused on fundamental rhythmic, harmonic, melodic, and formal aspects of modern jazz style. Application of theoretical knowledge to instruments and concepts will be reinforced through listening, transcription work, and composition and improvisation exercises. Second course of a yearlong sequence; continuation of MUS 137A. ", + "name": "MUS 137B", + "prereqs": [ + "MUS 137A" + ], + "title": "Jazz Theory and Improvisation (4)" + }, + "MUS 137C": { + "dept": "MUS", + "description": "Study of jazz theory and improvisation, focused on fundamental rhythmic, harmonic, melodic, and formal aspects of modern jazz style. Application of theoretical knowledge to instruments and concepts will be reinforced through listening, transcription work, and composition and improvisation exercises. Third course of a yearlong sequence; continuation of MUS 137B. ", + "name": "MUS 137C", + "prereqs": [ + "MUS 137B" + ], + "title": "Jazz Theory and Improvisation (4)" + }, + "MUS 137D": { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. First course of a yearlong sequence. ", + "name": "MUS 137D", + "prereqs": [ + "MUS 137B", + "MUS 137C", + "MUS 137A" + ], + "title": "Seminar in Jazz Studies I (4)" + }, + "MUS 137E": { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. Second course of a yearlong sequence; continuation of 137D. ", + "name": "MUS 137E", + "prereqs": [ + "MUS 137D" + ], + "title": "Seminar in Jazz Studies II (4)" + }, + "MUS 137F": { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. Third course of a yearlong sequence; continuation of 137E. ", + "name": "MUS 137F", + "prereqs": [ + "MUS 137E" + ], + "title": "Seminar in Jazz Studies III (4)" + }, + "MUS 14": { + "dept": "MUS", + "description": "This course offers opportunities to prepare oneself for experiences with new music (through preview lectures), hear performances (by visiting or faculty artists), to discuss each event informally with a faculty panel: an effort to foster informed listening to the new in music. ", + "name": "MUS 14", + "prereqs": [], + "title": "Contemporary Music (4)" + }, + "MUS 143": { + "dept": "MUS", + "description": "The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music majors every quarter.", + "name": "MUS 143", + "prereqs": [], + "title": "Department Seminar (1)" + }, + "MUS 15": { + "dept": "MUS", + "description": "A course on popular music from different time periods, covered through lectures, films, and listening sessions. Topics vary from year to year. May be repeated once for credit. ", + "name": "MUS 15", + "prereqs": [], + "title": "Popular Music (4)" + }, + "MUS 150": { + "dept": "MUS", + "description": "Music of the African Diaspora: Special Topics Seminar (4)", + "name": "MUS 150", + "prereqs": [], + "title": "Jazz and the" + }, + "MUS 151": { + "dept": "MUS", + "description": "Aggrieved groups generate distinctive cultural expressions by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States. (Cross-listed with ETHN 108.) ", + "name": "MUS 151", + "prereqs": [], + "title": "Race, Culture, and Social Change (4)" + }, + "MUS 152": { + "dept": "MUS", + "description": "Examination of hip-hop\u2019s music, technology, lyrics, and its influence in graffiti, film, music video, fiction, advertising, gender, corporate investment, government and censorship with a critical focus on race, gender, popular culture, and the politics of creative expression. (Cross-listed with ETHN 128.) ", + "name": "MUS 152", + "prereqs": [], + "title": "Hip Hop: The Politics of Culture (4)" + }, + "MUS 153": { + "dept": "MUS", + "description": "Examination of media representations of African Americans from slavery to the present focusing on emergence and transmission of enduring stereotypes, their relationship to changing social, political, and economic frameworks, and African Americans\u2019 responses to and interpretations of these mediated images. (Cross-listed with ETHN 164.) ", + "name": "MUS 153", + "prereqs": [], + "title": "African Americans and the Mass Media (4)" + }, + "MUS 16": { + "dept": "MUS", + "description": "This course will explore The Beatles from musical, cultural, historical, technological, and critical angles. It will place them in context, examining their assorted confluences and wide influences. The group will be critically examined as artists, innovators, and public personalities. Listening, watching, and discussion will provide a broader, deeper, and more personal understanding of the group\u2019s enduring appeal. ", + "name": "MUS 16", + "prereqs": [], + "title": "The Beatles (4)" + }, + "MUS 160A": { + "dept": "MUS", + "description": "Students pursue projects of their own design over two quarters with support from faculty in a seminar environment. Project proposals are developed, informed by project development guidelines from real world examples. Collaborations are possible. Two production-course limitation. Renumber from ICAM 160A. Students may receive credit for only one of the following: MUS 160A, VIS 160A, ICAM 160A. ", + "name": "MUS 160A", + "prereqs": [ + "VIS 141B", + "MUS 172", + "VIS 147B", + "VIS 145B" + ], + "title": "Senior Project in Computing Arts I (4)" + }, + "MUS 160B": { + "dept": "MUS", + "description": "Continuation of MUS 160A or VIS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: MUS 160B, VIS 160B, ICAM 160B. ", + "name": "MUS 160B", + "prereqs": [ + "MUS 160A", + "VIS 160A" + ], + "title": "Senior Project in Computing Arts II (4)" + }, + "MUS 17": { + "dept": "MUS", + "description": "This class presents a broad chronological overview of the development of hip-hop as a musical form from the late 1970s through today. It examines the development of the style in relation to direct context and to earlier African American musical and cultural forms and considers the technological and legal issues that have impacted its development. The class is listening intensive and students will be expected to know and recognize essential structures and production techniques. ", + "name": "MUS 17", + "prereqs": [], + "title": "Hip-Hop (4)" + }, + "MUS 170": { + "dept": "MUS", + "description": "(Formerly MUS 160A.) An introduction to", + "name": "MUS 170", + "prereqs": [], + "title": "Musical Acoustics (4)" + }, + "MUS 171": { + "dept": "MUS", + "description": "(Formerly MUS 160C.) A practical introduction to computer techniques for desktop audio editing, MIDI control, and real-time music algorithms using the MAX programming environment. Recommended preparation: completion of MUS 170. ", + "name": "MUS 171", + "prereqs": [], + "title": "Computer Music I (4)" + }, + "MUS 172": { + "dept": "MUS", + "description": "(Formerly MUS 161.) Computer synthesis techniques", + "name": "MUS 172", + "prereqs": [], + "title": "Computer Music II (4)" + }, + "MUS 173": { + "dept": "MUS", + "description": "(Formerly MUS 162.) Creative music production using digital audio workstations (DAWs), emphasizing hands-on composition projects including tempo warping, beat and tonality matching, virtual drum kits, chord progressions, sound processing and effects, arrangement, and remixing in the context of both popular and experimental genres. Existing works are analyzed and dissected for aesthetic value and production technique. ", + "name": "MUS 173", + "prereqs": [], + "title": "Electronic Music Production and Composition (4)" + }, + "MUS 174A": { + "dept": "MUS", + "description": "First class in a yearlong sequence. Surveys hardware and software resources in an advanced analog/digital and media studio. Required course for use of the studio. Topics include: electronic and computer music, digital and analog audio signal mixing and manipulation, studio devices, interfacing, compositional applications, MIDI synchronization, performance and student projects. 174A focuses on signals, mics, device-based recording, mixing, monitoring. ", + "name": "MUS 174A", + "prereqs": [ + "MUS 170" + ], + "title": "Audio/MlDI Studio Techniques I (4)" + }, + "MUS 174B": { + "dept": "MUS", + "description": "Second class in a yearlong sequence. Surveys hardware and software resources in an advanced analog/digital and media studio. Required course for use of the studio. Topics include: electronic and computer music, digital and analog audio signal mixing and manipulation, studio devices, interfacing, compositional applications, MIDI synchronization, performance and studio techniques, and student projects. 174B focuses on digital audio workstations, computer-based mixing and editing, sound file transformation. ", + "name": "MUS 174B", + "prereqs": [ + "MUS 174A", + "MUS 170" + ], + "title": "Audio/MlDI Studio Techniques II (4)" + }, + "MUS 174C": { + "dept": "MUS", + "description": "Third class in a yearlong sequence. Surveys hardware and software resources in an advanced analog/digital and media studio. Required course for use of the studio. Topics include: electronic and computer music, digital and analog audio signal mixing and manipulation, studio devices, interfacing, compositional applications, MIDI synchronization, performance and studio techniques, and student projects. 174C focuses on MIDI, synchronization, and sound-for-picture. ", + "name": "MUS 174C", + "prereqs": [ + "MUS 174B", + "MUS 170" + ], + "title": "Audio/MlDI Studio Techniques III (4)" + }, + "MUS 175": { + "dept": "MUS", + "description": "Survey of psychoacoustical", + "name": "MUS 175", + "prereqs": [], + "title": "Musical Psychoacoustics (4)" + }, + "MUS 176": { + "dept": "MUS", + "description": "(Formerly MUS 163.) Selected topics in music", + "name": "MUS 176", + "prereqs": [], + "title": "Music Technology Seminar (4)" + }, + "MUS 177": { + "dept": "MUS", + "description": "Fundamentals of programming music software in C and C++. DSP implementation of oscillators, filters, delay, reverb and spectral processing; programming techniques specific to audio and MIDI and simple GUI design for parameter control and signal display. Implementation using a plug-in or external programming interface such as for VST, Audio Unit, PD, or Max/MSP. May be taken for credit two times. ", + "name": "MUS 177", + "prereqs": [ + "MUS 161", + "MUS 172" + ], + "title": "Music Programming (4)" + }, + "MUS 18": { + "dept": "MUS", + "description": "A survey of Eastern European Jewish folk music, Yiddish theatre and popular song, and their transition to America. Credit not allowed for MUS 18 and JUDA 18. (Cross-listed with JUDA 18.) ", + "name": "MUS 18", + "prereqs": [], + "title": "Klezmer Music (4)" + }, + "MUS 192": { + "dept": "MUS", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in music (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "MUS 192", + "prereqs": [], + "title": "Senior Seminar in Music (1)" + }, + "MUS 195": { + "dept": "MUS", + "description": "Assisting in the instruction of an undergraduate music class under the direct and constant supervision of a faculty member. May be taken for credit three times. ", + "name": "MUS 195", + "prereqs": [], + "title": "Instructional Assistance (2)" + }, + "MUS 198": { + "dept": "MUS", + "description": "Concentrated inquiry into various problems not covered in the usual undergraduate courses. ", + "name": "MUS 198", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "MUS 199": { + "dept": "MUS", + "description": "Independent reading, research, or creative work under the direction of a faculty member, provided no course covering the material to be studied already exists, and the study area derives from previous course work. ", + "name": "MUS 199", + "prereqs": [], + "title": "Independent Study (1\u20134)" + }, + "MUS 1A": { + "dept": "MUS", + "description": "This course, first in a three-quarter sequence, is primarily intended for students without previous musical experience. It introduces music notation and basic music theory topics such as intervals, scales, keys, and chords, as well as basic rhythm skills. ", + "name": "MUS 1A", + "prereqs": [], + "title": "Fundamentals of Music A (4)" + }, + "MUS 1B": { + "dept": "MUS", + "description": "This course, second in a three-quarter sequence, focuses on understanding music theory and in developing musical ability through rhythm, ear training, and sight singing exercises. Topics include major and minor scales, seventh-chords, transposition, compound meter and rudiments of musical form. ", + "name": "MUS 1B", + "prereqs": [ + "MUS 1A" + ], + "title": "Fundamentals of Music B (4)" + }, + "MUS 1C": { + "dept": "MUS", + "description": "This course, third in a three-quarter sequence, offers solid foundation in musical literacy through exercises such as harmonic and melodic dictation, sight singing exercises and rhythm in various meters. Topics include complex rhythm, harmony, and basic keyboard skills. ", + "name": "MUS 1C", + "prereqs": [ + "MUS 1B" + ], + "title": "Fundamentals of Music C (4)" + }, + "MUS 20": { + "dept": "MUS", + "description": "How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both MUS 20 and COGS 20. (Cross-listed with COGS 20.) ", + "name": "MUS 20", + "prereqs": [], + "title": "Exploring the Musical Mind (4)" + }, + "MUS 200": { + "dept": "MUS", + "description": "Students will collaborate with faculty and guest artists in", + "name": "MUS 200", + "prereqs": [], + "title": "Contemporary Chamber Opera Performance (4)" + }, + "MUS 201A-B-C-D-E-F": { + "dept": "MUS", + "description": "Projects in New Music Performance (1\u20134, 1\u20134, 1\u20134, 1\u20134, 1\u20134, 1\u20134)", + "name": "MUS 201A-B-C-D-E-F", + "prereqs": [], + "title": "" + }, + "MUS 202": { + "dept": "MUS", + "description": "Advanced performance of new music with members of the performance faculty (SONOR). Students taking this course do not need to take MUS 201 that quarter. Enrollment by consent of instructor/director of SONOR. ", + "name": "MUS 202", + "prereqs": [], + "title": "Advanced Projects in Performance (1\u20134)" + }, + "MUS 203A": { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "name": "MUS 203A", + "prereqs": [], + "title": "Advanced Projects in Composition (6)" + }, + "MUS 203B": { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "name": "MUS 203B", + "prereqs": [], + "title": "Advanced Projects in Composition (6)" + }, + "MUS 203C": { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "name": "MUS 203C", + "prereqs": [], + "title": "Advanced Projects in Composition (6)" + }, + "MUS 203D": { + "dept": "MUS", + "description": "Meetings on group basis with faculty composer in sessions devoted to the study of composition. ", + "name": "MUS 203D", + "prereqs": [], + "title": "Advanced Projects in Composition (1\u20134)" + }, + "MUS 204": { + "dept": "MUS", + "description": "The purpose of this seminar is to bring in the entire population of the graduate composition program (all students and faculty) for in-depth discussion of critical issues in music theory and composition. Each meeting will feature a formal presentation by either a student, faculty member, or visitor, followed by lively and challenging debate on relevant issues. ", + "name": "MUS 204", + "prereqs": [], + "title": "Focus on Composition (2)" + }, + "MUS 205": { + "dept": "MUS", + "description": "Meets on a biweekly basis to facilitate presentations by advanced students and invited guests and to encourage in-depth discussion between students, faculty, and visitors about theoretical and artistic issues of interest. Participation is required of all enrolled IS students until advanced to candidacy. Others are welcome to participate. ", + "name": "MUS 205", + "prereqs": [], + "title": "Focus on Integrative Studies (2)" + }, + "MUS 206": { + "dept": "MUS", + "description": "Seminars growing out of current faculty interests. The approach tends to be speculative and includes individual projects or papers as well as assigned readings. In the past, such areas as new instrumental and vocal resources, mixed media, and compositional linguistics have been offered. ", + "name": "MUS 206", + "prereqs": [], + "title": "Experimental Studies Seminar (4)" + }, + "MUS 207": { + "dept": "MUS", + "description": "Seminars on subject areas relating to the established dimensions of music and in which theoreticians have produced a substantial body of work. These include studies in analysis, timbre, rhythm, notation, and psychoacoustics. Offerings vary depending on faculty availability and interest. Analytical paper required. ", + "name": "MUS 207", + "prereqs": [], + "title": "Theoretical Studies Seminar (4)" + }, + "MUS 209": { + "dept": "MUS", + "description": "Advanced integrated studies in music theory; composition and styles study through analysis and performance. This course is intended primarily for doctoral students and may be taken by MA students only with special approval of MA adviser and course instructor. A major research or analytical publishable paper required. ", + "name": "MUS 209", + "prereqs": [], + "title": "Advanced Music Theory and Practice (4)" + }, + "MUS 210": { + "dept": "MUS", + "description": "The analysis of complex music. The course will assume that the student has a background in traditional music analysis. The goal of the course is to investigate and develop analytical procedures that yield significant information about specific works of music, old and new. Reading, projects, and analytical papers. ", + "name": "MUS 210", + "prereqs": [], + "title": "Musical Analysis (4)" + }, + "MUS 211": { + "dept": "MUS", + "description": "Introduces the field of ethnomusicology by highlighting important thinkers, concepts, and issues and by orienting students toward work of an anthropological, ethnographic, or comparative nature. Students who have taken and passed MUS 208A may not get credit for MUS 211. ", + "name": "MUS 211", + "prereqs": [], + "title": "Introduction to Ethnomusicology (2)" + }, + "MUS 212": { + "dept": "MUS", + "description": "Introduces the network of concepts and approaches that comprise systems inquiry and explores the theoretical, philosophical, and methodological implications of systems thinking for musical research and practice. Students who have taken MUS 208B for credit may not take MUS 212 for credit. ", + "name": "MUS 212", + "prereqs": [], + "title": "Introduction to System Inquiry (2)" + }, + "MUS 213": { + "dept": "MUS", + "description": "Introduces important themes and thinkers from the fields of critical theory and cultural studies and explores how musical behaviors and phenomena relate to matters of ideology, nationality, ethnicity, social class, race, and gender. Students who have taken MUS 208C for credit may not take MUS 213 for credit. ", + "name": "MUS 213", + "prereqs": [], + "title": "Introduction to Critical Studies (2)" + }, + "MUS 214": { + "dept": "MUS", + "description": "Surveys the terrain of contemporary creative music and investigates the social, cultural, historical, and technological dimensions of its manifestations and practice. Students who have taken MUS 208D for credit may not take MUS 214 for credit. ", + "name": "MUS 214", + "prereqs": [], + "title": "Introduction to Creative Practices (2)" + }, + "MUS 228": { + "dept": "MUS", + "description": "This course will give practical experience in conducting a variety of works from various eras of instrumental and/or vocal music. Students will study problems of instrumental or vocal techniques, formal and expressive analysis of the music, and manners of rehearsal. Required of all graduate students. ", + "name": "MUS 228", + "prereqs": [], + "title": "Conducting (4)" + }, + "MUS 229": { + "dept": "MUS", + "description": "A seminar to give practical experience in orchestration. Students will study works from various eras of instrumental music and will demonstrate their knowledge by orchestrating works in the styles of these various eras, learning the capabilities, timbre, and articulation of all the instruments in the orchestra. ", + "name": "MUS 229", + "prereqs": [], + "title": "Seminar in Orchestration (4)" + }, + "MUS 230": { + "dept": "MUS", + "description": "Performance of representative chamber music literature, instrumental and/or vocal, through coached rehearsal and seminar studies. Course may be repeated for credit since the literature studied varies from quarter to quarter. ", + "name": "MUS 230", + "prereqs": [], + "title": "Chamber Music Performance (4)" + }, + "MUS 232": { + "dept": "MUS", + "description": "Individual or master class instruction in advanced instrumental/vocal performance. ", + "name": "MUS 232", + "prereqs": [], + "title": "Proseminar in Music Performance (1\u20134)" + }, + "MUS 234": { + "dept": "MUS", + "description": "Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ", + "name": "MUS 234", + "prereqs": [], + "title": "Symphonic Orchestra (4)" + }, + "MUS 245": { + "dept": "MUS", + "description": "The purpose of this seminar is to bring together performance students, faculty, and guests for discussion, presentation of student and faculty projects, performances by guest artists, and master classes with different members of the performance faculty. ", + "name": "MUS 245", + "prereqs": [], + "title": "Focus on Performance (2)" + }, + "MUS 251": { + "dept": "MUS", + "description": "Studies Seminar in Ethnomusicology (4)", + "name": "MUS 251", + "prereqs": [], + "title": "Integrative" + }, + "MUS 252": { + "dept": "MUS", + "description": "Traces the development of systems thinking and encourages work of a transdisciplinary nature, integrating models, strategies, methods, and tools from natural, human, social, and technological realms. ", + "name": "MUS 252", + "prereqs": [], + "title": "Integrative Studies Seminar in Systems Inquiry (4)" + }, + "MUS 253": { + "dept": "MUS", + "description": "Studies Seminar in Critical Studies (4)", + "name": "MUS 253", + "prereqs": [], + "title": "Integrative" + }, + "MUS 254": { + "dept": "MUS", + "description": "Studies Seminar in Creative Practice (4)", + "name": "MUS 254", + "prereqs": [], + "title": "Integrative" + }, + "MUS 267": { + "dept": "MUS", + "description": "Advanced topics in music technology and its application to composition and/or performance. Offerings vary according to faculty availability and interest. May be repeated for credit. ", + "name": "MUS 267", + "prereqs": [ + "MUS 173" + ], + "title": "Advanced Music Technology Seminar (4)" + }, + "MUS 270A": { + "dept": "MUS", + "description": "Digital techniques for analysis, synthesis, and processing of musical sounds. Sampling theory. Software synthesis techniques. Digital filter design. The short-time Fourier transform. Numerical accuracy considerations. ", + "name": "MUS 270A", + "prereqs": [], + "title": "Digital Audio Processing (4)" + }, + "MUS 270B": { + "dept": "MUS", + "description": "Theoretical bases for analyzing musical sound. Approaches to perception and cognition, including psychoacoustics and information processing, both ecological and computational. Models of audition including Helmholtz\u2019s consonance/dissonance theory and Bregman\u2019s streaming model. Musical cognition theories of Lerdahl and Narmour. Neural network models of music perception and cognition. Models of rhythm. The problem of timbre and timbre perception. ", + "name": "MUS 270B", + "prereqs": [], + "title": "Musical Cognitive Science (4)" + }, + "MUS 270C": { + "dept": "MUS", + "description": "Transformations in musical composition; series and intervallic structures; serial approaches to rhythm and dynamic. The stochastic music of Xenakis and Cage. Hiller\u2019s automatic composition. Improvisational models. Computer analysis of musical style. Neurally inspired and other quasiparallel algorithms. ", + "name": "MUS 270C", + "prereqs": [], + "title": "Compositional Algorithms (4)" + }, + "MUS 270D": { + "dept": "MUS", + "description": "Meetings on group basis with computer music faculty in support of individual student research projects. ", + "name": "MUS 270D", + "prereqs": [ + "MUS 270B", + "MUS 270C", + "MUS 270A" + ], + "title": "Advanced Projects in Computer Music (4)" + }, + "MUS 271A": { + "dept": "MUS", + "description": "A hands-on encounter with several important works from the classic electronic repertory, showing a representative subset of the electronic techniques available to musicians. Students who have taken MUS 271 for credit may not take MUS 271A for credit. ", + "name": "MUS 271A", + "prereqs": [], + "title": "Survey of Electronic Music Techniques I (4)" + }, + "MUS 271B": { + "dept": "MUS", + "description": "A continuation of 271A, with emphasis on live interactive techniques (e.g., audio processing; analysis/resynthesis; score following). ", + "name": "MUS 271B", + "prereqs": [ + "MUS 271A" + ], + "title": "Survey of Electronic Music Techniques II (4)" + }, + "MUS 271C": { + "dept": "MUS", + "description": "A continuation of 271A and B, with emphasis on compositional techniques (e.g., computer-aided composition, production, spatialization). ", + "name": "MUS 271C", + "prereqs": [ + "MUS 271B" + ], + "title": "Survey of Electronic Music Techniques III (4)" + }, + "MUS 272": { + "dept": "MUS", + "description": "Group projects to create new pieces of live electronic music involving research in electronic music and/or instrumental techniques. May be repeated for credit. ", + "name": "MUS 272", + "prereqs": [ + "MUS 271A", + "MUS 271C", + "MUS 271B" + ], + "title": "Seminar in Live Computer Music (4)" + }, + "MUS 296": { + "dept": "MUS", + "description": "This group research seminar involves the investigation and exploration of new and experimental performance concerns. Areas could include: improvisation, graphic notation, performance electronics, and working with combined media (such as dance, poetry, and theatre). ", + "name": "MUS 296", + "prereqs": [], + "title": "Directed Group Research in Performance (4)" + }, + "MUS 298": { + "dept": "MUS", + "description": "Individual research. (S/U grades permitted.) May be repeated for credit. Enrollment by consent of instructor only.", + "name": "MUS 298", + "prereqs": [], + "title": "Directed Research (1\u20134)" + }, + "MUS 299": { + "dept": "MUS", + "description": "Projects and Independent Study (1\u201312)", + "name": "MUS 299", + "prereqs": [], + "title": "Advanced Research" + }, + "MUS 2A-B-C": { + "dept": "MUS", + "description": "Primarily intended for music majors. Development of basic skills: perception and notation of pitch and temporal relationships. Introduction to functional harmony. Studies in melodic writing. Drills in sight singing, rhythmic reading, and dictation. ", + "name": "MUS 2A-B-C", + "prereqs": [ + "MUS 2AK", + "MUS 2BK", + "MUS 2CK" + ], + "title": "Basic Musicianship (4-4-4)" + }, + "MUS 2AK-BK-CK": { + "dept": "MUS", + "description": "Scales, chords, harmonic progressions, transposition, and simple pieces. ", + "name": "MUS 2AK-BK-CK", + "prereqs": [ + "MUS 2A" + ], + "title": "Basic Keyboard (2-2-2)" + }, + "MUS 2JK": { + "dept": "MUS", + "description": "This course will introduce basic voicings and voice leading, stylistically appropriate accompaniment, and basic chord substitution. For majors with a Jazz and the Music of the African diaspora emphasis to be taken concurrently with MUS 2C. ", + "name": "MUS 2JK", + "prereqs": [ + "MUS 2AK", + "MUS 2BK", + "MUS 2C" + ], + "title": "Jazz Keyboard (2)" + }, + "MUS 32": { + "dept": "MUS", + "description": "Individual instruction on intermediate level in instrumental technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ", + "name": "MUS 32", + "prereqs": [], + "title": "Instrumental/Vocal Instruction (2)" + }, + "MUS 32G": { + "dept": "MUS", + "description": "Group instruction in instrumental or vocal technique and repertory. Intermediate level. Intended for students who make an important contribution to Department of Music ensembles. ", + "name": "MUS 32G", + "prereqs": [], + "title": "Group Instrumental Instruction (2)" + }, + "MUS 32V": { + "dept": "MUS", + "description": "Individual instruction on intermediate level in vocal technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in MUS 32VM. May be taken six times for credit. ", + "name": "MUS 32V", + "prereqs": [], + "title": "Vocal Instruction (1)" + }, + "MUS 32VM": { + "dept": "MUS", + "description": "All students enrolled in voice lessons (32V,", + "name": "MUS 32VM", + "prereqs": [], + "title": "Vocal Master Class (1)" + }, + "MUS 33A": { + "dept": "MUS", + "description": "First course in a sequence for music majors and nonmajors pursuing an emphasis in composition. The course examines \u201csound\u201d itself and various ways of building sounds into musical structures and develops skills in music notation. Students compose solo pieces in shorter forms. Students may not receive credit for both MUS 33 and 33A. ", + "name": "MUS 33A", + "prereqs": [ + "MUS 2C" + ], + "title": "Introduction to Composition I (4)" + }, + "MUS 33B": { + "dept": "MUS", + "description": "Second part of course sequence for students pursuing a composition emphasis. Course continues the building of skills with the organization of basic compositional elements: pitch, rhythm, and timbre. It explores issues of musical texture, expression, and structure in traditional and contemporary repertoire. Writing for two instruments in more extended forms. ", + "name": "MUS 33B", + "prereqs": [ + "MUS 33A" + ], + "title": "Introduction to Composition II (4)" + }, + "MUS 33C": { + "dept": "MUS", + "description": "Third part of course sequence for students pursuing a composition emphasis. Course continues the development of skills in instrumentation and analysis. It includes a survey of advanced techniques in contemporary composition, with additional focus on notation, part-preparation, and the art of writing for small groups of instruments. ", + "name": "MUS 33C", + "prereqs": [ + "MUS 33B" + ], + "title": "Introduction to Composition III (4)" + }, + "MUS 4": { + "dept": "MUS", + "description": "A brief survey of the history of Western music from the Middle Ages to the present. Much attention will be paid to the direct experience of listening to music and attendance of concerts. Class consists of lectures, listening labs, and live performances. ", + "name": "MUS 4", + "prereqs": [], + "title": "Introduction to Western Music (4)" + }, + "MUS 43": { + "dept": "MUS", + "description": "The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music and music humanities majors every quarter a student is a declared music major. Four units or four quarters of enrollment are required of all undergraduate ICAM music majors who choose the MUS 43. Department Seminar option for their Visitor Series requirement. P/NP grades only. May be taken for credit up to twelve times.", + "name": "MUS 43", + "prereqs": [], + "title": "Department Seminar (1)" + }, + "MUS 5": { + "dept": "MUS", + "description": "An examination and exploration of the art and science of music making. Topics include acoustics, improvisation, composition, and electronic and popular forms. There will be required listening, reading, and creative assignments. No previous musical background required. ", + "name": "MUS 5", + "prereqs": [], + "title": "Sound in Time (4)" + }, + "MUS 500": { + "dept": "MUS", + "description": "Participation in the undergraduate teaching program is required of all graduate students at the equivalent of 25 percent time for three quarters (six units is required for all graduate students). ", + "name": "MUS 500", + "prereqs": [], + "title": "Apprentice Teaching (1\u20134)" + }, + "MUS 501": { + "dept": "MUS", + "description": "Consideration and development of pedagogical methods appropriate to undergraduate teaching. ", + "name": "MUS 501", + "prereqs": [], + "title": "Apprentice Teaching\u2014Nondepartmental (4)" + }, + "MUS 6": { + "dept": "MUS", + "description": "Lectures and listening sessions devoted to the most significant works of music realized through the use of computers and other electronic devices from the middle of this century through the present. ", + "name": "MUS 6", + "prereqs": [], + "title": "Electronic Music (4)" + }, + "MUS 7": { + "dept": "MUS", + "description": "Exploration of the interactions among music, science, and technology, including the history and current development of science and technology from the perspective of music. ", + "name": "MUS 7", + "prereqs": [], + "title": "Music, Science, and Computers (4)" + }, + "MUS 8": { + "dept": "MUS", + "description": "Jazz is one of the primary foundations for American music in the twentieth and twenty-first centuries. This course highlights the multicultural and international scope of jazz by taking a thematic rather than a chronological approach to the subject, and by highlighting the music and lives of a diverse array of jazz practitioners from around the country and around the world. Students may not receive credit for both MUS 8 and MUS 8GS. ", + "name": "MUS 8", + "prereqs": [], + "title": "American Music: Jazz Cultures (4)" + }, + "MUS 80": { + "dept": "MUS", + "description": "This course presents selected topics in music and consists of lecture and listening sessions. No prior technical knowledge is necessary. The course will be offered during summer session.", + "name": "MUS 80", + "prereqs": [], + "title": "Special Topics in Music (1\u20134 )" + }, + "MUS 87": { + "dept": "MUS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "MUS 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "MUS 9": { + "dept": "MUS", + "description": "The symphonic masterworks course will consist of lectures and listening sessions devoted to a detailed discussion of a small number of recognized masterworks (e.g., Mozart, Beethoven, Berlioz, Stravinsky, Ligeti, etc.). ", + "name": "MUS 9", + "prereqs": [], + "title": "Symphony (4)" + }, + "MUS 95": { + "dept": "MUS", + "description": "Performance in an ensemble appropriate to student abilities and interests. Normally each section requires student participation for the whole academic year, with credit for participation each quarter. Sections of MUS 95W have included: African drumming, Korean percussion, Indian sitar and tabla, koto, and Indonesian flute. Not all sections will be offered every year. May be repeated for credit. Grading on participation level, individual testing, comparative papers on repertoire covered, etc. ", + "name": "MUS 95", + "prereqs": [], + "title": "Ensemble Performance (2)" + }, + "NANO 1": { + "dept": "NANO", + "description": "Overview of NanoEngineering. Presentations and discussions of basic knowledge and career opportunities in nanotechnology for professional development. Introduction to campus library resources. P/NP grades only. ", + "name": "NANO 1", + "prereqs": [], + "title": "NanoEngineering Seminar (1)" + }, + "NANO 100L": { + "dept": "NANO", + "description": "Experimental investigation of physical properties of materials such as: thermal expansion coefficient, thermal conductivity, glass transitions in polymers, resonant vibrational response, longitudinal and shear acoustic wave speeds, Curie temperatures, UV-VIS absorption and reflection. ", + "name": "NANO 100L", + "prereqs": [ + "NANO 108" + ], + "title": "Physical Properties of Materials Lab (4)" + }, + "NANO 101": { + "dept": "NANO", + "description": "Introduction to NanoEngineering; nanoscale fabrication: nanolithography and self-assembly; characterization tools; nanomaterials and nanostructures: nanotubes, nanowires, nanoparticles, and nanocomposites; nanoscale and molecular electronics; nanotechnology in magnetic systems; nanotechnology in integrative systems; nanoscale optoelectronics; nanobiotechnology: biomimetic systems, nanomotors, nanofluidics, and nanomedicine. Priority enrollment given to NanoEngineering majors. ", + "name": "NANO 101", + "prereqs": [ + "CENG 15", + "MATH 20C", + "CHEM 6B", + "MAE 8", + "PHYS 2B", + "NANO 15" + ], + "title": "Introduction to NanoEngineering (4)" + }, + "NANO 102": { + "dept": "NANO", + "description": "Chemical principles involved in synthesis, assembly, and performance of nanostructured materials and devices. Chemical interactions, classical and statistical thermodynamics of small systems, diffusion, carbon-based nanomaterials, supramolecular chemistry, liquid crystals, colloid and polymer chemistry, lipid vesicles, surface modification, surface functionalization, catalysis. Priority enrollment given to NanoEngineering majors. ", + "name": "NANO 102", + "prereqs": [ + "NANO 101", + "NANO 106", + "MATH 20D", + "PHYS 2D", + "CHEM 6C" + ], + "title": "Foundations in NanoEngineering: Chemical Principles (4)" + }, + "NANO 103": { + "dept": "NANO", + "description": "Principles of biochemistry tailored to nanotechnologies. The structure and function of biomolecules and their specific roles in molecular interactions and signal pathways. Detection methods at the micro and nano scales. Priority enrollment will be given to NanoEngineering majors. ", + "name": "NANO 103", + "prereqs": [ + "BILD 1", + "NANO 102", + "NANO 101", + "CHEM 6C" + ], + "title": "Foundations in NanoEngineering: Biochemical Principles (4)" + }, + "NANO 104": { + "dept": "NANO", + "description": "Introduction to quantum mechanics and nanoelectronics. Wave mechanics, the Schroedinger equation, free and confined electrons, band theory of solids. Nanosolids in 0D, 1D, and 2D. Application to nanoelectronic devices. Priority enrollment given to NanoEngineering majors ", + "name": "NANO 104", + "prereqs": [ + "NANO 101", + "MATH 20D" + ], + "title": "Foundations in NanoEngineering: Physical Principles (4)" + }, + "NANO 106": { + "dept": "NANO", + "description": "Fundamentals of crystallography, and practice of methods to study material structure and symmetry. Curie symmetries. Tensors as mathematical description of material properties and symmetry restrictions. Introduction to diffraction methods, including X-ray, neutron, and electron diffraction. Close-packed and other common structures of real-world materials. Derivative and superlattice structures. ", + "name": "NANO 106", + "prereqs": [ + "MATH 20F" + ], + "title": "Crystallography of Materials (4)" + }, + "NANO 107": { + "dept": "NANO", + "description": "Overview of electrical devices and CMOS integrated circuits emphasizing fabrication processes, and scaling behavior. Design, and simulation of submicron CMOS circuits including amplifiers active filters digital logic, and memory circuits. Limitations of current technologies and possible impact of nanoelectronic technologies.\u00a0", + "name": "NANO 107", + "prereqs": [ + "NANO 101", + "NANO 15", + "MATH 20D", + "MATH 20B", + "PHYS 2B" + ], + "title": "Electronic Devices and Circuits for Nanoengineers (4)" + }, + "NANO 108": { + "dept": "NANO", + "description": "Structure and control of materials: metals, ceramics, glasses, semiconductors, polymers to produce useful properties. Atomic structures. Defects in materials, phase diagrams, micro structural control. Mechanical, rheological, electrical, optical and magnetic properties discussed. Time temperature transformation diagrams. Diffusion. Scale dependent material properties. ", + "name": "NANO 108", + "prereqs": [], + "title": "Materials Science and Engineering (4)" + }, + "NANO 110": { + "dept": "NANO", + "description": "Principles and applications of molecular modeling and simulations toward NanoEngineering. Topics covered include molecular mechanics, energy minimization, statistical mechanics, molecular dynamics simulations, and Monte Carlo simulations. Students will get hands-on training in running simulations and analyzing simulation results. ", + "name": "NANO 110", + "prereqs": [ + "CENG 15", + "MATH 20F", + "NANO 102", + "MAE 8", + "NANO 104", + "NANO 15" + ], + "title": "Molecular Modeling of Nanoscale Systems (4)" + }, + "NANO 111": { + "dept": "NANO", + "description": "Fundamentals and practice of methods to image, measure, and analyze materials and devices that are structured at the nanometer scale. Optical and electron microscopy; scanning probe methods; photon-, ion-, electron-probe methods, spectroscopic, magnetic, electrochemical, and thermal methods. ", + "name": "NANO 111", + "prereqs": [ + "NANO 102" + ], + "title": "Characterization of NanoEngineering Systems (4)" + }, + "NANO 112": { + "dept": "NANO", + "description": "Introduction to methods for fabricating materials and devices in NanoEngineering. Nano-particle, -vesicle, -tube, and -wire synthesis. Top-down methods including chemical vapor deposition, conventional and advanced lithography, doping, and etching. Bottom-up methods including self-assembly. Integration of heterogeneous structures into functioning devices. ", + "name": "NANO 112", + "prereqs": [ + "NANO 111", + "NANO 102", + "NANO 104" + ], + "title": "Synthesis and Fabrication of NanoEngineering Systems (4)" + }, + "NANO 114": { + "dept": "NANO", + "description": "Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with CENG 114. Students may not receive credit for both NANO 114 and CENG 114. ", + "name": "NANO 114", + "prereqs": [ + "CENG 15", + "NANO 15", + "MAE 8", + "MATH 20F" + ], + "title": "Probability and Statistical Methods for Engineers (4)" + }, + "NANO 120A": { + "dept": "NANO", + "description": "Principles of product design and the design process. Application and integration of technologies in the design and production of nanoscale components. Engineering economics. Initiation of team design projects to be completed in NANO 120B. ", + "name": "NANO 120A", + "prereqs": [ + "NANO 110" + ], + "title": "NanoEngineering System Design I (4)" + }, + "NANO 120B": { + "dept": "NANO", + "description": "Principles of product quality assurance in design and production. Professional ethics. Safety and design for the environment. Culmination of team design projects initiated in NANO 120A with a working prototype designed for a real engineering application. ", + "name": "NANO 120B", + "prereqs": [ + "NANO 120A" + ], + "title": "NanoEngineering System Design II (4)" + }, + "NANO 134": { + "dept": "NANO", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers,\u00a0photoresists, and polymers for medicine. Cross-listed with CENG 134.\u00a0Students may not receive credit for both\u00a0CENG\u00a0134 and\u00a0NANO\u00a0134. ", + "name": "NANO 134", + "prereqs": [ + "CHEM 6C" + ], + "title": "Polymeric Materials (4)" + }, + "NANO 141A": { + "dept": "NANO", + "description": "Newton\u2019s laws. Concepts of force and moment vector. Free body diagrams. Internal and external forces. Equilibrium of concurrent, coplanar, and three-dimensional system of forces. Equilibrium analysis of structural systems, including beams, trusses, and frames. Equilibrium problems with friction. ", + "name": "NANO 141A", + "prereqs": [ + "PHYS 2A", + "MATH 20C" + ], + "title": "Engineering Mechanics I: Analysis of Equilibrium (4)" + }, + "NANO 141B": { + "dept": "NANO", + "description": "Newton\u2019s laws of motion. Kinematic and kinetic \u200bdescription of particle motion. Angular momentum. Energy and work principles. Motion of the system of interconnected particles.\u00a0Mass center. Degrees of freedom. Equations of planar motion of rigid bodies. Energy methods. Lagrange\u2019s equations of motion. Introduction to vibration. Free and forced vibrations of a single degree of freedom system. Undamped and damped vibrations. Application to NanoEngineering problems.\u00a0", + "name": "NANO 141B", + "prereqs": [ + "NANO 141A", + "MATH 20D" + ], + "title": "Engineering Mechanics II: Analysis of Motion (4)" + }, + "NANO 146": { + "dept": "NANO", + "description": "Fundamentals in optical imaging and spectroscopy at the nanometer scale. Diffraction-limited techniques, near-field methods, multi-photon imaging and spectroscopy, Raman techniques, Plasmon-enhanced methods, scan-probe techniques, novel sub-diffraction-limit imaging techniques, and energy transfer methods. ", + "name": "NANO 146", + "prereqs": [ + "NANO 103", + "NANO 104" + ], + "title": "Nanoscale Optical Microscopy and Spectroscopy (4)" + }, + "NANO 148": { + "dept": "NANO", + "description": "Fundamental laws of thermodynamics for simple substances; application to flow processes and to non-reacting mixtures; statistical thermodynamics of ideal gases and crystalline solids; chemical and materials thermodynamics; multiphase and multicomponent equilibria in reacting systems; electrochemistry. ", + "name": "NANO 148", + "prereqs": [], + "title": "Thermodynamics of Materials (4)" + }, + "NANO 15": { + "dept": "NANO", + "description": "Introduction to the solution of engineering problems using computational methods. Formulating problem statements, selecting algorithms, writing computer programs, and analyzing output using Matlab. Computational problems from NanoEngineering, chemical engineering, and materials science are introduced. The course requires no prior programming skills. Cross-listed with CENG 15. ", + "name": "NANO 15", + "prereqs": [], + "title": "Engineering Computation Using Matlab (4)" + }, + "NANO 150": { + "dept": "NANO", + "description": "Introduction to mechanics of rigid and deformable bodies. Continuum and atomistic models, interatomic forces and intermolecular interactions. Nanomechanics, material defects, elasticity, plasticity, creep, and fracture. Composite materials, nanomaterials, biological materials. ", + "name": "NANO 150", + "prereqs": [ + "NANO 108" + ], + "title": "Mechanics of Nanomaterials (4)" + }, + "NANO 156": { + "dept": "NANO", + "description": "Basic principles of synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 166. ", + "name": "NANO 156", + "prereqs": [], + "title": "Nanomaterials (4)" + }, + "NANO 158": { + "dept": "NANO", + "description": "Materials and microstructures changes. Understanding of diffusion to enable changes in the chemical distribution and microstructure of materials, rates of diffusion. Phase transformations, effects of temperature and driving force on transformations and microstructure. ", + "name": "NANO 158", + "prereqs": [ + "NANO 108", + "NANO 148" + ], + "title": "Phase Transformations and Kinetics (4)" + }, + "NANO 158L": { + "dept": "NANO", + "description": "Metal casting processes, solidification, deformation processing, thermal processing: solutionizing, aging, and tempering, joining processes such as welding and brazing. The effect of processing route on microstructure and its effect on mechanical and physical properties will be explored.\u00a0NanoEngineering majors have priority enrollment. ", + "name": "NANO 158L", + "prereqs": [ + "NANO 158" + ], + "title": "Materials Processing Laboratory\u00a0(4)" + }, + "NANO 161": { + "dept": "NANO", + "description": "Selection of materials for engineering systems, based on constitutive analyses of functional requirements and material properties. The role and implications of processing on material selection. Optimizing material selection in a quantitative methodology. NanoEngineering majors receive priority enrollment. ", + "name": "NANO 161", + "prereqs": [ + "NANO 108" + ], + "title": "Material Selection in Engineering (4)" + }, + "NANO 164": { + "dept": "NANO", + "description": "Materials for energy storage and conversion in existing and future power systems, including fuel cells and batteries, photovoltaic cells, thermoelectric cells, and hybrids. ", + "name": "NANO 164", + "prereqs": [ + "NANO 102", + "NANO 101", + "NANO 148" + ], + "title": "Advanced Micro- and Nano-materials for Energy Storage and Conversion (4)" + }, + "NANO 168": { + "dept": "NANO", + "description": "Introduction to physical principles of electrical, dielectric, and magnetic properties. Semiconductors, control of defects, thin film, and nanocrystal growth, electronic and optoelectronic devices. Processing-microstructure-property relations of dielectric materials, including piezoelectric, pyroelectric and ferroelectric, and magnetic materials. ", + "name": "NANO 168", + "prereqs": [ + "NANO 102", + "NANO 104" + ], + "title": "Electrical, Dielectric, and Magnetic Properties of Engineering Materials (4)" + }, + "NANO 174": { + "dept": "NANO", + "description": "Microscopic and macroscopic aspects of the mechanical behavior of engineering materials, with emphasis on recent development in materials characterization by mechanical methods. The fundamental aspects of plasticity in engineering materials, strengthening mechanisms, and mechanical failure modes of materials systems. ", + "name": "NANO 174", + "prereqs": [ + "NANO 108" + ], + "title": "Mechanical Behavior of Materials (4)" + }, + "NANO 174L": { + "dept": "NANO", + "description": "Experimental investigation of mechanical behavior of engineering materials. Laboratory exercises emphasize the fundamental relationship between microstructure and mechanical properties, and the evolution of the microstructure as a consequence of rate process. ", + "name": "NANO 174L", + "prereqs": [ + "NANO 174" + ], + "title": "Mechanical Behavior Laboratory (4)" + }, + "NANO 199": { + "dept": "NANO", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ", + "name": "NANO 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (4)" + }, + "NANO 200": { + "dept": "NANO", + "description": "Each graduate student in NANO is expected to attend three seminars per quarter, of his or her choice, dealing with current topics in chemical engineering. Topics will vary. Cross-listed with CENG 205. S/U grades only. May be taken for credit four times.", + "name": "NANO 200", + "prereqs": [], + "title": "Graduate Seminar in Chemical Engineering (1)" + }, + "NANO 201": { + "dept": "NANO", + "description": "Understanding nanotechnology, broad implications, miniaturization: scaling laws; nanoscale physics; types and properties of nanomaterials; nanomechanical oscillators, nano(bio)electronics, nanoscale heat transfer; fluids at the nanoscale; machinery cell; applications of nanotechnology and nanobiotechnology. Students may not receive credit for both NANO 201 and CENG 211. ", + "name": "NANO 201", + "prereqs": [], + "title": "Introduction to NanoEngineering (4)" + }, + "NANO 202": { + "dept": "NANO", + "description": "Development of quantitative understanding of the different intermolecular forces between atoms and molecules and how these forces give rise to interesting phenomena at the nanoscale, such as flocculation, wetting, self-assembly in biological (natural) and synthetic systems. Cross-listed with CENG 212. Students may not receive credit for both NANO 202 and CENG 212. ", + "name": "NANO 202", + "prereqs": [], + "title": "Intermolecular and Surface Forces (4)" + }, + "NANO 203": { + "dept": "NANO", + "description": "Nanoscale synthesis\u2014top-down and bottom-up; chemical vapor deposition; plasma processes; soft-lithography; self-assembly; layer-by-layer. Characterization; microscopy; scanning probe microscopes; profilometry; reflectometry and ellipsometry; X-ray diffraction; spectroscopies (EDX, SIMS, Mass spec, Raman, XPS); particle size analysis; electrical, optical. Cross-listed with CENG 213. Students may not receive credit for both NANO 203 and CENG 213. ", + "name": "NANO 203", + "prereqs": [], + "title": "Nanoscale Synthesis and Characterization (4)" + }, + "NANO 204": { + "dept": "NANO", + "description": "This course will introduce students to analytical and numerical methods such as statistical mechanisms, molecular simulations, and finite differences and finite element modeling through their application to NanoEngineering problems involving polymer and colloiod self-assembly, absorption, phase separation, and diffusion. Cross-listed with CENG 214. Students may not receive credit for both NANO 204 and CENG 214. ", + "name": "NANO 204", + "prereqs": [ + "NANO 202" + ], + "title": "Nanoscale Physics and Modeling (4)" + }, + "NANO 205": { + "dept": "NANO", + "description": "Scaling issues and hierarchical assembly of nanoscale components into higher order structures which retain desired properties at microscale and macroscale levels. Novel ways to combine top-down and bottom-up processes for integration of heterogeneous components into higher order structures. Cross-listed with CENG 215. Students may not receive credit for both NANO 205 and CENG 215. ", + "name": "NANO 205", + "prereqs": [], + "title": "Nanosystems Integration (4)" + }, + "NANO 208": { + "dept": "NANO", + "description": "Basic engineering principles of nanofabrication. Topics include: photo-electronbeam and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Cross-listed with CENG 208. Students may not receive credit for both NANO 208 and CENG 208. ", + "name": "NANO 208", + "prereqs": [], + "title": "Nanofabrication (4)" + }, + "NANO 210": { + "dept": "NANO", + "description": "Molecular and modeling and simulation techniques like molecular dynamics, Monte Carlo, and Brownian dynamics to model nanoscale systems and phenomena like molecular motors, self-assembly, protein-ligand binding, RNA, folding. Valuable hands-on experience with different simulators.\u00a0", + "name": "NANO 210", + "prereqs": [], + "title": "Molecular Modeling and Simulations of Nanoscale Systems (4)" + }, + "NANO 212": { + "dept": "NANO", + "description": "Various modeling techniques like finite elements, finite differences, and simulation techniques like molecular dynamics and Monte Carlo to model fluid flow, mechanical properties, self-assembly at the nanoscale, and protein, RNA and DNA folding.\u00a0", + "name": "NANO 212", + "prereqs": [], + "title": "Computational Modeling of Nanosystems (4)" + }, + "NANO 227": { + "dept": "NANO", + "description": "Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. Cross-listed with MATS 227, MAE 251 and Chem 222.\u00a0", + "name": "NANO 227", + "prereqs": [], + "title": "Structure and Analysis of Solids (4)" + }, + "NANO 230": { + "dept": "NANO", + "description": "Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with CENG 230. Students may not receive credit for both NANO 230 and CENG 230. ", + "name": "NANO 230", + "prereqs": [], + "title": "Synchrotron Characterization of Nanomaterials (4)" + }, + "NANO 234": { + "dept": "NANO", + "description": "Engineering principles of nanofabrication. Topics include: photo-, electron beam, and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Relevance to applications in energy, electronics, and medicine will be discussed.\u00a0", + "name": "NANO 234", + "prereqs": [], + "title": "Advanced Nanoscale Fabrication (4)" + }, + "NANO 238": { + "dept": "NANO", + "description": "Scanning electron microscopy (SEM) detectors, imaging, image interpretation, and artifacts, introduction to lenses, electron beam-specimen interactions. Operating principles and capabilities for atomic force microscopy and scanning tunneling microscopy, scanning optical microscopy and scanning transmission electron microscopy.\u00a0", + "name": "NANO 238", + "prereqs": [], + "title": "Scanning Probe Microscopy (4)" + }, + "NANO 239": { + "dept": "NANO", + "description": "Fundamental nanomanufacturing science and engineering, top-down nanomanufacturing processes, bottom-up nanomanufacturing processes, integrated top-down and bottom-up nanofabrication processes, three-dimensional nanomanufacturing, nanomanufacturing systems, nanometrology, nanomanufactured devices for medicine, life sciences, energy, and defense applications.\u00a0", + "name": "NANO 239", + "prereqs": [], + "title": "Nanomanufacturing (4)" + }, + "NANO 241": { + "dept": "NANO", + "description": "This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nano materials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nano composites, and applications in biomedicine and food science. Cross-listed with Chem 241.\u00a0", + "name": "NANO 241", + "prereqs": [], + "title": "Organic Nanomaterials (4)" + }, + "NANO 242": { + "dept": "NANO", + "description": "Course is designed to give NanoEngineering students from a variety of backgrounds a working knowledge of biochemistry and molecular biology. While the course offers biochemistry basics and key themes in molecular biology, it will emphasize the role of engineering innovations.\u00a0", + "name": "NANO 242", + "prereqs": [], + "title": "Biochemisty and Molecular Biology (4)" + }, + "NANO 243": { + "dept": "NANO", + "description": "Introduction to nanomedicine; diffusion and drug dispersion; diffusion in biological systems; drug permeation through biological barriers; drug transport by fluid motion; pharmacokinetics of drug distribution; drug delivery systems; nanomedicine in practice: cancers, cardiovascular diseases, immune diseases, and skin diseases. Cross-listed with CENG 207. Students may not receive credit for both NANO 243 and CENG 207. ", + "name": "NANO 243", + "prereqs": [], + "title": "Nanomedicine (4)" + }, + "NANO 244": { + "dept": "NANO", + "description": "The structure and operational principles of different nature biomotors will be discussed. Related bio-inspired efforts aimed at developing artificial nanomotors will also be covered, along with the prospects of using biomotors and synthetic nanomotors in engineering environments.\u00a0", + "name": "NANO 244", + "prereqs": [], + "title": "Nanomachines and Nanorobots (4)" + }, + "NANO 245": { + "dept": "NANO", + "description": "An introduction to the nano electronics and nanospintronics; fundamentals of semiconductors; electronic band structure theory, electron transport in semiconductors and nano structures, nano devices. ", + "name": "NANO 245", + "prereqs": [ + "NANO 201" + ], + "title": "Nanoelectronics (4)" + }, + "NANO 247A": { + "dept": "NANO", + "description": "Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. Cross-listed with BENG 247A and ECE 247A.\u00a0", + "name": "NANO 247A", + "prereqs": [], + "title": "Advanced BioPhotonics (4)" + }, + "NANO 247B": { + "dept": "NANO", + "description": "Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.) Form heterogeneous materials and components. Cross-listed with BENG 247B and ECE 247B.\u00a0", + "name": "NANO 247B", + "prereqs": [], + "title": "BioElectronics (4)" + }, + "NANO 247C": { + "dept": "NANO", + "description": "Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices, nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles, nanostructures with biological molecules; nanostructural aspects of fuel cells; biofuel cells; potential use of DNA, other biomolecules. Cross-listed with BENG 247C and ECE 247C.\u00a0", + "name": "NANO 247C", + "prereqs": [], + "title": "BioNanotechnology (4)" + }, + "NANO 250": { + "dept": "NANO", + "description": "Elements of continuum mechanics; quantum and statistical mechanics; interatomic forces and intermolecular interactions; thermodynamics and diffusion materials; nanomechanics of self-assembly, pattern formation, and hierarchical ordering, defects, thin films, surfaces, and interfaces; plasticity, creep, fracture, and fatigue, nanomechanics, nanorheology, and nanotribology.\u00a0", + "name": "NANO 250", + "prereqs": [], + "title": "Mechanics of Nanomaterials (4)" + }, + "NANO 251A": { + "dept": "NANO", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research, including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. Cross-listed with ECE 221, MAE 265B, and MATS 251B. Students may not receive credit for ECE 221 and MAE 265B and MATS 251B and NANO 251A. ", + "name": "NANO 251A", + "prereqs": [], + "title": "Magnetic Materials: Principles and Applications (4)" + }, + "NANO 252": { + "dept": "NANO", + "description": "Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Cross-listed with CENG 256. Students may not receive credit for both NANO 252 and CENG 256. ", + "name": "NANO 252", + "prereqs": [], + "title": "Biomaterials and Biomimetics (4)" + }, + "NANO 253": { + "dept": "NANO", + "description": "This course discusses synthesis techniques, processes, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 267.\u00a0", + "name": "NANO 253", + "prereqs": [], + "title": "Nanomaterials and Properties (4)" + }, + "NANO 255": { + "dept": "NANO", + "description": "Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electrochemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. Cross-listed with Chem 240.\u00a0", + "name": "NANO 255", + "prereqs": [], + "title": "Electrochemistry (4)" + }, + "NANO 256": { + "dept": "NANO", + "description": "This course covers the design, microfabrication, operational principles, basic transport processes and diverse applications of microfluidic and nanofluidic (lab-on-a-chip) systems.\u00a0", + "name": "NANO 256", + "prereqs": [], + "title": "Microfluids (4)" + }, + "NANO 257": { + "dept": "NANO", + "description": "Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. Cross-listed with MATS 257 and BENG 242. Restricted to BE 75, MS 76, CE 75, and NA 75 majors.\u00a0", + "name": "NANO 257", + "prereqs": [], + "title": "Polymer Science and Engineering (4)" + }, + "NANO 258": { + "dept": "NANO", + "description": "Various nanoscale systems where macroscopic laws of mass, heat, and momentum transfer break down; nonequilibrium statistical mechanics concepts such as transition state and Green-Kubo theories, and molecular simulations for modeling nanoscale transport issues will be introduced.\u00a0", + "name": "NANO 258", + "prereqs": [], + "title": "Nanoscale Transport Phenomenon (4)" + }, + "NANO 259": { + "dept": "NANO", + "description": "Physics and chemistry of heterogeneous catalysis; adsorption-desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with CENG 253. Students may not receive credit for both NANO 259 and CENG 253. ", + "name": "NANO 259", + "prereqs": [], + "title": "Heterogeneous Catalysis (4)" + }, + "NANO 260": { + "dept": "NANO", + "description": "Chemical reaction kinetics coupled with material and energy transport processes for fabrication of nanostructured materials and devices. Chemical vapor deposition, etching, and patterning of films. Nanoparticle, nanofiber, and nanotube growth. Theory, simulation, and reactor design.\u00a0", + "name": "NANO 260", + "prereqs": [], + "title": "Nanofabrication Reaction Engineering (4)" + }, + "NANO 261": { + "dept": "NANO", + "description": "Examines the role nanotechnology will play in addressing the many scientific and engineering challenges for new energy production. Topics include nanotechnology\u2019s role in improving photovoltaics, fuel-cells, batteries, energy transmission, and conversion of renewable (green) and nonrenewable sources.\u00a0", + "name": "NANO 261", + "prereqs": [], + "title": "Nanoscale Energy Technology (4)" + }, + "NANO 262": { + "dept": "NANO", + "description": "This course illustrates how the ability to tailor the properties of nanomaterials can be used for designing powerful sensing and biosensing devices. Nanosensors based on metal nanoparticles, semiconductor nanowires and nanocrystals, and carbon nanotubes will be covered.\u00a0", + "name": "NANO 262", + "prereqs": [], + "title": "Nanosensors (4)" + }, + "NANO 263": { + "dept": "NANO", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Introduction to thin film and nanomagnetism, including interfacial magnetism, coupling and magneto-transport. Application of nanomagnetism in devices including magnetic recording, MRAM, magnetic processing, and biomedical engineering.\u00a0", + "name": "NANO 263", + "prereqs": [], + "title": "Magnetic Nanodevices (4)" + }, + "NANO 264": { + "dept": "NANO", + "description": "Course covers concept in nano and solid-state chemistry for graduate students, with the objective of understanding nanomaterials from a chemical perspective. Topics include descriptive crystal chemistry, structure determination, free electron gas and dimensional solids, tight-binding approximation, band structure. Recommended preparation: Background equivalent to NANO 203.", + "name": "NANO 264", + "prereqs": [], + "title": "Solid-State and Nanochemistry (4)" + }, + "NANO 265": { + "dept": "NANO", + "description": "The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. Cross-listed with MATS 201A, MAE 271A and ECE 238A.\u00a0", + "name": "NANO 265", + "prereqs": [], + "title": "Thermodynamics of Solids (4)" + }, + "NANO 266": { + "dept": "NANO", + "description": "Application of quantum mechanical modeling methods (both solid state and computational chemistry) in the study of materials and nanostructures; density functional theory (DFT) and approximations; Hartree-Fock and beyond HF approximations; hybrid density functional theory; beyond DFT (GW, TDDFT); ab initio molecular dynamics; materials properties (mechanical, electrochemical, electronic, transport, nano-scale effects on properties) from quantum mechanical simulations; high-throughput computation.\u00a0", + "name": "NANO 266", + "prereqs": [], + "title": "Quantum Mechanical Modeling of Materials and Nanostructures (4)" + }, + "NANO 268": { + "dept": "NANO", + "description": "Introduction to DNA nanotechnology. Topics include basic design principles for DNA nanostructures and DNA origami, DNA nanomotors, computing, and the use of DNA nanotechnology in organizing other materials, nanofabrication, biosensing, and drug delivery.", + "name": "NANO 268", + "prereqs": [], + "title": "DNA Nanotechnology (4)" + }, + "NANO 269": { + "dept": "NANO", + "description": "Fundamentals of photovoltaic energy conversion; limiting efficiencies, loss mechanisms. Nanoscale effects in semiconductor, thin film, and organic photovoltaics. Emphasis on emerging nanotechnologies including nanowires, heterostructures, hybrid materials, quantum dots, transparent conducting materials, and plasmonics.", + "name": "NANO 269", + "prereqs": [], + "title": "Engineering Solar Cells at the Nanoscale (4)" + }, + "NANO 271": { + "dept": "NANO", + "description": "This course will introduce a background in optics and photonics for nanoscale materials and devices and explore light-matter interactions on the nanoscale. Fundamentals of light absorption, emission, lasing, and waveguiding in nanoscale structures, optical resonances in metallic (plasmonic) and semiconductor (excitonic) nanomaterials.", + "name": "NANO 271", + "prereqs": [], + "title": "Nanophotonics (4)" + }, + "NANO 272": { + "dept": "NANO", + "description": "General overview of flexible/stretchable electronic devices, with a focus on the enabling nanomaterials and structures that lead to the tolerance to extreme physical deformations. Relevant nanofabrication techniques and manufacturing approaches will also be included.", + "name": "NANO 272", + "prereqs": [], + "title": "Soft Electronics (4)" + }, + "NANO 275": { + "dept": "NANO", + "description": "Overview of of graphene and other 2-D materials fundamental properties, applications, and experimental practice. Theory covers band structure, Dirac cone, mobility, and Fermi level tuning. Applications cover electronics and optoelectronics. Lab sessions include graphene and other 2-D materials manipulation and measurement.", + "name": "NANO 275", + "prereqs": [], + "title": "Two-Dimensional Materials: Properties, Applications, and Practice (4)" + }, + "NANO 279": { + "dept": "NANO", + "description": "Electrochemistry and electrochemical engineering for energy applications. Thermodynamics and kinetics of electrochemical reactions; fundamental principles of batteries, super capacitors, fuel cells, and electrochemical synthesis systems; electrochemical analysis of these systems, engineering design considerations, and modeling. Practical device design and fabrication will be covered in greater detail.", + "name": "NANO 279", + "prereqs": [], + "title": "Advanced Electrochemical Energy Engineering (4)" + }, + "NANO 280": { + "dept": "NANO", + "description": "This course will cover fundamental concepts and laboratory techniques to study the chemical and physical properties of colloids and nanoparticles. Topics covered include: colloid and surface forces, Brownian motion, aggregation, steric stabilization, optical characterization techniques, and self-assembly. Recent developments in colloids and nanotechnology will be discussed throughout the course.", + "name": "NANO 280", + "prereqs": [], + "title": "Colloids and Nanoparticles (4)" + }, + "NANO 296": { + "dept": "NANO", + "description": "Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only.\u00a0", + "name": "NANO 296", + "prereqs": [], + "title": "Independent Study in NanoEngineering (4)" + }, + "NANO 299": { + "dept": "NANO", + "description": "Graduate research in NanoEngineering. S/U grades only. May be taken for credit four times for a maximum of twelve units. ", + "name": "NANO 299", + "prereqs": [], + "title": "Graduate Research in NanoEngineering (1\u201312)" + }, + "NANO 4": { + "dept": "NANO", + "description": "Introduction to NanoEngineering lab-based skills. Hands-on training and experimentation with nanofabrication techniques, integration, and analytical tools. This class is for NANO majors who are incoming freshmen, to be taken their first year.\u00a0This class is for NanoEngineering majors who are incoming freshmen, to be taken their first year. P/NP grades only. ", + "name": "NANO 4", + "prereqs": [], + "title": "Experience\u00a0NanoEngineering\u00a0(1)" + }, + "NEU 199": { + "dept": "NEU", + "description": "Laboratory research under the supervision of individual members of the faculty of the neurosciences department in one or a combination of neurosciences disciplines, e.g., neuroanatomy, neurophysiology, neurochemistry, neuropharmacology. (P/NP grades only.) (F,W,S)", + "name": "NEU 199", + "prereqs": [], + "title": "Independent Research (2 or 4)" + }, + "NEU 200A-B-C": { + "dept": "NEU", + "description": "These courses are designed for graduate students in the neurosciences and other departments that are part of the interdisciplinary program (i.e., Biology, Cog Sci, Psychology). These courses have been designed to cover as much basic neuroscience as possible in three quarters of study. It will combine two three-hour meetings each week with a 1.5 hour lecture and a 1.5 hour discussion of papers. These will be required courses for all first-year neurosciences graduate students. Biology will cross-list courses under Biology headings, making it a requirement of first-year Biology graduate students. ", + "name": "NEU 200A-B-C", + "prereqs": [], + "title": "Basic Neuroscience (4-4-4)" + }, + "NEU 210": { + "dept": "NEU", + "description": "For incoming doctoral students in neurobiology, computational neurosciences, and neurosciences. During the first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ", + "name": "NEU 210", + "prereqs": [], + "title": "Neurobiology Boot Camp (4)" + }, + "NEU 221": { + "dept": "NEU", + "description": "Specialized advanced topic areas in neurosciences will be addressed in an interactive seminar course format. A different specific topic will be considered each quarter as announced in advance. Students will each present an aspect of the topic area and participate in discussions. ", + "name": "NEU 221", + "prereqs": [], + "title": "Advanced Topics in Neurosciences (2)" + }, + "NEU 225": { + "dept": "NEU", + "description": "This is a practical course designed to emphasize the relationships between experimental design, statistical methods, and biomedical research. The assumptions behind the statistical tests, their appropriate use, and examples of misuse will be discussed. ", + "name": "NEU 225", + "prereqs": [], + "title": "Statistical Methods and Experimental Design (2)" + }, + "NEU 241": { + "dept": "NEU", + "description": "This course will cover \u201cethical\u201d issues in academia, including dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss \u201csurvival\u201d issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. (W)", + "name": "NEU 241", + "prereqs": [], + "title": "Ethics and Survival Skills in Academia (3)" + }, + "NEU 243": { + "dept": "NEU", + "description": "Psychological processes including attention, perception, and memory will be studied in connection with event-related potentials of the human brain. The interrelations among psychological and physiological events will be explored in order to arrive at unified concepts of human information processing. ", + "name": "NEU 243", + "prereqs": [ + "NEU 238" + ], + "title": "Physiological Basis of Human Information (2)" + }, + "NEU 259": { + "dept": "NEU", + "description": "This course is to introduce graduate students in the neurosciences to research methods used in electron microscopy (EM) through one hour of formal lecture, one hour of seminar, three hours of demonstration, and three hours of supervised laboratory work per week. Students will become familiar with sectioning EM, scanning EM, and freeze-fracture EM. ", + "name": "NEU 259", + "prereqs": [], + "title": "Workshop in Electron Microscopy (4)" + }, + "NEU 260": { + "dept": "NEU", + "description": "Students will review basic principles of light and electron microscopy and learn a variety of basic and advanced microscopy methods through lecture and hands-on training. Each student will have his or her own project. Additional supervised instrument time is available. ", + "name": "NEU 260", + "prereqs": [], + "title": "Light and Electron Microscopy of Cells and Tissue (4)" + }, + "NEU 265": { + "dept": "NEU", + "description": "Anatomical and pharmacological substrates activated following tissue or nerve injury will be discussed. Changes in afferents and spinal cord, including increased expressions of channels and receptors, during chronic pain states will be emphasized. Clinical relevance and treatment will be included. (S/U grades only.) (F)", + "name": "NEU 265", + "prereqs": [], + "title": "Mechanisms of Pain (2)" + }, + "NEU 266": { + "dept": "NEU", + "description": "Course focuses on developmental processes during formation of neural circuits. Molecular, genetic, cellular mechanisms controlling neurogenesis, neuronal differentiation, positioning (migration), axon/dendrite patterning, and synapse formation will be discussed. Role of neural activity shaping circuit formation will be explored. ", + "name": "NEU 266", + "prereqs": [], + "title": "Development of Neural Circuits (4)" + }, + "NEU 268": { + "dept": "NEU", + "description": "Molecular and cellular approaches to the study of the nervous system are advancing neurobiology at an increasingly rapid pace. This graduate-level course will address the latest molecular advances in the areas of: 1) synapse formation, neurotransmitter release, and neurotransmitter receptors; 2) nerve growth factors, their receptors, and neuronal apoptosis; 3) transcriptional regulation in the brain and peripheral nervous system; 4) cell culture, transgenic, and knock-out mouse model systems; 5) the molecular bases of genetic, psychiatric, and degenerative diseases of the nervous system; and 6) the current molecular knowledge of vision, sensory transduction, circadian rhythms, learning, memory, and behavior.", + "name": "NEU 268", + "prereqs": [], + "title": "Molecular and Cellular Neurobiology (4)" + }, + "NEU 270A": { + "dept": "NEU", + "description": "This course will blend research and clinical perspectives to allow comprehensive learning of CNS diseases. For each two-week disease block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.", + "name": "NEU 270A", + "prereqs": [], + "title": "Neurobiology of Disease: Mechanisms of Neurodegeneration (4)" + }, + "NEU 270B": { + "dept": "NEU", + "description": "This course will blend research and clinical perspectives to allow comprehensive learning of CNS neurodevelopmental disorders. For each two-week block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.", + "name": "NEU 270B", + "prereqs": [], + "title": "Neurobiology of Disease: Neurodevelopmental Disorders (4)" + }, + "NEU 276": { + "dept": "NEU", + "description": "Neurosciences group faculty members and graduate students will present and discuss ongoing research. Attendance will be mandatory for first- and second-year graduate students. Faculty, advanced graduate students, medical students, postdoctoral trainees, and other interested parties are encouraged to attend. (F,W,S)", + "name": "NEU 276", + "prereqs": [], + "title": "Neuroscience Research Rounds (1)" + }, + "NEU 277": { + "dept": "NEU", + "description": "An examination of the molecular and biochemical bases of drug and transmitter action. The course is devoted to receptor mechanisms, neuropharmacology, and drug action on excitable tissues. ", + "name": "NEU 277", + "prereqs": [], + "title": "Neuropsychopharmacology (4)" + }, + "NEU 280": { + "dept": "NEU", + "description": "This intensive writing course offers graduate students in the neurosciences the opportunity to propose and defend an original research project. Students are required to select a research problem in the neurosciences and propose and experimental approach for solving it. ", + "name": "NEU 280", + "prereqs": [], + "title": "Minor Proposition (4)" + }, + "NEU 285": { + "dept": "NEU", + "description": "Issues and Dilemmas in Clinical Trials (2)", + "name": "NEU 285", + "prereqs": [], + "title": "Clinical Trails:" + }, + "NEU 296": { + "dept": "NEU", + "description": "Independent study. (S/U grades only.) (F,W,S)", + "name": "NEU 296", + "prereqs": [], + "title": "Neurosciences Research Rotation (1\u201312)" + }, + "NEU 298": { + "dept": "NEU", + "description": "Independent Study Project (ISP) (1\u201312)", + "name": "NEU 298", + "prereqs": [], + "title": "Neurosciences" + }, + "NEU 299": { + "dept": "NEU", + "description": "Independent study. (S/U grades only.) (F,W,S)", + "name": "NEU 299", + "prereqs": [], + "title": "Neurosciences Research (1\u201312)" + }, + "NEU 401": { + "dept": "NEU", + "description": "General Clinical Selective Clerkship (7)", + "name": "NEU 401", + "prereqs": [], + "title": "Neurology" + }, + "NEU 426": { + "dept": "NEU", + "description": "Subinterns are responsible for the primary care of hospitalized pediatric neurology patients under direct resident and attending physician supervision. Students will perform procedures such as lumbar puncture and participate in night call, daily teaching round, neurology grand rounds, and journal clubs. ", + "name": "NEU 426", + "prereqs": [ + "NEU 401" + ], + "title": "Subintern Pediatric Neurology (7)" + }, + "NEU 427": { + "dept": "NEU", + "description": "The student will rotate through the general and subspecialty (stroke, epilepsy, headache, nerve, and muscle) neurology clinics based at UC San Diego Medical Center, Perlman, VAMC, and Children\u2019s Hospital. There are lectures and clinical conferences. ", + "name": "NEU 427", + "prereqs": [ + "NEU 401" + ], + "title": "Neurology Outpatient (7)" + }, + "NEU 496": { + "dept": "NEU", + "description": "Independent clinical study for medical students (S/U grades only.) (F,W,S)", + "name": "NEU 496", + "prereqs": [], + "title": "Clinical Independent Study (1\u201321)" + }, + "NEU 500": { + "dept": "NEU", + "description": "Participation in the department teaching program is required of all students working toward a PhD. In general, students are not expected to teach in the first year, but are required to serve as teaching assistants or tutors for one quarter at any time during their subsequent years of training. The amount of teaching required is equivalent to the duties expected of a 50 percent assistant for one quarter. ", + "name": "NEU 500", + "prereqs": [], + "title": "Apprenticeship Teaching (1\u20134)" + }, + "NEUG 240": { + "dept": "NEUG", + "description": "This course teaches mathematical concepts in neuroscience to students inexperienced in computation and mathematics. Topics from linear algebra, calculus, information theory, digital signal processing, graph theory, and machine learning will be covered. An optional weekly tutorial will teach computing basics. Priority enrollment is given to PhD students. MS students may enroll with instructor approval. Calculus AB is recommended but not required.", + "name": "NEUG 240", + "prereqs": [], + "title": "Mathematical Foundations for Computational Neuroscience (3)" + }, + "PHIL 1": { + "dept": "PHIL", + "description": "A general introduction to some of the fundamental questions, texts, and", + "name": "PHIL 1", + "prereqs": [], + "title": "Introduction to Philosophy (4)" + }, + "PHIL 10": { + "dept": "PHIL", + "description": "Basic concepts and techniques in both informal and formal logic and reasoning, including a discussion of argument, inference, proof, and common fallacies, and an introduction to the syntax, semantics, and proof method in sentential (propositional) logic. May be used to fulfill general-education requirements for Warren and Eleanor Roosevelt Colleges.", + "name": "PHIL 10", + "prereqs": [], + "title": "Introduction to Logic (4)" + }, + "PHIL 100": { + "dept": "PHIL", + "description": "A study of Socrates and/or Plato through major dialogues of Plato. Possible topics include the virtues and happiness; weakness of the will; political authority and democracy; the theory of Forms and sensible flux; immortality; relativism, skepticism, and knowledge. May be repeated for credit with change of content and approval of instructor. ", + "name": "PHIL 100", + "prereqs": [], + "title": "Plato (4)" + }, + "PHIL 101": { + "dept": "PHIL", + "description": "A study of major issues in Aristotle\u2019s works, such as the categories; form and matter; substance, essence, and accident; the soul; virtue, happiness, and politics. ", + "name": "PHIL 101", + "prereqs": [], + "title": "Aristotle (4)" + }, + "PHIL 102": { + "dept": "PHIL", + "description": "A study of selected texts from the main schools of Hellenistic philosophy\u2014Stoicism, Epicureanism, and Skepticism. ", + "name": "PHIL 102", + "prereqs": [], + "title": "Hellenistic Philosophy (4)" + }, + "PHIL 105": { + "dept": "PHIL", + "description": "The major writings of one or more of the British empiricists\u2014Locke, Berkeley, Hume, and Reid. May be repeated for credit with change of content and approval of instructor. ", + "name": "PHIL 105", + "prereqs": [], + "title": "The Empiricists (4)" + }, + "PHIL 106": { + "dept": "PHIL", + "description": "A study of selected portions of The Critique of Pure Reason and other theoretical writings and/or his major works in moral theory. May be repeated for credit with change in content and approval of the instructor. ", + "name": "PHIL 106", + "prereqs": [ + "PHIL 111", + "PHIL 112", + "PHIL 33", + "PHIL 32", + "PHIL 104", + "PHIL 105" + ], + "title": "Kant (4)" + }, + "PHIL 107": { + "dept": "PHIL", + "description": "A study of one or more of Hegel\u2019s major works, in particular, The Phenomenology of Spirit and The Philosophy of Right. Readings and discussion may also include other figures in the Idealist tradition\u2014such as Fichte, H\u00f6lderlin, and Schelling\u2014and critics of the Idealist tradition\u2014such as Marx and Kierkegaard. ", + "name": "PHIL 107", + "prereqs": [], + "title": "Hegel (4)" + }, + "PHIL 108": { + "dept": "PHIL", + "description": "A study of one or more figures in nineteenth-century philosophy, such as Schopenhauer, Nietzsche, Kierkegaard, Marx, Emerson, Thoreau, James, and Mill. The focus may be on particular figures or intellectual themes and traditions. May be repeated for credit with change of content and approval of instructor. ", + "name": "PHIL 108", + "prereqs": [], + "title": "Nineteenth-Century Philosophy (4)" + }, + "PHIL 109": { + "dept": "PHIL", + "description": "Central texts, figures, and traditions in", + "name": "PHIL 109", + "prereqs": [], + "title": "History of Analytic Philosophy (4)" + }, + "PHIL 110": { + "dept": "PHIL", + "description": "An examination of ancient Greek philosophy, focusing on major works of Plato and Aristotle. Philosophy 110, Philosophy 111, and Philosophy 112 should be taken in order. ", + "name": "PHIL 110", + "prereqs": [], + "title": "History of Philosophy: Ancient (4)" + }, + "PHIL 111": { + "dept": "PHIL", + "description": "An examination of seventeenth- and eighteenth-century philosophy, focusing on major works of Descartes, Locke, and Hume. Philosophy 110, Philosophy 111, and Philosophy 112 should be taken in order. ", + "name": "PHIL 111", + "prereqs": [ + "PHIL 110" + ], + "title": "History of Philosophy: Early Modern (4)" + }, + "PHIL 112": { + "dept": "PHIL", + "description": "An examination of late eighteenth and nineteenth-century philosophy, focusing on major works of Kant and Hegel. Philosophy 110, Philosophy 111, and Philosophy 112 should be taken in order. ", + "name": "PHIL 112", + "prereqs": [ + "PHIL 111" + ], + "title": "History of Philosophy: Late Modern (4)" + }, + "PHIL 115": { + "dept": "PHIL", + "description": "This course provides an introduction to the techniques of philosophical inquiry through detailed study of selected philosophical texts and through extensive training in philosophical writing based on those texts. Enrollment limited and restricted to majors; must be taken for letter grade. May not be repeated for credit. ", + "name": "PHIL 115", + "prereqs": [], + "title": "Philosophical Methods Seminar (4)" + }, + "PHIL 12": { + "dept": "PHIL", + "description": "Strategies of scientific inquiry: how elementary logic, statistical inference, and experimental design are integrated to evaluate hypotheses in the natural and social sciences. May be used to fulfill general-education requirements for Marshall, Warren, and Eleanor Roosevelt Colleges.", + "name": "PHIL 12", + "prereqs": [], + "title": "Scientific Reasoning (4)" + }, + "PHIL 120": { + "dept": "PHIL", + "description": "The syntax, semantics, and proof-theory of first-order predicate logic with identity, emphasizing both conceptual issues and practical skills (e.g., criteria for logical truth, consistency, and validity; the application of logical methods to everyday as well as scientific reasoning). ", + "name": "PHIL 120", + "prereqs": [ + "PHIL 10" + ], + "title": "Symbolic Logic I (4)" + }, + "PHIL 122": { + "dept": "PHIL", + "description": "Topics vary from year to year. They include: Metalogic (Mathematical Logic), Modal Logic, Foundations of Logic, Foundations of Set Theory, G\u00f6del\u2019s Incompleteness Theorems, and others. ", + "name": "PHIL 122", + "prereqs": [ + "PHIL 120" + ], + "title": "Advanced Topics in Logic (4)" + }, + "PHIL 123": { + "dept": "PHIL", + "description": "Philosophical issues underlying standard and nonstandard logics, the nature of logical knowledge, the relation between logic and mathematics, the revisability of logic, truth and logic, ontological commitment and ontological relativity, logical consequence, etc. May be repeated for credit with change in content and approval of instructor. ", + "name": "PHIL 123", + "prereqs": [ + "PHIL 120" + ], + "title": "Philosophy of Logic (4)" + }, + "PHIL 124": { + "dept": "PHIL", + "description": "The character of logical and mathematical truth and knowledge; the relations between logic and mathematics; the significance of Godel\u2019s Incompleteness Theorem; Platonism, logicism, and more recent approaches. ", + "name": "PHIL 124", + "prereqs": [ + "PHIL 120" + ], + "title": "Philosophy of Mathematics (4)" + }, + "PHIL 13": { + "dept": "PHIL", + "description": "An inquiry into the nature of morality and its role in personal or social life by way of classical and/or contemporary works in ethics. May be used to fulfill general-education requirements for Muir and Marshall Colleges.", + "name": "PHIL 13", + "prereqs": [], + "title": "Introduction to Philosophy: Ethics (4)" + }, + "PHIL 130": { + "dept": "PHIL", + "description": "Central problems in metaphysics, such as free will and determinism, the mind-body problem, personal identity, causation, primary and secondary qualities, the nature of universals, necessity, and identity. ", + "name": "PHIL 130", + "prereqs": [], + "title": "Metaphysics (4)" + }, + "PHIL 131": { + "dept": "PHIL", + "description": "An in-depth study of some central problem, figure, or tradition in metaphysics. May be repeated for credit with change of content and approval of instructor. ", + "name": "PHIL 131", + "prereqs": [], + "title": "Topics in Metaphysics (4)" + }, + "PHIL 132": { + "dept": "PHIL", + "description": "Central problems in epistemology such as skepticism; a priori knowledge; knowledge of other minds; self-knowledge; the problem of induction; foundationalist, coherence, and causal theories of knowledge. ", + "name": "PHIL 132", + "prereqs": [], + "title": "Epistemology (4)" + }, + "PHIL 134": { + "dept": "PHIL", + "description": "Examination of contemporary debates about meaning, reference, truth, and thought. Topics include descriptional theories of reference, sense and reference, compositionality, truth, theories of meaning, vagueness, metaphor, and natural and formal languages. ", + "name": "PHIL 134", + "prereqs": [], + "title": "Philosophy of Language (4)" + }, + "PHIL 136": { + "dept": "PHIL", + "description": "Different conceptions of the nature of mind and its relation to the physical world. Topics include identity theories, functionalism, eliminative materialism, internalism and externalism, subjectivity, other minds, consciousness, self-knowledge, perception, memory, and imagination. ", + "name": "PHIL 136", + "prereqs": [], + "title": "Philosophy of Mind (4)" + }, + "PHIL 137": { + "dept": "PHIL", + "description": "The nature of action and psychological explanation. Topics include action individuation, reasons as causes, psychological laws, freedom and responsibility, weakness of will, self-deception, and the emotions. ", + "name": "PHIL 137", + "prereqs": [], + "title": "Moral Psychology (4)" + }, + "PHIL 138": { + "dept": "PHIL", + "description": "A study of the nature and significance of responsibility. Possible topics include: freedom, determinism, and responsibility; moral luck; responsibility and reactive attitudes such as blame and forgiveness; responsibility and situationism; moral and criminal responsibility; responsibility and excuse; insanity and psychopathy, immaturity, addiction, provocation, and duress. ", + "name": "PHIL 138", + "prereqs": [], + "title": "Responsibility (4)" + }, + "PHIL 139": { + "dept": "PHIL", + "description": "Social justice issues as they arise across the borders of nation-states. Topics may include nationalism and cosmopolitanism, theories of just war and just warfare, issues of migration and immigration, global distributive justice and fair trade, and international cooperation in the face of global problems such as climate change and human rights violations. ", + "name": "PHIL 139", + "prereqs": [], + "title": "Global Justice (4)" + }, + "PHIL 14": { + "dept": "PHIL", + "description": "to Philosophy: The Nature of Reality (4)", + "name": "PHIL 14", + "prereqs": [], + "title": "Introduction" + }, + "PHIL 145": { + "dept": "PHIL", + "description": "Central problems in philosophy of science, such as the nature of confirmation and explanation, the nature of scientific revolutions and progress, the unity of science, and realism and antirealism. ", + "name": "PHIL 145", + "prereqs": [], + "title": "Philosophy of Science (4)" + }, + "PHIL 146": { + "dept": "PHIL", + "description": "Philosophical problems in the development of modern physics, such as the philosophy of space and time, the epistemology of geometry, the philosophical significance of Einstein\u2019s theory of relativity, the interpretation of quantum mechanics, and the significance of modern cosmology. ", + "name": "PHIL 146", + "prereqs": [], + "title": "Philosophy of Physics (4)" + }, + "PHIL 147": { + "dept": "PHIL", + "description": "Philosophical problems in the biological sciences, such as the relation between biology and the physical sciences, the status and structure of evolutionary theory, and the role of biology in the social sciences. ", + "name": "PHIL 147", + "prereqs": [], + "title": "Philosophy of Biology (4)" + }, + "PHIL 148": { + "dept": "PHIL", + "description": "Investigation of ethical and epistemological questions concerning our relationship to the environment. Topics may include the value of nature, biodiversity, policy and science, and responsibility to future generations. ", + "name": "PHIL 148", + "prereqs": [], + "title": "Philosophy and the Environment (4)" + }, + "PHIL 149": { + "dept": "PHIL", + "description": "Philosophical issues raised by psychology, including the nature of psychological explanation, the role of nature versus nurture, free will and determinism, and the unity of the person. ", + "name": "PHIL 149", + "prereqs": [], + "title": "Philosophy of Psychology (4)" + }, + "PHIL 15": { + "dept": "PHIL", + "description": "to Philosophy: Knowledge and Its Limits (4)", + "name": "PHIL 15", + "prereqs": [], + "title": "Introduction" + }, + "PHIL 150": { + "dept": "PHIL", + "description": "Theoretical, empirical, methodological, and", + "name": "PHIL 150", + "prereqs": [], + "title": "Philosophy of the Cognitive Sciences (4)" + }, + "PHIL 151": { + "dept": "PHIL", + "description": "An introduction to elementary neuroanatomy and neurophysiology and an examination of theoretical issues in cognitive neuroscience and their implications for traditional philosophical conceptions of the relation between mind and body, perception, consciousness, understanding, emotion, and the self. ", + "name": "PHIL 151", + "prereqs": [], + "title": "Philosophy of Neuroscience (4)" + }, + "PHIL 152": { + "dept": "PHIL", + "description": "Philosophical issues of method and substance in the social sciences, such as causal and interpretive models of explanation, structuralism and methodological individualism, value neutrality, and relativism. ", + "name": "PHIL 152", + "prereqs": [], + "title": "Philosophy of Social Science (4)" + }, + "PHIL 155": { + "dept": "PHIL", + "description": "Introduction to Mexican philosophy with discussion of the work of such figures as Las Casas, Sor Juana Ines de la Cruz, Vasconcelos, Uranga, Zea, Villoro, Dussel, Hierro, Lara, and Hurtado. Topics may include historical movements, such as scholasticism, positivism, Mexican existentialism, and indigenous thought, as well as contemporary developments and the relationship to philosophy in the United States, Europe, and elsewhere.", + "name": "PHIL 155", + "prereqs": [], + "title": "Mexican Philosophy (4)" + }, + "PHIL 16": { + "dept": "PHIL", + "description": "An introduction to philosophy which uses science fiction to make abstract philosophical problems vivid. Science fiction themes may include time travel, teleportation, virtual reality, super-intelligent robots, futuristic utopias, and parallel universes. These scenarios raise philosophical questions about knowledge, reality, ethics, and the mind.", + "name": "PHIL 16", + "prereqs": [], + "title": "Science Fiction and Philosophy (4)" + }, + "PHIL 160": { + "dept": "PHIL", + "description": "Systematic and/or historical perspectives on central issues in ethical theory such as deontic, contractualist, and consequentialist conceptions of morality; rights and special obligations; the role of happiness and virtue in morality; moral conflict; ethical objectivity and relativism; and the rational authority of morality. ", + "name": "PHIL 160", + "prereqs": [], + "title": "Ethical Theory (4)" + }, + "PHIL 161": { + "dept": "PHIL", + "description": "Central issues and texts in the history of ethics. Subject matter can vary, ranging from one philosopher (e.g., Aristotle, Hobbes, Kant, or Mill) to a historical tradition (e.g., Greek ethics or the British moralists). May be repeated for credit with change in content and approval of instructor. ", + "name": "PHIL 161", + "prereqs": [], + "title": "Topics in the History of Ethics (4)" + }, + "PHIL 162": { + "dept": "PHIL", + "description": "An examination of contemporary moral issues, such as abortion, euthanasia, war, affirmative action, and freedom of speech. ", + "name": "PHIL 162", + "prereqs": [], + "title": "Contemporary Moral Issues (4)" + }, + "PHIL 163": { + "dept": "PHIL", + "description": "Moral issues in medicine and the biological sciences, such as patient\u2019s rights and physician\u2019s responsibilities, abortion and euthanasia, the distribution of health care, experimentation, and genetic intervention. ", + "name": "PHIL 163", + "prereqs": [], + "title": "Biomedical Ethics (4)" + }, + "PHIL 164": { + "dept": "PHIL", + "description": "Philosophical issues involved in the development of modern science, the growth of technology, and control of the natural environment. The interaction of science and technology with human nature and political and moral ideals. ", + "name": "PHIL 164", + "prereqs": [], + "title": "Technology and Human Values (4)" + }, + "PHIL 165": { + "dept": "PHIL", + "description": "Examination of freedom and equality under the US Constitution, focusing on Supreme Court cases concerning discrimination on grounds of race, ethnic background, gender, undocumented status, wealth, and sexual orientation, and cases regarding contraceptives, abortion, interracial marriage, polygamy, and same-sex marriage. ", + "name": "PHIL 165", + "prereqs": [], + "title": "Freedom, Equality, and the Law (4)" + }, + "PHIL 166": { + "dept": "PHIL", + "description": "Central issues about the justification, proper functions, and limits of the state through classic texts in the history of political philosophy by figures such as Plato, Aristotle, Hobbes, Locke, Rousseau, Mill, and Marx. ", + "name": "PHIL 166", + "prereqs": [], + "title": "Classics in Political Philosophy (4)" + }, + "PHIL 167": { + "dept": "PHIL", + "description": "Different perspectives on central issues in contemporary political philosophy, such as the nature of state authority and political obligation, the limits of government and individual liberty, liberalism and its critics, equality and distributive justice. ", + "name": "PHIL 167", + "prereqs": [], + "title": "Contemporary Political Philosophy (4)" + }, + "PHIL 168": { + "dept": "PHIL", + "description": "A study of issues in analytical jurisprudence such as the nature of law, the relation between law and morality, and the nature of legal interpretation and issues in normative jurisprudence such as the justification of punishment, paternalism and privacy, freedom of expression, and affirmative action. ", + "name": "PHIL 168", + "prereqs": [], + "title": "Philosophy of Law (4)" + }, + "PHIL 169": { + "dept": "PHIL", + "description": "Philosophical examination of core concepts and theses in feminism, feminist philosophy, and critiques of traditional philosophical approaches to morality, politics, and science, from a feminist perspective. May also treat the historical development of feminist philosophy and its critiques. May be taken for credit two times with permission of instructor. ", + "name": "PHIL 169", + "prereqs": [], + "title": "Feminism and Philosophy (4)" + }, + "PHIL 170": { + "dept": "PHIL", + "description": "A philosophical investigation of the topics of race and racism. The role of \u201crace\u201d in ordinary speech. The ethics of racial discourse. Anthropological and biological conceptions of race. The social and political significance of racial categories. Post-racialist conceptions of race. ", + "name": "PHIL 170", + "prereqs": [], + "title": "Philosophy and Race (4)" + }, + "PHIL 173": { + "dept": "PHIL", + "description": "An in-depth exploration of an issue in bioethics. Topics will vary, and may include the ethics of genetic engineering, mental capacity and genuinely informed consent, the just distribution of health care, the ethics of geo-engineering, and the ethics of climate change and health. May be taken for credit two times. ", + "name": "PHIL 173", + "prereqs": [], + "title": "Topics in Bioethics (4)" + }, + "PHIL 175": { + "dept": "PHIL", + "description": "Central issues in philosophical aesthetics such as the nature of art and aesthetic experience, the grounds of artistic interpretation and evaluation, artistic representation, and the role of the arts in education, culture, and politics. May be taken for credit two times. ", + "name": "PHIL 175", + "prereqs": [], + "title": "Aesthetics (4)" + }, + "PHIL 177": { + "dept": "PHIL", + "description": "A study of philosophical themes contained in selected fiction, drama, or poetry, and the philosophical issues that arise in the interpretation, appreciation, and criticism of literature. ", + "name": "PHIL 177", + "prereqs": [], + "title": "Philosophy and Literature (4)" + }, + "PHIL 178": { + "dept": "PHIL", + "description": "Careful, line-by-line translation of passages of intermediate difficulty from German philosophical texts, both classic (Kant, Fichte, Hegel, Schopenhauer) and contemporary (Heidegger, Wittgenstein, Habermas). P/NP grades only. May be taken for credit six times as topics vary. LIGM 1D or equivalent level of study recommended. ", + "name": "PHIL 178", + "prereqs": [], + "title": "Topics in German Philosophy Translation\u2014Intermediate (2)" + }, + "PHIL 179": { + "dept": "PHIL", + "description": "Continuation of Philosophy 178 in the careful, line-by-line translation of passages of advanced difficulty from German philosophical texts, both classic (Kant, Fichte, Hegel, Schopenhauer) and contemporary (Heidegger, Wittgenstein, Habermas). May be repeated for credit as topics vary. ", + "name": "PHIL 179", + "prereqs": [ + "PHIL 178" + ], + "title": "Topics in German Philosophy Translation\u2014Advanced (2)" + }, + "PHIL 180": { + "dept": "PHIL", + "description": "An examination of the phenomenological tradition through the works of its major classical and/or contemporary representatives. Authors studied will vary and may include Brentano, Husserl, Heidegger, Merleau-Ponty, Levinas, Bourdieu. ", + "name": "PHIL 180", + "prereqs": [], + "title": "Phenomenology (4)" + }, + "PHIL 181": { + "dept": "PHIL", + "description": "Classical texts and issues of existentialism. Authors studied will vary and may include Nietzsche, Kierkegaard, Sartre, and Heidegger. ", + "name": "PHIL 181", + "prereqs": [], + "title": "Existentialism (4)" + }, + "PHIL 183": { + "dept": "PHIL", + "description": "The focus will be on a leading movement in continental philosophy (e.g., the critical theory of the Frankfurt school, structuralism and deconstruction, postmodernism) or some particular issue that has figured in these traditions (e.g., freedom, subjectivity, historicity, authenticity). May be repeated for credit with change in content and approval of instructor. ", + "name": "PHIL 183", + "prereqs": [], + "title": "Topics in Continental Philosophy (4)" + }, + "PHIL 185": { + "dept": "PHIL", + "description": "A general introduction to the philosophy of religion through the study of classical and/or contemporary texts. Among the issues to be discussed are the existence and nature of God, the problem of evil, the existence of miracles, the relation between reason and revelation, and the nature of religious language. ", + "name": "PHIL 185", + "prereqs": [], + "title": "Philosophy of Religion (4)" + }, + "PHIL 191A": { + "dept": "PHIL", + "description": "Independent study by special arrangement with and under the supervision of a faculty member, including a proposal for the honors essay. An IP grade will be awarded at the end of this quarter; a final grade will be given for both quarters at the end of 191B. ", + "name": "PHIL 191A", + "prereqs": [], + "title": "Philosophy Honors (4)" + }, + "PHIL 191B": { + "dept": "PHIL", + "description": "Continuation of 191A: independent study by special arrangement with and under the supervision of a faculty member, leading to the completion of the honors essay. A letter grade for both 191A and 191B will be given at the end of this quarter. ", + "name": "PHIL 191B", + "prereqs": [], + "title": "The Honors Essay (4)" + }, + "PHIL 195": { + "dept": "PHIL", + "description": "Under the supervision of the instructor, student will lead one discussion section of a lower-division philosophy class. The student must attend the lecture for the class and meet regularly with the instructor. Applications are available in the Department of Philosophy. ", + "name": "PHIL 195", + "prereqs": [], + "title": "Introduction to Teaching Philosophy (4)" + }, + "PHIL 199": { + "dept": "PHIL", + "description": "Directed individual study by special arrangement with and under the supervision of a faculty member. (P/NP grades only.) ", + "name": "PHIL 199", + "prereqs": [], + "title": "Directed Individual Study (4)" + }, + "PHIL 200": { + "dept": "PHIL", + "description": "Introduction to philosophical methods of analysis through study of classic historical or contemporary texts. Writing intensive. Enrollment limited to entering graduate students.", + "name": "PHIL 200", + "prereqs": [], + "title": "Proseminar (4)" + }, + "PHIL 201A": { + "dept": "PHIL", + "description": "A study of selected texts or topics in the history of philosophy. Usually the focus will be on a single major text. May be taken for credit nine times with changed content.", + "name": "PHIL 201A", + "prereqs": [], + "title": "Core Course in History (4)" + }, + "PHIL 202": { + "dept": "PHIL", + "description": "An introduction to some central issues in ethical theory with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "name": "PHIL 202", + "prereqs": [], + "title": "Core Course in Ethics (4)" + }, + "PHIL 204A": { + "dept": "PHIL", + "description": "An introduction to one or more central problems in the philosophy of science, or in the philosophy of one of the particular sciences, such as the nature of confirmation and explanation, the nature of scientific knowledge, reductionism, the unity of science, or realism and antirealism. May be taken for credit three times with changed content.", + "name": "PHIL 204A", + "prereqs": [], + "title": "Core Course in Philosophy of Science (4)" + }, + "PHIL 205A": { + "dept": "PHIL", + "description": "An introduction to central topics in metaphysics with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "name": "PHIL 205A", + "prereqs": [], + "title": "Core Course in Metaphysics (4)" + }, + "PHIL 206A": { + "dept": "PHIL", + "description": "An introduction to central topics in epistemology with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "name": "PHIL 206A", + "prereqs": [], + "title": "Core Course in Epistemology (4)" + }, + "PHIL 207": { + "dept": "PHIL", + "description": "An introduction to central topics in philosophy of mind with emphasis on classic texts or contemporary authors.\u00a0May be taken for credit three times with changed content.\u00a0", + "name": "PHIL 207", + "prereqs": [], + "title": "Core Course in Philosophy of Mind (4)" + }, + "PHIL 208": { + "dept": "PHIL", + "description": "An introduction to central topics in philosophy of language with emphasis on classic texts or contemporary authors.\u00a0May be taken for credit three times with changed content. ", + "name": "PHIL 208", + "prereqs": [], + "title": "Core Course in Philosophy of Language (4)" + }, + "PHIL 209A": { + "dept": "PHIL", + "description": "Study and discussion of classic work in history of science, philosophy of science, and of work that attempts to develop a unified science studies approach. Required of all students in the Science Studies Program.", + "name": "PHIL 209A", + "prereqs": [], + "title": "Introduction to Science Studies (4)" + }, + "PHIL 209B": { + "dept": "PHIL", + "description": "Study and discussion of selected topics in the science studies field. Required of all students in the Science Studies Program. The topic varies from year to year and students may, therefore, repeat the course for credit. May be taken for credit three times with changed content.", + "name": "PHIL 209B", + "prereqs": [], + "title": "Seminar in Science Studies (4)" + }, + "PHIL 209C": { + "dept": "PHIL", + "description": "A forum for the presentation and discussion", + "name": "PHIL 209C", + "prereqs": [], + "title": "Colloquium in Science Studies (4)" + }, + "PHIL 209D": { + "dept": "PHIL", + "description": "Contemporary themes and problems in science studies. Focus on recent literature in the history, philosophy, and sociology of science, technology, and medicine.", + "name": "PHIL 209D", + "prereqs": [], + "title": "Advanced Approaches to Science Studies (4)" + }, + "PHIL 210": { + "dept": "PHIL", + "description": "A study of selected texts or topics from the history of Greek philosophy. Usually centers on works by Plato or Aristotle. May be taken for credit six times with changed content.", + "name": "PHIL 210", + "prereqs": [], + "title": "Greek Philosophy (4)" + }, + "PHIL 214": { + "dept": "PHIL", + "description": "A study of selected texts or topics from philosophers of the sixteenth and seventeenth centuries: Descartes, Spinoza, Leibniz, or Locke. May be taken for credit six times with changed content.", + "name": "PHIL 214", + "prereqs": [], + "title": "Early Modern Philosophy (4)" + }, + "PHIL 215": { + "dept": "PHIL", + "description": "A study of selected texts or topics from philosophers of the eighteenth century: for example, Kant or Hume. May be taken for credit six times with changed content.", + "name": "PHIL 215", + "prereqs": [], + "title": "Eighteenth-Century Philosophy (4)" + }, + "PHIL 218": { + "dept": "PHIL", + "description": "A study of the historical development of the analytical movement, with emphasis on major texts. May be taken for credit six times with changed content.", + "name": "PHIL 218", + "prereqs": [], + "title": "Contemporary Analytical Philosophy (4)" + }, + "PHIL 230": { + "dept": "PHIL", + "description": "Topics may include identity, personal identity, universals and particulars, modality and possible worlds, causation, reduction, supervenience, freedom and determinism, space and time, and realism versus antirealism. May be taken for credit six times with changed content.", + "name": "PHIL 230", + "prereqs": [], + "title": "Metaphysics (4)" + }, + "PHIL 232": { + "dept": "PHIL", + "description": "This seminar will cover issues such as rival accounts of knowledge, justification, and warrant, traditional and contemporary perspectives on empiricism, rationalism, and pragmatism, and skepticism. May be taken for credit six times with changed content.", + "name": "PHIL 232", + "prereqs": [], + "title": "Epistemology (4)" + }, + "PHIL 234": { + "dept": "PHIL", + "description": "Central issues in contemporary philosophy of language, such as the nature of linguistic meaning, truth, content, reference, the syntax and semantics of various linguistic constructions, presupposition, speech acts, the epistemology of language understanding and language learning, the mental/psychological basis of linguistic understanding and use. May be taken for credit six times with changed content.", + "name": "PHIL 234", + "prereqs": [], + "title": "Philosophy of Language (4)" + }, + "PHIL 236": { + "dept": "PHIL", + "description": "Contemporary debates on the nature, function, and operation of the mental. May include questions about the mind-body relation, mental causation, perception, consciousness, and mental representation. May be taken for credit six times with changed content.", + "name": "PHIL 236", + "prereqs": [], + "title": "Philosophy of Mind (4)" + }, + "PHIL 245": { + "dept": "PHIL", + "description": "This seminar will cover current books and theoretical issues in the philosophy of science. May be taken for credit seven times with changed content.", + "name": "PHIL 245", + "prereqs": [], + "title": "Philosophy of Science (4)" + }, + "PHIL 25": { + "dept": "PHIL", + "description": "An inquiry into fundamental questions at the intersection", + "name": "PHIL 25", + "prereqs": [], + "title": "Science, Philosophy, and the Big Questions (4)" + }, + "PHIL 250A": { + "dept": "PHIL", + "description": "Contemporary debates about the study of the mind-brain as studied in one or more of the empirical cognitive sciences. May include questions about the different strategies of explanation invoked, the conceptions of representation employed, the connections between theoretical models developed. May be taken for credit six times with changed content.", + "name": "PHIL 250A", + "prereqs": [], + "title": "Philosophy of the Cognitive Sciences (4)" + }, + "PHIL 26": { + "dept": "PHIL", + "description": "An exploration of the interaction between scientific theory", + "name": "PHIL 26", + "prereqs": [], + "title": "Science, Society, and Values (4)" + }, + "PHIL 260": { + "dept": "PHIL", + "description": "Topics may include metaethics (e.g., the semantics, metaphysics, epistemology, and normativity of ethics), consequentialism and deontology, moral psychology (e.g., freedom, responsibility, and weaknesses of will), or substantive moral problems. The approach may be systematic, historical, or both. May be taken for credit six times with changed content.", + "name": "PHIL 260", + "prereqs": [], + "title": "Ethics (4)" + }, + "PHIL 267": { + "dept": "PHIL", + "description": "Topics may include the nature and limits of state authority, liberty and equality, distributive justice, liberalism and its critics (e.g., feminists, libertarians, and others), or issues in jurisprudence. The focus may be on classic texts or contemporary authors. May be taken for credit six times with changed content.", + "name": "PHIL 267", + "prereqs": [], + "title": "Political Philosophy (4)" + }, + "PHIL 27": { + "dept": "PHIL", + "description": "An examination of ethical principles (e.g., utilitarianism, individual rights, etc.) and their social and political applications to contemporary issues: abortion, environmental protection, and affirmative action. Ethical principles will also be applied to moral dilemmas in government, law, business, and the professions. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ", + "name": "PHIL 27", + "prereqs": [ + "MCWP 40", + "MCWP 50", + "MMW 2", + "MMW 3", + "DOC 3", + "DOC 2", + "HUM 1", + "HUM 2", + "CAT 3", + "CAT 2" + ], + "title": "Ethics and Society (4)" + }, + "PHIL 275": { + "dept": "PHIL", + "description": "This course meets regularly to discuss primary or secondary literature in the area of German philosophy (including Kant, Fichte, Hegel, etc.). The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Nongraduate students may enroll with consent of instructor. S/U grades only. May be taken for credit nine times with changed content.", + "name": "PHIL 275", + "prereqs": [], + "title": "German Philosophy Reading Group (1\u20132)" + }, + "PHIL 276": { + "dept": "PHIL", + "description": "This course meets weekly to provide training in reading and translating philosophical German. Students prepare in advance written translations of assigned passages. The course helps train graduate students preparing to take the Departmental German Exam. Can be taken nine times for credit with changed content.", + "name": "PHIL 276", + "prereqs": [], + "title": "German Translation Workshop (1\u20132)" + }, + "PHIL 277": { + "dept": "PHIL", + "description": "This course meets biweekly with students reading and presenting material from the phenomenological literature. The course is designed both for students doing active research in phenomenology and for those seeking to gain some familiarity with that tradition. Can be taken nine times for credit with changed content.", + "name": "PHIL 277", + "prereqs": [], + "title": "Phenomenology Reading Group (1\u20132)" + }, + "PHIL 278": { + "dept": "PHIL", + "description": "Methods in Contemporary Philosophy (1\u20132)", + "name": "PHIL 278", + "prereqs": [], + "title": "Topics and" + }, + "PHIL 28": { + "dept": "PHIL", + "description": "An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ", + "name": "PHIL 28", + "prereqs": [ + "POLI 27", + "PHIL 27" + ], + "title": "Ethics and Society II (4)" + }, + "PHIL 280": { + "dept": "PHIL", + "description": "This course meets weekly to discuss recent books or articles in philosophy of science. The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Can be taken nine times for credit with changed content.", + "name": "PHIL 280", + "prereqs": [], + "title": "Philosophy of Science Topics and Methods (1\u20132)" + }, + "PHIL 281": { + "dept": "PHIL", + "description": "of Philosophy Research and Methods (1\u20132)", + "name": "PHIL 281", + "prereqs": [], + "title": "History" + }, + "PHIL 282": { + "dept": "PHIL", + "description": "Weekly or biweekly meetings to discuss recent literature in ethics, broadly construed so as to include ethical theory, normative ethics, jurisprudence, and historical traditions in these fields. The course is suitable for those specializing in ethics and for those seeking some familiarity with the field. Can be taken nine times for credit with changed content.", + "name": "PHIL 282", + "prereqs": [], + "title": "Topics and Methods in Ethics (1\u20132)" + }, + "PHIL 284": { + "dept": "PHIL", + "description": "A research group for graduate students engaged in philosophy or history of the biological sciences. The group discusses biological, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ", + "name": "PHIL 284", + "prereqs": [], + "title": "Philosophy of Biology Research Group (1\u20132)" + }, + "PHIL 285": { + "dept": "PHIL", + "description": "Focused examination of specific problems or themes in some area of philosophy. May be taken for credit nine times with changed content.", + "name": "PHIL 285", + "prereqs": [], + "title": "Seminar on Special Topics (4)" + }, + "PHIL 286": { + "dept": "PHIL", + "description": "A research group for graduate students engaged in philosophy or history of the physical sciences. The group discusses physical, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ", + "name": "PHIL 286", + "prereqs": [], + "title": "Philosophy of Physics Reading Group (1\u20132)" + }, + "PHIL 287": { + "dept": "PHIL", + "description": "This group provides training in reading and translating philosophical Greek by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for Departmental Greek Exam. Can be taken nine times for credit with change of content. ", + "name": "PHIL 287", + "prereqs": [], + "title": "Greek Reading Group (1\u20132)" + }, + "PHIL 288": { + "dept": "PHIL", + "description": "This group provides training in reading and translating philosophical Latin by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for departmental Latin exam.\u00a0", + "name": "PHIL 288", + "prereqs": [], + "title": "Latin Reading Group (1\u20132)" + }, + "PHIL 290": { + "dept": "PHIL", + "description": "Supervised study of individually selected philosophical topics. S/U grades permitted.", + "name": "PHIL 290", + "prereqs": [], + "title": "Directed Independent Study (4)" + }, + "PHIL 292": { + "dept": "PHIL", + "description": "Each enrolled student produces a research essay ready for publication, presents it to students and faculty, and offers critiques of other students\u2019 presentations. Units will vary according to enrollment in course. To be taken in fall quarter of third year of philosophy graduate study.", + "name": "PHIL 292", + "prereqs": [], + "title": "Writing Workshop (1\u20133)" + }, + "PHIL 295": { + "dept": "PHIL", + "description": "Advanced individual research studies under", + "name": "PHIL 295", + "prereqs": [], + "title": "Research Topics (1\u201312)" + }, + "PHIL 299": { + "dept": "PHIL", + "description": "S/U grades permitted.", + "name": "PHIL 299", + "prereqs": [], + "title": "Thesis Research (1\u201312)" + }, + "PHIL 31": { + "dept": "PHIL", + "description": "to Ancient Philosophy (4)", + "name": "PHIL 31", + "prereqs": [], + "title": "Introduction" + }, + "PHIL 32": { + "dept": "PHIL", + "description": "Beginning with the contrast between medieval and early modern thought,", + "name": "PHIL 32", + "prereqs": [], + "title": "Philosophy and the Rise of Modern Science (4)" + }, + "PHIL 33": { + "dept": "PHIL", + "description": "Introduction to nineteenth-century philosophy, focusing on skepticism", + "name": "PHIL 33", + "prereqs": [], + "title": "Philosophy between Reason and Despair (4)" + }, + "PHIL 35": { + "dept": "PHIL", + "description": "An exploration of central philosophical issues as they have been taken up in the diverse philosophical traditions of the Americas, such as indigenous philosophy, Latin American philosophy, American Pragmatism, and the Civil Rights movement, among others. Topics may include ethics, social and political philosophy, colonialism, philosophy of race and gender, environmentalism, and issues in philosophy of language.", + "name": "PHIL 35", + "prereqs": [], + "title": "Philosophy in the Americas (4)" + }, + "PHIL 50": { + "dept": "PHIL", + "description": "A survey of philosophical issues concerning law and society, such as the rule of law, the moral limits of the law, individual rights, judicial review in a constitutional democracy, the justification of punishment, and responsibility.", + "name": "PHIL 50", + "prereqs": [], + "title": "Law and Society (4)" + }, + "PHIL 500": { + "dept": "PHIL", + "description": "A course designed to satisfy the requirement that graduate students should serve as teaching assistants, either in the Department of Philosophy or in one of the writing programs offered by the various colleges. Each PhD candidate must teach the equivalent of quarter time for three academic quarters. Students are permitted to sign up as TAs for a maximum of eighteen quarters.", + "name": "PHIL 500", + "prereqs": [], + "title": "Apprentice Teaching (1\u20134)" + }, + "PHIL 87": { + "dept": "PHIL", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "PHIL 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "PHIL 90": { + "dept": "PHIL", + "description": "An investigation of a selected philosophical topic through", + "name": "PHIL 90", + "prereqs": [], + "title": "Basic Problem in Philosophy (4)" + }, + "PHYS 10": { + "dept": "PHYS", + "description": "This is a one-quarter general physics course for nonscience majors. Topics covered are motion, energy, heat, waves, electric current, radiation, light, atoms and molecules, nuclear fission and fusion. This course emphasizes concepts with minimal mathematical formulation. Recommended preparation: college algebra.", + "name": "PHYS 10", + "prereqs": [], + "title": "Concepts in Physics (4)" + }, + "PHYS 100A": { + "dept": "PHYS", + "description": "Coulomb\u2019s law, electric fields, electrostatics; conductors and dielectrics; steady currents, elements of circuit theory. ", + "name": "PHYS 100A", + "prereqs": [ + "MATH 20E", + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 20D", + "MATH 31BH", + "MATH 31CH", + "MATH 31AH", + "MATH 18", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "MATH 20F", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 4D" + ], + "title": "Electromagnetism I (4)" + }, + "PHYS 100B": { + "dept": "PHYS", + "description": "Magnetic fields and magnetostatics, magnetic materials, induction, AC circuits, displacement currents; development of Maxwell\u2019s equations. ", + "name": "PHYS 100B", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "PHYS 100A", + "MATH 20D", + "MATH 31BH", + "MATH 31CH", + "MATH 31AH", + "MATH 18", + "MATH 20C", + "MATH 20F", + "MATH 20E" + ], + "title": "Electromagnetism II (4)" + }, + "PHYS 100C": { + "dept": "PHYS", + "description": "Electromagnetic waves, radiation theory; application to optics; motion of charged particles in electromagnetic fields; relation of electromagnetism to relativistic concepts. ", + "name": "PHYS 100C", + "prereqs": [ + "PHYS 100B" + ], + "title": "Electromagnetism III (4)" + }, + "PHYS 105A": { + "dept": "PHYS", + "description": "A combined analytic and mathematically-based numerical approach to the solution of common applied mathematics problems in physics and engineering. Topics: Fourier series and integrals, special functions, initial and boundary value problems, Green\u2019s functions; heat, Laplace and wave equations. ", + "name": "PHYS 105A", + "prereqs": [ + "MATH 20E", + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 20D", + "MATH 31BH", + "MATH 31CH", + "MATH 31AH", + "MATH 18", + "PHYS 2C", + "PHYS 2B", + "PHYS 2D", + "MATH 20F", + "PHYS 4C", + "PHYS 4B", + "PHYS 4E", + "PHYS 4D" + ], + "title": "Mathematical and Computational Physics I (4)" + }, + "PHYS 105B": { + "dept": "PHYS", + "description": "A continuation of Physics 105A covering selected advanced topics in applied mathematical and numerical methods. Topics include statistics, diffusion and Monte-Carlo simulations; Laplace equation and numerical methods for nonseparable geometries; waves in inhomogeneous media, WKB analysis; nonlinear systems and chaos. ", + "name": "PHYS 105B", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 20D", + "MATH 31BH", + "MATH 31CH", + "MATH 31AH", + "MATH 18", + "MATH 20F", + "PHYS 105A", + "MATH 20E" + ], + "title": "Mathematical and Computational Physics II (4)" + }, + "PHYS 11": { + "dept": "PHYS", + "description": "Survey of physics for nonscience majors with strong mathematical background, including calculus. Physics 11 describes the laws of motion, gravity, energy, momentum, and relativity. A laboratory component consists of two experiments with gravity and conservation principles. ", + "name": "PHYS 11", + "prereqs": [ + "MATH 10B", + "MATH 20B" + ], + "title": "Survey of Physics (4)" + }, + "PHYS 110A": { + "dept": "PHYS", + "description": "Phase flows, bifurcations, linear oscillations, calculus of variations, Lagrangian dynamics, conservation laws, central forces, systems of particles, collisions, coupled oscillations. ", + "name": "PHYS 110A", + "prereqs": [ + "MATH 20E", + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 20D", + "MATH 31BH", + "MATH 31CH", + "MATH 31AH", + "MATH 18", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "MATH 20F", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 4D" + ], + "title": "Mechanics I (4)" + }, + "PHYS 110B": { + "dept": "PHYS", + "description": "Noninertial reference systems, dynamics of rigid bodies, Hamilton\u2019s equations, Liouville\u2019s theorem, chaos, continuum mechanics, special relativity. ", + "name": "PHYS 110B", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 20D", + "MATH 31BH", + "MATH 31CH", + "PHYS 110A", + "MATH 31AH", + "MATH 18", + "MATH 20F", + "MATH 20E" + ], + "title": "Mechanics II (4)" + }, + "PHYS 111": { + "dept": "PHYS", + "description": "The linear theory of ocean surface waves, including group velocity, wave dispersion, ray theory, wave measurement and prediction, shoaling waves, giant waves, ship wakes, tsunamis, and the physics of the surf zone. Cross-listed with SIO 111. Students cannot earn credit for both Physics 111 and SIO 111. ", + "name": "PHYS 111", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 20D", + "MATH 31BH", + "MATH 31CH", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "MATH 20E" + ], + "title": "Introduction to Ocean Waves (4)" + }, + "PHYS 116": { + "dept": "PHYS", + "description": "This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 216. ", + "name": "PHYS 116", + "prereqs": [ + "PHYS 100C", + "PHYS 110B" + ], + "title": "Fluid Dynamics for Physicists (4)" + }, + "PHYS 12": { + "dept": "PHYS", + "description": "A course covering energy fundamentals, energy use in an industrial society and the impact of large-scale energy consumption. It addresses topics on fossil fuel, heat engines, solar energy, nuclear energy, energy conservation, transportation, air pollution and global effects. Concepts and quantitative analysis.", + "name": "PHYS 12", + "prereqs": [], + "title": "Energy and the Environment (4)" + }, + "PHYS 120": { + "dept": "PHYS", + "description": "Laboratory and lecture course that covers principles of analog circuit theory and design, linear systems theory,\u00a0and practical aspects of\u00a0circuit realization, debugging, and characterization. Laboratory exercises include passive circuits, active filters and amplifiers with\u00a0discrete and monolithic devices, nonlinear circuits, interfaces to sensors and actuators, and the digitization of analog signals. Physics 120 was formerly numbered Physics 120A. Program or materials fees may apply.\u00a0", + "name": "PHYS 120", + "prereqs": [ + "PHYS 100A", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 2CL" + ], + "title": "Circuits and Electronics (5)" + }, + "PHYS 122": { + "dept": "PHYS", + "description": "Laboratory-lecture course covering practical techniques used in research laboratories. Possible topics include: computer interfacing of\u00a0instruments, sensors, and actuators; programming for data acquisition/analysis; electronics; measurement techniques; mechanical\u00a0design/machining; mechanics of materials; thermal design/control; vacuum/cryogenic techniques; optics; particle detection. Physics 122 was formerly numbered Physics 121. Program or materials fees may apply.\u00a0", + "name": "PHYS 122", + "prereqs": [ + "PHYS 120" + ], + "title": "Experimental Techniques (4)" + }, + "PHYS 124": { + "dept": "PHYS", + "description": "A laboratory-lecture-project course featuring creation of an experimental apparatus in teams of about two. Emphasis is on electronic\u00a0sensing of the physical environment and actuating physical responses. The course will use a computer interface such as the Arduino. Physics 124 was formerly numbered Physics 120B. Program or materials fees may apply.\u00a0", + "name": "PHYS 124", + "prereqs": [ + "PHYS 120" + ], + "title": "Laboratory Projects (4)" + }, + "PHYS 13": { + "dept": "PHYS", + "description": "An exploration of life in the Universe. Topics include defining life; the origin, development, and fundamental characteristics of life on Earth; searches for life elsewhere in the solar system and other planetary systems; space exploration; and identifying extraterrestrial intelligence. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "name": "PHYS 13", + "prereqs": [], + "title": "Life in the Universe (4)" + }, + "PHYS 130A": { + "dept": "PHYS", + "description": "Development of quantum mechanics. Wave mechanics; measurement postulate and measurement problem. Piece-wise constant potentials, simple harmonic oscillator, central field and the hydrogen atom. Three hours lecture, one-hour discussion session. ", + "name": "PHYS 130A", + "prereqs": [ + "PHYS 110A", + "PHYS 100A", + "PHYS 2D", + "PHYS 4E" + ], + "title": "Quantum Physics I (4)" + }, + "PHYS 130B": { + "dept": "PHYS", + "description": "Matrix mechanics, angular momentum, spin, and the two-state system. Approximation methods and the hydrogen spectrum. Identical particles, atomic and nuclear structures. Scattering theory. Three hours lecture, one-hour discussion session. ", + "name": "PHYS 130B", + "prereqs": [ + "PHYS 100B", + "PHYS 130A" + ], + "title": "Quantum Physics II (4)" + }, + "PHYS 130C": { + "dept": "PHYS", + "description": "Quantized electromagnetic fields and introductory quantum optics. Symmetry and conservation laws. Introductory many-body physics. Density matrix, quantum coherence and dissipation. The relativistic electron. Three-hour lecture, one-hour discussion session. ", + "name": "PHYS 130C", + "prereqs": [ + "PHYS 130B" + ], + "title": "Quantum Physics III (4)" + }, + "PHYS 133": { + "dept": "PHYS", + "description": "A project-oriented laboratory course utilizing state-of-the-art experimental techniques in materials science. The course prepares students for research in a modern condensed matter-materials science laboratory. Under supervision, the students develop their own experimental ideas after investigating current research literature. With the use of sophisticated state-of-the-art instrumentation students conduct research, write a research paper, and make verbal presentations. Program or materials fees may apply. ", + "name": "PHYS 133", + "prereqs": [ + "PHYS 2DL", + "PHYS 2CL" + ], + "title": "Condensed Matter/Materials Science Laboratory (4)" + }, + "PHYS 137": { + "dept": "PHYS", + "description": "Quantum mechanics and gravity. Electromagnetism from gravity and extra dimensions. Unification of forces. Quantum black holes. Properties of strings and branes. ", + "name": "PHYS 137", + "prereqs": [ + "PHYS 130A", + "PHYS 110A", + "PHYS 100A" + ], + "title": "String Theory (4)" + }, + "PHYS 139": { + "dept": "PHYS", + "description": "From time to time a member of the regular faculty or a resident visitor will give a self-contained short course on a topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. Course may be taken for credit up to two times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in Physics 139 will have the duplicate credit removed from their academic record. ", + "name": "PHYS 139", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 31BH", + "MATH 20F", + "MATH 31AH", + "MATH 18", + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 2D", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 4E", + "PHYS 4D" + ], + "title": "Physics Special Topics (4)" + }, + "PHYS 140A": { + "dept": "PHYS", + "description": "Integrated treatment of thermodynamics and statistical mechanics; statistical treatment of entropy, review of elementary probability theory, canonical distribution, partition function, free energy, phase equilibrium, introduction to ideal quantum gases. ", + "name": "PHYS 140A", + "prereqs": [ + "PHYS 130A" + ], + "title": "Statistical and Thermal Physics I (4)" + }, + "PHYS 140B": { + "dept": "PHYS", + "description": "Applications of the theory of ideal quantum gases in condensed matter physics, nuclear physics and astrophysics; advanced thermodynamics, the third law, chemical equilibrium, low temperature physics; kinetic theory and transport in nonequilibrium systems; introduction to critical phenomena including mean field theory. ", + "name": "PHYS 140B", + "prereqs": [ + "PHYS 130B", + "PHYS 140A" + ], + "title": "Statistical and Thermal Physics II (4)" + }, + "PHYS 141": { + "dept": "PHYS", + "description": "Physics I: Probabilistic Models and Simulations (4)", + "name": "PHYS 141", + "prereqs": [], + "title": "Computational" + }, + "PHYS 142": { + "dept": "PHYS", + "description": "Physics II: PDE and Matrix Models (4)", + "name": "PHYS 142", + "prereqs": [], + "title": "Computational" + }, + "PHYS 151": { + "dept": "PHYS", + "description": "Particle motions, plasmas as fluids, waves, diffusion, equilibrium and stability, nonlinear effects, controlled fusion. Cross-listed with MAE 117A.\u00a0Students cannot earn credit for both Physics 151 and MAE 117A. ", + "name": "PHYS 151", + "prereqs": [ + "PHYS 100B", + "PHYS 100C", + "MATH 20D", + "ECE 107" + ], + "title": "Elementary Plasma Physics (4)" + }, + "PHYS 152A": { + "dept": "PHYS", + "description": "Physics of the solid-state. Binding mechanisms, crystal structures and symmetries, diffraction, reciprocal space, phonons, free and nearly free electron models, energy bands, solid-state thermodynamics, kinetic theory and transport, semiconductors. ", + "name": "PHYS 152A", + "prereqs": [ + "PHYS 130A", + "CHEM 130", + "PHYS 140A" + ], + "title": "Condensed Matter Physics (4)" + }, + "PHYS 152B": { + "dept": "PHYS", + "description": "Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ", + "name": "PHYS 152B", + "prereqs": [ + "PHYS 152A" + ], + "title": "Electronic Materials (4)" + }, + "PHYS 154": { + "dept": "PHYS", + "description": "The constituents of matter (quarks and leptons) and their interactions (strong, electromagnetic, and weak). Symmetries and conservation laws. Fundamental processes involving quarks and leptons. Unification of weak and electromagnetic interactions. Particle-astrophysics and the Big Bang. ", + "name": "PHYS 154", + "prereqs": [ + "PHYS 130B" + ], + "title": "Elementary Particle Physics (4)" + }, + "PHYS 160": { + "dept": "PHYS", + "description": "Introduction to stellar astrophysics: observational properties of stars, solar physics, radiation and energy transport in stars, stellar spectroscopy, nuclear processes in stars, stellar structure and evolution, degenerate matter and compact stellar objects, supernovae and nucleosynthesis. Physics 160, 161, 162, and 163 may be taken as a four-quarter sequence for students interested in pursuing graduate study in astrophysics or individually as topics of interest. ", + "name": "PHYS 160", + "prereqs": [ + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 2D", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 4E", + "PHYS 4D" + ], + "title": "Stellar Astrophysics (4)" + }, + "PHYS 161": { + "dept": "PHYS", + "description": "An introduction to Einstein\u2019s theory of general relativity with emphasis on the physics of black holes. Topics will include metrics and curved space-time, the Schwarzchild metric, motion around and inside black holes, rotating black holes, gravitational lensing, gravity waves, Hawking radiation, and observations of black holes. Physics 160, 161, 162, and 163 may be taken as a four-quarter sequence for students interested in pursuing graduate study in astrophysics or individually as topics of interest. ", + "name": "PHYS 161", + "prereqs": [ + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 2D", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 4E", + "PHYS 4D" + ], + "title": "Black Holes (4)" + }, + "PHYS 162": { + "dept": "PHYS", + "description": "The expanding Universe, the Friedman-Robertson-Walker equations, dark matter, dark energy, and the formation of galaxies and large scale structure. Topics in observational cosmology, including how to measure distances and times, and the age, density, and size of the Universe. Topics in the early Universe, including the cosmic microwave background, creation of the elements, cosmic inflation, the big bang. Physics 160, 161, 162, and 163 may be taken as a four-quarter sequence for students interested in pursuing graduate study in astrophysics or individually as topics of interest. ", + "name": "PHYS 162", + "prereqs": [ + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 2D", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 4E", + "PHYS 4D" + ], + "title": "Cosmology (4)" + }, + "PHYS 163": { + "dept": "PHYS", + "description": "An introduction to the structure and properties of galaxies in the universe. Topics covered include the Milky Way, the interstellar medium, properties of spiral and elliptical galaxies, rotation curves, starburst galaxies, galaxy formation and evolution, large-scale structure, and active galaxies and quasars. Physics 160, 161, 162, and 163 may be taken as a four-quarter sequence in any order for students interested in pursuing graduate study in astrophysics or individually as topics of interest.\u00a0", + "name": "PHYS 163", + "prereqs": [ + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 2D", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 4E", + "PHYS 4D" + ], + "title": "Galaxies and Quasars (4)" + }, + "PHYS 164": { + "dept": "PHYS", + "description": "Project-based course developing tools and techniques of observational astrophysical research: photon counting, imaging, spectroscopy, astrometry; collecting data at the telescope; data reduction and analysis; probability functions; error analysis techniques; and scientific writing. ", + "name": "PHYS 164", + "prereqs": [ + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 163", + "PHYS 2D", + "PHYS 161", + "PHYS 160", + "PHYS 4C", + "PHYS 4B", + "PHYS 4A", + "PHYS 162", + "PHYS 4E", + "PHYS 4D" + ], + "title": "Observational Astrophysics Research Lab (4)" + }, + "PHYS 170": { + "dept": "PHYS", + "description": "The principles and clinical applications of medical diagnostic instruments, including electromagnetic measurements, spectroscopy, microscopy; ultrasounds, X-rays, MRI, tomography, lasers in surgery, fiber optics in diagnostics. ", + "name": "PHYS 170", + "prereqs": [ + "PHYS 2C", + "PHYS 2B", + "PHYS 1B", + "PHYS 1C", + "PHYS 4C", + "PHYS 4B" + ], + "title": "Medical Instruments: Principles and Practice (4)" + }, + "PHYS 173": { + "dept": "PHYS", + "description": "A selection of experiments in contemporary", + "name": "PHYS 173", + "prereqs": [], + "title": "Modern Physics Laboratory: Biological and Quantum Physics (4)" + }, + "PHYS 175": { + "dept": "PHYS", + "description": "This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. ", + "name": "PHYS 175", + "prereqs": [ + "CHEM 132", + "PHYS 110A", + "PHYS 100A", + "PHYS 140A" + ], + "title": "Biological Physics (4)" + }, + "PHYS 176": { + "dept": "PHYS", + "description": "A quantitative approach to gene regulation including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. ", + "name": "PHYS 176", + "prereqs": [ + "PHYS 140A" + ], + "title": "Quantitative Molecular Biology (4)" + }, + "PHYS 177": { + "dept": "PHYS", + "description": "The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from: chemotaxis as a model system; signal transduction networks and cellular information processing; mechanics of the membrane; cytoskeletal dynamics; nonlinear Calcium waves. May be scheduled with Physics 277. ", + "name": "PHYS 177", + "prereqs": [], + "title": "Physics of the Cell (4)" + }, + "PHYS 178": { + "dept": "PHYS", + "description": "Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. ", + "name": "PHYS 178", + "prereqs": [], + "title": "Biophysics of Neurons and Networks (4)" + }, + "PHYS 191": { + "dept": "PHYS", + "description": "Undergraduate seminars organized around the research interests of various faculty members. P/NP grades only. ", + "name": "PHYS 191", + "prereqs": [ + "PHYS 2A", + "PHYS 4A" + ], + "title": "Undergraduate Seminar on Physics (1)" + }, + "PHYS 192": { + "dept": "PHYS", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Physics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.", + "name": "PHYS 192", + "prereqs": [], + "title": "Senior Seminar in Physics (1)" + }, + "PHYS 198": { + "dept": "PHYS", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum. (P/NP grades only.) ", + "name": "PHYS 198", + "prereqs": [], + "title": "Directed Group Study (2 or 4)" + }, + "PHYS 199": { + "dept": "PHYS", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ", + "name": "PHYS 199", + "prereqs": [], + "title": "Research for Undergraduates (2 or 4)" + }, + "PHYS 199H": { + "dept": "PHYS", + "description": "Thesis Research for Undergraduates (2\u20134)", + "name": "PHYS 199H", + "prereqs": [], + "title": "Honors" + }, + "PHYS 1A": { + "dept": "PHYS", + "description": "First quarter of a three-quarter introductory physics course, geared toward life-science majors. Equilibrium and motion of particles in one and two dimensions in the framework of Newtonian mechanics, force laws (including gravity), energy, momentum, rotational motion, conservation laws, and fluids. Examples will be drawn from astronomy, biology, sports, and current events. ", + "name": "PHYS 1A", + "prereqs": [ + "MATH 20A", + "MATH 10A", + "PHYS 1AL", + "MATH 20B", + "MATH 10B" + ], + "title": "Mechanics (3)" + }, + "PHYS 1AL": { + "dept": "PHYS", + "description": "Physics laboratory course to accompany Physics 1A. Experiments in Mechanics. ", + "name": "PHYS 1AL", + "prereqs": [ + "MATH 20A", + "MATH 10A", + "PHYS 1A", + "MATH 20B", + "MATH 10B" + ], + "title": "Mechanics Laboratory (2)" + }, + "PHYS 1B": { + "dept": "PHYS", + "description": "Second quarter of a three-quarter introductory physics course geared toward life-science majors. Electric fields, magnetic fields, DC and AC circuitry. ", + "name": "PHYS 1B", + "prereqs": [ + "MATH 20B", + "MATH 20C", + "MATH 31BH", + "MATH 11", + "MATH 10C", + "MATH 10B", + "PHYS 2A", + "PHYS 1AL", + "PHYS 1A", + "PHYS 1BL", + "PHYS 2BL" + ], + "title": "Electricity and Magnetism (3)" + }, + "PHYS 1BL": { + "dept": "PHYS", + "description": "Physics laboratory course to accompany Physics 1B. Experiments in electricity and magnetism. Program or materials fees may apply. ", + "name": "PHYS 1BL", + "prereqs": [ + "MATH 20B", + "MATH 20C", + "MATH 31BH", + "MATH 11", + "MATH 10C", + "MATH 10B", + "PHYS 2A", + "PHYS 1AL", + "PHYS 1A", + "PHYS 1B", + "PHYS 2BL" + ], + "title": "Electricity and Magnetism Laboratory (2)" + }, + "PHYS 1C": { + "dept": "PHYS", + "description": "Third quarter of a three-quarter introductory physics course geared toward life-science majors. The physics of oscillations and waves, vibrating strings and sound, the behavior of systems under combined thermal and electric forces, and the interaction of light with matter as illustrated through optics and quantum mechanics. Examples from biology, sports, medicine, and current events. ", + "name": "PHYS 1C", + "prereqs": [ + "MATH 20C", + "MATH 31BH", + "MATH 11", + "MATH 10C", + "PHYS 2B", + "PHYS 1CL", + "PHYS 1B", + "PHYS 1BL", + "PHYS 2CL" + ], + "title": "Waves, Optics, and Modern Physics (3)" + }, + "PHYS 1CL": { + "dept": "PHYS", + "description": "and Modern Physics Laboratory (2)", + "name": "PHYS 1CL", + "prereqs": [], + "title": "Waves, Optics," + }, + "PHYS 200A": { + "dept": "PHYS", + "description": "Lagrange\u2019s equations and Hamilton\u2019s principle; symmetry and constants of the motion. Applications to: charged particle motion; central forces and scattering theory; small oscillations; anharmonic oscillations; rigid body motion; continuum mechanics.", + "name": "PHYS 200A", + "prereqs": [], + "title": "Theoretical Mechanics I (4)" + }, + "PHYS 200B": { + "dept": "PHYS", + "description": "Hamilton\u2019s equations, canonical transformations; Hamilton-Jacobi theory; action-angle variables and adiabatic invariants; introduction to canonical perturbation theory, nonintegrable systems and chaos; Liouville equation; ergodicity and mixing; entropy; statistical ensembles. ", + "name": "PHYS 200B", + "prereqs": [ + "PHYS 200A" + ], + "title": "Theoretical Mechanics II (4)" + }, + "PHYS 201": { + "dept": "PHYS", + "description": "An introduction to mathematical methods used in theoretical physics. Topics include: a review of complex variable theory, applications of the Cauchy residue theorem, asymptotic series, method of steepest descent, Fourier and Laplace transforms, series solutions for ODE\u2019s and related special functions, Sturm Liouville theory, variational principles, boundary value problems, and Green\u2019s function techniques.", + "name": "PHYS 201", + "prereqs": [], + "title": "Mathematical Physics (5)" + }, + "PHYS 203A": { + "dept": "PHYS", + "description": "Electrostatics, symmetries of Laplace\u2019s equation and methods for solution, boundary value problems, electrostatics in macroscopic media, magnetostatics, Maxwell\u2019s equations, Green functions for Maxwell\u2019s equations, plane wave solutions, plane waves in macroscopic media.", + "name": "PHYS 203A", + "prereqs": [], + "title": "Advanced Classical Electrodynamics I (5)" + }, + "PHYS 203B": { + "dept": "PHYS", + "description": "Special theory of relativity, covariant formulation of electrodynamics, radiation from current distributions and accelerated charges, multipole radiation fields, waveguides and resonant cavities. ", + "name": "PHYS 203B", + "prereqs": [ + "PHYS 203A" + ], + "title": "Advanced Classical Electrodynamics II (4)" + }, + "PHYS 210A": { + "dept": "PHYS", + "description": "Approach to equilibrium: BBGKY hierarchy;", + "name": "PHYS 210A", + "prereqs": [], + "title": "Equilibrium Statistical Mechanics (5)" + }, + "PHYS 210B": { + "dept": "PHYS", + "description": "Transport phenomena; kinetic theory and the Chapman-Enskog method; hydrodynamic theory; nonlinear effects and the mode coupling method. Stochastic processes; Langevin and Fokker-Planck equation; fluctuation-dissipation relation; multiplicative processes; dynamic field theory; Martin-Siggia-Rose formalism; dynamical scaling theory. ", + "name": "PHYS 210B", + "prereqs": [ + "PHYS 210A" + ], + "title": "Nonequilibrium Statistical Mechanics (4)" + }, + "PHYS 211A": { + "dept": "PHYS", + "description": "The first of a two-quarter course in solid-state physics. Covers a range of solid-state phenomena that can be understood within an independent particle description. Topics include: chemical versus band-theoretical description of solids, electronic band structure calculation, lattice dynamics, transport phenomena and electrodynamics in metals, optical properties, semiconductor physics.", + "name": "PHYS 211A", + "prereqs": [], + "title": "Solid-State Physics I (5)" + }, + "PHYS 211B": { + "dept": "PHYS", + "description": "Deals with collective effects in solids arising from interactions between constituents. Topics include electron-electron and electron-phonon interactions, screening, band structure effects, Landau Fermi liquid theory. Magnetism in metals and insulators, superconductivity; occurrence, phenomenology, and microscopic theory. ", + "name": "PHYS 211B", + "prereqs": [ + "PHYS 211A", + "PHYS 210A" + ], + "title": "Solid-State Physics II (4)" + }, + "PHYS 212A": { + "dept": "PHYS", + "description": "Quantum principles of state (pure, composite, entangled, mixed), observables, time evolution, and measurement postulate. Simple soluble systems: two-state, harmonic oscillator, and spherical potentials. Angular momentum and spin. Time-independent approximations.", + "name": "PHYS 212A", + "prereqs": [], + "title": "Quantum Mechanics I (4)" + }, + "PHYS 212B": { + "dept": "PHYS", + "description": "Symmetry theory and conservation laws: time reversal, discrete, translation and rotational groups. Potential scattering. Time-dependent perturbation theory. Quantization of Electromagnetic fields and transition rates. Identical particles. Open systems: mixed states, dissipation, decoherence. ", + "name": "PHYS 212B", + "prereqs": [ + "PHYS 212A" + ], + "title": "Quantum Mechanics II (4)" + }, + "PHYS 212C": { + "dept": "PHYS", + "description": "Scattering with internal degrees of freedom. Path integrals, topological phases, and Bohm-Aharonov effect. Interacting fermions and bosons. Introductory quantum optics. The measurement problem. The relativistic electron. ", + "name": "PHYS 212C", + "prereqs": [], + "title": "Quantum Mechanics III (4)" + }, + "PHYS 214": { + "dept": "PHYS", + "description": "Classification of particles using symmetries and invariance principles, quarks and leptons, quantum electrodynamics, weak interactions, e+p- interactions, deep-inelastic lepton-nucleon scattering, pp collisions, introduction to QCD. ", + "name": "PHYS 214", + "prereqs": [ + "PHYS 215A" + ], + "title": "Physics of Elementary Particles (4)" + }, + "PHYS 215A": { + "dept": "PHYS", + "description": "The first quarter of a three-quarter course on field theory and elementary particle physics. Topics covered include the relation between symmetries and conservation laws, the calculation of cross sections and reaction rates, covariant perturbation theory, and quantum electrodynamics.", + "name": "PHYS 215A", + "prereqs": [], + "title": "Particles and Fields I (4)" + }, + "PHYS 215B": { + "dept": "PHYS", + "description": "Gauge theory quantization by means of path integrals, SU(3) symmetry and the quark model, spontaneous symmetry breakdown, introduction to QCD and the Glashow-Weinberg-Salam model of weak interactions, basic issues of renormalization. ", + "name": "PHYS 215B", + "prereqs": [ + "PHYS 215A" + ], + "title": "Particles and Fields II (4)" + }, + "PHYS 215C": { + "dept": "PHYS", + "description": "Modern applications of the renormalization", + "name": "PHYS 215C", + "prereqs": [], + "title": "Particles and Fields III (4)" + }, + "PHYS 216": { + "dept": "PHYS", + "description": "This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 116. The performance criteria for graduate students will be to complete and pass: (1) a graduate-level exam and (2) graduate-level homework problem sets. In both cases, there will be overlap with the undergraduate exam and problems, but the graduates will be expected to complete additional work at a higher level.", + "name": "PHYS 216", + "prereqs": [], + "title": "Fluid Dynamics for Physicists (4)" + }, + "PHYS 217": { + "dept": "PHYS", + "description": "Application of field theoretic and renormalization group methods to problems in condensed matter, or particle physics. Topics will vary and may include: phase transition and critical phenomena; many body quantum systems; quantum chromodynamics and the electroweak model. ", + "name": "PHYS 217", + "prereqs": [ + "PHYS 210A" + ], + "title": "Field Theory and the Renormalization Group (4)" + }, + "PHYS 218A": { + "dept": "PHYS", + "description": "The basic physics of plasmas is discussed for the simple case of an unmagnetized plasma. Topics include: thermal equilibrium statistical properties, fluid and Landau theory of electron and ion plasma waves, velocity space instabilities, quasi-linear theory, fluctuations, scattering or radiation, Fokker-Planck equation.", + "name": "PHYS 218A", + "prereqs": [], + "title": "Plasma Physics I (4)" + }, + "PHYS 218B": { + "dept": "PHYS", + "description": "This course deals with magnetized plasma. Topics include: Appleton-Hartree theory of waves in cold plasma, waves in warm plasma (Bernstein waves, cyclotron damping). MHD equations, MHD waves, low frequency modes, and the adiabatic theory of particle orbits. ", + "name": "PHYS 218B", + "prereqs": [ + "PHYS 218A" + ], + "title": "Plasma Physics II (4)" + }, + "PHYS 218C": { + "dept": "PHYS", + "description": "This course deals with the physics of confined plasmas with particular relevance to controlled fusion. Topics include: topology of magnetic fields, confined plasma equilibria, energy principles, ballooning and kink instabilities, resistive MHD modes (tearing, rippling and pressure-driven), gyrokinetic theory, microinstabilities and anomalous transport, and laser-plasma interactions relevant to inertial fusion. ", + "name": "PHYS 218C", + "prereqs": [ + "PHYS 218B" + ], + "title": "Plasma Physics III (4)" + }, + "PHYS 219": { + "dept": "PHYS", + "description": "(4)", + "name": "PHYS 219", + "prereqs": [], + "title": "Condensed Matter/Materials Science Laboratory" + }, + "PHYS 220": { + "dept": "PHYS", + "description": "Study of group theoretical methods with applications to problems in high energy, atomic, and condensed matter physics. Representation theory, tensor methods, Clebsh-Gordan series. Young tableaux. The course will cover discrete groups, Lie groups and Lie algebras, with emphasis on permutation, orthogonal, and unitary groups. ", + "name": "PHYS 220", + "prereqs": [ + "PHYS 212C" + ], + "title": "Group Theoretical Methods in Physics (4)" + }, + "PHYS 221A": { + "dept": "PHYS", + "description": "An introduction to the modern theory of dynamical systems and applications thereof. Topics include maps and flows, bifurcation theory and normal form analysis, chaotic attractors in dissipative systems, Hamiltonian dynamics and the KAM theorem, and time series analysis. Examples from real physical systems will be stressed throughout. ", + "name": "PHYS 221A", + "prereqs": [ + "PHYS 200B" + ], + "title": "Nonlinear and Nonequilibrium Dynamics of Physical Systems (4)" + }, + "PHYS 222A": { + "dept": "PHYS", + "description": "Weak interactions; neutrino physics; C,P,", + "name": "PHYS 222A", + "prereqs": [], + "title": "Elementary Particle Physics (4)" + }, + "PHYS 223": { + "dept": "PHYS", + "description": "Energy generation, flow, hydrostatic equilibrium,", + "name": "PHYS 223", + "prereqs": [], + "title": "Stellar Structure and Evolution (4)" + }, + "PHYS 224": { + "dept": "PHYS", + "description": "Gaseous nebulae, molecular clouds, ionized", + "name": "PHYS 224", + "prereqs": [], + "title": "Physics of the Interstellar Medium (4)" + }, + "PHYS 225A-B": { + "dept": "PHYS", + "description": "This is a two-quarter course on gravitation and the general theory of relativity. The first quarter is intended to be offered every year and may be taken independently of the second quarter. The second quarter will be offered in alternate years. Topics covered in the first quarter include special relativity, differential geometry, the equivalence principle, the Einstein field equations, and experimental and observational tests of gravitation theories. The second quarter will focus on more advanced topics, including gravitational collapse, Schwarzschild and Kerr geometries, black holes, gravitational radiation, cosmology, and quantum gravitation.", + "name": "PHYS 225A-B", + "prereqs": [], + "title": "General Relativity (4-4)" + }, + "PHYS 226": { + "dept": "PHYS", + "description": "The structure and dynamics of galaxies. Topics include potential theory, the theory of stellar orbits, self-consistent equilibria of stellar systems, stability and dynamics of stellar systems including relaxation and approach to equilibrium. Collisions between galaxies, galactic evolution, dark matter, and galaxy formation.", + "name": "PHYS 226", + "prereqs": [], + "title": "Galaxies and Galactic Dynamics (4)" + }, + "PHYS 227": { + "dept": "PHYS", + "description": "An advanced survey of topics in physical cosmology. The Friedmann models and the large-scale structure of the universe, including the observational determination of Ho (the Hubble constant) and qo (the deceleration parameter). Galaxy number counts. A systematic exposition of the physics of the early universe, including vacuum phase transitions; inflation; the generation of net baryon number, fluctuations, topological defects and textures. Primordial nucleosynthesis, both standard and nonstandard models. Growth and decay of adiabatic and isocurvature density fluctuations. Discussion of dark matter candidates and constraints from observation and experiment. Nucleocosmo-chronology and the determination of the age of the universe.", + "name": "PHYS 227", + "prereqs": [], + "title": "Cosmology (4)" + }, + "PHYS 228": { + "dept": "PHYS", + "description": "Astrophysics and Compact Objects (4)", + "name": "PHYS 228", + "prereqs": [], + "title": "High-Energy" + }, + "PHYS 230": { + "dept": "PHYS", + "description": "Selection of advanced topics in solid-state physics; material covered may vary from year to year. Examples of topics covered: disordered systems, surface physics, strong-coupling superconductivity, quantum Hall effect, low-dimensional solids, heavy fermion systems, high-temperature superconductivity, solid and liquid helium. ", + "name": "PHYS 230", + "prereqs": [ + "PHYS 211B" + ], + "title": "Advanced Solid-State Physics (4)" + }, + "PHYS 232": { + "dept": "PHYS", + "description": "Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ", + "name": "PHYS 232", + "prereqs": [ + "PHYS 211A" + ], + "title": "Electronic Materials (4)" + }, + "PHYS 235": { + "dept": "PHYS", + "description": "This course deals with nonlinear phenomena in plasmas. Topics include: orbit perturbation theory, stochasticity, Arnold diffusion, nonlinear wave-particle and wave-wave interaction, resonance broadening, basics of fluid and plasma turbulence, closure methods, models of coherent structures. ", + "name": "PHYS 235", + "prereqs": [ + "PHYS 218C" + ], + "title": "Nonlinear Plasma Theory (4)" + }, + "PHYS 238": { + "dept": "PHYS", + "description": "", + "name": "PHYS 238", + "prereqs": [], + "title": "Observational Astrophysics Research Lab (4)" + }, + "PHYS 239": { + "dept": "PHYS", + "description": "From time to time a member of the regular faculty or a resident visitor will find it possible to give a self-contained short course on an advanced topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. (S/U grades permitted.)", + "name": "PHYS 239", + "prereqs": [], + "title": "Special Topics (4)" + }, + "PHYS 241": { + "dept": "PHYS", + "description": "Project-based computational physics laboratory course with student\u2019s choice of Fortran90/95 or C/C++. Applications from materials science to the structure of the early universe are chosen from molecular dynamics, classical and quantum Monte Carlo methods, physical Langevin/Fokker-Planck processes, and other modern topics.", + "name": "PHYS 241", + "prereqs": [], + "title": "Computational Physics I: Probabilistic Models and Simulations (4)" + }, + "PHYS 242": { + "dept": "PHYS", + "description": "Models (4)", + "name": "PHYS 242", + "prereqs": [], + "title": "Computational Physics II: PDE and Matrix" + }, + "PHYS 243": { + "dept": "PHYS", + "description": "Introduction to methods of stochastic modeling and simulation. Topics include: random variables; stochastic processes; Markov processes; one-step processes; the Fokker-Planck equation and Brownian motion; the Langevin approach; Monte-Carlo methods; fluctuations and the Boltzmann equation; and stochastic differential equations.", + "name": "PHYS 243", + "prereqs": [], + "title": "Stochastic Methods (4)" + }, + "PHYS 244": { + "dept": "PHYS", + "description": "Computing in Science and Engineering (4)", + "name": "PHYS 244", + "prereqs": [], + "title": "Parallel" + }, + "PHYS 250": { + "dept": "PHYS", + "description": "Discussion of current research in physics of the solid state and of other condensed matter. (S/U grades only.)", + "name": "PHYS 250", + "prereqs": [], + "title": "Condensed Matter Physics Seminar (0\u20131)" + }, + "PHYS 251": { + "dept": "PHYS", + "description": "Discussions of current research in nuclear physics, principally in the field of elementary particles. (S/U grades only.)", + "name": "PHYS 251", + "prereqs": [], + "title": "High-Energy Physics Seminar (0\u20131)" + }, + "PHYS 252": { + "dept": "PHYS", + "description": "Discussions of recent research in plasma physics. (S/U grades only.)", + "name": "PHYS 252", + "prereqs": [], + "title": "Plasma Physics Seminar (0\u20131)" + }, + "PHYS 253": { + "dept": "PHYS", + "description": "Discussions of recent research in astrophysics and space physics. (S/U grades only.)", + "name": "PHYS 253", + "prereqs": [], + "title": "Astrophysics and Space Physics Seminar (0\u20131)" + }, + "PHYS 254": { + "dept": "PHYS", + "description": "Presentation of current research in biological physics and quantitative biology by invited speakers from the United States and abroad. (S/U grades only.) May be taken for credit thirty times.", + "name": "PHYS 254", + "prereqs": [], + "title": "Biophysics Seminar (1)" + }, + "PHYS 255": { + "dept": "PHYS", + "description": "Discussion of recent research in biological physics and quantitative biology by current graduate students. (S/U grades only.) May be taken for credit thirty times.", + "name": "PHYS 255", + "prereqs": [], + "title": "Biophysics Research Talks (1)" + }, + "PHYS 256": { + "dept": "PHYS", + "description": "Critical analysis of classic and current literature in quantitative biology, involving written critiques and group discussion. (S/U grades only.) May be taken for credit thirty times.", + "name": "PHYS 256", + "prereqs": [], + "title": "Critical Reading in Quantitative Biology (1)" + }, + "PHYS 257": { + "dept": "PHYS", + "description": "Discussions of current research in high-energy physics. (S/U grades only.)", + "name": "PHYS 257", + "prereqs": [], + "title": "High-Energy Physics Special Topics Seminar (0\u20131)" + }, + "PHYS 258": { + "dept": "PHYS", + "description": "Discussions of current research in astrophysics and space physics. (S/U grades only.)", + "name": "PHYS 258", + "prereqs": [], + "title": "Astrophysics and Space Physics Special Topics Seminar (0\u20131)" + }, + "PHYS 260": { + "dept": "PHYS", + "description": "Discussions of recent research in physics directed to the entire physics community. (S/U grades only.)", + "name": "PHYS 260", + "prereqs": [], + "title": "Physics Colloquium (0\u20131)" + }, + "PHYS 261": { + "dept": "PHYS", + "description": "Discussions of current research conducted by faculty members in the Department of Physics. (S/U grades only.)", + "name": "PHYS 261", + "prereqs": [], + "title": "Seminar on Physics Research at UC San Diego (0\u20131)" + }, + "PHYS 264": { + "dept": "PHYS", + "description": "Discussions of the application of the scientific method in the natural sciences. (S/U grades only.) May be taken for credit twenty-five times.", + "name": "PHYS 264", + "prereqs": [], + "title": "Scientific Method Seminar (1)" + }, + "PHYS 270A": { + "dept": "PHYS", + "description": "A hands-on laboratory course in which the students learn and use experimental techniques, including optics, electronics, chemistry, machining, and computer interface, to design and develop simple instruments for quantitative characterization of living systems. Lab classes will comprise five two-week modules. ", + "name": "PHYS 270A", + "prereqs": [], + "title": "Experimental Techniques for Quantitative Biology (4)" + }, + "PHYS 270B": { + "dept": "PHYS", + "description": "A project-oriented laboratory course in which students are guided to develop their own ideas and tools, along with using state-of-art instruments to investigate a biological problem of current interest, under the direction of a faculty member. A range of current topics in quantitative biology is available, including microbiology, molecular and cell biology, developmental biology, synthetic biology, and evolution. This course may be repeated up to ten times for credit as long as the student works on a different project. ", + "name": "PHYS 270B", + "prereqs": [ + "PHYS 270A" + ], + "title": "Quantitative Biology Laboratory (4)" + }, + "PHYS 273": { + "dept": "PHYS", + "description": "This course discusses how living systems acquire information on their environment and exploit it to generate structures and perform functions. Biological sensing of concentrations, reaction-diffusion equations, the Turing mechanism, and applications of information theory to cellular transduction pathways and animal behavior will be presented. Recommended preparation: familiarity with probabilities at the level of undergraduate statistical mechanics and major cellular processes; basic knowledge of information theory.", + "name": "PHYS 273", + "prereqs": [], + "title": "Information Theory and Pattern Formation in Biological Systems (4)" + }, + "PHYS 274": { + "dept": "PHYS", + "description": "The course explores genetic diversity within biological populations.\u00a0Genetics fundamentals, mutation/selection equilibria, speciation, Wright-Fisher model, Kimura\u2019s neutral theory,\u00a0Luria-Delbr\u00fcck\u00a0test, the coalescent theory, evolutionary games and statistical methods for quantifying genetic observables such as SNPs, copy number variations, etc., will be discussed.\u00a0Recommended preparation: familiarity with probabilities and PDEs at the undergraduate level; an introduction to basic evolutionary processes.", + "name": "PHYS 274", + "prereqs": [], + "title": "Stochastic Processes in Population Genetics (4)" + }, + "PHYS 275": { + "dept": "PHYS", + "description": "This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. Recommended preparation: an introduction to statistical mechanics, at least at the level of Physics 140A or Chemistry 132.", + "name": "PHYS 275", + "prereqs": [], + "title": "Fundamentals of Biological Physics (4)" + }, + "PHYS 276": { + "dept": "PHYS", + "description": "A quantitative approach to gene regulation, including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. Recommended preparation: an introductory course in biology is helpful but not necessary.", + "name": "PHYS 276", + "prereqs": [], + "title": "Quantitative Molecular Biology (4)" + }, + "PHYS 277": { + "dept": "PHYS", + "description": "The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from chemotaxis as a model system, signal transduction networks and cellular information processing, mechanics of the membrane, cytoskeletal dynamics, nonlinear Calcium waves. The graduate version will include a report at the level of a research paper. May be scheduled with Physics 177. Recommended preparation: an introductory course in biology is helpful but not necessary.", + "name": "PHYS 277", + "prereqs": [], + "title": "Physics of the Cell (4)" + }, + "PHYS 278": { + "dept": "PHYS", + "description": "Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. Recommended preparation: a working knowledge of calculus and linear algebra.", + "name": "PHYS 278", + "prereqs": [], + "title": "Biophysics of Neurons and Networks (4)" + }, + "PHYS 279": { + "dept": "PHYS", + "description": "Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, Physics 279.", + "name": "PHYS 279", + "prereqs": [], + "title": "Neurodynamics (4)" + }, + "PHYS 281": { + "dept": "PHYS", + "description": "This course covers topics not traditionally taught as part of a normal physics curriculum, but nonetheless useful extensions to the classic pedagogy. Example topics may include estimation, nuclear physics, fluid mechanics, and scaling relationships.", + "name": "PHYS 281", + "prereqs": [], + "title": "Extensions in Physics (1\u20133)" + }, + "PHYS 295": { + "dept": "PHYS", + "description": "Directed research on MS dissertation topic.", + "name": "PHYS 295", + "prereqs": [], + "title": "MS Thesis Research in Materials Physics (1\u201312)" + }, + "PHYS 297": { + "dept": "PHYS", + "description": "Studies of special topics in physics under the direction of a faculty member. ", + "name": "PHYS 297", + "prereqs": [], + "title": "Special Studies in Physics (1\u20134)" + }, + "PHYS 298": { + "dept": "PHYS", + "description": "Research studies under the direction of a faculty member. (S/U grades permitted.)", + "name": "PHYS 298", + "prereqs": [], + "title": "Directed Study in Physics (1\u201312)" + }, + "PHYS 299": { + "dept": "PHYS", + "description": "Directed research on dissertation topic.", + "name": "PHYS 299", + "prereqs": [], + "title": "Thesis Research in Physics (1\u201312)" + }, + "PHYS 2A": { + "dept": "PHYS", + "description": "A calculus-based science-engineering general physics course covering vectors, motion in one and two dimensions, Newton\u2019s first and second laws, work and energy, conservation of energy, linear momentum, collisions, rotational kinematics, rotational dynamics, equilibrium of rigid bodies, oscillations, gravitation. ", + "name": "PHYS 2A", + "prereqs": [ + "MATH 20A", + "MATH 20B" + ], + "title": "Physics\u2014Mechanics (4)" + }, + "PHYS 2B": { + "dept": "PHYS", + "description": "Continuation of Physics 2A covering charge and matter, the electric field, Gauss\u2019s law, electric potential, capacitors and dielectrics, current and resistance, electromotive force and circuits, the magnetic field, Ampere\u2019s law, Faraday\u2019s law, inductance, electromagnetic oscillations, alternating currents and Maxwell\u2019s equations. ", + "name": "PHYS 2B", + "prereqs": [ + "MATH 20A", + "MATH 20B", + "MATH 20C", + "MATH 31BH", + "PHYS 2A", + "PHYS 4A" + ], + "title": "Physics\u2014Electricity and Magnetism (4)" + }, + "PHYS 2BL": { + "dept": "PHYS", + "description": "Laboratory\u2014Mechanics (2)", + "name": "PHYS 2BL", + "prereqs": [], + "title": "Physics" + }, + "PHYS 2C": { + "dept": "PHYS", + "description": "Waves, Thermodynamics, and Optics (4)", + "name": "PHYS 2C", + "prereqs": [], + "title": "Physics\u2014Fluids," + }, + "PHYS 2CL": { + "dept": "PHYS", + "description": "Experiments on L-R-C circuits; oscillations, resonance and damping, measurement of magnetic fields. One-hour lecture and three hours\u2019 laboratory. Program or materials fees may apply. ", + "name": "PHYS 2CL", + "prereqs": [ + "PHYS 2A", + "PHYS 2C", + "PHYS 2B", + "PHYS 4C", + "PHYS 4A", + "PHYS 4D" + ], + "title": "Physics Laboratory\u2014Electricity and Magnetism (2)" + }, + "PHYS 2D": { + "dept": "PHYS", + "description": "A modern physics course covering atomic view of matter, electricity and radiation, atomic models of Rutherford and Bohr, relativity, X-rays, wave and particle duality, matter waves, Schr\u00f6dinger\u2019s equation, atomic view of solids, natural radioactivity. ", + "name": "PHYS 2D", + "prereqs": [ + "MATH 20D", + "MATH 20E", + "MATH 31CH", + "PHYS 2A", + "PHYS 2B", + "PHYS 4A" + ], + "title": "Physics\u2014Relativity and Quantum Physics (4)" + }, + "PHYS 2DL": { + "dept": "PHYS", + "description": "One hour of lecture and three hours of laboratory. Experiments to be chosen from refraction, diffraction and interference of microwaves, Hall effect, thermal band gap, optical spectra, coherence of light, photoelectric effect, e/m ratio of particles, radioactive decays, and plasma physics. Program or materials fees may apply. ", + "name": "PHYS 2DL", + "prereqs": [ + "PHYS 2BL", + "PHYS 2CL", + "PHYS 2D", + "PHYS 4E" + ], + "title": "Physics Laboratory\u2014Modern Physics (2)" + }, + "PHYS 30": { + "dept": "PHYS", + "description": "Physicists have spoken of the beauty of equations. The poet John Keats wrote, \u201cBeauty is truth, truth beauty...\u201d What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Cross-listed with LTEN 30. Students cannot earn credit for both Physics 30 and LTEN 30. ", + "name": "PHYS 30", + "prereqs": [ + "MCWP 40", + "MCWP 50", + "WARR 11B", + "WARR 11A", + "WCWP 10B", + "DOC 3", + "DOC 2", + "HUM 1", + "WCWP 10A", + "HUM 2", + "MMW 12", + "MMW 13", + "CAT 3", + "CAT 2" + ], + "title": "Poetry for Physicists (4)" + }, + "PHYS 4A": { + "dept": "PHYS", + "description": "The first quarter of a five-quarter calculus-based physics sequence for physics majors and students with a serious interest in physics. The topics covered are vectors, particle kinematics and dynamics, work and energy, conservation of energy, conservation of momentum, collisions, rotational kinematics and dynamics, equilibrium of rigid bodies. ", + "name": "PHYS 4A", + "prereqs": [ + "MATH 20A", + "MATH 20B" + ], + "title": "Physics for Physics Majors\u2014Mechanics (4)" + }, + "PHYS 4B": { + "dept": "PHYS", + "description": "Physics Majors\u2014Fluids, Waves, and Heat (4)", + "name": "PHYS 4B", + "prereqs": [], + "title": "Physics for" + }, + "PHYS 4C": { + "dept": "PHYS", + "description": "Physics Majors\u2014Electricity and Magnetism (4)", + "name": "PHYS 4C", + "prereqs": [], + "title": "Physics for" + }, + "PHYS 4D": { + "dept": "PHYS", + "description": "Continuation of Physics 4C covering electromagnetic", + "name": "PHYS 4D", + "prereqs": [], + "title": "Physics for Physics Majors\u2014Electromagnetic Waves, Optics, and Special Relativity (4)" + }, + "PHYS 4E": { + "dept": "PHYS", + "description": "Continuation of Physics 4D covering experimental", + "name": "PHYS 4E", + "prereqs": [], + "title": "Physics for Physics Majors\u2014Quantum Physics (4)" + }, + "PHYS 5": { + "dept": "PHYS", + "description": "An introduction to the evolution of stars, including their birth and death. Topics include constellations, the atom and light, telescopes, stellar birth, stellar evolution, white dwarfs, neutron stars, black holes, and general relativity. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "name": "PHYS 5", + "prereqs": [], + "title": "Stars and Black Holes (4)" + }, + "PHYS 500": { + "dept": "PHYS", + "description": "This course, designed for graduate students, includes discussion of teaching, techniques and materials necessary to teach physics courses. One meeting per week with course instructors, one meeting per week in an assigned recitation section, problem session, or laboratory section. Students are required to take a total of two units of Physics 500.", + "name": "PHYS 500", + "prereqs": [], + "title": "Instruction in Physics Teaching (1\u20134)" + }, + "PHYS 7": { + "dept": "PHYS", + "description": "An introduction to galaxies and cosmology. Topics include the Milky Way, galaxy types and distances, dark matter, large scale structure, the expansion of the Universe, dark energy, and the early Universe. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "name": "PHYS 7", + "prereqs": [], + "title": "Galaxies and Cosmology (4)" + }, + "PHYS 8": { + "dept": "PHYS", + "description": "Examines phenomena and technology encountered in daily life from a physics perspective. Topics include waves, musical instruments, telecommunication, sports, appliances, transportation, computers, and energy sources. Physics concepts will be introduced and discussed as needed employing some algebra. No prior physics knowledge is required.", + "name": "PHYS 8", + "prereqs": [], + "title": "Physics of Everyday Life (4)" + }, + "PHYS 87": { + "dept": "PHYS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "PHYS 87", + "prereqs": [], + "title": "Freshman Seminar in Physics and Astrophysics (1)" + }, + "PHYS 9": { + "dept": "PHYS", + "description": "An exploration of our solar system. Topics include the Sun, terrestrial and giant planets, satellites, asteroids, comets, dwarf planets and the Kuiper Belt, exoplanets, and the formation of planetary systems. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "name": "PHYS 9", + "prereqs": [], + "title": "The Solar System (4)" + }, + "PHYS 98": { + "dept": "PHYS", + "description": "Directed group study on a topic, or in a field not included in the regular departmental curriculum. P/NP grades only.", + "name": "PHYS 98", + "prereqs": [], + "title": "Directed Group Study (2)" + }, + "PHYS 99": { + "dept": "PHYS", + "description": "Independent reading or research on a topic by special arrangement with a faculty member. P/NP grading only. ", + "name": "PHYS 99", + "prereqs": [], + "title": "Independent Study (2)" + }, + "POLI 10 or 10D": { + "dept": "POLI", + "description": "to Political Science: American Politics (4)", + "name": "POLI 10 or 10D", + "prereqs": [], + "title": "Introduction" + }, + "POLI 100A": { + "dept": "POLI", + "description": "The role of the presidency in American politics. Topics will include nomination and election politics, relations with Congress, party leadership, presidential control of the bureaucracy, international political role, and presidential psychology.", + "name": "POLI 100A", + "prereqs": [], + "title": "The Presidency (4)" + }, + "POLI 100B": { + "dept": "POLI", + "description": "This course will examine the nomination and election of congressmen, constituent relationships, the development of the institution, formal and informal structures, leadership, comparisons of House with Senate, lobbying, and relationship with the executive branch.", + "name": "POLI 100B", + "prereqs": [], + "title": "The US Congress (4)" + }, + "POLI 100C": { + "dept": "POLI", + "description": "This course examines the development of the two major parties from 1789 to the present. Considers the nature of party coalitions, the role of leaders, activists, organizers, and voters, and the performance of parties in government.", + "name": "POLI 100C", + "prereqs": [], + "title": "American Political Parties (4)" + }, + "POLI 100DA": { + "dept": "POLI", + "description": "A consideration of the nature of public opinion and voting in American government. Studies of voting behavior are examined from the viewpoints of both citizens and candidates, and attention is devoted to recent efforts to develop models of electoral behavior for the study of campaigns. The role of mass media and money also will be examined.", + "name": "POLI 100DA", + "prereqs": [], + "title": "Voting, Campaigning, and Elections (4)" + }, + "POLI 100E": { + "dept": "POLI", + "description": "The theory and practice of interest group politics in the United States. Theories of pluralism and collective action, the behavior and influence of lobbies, the role of political action committees, and other important aspects of group action in politics are examined. ", + "name": "POLI 100E", + "prereqs": [], + "title": "Interest Group Politics (4)" + }, + "POLI 100F": { + "dept": "POLI", + "description": "This class explores the many ways in which face-to-face social networks have a powerful effect on a wide range of human behaviors. With a foundation in understanding real-world networks, we can then consider how these networks function online.", + "name": "POLI 100F", + "prereqs": [], + "title": "Social Networks (4)" + }, + "POLI 100G": { + "dept": "POLI", + "description": "This course explores the various aspects of a political campaign including campaign organization, vote targeting, political parties, social media, fundraising, polling, media interactions, and more. These areas are examined citing specific examples from federal, state, and local campaigns.", + "name": "POLI 100G", + "prereqs": [], + "title": "How to Win or Lose an Election (4)" + }, + "POLI 100H": { + "dept": "POLI", + "description": "This course examines the processes by which racial and ethnic groups have/have not been incorporated into the American political system. The course focuses on the political experiences of European immigrant groups, blacks, Latinos, and Asians.", + "name": "POLI 100H", + "prereqs": [], + "title": "Race and Ethnicity in American Politics (4)" + }, + "POLI 100J": { + "dept": "POLI", + "description": "Readings examine how the multiracial character of the United States has shaped the broad outlines of American politics. Cases include the founding/the Constitution, southern politics, social organization in formerly Mexican regions, the New Deal, consequences of limited suffrage. ", + "name": "POLI 100J", + "prereqs": [], + "title": "Race in American Political Development (4)" + }, + "POLI 100K": { + "dept": "POLI", + "description": "The railroads transformed the economy and politics of the United States in the nineteenth century. The railroads were the first big businesses, and their sheer size led inevitably to conflict with governments at all levels. This conflict shaped modern politics. ", + "name": "POLI 100K", + "prereqs": [], + "title": "Railroads and American Politics (4)" + }, + "POLI 100M": { + "dept": "POLI", + "description": "We begin with hypotheses about how people develop political attitudes, and methods to test those hypotheses. The second half focuses on emerging cognitive neuroscience insights, including brain imaging, and asks how these inform theories of political cognition, affect, and behavior. ", + "name": "POLI 100M", + "prereqs": [], + "title": "Political Psychology (4)" + }, + "POLI 100N": { + "dept": "POLI", + "description": "Examines Washington as a political community, its institutions, culture, and history. In addition to its elected officeholders and senior government officials, it examines Washington\u2019s subcommunities: the national news industry, diplomatic service, the representation of interests. ", + "name": "POLI 100N", + "prereqs": [], + "title": "Politics in Washington (4)" + }, + "POLI 100O": { + "dept": "POLI", + "description": "This course looks at race in American politics from a variety of perspectives. We may consider psychological, genetic, neuroscience, economic, political, sociological, and legal views of what drives powerful dynamics of race in our country. ", + "name": "POLI 100O", + "prereqs": [], + "title": "Perspectives on Race (4)" + }, + "POLI 100P": { + "dept": "POLI", + "description": "This course is concerned with the interaction between representative democracy and capitalism in American political history. The key to understanding this interaction is the role of the entrepreneur in the economy and how unexpected economic change shapes politics. ", + "name": "POLI 100P", + "prereqs": [], + "title": "Economic Entrepreneurs and American Politics (4)" + }, + "POLI 100Q": { + "dept": "POLI", + "description": "This course explores how race shapes outcomes in American democracy through in-depth exploration of key issues in American politics. Topics include race in the voting booth, immigration, discrimination, and inter-minority conflict.", + "name": "POLI 100Q", + "prereqs": [], + "title": "Advanced Topics in Racial Politics (4)" + }, + "POLI 100T": { + "dept": "POLI", + "description": "This course uses the tools of political science and economics to study how corporations affect and are affected by politics. We will cover a broad range of issues, including regulation, lawmaking, mass media, interest group mobilization, and corporate social responsibility.", + "name": "POLI 100T", + "prereqs": [], + "title": "Business and Politics (4)" + }, + "POLI 100U": { + "dept": "POLI", + "description": "This course provides an introduction to game theory with an emphasis on applications in economics, political science, and business. Game theory uses simple mathematical models to understand social phenomena. The required mathematical background is minimal (high school algebra).", + "name": "POLI 100U", + "prereqs": [], + "title": "Games, Strategy, and Politics (4)" + }, + "POLI 102C": { + "dept": "POLI", + "description": "Examines selected issues and moments in the political history of the United States, comparing competing explanations and analyses of US politics. Likely topics include the founding, \u201cAmerican exceptionalism,\u201d change in the party system, race in US politics, the \u201cnew institutionalism.\u201d", + "name": "POLI 102C", + "prereqs": [], + "title": "American Political Development (4)" + }, + "POLI 102D": { + "dept": "POLI", + "description": "The Voting Rights Act (VRA) is one of the most significant and controversial acts in American history. We will examine the environment that led to its introduction, the legislative process, executive implementation, and the political ramifications and subsequent state government and court decisions.", + "name": "POLI 102D", + "prereqs": [], + "title": "Voting Rights Act: Fifty Years Later (4)" + }, + "POLI 102E": { + "dept": "POLI", + "description": "(Same as USP107) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the \u201cnew\u201d ethnic politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race.", + "name": "POLI 102E", + "prereqs": [], + "title": "Urban Politics (4)" + }, + "POLI 102F": { + "dept": "POLI", + "description": "This course will explore both the role played by mass media in political institutions, processes and behaviors, and reciprocally, the roles played by political systems in guiding communication processes.", + "name": "POLI 102F", + "prereqs": [], + "title": "Mass Media and Politics (4)" + }, + "POLI 102G": { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of American politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "name": "POLI 102G", + "prereqs": [], + "title": "Special Topics in American Politics (4)" + }, + "POLI 102J": { + "dept": "POLI", + "description": "(Same as USP 110) Building upon the introductory urban politics course, the advanced topics course explores issues such as community power, minority empowerment, and the politics of growth. A research paper is required. Students may not receive credit for both POLI 102J and USP 110. ", + "name": "POLI 102J", + "prereqs": [], + "title": "Advanced Topics in Urban Politics (4)" + }, + "POLI 102K": { + "dept": "POLI", + "description": "The lives of individuals living in ghetto poverty in the United States. Causes and consequences of ghetto poverty. Political debates surrounding the underclass and different possible solutions. ", + "name": "POLI 102K", + "prereqs": [], + "title": "The Urban Underclass (4)" + }, + "POLI 102L": { + "dept": "POLI", + "description": "Politics and policy-making issues in regulation. Themes: regulation versus legislation; general versus specific grants of regulatory power; market versus command mechanisms; private property; and risk assessment. Emphasis on American regulatory policy, examples from current regulatory debates (e.g., health care and environment). ", + "name": "POLI 102L", + "prereqs": [], + "title": "The Politics of Regulation (4)" + }, + "POLI 103A": { + "dept": "POLI", + "description": "(Same as USP 109) This survey course explores six topics: 1) the state\u2019s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California\u2019s role in national politics.", + "name": "POLI 103A", + "prereqs": [], + "title": "California Government and Politics (4)" + }, + "POLI 103B": { + "dept": "POLI", + "description": "(Same as USP 113) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ", + "name": "POLI 103B", + "prereqs": [], + "title": "Politics and Policymaking in Los Angeles (4)" + }, + "POLI 103C": { + "dept": "POLI", + "description": "(Same as USP 115) This course examines how", + "name": "POLI 103C", + "prereqs": [], + "title": "Politics and Policymaking in San Diego (4)" + }, + "POLI 103D": { + "dept": "POLI", + "description": "(Same as USP 116) This course surveys public finance and administration. It focuses upon California local governments\u2014cities, counties, and special districts\u2014and also examines state and federal relationships. Topics explored include revenue, expenditure, indebtedness, policy responsibilities, and administrative organization and processes. ", + "name": "POLI 103D", + "prereqs": [], + "title": "California Local Government: Finance and Administration (4)" + }, + "POLI 104A": { + "dept": "POLI", + "description": "An introduction to the study of the Supreme Court and constitutional doctrine. Topics will include the nature of judicial review, federalism, race, and equal protection. The relation of judicial and legislative power will also be examined.", + "name": "POLI 104A", + "prereqs": [], + "title": "The Supreme Court and the Constitution (4)" + }, + "POLI 104B": { + "dept": "POLI", + "description": "This course will examine issues of civil liberties from both legal and political perspectives. Topics will include the First Amendment rights of speech, press, assembly, and religion; other \u201cfundamental\u201d rights, such as the right to privacy; and some issues in equal protection. Conflicts between governmental powers and individual rights will be examined.", + "name": "POLI 104B", + "prereqs": [], + "title": "Civil Liberties\u2014Fundamental Rights (4)" + }, + "POLI 104C": { + "dept": "POLI", + "description": "Examines the legal issues surrounding the rights of criminal suspects, as well as the rights of \u201cmarginal\u201d groups such as aliens, illegal immigrants, and the mentally ill. Also includes a discussion of the nature of discrimination in American society. ", + "name": "POLI 104C", + "prereqs": [], + "title": "Civil Liberties\u2014The Rights of the Accused and Minorities (4)" + }, + "POLI 104D": { + "dept": "POLI", + "description": "Introduction to the study of law and courts as political institutions and judges as political actors, including the role of the judiciary in our constitutional system and decision making both within the Supreme Court and within the judicial hierarchy.", + "name": "POLI 104D", + "prereqs": [], + "title": "Judicial Politics (4)" + }, + "POLI 104E": { + "dept": "POLI", + "description": "The course is an introduction to US environmental law at the federal level. It emphasizes issues and current controversies involving natural resources, such as wilderness, biodiversity, water, and climate change. ", + "name": "POLI 104E", + "prereqs": [], + "title": "Environmental Law and Policy (4)" + }, + "POLI 104F": { + "dept": "POLI", + "description": "This seminar will provide an intensive examination of a major issue in constitutional law, with topics varying from year to year. Recent topics have included equal protection law and the rights of civilians in wartime. Students will be required to do legal research on a topic, write a legal brief, and argue a case to the seminar. ", + "name": "POLI 104F", + "prereqs": [ + "POLI 104A" + ], + "title": "Seminar in Constitutional Law (4)" + }, + "POLI 104I": { + "dept": "POLI", + "description": "Politics\u2014Courts and Political Controversy (4)", + "name": "POLI 104I", + "prereqs": [], + "title": "Law and" + }, + "POLI 104J": { + "dept": "POLI", + "description": "The ability to write and argue is one of the noted benefits of a legal education. Students will learn the basics of legal research and reasoning by learning to read and brief case law and write persuasive and objective memorandums. ", + "name": "POLI 104J", + "prereqs": [ + "POLI 104A", + "POLI 104B" + ], + "title": "Introduction to Legal Reasoning (4)" + }, + "POLI 104L": { + "dept": "POLI", + "description": "We will discuss modern theories of the origins of law and legal behavior.", + "name": "POLI 104L", + "prereqs": [], + "title": "Positive Political Theory of Law (4)" + }, + "POLI 104M": { + "dept": "POLI", + "description": "How law regulates and impacts sexuality and orientation with focus on constitutional law in areas of privacy, free speech, association, regulation of sexual conduct under criminal law pornography, procreation, reproductive rights, and regulation of family status. ", + "name": "POLI 104M", + "prereqs": [], + "title": "Law and Sex (4)" + }, + "POLI 104N": { + "dept": "POLI", + "description": "Has the law helped end or contributed to racism in the United States? This course will explore the law of Slavery, Segregation, and Immigration, and study Equal Protection, Affirmative Action, and Criminal Justice (including hate crimes and First Amendment implications).", + "name": "POLI 104N", + "prereqs": [], + "title": "Race and Law (4)" + }, + "POLI 104P": { + "dept": "POLI", + "description": "Science advances exponentially. The law is slower to follow. This course examines legal issues created by today\u2019s scientific breakthroughs and explores what future legal challenges might await tomorrow\u2019s scientific discoveries, from privacy on the Internet to the meaning of life. ", + "name": "POLI 104P", + "prereqs": [], + "title": "Science, Technology, and the Law (4)" + }, + "POLI 105A": { + "dept": "POLI", + "description": "This course examines contemporary issues in Latino politics in the U.S.; comparisons of racial and ethnic group experiences in the U.S.; Latino access to the political system through political participation. ", + "name": "POLI 105A", + "prereqs": [], + "title": "Latino Politics in the U.S. (4)" + }, + "POLI 108": { + "dept": "POLI", + "description": "This course will examine central issues in debates about race, ethnicity, and multiculturalism in the United States. It will look at relations not only between whites and minorities, but also at those among racial and ethnic communities. ", + "name": "POLI 108", + "prereqs": [], + "title": "Politics of Multiculturalism (4)" + }, + "POLI 11 or 11D": { + "dept": "POLI", + "description": "to Political Science: Comparative Politics (4)", + "name": "POLI 11 or 11D", + "prereqs": [], + "title": "Introduction" + }, + "POLI 110A": { + "dept": "POLI", + "description": "and Saints: Political Thought from Plato to Augustine (4)", + "name": "POLI 110A", + "prereqs": [], + "title": "Citizens" + }, + "POLI 110B": { + "dept": "POLI", + "description": "The course deals with the period that marks the rise and triumph of the modern state. Central topics include the gradual emergence of human rights and the belief in individual autonomy. Readings from Machiavelli, Hobbes, Locke, Rousseau, and others.", + "name": "POLI 110B", + "prereqs": [], + "title": "Sovereigns, Subjects, and the Modern State: Political Thought from Machiavelli to Rousseau (4)" + }, + "POLI 110C": { + "dept": "POLI", + "description": "and Reaction: Political Thought from Kant to Nietzsche (4)", + "name": "POLI 110C", + "prereqs": [], + "title": "Revolution" + }, + "POLI 110DA": { + "dept": "POLI", + "description": "and Discipline: Political Thought in the Twentieth Century (4)", + "name": "POLI 110DA", + "prereqs": [], + "title": "Freedom" + }, + "POLI 110EA": { + "dept": "POLI", + "description": "Political Thought from Revolution to Civil War (4)", + "name": "POLI 110EA", + "prereqs": [], + "title": "American" + }, + "POLI 110EB": { + "dept": "POLI", + "description": "Political Thought from Civil War to Civil Rights (4)", + "name": "POLI 110EB", + "prereqs": [], + "title": "American" + }, + "POLI 110EC": { + "dept": "POLI", + "description": "Political Thought: Contemporary Debates (4)", + "name": "POLI 110EC", + "prereqs": [], + "title": "American" + }, + "POLI 110ED": { + "dept": "POLI", + "description": "This seminar explores debates over ideals, institutions, and identities in American political thought. Themes and topics will vary. Readings will include political pamphlets, philosophical treatises, court decisions, and works of literature. ", + "name": "POLI 110ED", + "prereqs": [], + "title": "Seminar in American Political Thought (4)" + }, + "POLI 110G": { + "dept": "POLI", + "description": "This course explores theories of politics that are oriented beyond state borders. Key topics include international order, cosmopolitanism, human rights, just war, global justice, mitigation, citizenship, identity, and commercial society. The course examines thinkers from classical antiquity to contemporary times.", + "name": "POLI 110G", + "prereqs": [], + "title": "International Political Thought (4)" + }, + "POLI 110H": { + "dept": "POLI", + "description": "This course will examine the historical development of the ideal of democracy from Periclean Athens to the present in the light of criticism by such thinkers as Plato, Tocqueville, and Mosca and difficulties encountered in efforts to realize the ideal.", + "name": "POLI 110H", + "prereqs": [], + "title": "Democracy and Its Critics (4)" + }, + "POLI 110J": { + "dept": "POLI", + "description": "This course examines how power has been conceived and contested during the course of American history. The course explores the changes that have occurred in political rhetoric and strategies as America has moved from a relatively isolated agrarian and commercial republic to a military and industrial empire.", + "name": "POLI 110J", + "prereqs": [], + "title": "Power in American Society (4)" + }, + "POLI 110K": { + "dept": "POLI", + "description": "Leading political theories of liberal democracy since 1950. What is the meaning of political liberty? Political equality is the equality of what? Course will consider thinkers such as J.S. Mill, Berlin, Rawls, Dworkin, Taylor, Sen, Nussbaum, G. Cohen, Petit.", + "name": "POLI 110K", + "prereqs": [], + "title": "Liberty and Equality (4)" + }, + "POLI 110M": { + "dept": "POLI", + "description": "Leading theories of environmental justice, ethics, and politics since 1960. Thinkers such as Dauvergne, Dobson, Dryzek, Eckersley, Latour, Plumwood, and Simon on ecosystems, climate change, sustainability, preservation, human welfare, nonhuman animals, place, feminism, state, market, and green political movements. ", + "name": "POLI 110M", + "prereqs": [], + "title": "Green Political Thought (4)" + }, + "POLI 110N": { + "dept": "POLI", + "description": "Nationalist ideologies. Examination of the rhetoric of nationalist mobilization. Theories about the relationship between nationalist movements and democracy, capitalism, warfare, and the state. ", + "name": "POLI 110N", + "prereqs": [], + "title": "Theories of Nationalism (4)" + }, + "POLI 110T": { + "dept": "POLI", + "description": "An examination of some of the ideas and values", + "name": "POLI 110T", + "prereqs": [], + "title": "Modern Political Ideologies (4)" + }, + "POLI 111B": { + "dept": "POLI", + "description": "Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally.", + "name": "POLI 111B", + "prereqs": [], + "title": "Global Justice in Theory and Action (4)" + }, + "POLI 111D": { + "dept": "POLI", + "description": "Study of types of social norms and practices, and how to change them. Illustrated with development examples such as the end of foot binding, female genital cutting, urban violence in Colombia, Serbian student revolution, early marriage, and other adverse gender norms.", + "name": "POLI 111D", + "prereqs": [], + "title": "Social Norms and Global Development (4)" + }, + "POLI 112A": { + "dept": "POLI", + "description": "An introduction to theories of political behavior developed with the assumptions and methods of economics. General emphasis will be upon theories linking individual behavior to institutional patterns. Specific topics to be covered will include collective action, leadership, voting, and bargaining.", + "name": "POLI 112A", + "prereqs": [], + "title": "Economic Theories of Political Behavior (4)" + }, + "POLI 112C": { + "dept": "POLI", + "description": "The course explores the modes of political thinking found in arts, especially in drama and literature. It may include ends and means, political leadership, and political economy. Students may not receive credit for both POLI 112CS and POLI 112C. ", + "name": "POLI 112C", + "prereqs": [], + "title": "Political Theory and Artistic Vision (4)" + }, + "POLI 113A": { + "dept": "POLI", + "description": "Asian Thought in Comparative Perspective (4)", + "name": "POLI 113A", + "prereqs": [], + "title": "East" + }, + "POLI 113B": { + "dept": "POLI", + "description": "Examines philosophical traditions of ancient and modern China and Japan, to understand how these have been reflected in Chinese and Japanese development. Course will be in English; however, students with Chinese or Japanese language skills will have opportunity to use these. Graduate students will be required to complete a seminar-length research paper; undergraduate students will write a paper. ", + "name": "POLI 113B", + "prereqs": [], + "title": "Chinese and Japanese Political Thought I (4)" + }, + "POLI 113C": { + "dept": "POLI", + "description": "A continuation of 113B, which follows political philosophical themes in China and Japan through the twentieth century. Important topics include Buddhism and Confucianism as they changed in each context in response to internal and external stimuli. ", + "name": "POLI 113C", + "prereqs": [], + "title": "Chinese and Japanese Political Thought II (4)" + }, + "POLI 114B": { + "dept": "POLI", + "description": "An introduction to Marxist thought from its roots in the Western tradition through its development in non-Western contexts. Emphasis is placed on how adaptations were made in Marxism to accommodate the specific challenges of each environment.", + "name": "POLI 114B", + "prereqs": [], + "title": "Marxist Political Thought (4)" + }, + "POLI 115A": { + "dept": "POLI", + "description": "Our understanding of politics, power, conflict, and quality continue to be challenged and transformed by considering gender as it intersects with nationality, race, class, and ethnicity. We will consider the importance of gender in each of the subfields of political science.", + "name": "POLI 115A", + "prereqs": [], + "title": "Gender and Politics (4)" + }, + "POLI 116A": { + "dept": "POLI", + "description": "Readings in historical and contemporary feminist theory; development of gender as a category of political analysis; alternative perspectives on core concepts and categories in feminist thought. ", + "name": "POLI 116A", + "prereqs": [], + "title": "Feminist Theory (4)" + }, + "POLI 117": { + "dept": "POLI", + "description": "(Same as SIO 109.) Climate change is an urgent global problem affecting the lives of hundreds of millions of people, now and for the foreseeable future. This course will empower students to confront climate change as critical actors to innovate creative cross-disciplinary solutions. Students may not receive credit for POLI 117 and SIO 109. ", + "name": "POLI 117", + "prereqs": [], + "title": "Bending the Curve: Solutions to Climate Change (4)" + }, + "POLI 119A": { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of political theory. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "name": "POLI 119A", + "prereqs": [], + "title": "Special Topics in Political Theory (4)" + }, + "POLI 12 or 12D": { + "dept": "POLI", + "description": "to Political Science: International Relations (4)", + "name": "POLI 12 or 12D", + "prereqs": [], + "title": "Introduction" + }, + "POLI 120A": { + "dept": "POLI", + "description": "An examination of various paths of European political development through consideration of the conflicts that shaped these political systems: the commercialization of agriculture; religion and the role of the church; the army and the state bureaucracy; and industrialization. Stress will be on alternative paradigms and on theorists.", + "name": "POLI 120A", + "prereqs": [], + "title": "Political Development of Western Europe (4)" + }, + "POLI 120B": { + "dept": "POLI", + "description": "An analysis of the political system of the Federal Republic of Germany with an emphasis on the party system, elections, executive-legislative relations, and federalism. Comparisons will be made with other West European democracies and the Weimar Republic.", + "name": "POLI 120B", + "prereqs": [], + "title": "The German Political System (4)" + }, + "POLI 120C": { + "dept": "POLI", + "description": "This course will examine the consequences of social and economic change in France. Specific topics will include institutional development under a semi-presidential system, parties, and elections.", + "name": "POLI 120C", + "prereqs": [], + "title": "Politics in France (4)" + }, + "POLI 120D": { + "dept": "POLI", + "description": "Consideration of political, economic, and security factors that have kept Germany at the center of European developments for more than a century.", + "name": "POLI 120D", + "prereqs": [], + "title": "Germany: Before, During, and After Division (4)" + }, + "POLI 120E": { + "dept": "POLI", + "description": "Introduction to the politics and societies of the Scandinavian states (Denmark, Finland, Norway, and Sweden). Focuses on historical development, political culture, constitutional arrangements, political institutions, parties and interest groups, the Scandinavian welfare states, and foreign policy. ", + "name": "POLI 120E", + "prereqs": [], + "title": "Scandinavian Politics (4)" + }, + "POLI 120G": { + "dept": "POLI", + "description": "Emphasis will be placed on the interaction between British political institutions and processes and contemporary policy problems: the economy, social policy, foreign affairs. The course assumes no prior knowledge of British politics and comparisons with the United States will be drawn.", + "name": "POLI 120G", + "prereqs": [], + "title": "British Politics (4)" + }, + "POLI 120H": { + "dept": "POLI", + "description": "This course reviews the origins and development of the European Community/European Union and its institutions, theories of integration and the challenges inherent in the creation of a supranational political regime.", + "name": "POLI 120H", + "prereqs": [], + "title": "European Integration (4)" + }, + "POLI 120I": { + "dept": "POLI", + "description": "This course will provide a comparative perspective on the development and functioning of the Italian political system. It includes analysis of political institutions, ideological traditions, parties and elections, political elites in the policy process, and the evolving importance of Italy within European integration.", + "name": "POLI 120I", + "prereqs": [], + "title": "Politics in Italy (4)" + }, + "POLI 120N": { + "dept": "POLI", + "description": "This course offers a systematic study of civil wars, electoral violence, anti-immigrant violence, genocides, coups, riots, and rebel groups in sub-Saharan Africa. It will explore why some regions experience certain types of violence and others do not.", + "name": "POLI 120N", + "prereqs": [], + "title": "Contention and Conflict in Africa (4)" + }, + "POLI 120P": { + "dept": "POLI", + "description": "This course examines reasons why we can be cautiously optimistic about development, growth, peace and democratization in Africa. Sample cases include Botswana\u2019s resource blessing, postconflict reconstruction in Uganda, and democratization in Ghana, Benin, and Niger.", + "name": "POLI 120P", + "prereqs": [], + "title": "Africa\u2019s Success Stories (4)" + }, + "POLI 120Q": { + "dept": "POLI", + "description": "This course introduces students to the comparative study of ethnic politics. It examines the relationships between ethnicity on one hand, and mobilization, political contestation, violence, trust, and pork on the other. It draws from analysis from a variety of contexts and regions, such as sub-Saharan Africa, Eastern Europe, North America, South Asia, and Western Europe. ", + "name": "POLI 120Q", + "prereqs": [], + "title": "Ethnic Politics (4)" + }, + "POLI 121": { + "dept": "POLI", + "description": "This course examines general themes affecting the region (social structure and regime type, religion and modernization, bonds and tensions), the character of major states, and efforts to resolve the conflict between Israel and its Arab and Islamic neighbors. ", + "name": "POLI 121", + "prereqs": [], + "title": "Government and Politics of the Middle East (4)" + }, + "POLI 121B": { + "dept": "POLI", + "description": "An interdisciplinary study of Israel as both a unique and yet a common example of a modern democratic nation-state. We will examine Israel\u2019s history, its political, economic, and legal systems, social structure and multicultural tensions, the relation between state and religion, national security, and international relations.", + "name": "POLI 121B", + "prereqs": [], + "title": "Politics in Israel (4)" + }, + "POLI 122": { + "dept": "POLI", + "description": "What do we mean by \u201cinternational", + "name": "POLI 122", + "prereqs": [], + "title": "Politics of Human Rights (4)" + }, + "POLI 122D": { + "dept": "POLI", + "description": "Power, a crucial part of politics, can be, and often is, abused. This course discusses the nature of power and surveys a variety of abuses, including agenda manipulation, rent extraction, fraud, extortion, corruption, exploitation, and gross political oppression. ", + "name": "POLI 122D", + "prereqs": [], + "title": "Abuse of Power (4)" + }, + "POLI 123": { + "dept": "POLI", + "description": "In between \u201crises\u201d and \u201cdeclines,\u201d empires are political entities with highly heterogeneous populations that must be governed. The course examines the similarities and differences in imperial governance, comparing the internal and external political dynamics of traditional (Roman, Ottoman), modernizing (Habsburg), and modern (British) empires. ", + "name": "POLI 123", + "prereqs": [], + "title": "Politics of Empire in Comparative Perspective (4)" + }, + "POLI 124": { + "dept": "POLI", + "description": "(Same as SOCI 188I.) In this course, we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war.", + "name": "POLI 124", + "prereqs": [], + "title": "Israeli-Palestinian Conflict (4)" + }, + "POLI 124A": { + "dept": "POLI", + "description": "A comparative survey of the major dimensions of the electoral systems used in contemporary democracies (including plurality and majority systems, proportional representation, and districting methods) and of their effects on party competition.", + "name": "POLI 124A", + "prereqs": [], + "title": "Political Consequences of Electoral Systems (4)" + }, + "POLI 125": { + "dept": "POLI", + "description": "What have been the effects of globalization on gender, and how has gender shaped conceptions and processes of globalization? Through case studies drawn from the global north and south, this course critically assesses contemporary theoretical debates on global gender justice.", + "name": "POLI 125", + "prereqs": [], + "title": "Gender, Politics, and Globalization (4)" + }, + "POLI 125A": { + "dept": "POLI", + "description": "A popular new idea in environmental protection is to include local communities in conservation efforts. But what are these communities? What challenges do they face in governing their own resources? This course uses both theory and case studies to explore the political economy of community-based conservations.", + "name": "POLI 125A", + "prereqs": [], + "title": "Communities and the Environment (4)" + }, + "POLI 125B": { + "dept": "POLI", + "description": "This course explores emerging issues in production and consumption of food in a global economy. On production side, we discuss issues such as famine, overproduction of commercial crops, and sustainability. On consumption side, we explore issues such as fair trade, ethical consumption, and public health consequences (such as obesity).\u00a0Then we discuss the roles of governments, international organizations, and communities to address these issues.", + "name": "POLI 125B", + "prereqs": [], + "title": "The Politics of Food in a Global Economy (4)" + }, + "POLI 126": { + "dept": "POLI", + "description": "Why are some countries rich and others poor? This course examines how political and economic factors shape development trajectories, focusing on Africa, Asia, and Latin America. Topics include the impact of democracy, corruption, oil, and foreign aid on economic development. ", + "name": "POLI 126", + "prereqs": [], + "title": "Political Economy of Development (4)" + }, + "POLI 126AA": { + "dept": "POLI", + "description": "of Political Economy: Modern Capitalism (4)", + "name": "POLI 126AA", + "prereqs": [], + "title": "Fundamentals" + }, + "POLI 126AB": { + "dept": "POLI", + "description": "This course explores the interrelationship of politics and economics in Eastern Europe, analyzing the historic evolution of the area, the socialist period, and contemporary political and economic change there. ", + "name": "POLI 126AB", + "prereqs": [], + "title": "Politics and Economics in Eastern Europe (4)" + }, + "POLI 127": { + "dept": "POLI", + "description": "This course critically examines central concepts and theories of development, and assesses their utility in understanding political, economic, and social change in the developing world. Central case studies are drawn from three regions: Latin America, Sub-Saharan Africa, and Southeast Asia. ", + "name": "POLI 127", + "prereqs": [], + "title": "Politics of Developing Countries (4)" + }, + "POLI 128": { + "dept": "POLI", + "description": "This course considers the interplay between factor endowments, political institutions, and economic performance. It focuses on the connection between representative political institutions and the emergence and expansion of markets.", + "name": "POLI 128", + "prereqs": [], + "title": "Autocracy, Democracy, and Prosperity (4)" + }, + "POLI 129": { + "dept": "POLI", + "description": "Examine the role of elections in new and fragile democracies, explore how politicians construct elections to suppress increased levels of democracy, the techniques used to undermine free and fair elections, and the strategic responses to these actions by domestic/international actors. ", + "name": "POLI 129", + "prereqs": [], + "title": "How to Steal an Election (4)" + }, + "POLI 13 or 13D": { + "dept": "POLI", + "description": "An exploration of the relationship between power and justice in modern society. Materials include classic and contemporary texts, films, and literature. POLI 13 is Lecture only, and POLI 13D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 13 and 13D.", + "name": "POLI 13 or 13D", + "prereqs": [], + "title": "Power and Justice (4)" + }, + "POLI 130AD": { + "dept": "POLI", + "description": "An examination of the dynamics of the Russian Revolution from 1905 through the Stalinist period and recent years in light of theories of revolutionary change. Emphasis is placed on the significance of political thought, socioeconomic stratification, and culturo-historical conditions.", + "name": "POLI 130AD", + "prereqs": [], + "title": "The Politics of the Russian Revolution (4)" + }, + "POLI 130B": { + "dept": "POLI", + "description": "This course analyzes the political system of China since 1949, including political institutions, the policy-making process, and the relationship between politics and economics. The main focus is on the post-Mao era of reform beginning in 1978.", + "name": "POLI 130B", + "prereqs": [], + "title": "Politics in the People\u2019s Republic of China (4)" + }, + "POLI 131": { + "dept": "POLI", + "description": "Is there a Muslim challenge to immigrant integration in Christian-heritage societies? This course asks if and why Muslim immigrants integrate into their host societies, and evaluates the various solutions put forth by politicians and scholars.", + "name": "POLI 131", + "prereqs": [], + "title": "Muslim Integration and Exclusion (4)" + }, + "POLI 131C": { + "dept": "POLI", + "description": "An analysis of the dynamics of the Chinese Revolution from the fall of the Qing Dynasty (1644\u20131911) to the present. Emphasis is placed on the relationship between political thought and the dynamics of the revolutionary process.", + "name": "POLI 131C", + "prereqs": [], + "title": "The Chinese Revolution (4)" + }, + "POLI 132": { + "dept": "POLI", + "description": "Political development has dominated the study of comparative politics among US academicians since the revival of the Cold War in 1947. This course examines critically this paradigm and its Western philosophical roots in the context of the experience of modern China.", + "name": "POLI 132", + "prereqs": [], + "title": "Political Development and Modern China (4)" + }, + "POLI 133A": { + "dept": "POLI", + "description": "Politics: A Developmental Perspective (4)", + "name": "POLI 133A", + "prereqs": [], + "title": "Japanese" + }, + "POLI 133D": { + "dept": "POLI", + "description": "This course discusses the following major topics in three East Asian countries (Japan, South Korea, and the Philippines) from a comparative perspective: (a) economic and political development; (b) political institutions; and (c) policies.", + "name": "POLI 133D", + "prereqs": [], + "title": "Political Institutions of East Asian Countries (4)" + }, + "POLI 133G": { + "dept": "POLI", + "description": "The relationship between the United States and Japan has been described as \u201cthe most important in the world, bar none.\u201d This course will examine US-Japan security and economic relations in the postwar period from the Occupation and Cold War alliance through the severe bilateral trade friction of the 1980s and 1990s to the present relationship and how it is being transformed by the forces of globalization, regionalization, and multilateralism.", + "name": "POLI 133G", + "prereqs": [], + "title": "Postwar US-Japan Relations (4)" + }, + "POLI 133J": { + "dept": "POLI", + "description": "This course is primarily about the politics and political economy of South Korea, but will also briefly look at politics and political economy of North Korea as well as foreign and unification policies of the two Koreas. ", + "name": "POLI 133J", + "prereqs": [], + "title": "Korean Politics (4)" + }, + "POLI 134AA": { + "dept": "POLI", + "description": "Comparative analysis of contemporary political systems and developmental profiles of selected Latin American countries, with special reference to the ways in which revolutionary and counter-revolutionary movements have affected the political, economic, and social structures observable in these countries today. Analyzes the performance of \u201crevolutionary\u201d governments in dealing with problems of domestic political management, reducing external economic dependency, redistributing wealth, creating employment, and extending social services. Introduction to general theoretical works on Latin American politics and development. ", + "name": "POLI 134AA", + "prereqs": [ + "POLI 11" + ], + "title": "Comparative Politics of Latin America (4)" + }, + "POLI 134B": { + "dept": "POLI", + "description": "General survey of the Mexican political system as it operates today. Emphasis on factors promoting the breakdown of Mexico\u2019s authoritarian regime and the transition to a more democratic political system. Changing relationship between the state and various segments of Mexico society (economic elites, peasants, urban labor, and the Church). New patterns of civil-military relations.", + "name": "POLI 134B", + "prereqs": [], + "title": "Politics in Mexico (4)" + }, + "POLI 134D": { + "dept": "POLI", + "description": "A comparative analysis of contemporary political issues in Latin America. Material to be drawn from two or three countries. Among the topics: development, nationalism, neoimperialism, political change. May be taken for credit two times. ", + "name": "POLI 134D", + "prereqs": [], + "title": "Selected Topics in Latin American Politics (4)" + }, + "POLI 134I": { + "dept": "POLI", + "description": "in the Southern Cone of Latin America (4)", + "name": "POLI 134I", + "prereqs": [], + "title": "Politics" + }, + "POLI 136": { + "dept": "POLI", + "description": "The political impact of major religious traditions\u2014including Christianity, Islam, Hinduism, and Confucianism\u2014around the world. ", + "name": "POLI 136", + "prereqs": [], + "title": "Religion and Politics (4)" + }, + "POLI 136A": { + "dept": "POLI", + "description": "An examination of nationalist politics as practiced by opposition movements and governments in power. Appropriate case studies from around the world will be selected. ", + "name": "POLI 136A", + "prereqs": [], + "title": "Nationalism and Politics (4)" + }, + "POLI 137A": { + "dept": "POLI", + "description": "Political Parties and Interest Groups (4)", + "name": "POLI 137A", + "prereqs": [], + "title": "Comparative" + }, + "POLI 138D": { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of comparative politics. May be repeated for credit three times, provided each course is a separate topic, for a maximum of twelve units.", + "name": "POLI 138D", + "prereqs": [], + "title": "Special Topics in Comparative Politics (4)" + }, + "POLI 140A": { + "dept": "POLI", + "description": "International law is central to the efforts to create a world order to limit armed conflict, regulate world economy, and set minimum standards for human rights. This course introduces international law and explains theories advanced by academic analysts and practitioners to explain its role. ", + "name": "POLI 140A", + "prereqs": [], + "title": "International Law (4)" + }, + "POLI 140B": { + "dept": "POLI", + "description": "Introduction to the analytical and comparative study of revolutionary movements and related forms of political violence. Topics include: the classical paradigm; types of revolutionary episodes; psychological theories; ideology and belief systems; coups; insurgencies; civil wars; terrorism and revolutionary outcomes. ", + "name": "POLI 140B", + "prereqs": [], + "title": "Concepts and Aspects of Revolution (4)" + }, + "POLI 140C": { + "dept": "POLI", + "description": "A survey of international peacekeeping and peace enforcement in civil conflicts with a simulation of international diplomacy. ", + "name": "POLI 140C", + "prereqs": [], + "title": "International Crisis Diplomacy (4)" + }, + "POLI 140D": { + "dept": "POLI", + "description": "International migration creates a distinct set of human rights challenges. This course examines the conflict between international legal obligations and domestic politics of citizenship, human rights, asylum, and human trafficking. ", + "name": "POLI 140D", + "prereqs": [], + "title": "International Human Rights Law: Migrant Populations (4)" + }, + "POLI 142A": { + "dept": "POLI", + "description": "United States foreign policy from the colonial period to the present era. Systematic analysis of competing explanations for US policies\u2014strategic interests, economic requirements, or the vicissitudes of domestic politics. Interaction between the U.S., foreign states (particularly allies), and transnational actors are examined. ", + "name": "POLI 142A", + "prereqs": [ + "POLI 12" + ], + "title": "United States Foreign Policy (4)" + }, + "POLI 142D": { + "dept": "POLI", + "description": "This course provides an overview of the challenges posed by chemical, biological, radiological, and nuclear weapons. Students will learn about how these weapons work, why states seek them, and attempts to prevent proliferation. We will delve into technical and policy challenges related to these weapons, and address how CBRN weapons shape national and regional security dynamics. Efforts to restrict the proliferation of these weapons will be discussed. We will also analyze CBRN terrorism.", + "name": "POLI 142D", + "prereqs": [], + "title": "Weapons of Mass Destruction (4)" + }, + "POLI 142I": { + "dept": "POLI", + "description": "A survey of theories of defense policies and international security.", + "name": "POLI 142I", + "prereqs": [], + "title": "National and International Security (4)" + }, + "POLI 142J": { + "dept": "POLI", + "description": "A survey of American strategies for national defense. Topics may include deterrence, coercive diplomacy, limited war, and unconventional warfare.", + "name": "POLI 142J", + "prereqs": [], + "title": "National Security Strategy (4)" + }, + "POLI 142K": { + "dept": "POLI", + "description": "This course offers an exploration of general theories of the origins of warfare; the impact of the state on war in the modern world; and the microfoundations of combat and compliance in the context of the costs of war and military mobilization. The course should be of special interest to students in international relations and comparative politics.", + "name": "POLI 142K", + "prereqs": [], + "title": "Politics and Warfare (4)" + }, + "POLI 142L": { + "dept": "POLI", + "description": "\u201cTerrorism\u201d uses \u201cillegitimate\u201d violence to achieve political goals. This course uses philosophical, historical, and contemporary material from distinct cultures to understand which actions are defined as \u201cterrorist,\u201d who uses them, why, and when, as well as the determinants of their effectiveness.", + "name": "POLI 142L", + "prereqs": [], + "title": "Insurgency and Terrorism (4)" + }, + "POLI 142M": { + "dept": "POLI", + "description": "Lectures and readings examine US foreign policy in Europe, Latin America, and East Asia with attention to current problems with specific nations (e.g., Bosnia) and issues (e.g., terrorism). This course integrates historical, comparative, and foreign perspectives on regional security dynamics.", + "name": "POLI 142M", + "prereqs": [], + "title": "US Foreign Policy/Regional Security (4)" + }, + "POLI 142N": { + "dept": "POLI", + "description": "An introduction to analytic techniques for assessing policy options in the field of national security. ", + "name": "POLI 142N", + "prereqs": [], + "title": "American Defense Policy (4)" + }, + "POLI 142P": { + "dept": "POLI", + "description": "This course examines the most critical areas in contemporary world politics. While the emphasis will be placed on American involvement in each crisis, an effort will be made to acquaint the student with its historical and political background. ", + "name": "POLI 142P", + "prereqs": [], + "title": "Crisis Areas in World Politics (4)" + }, + "POLI 142Q": { + "dept": "POLI", + "description": "This course explores the way in which the international rivalry between the Soviet Union and the United States affected relationships between the two powers, their allies, the Third World, and above all, their internal domestic affairs and development.", + "name": "POLI 142Q", + "prereqs": [], + "title": "Cold War (4)" + }, + "POLI 143A": { + "dept": "POLI", + "description": "How has warfighting evolved over the centuries? How has it varied across cultures? What has war been like for soldiers and civilians? How do societies mobilize for war, and how do they change in the short and long term from fighting? ", + "name": "POLI 143A", + "prereqs": [], + "title": "War and Society (4)" + }, + "POLI 144": { + "dept": "POLI", + "description": "This course serves as an introduction to the study of international political economy. We will examine the evolution of international economic relations in trade, finance, and economic development and discuss different explanations for its likely causes and consequences.", + "name": "POLI 144", + "prereqs": [], + "title": "International Political Economy (4)" + }, + "POLI 144AB": { + "dept": "POLI", + "description": "Topics in International Political Economy (4)", + "name": "POLI 144AB", + "prereqs": [], + "title": "Selected" + }, + "POLI 144D": { + "dept": "POLI", + "description": "Examination of effects of national policies and international collaboration on public and private international financial institutions, in particular the management of international debt crises, economic policy coordination, and the role of international lender of last resort.", + "name": "POLI 144D", + "prereqs": [], + "title": "International Political Economy: Money and Finance (4)" + }, + "POLI 144E": { + "dept": "POLI", + "description": "Examines theories of trade and protectionism, focusing both on relations among advanced industrial nations and on relations between developed and developing countries. Topics include standard and strategic trade theory, nontariff barriers to trade, export-led growth strategies, regional trade agreements, and the future of the WTO.", + "name": "POLI 144E", + "prereqs": [], + "title": "The Politics of International Trade (4)" + }, + "POLI 144F": { + "dept": "POLI", + "description": "of International Trade and Finance (4)", + "name": "POLI 144F", + "prereqs": [], + "title": "The Politics" + }, + "POLI 145A": { + "dept": "POLI", + "description": "This course examines the domestic and international aspects of the drug trade. It will investigate the drug issues from the perspectives of consumers, producers, traffickers, money launderers, and law enforcement. Course material covers the experience of the United States, Latin America, Turkey, Southeast Asia, Western Europe, and Japan.", + "name": "POLI 145A", + "prereqs": [], + "title": "International Politics and Drugs (4)" + }, + "POLI 145C": { + "dept": "POLI", + "description": "Relations After the Cold War: Theory and Prospect (4)", + "name": "POLI 145C", + "prereqs": [], + "title": "International" + }, + "POLI 146A": { + "dept": "POLI", + "description": "and Latin America: Political and Economic Relations (4)", + "name": "POLI 146A", + "prereqs": [], + "title": "The U.S." + }, + "POLI 147B": { + "dept": "POLI", + "description": "An historical and topical survey of major issues in Russian-American relations, such as security arrangements in the post-Soviet space, the war on terrorism, arms control and nonproliferation, and international energy.", + "name": "POLI 147B", + "prereqs": [], + "title": "Russian-American Relations (4)" + }, + "POLI 150A": { + "dept": "POLI", + "description": "Comparative analysis of attempts by the United States and other industrialized countries to initiate, regulate and reduce immigration from Third World countries. Social and economic factors shaping outcomes of immigration policies, public opinion toward immigrants, anti-immigration movements, and immigration policy reform options in industrialized countries. ", + "name": "POLI 150A", + "prereqs": [], + "title": "Politics of Immigration (4)" + }, + "POLI 151": { + "dept": "POLI", + "description": "Surveys the theory and function", + "name": "POLI 151", + "prereqs": [], + "title": "International Organizations (4)" + }, + "POLI 153": { + "dept": "POLI", + "description": "This course introduces students to the role of the EU as a foreign policy actor. Topics include the development of the EU\u2019s trade policy, foreign aid policy, security policy, as well as case studies of EU foreign policy.", + "name": "POLI 153", + "prereqs": [], + "title": "The European Union in World Politics (4)" + }, + "POLI 154": { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of international relations. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "name": "POLI 154", + "prereqs": [], + "title": "Special Topics in International Relations (4)" + }, + "POLI 160AA": { + "dept": "POLI", + "description": "(Same as USP 101) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ", + "name": "POLI 160AA", + "prereqs": [ + "POLI 10", + "POLI 11" + ], + "title": "Introduction to Policy Analysis (4)" + }, + "POLI 160AB": { + "dept": "POLI", + "description": "In this course, students will use their knowledge of the political and economic foundations of public policy making to conduct research in a wide variety of public policy problems. ", + "name": "POLI 160AB", + "prereqs": [ + "POLI 160AA" + ], + "title": "Introduction to Policy Analysis (4)" + }, + "POLI 162": { + "dept": "POLI", + "description": "This course will explore contemporary environmental issues such as global warming, endangered species, and land use. Students will be asked to analyze various policy options and to write case analyses. Policies may be debated in class.", + "name": "POLI 162", + "prereqs": [], + "title": "Environmental Policy (4)" + }, + "POLI 163": { + "dept": "POLI", + "description": "Politics are understood as the combination of individual preferences and decisions into collective choices. What are the issues involved in aggregating individual preferences, what is the choice of rules\u2014formal and informal\u2014for doing so.", + "name": "POLI 163", + "prereqs": [], + "title": "Analyzing Politics (4)" + }, + "POLI 165": { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of policy analysis. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "name": "POLI 165", + "prereqs": [], + "title": "Special Topic: Policy Analysis (4)" + }, + "POLI 168": { + "dept": "POLI", + "description": "The use of real data to assess policy alternatives. Introduction to benefit/cost analysis, decision theory, and the valuation of public goods. Applications to health, environmental, and regulatory economic policy making.", + "name": "POLI 168", + "prereqs": [], + "title": "Policy Assessment (4)" + }, + "POLI 170A": { + "dept": "POLI", + "description": "Statistics for Political Science and Public Policy (4)", + "name": "POLI 170A", + "prereqs": [], + "title": "Introductory" + }, + "POLI 171": { + "dept": "POLI", + "description": "This class explores how we can make policy recommendations using data. We attempt to establish causal relationships between policy intervention and outcomes based on statistical evidence. Hands-on examples will be provided throughout the course. ", + "name": "POLI 171", + "prereqs": [], + "title": "Making Policy with Data (4)" + }, + "POLI 172": { + "dept": "POLI", + "description": "An accelerated course in computer programming and data analytics for collecting, analyzing, and understanding data in the social world. Students engage in hands-on learning with applied social science problems, developing statistical and computational skills for sophisticated data manipulation, analysis, visualization. ", + "name": "POLI 172", + "prereqs": [ + "POLI 30", + "POLI 30D" + ], + "title": "Advanced Social Data Analytics (4)" + }, + "POLI 191A\u2013B": { + "dept": "POLI", + "description": "Senior Honors Seminar: Frontiers of Political Science (4-4)", + "name": "POLI 191A\u2013B", + "prereqs": [], + "title": "" + }, + "POLI 192": { + "dept": "POLI", + "description": "The Senior Seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in political science at the upper-division level. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "POLI 192", + "prereqs": [], + "title": "Senior Seminar in Political Science (1)" + }, + "POLI 194": { + "dept": "POLI", + "description": "(Same as Com/Gen 194; USP 194, HITO 193, SocE 194, COGS 194) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "name": "POLI 194", + "prereqs": [], + "title": "Research Seminar in Washington, DC (4)" + }, + "POLI 194RA": { + "dept": "POLI", + "description": "Preparation of a major paper from research conducted while participating in the Research Apprenticeship (POLI 198RA). Presentations to and participation in weekly seminar meetings also required. Students can enroll in POLI 194RA only if they have previously taken or are simultaneously enrolled in 198RA. ", + "name": "POLI 194RA", + "prereqs": [ + "POLI 30" + ], + "title": "Research Apprenticeship Seminar (4)" + }, + "POLI 194SD": { + "dept": "POLI", + "description": "The Local Internship Research Seminar will be paired with a Local Internship in Political Science (POLI 197SD) in the same quarter. The linkage to this research seminar will provide advanced academic training in analytic skills appropriate to the internship experience and requires a substantial paper based on original research. ", + "name": "POLI 194SD", + "prereqs": [ + "POLI 197SD" + ], + "title": "Local Internship Research Seminar (4)" + }, + "POLI 195": { + "dept": "POLI", + "description": "Teaching and tutorial activities associated with courses and seminars. Limited to advanced political science majors with at least a 3.5 GPA in upper-division political science courses. P/NP grades only. May be taken for credit two times, but only four units may be used for major credit. ", + "name": "POLI 195", + "prereqs": [], + "title": "Apprentice Teaching (4)" + }, + "POLI 197I": { + "dept": "POLI", + "description": "This internship is attached to the UCDC Program. Students participating in the UCDC Program are placed in an internship in the Washington, DC, area requiring approximately seventeen to twenty-three hours per week. ", + "name": "POLI 197I", + "prereqs": [], + "title": "Political Science Washington Internship (6, 8)" + }, + "POLI 197SD": { + "dept": "POLI", + "description": "Individual placements for field learning integrated with political science. A written contract involving all parties with learning objectives, a project outline, and a means of supervision and progress evaluation must be filed with the faculty adviser and department undergraduate coordinator prior to the beginning of the internship. P/NP grades only. May be taken for credit two times. ", + "name": "POLI 197SD", + "prereqs": [ + "POLI 194SD", + "POLI 30" + ], + "title": "Local Internship in Political Science (4)" + }, + "POLI 198": { + "dept": "POLI", + "description": "Directed group study in an area not presently covered by the departmental curriculum. P/NP grades only. ", + "name": "POLI 198", + "prereqs": [], + "title": "Directed Group Study (2-4)" + }, + "POLI 198RA": { + "dept": "POLI", + "description": "Students conduct directed research as part of a principal investigator\u2019s project and under the supervision of a department mentor. Students may conduct research with a department mentor for up to two quarters. This course is part of the Research Apprenticeship program in political science. P/NP grades only. May be taken for credit two times. ", + "name": "POLI 198RA", + "prereqs": [ + "POLI 30" + ], + "title": "Research Apprenticeship (4)" + }, + "POLI 199": { + "dept": "POLI", + "description": "Independent reading in advanced political science by individual students. (P/NP grades only.) ", + "name": "POLI 199", + "prereqs": [], + "title": "Independent Study for Undergraduates (2 or 4)" + }, + "POLI 200A": { + "dept": "POLI", + "description": "An introduction to the theoretical concepts in the discipline of political science that are commonly used across various subfields. Each week will introduce the core concept(s) and discuss applications from several, if not all subfields in the department. ", + "name": "POLI 200A", + "prereqs": [], + "title": "Foundations of Political Science (4)" + }, + "POLI 200B": { + "dept": "POLI", + "description": "An overview of the normative and positive issues associated with modern democracies. The appeal and the social, political, and economic arrangements of democracies will be explored. ", + "name": "POLI 200B", + "prereqs": [], + "title": "Democracy (4)" + }, + "POLI 200C": { + "dept": "POLI", + "description": "An overview of the normative and positive issues associated with decentralized (market) versus centralized (political) mechanics of allocation. The appropriate role of government in the economy will be explored. ", + "name": "POLI 200C", + "prereqs": [], + "title": "States and Markets (4)" + }, + "POLI 204A": { + "dept": "POLI", + "description": "This course will study various approaches to knowledge accumulation in social science. A basic outline of scientific method will be used to examine the difference between theories as assumptions and axioms and hypotheses as \u201cif-then\u201d statements derived from theory. Experimental, quasi-experimental, and qualitative designs will be discussed. ", + "name": "POLI 204A", + "prereqs": [], + "title": "Research Design (4)" + }, + "POLI 204B": { + "dept": "POLI", + "description": "The use of quantitative methods (particularly multiple regression and its extensions) in political science. Emphasis on understanding the methods and using them in political science applications. ", + "name": "POLI 204B", + "prereqs": [], + "title": "Quantitative Methods I (4)" + }, + "POLI 204C": { + "dept": "POLI", + "description": "This course introduces students to the rudiments of decision theory and game theory. Emphasis will be placed on modeling and solving games. ", + "name": "POLI 204C", + "prereqs": [], + "title": "Game Theory 1 (4)" + }, + "POLI 205": { + "dept": "POLI", + "description": "This course covers advanced topics in game theory. Covered topics will include incomplete information in static and dynamic games, infinitely repeated games, and bargaining games. Emphasis will be placed on advanced equilibrium concepts, and applications of interest to political scientists. ", + "name": "POLI 205", + "prereqs": [], + "title": "Game Theory II (4)" + }, + "POLI 210AA": { + "dept": "POLI", + "description": "of Political Thought: Thucydides to Rousseau (4)", + "name": "POLI 210AA", + "prereqs": [], + "title": "Systems" + }, + "POLI 210AB": { + "dept": "POLI", + "description": "of Political Thought: Kant to Rawls (4)", + "name": "POLI 210AB", + "prereqs": [], + "title": "Systems" + }, + "POLI 212": { + "dept": "POLI", + "description": "(Same as Soc/G 202.) Themes important for social theory at the turn of the twenty-first century: Marxism, Gramsci, Althusser, critical theory (Adorno, Habermas), interpretation (Geertz), social systems (Parson), poststructuralism (Foucault), postmodernism, and social constructivism (Bourdieu). ", + "name": "POLI 212", + "prereqs": [], + "title": "Contemporary Sociological Theory (4)" + }, + "POLI 213": { + "dept": "POLI", + "description": "(Same as LTCO 287.) A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. ", + "name": "POLI 213", + "prereqs": [], + "title": "Culture and Political Theory (4)" + }, + "POLI 214": { + "dept": "POLI", + "description": "An examination of selected texts in Marxist and post-Marxist political philosophy, with a focus on the theme of individual and collective identity including issues concerning alienation, consciousness, and ideology. ", + "name": "POLI 214", + "prereqs": [], + "title": "Marxist and Post-Marxist Political Philosophy (4)" + }, + "POLI 216": { + "dept": "POLI", + "description": "Normative approaches to liberty, equality, justice, and democracy, mostly Anglo-American and empirical approaches to justice. Thinkers such as Rawls, Habermas, Nozick, Dworkin, Raz, Roemer, Elster, Ostrom, Bowles, and Gintis may be considered. ", + "name": "POLI 216", + "prereqs": [], + "title": "Contemporary Liberal and Democratic Theory (4)" + }, + "POLI 219": { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of political theory. Issues and research areas will vary each time the course is offered. ", + "name": "POLI 219", + "prereqs": [], + "title": "Special Topics in Political Theory (4)" + }, + "POLI 220A": { + "dept": "POLI", + "description": "This course will provide a general literature review in comparative politics to serve as preparation for the field examination. ", + "name": "POLI 220A", + "prereqs": [], + "title": "Comparative Politics: State and Society (4)" + }, + "POLI 220B": { + "dept": "POLI", + "description": "This is a second course in comparative politics designed as a preparation for the field examination. It will focus on the comparative study of political institutions. ", + "name": "POLI 220B", + "prereqs": [], + "title": "Comparative Politics: Institutions (4)" + }, + "POLI 220C": { + "dept": "POLI", + "description": "Survey of theories, with empirical cases explaining origins of the modern state. ", + "name": "POLI 220C", + "prereqs": [], + "title": "Origins of the State (4)" + }, + "POLI 223A": { + "dept": "POLI", + "description": "A survey of the academic literature on parliamentary studies, comparing the research on legislative elections, behavior, and organization in American, European, and Asian democracies. The course will also compare various approaches to studying legislative activity. ", + "name": "POLI 223A", + "prereqs": [], + "title": "Comparative Parliamentary Studies (4)" + }, + "POLI 224": { + "dept": "POLI", + "description": "A survey of theories explaining the processes of democratization and democratic stability. ", + "name": "POLI 224", + "prereqs": [], + "title": "The Politics of Democratization (4)" + }, + "POLI 224A": { + "dept": "POLI", + "description": "Course looks at elections in consolidating democracies with an eye to evaluating existing theories of elections with new data. Also explores new empirical patterns in countries around the world, especially Africa, Latin America, Eastern Europe, and the Soviet successor states. ", + "name": "POLI 224A", + "prereqs": [], + "title": "Elections in Consolidating Democracies (4)" + }, + "POLI 225": { + "dept": "POLI", + "description": "Contending analysis of the types, strategies, causes, processes, and consequences of political violence such as revolutions, insurgencies, and ethnic conflict. ", + "name": "POLI 225", + "prereqs": [], + "title": "Political Violence (4)" + }, + "POLI 225B": { + "dept": "POLI", + "description": "A reading and research seminar on the origins, development, and politics of nationalism and the nation-state. ", + "name": "POLI 225B", + "prereqs": [], + "title": "The Nation-State (4)" + }, + "POLI 227": { + "dept": "POLI", + "description": "An introduction to seminal and current research in comparative political economy. Course explores how various political institutions and processes affect economic outcomes (e.g. growth, inequality, and redistribution) and how the economy influences politics (e.g. democratization, electoral institutions, and welfare states). ", + "name": "POLI 227", + "prereqs": [ + "POLI 200C" + ], + "title": "Comparative Political Economy (4)" + }, + "POLI 229": { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of comparative politics. Issues and research areas will vary each time the course is offered. ", + "name": "POLI 229", + "prereqs": [], + "title": "Special Topics in Comparative Politics (4)" + }, + "POLI 231E": { + "dept": "POLI", + "description": "This course provides an overview of previous and current efforts to explain political and economic development in non-Western settings.", + "name": "POLI 231E", + "prereqs": [], + "title": "Politics of Development (4)" + }, + "POLI 232": { + "dept": "POLI", + "description": "This course will study various theories purporting to explain why states succeed or fall at creating institutions by international governance and what effects, if any, those institutions have. ", + "name": "POLI 232", + "prereqs": [], + "title": "International Organization (4)" + }, + "POLI 235A": { + "dept": "POLI", + "description": "Introductory reading seminar on Latin American politics to acquaint students with leading schools of thought, provide critical perspective on premises and methodology, and identify themes for further inquiry. Themes include authoritarianism, revolution, democratization, regional conflict, and emergence of middle-level powers. ", + "name": "POLI 235A", + "prereqs": [], + "title": "Latin American Politics (4)" + }, + "POLI 236": { + "dept": "POLI", + "description": "An interdisciplinary seminar covering origins, consequences, and characteristics of worker migration from Third World countries (especially Mexico, Central America, and the Caribbean basin) to the United States, from the nineteenth century to the present. ", + "name": "POLI 236", + "prereqs": [], + "title": "Immigration Policy and Politics (4)" + }, + "POLI 240": { + "dept": "POLI", + "description": "A survey of the principal theories and approaches to the study of international relations. ", + "name": "POLI 240", + "prereqs": [], + "title": "International Relations Theory (4)" + }, + "POLI 242": { + "dept": "POLI", + "description": "This course explores contemporary research on European Union politics from a comparative and international relations perspective, and links this research to broader questions of global governance. ", + "name": "POLI 242", + "prereqs": [], + "title": "The European Union and Global Governance (4)" + }, + "POLI 243": { + "dept": "POLI", + "description": "A colloquium surveying the major theoretical controversies in the study of international and national security. ", + "name": "POLI 243", + "prereqs": [], + "title": "International Security (4)" + }, + "POLI 244": { + "dept": "POLI", + "description": "This course exposes students to contemporary research on international institutions. What leads nations to cede sovereignty? How do international institutions obtain a measure of authority in world affairs? What makes an institution \u201csuccessful\u201d? We\u2019ll also examine institutional design. ", + "name": "POLI 244", + "prereqs": [], + "title": "International Institutions (4)" + }, + "POLI 244A": { + "dept": "POLI", + "description": "This seminar provides perspectives on the theories and politics of European integration. Analysis will focus on the development of the European Union, the functioning of core institutions, and the challenges of creating a supranational political regime. ", + "name": "POLI 244A", + "prereqs": [], + "title": "European Integration (4)" + }, + "POLI 245": { + "dept": "POLI", + "description": "A seminar surveying the major theoretical controversies in the study of international political economy. ", + "name": "POLI 245", + "prereqs": [], + "title": "International Political Economy (4)" + }, + "POLI 245A": { + "dept": "POLI", + "description": "This graduate course surveys theories of regional political and economic integration and international cooperation from a comparative and international relations perspective. We compare and contrast the European Union and other regional organizations. ", + "name": "POLI 245A", + "prereqs": [], + "title": "Political Economy of Regional Integration (4)" + }, + "POLI 247A": { + "dept": "POLI", + "description": "Explores empirical research in international relations with special emphasis on international conflict. Topics covered include theories on the causes of war, the distribution of power and conflict, formal and informal alignment, interdependence and conflict, linkages between domestic and international processes, and issues of research design. Students who have previously taken 247 may not take this course for credit. ", + "name": "POLI 247A", + "prereqs": [], + "title": "Quantitative International Relations (4)" + }, + "POLI 247B": { + "dept": "POLI", + "description": "Explores formal analytic and primarily game-theoretic research in international relations with emphasis on conflict and bargaining. Topics include: causes of war and peace, conventional and nuclear deterrence, crisis bargaining, arms race, and two-level games.", + "name": "POLI 247B", + "prereqs": [], + "title": "Formal Models in International Relations (4)" + }, + "POLI 247C": { + "dept": "POLI", + "description": "This course is a survey of the history of international relations from 1618 to 1945. The focus is on diplomacy and war-fighting in their social, economic, political, cultural, and technological contexts. Formative conflicts will be examined in detail. ", + "name": "POLI 247C", + "prereqs": [], + "title": "History of International Relations (4)" + }, + "POLI 248": { + "dept": "POLI", + "description": "(Same as IRGN 290) This seminar is an examination of the different approaches to the study of international relations. Issues and research areas will vary each time the course is offered. ", + "name": "POLI 248", + "prereqs": [], + "title": "Special Topics in International Relations (4)" + }, + "POLI 251": { + "dept": "POLI", + "description": "A critical examination of major contributions to the theoretical and empirical literature on the US Congress, presidency, and federal bureaucracy. ", + "name": "POLI 251", + "prereqs": [], + "title": "American Political Institutions (4)" + }, + "POLI 252": { + "dept": "POLI", + "description": "Theoretical and empirical perspectives on voting and other forms of political participation, parties, interest groups, and public opinion in the United States. ", + "name": "POLI 252", + "prereqs": [], + "title": "American Politics: Behavior (4)" + }, + "POLI 253": { + "dept": "POLI", + "description": "This seminar will survey the existing literature in state politics with an eye toward proposing new research designs. Topics will include the variation across states in electoral systems, campaign finance laws, political culture, legislative institutions, judicial arrangements, and policy outcomes. ", + "name": "POLI 253", + "prereqs": [], + "title": "Research in State Politics (4)" + }, + "POLI 254": { + "dept": "POLI", + "description": "This course examines the historical evolution of the American state with particular attention to theories of political development. Special topics include the development of the party system, electoral and policy realignments, and the evolution of national political institutions. ", + "name": "POLI 254", + "prereqs": [], + "title": "American Political Development (4)" + }, + "POLI 255": { + "dept": "POLI", + "description": "Examines central works on the development of political institutions in US cities; analyses of community power structures; who governs, why, and to what ends; processes and prospects for minority empowerment; the prominence of \u201cgrowth machines\u201d; the political economy of contemporary cities. ", + "name": "POLI 255", + "prereqs": [], + "title": "Urban Politics (4)" + }, + "POLI 257": { + "dept": "POLI", + "description": "This course is designed to acquaint graduate students with the central themes and issues in the study of voting in national elections. ", + "name": "POLI 257", + "prereqs": [], + "title": "Voting and Elections (4)" + }, + "POLI 259": { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of American politics. Issues and research areas will vary each time the course is offered. ", + "name": "POLI 259", + "prereqs": [], + "title": "Special Topics in American Politics (4)" + }, + "POLI 27": { + "dept": "POLI", + "description": "An examination of ethical", + "name": "POLI 27", + "prereqs": [], + "title": "Ethics and Society (4)" + }, + "POLI 270": { + "dept": "POLI", + "description": "This course reviews essential calculus and linear algebra and introduces probability theory (probability rules, random variables, univariate and multivariate distributions) and mathematical statistics (sampling distributions, estimation and inference frameworks). ", + "name": "POLI 270", + "prereqs": [], + "title": "Mathematical and Statistical Foundations (4)" + }, + "POLI 271": { + "dept": "POLI", + "description": "Use of advanced quantitative techniques in political science. Students will use political science data to complete small exercises and a major project. Students may not receive credit for both 271B and 271. ", + "name": "POLI 271", + "prereqs": [], + "title": "Advanced Statistical Applications (4)" + }, + "POLI 272": { + "dept": "POLI", + "description": "Provides students a solid understanding of Bayesian inference and Markov chain Monte Carlo methods. Topics covered include Bayesian treatment of the linear model, Markov chain Monte Carlo methods, assessing model adequacy, and hierarchical models. ", + "name": "POLI 272", + "prereqs": [], + "title": "Bayesian Methods (4)" + }, + "POLI 273": { + "dept": "POLI", + "description": "This course covers designs and methods of causal inference, including randomized experiments, cross-sectional and longitudinal designs, and other tools such as sensitivity analysis and randomization inference. These methods are illustrated with examples in political science and positive political economy. ", + "name": "POLI 273", + "prereqs": [], + "title": "Causal Inference (4)" + }, + "POLI 274": { + "dept": "POLI", + "description": "This class explores statistical and computational methods to enable students to use text as a data source in the social sciences. Hands-on examples and a final project will equip students to work with text data in their own research. ", + "name": "POLI 274", + "prereqs": [], + "title": "Text as Data (4)" + }, + "POLI 275": { + "dept": "POLI", + "description": "This course covers advanced topics in the design and implementation of field surveys and interviews. Questionnaire design and survey techniques for sensitive topics such as list experiments will be developed, as well as sampling methodologies to achieve representivity.", + "name": "POLI 275", + "prereqs": [], + "title": "Interviews, Survey Design, and Sampling (4)" + }, + "POLI 278": { + "dept": "POLI", + "description": "This course introduces the formal literature on economic models of voting and electoral politics. It reviews models that look at elections as I) mechanisms for preference aggregation, II) mechanisms for information aggregation, and III) mechanisms for selecting and incentivizing politicians. ", + "name": "POLI 278", + "prereqs": [], + "title": "Political Economy Models of Elections (4)" + }, + "POLI 279": { + "dept": "POLI", + "description": "This course offers selected topics in quantitative methodology. Content may vary each time the course is offered. May be taken for credit three times. ", + "name": "POLI 279", + "prereqs": [], + "title": "Special Topics in Methodology (4)" + }, + "POLI 28": { + "dept": "POLI", + "description": "An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ", + "name": "POLI 28", + "prereqs": [ + "POLI 27" + ], + "title": "Ethics and Society II (4)" + }, + "POLI 280": { + "dept": "POLI", + "description": "Examination of recent research in international law and regulation: development and presentation of research projects by graduate students; presentation of research by faculty. Third-year students present dissertation prospectus, candidates make yearly presentations of dissertation research. S/U grades only. May be taken for credit three times as topics vary. ", + "name": "POLI 280", + "prereqs": [], + "title": "Workshop: International Law and Regulation (4)" + }, + "POLI 281": { + "dept": "POLI", + "description": "Examination of recent research in American politics: development and presentation of research projects by graduate students, presentations of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "name": "POLI 281", + "prereqs": [], + "title": "Workshop: American Politics (4)" + }, + "POLI 282": { + "dept": "POLI", + "description": "Examination of recent research in comparative politics, development and presentation of research projects by graduate students; presentations of research projects by faculty. Third-year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "name": "POLI 282", + "prereqs": [], + "title": "Workshop: Comparative Politics (4)" + }, + "POLI 283": { + "dept": "POLI", + "description": "Examination of recent research in international relations, development and presentation of research projects by graduate students, presentations of research projects by faculty. Third year students present dissertation prospectus; candidates make yearly presentation of dissertation research. May be taken for credit three times. ", + "name": "POLI 283", + "prereqs": [], + "title": "Workshop: International Relations (4)" + }, + "POLI 285": { + "dept": "POLI", + "description": "Examination of recent research in political theory: development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "name": "POLI 285", + "prereqs": [], + "title": "Workshop: Political Theory (4)" + }, + "POLI 286": { + "dept": "POLI", + "description": "Examination of recent research in political methodology; development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "name": "POLI 286", + "prereqs": [], + "title": "Workshop: Methodology (4)" + }, + "POLI 287": { + "dept": "POLI", + "description": "Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on social networks. ", + "name": "POLI 287", + "prereqs": [], + "title": "Multidisciplinary Methods in Political Science: Social Networks (4)" + }, + "POLI 288": { + "dept": "POLI", + "description": "An examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on computational social science. ", + "name": "POLI 288", + "prereqs": [], + "title": "Multidisciplinary Methods in Political Science: Computational Social Science (4)" + }, + "POLI 289": { + "dept": "POLI", + "description": "Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on biology. ", + "name": "POLI 289", + "prereqs": [], + "title": "Multidisciplinary Methods in Political Science: Biology (4)" + }, + "POLI 298": { + "dept": "POLI", + "description": "Guided and supervised reading in the literature of the several fields of political science.", + "name": "POLI 298", + "prereqs": [], + "title": "Directed Reading (1\u201312)" + }, + "POLI 299": { + "dept": "POLI", + "description": "Independent work by graduate students engaged in research and writing of second-year paper and doctoral dissertation, under direct supervision of advisor.", + "name": "POLI 299", + "prereqs": [], + "title": "Dissertation Research (1\u201312)" + }, + "POLI 30 or 30D": { + "dept": "POLI", + "description": "Introduction to the logic of inference in social science and to quantitative analysis in political science and public policy including research design, data collection, data description and computer graphics, and the logic of statistical inference (including linear regression). POLI 30 is Lecture only, and POLI 30D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 30 and 30D.", + "name": "POLI 30 or 30D", + "prereqs": [], + "title": "Political Inquiry (4)" + }, + "POLI 40": { + "dept": "POLI", + "description": "This course is designed as a broad introduction to the study of law as a social institution and its relations to other institutions in society. The focus will be less on the substance of law (legal doctrine and judicial opinions) than on the process of law\u2013how legal rules both reflect and shape basic social values and their relation to social, political, and economic conflicts within society.", + "name": "POLI 40", + "prereqs": [], + "title": "Introduction to Law and Society (4)" + }, + "POLI 5 or 5D": { + "dept": "POLI", + "description": "Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: ECON 5, POLI 5, or POLI 5D.", + "name": "POLI 5 or 5D", + "prereqs": [], + "title": "Data Analytics for the Social Sciences (4)" + }, + "POLI 500": { + "dept": "POLI", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation, and grading of examinations and other written exercises, and student relations. Twenty-four units of teaching apprenticeship meet the department teaching requirement for the PhD.", + "name": "POLI 500", + "prereqs": [], + "title": "Apprentice Teaching (1\u20134)" + }, + "POLI 501": { + "dept": "POLI", + "description": "(1\u20134)", + "name": "POLI 501", + "prereqs": [], + "title": "Seminar on Teaching Development\u2014American Politics" + }, + "POLI 502": { + "dept": "POLI", + "description": "(1\u20134)", + "name": "POLI 502", + "prereqs": [], + "title": "Seminar on Teaching Development\u2014Comparative Politics" + }, + "POLI 503": { + "dept": "POLI", + "description": "A seminar designed for graduate students serving as teaching assistants in international relations, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations under the supervision of the instructor in charge of the course. ", + "name": "POLI 503", + "prereqs": [], + "title": "Seminar on Teaching Development\u2014International Relations (1\u20134)" + }, + "POLI 504": { + "dept": "POLI", + "description": "(1\u20134)", + "name": "POLI 504", + "prereqs": [], + "title": "Seminar on Teaching Development\u2014Political Theory" + }, + "POLI 599": { + "dept": "POLI", + "description": "Training in teaching methods in the field of political science. Examines evidence-based research on undergraduate teaching and learning with emphasis on effective teaching techniques appropriate to political science. Covers TA training, syllabus design, and effective teaching strategies. ", + "name": "POLI 599", + "prereqs": [], + "title": "Teaching Methods in Political Science (2)" + }, + "POLI 87": { + "dept": "POLI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. May not be used to fulfill any major or minor requirements in political science.", + "name": "POLI 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "POLI 90": { + "dept": "POLI", + "description": "Selected topics to introduce students to current issues and trends in political science. May not be used to fulfill any major or minor requirements in political science. P/NP grades only. May be taken for credit four times.", + "name": "POLI 90", + "prereqs": [], + "title": "Undergraduate Seminar (4)" + }, + "POLI 99H": { + "dept": "POLI", + "description": "Independent study or research under direction of a member of the faculty. ", + "name": "POLI 99H", + "prereqs": [], + "title": "Independent Study (1)" + }, + "PSYC 1": { + "dept": "PSYC", + "description": "This course provides an overview of the basic concepts in psychology. Topics may include human information processing, learning and memory, motivation, development, language acquisition, social psychology, and personality.", + "name": "PSYC 1", + "prereqs": [], + "title": "Psychology (4)" + }, + "PSYC 100": { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of the causes, characteristics, and treatment of psychological disorders. Particular emphasis is given to the interaction between biological, psychological, and sociocultural processes contributing to abnormal behavior. Students may not receive credit for both PSYC 163 and PSYC 100. ", + "name": "PSYC 100", + "prereqs": [], + "title": "Clinical Psychology (4)" + }, + "PSYC 101": { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of the field of developmental psychology, including topics in cognitive, language, and social development. ", + "name": "PSYC 101", + "prereqs": [], + "title": "Developmental Psychology (4)" + }, + "PSYC 102": { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of the neural mechanisms that support vision, audition, touch, olfaction, and taste. ", + "name": "PSYC 102", + "prereqs": [], + "title": "Sensory Neuroscience (4)" + }, + "PSYC 104": { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of the field of social psychology, covering a review of the field\u2019s founding principles, classic findings, and a survey of recent findings. Topics will include social perception, attributions and attitudes, stereotypies, social influence, group dynamics, and aggressive and prosocial tendencies. ", + "name": "PSYC 104", + "prereqs": [], + "title": "Social Psychology (4)" + }, + "PSYC 105": { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of cognitive psychology, the scientific study of mental processes: how people acquire, store, transform, use, and communicate information. Topics may include perception, attention, language, memory, reasoning, problem solving, decision-making, and creativity. ", + "name": "PSYC 105", + "prereqs": [], + "title": "Cognitive Psychology (4)" + }, + "PSYC 106": { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of human and animal behavior from a neuroscience perspective. Topics include the functions and mechanisms of perception, motivation (sex, sleep, hunger, emotions), learning and memory, and motor control and movement. ", + "name": "PSYC 106", + "prereqs": [], + "title": "Behavioral Neuroscience (4)" + }, + "PSYC 108": { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of neuroanatomy and major methods and results from neuroimaging and neuropsychological studies of behavior. Topics include attention, motor control, executive function, memory, learning, emotion, and language. ", + "name": "PSYC 108", + "prereqs": [], + "title": "Cognitive Neuroscience (4)" + }, + "PSYC 110": { + "dept": "PSYC", + "description": "This course provides research seminars by a range of departmental faculty, exposing students to contemporary research problems in many areas of psychology. Class discussions will follow faculty presentations. Must be taken for a letter grade for the Psychology Honors Program. ", + "name": "PSYC 110", + "prereqs": [], + "title": "Juniors Honors Research Seminars (4)" + }, + "PSYC 111A": { + "dept": "PSYC", + "description": "This course provides training in applying advanced statistical methods to experimental design. Emphasis will be placed on the developing skills in statistical problem-solving, using computer applications, and writing scientific reports. Must be taken for a letter grade for the Psychology Honors Program. ", + "name": "PSYC 111A", + "prereqs": [], + "title": "Research Methods I (6)" + }, + "PSYC 111B": { + "dept": "PSYC", + "description": "This course builds upon the material of PSYC 111A. Students will participate in data collection, data organization, statistical analysis and graphical analysis, with emphasis placed on developing scientific report writing, presentations, and critical thinking about experimental methods. Must be taken for a letter grade for the Psychology Honors Program. ", + "name": "PSYC 111B", + "prereqs": [ + "PSYC 111A" + ], + "title": "Research Methods II (6)" + }, + "PSYC 114": { + "dept": "PSYC", + "description": "This course provides an overview and training in the use of psychophysiological methods to investigate the cognitive and emotional process involved in understanding and reacting to other people. Students will develop individual research questions and actively participate in designing and conducting the experiments. ", + "name": "PSYC 114", + "prereqs": [], + "title": "Psychophysiological Perspectives on the Social Mind Laboratory (4)" + }, + "PSYC 115A": { + "dept": "PSYC", + "description": "", + "name": "PSYC 115A", + "prereqs": [], + "title": "Laboratory in Cognitive Psychology I (4)" + }, + "PSYC 115B": { + "dept": "PSYC", + "description": "This course is designed to extend the training of PSYC 115A in the design, execution, and analysis of cognitive psychology experiments. Students may not receive credit for both PSYC 115 and PSYC 115B. ", + "name": "PSYC 115B", + "prereqs": [ + "PSYC 115A" + ], + "title": "Laboratory in Cognitive Psychology II (4)" + }, + "PSYC 116": { + "dept": "PSYC", + "description": "This course provides examination of theory, research design, and methods for clinical research. Students complete an internship at a clinical research lab, culminating in a paper. May be taken for credit three times for a total of eight units. Students may not receive credit for both PSYC 116 and PSYC 107. ", + "name": "PSYC 116", + "prereqs": [ + "PSYC 199" + ], + "title": "Laboratory in Clinical Psychology Research (2, 4)" + }, + "PSYC 117": { + "dept": "PSYC", + "description": "This course provides experience conducting educational research and outreach for children in greater San Diego County. May be taken for credit three times. ", + "name": "PSYC 117", + "prereqs": [], + "title": "Laboratory in Educational Research and Outreach (4)" + }, + "PSYC 120": { + "dept": "PSYC", + "description": "This course provides a survey of research and theory in learning and motivation. Topics include instincts, reinforcement, stimulus control, choice, and human application. ", + "name": "PSYC 120", + "prereqs": [ + "PSYC 121", + "PSYC 140" + ], + "title": "Learning and Motivation (4)" + }, + "PSYC 121": { + "dept": "PSYC", + "description": "This course provides laboratory experience in operant psychology. ", + "name": "PSYC 121", + "prereqs": [ + "PSYC 120" + ], + "title": "Laboratory in Operant Psychology (4)" + }, + "PSYC 122": { + "dept": "PSYC", + "description": "This course focuses on approaches to the study of behavior and its underlying fundamental units of analysis in human and nonhuman animals. Students may not receive credit for both PSYC 122 and PSYC 103. ", + "name": "PSYC 122", + "prereqs": [], + "title": "Mechanisms of Animal Behavior (4)" + }, + "PSYC 123": { + "dept": "PSYC", + "description": "This course provides an understanding of how the frontal lobes allow us to engage in complex mental processes. Topics may include anatomy and theory of prefrontal function, frontal lobe clinical syndromes, pharmacology and genetics, emotion control, and cognitive training. ", + "name": "PSYC 123", + "prereqs": [], + "title": "Cognitive Control and Frontal Lobe Function (4)" + }, + "PSYC 124": { + "dept": "PSYC", + "description": "This course provides an introduction to the history, purpose, and recent changes to the Diagnostic and Statistical Manual of Mental Disorders along with appropriate evidence-based interventions. Other topics include psychiatric emergencies, crisis management, and ethics. Recommended preparation: Completion of PSYC 100. ", + "name": "PSYC 124", + "prereqs": [], + "title": "Clinical Assessment and Treatment (4)" + }, + "PSYC 125": { + "dept": "PSYC", + "description": "This course provides a fundamental understanding of brain-behavior relationships as applied to the practice of clinical neuropsychology. Major topics include functional neuroanatomy, principles of neuropsychological assessment and diagnosis, and the neuropsychological presentation of common neurologic and psychiatric conditions. ", + "name": "PSYC 125", + "prereqs": [], + "title": "Clinical Neuropsychology (4)" + }, + "PSYC 126": { + "dept": "PSYC", + "description": "This course provides experience with clients in a community mental health care setting, under professional supervision. Seminar-based instruction also provides a framework for understanding theoretical, practical, and ethical issues related to client care. ", + "name": "PSYC 126", + "prereqs": [ + "PSYC 124", + "PSYC 100" + ], + "title": "Practicum in Community Mental Health Care (4)" + }, + "PSYC 128": { + "dept": "PSYC", + "description": "This course provides basic information about the nature of reading. Topics include word recognition, eye movements, inner speech, sentence processing, memory for text, learning to read, methods for teaching reading, reading disabilities and dyslexia, and speed-reading. Recommended preparation: completion of PSYC 105 or PSYC 145. ", + "name": "PSYC 128", + "prereqs": [], + "title": "Psychology of Reading (4)" + }, + "PSYC 129": { + "dept": "PSYC", + "description": "This course provides an overview of how we perceive the world. Topics include classic studies in perception, discussion of the view that perception is \u201clogical,\u201d and new insights into the neural mechanisms underlying perception. ", + "name": "PSYC 129", + "prereqs": [], + "title": "Logic of Perception (4)" + }, + "PSYC 130": { + "dept": "PSYC", + "description": "This course provides a review of research on delay of gratification. Topics include what makes it so tough, in what situations it is possible, who can do it, and the implications of this ability. ", + "name": "PSYC 130", + "prereqs": [], + "title": "Delay of Gratification (4)" + }, + "PSYC 132": { + "dept": "PSYC", + "description": "This course examines how hormones influence a variety of behaviors and how behavior reciprocally influences hormones. Specific topics covered include aggression, sex and sexuality, feeding, learning, memory, mood and neural mechanisms both in humans and nonhuman animals. Recommended preparation: completion of PSYC 106. ", + "name": "PSYC 132", + "prereqs": [], + "title": "Hormones and Behavior (4)" + }, + "PSYC 133": { + "dept": "PSYC", + "description": "This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. Cross-listed with BIMM 116. ", + "name": "PSYC 133", + "prereqs": [ + "BILD 1", + "PSYC 106", + "PSYC 2" + ], + "title": "Circadian Rhythms\u2014Biological Clocks (4)" + }, + "PSYC 134": { + "dept": "PSYC", + "description": "This course provides an overview of the biology and psychology of eating disorders such as anorexia nervosa, bulimia nervosa, and binge eating disorder. Abnormal, as well as normal, eating will be discussed from various perspectives including endocrinological, neurobiological, psychological, sociological, and evolutionary. ", + "name": "PSYC 134", + "prereqs": [], + "title": "Eating Disorders (4)" + }, + "PSYC 136": { + "dept": "PSYC", + "description": "This course provides an overview of how children\u2019s thinking develops. Topics may include perception, concept formation, memory, problem solving, and social cognition. ", + "name": "PSYC 136", + "prereqs": [ + "PSYC 101", + "PSYC 105" + ], + "title": "Cognitive Development (4)" + }, + "PSYC 137": { + "dept": "PSYC", + "description": "This course provides an overview of social cognition, which blends cognitive and social psychology to understand how people make sense of the social world. Topics may include social perception, inference, memory, motivation, affect, understanding the self, stereotypes, and cultural cognition. ", + "name": "PSYC 137", + "prereqs": [], + "title": "Social Cognition (4)" + }, + "PSYC 138": { + "dept": "PSYC", + "description": "This course provides an overview of auditory perception. Topics may include the physiology of the auditory system, perception of pitch, loudness, and timbre, sound localization, perception of melodic and temporal patterns and musical illusions and paradoxes. Recommended preparation: ability to read musical notation. ", + "name": "PSYC 138", + "prereqs": [], + "title": "Sound and Music Perception (4)" + }, + "PSYC 139": { + "dept": "PSYC", + "description": "This course provides an introduction to the applications of social psychological principles and findings to sports. Topics include motivation, level of aspiration, competition, cooperation, social comparison, and optimal arousal. Additional topics may include the perspective of spectators, discussing motivation and perceptions of success, streaks, and such. ", + "name": "PSYC 139", + "prereqs": [], + "title": "The Social Psychology of Sport (4)" + }, + "PSYC 140": { + "dept": "PSYC", + "description": "This course provides training in applying the principles of human behavior, including choice behavior, self-control, and reasoning. ", + "name": "PSYC 140", + "prereqs": [ + "PSYC 120" + ], + "title": "Human Behavior Laboratory (4)" + }, + "PSYC 141": { + "dept": "PSYC", + "description": "This course provides insight into the question of whether important aspects of human behavior can be explained as resulting from natural selection. Topics include sex differences, selfishness and altruism, homicide and violence, and context effects of human reasoning. ", + "name": "PSYC 141", + "prereqs": [], + "title": "Evolution and Human Nature (4)" + }, + "PSYC 142": { + "dept": "PSYC", + "description": "This course provides a survey of research on consciousness from an experimental psychology perspective. Special emphasis will be placed on cognitive, neuro-imaging, and clinical/psychiatric investigative techniques, and on the scientific assessment of the mind-body problem. ", + "name": "PSYC 142", + "prereqs": [], + "title": "Psychology of Consciousness (4)" + }, + "PSYC 143": { + "dept": "PSYC", + "description": "This course provides an overview of the behavioral approach, including basic principles, self-control, clinical applications, and the design of cultures. ", + "name": "PSYC 143", + "prereqs": [], + "title": "Control and Analysis of Human Behavior (4)" + }, + "PSYC 144": { + "dept": "PSYC", + "description": "This course will provide a survey of current research and theory concerning human memory and amnesia from both cognitive and neuropsychological perspectives. Topics may include short-term (working) memory, encoding and retrieval, episodic and semantic memory, interference and forgetting, false memory, eyewitness memory, emotion and memory, famous case studies of amnesia, and the effects of aging and dementia on memory. ", + "name": "PSYC 144", + "prereqs": [], + "title": "Memory and Amnesia (4)" + }, + "PSYC 145": { + "dept": "PSYC", + "description": "This course provides an overview of language comprehension and production. Topics include animal communication, language development, and language disorders. Recommended preparation: completion of a course in language, cognition, or philosophy of the mind. ", + "name": "PSYC 145", + "prereqs": [], + "title": "Psychology of Language (4)" + }, + "PSYC 146": { + "dept": "PSYC", + "description": "This course provides an introduction to research on language acquisition and its relationship to conceptual development. Topics include theoretical foundations (e.g., learning mechanisms, theories of concepts) and empirical case studies, including word learning, syntax and semantics, and language and thought. Recommended preparation: completion of a course in language/linguistics, cognition, or cognitive development. ", + "name": "PSYC 146", + "prereqs": [], + "title": "Language and Conceptual Development (4)" + }, + "PSYC 147": { + "dept": "PSYC", + "description": "(4)", + "name": "PSYC 147", + "prereqs": [], + "title": "Gender" + }, + "PSYC 148": { + "dept": "PSYC", + "description": "This course provides an overview of judgment and decision making, which is broadly concerned with preferences, subjective probability, and how they are combined to arrive at decisions. History and current topics will be covered. ", + "name": "PSYC 148", + "prereqs": [], + "title": "Psychology of Judgment and Decision (4)" + }, + "PSYC 150": { + "dept": "PSYC", + "description": "This course provides an overview of the neural basis of visual experience, or how our brain creates what we see in the world around us. ", + "name": "PSYC 150", + "prereqs": [ + "PSYC 102", + "PSYC 108" + ], + "title": "Cognitive Neuroscience of Vision (4)" + }, + "PSYC 151": { + "dept": "PSYC", + "description": "This course provides an introduction to psychology testing. Topics include psychometrics and statistical methods of test construction; application of psychological tests in industry, clinical practice, and applied settings; and controversies in the application of psychological tests. ", + "name": "PSYC 151", + "prereqs": [ + "PSYC 60" + ], + "title": "Tests and Measurement (4)" + }, + "PSYC 152": { + "dept": "PSYC", + "description": "This course provides an overview of the concept of intelligence from multiple perspectives. Topics include how intelligence is measured and the role of this measurement on practical matters, the role of intelligence in comparative psychology, and attempts to analyze intelligence in terms of more fundamental cognitive processes. ", + "name": "PSYC 152", + "prereqs": [], + "title": "Conceptions of Intelligence (4)" + }, + "PSYC 153": { + "dept": "PSYC", + "description": "This course provides an overview of past and current theories of emotion. Topics include facial expressions associated with emotion, psychophysiology, evolutionary perspectives, and specific emotions such as anger, fear, and jealousy. ", + "name": "PSYC 153", + "prereqs": [], + "title": "Psychology of Emotion (4)" + }, + "PSYC 154": { + "dept": "PSYC", + "description": "The course provides an extension of learning principles to human behavior. Topics include broad implications of a behavioral perspective, applied behavior analysis, and applications of behavioral principles to clinical disorders and to normal behavior in varied settings. ", + "name": "PSYC 154", + "prereqs": [], + "title": "Behavior Modification (4)" + }, + "PSYC 155": { + "dept": "PSYC", + "description": "This course provides an exploration of health, illness, treatment, and delivery of treatment as they relate to psychological concepts and research and considers how the social psychological perspective might be extended into medical fields. ", + "name": "PSYC 155", + "prereqs": [], + "title": "Social Psychology and Medicine (4)" + }, + "PSYC 156": { + "dept": "PSYC", + "description": "This course provides an overview of infant development. Students will critically evaluate scientific theories regarding infant cognitive, linguistic, and social behavior. Recommended preparation: PSYC 60. ", + "name": "PSYC 156", + "prereqs": [ + "HDP 1", + "PSYC 101" + ], + "title": "Cognitive Development in Infancy (4)" + }, + "PSYC 157": { + "dept": "PSYC", + "description": "This course provides an overview of the psychology of happiness. Topics may include such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy\u2014youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless? ", + "name": "PSYC 157", + "prereqs": [], + "title": "Happiness (4)" + }, + "PSYC 158": { + "dept": "PSYC", + "description": "This course provides an examination of theories and empirical work pertaining to interpersonal relationships. Topics include attraction, jealousy, attachments, and love. ", + "name": "PSYC 158", + "prereqs": [], + "title": "Interpersonal Relationships (4)" + }, + "PSYC 159": { + "dept": "PSYC", + "description": "This course provides a survey of sensory and perceptual phenomena with an emphasis on their underlying physiological mechanisms. ", + "name": "PSYC 159", + "prereqs": [ + "PSYC 102" + ], + "title": "Physiological Basis of Perception (4)" + }, + "PSYC 161": { + "dept": "PSYC", + "description": "This course provides a survey of psychological findings relevant to designing \u201cuser-friendly\u201d computers and devices and improving aviation and traffic safety. Topics include human perception as it pertains to displays and image compression, human memory limitations relevant to usability, and nature of human errors. ", + "name": "PSYC 161", + "prereqs": [], + "title": "Engineering Psychology (4)" + }, + "PSYC 162": { + "dept": "PSYC", + "description": "This course provides an overview of the intersection between psychology and the legal system, covering a broad range of forensically relevant issues. Topics may include false memories, false confessions, eyewitness reliability, lie detection, DNA exonerations of the wrongfully convicted, jury decision making, and neuroscience and the law Recommended preparation: PSYC 60. ", + "name": "PSYC 162", + "prereqs": [], + "title": "Psychology and the Law (4)" + }, + "PSYC 164": { + "dept": "PSYC", + "description": "This course provides an overview of the scientific study of law making and societal reaction to law breaking activity. Topics include major theories accounting for criminal behavior, the relationship between drugs and crime, the effects of penalties on recidivism, and the psychological effects of incarceration. ", + "name": "PSYC 164", + "prereqs": [], + "title": "Criminology (4)" + }, + "PSYC 166": { + "dept": "PSYC", + "description": "This course provides a survey of the major trends and figures in the development of psychology as a field. Topics may include the mind-body problem, nativism vs. empiricism, and the genesis of behaviorism. ", + "name": "PSYC 166", + "prereqs": [], + "title": "History of Psychology (4)" + }, + "PSYC 167": { + "dept": "PSYC", + "description": "This seminar explores how psychologists think about and study the imagination\u2014the capacity to mentally transcend time, place, and circumstance to think about what might have been, plan and anticipate the future, create and become absorbed in fictional worlds, and consider alternatives to actual experiences. You will learn how to evaluate psychological evidence, and how to read, interpret, discuss, present, and write about scientific literature. PC25, PC26, PS28, PC29, PC30, PC31, PC32, PC33, PC34, PC35, HD01, HD02, HD25, HD26, or CG32 major only.", + "name": "PSYC 167", + "prereqs": [], + "title": "Science of Imagination (4)" + }, + "PSYC 168": { + "dept": "PSYC", + "description": "This course provides an overview of psychological disorders in children. Topics may include anxiety disorders, depressive and bipolar disorders, communication and learning disorders, conduct problems, autism, and other conditions. Emphasis is placed on symptomatology, assessment, etiological factors, epidemiology, and treatment. ", + "name": "PSYC 168", + "prereqs": [], + "title": "Psychological Disorders of Childhood (4)" + }, + "PSYC 169": { + "dept": "PSYC", + "description": "This course provides an introduction to the neural mechanisms underlying perception, memory, language, and other mental capacities. Topics include how brain damage affects these capacities and how patients with brain lesions can contribute to our understanding of the normal brain. ", + "name": "PSYC 169", + "prereqs": [], + "title": "Brain Damage and Mental Function (4)" + }, + "PSYC 170": { + "dept": "PSYC", + "description": "This course provides a journey to the interface between neurophysiology and psychology. Topics include neuroimaging and neuroplasticity. ", + "name": "PSYC 170", + "prereqs": [], + "title": "Cognitive Neuropsychology (4)" + }, + "PSYC 171": { + "dept": "PSYC", + "description": "This course provides an overview of the neurobiology of learning and memory, from cognitive to molecular neuroscience, including human, animal, cellular, and molecular studies of memory. Topics include amnesia, intellectual disability, exceptional intelligence, aging, and Alzheimer\u2019s disease. ", + "name": "PSYC 171", + "prereqs": [ + "PSYC 181", + "PSYC 106", + "PSYC 2" + ], + "title": "Neurobiology of Learning and Memory (4)" + }, + "PSYC 172": { + "dept": "PSYC", + "description": "This course provides an overview of human sexuality research including diversity of sexual behavior and identities, sex and gender development, intimate relationships, and sexual dysfunction. Recommended preparation: completion of PSYC 1, 2, or 106. ", + "name": "PSYC 172", + "prereqs": [], + "title": "Psychology of Human Sexuality (4)" + }, + "PSYC 173": { + "dept": "PSYC", + "description": "This course provides an overview of the biological, psychological, and social influences on the psychology of food and behavior. Topics may include taste preferences and aversions and how they are learned, how culture influences food selection, and food-related behaviors across the lifespan. ", + "name": "PSYC 173", + "prereqs": [], + "title": "Psychology of Food and Behavior (4)" + }, + "PSYC 174": { + "dept": "PSYC", + "description": "This course provides an overview of high-level visual perception, and of how visual perception intersects with attention, memory, and concepts. Topics may include an introduction to the visual system with an emphasis on high-level visual regions; object recognition, face recognition, scene recognition and reading; visual attention, including eye movements during scene perception and during reading; and visual working memory. ", + "name": "PSYC 174", + "prereqs": [], + "title": "Visual Cognition (4)" + }, + "PSYC 176": { + "dept": "PSYC", + "description": "This course provides an overview of how to foster creativity in individuals, groups, and organizations. Themes that cut across all three levels are highlighted. ", + "name": "PSYC 176", + "prereqs": [], + "title": "Creativity (4)" + }, + "PSYC 178": { + "dept": "PSYC", + "description": "This course provides an examination of human behavior in industrial, business, and organizational settings. Topics include psychological principles applied to selection, placement, management, and training; the effectiveness of individuals and groups within organizations, including leadership and control; conflict and cooperation; motivation; and organizational structure and design. ", + "name": "PSYC 178", + "prereqs": [], + "title": "Industrial Organizational Psychology (4)" + }, + "PSYC 179": { + "dept": "PSYC", + "description": "This course provides an overview of the use, abuse, liability, and psychotherapeutic effects of drugs on humans. ", + "name": "PSYC 179", + "prereqs": [], + "title": "Drugs, Addiction, and Mental Disorders (4)" + }, + "PSYC 180": { + "dept": "PSYC", + "description": "This course provides an overview of the period of human adolescence, including the physical, cognitive, social, and emotional changes that take place during this developmental transition. ", + "name": "PSYC 180", + "prereqs": [], + "title": "Adolescence (4)" + }, + "PSYC 181": { + "dept": "PSYC", + "description": "Develops basic principles in psychopharmacology while exploring the behavioral effects of psychoactive drugs and mechanisms of action of drugs. ", + "name": "PSYC 181", + "prereqs": [], + "title": "Drugs and Behavior (4)" + }, + "PSYC 182": { + "dept": "PSYC", + "description": "This course provides an examination of visual, auditory, and tactile illusions and examines how they arise from interactions between perceptual and cognitive systems. ", + "name": "PSYC 182", + "prereqs": [], + "title": "Illusions and the Brain (4)" + }, + "PSYC 184": { + "dept": "PSYC", + "description": "This course provides an overview of the experimental analysis of choice behavior, with an emphasis on the types of choice involved in self-control. A central interest will be the conditions under which decision-making is optimal. ", + "name": "PSYC 184", + "prereqs": [], + "title": "Choice and Self-Control (4)" + }, + "PSYC 187": { + "dept": "PSYC", + "description": "This course provides an overview of how children learn to reason about the social world. Topics may include theory of mind, social categorization and stereotyping, moral reasoning, and cultural learning. Recommended preparation: PSYC 101. ", + "name": "PSYC 187", + "prereqs": [], + "title": "Development of Social Cognition (4)" + }, + "PSYC 188": { + "dept": "PSYC", + "description": "This course provides an overview of problems of impulse control, which are important features of major psychiatric disorders and also of atypical patterns of behavior including pathological gambling, compulsive sex, eating, exercise, and shopping. Topics include development, major common features, treatment, and neurobiological basis of impulse control disorders. ", + "name": "PSYC 188", + "prereqs": [], + "title": "Impulse Control Disorders (4)" + }, + "PSYC 189": { + "dept": "PSYC", + "description": "This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural system that controls them, emphasizing broad fundamental relationships between brain and behavior across species. Cross-listed with BIPN 189. Students may not receive credit for PSYC 189 and BIPN 189. ", + "name": "PSYC 189", + "prereqs": [ + "PSYC 102", + "BILD 2", + "PSYC 106" + ], + "title": "Brain, Behavior, and Evolution (4)" + }, + "PSYC 190": { + "dept": "PSYC", + "description": "This course takes a critical approach to the scientific evidence regarding the role of parents in child development. Topics may include behavior genetics, discipline, diet, sleep, the nature of learning, screen time, impulse control, and vaccination. ", + "name": "PSYC 190", + "prereqs": [], + "title": "Science of Parenting (4)" + }, + "PSYC 191": { + "dept": "PSYC", + "description": "This course provides an overview of the psychology of sleep, including sleep stages and their functions, neurological aspects of sleep, sleep across species and development, dreams and their interpretation, sleep disorders, and the role of sleep in learning and memory. ", + "name": "PSYC 191", + "prereqs": [], + "title": "Psychology of Sleep (4)" + }, + "PSYC 192": { + "dept": "PSYC", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small setting to explore an intellectual topic in psychology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "PSYC 192", + "prereqs": [], + "title": "Senior Seminar in Psychology (1)" + }, + "PSYC 193": { + "dept": "PSYC", + "description": "Selected topics in the field of psychology. May be taken for credit three times as topics vary. ", + "name": "PSYC 193", + "prereqs": [], + "title": "Topics in Psychology (4)" + }, + "PSYC 193L": { + "dept": "PSYC", + "description": "Selected laboratory topics in the field of psychology. May be taken for credit two times as topics vary. ", + "name": "PSYC 193L", + "prereqs": [], + "title": "Psychology Laboratory Topics (4)" + }, + "PSYC 194A": { + "dept": "PSYC", + "description": "This course provides the opportunity for students to plan and carry out a research project under the guidance of the psychology faculty. Students will write a proposal for the research that they plan to conduct in 194B-C and will present this proposal to the class. Must be taken for a letter grade for the Psychology Honors Program. ", + "name": "PSYC 194A", + "prereqs": [ + "PSYC 111A", + "PSYC 110", + "PSYC 111B" + ], + "title": "Honors Thesis I (4)" + }, + "PSYC 194B": { + "dept": "PSYC", + "description": "This course provides the opportunity for students to continue to carry out their research projects. Must be taken for a letter grade for the Psychology Honors Program. ", + "name": "PSYC 194B", + "prereqs": [ + "PSYC 194A" + ], + "title": "Honors Thesis II (4)" + }, + "PSYC 194C": { + "dept": "PSYC", + "description": "This course provides the opportunity for students to complete their research, write their honors thesis, and present their results at the Honors Poster Session. Must be taken for a letter grade for the Psychology Honors Program. ", + "name": "PSYC 194C", + "prereqs": [ + "PSYC 194B" + ], + "title": "Honors Thesis III (4)" + }, + "PSYC 195": { + "dept": "PSYC", + "description": "Introduction to teaching a psychology course. As an undergraduate instructional apprentice, students will attend the lectures of the course, hold weekly meetings with students of the course, hold weekly meetings with course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. P/NP grades only. May be taken for credit two times. Only four units can be applied toward the psychology minor or major as upper-division psychology elective credit. ", + "name": "PSYC 195", + "prereqs": [], + "title": "Instruction in Psychology (4)" + }, + "PSYC 196A-B-C": { + "dept": "PSYC", + "description": "Weekly research seminar, three quarter research project under faculty guidance which culminates in a thesis. Must be taken for a letter grade to satisfy major requirements for Department of Psychology majors. ", + "name": "PSYC 196A-B-C", + "prereqs": [], + "title": "Research Seminar (4-4-4)" + }, + "PSYC 198": { + "dept": "PSYC", + "description": "Group study under the direction of a faculty member in the Department of Psychology. ", + "name": "PSYC 198", + "prereqs": [], + "title": "Directed Group Study in Psychology (2 or 4)" + }, + "PSYC 199": { + "dept": "PSYC", + "description": "Independent study or laboratory research under direction of faculty in the Department of Psychology. P/NP grades only. May be taken for credit nine times. ", + "name": "PSYC 199", + "prereqs": [], + "title": "Independent Study (2, 3, 4)" + }, + "PSYC 2": { + "dept": "PSYC", + "description": "This course provides an introductory survey of the relationship between human behavior and brain function. Specific areas of emphasis include vision and other sensory processes, memory, motivation, attention, and cognition.", + "name": "PSYC 2", + "prereqs": [], + "title": "General Psychology: Biological Foundations (4)" + }, + "PSYC 201A": { + "dept": "PSYC", + "description": "The first part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology.", + "name": "PSYC 201A", + "prereqs": [], + "title": "Quantitative Methods in Psychology I (6)" + }, + "PSYC 201B": { + "dept": "PSYC", + "description": "The second part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology. ", + "name": "PSYC 201B", + "prereqs": [ + "PSYC 201A" + ], + "title": "Quantitative Methods in Psychology II (6)" + }, + "PSYC 201C": { + "dept": "PSYC", + "description": "The third part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology. ", + "name": "PSYC 201C", + "prereqs": [ + "PSYC 201B" + ], + "title": "Quantitative Methods in Psychology III (6)" + }, + "PSYC 202": { + "dept": "PSYC", + "description": "Instruction on organizing, writing, and presenting empirical research papers. Students will learn fundamentals of writing style, data presentation, and time management. This course is intended for psychology graduate students in service of preparation of their first-year papers and talks. ", + "name": "PSYC 202", + "prereqs": [], + "title": "Writing and Presenting Academic Research Papers (4)" + }, + "PSYC 205": { + "dept": "PSYC", + "description": "This seminar provides a selective overview of the scientific study of emotion. We will discuss various theoretical perspectives on emotion and will focus on specific topics such as emotion regulation, affect in social interactions, individual differences, and particular emotions (e.g., embarrassment, envy, and jealousy). ", + "name": "PSYC 205", + "prereqs": [], + "title": "Emotion (4)" + }, + "PSYC 206": { + "dept": "PSYC", + "description": "This course is designed to teach the basics of mathematical modeling. Topics include when, why, and how to use signal detection theory (an essential theory for anyone interested in attention, perception, memory, or decision making), how to analyze reaction time distributions (instead of simply measuring mean RT), how to engage in the fine art of model comparison, and how to avoid creating models that are more complex than the data they seek to explain.", + "name": "PSYC 206", + "prereqs": [], + "title": "Mathematical Modeling (4)" + }, + "PSYC 209": { + "dept": "PSYC", + "description": "This seminar examines issues in the psychology of judgment and decision making. Topics include the heuristics and biases approach, overconfidence, framing effects, intertemporal choice, and rationality. ", + "name": "PSYC 209", + "prereqs": [], + "title": "Judgment and Decision Making (4)" + }, + "PSYC 210": { + "dept": "PSYC", + "description": "Covers many of the neuroscience methods available to study human cognition, with emphasis on concepts of data analysis, and comparative assessment of the different methods (along with alternative nonhuman animal approaches), with an eye to pitfalls and interpretational limitations. ", + "name": "PSYC 210", + "prereqs": [], + "title": "The Methods of Human Cognitive Neuroscience (5)" + }, + "PSYC 211": { + "dept": "PSYC", + "description": "Computational models of perception, cognition, behavior, and social interaction formalize psychological theories, and can offer insights into both how people solve challenging everyday problems and how to improve machine performance on these problems. We will consider formalisms for sensory processing, knowledge representation, learning, planning, and decisions, with an emphasis on modeling common problem structures such as statistical learning and probabilistic inference. ", + "name": "PSYC 211", + "prereqs": [], + "title": "Proseminar in Computational Models of Mind (5)" + }, + "PSYC 212": { + "dept": "PSYC", + "description": "Each year a different topic in visual science is selected for in-depth review and discussion based on current readings. ", + "name": "PSYC 212", + "prereqs": [], + "title": "Visual Science (4)" + }, + "PSYC 213": { + "dept": "PSYC", + "description": "Procedures and Survival in Psychology (4)", + "name": "PSYC 213", + "prereqs": [], + "title": "Professional" + }, + "PSYC 217": { + "dept": "PSYC", + "description": "The course examines cognitive development through the school-age period and social and personality development from infancy through early adolescence. It begins with an examination of early neurological, sensory, motor, and perceptual functions and then focuses on issues in linguistic and cognitive development. The class will first discuss general developmental theory and methods and then topics such as attachment, temperament, self-concept, aggression, family relations, play, and peers. Students cannot get credit for PSYC 217 if they have already taken PSYC 217A or 217B. ", + "name": "PSYC 217", + "prereqs": [], + "title": "Proseminar in Developmental Psychology (5)" + }, + "PSYC 218": { + "dept": "PSYC", + "description": "A survey of basic principles and concepts of cognitive psychology. This course is intended to serve as the basic introduction for first-year students. Basic areas include knowledge, memory, thought, perception, and performance.\u00a0", + "name": "PSYC 218", + "prereqs": [], + "title": "Proseminar in Cognitive Psychology (5)" + }, + "PSYC 220": { + "dept": "PSYC", + "description": "An introduction to social psychology. Psychology and the law, health psychology, attitudes, emotions, person perception and aggression are some of the topics to be covered. ", + "name": "PSYC 220", + "prereqs": [], + "title": "Proseminar in Social Psychology (5)" + }, + "PSYC 221": { + "dept": "PSYC", + "description": "Fundamentals of vision, audition, and other senses. Emphasis will be upon psychophysical approaches to the study of these sensory modalities, as well as some essential aspects of their neurophysiological bases. ", + "name": "PSYC 221", + "prereqs": [], + "title": "Proseminar in Sensation and Perception (5)" + }, + "PSYC 222": { + "dept": "PSYC", + "description": "A survey of the functional neuroanatomical, neurodevelopmental, neurophysiological, and pharmacological correlates of psychological phenomena. ", + "name": "PSYC 222", + "prereqs": [], + "title": "Proseminar in Biological Psychology (5)" + }, + "PSYC 223": { + "dept": "PSYC", + "description": "An in-depth analysis of empirical and theoretical issues in a specialized area of vision or visual perception. Emphasis most likely will be on a topic of ongoing vision research at UC San Diego. S/U grades only. May be taken for credit eighteen times. ", + "name": "PSYC 223", + "prereqs": [], + "title": "Current Directions in Vision (1)" + }, + "PSYC 224": { + "dept": "PSYC", + "description": "A weekly seminar series focused on understanding recent advances in the relationship between neural systems and behavior using a variety of experimental approaches (single unit recording, comp neuro, evolutionary bio, psychophysics, comparative anatomy, lesion work, psychopharm, fMRI, EEG, TMS, etc.). May be taken for credit twenty-four times. ", + "name": "PSYC 224", + "prereqs": [], + "title": "Current Directions in Cognitive Neural Systems (CNS) (1)" + }, + "PSYC 229": { + "dept": "PSYC", + "description": "This course will address the psychology of happiness. The discussions and readings, consisting largely of original research articles, will explore such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy\u2014youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless?", + "name": "PSYC 229", + "prereqs": [], + "title": "Happiness (4)" + }, + "PSYC 231": { + "dept": "PSYC", + "description": "This course will cover a set of general data analysis methods that are broadly applicable in many different subdisciplines of psychology/neuroscience. Topics include model fitting, information theory, Fourier analysis, and machine learning. Recommended preparation: Matlab, C, Java, R, or any related language. ", + "name": "PSYC 231", + "prereqs": [], + "title": "Data Analysis in Matlab (4)" + }, + "PSYC 232": { + "dept": "PSYC", + "description": "Computational theories of human cognition, particularly Bayesian approaches. Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision-making; perception; causal reasoning; categorization; language. Cross-listed with LIGN 228. Recommended preparation: Previous experience with statistics, machine learning, and/or functional programming helpful. ", + "name": "PSYC 232", + "prereqs": [], + "title": "Probabilistic Models of Cognition (4)" + }, + "PSYC 233": { + "dept": "PSYC", + "description": "Advanced topics in learning and motivation, with special emphasis on current research. May be taken for credit eighteen times. ", + "name": "PSYC 233", + "prereqs": [], + "title": "Learning and Motivation (4)" + }, + "PSYC 234": { + "dept": "PSYC", + "description": "This seminar will explore issues related to the evolution of human language, and critically evaluate evidence for the diversity of theories about the topic. Discussions will include the comparative communication and cognition, manual communication, factors surrounding the initial emergence of language, among others. ", + "name": "PSYC 234", + "prereqs": [], + "title": "Evolution of Language (4)" + }, + "PSYC 235": { + "dept": "PSYC", + "description": "This course will explore the nature of human thought and its relationship to language taking a primarily developmental approach but drawing on contributions from the philosophy of mind and language, linguistics, and anthropology. Each year a different case study will be explored.\u00a0Past case studies have included concepts, theory of mind, counting, and the logic of thought. Cross-listed with LIGN 232. ", + "name": "PSYC 235", + "prereqs": [], + "title": "Thought and Language (4)" + }, + "PSYC 236": { + "dept": "PSYC", + "description": "Theory and research on the development, progression, and resolution of substance use and abuse will be reviewed and evaluated. Normal and abnormal patterns of substance involvement will be contrasted across the life span. ", + "name": "PSYC 236", + "prereqs": [], + "title": "Substance Abuse (4)" + }, + "PSYC 237": { + "dept": "PSYC", + "description": "The traditional view of rationality is based upon abstract, content-independent rules for behavior. People sometimes violate these rules in a laboratory setting, but the violations are often systematic and appear to reflect adaptation to the environment outside the laboratory. Such findings raise questions about what it means to be rational. Readings will be empirically oriented and cover the areas of deductive reasoning, inductive reasoning, and choice. ", + "name": "PSYC 237", + "prereqs": [], + "title": "Human Rationality (4)" + }, + "PSYC 240": { + "dept": "PSYC", + "description": "This course will explore", + "name": "PSYC 240", + "prereqs": [], + "title": "The Primate Brain (4)" + }, + "PSYC 241": { + "dept": "PSYC", + "description": "This hands-on programming course focuses on the design, implementation, and analysis of online experiments, particularly using Amazon\u2019s Mechanical Turk. Topics include experimental design and counterbalancing, stimulus presentation and timing, response collection using the mouse and keyboard, and debugging experiments written in JavaScript and HTML/CSS. Course work will include individual projects. Recommended preparation: Graduate students who have not programmed at all should speak with the professor beforehand. ", + "name": "PSYC 241", + "prereqs": [], + "title": "Programming Web-Based Experiments for Psychology Research (4)" + }, + "PSYC 242": { + "dept": "PSYC", + "description": "Current Directions in Developmental Psychology (1)", + "name": "PSYC 242", + "prereqs": [], + "title": "" + }, + "PSYC 243": { + "dept": "PSYC", + "description": "This course deals with perception of sound, particularly music, and focuses on unusual aspects of music perception, including musical illusions and absolute pitch. Relationships between music and language will be explored, and there will be discussions concerning the evolutionary origins of these two forms of communication. ", + "name": "PSYC 243", + "prereqs": [], + "title": "Sound and Music Perception (4)" + }, + "PSYC 244": { + "dept": "PSYC", + "description": "Discussion of theories and experiments investigating language production, comprehension, or acquisition.", + "name": "PSYC 244", + "prereqs": [], + "title": "Special Topics in Psycholinguistics (4)" + }, + "PSYC 246": { + "dept": "PSYC", + "description": "This seminar focuses on the interplay between emotion and cognition. We will consider how emotion influences perception, reasoning, memory, and judgment, and how cognitive processes can have emotional consequences. We will also discuss physiological and neural underpinnings of affective influence and debate more general issues such as emotion and rationality. ", + "name": "PSYC 246", + "prereqs": [], + "title": "Emotion and Cognition (4)" + }, + "PSYC 247": { + "dept": "PSYC", + "description": "We often learn through observations or from testimony from others. Occasionally, we learn simply by thinking. How do we generate insights in the absence of new information from the external world? This course examines the cognitive capacities involved in learning by thinking, including thought experiments, deduction, analogy, imagination, and learning by explaining. This discussion-based seminar will take a cognitive science approach, emphasizing cognitive development. ", + "name": "PSYC 247", + "prereqs": [], + "title": "Learning by Thinking in Children (and Adults) (4)" + }, + "PSYC 249A": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "name": "PSYC 249A", + "prereqs": [], + "title": "Advanced Topics in Applied Behavior Analysis I (1)" + }, + "PSYC 249B": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "name": "PSYC 249B", + "prereqs": [], + "title": "Advanced Topics in Applied Behavior Analysis II (1)" + }, + "PSYC 249C": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "name": "PSYC 249C", + "prereqs": [], + "title": "Advanced Topics in Applied Behavior Analysis III (1)" + }, + "PSYC 251": { + "dept": "PSYC", + "description": "Weekly meetings for graduate students actively engaged in research on conditioning. May be taken for credit multiple times. ", + "name": "PSYC 251", + "prereqs": [], + "title": "Advanced Topics in Learning and Motivation (1)" + }, + "PSYC 252": { + "dept": "PSYC", + "description": "This is a series of weekly seminars on current trends in neuropsychology. The seminars will deal with the concept of \u201clocalization\u201d of function in different parts of the brain and the effects of damage to these parts on cognitive functions such as perception, memory and language. Active student participation will be encouraged in preparing these seminars. ", + "name": "PSYC 252", + "prereqs": [], + "title": "Cognitive Neuroscience (4)" + }, + "PSYC 255A": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 255A", + "prereqs": [], + "title": "Advanced Topics in Biological Psychology I (1)" + }, + "PSYC 255B": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 255B", + "prereqs": [], + "title": "Advanced Topics in Biological Psychology II (1)" + }, + "PSYC 255C": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 255C", + "prereqs": [], + "title": "Advanced Topics in Biological Psychology III (1)" + }, + "PSYC 257": { + "dept": "PSYC", + "description": "Surveys research on people\u2019s everyday attribution of mental states to predict/explain actions, their na\u00efve theory of mind, from developmental and neurocognitive perspectives. Topics include social cognition in infancy and childhood, in autism, and in nonhuman primates, and the brain underpinnings. ", + "name": "PSYC 257", + "prereqs": [], + "title": "Development and Neurobiology of Theory of Mind (4)" + }, + "PSYC 258": { + "dept": "PSYC", + "description": "This course will review the research on delay of gratification. We will cover what makes it in general so tough, what situations make it possible, who can do it, and what the implications of this ability are. We will draw from research in social, personality, and animal psychology as well as economics. ", + "name": "PSYC 258", + "prereqs": [], + "title": "Delay of Gratification (4)" + }, + "PSYC 260": { + "dept": "PSYC", + "description": "This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language. Cross-listed with LIGN 283. ", + "name": "PSYC 260", + "prereqs": [], + "title": "Language and Conceptual Development (4)" + }, + "PSYC 262": { + "dept": "PSYC", + "description": "The vertebrate brain contains a network of strongly interconnected structures that play essential roles in the regulation of social behavior. In this seminar we will read and discuss primary literature that details the structure and behavioral functions of this network.", + "name": "PSYC 262", + "prereqs": [], + "title": "Functional Construction of the Vertebrate Brain\u2019s Social Behavior Network (4)" + }, + "PSYC 263": { + "dept": "PSYC", + "description": "This graduate seminar addresses the science behind mindfulness. Topics include the effects of mindfulness practice on neural processing, psychological well-being, and prosocial behavior. A particular emphasis will be placed on the implications of mindfulness practices/effects on society and education. ", + "name": "PSYC 263", + "prereqs": [], + "title": "Science of Mindfulness (4)" + }, + "PSYC 264A": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 264A", + "prereqs": [], + "title": "Advanced Topics in Language Processes I (1)" + }, + "PSYC 264B": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 264B", + "prereqs": [], + "title": "Advanced Topics in Language Processes II (1)" + }, + "PSYC 264C": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 264C", + "prereqs": [], + "title": "Advanced Topics in Language Processes III (1)" + }, + "PSYC 265": { + "dept": "PSYC", + "description": "Concentrates on what psychology has to contribute to the understanding of illness, its treatment, and the social context in which these processes occur. Topics: psychological factors in the etiology and treatment of illness, doctor-patient roles, and communication. ", + "name": "PSYC 265", + "prereqs": [], + "title": "Social Psychology and Medicine (4)" + }, + "PSYC 266": { + "dept": "PSYC", + "description": "This seminar will cover", + "name": "PSYC 266", + "prereqs": [], + "title": "Psychology of Reading (4)" + }, + "PSYC 267A": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 267A", + "prereqs": [], + "title": "Advanced Topics in Behavior Medicine I (1)" + }, + "PSYC 267B": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 267B", + "prereqs": [], + "title": "Advanced Topics in Behavior Medicine II (1)" + }, + "PSYC 267C": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "name": "PSYC 267C", + "prereqs": [], + "title": "Advanced Topics in Behavior Medicine III (1)" + }, + "PSYC 268": { + "dept": "PSYC", + "description": "This seminar provides an overview of the past and current research on the neurobiology of actions in normal and diseased states such as addiction, Parkinson\u2019s, and other psychiatric disorders. ", + "name": "PSYC 268", + "prereqs": [], + "title": "Neurobiology of Action (4)" + }, + "PSYC 269A": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "name": "PSYC 269A", + "prereqs": [], + "title": "Advanced Topics in Sound and Music Perception I (1)" + }, + "PSYC 269B": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "name": "PSYC 269B", + "prereqs": [], + "title": "Advanced Topics in Sound and Music Perception II (1)" + }, + "PSYC 269C": { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "name": "PSYC 269C", + "prereqs": [], + "title": "Advanced Topics in Sound and Music Perception III (1)" + }, + "PSYC 270A": { + "dept": "PSYC", + "description": "(4)", + "name": "PSYC 270A", + "prereqs": [], + "title": "Introduction to Laboratory Experimentation I" + }, + "PSYC 270B": { + "dept": "PSYC", + "description": "Continuation of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. S/U grades only. ", + "name": "PSYC 270B", + "prereqs": [], + "title": "Introduction to Laboratory Experimentation II (4)" + }, + "PSYC 270C": { + "dept": "PSYC", + "description": "Final quarter of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. Letter grades only. ", + "name": "PSYC 270C", + "prereqs": [], + "title": "Introduction to Laboratory Experimentation III (4)" + }, + "PSYC 271": { + "dept": "PSYC", + "description": "This seminar will span the study of learning and memory from an interdisciplinary neuroscience perspective: the goal will be to gain a broad perspective on memory. The course will also touch on dysfunctions of learning and memory such as in amnesia, mental retardation, aging, and Alzheimer\u2019s disease. The course will end with exciting developments in the field, including the possibility of genetic and pharmacological enhancement of memory and intelligence. ", + "name": "PSYC 271", + "prereqs": [], + "title": "Neurobiology of Learning and Memory (4)" + }, + "PSYC 272": { + "dept": "PSYC", + "description": "An in-depth analysis of selected empirical and theoretical topics in cognitive psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. ", + "name": "PSYC 272", + "prereqs": [], + "title": "Selected Topics in Cognitive Psychology (4)" + }, + "PSYC 273": { + "dept": "PSYC", + "description": "An in-depth analysis and discussion of selected advanced topics", + "name": "PSYC 273", + "prereqs": [], + "title": "Selected Topics in Quantitative Methods in Psychology (4)" + }, + "PSYC 274": { + "dept": "PSYC", + "description": "A biweekly seminar series focusing on recent advances in both basic and applied research in social psychology including topics such as interpersonal relationships, emotion, health, social cognition, judgment, and decision making. May be taken for credit twenty-four times. S/U grades only. ", + "name": "PSYC 274", + "prereqs": [], + "title": "Current Directions in Social Psychology (1)" + }, + "PSYC 275": { + "dept": "PSYC", + "description": "A weekly seminar series focused on understanding recent advances in any area of cognitive psychology. May be taken for credit twenty-four times. S/U grades only. ", + "name": "PSYC 275", + "prereqs": [], + "title": "Current Directions in Cognitive Psychology (1)" + }, + "PSYC 276": { + "dept": "PSYC", + "description": "An in-depth analysis of selected empirical and theoretical topics in social psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. May be taken for credit three times. ", + "name": "PSYC 276", + "prereqs": [], + "title": "Selected Topics in Social Psychology (4)" + }, + "PSYC 280": { + "dept": "PSYC", + "description": "in Communication and Information Processing (1)", + "name": "PSYC 280", + "prereqs": [], + "title": "Seminar" + }, + "PSYC 282": { + "dept": "PSYC", + "description": "An in-depth analysis of current theoretical and empirical issues in the neurobiological study of auditory perception and cognition. Example topics include auditory stream segregation, localization, natural stimulus coding, pattern recognition and communication in multiple species. ", + "name": "PSYC 282", + "prereqs": [], + "title": "Auditory Neuroscience (4)" + }, + "PSYC 296": { + "dept": "PSYC", + "description": "Research in psychology under supervision of individual faculty members. S/U grades only. May be taken for credit fifteen times.", + "name": "PSYC 296", + "prereqs": [], + "title": "Research Practicum (1\u201312)" + }, + "PSYC 299": { + "dept": "PSYC", + "description": "Independent research and thesis research. S/U grades only. May be taken for credit fifteen times.", + "name": "PSYC 299", + "prereqs": [], + "title": "Research Practicum (1\u201312)" + }, + "PSYC 3": { + "dept": "PSYC", + "description": "This course provides an introduction to the basic concepts of cognitive psychology. Topics include perception, attention, memory, language, and thought. The relation of cognitive psychology to cognitive science and to neuropsychology is also covered.", + "name": "PSYC 3", + "prereqs": [], + "title": "General Psychology: Cognitive Foundations (4)" + }, + "PSYC 4": { + "dept": "PSYC", + "description": "This course provides an introduction to behavioral psychology. Topics include classical conditioning, operant conditioning, animal learning, and motivation and behavior modification.", + "name": "PSYC 4", + "prereqs": [], + "title": "General Psychology: Behavioral Foundations (4)" + }, + "PSYC 500": { + "dept": "PSYC", + "description": "Teaching practicum for students enrolled in graduate program in psychology. Students who hold appointments as teaching assistants must enroll in this course. Minimum program requirement is for one four-unit course per year for four years. S/U grades only.", + "name": "PSYC 500", + "prereqs": [], + "title": "Apprentice Teaching (4)" + }, + "PSYC 6": { + "dept": "PSYC", + "description": "This course provides an introduction to social psychology. Topics may include emotion, aesthetics, behavioral medicine, person perception, attitudes and attitude change, and behavior in social organizations.", + "name": "PSYC 6", + "prereqs": [], + "title": "General Psychology: Social Foundations (4)" + }, + "PSYC 60": { + "dept": "PSYC", + "description": "This course provides an introduction to both descriptive and inferential statistics, core tools in the process of scientific discovery and the interpretation of research.", + "name": "PSYC 60", + "prereqs": [], + "title": "Introduction to Statistics (4)" + }, + "PSYC 7": { + "dept": "PSYC", + "description": "This course provides an introduction to theories and research results in developmental psychology, covering infancy through adulthood.", + "name": "PSYC 7", + "prereqs": [], + "title": "General Psychology: Developmental Foundations (4)" + }, + "PSYC 70": { + "dept": "PSYC", + "description": "This course provides an overview of how to choose appropriate research methods for experimental and nonexperimental studies. Topics may include classic experimental design and counterbalancing, statistical power, and causal inference in experimental and nonexperimental settings. ", + "name": "PSYC 70", + "prereqs": [ + "PSYC 60" + ], + "title": "Research Methods in Psychology (4)" + }, + "PSYC 71": { + "dept": "PSYC", + "description": "This course provides hands-on research experience. Lecture topics will include experimental and nonexperimental designs, research ethics, data analysis, and causal inference. Students will design original research projects, collect and analyze data, and write a full APA-style report, including a brief literature review relevant to their design. This course builds on PSYC 70 by applying design principles to students\u2019 own research questions and ideas. ", + "name": "PSYC 71", + "prereqs": [ + "PSYC 70" + ], + "title": "Laboratory in Psychological Research Methods (4)" + }, + "PSYC 81": { + "dept": "PSYC", + "description": "This course provides students the opportunity to learn about the intricate relationship that exists between brain and behavior, as well as the evolutionary forces that shape this interaction. Lectures for this course aim to introduce students to some of the best examples in the literature that highlight these issues, while a parallel component of the course aims to introduce students to performing research on the topic. ", + "name": "PSYC 81", + "prereqs": [ + "PSYC 60", + "COGS 14B", + "MATH 11" + ], + "title": "Laboratory in Brain, Behavior, and Evolution (4)" + }, + "PSYC 87": { + "dept": "PSYC", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "PSYC 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "PSYC 90": { + "dept": "PSYC", + "description": "This seminar introduces the various subdisciplines in psychology and their research methods, and also explores career and graduate school opportunities. This includes informal presentations by faculty, graduate students, and other professionals.", + "name": "PSYC 90", + "prereqs": [], + "title": "Undergraduate Seminar (1)" + }, + "PSYC 93": { + "dept": "PSYC", + "description": "Selected topics in the field of psychology. May be repeated for credit as topics vary.", + "name": "PSYC 93", + "prereqs": [], + "title": "Topics in Psychology (4)" + }, + "PSYC 99": { + "dept": "PSYC", + "description": "Independent study or research under direction of a member of the faculty. May be taken up to three times for a maximum of twelve units. ", + "name": "PSYC 99", + "prereqs": [], + "title": "Independent Study (2 or 4)" + }, + "RELI 1": { + "dept": "RELI", + "description": "An introduction to key topics in the study of religion through the analysis of religious texts, artifacts, and/or practices. The intent is to develop basic strategies of interpretation for undertaking a critical, disciplined study of religion.", + "name": "RELI 1", + "prereqs": [], + "title": "Introduction to Religion (4)" + }, + "RELI 101": { + "dept": "RELI", + "description": "This course provides an advanced introduction to assumptions and norms that shape the study of religion as an academic field; to significant debates within the field; and to tools and methods used for professional research within the field.", + "name": "RELI 101", + "prereqs": [], + "title": "Tools and Methods in the Study of Religion (4)" + }, + "RELI 134": { + "dept": "RELI", + "description": "Topical studies in the history of religion in American society, ranging from the Puritans to the New Age. ", + "name": "RELI 134", + "prereqs": [], + "title": "Topics in American Religion (4)" + }, + "RELI 141": { + "dept": "RELI", + "description": "This interdisciplinary course will explore the historical and theoretical relationship between public sphere and religion, particularly focusing on the manifestation of religious power, public ritual, and sacred theatricality in everyday spaces of life. ", + "name": "RELI 141", + "prereqs": [], + "title": "Public Sphere and Religion (4)" + }, + "RELI 143": { + "dept": "RELI", + "description": "This course explores religion as a system of bodily practices, rather than one of tenets or beliefs. How do day-to-day activities as well as significant rituals express and inform people\u2019s religious lives? Why is doctrine an insufficient basis for understanding religion? May be taken up to three times as topics vary. ", + "name": "RELI 143", + "prereqs": [], + "title": "Topics in Performing Religion (4)" + }, + "RELI 144": { + "dept": "RELI", + "description": "Christianity frequently finds definition in contradistinction to an \u201cOther\u201d characterized as immoral, irrational, and malevolent. This class investigates how devils and demons as constructions of the \u201cOther\u201d have contributed to Christianity\u2019s growth and identity formation throughout history. ", + "name": "RELI 144", + "prereqs": [], + "title": "Devils and Demons in Christianity (4)" + }, + "RELI 145": { + "dept": "RELI", + "description": "This course will look at the relationship between information communication technologies (ICTs) and religion and how they have intersected or diverged in the course of history. We will look at both older and newer media, such as telegraph, radio, television, cassette tapes, Internet and satellite, and how they have been used by groups like Evangelical, Catholic, or Islamist movements in proliferation and transformation of ideas, rituals, ideologies, values, and diverse forms of sociability. ", + "name": "RELI 145", + "prereqs": [], + "title": "Communication, Technology, and Religion (4)" + }, + "RELI 146": { + "dept": "RELI", + "description": "Topical studies in the religious beliefs, practices, and institutions of pre-Christian Europe and near East. May be repeated for credit up to three times when topics vary. ", + "name": "RELI 146", + "prereqs": [], + "title": "Topics in the Religions of Antiquity (4)" + }, + "RELI 147": { + "dept": "RELI", + "description": "This course explores the history of how western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. ", + "name": "RELI 147", + "prereqs": [], + "title": "Pagan Europe and Its Christian Aftermath (4)" + }, + "RELI 148": { + "dept": "RELI", + "description": "The course surveys women\u2019s formal and informal roles and activities in a number of faiths, examining how women\u2019s agency and activism may be constrained or fostered by religious ideologies and norms in various historical and political contexts. Examples are drawn from a range of male-centered (Islam, Judaism, Christianity, Buddhism) and woman-centered religions (Sande, Afro-Brazilian, Z-ar Cult), and newly formed theologies (Womanist, Native American, and Mujerista; New Age feminist spiritualities). ", + "name": "RELI 148", + "prereqs": [], + "title": "Religion and Women\u2019s Activisms (4)" + }, + "RELI 149": { + "dept": "RELI", + "description": "This course introduces the students to historical and social developments of Islam in the United States. Tracing Islam back to the African slaves, the course examines various Muslim communities in the United States, with a focus on African-American Muslims, especially Malcolm X. ", + "name": "RELI 149", + "prereqs": [], + "title": "Islam in America (4)" + }, + "RELI 150": { + "dept": "RELI", + "description": "The course is an introductory study of cinema and religion. It explores how cinema depicts religion and spiritual experience. A number of films will be studied to understand how cinematic and religious narratives and practices overlap and, at times, diverge in complex ways. ", + "name": "RELI 150", + "prereqs": [], + "title": "Religion and Cinema (4)" + }, + "RELI 151": { + "dept": "RELI", + "description": "This course explores intersections between religious discourse and ecological discourse by considering texts from both that treat the human world as irreducibly interconnected with more-than-human worlds of nature and \"spirit.\" Themes include the ambivalence of wildness; the critique of anthropocentrism (human-centeredness); and the question of how religious emphasis on \"knowing (one\u2019s) place\" can create a sense of either human exceptionality, above nature, or embeddedness, within nature. ", + "name": "RELI 151", + "prereqs": [], + "title": "Deep Ecology: Knowing Place (4)" + }, + "RELI 153": { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among Hispanic-Americans. The course examines changing religious traditions and ritual practices among Hispanic-Americans with a focus on Catholicism and (evangelical) Protestantism. ", + "name": "RELI 153", + "prereqs": [], + "title": "Hispanic-American Religions (4)" + }, + "RELI 154": { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among Asian-Americans. Tracing back to the mid-nineteenth century, the course examines changing religious traditions and ritual practices among Asian-American communities. ", + "name": "RELI 154", + "prereqs": [], + "title": "Asian-American Religions (4)" + }, + "RELI 155": { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among African-Americans. The course examines changing religious traditions and ritual practices among African-Americans since slavery to the present era. ", + "name": "RELI 155", + "prereqs": [], + "title": "African-American Religions (4)" + }, + "RELI 188": { + "dept": "RELI", + "description": "Students in this lecture will investigate important problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ", + "name": "RELI 188", + "prereqs": [], + "title": "Special Topics in Religion (4)" + }, + "RELI 189": { + "dept": "RELI", + "description": "This seminar requires the intensive analysis of critical problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ", + "name": "RELI 189", + "prereqs": [ + "RELI 101" + ], + "title": "Seminar in Religion (4)" + }, + "RELI 192": { + "dept": "RELI", + "description": "The senior seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in religion at the upper-division level. Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.", + "name": "RELI 192", + "prereqs": [], + "title": "Senior Seminar in Religion (1)" + }, + "RELI 196AH": { + "dept": "RELI", + "description": "First quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196AH. ", + "name": "RELI 196AH", + "prereqs": [ + "RELI 101" + ], + "title": "Honors Thesis in Religion (4)" + }, + "RELI 196BH": { + "dept": "RELI", + "description": "Second quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196BH. ", + "name": "RELI 196BH", + "prereqs": [ + "RELI 196A" + ], + "title": "Honors Thesis in Religion (4)" + }, + "RELI 197": { + "dept": "RELI", + "description": "A faculty member will direct a student in advanced readings on a topic not generally included in the Program for the Study of Religion\u2019s curriculum. Students must make arrangements with the program and individual faculty. May be repeated for credit up to three times for credit. ", + "name": "RELI 197", + "prereqs": [ + "RELI 110A", + "RELI 110B" + ], + "title": "Directed Advanced Readings (4)" + }, + "RELI 199": { + "dept": "RELI", + "description": "Research Study for Undergraduates (2\u20134)", + "name": "RELI 199", + "prereqs": [], + "title": "Independent" + }, + "RELI 2": { + "dept": "RELI", + "description": "An introduction to the comparative study of religion, focusing on religious traditions of global significance. Although historical aspects of these traditions will be studied, emphasis will be placed on religious beliefs and practices as manifested in the contemporary world.", + "name": "RELI 2", + "prereqs": [], + "title": "Comparative World Religions (4)" + }, + "RELI 87": { + "dept": "RELI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic related to the study of religion with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "RELI 87", + "prereqs": [], + "title": "Freshman Seminar in Religion (1)" + }, + "Revelle 1": { + "dept": "Revelle", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and cocurricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "Revelle 1", + "prereqs": [], + "title": "First Year Experience (2)" + }, + "Revelle 12": { + "dept": "Revelle", + "description": "Weekly seminars with a faculty member for Revelle undergraduates interested in the science of mindfulness and how to use it for stress management, interpersonal skills, performance improvement, and to increase the sense of well-being. ", + "name": "Revelle 12", + "prereqs": [], + "title": "Practicing the Science of Mindfulness (1)" + }, + "Revelle 2": { + "dept": "Revelle", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "Revelle 2", + "prereqs": [], + "title": "Transfer Year Experience (2)" + }, + "Revelle 20": { + "dept": "Revelle", + "description": "Weekly seminars with a faculty member (chosen each year by the provost to match the interests of participating students). This seminar will acquaint students with the scholarship and research being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. (P/NP grades only.) ", + "name": "Revelle 20", + "prereqs": [], + "title": "Revelle Freshman Honors Program Seminar (0)" + }, + "SE": { + "dept": "SE", + "description": "253C. Mechanics of Laminated Anisotropy Plates and Shells (4)", + "name": "SE", + "prereqs": [], + "title": "" + }, + "SE 1": { + "dept": "SE", + "description": "Introduction to fundamentals of structures and how structures work. Overview of structural behavior and structural design process through hands-on projects. Lessons learned from structural failures. Professional ethics. Role and responsibility of structural engineers. Introduction to four structural engineering focus sequences. Program or materials fees may apply. Priority enrollment given to structural engineering majors.", + "name": "SE 1", + "prereqs": [], + "title": "Introduction to Structures and Design (4)" + }, + "SE 101A": { + "dept": "SE", + "description": "Principles of statics using vectors. Two- and three-dimensional equilibrium of statically determinate structures under discrete and distributed loading including hydrostatics; internal forces and concept of stress; free body diagrams; moment, product of inertia; analysis of trusses and beams. ", + "name": "SE 101A", + "prereqs": [ + "PHYS 2A", + "MATH 20C" + ], + "title": "Mechanics I: Statics (4)" + }, + "SE 101B": { + "dept": "SE", + "description": "Kinematics and kinetics of particles in two- and three-dimensional motion. Newton\u2019s equations of motion. Energy and momentum methods. Impulsive motion and impact. Systems of particles. Kinetics and kinematics of rigid bodies in 2-D. Introduction to 3-D dynamics of rigid bodies. ", + "name": "SE 101B", + "prereqs": [ + "MAE 130A", + "SE 101A" + ], + "title": "Mechanics II: Dynamics (4)" + }, + "SE 101C": { + "dept": "SE", + "description": "Free and forced vibrations of damped 1-DOF systems; vibrations isolation, impact and packaging problems. Analysis of discrete MDOF systems using matrix representation; normal mode of frequencies and modal matrix formulation. Lagrange\u2019s equations. Modal superposition for analysis of continuous vibrating systems. ", + "name": "SE 101C", + "prereqs": [ + "SE 101B", + "MAE 130B", + "MATH 20F" + ], + "title": "Mechanics III: Vibrations (4)" + }, + "SE 103": { + "dept": "SE", + "description": "Introduction to structural design approaches for civil structures. Structural materials. Loads and load paths. Gravity and lateral load elements and systems. Code design fundamentals. Construction methods. Structural idealization. Hand and computer methods of analysis. Experimental methods applied through team-based projects. Program or materials fees may apply. ", + "name": "SE 103", + "prereqs": [ + "MAE 130A", + "SE 9", + "SE 101A", + "SE 104L", + "SE 104" + ], + "title": "Conceptual Structural Design (4)" + }, + "SE 104": { + "dept": "SE", + "description": "Properties and structures of engineering materials, including metals and alloys, ceramics, cements and concretes, wood, polymers, and composites. Elastic deformation, plastic deformation, fracture, fatigue, creep.\u00a0Selection of engineering materials based on performance and cost requirements. Measurement techniques.\u00a0", + "name": "SE 104", + "prereqs": [ + "MAE 130A", + "SE 101A", + "CHEM 6A" + ], + "title": "Structural Materials (4)" + }, + "SE 104L": { + "dept": "SE", + "description": "Materials testing for cement and concrete, metals and alloys, polymers and composites, and wood. Materials selection and structural design to meet functional and cost requirements. Structural construction and testing. Materials measurement techniques. Use of computer resources. ", + "name": "SE 104L", + "prereqs": [ + "SE 104" + ], + "title": "Structural Materials Lab (1)" + }, + "SE 110A": { + "dept": "SE", + "description": "Concepts of stress and strain. Hooke\u2019s law. Stress transformation. Axial loading of bars. Torsion of circular shafts. Torsion of thin-walled members. Pure bending of beams. Unsymmetric bending of beams. Shear stresses in beams. Shear stresses in thin-walled beams. Shear center. Differential equation of the deflection curve. Deflections and slopes of beams from integration methods. Statically determinate and indeterminate problems. ", + "name": "SE 110A", + "prereqs": [ + "MAE 130A", + "SE 101A", + "MATH 20D" + ], + "title": "Solid Mechanics I (4)" + }, + "SE 110B": { + "dept": "SE", + "description": "Advanced concepts in the mechanics of deformable bodies. Unsymmetrical bending of symmetrical and unsymmetrical sections. Bending of curved beams. Shear center and torsional analysis of open and closed sections. Stability analysis of columns, lateral buckling. Application of the theory of elasticity in rectangular coordinates. ", + "name": "SE 110B", + "prereqs": [ + "SE 110A", + "MAE 131A" + ], + "title": "Solid Mechanics II (4)" + }, + "SE 115": { + "dept": "SE", + "description": "Fluid statics, hydrostatic forces; integral and differential forms of conservation equations for mass, momentum, and energy; Bernoulli equation; dimensional analysis; viscous pipe flow; external flow, boundary layers; open channel flow. ", + "name": "SE 115", + "prereqs": [ + "PHYS 2A", + "MATH 20D" + ], + "title": "Fluid Mechanics for Structural Engineering (4)" + }, + "SE 120": { + "dept": "SE", + "description": "Aided Structural Design (4)", + "name": "SE 120", + "prereqs": [], + "title": "Engineering Graphics & Computer" + }, + "SE 121A": { + "dept": "SE", + "description": "Introduction to engineering computing. Interpolation, integration, differentiation. Ordinary differential equations. Nonlinear algebraic equations. Systems of linear algebraic equations. Representation of data in the computer. Use of computer resources. ", + "name": "SE 121A", + "prereqs": [ + "MAE 130A", + "SE 1", + "SE 101A", + "SE 9" + ], + "title": "Introduction to Computing for Engineers (4)" + }, + "SE 121B": { + "dept": "SE", + "description": "Exploration of numerical algorithms in engineering computations. Centered around computing projects. Matrix eigenvalue problems, boundary value problems, solution of systems of nonlinear algebraic equations, optimization. Use of computer resources. ", + "name": "SE 121B", + "prereqs": [ + "SE 101C", + "MAE 130C", + "SE 121A" + ], + "title": "Computing Projects in Structural Engineering (4)" + }, + "SE 125": { + "dept": "SE", + "description": "Probability theory. Statistics, data analysis and inferential statistics, distributions, confidence intervals. Introduction to structural reliability and random phenomena. Applications to components and systems. ", + "name": "SE 125", + "prereqs": [], + "title": "Statistics, Probability and Reliability (4)" + }, + "SE 130A\u2013B": { + "dept": "SE", + "description": "Classical methods of analysis for statically indeterminate structures. Development of computer codes for the analysis of civil, mechanical, and aerospace structures from the matrix formulation of the classical structural theory, through the direct stiffness formulation, to production-type structural analysis programs. ", + "name": "SE 130A\u2013B", + "prereqs": [ + "SE 110A", + "SE 130B", + "SE 130A", + "MAE 131A" + ], + "title": "Structural Analysis (4)" + }, + "SE 131": { + "dept": "SE", + "description": "Development of finite element models based upon the Galerkin method. Application to static and dynamic heat conduction and stress analysis. Formulation of initial boundary value problem models, development of finite element formulas, solution methods, and error analysis and interpretation of results. ", + "name": "SE 131", + "prereqs": [ + "SE 101C", + "SE 130B", + "MAE 130C", + "SE 121B" + ], + "title": "Finite Element Analysis (4)" + }, + "SE 140": { + "dept": "SE", + "description": "Introduction to concepts, procedures, and key issues of engineering design. Problem formulation, concept design, configuration design, parametric design, and documentation. Project management, team working, ethics, and human factors. Term project in model structure design. Program or materials fees may apply. ", + "name": "SE 140", + "prereqs": [ + "SE 103", + "SE 130B" + ], + "title": "Structures and Materials Laboratory (4)" + }, + "SE 140A": { + "dept": "SE", + "description": "Part I of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ", + "name": "SE 140A", + "prereqs": [ + "SE 150", + "SE 130B" + ], + "title": "Professional Issues and Design for Civil Structures I (4)" + }, + "SE 140B": { + "dept": "SE", + "description": "Part II of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ", + "name": "SE 140B", + "prereqs": [ + "SE 181", + "SE 151A", + "SE 140A" + ], + "title": "Professional Issues and Design for Civil Structures II (4)" + }, + "SE 142": { + "dept": "SE", + "description": "Introduction to advanced composite materials and their applications. Fiber and matrix properties, micromechanics, stiffness, ply-by-ply stress, hygrothermal behavior, and failure prediction. Lab activity will involve design, analysis, fabrication, and testing of composite structure. Program or materials fees may apply. ", + "name": "SE 142", + "prereqs": [ + "SE 110A", + "SE 160A", + "SE 110B", + "MAE 131A" + ], + "title": "Design of Composite Structures (4)" + }, + "SE 143A": { + "dept": "SE", + "description": "Conceptual and preliminary structural design of aircraft and space vehicles. Minimum-weight design of primary structures based upon mission requirements and configuration constraints. Multicriteria decision making. Team projects include layout, material selection, component sizing, fabrication, and cost. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ", + "name": "SE 143A", + "prereqs": [ + "SE 3", + "SE 160B", + "SE 142" + ], + "title": "Aerospace Structural Design I (4)" + }, + "SE 143B": { + "dept": "SE", + "description": "Detailed structural design of aircraft and space vehicles. Composite material design considerations. Multidisciplinary design optimization. Introduction to aerospace computer-aided design and analysis tools. Team projects include the analysis, fabrication, and testing of a flight vehicle component. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ", + "name": "SE 143B", + "prereqs": [ + "SE 143A" + ], + "title": "Aerospace Structural Design II (4)" + }, + "SE 150": { + "dept": "SE", + "description": "Design concepts and loadings for structural systems. Working stress, ultimate strength design theories. Properties of structural steel. Elastic design of tension members, beams, and columns. Design of bolted and welded concentric and eccentric connections, and composite floors. Introduction to plastic design. ", + "name": "SE 150", + "prereqs": [ + "SE 130A" + ], + "title": "Design of Steel Structures (4)" + }, + "SE 151A": { + "dept": "SE", + "description": "Concrete and reinforcement", + "name": "SE 151A", + "prereqs": [], + "title": "Design of Reinforced Concrete (4)" + }, + "SE 151B": { + "dept": "SE", + "description": "Concrete (4)", + "name": "SE 151B", + "prereqs": [], + "title": "Design of Prestressed" + }, + "SE 152": { + "dept": "SE", + "description": "Seismic design philosophy. Ductility concepts.", + "name": "SE 152", + "prereqs": [], + "title": "Seismic Design of Structures (4)" + }, + "SE 154": { + "dept": "SE", + "description": "Properties of wood and lumber grades. Beam design. Design of axially loaded members. Design of beam-column. Properties of plywood and structural-use panels. Design of horizontal diaphragms. Design of shear walls. Design of nailed and bolted connections. ", + "name": "SE 154", + "prereqs": [ + "SE 103", + "SE 130A" + ], + "title": "Design of Timber Structures (4)" + }, + "SE 160A": { + "dept": "SE", + "description": "Aircraft and spacecraft flight loads and operational envelopes, three-dimensional stress/strain relations, metallic and composite materials, failure theories, three-dimensional space trusses and stiffened shear panels, combined extension-bend-twist behavior of thin-walled multicell aircraft and space vehicle structures, modulus-weighted section properties, shear center. ", + "name": "SE 160A", + "prereqs": [ + "SE 2L", + "SE 2", + "MAE 130B", + "SE 110A", + "MAE 131A", + "SE 101B" + ], + "title": "Aerospace Structural Mechanics I (4)" + }, + "SE 160B": { + "dept": "SE", + "description": "Analysis of aerospace structures via work-energy principles and finite element analysis. Bending of metallic and laminated composite plates and shells. Static vibration, and buckling analysis of simple and built-up aircraft structures. Introduction to wing divergence and flutter, fastener analysis. ", + "name": "SE 160B", + "prereqs": [ + "SE 101C", + "MAE 130C", + "SE 160A" + ], + "title": "Aerospace Structural Mechanics II (4)" + }, + "SE 163": { + "dept": "SE", + "description": "Damage detection, materials characterization. Introduction to nondestructive evaluation. Impedance-based methods, ultrasonics, acoustic, thermography, shearography, liquid penetrant, proof testing, stress coatings, vibrational techniques. ", + "name": "SE 163", + "prereqs": [ + "SE 110A", + "SE 110B" + ], + "title": "Nondestructive Evaluation (4)" + }, + "SE 165": { + "dept": "SE", + "description": "A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. MATLAB-based exercise. Term project. Use of computer resources. ", + "name": "SE 165", + "prereqs": [ + "SE 101C", + "MAE 130C" + ], + "title": "Structural Health Monitoring (4)" + }, + "SE 168": { + "dept": "SE", + "description": "(4)", + "name": "SE 168", + "prereqs": [], + "title": "Structural System Testing and Model Correlation" + }, + "SE 171": { + "dept": "SE", + "description": "Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ", + "name": "SE 171", + "prereqs": [ + "SE 160A" + ], + "title": "Aerospace Structures Repair (4)" + }, + "SE 180": { + "dept": "SE", + "description": "Elements of seismicity and seismology. Seismic hazards. Dynamic analysis of structures underground motion. Elastic and inelastic response spectra. Modal analysis, nonlinear time-history analysis. Earthquake resistant design. Seismic detailing. ", + "name": "SE 180", + "prereqs": [ + "SE 110A", + "SE 130A" + ], + "title": "Earthquake Engineering (4)" + }, + "SE 181": { + "dept": "SE", + "description": "General introduction to physical and engineering properties of soils. Soil classification and identification methods. Compaction and construction control. Total and effective stress. Permeability, seepage, and consolidation phenomena. Shear strength of sand and clay. ", + "name": "SE 181", + "prereqs": [ + "SE 110A", + "MAE 131A" + ], + "title": "Geotechnical Engineering (4)" + }, + "SE 182": { + "dept": "SE", + "description": "Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ", + "name": "SE 182", + "prereqs": [ + "SE 181" + ], + "title": "Foundation Engineering (4)" + }, + "SE 184": { + "dept": "SE", + "description": "Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. ", + "name": "SE 184", + "prereqs": [ + "SE 181" + ], + "title": "Ground Improvement (4)" + }, + "SE 192": { + "dept": "SE", + "description": "The Senior Seminar is designed to allow senior undergraduates to meet with faculty members to explore an intellectual topic in structural engineering. Topics will vary from quarter to quarter. Enrollment is limited to twenty students with preference given to seniors. ", + "name": "SE 192", + "prereqs": [], + "title": "Senior Seminar (1)" + }, + "SE 195": { + "dept": "SE", + "description": "Teaching and tutorial assistance in a SE course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ", + "name": "SE 195", + "prereqs": [], + "title": "Teaching (2\u20134)" + }, + "SE 197": { + "dept": "SE", + "description": "An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, etc., under the supervision of a faculty member and industrial supervisor. Coordination of the Engineering Internship is conducted through UC San Diego\u2019s Academic Internship Program. ", + "name": "SE 197", + "prereqs": [], + "title": "Engineering Internship (1\u20134)" + }, + "SE 198": { + "dept": "SE", + "description": "Directed group study, on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. (P/NP grades only.) ", + "name": "SE 198", + "prereqs": [], + "title": "Directed Study Group (4)" + }, + "SE 199": { + "dept": "SE", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ", + "name": "SE 199", + "prereqs": [], + "title": "Independent Study (1\u20134)" + }, + "SE 2": { + "dept": "SE", + "description": "Properties and structures of engineering materials, including metals and alloys, ceramics, cements and concretes, polymers, and composites. Elastic deformation, plastic deformation, fracture, fatigue, wearing, and corrosion. Selection of engineering materials based on performance and cost requirements. ", + "name": "SE 2", + "prereqs": [ + "PHYS 2A", + "CHEM 6A" + ], + "title": "Structural Materials (3)" + }, + "SE 200": { + "dept": "SE", + "description": "in Structural Engineering (4)", + "name": "SE 200", + "prereqs": [], + "title": "Applied Mathematics" + }, + "SE 201A": { + "dept": "SE", + "description": "Application of advanced analytical concepts to structural engineering problems. Analysis of frame structures using matrix methods and introduction to\u00a0the finite element method. Displacement-based and force-based beam element formulations. Development of computer programs for structural analysis. Use of computer resources. ", + "name": "SE 201A", + "prereqs": [], + "title": "Advanced Structural Analysis (4)" + }, + "SE 201B": { + "dept": "SE", + "description": "The course emphasizes the principles behind modern nonlinear structural analysis software. It deals with the theory, computer implementation, and applications of methods of material and geometric nonlinear analysis. Emphasis is on 2D and 3D frame structures modeled using 1D (beam-column) elements. Use of computer resources. ", + "name": "SE 201B", + "prereqs": [ + "SE 201A" + ], + "title": "Nonlinear Structural Analysis (4)" + }, + "SE 202": { + "dept": "SE", + "description": "Static, dynamic, and energy-based techniques and predicting elastic stability. Linear and nonlinear analysis of classical and shear deformable beams and plates. Ritz, Galerkin, and finite element approaches for frames and reinforced shells. Nonconservative aerodynamic (divergence flutter) and follower forces. Recommended preparation: SE 101A-C and SE 110A or equivalent background in solid mechanics and structural dynamics. ", + "name": "SE 202", + "prereqs": [], + "title": "Structural Stability (4)" + }, + "SE 203": { + "dept": "SE", + "description": "Response of discrete linear structural systems to harmonic, periodic and transient excitations. Lagrangian mechanics. Linearization of the equations of motion. Free and forced vibrations of multi degree-of-freedom structures. Normal mode,\u00a0frequency response and numerical methods. Continuous systems. ", + "name": "SE 203", + "prereqs": [], + "title": "Structural Dynamics (4)" + }, + "SE 204": { + "dept": "SE", + "description": "Free-and forced-vibration of continuous systems such as axial and torsional vibrations of bars and transverse vibrations of various beams, membranes, and plates. Euler-Lagrange formulation using variational calculus. Rayleigh-Ritz method for approximation. Applications in vibration suppression/isolation. ", + "name": "SE 204", + "prereqs": [], + "title": "Advanced Structural Dynamics (4)" + }, + "SE 205": { + "dept": "SE", + "description": "Advanced analytical techniques to understand nonlinearity in mechanical vibration. Phase plane analysis instability, and bifurcations. Application in nonlinear structural resonance. Introduction to chaotic dynamics, advanced time series analysis, and using chaotic dynamics in applications such as structural damage assessment. ", + "name": "SE 205", + "prereqs": [ + "SE 203" + ], + "title": "Nonlinear Mechanical Vibrations (4)" + }, + "SE 206": { + "dept": "SE", + "description": "Introduction to probability theory and random processes. Dynamic analysis of linear structural systems subjected to stationary and nonstationary random excitations. Reliability studies related to first excursion and fatigue failures. Applications in earthquake engineering, offshore engineering, wind engineering, and aerospace engineering. Use of computer resources. Recommended preparation: basic knowledge of probability theory (SE 125 or equivalent). ", + "name": "SE 206", + "prereqs": [ + "SE 203" + ], + "title": "Random Vibrations (4)" + }, + "SE 207": { + "dept": "SE", + "description": "A course to be given at the discretion of the faculty in which topics of current interest in structural engineering will be presented.", + "name": "SE 207", + "prereqs": [], + "title": "Topics in Structural Engineering (4)" + }, + "SE 211": { + "dept": "SE", + "description": "Properties of reinforcing steels; concrete technology; creep, shrinkage and relaxation; Mohr-Coulomb failure criteria for concrete; confinement, momentcurvature and force-displacement responses; plastic design; code compliant seismic design philosophy; code compliant seismic design of structural walls. Use of computer resources. Recommended preparation:\u00a0SE 151A and SE 151B or equivalent background in basic RC/PC design.\u00a0", + "name": "SE 211", + "prereqs": [], + "title": "Advanced Structural Concrete (4)" + }, + "SE 212": { + "dept": "SE", + "description": "Load and Resistance Factor Design (LRFD) philosophy. Behavior and design of steel elements for global and local buckling. Background of seismic codes. Ductility requirements and capability design concept. Seismic design of steel moment frames and braced frames. ", + "name": "SE 212", + "prereqs": [ + "SE 150", + "SE 201" + ], + "title": "Advanced Structural Steel Design (4)" + }, + "SE 213": { + "dept": "SE", + "description": "Design and analysis of bridge structures, construction methods, load conditions. Load paths and distribution of dead and live loads. Service, strength, and extreme event limit states and other load and resistance factor design (LRFD) principles. Design of pre-stressed concrete bridges. Special problems in analysis\u2014concrete box girders, curved and skewed bridges, environmental and seismic loads. Conceptual/preliminary bridge design project. Recommended preparation: SE 223 (Advanced Seismic Design of Structures). ", + "name": "SE 213", + "prereqs": [ + "SE 201A", + "SE 211" + ], + "title": "Bridge Design (4)" + }, + "SE 214": { + "dept": "SE", + "description": "Analysis and design of unreinforcced and reinforced masonry structure using advanced analytical techniques and design philosophies. Material properties, stability, and buckling of unreinforced masonry. Flexural strength, shear strength, stiffness, and ductility of reinforced masonry elements. Design for seismic loads. ", + "name": "SE 214", + "prereqs": [ + "SE 151A" + ], + "title": "Masonry Structures (4)" + }, + "SE 215": { + "dept": "SE", + "description": "The course deals with cable structures from a structural mechanics point of view. The theoretical and practical aspects of the application of cables to moorings, guyed structures, suspension bridges, cable-stayed bridges, and suspended membranes are discussed. ", + "name": "SE 215", + "prereqs": [], + "title": "Cable Structures (4)" + }, + "SE 220": { + "dept": "SE", + "description": "Concepts, advantages, and limitations of seismic isolation techniques; fundamentals of dynamic response under seismic excitation; spectral analysis; damping; energy approach; application to buildings and structures. ", + "name": "SE 220", + "prereqs": [], + "title": "Seismic Isolation and Energy Dissipation (4)" + }, + "SE 221": { + "dept": "SE", + "description": "Introduction to plate tectonics and seismology. Rupture mechanism, measures of magnitude and intensity, earthquake occurrence and relation to geologic, tectonic processes. Probabilistic seismic hazard analysis. Strong earthquake ground motion; site effects on ground motion; structural response; soil-structure interaction; design criteria; code requirements. Use of computer resources. ", + "name": "SE 221", + "prereqs": [ + "SE 203" + ], + "title": "Earthquake Engineering (4)" + }, + "SE 222": { + "dept": "SE", + "description": "Influence of soil conditions on ground motion characteristics; dynamic behavior of soils, computation of ground response using wave propagation analysis and finite element analysis; evaluation and mitigation of soil liquefaction; soil-structure interaction; lateral pressures on earth retaining structures; analysis of slope stability. Recommended preparation: SE 181 or equivalent. ", + "name": "SE 222", + "prereqs": [], + "title": "Geotechnical Earthquake Engineering (4)" + }, + "SE 223": { + "dept": "SE", + "description": "Modal analysis. Nonlinear response spectra. Performance based seismic design. Nonlinear time history analyses. Capacity design. Structural walls. Coupled walls. Rocking walls. Base isolation. Recommended preparation: grade of B+ or higher in SE 211 and SE 201B.\u00a0", + "name": "SE 223", + "prereqs": [], + "title": "Advanced Seismic Design of Structures (4)" + }, + "SE 224": { + "dept": "SE", + "description": "Review of probability theory and random processes. Fundamentals of structural reliability theory. First- and second-order, and simulation methods of reliability analysis. Structural component and system reliability. Reliability sensitivity measures. Bayesian reliability analysis methods. Bases for probabilistic design codes. Use of computer resources. Recommended preparation: basic knowledge of probability theory (e.g., SE 125). ", + "name": "SE 224", + "prereqs": [], + "title": "Structural Reliability and Risk Analysis (4)" + }, + "SE 226": { + "dept": "SE", + "description": "This course will treat quantitative aspects of the flow of uncontaminated groundwater as it influences the practice of geotechnical engineering. We will cover flow through porous media, generalized Darcy\u2019s law, groundwater modeling, confined and unconfined systems, well hydraulics, land subsidence, and construction dewatering.\u00a0", + "name": "SE 226", + "prereqs": [ + "SE 241" + ], + "title": "Geotechnical Groundwater Engineering (4)" + }, + "SE 233": { + "dept": "SE", + "description": "Techniques in Finite Elements (4)", + "name": "SE 233", + "prereqs": [], + "title": "Computational" + }, + "SE 235": { + "dept": "SE", + "description": "Wave propagation in elastic media with emphasis on waves in unbound media and on uniform and layered half-spaces. Fundamental aspects of elastodynamics. Application to strong-motion seismology, earthquake engineering, dynamics of foundations, computational wave propagation, and nondestructive evaluations. ", + "name": "SE 235", + "prereqs": [], + "title": "Wave Propagation in Elastic Media (4)" + }, + "SE 236": { + "dept": "SE", + "description": "in Continuous Structural Elements (4)", + "name": "SE 236", + "prereqs": [], + "title": "Wave Propagation" + }, + "SE 241": { + "dept": "SE", + "description": "Advanced treatment of topics in soil mechanics, including state of stress, pore pressure, consolidation and settlement analysis, shear strength of cohesionless and cohesive soils, mechanisms of ground improvement, and slope stability analysis. Concepts in course reinforced by laboratory experiments.", + "name": "SE 241", + "prereqs": [], + "title": "Advanced Soil Mechanics (4)" + }, + "SE 242": { + "dept": "SE", + "description": "Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in-situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ", + "name": "SE 242", + "prereqs": [], + "title": "Foundation Engineering (4)" + }, + "SE 243": { + "dept": "SE", + "description": "Advanced treatment of the dynamic interaction between soils and structures. Dynamic response of shallow and embedded foundations. Kinematic and inertial interaction. General computational and approximate analytical methods of analysis. ", + "name": "SE 243", + "prereqs": [ + "SE 200", + "SE 203" + ], + "title": "Soil-Structure Interaction (4)" + }, + "SE 244": { + "dept": "SE", + "description": "Application of finite element method to static and dynamic analysis of geotechnical structures. One-, 2-, and 3-D static and seismic response of earth structures/slopes/Foundation systems. Pore-pressure generation/effects during cycle loading. System identification using strong motion downhole-array data. Use of computer resources required. ", + "name": "SE 244", + "prereqs": [], + "title": "Numerical Methods in Geomechanics (4)" + }, + "SE 247": { + "dept": "SE", + "description": "Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. Recommended Preparation: SE 181 or equivalent background in the physics and engineering properties of soil. ", + "name": "SE 247", + "prereqs": [], + "title": "Ground Improvement (4)" + }, + "SE 248": { + "dept": "SE", + "description": "Experimental/constitutive modeling perspectives on mechanical, hydraulic, thermal behavior of dry and saturated soils. Experimental techniques and methodologies presented; students will be able to perform key tests. Behavior of saturated sands and clays described based on key studies. Calibration of constitutive models for stress-strain behavior of soils, including hyperbolic, Mohr-Coulomb/Cam-Clay models. Modification of these models to consider thermal effects.\u00a0", + "name": "SE 248", + "prereqs": [], + "title": "Engineering Properties of Soils (4)" + }, + "SE 250": { + "dept": "SE", + "description": "Fundamental and advanced concepts of stability analysis for earth slopes and retaining walls with soil backfill. Topics: shear strength, effective/total stress analysis, infinite/finite slopes, reinforced soil slopes, lateral earth pressure, retaining wall design and reinforced soil retaining walls. Recommended preparation: SE 181 or equivalent background. ", + "name": "SE 250", + "prereqs": [], + "title": "Stability of Earth Slopes and Retaining Walls (4)" + }, + "SE 251A": { + "dept": "SE", + "description": "Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment; material-processing-microstructure interaction; materials selection; form and quality control. Extrusion; injection molding; blow molding; compression molding; thermoforming; casting; foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. Cross-listed with MATS 261A. ", + "name": "SE 251A", + "prereqs": [], + "title": "Processing of Polymers and Composites (4)" + }, + "SE 251B": { + "dept": "SE", + "description": "Behaviors of Polymers and Composites (4)", + "name": "SE 251B", + "prereqs": [], + "title": "Mechanical" + }, + "SE 252": { + "dept": "SE", + "description": "Requirements for strain measurements, electrical resistance strain gages, fiberoptic strain gages, wave propagation, ultrasonic testing, impact-echo, acoustic emission, infrared thermography, vibrational testing. Applications to materials characterization, defect detection, and health monitoring of structural components. Recommended preparation: SE 101A, SE 110A or MAE 131A, and SE 110B or MAE 131B. ", + "name": "SE 252", + "prereqs": [], + "title": "Experimental Mechanics and NDE (4)" + }, + "SE 253A": { + "dept": "SE", + "description": "of Laminated Composite Structures I (4)", + "name": "SE 253A", + "prereqs": [], + "title": "Mechanics" + }, + "SE 253B": { + "dept": "SE", + "description": "of Laminated Composite Structures II (4)", + "name": "SE 253B", + "prereqs": [], + "title": "Mechanics" + }, + "SE 254": { + "dept": "SE", + "description": "Strengthening of existing reinforced concrete structures with fiber reinforced composites. Mechanics of Fiber Reinforced Plastic lamina, bond strength of FRP-to-concrete joints, shear and flexural strengthening of beams and walls, increased strength and ductility of axially loaded columns, and seismic retrofit of columns. Use of computer resources. ", + "name": "SE 254", + "prereqs": [ + "SE 253A" + ], + "title": "FRPs in Civil Structures (4)" + }, + "SE 255": { + "dept": "SE", + "description": "Introduction to textile structure and behavior, mechanics of yarns and fabrics as relevant to structural composites and geotechnical applications. Mechanics of textiles and fabric-based composites. Applications in fiber reinforced composites, coated textile structures, geotextiles.", + "name": "SE 255", + "prereqs": [], + "title": "Textile Composite Structures (4)" + }, + "SE 260A": { + "dept": "SE", + "description": "Aircraft and spacecraft flight loads and operational envelopes, three-dimensional stress/strain relations, metallic and composite materials, failure theories, three-dimensional space trusses and stiffened shear panels, combined extension-bend-twist behavior of thin-walled multicell aircraft and space vehicle structures, modulus-weighted section properties, shear center. ", + "name": "SE 260A", + "prereqs": [], + "title": "Aerospace Structural Mechanics I (4)" + }, + "SE 260B": { + "dept": "SE", + "description": "Analysis of aerospace structures via work-energy principles and finite element analysis. Bending of metallic and laminated composite plates and shells. Static vibration, and buckling analysis of simple and built-up aircraft structures. Introduction to wing divergence and flutter, fastener analysis. ", + "name": "SE 260B", + "prereqs": [ + "SE 260A" + ], + "title": "Aerospace Structural Mechanics II (4)" + }, + "SE 261": { + "dept": "SE", + "description": "Advanced topics in the design of weight-critical aerospace structures. Topics include: static, dynamic and environmental load definitions; metallics and polymeric composite material selection; semi-monocoque analysis techniques, and bolted/bonded connections. Design procedures for sizing the structural components of aircraft and spacecraft will be reviewed.", + "name": "SE 261", + "prereqs": [], + "title": "Aerospace Engineering Design (4)" + }, + "SE 262": { + "dept": "SE", + "description": "Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ", + "name": "SE 262", + "prereqs": [], + "title": "Aerospace Structures Repair (4)" + }, + "SE 265": { + "dept": "SE", + "description": "A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. Matlab-based exercises. Term project. ", + "name": "SE 265", + "prereqs": [], + "title": "Structural Health Monitoring (4)" + }, + "SE 266": { + "dept": "SE", + "description": "This course examines the properties, physics, mechanisms, and design of smart and multifunctional materials; data acquisition and operating principles of sensor technologies; smart materials (piezoresistive, piezoelectric, magnetorheological, and shape memory materials); nanotechnology-enabled multifunctional materials; and applications for structural health monitoring. Use of computer resources. ", + "name": "SE 266", + "prereqs": [], + "title": "Smart and Multifunctional Materials (4)" + }, + "SE 268": { + "dept": "SE", + "description": "Dynamic/model testing of structures: test planning/execution, actuation, sensing, and data acquisition, signal processing, data conditioning, test troubleshooting. Methods of updating finite element structural models to correlate with dynamic test results. Model/test correlation assessment in industrial practice. Recommended preparation: vibrations, finite element analysis, and knowledge of Matlab. ", + "name": "SE 268", + "prereqs": [], + "title": "Structural System Testing and Model Correlation (4)" + }, + "SE 271": { + "dept": "SE", + "description": "for Structural and Aerospace Engineering (4)", + "name": "SE 271", + "prereqs": [], + "title": "Solid Mechanics" + }, + "SE 272": { + "dept": "SE", + "description": "Development, formulation, and application of field equations of elasticity and variational principles for structural applications in civil and aerospace area. Use of plane stress and plane strain formulation, solution of typical boundary value problems. ", + "name": "SE 272", + "prereqs": [ + "SE 271" + ], + "title": "Theory of Elasticity (4)" + }, + "SE 273": { + "dept": "SE", + "description": "Overview of inelastic behavior of materials. Models of plasticity, viscoplasticity, viscoelasticity. Micromechanics and modeling of damage. Fatigue phenomena. Fracture mechanics. Processes and models of the failure of materials. Students may not receive credit for SE 273 and MAE 231C. ", + "name": "SE 273", + "prereqs": [], + "title": "Inelasticity (4)" + }, + "SE 274": { + "dept": "SE", + "description": "Finite Element Methods for Solid Mechanics (4)", + "name": "SE 274", + "prereqs": [], + "title": "Nonlinear" + }, + "SE 276A": { + "dept": "SE", + "description": "Element Methods in Solid Mechanics I (4)", + "name": "SE 276A", + "prereqs": [], + "title": "Finite" + }, + "SE 276B": { + "dept": "SE", + "description": "Element Methods in Solid Mechanics (4)", + "name": "SE 276B", + "prereqs": [], + "title": "Finite" + }, + "SE 276C": { + "dept": "SE", + "description": "Element Methods in Solid Mechanics III (4)", + "name": "SE 276C", + "prereqs": [], + "title": "Finite" + }, + "SE 277": { + "dept": "SE", + "description": "This course will provide an overview of the latest technology for evaluating and improving the accuracy and validity of linear and nonlinear finite element models, solution verification, finite element model validation, sensitivity analysis, uncertainty analysis, and test-analysis correlation. ", + "name": "SE 277", + "prereqs": [ + "MAE 232B", + "SE 232B" + ], + "title": "Error Control in Finite Element Analysis (4)" + }, + "SE 278A": { + "dept": "SE", + "description": "Development and application of advanced computational techniques for fluid flow. Stabilized and variational multiscale methods for finite element and related discretizations are stressed. Applications involve advection-diffusion equations and systems, and incompressible and compressible Navier-Stokes equations. Turbulence modeling will also be covered. ", + "name": "SE 278A", + "prereqs": [ + "MAE 232A", + "SE 276A" + ], + "title": "Finite Elements for Fluid Mechanics (4)" + }, + "SE 278B": { + "dept": "SE", + "description": "Fluid-Structure Interaction (4)", + "name": "SE 278B", + "prereqs": [], + "title": "Computational" + }, + "SE 279": { + "dept": "SE", + "description": "Meshfree approximation theories (moving least-squares, reproducing kernel, partition of unity, radial basis), Galerkin meshfree methods, collocation meshfree methods, imposition of boundary conditions, domain integration, stability, nonlinear meshfree method for hyperelasticity and plasticity, meshfree methods for fracture and plate/shell problems.\u00a0", + "name": "SE 279", + "prereqs": [ + "MAE 232A", + "SE 276A" + ], + "title": "Meshfree Methods for Linear and Nonlinear Mechanics (4)" + }, + "SE 280": { + "dept": "SE", + "description": "Techniques of computation with the finite element method. Preprocessing (geometry, mesh generation, boundary conditions), solution methods (statics including contact, dynamics, buckling), and postprocessing (visualization, error estimation, interpretation of results). Hands-on exercises with commercial and open-source software. Use of computer resources. ", + "name": "SE 280", + "prereqs": [ + "MAE 232B", + "MAE 232A", + "SE 276A", + "SE 276B" + ], + "title": "Finite Element Computations in Solid Mechanics (4)" + }, + "SE 290": { + "dept": "SE", + "description": "Weekly seminar and discussion by faculty, visitors, postdoctoral research fellows and graduate students concerning research topics in earthquake engineering and related subjects. May be repeated for credit. (S/U grades only.)", + "name": "SE 290", + "prereqs": [], + "title": "Seminar in Earthquake Engineering (2)" + }, + "SE 296": { + "dept": "SE", + "description": "", + "name": "SE 296", + "prereqs": [], + "title": "Independent Study (4)" + }, + "SE 298": { + "dept": "SE", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ", + "name": "SE 298", + "prereqs": [], + "title": "Directed Group Study (1\u20134)" + }, + "SE 299": { + "dept": "SE", + "description": "(S/U grades permitted.)", + "name": "SE 299", + "prereqs": [], + "title": "Graduate Research (1\u201312)" + }, + "SE 2L": { + "dept": "SE", + "description": "Materials testing and/or processing for metals and alloys, polymers and composites, cements, and wood. Materials selection and structural design to meet functional and cost requirements. Structural construction and testing. Use of computer resources. ", + "name": "SE 2L", + "prereqs": [ + "PHYS 2A", + "SE 2", + "CHEM 6A" + ], + "title": "Structural Materials Lab (1)" + }, + "SE 3": { + "dept": "SE", + "description": "Use of computer graphics (CAD software) to communicate engineering designs. Includes visualization, sketching, 2D and 3D graphics standards, dimensioning, tolerance, assemblies, and prototyping/testing with light manufacturing methods. Project/system management software, i.e., building information modeling (BIM), will be introduced. Use of computer resources. ", + "name": "SE 3", + "prereqs": [ + "SE 1" + ], + "title": "Graphical Communication for Engineering Design (4)" + }, + "SE 501": { + "dept": "SE", + "description": "Teaching experience in an appropriate SE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. ", + "name": "SE 501", + "prereqs": [], + "title": "Teaching Experience (2)" + }, + "SE 7": { + "dept": "SE", + "description": "Spatial visualization is the ability to manipulate 2D and 3D shapes in one\u2019s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ", + "name": "SE 7", + "prereqs": [], + "title": "Spatial Visualization (1)" + }, + "SE 87": { + "dept": "SE", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. ", + "name": "SE 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "SE 9": { + "dept": "SE", + "description": "Introduction to the Matlab environment. Variables and types, statements, functions, blocks, loops, and branches. Algorithm development. Functions, function handles, input and output arguments. Data encapsulation and object-oriented programming. Toolboxes and libraries. Models from physics (mechanics and thermodynamics) are used in exercises and projects. ", + "name": "SE 9", + "prereqs": [ + "MATH 20D", + "MATH 18" + ], + "title": "Algorithms and Programming for Structural Engineering (4)" + }, + "SE 99H": { + "dept": "SE", + "description": "Independent study or research under direction of a faculty member. ", + "name": "SE 99H", + "prereqs": [], + "title": "Independent Study (1)" + }, + "SIO": { + "dept": "SIO", + "description": "295LS. Introduction to Marine Biodiversity and Conservation\u2014Lab (8)", + "name": "SIO", + "prereqs": [], + "title": "" + }, + "SIO 295S": { + "dept": "SIO", + "description": "to Marine Biodiversity and Conservation\u2014Seminar (8)", + "name": "SIO 295S", + "prereqs": [], + "title": "Introduction" + }, + "SIOB 286": { + "dept": "SIOB", + "description": "This course investigates global issues in marine conservation and potential policy solutions. The approach is interdisciplinary, fast-paced, and discussion-oriented. Students will become acquainted with sufficient background in marine biology, ecology, marine and conservation economics, international law and policy as preparation for participation in discussion on real-world issues in marine conservation. Topics and instructors change each quarter. ", + "name": "SIOB 286", + "prereqs": [], + "title": "Marine Science, Economics, and Policy (4)" + }, + "SIOC 210": { + "dept": "SIOC", + "description": "Physical description of the sea; physical properties of seawater, methods and measurements, boundary processes, regional oceanography. Renumbered from SIO 210. Students may not receive credit for both SIOC 210 and SIO 210. ", + "name": "SIOC 210", + "prereqs": [], + "title": "Physical Oceanography (4)" + }, + "SIOC 217A": { + "dept": "SIOC", + "description": "Thermodynamics and statics of dry and moist air, atmospheric composition, Earth radiation budget, vertical structure of the atmosphere, global energy balance, thermodynamic feedbacks in the climate system. Renumbered from SIO 217A. ", + "name": "SIOC 217A", + "prereqs": [], + "title": "Atmospheric and Climate Sciences I (4)" + }, + "SIOC 217B": { + "dept": "SIOC", + "description": "Fluid dynamics of the atmosphere; derivation of governing equations from the laws of physics, scale analysis, conservation principles, theoretical and observed structure of midlatitude synoptic systems; gradient wind and thermal wind approximations, geostrophic and quasigeostrophic approximations; potential vorticity, Rossby waves, climate and weather phenomena such as jet streams and cyclones. Graduate students who have not completed SIO 217A but have an equivalent background may enroll with consent of instructor. Renumbered from SIO 217B. ", + "name": "SIOC 217B", + "prereqs": [ + "SIOC 217A", + "SIO 217A" + ], + "title": "Atmospheric and Climate Sciences II (4)" + }, + "SIOC 217C": { + "dept": "SIOC", + "description": "Radiative, physical, and dynamical processes that govern the mean state, variability, and change of the atmosphere and climate including greenhouse gases, clouds and aerosols, convection and precipitation, general circulation, and coupled atmosphere-ocean interactions. Renumbered from SIO 217C. ", + "name": "SIOC 217C", + "prereqs": [ + "SIOC 217A", + "SIOC 217B", + "SIO 217B", + "SIO 217A" + ], + "title": "Atmospheric and Climate Sciences III (4)" + }, + "SIOC 217D": { + "dept": "SIOC", + "description": "Atmospheric chemistry that impacts climate change, including photochemical reactions, ozone chemistry, and aerosol evolution in the troposphere and stratosphere. Atmospheric applications of catalytic cycles, heterogeneous chemistry, and microphysical processes will include the ozone hole, urban smog, and aerosol-cloud interactions. Renumbered from SIO 217D. Students may not receive credit for both SIOC 217D and SIO 217D. ", + "name": "SIOC 217D", + "prereqs": [ + "SIOC 217A", + "SIOC 217C", + "SIOC 217B", + "SIO 217C", + "SIO 217B", + "SIO 217A" + ], + "title": "Atmospheric and Climate Sciences IV (4)" + }, + "SIOC 290S": { + "dept": "SIOC", + "description": "This is a preparatory mathematics class for climate sciences, specifically designed to review math concepts vital to understanding climate science in preparation for SIOC 210 and SIOC 217A. The course will use statistical methods to understand the observed climate records, calculus to investigate Earth\u2019s radiation budget, and vector rotation to introduce the dynamics and transport of the atmosphere and ocean. Letter grades only. ", + "name": "SIOC 290S", + "prereqs": [], + "title": "Climate Math (6)" + }, + "SIOC 291S": { + "dept": "SIOC", + "description": "This is a course in social media for the climate sciences. Students will develop a broad understanding of how to use social media to listen to, respond to, and engage in online climate science discussions. Students will learn to use digital technology to actively engage with constituents. Students will learn how social media can be used effectively for communications. Letter grades only. ", + "name": "SIOC 291S", + "prereqs": [], + "title": "@Climate (6)" + }, + "SIOC 292": { + "dept": "SIOC", + "description": "This course explores the interaction between climate science, policy, and the larger culture. S/U grades permitted. ", + "name": "SIOC 292", + "prereqs": [], + "title": "Introduction to Climate Science and Policy (4)" + }, + "SIOC 296": { + "dept": "SIOC", + "description": "Required course for MAS-CSP students will focus on development of MAS Capstone Projects and discussions covering climate science and policy issues, including informal student presentations on political, economic, historical, educational, and natural science issues related to climate science and policy. Letter grades only. May be taken for credit three times. ", + "name": "SIOC 296", + "prereqs": [], + "title": "Climate Science and Policy Forum (2)" + }, + "SIOC 299": { + "dept": "SIOC", + "description": "Building on the knowledge and experience gained from the entire curriculum of the Master\u2019s in Climate Science and Policy (MAS-CSP) program, students will design and present a specific climate science and policy project. May be taken for credit one time for a maximum of ten units. S/U grades only. ", + "name": "SIOC 299", + "prereqs": [], + "title": "Climate Science and Policy Capstone Project (6\u201310)" + }, + "SIOG 252A": { + "dept": "SIOG", + "description": "Radioactive and stable isotope studies in geology and geochemistry, including geochronology, isotopes as tracers of magmatic processes, cosmic-ray produced isotopes as tracers in the crust and weathering cycle, isotopic evolution of the crust and mantle. Coscheduled with SIO 144. Course requires student presentation. Renumbered from SIO 252A. Students may not receive credit for both SIOG 252A and SIO 252A. ", + "name": "SIOG 252A", + "prereqs": [], + "title": "Introduction to Isotope Geochemistry (4)" + }, + "SIOG 260": { + "dept": "SIOG", + "description": "Chemical description of the sea; the distribution of chemical species in the world oceans, and their relationships to physical, biological, and geological processes. Renumbered from SIO 260. Students may not receive credit for both SIOG 260 and SIO 260. ", + "name": "SIOG 260", + "prereqs": [], + "title": "Marine Chemistry (4)" + }, + "SOCG 270": { + "dept": "SOCG", + "description": "A consideration of the major theories of schooling and society, including functionalist, conflict, critical, and interactional; selected topics in the sociology of education will be addressed in a given quarter, including: the debate over inequality, social selection, cultural reproduction and the transition of knowledge, the cognitive and economic consequences of education. Major research methods will be discussed and critiqued.", + "name": "SOCG 270", + "prereqs": [], + "title": "The Sociology of Education (4)" + }, + "SOCI 1": { + "dept": "SOCI", + "description": "An introduction to the organizing themes and ideas, empirical concerns, and analytical approaches of the discipline of sociology. The course focuses on both classical and contemporary views of modern society, on the nature of community, and on inequality, with special attention to class, race, and gender. Materials include both theoretical statements and case studies. Will not receive credit for SOCI 1 and SOCL 1A.", + "name": "SOCI 1", + "prereqs": [], + "title": "Introduction to Sociology (4)" + }, + "SOCI 10": { + "dept": "SOCI", + "description": "U.S. (4)", + "name": "SOCI 10", + "prereqs": [], + "title": "American Society: Social Structure and Culture in the" + }, + "SOCI 100": { + "dept": "SOCI", + "description": "Major figures and schools in sociology from the early nineteenth century onwards, including Marx, Tocqueville, Durkheim, and Weber. The objective of the course is to provide students with a background in classical social theory, and to show its relevance to contemporary sociology. ", + "name": "SOCI 100", + "prereqs": [ + "SOCI 100", + "SOCA 100" + ], + "title": "Classical Sociological Theory (4)" + }, + "SOCI 102": { + "dept": "SOCI", + "description": "Social network analysts view society as a web of relationships rather than a mere aggregation of individuals. In this course, students will learn how to collect, analyze, and visualize social network data, as well as utilize these techniques to answer an original sociological research question. ", + "name": "SOCI 102", + "prereqs": [ + "SOCI 60" + ], + "title": "Network Data and Methods (4)" + }, + "SOCI 103M": { + "dept": "SOCI", + "description": "Develop skills in computer management and analysis of sociological data. Practical experience with data produced by sociological research. Students will develop competency in the analysis of sociological data, by extensive acquaintance with computer software used for data analysis and management (e.g., SPSS). ", + "name": "SOCI 103M", + "prereqs": [ + "SOCA 103M", + "SOCI 60", + "SOCI 103M" + ], + "title": "Computer Applications to Data Management in Sociology (4)" + }, + "SOCI 104": { + "dept": "SOCI", + "description": "Research: Methods of Participant Observation (4)", + "name": "SOCI 104", + "prereqs": [], + "title": "Field" + }, + "SOCI 104Q": { + "dept": "SOCI", + "description": "This course provides students with tools to conduct original research using qualitative interviews. Students will learn how to prepare, conduct, and analyze qualitative interviews. Special emphasis will be placed on the presentation of research in written form. ", + "name": "SOCI 104Q", + "prereqs": [ + "SOCI 104Q", + "SOCA 104Q" + ], + "title": "Qualitative Interviewing (4)" + }, + "SOCI 105": { + "dept": "SOCI", + "description": "(Conjoined with Soc/G 227.) Ethnographic recording of field data in written and audiovisual formats including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual ethnographic videotape. ", + "name": "SOCI 105", + "prereqs": [ + "G ??? 227", + "SOCA 105", + "SOCI 105" + ], + "title": "Ethnographic Film: Media Methods (6)" + }, + "SOCI 106": { + "dept": "SOCI", + "description": "A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time, and their application in student research projects. ", + "name": "SOCI 106", + "prereqs": [ + "SOCI 60", + "SOCI 106", + "SOCA 106" + ], + "title": "Comparative and Historical Methods (4)" + }, + "SOCI 106M": { + "dept": "SOCI", + "description": "Methods for interpreting diaries, letters, and testaments written by victims and perpetrators of the Holocaust. Students use these sources for original research about life in hiding, ghettos, and death camps. Includes techniques for making comparisons and for generalizing from evidence. ", + "name": "SOCI 106M", + "prereqs": [ + "SOCA 106M", + "SOCI 178", + "SOCI 60", + "SOCI 106M" + ], + "title": "Holocaust Diaries (4)" + }, + "SOCI 107": { + "dept": "SOCI", + "description": "Epidemiology is the statistical study of disease, and epidemiological methods are a powerful tool for understanding the causes of certain diseases, e.g., AIDS, scurvy, cholera, and lung cancer. These fundamental epidemiological methods will be taught. ", + "name": "SOCI 107", + "prereqs": [ + "SOCA 107", + "SOCI 60", + "SOCI 107" + ], + "title": "Epidemiological Methods: Statistical Study of Disease (4)" + }, + "SOCI 108": { + "dept": "SOCI", + "description": "Translation of research goals into a research design, including probability sampling, questionnaire construction, data collection (including interviewing techniques), data processing, coding, and preliminary tabulation of data. Statistical methods of analysis will be limited primarily to percentaging. ", + "name": "SOCI 108", + "prereqs": [ + "SOCI 60", + "SOCA 108", + "SOCI 108" + ], + "title": "Survey Research Design (4)" + }, + "SOCI 109": { + "dept": "SOCI", + "description": "Students test their own sociological research hypotheses using data from recent American and international social surveys and state-of-the-art computer software. Application of classical scientific method, interpretation of statistical results, and clear presentation of research findings. ", + "name": "SOCI 109", + "prereqs": [ + "SOCI 109", + "SOCI 60", + "SOCA 109" + ], + "title": "Analysis of Sociological Data (4)" + }, + "SOCI 110": { + "dept": "SOCI", + "description": "Research in Educational Settings (4)", + "name": "SOCI 110", + "prereqs": [], + "title": "Qualitative" + }, + "SOCI 112": { + "dept": "SOCI", + "description": "This course will deal with human behavior and personality development as affected by social group life. Major theories will be compared. The interaction dynamics of such substantive areas as socialization, normative and deviant behavior, learning and achievement, the social construction of the self, and the social identities will be considered. ", + "name": "SOCI 112", + "prereqs": [ + "SOCB 112", + "SOCI 112" + ], + "title": "Social Psychology (4)" + }, + "SOCI 113": { + "dept": "SOCI", + "description": "This course considers the social, cultural, political, and economic aspects of HIV/AIDS. Topics include the social context of transmission; the experiences of women living with HIV; AIDS activism; representations of AIDS; and the impact of race and class differences. ", + "name": "SOCI 113", + "prereqs": [ + "SOCB 113", + "SOCI 113" + ], + "title": "Sociology of the AIDS Epidemic (4)" + }, + "SOCI 115": { + "dept": "SOCI", + "description": "Analyzes selected social problems in the United States, such as those regarding education, race relations, and wealth inequality from various sociological perspectives. The course also examines the various sites of debate discussion, like political institutions, TV and other media, and religious institutions. ", + "name": "SOCI 115", + "prereqs": [ + "SOCI 115", + "SOCB 115" + ], + "title": "Social Problems (4)" + }, + "SOCI 116": { + "dept": "SOCI", + "description": "(Same as LIGN 174.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span (especially childhood and adolescence); within ethnolinguistic minority communities; and across cultures. ", + "name": "SOCI 116", + "prereqs": [ + "SOCB 118A", + "SOCI 116" + ], + "title": "Gender and Language in Society (4)" + }, + "SOCI 117": { + "dept": "SOCI", + "description": "(Same as EDS 117.) The mutual influence of language, culture, and education will be explored; explanations of students\u2019 school successes and failures that employ linguistic and cultural variables will be considered; bilingualism; cultural transmission through education. ", + "name": "SOCI 117", + "prereqs": [ + "SOCB 117", + "SOCI 117" + ], + "title": "Language, Culture, and Education (4)" + }, + "SOCI 118": { + "dept": "SOCI", + "description": "An analysis of the social, biological, and", + "name": "SOCI 118", + "prereqs": [], + "title": "Sociology of Gender (4)" + }, + "SOCI 118E": { + "dept": "SOCI", + "description": "An examination of how the understanding of language can guide and inform sociological inquiries and a critical evaluation of key sociological approaches to language, including ethnomethodology, frame analysis, sociolinguistics, structuralism and poststructuralism, and others. ", + "name": "SOCI 118E", + "prereqs": [ + "SOCB 118L", + "SOCI 118E" + ], + "title": "Sociology of Language (4)" + }, + "SOCI 119": { + "dept": "SOCI", + "description": "of Sexuality and Sexual Identities (4)", + "name": "SOCI 119", + "prereqs": [], + "title": "Sociology" + }, + "SOCI 120T": { + "dept": "SOCI", + "description": "Special Topics in Culture, Language, and Social Interaction (4)", + "name": "SOCI 120T", + "prereqs": [], + "title": "" + }, + "SOCI 121": { + "dept": "SOCI", + "description": "An examination of a central concern of classical social theory: the relationship between economy and society, with special attention (theoretically and empirically) on the problem of the origins of modern capitalism. The course will investigate the role of technology and economic institutions in society; the influence of culture and politics on economic exchange, production, and consumption; the process of rationalization and the social division of labor; contemporary economic problems and the welfare state. ", + "name": "SOCI 121", + "prereqs": [ + "SOCI 121", + "SOCC 121" + ], + "title": "Economy and Society (4)" + }, + "SOCI 122": { + "dept": "SOCI", + "description": "This course takes a social network approach to the study of society, examining the complex web of relationships\u2014 platonic, familial, professional, romantic\u2014in which individual behavior is embedded. Special emphasis is placed on the unprecedented opportunities created by contemporary social media (e.g. Facebook, mobile phones, online dating websites) for answering fundamental sociological questions. ", + "name": "SOCI 122", + "prereqs": [], + "title": "Social Networks (4)" + }, + "SOCI 123 Japanese Culture Inside/Out: A Transnational Perspective (4)": { + "dept": "SOCI", + "description": "We examine cultural production in Japan and abroad, national and transnational political-economic and social influences, the idea of Japan in the West, and the idea of the West in Japan. ", + "name": "SOCI 123 Japanese Culture Inside/Out: A Transnational Perspective (4)", + "prereqs": [], + "title": "" + }, + "SOCI 125": { + "dept": "SOCI", + "description": "Immigration from a comparative, historical, and cultural perspective. Topics include: factors influencing amount of immigration and destination of immigrants; varying modes of incorporation of immigrants; immigration policies and rights; the impact of immigration on host economies; refugees; assimilation; and return migration. ", + "name": "SOCI 125", + "prereqs": [ + "SOCB 125", + "SOCI 125" + ], + "title": "Sociology of Immigration (4)" + }, + "SOCI 126": { + "dept": "SOCI", + "description": "(Same as EDS 126.) The social organization of education in the U.S. and other societies; the functions of education for individuals and society; the structure of schools; educational decision making; educational testing; socialization and education; formal and informal education; cultural transmission. ", + "name": "SOCI 126", + "prereqs": [ + "SOCC 126", + "SOCI 126" + ], + "title": "Social Organization of Education (4)" + }, + "SOCI 127": { + "dept": "SOCI", + "description": "Examination of the role that race and ethnicity play in immigrant group integration. Topics include theories of integration, racial and ethnic identity formation, racial and ethnic change, immigration policy, public opinion, comparisons between contemporary and historical waves of immigration. ", + "name": "SOCI 127", + "prereqs": [ + "SOCB 127", + "SOCI 127" + ], + "title": "Immigration, Race, and Ethnicity (4)" + }, + "SOCI 129": { + "dept": "SOCI", + "description": "An examination of historical and social influences on family life. Analyzes contemporary families in the United States, the influences of gender, class, and race, and current issues such as divorce, domestic violence, and the feminization of poverty. ", + "name": "SOCI 129", + "prereqs": [ + "SOCI 129", + "SOCC 129" + ], + "title": "The Family (4)" + }, + "SOCI 130": { + "dept": "SOCI", + "description": "This course offers insight into why and how", + "name": "SOCI 130", + "prereqs": [], + "title": "Population and Society (4)" + }, + "SOCI 131": { + "dept": "SOCI", + "description": "Chronological age and social status; analysis of social processes bearing upon the socialization of children and adolescents. The emergence of \u201cyouth cultures,\u201d generational succession as a cultural problem. ", + "name": "SOCI 131", + "prereqs": [ + "SOCB 131", + "SOCI 131" + ], + "title": "Sociology of Youth (4)" + }, + "SOCI 132": { + "dept": "SOCI", + "description": "Examination and analysis of empirical research and theoretical perspectives on gender and work. Special attention to occupational segregation. Other topics include: the interplay between work and family; gender, work and poverty; gender and work in the Third World. ", + "name": "SOCI 132", + "prereqs": [ + "SOCC 132", + "SOCI 132" + ], + "title": "Gender and Work (4)" + }, + "SOCI 133": { + "dept": "SOCI", + "description": "in Comparative Perspective (4)", + "name": "SOCI 133", + "prereqs": [], + "title": "Immigration" + }, + "SOCI 134": { + "dept": "SOCI", + "description": "A study of the social, intellectual, and institutional aspects of the nineteenth-century transformation of clinical medicine, examining both the changing content of medical knowledge and therapeutics, and the organization of the medical profession. ", + "name": "SOCI 134", + "prereqs": [ + "SOCI 134", + "SOCC 134A" + ], + "title": "The Making of Modern Medicine (4)" + }, + "SOCI 135": { + "dept": "SOCI", + "description": "An inquiry into the roles of culture and social structure in mediating the health and illness experiences of individuals and groups. Topics include the social construction of illness, the relationships between patients and health professionals, and the organization of medical work. ", + "name": "SOCI 135", + "prereqs": [ + "SOCI 135", + "SOCC 135" + ], + "title": "Medical Sociology (4)" + }, + "SOCI 136E": { + "dept": "SOCI", + "description": "Sociology of Mental Illness: A Historical Approach (4)", + "name": "SOCI 136E", + "prereqs": [], + "title": "" + }, + "SOCI 136F": { + "dept": "SOCI", + "description": "This course will focus on recent developments in the mental illness sector and on the contemporary sociological literature on mental illness. Developments in England as well as the United States will be examined. ", + "name": "SOCI 136F", + "prereqs": [ + "SOCC 136B", + "SOCI 136F" + ], + "title": "Sociology of Mental Illness in Contemporary Society (4)" + }, + "SOCI 137": { + "dept": "SOCI", + "description": "Topics include food as a marker of social", + "name": "SOCI 137", + "prereqs": [], + "title": "Sociology of Food (4)" + }, + "SOCI 138": { + "dept": "SOCI", + "description": "The class will first examine the direct social effects of the \u201cgenetic revolution\u201d: eugenics, genetic discrimination, and stratification. Second, the implications of thinking of society in terms of genetics, specifically\u2014sociobiology, social Darwinism, evolutionary psychology, and biology. ", + "name": "SOCI 138", + "prereqs": [ + "SOCC 138", + "SOCI 138" + ], + "title": "Genetics and Society (4)" + }, + "SOCI 139": { + "dept": "SOCI", + "description": "Massive inequality in wealth, power, and prestige is ever-present in industrial societies. In this course, causes and consequences of class, gender, racial, and ethnic inequality (\u201cstratification\u201d) will be considered through examination of classical and modern social science theory and research. ", + "name": "SOCI 139", + "prereqs": [ + "SOCC 139", + "SOCI 139" + ], + "title": "Social Inequality: Class, Race, and Gender (4)" + }, + "SOCI 140": { + "dept": "SOCI", + "description": "This course analyzes the functions of law in society, the social sources of legal change, social conditions affecting the administration of justice, and the role of social science in jurisprudence. ", + "name": "SOCI 140", + "prereqs": [ + "SOCC 140", + "SOCI 140" + ], + "title": "Sociology of Law (4)" + }, + "SOCI 140F": { + "dept": "SOCI", + "description": "This course examines how the US legal system has responded to workplace inequality and demands for employee rights. Particular attention is given to racial, gender, religious, and disability discrimination, as well as the law\u2019s role in regulating unions, the global economy, and sweatshop labor. ", + "name": "SOCI 140F", + "prereqs": [ + "SOCC 140F", + "SOCI 140F" + ], + "title": "Law and the Workplace (4)" + }, + "SOCI 141": { + "dept": "SOCI", + "description": "A study of the social origins of criminal law, the administration of justice, causes, and patterns of criminal behavior, and the prevention and control of crime, including individual rehabilitation and institutional change, and the politics of legal, police, and correctional reform. ", + "name": "SOCI 141", + "prereqs": [ + "SOCC 141", + "SOCI 141" + ], + "title": "Crime and Society (4)" + }, + "SOCI 142": { + "dept": "SOCI", + "description": "This course studies the major forms of behavior seen as rule violations by large segments of our society and analyzes the major theories trying to explain them, as well as processes of rule making, rule enforcing, techniques of neutralization, stigmatization and status degradation, and rule change. ", + "name": "SOCI 142", + "prereqs": [ + "SOCI 142", + "SOCB 142" + ], + "title": "Social Deviance (4)" + }, + "SOCI 143": { + "dept": "SOCI", + "description": "Traditional and modern theories of suicide will be reviewed and tested. The study of suicide will be treated as one method for investigating the influence of society on the individual. ", + "name": "SOCI 143", + "prereqs": [ + "SOCI 143", + "SOCB 143" + ], + "title": "Suicide (4)" + }, + "SOCI 144": { + "dept": "SOCI", + "description": "The organization, development, and mission of social control agencies in the nineteenth and twentieth centuries, with emphasis on crime and madness; agency occupations (police, psychiatrists, correctional work, etc.); theories of control movements. ", + "name": "SOCI 144", + "prereqs": [ + "SOCC 144", + "SOCI 144" + ], + "title": "Forms of Social Control (4)" + }, + "SOCI 145": { + "dept": "SOCI", + "description": "Focusing on American history, this course explores violence in the light of three major themes: struggles over citizenship and nationhood; the drawing and maintenance of racial, ethnic, and gender boundaries; and the persistence of notions of \u201cmasculinity\u201d and its relation to violence. ", + "name": "SOCI 145", + "prereqs": [ + "SOCB 145", + "SOCI 145" + ], + "title": "Violence and Society (4)" + }, + "SOCI 147": { + "dept": "SOCI", + "description": "Society, and Social Justice (4)", + "name": "SOCI 147", + "prereqs": [], + "title": "Organizations," + }, + "SOCI 148": { + "dept": "SOCI", + "description": "Course focuses on the interaction between state and society. It discusses central concepts of political sociology (social cleavages, mobilization, the state, legitimacy), institutional characteristics, causes, and consequences of contemporary political regimes (liberal democracies, authoritarianism, communism), and processes of political change. ", + "name": "SOCI 148", + "prereqs": [ + "SOCC 148", + "SOCI 148" + ], + "title": "Political Sociology (4)" + }, + "SOCI 148E": { + "dept": "SOCI", + "description": "Some people do much better than others in the world of work. Causes and consequences of this inequality will be examined: How do characteristics of individuals (e.g., class, gender, race, education, talent) and characteristics of jobs affect market outcomes? ", + "name": "SOCI 148E", + "prereqs": [ + "SOCI 148E", + "SOCC 148L" + ], + "title": "Inequality and Jobs (4)" + }, + "SOCI 149": { + "dept": "SOCI", + "description": "The environment as a socially and technically shaped milieu in which competing values and interests play out. Relation of humanity to nature, conflicts between preservation and development, environmental pollution and contested illnesses. Will not receive credit for SOCI 149 and SOCC 149.", + "name": "SOCI 149", + "prereqs": [], + "title": "Sociology of the Environment (4)" + }, + "SOCI 150": { + "dept": "SOCI", + "description": "Hollywood has had an ongoing obsession with mental illness. This course will examine a number of important or iconic films on this subject. By examining them against a background provided by relevant scholarly materials, we shall develop a critical perspective on these cultural artifacts. ", + "name": "SOCI 150", + "prereqs": [ + "SOCC 150", + "SOCI 150" + ], + "title": "Madness and the Movies (4)" + }, + "SOCI 152": { + "dept": "SOCI", + "description": "(Same as USP 133.) Primary focus on understanding and analyzing poverty and public policy. Analysis of how current debates and public policy initiatives mesh with alternative social scientific explorations of poverty. ", + "name": "SOCI 152", + "prereqs": [ + "SOCC 152", + "SOCI 152" + ], + "title": "Social Inequality and Public Policy (4)" + }, + "SOCI 153": { + "dept": "SOCI", + "description": "(Same as USP 105.) Introduces students to the major approaches in the sociological study of cities and to what a sociological analysis can add to our understanding of urban processes. ", + "name": "SOCI 153", + "prereqs": [ + "SOCC 153", + "SOCI 153" + ], + "title": "Urban Sociology (4)" + }, + "SOCI 154": { + "dept": "SOCI", + "description": "Examination of sociological theories for why people have religious beliefs. Also examines types of religious organizations, secularization, fundamentalism, religion and immigration, religion and politics, and religiously inspired violence and terrorism. The class will tend to focus on the American context. ", + "name": "SOCI 154", + "prereqs": [ + "SOCI 154", + "SOCC 154" + ], + "title": "Religious Institutions in America (4)" + }, + "SOCI 155": { + "dept": "SOCI", + "description": "A research-oriented course studying a specific city. Students will describe and analyze a local community of San Diego. Additional work on one citywide institution. Guest lecturers from San Diego organizations and government. Readings largely from city reports and news media. ", + "name": "SOCI 155", + "prereqs": [ + "SOCI 155", + "SOCC 155" + ], + "title": "The City of San Diego (4)" + }, + "SOCI 156": { + "dept": "SOCI", + "description": "Diverse sociological explanations of religious ideas and religious behavior. The social consequences of different kinds of religious beliefs and religious organizations. The influence of religion upon concepts of history, the natural world, human nature, and the social order. The significance of such notions as \u201csacred peoples\u201d and \u201csacred places.\u201d The religious-like character of certain political movements and certain sociocultural attitudes. ", + "name": "SOCI 156", + "prereqs": [ + "SOCI 156", + "SOCC 156" + ], + "title": "Sociology of Religion (4)" + }, + "SOCI 157": { + "dept": "SOCI", + "description": "Sacred texts, religious experiences, and ritual settings are explored from the perspective of sociological analysis. The types and dynamic of religious sects and institutions are examined. African and contemporary US religious data provide resources for lecture and comparative analysis. ", + "name": "SOCI 157", + "prereqs": [ + "SOCI 157", + "SOCC 157" + ], + "title": "Religion in Contemporary Society (4)" + }, + "SOCI 158": { + "dept": "SOCI", + "description": "The role of Islam in the society, culture, and politics of the Muslim people during the nineteenth and twentieth centuries; attempts by Muslim thinkers to accommodate or reject rival ideologies (such as nationalism and socialism); and a critical review of the relationship between Islam and the West. ", + "name": "SOCI 158", + "prereqs": [ + "SOCI 158", + "SOCD 158" + ], + "title": "Islam in the Modern World (4)" + }, + "SOCI 159": { + "dept": "SOCI", + "description": "Topics in Social Organizations and Institutions (4)", + "name": "SOCI 159", + "prereqs": [], + "title": "Special" + }, + "SOCI 160": { + "dept": "SOCI", + "description": "This course will examine the concept of culture, its \u201cdisintegration\u201d in the twentieth century, and the repercussions on the integration of the individual. We will look at this process from a variety of perspectives, each focusing on one cultural fragment (e.g., knowledge, literature, religion) and all suggesting various means to reunify culture and consequently the individual. ", + "name": "SOCI 160", + "prereqs": [ + "SOCB 160", + "SOCI 160" + ], + "title": "Sociology of Culture (4)" + }, + "SOCI 160E": { + "dept": "SOCI", + "description": "This course examines major formulations of the relationship between law and culture in the sociological literature. Topics include formal law versus embedded law, law and morality, law and the self, legal consciousness, the rule of law, and the construction of legality. ", + "name": "SOCI 160E", + "prereqs": [ + "SOCB 160L", + "SOCI 160E" + ], + "title": "Law and Culture (4)" + }, + "SOCI 161": { + "dept": "SOCI", + "description": "This course explores concepts, theory and empirical research related to demographic, sociopsychological, and institutional aspects of the different stages of human development. It considers social influences on opportunities and constraints by gender, class, race/ethnicity, and historical period. ", + "name": "SOCI 161", + "prereqs": [ + "SOCB 161", + "SOCI 161" + ], + "title": "Sociology of the Life Course (4)" + }, + "SOCI 162": { + "dept": "SOCI", + "description": "An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. Students may not receive credit for both SOCI 162 and SOCB 162. ", + "name": "SOCI 162", + "prereqs": [], + "title": "Popular Culture (4)" + }, + "SOCI 163": { + "dept": "SOCI", + "description": "Provides a global sociological perspective on the development and consequences of laws regulating migration within and across nation-state borders. The ability of the nation-state to control migration using law and its policy instruments. The effects of different legal statuses on political and socioeconomic outcomes. ", + "name": "SOCI 163", + "prereqs": [ + "SOCC 163", + "SOCI 163" + ], + "title": "Migration and the Law (4)" + }, + "SOCI 165A": { + "dept": "SOCI", + "description": "History, politics, social organization, and ideology of the American news media. This course,165A, surveys the development of the news media as an institution, from earliest newspapers to modern mass news media. ", + "name": "SOCI 165A", + "prereqs": [ + "SOCI 165A", + "SOCC 165A" + ], + "title": "American News Media (4)" + }, + "SOCI 166": { + "dept": "SOCI", + "description": "This course provides a general introduction to the development of the sociology of knowledge, and will explore questions concerning social determination of consciousness as well as theoretical ways to articulate a critique of ideology. ", + "name": "SOCI 166", + "prereqs": [ + "SOCI 166", + "SOCB 166" + ], + "title": "Sociology of Knowledge (4)" + }, + "SOCI 167": { + "dept": "SOCI", + "description": "This class examines how science has been mobilized in the development of nuclear weapons and other weapons of mass destruction. The class applies sociological concepts to the analysis of modern technological violence. ", + "name": "SOCI 167", + "prereqs": [ + "SOCC 167", + "SOCI 167" + ], + "title": "Science and War (4)" + }, + "SOCI 168E": { + "dept": "SOCI", + "description": "A survey of theoretical and empirical studies concerning the workings of the scientific community and its relations with the wider society. Special attention will be given to the institutionalization of the scientific role and to the social constitution of scientific knowledge. ", + "name": "SOCI 168E", + "prereqs": [ + "SOCC 168E", + "SOCI 168E" + ], + "title": "Sociology of Science (4)" + }, + "SOCI 169": { + "dept": "SOCI", + "description": "Will survey the liberal, communitarian, social-democratic, nationalist, feminist, post-nationalist, and multicultural views on the construction of the modern citizen and good society. ", + "name": "SOCI 169", + "prereqs": [ + "SOCI 169", + "SOCD 169" + ], + "title": "Citizenship, Community, and Culture (4)" + }, + "SOCI 170": { + "dept": "SOCI", + "description": "Scientific practices have had a tremendous impact on our understandings of gender. Gender relations have also significantly influenced the character of scientific inquiry. The course will consider how and why these two processes intertwine. ", + "name": "SOCI 170", + "prereqs": [], + "title": "Gender and Science (4)" + }, + "SOCI 171": { + "dept": "SOCI", + "description": "Does improved technology mean progress? Or, are environmental pollution and social alienation signs that technology is out of control? This class uncovers the social problems of key modern technologies such as automobile transport, factory farming, biotechnology, and nuclear power. ", + "name": "SOCI 171", + "prereqs": [ + "SOCI 168T", + "SOCI 171" + ], + "title": "Technology and Science (4)" + }, + "SOCI 172": { + "dept": "SOCI", + "description": "An analysis of films and how they portray various aspects of American society and culture. ", + "name": "SOCI 172", + "prereqs": [ + "SOCI 172", + "SOCB 172" + ], + "title": "Films and Society (4)" + }, + "SOCI 175": { + "dept": "SOCI", + "description": "Surveys the development of nationality and citizenship law in historical and comparative perspective with an emphasis on the United States, Latin America, and Europe. Examines competing sociological accounts for national variation and convergence; consequences of the law; and local, transnational, and extraterritorial forms of citizenship. ", + "name": "SOCI 175", + "prereqs": [ + "SOCD 175", + "SOCI 175" + ], + "title": "Nationality and Citizenship (4)" + }, + "SOCI 177": { + "dept": "SOCI", + "description": "(Same as POLI 1420.) This course covers the definitions, history, and internationalization of terrorism; the interrelation of religion, politics and terror; and the representation of terrorism in the media. A number of organizations and their activities in Europe and the Middle East are examined. ", + "name": "SOCI 177", + "prereqs": [ + "SOCD 177", + "SOCI 177" + ], + "title": "International Terrorism (4)" + }, + "SOCI 178": { + "dept": "SOCI", + "description": "The study of the unique and universal aspects of the Holocaust. Special attention will be paid to the nature of discrimination and racism, those aspects of modernity that make genocide possible, the relationship among the perpetrators, the victims and the bystanders, and the teaching, memory, and denial of the Holocaust. ", + "name": "SOCI 178", + "prereqs": [ + "SOCI 178", + "SOCD 178" + ], + "title": "The Holocaust (4)" + }, + "SOCI 179": { + "dept": "SOCI", + "description": "Course focuses on the development of capitalism as a worldwide process, with emphasis on its social and political consequences. Topics include: precapitalist societies, the rise of capitalism in the West, and the social and political responses to its expansion elsewhere. ", + "name": "SOCI 179", + "prereqs": [ + "SOCI 179", + "SOCD 179" + ], + "title": "Social Change (4)" + }, + "SOCI 180": { + "dept": "SOCI", + "description": "An examination of the nature of protests and violence, particularly as they occur in the context of larger social movements. The course will further examine those generic facets of social movements having to do with their genesis, characteristic forms of development, relationship to established political configurations, and gradual fading away. ", + "name": "SOCI 180", + "prereqs": [ + "SOCC 180", + "SOCI 180" + ], + "title": "Social Movements and Social Protest (4)" + }, + "SOCI 181": { + "dept": "SOCI", + "description": "This course examines the nature and dynamics of modern western society in the context of the historical process by which this type of society has emerged over the last several centuries. The aim of the course is to help students think about what kind of society they live in, what makes it the way it is, and how it shapes their lives. ", + "name": "SOCI 181", + "prereqs": [ + "SOCI 181", + "SOCD 181" + ], + "title": "Modern Western Society (4)" + }, + "SOCI 182": { + "dept": "SOCI", + "description": "and Indigenous Peoples in Latin America (4)", + "name": "SOCI 182", + "prereqs": [], + "title": "Ethnicity" + }, + "SOCI 184": { + "dept": "SOCI", + "description": "This class will examine issues of masculinity and femininity through analysis of films. Emphasis is on contemporary American society and will include varying issues such as race, class, and sexualities; worlds of work; romance, marriage, and family. ", + "name": "SOCI 184", + "prereqs": [ + "SOCC 184", + "SOCI 184" + ], + "title": "Gender and Film (4)" + }, + "SOCI 185": { + "dept": "SOCI", + "description": "Social development is more than sheer economic growth. It entails improvements in the overall quality of human life, particularly in terms of access to health, education, employment, and income for the poorer sectors of the population. Course examines the impact of globalization on the prospects for attaining these goals in developing countries. ", + "name": "SOCI 185", + "prereqs": [ + "SOCD 185", + "SOCI 185" + ], + "title": "Globalization and Social Development (4)" + }, + "SOCI 187": { + "dept": "SOCI", + "description": "Exploration of contemporary African urbanization and social change via film, including 1) transitional African communities, 2) social change in Africa, 3) Western vs. African filmmakers\u2019 cultural codes. Ideological and ethnographic representations, aesthetics, social relations, and market demand for African films are analyzed. ", + "name": "SOCI 187", + "prereqs": [ + "SOCD 187", + "SOCI 187" + ], + "title": "African Societies through Film (4)" + }, + "SOCI 187E": { + "dept": "SOCI", + "description": "A sociological examination of the era of the 1960s in America, its social and political movements, its cultural expressions, and debates over its significance, including those reflected in video documentaries. Comparisons will also be drawn with events in other countries. ", + "name": "SOCI 187E", + "prereqs": [ + "SOCI 187E", + "SOCD 187S" + ], + "title": "The Sixties (4)" + }, + "SOCI 188D": { + "dept": "SOCI", + "description": "Course focuses on the different types of social structures and political systems in Latin America. Topics include positions in the world economy, varieties of class structure and ethnic cleavages, political regimes, mobilization and legitimacy, class alignments, reform and revolution. ", + "name": "SOCI 188D", + "prereqs": [ + "SOCI 188D", + "SOCD 188D" + ], + "title": "Latin America: Society and Politics (4)" + }, + "SOCI 188E": { + "dept": "SOCI", + "description": "Community and Social Change in Africa (4)", + "name": "SOCI 188E", + "prereqs": [], + "title": "" + }, + "SOCI 188F": { + "dept": "SOCI", + "description": "Modern Jewish Societies and Israeli Society (4)", + "name": "SOCI 188F", + "prereqs": [], + "title": "" + }, + "SOCI 188G": { + "dept": "SOCI", + "description": "The social structure of the People\u2019s Republic of China since 1949, including a consideration of social organization at various levels: the economy, the policy, the community, and kinship institutions. ", + "name": "SOCI 188G", + "prereqs": [ + "SOCD 188B", + "SOCI 188G" + ], + "title": "Chinese Society (4)" + }, + "SOCI 188I": { + "dept": "SOCI", + "description": "In this course we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war. ", + "name": "SOCI 188I", + "prereqs": [], + "title": "The Israeli-Palestinian Conflict (4)" + }, + "SOCI 188J": { + "dept": "SOCI", + "description": "Using sociological and historical perspectives, this course examines the origins and demise of apartheid and assesses the progress that has been made since 1994, when apartheid was officially ended. Contrasts of racism in South Africa and the United States. ", + "name": "SOCI 188J", + "prereqs": [ + "SOCD 188J", + "SOCI 188J" + ], + "title": "Change in Modern South Africa (4)" + }, + "SOCI 188K": { + "dept": "SOCI", + "description": "Comparative and historical perspectives on", + "name": "SOCI 188K", + "prereqs": [], + "title": "American Society (4)" + }, + "SOCI 188M": { + "dept": "SOCI", + "description": "Course examines theories of social movements and changing patterns of popular protest and contentious mobilization in Latin America since the mid-twentieth century. Case studies include populism, guerrillas, liberation theology and movements of workers, peasants, women, and indigenous groups. ", + "name": "SOCI 188M", + "prereqs": [], + "title": "Social Movements in Latin America (4)" + }, + "SOCI 188O": { + "dept": "SOCI", + "description": "We will examine the social, political, and religious factors that affect the nexus of Israeli settlements and Israeli-Arab and Israeli-Palestinian peace making. Special attention will be paid to the period after the 1967 War when these processes begun as well as to alternative resolutions to the conflict. ", + "name": "SOCI 188O", + "prereqs": [], + "title": "Settlements and Peacemaking in Israel (4)" + }, + "SOCI 189": { + "dept": "SOCI", + "description": "Topics in Comparative-Historical Sociology (4)", + "name": "SOCI 189", + "prereqs": [], + "title": "Special" + }, + "SOCI 192": { + "dept": "SOCI", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in sociology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ", + "name": "SOCI 192", + "prereqs": [], + "title": "Senior Seminar in Sociology (1)" + }, + "SOCI 194": { + "dept": "SOCI", + "description": "(Same as PS 194, COGN 194, ERTH 194, HIST 193, USP 194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "name": "SOCI 194", + "prereqs": [ + "SOCE 194", + "SOCI 194" + ], + "title": "Research Seminar in Washington, DC (4)" + }, + "SOCI 196A": { + "dept": "SOCI", + "description": "Honors Seminar: Advanced Studies in Sociology (4)", + "name": "SOCI 196A", + "prereqs": [], + "title": "" + }, + "SOCI 196B": { + "dept": "SOCI", + "description": "Honors Seminar: Supervised Thesis Research (4)", + "name": "SOCI 196B", + "prereqs": [], + "title": "" + }, + "SOCI 198": { + "dept": "SOCI", + "description": "Group study of specific topics under the direction of an interested faculty member. Enrollment will be limited to a small group of students who have developed their topic and secured appropriate approval from the departmental committee on independent and group studies. These studies are to be conducted only in areas not covered in regular sociology courses. ", + "name": "SOCI 198", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "SOCI 199": { + "dept": "SOCI", + "description": "Tutorial: individual study under the direction of an interested faculty member in an area not covered by the present course offerings. Approval must be secured from the departmental committee on independent studies. ", + "name": "SOCI 199", + "prereqs": [], + "title": "Independent Study (4)" + }, + "SOCI 2": { + "dept": "SOCI", + "description": "A continuation of Sociology/L 1A. The focus here is on socialization processes, culture, social reproduction and social control, and collective action. As in 1A, materials include both theoretical statements and case studies. While 1B may be taken as an independent course, it is recommended that students take 1A and 1B in sequence, as the latter builds on the former. Will not receive credit for SOCI 2 and SOCL 1B.", + "name": "SOCI 2", + "prereqs": [], + "title": "The Study of Society (4)" + }, + "SOCI 20": { + "dept": "SOCI", + "description": "A survey of the major economic, political, and social forces that have shaped the contemporary world. The course will provide an introduction to theories of social change, as well as prepare the student for upper-division work in comparative-historical sociology. Will not receive credit for SOCI 20 and SOCL 20.", + "name": "SOCI 20", + "prereqs": [], + "title": "Social Change in the Modern World (4)" + }, + "SOCI 30": { + "dept": "SOCI", + "description": "A series of case studies of the relations between society and modern science, technology, and medicine. Global warming, reproductive medicine, AIDS, and other topical cases prompt students to view science-society interactions as problematic and complex. Will not receive credit for SOCI 30 and SOCL 30.", + "name": "SOCI 30", + "prereqs": [], + "title": "Science, Technology, and Society (4)" + }, + "SOCI 40": { + "dept": "SOCI", + "description": "Designed as a broad introduction to medicine as a social institution and its relationship to other institutions as well as its relation to society. It will make use of both micro and macro sociological work in this area and introduce students to sociological perspectives of contemporary health-care issues. Will not receive credit for SOCI 40 and SOCL 40.", + "name": "SOCI 40", + "prereqs": [], + "title": "Sociology of Health-Care Issues (4)" + }, + "SOCI 50": { + "dept": "SOCI", + "description": "Interrelationships between law and society, in the U.S. and other parts of the world. We examine law\u2019s norms, customs, culture, and institutions, and explain the proliferation of lawyers in the U.S. and the expansion of legal \u201crights\u201d worldwide. Will not receive credit for SOCI 50 and SOCL 50.", + "name": "SOCI 50", + "prereqs": [], + "title": "Introduction to Law and Society (4)" + }, + "SOCI 60": { + "dept": "SOCI", + "description": "This course introduces students to the fundamental principles of the design of social research. It examines the key varieties of evidence, sampling methods, logic of comparison, and causal reasoning researchers use in their study of social issues. Will not receive credit for SOCI 60 and SOCL 60.", + "name": "SOCI 60", + "prereqs": [], + "title": "The Practice of Social Research (4)" + }, + "SOCI 70": { + "dept": "SOCI", + "description": "This introductory course is specifically designed for premedical students and will provide them with a broad introduction to sociological concepts and research, particularly as applied to medicine.", + "name": "SOCI 70", + "prereqs": [], + "title": "General Sociology for Premedical Students (4)" + }, + "SOCI 87": { + "dept": "SOCI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminar topics will vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "name": "SOCI 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "SOCI 98": { + "dept": "SOCI", + "description": "Small group study and research under the direction of an interested faculty member in an area not covered in regular sociology courses. (P/NP grades only.) ", + "name": "SOCI 98", + "prereqs": [], + "title": "Directed Group Study (4)" + }, + "SOCI 99": { + "dept": "SOCI", + "description": "Individual study and research under the direction of an interested faculty member. P/NP grades only. ", + "name": "SOCI 99", + "prereqs": [], + "title": "Independent Study (4)" + }, + "SXTH 1": { + "dept": "SXTH", + "description": "", + "name": "SXTH 1", + "prereqs": [], + "title": "First Year Experience (2)" + }, + "SXTH 2": { + "dept": "SXTH", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "SXTH 2", + "prereqs": [], + "title": "Transfer Year Experience (2)" + }, + "SXTH 20": { + "dept": "SXTH", + "description": "Weekly seminars with faculty members from a variety of disciplines (chosen by the provost to match the interests of participating students). This seminar provides students with opportunities to learn more about research and scholarly activities being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. P/NP grades only. ", + "name": "SXTH 20", + "prereqs": [], + "title": "Freshmen Honors Seminar (1)" + }, + "Soc/G 201A": { + "dept": "Soc/G", + "description": "A discussion of major themes in the work of Tocqueville and Marx. ", + "name": "Soc/G 201A", + "prereqs": [], + "title": "Classical Sociological Theory I (4)" + }, + "Soc/G 201B": { + "dept": "Soc/G", + "description": "A discussion of major themes in the work of Weber and Durkheim. ", + "name": "Soc/G 201B", + "prereqs": [], + "title": "Classical Sociological Theory II (4)" + }, + "Soc/G 203": { + "dept": "Soc/G", + "description": "Research will be conducted in field settings. The primary focus will be on mastering the problems and technical skills associated with the conduct of ethnographic and participant observational studies. ", + "name": "Soc/G 203", + "prereqs": [], + "title": "Field Methods (4)" + }, + "Soc/G 204": { + "dept": "Soc/G", + "description": "Techniques of gathering and analyzing transcripts of naturally occurring conversations, interviews, discourse in institutional settings, public political discourse, and text of historical materials. ", + "name": "Soc/G 204", + "prereqs": [], + "title": "Text and Discourse Analysis (4)" + }, + "Soc/G 205": { + "dept": "Soc/G", + "description": "This course covers some of the elementary techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ", + "name": "Soc/G 205", + "prereqs": [], + "title": "Quantitative Methods I (4)" + }, + "Soc/G 206": { + "dept": "Soc/G", + "description": "The course covers some of the more advanced techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ", + "name": "Soc/G 206", + "prereqs": [], + "title": "Quantitative Methods II (4)" + }, + "Soc/G 207": { + "dept": "Soc/G", + "description": "A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time. ", + "name": "Soc/G 207", + "prereqs": [], + "title": "Comparative-Historical Methods (4)" + }, + "Soc/G 208": { + "dept": "Soc/G", + "description": "An introduction for entering graduate students to the range and variety of research and scholarly interest of the department\u2019s faculty. Through this introduction students will be better able to relate their own research interests and professional objectives to the ongoing work of faculty. ", + "name": "Soc/G 208", + "prereqs": [], + "title": "Faculty Research Seminar (2)" + }, + "Soc/G 209": { + "dept": "Soc/G", + "description": "This course provides an accessible, graduate level introduction to social network analysis as a theoretical and methodological approach\u2014one takes relationships rather than individuals as the fundamental unit of analysis. While the course will focus on concepts and applications rather than statistical models, students will also become acquainted with basic analytic techniques as well as learn how to collect, store, inspect, and visualize original network data. ", + "name": "Soc/G 209", + "prereqs": [], + "title": "Social Networks (4)" + }, + "Soc/G 211": { + "dept": "Soc/G", + "description": "This course provides an overview and practical, hands-on introduction to some of the common tools employed in computational approaches to social science research. Students will acquire sufficient skills to use existing tools to conduct computational social science research, such as basic Python language. Recommended preparation: knowledge of or background in statistics. ", + "name": "Soc/G 211", + "prereqs": [], + "title": "Introduction to Computational Social Science (4)" + }, + "Soc/G 212": { + "dept": "Soc/G", + "description": "The causes and effects of social ranking in various societies. Theories of stratification; the dynamics of informal social grouping; determinants of institutional power, and the nature of struggles for power; the distribution of wealth and its causes; the dynamics of social mobility; the effects of stratification on life-styles, culture, and deviance. ", + "name": "Soc/G 212", + "prereqs": [], + "title": "Social Stratification (4)" + }, + "Soc/G 214 Urban Sociology (4)": { + "dept": "Soc/G", + "description": "A survey of topics in urban sociology, including the city and suburb as social forms, civility among strangers, urbanism and culture, the political economy of metropolitan development, urban poverty, and racial residential segregation. Classical and contemporary approaches will be considered. ", + "name": "Soc/G 214 Urban Sociology (4)", + "prereqs": [], + "title": "" + }, + "Soc/G 216": { + "dept": "Soc/G", + "description": "The history of the concept of culture; cultural pluralism in advanced industrialized societies; the differentiation of cultural institutions; cultural policy and social structure; culture as a property of social groups; conflict and accommodation over efforts to change and sustain traditional culture.", + "name": "Soc/G 216", + "prereqs": [], + "title": "Sociology of Culture (4)" + }, + "Soc/G 222": { + "dept": "Soc/G", + "description": "An examination of theories accounting for the causes and consequences of social movements, including a discussion of the strengths and weaknesses of such theories for understanding historically specific revolutions, rebellions, and violent and nonviolent forms of protest in various parts of the world. ", + "name": "Soc/G 222", + "prereqs": [], + "title": "Social Movements (4)" + }, + "Soc/G 226": { + "dept": "Soc/G", + "description": "This course discusses the relationship between state and society in a comparative perspective. The focus is on the interaction among states, domestic economic elites, and external economic and political processes in the determination of different developmental paths. Analytically, it includes topics such as characteristics and functions of the state in different types of society throughout history (with an emphasis on the varieties of capitalist and socialist state), the autonomy of the state and its causes in different settings, and developmental and predatory consequences of state activity. Readings will include both theoretical and empirical materials, the latter dealing mostly with nineteenth- and twentieth-century Europe and twentieth-century Latin America. ", + "name": "Soc/G 226", + "prereqs": [], + "title": "Political Sociology (4)" + }, + "Soc/G 227": { + "dept": "Soc/G", + "description": "Ethnographic recording of field data in written and audiovisual formats, including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual data in terms of styles, format, and approaches. Graduate students are required to submit a fifteen-page mid-term paper comparing a written and an audiovisual ethnography and a final video ethnography with a project abstract. ", + "name": "Soc/G 227", + "prereqs": [ + "SOCI 1", + "SOCI 2" + ], + "title": "Ethnographic Film: Media Methods (6)" + }, + "Soc/G 232": { + "dept": "Soc/G", + "description": "Issues in the Sociology of Knowledge (4)", + "name": "Soc/G 232", + "prereqs": [], + "title": "Advanced" + }, + "Soc/G 234": { + "dept": "Soc/G", + "description": "Foundation of the Study of Science, Technology, and Medicine (4)", + "name": "Soc/G 234", + "prereqs": [], + "title": "Intellectual" + }, + "Soc/G 238": { + "dept": "Soc/G", + "description": "of the Sociology of Scientific Knowledge (4)", + "name": "Soc/G 238", + "prereqs": [], + "title": "Survey" + }, + "Soc/G 243": { + "dept": "Soc/G", + "description": "An examination of the sociological literature on social control, looking at theoretical developments over time and examining the contemporary literature dealing with social control in historical and comparative perspective. ", + "name": "Soc/G 243", + "prereqs": [], + "title": "Sociology of Social Control (4)" + }, + "Soc/G 244": { + "dept": "Soc/G", + "description": "Analysis of enduring topics in the study of race and ethnicity, including stratification, discrimination conflict, immigration, assimilation, and politics. Other topics include racial and ethnic identity and the social construction of race and ethnic categories. A special focus is on the role of \u2018culture\u2019 and \u2018structure\u2019 for explaining race/ethnic differentiation. ", + "name": "Soc/G 244", + "prereqs": [], + "title": "Sociology of Race and Ethnicity (4)" + }, + "Soc/G 245": { + "dept": "Soc/G", + "description": "This course studies social constructions of gender within economic opportunities and constraints. We read classical sociological theory on this topic; feminist critiques; and newer research on careers, organizations, and markets. ", + "name": "Soc/G 245", + "prereqs": [], + "title": "Gender, Work, and the Economy (4)" + }, + "Soc/G 246": { + "dept": "Soc/G", + "description": "Surveys major theories of the development and functioning of the welfare state, addressing the roles of economic development, political institutions, stratification, and culture. The course focuses on the development of the US social provision in comparison with other advanced industrial societies.", + "name": "Soc/G 246", + "prereqs": [], + "title": "The Welfare State (4)" + }, + "Soc/G 247": { + "dept": "Soc/G", + "description": "An examination of changing Western responses from the age of Bedlam to the age of Prozac. Topics include: the rise and decline of the total institution; the emergence of psychiatry; changing cultural meanings of madness; and the therapeutics of mental disorder. ", + "name": "Soc/G 247", + "prereqs": [], + "title": "Madness and Society (4)" + }, + "Soc/G 252": { + "dept": "Soc/G", + "description": "In this seminar students work on a research project, which might have originated in a paper written for another course. The goal is to produce the first draft of a paper that will be submitted to an academic journal. ", + "name": "Soc/G 252", + "prereqs": [], + "title": "Research Practicum I (4)" + }, + "Soc/G 253": { + "dept": "Soc/G", + "description": "In this seminar students revise an existing research paper (usually the one they wrote for Sociology 252) for submission to an academic journal. Emphasis is placed on conceptual development, writing style and structure, and drawing links to the existing theoretical and empirical literature. ", + "name": "Soc/G 253", + "prereqs": [], + "title": "Research Practicum II (4)" + }, + "Soc/G 255A": { + "dept": "Soc/G", + "description": "(Same as Phil 209A, HIGR 238, and COGR 225A.) Study and discussion of classic work in history of science, sociology of science, and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ", + "name": "Soc/G 255A", + "prereqs": [], + "title": "Introduction to Science Studies (4)" + }, + "Soc/G 255B": { + "dept": "Soc/G", + "description": "(Same as Phil 209B, HIGR 239, and COGR 225B.) Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. ", + "name": "Soc/G 255B", + "prereqs": [], + "title": "Seminar in Science Studies (4)" + }, + "Soc/G 255C": { + "dept": "Soc/G", + "description": "(Same as Phil 209C, HIGR 240, and COGR 225C.) A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required of all students in the Science Studies Program. ", + "name": "Soc/G 255C", + "prereqs": [], + "title": "Colloquium in Science Studies (4)" + }, + "Soc/G 255D": { + "dept": "Soc/G", + "description": "Advanced Approaches to Science Studies (4)", + "name": "Soc/G 255D", + "prereqs": [], + "title": "" + }, + "Soc/G 258": { + "dept": "Soc/G", + "description": "This course explores institutional change in contemporary Latin America, and compares this area with other transitional societies. Issues include social consequences of economic liberalization, changing forms of inequality, dynamics of civil society, conceptions of citizenship, quality and future of democracy. ", + "name": "Soc/G 258", + "prereqs": [], + "title": "Institutional Change in the Contemporary World; Latin American Societies in a Comparative Perspective (4)" + }, + "Soc/G 263": { + "dept": "Soc/G", + "description": "Seminar in the Sociology of Art (4)", + "name": "Soc/G 263", + "prereqs": [], + "title": "Graduate" + }, + "Soc/G 264": { + "dept": "Soc/G", + "description": "This course provides an overview of the classical and current debates in the economic sociology literature. It presents theories of the rise of industrial economics and addresses how economic activities are constituted and influenced by institutions, culture, and social structure. ", + "name": "Soc/G 264", + "prereqs": [], + "title": "Economic Sociology (4)" + }, + "Soc/G 267": { + "dept": "Soc/G", + "description": "Course examines social construction of gender focusing on recent contributions to the field, including micro- and macro-level topics, i.e., social psychological issues in the development of gender, gender stratification in the labor force, gender and social protest, feminist methodologies. ", + "name": "Soc/G 267", + "prereqs": [], + "title": "Sociology of Gender (4)" + }, + "Soc/G 269": { + "dept": "Soc/G", + "description": "Will examine the controversies surrounding the construction of the modern citizen and the good society of the liberal outlook, and their alternatives in the communitarian, social-democratic, nationalist, feminist, and multiculturalist perspectives. ", + "name": "Soc/G 269", + "prereqs": [], + "title": "The Citizenship Debates (4)" + }, + "Soc/G 278": { + "dept": "Soc/G", + "description": "Assimilation, and Identity (4)", + "name": "Soc/G 278", + "prereqs": [], + "title": "Immigration," + }, + "Soc/G 282": { + "dept": "Soc/G", + "description": "Alternative theories of the relations of immigrants and host societies, and an examination on the debates on, and dynamic of, immigration expansion and restriction. Comparison of the bearing of liberal, communitarian, and ethnic citizenship discourses on the inclusion and exclusion of immigrants and their descendants. ", + "name": "Soc/G 282", + "prereqs": [], + "title": "Immigration and Citizen (4)" + }, + "Soc/G 284": { + "dept": "Soc/G", + "description": "Develops central themes in medical sociology in order to understand twentieth- and twenty-first century medical practice and research. Topics include authority and expertise; health inequalities; managed care; health activism; biomedical knowledge production; and the construction of medical objects and subjects. ", + "name": "Soc/G 284", + "prereqs": [], + "title": "Contemporary Biomedicine (4)" + }, + "Soc/G 288": { + "dept": "Soc/G", + "description": "This seminar examines the place of scientific knowledge and information and communication technology in the transformation of capitalist economy and society. The class explores new interactions between science studies and social theory of advanced capitalism. ", + "name": "Soc/G 288", + "prereqs": [], + "title": "Knowledge Capitalism (4)" + }, + "Soc/G 290": { + "dept": "Soc/G", + "description": "A research seminar in special topics of interest to available staff, provides majors and minors in sociology with research experience in close cooperation with faculty. (S/U grades permitted.) ", + "name": "Soc/G 290", + "prereqs": [], + "title": "Graduate Seminar (4)" + }, + "Soc/G 298": { + "dept": "Soc/G", + "description": "Tutorial individual guides study and/or independent research in an area not covered by present course offerings. (S/U grades only.) ", + "name": "Soc/G 298", + "prereqs": [], + "title": "Independent Study (1\u20138)" + }, + "Soc/G 299": { + "dept": "Soc/G", + "description": "Open to graduate students engaged in thesis research. (S/U grades only.) ", + "name": "Soc/G 299", + "prereqs": [], + "title": "Thesis Research (1\u201312)" + }, + "Soc/G 500": { + "dept": "Soc/G", + "description": "Supervised teaching in lower-division contact classes, supplemented by seminar on methods in teaching sociology. (S/U grades only.) ", + "name": "Soc/G 500", + "prereqs": [], + "title": "Apprentice Teaching (2\u20134)" + }, + "TDAC 1": { + "dept": "TDAC", + "description": "A beginning course in the fundamentals of acting: establishing a working vocabulary and acquiring the basic skills of the acting process. Through exercises, compositions, and improvisations, the student actor explores the imagination as the actor\u2019s primary resource, and the basic approach to text through action. ", + "name": "TDAC 1", + "prereqs": [], + "title": "Introduction to Acting (4)" + }, + "TDAC 101": { + "dept": "TDAC", + "description": "This course focuses on beginning scene study with an emphasis on exploring action/objective and the given circumstances of a selected text. ", + "name": "TDAC 101", + "prereqs": [ + "TDAC 1" + ], + "title": "Acting I (4)" + }, + "TDAC 102": { + "dept": "TDAC", + "description": "Further study in the application of the given circumstances to a text and the development of characterization. ", + "name": "TDAC 102", + "prereqs": [ + "TDAC 101" + ], + "title": "Acting II (4)" + }, + "TDAC 103A": { + "dept": "TDAC", + "description": "An intensive foundation class for students interested in professional actor training. Using Viewpoints, students will train the physical, vocal, and emotional aspects of their actor instrument toward developing character and relationships by using scenes from contemporary and modern plays. ", + "name": "TDAC 103A", + "prereqs": [ + "TDAC 102" + ], + "title": "Acting Intensive I (4)" + }, + "TDAC 103B": { + "dept": "TDAC", + "description": "A continuation of TDAC 103A. Working from Meisner technique, students will learn to deepen and detail their objectives, spontaneous response, and deep listening skills. Focus on the process that will lead to scene work using this technique. ", + "name": "TDAC 103B", + "prereqs": [ + "TDAC 103A" + ], + "title": "Acting Intensive II (4)" + }, + "TDAC 104": { + "dept": "TDAC", + "description": "Studies in the heightened realities of poetic drama. Verse analysis, research, methods and how to approach a classical dialogue. ", + "name": "TDAC 104", + "prereqs": [ + "TDAC 102" + ], + "title": "Classical Text (4)" + }, + "TDAC 105": { + "dept": "TDAC", + "description": "Advanced exploration of Shakespeare\u2019s language through examining and performing scenes from the plays. Admission by audition/interview. May be taken for credit two times. ", + "name": "TDAC 105", + "prereqs": [ + "TDAC 102" + ], + "title": "Rehearing Shakespeare (4)" + }, + "TDAC 106": { + "dept": "TDAC", + "description": "Practical exercises, discussion, text analysis, and scene work on the writings of Anton Chekhov. Admission by audition/interview. ", + "name": "TDAC 106", + "prereqs": [ + "TDAC 102" + ], + "title": "Chekhov Acting (4)" + }, + "TDAC 107": { + "dept": "TDAC", + "description": "Improvisation for the Theatre explores improvisation techniques as an alternative and unique approach to acting. Students should have a performance background. ", + "name": "TDAC 107", + "prereqs": [ + "TDAC 1" + ], + "title": "Improvisation for the Theatre (4)" + }, + "TDAC 108": { + "dept": "TDAC", + "description": "Advanced topics in acting, such as avant-garde drama, commedia, or Beckett, for students who possess basic acting techniques. May be taken for credit four times. ", + "name": "TDAC 108", + "prereqs": [ + "TDAC 102" + ], + "title": "Advanced Topics (4)" + }, + "TDAC 109": { + "dept": "TDAC", + "description": "This course introduces basic skills of breathing, placement, diction, musicianship, harmony, interpretation, and presentation needed by actors for roles requiring singing. Through a combination of group and individual coaching in class, students will prepare a program of short solo and ensemble pieces for a finals-week presentation. ", + "name": "TDAC 109", + "prereqs": [ + "TDAC 1" + ], + "title": "Singing for Actors (4)" + }, + "TDAC 110": { + "dept": "TDAC", + "description": "This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will perform in simulated studio setting on camera. ", + "name": "TDAC 110", + "prereqs": [ + "TDAC 102" + ], + "title": "Acting for the Camera (4)" + }, + "TDAC 111": { + "dept": "TDAC", + "description": "Intensive workshop for actors and directors designed to \u201cfree the voice,\u201d with special emphasis on characteristics and vocal flexibility in a wide range of dramatic texts. This proven method combines experimental and didactic learning with selected exercises, texts, tapes, films, and total time commitment. ", + "name": "TDAC 111", + "prereqs": [ + "TDAC 101" + ], + "title": "Freeing the Voice (4)" + }, + "TDAC 112": { + "dept": "TDAC", + "description": "An in-depth study seminar focused on special issues in acting as they relate to contemporary theatre. Of particular interest to students who plan to pursue a career in this area of theatre. ", + "name": "TDAC 112", + "prereqs": [ + "TDAC 102" + ], + "title": "Senior Seminar in Acting (4)" + }, + "TDAC 115": { + "dept": "TDAC", + "description": "An exploration of the wide array of physical skills necessary for the actor. Using techniques derived from mime, clowning, sports, acrobatics, and improvisation, students will investigate their individual physical potential as well as their sense of creativity and imagination. ", + "name": "TDAC 115", + "prereqs": [ + "TDAC 101" + ], + "title": "Movement for Actors (4)" + }, + "TDAC 120": { + "dept": "TDAC", + "description": "An intensive theatre practicum designed to generate theatre created by an ensemble with particular emphasis upon the analysis of text. Students will explore and analyze the script and its author. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell\u2019arte. Audition may be required. A maximum of four units may be used for major credit. (Cross-listed with ETHN 146A.) ", + "name": "TDAC 120", + "prereqs": [], + "title": "Ensemble (4)" + }, + "TDAC 122": { + "dept": "TDAC", + "description": "Participation in a fully staged theatre production directed by an MFA or PhD student for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ", + "name": "TDAC 122", + "prereqs": [], + "title": "Ensemble: Undergraduate Production (4)" + }, + "TDAC 123": { + "dept": "TDAC", + "description": "Participation in a fully staged season production that is directed by a faculty member or guest for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ", + "name": "TDAC 123", + "prereqs": [], + "title": "Advanced Studies in Performance (4)" + }, + "TDDE 1": { + "dept": "TDDE", + "description": "A survey of contemporary and historical concepts and practices in the visual arts of the theatre; studies in text analysis, studio processes and technical production; elementary work in design criticism, scale model making, and costume design. A course serving as an introduction to theatre design and production.", + "name": "TDDE 1", + "prereqs": [], + "title": "Introduction to Design for the Theatre (4)" + }, + "TDDE 101": { + "dept": "TDDE", + "description": "A hands-on course develops craft skills and solution-finding process in design including script analysis, concept sketches, research, and scale model making. An exploration of fundamental ways of seeing and understanding visual design. ", + "name": "TDDE 101", + "prereqs": [ + "TDPR 1", + "TDDE 1" + ], + "title": "Theatre Process\u2014Scenery (4)" + }, + "TDDE 102": { + "dept": "TDDE", + "description": "An advanced course based on the \u201cpractice\u201d of scenic design, dealing with the solution finding process, from text to idea to realized work. ", + "name": "TDDE 102", + "prereqs": [ + "TDDE 101", + "TDDE 1" + ], + "title": "Advanced Scenic Design (4)" + }, + "TDDE 111": { + "dept": "TDDE", + "description": "The process of the costume designer from script analysis and research visualization of ideas, through the process of costume design. Lecture and demonstration labs parallel lecture material. This course is intended for those interested in a basic understanding of the costumer\u2019s process. No previous drawing or painting skills required. ", + "name": "TDDE 111", + "prereqs": [ + "TDDE 1" + ], + "title": "Theatre Process\u2014Costume Design (4)" + }, + "TDDE 112": { + "dept": "TDDE", + "description": "An advanced course based on the \u201cpractice\u201d of costume design, dealing with the solution finding process, from text to idea to realized work. ", + "name": "TDDE 112", + "prereqs": [ + "TDDE 111", + "TDDE 1" + ], + "title": "Advanced Costume Design (4)" + }, + "TDDE 121": { + "dept": "TDDE", + "description": "One of three classes in theatre process. The course aims to develop basic skills in lighting design through practical projects, lab work and lecture. These emphasize collaborating, manipulating light and color, and developing craft skills. ", + "name": "TDDE 121", + "prereqs": [ + "TDDE 1", + "TDPR 3" + ], + "title": "Theatre Process\u2014Lighting Design (4)" + }, + "TDDE 130": { + "dept": "TDDE", + "description": "A production-oriented course that continues", + "name": "TDDE 130", + "prereqs": [], + "title": "Assistant Designer (2\u20136)" + }, + "TDDE 131": { + "dept": "TDDE", + "description": "A course designed to expose the theatre design students to a variety of specialized topics that will vary from quarter to quarter. May be taken for credit three times. ", + "name": "TDDE 131", + "prereqs": [ + "TDDE 1" + ], + "title": "Special Topics in Theatre Design (4)" + }, + "TDDE 132": { + "dept": "TDDE", + "description": "Main Stage Production: Design (4)", + "name": "TDDE 132", + "prereqs": [], + "title": "Undergraduate" + }, + "TDDE 141": { + "dept": "TDDE", + "description": "A hands-on course on the process of sound design from conception to planning and implementation. The course will concentrate equally on the technical and artistic aspects of the sound design process and will include a survey of modern audio technologies. ", + "name": "TDDE 141", + "prereqs": [ + "TDPR 5", + "TDPR 6", + "MUS 173", + "TDDE 1" + ], + "title": "Theatre Process\u2014Sound Design (4)" + }, + "TDDE 142": { + "dept": "TDDE", + "description": "This course focuses on advancing students in their artistic and technical skills in sound design. A large-scale project will be identified with special attention given to text analysis and technical specification of the sound design. ", + "name": "TDDE 142", + "prereqs": [ + "TDDE 141", + "TDDE 1" + ], + "title": "Advanced Sound Design (4)" + }, + "TDDE 151": { + "dept": "TDDE", + "description": "This course will examine the field of projection design for theatre and dance performance. Students will study and produce original works based on the theoretical and aesthetic approaches of animation, film, performance, and installation art that influence contemporary projection design. ", + "name": "TDDE 151", + "prereqs": [], + "title": "Digital Video Design (4)" + }, + "TDDE 169A": { + "dept": "TDDE", + "description": "Introductory course that explores a variety of digital rendering methods for artistic 2-D, 3-D, and moving graphics visualization in theatre and performance design. Course objective is to synthesize and expand traditional drawing and painting methods with modern digital media-based applications. ", + "name": "TDDE 169A", + "prereqs": [], + "title": "Digital Rendering for Theatre and Performance Design I (4)" + }, + "TDDE 169B": { + "dept": "TDDE", + "description": "A continuation of TDDE 169A. Studio course explores advanced digital rendering methods for artistic 2-D, 3-D, and moving graphics for theatre and performance design. Focus will be on advanced techniques in the process of visualization from conception to production. ", + "name": "TDDE 169B", + "prereqs": [ + "TDDE 169A" + ], + "title": "Digital Rendering for Theatre and Performance Design II (4)" + }, + "TDDE 190": { + "dept": "TDDE", + "description": "Project in Design/Theatre Production (4)", + "name": "TDDE 190", + "prereqs": [], + "title": "Major" + }, + "TDDM 1": { + "dept": "TDDM", + "description": "Explores the concepts and processes of dance making through creative projects, discussions, and the examination of major dance works. Recommended preparation: No prior dance experience required. Open to all levels. ", + "name": "TDDM 1", + "prereqs": [], + "title": "Introduction to Dance Making (4)" + }, + "TDDM 100": { + "dept": "TDDM", + "description": "Practical and conceptual studies of approaches to dance making. Compositional projects enable students to create short works for solo, duet, and small group situations with options to explore interdisciplinary collaboration, specific sites, text, political and societal issues, and advanced partner work. ", + "name": "TDDM 100", + "prereqs": [ + "TDDM 1" + ], + "title": "Dance Making 1 (4)" + }, + "TDDM 101": { + "dept": "TDDM", + "description": "The study of compositional, ensemble, collaborative, and improvisational approaches to dance making. Structures, scores, tasks, imagination, timing, spontaneity, partnering skills, composing in the moment, shared authorship, and experimentation facilitate the development of movement vocabulary. ", + "name": "TDDM 101", + "prereqs": [ + "TDDM 1" + ], + "title": "Dance Making 2 (4)" + }, + "TDDM 5": { + "dept": "TDDM", + "description": "The study of dance and performance creation in relation to the environment, political activism, happenings, and ritual. Students explore ideas within the unique attributes of architecture, natural landscapes, public spaces, visual art, historic landmarks, and cultural contexts. Recommended preparation: No prior dance experience needed. Open to all levels. ", + "name": "TDDM 5", + "prereqs": [], + "title": "Site Specific Dance and Performance (4)" + }, + "TDDR 101": { + "dept": "TDDR", + "description": "Discussion and research into the duties, responsibilities, and roles of a stage manager. Work to include studies in script analysis, communication, rehearsal procedures, performance skills, and style and conceptual approach to theatre. THGE or TDGE 1, THAC or TDAC 1, and THDE or TDDE 1 recommended.", + "name": "TDDR 101", + "prereqs": [], + "title": "Stage Management (4)" + }, + "TDDR 108": { + "dept": "TDDR", + "description": "This is an introductory class in the process of understanding the play script. The class will focus on analyzing the story and the underlying dramatic structure in terms of dramatic action. Objectives, actions, choices, given circumstances, and character will be examined. ", + "name": "TDDR 108", + "prereqs": [], + "title": "Text Analysis for Actors and Directors (4)" + }, + "TDDR 111": { + "dept": "TDDR", + "description": "A studio class that investigates the fundamental", + "name": "TDDR 111", + "prereqs": [], + "title": "Directing-Acting Process (4)" + }, + "TDDR 190": { + "dept": "TDDR", + "description": "For the advanced student in directing. Intensive concentration on the full realization of a dramatic text from research and analysis through rehearsal and into performance. A maximum of eight units of major project study, regardless of area (design, directing, or stage management) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ", + "name": "TDDR 190", + "prereqs": [ + "TDDR 111", + "TDDR 108" + ], + "title": "Major Project in Directing (4)" + }, + "TDDR 191": { + "dept": "TDDR", + "description": "For the advanced student in stage management. Intensive concentration on the full realization of a dramatic text, from research and analysis through rehearsal and final performance. A maximum of eight units of major project study regardless of area (design, directing, stage management, or playwriting) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ", + "name": "TDDR 191", + "prereqs": [ + "TDPR 4", + "TDDR 101", + "TDPR 104" + ], + "title": "Major Project in Stage Management (4)" + }, + "TDGE 1": { + "dept": "TDGE", + "description": "An introduction to fundamental concepts in drama and performance. Students will attend performances and learn about how the theatre functions as an art and as an industry in today\u2019s world. ", + "name": "TDGE 1", + "prereqs": [], + "title": "Introduction to Theatre (4)" + }, + "TDGE 10": { + "dept": "TDGE", + "description": "Theatre and Film analyzes the essential differences between theatrical and cinematic approaches to drama. Through selected play/film combinations, the course looks at how the director uses actors and the visual languages of the stage and screen to guide and stimulate the audience\u2019s responses. ", + "name": "TDGE 10", + "prereqs": [], + "title": "Theatre and Film (4)" + }, + "TDGE 100": { + "dept": "TDGE", + "description": "Acting and leadership require \u201cchoices\u201d to play a role. The role of leader requires authenticity, collaboration, listening, presence, vision, and influence. Students will explore characteristics of strong leaders, and utilizing traditional acting techniques build powerful capabilities of leadership. No prior theatre/acting experience needed. ", + "name": "TDGE 100", + "prereqs": [], + "title": "Creating the Role of \u201cLeader\u201d (4)" + }, + "TDGE 105": { + "dept": "TDGE", + "description": "An acting course for nonmajors, building on the acting fundamentals developed in TDGE 5. Using analysis of film acting to practice in studio exercises and scene work, student actors learn to approach a text using imagination as their primary tool. ", + "name": "TDGE 105", + "prereqs": [ + "TDGE 5" + ], + "title": "Exploring Acting (4)" + }, + "TDGE 11": { + "dept": "TDGE", + "description": "Course examines major accomplishments in screen acting from the work of actors in films or in film genres. May be taken for credit three times. ", + "name": "TDGE 11", + "prereqs": [], + "title": "Great Performances on Film (4)" + }, + "TDGE 12": { + "dept": "TDGE", + "description": "This course explores filmed representations of race and diversity and examines works by underrepresented filmmakers. Course topics vary; they include African American film, Latino/a film, Asian American film, films by Spike Lee, stereotypes on film, and other such topics. Students may not enroll in the same topic of TDGE 12 that they have already taken in TDGE 11, Great Performances on Film. This will count as a duplicate of credit for repeating the same film topic. May be taken for credit two times. ", + "name": "TDGE 12", + "prereqs": [], + "title": "Topics in Cinema and Race (4)" + }, + "TDGE 122": { + "dept": "TDGE", + "description": "Students explore a variety of issues: screenwriting, directing, cinematography, and editing; the intersection of comedy and tragedy in Allen\u2019s works; recurring themes; and critical responses. Students view thirteen films and write two three-page essays and one ten-page research paper. ", + "name": "TDGE 122", + "prereqs": [], + "title": "The Films of Woody Allen (4)" + }, + "TDGE 124": { + "dept": "TDGE", + "description": "A select survey of eight to ten exceptional offbeat, frequently low-budget films from the last sixty years that have attained cult status. The mix includes Tod Browning\u2019s Freaks (1932) to John Water\u2019s Pink Flamingos (1973). Aspects of bad taste, cinematic irony, and theatrical invention will be highlighted. ", + "name": "TDGE 124", + "prereqs": [], + "title": "Cult Films: Weirdly Dramatic (4)" + }, + "TDGE 125": { + "dept": "TDGE", + "description": "Great films and the performance of the actors in them are analyzed in their historical, cinematic, or theatrical contexts. This course examines the actor\u2019s contribution to classic cinema and the social and aesthetic forces at work in film. ", + "name": "TDGE 125", + "prereqs": [], + "title": "Topics in Theatre and Film (4)" + }, + "TDGE 126": { + "dept": "TDGE", + "description": "This course will use a broad range of animation styles and genres to examine larger issues in art practice, focusing closely on the relationship between form and content, and how sound/set/costume/character design impacts narrative. ", + "name": "TDGE 126", + "prereqs": [], + "title": "Storytelling and Design in Animation (4)" + }, + "TDGE 131": { + "dept": "TDGE", + "description": "This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America\u2019s First Peoples in Hollywood cinema. Carving spaces of \u201cvisual sovereignty\u201d (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for both TDGE 131 and ETHN 163F. ", + "name": "TDGE 131", + "prereqs": [], + "title": "Playing Indian: Native American and First Nations Cinema (4)" + }, + "TDGE 133": { + "dept": "TDGE", + "description": "An exploration of fundamental ways of seeing and thinking about the performance space. A look at the design process as it reflects styles and attitudes through an examination of text/image/meaning/message in theatre, dance, opera, and visual arts. With a special emphasis on the \u201csolution-finding process\u201d in design, as a leap from text to context, to finalized design. ", + "name": "TDGE 133", + "prereqs": [ + "TDDE 1" + ], + "title": "Visual Ideas (4)" + }, + "TDGE 134": { + "dept": "TDGE", + "description": "This class examines disability in the performative context, exploring the representation of people with disabilities and the struggle for access and inclusion. The frame of advocacy, understanding, and creative collaboration will deepen the historical perspective on disability. ", + "name": "TDGE 134", + "prereqs": [], + "title": "Disability and Performative Exploration: Struggle for Inclusion (4)" + }, + "TDGE 192": { + "dept": "TDGE", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in theatre and dance (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "name": "TDGE 192", + "prereqs": [], + "title": "Senior Seminar in Theatre and Dance (1)" + }, + "TDGE 196A": { + "dept": "TDGE", + "description": "The Honors thesis is designed to give theatre and dance majors the opportunity to undertake advanced creative research in an area of specialization (directing, history, pedagogy, performance, playwriting, or stage management), culminating in the writing of a thesis and the oral or performative presentation of the thesis to the members of the student\u2019s Honors Committee. Application available with the theatre and dance undergraduate coordinator. This is a two-quarter research project. Students enroll in the winter and spring quarters of their senior year. Deadline to apply is fall quarter of the student\u2019s senior year. ", + "name": "TDGE 196A", + "prereqs": [], + "title": "Honors Study in Theatre and Dance (4)" + }, + "TDGE 196B": { + "dept": "TDGE", + "description": "A continuation of TDGE 196A. Theatre and dance Honors students complete thesis work in directing, history, pedagogy, performance, playwriting, or stage management under the close supervision of a faculty member. All students enrolled will present their thesis work during a departmental showcase event at the end of the spring quarter. ", + "name": "TDGE 196B", + "prereqs": [ + "TDGE 196A" + ], + "title": "Honors Study in Theatre and Dance (4)" + }, + "TDGE 198": { + "dept": "TDGE", + "description": "Group studies, readings, projects, and discussions in theatre history, problems of production and performance, and similarly appropriate subjects. ", + "name": "TDGE 198", + "prereqs": [], + "title": "Directed Group Studies (0-2-4)" + }, + "TDGE 199": { + "dept": "TDGE", + "description": "Qualified students will pursue a special project in theatre history, problems of production and performance, and similarly appropriate topics. ", + "name": "TDGE 199", + "prereqs": [], + "title": "Special Projects (0-2-4)" + }, + "TDGE 25": { + "dept": "TDGE", + "description": "This course is designed to establish a clear understanding of the fundamentals of effective oral communication. The methodologies explore the integration of relaxation, concentration, organization, and clear voice and diction as applied to various public speaking modes. ", + "name": "TDGE 25", + "prereqs": [], + "title": "Public Speaking (4)" + }, + "TDGE 3": { + "dept": "TDGE", + "description": "This course will use the theatrical context to integrate scientific research about creativity, group dynamics, and related topics. Through a mix of theoretical and experiential classes and assignments, we will explore the intersection of theatre and neuroscience, investigating and expanding the creative mind. ", + "name": "TDGE 3", + "prereqs": [], + "title": "Cultivating the Creative Mind (4)" + }, + "TDGE 5": { + "dept": "TDGE", + "description": "An introductory course on acting fundamentals for students without an acting background. Through analysis of acting on film, students will explore the actor\u2019s craft and practice these skills in studio exercises to better understand how an actor approaches a text.\u00a0", + "name": "TDGE 5", + "prereqs": [], + "title": "A Glimpse into Acting (4)" + }, + "TDGE 50": { + "dept": "TDGE", + "description": "Study and perform selected songs from American musical theatre. Open to all students. No audition required. Attendance at rehearsals and performance are mandatory. P/NP grades only. May be taken for credit six times. ", + "name": "TDGE 50", + "prereqs": [], + "title": "Musical Theatre Chorus (2)" + }, + "TDGE 87": { + "dept": "TDGE", + "description": "Seminar on a topic in theatre or dance on a level appropriate for first-year students, conducted in an informal, small group setting limited to ten to twenty students. Topics will vary. ", + "name": "TDGE 87", + "prereqs": [], + "title": "Freshman Seminar in Theatre and Dance (1)" + }, + "TDGE 89": { + "dept": "TDGE", + "description": "An introduction to dance movement and understanding your body. A contemporary approach to dancing and its many genres as an expressive medium and form of communication. A movement course but no dance training or background in dance needed. May be taken for credit three times. ", + "name": "TDGE 89", + "prereqs": [], + "title": "Dance Movement Exploration (4)" + }, + "TDGR": { + "dept": "TDGR", + "description": "220B. Process II: Classical Text II (4)", + "name": "TDGR", + "prereqs": [], + "title": "" + }, + "TDGR 200": { + "dept": "TDGR", + "description": "A daily program of physical, vocal, and speech exercises designed to prepare the student to move in a focused way into specific class areas with minimum amount of warm-up time. The exercises work on development of flexibility, strength, and coordination throughout the body. Strong emphasis is placed on physical and mental centering within a structured and disciplined approach to preparation. ", + "name": "TDGR 200", + "prereqs": [], + "title": "Dynamics (1)" + }, + "TDGR 201": { + "dept": "TDGR", + "description": "A study of the dramatic elements of stage violence, and practical work in developing the physical skills necessary to fully realize violent moments on the stage. At the core of the study is the process from text to convincing theatrical action. Physical work revolves around basic principles of energy, focus, and center inherent in unarmed and weapons combat. ", + "name": "TDGR 201", + "prereqs": [], + "title": "Stage Combat (2)" + }, + "TDGR 204A": { + "dept": "TDGR", + "description": "Topics to be covered will include (1) concept of poetic language; lexical and syntactic analysis of dialogue; (2) the semantic context of dialogue; (3) thematic structure, from motive to themes; (4) the concept of dramatic character or hero; (5) dramatic narrative; (6) the material of drama; the relationship of myth and ritual to drama; (7) analysis versus interpretation; (8) practical applications. ", + "name": "TDGR 204A", + "prereqs": [], + "title": "Text Analysis (4)" + }, + "TDGR 204B": { + "dept": "TDGR", + "description": "An investigation of contemporary theories of theatre with an emphasis on structural and poststructural perspectives on text and textuality. The seminar will focus on adapting contemporary techniques of close reading to the interpretive and creative process in the theatre. ", + "name": "TDGR 204B", + "prereqs": [ + "TDGR 204A" + ], + "title": "Contemporary Theories of Theatre (4)" + }, + "TDGR 204C": { + "dept": "TDGR", + "description": "The culmination of the TDGR 204 sequence, in which students in all disciplines create and perform publicly presented original theatre pieces. ", + "name": "TDGR 204C", + "prereqs": [ + "TDGR 204B" + ], + "title": "Collective Creation (4)" + }, + "TDGR 206": { + "dept": "TDGR", + "description": "Faculty directed production, from the rehearsal process through public performance. All participants will enroll in the same section, the number of units depending upon degree of involvement. ", + "name": "TDGR 206", + "prereqs": [], + "title": "Faculty Directed Production (4)" + }, + "TDGR 207": { + "dept": "TDGR", + "description": "The collaborative process from the rehearsal process through public performance. All participants will enroll in the same section, the same number of units. ", + "name": "TDGR 207", + "prereqs": [], + "title": "Production (4)" + }, + "TDGR 208": { + "dept": "TDGR", + "description": "This course serves as a laboratory for experimentation in the choreographic strategies and structures of contemporary dance making. S/U grades only. May be taken for credit eight times. ", + "name": "TDGR 208", + "prereqs": [], + "title": "Dance Making Processes (4)" + }, + "TDGR 210A": { + "dept": "TDGR", + "description": "The actors focus on the nature of the acting", + "name": "TDGR 210A", + "prereqs": [], + "title": "Process I\u2014Part I (4)" + }, + "TDGR 210B": { + "dept": "TDGR", + "description": "Intensive studio examination of realistic", + "name": "TDGR 210B", + "prereqs": [], + "title": "Process I\u2014Part II (4)" + }, + "TDGR 210C": { + "dept": "TDGR", + "description": "The intensive study of the dramatic and fictional", + "name": "TDGR 210C", + "prereqs": [], + "title": "Process I\u2014Part III (4)" + }, + "TDGR 211B": { + "dept": "TDGR", + "description": "for the Actor (2\u20134)", + "name": "TDGR 211B", + "prereqs": [], + "title": "Speech" + }, + "TDGR 212": { + "dept": "TDGR", + "description": "One-on-one laboratory workshop that examines practical applications of accents, speech and voice work, dialect, movement and combat work specific and ancillary to the productions in which the students have been cast. ", + "name": "TDGR 212", + "prereqs": [], + "title": "Acting Practicum (2)" + }, + "TDGR 214A": { + "dept": "TDGR", + "description": "Voice exercises designed to \u201cfree the voice\u201d with emphasis", + "name": "TDGR 214A", + "prereqs": [], + "title": "Voice for Theatre I\u2014Part I (3)" + }, + "TDGR 214B": { + "dept": "TDGR", + "description": "II\u2014Part I (3)", + "name": "TDGR 214B", + "prereqs": [], + "title": "Voice for Theatre" + }, + "TDGR 214C": { + "dept": "TDGR", + "description": "Voice exercises designed", + "name": "TDGR 214C", + "prereqs": [], + "title": "Voice for Theatre I\u2014Part III (3)" + }, + "TDGR 215A": { + "dept": "TDGR", + "description": "This seminar focuses on concepts that inform creation, performance, research, and critical analysis of current and emerging dance making practices with varying content by faculty. S/U grades only. May be taken for credit eight times. ", + "name": "TDGR 215A", + "prereqs": [], + "title": "Special Topics in Dance Making (4)" + }, + "TDGR 216A": { + "dept": "TDGR", + "description": "This course is designed to enhance dance practitioners\u2019 understanding of pedagogical processes. Candidates will develop strategies to generate course material that functions in multiple contexts. These contexts may include university teaching, professional workshops, master classes, and artist residencies. S/U grades only. ", + "name": "TDGR 216A", + "prereqs": [], + "title": "Pedagogical Practices (4)" + }, + "TDGR 217": { + "dept": "TDGR", + "description": "This seminar explores the interaction of new media and technologies for collaboration, research, and creation in dance making and performance. ", + "name": "TDGR 217", + "prereqs": [], + "title": "New Media and Technology (4)" + }, + "TDGR 218A": { + "dept": "TDGR", + "description": "This seminar focuses on the specific considerations that support and sustain a professional career as a contemporary dance maker and performer. S/U grades only. ", + "name": "TDGR 218A", + "prereqs": [], + "title": "Professional Practices (4)" + }, + "TDGR 219": { + "dept": "TDGR", + "description": "Preparation, presentation, and discussion", + "name": "TDGR 219", + "prereqs": [], + "title": "Directing Process Studio (4)" + }, + "TDGR 220A": { + "dept": "TDGR", + "description": "An intensive studio examination of problems and potentials", + "name": "TDGR 220A", + "prereqs": [], + "title": "Process II: Classical Text I (4)" + }, + "TDGR 220C": { + "dept": "TDGR", + "description": "An intensive studio examination of problems and potentials", + "name": "TDGR 220C", + "prereqs": [], + "title": "Process II: Classical Text III (4)" + }, + "TDGR 221": { + "dept": "TDGR", + "description": "(4)", + "name": "TDGR 221", + "prereqs": [], + "title": "Graduate Studio: Contemporary Movement Practices" + }, + "TDGR 221A-B": { + "dept": "TDGR", + "description": "Advanced work in phonetics and articulation. Intensive study of stage dialects to prepare actor for variety of roles. ", + "name": "TDGR 221A-B", + "prereqs": [ + "TDGR 221B", + "TDGR 221A" + ], + "title": "Speech for the Actor II (3-3)" + }, + "TDGR 223A-B": { + "dept": "TDGR", + "description": "An advanced course in the art of movement for the theatre, building on the knowledge gained in Theatre 213. (S/U grades only.) ", + "name": "TDGR 223A-B", + "prereqs": [ + "TDGR 223A" + ], + "title": "Movement for Theatre II (3-3)" + }, + "TDGR 224A-B": { + "dept": "TDGR", + "description": "Advanced voice training designed to help the actor fuse voice, emotion, and body into a fully realized reflection of the text. (S/U grades only.) ", + "name": "TDGR 224A-B", + "prereqs": [ + "TDGR 224A" + ], + "title": "Voice for Theatre II (3-3)" + }, + "TDGR 225A-B": { + "dept": "TDGR", + "description": "Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ", + "name": "TDGR 225A-B", + "prereqs": [], + "title": "Singing for the Actor II (1-1)" + }, + "TDGR 226": { + "dept": "TDGR", + "description": "Assisting faculty with productions off-campus.\u00a0Perform research necessary for project. Assist with preproduction meetings and other work. Observe and participate in any or all phases of the production process from preproduction through closing. ", + "name": "TDGR 226", + "prereqs": [], + "title": "Stage Managing Assistantship (4\u201312)" + }, + "TDGR 227A": { + "dept": "TDGR", + "description": "Taken each term by all graduate contemporary dance making and performance students. The class supports candidates in their ongoing research in the development of performance work for all three years from in-studio showings through thesis presentation. S/U grades only. May be taken for credit eight times. ", + "name": "TDGR 227A", + "prereqs": [], + "title": "Production Practicum (4)" + }, + "TDGR 229": { + "dept": "TDGR", + "description": "Selected professional opportunities in repertory and commercial theatre, designed to engage the student in particular creative responsibilities under the guidance of master artist-teachers. Student is expected to give biweekly reports detailing his/her experience with the professional company. ", + "name": "TDGR 229", + "prereqs": [], + "title": "Theatre Externship (6\u201312)" + }, + "TDGR 230": { + "dept": "TDGR", + "description": "An advanced studio for graduate actors and directors, this work will explore a single text from the modern theatre under the direction of a master teacher-artist. Concentration will be on multiple possible modes of encountering a text, varieties of interpretation and performance realization, and the development of a theatre ensemble. ", + "name": "TDGR 230", + "prereqs": [], + "title": "Acting Process III: Actors\u2019 Studio (2\u20134)" + }, + "TDGR 231A": { + "dept": "TDGR", + "description": "Professional Preparation for the Actor (4)", + "name": "TDGR 231A", + "prereqs": [], + "title": "" + }, + "TDGR 233": { + "dept": "TDGR", + "description": "This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will rehearse and perform in simulated studio setting. ", + "name": "TDGR 233", + "prereqs": [], + "title": "Acting for the Camera (1)" + }, + "TDGR 235": { + "dept": "TDGR", + "description": "Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ", + "name": "TDGR 235", + "prereqs": [], + "title": "Singing for the Actor III (1)" + }, + "TDGR 239": { + "dept": "TDGR", + "description": "A unifying approach to acting skills (voice, movement, and speech) designed to result in providing the graduating actor with a daily regimen appropriate for professional work. ", + "name": "TDGR 239", + "prereqs": [], + "title": "Skills (4)" + }, + "TDGR 240": { + "dept": "TDGR", + "description": "A seminar focusing on the current directing projects of all graduate directing students. Depending upon individual student needs, the work may include play selection, historical or sociological research, and discussion of emerging directorial concepts, the rehearsal process, and post-production evaluation. ", + "name": "TDGR 240", + "prereqs": [], + "title": "Directing Seminar (1\u20136)" + }, + "TDGR 243": { + "dept": "TDGR", + "description": "Lab (4)", + "name": "TDGR 243", + "prereqs": [], + "title": "Director/Playwright/Choreographer" + }, + "TDGR 244": { + "dept": "TDGR", + "description": "A course where playwrights and actors work together to develop", + "name": "TDGR 244", + "prereqs": [], + "title": "New Plays Workshop (2)" + }, + "TDGR 245": { + "dept": "TDGR", + "description": "Students enrolled in this course will work on productions in the function of a director. This will include staging, creative interpretation, blocking, etc. ", + "name": "TDGR 245", + "prereqs": [], + "title": "Directing Practicum (4)" + }, + "TDGR 250": { + "dept": "TDGR", + "description": "A seminar focusing on the current playwriting project of all graduate playwriting students. Work for each quarter is individually determined according to student needs, but may include exploration of an inceptive idea, development of a scenario or other structural work, and writing dialogue. Students present work to be discussed in class. May include group or individual playwriting exercises. ", + "name": "TDGR 250", + "prereqs": [], + "title": "Playwriting Seminar (4)" + }, + "TDGR 251": { + "dept": "TDGR", + "description": "Creative writing project developing original scripts from outline to the final play. Plays may vary depending on the quarter, but will include writing of a realistic one-act, a nonrealistic one-act, a one-act documentary or dramatization of fiction, a full-length play. ", + "name": "TDGR 251", + "prereqs": [], + "title": "Playwriting Practicum (2)" + }, + "TDGR 252": { + "dept": "TDGR", + "description": "The seminar will deal with all dramaturgical issues pertaining to departmental productions: production research, textual and analysis, translation, adaptation, rehearsal process, and critique. Concurrently with the dramaturgy issues of the given year, the seminar will discuss possible choices of plays for future production seasons. ", + "name": "TDGR 252", + "prereqs": [], + "title": "Dramaturgy Seminar (4)" + }, + "TDGR 253": { + "dept": "TDGR", + "description": "Students enrolled in this course will work on productions in the function of a dramaturg. This will entail preparation of texts, research, participation at rehearsals, etc. ", + "name": "TDGR 253", + "prereqs": [], + "title": "Dramaturgy Practicum (1\u20136)" + }, + "TDGR 254": { + "dept": "TDGR", + "description": "A one-quarter course covering the hour-long format (five weeks) and situation comedies (five weeks). Includes study and discussion of television script format and structure. Students will create the concept and structure for spec scripts in each genre. ", + "name": "TDGR 254", + "prereqs": [], + "title": "Television Writing (4)" + }, + "TDGR 255": { + "dept": "TDGR", + "description": "This course is open to any graduate student who wants to expand their knowledge and experience of writing for performance. Open to graduate students who wish to incorporate writing into their creative and research practice. S/U grades only. May be taken for credit two times. ", + "name": "TDGR 255", + "prereqs": [], + "title": "Writing for Performance (4)" + }, + "TDGR 256": { + "dept": "TDGR", + "description": "A guided reading course focusing exclusively on very recent plays in an attempt to become aware of what is being written now. Course may be repeated for credit. ", + "name": "TDGR 256", + "prereqs": [], + "title": "Contemporary Plays (1\u20134)" + }, + "TDGR 257A-B": { + "dept": "TDGR", + "description": "Students will develop the concept for an original piece for television or film and will write the screenplay. Student work will be discussed in seminar at each phase of the development. ", + "name": "TDGR 257A-B", + "prereqs": [ + "TDGR 250" + ], + "title": "Screenwriting (4-4)" + }, + "TDGR 258A": { + "dept": "TDGR", + "description": "Seminar will deal with dramatization and adaptation of literary texts for the purpose of theatrical production. The class will study some significant examples of such practice from the past and, subsequently, students will develop their own projects of dramatization, adaptation, or modernization of texts. ", + "name": "TDGR 258A", + "prereqs": [], + "title": "Dramatization and Adaptation (4)" + }, + "TDGR 260": { + "dept": "TDGR", + "description": "The collaborative process of new-play development through readings, rehearsals, and public performance. MFA actors, designers, directors, playwrights, and stage managers enroll in one section and collaborate in creating the annual festival of full-length and one-act plays. ", + "name": "TDGR 260", + "prereqs": [], + "title": "New-Play Festival (4)" + }, + "TDGR 262": { + "dept": "TDGR", + "description": "Boundaries: Design Improvisations (4)", + "name": "TDGR 262", + "prereqs": [], + "title": "Crossing" + }, + "TDGR 268": { + "dept": "TDGR", + "description": "Course will cover multiple applications of storyboarding as a tool of communication and expression; comic books, theatre, opera, film, TV, and commercial applications will be explored. Individual and team assignments will be given to develop the basic vocabulary and techniques. ", + "name": "TDGR 268", + "prereqs": [], + "title": "Storyboarding (4)" + }, + "TDGR 269A": { + "dept": "TDGR", + "description": "Course will introduce the basic functions and applications of Photoshop as they may be applied to theatrical design. Emphasis on using Photoshop as an artistic tool. ", + "name": "TDGR 269A", + "prereqs": [], + "title": "Photoshop I (4)" + }, + "TDGR 269B": { + "dept": "TDGR", + "description": "Advanced Photoshop techniques will be explored and applied to the creation of multimedia projects. ", + "name": "TDGR 269B", + "prereqs": [], + "title": "Photoshop II (4)" + }, + "TDGR 270A": { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual expression. Students will work on individual projects in lighting, costume, and scenic design. The course will include group critiques of completed designs and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "name": "TDGR 270A", + "prereqs": [], + "title": "Design Studio I (4)" + }, + "TDGR 270B": { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual expression. Students will work on individual projects in lighting, costume, and scenic design. The course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "name": "TDGR 270B", + "prereqs": [ + "THGR 270A" + ], + "title": "Design Studio I: Costume Design (4)" + }, + "TDGR 270C": { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual expression. Students will work on individual projects in lighting, costume, and scenic design. The course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "name": "TDGR 270C", + "prereqs": [ + "TDGR 270A", + "TDGR 270B", + "THGR 270A", + "THGR 270B" + ], + "title": "Design Studio I: Lighting Design (4)" + }, + "TDGR 270D": { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual/auditory expression. Students will work on individual projects in sound, lighting, costume, and scenic design. This course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "name": "TDGR 270D", + "prereqs": [ + "THGR 270A", + "THGR 270B" + ], + "title": "Design Studio I: Sound Design (4)" + }, + "TDGR 271": { + "dept": "TDGR", + "description": "A seminar focusing on all aspects of the design profession, including current projects of graduate design students. The work may also include portfolio presentations, research presentations, and guest lecturers. ", + "name": "TDGR 271", + "prereqs": [], + "title": "Design Seminar (2)" + }, + "TDGR 273": { + "dept": "TDGR", + "description": "A survey/history of artistic and cultural stylistic change as embodied in clothing from early Western civilization to the contemporary period. ", + "name": "TDGR 273", + "prereqs": [], + "title": "Fashioning the Body (4)" + }, + "TDGR 274": { + "dept": "TDGR", + "description": "This course explores advanced problems in scenic design through development and critique of creative class projects and production works-in-progress. ", + "name": "TDGR 274", + "prereqs": [], + "title": "Advanced Scenic Design (4)" + }, + "TDGR 275": { + "dept": "TDGR", + "description": "Creative projects and topics in lighting design to develop the student\u2019s techniques and professional practices. Work to include studies in design research, concepts, psychophysical considerations, collaboration, professional procedures and systems, paperwork, and organization. Various scales of production projects will be addressed by the student for presentation and critique, and may be theoretical or productions in the departmental calendar. ", + "name": "TDGR 275", + "prereqs": [], + "title": "Advanced Lighting Design (4)" + }, + "TDGR 276": { + "dept": "TDGR", + "description": "Projects in costume design, emphasizing script analysis, research, conceptualization, and visual expression. Studio work includes costume rendering in various media for specific plays. ", + "name": "TDGR 276", + "prereqs": [], + "title": "Advanced Costume Design (4)" + }, + "TDGR 278": { + "dept": "TDGR", + "description": "A course designed to expose the theatre design student to a variety of specialized topics, including millinery, pattern drafting and draping, scenic painting, model making, figure drawing, drafting, fitting, rendering. Topics will vary from quarter to quarter. ", + "name": "TDGR 278", + "prereqs": [], + "title": "Special Topics in Theatre Design (1\u20136)" + }, + "TDGR 279": { + "dept": "TDGR", + "description": "This course covers the artistic, aesthetic, and practical aspects of the designers\u2019 work as they develop and execute the design toward a fully realized production. ", + "name": "TDGR 279", + "prereqs": [], + "title": "Design Practicum (4)" + }, + "TDGR 280A": { + "dept": "TDGR", + "description": "Discussion and research into the duties, responsibilities, and roles of a stage manager. Work to include studies in script analysis, communication, conflict resolution, rehearsal procedures, performance skills, style, and conceptual approach to stage management. ", + "name": "TDGR 280A", + "prereqs": [], + "title": "Stage Management 1 (4)" + }, + "TDGR 280B": { + "dept": "TDGR", + "description": "The second of the three-part introductory stage management series, this course further explores the stage manager\u2019s process, focusing on the technical rehearsal period through the opening of a production. ", + "name": "TDGR 280B", + "prereqs": [ + "TDGR 280A" + ], + "title": "Stage Management 2 (4)" + }, + "TDGR 280C": { + "dept": "TDGR", + "description": "The final course in the three-part introductory stage management series focuses on the stage manager\u2019s role once a production has opened. The course will also address topics such as new plays, touring, dance, multimedia productions, and music. ", + "name": "TDGR 280C", + "prereqs": [ + "TDGR 280B", + "TDGR 280A" + ], + "title": "Stage Management 3 (4)" + }, + "TDGR 282": { + "dept": "TDGR", + "description": "Creative projects to develop student\u2019s techniques and professional", + "name": "TDGR 282", + "prereqs": [], + "title": "Advanced Sound Design (4)" + }, + "TDGR 286": { + "dept": "TDGR", + "description": "A course for MFA students in stage management. Topics will focus on various aspects of theatre administration, and advanced stage management, including nonprofit theatre, commercial theatre, advanced problems, venues, musicals/dance, production management, theatre development, business problems, and theatre marketing. ", + "name": "TDGR 286", + "prereqs": [], + "title": "Special Topics in Stage Management (1\u20136)" + }, + "TDGR 288": { + "dept": "TDGR", + "description": "A weekly seminar in which all graduate stage managers participate. Includes discussions of problems encountered on current productions, paperwork, methodology, and production approaches. ", + "name": "TDGR 288", + "prereqs": [], + "title": "Stage Management Seminar (4)" + }, + "TDGR 289": { + "dept": "TDGR", + "description": "Seminar acquaints doctoral students of all levels with research methods, theoretical models, publishing protocol, professional preparation, and pedagogical approaches particular to theatre and performance studies. Course assignments are tailored to students\u2019 scholarly interests and progress toward degree. ", + "name": "TDGR 289", + "prereqs": [], + "title": "Introduction to Doctoral Studies (4)" + }, + "TDGR 290": { + "dept": "TDGR", + "description": "Literature and Theatre History Prior to 1900 (4)", + "name": "TDGR 290", + "prereqs": [], + "title": "Dramatic" + }, + "TDGR 291": { + "dept": "TDGR", + "description": "Literature and Theatre History 1900 to the Present (4)", + "name": "TDGR 291", + "prereqs": [], + "title": "Dramatic" + }, + "TDGR 292": { + "dept": "TDGR", + "description": "Selected material from following topics: Performance Theory, Dramatic Theory, Critical Theory, Cultural Studies. May be taken eight times as content varies. ", + "name": "TDGR 292", + "prereqs": [], + "title": "Cultural and Critical Theory (4)" + }, + "TDGR 293": { + "dept": "TDGR", + "description": "Individual or small group directed study.", + "name": "TDGR 293", + "prereqs": [], + "title": "Directed Studies (4\u201312)" + }, + "TDGR 294": { + "dept": "TDGR", + "description": "Research and preparation of doctoral dissertation.", + "name": "TDGR 294", + "prereqs": [], + "title": "Dissertation Research (4\u201312)" + }, + "TDGR 295": { + "dept": "TDGR", + "description": "This course covers the artistic, aesthetic, and practical aspects of the actors\u2019 work as they develop and execute the character/role toward a fully realized production. ", + "name": "TDGR 295", + "prereqs": [], + "title": "Acting Practicum (2)" + }, + "TDGR 296": { + "dept": "TDGR", + "description": "Taken each term by all graduate stage management students. The class focuses on the development of knowledge and skills necessary for the contemporary stage manager. Seminar format is augmented by lab work that may include departmental productions. ", + "name": "TDGR 296", + "prereqs": [], + "title": "Stage Management Practicum (4)" + }, + "TDGR 297": { + "dept": "TDGR", + "description": "Thesis research for MFA. (S/U grades only.) ", + "name": "TDGR 297", + "prereqs": [], + "title": "Thesis Research (2\u201312)" + }, + "TDGR 299": { + "dept": "TDGR", + "description": "Specific projects in theatre individually determined to meet the developing needs, interests, and abilities of MFA candidates. (S/U grades only.) ", + "name": "TDGR 299", + "prereqs": [], + "title": "Thesis Project (2\u201312)" + }, + "TDGR 500": { + "dept": "TDGR", + "description": "This course, designed to meet the needs of", + "name": "TDGR 500", + "prereqs": [], + "title": "Introduction to Apprentice Teaching (4)" + }, + "TDHD 175": { + "dept": "TDHD", + "description": "The study of dance forms from a global perspective. An analysis and understanding of international dance traditions and their connections to religion, ritual, folklore, custom, festive celebration, popular culture, art, and political movements. ", + "name": "TDHD 175", + "prereqs": [ + "TDTR 10" + ], + "title": "Cultural Perspectives on Dance (4)" + }, + "TDHD 176": { + "dept": "TDHD", + "description": "An in-depth exposure to an important topic in dance history, theory, aesthetics, and criticism. Topics vary from quarter to quarter. ", + "name": "TDHD 176", + "prereqs": [ + "TDTR 10" + ], + "title": "Dance History\u2014Special Topics (4)" + }, + "TDHD 20": { + "dept": "TDHD", + "description": "Focuses on the foundational aesthetic concepts of dance creation and performance within a diverse range of cultural contexts. Students develop descriptive, perceptual, and analytical skills. ", + "name": "TDHD 20", + "prereqs": [ + "TDTR 10" + ], + "title": "Looking at Dance (4)" + }, + "TDHD 21": { + "dept": "TDHD", + "description": "An historical overview of the most influential international dance pioneers in recent history, the cultural, political, and artistic contexts that informed the development of their work and the impact that their achievements have on the evolution of dance worldwide. ", + "name": "TDHD 21", + "prereqs": [ + "TDTR 10" + ], + "title": "Dance Pioneers of the Twentieth and Twenty-First Centuries (4)" + }, + "TDHT 10": { + "dept": "TDHT", + "description": "An introduction to the fundamental techniques of analyzing dramatic texts. Focus is on the student\u2019s ability to describe textual elements and their relationships to each other as well as on strategies for writing critically about drama. ", + "name": "TDHT 10", + "prereqs": [], + "title": "Introduction to Play Analysis (4)" + }, + "TDHT 101": { + "dept": "TDHT", + "description": "in Dramatic Literature and Theatre History (4)", + "name": "TDHT 101", + "prereqs": [], + "title": "Topics" + }, + "TDHT 103": { + "dept": "TDHT", + "description": "This course examines pivotal dramatic works in the history of professional Asian American theatre in the United States (1960s to the present). Issues include interculturalism, the crossover between minority theatres and mainstream venues, and the performance of identity. TDHT 103 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "name": "TDHT 103", + "prereqs": [], + "title": "Asian American Theatre (4)" + }, + "TDHT 104": { + "dept": "TDHT", + "description": "Continuities and changes in Italian comedy from the Romans through the Renaissance and commedia dell\u2019arte to modern comedy. No prior knowledge in theatre history is needed. ", + "name": "TDHT 104", + "prereqs": [], + "title": "Italian Comedy (4)" + }, + "TDHT 105": { + "dept": "TDHT", + "description": "Masterpieces of French farce and comedy from the seventeenth century to the twentieth century studied French theatrical and cultural contexts. Readings include plays by Moliere, Marivauz, Beaumarchais, and Feydeau. No prior knowledge in theatre history is needed. ", + "name": "TDHT 105", + "prereqs": [], + "title": "French Comedy (4)" + }, + "TDHT 107": { + "dept": "TDHT", + "description": "In this course we will examine representative plays and playwrights who write about the \u201cAmerican\u201d experience from a variety of historical periods and diverse cultural communities. Playwrights will include Glaspell, O\u2019Neill, Williams, Hansberry, Valdez, Yamauchi, Parks, Kushner, Mamet, Greenberg, Hwang, Letts, and Cruz. Theatre companies will include The Group, Provincetown Players, San Francisco Mime Troupe, East/West Players, Teatro Campesino, Spiderwoman, and Cornerstone. TDHT 107 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "name": "TDHT 107", + "prereqs": [], + "title": "American Theatre (4)" + }, + "TDHT 108": { + "dept": "TDHT", + "description": "This course examines the works of Luis Valdez, playwright, director, screenwriter, film director, and founder of the Teatro Campesino. Readings include plays and essays by Valdez and critical books and articles about this important American theatre artist. No prior knowledge in theatre history is needed. ", + "name": "TDHT 108", + "prereqs": [], + "title": "Luis Valdez (4)" + }, + "TDHT 109": { + "dept": "TDHT", + "description": "This course provides a survey of the contributions to the theatre arts made by African Americans. Analytic criteria will include the historical context in which the piece was crafted; thematic and stylistic issues; aesthetic theories and reception. TDHT 109 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "name": "TDHT 109", + "prereqs": [], + "title": "African American Theatre (4)" + }, + "TDHT 110": { + "dept": "TDHT", + "description": "Focusing on the contemporary evolution of Chicano dramatic literature, this course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant \u201cactors,\u201d plays, and documentaries for their contributions to the developing Chicano theatre movement. (Cross-listed with Ethnic Studies 132.) No prior knowledge in theatre history is needed. ", + "name": "TDHT 110", + "prereqs": [], + "title": "Chicano Dramatic Literature (4)" + }, + "TDHT 111": { + "dept": "TDHT", + "description": "Course examines the plays of leading Cuban American, Puerto Rican, and Chicano playwrights in an effort to understand the experience of these Hispanic American groups in the United States. (Cross-listed with Ethnic Studies 133.) No prior knowledge in theatre history is needed. ", + "name": "TDHT 111", + "prereqs": [], + "title": "Hispanic American Dramatic Literature (4)" + }, + "TDHT 114": { + "dept": "TDHT", + "description": "The class will explore the musical\u2019s origins, evolution, components, and innovators, with emphasis on adaptation and the roles of the director and choreographer. No prior knowledge in theatre history is needed. ", + "name": "TDHT 114", + "prereqs": [], + "title": "American Musical Theatre (4)" + }, + "TDHT 115": { + "dept": "TDHT", + "description": "Evolution of directing theory from 1850 to the present with reference to the work of internationally influential directors such as Saxe-Meiningen, Antoine, Stanislavski, Meyerhold, Brecht, and Brook, among others. No prior knowledge in theatre history is needed. ", + "name": "TDHT 115", + "prereqs": [], + "title": "History and Theory of Directing (4)" + }, + "TDHT 119": { + "dept": "TDHT", + "description": "Introduces theatre and dance students to the practice of contemporary production dramaturgy. Students learn strategies for applying the results of textual analysis and cultural research to the production process. ", + "name": "TDHT 119", + "prereqs": [], + "title": "Production Dramaturgy (4)" + }, + "TDHT 120": { + "dept": "TDHT", + "description": "This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip-hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for both TDHT 120 and ETHN 163G. ", + "name": "TDHT 120", + "prereqs": [], + "title": "Indigenous Theatre and Performance (4)" + }, + "TDHT 190": { + "dept": "TDHT", + "description": "Experience firsthand New York history as a performing arts cultural capital. In addition to studying New York performance history and literature, attend performances accompanied by lecture/discussion. Get backstage tours, meet important players, and learn how productions go from vision to reality. Program or materials fees may apply. Contact the Department of Theatre and Dance for application for TDHT 190. May be taken for credit three times. ", + "name": "TDHT 190", + "prereqs": [], + "title": "The New York Theatre and Dance Scene (4)" + }, + "TDHT 21": { + "dept": "TDHT", + "description": "and Medieval Theatre (4)", + "name": "TDHT 21", + "prereqs": [], + "title": "Ancient" + }, + "TDHT 22": { + "dept": "TDHT", + "description": "1500\u20131900 (4)", + "name": "TDHT 22", + "prereqs": [], + "title": "Theatre" + }, + "TDHT 23": { + "dept": "TDHT", + "description": "Theatre (4)", + "name": "TDHT 23", + "prereqs": [], + "title": "Twentieth-Century" + }, + "TDMV 1": { + "dept": "TDMV", + "description": "A contemporary approach to beginning-level ballet technique, principles, and terminology. Develops the body for strength, flexibility, and artistic interpretation. Emphasis on developing a foundation in movement for the continuation of ballet training. Historical origin of ballet will be discussed. May be taken for credit six times. ", + "name": "TDMV 1", + "prereqs": [], + "title": "Beginning Ballet (2)" + }, + "TDMV 11": { + "dept": "TDMV", + "description": "The study of theatrical tap dance. Various styles of tap\u2014 such as classical, rhythm, and musical theatre\u2014will be introduced. Emphasis on rhythm, coordination, timing, and theatrical style. Includes basic through intermediate tap movement. May be taken for credit three times. ", + "name": "TDMV 11", + "prereqs": [], + "title": "Theatrical Tap (2)" + }, + "TDMV 110": { + "dept": "TDMV", + "description": "Continued studio work in ballet technique at the intermediate level and terminology. Emphasis on increasing strength, flexibility, and balance, and the interpretation of classical musical phrasing. Includes proper alignment training and artistic philosophy of classical ballet. May be taken for credit six times. ", + "name": "TDMV 110", + "prereqs": [ + "TDMV 1" + ], + "title": "Intermediate Ballet (4)" + }, + "TDMV 111": { + "dept": "TDMV", + "description": "A contemporary approach to ballet technique, terminology, and performance at the advanced level. Introduces more complex choreographic variations and skills. Individual and group composition will be examined and aesthetic criticism applied. May be taken for credit six times. ", + "name": "TDMV 111", + "prereqs": [ + "TDMV 110" + ], + "title": "Advanced Ballet (4)" + }, + "TDMV 112": { + "dept": "TDMV", + "description": "Ballet for Contemporary Dance (4)", + "name": "TDMV 112", + "prereqs": [], + "title": "Advanced" + }, + "TDMV 120": { + "dept": "TDMV", + "description": "The development of contemporary dance as an expressive medium, with emphasis on technical skills at the intermediate level. Includes the principles, elements, and historical context of contemporary modern postmodern dance. May be taken for credit six times. ", + "name": "TDMV 120", + "prereqs": [ + "TDMV 2" + ], + "title": "Intermediate Contemporary Dance (4)" + }, + "TDMV 122": { + "dept": "TDMV", + "description": "The development of contemporary somatic approaches to dance as an expressive medium, emphasizing advanced technical skills, efficient athleticism, kinesthetic refinement, individual creative voice, and performance elements. Choreography and aesthetic concepts will be explored. Incorporates various principles of human movement research. May be taken for credit six times. ", + "name": "TDMV 122", + "prereqs": [ + "TDMV 120" + ], + "title": "Advanced Contemporary Dance (4)" + }, + "TDMV 123": { + "dept": "TDMV", + "description": "Students will study the practice of improvisational dancing with a partner. Students will develop skills in giving and supporting body weight, lifting, balancing, falling, rolling, and recovering fluidly together. May be taken for credit three times. ", + "name": "TDMV 123", + "prereqs": [], + "title": "Contact Improvisation (4)" + }, + "TDMV 130": { + "dept": "TDMV", + "description": "Designed to provide training in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an intermediate technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ", + "name": "TDMV 130", + "prereqs": [ + "TDMV 3", + "THDA 3" + ], + "title": "Intermediate Jazz (4)" + }, + "TDMV 133": { + "dept": "TDMV", + "description": "Further development in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an advanced technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ", + "name": "TDMV 133", + "prereqs": [ + "TDMV 130" + ], + "title": "Advanced Jazz Dance (4)" + }, + "TDMV 138": { + "dept": "TDMV", + "description": "An introduction to the basic technique of hip-hop, studied to enhance an understanding of the historical cultural content of the American form hip-hop and street dances in current choreography. May be taken for credit four times. ", + "name": "TDMV 138", + "prereqs": [], + "title": "Beginning Hip-Hop (2)" + }, + "TDMV 140": { + "dept": "TDMV", + "description": "Courses designed for the in-depth study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. May be taken for credit two times. ", + "name": "TDMV 140", + "prereqs": [], + "title": "Beginning Dances of the World (4)" + }, + "TDMV 141": { + "dept": "TDMV", + "description": "Courses designed for the advanced continuing study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. ", + "name": "TDMV 141", + "prereqs": [ + "TDMV 144", + "TDMV 143", + "THDA 132", + "TDMV 142", + "TDMV 136" + ], + "title": "Advanced Dances of the World (4)" + }, + "TDMV 142": { + "dept": "TDMV", + "description": "To develop an appreciation and understanding of the various Latin dances. Emphasis on learning basic social dance movement vocabulary, history of Latin cultures, and use of each dance as a means of social and economic expression. May be taken for credit three times. ", + "name": "TDMV 142", + "prereqs": [], + "title": "Latin Dance of the World (4)" + }, + "TDMV 143": { + "dept": "TDMV", + "description": "An introductory course that explores the history of West African cultures and diasporas through student research, oral presentation, dance movement, and performance. Contemporary African dances influenced by drum masters and performing artists from around the world are also covered. Course materials and services fees may apply. May be taken for credit three times. ", + "name": "TDMV 143", + "prereqs": [], + "title": "West African Dance (4)" + }, + "TDMV 144": { + "dept": "TDMV", + "description": "To develop an appreciation and understanding of the dances from various Asian cultures. Emphasis on learning the basic forms and movement vocabularies, their historical context, and the use of each dance as a means of cultural and artistic expression. May be taken for credit three times. ", + "name": "TDMV 144", + "prereqs": [], + "title": "Asian Dance (4)" + }, + "TDMV 146": { + "dept": "TDMV", + "description": "To develop an appreciation and understanding of the various Latin dances. Emphasis on learning intermediate social dance movement vocabulary, history of Latin cultures, and use of each dance as a means of social and economic expression. May be taken for credit two times. ", + "name": "TDMV 146", + "prereqs": [ + "TDMV 142" + ], + "title": "Intermediate Latin Dances of the World (4)" + }, + "TDMV 148": { + "dept": "TDMV", + "description": "This course is designed to build on the skills developed in TDMV 138, Hip-Hop, also deepening students\u2019 understanding of the social, political, and economic forces at work within hip-hop culture. More complex rhythms and sequencing will be introduced, and musicality will be honed through an added emphasis on freestyle expression. May be taken for credit four times. ", + "name": "TDMV 148", + "prereqs": [ + "TDMV 138" + ], + "title": "Intermediate Hip-Hop (4)" + }, + "TDMV 149": { + "dept": "TDMV", + "description": "Develops hip-hop skills at the advanced level with further studies of the social, political, and economic forces at work within hip-hop culture. Emphasis is on complex rhythms and sequencing, freestyle expression, choreography, and performance. May be taken for credit six times. ", + "name": "TDMV 149", + "prereqs": [ + "TDMV 138" + ], + "title": "Advanced Hip-Hop (4)" + }, + "TDMV 190": { + "dept": "TDMV", + "description": "An in-depth investigation of the role and aesthetics of performer/dancer in a fully staged independent project resulting in a dance performance choreographed by faculty or students. May be taken for credit two times.\u00a0", + "name": "TDMV 190", + "prereqs": [], + "title": "Major Project as Performer (4)" + }, + "TDMV 2": { + "dept": "TDMV", + "description": "Introduction to contemporary somatic approaches to dance, building fundamental technical skills, kinetic and perceptual awareness, efficiency, and artistic expression. Choreographic sequences are analyzed through time space coordination and dynamics. Movement exploration includes improvisation and composition. May be taken for credit six times. ", + "name": "TDMV 2", + "prereqs": [], + "title": "Beginning Contemporary Dance (2)" + }, + "TDMV 20": { + "dept": "TDMV", + "description": "This creative laboratory course facilitates group and individual experimentation through the study of somatic movement processes and methodologies. Students explore approaches to movement vocabulary that offer them insights into investigating their own movement generation and dance making material. May be taken for credit six times. ", + "name": "TDMV 20", + "prereqs": [], + "title": "Movement Laboratory (4)" + }, + "TDMV 3": { + "dept": "TDMV", + "description": "Introduction to the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds a beginning technical jazz vocabulary with a focus on rhythmic exercises, isolations, turns, and locomotor combinations. May be taken for credit six times. ", + "name": "TDMV 3", + "prereqs": [], + "title": "Beginning Jazz (2)" + }, + "TDMV 5": { + "dept": "TDMV", + "description": "An introduction to the physical practice of yoga. A detailed investigation into the ancient somatic practice of energetically connecting the mind and body through kinesthetic and sensory awareness and how this supports and informs dance practices. May be taken for credit six times. ", + "name": "TDMV 5", + "prereqs": [], + "title": "Yoga for Dance (2)" + }, + "TDPF 160": { + "dept": "TDPF", + "description": "in Performance\u2014Fall Production (2\u20134)", + "name": "TDPF 160", + "prereqs": [], + "title": "Studies" + }, + "TDPF 161": { + "dept": "TDPF", + "description": "in Performance\u2014Winter Production (2\u20134)", + "name": "TDPF 161", + "prereqs": [], + "title": "Studies" + }, + "TDPF 162": { + "dept": "TDPF", + "description": "(2\u20134)", + "name": "TDPF 162", + "prereqs": [], + "title": "Studies in Performance Spring Production" + }, + "TDPF 163": { + "dept": "TDPF", + "description": "The study and aesthetic examination of major choreographic works by dance faculty or distinguished guest artists. Students will experience the creative process, staging, production, and performance of a complete dance work in conjunction with a conceptual study of its form and content. Audition is required. May be taken for credit four times. ", + "name": "TDPF 163", + "prereqs": [ + "TDPF 161", + "TDPF 160", + "TDPF 162" + ], + "title": "Dance Repertory (1\u20134)" + }, + "TDPF 190": { + "dept": "TDPF", + "description": "Students develop skills in directing and producing an independent staged dance concert/production in various settings. May be taken for credit two times.\u00a0", + "name": "TDPF 190", + "prereqs": [], + "title": "Major Project/Dance Production (4)" + }, + "TDPR 102": { + "dept": "TDPR", + "description": "A production performance-oriented course that continues the development of costume, lighting, scenery, or sound production and introduces greater responsibilities in the laboratory format. Students serve as crew heads on major departmental productions or creative projects. May be taken for credit two times. ", + "name": "TDPR 102", + "prereqs": [ + "TDPR 5", + "TDPR 1", + "TDPR 2", + "TDPR 3" + ], + "title": "Advanced Theatre Practicum (4\u20136)" + }, + "TDPR 104": { + "dept": "TDPR", + "description": "Practicum in Stage Management (4\u20136)", + "name": "TDPR 104", + "prereqs": [], + "title": "Advanced" + }, + "TDPR 6": { + "dept": "TDPR", + "description": "A production oriented course that introduces the student to technical fundamentals of costumes, scenery, lighting, and sound for the theatre. Students will be assigned to participate on a crew for a fully mounted theatrical production supported by the department. ", + "name": "TDPR 6", + "prereqs": [], + "title": "Theatre Practicum (4\u20136)" + }, + "TDPW 1": { + "dept": "TDPW", + "description": "Beginning workshop in the fundamentals of playwriting. Students discuss material from a workbook that elucidates the basic principles of playwriting, do exercises designed to help them put those principles into creative practice, and are guided through the various stages of the playwriting process that culminate with in-class readings of the short plays they have completed. ", + "name": "TDPW 1", + "prereqs": [], + "title": "Introduction to Playwriting (4)" + }, + "TDPW 101": { + "dept": "TDPW", + "description": "A workshop where students present their plays at various stages of development for group analysis and discussion. Students write a thirty-minute play that culminates in a reading. Also includes writing exercises designed to stimulate imagination and develop writing techniques. May be taken for credit two times. ", + "name": "TDPW 101", + "prereqs": [ + "TDPW 1" + ], + "title": "Intermediate Playwriting (4)" + }, + "TDPW 102": { + "dept": "TDPW", + "description": "Advanced workshop where students study the full-length play structure and begin work on a long play. Students present their work at various stags of development for group discussion and analysis. May be taken for credit two times. ", + "name": "TDPW 102", + "prereqs": [ + "TDPW 101" + ], + "title": "Advanced Playwriting (4)" + }, + "TDPW 104": { + "dept": "TDPW", + "description": "Basic principles of screenwriting using scenario composition, plot points, character study, story conflict, with emphasis on visual action and strong dramatic movement. May be taken for credit two times. ", + "name": "TDPW 104", + "prereqs": [ + "TDPW 1" + ], + "title": "Screenwriting (4)" + }, + "TDPW 190": { + "dept": "TDPW", + "description": "Project in Playwriting/Screenwriting (4)", + "name": "TDPW 190", + "prereqs": [], + "title": "Major" + }, + "TDTR 10": { + "dept": "TDTR", + "description": "An overview of dance, examining its social and cultural history and its evolution as an art form. Focus is on dance and its many genres as an expressive medium and form of communication. ", + "name": "TDTR 10", + "prereqs": [], + "title": "Introduction to Dance (4)" + }, + "TDTR 104": { + "dept": "TDTR", + "description": "The study of the theoretical aspects of dance education, including an analysis of movement concepts for all ages. Development of basic technique training in all forms, curriculum planning, social awareness, and problem solving. Fundamental elements of cognitive and kinetic learning skills. ", + "name": "TDTR 104", + "prereqs": [], + "title": "Dance Theory and Pedagogy (4)" + }, + "TDTR 15": { + "dept": "TDTR", + "description": "An overview and analysis of movement theory systems that offer approaches that improve movement quality, prevent injuries, aid in habilitation, develop mental focus and kinesthetic control, establish a positive body language, and develop vocabulary for creative research. ", + "name": "TDTR 15", + "prereqs": [ + "TDTR 10" + ], + "title": "Dance Movement and Analysis (4)" + }, + "TDTR 20": { + "dept": "TDTR", + "description": "The study of dance on film and video, the evolution of the creation, filming, editing, and production of dance for the camera. Major dance film works will be analyzed and discussed from choreography in the movies to dances made for film. ", + "name": "TDTR 20", + "prereqs": [ + "TDTR 10" + ], + "title": "Dance on Film (4)" + }, + "TMC 1": { + "dept": "TMC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "TMC 1", + "prereqs": [], + "title": "First Year Experience (2)" + }, + "TMC 15": { + "dept": "TMC", + "description": "This course is designed to study, discuss, and analyze the history and current role of public service in the United States. Students will be introduced to the different roles held by the three sectors of the American economic structure (government, business, and nonprofit/public service) with opportunity to provide a critical analysis of those roles within American society.", + "name": "TMC 15", + "prereqs": [], + "title": "Introduction to Public Service in America (4)" + }, + "TMC 198": { + "dept": "TMC", + "description": "College Directed Group Studies (4)", + "name": "TMC 198", + "prereqs": [], + "title": "Thurgood Marshall" + }, + "TMC 199": { + "dept": "TMC", + "description": "Individual, independent research, or creative work intended to satisfy Marshall College graduation requirement. Designated for Marshall College students, topics are supervised by Marshall faculty in association with the honors seminar and honors projects. A written application describing the project is required. See Office of the Provost. P/NP grades only. ", + "name": "TMC 199", + "prereqs": [], + "title": "Marshall College Special Project (1\u20134)" + }, + "TMC 2": { + "dept": "TMC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "TMC 2", + "prereqs": [], + "title": "Transfer Year Experience (2)" + }, + "TMC 20": { + "dept": "TMC", + "description": "Weekly seminar conducted by UC San Diego faculty and distinguished guest lecturers on topics related to the core curriculum: diversity, justice, and imagination. P/NP grades only.", + "name": "TMC 20", + "prereqs": [], + "title": "Thurgood Marshall College Honors Seminar (1)" + }, + "TMC 90": { + "dept": "TMC", + "description": "These seminars are designed to expose undergraduate students, especially freshmen and sophomores, to exciting research conducted by UC San Diego faculty. P/NP grades only. ", + "name": "TMC 90", + "prereqs": [], + "title": "Undergraduate Seminar (1)" + }, + "TWS": { + "dept": "TWS", + "description": "21-22-23-24-25-26. Third World Literatures (4-4-4-4-4-4)", + "name": "TWS", + "prereqs": [], + "title": "" + }, + "TWS 132": { + "dept": "TWS", + "description": "This course will investigate novelistic and dramatic treatments of European society in the era of nineteenth-century imperialism, Third World societies under the impact of colonialism, and the position of national minorities inside the United States to the present day. Attention will center on the interplay between the aesthetic merits and social-historical-philosophical content of the works read.", + "name": "TWS 132", + "prereqs": [], + "title": "Literature and Third World Societies (4)" + }, + "TWS 190": { + "dept": "TWS", + "description": "Seminars will be organized on the basis of topics with readings, discussions, and papers. Specific subjects to be covered will change each quarter depending on particular interest of instructors or students. May be repeated for credit.", + "name": "TWS 190", + "prereqs": [], + "title": "Undergraduate Seminars (4)" + }, + "TWS 197": { + "dept": "TWS", + "description": "In an attempt to explore and study some unique processes and aspects of community life, students will engage in research in field settings. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies.", + "name": "TWS 197", + "prereqs": [], + "title": "Fieldwork (4)" + }, + "TWS 198": { + "dept": "TWS", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. ", + "name": "TWS 198", + "prereqs": [], + "title": "Directed Group Studies (2 or 4)" + }, + "TWS 199": { + "dept": "TWS", + "description": "Tutorial, individual guided reading and research projects (to be arranged between student and instructor) in an area not normally covered in courses currently being offered in the department. (P/NP grades only.) ", + "name": "TWS 199", + "prereqs": [], + "title": "Independent Study (2 or 4)" + }, + "TWS 21-22-23-24-25-26": { + "dept": "TWS", + "description": "Third World Literatures (4-4-4-4-4-4)", + "name": "TWS 21-22-23-24-25-26", + "prereqs": [], + "title": "" + }, + "USP 1": { + "dept": "USP", + "description": "This course charts the development of urban communities across the United States both temporally and geographically. It examines the patterns of cleavage, conflict, convergence of interest, and consensus that have structured urban life. Social, cultural, and economic forces will be analyzed for the roles they have played in shaping the diverse communities of America\u2019s cities.", + "name": "USP 1", + "prereqs": [], + "title": "History of US Urban Communities (4)" + }, + "USP 100": { + "dept": "USP", + "description": "This course is designed to provide an introduction to the fundamentals of urban planning. It surveys important topics in urban planning, including economic development, urban design, transportation, environmental planning, housing, and the history of urban planning. ", + "name": "USP 100", + "prereqs": [], + "title": "Introduction to Urban Planning (4)" + }, + "USP 101": { + "dept": "USP", + "description": "(Same as Political Science 160AA.) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ", + "name": "USP 101", + "prereqs": [], + "title": "Introduction to Policy Analysis (4)" + }, + "USP 102": { + "dept": "USP", + "description": "(Same as Economics 135.) Economic analysis of why and where cities develop, problems they cause, and public policies to deal with these problems. Determination of urban land rent/use, reasons for suburbanization. Transportation and congestion in cities, zoning, poverty and housing, urban local government. ", + "name": "USP 102", + "prereqs": [ + "ECON 1", + "MATH 20A", + "MATH 10A", + "ECON 1A", + "ECON 1B" + ], + "title": "Urban Economics (4)" + }, + "USP 104": { + "dept": "USP", + "description": "(Same as ETHN 105.) This course will examine the city as a crucible of ethnic identity exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present. ", + "name": "USP 104", + "prereqs": [], + "title": "Ethnic Diversity and the City (4)" + }, + "USP 105": { + "dept": "USP", + "description": "(Same as Sociology 153.) Introduces students", + "name": "USP 105", + "prereqs": [], + "title": "Urban Sociology (4)" + }, + "USP 106": { + "dept": "USP", + "description": "(Same as HIUS 129.) This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation. ", + "name": "USP 106", + "prereqs": [], + "title": "The History of Race and Ethnicity in American Cities (4)" + }, + "USP 107": { + "dept": "USP", + "description": "(Same as POLI 102E.) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the \u201cnew\u201d politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race. ", + "name": "USP 107", + "prereqs": [], + "title": "Urban Politics (4)" + }, + "USP 109": { + "dept": "USP", + "description": "(Same as POLI 103A.) This survey course explores six topics: 1) the state\u2019s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California\u2019s role in national politics. ", + "name": "USP 109", + "prereqs": [], + "title": "California Government and Politics (4)" + }, + "USP 110": { + "dept": "USP", + "description": "(Same as POLI 102J.) Building upon the introductory urban politics course, the advanced topics course explores issues such as community power, minority empowerment, and the politics of growth. A research paper is required. Students wishing to fulfill the paper requirement with field research should enroll in the subsequent Political Science 102JJ course offered Summer Session II. ", + "name": "USP 110", + "prereqs": [], + "title": "Advanced Topics in Urban Politics (4)" + }, + "USP 111": { + "dept": "USP", + "description": "(Same as POLI 102JJ.) To be taken with the approval of the Political Science 102J instructor, this course allows students to do original field research on topics in urban politics. This course is offered in Summer Session II subsequent to a spring 102J course. May not be used to fulfill any major or minor requirements in politics science or urban studies and planning. ", + "name": "USP 111", + "prereqs": [ + "??? Science 102J", + "USP 110", + "USP 110P" + ], + "title": "Field Research in Urban Politics (4)" + }, + "USP 113": { + "dept": "USP", + "description": "(Same as POLI 103B.) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ", + "name": "USP 113", + "prereqs": [], + "title": "Politics and Policymaking in Los Angeles (4)" + }, + "USP 115": { + "dept": "USP", + "description": "(Same as POLI 103C.) This course examines how major policy decisions are made in San Diego. In analyses the region\u2019s power structure (including the roles of nongovernmental organizations and the media), governance systems and reform efforts, and the politics of major infrastructure projects. ", + "name": "USP 115", + "prereqs": [], + "title": "Politics and Policymaking in San Diego (4)" + }, + "USP 116": { + "dept": "USP", + "description": "Local Government: Finance and Administration (4)", + "name": "USP 116", + "prereqs": [], + "title": "California" + }, + "USP 120": { + "dept": "USP", + "description": "This course will explore", + "name": "USP 120", + "prereqs": [], + "title": "Urban Planning, Infrastructure, and Real Estate (4)" + }, + "USP 121": { + "dept": "USP", + "description": "Examination of regulation of real estate development, as it affects landowners, developers and others private sector actors. Includes underlying public policies, establishment and enforcement of laws and regulations, application of regulations to individual projects, and political considerations in implementing regulations. ", + "name": "USP 121", + "prereqs": [], + "title": "Real Estate Law and Regulation (4)" + }, + "USP 122": { + "dept": "USP", + "description": "Planning, Policymaking, and Law (4)", + "name": "USP 122", + "prereqs": [], + "title": "Redevelopment" + }, + "USP 123": { + "dept": "USP", + "description": "Examination of the intersection of law and policy, in the form of processes and institutions, as they affect decision-making and program implementation in urban planning and design. Opportunities and constraints in making law and policy. Application to specific case examples. ", + "name": "USP 123", + "prereqs": [], + "title": "Law, Planning, and Public Policy (4)" + }, + "USP 124": { + "dept": "USP", + "description": "Introduction to land use planning in the United States: zoning and subdivision, regulation, growth management, farmland preservation, environmental protection, and comprehensive planning. ", + "name": "USP 124", + "prereqs": [], + "title": "Land Use Planning (4)" + }, + "USP 125": { + "dept": "USP", + "description": "Research methods are tools for improving knowledge. Beginning with a research question, students will learn to select appropriate methods for sampling, collecting, and analyzing data to improve their research activities and research results. ", + "name": "USP 125", + "prereqs": [], + "title": "The Design of Social Research (4)" + }, + "USP 126": { + "dept": "USP", + "description": "This course evaluates alternative land use, regulatory, and land transfer approaches to the US regime. Considered are overseas reform models for comprehensive land use and resource management and their effects on environmental justice, resource sustainability, and management efficiency and innovation. ", + "name": "USP 126", + "prereqs": [], + "title": "Comparative Land Use and Resource Management (4)" + }, + "USP 129": { + "dept": "USP", + "description": "Studying Racial and Ethnic Communities (4)", + "name": "USP 129", + "prereqs": [], + "title": "Research Methods:" + }, + "USP 130": { + "dept": "USP", + "description": "(Same as ETHN 107.) This is a research course examining social, economic, and political issues in ethnic and racial communities through fieldwork. Topics are examined through a variety of research methods that may include interviews and archival, library, and historical research. ", + "name": "USP 130", + "prereqs": [], + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + "USP 131": { + "dept": "USP", + "description": "Craft breweries are emerging as a significant part of the economy in US cities. This course examines the rise and impact of craft breweries in city life with a focus on tourism, urban culture, local job growth, and urban revitalization. ", + "name": "USP 131", + "prereqs": [], + "title": "Culture, Tourism, and the Urban Economy: Case Studies of Craft Breweries" + }, + "USP 132": { + "dept": "USP", + "description": "(Same as ETHN 188.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived. ", + "name": "USP 132", + "prereqs": [], + "title": "African Americans, Religion, and the City (4)" + }, + "USP 133": { + "dept": "USP", + "description": "(Same as SOCI 152.) Primary focus on understanding", + "name": "USP 133", + "prereqs": [], + "title": "Social Inequality and Public Policy (4)" + }, + "USP 134": { + "dept": "USP", + "description": "This course examines the integration of youth development and community development in theory and practice as a strategy for addressing adultism. Analyze cases through a cultural lens where local, national, and international youth movements have helped make community development more responsive, inclusive, and culturally sensitive. ", + "name": "USP 134", + "prereqs": [], + "title": "Community Youth Development (4)" + }, + "USP 135": { + "dept": "USP", + "description": "Latina Immigrant Workers in the Global Economy (4)", + "name": "USP 135", + "prereqs": [], + "title": "Asian and" + }, + "USP 136": { + "dept": "USP", + "description": "Provides an overview of collaborative leadership and considers consensus organizing as both a tactical and strategic approach to effective community building and development. Examines how various communities have approached collaborative leadership, consensus organizing, and community building. ", + "name": "USP 136", + "prereqs": [], + "title": "Collaborative Community Leadership (4)" + }, + "USP 137": { + "dept": "USP", + "description": "Community Development Policy and Practice (4)", + "name": "USP 137", + "prereqs": [], + "title": "Housing and" + }, + "USP 138": { + "dept": "USP", + "description": "This course focuses on strategies that policy makers and planners use in their efforts to foster healthy economies. Topics include theories of urban economic development, analytical techniques for describing urban economies, and the politics and planning of economic development. ", + "name": "USP 138", + "prereqs": [], + "title": "Urban Economic Development (4)" + }, + "USP 139": { + "dept": "USP", + "description": "This course explores emerging trends in urban design and economic development and their interrelationship. The course focuses on selected community projects and also considers urban governance structures. Various research methods will be applied to urban problems. ", + "name": "USP 139", + "prereqs": [], + "title": "Urban Design and Economic Development (4)" + }, + "USP 141A": { + "dept": "USP", + "description": "This course introduces students to major concepts, demographic trends, and the diversity of the aging experience. Through site visits, community-based research, and interactions with elders, students will understand the social and structural determinants of health and well-being across the life course. ", + "name": "USP 141A", + "prereqs": [], + "title": "Life Course Scholars Research and Core Fundamentals" + }, + "USP 141B": { + "dept": "USP", + "description": "In this course, students deepen and apply their knowledge of policy, research, practice, and diverse perspectives on aging. Students participate in collaborative learning and research with local elders, and develop and implement a capstone \"healthy aging project\" in the community. ", + "name": "USP 141B", + "prereqs": [ + "USP 141A" + ], + "title": "Life Course Scholars Capstone Project" + }, + "USP 143": { + "dept": "USP", + "description": "This course will provide an overview of the organization of health care within the context of the community with emphasis on the political, social, and cultural influences. It is concerned with the structure, objectives, and trends of major health and health-related programs in the United States to include sponsorship, financing, training and utilization of health personnel. ", + "name": "USP 143", + "prereqs": [], + "title": "The US Health-Care System (4)" + }, + "USP 144": { + "dept": "USP", + "description": "This course will analyze needs of populations, highlighting current major public health problems such as chronic and communicable diseases, environmental hazards of diseases, psychiatric problems and additional diseases, new social mores affecting health maintenance, consumer health awareness and health practices, special needs of economically and socially disadvantaged populations. The focus is on selected areas of public and environmental health, namely: epidemiology, preventive services in family health, communicable and chronic disease control, and occupational health. ", + "name": "USP 144", + "prereqs": [], + "title": "Environmental and Preventive Health Issues (4)" + }, + "USP 145": { + "dept": "USP", + "description": "This course will provide a brief introduction to the nature and problems of aging, with emphasis on socioeconomic and health status; determinants of priorities of social and health policies will be examined through analysis of the structure and organization of selected programs for the elderly. Field visits will constitute part of the course. ", + "name": "USP 145", + "prereqs": [], + "title": "Aging\u2014Social and Health Policy Issues (4)" + }, + "USP 146": { + "dept": "USP", + "description": "This course examines urban design\u2019s effects on physical activity. In field experience settings, students will learn about survey, accelerometer, observation, and GIS methods. Quality control, use of protocols, relevance to all ages, and international applications will also be emphasized. ", + "name": "USP 146", + "prereqs": [], + "title": "Research Methods for Built Environment and Active Living (4)" + }, + "USP 147": { + "dept": "USP", + "description": "in Health-Care Programs/Poor and Underserved Population (4)", + "name": "USP 147", + "prereqs": [], + "title": "Case Studies" + }, + "USP 149": { + "dept": "USP", + "description": "This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes. ", + "name": "USP 149", + "prereqs": [], + "title": "Madness and Urbanization (4)" + }, + "USP 15": { + "dept": "USP", + "description": "This course explores how economics contributes to understanding and solving urban problems using a \u201clearn by doing\u201d approach. Economic analysis will be applied to several important issues that planners and developers must deal with, such as land markets, housing, and zoning.", + "name": "USP 15", + "prereqs": [], + "title": "Applied Urban Economics for Planning and Development (4)" + }, + "USP 150": { + "dept": "USP", + "description": "This course reviews the legal issues, processes, and institutions involved in real estate. Topics include principles of real property law, legislative and judicial institutions, land use and environmental regulation, financial instruments, property transactions, and forms of investment and development entities. ", + "name": "USP 150", + "prereqs": [], + "title": "Real Estate and Development Law and Regulation (4)" + }, + "USP 151": { + "dept": "USP", + "description": "This course covers the methods and procedures utilized in development from inception to completion. Topics include initial planning, project feasibility and decision-making, partnerships, financing, design, entitlement and approvals, site acquisition, construction management, project completion, leasing, and asset management. ", + "name": "USP 151", + "prereqs": [], + "title": "Real Estate Planning and Development (4)" + }, + "USP 152": { + "dept": "USP", + "description": "This course investigates the institutions, instruments, and structures by which investment in real estate is financed. It reviews capital markets, the sources and uses of real estate funds, and the role of government in real estate finance. ", + "name": "USP 152", + "prereqs": [], + "title": "Real Estate Development Finance and Investment (4)" + }, + "USP 153": { + "dept": "USP", + "description": "This course examines the analysis of demand for real estate products and site-specific real estate development projects. Consideration is given to relevant factors such as economic change, social attitudes, and changing laws. ", + "name": "USP 153", + "prereqs": [], + "title": "Real Estate and Development Market Analysis (4)" + }, + "USP 154": { + "dept": "USP", + "description": "(Same as Political Science 111B.) Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally. ", + "name": "USP 154", + "prereqs": [], + "title": "Global Justice in Theory and Action (4)" + }, + "USP 155": { + "dept": "USP", + "description": "This course compares real estate markets in Asia, Europe, the Middle East, and Latin America. It explores the factors that affect these regions\u2019 real estate economies including finance in city systems, emerging markets, development trends, demographic shifts, and urban planning. ", + "name": "USP 155", + "prereqs": [], + "title": "Real Estate Development in Global and Comparative Perspective (4)" + }, + "USP 168": { + "dept": "USP", + "description": "(Same as HIUS 117.) This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification. ", + "name": "USP 168", + "prereqs": [], + "title": "History of Los Angeles (4)" + }, + "USP 170": { + "dept": "USP", + "description": "This course will explore the different factors and processes that shape a sustainable city. Contemporary green planning techniques and values will be evaluated. The course will also discuss planning, designing, and implementation of sustainable facilities that will reduce sprawl. ", + "name": "USP 170", + "prereqs": [], + "title": "Sustainable Planning (4)" + }, + "USP 171": { + "dept": "USP", + "description": "Sustainable development is a concept invoked by an increasingly wide range of scholars, activists, and organizations dedicated to promoting environmentally sound approaches to economic development. This course critically examines the diverse, often contradictory, interests in sustainability. It provides a transdisciplinary overview of emergent theories and practices. ", + "name": "USP 171", + "prereqs": [], + "title": "Sustainable Development (4)" + }, + "USP 172": { + "dept": "USP", + "description": "This course examines the use of graphic techniques and tools to explain research, data analysis, and convey ideas with a focus on the built environment. Visual communication for planners/designers using traditional graphic media, electronic media, and visualization are explored. ", + "name": "USP 172", + "prereqs": [], + "title": "Graphics, Visual Communication, and Urban Information" + }, + "USP 173": { + "dept": "USP", + "description": "The analysis of the evolution of city designs over time; study of the forces that influence the form and content of a city: why cities change; comparison of urban planning and architecture in Europe and the United States. ", + "name": "USP 173", + "prereqs": [], + "title": "History of Urban Planning and Design (4)" + }, + "USP 174": { + "dept": "USP", + "description": "and Planning Reconsidered (4)", + "name": "USP 174", + "prereqs": [], + "title": "Regional Governance" + }, + "USP 175": { + "dept": "USP", + "description": "Introduction to the theory and practice of context-sensitive site analysis, including site selection and programming, site inventory and analysis, and conceptual design. Demonstrates uses of GIS-based sketch planning tools for suitability analysis and project visualization in real world settings. ", + "name": "USP 175", + "prereqs": [], + "title": "Site Analysis: Opportunities and Constraints (4)" + }, + "USP 176": { + "dept": "USP", + "description": "This course explores governance and planning challenges in the California/Baja California binational region. What are the roles of federal, state, and local governments in addressing issues of transportation, land use, water/wastewater management, and safety and security? ", + "name": "USP 176", + "prereqs": [], + "title": "Binational Regional Governance (4)" + }, + "USP 177": { + "dept": "USP", + "description": "This course is designed to introduce the student to the theory and practice of urban design, the form of the built environment, and how it is created. There is an emphasis on the development within a larger urban context. ", + "name": "USP 177", + "prereqs": [], + "title": "Urban Design Practicum (4)" + }, + "USP 179": { + "dept": "USP", + "description": "Roles of the urban designer, preparing schematic proposals and performance statements, identifying opportunities for and constraints on designers. Each student will prepare a practical exercise in urban design using various urban design methods. ", + "name": "USP 179", + "prereqs": [], + "title": "Urban Design, Theory, and Practice (4)" + }, + "USP 180": { + "dept": "USP", + "description": "Introduction to the history and current state of urban transportation planning, including the relationship between transportation and urban form; role of automotive, mass transit, and alternative modes; methods for transportation systems analysis; decision-making, regulatory, and financing mechanisms; and public attitudes. ", + "name": "USP 180", + "prereqs": [], + "title": "Transportation Planning (4)" + }, + "USP 181": { + "dept": "USP", + "description": "Livable cities rely on balanced transportation systems that can mitigate the negative impacts of car-oriented environment and society. This course will explore the role of public transit in creating a balanced transportation system. A variety of public transportation systems will be analyzed. ", + "name": "USP 181", + "prereqs": [], + "title": "Public Transportation (4)" + }, + "USP 183": { + "dept": "USP", + "description": "(Same as SOCI 183.) How does where you grow up affect where you end up? This course explores \u201cwho gets what where and why,\u201d by examining spatial inequalities in life chances across regions, rural and urban communities, and divergent local economies in the U.S. We will \u201cplace\u201d places within their economic, socio-cultural, and historical contexts. Readings and exercises will uncover spatial variation in inequalities by race/ethnicity, immigrant status, gender, class, and LGBTQIA status that national averages obscure. Students may not receive credit for SOCI 183 and USP 183. ", + "name": "USP 183", + "prereqs": [], + "title": "The Geography of American Opportunity (4)" + }, + "USP 185A": { + "dept": "USP", + "description": "This course introduces students to the challenges of developing and financing real property. Students work in teams to prepare a proposal for a complete site-specific project that incorporates real estate finance, development, and design. ", + "name": "USP 185A", + "prereqs": [], + "title": "Real Estate Finance and Development Studio I (4)" + }, + "USP 185B": { + "dept": "USP", + "description": "An intensive studio-based experience that culminates in a completed group project that analyzes, evaluates, and presents a site-specific real estate finance and development proposal. The final project includes market analysis, pro forma financial analysis, site analysis, and site design. ", + "name": "USP 185B", + "prereqs": [ + "USP 185A" + ], + "title": "Real Estate Finance and Development Studio II (4)" + }, + "USP 186": { + "dept": "USP", + "description": "Introduces students to the theory and practice of social research including the challenges of writing a scholarly proposal. Students are required to complete one hundred hours of an internship experience while critically examining the relations between social science and society. ", + "name": "USP 186", + "prereqs": [], + "title": "Senior Sequence Research Proposal (6)" + }, + "USP 187": { + "dept": "USP", + "description": "An intensive research, internship, and writing experience that culminates in an original senior research project. Students learn about the theoretical, ethical, and technical challenges of scholarly research and publication. ", + "name": "USP 187", + "prereqs": [ + "USP 186" + ], + "title": "Senior Sequence Research Project (6)" + }, + "USP 189": { + "dept": "USP", + "description": "An undergraduate course designed to cover various aspects of Urban Planning. May be taken for credit up to two times. ", + "name": "USP 189", + "prereqs": [], + "title": "Special Topics in Urban Planning (4)" + }, + "USP 190": { + "dept": "USP", + "description": "Each student enrolled will be required to write an honors essay, a substantial research paper on a current urban policy issue, under the supervision of a member of the faculty. Most often the essay will be based on their previous fieldwork courses and internship. This essay and other written exercises, as well as class participation, will be the basis of the final grade for the course. The seminar will rotate from year to year among the faculty in urban studies and planning. ", + "name": "USP 190", + "prereqs": [ + "GPA 3", + "USP 186", + "USP 187" + ], + "title": "Senior Honors Seminar (4)" + }, + "USP 191": { + "dept": "USP", + "description": "Introduction to Geographic Information Systems and using GIS to make decisions: acquiring data and organizing data in useful formats, demographic mapping, geocoding. Selected exercises examine crime data, political campaigns, banking and environmental planning, patterns of bank lending and finance. ", + "name": "USP 191", + "prereqs": [], + "title": "GIS for Urban and Community Planning (4)" + }, + "USP 193": { + "dept": "USP", + "description": "Using the San Diego region as a case study, students will be introduced to the process of collecting, evaluating, and presenting urban and regional data using a variety of methods, including aggregate data analysis, historical research, and ethnography. ", + "name": "USP 193", + "prereqs": [], + "title": "San Diego Community Research (4)" + }, + "USP 194": { + "dept": "USP", + "description": "(Same as Cognitive Science 194, Communication 194, Earth Science 194, History 193, Political Science 194, Sociology E/194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "name": "USP 194", + "prereqs": [], + "title": "Research Seminar in Washington, DC (4)" + }, + "USP 195": { + "dept": "USP", + "description": "Introduction to teaching activities associated with course. Responsibilities include preparing reading materials assigned by the instructor, attending course lectures, meeting at least one hour per week with the instructor, assisting instructor in grading, and preparing a summary report to the instructor. ", + "name": "USP 195", + "prereqs": [], + "title": "Teaching Apprentice\u2014Undergraduate (2\u20134)" + }, + "USP 198": { + "dept": "USP", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. ", + "name": "USP 198", + "prereqs": [], + "title": "Directed Group Study (2\u20134)" + }, + "USP 199": { + "dept": "USP", + "description": "Reading and research programs and field-study projects to be arranged between student and instructor, depending on the student\u2019s needs and the instructor\u2019s advice in terms of these needs. ", + "name": "USP 199", + "prereqs": [], + "title": "Independent Study (2\u20134)" + }, + "USP 2": { + "dept": "USP", + "description": "Examines cities and the environment in a global context. Emphasizes how the world\u2019s economy and the earth\u2019s ecology are increasingly interdependent. Focuses on biophysical and ethicosocial concerns rooted in the contemporary division of labor among cities, Third World industrialization, and the post-industrial transformation of US cities.", + "name": "USP 2", + "prereqs": [], + "title": "Urban World System (4)" + }, + "USP 3": { + "dept": "USP", + "description": "An introduction to the sociological study of cities, focusing on urban society in the United States. Students in the course will examine theoretical approaches to the study of urban life; social stratification in the city; urban social and cultural systems\u2013ethnic communities, suburbia, family life in the city, religion, art, and leisure.", + "name": "USP 3", + "prereqs": [], + "title": "The City and Social Theory (4)" + }, + "USP 5": { + "dept": "USP", + "description": "This course introduces students to the terminology, concepts, and basic practices of real estate finance and development. It surveys real estate law, appraisal, marketing, brokerage, management, finance, investment analysis, and taxation.", + "name": "USP 5", + "prereqs": [], + "title": "Introduction to the Real Estate and Development Process (4)" + }, + "VIS 1": { + "dept": "VIS", + "description": "Art Making: Two-Dimensional Practices (4)", + "name": "VIS 1", + "prereqs": [], + "title": "Introduction to" + }, + "VIS 10": { + "dept": "VIS", + "description": "Designed around presentations by visiting artists, critics, and scientists involved with contemporary issues related to computer arts and design. Lectures by the instructor and contextual readings provide background material for the visitor presentations. Program or materials fees may apply. Students may not receive credit for both VIS 10 and ICAM 110. This course is offered only one time each year. ", + "name": "VIS 10", + "prereqs": [], + "title": "Computing in the Arts Lecture Series (4)" + }, + "VIS 100": { + "dept": "VIS", + "description": "This course is about the expansion of contemporary visual arts practice into a field of environmental, architectural, and urban sites. It foregrounds public engagement and political inquiry, explores new forms of research and community-based knowledge production, and develops strategies for visualizing the dynamics of contemporary urban life. ", + "name": "VIS 100", + "prereqs": [], + "title": "Introduction to Public Culture (4)" + }, + "VIS 100A": { + "dept": "VIS", + "description": "This course will explore design strategies that engage today\u2019s shifting public domain structures, situating the problematic of \u201cthe public\u201d and the politics of public sphere as sites of investigation, and speculating new interfaces between individuals, collectives, and institutions in coproducing more critical and inclusive forms of public space and culture. ", + "name": "VIS 100A", + "prereqs": [ + "VIS 100" + ], + "title": "Design of Public Culture (4)" + }, + "VIS 101": { + "dept": "VIS", + "description": "This course examines expanded meanings of the urban and the ecological into new conceptual zones for artistic practice and research, introducing urbanization as complex and transformative processes of interrelated cultural, socioeconomic, political, and environmental conditions, whose material and informational flows are generative of new interpretations of ecology. ", + "name": "VIS 101", + "prereqs": [ + "VIS 30", + "VIS 41" + ], + "title": "Introduction to Urban Ecologies (4)" + }, + "VIS 101A": { + "dept": "VIS", + "description": "This course will explore design strategies that engage peoples\u2019 shifting geopolitical boundaries, bioregional and ecosystems, urban structures and landscapes, and recontextualize the city as a site of investigation by developing new ways of intervening into expanded notions of urban space, including virtual communities and new speculations of urbanity. ", + "name": "VIS 101A", + "prereqs": [ + "VIS 101" + ], + "title": "Designing Urban Ecologies (4)" + }, + "VIS 102": { + "dept": "VIS", + "description": "Introduction to urban inequality across the Tijuana\u2013San Diego region, and the border flows that make the marginalized neighborhoods within this geography of conflict into sites of socioeconomic and cultural productivity, laboratories to rethink the gap between wealth and poverty. ", + "name": "VIS 102", + "prereqs": [], + "title": "Cross-Border Urbanizations (4)" + }, + "VIS 105A": { + "dept": "VIS", + "description": "A studio course in beginning drawing covering basic drawing and composition. These concepts will be introduced by the use of models, still life, landscapes, and conceptual projects. ", + "name": "VIS 105A", + "prereqs": [ + "VIS 80" + ], + "title": "Drawing: Representing the Subject (4)" + }, + "VIS 105B": { + "dept": "VIS", + "description": "A continuation of VIS 105A. A studio course in which the student will investigate a wider variety of technical and conceptual issues involved in contemporary art practice related to drawing. ", + "name": "VIS 105B", + "prereqs": [ + "VIS 105A" + ], + "title": "Drawing: Practices and Genre (4)" + }, + "VIS 105C": { + "dept": "VIS", + "description": "A studio course in drawing, emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ", + "name": "VIS 105C", + "prereqs": [ + "VIS 105B" + ], + "title": "Drawing: Portfolio Projects (4)" + }, + "VIS 105D": { + "dept": "VIS", + "description": "This course treats Chinese calligraphy as a multidimensional point of departure for aesthetic, cultural, and political concerns. This conceptually based course combines fundamental studio exercises with unconventional explorations. Students are exposed to both traditional and experimental forms of this unique art and encouraged to learn basic aesthetic grammars. There are no Chinese language requirements for this course. ", + "name": "VIS 105D", + "prereqs": [ + "VIS 80" + ], + "title": "Art Forms and Chinese Calligraphy (4)" + }, + "VIS 105E": { + "dept": "VIS", + "description": "This course concerns East\u2013West aesthetic interactions. What are the conceptual possibilities when calligraphy, an ancient form of Chinese art, is combined with installation, a contemporary artistic Western practice? Emphasis is placed on such issues as cultural hybridity, globalization, multiculturalism, and commercialization. ", + "name": "VIS 105E", + "prereqs": [ + "VIS 105D" + ], + "title": "Chinese Calligraphy as Installation (4)" + }, + "VIS 106A": { + "dept": "VIS", + "description": "A studio course focusing on problems inherent in painting\u2014transferring information and ideas onto a two-dimensional surface, color, composition, as well as manual and technical procedures. These concepts will be explored through the use of models, still life, and landscapes. ", + "name": "VIS 106A", + "prereqs": [ + "VIS 80" + ], + "title": "Painting: Image Making (4)" + }, + "VIS 106B": { + "dept": "VIS", + "description": "A continuation of VIS 106A. A studio course in which the student will investigate a wider variety of technical and conceptual issues involved in contemporary art practice related to painting. ", + "name": "VIS 106B", + "prereqs": [ + "VIS 106A" + ], + "title": "Painting: Practices and Genre (4)" + }, + "VIS 106C": { + "dept": "VIS", + "description": "A studio course in painting emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ", + "name": "VIS 106C", + "prereqs": [ + "VIS 106B" + ], + "title": "Painting: Portfolio Projects (4)" + }, + "VIS 107A": { + "dept": "VIS", + "description": "A studio course focusing on the problems involved in transferring ideas and information into three-dimensions. Course will explore materials and construction as dictated by the intended object. Specific problems to be investigated will be determined by the individual professor. ", + "name": "VIS 107A", + "prereqs": [ + "VIS 80" + ], + "title": "Sculpture: Making the Object (4)" + }, + "VIS 107B": { + "dept": "VIS", + "description": "A studio course in which the student will investigate a wider variety of technical and conceptual issues as well as materials involved in contemporary art practice related to sculpture. ", + "name": "VIS 107B", + "prereqs": [ + "VIS 107A" + ], + "title": "Sculpture: Practices and Genre (4)" + }, + "VIS 107C": { + "dept": "VIS", + "description": "A studio course in sculpture emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. Students may not receive credit for both VIS 107C and VIS 107CN. ", + "name": "VIS 107C", + "prereqs": [ + "VIS 107B" + ], + "title": "Sculpture: Portfolio Projects (4)" + }, + "VIS 108": { + "dept": "VIS", + "description": "A studio course for serious art students at the advanced level. Stress will be placed on individual creative problems. Specific orientation of this course will vary with the instructor. Topics may include film, video, photography, painting, performance, etc. May be taken for credit three times. ", + "name": "VIS 108", + "prereqs": [], + "title": "Advanced Projects in Art (4)" + }, + "VIS 109": { + "dept": "VIS", + "description": "Individual or group projects over one or two quarters. Specific project organized by the student(s) will be realized during this course with instructor acting as a close adviser/critic. Concept papers/scripts must be completed by the instructor prior to enrollment. Two production-course limitation. May be taken for credit three times. ", + "name": "VIS 109", + "prereqs": [], + "title": "Advanced Projects in Media (4)" + }, + "VIS 11": { + "dept": "VIS", + "description": "This course examines the significant topics in art practice, theory, and history that are shaping contemporary art thinking. A wide range of media extending across studio art practice, digital media, performative practices, and public culture will be considered as interrelated components. This course is required for visual arts transfer students. Students may not receive credit for both VIS 11 and VIS 111. This course is offered only one time each year during winter quarter. ", + "name": "VIS 11", + "prereqs": [], + "title": "Introduction to Visual Arts (4)" + }, + "VIS 110A": { + "dept": "VIS", + "description": "This course for the advanced visual arts major examines topics in contemporary studio art practice. The course is divided among research, discussion, projects, field trips to galleries, and visiting artists, and will encourage student work to engage in a dialogue with the issues raised. ", + "name": "VIS 110A", + "prereqs": [], + "title": "Contemporary Issues and Practices (4)" + }, + "VIS 110B": { + "dept": "VIS", + "description": "This class is for the advanced visual arts major who is interested in taking the next steps toward becoming a professional visual artist. Students will become familiar with artist\u2019s residencies and graduate programs and what they offer. Of most importance will be developing the portfolio and the artist statement, as well as becoming more familiar with the contemporary art world. Two production-based limitation. ", + "name": "VIS 110B", + "prereqs": [], + "title": "Professional Practice in the Visual Arts (4)" + }, + "VIS 110C": { + "dept": "VIS", + "description": "This is a course for the advanced visual arts major that explores the use of the maquette, or sketch, in the process of developing, proposing, and planning visual works in various media for public projects, site specific works, grants, exhibition proposals, etc. The student will work on synthesizing ideas and representing them in alternate forms that deal with conception, fabrication, and presentation. ", + "name": "VIS 110C", + "prereqs": [], + "title": "Proposals, Plans, Presentations (4)" + }, + "VIS 110D": { + "dept": "VIS", + "description": "This course for the advanced visual arts major explores narrative in art practice. The course will explore the construction of real and fictive narratives across a variety of disciplines with an emphasis on illustration, the graphic novel, comics, and other forms of drawing practice. Studio work is complemented by in-depth study of the gaze, subjectivity, memory, and imagination. After guided assignments, emphasis is on self-directed projects. ", + "name": "VIS 110D", + "prereqs": [], + "title": "Visual Narrative (4)" + }, + "VIS 110E": { + "dept": "VIS", + "description": "This course for the advanced visual arts major takes painting, sculpture, and related media out of the studio/gallery and into the public sphere by examining the contemporary history of public artworks with traditional and nontraditional site-specific work, focusing on production, critical discussion, and writing. Two production-course limitation. ", + "name": "VIS 110E", + "prereqs": [], + "title": "Art in Public Spaces/Site-Specific Art (4)" + }, + "VIS 110F": { + "dept": "VIS", + "description": "This course for the advanced visual arts major expands the idea contained in a singular work, or object, into the use of multiple objects, images, and media that redefines the idea as well as the space for which it is intended. Examination of historic, modern, and contemporary works will influence discussion of student project development and execution. Two production-course limitation. ", + "name": "VIS 110F", + "prereqs": [], + "title": "Installation: Cross-Disciplinary Projects (4)" + }, + "VIS 110G": { + "dept": "VIS", + "description": "This course for the advanced visual arts major explores the natural and altered environment as a basis for subject as well as placement of work pertaining to the environment. Two production-course limitation. ", + "name": "VIS 110G", + "prereqs": [], + "title": "The Natural and Altered Environment (4)" + }, + "VIS 110H": { + "dept": "VIS", + "description": "This class is for the advanced visual arts major devoted to the study and practice of the multiple ways in which writing and other forms of visible language have been incorporated into contemporary and traditional artworks, including artists\u2019 books, collaging and poster art, literature and poetry, typographical experiments, and calligraphies. Two production-course limitation. ", + "name": "VIS 110H", + "prereqs": [], + "title": "Art and Text (4)" + }, + "VIS 110I": { + "dept": "VIS", + "description": "The dematerialization of the performer into media-based image\u2014video, film, slides, still photographs, and using the camera as a spy, a coconspirator, a friend, or a foe\u2014employing time lags, spatial derangement, image destruction, along with narrative, text, and history, to invent time-based pieces that break new ground while being firmly rooted in an understanding of the rich body of work done in this area over the last three decades. ", + "name": "VIS 110I", + "prereqs": [], + "title": "Performing for the Camera (4)" + }, + "VIS 110K": { + "dept": "VIS", + "description": "This is a studio art course for the advanced visual arts major with a focus on the intersection of digital rendering and drawing, painting, sculpture, and performance. Structured as core lectures and labs, studio production, reading, and critical theory focused on contemporary art engaged with technology, as well as artists\u2019 responses to its demands. Two production-course limitation. ", + "name": "VIS 110K", + "prereqs": [], + "title": "Digital Studio (4)" + }, + "VIS 110M": { + "dept": "VIS", + "description": "This is a course for the advanced studio major who is selected based on a proven record of engagement, productivity, and self-discipline as well as a clear trajectory of their work. The intent is to help refine and expand the student\u2019s studio practice toward a unified portfolio and artist\u2019s statement as well as develop experience in participation and organization of group and solo exhibitions. ", + "name": "VIS 110M", + "prereqs": [], + "title": "Studio Honors I (4)" + }, + "VIS 110N": { + "dept": "VIS", + "description": "The second advanced studio course in the Honors Program in Studio, the successful completion of which will lead toward an honors degree in the studio major. The course builds on the critical and technical issues raised in Studio Honors I. ", + "name": "VIS 110N", + "prereqs": [ + "VIS 110M" + ], + "title": "Studio Honors II (4)" + }, + "VIS 112": { + "dept": "VIS", + "description": "A critical review of the principal strategies of investigation in past and present art-historical practice, a scrutiny of their contexts and underlying assumptions, and a look at alternative possibilities. The various traditions for formal and iconographic analysis as well as the categories of historical description will be studied. Required for all art history and criticism majors. ", + "name": "VIS 112", + "prereqs": [ + "VIS 23" + ], + "title": "Art Historical Methods (4)" + }, + "VIS 113AN": { + "dept": "VIS", + "description": "Using a wide range of nineteenth-century texts, this course will offer close discussions of romantic criticism and aesthetic philosophy (ideas of originality, genius, and nature); the conditions of \u201cmodern life;\u201d realism and naturalism; science and photography; and questions of form, expression, symbolism, and history. This is a seminar course. Recommended preparation: two upper-division art history courses. ", + "name": "VIS 113AN", + "prereqs": [ + "VIS 112" + ], + "title": "History of Criticism I: Early Modern (4)" + }, + "VIS 113BN": { + "dept": "VIS", + "description": "of Criticism II: Early Twentieth Century (1900\u20131950) (4)", + "name": "VIS 113BN", + "prereqs": [], + "title": "History" + }, + "VIS 113CN": { + "dept": "VIS", + "description": "of Criticism III: Contemporary (1950\u2013Present) (4)", + "name": "VIS 113CN", + "prereqs": [], + "title": "History" + }, + "VIS 114A": { + "dept": "VIS", + "description": "This seminar treats landscape as site, image, symbol, and ideal through a historical examination of the major themes and issues in the forms and functions of landscape and its representation in the European and, to a certain extent, the American tradition from antiquity to the present day. These historical discussions will also form a framework for observations on and analyses of contemporary landscape, both as experienced and as an idea. This course presumes no prior knowledge of the field. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20. ", + "name": "VIS 114A", + "prereqs": [], + "title": "Landscape and Memory (4)" + }, + "VIS 114B": { + "dept": "VIS", + "description": "This seminar focuses on the dynamic and at times contentious relationship between antiquity and the Middle Ages as it played out in various environments\u2014physical, social, cultural, and intellectual\u2014from Rome to Constantinople to Venice, Pisa, and Florence. After considering classic and contemporary formulations of the problem, it turns to in-depth examination of the architecture, images, objects, and techniques at sites in the history of art, where fragments were deployed and displayed. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20 or VIS 112. ", + "name": "VIS 114B", + "prereqs": [], + "title": "The Fragment: Uses and Theories (4)" + }, + "VIS 114GS": { + "dept": "VIS", + "description": "This course studies important developments in the arts of China in the context of contemporary cultural phenomena. The factors behind the making of art will be brought to bear on selected objects or monuments from China\u2019s great artistic eras. ", + "name": "VIS 114GS", + "prereqs": [], + "title": "Arts and Visual Culture in China (4)" + }, + "VIS 117E": { + "dept": "VIS", + "description": "This seminar will address and critique various approaches to studying the art of non-Western societies with respect to their own aesthetic and cultural systems. Students are encouraged to explore comparative philosophies of art and test paradigms of Western aesthetic scholarship. Recommended preparation: VIS 21A or 21B or 112 or two upper-division courses in art history strongly recommended. ", + "name": "VIS 117E", + "prereqs": [], + "title": "Problems in Ethnoaesthetics (4)" + }, + "VIS 117F": { + "dept": "VIS", + "description": "Examines the philosophical debates that locate the Americas in relation to the modern world. ", + "name": "VIS 117F", + "prereqs": [], + "title": "Theorizing the Americas (4)" + }, + "VIS 117G": { + "dept": "VIS", + "description": "This seminar will examine key moments in the interaction between the world of art and the world of ideas; the goal is to start students thinking about the entire theory-practice relation as it connects with their own projects and research. ", + "name": "VIS 117G", + "prereqs": [], + "title": "Critical Theory and Visual Practice (4)" + }, + "VIS 117I": { + "dept": "VIS", + "description": "and Non-Western Rituals and Ceremonies (4)", + "name": "VIS 117I", + "prereqs": [], + "title": "Western" + }, + "VIS 120A": { + "dept": "VIS", + "description": "Greek classical civilization was a turning point in the history of humanity. Within a new kind of society, the idea of the individual as free and responsible was forged, and with it the invention of history, philosophy, tragedy, and science. The arts that expressed this cultural explosion were no less revolutionary. The achievements of Greek art in architecture, sculpture, and painting will be examined from their beginnings in the archaic period, to their epoch-making fulfillment in the classical decades of the fifth century BC, to their diffusion over the entire ancient world in the age of Alexander and his successors. Recommended preparation: VIS 20. ", + "name": "VIS 120A", + "prereqs": [], + "title": "Greek Art (4)" + }, + "VIS 120B": { + "dept": "VIS", + "description": "Roman art was the \u201cmodern art\u201d of antiquity. Out of their Italic tradition and the great inheritance of Greek classic and Hellenistic art, the Romans forged a new language of form to meet the needs of a vast empire, a complex and tumultuous society, and a sophisticated, intellectually diverse culture. An unprecedented architecture of shaped space used new materials and revolutionary engineering techniques in boldly functional ways for purposes of psychological control and symbolic assertion. Sculpture in the round and in relief was pictorialized to gain spatial effects and immediacy of presence, and an extraordinary art of portraiture investigated the psychology while asserting the status claims of the individual. Extreme shifts of style, from the classicism of the age of Augustus to the expressionism of the third century AD, are characteristic of this period. The new modes of architecture, sculpture, and painting, whether in the service of the rhetoric of state power or of the individual quest for meaning, were passed on to the medieval and ultimately to the modern West. Recommended preparation: VIS 20. ", + "name": "VIS 120B", + "prereqs": [], + "title": "Roman Art (4)" + }, + "VIS 120C": { + "dept": "VIS", + "description": "During the later centuries of the Roman Empire, the ancient world underwent a profound crisis. Beset by barbarian invasions, torn by internal conflict and drastic social change, inflamed with religious passion that was to lead to a transformed vision of the individual, the world, and the divine, this momentous age saw the conversion of the Roman world to Christianity, the transfer of power from Rome to Constantinople, and the creation of a new society and culture. Out of this ferment, during the centuries from Constantine to Justinian, there emerged new art forms fit to represent the new vision of an otherworldly reality: a vaulted architecture of diaphanous space, a new art of mosaic, which dissolved surfaces in light, a figural language both abstractly symbolic and urgently expressive. The great creative epoch transformed the heritage of classical Greco-Roman art and laid the foundations of the art of the Christian West and Muslim East for the next thousand years. Recommended preparation: VIS 20 or 120B. ", + "name": "VIS 120C", + "prereqs": [], + "title": "Late Antique Art (4)" + }, + "VIS 121AN": { + "dept": "VIS", + "description": "This survey course follows the parallel tracks of the sacred and secular in art and architecture from Constantine to the Crusades. Highlights include the emergence of Christian art, visual culture of the courts, development of monasteries, fall and rise of towns and cities, and arts of ritual. The thematic juxtaposition of different media and medieval people speaking in their own voices yields a multidimensional image of society in which the medieval experience is made as concrete as possible. Recommended preparation: VIS 20. ", + "name": "VIS 121AN", + "prereqs": [], + "title": "Art and Experience in the Middle Ages (4)" + }, + "VIS 121B": { + "dept": "VIS", + "description": "This course surveys the changes in art and architecture caused by the rise of new religions after the ancient world demise, a period of upheaval and contention often known as the \u201cClash of Gods.\u201d How did Christianity come to dominate Europe with its churches and monasteries and then Islam with its mosques in the Middle East and North Africa? Studying the role of religion in the formation of artistic styles will show a dynamic interaction between the visual cultures of Christianity and Islam. Recommended preparation: VIS 20. ", + "name": "VIS 121B", + "prereqs": [], + "title": "Church and Mosque: Medieval Art and Architecture between Christianity and Islam (4)" + }, + "VIS 121H": { + "dept": "VIS", + "description": "This seminar explores movement and exchange between Mediterranean cities with diverse political, social, ethnic, and religious roots and the new modes of art, architecture, and intellectual discourse that this diversity fostered. In addition to medieval sources, readings include art historical and theoretical texts from a variety of periods and fields that frame the implications of multiculturalism for historical and contemporary categories of perception and for the analysis of visual culture. Recommended preparation: VIS 20 or VIS 112 recommended. ", + "name": "VIS 121H", + "prereqs": [], + "title": "Medieval Multiculturalism (4)" + }, + "VIS 122AN": { + "dept": "VIS", + "description": "Italian artists and critics of the fourteenth through sixteenth centuries were convinced that they were participating in a revival of the arts unparalleled since antiquity. Focusing primarily on Italy, this course traces the emergence in painting, sculpture and architecture, of an art based on natural philosophy, optical principles, and humanist values, which embodied the highest intellectual achievement and deepest spiritual beliefs of the age. Artists treated include Giotto, Donatello, Masaccio, Brunelleschi, Jan van Eyck, Mantegna, Botticelli, Leonardo da Vinci, Michelangelo, Raphael, Bramante, Durer, and Titian. Recommended preparation: VIS 20. ", + "name": "VIS 122AN", + "prereqs": [], + "title": "Renaissance Art (4)" + }, + "VIS 122CN": { + "dept": "VIS", + "description": "An in depth look at the art of Leonardo da Vinci with special emphasis on his training in Florence, interactions with Bramante, and the response to his work by Raphael. ", + "name": "VIS 122CN", + "prereqs": [], + "title": "Leonardo da Vinci in Context (4)" + }, + "VIS 122D": { + "dept": "VIS", + "description": "This course offers new approaches to understanding Michelangelo\u2019s greatest creations. By considering how each work relates to the setting for which it was intended, by regarding critical literature and artistic borrowings as evidence about the works, and by studying the thought of the spiritual reformers who counseled Michelangelo, new interpretations emerge which show the artist to be a deeply religious man who invested his works with both public and private meanings. ", + "name": "VIS 122D", + "prereqs": [ + "VIS 22", + "VIS 23", + "VIS 20", + "VIS 21" + ], + "title": "Michelangelo (4)" + }, + "VIS 122F": { + "dept": "VIS", + "description": "A critical, art historical look at the world\u2019s", + "name": "VIS 122F", + "prereqs": [], + "title": "Leonardo\u2019s La Gioconda (4)" + }, + "VIS 122GS": { + "dept": "VIS", + "description": "(Cross-listed with HIEU 124GS.) Language and culture study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fees may be required. Students may not receive credit for both VIS 122E and VIS 122GS or both HIEU 124 and HIEU 124GS.\u00a0", + "name": "VIS 122GS", + "prereqs": [], + "title": "The City in Italy (4)" + }, + "VIS 123AN": { + "dept": "VIS", + "description": "The art of the Early Renaissance in Northern Europe is marked by what appears to be striking conflict: on the one hand, a new love of nature and the pleasures of court society, and on the other, an intensified spirituality and focus on personal devotion. This course explores these provocative crosscurrents in works by master painters like Jan van Eyck and Hieronymus Bosch as well as in lesser known mass-produced objects of everyday use. ", + "name": "VIS 123AN", + "prereqs": [], + "title": "Between Spirit and Flesh (4)" + }, + "VIS 124BN": { + "dept": "VIS", + "description": "Eighteenth-century artists and critics were convinced that art could be a force to improve society. This course places Rococo and neoclassical artists such as Watteau, Fragonard, Tiepolo, Hogarth, Reynolds, Vig\u00e9e Le Brun, Blake, and David, within the context of art academies, colonialism, the Grand Tour, Enlightenment conceptualizations of history and nature, and the American and French Revolutions. Recommended preparation: VIS 20 or 22 recommended. ", + "name": "VIS 124BN", + "prereqs": [], + "title": "Art and the Enlightenment (4)" + }, + "VIS 124CN": { + "dept": "VIS", + "description": "A critical survey discussing the crisis of the Enlightenment, romanticism, realism and naturalism, academic art and history painting, representations of the New World, the Pre-Raphaelites, impressionism, international symbolism, postimpressionism, and the beginnings of modernism. Recommended preparation: VIS 20 or 22 recommended. ", + "name": "VIS 124CN", + "prereqs": [], + "title": "Nineteenth-Century Art (4)" + }, + "VIS 124D": { + "dept": "VIS", + "description": "A cultural history of nineteenth-century Paris. Addresses how and why the cultural formations and developments of the period, and their inseparability from the city, have led so many to consider Paris the capital of modernity. ", + "name": "VIS 124D", + "prereqs": [], + "title": "Paris, Capital of the Nineteenth Century (4)" + }, + "VIS 124E": { + "dept": "VIS", + "description": "Considers nineteenth-century European painting and printmaking in relation to the construction of nature and the historically specific ways of seeing that emerge from it. Key artists and groups of artists include: John Constable, J.M.W. Turner, Caspar David Friedrich, Camille Corot, the Barbizon School, J.-J. Grandville, the Pre-Raphaelites, and the Impressionists. ", + "name": "VIS 124E", + "prereqs": [], + "title": "The Production of Nature (4)" + }, + "VIS 125A": { + "dept": "VIS", + "description": "A critical survey outlining the major avant-gardes after 1900: fauvism, cubism, metaphysical painting, futurism, Dadaism, surrealism, neoplasticism, purism, the Soviet avant-garde, socialist realism, and American art before abstract expressionism. Recommended preparation: VIS 20 or 22 recommended. ", + "name": "VIS 125A", + "prereqs": [], + "title": "Twentieth-Century Art (4)" + }, + "VIS 125BN": { + "dept": "VIS", + "description": "Art after abstract expressionism: happenings, postpainterly abstraction, minimalism, performance, earth art, conceptual art, neo-expressionism, postconceptualism and development in the 1990s, including non-Western contexts. We also explore the relation of these tendencies to postmodernism, feminism, and ideas of postcoloniality. Recommended preparation: VIS 20 or 22 recommended. ", + "name": "VIS 125BN", + "prereqs": [], + "title": "Contemporary Art (4)" + }, + "VIS 125C": { + "dept": "VIS", + "description": "What is the place of visual art in modern Western culture? This course will address: visual art and radical politics in Courbet and the generation of 1848; Impressionism, Paris, and the cult of la vie moderne; Gauguin, Van Gogh, and the quest for \u201cvisionary\u201d painting; Cezanne and the reformulation of painting in terms of pure sensation; the divergent paths of Matisse and Picasso in 1906. The twentieth century follows the emergence of different interpretations of modernity in the USSR, Germany, and France. ", + "name": "VIS 125C", + "prereqs": [], + "title": "Modern Art in the West, 1850\u20131950 (4)" + }, + "VIS 125DN": { + "dept": "VIS", + "description": "A critical examination of the work of one of the most radical twentieth-century artists. In Duchamp\u2019s four-dimensional perspective, the ideas of art-object, artist, and art itself are deconstructed. The Large Glass and Etant Donn\u00e9es are the twin foci of an oeuvre without boundaries in which many twentieth-century avant-garde devices such as chance techniques, conceptual art, and the fashioning of fictive identities, are invented. ", + "name": "VIS 125DN", + "prereqs": [], + "title": "Marcel Duchamp (4)" + }, + "VIS 126AN": { + "dept": "VIS", + "description": "Art of Ancient Mexico and Central America (4)", + "name": "VIS 126AN", + "prereqs": [], + "title": "Pre-Columbian" + }, + "VIS 126BN": { + "dept": "VIS", + "description": "Art and Civilization of the Ancient Maya (4)", + "name": "VIS 126BN", + "prereqs": [], + "title": "The" + }, + "VIS 126C": { + "dept": "VIS", + "description": "Topics of this seminar will address special problems or areas of research related to the major civilizations of ancient Mexico and Central America. Course offerings will vary to focus upon particular themes, subjects, or interpretive problems. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126B-C. ", + "name": "VIS 126C", + "prereqs": [], + "title": "Problems in Mesoamerican Art History (4)" + }, + "VIS 126D": { + "dept": "VIS", + "description": "in Ancient Maya Iconography and Inscriptions (4)", + "name": "VIS 126D", + "prereqs": [], + "title": "Problems" + }, + "VIS 126HN": { + "dept": "VIS", + "description": "Explores the art and expressive culture of American Indians of far western United States, including California and Pacific Northwest. Social and cultural contexts of artistic traditions and their relations to the lifeways, ceremonialism, beliefs, and creative visions of their makers. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126CN and VIS 126HN. ", + "name": "VIS 126HN", + "prereqs": [], + "title": "Pacific Coast American Indian Art (4)" + }, + "VIS 126I": { + "dept": "VIS", + "description": "Examines the history, art, and architecture of Navajo, Hopi, Zuni, and other Native American communities of New Mexico and Arizona; the origins of their civilization; and how their arts survived, adapted, and changed in response to Euro-American influences. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126D and VIS 126I. ", + "name": "VIS 126I", + "prereqs": [], + "title": "Southwest American Indian Art (4)" + }, + "VIS 126J": { + "dept": "VIS", + "description": "The dynamic, expressive arts of selected West African societies and their subsequent survival and transformation in the New World will be studied. Emphasis will be placed on Afro-American modes of art and ceremony in the United States, Haiti, Brazil, and Suriname. ", + "name": "VIS 126J", + "prereqs": [], + "title": "African and Afro-American Art (4)" + }, + "VIS 126K": { + "dept": "VIS", + "description": "An examination of the relation of art to ritual life, mythology, and social organization in the native Polynesian and Melanesian cultures of Hawaii, New Guinea, the Solomon Islands, and Australia. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126E and VIS 126K. ", + "name": "VIS 126K", + "prereqs": [], + "title": "Oceanic Art (4)" + }, + "VIS 126P": { + "dept": "VIS", + "description": "Art: Modern to Postmodern, 1890\u20131950 (4)", + "name": "VIS 126P", + "prereqs": [], + "title": "Latin American" + }, + "VIS 126Q": { + "dept": "VIS", + "description": "Art: Modern to Postmodern, 1950\u2013Present (4)", + "name": "VIS 126Q", + "prereqs": [], + "title": "Latin American" + }, + "VIS 127A": { + "dept": "VIS", + "description": "The course will examine the theories and practices of contemporary art in South Korea, and its systems of cultural productions and disseminations. Highlighting the work of representative artists, institutions, and events, focuses will be on the predominance of governmental and corporate sponsorships, and how its cultural system is positioned for national and global presence, as well as the emergence alternative art spaces that promote the decentralization of cultural programs. Course is part of Korean studies minor program. ", + "name": "VIS 127A", + "prereqs": [], + "title": "Contemporary Arts in South Korea (4)" + }, + "VIS 127B": { + "dept": "VIS", + "description": "Course will survey major trends in the arts of China from a thematic point of view, explore factors behind the making of works of art, including political and religious meanings, and examine contexts for art in contemporary cultural phenomena. Recommended preparation: VIS 21B. ", + "name": "VIS 127B", + "prereqs": [], + "title": "Arts of China (4)" + }, + "VIS 127C": { + "dept": "VIS", + "description": "Course will explore Chinese art of the twentieth century. By examining artworks in different media, we will investigate the most compelling of the multiple realities that Chinese artists have constructed for themselves. Recommended preparation: VIS 21B. ", + "name": "VIS 127C", + "prereqs": [], + "title": "Arts of Modern China (4)" + }, + "VIS 127D": { + "dept": "VIS", + "description": "Explore representations of figures and landscapes from the dawn of Chinese painting through the Yuan dynasty, with stress on developments in style and subject matter and relationships to contemporary issues in philosophy, religion, government, society, and culture. ", + "name": "VIS 127D", + "prereqs": [], + "title": "Early Chinese Painting (4)" + }, + "VIS 127E": { + "dept": "VIS", + "description": "Explores major schools and artists of the Ming and Qing periods, including issues surrounding court patronage of professional painters, revitalization of art through reviving ancient styles, commercialization\u2019s challenges to scholar-amateur art, and the influences of the West. ", + "name": "VIS 127E", + "prereqs": [], + "title": "Later Chinese Painting (4)" + }, + "VIS 127F": { + "dept": "VIS", + "description": "Explore the development of Buddhist art and architecture in Japan. Focus on the role of art in Buddhist practice and philosophy and the function of syncretic elements in Japanese Buddhist art. ", + "name": "VIS 127F", + "prereqs": [], + "title": "Japanese Buddhist Art (4)" + }, + "VIS 127GS": { + "dept": "VIS", + "description": "This course investigates the multiple realities of art and visual culture in twentieth-century China and explores the ways in which Chinese artists have defined modernity and their tradition against the complex background of China\u2019s history. ", + "name": "VIS 127GS", + "prereqs": [], + "title": "Issues in Modern and Contemporary Chinese Art (4)" + }, + "VIS 127I": { + "dept": "VIS", + "description": "Covering the evolution of architecture and urban developments in South and North Korea since 1953. The course will examine how both states have shaped the political, economic, and cultural conditions. In particular, we will compare the apartment block communities, national identity architecture, and thematic architecture for entertainment and political propaganda. Looking at how traditional Korean architecture and urban structures were modified for modern life and political economy. ", + "name": "VIS 127I", + "prereqs": [], + "title": "Architecture and Urbanism of Korea (4)" + }, + "VIS 127N": { + "dept": "VIS", + "description": "Surveys the key works and developments in the modern art and visual culture of Japan from Edo and Meiji to the present and of China from the early-twentieth century to contemporary video, performance, and installation art. Recommended preparation: VIS 21B. ", + "name": "VIS 127N", + "prereqs": [], + "title": "Twentieth-Century Art in China and Japan (4)" + }, + "VIS 127P": { + "dept": "VIS", + "description": "Course is a survey of the visual arts of Japan, considering how the arts developed in the context of Japan\u2019s history and discussing how art and architecture were used for philosophical, religious, and material ends. Recommended preparation: VIS 21B. ", + "name": "VIS 127P", + "prereqs": [], + "title": "Arts of Japan (4)" + }, + "VIS 127Q": { + "dept": "VIS", + "description": "Explore major trends in Japanese pictorial art from the seventh century to the nineteenth century, with focus on function, style, and subject matter, and with particular emphasis on the relationship between Japanese art and that of continental Asia. ", + "name": "VIS 127Q", + "prereqs": [], + "title": "Japanese Painting and Prints (4)" + }, + "VIS 128A\u2013E": { + "dept": "VIS", + "description": "These lecture courses are on topics of special interest to visiting and permanent faculty. Topics vary from term to term and with instructor and many will not be repeated. These courses fulfill upper-division distribution requirements. As the courses under this heading will be offered less frequently than those of the regular curriculum, students are urged to check with the visual arts department academic advising office for availability and descriptions of these supplementary courses. Like the courses listed under VIS 129, below, the letters following the course number designate the general area in which the courses fall. Students may take courses with the same number but of different content, for a total of three times for credit. Recommended preparation: courses in art history (VIS 113AN\u2013129F).", + "name": "VIS 128A\u2013E", + "prereqs": [], + "title": "Topics in Art History and Theory (4)" + }, + "VIS 129A\u2013F": { + "dept": "VIS", + "description": "These seminar courses provide the opportunity for in-depth study of a particular work, artist, subject, period, or issue. Courses offered under this heading may reflect the current research interests of the instructor or treat a controversial theme in the field of art history and criticism. Active student research and classroom participation are expected. Enrollment is limited and preference will be given to majors. The letters following 129 in the course number designate the particular area of art history or theory concerned. Students may take courses with the same number but of different content more than once for credit, with consent of the instructor and/or the program adviser. May be taken three times for credit. ", + "name": "VIS 129A\u2013F", + "prereqs": [ + "VIS 112" + ], + "title": "Seminar in Art Criticism and Theory (4)" + }, + "VIS 129G": { + "dept": "VIS", + "description": "This research seminar, centered on a series of critical, thematic, theoretical, and/or historical issues that cut across subdisciplinary specializations, provides outstanding advanced students with the opportunity to undertake graduate-level research. The first part of a two-part sequence completed by Art History Honors Directed Group Study (VIS 129H). ", + "name": "VIS 129G", + "prereqs": [], + "title": "Art History Honors Seminar (4)" + }, + "VIS 129H": { + "dept": "VIS", + "description": "The second part of the honors program sequence, this course provides a forum for students engaged in research and writing to develop their ideas with the help of a faculty adviser and in conjunction with similarly engaged students. ", + "name": "VIS 129H", + "prereqs": [], + "title": "Art History Honors Directed Group Study (4)" + }, + "VIS 130": { + "dept": "VIS", + "description": "Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ", + "name": "VIS 130", + "prereqs": [], + "title": "Special Projects in Visual Arts (4)" + }, + "VIS 131": { + "dept": "VIS", + "description": "Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ", + "name": "VIS 131", + "prereqs": [], + "title": "Special Projects in Media (4)" + }, + "VIS 132": { + "dept": "VIS", + "description": "Through discussions and readings, the class will examine the issues and aesthetics of installation art making. Using media familiar to them, students will produce several projects. May be taken for credit two times. Two production-course limitation. ", + "name": "VIS 132", + "prereqs": [], + "title": "Installation Production and Studio (4)" + }, + "VIS 135": { + "dept": "VIS", + "description": "This course introduces students to studio-based project methodologies, including qualitative and quantitative design research, data visualization, production and exhibition methodologies, and complex collaborative project management. ", + "name": "VIS 135", + "prereqs": [ + "VIS 30", + "VIS 41" + ], + "title": "Design Research Methods (4)" + }, + "VIS 141A": { + "dept": "VIS", + "description": "Introduces external API\u2019s currently of interest in the arts (example: OpenGL, J2ME, Servlet/JSP, Java3D) extending a common programming language such as C++ or Java. Students gain API fluency through planning and coding software or software mediated art projects. Program or materials fees may apply. Two production-course limitation. ", + "name": "VIS 141A", + "prereqs": [ + "CSE 11", + "VIS 142", + "CSE 8B" + ], + "title": "Computer Programming for the Arts I (4)" + }, + "VIS 141B": { + "dept": "VIS", + "description": "Students extend their programming capabilities to include the creation of reusable software libraries, packages, database API\u2019s, tools, utilities, and applications intended to be publishable and useful to other practicing artists, or as preparatory work for the student\u2019s senior thesis sequence. Two production-course limitation. Program or materials fees may apply. ", + "name": "VIS 141B", + "prereqs": [ + "VIS 141A" + ], + "title": "Computer Programming for the Arts II (4)" + }, + "VIS 142": { + "dept": "VIS", + "description": "A survey of the conceptual uses and historical precedents for the use of computers in art and design. Preparation for further study in the computing in the arts area by providing an introduction to ideation strategies and critique-based evaluation, and an overview of theoretical issues related to the use of computers by artists and designers. Introduces the students to the program\u2019s computing and production facilities, and basic computer programming skills. Two production-course limitation. Program or materials fees may apply. ", + "name": "VIS 142", + "prereqs": [], + "title": "Practices in Computing Arts (4)" + }, + "VIS 143": { + "dept": "VIS", + "description": "Students develop artworks and performances in current virtual environments. Projects may be done individually or in groups in multiplayer games, immersive life platforms, or mixed reality projects and performances. Exploration of theoretical issues involved will underlie acquisition of techniques utilized in the construction of virtual environments. Materials fees required. ", + "name": "VIS 143", + "prereqs": [ + "CSE 11", + "VIS 142" + ], + "title": "Virtual Environments (4)" + }, + "VIS 145A": { + "dept": "VIS", + "description": "Introduces time- and process-based digital media art making. Contemporary and historical works across time- and process-based media will be studied and projects produced. Topics may include software art, software and hardware interfacing, interaction, and installation in an art context. Recommended preparation: CSE 5A or equivalent programming experience. Materials fees required. May not receive credit for both VIS 145A and ICAM 102. Two production-course limitation. ", + "name": "VIS 145A", + "prereqs": [ + "VIS 142" + ], + "title": "Time- and Process-Based Digital Media I (4)" + }, + "VIS 145B": { + "dept": "VIS", + "description": "Students will implement time- and process-based projects under direction of faculty. Projects such as software and hardware interfacing, computer mediated performance, software art, installation, interactive environments, data visualization and sonification will be produced as advanced study and portfolio project. Program or materials fees may apply. Two production-course limitation. ", + "name": "VIS 145B", + "prereqs": [ + "ICAM 102", + "VIS 145A" + ], + "title": "Time- and Process-Based Digital Media II (4)" + }, + "VIS 147A": { + "dept": "VIS", + "description": "Develop artworks and installations that utilize digital electronics. Techniques in digital electronic construction and computer interfacing for interactive control of sound, lighting, and electromechanics. Construction of devices that responsively adapt artworks to conditions involving viewer participation, space activation, machine intelligence. Recommended preparation: CSE 8A strongly recommended. Program or materials fees may apply. Purchase of components kit required. Two production-course limitation. ", + "name": "VIS 147A", + "prereqs": [ + "VIS 80", + "VIS 70N", + "VIS 41" + ], + "title": "Electronic Technologies for Art I (4)" + }, + "VIS 147B": { + "dept": "VIS", + "description": "Continuation of the electronics curriculum. Design of programmable microcontroller systems for creating artworks that are able to respond to complex sets of input conditions, perform algorithmic and procedural processing, and generate real time output. Program or materials fees may apply. Purchase of components kit required. Two production-course limitation. ", + "name": "VIS 147B", + "prereqs": [ + "VIS 147A" + ], + "title": "Electronic Technologies for Art II (4)" + }, + "VIS 148": { + "dept": "VIS", + "description": "Artistic practice is a site of critical intervention. Through individual \u201cPractice Diagrams,\u201d students will visualize the issues, motivations, positions, and procedures that inspire and problematize their work, seeking to discover and mobilize new tools, spaces of research, and media experimentation. ", + "name": "VIS 148", + "prereqs": [], + "title": "Visualizing Art Practice (4)" + }, + "VIS 149": { + "dept": "VIS", + "description": "Topics relevant to computer-based art and music making, such as computer methods for making art/music, design of interactive systems, spatialization of visual/musical elements, critical studies. Topics will vary. May be taken for credit three times. Recommended preparation: VIS 145A or MUS 171. Program or materials fees may apply. Two production-course limitation. ", + "name": "VIS 149", + "prereqs": [], + "title": "Seminar in Contemporary Computer Topics (4)" + }, + "VIS 150A": { + "dept": "VIS", + "description": "Research seminar in film history, theory, and/or criticism. Potential topics: film aesthetics, film criticism, film sound, and film in the digital era, with a focus on a specific period, theme, or context. Class will be devoted to discussion of readings in connection with a film or related art, fiction, or other media. Students will gain advanced knowledge of a specialized aspect of film history, theory, or criticism in a setting that promotes research, reports, and writing. ", + "name": "VIS 150A", + "prereqs": [ + "VIS 84", + "VIS 159", + "VIS 22" + ], + "title": "Seminar in Film History and Theory (4)" + }, + "VIS 151": { + "dept": "VIS", + "description": "An inquiry into a specialized alternative history of film, consisting of experimental works made outside the conventions of the movie industry that are closer in their style and nature to experimental work in painting, poetry, the sciences, etc., than to the mainstream theatrical cinema. Materials fees required. ", + "name": "VIS 151", + "prereqs": [ + "VIS 84" + ], + "title": "History of the Experimental Film (4)" + }, + "VIS 151A": { + "dept": "VIS", + "description": "Research seminar in media history, theory, and/or criticism. Potential topics: digital media aesthetics, television or radio, new media, theory of photography and/or other image forms in digital era. Focus on a specific period, theme, or context. Class devoted to discussion of readings in connection with viewing of media and related forms. Students will gain advanced knowledge of a specialized aspect of media history, theory, or criticism in a setting that promotes research, reports, and writing. ", + "name": "VIS 151A", + "prereqs": [ + "VIS 70N", + "VIS 159", + "VIS 22" + ], + "title": "Seminar in Media History and Theory (4)" + }, + "VIS 152": { + "dept": "VIS", + "description": "This collection of courses gathers, under one cover, films that are strongly marked by period, geography, and the culture within which they received their dominating local quality. These courses pay particular attention to the stamp of place\u2014climate, dress, habitation, language, music, politics\u2014as well as the filmic moves that helped color such works as environmental. The series takes in the following subjects: Third World films, the Munich films (the new wave of Germans who made their first features in Munich following 1967), Japanese movies, films of the American thirties and their relationship to current thought, American Westerns, ethnographic film, Brazil\u2019s Cinema Novo, etc. Specific topics to be covered will vary with the instructor. May be repeated twice for credit. Materials fees required. ", + "name": "VIS 152", + "prereqs": [ + "VIS 84" + ], + "title": "Film in Social Context (4)" + }, + "VIS 152D": { + "dept": "VIS", + "description": "Transnational Cinemas examine how US identities and film cultures have been forged through stories of exile, diaspora, and racial and sexual discrimination as well as cultural conflicts that have resonated here and abroad in the global film and media culture of the last century. Program or materials fees may apply. ", + "name": "VIS 152D", + "prereqs": [], + "title": "Identity through Transnational Cinemas (4)" + }, + "VIS 154": { + "dept": "VIS", + "description": "Close examination of a group of films on the level of form, technique, style, and/or poetics. Emphasis will be placed on collective film viewing, in-class discussion, and formal and/or narrative analysis. Specific topics to be covered will vary by quarter and instructor. May be taken up to two times for credit.", + "name": "VIS 154", + "prereqs": [], + "title": "Hard Look at the Movies (4)" + }, + "VIS 155": { + "dept": "VIS", + "description": "Examines the work of a single director or group of directors, considering the aesthetic, social, political, and/or historical aspects of the body of films and, if relevant, the directors\u2019 broader sphere of creative production, which may include photography, art practice, writing, and/or other contributions besides film directing. May be taken up to two times for credit. Materials fees required. ", + "name": "VIS 155", + "prereqs": [ + "VIS 84" + ], + "title": "The Director Series (4)" + }, + "VIS 156": { + "dept": "VIS", + "description": "This course introduces students to the developing history of cinema in the Latin American region. It explores the multiple authors and film movements that engage cinema as an art form in relation to issues of modernization, development, and political and social crisis. It will regard the history of cinema in the subcontinent as a force generating important cultural transformations within the complex, conflictual processes of modernization. Students may not receive credit for both VIS 156 and VIS 125F. ", + "name": "VIS 156", + "prereqs": [ + "VIS 84" + ], + "title": "Latino American Cinema (4)" + }, + "VIS 158": { + "dept": "VIS", + "description": "Photography is so ubiquitous a part of our culture that it seems to defy any simple historical definition. Accordingly, this course presents a doubled account of the medium; it explores both the historical and cultural specificity of a singular photography as well as some of the multitude of photographies that inhabit our world. Will examine a number of the most important photographic themes from the past two hundred years. ", + "name": "VIS 158", + "prereqs": [], + "title": "Histories of Photography (4)" + }, + "VIS 159": { + "dept": "VIS", + "description": "Aims to provide historical context for computer arts by examining the interaction between the arts, media technologies, and sciences in different historical periods. Topics vary (e.g., Renaissance perspective, futurism and technology, and computer art of the 1950s and 1960s). Materials fees required. ", + "name": "VIS 159", + "prereqs": [], + "title": "History of Art and Technology (4)" + }, + "VIS 160A": { + "dept": "VIS", + "description": "Students pursue projects of their own design over two quarters with support from faculty in a seminar environment. Project proposals are developed, informed by project development guidelines from real-world examples. Two production-course limitation. Renumbered from ICAM 160A. Students may receive credit for only one of the following: VIS 160A, MUS 160A, or ICAM 160A. ", + "name": "VIS 160A", + "prereqs": [ + "VIS 141B", + "MUS 172", + "VIS 147B", + "VIS 145B" + ], + "title": "Senior Project in Computing Arts I (4)" + }, + "VIS 160B": { + "dept": "VIS", + "description": "Continuation of VIS 160A or MUS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: VIS 160B, MUS 160B, or ICAM 160B. ", + "name": "VIS 160B", + "prereqs": [ + "MUS 160A", + "VIS 160A" + ], + "title": "Senior Project in Computing Arts II (4)" + }, + "VIS 161": { + "dept": "VIS", + "description": "This course introduces students to the study and design of complex systems and networks at diverse scales, from the nanometric to the planetary (and perhaps beyond). Systems and networks are understood as both physical and conceptual organizations of tangible and intangible actors. These include: architectural and urban systems, information and interactive systems, diagrammatic and performative systems, and political and geopolitical systems. ", + "name": "VIS 161", + "prereqs": [ + "VIS 135" + ], + "title": "Systems and Networks at Scale (4)" + }, + "VIS 162": { + "dept": "VIS", + "description": "The course seeks to bring the scientific laboratory into the artist and designers\u2019 studio, and vice versa. It explores intersections of advanced research in art/ design and science/technology. The course will focus on a specific laboratory innovation or a longer-term enduring challenge, and will conceive and prototype possible applications, scenarios, structures, and interventions. Course will be conducted in direct collaborations with other campus laboratories and research units. ", + "name": "VIS 162", + "prereqs": [ + "VIS 161" + ], + "title": "Speculative Science and Design Invention (4)" + }, + "VIS 163": { + "dept": "VIS", + "description": "What is design as a way of knowing? The course examines critical contemporary topics in design theory, epistemology, research, and criticism. Students develop original critical and theoretical discourse. Topics draw from combinations of experimental and conceptual art, philosophy of technology, architectural theory and design, speculative fiction, bioethics and nanoethics, political philosophy of artificial intelligence and robotics, and critical engineering studies. ", + "name": "VIS 163", + "prereqs": [ + "VIS 161" + ], + "title": "Design Research and Criticism (4)" + }, + "VIS 164": { + "dept": "VIS", + "description": "An intermediate course that expands the possibility of photography as an art practice. The students will learn to use and think of photography as a means of expression. Using the languages of contemporary art and photography the student will develop a body of work to be presented and critiqued. The construction of sequences, series, and the art of editing will be an important part of this critique-based course. Program or materials fees may apply. Two production-course limitation. ", + "name": "VIS 164", + "prereqs": [ + "VIS 60" + ], + "title": "Photographic Strategies: Art or Evidence (4)" + }, + "VIS 165": { + "dept": "VIS", + "description": "Course explores both material and conceptual analog photography practices. Course will introduce the students to the history of chemical and ocular processes since the nineteenth century and their impact on image making. Students will learn basic black-and-white darkroom techniques, processing film, proofing, and printing. Course will conclude with a primer in the new photographic hybridity, bringing analog into the digital terrain. Students will be required to create a small portfolio of work. Program or materials fees may apply. Two production-course limitation. ", + "name": "VIS 165", + "prereqs": [ + "VIS 60" + ], + "title": "Camera Techniques: Analog Futures (4)" + }, + "VIS 167": { + "dept": "VIS", + "description": "The photograph is an empirical object. This course will explore the use of photography as a tool to both understand and represent the world. Students will learn the history of the use of photography as evidence and as a tool of empirical knowledge. In a world where subjectivity is performed the students will be required to make a medium-sized work that engages the social in a creative way. Program or materials fees may apply. Two production-course limitation. ", + "name": "VIS 167", + "prereqs": [ + "VIS 164", + "VIS 165" + ], + "title": "Social Engagement and Photography (4)" + }, + "VIS 168": { + "dept": "VIS", + "description": "This course will explore photography as art and its long and complicated relationship with painting. Students will learn and be encouraged to experiment with the medium formally and conceptually. From studio and lighting techniques to collage, montage, constructed realities, installations, and projections. Program or materials fees may apply. Two production-course limitation. ", + "name": "VIS 168", + "prereqs": [ + "VIS 164", + "VIS 165" + ], + "title": "Pictorialism and Constructed Reality (4)" + }, + "VIS 171": { + "dept": "VIS", + "description": "A digital image is not a film image, and this reality and its technological and conceptual implications are what this course will attempt to map out, exploring its possibilities and the massive overhaul of media aesthetics it implies. Two production-course limitation. ", + "name": "VIS 171", + "prereqs": [ + "VIS 174" + ], + "title": "Digital Cinema\u2014Theory and Production (4)" + }, + "VIS 174": { + "dept": "VIS", + "description": "Video medium used both as production technology and as device to explore the fundamental character of filmmaking and time-based computer art practices. Students perform all aspects of production with attention to developing ideas and building analytical/critical skills. Two production-course limitation. ", + "name": "VIS 174", + "prereqs": [ + "VIS 70N" + ], + "title": "Media Sketchbook (4)" + }, + "VIS 175": { + "dept": "VIS", + "description": "The evolving aims and grammars of editing practice in film and digital media will be examined. These histories will create a context for exploring contemporary editing strategies. The production projects will be centered on digital editing practice. Two production-course limitation. ", + "name": "VIS 175", + "prereqs": [ + "VIS 174" + ], + "title": "Editing\u2014Theory and Production (4)" + }, + "VIS 176": { + "dept": "VIS", + "description": "A technical foundation and creative theoretical context for film production will be provided. Students will produce a short film with post-synchronized sounds and final mixed-track. Two production-course limitation. ", + "name": "VIS 176", + "prereqs": [ + "VIS 174" + ], + "title": "16mm Filmmaking (4)" + }, + "VIS 177": { + "dept": "VIS", + "description": "Script writing, reading, and analysis of traditional and experimental media productions. The emphasis will be on the structural character of the scripting process and its language. Students will write several short scripts along with analytical papers. Two production-course limitation. ", + "name": "VIS 177", + "prereqs": [ + "VIS 174" + ], + "title": "Scripting Strategies (4)" + }, + "VIS 178": { + "dept": "VIS", + "description": "Sound design plays an increasing role in media production and has opened up new structural possibilities for narrative strategies. A critical and historical review of sound design and a production methodology component. Critical papers and soundtracks for short film projects will be required. Two production-course limitation. ", + "name": "VIS 178", + "prereqs": [ + "VIS 174" + ], + "title": "Sound\u2014Theory and Production (4)" + }, + "VIS 180A": { + "dept": "VIS", + "description": "Exploration of concepts in representational artworks by critically examining \u201cfound\u201d vs. \u201cmade\u201d recorded material. Advanced film/video, photography, computing work. Issues of narrative and structure; attention to formal aspects of media work emphasized. Two production-course limitation. ", + "name": "VIS 180A", + "prereqs": [ + "VIS 178", + "VIS 175", + "VIS 174", + "VIS 177", + "VIS 176", + "VIS 171", + "VIS 164", + "VIS 165" + ], + "title": "Documentary Evidence and the Construction of Authenticity in Current Media Practices (4)" + }, + "VIS 180B": { + "dept": "VIS", + "description": "and Allegory in Current Media Practices (4)", + "name": "VIS 180B", + "prereqs": [], + "title": "Fiction" + }, + "VIS 181": { + "dept": "VIS", + "description": "Advanced course to gain sophisticated control of lighting and sound recording techniques with understanding of theoretical implications and interrelation between production values and subject matter. Interactions between sound and image in various works in film, video, or installation. Two production-course limitation. ", + "name": "VIS 181", + "prereqs": [ + "VIS 178", + "VIS 175", + "VIS 174", + "VIS 177", + "VIS 176", + "VIS 171", + "VIS 164", + "VIS 165" + ], + "title": "Sound and Lighting (4)" + }, + "VIS 182": { + "dept": "VIS", + "description": "Film/video editing and problems of editing from theoretical and practical points-of-view. Films and tapes analyzed on a frame-by-frame, shot-by-shot basis. Edit stock material and generate own materials for editing final project. Aesthetic and technical similarities/differences of film/video. Recommended preparation: VIS 175 Editing-Theory and Production strongly recommended. Two production-course limitation. ", + "name": "VIS 182", + "prereqs": [ + "VIS 178", + "VIS 175", + "VIS 174", + "VIS 177", + "VIS 176", + "VIS 171", + "VIS 164", + "VIS 165" + ], + "title": "Advanced Editing (4)" + }, + "VIS 183A": { + "dept": "VIS", + "description": "Looks at the way that self-identity is reflected and produced through various media practices. Focus is on rhetorical strategies of biography and autobiography in media, comparing and contrasting these strategies with those drawn from related cultural forms. Two production-course limitation. ", + "name": "VIS 183A", + "prereqs": [ + "VIS 178", + "VIS 175", + "VIS 174", + "VIS 177", + "VIS 176", + "VIS 171", + "VIS 164", + "VIS 165" + ], + "title": "Strategies of Self (4)" + }, + "VIS 183B": { + "dept": "VIS", + "description": "Looks at difference as it is reflected and constructed in various media practices. Course will examine a wide range of forms and genres such as ethnography, science fiction, crime narratives, documentary film, political drama, and animated shorts. Two production-course limitation. ", + "name": "VIS 183B", + "prereqs": [ + "VIS 178", + "VIS 175", + "VIS 174", + "VIS 177", + "VIS 176", + "VIS 171", + "VIS 164", + "VIS 165" + ], + "title": "Strategies of Alterity (4)" + }, + "VIS 184": { + "dept": "VIS", + "description": "Film/video production will be framed through the script writing process, focusing on the problems of longer duration, density, and adaptation from other media. Students will both read and analyze both historical and contemporary scripts and produce a thirty- to sixty-minute script. Recommended preparation: VIS 177 Scripting Strategies. Two production-course limitation. ", + "name": "VIS 184", + "prereqs": [ + "VIS 178", + "VIS 175", + "VIS 174", + "VIS 177", + "VIS 176", + "VIS 171", + "VIS 164", + "VIS 165" + ], + "title": "Advanced Scripting (4)" + }, + "VIS 185": { + "dept": "VIS", + "description": "Through instruction and discussion, the class will focus on guiding students through advanced production on a senior project. Students will be expected to initiate and complete production on at least one portfolio-level project. May be taken for credit two times. Two production-course limitation. ", + "name": "VIS 185", + "prereqs": [ + "VIS 178", + "VIS 175", + "VIS 174", + "VIS 177", + "VIS 176", + "VIS 171", + "VIS 164", + "VIS 165" + ], + "title": "Senior Media Projects (4)" + }, + "VIS 190": { + "dept": "VIS", + "description": "This advanced course provides students with a unique immersive learning experience, based on design studio/atelier methods. This course develops students\u2019 skills in the ideation, planning, and execution of complex individual and collaborative projects, including historical and contextual research, project ideation, planning and management, coordination of skills and responsibilities, iterative execution, and effective presentation. ", + "name": "VIS 190", + "prereqs": [ + "VIS 135", + "VIS 100", + "VIS 101", + "VIS 142", + "VIS 161", + "VIS 145A" + ], + "title": "Design Master Studio (8)" + }, + "VIS 194S": { + "dept": "VIS", + "description": "This course will explore the path of the deliberately \u201cunreal\u201d in movies. Fantasy in film will be considered both in terms of its psychological manifestations and also in terms of imaginary worlds created in such willfully antirealistic genres as science fiction, horror, and musical films. Offered in Summer Session only. Program or materials fees may apply. May be taken for credit three times. ", + "name": "VIS 194S", + "prereqs": [ + "VIS 84" + ], + "title": "Fantasy in Film (4)" + }, + "VIS 198": { + "dept": "VIS", + "description": "Directed group study on a topic or in a group field not included in regular department curriculum, by special arrangement with a faculty member. ", + "name": "VIS 198", + "prereqs": [], + "title": "Directed Group Study (2\u20134)" + }, + "VIS 199": { + "dept": "VIS", + "description": "Independent reading, research, or creative work under direction of a faculty member. ", + "name": "VIS 199", + "prereqs": [], + "title": "Special Studies in the Visual Arts (4)" + }, + "VIS 2": { + "dept": "VIS", + "description": "Art Making: Motion and Time Based Art (4)", + "name": "VIS 2", + "prereqs": [], + "title": "Introduction to" + }, + "VIS 20": { + "dept": "VIS", + "description": "This course examines history of Western art and architecture through such defining issues as the respective roles of tradition and innovation in the production and appreciation of art; the relation of art to its broader intellectual and historical contexts; and the changing concepts of the monument, the artist, meaning, style, and \u201cart\u201d itself. Representative examples will be selected from different periods, ranging from Antiquity to Modern. Content will vary with the instructor. ", + "name": "VIS 20", + "prereqs": [], + "title": "Introduction to Art History (4)" + }, + "VIS 201": { + "dept": "VIS", + "description": "An exploration of a range of issues important on the contemporary critical scene through readings and writing assignments. Topics will vary from year to year. (Required, MFA)", + "name": "VIS 201", + "prereqs": [], + "title": "Contemporary Critical Issues (4)" + }, + "VIS 202": { + "dept": "VIS", + "description": "A workshop/seminar devoted to a particular materials practice (e.g., media, painting, digital media, etc.) that engages with critical questions arising within that discipline. Content will vary from quarter to quarter. May be taken for credit two times. (Required, MFA)", + "name": "VIS 202", + "prereqs": [], + "title": "Art Practice (4)" + }, + "VIS 203": { + "dept": "VIS", + "description": "Workshop in which students engage in an extensive evaluation of one another\u2019s ongoing work in preparation for either the First Year Review or MFA Review. Offered every winter. May be taken for credit two times (Required, MFA)", + "name": "VIS 203", + "prereqs": [], + "title": "Working Critique (4)" + }, + "VIS 204": { + "dept": "VIS", + "description": "Critical evaluation of the methods, practices, and disciplinary commitments of art history, encompassing both revisionist interventions of the late-twentieth century and earlier paradigms, in order to envision new discipline-specific and interdisciplinary directions for the future of art history and visual culture. (Required, PhD)", + "name": "VIS 204", + "prereqs": [], + "title": "Rethinking Art History (4)" + }, + "VIS 205": { + "dept": "VIS", + "description": "to Graduate Studies in Art Practice (4)", + "name": "VIS 205", + "prereqs": [], + "title": "Introduction" + }, + "VIS 206": { + "dept": "VIS", + "description": "Seminar examines the interrelationship between theory and practice and the nature of artistic production as a form of research. ", + "name": "VIS 206", + "prereqs": [], + "title": "Seminar in Art Practice Research (4)" + }, + "VIS 207": { + "dept": "VIS", + "description": "Workshop for PhD in Art Practice concentration students cotaught by PhD and MFA faculty offering extensive evaluation and critique of work. Intended to explore issues associated with artistic practice as a form of research in a university setting. Course is only applicable to VA76 and VA77 PhD programs. PhD students with a concentration in Art Practice my take VIS 207 each year until they qualify for candidacy.", + "name": "VIS 207", + "prereqs": [], + "title": "Working Practice for Art Practice PhDs (4)" + }, + "VIS 209": { + "dept": "VIS", + "description": "This course includes research and discussion of the required thesis for MFA candidates in visual arts. Advancement to candidacy required. A draft of the MFA thesis paper is required to complete this course. (Required, MFA).", + "name": "VIS 209", + "prereqs": [], + "title": "Thesis Writing (4)" + }, + "VIS 211": { + "dept": "VIS", + "description": "This seminar addresses the space between narrative work generated from a factual base and that generated from a fictional one. Special attention will be given to discussing work that confounds the assumed gap between the two.", + "name": "VIS 211", + "prereqs": [], + "title": "Fact and Fiction (4)" + }, + "VIS 212": { + "dept": "VIS", + "description": "This seminar will engage the space between personal and larger histories. How is one\u2019s own past both intertwined with and determined by larger social histories?", + "name": "VIS 212", + "prereqs": [], + "title": "History and Memory (4)" + }, + "VIS 213": { + "dept": "VIS", + "description": "An exploration of what public space is and how it operates, with a view toward an expanded context for considering how public artwork can operate within it. Included are areas such as mass media, activism, community action, computer networks, ecology, and alternative forums.", + "name": "VIS 213", + "prereqs": [], + "title": "Public Space (4)" + }, + "VIS 215": { + "dept": "VIS", + "description": "Examines human interface as it informs or transforms how we read and participate in culture at large. Concepts such as subject/author/object relationships, abstraction, metaphor, analogy, visualization, and complexity are discussed to establish context.", + "name": "VIS 215", + "prereqs": [], + "title": "Human Interface (4)" + }, + "VIS 216": { + "dept": "VIS", + "description": "An investigation of the world of artifacts (\u201cworks of art\u201d and others) and how they function as agents of communication and modifiers of consciousness. Contemporary perspectives drawn from the fields of art theory, anthropology, contemporary art, and semiotics will be utilized.", + "name": "VIS 216", + "prereqs": [], + "title": "The Object (4)" + }, + "VIS 217": { + "dept": "VIS", + "description": "A critical examination of the practices of self-defined communities (e.g., Bauhaus, Shaker, surrealists), which have attempted to change the social and spiritual quality of life by aesthetic means and of communities and subcultures defined by other means.", + "name": "VIS 217", + "prereqs": [], + "title": "Communities and Subcultures (4)" + }, + "VIS 218N": { + "dept": "VIS", + "description": "Explores various strategies exhibited in a wide range of contemporary art practices engaging in the representation of personality, spirituality, and the physical self.", + "name": "VIS 218N", + "prereqs": [], + "title": "Imaging Selves and Others (4)" + }, + "VIS 219": { + "dept": "VIS", + "description": "Examines a topic of special interest to permanent and visiting faculty that is not addressed in the regular curriculum. As in other Art Practice/Theory seminars, students will both produce work and read and write critically about the topic. Topics will vary.", + "name": "VIS 219", + "prereqs": [], + "title": "Special Topics in Art Practice/Theory (4)" + }, + "VIS 21A": { + "dept": "VIS", + "description": "to the Art of the Americas or Africa and Oceania (4)", + "name": "VIS 21A", + "prereqs": [], + "title": "Introduction" + }, + "VIS 21B": { + "dept": "VIS", + "description": "Survey of the major artistic trends of India, China, and Japan, taking a topical approach to important developments in artistic style and subject matter to highlight the art of specific cultures and religions. Students may not receive credit for VIS 21 and VIS 21B. ", + "name": "VIS 21B", + "prereqs": [], + "title": "Introduction to Asian Art (4)" + }, + "VIS 22": { + "dept": "VIS", + "description": "Wide-ranging survey introducing the key aspects of modern art and criticism in the nineteenth and twentieth centuries, including neoclassicism, romanticism, realism, impressionism, postimpressionism, symbolism, fauvism, cubism, Dadaism and surrealism, abstract expressionism, minimalism, earth art, and conceptual art. ", + "name": "VIS 22", + "prereqs": [], + "title": "Formations of Modern Art (4)" + }, + "VIS 23": { + "dept": "VIS", + "description": "This seminar introduces fundamentals of art historical practice such as descriptive and analytical writing, compiling annotated bibliographies with traditional and online resources, defining research topics, and writing project proposals. ", + "name": "VIS 23", + "prereqs": [], + "title": "Information Technologies in Art History (4)" + }, + "VIS 234N": { + "dept": "VIS", + "description": "Critical and historical analysis of the institutions, social networks, and communicative media through which art is presented to its audiences. May also address theories of vision and visuality, spectatorship, public space, originality and reproduction, and public space.", + "name": "VIS 234N", + "prereqs": [], + "title": "Frames of View (4)" + }, + "VIS 242": { + "dept": "VIS", + "description": "Critical study of the ways in which media (film, video, photography) and new media have been theorized. May be taught from a historical or comparative perspective or focus on a single topic or theorist.", + "name": "VIS 242", + "prereqs": [], + "title": "Theories of Media and New Media (4)" + }, + "VIS 243": { + "dept": "VIS", + "description": "Study of the philosophical concepts of the function of art and visual culture and the criteria for its evaluation in diverse epochs and cultures. May be taught as an historical overview or comparative study or focus a single topic or theorist.", + "name": "VIS 243", + "prereqs": [], + "title": "Aesthetic Theory (4)" + }, + "VIS 244": { + "dept": "VIS", + "description": "the Relationship of Theory and Practice (4)", + "name": "VIS 244", + "prereqs": [], + "title": "Studies in" + }, + "VIS 251": { + "dept": "VIS", + "description": "European art from late antiquity through the fourteenth century and the historical processes by which \u201cmedieval\u201d art has been constructed as a category. Topics may include devotional vision and the sacred image; medieval comic genres; neo-medievalism, fifteenth century to today. May be taken for credit three times. ", + "name": "VIS 251", + "prereqs": [], + "title": "Seminar in Medieval Art (4)" + }, + "VIS 252": { + "dept": "VIS", + "description": "Concentrates on the art of the Renaissance in Italy and the North through a changing series of topics, e.g., Vision and Composition in Perspective; The Sistine Chapel; Envisioning Jan Van Eyck; Renaissance Print Making; Leonardo da Vinci\u2019s La Gioconda. May be taken three times for credit. ", + "name": "VIS 252", + "prereqs": [], + "title": "Seminar in Renaissance Art (4)" + }, + "VIS 254": { + "dept": "VIS", + "description": "European and American Art, ca. 1850 to 1960. Questions in Impressionism and Postimpressionism; The Cubist Revolution: Marcel Duchamp and the Anti-Formalist Tradition; American Modernism; Reckoning with Abstract Art; Issues of Dada and Surrealism; Soviet Avant-Gardes. May be taken three times for credit. ", + "name": "VIS 254", + "prereqs": [], + "title": "Seminar in Modern Art (4)" + }, + "VIS 255": { + "dept": "VIS", + "description": "Thematic and critical discussions of recent US and international art, 1960s to the present. Art/Text; Mixed Media Practices; Conceptual Art; Art After Appropriation; Global Art at the Millennium; New Genres of Public Art; Mike Kelly and the Conceptual Vernacular: Art and Activism. May be taken three times for credit. ", + "name": "VIS 255", + "prereqs": [], + "title": "Seminar in Contemporary Art (4)" + }, + "VIS 256": { + "dept": "VIS", + "description": "Topics in media (photography, film, video) and new media, contemporary or historical. Coverage may be broad or addressed to a particular topic such as Film Remakes; Silent Cinema; Photography and Social Movements; The Language of New Media. ", + "name": "VIS 256", + "prereqs": [], + "title": "Seminar in Media and New Media (4)" + }, + "VIS 257": { + "dept": "VIS", + "description": "Topics relating to the art and civilizations of Pre-Columbian Mexico and Central America, either specifically art historical (such as iconographic, formal, and stylistic analysis) or encompassing a spectrum of interdisciplinary and cultural/historical problems. May be taken three times for credit. ", + "name": "VIS 257", + "prereqs": [], + "title": "Seminar in Meso-American Art (4)" + }, + "VIS 258": { + "dept": "VIS", + "description": "Advanced studies in the secular and religious art traditions of China. From year to year, the seminar may focus on early China (Neolithic to the end of the T\u2019ang dynasty), on later dynasties (Sung, Yuan, Ming) or on art of the People\u2019s Republic. May be taken three times for credit. ", + "name": "VIS 258", + "prereqs": [], + "title": "Seminar in Chinese Art (4)" + }, + "VIS 259": { + "dept": "VIS", + "description": "Historical and theoretical problems in the art of Mexico, Central, and South America art from the colonial period to today, as well as from the Hispanic traditions of the American Southwest. May be taken three times for credit. ", + "name": "VIS 259", + "prereqs": [], + "title": "Seminar in Latin American Art (4)" + }, + "VIS 260": { + "dept": "VIS", + "description": "Topics for this seminar concern Native American art history from ancient to contemporary times. Seminars may focus on archaeological and art historical approaches, philosophy and aesthetics, archaeoastronomy, and cultural contexts. Issues of globalization and transculturation may be examined as well. May be taken up to three times for credit. ", + "name": "VIS 260", + "prereqs": [], + "title": "Seminar in North American Indian Art (4)" + }, + "VIS 280": { + "dept": "VIS", + "description": "Practice in writing about art (both one\u2019s own and others) accompanied by analysis of selected contemporary critical writings.", + "name": "VIS 280", + "prereqs": [], + "title": "Workshop in Critical Writing (4)" + }, + "VIS 281": { + "dept": "VIS", + "description": "Methodological investigation of and training in the practices of art museums, galleries, film and digital environments, public arts organizations, and the like. Instruction by museum and gallery curators and opportunities for participation in ongoing programs at local art institutions.", + "name": "VIS 281", + "prereqs": [], + "title": "Curatorial Practice (4)" + }, + "VIS 295": { + "dept": "VIS", + "description": "Individual research with the student\u2019s individual faculty adviser in preparation for their comprehensive exhibitions for the MFA degree or qualifying exam for the PhD. These units are intended to be with the chair of the student\u2019s review committee. For the MFA degree, these units can only be taken after completing the First Year Review. (Required, MFA, PhD)", + "name": "VIS 295", + "prereqs": [], + "title": "Individual Studies for Graduate Students (1\u201312)" + }, + "VIS 298": { + "dept": "VIS", + "description": "Directed group study on specific topics not covered at present in the normal curriculum. Used as an experimental testing of courses that may be given regular course numbers if proved successful. Special arrangement with faculty member. ", + "name": "VIS 298", + "prereqs": [], + "title": "Directed Group Study (1\u201312)" + }, + "VIS 299": { + "dept": "VIS", + "description": "Graduate-level research under the direct guidance of a faculty member. ", + "name": "VIS 299", + "prereqs": [], + "title": "Graduate Research (1\u20134)" + }, + "VIS 3": { + "dept": "VIS", + "description": "Art Making: Three-Dimensional Practices (4)", + "name": "VIS 3", + "prereqs": [], + "title": "Introduction to" + }, + "VIS 30": { + "dept": "VIS", + "description": "Speculative design uses design methods to question and investigate material culture with critical creative purpose. This course provides a historical, theoretical, and methodological introduction to speculative design as a distinct program. Emphasis is tracing the integration of interdisciplinary intellectual and technical problems toward creative, unexpected propositions and prototypes. ", + "name": "VIS 30", + "prereqs": [], + "title": "Introduction to Speculative Design (4)" + }, + "VIS 41": { + "dept": "VIS", + "description": "This course provides a strong foundation in contemporary techniques of design communication, including: digital image editing, typography, vector-based illustration and diagramming, document layout, as well as basic digital video editing tools, and web-production formats. Emphasis is on mastery of craft through iteration and presentation of multiple projects. Students may not receive credit for VIS 140 or ICAM 101 and VIS 41. ", + "name": "VIS 41", + "prereqs": [], + "title": "Design Communication (4)" + }, + "VIS 500": { + "dept": "VIS", + "description": "Apprentice teaching in undergraduate courses given by the Department of Visual Arts. Graduate students are required to teach a minimum of one quarter (four units) within the department to fulfill degree requirements.", + "name": "VIS 500", + "prereqs": [], + "title": "Apprentice Teaching (1\u20134)" + }, + "VIS 502": { + "dept": "VIS", + "description": "Training in teaching methods in the field of visual arts. This course examines theoretical and practical communication and teaching techniques particularly appropriate to studio and production-style courses. Open to VA75, VA76, and VA77 major codes.", + "name": "VIS 502", + "prereqs": [], + "title": "Graduate Teaching in Visual Arts (4)" + }, + "VIS 60": { + "dept": "VIS", + "description": "An in-depth exploration of the camera and image utilizing photographic digital technology. Emphasis is placed on developing fundamental control of the processes and materials through lectures, field, and lab experience. Basic discussion of image making included. Program or materials fees may apply. ", + "name": "VIS 60", + "prereqs": [], + "title": "Introduction to Digital Photography (4)" + }, + "VIS 70N": { + "dept": "VIS", + "description": "Operating as both a lecture and production course, this introductory class provides a technical foundation and theoretical context for all subsequent production-oriented film and video studies. In the laboratory, the student will learn the basic skills necessary to initiate video production. Completion of Visual Arts 70N is necessary to obtain a media card. Program or materials fees may apply. ", + "name": "VIS 70N", + "prereqs": [], + "title": "Introduction to Media (6)" + }, + "VIS 80": { + "dept": "VIS", + "description": "A practical introduction to the studio art major and a conceptual introduction to how diverse strategies of art making are produced, analyzed, and critiqued. Introduces historical and contemporary topics in painting, drawing, sculpture, installation, and performance art and field-based practices. Required for all studio majors and minors including transfer students. Must be taken in residence at UC San Diego. ", + "name": "VIS 80", + "prereqs": [], + "title": "Introduction to the Studio Major (4)" + }, + "VIS 84": { + "dept": "VIS", + "description": "A survey of the history and the art of the cinema. The course will stress the origins of cinema and the contributions of the earliest filmmakers, including those of Europe, Russia, and the United States. This course is offered only one time each year. Program or materials fees may apply. ", + "name": "VIS 84", + "prereqs": [], + "title": "History of Film (4)" + }, + "VIS 87": { + "dept": "VIS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ", + "name": "VIS 87", + "prereqs": [], + "title": "Freshman Seminar (1)" + }, + "WARR 1": { + "dept": "WARR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "WARR 1", + "prereqs": [], + "title": "First Year Experience (2)" + }, + "WARR 11A": { + "dept": "WARR", + "description": "Warren Scholars Seminar A allows students to develop and refine their expressive and analytical skills by exploring a topic from the perspective of a wide range of disciplines. The seminar emphasizes critical thinking, reading, and writing. The topic will vary each year. Letter grades only. ", + "name": "WARR 11A", + "prereqs": [], + "title": "Warren Scholars Seminar A (4)" + }, + "WARR 11B": { + "dept": "WARR", + "description": "Warren Scholars Seminar B allows students to further develop and refine their expressive and analytical skills by exploring a topic from the perspective of a wide range of disciplines. The seminar emphasizes analytical thinking and argumentative writing. The topic will vary each year. Letter grades only. ", + "name": "WARR 11B", + "prereqs": [ + "WARR 11A" + ], + "title": "Warren Scholars Seminar B (4)" + }, + "WARR 189": { + "dept": "WARR", + "description": "Students will gain a fundamental understanding of all stages of the writing process and will develop the necessary skills to serve as productive mentors for their peers. P/NP grades only. May be taken for credit three times. ", + "name": "WARR 189", + "prereqs": [], + "title": "Academic Mentoring and the Writing Process (2)" + }, + "WARR 2": { + "dept": "WARR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "name": "WARR 2", + "prereqs": [], + "title": "Transfer Year Experience (2)" + }, + "WCWP 100": { + "dept": "WCWP", + "description": "An upper-division workshop course in argumentation and research with particular attention to analyzing and constructing academic arguments. A course specially designed for and required of transfer students who enter Warren College through the TAG, IGETC, or another articulation agreement. The course must be taken for a letter grade to fulfill this requirement. Letter grades only. ", + "name": "WCWP 100", + "prereqs": [], + "title": "Academic Writing (4)" + }, + "WCWP 10A": { + "dept": "WCWP", + "description": "A seminar-style course in reading and writing required of all Warren College students. The course emphasizes argumentation and critical writing based on sources. Letter grades only. ", + "name": "WCWP 10A", + "prereqs": [], + "title": "The Writing Course A (4)" + }, + "WCWP 10B": { + "dept": "WCWP", + "description": "A seminar-style course in reading and writing required of all Warren College students who have completed WCWP 10A. The course continues the emphasis on argumentation and critical writing based on sources. Letter grades only. ", + "name": "WCWP 10B", + "prereqs": [ + "WCWP 10A" + ], + "title": "The Writing Course B (4)" + }, + "WCWP 500": { + "dept": "WCWP", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching in Warren College Writing courses, under the supervision of the program director. (S/U grade only.) ", + "name": "WCWP 500", + "prereqs": [], + "title": "Apprentice Teaching in WCWP (2 or 4)" + } + }, + "vizjs": { + "edges": [ + { + "from": 1, + "to": 0 + }, + { + "from": 2, + "to": 0 + }, + { + "from": 3, + "to": 0 + }, + { + "from": 4, + "to": 0 + }, + { + "from": 5, + "to": 0 + }, + { + "from": 6, + "to": 0 + }, + { + "from": 7, + "to": 0 + }, + { + "from": 8, + "to": 0 + }, + { + "from": 9, + "to": 0 + }, + { + "from": 0, + "to": 10 + }, + { + "from": 11, + "to": 10 + }, + { + "from": 12, + "to": 10 + }, + { + "from": 13, + "to": 10 + }, + { + "from": 14, + "to": 10 + }, + { + "from": 15, + "to": 10 + }, + { + "from": 2, + "to": 10 + }, + { + "from": 16, + "to": 11 + }, + { + "from": 17, + "to": 11 + }, + { + "from": 29, + "to": 28 + }, + { + "from": 30, + "to": 28 + }, + { + "from": 31, + "to": 28 + }, + { + "from": 32, + "to": 28 + }, + { + "from": 33, + "to": 28 + }, + { + "from": 34, + "to": 28 + }, + { + "from": 35, + "to": 28 + }, + { + "from": 36, + "to": 28 + }, + { + "from": 37, + "to": 28 + }, + { + "from": 38, + "to": 28 + }, + { + "from": 39, + "to": 28 + }, + { + "from": 40, + "to": 28 + }, + { + "from": 41, + "to": 28 + }, + { + "from": 29, + "to": 32 + }, + { + "from": 30, + "to": 32 + }, + { + "from": 31, + "to": 32 + }, + { + "from": 33, + "to": 32 + }, + { + "from": 36, + "to": 32 + }, + { + "from": 37, + "to": 32 + }, + { + "from": 38, + "to": 32 + }, + { + "from": 40, + "to": 32 + }, + { + "from": 41, + "to": 32 + }, + { + "from": 29, + "to": 34 + }, + { + "from": 30, + "to": 34 + }, + { + "from": 31, + "to": 34 + }, + { + "from": 33, + "to": 34 + }, + { + "from": 36, + "to": 34 + }, + { + "from": 37, + "to": 34 + }, + { + "from": 38, + "to": 34 + }, + { + "from": 40, + "to": 34 + }, + { + "from": 41, + "to": 34 + }, + { + "from": 29, + "to": 35 + }, + { + "from": 30, + "to": 35 + }, + { + "from": 31, + "to": 35 + }, + { + "from": 33, + "to": 35 + }, + { + "from": 36, + "to": 35 + }, + { + "from": 37, + "to": 35 + }, + { + "from": 38, + "to": 35 + }, + { + "from": 40, + "to": 35 + }, + { + "from": 41, + "to": 35 + }, + { + "from": 44, + "to": 43 + }, + { + "from": 45, + "to": 43 + }, + { + "from": 45, + "to": 44 + }, + { + "from": 52, + "to": 51 + }, + { + "from": 53, + "to": 51 + }, + { + "from": 54, + "to": 51 + }, + { + "from": 52, + "to": 55 + }, + { + "from": 53, + "to": 55 + }, + { + "from": 54, + "to": 55 + }, + { + "from": 52, + "to": 57 + }, + { + "from": 53, + "to": 57 + }, + { + "from": 54, + "to": 57 + }, + { + "from": 66, + "to": 65 + }, + { + "from": 65, + "to": 67 + }, + { + "from": 68, + "to": 67 + }, + { + "from": 73, + "to": 72 + }, + { + "from": 79, + "to": 78 + }, + { + "from": 82, + "to": 81 + }, + { + "from": 83, + "to": 81 + }, + { + "from": 84, + "to": 81 + }, + { + "from": 82, + "to": 86 + }, + { + "from": 83, + "to": 86 + }, + { + "from": 84, + "to": 86 + }, + { + "from": 82, + "to": 90 + }, + { + "from": 83, + "to": 90 + }, + { + "from": 84, + "to": 90 + }, + { + "from": 91, + "to": 91 + }, + { + "from": 92, + "to": 91 + }, + { + "from": 93, + "to": 93 + }, + { + "from": 94, + "to": 93 + }, + { + "from": 95, + "to": 95 + }, + { + "from": 96, + "to": 95 + }, + { + "from": 97, + "to": 97 + }, + { + "from": 98, + "to": 97 + }, + { + "from": 100, + "to": 99 + }, + { + "from": 99, + "to": 99 + }, + { + "from": 103, + "to": 102 + }, + { + "from": 102, + "to": 102 + }, + { + "from": 106, + "to": 105 + }, + { + "from": 107, + "to": 105 + }, + { + "from": 109, + "to": 108 + }, + { + "from": 111, + "to": 111 + }, + { + "from": 112, + "to": 111 + }, + { + "from": 124, + "to": 123 + }, + { + "from": 130, + "to": 129 + }, + { + "from": 131, + "to": 129 + }, + { + "from": 132, + "to": 129 + }, + { + "from": 137, + "to": 136 + }, + { + "from": 134, + "to": 136 + }, + { + "from": 138, + "to": 136 + }, + { + "from": 139, + "to": 136 + }, + { + "from": 140, + "to": 136 + }, + { + "from": 141, + "to": 136 + }, + { + "from": 145, + "to": 144 + }, + { + "from": 146, + "to": 144 + }, + { + "from": 148, + "to": 147 + }, + { + "from": 149, + "to": 147 + }, + { + "from": 82, + "to": 153 + }, + { + "from": 83, + "to": 153 + }, + { + "from": 84, + "to": 153 + }, + { + "from": 157, + "to": 156 + }, + { + "from": 158, + "to": 156 + }, + { + "from": 160, + "to": 159 + }, + { + "from": 161, + "to": 159 + }, + { + "from": 162, + "to": 159 + }, + { + "from": 163, + "to": 159 + }, + { + "from": 164, + "to": 159 + }, + { + "from": 85, + "to": 159 + }, + { + "from": 87, + "to": 159 + }, + { + "from": 165, + "to": 159 + }, + { + "from": 168, + "to": 167 + }, + { + "from": 169, + "to": 167 + }, + { + "from": 173, + "to": 172 + }, + { + "from": 174, + "to": 172 + }, + { + "from": 176, + "to": 175 + }, + { + "from": 175, + "to": 177 + }, + { + "from": 176, + "to": 177 + }, + { + "from": 134, + "to": 178 + }, + { + "from": 138, + "to": 178 + }, + { + "from": 139, + "to": 178 + }, + { + "from": 179, + "to": 178 + }, + { + "from": 140, + "to": 178 + }, + { + "from": 141, + "to": 178 + }, + { + "from": 178, + "to": 181 + }, + { + "from": 185, + "to": 184 + }, + { + "from": 187, + "to": 186 + }, + { + "from": 190, + "to": 189 + }, + { + "from": 198, + "to": 197 + }, + { + "from": 199, + "to": 197 + }, + { + "from": 200, + "to": 199 + }, + { + "from": 207, + "to": 206 + }, + { + "from": 205, + "to": 207 + }, + { + "from": 213, + "to": 212 + }, + { + "from": 214, + "to": 212 + }, + { + "from": 135, + "to": 212 + }, + { + "from": 33, + "to": 212 + }, + { + "from": 215, + "to": 212 + }, + { + "from": 217, + "to": 216 + }, + { + "from": 217, + "to": 218 + }, + { + "from": 219, + "to": 213 + }, + { + "from": 134, + "to": 213 + }, + { + "from": 220, + "to": 213 + }, + { + "from": 221, + "to": 213 + }, + { + "from": 31, + "to": 213 + }, + { + "from": 126, + "to": 213 + }, + { + "from": 230, + "to": 229 + }, + { + "from": 258, + "to": 257 + }, + { + "from": 66, + "to": 259 + }, + { + "from": 259, + "to": 260 + }, + { + "from": 68, + "to": 260 + }, + { + "from": 262, + "to": 261 + }, + { + "from": 263, + "to": 261 + }, + { + "from": 264, + "to": 261 + }, + { + "from": 265, + "to": 261 + }, + { + "from": 266, + "to": 261 + }, + { + "from": 267, + "to": 261 + }, + { + "from": 75, + "to": 261 + }, + { + "from": 76, + "to": 261 + }, + { + "from": 268, + "to": 261 + }, + { + "from": 269, + "to": 261 + }, + { + "from": 270, + "to": 261 + }, + { + "from": 271, + "to": 261 + }, + { + "from": 53, + "to": 261 + }, + { + "from": 54, + "to": 261 + }, + { + "from": 262, + "to": 272 + }, + { + "from": 263, + "to": 272 + }, + { + "from": 264, + "to": 272 + }, + { + "from": 265, + "to": 272 + }, + { + "from": 266, + "to": 272 + }, + { + "from": 267, + "to": 272 + }, + { + "from": 75, + "to": 272 + }, + { + "from": 76, + "to": 272 + }, + { + "from": 268, + "to": 272 + }, + { + "from": 269, + "to": 272 + }, + { + "from": 270, + "to": 272 + }, + { + "from": 271, + "to": 272 + }, + { + "from": 53, + "to": 272 + }, + { + "from": 54, + "to": 272 + }, + { + "from": 262, + "to": 273 + }, + { + "from": 263, + "to": 273 + }, + { + "from": 264, + "to": 273 + }, + { + "from": 265, + "to": 273 + }, + { + "from": 266, + "to": 273 + }, + { + "from": 267, + "to": 273 + }, + { + "from": 75, + "to": 273 + }, + { + "from": 76, + "to": 273 + }, + { + "from": 268, + "to": 273 + }, + { + "from": 269, + "to": 273 + }, + { + "from": 270, + "to": 273 + }, + { + "from": 271, + "to": 273 + }, + { + "from": 53, + "to": 273 + }, + { + "from": 54, + "to": 273 + }, + { + "from": 286, + "to": 285 + }, + { + "from": 287, + "to": 285 + }, + { + "from": 289, + "to": 288 + }, + { + "from": 291, + "to": 290 + }, + { + "from": 140, + "to": 290 + }, + { + "from": 292, + "to": 290 + }, + { + "from": 141, + "to": 290 + }, + { + "from": 294, + "to": 293 + }, + { + "from": 295, + "to": 293 + }, + { + "from": 135, + "to": 293 + }, + { + "from": 296, + "to": 293 + }, + { + "from": 262, + "to": 287 + }, + { + "from": 263, + "to": 287 + }, + { + "from": 299, + "to": 287 + }, + { + "from": 300, + "to": 287 + }, + { + "from": 75, + "to": 287 + }, + { + "from": 76, + "to": 287 + }, + { + "from": 268, + "to": 287 + }, + { + "from": 269, + "to": 287 + }, + { + "from": 53, + "to": 287 + }, + { + "from": 54, + "to": 287 + }, + { + "from": 302, + "to": 301 + }, + { + "from": 129, + "to": 301 + }, + { + "from": 130, + "to": 301 + }, + { + "from": 303, + "to": 301 + }, + { + "from": 304, + "to": 301 + }, + { + "from": 309, + "to": 308 + }, + { + "from": 310, + "to": 308 + }, + { + "from": 312, + "to": 311 + }, + { + "from": 313, + "to": 311 + }, + { + "from": 318, + "to": 317 + }, + { + "from": 319, + "to": 317 + }, + { + "from": 320, + "to": 317 + }, + { + "from": 318, + "to": 321 + }, + { + "from": 319, + "to": 321 + }, + { + "from": 320, + "to": 321 + }, + { + "from": 319, + "to": 322 + }, + { + "from": 323, + "to": 322 + }, + { + "from": 323, + "to": 324 + }, + { + "from": 318, + "to": 327 + }, + { + "from": 319, + "to": 327 + }, + { + "from": 320, + "to": 327 + }, + { + "from": 330, + "to": 329 + }, + { + "from": 336, + "to": 335 + }, + { + "from": 337, + "to": 335 + }, + { + "from": 82, + "to": 341 + }, + { + "from": 83, + "to": 341 + }, + { + "from": 84, + "to": 341 + }, + { + "from": 82, + "to": 342 + }, + { + "from": 83, + "to": 342 + }, + { + "from": 84, + "to": 342 + }, + { + "from": 82, + "to": 343 + }, + { + "from": 83, + "to": 343 + }, + { + "from": 84, + "to": 343 + }, + { + "from": 351, + "to": 350 + }, + { + "from": 350, + "to": 350 + }, + { + "from": 353, + "to": 352 + }, + { + "from": 352, + "to": 352 + }, + { + "from": 354, + "to": 354 + }, + { + "from": 355, + "to": 354 + }, + { + "from": 358, + "to": 357 + }, + { + "from": 357, + "to": 357 + }, + { + "from": 360, + "to": 359 + }, + { + "from": 359, + "to": 359 + }, + { + "from": 368, + "to": 367 + }, + { + "from": 369, + "to": 367 + }, + { + "from": 370, + "to": 367 + }, + { + "from": 379, + "to": 378 + }, + { + "from": 377, + "to": 380 + }, + { + "from": 382, + "to": 381 + }, + { + "from": 7, + "to": 384 + }, + { + "from": 385, + "to": 384 + }, + { + "from": 384, + "to": 386 + }, + { + "from": 386, + "to": 387 + }, + { + "from": 393, + "to": 392 + }, + { + "from": 394, + "to": 392 + }, + { + "from": 395, + "to": 392 + }, + { + "from": 392, + "to": 396 + }, + { + "from": 399, + "to": 398 + }, + { + "from": 410, + "to": 409 + }, + { + "from": 411, + "to": 409 + }, + { + "from": 412, + "to": 409 + }, + { + "from": 411, + "to": 415 + }, + { + "from": 190, + "to": 427 + }, + { + "from": 190, + "to": 428 + }, + { + "from": 189, + "to": 432 + }, + { + "from": 190, + "to": 432 + }, + { + "from": 441, + "to": 440 + }, + { + "from": 442, + "to": 440 + }, + { + "from": 443, + "to": 440 + }, + { + "from": 444, + "to": 440 + }, + { + "from": 445, + "to": 440 + }, + { + "from": 446, + "to": 440 + }, + { + "from": 447, + "to": 440 + }, + { + "from": 448, + "to": 440 + }, + { + "from": 440, + "to": 449 + }, + { + "from": 451, + "to": 450 + }, + { + "from": 452, + "to": 451 + }, + { + "from": 410, + "to": 457 + }, + { + "from": 458, + "to": 457 + }, + { + "from": 472, + "to": 471 + }, + { + "from": 471, + "to": 471 + }, + { + "from": 477, + "to": 476 + }, + { + "from": 482, + "to": 481 + }, + { + "from": 489, + "to": 488 + }, + { + "from": 490, + "to": 488 + }, + { + "from": 23, + "to": 488 + }, + { + "from": 24, + "to": 488 + }, + { + "from": 491, + "to": 488 + }, + { + "from": 492, + "to": 488 + }, + { + "from": 302, + "to": 504 + }, + { + "from": 505, + "to": 504 + }, + { + "from": 302, + "to": 509 + }, + { + "from": 505, + "to": 509 + }, + { + "from": 302, + "to": 510 + }, + { + "from": 505, + "to": 510 + }, + { + "from": 302, + "to": 511 + }, + { + "from": 505, + "to": 511 + }, + { + "from": 157, + "to": 512 + }, + { + "from": 169, + "to": 512 + }, + { + "from": 513, + "to": 512 + }, + { + "from": 82, + "to": 520 + }, + { + "from": 83, + "to": 520 + }, + { + "from": 84, + "to": 520 + }, + { + "from": 523, + "to": 522 + }, + { + "from": 524, + "to": 522 + }, + { + "from": 525, + "to": 522 + }, + { + "from": 537, + "to": 536 + }, + { + "from": 538, + "to": 536 + }, + { + "from": 539, + "to": 536 + }, + { + "from": 540, + "to": 536 + }, + { + "from": 542, + "to": 541 + }, + { + "from": 543, + "to": 541 + }, + { + "from": 302, + "to": 544 + }, + { + "from": 547, + "to": 546 + }, + { + "from": 543, + "to": 546 + }, + { + "from": 134, + "to": 548 + }, + { + "from": 138, + "to": 548 + }, + { + "from": 549, + "to": 548 + }, + { + "from": 550, + "to": 548 + }, + { + "from": 551, + "to": 548 + }, + { + "from": 552, + "to": 548 + }, + { + "from": 302, + "to": 548 + }, + { + "from": 505, + "to": 548 + }, + { + "from": 543, + "to": 548 + }, + { + "from": 547, + "to": 548 + }, + { + "from": 547, + "to": 551 + }, + { + "from": 543, + "to": 551 + }, + { + "from": 547, + "to": 553 + }, + { + "from": 543, + "to": 553 + }, + { + "from": 269, + "to": 554 + }, + { + "from": 268, + "to": 554 + }, + { + "from": 537, + "to": 555 + }, + { + "from": 538, + "to": 555 + }, + { + "from": 539, + "to": 555 + }, + { + "from": 540, + "to": 555 + }, + { + "from": 561, + "to": 560 + }, + { + "from": 562, + "to": 560 + }, + { + "from": 563, + "to": 560 + }, + { + "from": 564, + "to": 560 + }, + { + "from": 565, + "to": 560 + }, + { + "from": 566, + "to": 560 + }, + { + "from": 567, + "to": 560 + }, + { + "from": 568, + "to": 560 + }, + { + "from": 571, + "to": 570 + }, + { + "from": 68, + "to": 570 + }, + { + "from": 66, + "to": 571 + }, + { + "from": 444, + "to": 581 + }, + { + "from": 137, + "to": 581 + }, + { + "from": 134, + "to": 581 + }, + { + "from": 447, + "to": 581 + }, + { + "from": 16, + "to": 582 + }, + { + "from": 17, + "to": 582 + }, + { + "from": 82, + "to": 583 + }, + { + "from": 83, + "to": 583 + }, + { + "from": 84, + "to": 583 + }, + { + "from": 82, + "to": 584 + }, + { + "from": 83, + "to": 584 + }, + { + "from": 84, + "to": 584 + }, + { + "from": 82, + "to": 585 + }, + { + "from": 83, + "to": 585 + }, + { + "from": 84, + "to": 585 + }, + { + "from": 82, + "to": 586 + }, + { + "from": 83, + "to": 586 + }, + { + "from": 84, + "to": 586 + }, + { + "from": 82, + "to": 587 + }, + { + "from": 83, + "to": 587 + }, + { + "from": 84, + "to": 587 + }, + { + "from": 82, + "to": 588 + }, + { + "from": 83, + "to": 588 + }, + { + "from": 84, + "to": 588 + }, + { + "from": 591, + "to": 591 + }, + { + "from": 592, + "to": 591 + }, + { + "from": 593, + "to": 593 + }, + { + "from": 594, + "to": 593 + }, + { + "from": 597, + "to": 596 + }, + { + "from": 598, + "to": 597 + }, + { + "from": 599, + "to": 599 + }, + { + "from": 600, + "to": 599 + }, + { + "from": 603, + "to": 602 + }, + { + "from": 602, + "to": 602 + }, + { + "from": 605, + "to": 604 + }, + { + "from": 604, + "to": 604 + }, + { + "from": 607, + "to": 606 + }, + { + "from": 606, + "to": 606 + }, + { + "from": 625, + "to": 624 + }, + { + "from": 629, + "to": 628 + }, + { + "from": 630, + "to": 628 + }, + { + "from": 631, + "to": 628 + }, + { + "from": 261, + "to": 640 + }, + { + "from": 272, + "to": 640 + }, + { + "from": 273, + "to": 640 + }, + { + "from": 272, + "to": 641 + }, + { + "from": 261, + "to": 644 + }, + { + "from": 272, + "to": 644 + }, + { + "from": 273, + "to": 644 + }, + { + "from": 272, + "to": 645 + }, + { + "from": 640, + "to": 646 + }, + { + "from": 647, + "to": 646 + }, + { + "from": 648, + "to": 646 + }, + { + "from": 653, + "to": 652 + }, + { + "from": 654, + "to": 652 + }, + { + "from": 135, + "to": 652 + }, + { + "from": 665, + "to": 664 + }, + { + "from": 8, + "to": 679 + }, + { + "from": 6, + "to": 679 + }, + { + "from": 384, + "to": 679 + }, + { + "from": 681, + "to": 680 + }, + { + "from": 686, + "to": 685 + }, + { + "from": 185, + "to": 690 + }, + { + "from": 187, + "to": 690 + }, + { + "from": 705, + "to": 704 + }, + { + "from": 705, + "to": 708 + }, + { + "from": 705, + "to": 709 + }, + { + "from": 7, + "to": 8 + }, + { + "from": 385, + "to": 8 + }, + { + "from": 730, + "to": 729 + }, + { + "from": 731, + "to": 729 + }, + { + "from": 732, + "to": 729 + }, + { + "from": 729, + "to": 733 + }, + { + "from": 8, + "to": 734 + }, + { + "from": 6, + "to": 734 + }, + { + "from": 742, + "to": 741 + }, + { + "from": 747, + "to": 746 + }, + { + "from": 179, + "to": 748 + }, + { + "from": 752, + "to": 751 + }, + { + "from": 754, + "to": 753 + }, + { + "from": 753, + "to": 755 + }, + { + "from": 761, + "to": 760 + }, + { + "from": 762, + "to": 760 + }, + { + "from": 763, + "to": 760 + }, + { + "from": 764, + "to": 760 + }, + { + "from": 765, + "to": 760 + }, + { + "from": 752, + "to": 773 + }, + { + "from": 752, + "to": 775 + }, + { + "from": 782, + "to": 781 + }, + { + "from": 168, + "to": 784 + }, + { + "from": 169, + "to": 784 + }, + { + "from": 537, + "to": 794 + }, + { + "from": 538, + "to": 794 + }, + { + "from": 539, + "to": 794 + }, + { + "from": 540, + "to": 794 + }, + { + "from": 537, + "to": 795 + }, + { + "from": 538, + "to": 795 + }, + { + "from": 539, + "to": 795 + }, + { + "from": 540, + "to": 795 + }, + { + "from": 797, + "to": 796 + }, + { + "from": 7, + "to": 796 + }, + { + "from": 3, + "to": 796 + }, + { + "from": 385, + "to": 796 + }, + { + "from": 798, + "to": 796 + }, + { + "from": 542, + "to": 799 + }, + { + "from": 800, + "to": 799 + }, + { + "from": 550, + "to": 801 + }, + { + "from": 542, + "to": 801 + }, + { + "from": 543, + "to": 801 + }, + { + "from": 138, + "to": 801 + }, + { + "from": 134, + "to": 801 + }, + { + "from": 797, + "to": 803 + }, + { + "from": 537, + "to": 804 + }, + { + "from": 538, + "to": 804 + }, + { + "from": 539, + "to": 804 + }, + { + "from": 540, + "to": 804 + }, + { + "from": 537, + "to": 805 + }, + { + "from": 538, + "to": 805 + }, + { + "from": 539, + "to": 805 + }, + { + "from": 540, + "to": 805 + }, + { + "from": 537, + "to": 806 + }, + { + "from": 538, + "to": 806 + }, + { + "from": 539, + "to": 806 + }, + { + "from": 540, + "to": 806 + }, + { + "from": 542, + "to": 807 + }, + { + "from": 800, + "to": 807 + }, + { + "from": 809, + "to": 809 + }, + { + "from": 810, + "to": 809 + }, + { + "from": 82, + "to": 812 + }, + { + "from": 83, + "to": 812 + }, + { + "from": 84, + "to": 812 + }, + { + "from": 810, + "to": 813 + }, + { + "from": 129, + "to": 814 + }, + { + "from": 130, + "to": 814 + }, + { + "from": 816, + "to": 815 + }, + { + "from": 817, + "to": 815 + }, + { + "from": 818, + "to": 816 + }, + { + "from": 817, + "to": 816 + }, + { + "from": 817, + "to": 818 + }, + { + "from": 446, + "to": 821 + }, + { + "from": 831, + "to": 830 + }, + { + "from": 844, + "to": 844 + }, + { + "from": 845, + "to": 844 + }, + { + "from": 847, + "to": 846 + }, + { + "from": 846, + "to": 846 + }, + { + "from": 848, + "to": 848 + }, + { + "from": 849, + "to": 848 + }, + { + "from": 851, + "to": 850 + }, + { + "from": 850, + "to": 850 + }, + { + "from": 853, + "to": 852 + }, + { + "from": 852, + "to": 852 + }, + { + "from": 855, + "to": 854 + }, + { + "from": 854, + "to": 854 + }, + { + "from": 858, + "to": 857 + }, + { + "from": 862, + "to": 861 + }, + { + "from": 858, + "to": 863 + }, + { + "from": 864, + "to": 863 + }, + { + "from": 871, + "to": 870 + }, + { + "from": 872, + "to": 870 + }, + { + "from": 900, + "to": 900 + }, + { + "from": 902, + "to": 901 + }, + { + "from": 903, + "to": 901 + }, + { + "from": 904, + "to": 901 + }, + { + "from": 902, + "to": 909 + }, + { + "from": 903, + "to": 909 + }, + { + "from": 904, + "to": 909 + }, + { + "from": 915, + "to": 914 + }, + { + "from": 914, + "to": 916 + }, + { + "from": 920, + "to": 919 + }, + { + "from": 31, + "to": 922 + }, + { + "from": 135, + "to": 922 + }, + { + "from": 139, + "to": 922 + }, + { + "from": 923, + "to": 922 + }, + { + "from": 253, + "to": 932 + }, + { + "from": 732, + "to": 932 + }, + { + "from": 937, + "to": 936 + }, + { + "from": 537, + "to": 940 + }, + { + "from": 538, + "to": 940 + }, + { + "from": 539, + "to": 940 + }, + { + "from": 540, + "to": 940 + }, + { + "from": 705, + "to": 942 + }, + { + "from": 537, + "to": 943 + }, + { + "from": 538, + "to": 943 + }, + { + "from": 539, + "to": 943 + }, + { + "from": 540, + "to": 943 + }, + { + "from": 949, + "to": 948 + }, + { + "from": 648, + "to": 949 + }, + { + "from": 952, + "to": 411 + }, + { + "from": 953, + "to": 411 + }, + { + "from": 954, + "to": 411 + }, + { + "from": 955, + "to": 411 + }, + { + "from": 956, + "to": 411 + }, + { + "from": 957, + "to": 411 + }, + { + "from": 958, + "to": 411 + }, + { + "from": 959, + "to": 411 + }, + { + "from": 960, + "to": 411 + }, + { + "from": 388, + "to": 970 + }, + { + "from": 978, + "to": 977 + }, + { + "from": 982, + "to": 981 + }, + { + "from": 988, + "to": 987 + }, + { + "from": 748, + "to": 993 + }, + { + "from": 994, + "to": 995 + }, + { + "from": 994, + "to": 996 + }, + { + "from": 995, + "to": 996 + }, + { + "from": 954, + "to": 1012 + }, + { + "from": 1013, + "to": 1012 + }, + { + "from": 1019, + "to": 1018 + }, + { + "from": 135, + "to": 1018 + }, + { + "from": 1020, + "to": 323 + }, + { + "from": 1024, + "to": 1023 + }, + { + "from": 1026, + "to": 1025 + }, + { + "from": 1027, + "to": 1025 + }, + { + "from": 1028, + "to": 1025 + }, + { + "from": 1024, + "to": 1025 + }, + { + "from": 1029, + "to": 1025 + }, + { + "from": 1035, + "to": 1034 + }, + { + "from": 6, + "to": 1036 + }, + { + "from": 1037, + "to": 1036 + }, + { + "from": 1038, + "to": 1036 + }, + { + "from": 384, + "to": 1036 + }, + { + "from": 386, + "to": 1036 + }, + { + "from": 387, + "to": 1036 + }, + { + "from": 129, + "to": 1044 + }, + { + "from": 505, + "to": 1044 + }, + { + "from": 130, + "to": 1044 + }, + { + "from": 797, + "to": 1045 + }, + { + "from": 384, + "to": 1045 + }, + { + "from": 1046, + "to": 1045 + }, + { + "from": 302, + "to": 1049 + }, + { + "from": 505, + "to": 1049 + }, + { + "from": 547, + "to": 1050 + }, + { + "from": 542, + "to": 1051 + }, + { + "from": 543, + "to": 1051 + }, + { + "from": 29, + "to": 258 + }, + { + "from": 129, + "to": 258 + }, + { + "from": 129, + "to": 1059 + }, + { + "from": 130, + "to": 1059 + }, + { + "from": 1060, + "to": 1059 + }, + { + "from": 133, + "to": 1059 + }, + { + "from": 1061, + "to": 1059 + }, + { + "from": 1069, + "to": 1068 + }, + { + "from": 1020, + "to": 1068 + }, + { + "from": 323, + "to": 1068 + }, + { + "from": 318, + "to": 1068 + }, + { + "from": 319, + "to": 1068 + }, + { + "from": 320, + "to": 1068 + }, + { + "from": 1083, + "to": 1082 + }, + { + "from": 1088, + "to": 1087 + }, + { + "from": 1087, + "to": 1087 + }, + { + "from": 270, + "to": 271 + }, + { + "from": 271, + "to": 271 + }, + { + "from": 299, + "to": 271 + }, + { + "from": 300, + "to": 271 + }, + { + "from": 752, + "to": 1091 + }, + { + "from": 1098, + "to": 1100 + }, + { + "from": 1101, + "to": 1100 + }, + { + "from": 1103, + "to": 625 + }, + { + "from": 624, + "to": 625 + }, + { + "from": 625, + "to": 1103 + }, + { + "from": 1109, + "to": 1109 + }, + { + "from": 1110, + "to": 1109 + }, + { + "from": 1113, + "to": 1112 + }, + { + "from": 273, + "to": 1124 + }, + { + "from": 261, + "to": 647 + }, + { + "from": 261, + "to": 1125 + }, + { + "from": 273, + "to": 648 + }, + { + "from": 273, + "to": 1126 + }, + { + "from": 82, + "to": 1126 + }, + { + "from": 83, + "to": 1126 + }, + { + "from": 84, + "to": 1126 + }, + { + "from": 653, + "to": 1127 + }, + { + "from": 1128, + "to": 1127 + }, + { + "from": 654, + "to": 1127 + }, + { + "from": 1129, + "to": 1127 + }, + { + "from": 1131, + "to": 1130 + }, + { + "from": 1132, + "to": 1130 + }, + { + "from": 1133, + "to": 1130 + }, + { + "from": 1141, + "to": 1140 + }, + { + "from": 598, + "to": 1147 + }, + { + "from": 653, + "to": 1147 + }, + { + "from": 1148, + "to": 1147 + }, + { + "from": 1149, + "to": 1147 + }, + { + "from": 1150, + "to": 1147 + }, + { + "from": 654, + "to": 1147 + }, + { + "from": 253, + "to": 1155 + }, + { + "from": 732, + "to": 1155 + }, + { + "from": 871, + "to": 1156 + }, + { + "from": 657, + "to": 1156 + }, + { + "from": 871, + "to": 1157 + }, + { + "from": 238, + "to": 1157 + }, + { + "from": 871, + "to": 1158 + }, + { + "from": 1161, + "to": 1160 + }, + { + "from": 68, + "to": 1160 + }, + { + "from": 135, + "to": 598 + }, + { + "from": 136, + "to": 598 + }, + { + "from": 139, + "to": 598 + }, + { + "from": 140, + "to": 598 + }, + { + "from": 30, + "to": 598 + }, + { + "from": 385, + "to": 598 + }, + { + "from": 1165, + "to": 1164 + }, + { + "from": 184, + "to": 1166 + }, + { + "from": 186, + "to": 1166 + }, + { + "from": 188, + "to": 1166 + }, + { + "from": 189, + "to": 1166 + }, + { + "from": 190, + "to": 1166 + }, + { + "from": 191, + "to": 1166 + }, + { + "from": 185, + "to": 1166 + }, + { + "from": 187, + "to": 1166 + }, + { + "from": 945, + "to": 1166 + }, + { + "from": 1171, + "to": 1170 + }, + { + "from": 286, + "to": 1174 + }, + { + "from": 1181, + "to": 1180 + }, + { + "from": 1182, + "to": 1180 + }, + { + "from": 1183, + "to": 1180 + }, + { + "from": 1184, + "to": 1180 + }, + { + "from": 1192, + "to": 1191 + }, + { + "from": 1193, + "to": 1191 + }, + { + "from": 410, + "to": 1191 + }, + { + "from": 129, + "to": 1194 + }, + { + "from": 441, + "to": 1195 + }, + { + "from": 443, + "to": 1195 + }, + { + "from": 30, + "to": 1195 + }, + { + "from": 33, + "to": 1195 + }, + { + "from": 442, + "to": 1195 + }, + { + "from": 446, + "to": 1195 + }, + { + "from": 578, + "to": 441 + }, + { + "from": 1196, + "to": 441 + }, + { + "from": 215, + "to": 441 + }, + { + "from": 1197, + "to": 441 + }, + { + "from": 1198, + "to": 441 + }, + { + "from": 442, + "to": 441 + }, + { + "from": 446, + "to": 441 + }, + { + "from": 411, + "to": 1199 + }, + { + "from": 411, + "to": 1200 + }, + { + "from": 410, + "to": 1201 + }, + { + "from": 411, + "to": 1201 + }, + { + "from": 1193, + "to": 1201 + }, + { + "from": 412, + "to": 1201 + }, + { + "from": 1204, + "to": 1203 + }, + { + "from": 1223, + "to": 1222 + }, + { + "from": 1224, + "to": 1222 + }, + { + "from": 1225, + "to": 1226 + }, + { + "from": 947, + "to": 1224 + }, + { + "from": 296, + "to": 1230 + }, + { + "from": 1231, + "to": 1230 + }, + { + "from": 296, + "to": 1233 + }, + { + "from": 1231, + "to": 1233 + }, + { + "from": 540, + "to": 1244 + }, + { + "from": 1260, + "to": 1259 + }, + { + "from": 954, + "to": 1192 + }, + { + "from": 1013, + "to": 1192 + }, + { + "from": 1192, + "to": 1283 + }, + { + "from": 1192, + "to": 1284 + }, + { + "from": 302, + "to": 1287 + }, + { + "from": 505, + "to": 1287 + }, + { + "from": 302, + "to": 1288 + }, + { + "from": 505, + "to": 1288 + }, + { + "from": 1290, + "to": 1289 + }, + { + "from": 1294, + "to": 1293 + }, + { + "from": 540, + "to": 1293 + }, + { + "from": 29, + "to": 1295 + }, + { + "from": 38, + "to": 1295 + }, + { + "from": 302, + "to": 1296 + }, + { + "from": 505, + "to": 1296 + }, + { + "from": 505, + "to": 1297 + }, + { + "from": 547, + "to": 1297 + }, + { + "from": 1305, + "to": 1304 + }, + { + "from": 1306, + "to": 1304 + }, + { + "from": 652, + "to": 1308 + }, + { + "from": 1129, + "to": 1308 + }, + { + "from": 1310, + "to": 1309 + }, + { + "from": 1311, + "to": 1309 + }, + { + "from": 1069, + "to": 1309 + }, + { + "from": 1020, + "to": 1309 + }, + { + "from": 323, + "to": 1309 + }, + { + "from": 1310, + "to": 1312 + }, + { + "from": 1311, + "to": 1312 + }, + { + "from": 1069, + "to": 1312 + }, + { + "from": 1020, + "to": 1312 + }, + { + "from": 323, + "to": 1312 + }, + { + "from": 1310, + "to": 1313 + }, + { + "from": 1311, + "to": 1313 + }, + { + "from": 1069, + "to": 1313 + }, + { + "from": 1020, + "to": 1313 + }, + { + "from": 323, + "to": 1313 + }, + { + "from": 1310, + "to": 1314 + }, + { + "from": 1311, + "to": 1314 + }, + { + "from": 1069, + "to": 1314 + }, + { + "from": 1020, + "to": 1314 + }, + { + "from": 323, + "to": 1314 + }, + { + "from": 1310, + "to": 1315 + }, + { + "from": 1311, + "to": 1315 + }, + { + "from": 1069, + "to": 1315 + }, + { + "from": 1020, + "to": 1315 + }, + { + "from": 323, + "to": 1315 + }, + { + "from": 29, + "to": 1316 + }, + { + "from": 1317, + "to": 1316 + }, + { + "from": 1318, + "to": 1316 + }, + { + "from": 1327, + "to": 1326 + }, + { + "from": 1328, + "to": 1326 + }, + { + "from": 1329, + "to": 1326 + }, + { + "from": 1331, + "to": 1331 + }, + { + "from": 1332, + "to": 1331 + }, + { + "from": 1334, + "to": 1333 + }, + { + "from": 1333, + "to": 1333 + }, + { + "from": 1336, + "to": 1335 + }, + { + "from": 1335, + "to": 1335 + }, + { + "from": 1338, + "to": 1337 + }, + { + "from": 1337, + "to": 1337 + }, + { + "from": 1340, + "to": 1339 + }, + { + "from": 1339, + "to": 1339 + }, + { + "from": 872, + "to": 1350 + }, + { + "from": 1351, + "to": 1350 + }, + { + "from": 954, + "to": 1353 + }, + { + "from": 369, + "to": 1353 + }, + { + "from": 370, + "to": 1353 + }, + { + "from": 261, + "to": 1361 + }, + { + "from": 1361, + "to": 1361 + }, + { + "from": 273, + "to": 1361 + }, + { + "from": 1363, + "to": 1362 + }, + { + "from": 1364, + "to": 1362 + }, + { + "from": 261, + "to": 1366 + }, + { + "from": 272, + "to": 1366 + }, + { + "from": 273, + "to": 1366 + }, + { + "from": 261, + "to": 1367 + }, + { + "from": 272, + "to": 1367 + }, + { + "from": 273, + "to": 1367 + }, + { + "from": 261, + "to": 1368 + }, + { + "from": 272, + "to": 1368 + }, + { + "from": 273, + "to": 1368 + }, + { + "from": 1327, + "to": 1369 + }, + { + "from": 1328, + "to": 1369 + }, + { + "from": 1329, + "to": 1369 + }, + { + "from": 1385, + "to": 1384 + }, + { + "from": 1386, + "to": 1384 + }, + { + "from": 1387, + "to": 1384 + }, + { + "from": 133, + "to": 1388 + }, + { + "from": 134, + "to": 1388 + }, + { + "from": 138, + "to": 1388 + }, + { + "from": 1389, + "to": 1388 + }, + { + "from": 550, + "to": 1388 + }, + { + "from": 1061, + "to": 1388 + }, + { + "from": 29, + "to": 1388 + }, + { + "from": 1060, + "to": 1388 + }, + { + "from": 1059, + "to": 1388 + }, + { + "from": 1390, + "to": 1388 + }, + { + "from": 442, + "to": 1388 + }, + { + "from": 134, + "to": 1391 + }, + { + "from": 138, + "to": 1391 + }, + { + "from": 1389, + "to": 1391 + }, + { + "from": 550, + "to": 1391 + }, + { + "from": 31, + "to": 1391 + }, + { + "from": 1392, + "to": 1391 + }, + { + "from": 1388, + "to": 1391 + }, + { + "from": 1390, + "to": 1391 + }, + { + "from": 446, + "to": 1391 + }, + { + "from": 1398, + "to": 1397 + }, + { + "from": 1061, + "to": 1401 + }, + { + "from": 133, + "to": 1401 + }, + { + "from": 954, + "to": 1405 + }, + { + "from": 954, + "to": 412 + }, + { + "from": 82, + "to": 1409 + }, + { + "from": 83, + "to": 1409 + }, + { + "from": 84, + "to": 1409 + }, + { + "from": 1412, + "to": 1411 + }, + { + "from": 731, + "to": 1411 + }, + { + "from": 1413, + "to": 1411 + }, + { + "from": 1415, + "to": 1417 + }, + { + "from": 1412, + "to": 1419 + }, + { + "from": 540, + "to": 1419 + }, + { + "from": 1412, + "to": 1420 + }, + { + "from": 540, + "to": 1420 + }, + { + "from": 1412, + "to": 1422 + }, + { + "from": 540, + "to": 1422 + }, + { + "from": 871, + "to": 1423 + }, + { + "from": 1424, + "to": 1423 + }, + { + "from": 1425, + "to": 1423 + }, + { + "from": 871, + "to": 1426 + }, + { + "from": 872, + "to": 1426 + }, + { + "from": 1412, + "to": 1427 + }, + { + "from": 540, + "to": 1427 + }, + { + "from": 958, + "to": 1428 + }, + { + "from": 140, + "to": 477 + }, + { + "from": 141, + "to": 477 + }, + { + "from": 29, + "to": 477 + }, + { + "from": 30, + "to": 477 + }, + { + "from": 31, + "to": 477 + }, + { + "from": 516, + "to": 477 + }, + { + "from": 1433, + "to": 1432 + }, + { + "from": 1434, + "to": 1432 + }, + { + "from": 1443, + "to": 1442 + }, + { + "from": 1441, + "to": 1442 + }, + { + "from": 411, + "to": 1444 + }, + { + "from": 954, + "to": 1445 + }, + { + "from": 1193, + "to": 1445 + }, + { + "from": 410, + "to": 1445 + }, + { + "from": 1460, + "to": 1459 + }, + { + "from": 1473, + "to": 1472 + }, + { + "from": 1474, + "to": 1472 + }, + { + "from": 1475, + "to": 1472 + }, + { + "from": 1476, + "to": 1472 + }, + { + "from": 1492, + "to": 1491 + }, + { + "from": 1493, + "to": 1491 + }, + { + "from": 1494, + "to": 1491 + }, + { + "from": 1510, + "to": 1509 + }, + { + "from": 862, + "to": 1510 + }, + { + "from": 1231, + "to": 1515 + }, + { + "from": 1515, + "to": 1517 + }, + { + "from": 7, + "to": 6 + }, + { + "from": 385, + "to": 6 + }, + { + "from": 6, + "to": 1037 + }, + { + "from": 1037, + "to": 1038 + }, + { + "from": 1527, + "to": 1526 + }, + { + "from": 1528, + "to": 1526 + }, + { + "from": 1281, + "to": 1526 + }, + { + "from": 1530, + "to": 1529 + }, + { + "from": 1533, + "to": 1534 + }, + { + "from": 1535, + "to": 1534 + }, + { + "from": 1536, + "to": 1534 + }, + { + "from": 1537, + "to": 1534 + }, + { + "from": 537, + "to": 1543 + }, + { + "from": 538, + "to": 1543 + }, + { + "from": 539, + "to": 1543 + }, + { + "from": 540, + "to": 1543 + }, + { + "from": 537, + "to": 1544 + }, + { + "from": 538, + "to": 1544 + }, + { + "from": 539, + "to": 1544 + }, + { + "from": 540, + "to": 1544 + }, + { + "from": 537, + "to": 1545 + }, + { + "from": 538, + "to": 1545 + }, + { + "from": 539, + "to": 1545 + }, + { + "from": 540, + "to": 1545 + }, + { + "from": 1131, + "to": 1546 + }, + { + "from": 537, + "to": 1548 + }, + { + "from": 538, + "to": 1548 + }, + { + "from": 539, + "to": 1548 + }, + { + "from": 540, + "to": 1548 + }, + { + "from": 537, + "to": 1549 + }, + { + "from": 538, + "to": 1549 + }, + { + "from": 539, + "to": 1549 + }, + { + "from": 540, + "to": 1549 + }, + { + "from": 537, + "to": 1550 + }, + { + "from": 538, + "to": 1550 + }, + { + "from": 539, + "to": 1550 + }, + { + "from": 540, + "to": 1550 + }, + { + "from": 1552, + "to": 1551 + }, + { + "from": 1553, + "to": 1551 + }, + { + "from": 1554, + "to": 1551 + }, + { + "from": 1555, + "to": 1551 + }, + { + "from": 458, + "to": 1551 + }, + { + "from": 1559, + "to": 1558 + }, + { + "from": 1560, + "to": 1558 + }, + { + "from": 289, + "to": 1562 + }, + { + "from": 1565, + "to": 1564 + }, + { + "from": 1566, + "to": 1564 + }, + { + "from": 1567, + "to": 1564 + }, + { + "from": 1568, + "to": 1564 + }, + { + "from": 1569, + "to": 1564 + }, + { + "from": 1570, + "to": 1564 + }, + { + "from": 1571, + "to": 1564 + }, + { + "from": 1572, + "to": 1564 + }, + { + "from": 1573, + "to": 1564 + }, + { + "from": 1574, + "to": 1564 + }, + { + "from": 1575, + "to": 1564 + }, + { + "from": 1576, + "to": 1564 + }, + { + "from": 109, + "to": 1579 + }, + { + "from": 1580, + "to": 1579 + }, + { + "from": 1581, + "to": 1579 + }, + { + "from": 109, + "to": 1582 + }, + { + "from": 1580, + "to": 1582 + }, + { + "from": 1581, + "to": 1582 + }, + { + "from": 109, + "to": 1583 + }, + { + "from": 1580, + "to": 1583 + }, + { + "from": 1581, + "to": 1583 + }, + { + "from": 109, + "to": 1584 + }, + { + "from": 1580, + "to": 1584 + }, + { + "from": 1581, + "to": 1584 + }, + { + "from": 109, + "to": 1585 + }, + { + "from": 1580, + "to": 1585 + }, + { + "from": 1581, + "to": 1585 + }, + { + "from": 1591, + "to": 1590 + }, + { + "from": 1592, + "to": 1590 + }, + { + "from": 1165, + "to": 1612 + }, + { + "from": 1615, + "to": 1614 + }, + { + "from": 540, + "to": 537 + }, + { + "from": 540, + "to": 539 + }, + { + "from": 1618, + "to": 1617 + }, + { + "from": 1621, + "to": 1623 + }, + { + "from": 523, + "to": 1629 + }, + { + "from": 524, + "to": 1629 + }, + { + "from": 525, + "to": 1629 + }, + { + "from": 442, + "to": 443 + }, + { + "from": 446, + "to": 443 + }, + { + "from": 33, + "to": 443 + }, + { + "from": 40, + "to": 443 + }, + { + "from": 1386, + "to": 1387 + }, + { + "from": 1645, + "to": 1644 + }, + { + "from": 1652, + "to": 1651 + }, + { + "from": 291, + "to": 1654 + }, + { + "from": 292, + "to": 1654 + }, + { + "from": 1657, + "to": 1656 + }, + { + "from": 1657, + "to": 1658 + }, + { + "from": 1657, + "to": 1660 + }, + { + "from": 1657, + "to": 1661 + }, + { + "from": 140, + "to": 1669 + }, + { + "from": 477, + "to": 1669 + }, + { + "from": 135, + "to": 1669 + }, + { + "from": 141, + "to": 1669 + }, + { + "from": 1671, + "to": 1670 + }, + { + "from": 1672, + "to": 1670 + }, + { + "from": 135, + "to": 1672 + }, + { + "from": 139, + "to": 1672 + }, + { + "from": 129, + "to": 1673 + }, + { + "from": 133, + "to": 1673 + }, + { + "from": 135, + "to": 1673 + }, + { + "from": 220, + "to": 1673 + }, + { + "from": 29, + "to": 1673 + }, + { + "from": 30, + "to": 1673 + }, + { + "from": 31, + "to": 1673 + }, + { + "from": 1683, + "to": 1682 + }, + { + "from": 1684, + "to": 1682 + }, + { + "from": 1685, + "to": 1682 + }, + { + "from": 1686, + "to": 1682 + }, + { + "from": 1687, + "to": 1682 + }, + { + "from": 554, + "to": 1682 + }, + { + "from": 75, + "to": 1682 + }, + { + "from": 76, + "to": 1682 + }, + { + "from": 77, + "to": 1682 + }, + { + "from": 1688, + "to": 1682 + }, + { + "from": 1689, + "to": 1682 + }, + { + "from": 270, + "to": 1682 + }, + { + "from": 271, + "to": 1682 + }, + { + "from": 1089, + "to": 1682 + }, + { + "from": 1690, + "to": 1682 + }, + { + "from": 1691, + "to": 1682 + }, + { + "from": 1692, + "to": 1682 + }, + { + "from": 267, + "to": 1682 + }, + { + "from": 269, + "to": 1682 + }, + { + "from": 268, + "to": 1682 + }, + { + "from": 265, + "to": 1682 + }, + { + "from": 1693, + "to": 1682 + }, + { + "from": 52, + "to": 1682 + }, + { + "from": 53, + "to": 1682 + }, + { + "from": 54, + "to": 1682 + }, + { + "from": 1694, + "to": 1682 + }, + { + "from": 1695, + "to": 1682 + }, + { + "from": 1696, + "to": 1682 + }, + { + "from": 262, + "to": 1682 + }, + { + "from": 1697, + "to": 1682 + }, + { + "from": 1698, + "to": 1682 + }, + { + "from": 1699, + "to": 1682 + }, + { + "from": 263, + "to": 1682 + }, + { + "from": 1700, + "to": 1682 + }, + { + "from": 523, + "to": 1704 + }, + { + "from": 524, + "to": 1704 + }, + { + "from": 525, + "to": 1704 + }, + { + "from": 129, + "to": 29 + }, + { + "from": 133, + "to": 29 + }, + { + "from": 129, + "to": 31 + }, + { + "from": 133, + "to": 31 + }, + { + "from": 134, + "to": 31 + }, + { + "from": 138, + "to": 31 + }, + { + "from": 29, + "to": 31 + }, + { + "from": 38, + "to": 31 + }, + { + "from": 135, + "to": 33 + }, + { + "from": 136, + "to": 33 + }, + { + "from": 385, + "to": 33 + }, + { + "from": 29, + "to": 33 + }, + { + "from": 31, + "to": 33 + }, + { + "from": 38, + "to": 33 + }, + { + "from": 954, + "to": 1705 + }, + { + "from": 1193, + "to": 1706 + }, + { + "from": 410, + "to": 1706 + }, + { + "from": 129, + "to": 1707 + }, + { + "from": 133, + "to": 1707 + }, + { + "from": 1724, + "to": 1723 + }, + { + "from": 1725, + "to": 1723 + }, + { + "from": 1731, + "to": 1730 + }, + { + "from": 1743, + "to": 1742 + }, + { + "from": 1746, + "to": 1745 + }, + { + "from": 1747, + "to": 1745 + }, + { + "from": 1753, + "to": 1752 + }, + { + "from": 1754, + "to": 1752 + }, + { + "from": 1755, + "to": 1752 + }, + { + "from": 1752, + "to": 1528 + }, + { + "from": 1753, + "to": 1528 + }, + { + "from": 1754, + "to": 1528 + }, + { + "from": 1755, + "to": 1528 + }, + { + "from": 523, + "to": 1757 + }, + { + "from": 524, + "to": 1757 + }, + { + "from": 525, + "to": 1757 + }, + { + "from": 1192, + "to": 1759 + }, + { + "from": 952, + "to": 1552 + }, + { + "from": 1761, + "to": 1552 + }, + { + "from": 796, + "to": 1767 + }, + { + "from": 797, + "to": 1768 + }, + { + "from": 542, + "to": 1769 + }, + { + "from": 543, + "to": 1769 + }, + { + "from": 797, + "to": 1770 + }, + { + "from": 1290, + "to": 1771 + }, + { + "from": 547, + "to": 1772 + }, + { + "from": 543, + "to": 1772 + }, + { + "from": 292, + "to": 1772 + }, + { + "from": 291, + "to": 1772 + }, + { + "from": 547, + "to": 1773 + }, + { + "from": 543, + "to": 1773 + }, + { + "from": 547, + "to": 1774 + }, + { + "from": 543, + "to": 1774 + }, + { + "from": 537, + "to": 1775 + }, + { + "from": 538, + "to": 1775 + }, + { + "from": 539, + "to": 1775 + }, + { + "from": 540, + "to": 1775 + }, + { + "from": 537, + "to": 1776 + }, + { + "from": 538, + "to": 1776 + }, + { + "from": 539, + "to": 1776 + }, + { + "from": 540, + "to": 1776 + }, + { + "from": 537, + "to": 1777 + }, + { + "from": 538, + "to": 1777 + }, + { + "from": 539, + "to": 1777 + }, + { + "from": 540, + "to": 1777 + }, + { + "from": 537, + "to": 1778 + }, + { + "from": 538, + "to": 1778 + }, + { + "from": 539, + "to": 1778 + }, + { + "from": 540, + "to": 1778 + }, + { + "from": 537, + "to": 1779 + }, + { + "from": 538, + "to": 1779 + }, + { + "from": 539, + "to": 1779 + }, + { + "from": 540, + "to": 1779 + }, + { + "from": 537, + "to": 1782 + }, + { + "from": 538, + "to": 1782 + }, + { + "from": 539, + "to": 1782 + }, + { + "from": 540, + "to": 1782 + }, + { + "from": 537, + "to": 1783 + }, + { + "from": 538, + "to": 1783 + }, + { + "from": 539, + "to": 1783 + }, + { + "from": 540, + "to": 1783 + }, + { + "from": 1785, + "to": 1784 + }, + { + "from": 1786, + "to": 1787 + }, + { + "from": 652, + "to": 1785 + }, + { + "from": 1129, + "to": 1785 + }, + { + "from": 318, + "to": 1791 + }, + { + "from": 319, + "to": 1791 + }, + { + "from": 320, + "to": 1791 + }, + { + "from": 318, + "to": 1792 + }, + { + "from": 319, + "to": 1792 + }, + { + "from": 320, + "to": 1792 + }, + { + "from": 1794, + "to": 1793 + }, + { + "from": 1795, + "to": 1793 + }, + { + "from": 318, + "to": 1802 + }, + { + "from": 319, + "to": 1802 + }, + { + "from": 320, + "to": 1802 + }, + { + "from": 1807, + "to": 1807 + }, + { + "from": 1808, + "to": 1807 + }, + { + "from": 810, + "to": 1820 + }, + { + "from": 813, + "to": 1820 + }, + { + "from": 1821, + "to": 1820 + }, + { + "from": 1822, + "to": 1820 + }, + { + "from": 1823, + "to": 1820 + }, + { + "from": 1828, + "to": 1827 + }, + { + "from": 1835, + "to": 1834 + }, + { + "from": 1837, + "to": 1836 + }, + { + "from": 1838, + "to": 1836 + }, + { + "from": 133, + "to": 1847 + }, + { + "from": 1318, + "to": 1847 + }, + { + "from": 1079, + "to": 1847 + }, + { + "from": 29, + "to": 1847 + }, + { + "from": 1848, + "to": 1847 + }, + { + "from": 38, + "to": 1847 + }, + { + "from": 29, + "to": 1128 + }, + { + "from": 38, + "to": 1128 + }, + { + "from": 134, + "to": 1128 + }, + { + "from": 1318, + "to": 1128 + }, + { + "from": 1079, + "to": 1128 + }, + { + "from": 652, + "to": 1861 + }, + { + "from": 1308, + "to": 1861 + }, + { + "from": 1193, + "to": 1862 + }, + { + "from": 410, + "to": 1862 + }, + { + "from": 1863, + "to": 1862 + }, + { + "from": 1864, + "to": 1862 + }, + { + "from": 1865, + "to": 1862 + }, + { + "from": 458, + "to": 1862 + }, + { + "from": 1061, + "to": 550 + }, + { + "from": 133, + "to": 550 + }, + { + "from": 129, + "to": 1061 + }, + { + "from": 130, + "to": 1061 + }, + { + "from": 132, + "to": 130 + }, + { + "from": 1866, + "to": 130 + }, + { + "from": 1867, + "to": 130 + }, + { + "from": 262, + "to": 1887 + }, + { + "from": 263, + "to": 1887 + }, + { + "from": 264, + "to": 1887 + }, + { + "from": 266, + "to": 1887 + }, + { + "from": 267, + "to": 1887 + }, + { + "from": 75, + "to": 1887 + }, + { + "from": 76, + "to": 1887 + }, + { + "from": 268, + "to": 1887 + }, + { + "from": 265, + "to": 1887 + }, + { + "from": 269, + "to": 1887 + }, + { + "from": 270, + "to": 1887 + }, + { + "from": 271, + "to": 1887 + }, + { + "from": 53, + "to": 1887 + }, + { + "from": 54, + "to": 1887 + }, + { + "from": 134, + "to": 7 + }, + { + "from": 140, + "to": 7 + }, + { + "from": 139, + "to": 7 + }, + { + "from": 141, + "to": 7 + }, + { + "from": 393, + "to": 1889 + }, + { + "from": 947, + "to": 1889 + }, + { + "from": 540, + "to": 1898 + }, + { + "from": 540, + "to": 1899 + }, + { + "from": 540, + "to": 1900 + }, + { + "from": 1463, + "to": 1905 + }, + { + "from": 954, + "to": 1906 + }, + { + "from": 1911, + "to": 1910 + }, + { + "from": 1912, + "to": 1910 + }, + { + "from": 733, + "to": 1910 + }, + { + "from": 1222, + "to": 1910 + }, + { + "from": 1914, + "to": 1913 + }, + { + "from": 1473, + "to": 1939 + }, + { + "from": 1318, + "to": 958 + }, + { + "from": 220, + "to": 958 + }, + { + "from": 135, + "to": 1942 + }, + { + "from": 952, + "to": 1942 + }, + { + "from": 140, + "to": 1942 + }, + { + "from": 141, + "to": 1942 + }, + { + "from": 958, + "to": 1942 + }, + { + "from": 1944, + "to": 1943 + }, + { + "from": 1942, + "to": 1943 + }, + { + "from": 1947, + "to": 1946 + }, + { + "from": 1946, + "to": 1948 + }, + { + "from": 1946, + "to": 1949 + }, + { + "from": 1946, + "to": 1950 + }, + { + "from": 1955, + "to": 1954 + }, + { + "from": 1954, + "to": 1954 + }, + { + "from": 1959, + "to": 1958 + }, + { + "from": 1960, + "to": 1958 + }, + { + "from": 1961, + "to": 1962 + }, + { + "from": 1977, + "to": 1976 + }, + { + "from": 1974, + "to": 1976 + }, + { + "from": 289, + "to": 1979 + }, + { + "from": 1327, + "to": 1980 + }, + { + "from": 1328, + "to": 1980 + }, + { + "from": 1329, + "to": 1980 + }, + { + "from": 537, + "to": 1982 + }, + { + "from": 538, + "to": 1982 + }, + { + "from": 539, + "to": 1982 + }, + { + "from": 540, + "to": 1982 + }, + { + "from": 1265, + "to": 1984 + }, + { + "from": 537, + "to": 1985 + }, + { + "from": 538, + "to": 1985 + }, + { + "from": 539, + "to": 1985 + }, + { + "from": 540, + "to": 1985 + }, + { + "from": 1992, + "to": 1991 + }, + { + "from": 1993, + "to": 1991 + }, + { + "from": 1994, + "to": 1991 + }, + { + "from": 1995, + "to": 1991 + }, + { + "from": 1996, + "to": 1991 + }, + { + "from": 547, + "to": 1991 + }, + { + "from": 1527, + "to": 1997 + }, + { + "from": 1528, + "to": 1997 + }, + { + "from": 1281, + "to": 1997 + }, + { + "from": 1192, + "to": 2003 + }, + { + "from": 2007, + "to": 2009 + }, + { + "from": 537, + "to": 2013 + }, + { + "from": 538, + "to": 2013 + }, + { + "from": 539, + "to": 2013 + }, + { + "from": 540, + "to": 2013 + }, + { + "from": 537, + "to": 2014 + }, + { + "from": 538, + "to": 2014 + }, + { + "from": 539, + "to": 2014 + }, + { + "from": 540, + "to": 2014 + }, + { + "from": 537, + "to": 2017 + }, + { + "from": 538, + "to": 2017 + }, + { + "from": 539, + "to": 2017 + }, + { + "from": 540, + "to": 2017 + }, + { + "from": 537, + "to": 2018 + }, + { + "from": 538, + "to": 2018 + }, + { + "from": 539, + "to": 2018 + }, + { + "from": 540, + "to": 2018 + }, + { + "from": 537, + "to": 2019 + }, + { + "from": 538, + "to": 2019 + }, + { + "from": 539, + "to": 2019 + }, + { + "from": 540, + "to": 2019 + }, + { + "from": 797, + "to": 2020 + }, + { + "from": 797, + "to": 2021 + }, + { + "from": 537, + "to": 2022 + }, + { + "from": 538, + "to": 2022 + }, + { + "from": 539, + "to": 2022 + }, + { + "from": 540, + "to": 2022 + }, + { + "from": 1192, + "to": 2024 + }, + { + "from": 1283, + "to": 2024 + }, + { + "from": 2025, + "to": 2024 + }, + { + "from": 2026, + "to": 2024 + }, + { + "from": 169, + "to": 2031 + }, + { + "from": 988, + "to": 2031 + }, + { + "from": 513, + "to": 2031 + }, + { + "from": 676, + "to": 2031 + }, + { + "from": 677, + "to": 2031 + }, + { + "from": 168, + "to": 2031 + }, + { + "from": 169, + "to": 2032 + }, + { + "from": 988, + "to": 2032 + }, + { + "from": 513, + "to": 2032 + }, + { + "from": 676, + "to": 2032 + }, + { + "from": 677, + "to": 2032 + }, + { + "from": 168, + "to": 2032 + }, + { + "from": 169, + "to": 2049 + }, + { + "from": 988, + "to": 2049 + }, + { + "from": 513, + "to": 2049 + }, + { + "from": 676, + "to": 2049 + }, + { + "from": 677, + "to": 2049 + }, + { + "from": 168, + "to": 2049 + }, + { + "from": 169, + "to": 2052 + }, + { + "from": 988, + "to": 2052 + }, + { + "from": 513, + "to": 2052 + }, + { + "from": 676, + "to": 2052 + }, + { + "from": 677, + "to": 2052 + }, + { + "from": 168, + "to": 2052 + }, + { + "from": 11, + "to": 2053 + }, + { + "from": 17, + "to": 2053 + }, + { + "from": 16, + "to": 2053 + }, + { + "from": 2054, + "to": 2053 + }, + { + "from": 411, + "to": 2053 + }, + { + "from": 2055, + "to": 2053 + }, + { + "from": 2053, + "to": 2053 + }, + { + "from": 2056, + "to": 2053 + }, + { + "from": 2057, + "to": 2053 + }, + { + "from": 954, + "to": 2058 + }, + { + "from": 16, + "to": 2059 + }, + { + "from": 17, + "to": 2059 + }, + { + "from": 2061, + "to": 2060 + }, + { + "from": 2067, + "to": 2066 + }, + { + "from": 2068, + "to": 2066 + }, + { + "from": 384, + "to": 2078 + }, + { + "from": 386, + "to": 2078 + }, + { + "from": 387, + "to": 2078 + }, + { + "from": 653, + "to": 2081 + }, + { + "from": 2082, + "to": 2081 + }, + { + "from": 654, + "to": 2081 + }, + { + "from": 2083, + "to": 2081 + }, + { + "from": 2085, + "to": 2084 + }, + { + "from": 2086, + "to": 2084 + }, + { + "from": 2081, + "to": 2084 + }, + { + "from": 258, + "to": 2087 + }, + { + "from": 2087, + "to": 2088 + }, + { + "from": 2104, + "to": 2103 + }, + { + "from": 2105, + "to": 2103 + }, + { + "from": 2108, + "to": 2108 + }, + { + "from": 2109, + "to": 2108 + }, + { + "from": 109, + "to": 1794 + }, + { + "from": 1580, + "to": 1794 + }, + { + "from": 1581, + "to": 1794 + }, + { + "from": 1743, + "to": 2116 + }, + { + "from": 782, + "to": 2116 + }, + { + "from": 2117, + "to": 2118 + }, + { + "from": 563, + "to": 561 + }, + { + "from": 563, + "to": 562 + }, + { + "from": 731, + "to": 563 + }, + { + "from": 563, + "to": 564 + }, + { + "from": 563, + "to": 565 + }, + { + "from": 563, + "to": 566 + }, + { + "from": 1840, + "to": 2120 + }, + { + "from": 294, + "to": 295 + }, + { + "from": 2124, + "to": 2123 + }, + { + "from": 1851, + "to": 2126 + }, + { + "from": 1523, + "to": 2126 + }, + { + "from": 537, + "to": 2127 + }, + { + "from": 538, + "to": 2127 + }, + { + "from": 539, + "to": 2127 + }, + { + "from": 540, + "to": 2127 + }, + { + "from": 537, + "to": 2128 + }, + { + "from": 538, + "to": 2128 + }, + { + "from": 539, + "to": 2128 + }, + { + "from": 540, + "to": 2128 + }, + { + "from": 537, + "to": 2129 + }, + { + "from": 538, + "to": 2129 + }, + { + "from": 539, + "to": 2129 + }, + { + "from": 540, + "to": 2129 + }, + { + "from": 537, + "to": 2130 + }, + { + "from": 538, + "to": 2130 + }, + { + "from": 539, + "to": 2130 + }, + { + "from": 540, + "to": 2130 + }, + { + "from": 2085, + "to": 2133 + }, + { + "from": 2086, + "to": 2133 + }, + { + "from": 537, + "to": 2134 + }, + { + "from": 538, + "to": 2134 + }, + { + "from": 539, + "to": 2134 + }, + { + "from": 540, + "to": 2134 + }, + { + "from": 2136, + "to": 2135 + }, + { + "from": 2138, + "to": 2137 + }, + { + "from": 2140, + "to": 2139 + }, + { + "from": 1412, + "to": 2145 + }, + { + "from": 1413, + "to": 2145 + }, + { + "from": 731, + "to": 2145 + }, + { + "from": 540, + "to": 2145 + }, + { + "from": 1412, + "to": 2151 + }, + { + "from": 1413, + "to": 2151 + }, + { + "from": 731, + "to": 2151 + }, + { + "from": 540, + "to": 2151 + }, + { + "from": 129, + "to": 38 + }, + { + "from": 133, + "to": 38 + }, + { + "from": 954, + "to": 2178 + }, + { + "from": 1013, + "to": 2178 + }, + { + "from": 954, + "to": 2180 + }, + { + "from": 1428, + "to": 2192 + }, + { + "from": 44, + "to": 2195 + }, + { + "from": 2196, + "to": 2195 + }, + { + "from": 2006, + "to": 2203 + }, + { + "from": 986, + "to": 2226 + }, + { + "from": 1537, + "to": 2226 + }, + { + "from": 2086, + "to": 2230 + }, + { + "from": 2231, + "to": 2230 + }, + { + "from": 2232, + "to": 2230 + }, + { + "from": 1429, + "to": 2230 + }, + { + "from": 2233, + "to": 2230 + }, + { + "from": 1147, + "to": 2230 + }, + { + "from": 1317, + "to": 2230 + }, + { + "from": 924, + "to": 2230 + }, + { + "from": 1684, + "to": 2236 + }, + { + "from": 2237, + "to": 2236 + }, + { + "from": 1686, + "to": 2236 + }, + { + "from": 1687, + "to": 2236 + }, + { + "from": 77, + "to": 2236 + }, + { + "from": 2238, + "to": 2236 + }, + { + "from": 85, + "to": 2236 + }, + { + "from": 87, + "to": 2236 + }, + { + "from": 1907, + "to": 2236 + }, + { + "from": 2239, + "to": 2236 + }, + { + "from": 2240, + "to": 2236 + }, + { + "from": 2241, + "to": 2236 + }, + { + "from": 2242, + "to": 2236 + }, + { + "from": 2243, + "to": 2236 + }, + { + "from": 2244, + "to": 2236 + }, + { + "from": 2245, + "to": 2236 + }, + { + "from": 2246, + "to": 2236 + }, + { + "from": 2247, + "to": 2236 + }, + { + "from": 2248, + "to": 2236 + }, + { + "from": 2249, + "to": 2236 + }, + { + "from": 2250, + "to": 2236 + }, + { + "from": 2251, + "to": 2236 + }, + { + "from": 2252, + "to": 2236 + }, + { + "from": 2253, + "to": 2236 + }, + { + "from": 2254, + "to": 2236 + }, + { + "from": 2255, + "to": 2236 + }, + { + "from": 2256, + "to": 2236 + }, + { + "from": 2257, + "to": 2236 + }, + { + "from": 629, + "to": 2236 + }, + { + "from": 630, + "to": 2236 + }, + { + "from": 66, + "to": 2260 + }, + { + "from": 2260, + "to": 2261 + }, + { + "from": 68, + "to": 2261 + }, + { + "from": 369, + "to": 2268 + }, + { + "from": 2269, + "to": 2268 + }, + { + "from": 2270, + "to": 2268 + }, + { + "from": 2271, + "to": 2268 + }, + { + "from": 954, + "to": 2270 + }, + { + "from": 1013, + "to": 2270 + }, + { + "from": 1192, + "to": 2273 + }, + { + "from": 2270, + "to": 2273 + }, + { + "from": 1192, + "to": 2275 + }, + { + "from": 1580, + "to": 109 + }, + { + "from": 1581, + "to": 1580 + }, + { + "from": 2277, + "to": 1911 + }, + { + "from": 537, + "to": 2283 + }, + { + "from": 538, + "to": 2283 + }, + { + "from": 539, + "to": 2283 + }, + { + "from": 540, + "to": 2283 + }, + { + "from": 537, + "to": 2284 + }, + { + "from": 538, + "to": 2284 + }, + { + "from": 539, + "to": 2284 + }, + { + "from": 540, + "to": 2284 + }, + { + "from": 29, + "to": 446 + }, + { + "from": 30, + "to": 446 + }, + { + "from": 31, + "to": 446 + }, + { + "from": 36, + "to": 446 + }, + { + "from": 38, + "to": 446 + }, + { + "from": 41, + "to": 446 + }, + { + "from": 537, + "to": 2286 + }, + { + "from": 538, + "to": 2286 + }, + { + "from": 539, + "to": 2286 + }, + { + "from": 540, + "to": 2286 + }, + { + "from": 550, + "to": 2291 + }, + { + "from": 2292, + "to": 2291 + }, + { + "from": 2293, + "to": 2291 + }, + { + "from": 134, + "to": 2291 + }, + { + "from": 230, + "to": 2307 + }, + { + "from": 2310, + "to": 2309 + }, + { + "from": 2314, + "to": 2313 + }, + { + "from": 680, + "to": 2325 + }, + { + "from": 1995, + "to": 2331 + }, + { + "from": 140, + "to": 2331 + }, + { + "from": 141, + "to": 2331 + }, + { + "from": 862, + "to": 2332 + }, + { + "from": 2333, + "to": 2332 + }, + { + "from": 2334, + "to": 2332 + }, + { + "from": 2335, + "to": 2332 + }, + { + "from": 140, + "to": 2332 + }, + { + "from": 141, + "to": 2332 + }, + { + "from": 393, + "to": 2336 + }, + { + "from": 136, + "to": 2336 + }, + { + "from": 1995, + "to": 2336 + }, + { + "from": 140, + "to": 2336 + }, + { + "from": 141, + "to": 2336 + }, + { + "from": 395, + "to": 2336 + }, + { + "from": 393, + "to": 2337 + }, + { + "from": 136, + "to": 2337 + }, + { + "from": 1995, + "to": 2337 + }, + { + "from": 140, + "to": 2337 + }, + { + "from": 141, + "to": 2337 + }, + { + "from": 395, + "to": 2337 + }, + { + "from": 2339, + "to": 2341 + }, + { + "from": 1288, + "to": 2342 + }, + { + "from": 2344, + "to": 2343 + }, + { + "from": 2345, + "to": 2343 + }, + { + "from": 2347, + "to": 2346 + }, + { + "from": 2348, + "to": 2346 + }, + { + "from": 779, + "to": 2351 + }, + { + "from": 2353, + "to": 2352 + }, + { + "from": 2361, + "to": 2360 + }, + { + "from": 540, + "to": 2362 + }, + { + "from": 540, + "to": 2367 + }, + { + "from": 540, + "to": 2375 + }, + { + "from": 540, + "to": 538 + }, + { + "from": 2377, + "to": 2376 + }, + { + "from": 129, + "to": 1060 + }, + { + "from": 130, + "to": 1060 + }, + { + "from": 1059, + "to": 1060 + }, + { + "from": 133, + "to": 1060 + }, + { + "from": 1061, + "to": 1060 + }, + { + "from": 2395, + "to": 2394 + }, + { + "from": 2396, + "to": 2394 + }, + { + "from": 2394, + "to": 2397 + }, + { + "from": 2399, + "to": 2398 + }, + { + "from": 2399, + "to": 2400 + }, + { + "from": 1155, + "to": 2399 + }, + { + "from": 567, + "to": 2401 + }, + { + "from": 568, + "to": 2401 + }, + { + "from": 1016, + "to": 567 + }, + { + "from": 1016, + "to": 568 + }, + { + "from": 2408, + "to": 2407 + }, + { + "from": 2407, + "to": 2407 + }, + { + "from": 1621, + "to": 2409 + }, + { + "from": 2420, + "to": 2419 + }, + { + "from": 2421, + "to": 2419 + }, + { + "from": 2422, + "to": 2419 + }, + { + "from": 2424, + "to": 2423 + }, + { + "from": 1868, + "to": 2423 + }, + { + "from": 2425, + "to": 2423 + }, + { + "from": 2426, + "to": 2423 + }, + { + "from": 2427, + "to": 2423 + }, + { + "from": 2428, + "to": 2423 + }, + { + "from": 2154, + "to": 2429 + }, + { + "from": 2428, + "to": 2429 + }, + { + "from": 2423, + "to": 2429 + }, + { + "from": 2429, + "to": 2429 + }, + { + "from": 2430, + "to": 2429 + }, + { + "from": 2426, + "to": 2429 + }, + { + "from": 2431, + "to": 2429 + }, + { + "from": 2426, + "to": 2426 + }, + { + "from": 1868, + "to": 2426 + }, + { + "from": 2427, + "to": 2426 + }, + { + "from": 2433, + "to": 2426 + }, + { + "from": 2154, + "to": 2434 + }, + { + "from": 2433, + "to": 2434 + }, + { + "from": 1868, + "to": 2434 + }, + { + "from": 2429, + "to": 2434 + }, + { + "from": 2430, + "to": 2434 + }, + { + "from": 2426, + "to": 2434 + }, + { + "from": 2427, + "to": 2434 + }, + { + "from": 2431, + "to": 2434 + }, + { + "from": 2423, + "to": 2435 + }, + { + "from": 2429, + "to": 2435 + }, + { + "from": 2434, + "to": 2435 + }, + { + "from": 2449, + "to": 162 + }, + { + "from": 160, + "to": 162 + }, + { + "from": 2450, + "to": 162 + }, + { + "from": 426, + "to": 2470 + }, + { + "from": 800, + "to": 2475 + }, + { + "from": 2482, + "to": 2481 + }, + { + "from": 134, + "to": 2482 + }, + { + "from": 140, + "to": 2482 + }, + { + "from": 138, + "to": 2482 + }, + { + "from": 139, + "to": 2482 + }, + { + "from": 140, + "to": 138 + }, + { + "from": 2524, + "to": 2523 + }, + { + "from": 2525, + "to": 2523 + }, + { + "from": 2526, + "to": 2523 + }, + { + "from": 542, + "to": 2529 + }, + { + "from": 954, + "to": 2530 + }, + { + "from": 1013, + "to": 2530 + }, + { + "from": 1193, + "to": 2531 + }, + { + "from": 412, + "to": 2531 + }, + { + "from": 2533, + "to": 2532 + }, + { + "from": 2534, + "to": 2532 + }, + { + "from": 2537, + "to": 2536 + }, + { + "from": 2538, + "to": 2536 + }, + { + "from": 2540, + "to": 2539 + }, + { + "from": 2541, + "to": 2539 + }, + { + "from": 2543, + "to": 2542 + }, + { + "from": 2544, + "to": 2542 + }, + { + "from": 676, + "to": 2545 + }, + { + "from": 2546, + "to": 2545 + }, + { + "from": 1148, + "to": 2545 + }, + { + "from": 988, + "to": 2545 + }, + { + "from": 1181, + "to": 1182 + }, + { + "from": 7, + "to": 1182 + }, + { + "from": 3, + "to": 1182 + }, + { + "from": 1183, + "to": 1182 + }, + { + "from": 9, + "to": 1182 + }, + { + "from": 129, + "to": 2549 + }, + { + "from": 547, + "to": 2549 + }, + { + "from": 543, + "to": 2549 + }, + { + "from": 130, + "to": 2549 + }, + { + "from": 2555, + "to": 2554 + }, + { + "from": 2557, + "to": 2558 + }, + { + "from": 2558, + "to": 2559 + }, + { + "from": 952, + "to": 1553 + }, + { + "from": 959, + "to": 1553 + }, + { + "from": 1761, + "to": 1553 + }, + { + "from": 2562, + "to": 1553 + }, + { + "from": 29, + "to": 169 + }, + { + "from": 135, + "to": 169 + }, + { + "from": 136, + "to": 169 + }, + { + "from": 923, + "to": 169 + }, + { + "from": 2565, + "to": 2564 + }, + { + "from": 2567, + "to": 2566 + }, + { + "from": 2569, + "to": 2568 + }, + { + "from": 2570, + "to": 2568 + }, + { + "from": 2574, + "to": 2573 + }, + { + "from": 912, + "to": 2573 + }, + { + "from": 916, + "to": 2578 + }, + { + "from": 1123, + "to": 2580 + }, + { + "from": 2582, + "to": 2581 + }, + { + "from": 2584, + "to": 2583 + }, + { + "from": 198, + "to": 2587 + }, + { + "from": 2590, + "to": 2591 + }, + { + "from": 954, + "to": 2601 + }, + { + "from": 1013, + "to": 2601 + }, + { + "from": 2604, + "to": 2603 + }, + { + "from": 2609, + "to": 2608 + }, + { + "from": 2610, + "to": 2608 + }, + { + "from": 1619, + "to": 2616 + }, + { + "from": 1621, + "to": 2616 + }, + { + "from": 1105, + "to": 2618 + }, + { + "from": 1433, + "to": 2634 + }, + { + "from": 1434, + "to": 2634 + }, + { + "from": 1433, + "to": 2635 + }, + { + "from": 1434, + "to": 2635 + }, + { + "from": 1433, + "to": 2636 + }, + { + "from": 1434, + "to": 2636 + }, + { + "from": 1433, + "to": 2637 + }, + { + "from": 1434, + "to": 2637 + }, + { + "from": 2653, + "to": 1473 + }, + { + "from": 73, + "to": 1473 + }, + { + "from": 1475, + "to": 1474 + }, + { + "from": 1473, + "to": 1475 + }, + { + "from": 2658, + "to": 2657 + }, + { + "from": 54, + "to": 53 + }, + { + "from": 52, + "to": 54 + }, + { + "from": 652, + "to": 2659 + }, + { + "from": 2660, + "to": 2659 + }, + { + "from": 2661, + "to": 2659 + }, + { + "from": 1129, + "to": 2659 + }, + { + "from": 540, + "to": 2662 + }, + { + "from": 540, + "to": 2663 + }, + { + "from": 540, + "to": 2664 + }, + { + "from": 540, + "to": 2665 + }, + { + "from": 168, + "to": 2667 + }, + { + "from": 169, + "to": 2667 + }, + { + "from": 597, + "to": 2667 + }, + { + "from": 393, + "to": 9 + }, + { + "from": 395, + "to": 9 + }, + { + "from": 2670, + "to": 9 + }, + { + "from": 482, + "to": 2673 + }, + { + "from": 2676, + "to": 2675 + }, + { + "from": 2679, + "to": 2678 + }, + { + "from": 2681, + "to": 2680 + }, + { + "from": 2683, + "to": 2682 + }, + { + "from": 2686, + "to": 2685 + }, + { + "from": 2688, + "to": 2687 + }, + { + "from": 138, + "to": 385 + }, + { + "from": 2695, + "to": 2694 + }, + { + "from": 128, + "to": 2694 + }, + { + "from": 2694, + "to": 2696 + }, + { + "from": 128, + "to": 2696 + }, + { + "from": 2703, + "to": 2702 + }, + { + "from": 821, + "to": 2705 + }, + { + "from": 1945, + "to": 489 + }, + { + "from": 2707, + "to": 2706 + }, + { + "from": 489, + "to": 490 + }, + { + "from": 430, + "to": 2731 + }, + { + "from": 954, + "to": 2732 + }, + { + "from": 2733, + "to": 2732 + }, + { + "from": 2734, + "to": 2732 + }, + { + "from": 954, + "to": 2740 + }, + { + "from": 1013, + "to": 2740 + }, + { + "from": 2748, + "to": 2747 + }, + { + "from": 523, + "to": 1527 + }, + { + "from": 524, + "to": 1527 + }, + { + "from": 525, + "to": 1527 + }, + { + "from": 2347, + "to": 2753 + }, + { + "from": 2348, + "to": 2753 + }, + { + "from": 135, + "to": 2754 + }, + { + "from": 2755, + "to": 2754 + }, + { + "from": 923, + "to": 2754 + }, + { + "from": 2756, + "to": 2755 + }, + { + "from": 797, + "to": 2757 + }, + { + "from": 796, + "to": 2759 + }, + { + "from": 2524, + "to": 2760 + }, + { + "from": 2525, + "to": 2760 + }, + { + "from": 2524, + "to": 2525 + }, + { + "from": 1193, + "to": 2762 + }, + { + "from": 410, + "to": 2762 + }, + { + "from": 312, + "to": 2766 + }, + { + "from": 313, + "to": 2766 + }, + { + "from": 1477, + "to": 2770 + }, + { + "from": 1180, + "to": 1184 + }, + { + "from": 1181, + "to": 1184 + }, + { + "from": 280, + "to": 1184 + }, + { + "from": 1182, + "to": 1184 + }, + { + "from": 1183, + "to": 1184 + }, + { + "from": 752, + "to": 2817 + }, + { + "from": 676, + "to": 2818 + }, + { + "from": 2819, + "to": 2818 + }, + { + "from": 821, + "to": 2818 + }, + { + "from": 2820, + "to": 2818 + }, + { + "from": 988, + "to": 2818 + }, + { + "from": 2821, + "to": 2822 + }, + { + "from": 2842, + "to": 2841 + }, + { + "from": 2844, + "to": 2843 + }, + { + "from": 681, + "to": 2843 + }, + { + "from": 2845, + "to": 2843 + }, + { + "from": 2846, + "to": 2843 + }, + { + "from": 2801, + "to": 2851 + }, + { + "from": 393, + "to": 1573 + }, + { + "from": 395, + "to": 1573 + }, + { + "from": 2857, + "to": 1573 + }, + { + "from": 952, + "to": 1193 + }, + { + "from": 953, + "to": 1193 + }, + { + "from": 1193, + "to": 1193 + }, + { + "from": 2859, + "to": 1193 + }, + { + "from": 1761, + "to": 1193 + }, + { + "from": 958, + "to": 1193 + }, + { + "from": 1865, + "to": 1193 + }, + { + "from": 952, + "to": 410 + }, + { + "from": 953, + "to": 410 + }, + { + "from": 1761, + "to": 410 + }, + { + "from": 2859, + "to": 410 + }, + { + "from": 410, + "to": 410 + }, + { + "from": 958, + "to": 410 + }, + { + "from": 458, + "to": 410 + }, + { + "from": 2861, + "to": 2862 + }, + { + "from": 2870, + "to": 2869 + }, + { + "from": 29, + "to": 39 + }, + { + "from": 30, + "to": 39 + }, + { + "from": 31, + "to": 39 + }, + { + "from": 33, + "to": 39 + }, + { + "from": 36, + "to": 39 + }, + { + "from": 37, + "to": 39 + }, + { + "from": 38, + "to": 39 + }, + { + "from": 40, + "to": 39 + }, + { + "from": 41, + "to": 39 + }, + { + "from": 2872, + "to": 2871 + }, + { + "from": 2874, + "to": 2873 + }, + { + "from": 128, + "to": 2873 + }, + { + "from": 128, + "to": 2874 + }, + { + "from": 2878, + "to": 2877 + }, + { + "from": 2660, + "to": 2877 + }, + { + "from": 1785, + "to": 2879 + }, + { + "from": 2880, + "to": 2879 + }, + { + "from": 2877, + "to": 2879 + }, + { + "from": 821, + "to": 2882 + }, + { + "from": 477, + "to": 2882 + }, + { + "from": 412, + "to": 2882 + }, + { + "from": 821, + "to": 2883 + }, + { + "from": 2882, + "to": 2883 + }, + { + "from": 542, + "to": 797 + }, + { + "from": 547, + "to": 542 + }, + { + "from": 302, + "to": 547 + }, + { + "from": 550, + "to": 547 + }, + { + "from": 134, + "to": 547 + }, + { + "from": 138, + "to": 547 + }, + { + "from": 136, + "to": 2884 + }, + { + "from": 129, + "to": 2884 + }, + { + "from": 133, + "to": 2884 + }, + { + "from": 134, + "to": 2884 + }, + { + "from": 135, + "to": 2884 + }, + { + "from": 138, + "to": 2884 + }, + { + "from": 385, + "to": 2884 + }, + { + "from": 140, + "to": 2884 + }, + { + "from": 141, + "to": 2884 + }, + { + "from": 30, + "to": 2884 + }, + { + "from": 31, + "to": 2884 + }, + { + "from": 33, + "to": 2884 + }, + { + "from": 139, + "to": 2884 + }, + { + "from": 36, + "to": 2884 + }, + { + "from": 37, + "to": 2884 + }, + { + "from": 40, + "to": 2884 + }, + { + "from": 41, + "to": 2884 + }, + { + "from": 954, + "to": 2885 + }, + { + "from": 477, + "to": 2885 + }, + { + "from": 129, + "to": 2886 + }, + { + "from": 133, + "to": 2886 + }, + { + "from": 134, + "to": 2886 + }, + { + "from": 135, + "to": 2886 + }, + { + "from": 138, + "to": 2886 + }, + { + "from": 385, + "to": 2886 + }, + { + "from": 140, + "to": 2886 + }, + { + "from": 141, + "to": 2886 + }, + { + "from": 139, + "to": 2886 + }, + { + "from": 2884, + "to": 2886 + }, + { + "from": 136, + "to": 2886 + }, + { + "from": 2897, + "to": 2897 + }, + { + "from": 2898, + "to": 2897 + }, + { + "from": 2900, + "to": 2899 + }, + { + "from": 2901, + "to": 2899 + }, + { + "from": 2905, + "to": 2906 + }, + { + "from": 2924, + "to": 2923 + }, + { + "from": 2926, + "to": 2925 + }, + { + "from": 1912, + "to": 2925 + }, + { + "from": 2533, + "to": 2934 + }, + { + "from": 2534, + "to": 2934 + }, + { + "from": 2936, + "to": 2935 + }, + { + "from": 2533, + "to": 2935 + }, + { + "from": 2534, + "to": 2935 + }, + { + "from": 2936, + "to": 2937 + }, + { + "from": 2533, + "to": 2937 + }, + { + "from": 2534, + "to": 2937 + }, + { + "from": 2533, + "to": 2938 + }, + { + "from": 2534, + "to": 2938 + }, + { + "from": 2939, + "to": 2936 + }, + { + "from": 2940, + "to": 2936 + }, + { + "from": 2533, + "to": 2936 + }, + { + "from": 482, + "to": 2936 + }, + { + "from": 2941, + "to": 2936 + }, + { + "from": 2940, + "to": 2533 + }, + { + "from": 482, + "to": 2533 + }, + { + "from": 2534, + "to": 2533 + }, + { + "from": 2952, + "to": 2951 + }, + { + "from": 537, + "to": 2953 + }, + { + "from": 538, + "to": 2953 + }, + { + "from": 539, + "to": 2953 + }, + { + "from": 540, + "to": 2953 + }, + { + "from": 2966, + "to": 2965 + }, + { + "from": 2965, + "to": 2967 + }, + { + "from": 2967, + "to": 2968 + }, + { + "from": 2543, + "to": 2970 + }, + { + "from": 2544, + "to": 2970 + }, + { + "from": 2972, + "to": 2971 + }, + { + "from": 2974, + "to": 2973 + }, + { + "from": 2801, + "to": 2980 + }, + { + "from": 2981, + "to": 2980 + }, + { + "from": 2981, + "to": 2982 + }, + { + "from": 2983, + "to": 2982 + }, + { + "from": 309, + "to": 2999 + }, + { + "from": 310, + "to": 2999 + }, + { + "from": 782, + "to": 3003 + }, + { + "from": 17, + "to": 3004 + }, + { + "from": 3015, + "to": 3014 + }, + { + "from": 3016, + "to": 3014 + }, + { + "from": 537, + "to": 3017 + }, + { + "from": 538, + "to": 3017 + }, + { + "from": 539, + "to": 3017 + }, + { + "from": 540, + "to": 3017 + }, + { + "from": 3021, + "to": 3020 + }, + { + "from": 3022, + "to": 3021 + }, + { + "from": 537, + "to": 3027 + }, + { + "from": 538, + "to": 3027 + }, + { + "from": 539, + "to": 3027 + }, + { + "from": 540, + "to": 3027 + }, + { + "from": 3029, + "to": 3028 + }, + { + "from": 3028, + "to": 3030 + }, + { + "from": 537, + "to": 3031 + }, + { + "from": 538, + "to": 3031 + }, + { + "from": 539, + "to": 3031 + }, + { + "from": 540, + "to": 3031 + }, + { + "from": 1986, + "to": 3040 + }, + { + "from": 3041, + "to": 3040 + }, + { + "from": 3042, + "to": 3040 + }, + { + "from": 540, + "to": 3040 + }, + { + "from": 3043, + "to": 3040 + }, + { + "from": 238, + "to": 3040 + }, + { + "from": 3040, + "to": 3044 + }, + { + "from": 540, + "to": 3045 + }, + { + "from": 540, + "to": 3046 + }, + { + "from": 540, + "to": 3047 + }, + { + "from": 540, + "to": 3048 + }, + { + "from": 540, + "to": 3049 + }, + { + "from": 540, + "to": 3050 + }, + { + "from": 540, + "to": 3051 + }, + { + "from": 2872, + "to": 3054 + }, + { + "from": 3058, + "to": 3057 + }, + { + "from": 3059, + "to": 3057 + }, + { + "from": 3079, + "to": 3078 + }, + { + "from": 3080, + "to": 3078 + }, + { + "from": 3084, + "to": 3083 + }, + { + "from": 1443, + "to": 3083 + }, + { + "from": 929, + "to": 3084 + }, + { + "from": 762, + "to": 3090 + }, + { + "from": 765, + "to": 3090 + }, + { + "from": 3095, + "to": 3094 + }, + { + "from": 3096, + "to": 3094 + }, + { + "from": 3104, + "to": 3103 + }, + { + "from": 3107, + "to": 3106 + }, + { + "from": 1061, + "to": 1389 + }, + { + "from": 133, + "to": 1389 + }, + { + "from": 129, + "to": 141 + }, + { + "from": 130, + "to": 141 + }, + { + "from": 132, + "to": 141 + }, + { + "from": 1866, + "to": 141 + }, + { + "from": 1867, + "to": 141 + }, + { + "from": 3114, + "to": 3113 + }, + { + "from": 3115, + "to": 3113 + }, + { + "from": 3116, + "to": 3113 + }, + { + "from": 3123, + "to": 3123 + }, + { + "from": 3128, + "to": 3128 + }, + { + "from": 858, + "to": 3130 + }, + { + "from": 1013, + "to": 3130 + }, + { + "from": 369, + "to": 3130 + }, + { + "from": 2647, + "to": 3131 + }, + { + "from": 2421, + "to": 3132 + }, + { + "from": 3133, + "to": 3132 + }, + { + "from": 3136, + "to": 3135 + }, + { + "from": 1183, + "to": 3135 + }, + { + "from": 3137, + "to": 3135 + }, + { + "from": 1181, + "to": 3135 + }, + { + "from": 3138, + "to": 3135 + }, + { + "from": 3139, + "to": 3135 + }, + { + "from": 1559, + "to": 3142 + }, + { + "from": 257, + "to": 3143 + }, + { + "from": 3144, + "to": 3143 + }, + { + "from": 1671, + "to": 73 + }, + { + "from": 1671, + "to": 3144 + }, + { + "from": 257, + "to": 3144 + }, + { + "from": 1137, + "to": 3150 + }, + { + "from": 3150, + "to": 3150 + }, + { + "from": 537, + "to": 3152 + }, + { + "from": 538, + "to": 3152 + }, + { + "from": 539, + "to": 3152 + }, + { + "from": 540, + "to": 3152 + }, + { + "from": 537, + "to": 3153 + }, + { + "from": 538, + "to": 3153 + }, + { + "from": 539, + "to": 3153 + }, + { + "from": 540, + "to": 3153 + }, + { + "from": 230, + "to": 3160 + }, + { + "from": 230, + "to": 3161 + }, + { + "from": 230, + "to": 3163 + }, + { + "from": 238, + "to": 3079 + }, + { + "from": 3165, + "to": 3164 + }, + { + "from": 238, + "to": 3164 + }, + { + "from": 238, + "to": 3166 + }, + { + "from": 3079, + "to": 3166 + }, + { + "from": 230, + "to": 3167 + }, + { + "from": 66, + "to": 3169 + }, + { + "from": 3169, + "to": 3170 + }, + { + "from": 68, + "to": 3170 + }, + { + "from": 2981, + "to": 3178 + }, + { + "from": 2983, + "to": 3178 + }, + { + "from": 458, + "to": 3186 + }, + { + "from": 2661, + "to": 2878 + }, + { + "from": 2196, + "to": 3198 + }, + { + "from": 3199, + "to": 2196 + }, + { + "from": 3200, + "to": 2196 + }, + { + "from": 3206, + "to": 3205 + }, + { + "from": 3207, + "to": 3205 + }, + { + "from": 3208, + "to": 3205 + }, + { + "from": 3218, + "to": 3217 + }, + { + "from": 3219, + "to": 3217 + }, + { + "from": 133, + "to": 3220 + }, + { + "from": 540, + "to": 3233 + }, + { + "from": 1851, + "to": 3233 + }, + { + "from": 3234, + "to": 3235 + }, + { + "from": 3240, + "to": 3239 + }, + { + "from": 148, + "to": 3243 + }, + { + "from": 149, + "to": 3243 + }, + { + "from": 336, + "to": 3244 + }, + { + "from": 337, + "to": 3244 + }, + { + "from": 3246, + "to": 3245 + }, + { + "from": 3247, + "to": 3245 + }, + { + "from": 3249, + "to": 3248 + }, + { + "from": 3250, + "to": 3248 + }, + { + "from": 3252, + "to": 3251 + }, + { + "from": 3253, + "to": 3251 + }, + { + "from": 168, + "to": 3261 + }, + { + "from": 169, + "to": 3261 + }, + { + "from": 3261, + "to": 3262 + }, + { + "from": 3263, + "to": 3262 + }, + { + "from": 168, + "to": 3264 + }, + { + "from": 169, + "to": 3264 + }, + { + "from": 128, + "to": 3270 + }, + { + "from": 302, + "to": 1994 + }, + { + "from": 550, + "to": 1994 + }, + { + "from": 134, + "to": 1994 + }, + { + "from": 138, + "to": 1994 + }, + { + "from": 238, + "to": 3276 + }, + { + "from": 3080, + "to": 3276 + }, + { + "from": 128, + "to": 3277 + }, + { + "from": 3280, + "to": 3279 + }, + { + "from": 752, + "to": 3286 + }, + { + "from": 3280, + "to": 3286 + }, + { + "from": 3293, + "to": 3292 + }, + { + "from": 3294, + "to": 3293 + }, + { + "from": 393, + "to": 3293 + }, + { + "from": 1074, + "to": 3293 + }, + { + "from": 682, + "to": 3293 + }, + { + "from": 2670, + "to": 3293 + }, + { + "from": 2647, + "to": 3293 + }, + { + "from": 1494, + "to": 3305 + }, + { + "from": 3305, + "to": 3306 + }, + { + "from": 3306, + "to": 3307 + }, + { + "from": 169, + "to": 3309 + }, + { + "from": 988, + "to": 3309 + }, + { + "from": 513, + "to": 3309 + }, + { + "from": 676, + "to": 3309 + }, + { + "from": 677, + "to": 3309 + }, + { + "from": 157, + "to": 3309 + }, + { + "from": 168, + "to": 3309 + }, + { + "from": 157, + "to": 3310 + }, + { + "from": 3311, + "to": 3310 + }, + { + "from": 169, + "to": 3310 + }, + { + "from": 988, + "to": 3310 + }, + { + "from": 513, + "to": 3310 + }, + { + "from": 953, + "to": 3313 + }, + { + "from": 3314, + "to": 3313 + }, + { + "from": 2859, + "to": 3313 + }, + { + "from": 960, + "to": 3313 + }, + { + "from": 628, + "to": 3319 + }, + { + "from": 3320, + "to": 3319 + }, + { + "from": 3322, + "to": 3321 + }, + { + "from": 3324, + "to": 3323 + }, + { + "from": 3325, + "to": 3323 + }, + { + "from": 3326, + "to": 3323 + }, + { + "from": 3327, + "to": 3323 + }, + { + "from": 3326, + "to": 3328 + }, + { + "from": 3327, + "to": 3328 + }, + { + "from": 2085, + "to": 2231 + }, + { + "from": 2086, + "to": 2231 + }, + { + "from": 399, + "to": 2231 + }, + { + "from": 1316, + "to": 399 + }, + { + "from": 1317, + "to": 399 + }, + { + "from": 920, + "to": 399 + }, + { + "from": 652, + "to": 399 + }, + { + "from": 1129, + "to": 399 + }, + { + "from": 3330, + "to": 399 + }, + { + "from": 200, + "to": 3342 + }, + { + "from": 3343, + "to": 3342 + }, + { + "from": 199, + "to": 3342 + }, + { + "from": 291, + "to": 289 + }, + { + "from": 292, + "to": 289 + }, + { + "from": 3342, + "to": 3344 + }, + { + "from": 3352, + "to": 3351 + }, + { + "from": 628, + "to": 3320 + }, + { + "from": 1181, + "to": 1569 + }, + { + "from": 3136, + "to": 1569 + }, + { + "from": 3355, + "to": 3354 + }, + { + "from": 3357, + "to": 3356 + }, + { + "from": 411, + "to": 3356 + }, + { + "from": 2056, + "to": 3356 + }, + { + "from": 1785, + "to": 3359 + }, + { + "from": 3364, + "to": 3363 + }, + { + "from": 3365, + "to": 3363 + }, + { + "from": 3366, + "to": 3363 + }, + { + "from": 2905, + "to": 3370 + }, + { + "from": 3373, + "to": 3372 + }, + { + "from": 1828, + "to": 3372 + }, + { + "from": 1840, + "to": 3372 + }, + { + "from": 1841, + "to": 3372 + }, + { + "from": 2981, + "to": 3375 + }, + { + "from": 2983, + "to": 3375 + }, + { + "from": 3399, + "to": 3398 + }, + { + "from": 3400, + "to": 3398 + }, + { + "from": 1131, + "to": 3408 + }, + { + "from": 3412, + "to": 3411 + }, + { + "from": 3200, + "to": 3411 + }, + { + "from": 17, + "to": 3411 + }, + { + "from": 3415, + "to": 3414 + }, + { + "from": 1433, + "to": 3419 + }, + { + "from": 1434, + "to": 3419 + }, + { + "from": 3422, + "to": 3421 + }, + { + "from": 1910, + "to": 3421 + }, + { + "from": 1911, + "to": 3422 + }, + { + "from": 1912, + "to": 3422 + }, + { + "from": 733, + "to": 3422 + }, + { + "from": 1222, + "to": 3422 + }, + { + "from": 230, + "to": 3429 + }, + { + "from": 230, + "to": 3431 + }, + { + "from": 230, + "to": 3432 + }, + { + "from": 135, + "to": 3437 + }, + { + "from": 139, + "to": 3437 + }, + { + "from": 1994, + "to": 3437 + }, + { + "from": 1995, + "to": 3437 + }, + { + "from": 140, + "to": 3437 + }, + { + "from": 141, + "to": 3437 + }, + { + "from": 3434, + "to": 3439 + }, + { + "from": 3435, + "to": 3439 + }, + { + "from": 3436, + "to": 3439 + }, + { + "from": 1994, + "to": 291 + }, + { + "from": 1995, + "to": 291 + }, + { + "from": 1992, + "to": 291 + }, + { + "from": 1993, + "to": 291 + }, + { + "from": 1996, + "to": 291 + }, + { + "from": 2872, + "to": 3448 + }, + { + "from": 3450, + "to": 3449 + }, + { + "from": 3448, + "to": 3450 + }, + { + "from": 3454, + "to": 3453 + }, + { + "from": 3453, + "to": 3453 + }, + { + "from": 3457, + "to": 3456 + }, + { + "from": 3474, + "to": 3473 + }, + { + "from": 3474, + "to": 3475 + }, + { + "from": 3483, + "to": 3482 + }, + { + "from": 3484, + "to": 3482 + }, + { + "from": 3485, + "to": 3482 + }, + { + "from": 128, + "to": 3482 + }, + { + "from": 3482, + "to": 3486 + }, + { + "from": 128, + "to": 3486 + }, + { + "from": 752, + "to": 3490 + }, + { + "from": 3079, + "to": 3495 + }, + { + "from": 3164, + "to": 3495 + }, + { + "from": 3166, + "to": 3495 + }, + { + "from": 3499, + "to": 3498 + }, + { + "from": 238, + "to": 3498 + }, + { + "from": 3500, + "to": 3498 + }, + { + "from": 752, + "to": 3502 + }, + { + "from": 3507, + "to": 3506 + }, + { + "from": 3508, + "to": 3507 + }, + { + "from": 810, + "to": 2245 + }, + { + "from": 3511, + "to": 3513 + }, + { + "from": 752, + "to": 754 + }, + { + "from": 3530, + "to": 3529 + }, + { + "from": 29, + "to": 1019 + }, + { + "from": 134, + "to": 1019 + }, + { + "from": 3547, + "to": 3546 + }, + { + "from": 452, + "to": 3548 + }, + { + "from": 452, + "to": 3549 + }, + { + "from": 3547, + "to": 3550 + }, + { + "from": 3307, + "to": 3557 + }, + { + "from": 3560, + "to": 3559 + }, + { + "from": 3557, + "to": 3560 + }, + { + "from": 296, + "to": 3563 + }, + { + "from": 3579, + "to": 3578 + }, + { + "from": 2981, + "to": 3594 + }, + { + "from": 2983, + "to": 3594 + }, + { + "from": 1026, + "to": 3603 + }, + { + "from": 1027, + "to": 3603 + }, + { + "from": 1028, + "to": 3603 + }, + { + "from": 1024, + "to": 3603 + }, + { + "from": 1029, + "to": 3603 + }, + { + "from": 3603, + "to": 1530 + }, + { + "from": 2880, + "to": 3611 + }, + { + "from": 2878, + "to": 3613 + }, + { + "from": 3614, + "to": 3613 + }, + { + "from": 1742, + "to": 3623 + }, + { + "from": 1743, + "to": 3623 + }, + { + "from": 782, + "to": 3623 + }, + { + "from": 1424, + "to": 3399 + }, + { + "from": 129, + "to": 3624 + }, + { + "from": 133, + "to": 3624 + }, + { + "from": 1061, + "to": 3624 + }, + { + "from": 1424, + "to": 3624 + }, + { + "from": 3625, + "to": 3624 + }, + { + "from": 3624, + "to": 3624 + }, + { + "from": 130, + "to": 3624 + }, + { + "from": 11, + "to": 1743 + }, + { + "from": 0, + "to": 782 + }, + { + "from": 953, + "to": 952 + }, + { + "from": 2859, + "to": 952 + }, + { + "from": 911, + "to": 953 + }, + { + "from": 220, + "to": 953 + }, + { + "from": 230, + "to": 3631 + }, + { + "from": 230, + "to": 3632 + }, + { + "from": 797, + "to": 3633 + }, + { + "from": 1979, + "to": 3633 + }, + { + "from": 1132, + "to": 3633 + }, + { + "from": 134, + "to": 1992 + }, + { + "from": 138, + "to": 1992 + }, + { + "from": 3635, + "to": 3634 + }, + { + "from": 3634, + "to": 3634 + }, + { + "from": 134, + "to": 1993 + }, + { + "from": 138, + "to": 1993 + }, + { + "from": 1992, + "to": 3636 + }, + { + "from": 3637, + "to": 3636 + }, + { + "from": 134, + "to": 3636 + }, + { + "from": 1993, + "to": 3636 + }, + { + "from": 139, + "to": 3636 + }, + { + "from": 1389, + "to": 3636 + }, + { + "from": 1994, + "to": 3636 + }, + { + "from": 140, + "to": 3636 + }, + { + "from": 3638, + "to": 3636 + }, + { + "from": 141, + "to": 3636 + }, + { + "from": 1996, + "to": 3636 + }, + { + "from": 3640, + "to": 3015 + }, + { + "from": 3641, + "to": 3015 + }, + { + "from": 1992, + "to": 3642 + }, + { + "from": 3637, + "to": 3642 + }, + { + "from": 1669, + "to": 3642 + }, + { + "from": 134, + "to": 3642 + }, + { + "from": 18, + "to": 3642 + }, + { + "from": 139, + "to": 3642 + }, + { + "from": 3643, + "to": 3642 + }, + { + "from": 1994, + "to": 3642 + }, + { + "from": 1995, + "to": 3642 + }, + { + "from": 140, + "to": 3642 + }, + { + "from": 141, + "to": 3642 + }, + { + "from": 1996, + "to": 3642 + }, + { + "from": 1993, + "to": 3642 + }, + { + "from": 3649, + "to": 3650 + }, + { + "from": 3650, + "to": 3651 + }, + { + "from": 2420, + "to": 3656 + }, + { + "from": 2422, + "to": 3656 + }, + { + "from": 3165, + "to": 2333 + }, + { + "from": 3673, + "to": 3672 + }, + { + "from": 3674, + "to": 3673 + }, + { + "from": 3672, + "to": 3675 + }, + { + "from": 1433, + "to": 3676 + }, + { + "from": 1434, + "to": 3676 + }, + { + "from": 3683, + "to": 3682 + }, + { + "from": 3680, + "to": 3683 + }, + { + "from": 752, + "to": 3684 + }, + { + "from": 312, + "to": 3689 + }, + { + "from": 3165, + "to": 3691 + }, + { + "from": 2333, + "to": 3691 + }, + { + "from": 3474, + "to": 3707 + }, + { + "from": 3713, + "to": 3712 + }, + { + "from": 1105, + "to": 3720 + }, + { + "from": 452, + "to": 3721 + }, + { + "from": 1105, + "to": 3547 + }, + { + "from": 3547, + "to": 452 + }, + { + "from": 452, + "to": 3722 + }, + { + "from": 452, + "to": 3723 + }, + { + "from": 1867, + "to": 132 + }, + { + "from": 452, + "to": 3724 + }, + { + "from": 3728, + "to": 3727 + }, + { + "from": 3732, + "to": 3731 + }, + { + "from": 3733, + "to": 3731 + }, + { + "from": 215, + "to": 3734 + }, + { + "from": 2222, + "to": 3735 + }, + { + "from": 3737, + "to": 3736 + }, + { + "from": 3741, + "to": 3742 + }, + { + "from": 653, + "to": 3745 + }, + { + "from": 2083, + "to": 3745 + }, + { + "from": 654, + "to": 3745 + }, + { + "from": 78, + "to": 3745 + }, + { + "from": 79, + "to": 3745 + }, + { + "from": 2816, + "to": 3748 + }, + { + "from": 540, + "to": 3749 + }, + { + "from": 680, + "to": 3751 + }, + { + "from": 1840, + "to": 1828 + }, + { + "from": 1841, + "to": 1828 + }, + { + "from": 2667, + "to": 3759 + }, + { + "from": 596, + "to": 3759 + }, + { + "from": 953, + "to": 959 + }, + { + "from": 2859, + "to": 959 + }, + { + "from": 1492, + "to": 3763 + }, + { + "from": 1493, + "to": 3763 + }, + { + "from": 3764, + "to": 3763 + }, + { + "from": 412, + "to": 3765 + }, + { + "from": 2336, + "to": 3771 + }, + { + "from": 2337, + "to": 3771 + }, + { + "from": 3773, + "to": 3774 + }, + { + "from": 686, + "to": 3784 + }, + { + "from": 3118, + "to": 3784 + }, + { + "from": 1130, + "to": 3784 + }, + { + "from": 129, + "to": 686 + }, + { + "from": 1882, + "to": 686 + }, + { + "from": 1884, + "to": 686 + }, + { + "from": 1133, + "to": 686 + }, + { + "from": 130, + "to": 686 + }, + { + "from": 3615, + "to": 686 + }, + { + "from": 1132, + "to": 686 + }, + { + "from": 686, + "to": 3786 + }, + { + "from": 3118, + "to": 3786 + }, + { + "from": 1130, + "to": 3786 + }, + { + "from": 686, + "to": 3787 + }, + { + "from": 3118, + "to": 3787 + }, + { + "from": 1424, + "to": 3789 + }, + { + "from": 1433, + "to": 3790 + }, + { + "from": 1434, + "to": 3790 + }, + { + "from": 3165, + "to": 3791 + }, + { + "from": 238, + "to": 3791 + }, + { + "from": 1424, + "to": 3792 + }, + { + "from": 1433, + "to": 3793 + }, + { + "from": 1434, + "to": 3793 + }, + { + "from": 230, + "to": 3794 + }, + { + "from": 3796, + "to": 3795 + }, + { + "from": 230, + "to": 3797 + }, + { + "from": 3799, + "to": 3798 + }, + { + "from": 3800, + "to": 3798 + }, + { + "from": 3801, + "to": 3798 + }, + { + "from": 3798, + "to": 3796 + }, + { + "from": 3801, + "to": 3799 + }, + { + "from": 3799, + "to": 3800 + }, + { + "from": 1494, + "to": 3801 + }, + { + "from": 3802, + "to": 3801 + }, + { + "from": 3803, + "to": 3801 + }, + { + "from": 3745, + "to": 3809 + }, + { + "from": 2661, + "to": 3809 + }, + { + "from": 262, + "to": 3810 + }, + { + "from": 263, + "to": 3810 + }, + { + "from": 264, + "to": 3810 + }, + { + "from": 265, + "to": 3810 + }, + { + "from": 266, + "to": 3810 + }, + { + "from": 267, + "to": 3810 + }, + { + "from": 75, + "to": 3810 + }, + { + "from": 76, + "to": 3810 + }, + { + "from": 268, + "to": 3810 + }, + { + "from": 269, + "to": 3810 + }, + { + "from": 270, + "to": 3810 + }, + { + "from": 271, + "to": 3810 + }, + { + "from": 53, + "to": 3810 + }, + { + "from": 54, + "to": 3810 + }, + { + "from": 3817, + "to": 3816 + }, + { + "from": 309, + "to": 3823 + }, + { + "from": 3827, + "to": 3826 + }, + { + "from": 1196, + "to": 3835 + }, + { + "from": 953, + "to": 3835 + }, + { + "from": 1198, + "to": 3835 + }, + { + "from": 2859, + "to": 3835 + }, + { + "from": 3314, + "to": 3835 + }, + { + "from": 960, + "to": 3835 + }, + { + "from": 3839, + "to": 3838 + }, + { + "from": 3820, + "to": 3844 + }, + { + "from": 754, + "to": 3845 + }, + { + "from": 754, + "to": 3846 + }, + { + "from": 2333, + "to": 3849 + }, + { + "from": 233, + "to": 3849 + }, + { + "from": 2670, + "to": 3849 + }, + { + "from": 1724, + "to": 3850 + }, + { + "from": 1725, + "to": 3850 + }, + { + "from": 3859, + "to": 3861 + }, + { + "from": 3864, + "to": 3863 + }, + { + "from": 3863, + "to": 3863 + }, + { + "from": 3865, + "to": 3863 + }, + { + "from": 3866, + "to": 3863 + }, + { + "from": 3867, + "to": 3865 + }, + { + "from": 3874, + "to": 3873 + }, + { + "from": 3875, + "to": 3873 + }, + { + "from": 3879, + "to": 3878 + }, + { + "from": 2979, + "to": 3878 + }, + { + "from": 3878, + "to": 3878 + }, + { + "from": 1327, + "to": 3883 + }, + { + "from": 1328, + "to": 3883 + }, + { + "from": 1329, + "to": 3883 + }, + { + "from": 16, + "to": 3889 + }, + { + "from": 17, + "to": 3889 + }, + { + "from": 3352, + "to": 3890 + }, + { + "from": 393, + "to": 3891 + }, + { + "from": 394, + "to": 3891 + }, + { + "from": 395, + "to": 3891 + }, + { + "from": 2233, + "to": 3894 + }, + { + "from": 1150, + "to": 3894 + }, + { + "from": 394, + "to": 3894 + }, + { + "from": 258, + "to": 3894 + }, + { + "from": 3896, + "to": 3895 + }, + { + "from": 1942, + "to": 3839 + }, + { + "from": 2882, + "to": 3839 + }, + { + "from": 932, + "to": 3905 + }, + { + "from": 3907, + "to": 3906 + }, + { + "from": 3909, + "to": 3908 + }, + { + "from": 549, + "to": 3909 + }, + { + "from": 262, + "to": 263 + }, + { + "from": 3014, + "to": 3914 + }, + { + "from": 3, + "to": 2 + }, + { + "from": 9, + "to": 2 + }, + { + "from": 1559, + "to": 3921 + }, + { + "from": 1561, + "to": 3924 + }, + { + "from": 1494, + "to": 3925 + }, + { + "from": 1559, + "to": 3926 + }, + { + "from": 3927, + "to": 3926 + }, + { + "from": 986, + "to": 3930 + }, + { + "from": 3942, + "to": 3941 + }, + { + "from": 3399, + "to": 3943 + }, + { + "from": 3624, + "to": 3943 + }, + { + "from": 1389, + "to": 3943 + }, + { + "from": 954, + "to": 3944 + }, + { + "from": 1424, + "to": 3944 + }, + { + "from": 1424, + "to": 3946 + }, + { + "from": 1424, + "to": 3948 + }, + { + "from": 3951, + "to": 3950 + }, + { + "from": 3950, + "to": 3950 + }, + { + "from": 230, + "to": 3958 + }, + { + "from": 230, + "to": 3959 + }, + { + "from": 3962, + "to": 3961 + }, + { + "from": 3963, + "to": 3963 + }, + { + "from": 3964, + "to": 3963 + }, + { + "from": 2657, + "to": 3966 + }, + { + "from": 1913, + "to": 3968 + }, + { + "from": 652, + "to": 3970 + }, + { + "from": 399, + "to": 3970 + }, + { + "from": 1308, + "to": 3970 + }, + { + "from": 1129, + "to": 3970 + }, + { + "from": 3745, + "to": 3971 + }, + { + "from": 2660, + "to": 3971 + }, + { + "from": 3330, + "to": 2085 + }, + { + "from": 920, + "to": 2085 + }, + { + "from": 139, + "to": 2085 + }, + { + "from": 653, + "to": 3330 + }, + { + "from": 654, + "to": 3330 + }, + { + "from": 29, + "to": 654 + }, + { + "from": 134, + "to": 654 + }, + { + "from": 1535, + "to": 3973 + }, + { + "from": 1537, + "to": 3973 + }, + { + "from": 540, + "to": 3989 + }, + { + "from": 540, + "to": 3991 + }, + { + "from": 540, + "to": 3992 + }, + { + "from": 540, + "to": 3993 + }, + { + "from": 540, + "to": 3995 + }, + { + "from": 540, + "to": 3997 + }, + { + "from": 3998, + "to": 3997 + }, + { + "from": 540, + "to": 4006 + }, + { + "from": 4009, + "to": 4009 + }, + { + "from": 810, + "to": 4012 + }, + { + "from": 3503, + "to": 4012 + }, + { + "from": 809, + "to": 4012 + }, + { + "from": 813, + "to": 4012 + }, + { + "from": 1822, + "to": 4012 + }, + { + "from": 3510, + "to": 4012 + }, + { + "from": 2245, + "to": 4012 + }, + { + "from": 4012, + "to": 4012 + }, + { + "from": 810, + "to": 4013 + }, + { + "from": 3503, + "to": 4013 + }, + { + "from": 809, + "to": 4013 + }, + { + "from": 813, + "to": 4013 + }, + { + "from": 1822, + "to": 4013 + }, + { + "from": 3510, + "to": 4013 + }, + { + "from": 2245, + "to": 4013 + }, + { + "from": 4012, + "to": 4013 + }, + { + "from": 393, + "to": 4014 + }, + { + "from": 4015, + "to": 4014 + }, + { + "from": 395, + "to": 4014 + }, + { + "from": 2857, + "to": 4014 + }, + { + "from": 1573, + "to": 4016 + }, + { + "from": 2857, + "to": 4016 + }, + { + "from": 2857, + "to": 4017 + }, + { + "from": 2647, + "to": 4017 + }, + { + "from": 3292, + "to": 4017 + }, + { + "from": 3293, + "to": 4017 + }, + { + "from": 1576, + "to": 4017 + }, + { + "from": 393, + "to": 2857 + }, + { + "from": 238, + "to": 2857 + }, + { + "from": 3293, + "to": 2857 + }, + { + "from": 2670, + "to": 2857 + }, + { + "from": 2647, + "to": 2857 + }, + { + "from": 393, + "to": 3 + }, + { + "from": 4024, + "to": 3 + }, + { + "from": 395, + "to": 3 + }, + { + "from": 4037, + "to": 4036 + }, + { + "from": 4038, + "to": 4036 + }, + { + "from": 1814, + "to": 4042 + }, + { + "from": 3026, + "to": 4042 + }, + { + "from": 4045, + "to": 4044 + }, + { + "from": 4047, + "to": 4045 + }, + { + "from": 4050, + "to": 4049 + }, + { + "from": 911, + "to": 1196 + }, + { + "from": 220, + "to": 1196 + }, + { + "from": 677, + "to": 4060 + }, + { + "from": 82, + "to": 4073 + }, + { + "from": 83, + "to": 4073 + }, + { + "from": 84, + "to": 4073 + }, + { + "from": 4076, + "to": 4075 + }, + { + "from": 2231, + "to": 4075 + }, + { + "from": 3970, + "to": 4075 + }, + { + "from": 4075, + "to": 4079 + }, + { + "from": 4081, + "to": 4080 + }, + { + "from": 219, + "to": 4047 + }, + { + "from": 139, + "to": 4047 + }, + { + "from": 212, + "to": 4047 + }, + { + "from": 221, + "to": 4047 + }, + { + "from": 146, + "to": 4047 + }, + { + "from": 126, + "to": 4047 + }, + { + "from": 212, + "to": 4083 + }, + { + "from": 4083, + "to": 4084 + }, + { + "from": 212, + "to": 4084 + }, + { + "from": 146, + "to": 4084 + }, + { + "from": 219, + "to": 4085 + }, + { + "from": 126, + "to": 4085 + }, + { + "from": 221, + "to": 4085 + }, + { + "from": 139, + "to": 4085 + }, + { + "from": 931, + "to": 4087 + }, + { + "from": 4090, + "to": 4089 + }, + { + "from": 4091, + "to": 4089 + }, + { + "from": 2966, + "to": 4101 + }, + { + "from": 4103, + "to": 4102 + }, + { + "from": 4102, + "to": 4104 + }, + { + "from": 4103, + "to": 4104 + }, + { + "from": 2537, + "to": 4109 + }, + { + "from": 2538, + "to": 4109 + }, + { + "from": 4113, + "to": 4112 + }, + { + "from": 4114, + "to": 4112 + }, + { + "from": 4113, + "to": 4115 + }, + { + "from": 4114, + "to": 4115 + }, + { + "from": 4120, + "to": 4119 + }, + { + "from": 4121, + "to": 4121 + }, + { + "from": 4122, + "to": 4121 + }, + { + "from": 4124, + "to": 4123 + }, + { + "from": 4123, + "to": 4123 + }, + { + "from": 540, + "to": 4125 + }, + { + "from": 4127, + "to": 4127 + }, + { + "from": 4130, + "to": 4129 + }, + { + "from": 4129, + "to": 4129 + }, + { + "from": 3506, + "to": 4134 + }, + { + "from": 4136, + "to": 4135 + }, + { + "from": 3619, + "to": 4135 + }, + { + "from": 858, + "to": 4141 + }, + { + "from": 1013, + "to": 4141 + }, + { + "from": 369, + "to": 4141 + }, + { + "from": 954, + "to": 4149 + }, + { + "from": 1424, + "to": 4149 + }, + { + "from": 1389, + "to": 4151 + }, + { + "from": 3624, + "to": 4151 + }, + { + "from": 1993, + "to": 4151 + }, + { + "from": 412, + "to": 4151 + }, + { + "from": 1424, + "to": 4153 + }, + { + "from": 752, + "to": 4157 + }, + { + "from": 302, + "to": 800 + }, + { + "from": 542, + "to": 800 + }, + { + "from": 505, + "to": 800 + }, + { + "from": 543, + "to": 800 + }, + { + "from": 134, + "to": 800 + }, + { + "from": 2085, + "to": 4167 + }, + { + "from": 2660, + "to": 4167 + }, + { + "from": 2086, + "to": 4167 + }, + { + "from": 2084, + "to": 4167 + }, + { + "from": 1290, + "to": 4168 + }, + { + "from": 1131, + "to": 4168 + }, + { + "from": 800, + "to": 4168 + }, + { + "from": 4170, + "to": 4169 + }, + { + "from": 4171, + "to": 4170 + }, + { + "from": 4179, + "to": 4178 + }, + { + "from": 4190, + "to": 4189 + }, + { + "from": 4191, + "to": 4189 + }, + { + "from": 752, + "to": 4204 + }, + { + "from": 682, + "to": 4205 + }, + { + "from": 2333, + "to": 4205 + }, + { + "from": 139, + "to": 4205 + }, + { + "from": 4207, + "to": 4206 + }, + { + "from": 954, + "to": 1013 + }, + { + "from": 1196, + "to": 4221 + }, + { + "from": 953, + "to": 4221 + }, + { + "from": 1198, + "to": 4221 + }, + { + "from": 2859, + "to": 4221 + }, + { + "from": 3314, + "to": 4221 + }, + { + "from": 960, + "to": 4221 + }, + { + "from": 2972, + "to": 4228 + }, + { + "from": 2032, + "to": 4243 + }, + { + "from": 169, + "to": 4243 + }, + { + "from": 988, + "to": 4243 + }, + { + "from": 513, + "to": 4243 + }, + { + "from": 4244, + "to": 4243 + }, + { + "from": 4246, + "to": 4245 + }, + { + "from": 140, + "to": 4246 + }, + { + "from": 135, + "to": 4246 + }, + { + "from": 139, + "to": 4246 + }, + { + "from": 141, + "to": 4246 + }, + { + "from": 730, + "to": 4247 + }, + { + "from": 4247, + "to": 4248 + }, + { + "from": 4248, + "to": 4249 + }, + { + "from": 4253, + "to": 4255 + }, + { + "from": 17, + "to": 4256 + }, + { + "from": 129, + "to": 220 + }, + { + "from": 133, + "to": 220 + }, + { + "from": 1318, + "to": 220 + }, + { + "from": 1079, + "to": 220 + }, + { + "from": 1061, + "to": 220 + }, + { + "from": 130, + "to": 220 + }, + { + "from": 3143, + "to": 4259 + }, + { + "from": 3143, + "to": 4260 + }, + { + "from": 4261, + "to": 4260 + }, + { + "from": 3143, + "to": 4261 + }, + { + "from": 73, + "to": 4261 + }, + { + "from": 2540, + "to": 4265 + }, + { + "from": 2541, + "to": 4265 + }, + { + "from": 4267, + "to": 4266 + }, + { + "from": 4268, + "to": 4266 + }, + { + "from": 3224, + "to": 4266 + }, + { + "from": 4269, + "to": 4266 + }, + { + "from": 3041, + "to": 4271 + }, + { + "from": 1260, + "to": 4271 + }, + { + "from": 4271, + "to": 4272 + }, + { + "from": 954, + "to": 145 + }, + { + "from": 212, + "to": 145 + }, + { + "from": 213, + "to": 145 + }, + { + "from": 215, + "to": 145 + }, + { + "from": 213, + "to": 4277 + }, + { + "from": 126, + "to": 4277 + }, + { + "from": 135, + "to": 4277 + }, + { + "from": 133, + "to": 4277 + }, + { + "from": 31, + "to": 4277 + }, + { + "from": 139, + "to": 214 + }, + { + "from": 213, + "to": 146 + }, + { + "from": 135, + "to": 146 + }, + { + "from": 2748, + "to": 4288 + }, + { + "from": 3014, + "to": 4289 + }, + { + "from": 320, + "to": 318 + }, + { + "from": 1494, + "to": 4298 + }, + { + "from": 3802, + "to": 4298 + }, + { + "from": 3803, + "to": 4298 + }, + { + "from": 3142, + "to": 4298 + }, + { + "from": 1559, + "to": 4298 + }, + { + "from": 3927, + "to": 4298 + }, + { + "from": 3803, + "to": 4302 + }, + { + "from": 4311, + "to": 4310 + }, + { + "from": 3080, + "to": 4310 + }, + { + "from": 537, + "to": 4315 + }, + { + "from": 538, + "to": 4315 + }, + { + "from": 539, + "to": 4315 + }, + { + "from": 540, + "to": 4315 + }, + { + "from": 4319, + "to": 4318 + }, + { + "from": 4320, + "to": 4318 + }, + { + "from": 128, + "to": 4321 + }, + { + "from": 4322, + "to": 4321 + }, + { + "from": 954, + "to": 4324 + }, + { + "from": 1424, + "to": 4324 + }, + { + "from": 3624, + "to": 4325 + }, + { + "from": 4152, + "to": 4325 + }, + { + "from": 1424, + "to": 4326 + }, + { + "from": 1992, + "to": 4327 + }, + { + "from": 129, + "to": 4327 + }, + { + "from": 1882, + "to": 4327 + }, + { + "from": 477, + "to": 4327 + }, + { + "from": 3638, + "to": 4327 + }, + { + "from": 3637, + "to": 4327 + }, + { + "from": 1994, + "to": 4327 + }, + { + "from": 1995, + "to": 4327 + }, + { + "from": 130, + "to": 4327 + }, + { + "from": 1389, + "to": 4327 + }, + { + "from": 140, + "to": 4327 + }, + { + "from": 141, + "to": 4327 + }, + { + "from": 2333, + "to": 4327 + }, + { + "from": 3625, + "to": 4327 + }, + { + "from": 1996, + "to": 4327 + }, + { + "from": 862, + "to": 4327 + }, + { + "from": 3624, + "to": 4327 + }, + { + "from": 1993, + "to": 4327 + }, + { + "from": 3080, + "to": 4328 + }, + { + "from": 2424, + "to": 4335 + }, + { + "from": 4336, + "to": 4335 + }, + { + "from": 4335, + "to": 4335 + }, + { + "from": 3004, + "to": 4337 + }, + { + "from": 2416, + "to": 82 + }, + { + "from": 2418, + "to": 82 + }, + { + "from": 2416, + "to": 83 + }, + { + "from": 2418, + "to": 83 + }, + { + "from": 2416, + "to": 84 + }, + { + "from": 2418, + "to": 84 + }, + { + "from": 4342, + "to": 4341 + }, + { + "from": 3483, + "to": 4351 + }, + { + "from": 2695, + "to": 4351 + }, + { + "from": 4352, + "to": 4351 + }, + { + "from": 4322, + "to": 4351 + }, + { + "from": 540, + "to": 4354 + }, + { + "from": 871, + "to": 4355 + }, + { + "from": 540, + "to": 4355 + }, + { + "from": 52, + "to": 4367 + }, + { + "from": 53, + "to": 4367 + }, + { + "from": 54, + "to": 4367 + }, + { + "from": 393, + "to": 2334 + }, + { + "from": 2333, + "to": 2334 + }, + { + "from": 1074, + "to": 2334 + }, + { + "from": 140, + "to": 2334 + }, + { + "from": 141, + "to": 2334 + }, + { + "from": 682, + "to": 2334 + }, + { + "from": 2670, + "to": 2334 + }, + { + "from": 1074, + "to": 2335 + }, + { + "from": 393, + "to": 2335 + }, + { + "from": 2670, + "to": 2335 + }, + { + "from": 682, + "to": 2335 + }, + { + "from": 3294, + "to": 4368 + }, + { + "from": 238, + "to": 4368 + }, + { + "from": 66, + "to": 1161 + }, + { + "from": 4377, + "to": 4376 + }, + { + "from": 1206, + "to": 4376 + }, + { + "from": 4377, + "to": 4380 + }, + { + "from": 302, + "to": 505 + }, + { + "from": 302, + "to": 543 + }, + { + "from": 1327, + "to": 4396 + }, + { + "from": 1328, + "to": 4396 + }, + { + "from": 1329, + "to": 4396 + }, + { + "from": 266, + "to": 264 + }, + { + "from": 1329, + "to": 1327 + }, + { + "from": 1329, + "to": 1328 + }, + { + "from": 1327, + "to": 4399 + }, + { + "from": 1328, + "to": 4399 + }, + { + "from": 1329, + "to": 4399 + }, + { + "from": 1327, + "to": 4402 + }, + { + "from": 1328, + "to": 4402 + }, + { + "from": 1329, + "to": 4402 + }, + { + "from": 797, + "to": 4404 + }, + { + "from": 82, + "to": 4406 + }, + { + "from": 83, + "to": 4406 + }, + { + "from": 84, + "to": 4406 + }, + { + "from": 411, + "to": 4407 + }, + { + "from": 11, + "to": 4407 + }, + { + "from": 17, + "to": 4407 + }, + { + "from": 2056, + "to": 4407 + }, + { + "from": 394, + "to": 4420 + }, + { + "from": 141, + "to": 4420 + }, + { + "from": 139, + "to": 4420 + }, + { + "from": 1996, + "to": 4420 + }, + { + "from": 3474, + "to": 4424 + }, + { + "from": 3474, + "to": 4425 + }, + { + "from": 215, + "to": 4434 + }, + { + "from": 4441, + "to": 4440 + }, + { + "from": 4442, + "to": 4441 + }, + { + "from": 730, + "to": 4442 + }, + { + "from": 1841, + "to": 4443 + }, + { + "from": 2983, + "to": 4443 + }, + { + "from": 1841, + "to": 4444 + }, + { + "from": 2983, + "to": 4444 + }, + { + "from": 2524, + "to": 4464 + }, + { + "from": 2525, + "to": 4464 + }, + { + "from": 2526, + "to": 4464 + }, + { + "from": 1180, + "to": 4475 + }, + { + "from": 4478, + "to": 4477 + }, + { + "from": 4479, + "to": 4477 + }, + { + "from": 68, + "to": 4481 + }, + { + "from": 4490, + "to": 4489 + }, + { + "from": 2061, + "to": 4492 + }, + { + "from": 1424, + "to": 4494 + }, + { + "from": 2061, + "to": 4495 + }, + { + "from": 1428, + "to": 2025 + }, + { + "from": 1318, + "to": 2025 + }, + { + "from": 220, + "to": 2025 + }, + { + "from": 954, + "to": 2025 + }, + { + "from": 29, + "to": 2025 + }, + { + "from": 30, + "to": 2025 + }, + { + "from": 31, + "to": 2025 + }, + { + "from": 2025, + "to": 2026 + }, + { + "from": 540, + "to": 4508 + }, + { + "from": 76, + "to": 4508 + }, + { + "from": 2666, + "to": 4508 + }, + { + "from": 4510, + "to": 4509 + }, + { + "from": 540, + "to": 4511 + }, + { + "from": 3301, + "to": 4512 + }, + { + "from": 4513, + "to": 4512 + }, + { + "from": 1992, + "to": 4513 + }, + { + "from": 1993, + "to": 4513 + }, + { + "from": 1994, + "to": 4513 + }, + { + "from": 1995, + "to": 4513 + }, + { + "from": 140, + "to": 4513 + }, + { + "from": 141, + "to": 4513 + }, + { + "from": 1996, + "to": 4513 + }, + { + "from": 547, + "to": 4513 + }, + { + "from": 4544, + "to": 4543 + }, + { + "from": 106, + "to": 4543 + }, + { + "from": 1995, + "to": 3638 + }, + { + "from": 134, + "to": 3638 + }, + { + "from": 140, + "to": 3638 + }, + { + "from": 139, + "to": 3638 + }, + { + "from": 141, + "to": 3638 + }, + { + "from": 1786, + "to": 4545 + }, + { + "from": 4221, + "to": 4545 + }, + { + "from": 4546, + "to": 4545 + }, + { + "from": 4547, + "to": 4545 + }, + { + "from": 3835, + "to": 4545 + }, + { + "from": 1786, + "to": 4548 + }, + { + "from": 458, + "to": 4548 + }, + { + "from": 30, + "to": 447 + }, + { + "from": 135, + "to": 447 + }, + { + "from": 1079, + "to": 447 + }, + { + "from": 220, + "to": 447 + }, + { + "from": 33, + "to": 447 + }, + { + "from": 30, + "to": 448 + }, + { + "from": 911, + "to": 448 + }, + { + "from": 134, + "to": 448 + }, + { + "from": 33, + "to": 448 + }, + { + "from": 215, + "to": 448 + }, + { + "from": 482, + "to": 4556 + }, + { + "from": 4559, + "to": 4558 + }, + { + "from": 4560, + "to": 4558 + }, + { + "from": 582, + "to": 4574 + }, + { + "from": 2057, + "to": 4574 + }, + { + "from": 4575, + "to": 4574 + }, + { + "from": 4576, + "to": 4574 + }, + { + "from": 2055, + "to": 4574 + }, + { + "from": 2053, + "to": 4574 + }, + { + "from": 2059, + "to": 4574 + }, + { + "from": 2567, + "to": 4579 + }, + { + "from": 4583, + "to": 4582 + }, + { + "from": 540, + "to": 4585 + }, + { + "from": 4587, + "to": 4586 + }, + { + "from": 1473, + "to": 4589 + }, + { + "from": 3131, + "to": 4590 + }, + { + "from": 4015, + "to": 4590 + }, + { + "from": 3292, + "to": 4590 + }, + { + "from": 3293, + "to": 4590 + }, + { + "from": 2857, + "to": 4590 + }, + { + "from": 4592, + "to": 4591 + }, + { + "from": 4591, + "to": 4593 + }, + { + "from": 730, + "to": 4592 + }, + { + "from": 82, + "to": 4594 + }, + { + "from": 83, + "to": 4594 + }, + { + "from": 84, + "to": 4594 + }, + { + "from": 730, + "to": 4595 + }, + { + "from": 4595, + "to": 4596 + }, + { + "from": 540, + "to": 4597 + }, + { + "from": 2819, + "to": 4599 + }, + { + "from": 2824, + "to": 4599 + }, + { + "from": 1944, + "to": 4599 + }, + { + "from": 4602, + "to": 4601 + }, + { + "from": 4607, + "to": 4608 + }, + { + "from": 40, + "to": 1231 + }, + { + "from": 33, + "to": 1231 + }, + { + "from": 257, + "to": 1231 + }, + { + "from": 41, + "to": 1231 + }, + { + "from": 1494, + "to": 1559 + }, + { + "from": 2543, + "to": 4627 + }, + { + "from": 2544, + "to": 4627 + }, + { + "from": 4627, + "to": 4629 + }, + { + "from": 133, + "to": 1390 + }, + { + "from": 134, + "to": 1390 + }, + { + "from": 138, + "to": 1390 + }, + { + "from": 1389, + "to": 1390 + }, + { + "from": 550, + "to": 1390 + }, + { + "from": 1061, + "to": 1390 + }, + { + "from": 29, + "to": 1390 + }, + { + "from": 1060, + "to": 1390 + }, + { + "from": 1059, + "to": 1390 + }, + { + "from": 1388, + "to": 1390 + }, + { + "from": 442, + "to": 1390 + }, + { + "from": 4289, + "to": 4631 + }, + { + "from": 4451, + "to": 4647 + }, + { + "from": 537, + "to": 4650 + }, + { + "from": 538, + "to": 4650 + }, + { + "from": 539, + "to": 4650 + }, + { + "from": 540, + "to": 4650 + }, + { + "from": 3191, + "to": 4651 + }, + { + "from": 1024, + "to": 4654 + }, + { + "from": 537, + "to": 4656 + }, + { + "from": 538, + "to": 4656 + }, + { + "from": 539, + "to": 4656 + }, + { + "from": 540, + "to": 4656 + }, + { + "from": 160, + "to": 4658 + }, + { + "from": 161, + "to": 4658 + }, + { + "from": 162, + "to": 4658 + }, + { + "from": 4659, + "to": 4658 + }, + { + "from": 4660, + "to": 4658 + }, + { + "from": 164, + "to": 4658 + }, + { + "from": 1928, + "to": 4658 + }, + { + "from": 165, + "to": 4658 + }, + { + "from": 1210, + "to": 4658 + }, + { + "from": 954, + "to": 4661 + }, + { + "from": 1424, + "to": 4661 + }, + { + "from": 1013, + "to": 4661 + }, + { + "from": 1884, + "to": 2104 + }, + { + "from": 1133, + "to": 2104 + }, + { + "from": 1132, + "to": 2104 + }, + { + "from": 2061, + "to": 4669 + }, + { + "from": 1657, + "to": 4681 + }, + { + "from": 4692, + "to": 4691 + }, + { + "from": 4708, + "to": 4707 + }, + { + "from": 591, + "to": 4707 + }, + { + "from": 2979, + "to": 4707 + }, + { + "from": 4707, + "to": 4707 + }, + { + "from": 540, + "to": 4710 + }, + { + "from": 628, + "to": 4712 + }, + { + "from": 3319, + "to": 4712 + }, + { + "from": 3320, + "to": 4712 + }, + { + "from": 653, + "to": 79 + }, + { + "from": 654, + "to": 79 + }, + { + "from": 1318, + "to": 79 + }, + { + "from": 30, + "to": 158 + }, + { + "from": 1318, + "to": 158 + }, + { + "from": 444, + "to": 4724 + }, + { + "from": 445, + "to": 4724 + }, + { + "from": 3343, + "to": 4724 + }, + { + "from": 578, + "to": 445 + }, + { + "from": 30, + "to": 445 + }, + { + "from": 134, + "to": 445 + }, + { + "from": 33, + "to": 445 + }, + { + "from": 215, + "to": 445 + }, + { + "from": 578, + "to": 3343 + }, + { + "from": 30, + "to": 3343 + }, + { + "from": 135, + "to": 3343 + }, + { + "from": 33, + "to": 3343 + }, + { + "from": 215, + "to": 3343 + }, + { + "from": 444, + "to": 4727 + }, + { + "from": 3343, + "to": 4727 + }, + { + "from": 135, + "to": 4727 + }, + { + "from": 447, + "to": 4727 + }, + { + "from": 30, + "to": 4728 + }, + { + "from": 215, + "to": 4728 + }, + { + "from": 1995, + "to": 4736 + }, + { + "from": 3906, + "to": 4749 + }, + { + "from": 1865, + "to": 4751 + }, + { + "from": 2056, + "to": 4751 + }, + { + "from": 458, + "to": 4751 + }, + { + "from": 952, + "to": 1865 + }, + { + "from": 959, + "to": 1865 + }, + { + "from": 1761, + "to": 1865 + }, + { + "from": 2562, + "to": 1865 + }, + { + "from": 1535, + "to": 4753 + }, + { + "from": 972, + "to": 4758 + }, + { + "from": 4760, + "to": 4759 + }, + { + "from": 4761, + "to": 4760 + }, + { + "from": 66, + "to": 4764 + }, + { + "from": 1424, + "to": 4765 + }, + { + "from": 3624, + "to": 4765 + }, + { + "from": 1389, + "to": 4765 + }, + { + "from": 1795, + "to": 4776 + }, + { + "from": 4207, + "to": 2707 + }, + { + "from": 4782, + "to": 2707 + }, + { + "from": 4786, + "to": 4785 + }, + { + "from": 4788, + "to": 4787 + }, + { + "from": 4785, + "to": 4788 + }, + { + "from": 4796, + "to": 4795 + }, + { + "from": 1061, + "to": 215 + }, + { + "from": 133, + "to": 215 + }, + { + "from": 911, + "to": 215 + }, + { + "from": 220, + "to": 215 + }, + { + "from": 318, + "to": 319 + }, + { + "from": 4815, + "to": 4815 + }, + { + "from": 4816, + "to": 4815 + }, + { + "from": 2524, + "to": 4819 + }, + { + "from": 1443, + "to": 4819 + }, + { + "from": 3159, + "to": 4819 + }, + { + "from": 2421, + "to": 4821 + }, + { + "from": 3133, + "to": 4821 + }, + { + "from": 1746, + "to": 4823 + }, + { + "from": 1747, + "to": 4823 + }, + { + "from": 1591, + "to": 4824 + }, + { + "from": 1592, + "to": 4824 + }, + { + "from": 1027, + "to": 4826 + }, + { + "from": 1029, + "to": 4826 + }, + { + "from": 4311, + "to": 4833 + }, + { + "from": 1179, + "to": 4834 + }, + { + "from": 4836, + "to": 4835 + }, + { + "from": 1179, + "to": 4836 + }, + { + "from": 393, + "to": 3352 + }, + { + "from": 221, + "to": 3352 + }, + { + "from": 394, + "to": 3352 + }, + { + "from": 395, + "to": 3352 + }, + { + "from": 4857, + "to": 4856 + }, + { + "from": 4859, + "to": 4858 + }, + { + "from": 4856, + "to": 4859 + }, + { + "from": 16, + "to": 4861 + }, + { + "from": 17, + "to": 4861 + }, + { + "from": 16, + "to": 4862 + }, + { + "from": 17, + "to": 4862 + }, + { + "from": 139, + "to": 4862 + }, + { + "from": 4861, + "to": 4863 + }, + { + "from": 4861, + "to": 4864 + }, + { + "from": 4861, + "to": 4865 + }, + { + "from": 16, + "to": 4868 + }, + { + "from": 17, + "to": 4868 + }, + { + "from": 4861, + "to": 4871 + }, + { + "from": 4861, + "to": 4872 + }, + { + "from": 4874, + "to": 4873 + }, + { + "from": 4875, + "to": 4873 + }, + { + "from": 173, + "to": 4876 + }, + { + "from": 174, + "to": 4876 + }, + { + "from": 4880, + "to": 4879 + }, + { + "from": 4881, + "to": 4879 + }, + { + "from": 4913, + "to": 4912 + }, + { + "from": 82, + "to": 4916 + }, + { + "from": 83, + "to": 4916 + }, + { + "from": 84, + "to": 4916 + }, + { + "from": 82, + "to": 4917 + }, + { + "from": 83, + "to": 4917 + }, + { + "from": 84, + "to": 4917 + }, + { + "from": 1231, + "to": 4920 + }, + { + "from": 4922, + "to": 4923 + }, + { + "from": 140, + "to": 4923 + }, + { + "from": 4924, + "to": 4923 + }, + { + "from": 139, + "to": 4923 + }, + { + "from": 141, + "to": 4923 + }, + { + "from": 1996, + "to": 4935 + }, + { + "from": 4935, + "to": 4936 + }, + { + "from": 810, + "to": 4939 + }, + { + "from": 3503, + "to": 4939 + }, + { + "from": 4940, + "to": 4939 + }, + { + "from": 4941, + "to": 4939 + }, + { + "from": 4942, + "to": 4939 + }, + { + "from": 2245, + "to": 4939 + }, + { + "from": 4944, + "to": 4943 + }, + { + "from": 4947, + "to": 4946 + }, + { + "from": 4945, + "to": 4946 + }, + { + "from": 512, + "to": 4948 + }, + { + "from": 1536, + "to": 4948 + }, + { + "from": 1537, + "to": 4948 + }, + { + "from": 2582, + "to": 2584 + }, + { + "from": 2974, + "to": 2584 + }, + { + "from": 540, + "to": 4954 + }, + { + "from": 540, + "to": 4955 + }, + { + "from": 540, + "to": 4957 + }, + { + "from": 540, + "to": 4958 + }, + { + "from": 540, + "to": 4959 + }, + { + "from": 540, + "to": 4960 + }, + { + "from": 4560, + "to": 4972 + }, + { + "from": 4559, + "to": 4560 + }, + { + "from": 1155, + "to": 4975 + }, + { + "from": 931, + "to": 4975 + }, + { + "from": 932, + "to": 4975 + }, + { + "from": 947, + "to": 4975 + }, + { + "from": 2399, + "to": 4975 + }, + { + "from": 1224, + "to": 4975 + }, + { + "from": 4919, + "to": 4979 + }, + { + "from": 4984, + "to": 4985 + }, + { + "from": 4983, + "to": 4986 + }, + { + "from": 4997, + "to": 4996 + }, + { + "from": 686, + "to": 4996 + }, + { + "from": 4998, + "to": 4996 + }, + { + "from": 3118, + "to": 4996 + }, + { + "from": 1412, + "to": 5002 + }, + { + "from": 1413, + "to": 5002 + }, + { + "from": 731, + "to": 5002 + }, + { + "from": 540, + "to": 5002 + }, + { + "from": 2748, + "to": 5005 + }, + { + "from": 653, + "to": 1129 + }, + { + "from": 654, + "to": 1129 + }, + { + "from": 135, + "to": 1129 + }, + { + "from": 862, + "to": 1028 + }, + { + "from": 2333, + "to": 1028 + }, + { + "from": 1024, + "to": 1028 + }, + { + "from": 1389, + "to": 1028 + }, + { + "from": 862, + "to": 1029 + }, + { + "from": 2333, + "to": 1029 + }, + { + "from": 1024, + "to": 1029 + }, + { + "from": 1389, + "to": 1029 + }, + { + "from": 230, + "to": 5014 + }, + { + "from": 3246, + "to": 5015 + }, + { + "from": 3247, + "to": 5015 + }, + { + "from": 5020, + "to": 5019 + }, + { + "from": 2492, + "to": 5020 + }, + { + "from": 1004, + "to": 5028 + }, + { + "from": 686, + "to": 5028 + }, + { + "from": 3118, + "to": 5028 + }, + { + "from": 29, + "to": 5037 + }, + { + "from": 129, + "to": 5037 + }, + { + "from": 130, + "to": 5037 + }, + { + "from": 1318, + "to": 5037 + }, + { + "from": 1059, + "to": 5037 + }, + { + "from": 393, + "to": 4015 + }, + { + "from": 238, + "to": 4015 + }, + { + "from": 3293, + "to": 4015 + }, + { + "from": 2670, + "to": 4015 + }, + { + "from": 2647, + "to": 4015 + }, + { + "from": 129, + "to": 5052 + }, + { + "from": 133, + "to": 5052 + }, + { + "from": 134, + "to": 5052 + }, + { + "from": 138, + "to": 5052 + }, + { + "from": 139, + "to": 5052 + }, + { + "from": 140, + "to": 5052 + }, + { + "from": 141, + "to": 5052 + }, + { + "from": 29, + "to": 5052 + }, + { + "from": 30, + "to": 5052 + }, + { + "from": 31, + "to": 5052 + }, + { + "from": 33, + "to": 5052 + }, + { + "from": 36, + "to": 5052 + }, + { + "from": 37, + "to": 5052 + }, + { + "from": 38, + "to": 5052 + }, + { + "from": 40, + "to": 5052 + }, + { + "from": 41, + "to": 5052 + }, + { + "from": 5055, + "to": 5054 + }, + { + "from": 443, + "to": 5057 + }, + { + "from": 446, + "to": 5057 + }, + { + "from": 200, + "to": 5058 + }, + { + "from": 5059, + "to": 5058 + }, + { + "from": 5060, + "to": 5058 + }, + { + "from": 540, + "to": 5062 + }, + { + "from": 2974, + "to": 5067 + }, + { + "from": 3249, + "to": 5069 + }, + { + "from": 3250, + "to": 5069 + }, + { + "from": 578, + "to": 5082 + }, + { + "from": 215, + "to": 5082 + }, + { + "from": 537, + "to": 5083 + }, + { + "from": 538, + "to": 5083 + }, + { + "from": 539, + "to": 5083 + }, + { + "from": 540, + "to": 5083 + }, + { + "from": 4101, + "to": 5099 + }, + { + "from": 2173, + "to": 5103 + }, + { + "from": 4102, + "to": 5105 + }, + { + "from": 1026, + "to": 5108 + }, + { + "from": 1027, + "to": 5108 + }, + { + "from": 4654, + "to": 5108 + }, + { + "from": 1025, + "to": 5108 + }, + { + "from": 1028, + "to": 5108 + }, + { + "from": 1024, + "to": 5108 + }, + { + "from": 1029, + "to": 5108 + }, + { + "from": 345, + "to": 5114 + }, + { + "from": 129, + "to": 5115 + }, + { + "from": 133, + "to": 5115 + }, + { + "from": 134, + "to": 5115 + }, + { + "from": 135, + "to": 5115 + }, + { + "from": 138, + "to": 5115 + }, + { + "from": 385, + "to": 5115 + }, + { + "from": 5059, + "to": 5115 + }, + { + "from": 140, + "to": 5115 + }, + { + "from": 141, + "to": 5115 + }, + { + "from": 139, + "to": 5115 + }, + { + "from": 136, + "to": 5115 + }, + { + "from": 136, + "to": 5059 + }, + { + "from": 129, + "to": 5059 + }, + { + "from": 133, + "to": 5059 + }, + { + "from": 134, + "to": 5059 + }, + { + "from": 135, + "to": 5059 + }, + { + "from": 138, + "to": 5059 + }, + { + "from": 385, + "to": 5059 + }, + { + "from": 140, + "to": 5059 + }, + { + "from": 141, + "to": 5059 + }, + { + "from": 29, + "to": 5059 + }, + { + "from": 30, + "to": 5059 + }, + { + "from": 31, + "to": 5059 + }, + { + "from": 139, + "to": 5059 + }, + { + "from": 36, + "to": 5059 + }, + { + "from": 37, + "to": 5059 + }, + { + "from": 38, + "to": 5059 + }, + { + "from": 41, + "to": 5059 + }, + { + "from": 2067, + "to": 5117 + }, + { + "from": 2068, + "to": 5117 + }, + { + "from": 1552, + "to": 5118 + }, + { + "from": 1553, + "to": 5118 + }, + { + "from": 1554, + "to": 5118 + }, + { + "from": 1555, + "to": 5118 + }, + { + "from": 4969, + "to": 5122 + }, + { + "from": 2614, + "to": 5126 + }, + { + "from": 561, + "to": 5129 + }, + { + "from": 562, + "to": 5129 + }, + { + "from": 563, + "to": 5129 + }, + { + "from": 564, + "to": 5129 + }, + { + "from": 565, + "to": 5129 + }, + { + "from": 566, + "to": 5129 + }, + { + "from": 567, + "to": 5129 + }, + { + "from": 568, + "to": 5129 + }, + { + "from": 561, + "to": 5130 + }, + { + "from": 562, + "to": 5130 + }, + { + "from": 563, + "to": 5130 + }, + { + "from": 564, + "to": 5130 + }, + { + "from": 565, + "to": 5130 + }, + { + "from": 566, + "to": 5130 + }, + { + "from": 567, + "to": 5130 + }, + { + "from": 568, + "to": 5130 + }, + { + "from": 4207, + "to": 5131 + }, + { + "from": 561, + "to": 5132 + }, + { + "from": 562, + "to": 5132 + }, + { + "from": 563, + "to": 5132 + }, + { + "from": 564, + "to": 5132 + }, + { + "from": 565, + "to": 5132 + }, + { + "from": 566, + "to": 5132 + }, + { + "from": 567, + "to": 5132 + }, + { + "from": 568, + "to": 5132 + }, + { + "from": 561, + "to": 5133 + }, + { + "from": 562, + "to": 5133 + }, + { + "from": 563, + "to": 5133 + }, + { + "from": 564, + "to": 5133 + }, + { + "from": 565, + "to": 5133 + }, + { + "from": 566, + "to": 5133 + }, + { + "from": 567, + "to": 5133 + }, + { + "from": 568, + "to": 5133 + }, + { + "from": 4221, + "to": 5134 + }, + { + "from": 4546, + "to": 5134 + }, + { + "from": 4547, + "to": 5134 + }, + { + "from": 1761, + "to": 5134 + }, + { + "from": 3835, + "to": 5134 + }, + { + "from": 4547, + "to": 5135 + }, + { + "from": 4221, + "to": 5135 + }, + { + "from": 3835, + "to": 5135 + }, + { + "from": 1761, + "to": 5135 + }, + { + "from": 4546, + "to": 5135 + }, + { + "from": 1552, + "to": 5136 + }, + { + "from": 1553, + "to": 5136 + }, + { + "from": 1554, + "to": 5136 + }, + { + "from": 1555, + "to": 5136 + }, + { + "from": 5134, + "to": 5136 + }, + { + "from": 4207, + "to": 1171 + }, + { + "from": 679, + "to": 5140 + }, + { + "from": 5149, + "to": 5148 + }, + { + "from": 5150, + "to": 5149 + }, + { + "from": 2725, + "to": 5150 + }, + { + "from": 411, + "to": 5150 + }, + { + "from": 106, + "to": 5151 + }, + { + "from": 11, + "to": 2057 + }, + { + "from": 17, + "to": 2057 + }, + { + "from": 16, + "to": 2057 + }, + { + "from": 2054, + "to": 2057 + }, + { + "from": 411, + "to": 2057 + }, + { + "from": 2056, + "to": 2057 + }, + { + "from": 16, + "to": 4575 + }, + { + "from": 17, + "to": 4575 + }, + { + "from": 5157, + "to": 5156 + }, + { + "from": 3231, + "to": 5161 + }, + { + "from": 1024, + "to": 1026 + }, + { + "from": 29, + "to": 653 + }, + { + "from": 654, + "to": 653 + }, + { + "from": 134, + "to": 653 + }, + { + "from": 653, + "to": 920 + }, + { + "from": 654, + "to": 920 + }, + { + "from": 4629, + "to": 5173 + }, + { + "from": 5174, + "to": 5174 + }, + { + "from": 5175, + "to": 5174 + }, + { + "from": 5177, + "to": 5176 + }, + { + "from": 171, + "to": 5177 + }, + { + "from": 323, + "to": 1310 + }, + { + "from": 1311, + "to": 5186 + }, + { + "from": 1004, + "to": 5187 + }, + { + "from": 1069, + "to": 1020 + }, + { + "from": 1290, + "to": 5190 + }, + { + "from": 291, + "to": 5190 + }, + { + "from": 292, + "to": 5190 + }, + { + "from": 5225, + "to": 5224 + }, + { + "from": 1181, + "to": 5224 + }, + { + "from": 5226, + "to": 5224 + }, + { + "from": 1183, + "to": 5227 + }, + { + "from": 1193, + "to": 5229 + }, + { + "from": 5233, + "to": 5232 + }, + { + "from": 5060, + "to": 5233 + }, + { + "from": 29, + "to": 5233 + }, + { + "from": 30, + "to": 5233 + }, + { + "from": 31, + "to": 5233 + }, + { + "from": 36, + "to": 5233 + }, + { + "from": 37, + "to": 5233 + }, + { + "from": 38, + "to": 5233 + }, + { + "from": 446, + "to": 5233 + }, + { + "from": 5233, + "to": 5234 + }, + { + "from": 3134, + "to": 1576 + }, + { + "from": 922, + "to": 1944 + }, + { + "from": 2580, + "to": 5251 + }, + { + "from": 1123, + "to": 5251 + }, + { + "from": 4986, + "to": 5254 + }, + { + "from": 4985, + "to": 5256 + }, + { + "from": 5264, + "to": 5263 + }, + { + "from": 410, + "to": 5263 + }, + { + "from": 30, + "to": 5263 + }, + { + "from": 33, + "to": 5263 + }, + { + "from": 1391, + "to": 5263 + }, + { + "from": 458, + "to": 5263 + }, + { + "from": 1552, + "to": 5266 + }, + { + "from": 1553, + "to": 5266 + }, + { + "from": 1554, + "to": 5266 + }, + { + "from": 1555, + "to": 5266 + }, + { + "from": 458, + "to": 5266 + }, + { + "from": 5281, + "to": 5280 + }, + { + "from": 5280, + "to": 5280 + }, + { + "from": 5283, + "to": 5282 + }, + { + "from": 5282, + "to": 5282 + }, + { + "from": 5284, + "to": 5284 + }, + { + "from": 5285, + "to": 5284 + }, + { + "from": 5287, + "to": 5286 + }, + { + "from": 5286, + "to": 5286 + }, + { + "from": 5288, + "to": 2239 + }, + { + "from": 2239, + "to": 2239 + }, + { + "from": 2221, + "to": 5289 + }, + { + "from": 5306, + "to": 1290 + }, + { + "from": 302, + "to": 5306 + }, + { + "from": 550, + "to": 5306 + }, + { + "from": 505, + "to": 5306 + }, + { + "from": 134, + "to": 5306 + }, + { + "from": 138, + "to": 5306 + }, + { + "from": 821, + "to": 5312 + }, + { + "from": 2230, + "to": 5312 + }, + { + "from": 1147, + "to": 5312 + }, + { + "from": 1429, + "to": 5312 + }, + { + "from": 924, + "to": 5312 + }, + { + "from": 5316, + "to": 5315 + }, + { + "from": 2702, + "to": 5315 + }, + { + "from": 5319, + "to": 5319 + }, + { + "from": 5320, + "to": 5319 + }, + { + "from": 5318, + "to": 5320 + }, + { + "from": 5320, + "to": 5320 + }, + { + "from": 482, + "to": 2941 + }, + { + "from": 2748, + "to": 4944 + }, + { + "from": 4944, + "to": 5323 + }, + { + "from": 1837, + "to": 5324 + }, + { + "from": 393, + "to": 5325 + }, + { + "from": 2334, + "to": 5325 + }, + { + "from": 2335, + "to": 5325 + }, + { + "from": 1995, + "to": 5325 + }, + { + "from": 140, + "to": 5325 + }, + { + "from": 141, + "to": 5325 + }, + { + "from": 1996, + "to": 5325 + }, + { + "from": 212, + "to": 5335 + }, + { + "from": 213, + "to": 5335 + }, + { + "from": 4782, + "to": 5335 + }, + { + "from": 4207, + "to": 5336 + }, + { + "from": 3680, + "to": 5337 + }, + { + "from": 3682, + "to": 5337 + }, + { + "from": 3683, + "to": 5337 + }, + { + "from": 212, + "to": 5339 + }, + { + "from": 146, + "to": 5339 + }, + { + "from": 3915, + "to": 5345 + }, + { + "from": 4105, + "to": 5345 + }, + { + "from": 5347, + "to": 5346 + }, + { + "from": 4099, + "to": 5346 + }, + { + "from": 4353, + "to": 5346 + }, + { + "from": 5357, + "to": 5356 + }, + { + "from": 29, + "to": 5369 + }, + { + "from": 135, + "to": 5369 + }, + { + "from": 2082, + "to": 4076 + }, + { + "from": 3015, + "to": 3016 + }, + { + "from": 5373, + "to": 5372 + }, + { + "from": 5374, + "to": 5372 + }, + { + "from": 5375, + "to": 5372 + }, + { + "from": 2377, + "to": 5383 + }, + { + "from": 2490, + "to": 5387 + }, + { + "from": 5388, + "to": 5387 + }, + { + "from": 5387, + "to": 5389 + }, + { + "from": 993, + "to": 5390 + }, + { + "from": 178, + "to": 5390 + }, + { + "from": 1657, + "to": 5391 + }, + { + "from": 1664, + "to": 5391 + }, + { + "from": 2844, + "to": 5391 + }, + { + "from": 3280, + "to": 5401 + }, + { + "from": 5404, + "to": 1688 + }, + { + "from": 299, + "to": 1688 + }, + { + "from": 300, + "to": 1688 + }, + { + "from": 1688, + "to": 1688 + }, + { + "from": 270, + "to": 1688 + }, + { + "from": 271, + "to": 1688 + }, + { + "from": 3054, + "to": 5410 + }, + { + "from": 862, + "to": 5417 + }, + { + "from": 2333, + "to": 5417 + }, + { + "from": 1389, + "to": 5417 + }, + { + "from": 5410, + "to": 5419 + }, + { + "from": 986, + "to": 3365 + }, + { + "from": 5422, + "to": 3365 + }, + { + "from": 3366, + "to": 3365 + }, + { + "from": 17, + "to": 5423 + }, + { + "from": 2054, + "to": 5425 + }, + { + "from": 11, + "to": 5425 + }, + { + "from": 17, + "to": 5425 + }, + { + "from": 139, + "to": 5425 + }, + { + "from": 16, + "to": 5426 + }, + { + "from": 17, + "to": 5426 + }, + { + "from": 5433, + "to": 1689 + }, + { + "from": 299, + "to": 1689 + }, + { + "from": 300, + "to": 1689 + }, + { + "from": 1689, + "to": 1689 + }, + { + "from": 270, + "to": 1689 + }, + { + "from": 271, + "to": 1689 + }, + { + "from": 295, + "to": 5436 + }, + { + "from": 5115, + "to": 5436 + }, + { + "from": 270, + "to": 270 + }, + { + "from": 299, + "to": 270 + }, + { + "from": 129, + "to": 5437 + }, + { + "from": 133, + "to": 5437 + }, + { + "from": 134, + "to": 5437 + }, + { + "from": 135, + "to": 5437 + }, + { + "from": 138, + "to": 5437 + }, + { + "from": 385, + "to": 5437 + }, + { + "from": 29, + "to": 5437 + }, + { + "from": 30, + "to": 5437 + }, + { + "from": 31, + "to": 5437 + }, + { + "from": 36, + "to": 5437 + }, + { + "from": 37, + "to": 5437 + }, + { + "from": 38, + "to": 5437 + }, + { + "from": 136, + "to": 5437 + }, + { + "from": 5443, + "to": 5443 + }, + { + "from": 4828, + "to": 5443 + }, + { + "from": 5454, + "to": 5453 + }, + { + "from": 5452, + "to": 5454 + }, + { + "from": 5457, + "to": 5458 + }, + { + "from": 2900, + "to": 5459 + }, + { + "from": 2899, + "to": 5459 + }, + { + "from": 5460, + "to": 5459 + }, + { + "from": 2901, + "to": 5459 + }, + { + "from": 393, + "to": 2277 + }, + { + "from": 947, + "to": 2277 + }, + { + "from": 395, + "to": 2277 + }, + { + "from": 2900, + "to": 5462 + }, + { + "from": 5459, + "to": 5462 + }, + { + "from": 2899, + "to": 5462 + }, + { + "from": 5463, + "to": 5462 + }, + { + "from": 5460, + "to": 5462 + }, + { + "from": 2901, + "to": 5462 + }, + { + "from": 215, + "to": 5469 + }, + { + "from": 578, + "to": 5470 + }, + { + "from": 215, + "to": 5470 + }, + { + "from": 578, + "to": 5471 + }, + { + "from": 215, + "to": 5471 + }, + { + "from": 578, + "to": 5472 + }, + { + "from": 215, + "to": 5472 + }, + { + "from": 82, + "to": 5473 + }, + { + "from": 83, + "to": 5473 + }, + { + "from": 84, + "to": 5473 + }, + { + "from": 5475, + "to": 5474 + }, + { + "from": 5474, + "to": 5476 + }, + { + "from": 3741, + "to": 5475 + }, + { + "from": 1839, + "to": 5475 + }, + { + "from": 3742, + "to": 5475 + }, + { + "from": 82, + "to": 5478 + }, + { + "from": 83, + "to": 5478 + }, + { + "from": 84, + "to": 5478 + }, + { + "from": 5479, + "to": 5479 + }, + { + "from": 2979, + "to": 5479 + }, + { + "from": 5480, + "to": 5479 + }, + { + "from": 2979, + "to": 5481 + }, + { + "from": 5482, + "to": 5481 + }, + { + "from": 5481, + "to": 5481 + }, + { + "from": 2979, + "to": 5483 + }, + { + "from": 5484, + "to": 5484 + }, + { + "from": 5485, + "to": 5484 + }, + { + "from": 5487, + "to": 5486 + }, + { + "from": 2979, + "to": 5486 + }, + { + "from": 5486, + "to": 5486 + }, + { + "from": 2979, + "to": 5488 + }, + { + "from": 5488, + "to": 5488 + }, + { + "from": 5489, + "to": 5488 + }, + { + "from": 5491, + "to": 5490 + }, + { + "from": 5492, + "to": 5490 + }, + { + "from": 5490, + "to": 5490 + }, + { + "from": 3640, + "to": 5503 + }, + { + "from": 537, + "to": 5526 + }, + { + "from": 538, + "to": 5526 + }, + { + "from": 539, + "to": 5526 + }, + { + "from": 540, + "to": 5526 + }, + { + "from": 106, + "to": 5531 + }, + { + "from": 2087, + "to": 1113 + }, + { + "from": 5532, + "to": 5533 + }, + { + "from": 5533, + "to": 5534 + }, + { + "from": 129, + "to": 294 + }, + { + "from": 133, + "to": 294 + }, + { + "from": 5060, + "to": 294 + }, + { + "from": 135, + "to": 294 + }, + { + "from": 138, + "to": 294 + }, + { + "from": 385, + "to": 294 + }, + { + "from": 140, + "to": 294 + }, + { + "from": 141, + "to": 294 + }, + { + "from": 134, + "to": 294 + }, + { + "from": 139, + "to": 294 + }, + { + "from": 136, + "to": 294 + }, + { + "from": 4268, + "to": 5535 + }, + { + "from": 4268, + "to": 5536 + }, + { + "from": 7, + "to": 12 + }, + { + "from": 385, + "to": 12 + }, + { + "from": 540, + "to": 5539 + }, + { + "from": 540, + "to": 5540 + }, + { + "from": 4268, + "to": 5541 + }, + { + "from": 540, + "to": 5544 + }, + { + "from": 1621, + "to": 5546 + }, + { + "from": 3485, + "to": 5549 + }, + { + "from": 1669, + "to": 5550 + }, + { + "from": 1670, + "to": 5550 + }, + { + "from": 1672, + "to": 5550 + }, + { + "from": 2026, + "to": 5550 + }, + { + "from": 2025, + "to": 5550 + }, + { + "from": 5059, + "to": 200 + }, + { + "from": 5060, + "to": 200 + }, + { + "from": 33, + "to": 200 + }, + { + "from": 40, + "to": 200 + }, + { + "from": 198, + "to": 5551 + }, + { + "from": 294, + "to": 198 + }, + { + "from": 200, + "to": 198 + }, + { + "from": 731, + "to": 5554 + }, + { + "from": 1664, + "to": 5554 + }, + { + "from": 2844, + "to": 5554 + }, + { + "from": 4880, + "to": 5572 + }, + { + "from": 4881, + "to": 5572 + }, + { + "from": 5574, + "to": 5573 + }, + { + "from": 1004, + "to": 5578 + }, + { + "from": 66, + "to": 5581 + }, + { + "from": 5581, + "to": 5582 + }, + { + "from": 68, + "to": 5582 + }, + { + "from": 5602, + "to": 5601 + }, + { + "from": 5600, + "to": 5604 + }, + { + "from": 5605, + "to": 5604 + }, + { + "from": 5606, + "to": 5604 + }, + { + "from": 5602, + "to": 5604 + }, + { + "from": 5607, + "to": 5604 + }, + { + "from": 5609, + "to": 5608 + }, + { + "from": 1327, + "to": 5609 + }, + { + "from": 1328, + "to": 5609 + }, + { + "from": 1329, + "to": 5609 + }, + { + "from": 5392, + "to": 5610 + }, + { + "from": 5392, + "to": 5611 + }, + { + "from": 3326, + "to": 3325 + }, + { + "from": 280, + "to": 5628 + }, + { + "from": 11, + "to": 5628 + }, + { + "from": 1183, + "to": 5628 + }, + { + "from": 2, + "to": 5629 + }, + { + "from": 12, + "to": 5629 + }, + { + "from": 15, + "to": 5629 + }, + { + "from": 5628, + "to": 5629 + }, + { + "from": 3200, + "to": 5629 + }, + { + "from": 5630, + "to": 5629 + }, + { + "from": 280, + "to": 5630 + }, + { + "from": 11, + "to": 5630 + }, + { + "from": 1183, + "to": 5630 + }, + { + "from": 265, + "to": 267 + }, + { + "from": 3116, + "to": 5635 + }, + { + "from": 2344, + "to": 5641 + }, + { + "from": 2347, + "to": 5641 + }, + { + "from": 2348, + "to": 5641 + }, + { + "from": 2210, + "to": 5641 + }, + { + "from": 3422, + "to": 5661 + }, + { + "from": 1910, + "to": 5661 + }, + { + "from": 4833, + "to": 1571 + }, + { + "from": 4311, + "to": 1571 + }, + { + "from": 3080, + "to": 1571 + }, + { + "from": 1072, + "to": 1571 + }, + { + "from": 952, + "to": 5664 + }, + { + "from": 954, + "to": 5664 + }, + { + "from": 1761, + "to": 5664 + }, + { + "from": 2562, + "to": 5664 + }, + { + "from": 410, + "to": 5664 + }, + { + "from": 959, + "to": 5664 + }, + { + "from": 458, + "to": 5664 + }, + { + "from": 4543, + "to": 4544 + }, + { + "from": 1552, + "to": 5666 + }, + { + "from": 1553, + "to": 5666 + }, + { + "from": 1554, + "to": 5666 + }, + { + "from": 1555, + "to": 5666 + }, + { + "from": 1552, + "to": 5667 + }, + { + "from": 1553, + "to": 5667 + }, + { + "from": 1554, + "to": 5667 + }, + { + "from": 1555, + "to": 5667 + }, + { + "from": 82, + "to": 5673 + }, + { + "from": 83, + "to": 5673 + }, + { + "from": 84, + "to": 5673 + }, + { + "from": 82, + "to": 5676 + }, + { + "from": 83, + "to": 5676 + }, + { + "from": 84, + "to": 5676 + }, + { + "from": 5677, + "to": 2310 + }, + { + "from": 5679, + "to": 5678 + }, + { + "from": 5678, + "to": 5678 + }, + { + "from": 5680, + "to": 2240 + }, + { + "from": 2240, + "to": 2240 + }, + { + "from": 5682, + "to": 5682 + }, + { + "from": 5683, + "to": 5682 + }, + { + "from": 540, + "to": 5684 + }, + { + "from": 540, + "to": 5687 + }, + { + "from": 5689, + "to": 5688 + }, + { + "from": 5688, + "to": 5688 + }, + { + "from": 1193, + "to": 3357 + }, + { + "from": 410, + "to": 3357 + }, + { + "from": 5700, + "to": 5701 + }, + { + "from": 411, + "to": 5702 + }, + { + "from": 5744, + "to": 5745 + }, + { + "from": 1743, + "to": 5750 + }, + { + "from": 3474, + "to": 5751 + }, + { + "from": 2192, + "to": 5755 + }, + { + "from": 597, + "to": 5755 + }, + { + "from": 2885, + "to": 5755 + }, + { + "from": 570, + "to": 68 + }, + { + "from": 260, + "to": 68 + }, + { + "from": 4763, + "to": 68 + }, + { + "from": 5756, + "to": 68 + }, + { + "from": 2261, + "to": 68 + }, + { + "from": 67, + "to": 68 + }, + { + "from": 5757, + "to": 68 + }, + { + "from": 5582, + "to": 68 + }, + { + "from": 5758, + "to": 68 + }, + { + "from": 66, + "to": 68 + }, + { + "from": 3170, + "to": 68 + }, + { + "from": 1160, + "to": 68 + }, + { + "from": 1, + "to": 5762 + }, + { + "from": 393, + "to": 5765 + }, + { + "from": 395, + "to": 5765 + }, + { + "from": 652, + "to": 5767 + }, + { + "from": 2661, + "to": 5767 + }, + { + "from": 5772, + "to": 5774 + }, + { + "from": 5773, + "to": 5774 + }, + { + "from": 3478, + "to": 5774 + }, + { + "from": 5780, + "to": 5757 + }, + { + "from": 68, + "to": 5757 + }, + { + "from": 66, + "to": 5780 + }, + { + "from": 1743, + "to": 5784 + }, + { + "from": 4713, + "to": 5789 + }, + { + "from": 5789, + "to": 5790 + }, + { + "from": 628, + "to": 5791 + }, + { + "from": 3320, + "to": 5791 + }, + { + "from": 136, + "to": 5060 + }, + { + "from": 129, + "to": 5060 + }, + { + "from": 133, + "to": 5060 + }, + { + "from": 134, + "to": 5060 + }, + { + "from": 135, + "to": 5060 + }, + { + "from": 138, + "to": 5060 + }, + { + "from": 385, + "to": 5060 + }, + { + "from": 140, + "to": 5060 + }, + { + "from": 141, + "to": 5060 + }, + { + "from": 29, + "to": 5060 + }, + { + "from": 30, + "to": 5060 + }, + { + "from": 31, + "to": 5060 + }, + { + "from": 139, + "to": 5060 + }, + { + "from": 36, + "to": 5060 + }, + { + "from": 37, + "to": 5060 + }, + { + "from": 38, + "to": 5060 + }, + { + "from": 41, + "to": 5060 + }, + { + "from": 258, + "to": 1671 + }, + { + "from": 5064, + "to": 5794 + }, + { + "from": 5065, + "to": 5794 + }, + { + "from": 5795, + "to": 5794 + }, + { + "from": 1083, + "to": 5794 + }, + { + "from": 5796, + "to": 5794 + }, + { + "from": 561, + "to": 5800 + }, + { + "from": 562, + "to": 5800 + }, + { + "from": 563, + "to": 5800 + }, + { + "from": 564, + "to": 5800 + }, + { + "from": 565, + "to": 5800 + }, + { + "from": 566, + "to": 5800 + }, + { + "from": 567, + "to": 5800 + }, + { + "from": 568, + "to": 5800 + }, + { + "from": 561, + "to": 5801 + }, + { + "from": 562, + "to": 5801 + }, + { + "from": 563, + "to": 5801 + }, + { + "from": 564, + "to": 5801 + }, + { + "from": 565, + "to": 5801 + }, + { + "from": 566, + "to": 5801 + }, + { + "from": 567, + "to": 5801 + }, + { + "from": 568, + "to": 5801 + }, + { + "from": 2352, + "to": 5804 + }, + { + "from": 5805, + "to": 5756 + }, + { + "from": 68, + "to": 5756 + }, + { + "from": 66, + "to": 5805 + }, + { + "from": 3365, + "to": 5808 + }, + { + "from": 3366, + "to": 5808 + }, + { + "from": 3364, + "to": 5809 + }, + { + "from": 3365, + "to": 5809 + }, + { + "from": 3366, + "to": 5809 + }, + { + "from": 1494, + "to": 1560 + }, + { + "from": 5804, + "to": 1560 + }, + { + "from": 3927, + "to": 1560 + }, + { + "from": 169, + "to": 5812 + }, + { + "from": 988, + "to": 5812 + }, + { + "from": 513, + "to": 5812 + }, + { + "from": 4615, + "to": 5812 + }, + { + "from": 676, + "to": 5812 + }, + { + "from": 677, + "to": 5812 + }, + { + "from": 168, + "to": 5812 + }, + { + "from": 16, + "to": 5814 + }, + { + "from": 17, + "to": 5814 + }, + { + "from": 5814, + "to": 5815 + }, + { + "from": 5056, + "to": 5816 + }, + { + "from": 4724, + "to": 5819 + }, + { + "from": 5059, + "to": 5819 + }, + { + "from": 5060, + "to": 5819 + }, + { + "from": 199, + "to": 5819 + }, + { + "from": 199, + "to": 5820 + }, + { + "from": 30, + "to": 5822 + }, + { + "from": 31, + "to": 5822 + }, + { + "from": 1388, + "to": 5822 + }, + { + "from": 1391, + "to": 5822 + }, + { + "from": 36, + "to": 5822 + }, + { + "from": 37, + "to": 5822 + }, + { + "from": 280, + "to": 5823 + }, + { + "from": 4015, + "to": 5823 + }, + { + "from": 2857, + "to": 5823 + }, + { + "from": 5843, + "to": 5842 + }, + { + "from": 5842, + "to": 2124 + }, + { + "from": 1494, + "to": 3927 + }, + { + "from": 3764, + "to": 3927 + }, + { + "from": 1552, + "to": 5853 + }, + { + "from": 1553, + "to": 5853 + }, + { + "from": 1554, + "to": 5853 + }, + { + "from": 1555, + "to": 5853 + }, + { + "from": 5857, + "to": 5856 + }, + { + "from": 953, + "to": 5859 + }, + { + "from": 3314, + "to": 5859 + }, + { + "from": 2859, + "to": 5859 + }, + { + "from": 960, + "to": 5859 + }, + { + "from": 1552, + "to": 2068 + }, + { + "from": 1553, + "to": 2068 + }, + { + "from": 1554, + "to": 2068 + }, + { + "from": 1555, + "to": 2068 + }, + { + "from": 82, + "to": 5860 + }, + { + "from": 83, + "to": 5860 + }, + { + "from": 84, + "to": 5860 + }, + { + "from": 82, + "to": 5861 + }, + { + "from": 83, + "to": 5861 + }, + { + "from": 84, + "to": 5861 + }, + { + "from": 82, + "to": 5862 + }, + { + "from": 83, + "to": 5862 + }, + { + "from": 84, + "to": 5862 + }, + { + "from": 5864, + "to": 5864 + }, + { + "from": 5865, + "to": 5864 + }, + { + "from": 5868, + "to": 5867 + }, + { + "from": 5867, + "to": 5867 + }, + { + "from": 5869, + "to": 2253 + }, + { + "from": 2253, + "to": 2253 + }, + { + "from": 5870, + "to": 2254 + }, + { + "from": 2254, + "to": 2254 + }, + { + "from": 5871, + "to": 5871 + }, + { + "from": 5872, + "to": 5871 + }, + { + "from": 582, + "to": 5873 + }, + { + "from": 2057, + "to": 5873 + }, + { + "from": 4575, + "to": 5873 + }, + { + "from": 4576, + "to": 5873 + }, + { + "from": 2055, + "to": 5873 + }, + { + "from": 2053, + "to": 5873 + }, + { + "from": 2059, + "to": 5873 + }, + { + "from": 17, + "to": 5874 + }, + { + "from": 540, + "to": 5878 + }, + { + "from": 5880, + "to": 5879 + }, + { + "from": 5879, + "to": 5879 + }, + { + "from": 5884, + "to": 5883 + }, + { + "from": 5883, + "to": 5883 + }, + { + "from": 384, + "to": 5896 + }, + { + "from": 1046, + "to": 5896 + }, + { + "from": 5900, + "to": 5899 + }, + { + "from": 5899, + "to": 5901 + }, + { + "from": 821, + "to": 5902 + }, + { + "from": 1671, + "to": 5902 + }, + { + "from": 258, + "to": 5902 + }, + { + "from": 922, + "to": 5902 + }, + { + "from": 393, + "to": 5903 + }, + { + "from": 133, + "to": 5903 + }, + { + "from": 369, + "to": 5903 + }, + { + "from": 2335, + "to": 5903 + }, + { + "from": 139, + "to": 5903 + }, + { + "from": 140, + "to": 5903 + }, + { + "from": 4311, + "to": 5903 + }, + { + "from": 141, + "to": 5903 + }, + { + "from": 682, + "to": 5903 + }, + { + "from": 2670, + "to": 5903 + }, + { + "from": 2334, + "to": 5903 + }, + { + "from": 2271, + "to": 5903 + }, + { + "from": 1942, + "to": 5905 + }, + { + "from": 596, + "to": 5905 + }, + { + "from": 537, + "to": 5906 + }, + { + "from": 538, + "to": 5906 + }, + { + "from": 539, + "to": 5906 + }, + { + "from": 540, + "to": 5906 + }, + { + "from": 2271, + "to": 5907 + }, + { + "from": 1072, + "to": 5907 + }, + { + "from": 2334, + "to": 5908 + }, + { + "from": 2335, + "to": 5908 + }, + { + "from": 2337, + "to": 5908 + }, + { + "from": 2336, + "to": 5908 + }, + { + "from": 2334, + "to": 5909 + }, + { + "from": 2336, + "to": 5909 + }, + { + "from": 2337, + "to": 5909 + }, + { + "from": 135, + "to": 2083 + }, + { + "from": 141, + "to": 2083 + }, + { + "from": 29, + "to": 1317 + }, + { + "from": 1318, + "to": 1317 + }, + { + "from": 1327, + "to": 5910 + }, + { + "from": 1328, + "to": 5910 + }, + { + "from": 1329, + "to": 5910 + }, + { + "from": 5913, + "to": 5914 + }, + { + "from": 221, + "to": 1148 + }, + { + "from": 5919, + "to": 1148 + }, + { + "from": 140, + "to": 1148 + }, + { + "from": 139, + "to": 1148 + }, + { + "from": 141, + "to": 1148 + }, + { + "from": 5509, + "to": 5920 + }, + { + "from": 5509, + "to": 5921 + }, + { + "from": 5929, + "to": 5929 + }, + { + "from": 5930, + "to": 5929 + }, + { + "from": 2533, + "to": 5942 + }, + { + "from": 2534, + "to": 5942 + }, + { + "from": 977, + "to": 5943 + }, + { + "from": 954, + "to": 5946 + }, + { + "from": 369, + "to": 5946 + }, + { + "from": 370, + "to": 5946 + }, + { + "from": 1310, + "to": 1311 + }, + { + "from": 954, + "to": 5950 + }, + { + "from": 954, + "to": 5951 + }, + { + "from": 3944, + "to": 5951 + }, + { + "from": 956, + "to": 5951 + }, + { + "from": 957, + "to": 5951 + }, + { + "from": 954, + "to": 5952 + }, + { + "from": 1013, + "to": 5952 + }, + { + "from": 1464, + "to": 5953 + }, + { + "from": 384, + "to": 5955 + }, + { + "from": 386, + "to": 5955 + }, + { + "from": 4874, + "to": 5965 + }, + { + "from": 4875, + "to": 5965 + }, + { + "from": 5966, + "to": 2819 + }, + { + "from": 135, + "to": 5966 + }, + { + "from": 136, + "to": 5966 + }, + { + "from": 139, + "to": 5966 + }, + { + "from": 923, + "to": 5966 + }, + { + "from": 2546, + "to": 5966 + }, + { + "from": 140, + "to": 5966 + }, + { + "from": 141, + "to": 5966 + }, + { + "from": 540, + "to": 1412 + }, + { + "from": 4256, + "to": 1575 + }, + { + "from": 219, + "to": 5985 + }, + { + "from": 126, + "to": 5985 + }, + { + "from": 221, + "to": 5985 + }, + { + "from": 139, + "to": 5985 + }, + { + "from": 2819, + "to": 3579 + }, + { + "from": 988, + "to": 3579 + }, + { + "from": 2086, + "to": 3579 + }, + { + "from": 821, + "to": 3579 + }, + { + "from": 2085, + "to": 3579 + }, + { + "from": 1127, + "to": 3579 + }, + { + "from": 5004, + "to": 3579 + }, + { + "from": 676, + "to": 3579 + }, + { + "from": 1308, + "to": 3579 + }, + { + "from": 922, + "to": 3579 + }, + { + "from": 2820, + "to": 3579 + }, + { + "from": 567, + "to": 5986 + }, + { + "from": 568, + "to": 5986 + }, + { + "from": 5988, + "to": 5987 + }, + { + "from": 1026, + "to": 5989 + }, + { + "from": 1027, + "to": 5989 + }, + { + "from": 1028, + "to": 5989 + }, + { + "from": 1024, + "to": 5989 + }, + { + "from": 1029, + "to": 5989 + }, + { + "from": 66, + "to": 5990 + }, + { + "from": 5990, + "to": 5758 + }, + { + "from": 68, + "to": 5758 + } + ], + "nodes": [ + { + "dept": "CSE", + "description": "An introduction to the mathematical theory of computability. Formal languages. Finite automata and regular expression. Push-down automata and context-free languages. Computable or recursive functions: Turing machines, the halting problem. Undecidability. Credit not offered for both Math 166 and CSE 105. Equivalent to Math 166. ", + "edges_from": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "edges_to": [ + 10, + 782 + ], + "id": 0, + "label": "CSE 105", + "title": "Theory of Computability (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 0, + 5762 + ], + "id": 1, + "label": "CSE 12", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 9, + 3 + ], + "edges_to": [ + 0, + 10, + 5629 + ], + "id": 2, + "label": "CSE 21", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 4024, + 393, + 395 + ], + "edges_to": [ + 0, + 2, + 796, + 1182 + ], + "id": 3, + "label": "CSE 20", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 0 + ], + "id": 4, + "label": "MATH 184", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 0 + ], + "id": 5, + "label": "CSE 15L", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 385, + 7 + ], + "edges_to": [ + 0, + 1036, + 1037, + 734, + 679 + ], + "id": 6, + "label": "MATH 100A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 139, + 140, + 141, + 134 + ], + "edges_to": [ + 0, + 384, + 6, + 8, + 12, + 796, + 1182 + ], + "id": 7, + "label": "MATH 109", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 385, + 7 + ], + "edges_to": [ + 0, + 734, + 679 + ], + "id": 8, + "label": "MATH 103A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 393, + 395, + 2670 + ], + "edges_to": [ + 0, + 2, + 1182 + ], + "id": 9, + "label": "MATH 15A", + "title": "" + }, + { + "dept": "CSE", + "description": "Topics include private and public-key cryptography, block ciphers, data encryption, authentication, key distribution and certification, pseudorandom number generators, design and analysis of protocols, zero-knowledge proofs, and advanced protocols. Emphasizes rigorous mathematical approach including formal definitions of security goals and proofs of protocol security. ", + "edges_from": [ + 0, + 2, + 11, + 12, + 13, + 14, + 15 + ], + "edges_to": [], + "id": 10, + "label": "CSE 107", + "title": "Introduction to Modern Cryptography (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 2053, + 2057, + 10, + 1743, + 5425, + 4407, + 5628, + 5630 + ], + "id": 11, + "label": "CSE 101", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 385, + 7 + ], + "edges_to": [ + 10, + 5629 + ], + "id": 12, + "label": "MATH 184A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 10 + ], + "id": 13, + "label": "MATH 15B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 10 + ], + "id": 14, + "label": "MATH 166", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 10, + 5629 + ], + "id": 15, + "label": "MATH 154", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 11, + 4868, + 2053, + 582, + 2057, + 2059, + 3889, + 5426, + 5814, + 4861, + 4862, + 4575 + ], + "id": 16, + "label": "MATH 176", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 4256, + 11, + 4868, + 2053, + 582, + 5425, + 2057, + 2059, + 5874, + 5423, + 3889, + 5426, + 3411, + 5814, + 4407, + 3004, + 4861, + 4862, + 4575 + ], + "id": 17, + "label": "CSE 100", + "title": "" + }, + { + "dept": "CSE", + "description": "Introduction to Probability and Statistics (4)", + "edges_from": [], + "edges_to": [ + 3642 + ], + "id": 18, + "label": "CSE 103", + "title": "A Practical" + }, + { + "dept": "SOCI", + "description": "Honors Seminar: Supervised Thesis Research (4)", + "edges_from": [], + "edges_to": [], + "id": 19, + "label": "SOCI 196B", + "title": "" + }, + { + "dept": "SOCI", + "description": "Honors Seminar: Advanced Studies in Sociology (4)", + "edges_from": [], + "edges_to": [], + "id": 20, + "label": "SOCI 196A", + "title": "" + }, + { + "dept": "HIEA", + "description": "The impact of modern transformations on female roles and gender relations in China, Japan, and Korea, focusing on the late imperial/early modern periods through the twentieth century.", + "edges_from": [], + "edges_to": [], + "id": 21, + "label": "HIEA 125", + "title": "Women and Gender in East Asia (4)" + }, + { + "dept": "GLBH", + "description": "Provides a foundational interdisciplinary understanding of complex global health issues and introduces major concepts and principles in global health. The course surveys the range of problems contributing to the global burden of disease and disability including infectious disease, mental illness, refugee and immigrant health, natural disasters, climate change, and food insecurity.", + "edges_from": [], + "edges_to": [], + "id": 22, + "label": "GLBH 20", + "title": "Introduction to Global Health (4)" + }, + { + "dept": "PHIL", + "description": "Introduction to nineteenth-century philosophy, focusing on skepticism", + "edges_from": [], + "edges_to": [ + 488 + ], + "id": 23, + "label": "PHIL 33", + "title": "Philosophy between Reason and Despair (4)" + }, + { + "dept": "PHIL", + "description": "Beginning with the contrast between medieval and early modern thought,", + "edges_from": [], + "edges_to": [ + 488 + ], + "id": 24, + "label": "PHIL 32", + "title": "Philosophy and the Rise of Modern Science (4)" + }, + { + "dept": "PHIL", + "description": "to Ancient Philosophy (4)", + "edges_from": [], + "edges_to": [], + "id": 25, + "label": "PHIL 31", + "title": "Introduction" + }, + { + "dept": "HIEU", + "description": "This course will be a comparative and thematic examination of the fascist movement and regimes in Europe from the 1920s to the 1940s. In particular, it will focus on the emergence of the two major fascist movements in Italy and Germany. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 26, + "label": "HIEU 172/272", + "title": "Comparative European Fascism (4)" + }, + { + "dept": "PHIL", + "description": "An exploration of central philosophical issues as they have been taken up in the diverse philosophical traditions of the Americas, such as indigenous philosophy, Latin American philosophy, American Pragmatism, and the Civil Rights movement, among others. Topics may include ethics, social and political philosophy, colonialism, philosophy of race and gender, environmentalism, and issues in philosophy of language.", + "edges_from": [], + "edges_to": [], + "id": 27, + "label": "PHIL 35", + "title": "Philosophy in the Americas (4)" + }, + { + "dept": "PHYS", + "description": "Project-based course developing tools and techniques of observational astrophysical research: photon counting, imaging, spectroscopy, astrometry; collecting data at the telescope; data reduction and analysis; probability functions; error analysis techniques; and scientific writing. ", + "edges_from": [ + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 29, + 30, + 31 + ], + "edges_to": [], + "id": 28, + "label": "PHYS 164", + "title": "Observational Astrophysics Research Lab (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 129, + 133 + ], + "edges_to": [ + 258, + 1673, + 653, + 654, + 1295, + 28, + 31, + 32, + 33, + 34, + 35, + 1316, + 1317, + 39, + 169, + 5037, + 1847, + 5052, + 5437, + 446, + 5059, + 5060, + 477, + 1128, + 2025, + 1388, + 1390, + 5233, + 5369, + 1019 + ], + "id": 29, + "label": "PHYS 2A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 1673, + 5263, + 5060, + 28, + 158, + 32, + 34, + 35, + 39, + 1195, + 5052, + 445, + 446, + 447, + 448, + 5059, + 2884, + 598, + 3343, + 477, + 2025, + 5437, + 5233, + 5822, + 4728 + ], + "id": 30, + "label": "PHYS 2C", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 129, + 133, + 38, + 138, + 29, + 134 + ], + "edges_to": [ + 32, + 33, + 34, + 35, + 2884, + 5822, + 39, + 1673, + 5052, + 5437, + 1391, + 5233, + 5059, + 213, + 2025, + 5060, + 922, + 28, + 477, + 446, + 4277 + ], + "id": 31, + "label": "PHYS 2B", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 36, + 37, + 38, + 40, + 41, + 29, + 30, + 31 + ], + "edges_to": [ + 28 + ], + "id": 32, + "label": "PHYS 163", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 385, + 38, + 135, + 136, + 29, + 31 + ], + "edges_to": [ + 32, + 448, + 34, + 35, + 2884, + 39, + 200, + 5052, + 1195, + 5263, + 1231, + 3343, + 212, + 443, + 28, + 445, + 447 + ], + "id": 33, + "label": "PHYS 2D", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 36, + 37, + 38, + 40, + 41, + 29, + 30, + 31 + ], + "edges_to": [ + 28 + ], + "id": 34, + "label": "PHYS 161", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 36, + 37, + 38, + 40, + 41, + 29, + 30, + 31 + ], + "edges_to": [ + 28 + ], + "id": 35, + "label": "PHYS 160", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 34, + 35, + 2884, + 39, + 5052, + 5233, + 5059, + 5822, + 5060, + 28, + 5437, + 446 + ], + "id": 36, + "label": "PHYS 4C", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 34, + 35, + 2884, + 39, + 5052, + 5233, + 5059, + 5060, + 28, + 5437, + 5822 + ], + "id": 37, + "label": "PHYS 4B", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 129, + 133 + ], + "edges_to": [ + 32, + 33, + 34, + 35, + 5060, + 39, + 1128, + 5052, + 1295, + 5233, + 5059, + 1847, + 28, + 5437, + 446, + 31 + ], + "id": 38, + "label": "PHYS 4A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 36, + 37, + 38, + 40, + 41, + 29, + 30, + 31 + ], + "edges_to": [ + 28 + ], + "id": 39, + "label": "PHYS 162", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 34, + 35, + 2884, + 39, + 200, + 5052, + 1231, + 443, + 28 + ], + "id": 40, + "label": "PHYS 4E", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 34, + 35, + 2884, + 39, + 5052, + 1231, + 5059, + 5060, + 28, + 446 + ], + "id": 41, + "label": "PHYS 4D", + "title": "" + }, + { + "dept": "AAS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to 15-20 students. Enrollment priority will be given to freshmen. Seminars are open to sophomores, juniors and seniors on a space available basis. P/NP grades only. May be taken for credit four times.", + "edges_from": [], + "edges_to": [], + "id": 42, + "label": "AAS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 228H.) Techniques for speeding up Internet implementations, including system restructuring, new algorithms, and hardware innovations. Topics include: models for protocols, systems and hardware; efficiency principles; applying these principles to deriving techniques for efficient implementation of common endnode and router functions. ", + "edges_from": [ + 44, + 45 + ], + "edges_to": [], + "id": 43, + "label": "CSE 222B", + "title": "Internet Algorithmics (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 45 + ], + "edges_to": [ + 43, + 2195 + ], + "id": 44, + "label": "CSE 222A", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 43, + 44 + ], + "id": 45, + "label": "CSE 123A", + "title": "" + }, + { + "dept": "MGT", + "description": "Offers a pragmatic view into the world of sales, from its strategic importance to the day-to-day creation and management of a sales organization. Students will also have the opportunity to develop and practice their own sales skills. Letter grades only. Students may not earn credit for both MGT 480 and MGT 206. Also, students may not receive credit for MGT 480 and MGT 209 Topics in Marketing with the course subtitle Sales and Sales Management. ", + "edges_from": [], + "edges_to": [], + "id": 46, + "label": "MGT 480", + "title": "Sales and Sales Management (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major explores the natural and altered environment as a basis for subject as well as placement of work pertaining to the environment. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 47, + "label": "VIS 110G", + "title": "The Natural and Altered Environment (4)" + }, + { + "dept": "LTEA", + "description": "A survey of different genres of traditional Chinese poetry from various periods.", + "edges_from": [], + "edges_to": [], + "id": 48, + "label": "LTEA 100A", + "title": "Classical Chinese Poetry in Translation (4)" + }, + { + "dept": "LTEA", + "description": "A survey of Chinese poetry written in the vernacular from 1918 to 1949.", + "edges_from": [], + "edges_to": [], + "id": 49, + "label": "LTEA 100B", + "title": "Modern Chinese Poetry in Translation (4)" + }, + { + "dept": "LTEA", + "description": "Contemporary Chinese Poetry in Translation (4)", + "edges_from": [], + "edges_to": [], + "id": 50, + "label": "LTEA 100C", + "title": "" + }, + { + "dept": "CAT", + "description": "Individual independent research or creative project. Designated for Sixth College students to have the opportunity to work on a project supervised by a faculty member in a specific department, where the subject or content of the project cannot be represented by the academic department of the faculty member. ", + "edges_from": [ + 52, + 53, + 54 + ], + "edges_to": [], + "id": 51, + "label": "CAT 199", + "title": "Culture, Art, and Technology Independent Studies (4)" + }, + { + "dept": "CAT", + "description": "", + "edges_from": [], + "edges_to": [ + 4367, + 1682, + 51, + 54, + 55, + 57 + ], + "id": 52, + "label": "CAT 1", + "title": "" + }, + { + "dept": "CAT", + "description": "", + "edges_from": [ + 54 + ], + "edges_to": [ + 3810, + 261, + 4367, + 272, + 273, + 1682, + 51, + 55, + 57, + 1887, + 287 + ], + "id": 53, + "label": "CAT 3", + "title": "" + }, + { + "dept": "CAT", + "description": "", + "edges_from": [ + 52 + ], + "edges_to": [ + 3810, + 261, + 4367, + 272, + 273, + 1682, + 51, + 53, + 55, + 57, + 1887, + 287 + ], + "id": 54, + "label": "CAT 2", + "title": "" + }, + { + "dept": "CAT", + "description": "Directed group studies or, in group, field studies of a creative project. Designated for Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive than individual special studies. ", + "edges_from": [ + 52, + 53, + 54 + ], + "edges_to": [], + "id": 55, + "label": "CAT 198", + "title": "Culture, Art, and Technology Directed Group Studies (4)" + }, + { + "dept": "CAT", + "description": "Undergraduate instructional assistance. Responsibilities in areas of learning and instruction. May collect course material and assist with course projects, digital workshops, and collection, organization and analysis of formative assessment data. ", + "edges_from": [], + "edges_to": [], + "id": 56, + "label": "CAT 195", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "CAT", + "description": "Supervised community-based or industry-based fieldwork. Designated for Sixth College students to have the opportunity to work on a community-based or industry-based project supervised by a faculty member and community or industry mentor in which the subject or content of the project cannot be represented by a specific academic department. Students will submit written evaluations each week of their ongoing field study. ", + "edges_from": [ + 52, + 53, + 54 + ], + "edges_to": [], + "id": 57, + "label": "CAT 197", + "title": "Culture, Art, and Technology Field Studies (4)" + }, + { + "dept": "CAT", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Culture, Art, and Technology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 58, + "label": "CAT 192", + "title": "Senior Seminar in Culture, Art, and Technology (1)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in finance. (Previously numbered Econ 214A.)", + "edges_from": [], + "edges_to": [], + "id": 59, + "label": "ECON 270", + "title": "Finance\u2014Core Asset Pricing (4)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in finance. (Previously numbered Econ 214C.)", + "edges_from": [], + "edges_to": [], + "id": 60, + "label": "ECON 272", + "title": "Finance\u2014Theory and Testing of Intertemporal Asset Pricing Models (4)" + }, + { + "dept": "SE", + "description": "Directed group study, on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 61, + "label": "SE 198", + "title": "Directed Study Group (4)" + }, + { + "dept": "SE", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 62, + "label": "SE 199", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "SE", + "description": "Teaching and tutorial assistance in a SE course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 63, + "label": "SE 195", + "title": "Teaching (2\u20134)" + }, + { + "dept": "SE", + "description": "An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, etc., under the supervision of a faculty member and industrial supervisor. Coordination of the Engineering Internship is conducted through UC San Diego\u2019s Academic Internship Program. ", + "edges_from": [], + "edges_to": [], + "id": 64, + "label": "SE 197", + "title": "Engineering Internship (1\u20134)" + }, + { + "dept": "BENG", + "description": "Development of design project in bioinformatics bioengineering. ", + "edges_from": [ + 66 + ], + "edges_to": [ + 67 + ], + "id": 65, + "label": "BENG 126A", + "title": "Design Development in Bioinformatics Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 65, + 259, + 68, + 5990, + 3169, + 1161, + 5581, + 5805, + 2260, + 5780, + 571, + 4764 + ], + "id": 66, + "label": "BENG 187B", + "title": "" + }, + { + "dept": "BENG", + "description": "Implementation of design project in bioinformatics bioengineering. ", + "edges_from": [ + 65, + 68 + ], + "edges_to": [ + 68 + ], + "id": 67, + "label": "BENG 126B", + "title": "Design Implementation in Bioinformatics Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 66, + 67, + 260, + 1160, + 3170, + 5582, + 2261, + 570, + 4763, + 5756, + 5757, + 5758 + ], + "edges_to": [ + 4481, + 3170, + 67, + 260, + 1160, + 5582, + 2261, + 570, + 5756, + 5757, + 5758 + ], + "id": 68, + "label": "BENG 187C", + "title": "" + }, + { + "dept": "MATH", + "description": "Topics from partially ordered sets, Mobius functions, simplicial complexes and shell ability. Enumeration, formal power series and formal languages, generating functions, partitions. Lagrange inversion, exponential structures, combinatorial species. Finite operator methods, q-analogues, Polya theory, Ramsey theory. Representation theory of the symmetric group, symmetric functions and operations with Schur functions.", + "edges_from": [], + "edges_to": [], + "id": 69, + "label": "MATH 264A-B-C", + "title": "Combinatorics (4-4-4)" + }, + { + "dept": "EDS", + "description": "Individual guided reading and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 70, + "label": "EDS 199", + "title": "Special Studies (4)" + }, + { + "dept": "EDS", + "description": "Directed group study, guided reading, and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 71, + "label": "EDS 198", + "title": "Directed Group Study (4\u20132)" + }, + { + "dept": "ECE", + "description": "Review of discrete-time systems and signals, Discrete-Time Fourier Transform and its properties, the Fast Fourier Transform, design of Finite Impulse Response (FIR) and Infinite Impulse Response (IIR) filters, implementation of digital filters. ", + "edges_from": [ + 73 + ], + "edges_to": [], + "id": 72, + "label": "ECE 161A", + "title": "Introduction to Digital Signal Processing (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1671 + ], + "edges_to": [ + 72, + 1473, + 4261 + ], + "id": 73, + "label": "ECE 101", + "title": "" + }, + { + "dept": "ECE", + "description": "Sampling and quantization of baseband signals;", + "edges_from": [], + "edges_to": [], + "id": 74, + "label": "ECE 161B", + "title": "Digital Signal Processing I (4)" + }, + { + "dept": "DOC", + "description": "Using the arts, this course examines the evolution of pluralistic culture to the modern period. There is a special emphasis on the interdisciplinary study of twentieth-century American culture, including music, literature, art, film, and photography. The course offers intensive instruction in writing university-level expository prose. Three hours of lecture, two hours of discussion and writing instruction. Open to Marshall College students only. (Letter grade only.) Prerequisite: completion of UC Entry Level Writing requirement. (S)", + "edges_from": [], + "edges_to": [ + 3810, + 261, + 272, + 273, + 1682, + 287, + 1887 + ], + "id": 75, + "label": "DOC 3", + "title": "Dimensions of Culture: Imagination (6)" + }, + { + "dept": "DOC", + "description": "This course considers the nature of justice in philosophical, historical, and legal terms. Topics include racial justice, political representation, economic justice, gender and justice, the rights of cultural minorities, and crime and punishment. The course offers intensive instruction in writing university-level expository prose. Three hours of lecture, two hours of discussion and writing instruction. Open to Marshall College students only. (Letter grade only.) Prerequisite: completion of UC Entry Level Writing requirement. (W)", + "edges_from": [], + "edges_to": [ + 3810, + 261, + 272, + 273, + 1682, + 287, + 4508, + 1887 + ], + "id": 76, + "label": "DOC 2", + "title": "Dimensions of Culture: Justice (6)" + }, + { + "dept": "DOC", + "description": "This course focuses on sociocultural diversity in examining class, ethnicity, race, gender, and sexuality as significant markers of differences among persons. Emphasizing American society, it explores the cultural understandings of diversity and its economic, moral, and political consequences. Three hours of lecture, one hour of discussion. Open to Marshall College students only. (Letter grade only.) (F)", + "edges_from": [], + "edges_to": [ + 1682, + 2236 + ], + "id": 77, + "label": "DOC 1", + "title": "Dimensions of Culture: Diversity (4)" + }, + { + "dept": "SE", + "description": "Materials testing for cement and concrete, metals and alloys, polymers and composites, and wood. Materials selection and structural design to meet functional and cost requirements. Structural construction and testing. Materials measurement techniques. Use of computer resources. ", + "edges_from": [ + 79 + ], + "edges_to": [ + 3745 + ], + "id": 78, + "label": "SE 104L", + "title": "Structural Materials Lab (1)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 1318, + 653, + 654 + ], + "edges_to": [ + 3745, + 78 + ], + "id": 79, + "label": "SE 104", + "title": "" + }, + { + "dept": "ETHN", + "description": "An intensive survey of social and cultural theory, focusing on how constructions of science, language, politics, and social inequality shaped early modernity, romantic nationalism, Marxism, cultural relativity, psychoanalysis, and fin de si\u00e8cle social thought. The second quarter surveys poststructuralist, postmodern, feminist, subaltern studies, globalization, and other critiques. ETHN 257A is not a prerequisite for ETHN 257B.", + "edges_from": [], + "edges_to": [], + "id": 80, + "label": "ETHN 257A-B", + "title": "Social Theory (4-4)" + }, + { + "dept": "LTSP", + "description": "This course will study the representations of a variety of social issues (immigration, racism, class differences, violence, inter/intra-ethnic relations, etc.) in works written in Spanish by Latino/a and Chicano/a writers. May be taken up to two times for credit when topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 81, + "label": "LTSP 154", + "title": "Latino/a and Chicano/a Literature (4)" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [ + 2416, + 2418 + ], + "edges_to": [ + 1409, + 342, + 520, + 5676, + 153, + 5673, + 812, + 5862, + 4916, + 4917, + 4406, + 583, + 584, + 585, + 586, + 587, + 588, + 81, + 341, + 86, + 343, + 90, + 5861, + 5473, + 5860, + 5478, + 1126, + 4073, + 4594 + ], + "id": 82, + "label": "LTSP 50A", + "title": "" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [ + 2416, + 2418 + ], + "edges_to": [ + 1409, + 342, + 520, + 5676, + 153, + 5673, + 812, + 5862, + 4916, + 4917, + 4406, + 583, + 584, + 585, + 586, + 587, + 588, + 81, + 341, + 86, + 343, + 90, + 5861, + 5473, + 5860, + 5478, + 1126, + 4073, + 4594 + ], + "id": 83, + "label": "LTSP 50B", + "title": "" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [ + 2416, + 2418 + ], + "edges_to": [ + 1409, + 342, + 520, + 5676, + 153, + 5673, + 812, + 5862, + 4916, + 4917, + 4406, + 583, + 584, + 585, + 586, + 587, + 588, + 81, + 341, + 86, + 343, + 90, + 5861, + 5473, + 5860, + 5478, + 1126, + 4073, + 4594 + ], + "id": 84, + "label": "LTSP 50C", + "title": "" + }, + { + "dept": "ANTH", + "description": "This course focuses on the debate about multiculturalism in American society. It examines the interaction of race, ethnicity, and class, historically and comparatively, and considers the problem of citizenship in relation to the growing polarization of multiple social identities.", + "edges_from": [], + "edges_to": [ + 2236, + 159 + ], + "id": 85, + "label": "ANTH 23", + "title": "Debating Multiculturalism: Race, Ethnicity, and Class in American Societies (4)" + }, + { + "dept": "LTSP", + "description": "Cross-disciplinary study of late twentieth-century Chicano/a-Latino/a literature, the visual and performing arts, film, or other cultural practices. Representative areas of study are social movements, revolution, immigration, globalization, gender and sexuality, cultures of the U.S.-Mexican border, and Chicano/a-Mexicano/a literary relations. May be taken up to two times for credit when topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 86, + "label": "LTSP 151", + "title": "Topics in Chicano/a-Latino/a Cultures (4)" + }, + { + "dept": "ANTH", + "description": "Why does racism still matter? How is racism experienced in the United States and across the globe? With insights from the biology of human variation, archaeology, colonial history, and sociocultural anthropology, we examine how notions of race and ethnicity structure contemporary societies.", + "edges_from": [], + "edges_to": [ + 2236, + 159 + ], + "id": 87, + "label": "ANTH 21", + "title": "Race and Racisms (4)" + }, + { + "dept": "MATH", + "description": "Various topics in algebraic geometry. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 88, + "label": "MATH 208", + "title": "Seminar in Algebraic Geometry (1)" + }, + { + "dept": "MATH", + "description": "Various topics in number theory. ", + "edges_from": [], + "edges_to": [], + "id": 89, + "label": "MATH 209", + "title": "Seminar in Number Theory (1)" + }, + { + "dept": "LTSP", + "description": "An introduction to methodological and historical trends in Latin American and Caribbean cultural and literary studies. This course includes cultural representations from Latin America and the Caribbean such as film, literature, art, music, and/or photography. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 90, + "label": "LTSP 159", + "title": "Methodological Approaches to the Study of History and Culture in Latin America and the Caribbean (4)" + }, + { + "dept": "SOCI", + "description": "Examination of sociological theories for why people have religious beliefs. Also examines types of religious organizations, secularization, fundamentalism, religion and immigration, religion and politics, and religiously inspired violence and terrorism. The class will tend to focus on the American context. ", + "edges_from": [ + 91, + 92 + ], + "edges_to": [ + 91 + ], + "id": 91, + "label": "SOCI 154", + "title": "Religious Institutions in America (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 91 + ], + "id": 92, + "label": "SOCC 154", + "title": "" + }, + { + "dept": "SOCI", + "description": "A research-oriented course studying a specific city. Students will describe and analyze a local community of San Diego. Additional work on one citywide institution. Guest lecturers from San Diego organizations and government. Readings largely from city reports and news media. ", + "edges_from": [ + 93, + 94 + ], + "edges_to": [ + 93 + ], + "id": 93, + "label": "SOCI 155", + "title": "The City of San Diego (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 93 + ], + "id": 94, + "label": "SOCC 155", + "title": "" + }, + { + "dept": "SOCI", + "description": "Diverse sociological explanations of religious ideas and religious behavior. The social consequences of different kinds of religious beliefs and religious organizations. The influence of religion upon concepts of history, the natural world, human nature, and the social order. The significance of such notions as \u201csacred peoples\u201d and \u201csacred places.\u201d The religious-like character of certain political movements and certain sociocultural attitudes. ", + "edges_from": [ + 96, + 95 + ], + "edges_to": [ + 95 + ], + "id": 95, + "label": "SOCI 156", + "title": "Sociology of Religion (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 95 + ], + "id": 96, + "label": "SOCC 156", + "title": "" + }, + { + "dept": "SOCI", + "description": "Sacred texts, religious experiences, and ritual settings are explored from the perspective of sociological analysis. The types and dynamic of religious sects and institutions are examined. African and contemporary US religious data provide resources for lecture and comparative analysis. ", + "edges_from": [ + 97, + 98 + ], + "edges_to": [ + 97 + ], + "id": 97, + "label": "SOCI 157", + "title": "Religion in Contemporary Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 97 + ], + "id": 98, + "label": "SOCC 157", + "title": "" + }, + { + "dept": "SOCI", + "description": "Hollywood has had an ongoing obsession with mental illness. This course will examine a number of important or iconic films on this subject. By examining them against a background provided by relevant scholarly materials, we shall develop a critical perspective on these cultural artifacts. ", + "edges_from": [ + 99, + 100 + ], + "edges_to": [ + 99 + ], + "id": 99, + "label": "SOCI 150", + "title": "Madness and the Movies (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 99 + ], + "id": 100, + "label": "SOCC 150", + "title": "" + }, + { + "dept": "GPPA", + "description": "Why do public authorities inefficiently distribute scarce economic resources? What are the impacts of such inefficient distribution on welfare and economic development? And how do we design policies to limit inefficiencies in distribution? This course surveys the literature on distributive politics to address these questions.\u00a0Students may not receive credit for GPPA 405 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 101, + "label": "GPPA 405", + "title": "Managing the Distributive Politics of Public Policy (4)" + }, + { + "dept": "SOCI", + "description": "(Same as USP 133.) Primary focus on understanding and analyzing poverty and public policy. Analysis of how current debates and public policy initiatives mesh with alternative social scientific explorations of poverty. ", + "edges_from": [ + 102, + 103 + ], + "edges_to": [ + 102 + ], + "id": 102, + "label": "SOCI 152", + "title": "Social Inequality and Public Policy (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 102 + ], + "id": 103, + "label": "SOCC 152", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 104, + "label": "Linguistics/Heritage Languages (LIHL) 132F", + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + { + "dept": "POLI", + "description": "An accelerated course in computer programming and data analytics for collecting, analyzing, and understanding data in the social world. Students engage in hands-on learning with applied social science problems, developing statistical and computational skills for sophisticated data manipulation, analysis, visualization. ", + "edges_from": [ + 106, + 107 + ], + "edges_to": [], + "id": 105, + "label": "POLI 172", + "title": "Advanced Social Data Analytics (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 105, + 5151, + 5531, + 4543 + ], + "id": 106, + "label": "POLI 30", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 105 + ], + "id": 107, + "label": "POLI 30D", + "title": "" + }, + { + "dept": "ECON", + "description": "Examination of recent research in macroeconomics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ", + "edges_from": [ + 109 + ], + "edges_to": [], + "id": 108, + "label": "ECON 212A-B-C", + "title": "Workshop in Macroeconomics (0\u20134/0\u20134/0\u20134)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1580 + ], + "edges_to": [ + 1794, + 1579, + 108, + 1582, + 1583, + 1584, + 1585 + ], + "id": 109, + "label": "ECON 210C", + "title": "" + }, + { + "dept": "POLI", + "description": "This class explores how we can make policy recommendations using data. We attempt to establish causal relationships between policy intervention and outcomes based on statistical evidence. Hands-on examples will be provided throughout the course. ", + "edges_from": [], + "edges_to": [], + "id": 110, + "label": "POLI 171", + "title": "Making Policy with Data (4)" + }, + { + "dept": "SOCI", + "description": "The role of Islam in the society, culture, and politics of the Muslim people during the nineteenth and twentieth centuries; attempts by Muslim thinkers to accommodate or reject rival ideologies (such as nationalism and socialism); and a critical review of the relationship between Islam and the West. ", + "edges_from": [ + 112, + 111 + ], + "edges_to": [ + 111 + ], + "id": 111, + "label": "SOCI 158", + "title": "Islam in the Modern World (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 111 + ], + "id": 112, + "label": "SOCD 158", + "title": "" + }, + { + "dept": "SOCI", + "description": "Topics in Social Organizations and Institutions (4)", + "edges_from": [], + "edges_to": [], + "id": 113, + "label": "SOCI 159", + "title": "Special" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 114, + "label": "Linguistics/Heritage Languages (LIHL) 132P", + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the intersection between psychology and the legal system, covering a broad range of forensically relevant issues. Topics may include false memories, false confessions, eyewitness reliability, lie detection, DNA exonerations of the wrongfully convicted, jury decision making, and neuroscience and the law Recommended preparation: PSYC 60. ", + "edges_from": [], + "edges_to": [], + "id": 115, + "label": "PSYC 162", + "title": "Psychology and the Law (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the scientific study of law making and societal reaction to law breaking activity. Topics include major theories accounting for criminal behavior, the relationship between drugs and crime, the effects of penalties on recidivism, and the psychological effects of incarceration. ", + "edges_from": [], + "edges_to": [], + "id": 116, + "label": "PSYC 164", + "title": "Criminology (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 117, + "label": "Linguistics/Heritage Languages (LIHL) 132W", + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + { + "dept": "PSYC", + "description": "This seminar explores how psychologists think about and study the imagination\u2014the capacity to mentally transcend time, place, and circumstance to think about what might have been, plan and anticipate the future, create and become absorbed in fictional worlds, and consider alternatives to actual experiences. You will learn how to evaluate psychological evidence, and how to read, interpret, discuss, present, and write about scientific literature. PC25, PC26, PS28, PC29, PC30, PC31, PC32, PC33, PC34, PC35, HD01, HD02, HD25, HD26, or CG32 major only.", + "edges_from": [], + "edges_to": [], + "id": 118, + "label": "PSYC 167", + "title": "Science of Imagination (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of psychological disorders in children. Topics may include anxiety disorders, depressive and bipolar disorders, communication and learning disorders, conduct problems, autism, and other conditions. Emphasis is placed on symptomatology, assessment, etiological factors, epidemiology, and treatment. ", + "edges_from": [], + "edges_to": [], + "id": 119, + "label": "PSYC 168", + "title": "Psychological Disorders of Childhood (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the neural mechanisms underlying perception, memory, language, and other mental capacities. Topics include how brain damage affects these capacities and how patients with brain lesions can contribute to our understanding of the normal brain. ", + "edges_from": [], + "edges_to": [], + "id": 120, + "label": "PSYC 169", + "title": "Brain Damage and Mental Function (4)" + }, + { + "dept": "HDP", + "description": "Topics Seminar in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 121, + "label": "HDP 160", + "title": "Special" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 122, + "label": "Linguistics/Heritage Languages (LIHL) 115W", + "title": "Korean for Korean Speakers (4)" + }, + { + "dept": "MATH", + "description": "Theory of computation and recursive function theory, Church\u2019s thesis, computability and undecidability. Feasible computability and complexity. Peano arithmetic and the incompleteness theorems, nonstandard models. ", + "edges_from": [ + 124 + ], + "edges_to": [], + "id": 123, + "label": "MATH 260B", + "title": "Mathematical Logic II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 123 + ], + "id": 124, + "label": "MATH 260A", + "title": "" + }, + { + "dept": "MAE", + "description": "Build, and Test Race Car (1)", + "edges_from": [], + "edges_to": [], + "id": 125, + "label": "MAE 93", + "title": "Design Competition\u2014Design," + }, + { + "dept": "NANO", + "description": "Introduction to the solution of engineering problems using computational methods. Formulating problem statements, selecting algorithms, writing computer programs, and analyzing output using Matlab. Computational problems from NanoEngineering, chemical engineering, and materials science are introduced. The course requires no prior programming skills. Cross-listed with CENG 15. ", + "edges_from": [], + "edges_to": [ + 4277, + 4085, + 213, + 5985, + 4047 + ], + "id": 126, + "label": "NANO 15", + "title": "Engineering Computation Using Matlab (4)" + }, + { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum. P/NP grades only. May be taken for credit two times. Credit may not be received for a course numbered 97, 98, or 99 subsequent to receiving credit for a course numbered 197, 198, or 199. ", + "edges_from": [], + "edges_to": [], + "id": 127, + "label": "MAE 98", + "title": "Directed Group Study (2)" + }, + { + "dept": "TDDE", + "description": "A survey of contemporary and historical concepts and practices in the visual arts of the theatre; studies in text analysis, studio processes and technical production; elementary work in design criticism, scale model making, and costume design. A course serving as an introduction to theatre design and production.", + "edges_from": [], + "edges_to": [ + 4321, + 2694, + 3270, + 2696, + 3277, + 2873, + 2874, + 3482, + 3486 + ], + "id": 128, + "label": "TDDE 1", + "title": "Introduction to Design for the Theatre (4)" + }, + { + "dept": "MATH", + "description": "Foundations of differential and integral calculus of one variable. Functions, graphs, continuity, limits, derivative, tangent line. Applications with algebraic, exponential, logarithmic, and trigonometric functions. Introduction to the integral. (Two credits given if taken after Math 1A/10A and no credit given if taken after Math 1B/10B or Math 1C/10C. Formerly numbered Math 2A.) ", + "edges_from": [ + 130, + 131, + 132 + ], + "edges_to": [ + 258, + 1673, + 141, + 5037, + 1044, + 686, + 5060, + 29, + 31, + 1059, + 1060, + 1061, + 38, + 3624, + 1194, + 1707, + 301, + 814, + 5052, + 5437, + 5059, + 2884, + 2886, + 220, + 294, + 4327, + 2549, + 5115 + ], + "id": 129, + "label": "MATH 20A", + "title": "Calculus for Science and Engineering (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1866, + 1867, + 132 + ], + "edges_to": [ + 129, + 1059, + 1060, + 1061, + 4327, + 3624, + 5037, + 301, + 814, + 141, + 1044, + 2549, + 220, + 686 + ], + "id": 130, + "label": "MATH 10A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 129 + ], + "id": 131, + "label": "MATH 2C", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1867 + ], + "edges_to": [ + 129, + 130, + 141 + ], + "id": 132, + "label": "MATH 4C", + "title": "" + }, + { + "dept": "MATH", + "description": "Integral calculus of one variable and its", + "edges_from": [], + "edges_to": [ + 294, + 1673, + 5903, + 3220, + 5060, + 29, + 31, + 1059, + 1060, + 38, + 3624, + 1707, + 4277, + 1847, + 5052, + 5437, + 5059, + 2884, + 2886, + 215, + 220, + 550, + 1388, + 1389, + 1390, + 1401, + 5115 + ], + "id": 133, + "label": "MATH 20B", + "title": "Calculus for Science and Engineering (4)" + }, + { + "dept": "MATH", + "description": "and Analytic Geometry for Science and Engineering (4)", + "edges_from": [], + "edges_to": [ + 7, + 136, + 653, + 654, + 5060, + 31, + 800, + 801, + 547, + 548, + 294, + 178, + 5437, + 2482, + 3636, + 3638, + 3642, + 5052, + 445, + 448, + 5059, + 2884, + 581, + 2886, + 1992, + 1993, + 1994, + 213, + 5306, + 5115, + 1128, + 1388, + 1390, + 1391, + 2291, + 1019 + ], + "id": 134, + "label": "MATH 20C", + "title": "Calculus" + }, + { + "dept": "MATH", + "description": "Ordinary differential equations: exact, separable,", + "edges_from": [], + "edges_to": [ + 4246, + 1672, + 1673, + 652, + 3343, + 146, + 1942, + 5060, + 922, + 1669, + 33, + 2083, + 293, + 294, + 169, + 4277, + 5437, + 447, + 2754, + 5059, + 2884, + 2886, + 5966, + 212, + 598, + 1129, + 3437, + 4727, + 5369, + 1018, + 5115 + ], + "id": 135, + "label": "MATH 20D", + "title": "Introduction to Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "Change of variable in multiple integrals, Jacobian, Line integrals, Green\u2019s theorem. Vector fields, gradient fields, divergence, curl. Spherical/cylindrical coordinates. Taylor series in several variables. Surface integrals, Stoke\u2019s theorem. Gauss\u2019 theorem. Conservative fields. ", + "edges_from": [ + 134, + 137, + 138, + 139, + 140, + 141 + ], + "edges_to": [ + 2336, + 33, + 5059, + 2884, + 294, + 2886, + 2337, + 169, + 5966, + 598, + 5060, + 5115, + 5437 + ], + "id": 136, + "label": "MATH 20E", + "title": "Vector Calculus (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 136, + 581 + ], + "id": 137, + "label": "MATH 21C", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 140 + ], + "edges_to": [ + 385, + 136, + 5060, + 31, + 801, + 547, + 548, + 294, + 178, + 2482, + 5306, + 5052, + 5437, + 5059, + 2884, + 2886, + 1992, + 1993, + 1994, + 1388, + 1390, + 1391, + 5115 + ], + "id": 138, + "label": "MATH 31BH", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 598, + 7, + 136, + 4205, + 4246, + 4420, + 922, + 5060, + 2085, + 294, + 5425, + 178, + 1672, + 2482, + 3636, + 3638, + 3642, + 4923, + 5052, + 5059, + 2884, + 2886, + 5966, + 4047, + 214, + 5903, + 5985, + 3437, + 4085, + 5115, + 1148, + 4862 + ], + "id": 139, + "label": "MATH 20F", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1669, + 7, + 136, + 138, + 5903, + 1942, + 5060, + 2331, + 2332, + 2334, + 2336, + 2337, + 290, + 294, + 4246, + 178, + 2482, + 3636, + 3638, + 3642, + 4923, + 5052, + 5059, + 2884, + 2886, + 4513, + 5325, + 5966, + 598, + 477, + 4327, + 3437, + 5115, + 1148 + ], + "id": 140, + "label": "MATH 31AH", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 129, + 130, + 1867, + 132, + 1866 + ], + "edges_to": [ + 1669, + 7, + 136, + 5903, + 5060, + 1942, + 4420, + 2331, + 2332, + 2334, + 2336, + 2337, + 290, + 2083, + 294, + 4246, + 178, + 3636, + 3638, + 3642, + 4923, + 5052, + 5059, + 2884, + 2886, + 4513, + 5325, + 5966, + 477, + 4327, + 3437, + 5115, + 1148 + ], + "id": 141, + "label": "MATH 18", + "title": "" + }, + { + "dept": "POLI", + "description": "This course analyzes the political system of China since 1949, including political institutions, the policy-making process, and the relationship between politics and economics. The main focus is on the post-Mao era of reform beginning in 1978.", + "edges_from": [], + "edges_to": [], + "id": 142, + "label": "POLI 130B", + "title": "Politics in the People\u2019s Republic of China (4)" + }, + { + "dept": "SE", + "description": "Independent study or research under direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 143, + "label": "SE 99H", + "title": "Independent Study (1)" + }, + { + "dept": "NANO", + "description": "Fundamentals in optical imaging and spectroscopy at the nanometer scale. Diffraction-limited techniques, near-field methods, multi-photon imaging and spectroscopy, Raman techniques, Plasmon-enhanced methods, scan-probe techniques, novel sub-diffraction-limit imaging techniques, and energy transfer methods. ", + "edges_from": [ + 145, + 146 + ], + "edges_to": [], + "id": 144, + "label": "NANO 146", + "title": "Nanoscale Optical Microscopy and Spectroscopy (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 954, + 212, + 213, + 215 + ], + "edges_to": [ + 144 + ], + "id": 145, + "label": "NANO 103", + "title": "" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 213, + 135 + ], + "edges_to": [ + 144, + 5339, + 4084, + 4047 + ], + "id": 146, + "label": "NANO 104", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1C. ", + "edges_from": [ + 148, + 149 + ], + "edges_to": [], + "id": 147, + "label": "Linguistics/Arabic (LIAB) 1CX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 147, + 3243 + ], + "id": 148, + "label": "LIAB 1BX", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 147, + 3243 + ], + "id": 149, + "label": "LIAB 1B", + "title": "" + }, + { + "dept": "ANTH", + "description": "This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ", + "edges_from": [], + "edges_to": [], + "id": 150, + "label": "ANTH 147", + "title": "Understanding the Human Social Order: Anthropology and the Long-Term (4)" + }, + { + "dept": "HITO", + "description": "This course will examine the development of Gnostic Christianity in the first four centuries CE. Students will also explore similar non-Christian religious movements that claimed to have special knowledge (gnosis) of the self, the material world, and the divine.", + "edges_from": [], + "edges_to": [], + "id": 151, + "label": "HITO 103S", + "title": "Gnosis and Gnosticism (4)" + }, + { + "dept": "NEU", + "description": "This course is to introduce graduate students in the neurosciences to research methods used in electron microscopy (EM) through one hour of formal lecture, one hour of seminar, three hours of demonstration, and three hours of supervised laboratory work per week. Students will become familiar with sectioning EM, scanning EM, and freeze-fracture EM. ", + "edges_from": [], + "edges_to": [], + "id": 152, + "label": "NEU 259", + "title": "Workshop in Electron Microscopy (4)" + }, + { + "dept": "LTSP", + "description": "Close reading of the 1605 and 1615 texts with special attention to the social and cultural background of the early seventeenth century in Spain. This course fulfills the pre-1900 requirement for Spanish literature majors. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 153, + "label": "LTSP 119C", + "title": "Cervantes: Don Quixote (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 154, + "label": "Linguistics/Heritage Languages (LIHL) 134P", + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "HIUS", + "description": "This course explores the emergence of a dominant ideology of womanhood in America in the early nineteenth century and contrasts the ideal with the historically diverse experience of women of different races and classes, from settlement to 1870. Topics include witchcraft, evangelicalism, cult of domesticity, sexuality, rise of industrial capitalism and the transformation of women\u2019s work, the Civil War, and the first feminist movement.", + "edges_from": [], + "edges_to": [], + "id": 155, + "label": "HIUS 156D", + "title": "American Women, American Womanhood (4)" + }, + { + "dept": "MAE", + "description": "Thermodynamic analysis of power cycles with application to combustion driven engines: internal combustion, diesel, and gas turbines. Thermodynamics of mixtures and chemical and phase equilibrium. Computational methods for calculating chemical equilibrium. Renumbered from MAE 110B. Students may not receive credit for MAE 110 and MAE 110B. ", + "edges_from": [ + 157, + 158 + ], + "edges_to": [], + "id": 156, + "label": "MAE 110", + "title": "Thermodynamic Systems (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 512, + 156, + 3309, + 3310 + ], + "id": 157, + "label": "MAE 110A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 1318, + 30 + ], + "edges_to": [ + 156 + ], + "id": 158, + "label": "MAE 11", + "title": "" + }, + { + "dept": "ANSC", + "description": "Popular representations of South Asia abound in clich\u00e9s: poverty and luxury, cities and hamlets, ascetics and call centers. What do these clich\u00e9s do to our understanding of South Asia? How do we get beneath or beyond these representations? We will respond to these questions by exploring how people in South Asia live on a day-to-day basis, while also attending to how major historical events, such as colonialism and the Partition of India and Pakistan, shape contemporary life and politics. Program or materials fees may apply. ", + "edges_from": [ + 160, + 161, + 162, + 163, + 164, + 165, + 85, + 87 + ], + "edges_to": [], + "id": 159, + "label": "ANSC 191GS", + "title": "Everyday Life in South Asia: Beyond the Clich\u00e9s (4)" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 162, + 4658, + 159 + ], + "id": 160, + "label": "ANSC 148", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 4658, + 159 + ], + "id": 161, + "label": "ANTH 103", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [ + 160, + 2449, + 2450 + ], + "edges_to": [ + 4658, + 159 + ], + "id": 162, + "label": "ANSC 155", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 159 + ], + "id": 163, + "label": "ANTH 1", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 4658, + 159 + ], + "id": 164, + "label": "ANSC 164", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 4658, + 159 + ], + "id": 165, + "label": "ANSC 121", + "title": "" + }, + { + "dept": "HILA", + "description": "Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.", + "edges_from": [], + "edges_to": [], + "id": 166, + "label": "HILA 113D", + "title": "Lord and Peasant in Latin America (4)" + }, + { + "dept": "MAE", + "description": "Basic principles of solar radiation\u2014diffuse and direct radiation; elementary solar energy engineering\u2014solar thermal and solar photovoltaic; basic principles of wind dynamics\u2014hydrodynamic laws, wind intermittency, Betz\u2019s law; elementary wind energy engineering; solar and wind energy perspectives; operating the California power grid with 33 percent renewable energy sources. Students may not receive credit for both MAE 118B and MAE 119. ", + "edges_from": [ + 168, + 169 + ], + "edges_to": [], + "id": 167, + "label": "MAE 119", + "title": "Introduction to Renewable Energy: Solar and Wind (4)" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 3264, + 2032, + 2667, + 2052, + 2049, + 167, + 3309, + 2031, + 784, + 5812, + 3261 + ], + "id": 168, + "label": "CENG 101A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 136, + 923, + 29, + 135 + ], + "edges_to": [ + 512, + 2049, + 2052, + 2032, + 167, + 2667, + 3264, + 3309, + 3310, + 2031, + 784, + 4243, + 5812, + 3261 + ], + "id": 169, + "label": "MAE 101A", + "title": "" + }, + { + "dept": "POLI", + "description": "An examination of the dynamics of the Russian Revolution from 1905 through the Stalinist period and recent years in light of theories of revolutionary change. Emphasis is placed on the significance of political thought, socioeconomic stratification, and culturo-historical conditions.", + "edges_from": [], + "edges_to": [], + "id": 170, + "label": "POLI 130AD", + "title": "The Politics of the Russian Revolution (4)" + }, + { + "dept": "TDMV", + "description": "Introduction to contemporary somatic approaches to dance, building fundamental technical skills, kinetic and perceptual awareness, efficiency, and artistic expression. Choreographic sequences are analyzed through time space coordination and dynamics. Movement exploration includes improvisation and composition. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [ + 5177 + ], + "id": 171, + "label": "TDMV 2", + "title": "Beginning Contemporary Dance (2)" + }, + { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1C. ", + "edges_from": [ + 173, + 174 + ], + "edges_to": [], + "id": 172, + "label": "Linguistics/German (LIGM) 1CX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 4876, + 172 + ], + "id": 173, + "label": "LIGM 1B", + "title": "" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 4876, + 172 + ], + "id": 174, + "label": "LIGM 1BX", + "title": "" + }, + { + "dept": "TDGR", + "description": "The second of the three-part introductory stage management series, this course further explores the stage manager\u2019s process, focusing on the technical rehearsal period through the opening of a production. ", + "edges_from": [ + 176 + ], + "edges_to": [ + 177 + ], + "id": 175, + "label": "TDGR 280B", + "title": "Stage Management 2 (4)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 177, + 175 + ], + "id": 176, + "label": "TDGR 280A", + "title": "" + }, + { + "dept": "TDGR", + "description": "The final course in the three-part introductory stage management series focuses on the stage manager\u2019s role once a production has opened. The course will also address topics such as new plays, touring, dance, multimedia productions, and music. ", + "edges_from": [ + 176, + 175 + ], + "edges_to": [], + "id": 177, + "label": "TDGR 280C", + "title": "Stage Management 3 (4)" + }, + { + "dept": "DSC", + "description": "This course, the first of a two-course sequence (DSC 40A-B), will introduce the theoretical foundations of data science. Students will become familiar with mathematical language for expressing data analysis problems and solution strategies, and will receive training in probabilistic reasoning, mathematical modeling of data, and algorithmic problem solving. DSC 40A will introduce fundamental topics in machine learning, statistics, and linear algebra with applications to data analysis. DSC 40A-B connect to DSC 10, 20, and 30 by providing the theoretical foundation for the methods that underlie data science. ", + "edges_from": [ + 134, + 138, + 139, + 140, + 141, + 179 + ], + "edges_to": [ + 181, + 5390 + ], + "id": 178, + "label": "DSC 40A", + "title": "Theoretical Foundations of Data Science I (4)" + }, + { + "dept": "DSC", + "description": "", + "edges_from": [], + "edges_to": [ + 178, + 748 + ], + "id": 179, + "label": "DSC 10", + "title": "" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in philosophy of language with emphasis on classic texts or contemporary authors.\u00a0May be taken for credit three times with changed content. ", + "edges_from": [], + "edges_to": [], + "id": 180, + "label": "PHIL 208", + "title": "Core Course in Philosophy of Language (4)" + }, + { + "dept": "DSC", + "description": "This course will introduce the theoretical foundations of data science. Students will become familiar with mathematical language for expressing data analysis problems and solution strategies, and will receive training in probabilistic reasoning, mathematical modeling of data, and algorithmic problem-solving. DSC 40B introduces fundamental topics in combinatorics, graph theory, probability, and continuous and discrete algorithms with applications to data analysis. DSC 40A-B connect to DSC 10, 20, and 30 by providing the theoretical foundation for the methods that underlie data science. ", + "edges_from": [ + 178 + ], + "edges_to": [], + "id": 181, + "label": "DSC 40B", + "title": "Theoretical Foundations of Data Science II (4)" + }, + { + "dept": "ECE", + "description": "Teaching and tutorial activities associated with courses and seminars. Number of units for credit depends on number of hours devoted to class or section assistance. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 182, + "label": "ECE 501", + "title": "Teaching (1\u20134)" + }, + { + "dept": "ETHN", + "description": "Directed study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 183, + "label": "ETHN 99", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "CLRE", + "description": "Scholars will select the appropriate sampling method and determine the sample size necessary for specific projects and adjust for confounding. Participants will be familiar with several specialized analytic techniques, including matched, cluster, and meta-analyses. They will also be familiar with methodological issues, unique to ecological, behavioral, and genetic studies. Class sessions may also be offered live via distance learning with established remote site. ", + "edges_from": [ + 185 + ], + "edges_to": [ + 1166 + ], + "id": 184, + "label": "CLRE 257", + "title": "Epidemiology II (2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 184, + 690, + 1166 + ], + "id": 185, + "label": "CLRE 251", + "title": "" + }, + { + "dept": "CLRE", + "description": "This course will review the ethics and basic regulatory issues for research involving human subjects, including\u00a0access and confidentiality. Scholars will prepare a mock submission to an IRB for peer review and practice and will also review their peers\u2019 proposals. Class sessions may also be offered live via distance learning with established remote site. ", + "edges_from": [ + 187 + ], + "edges_to": [ + 1166 + ], + "id": 186, + "label": "CLRE 256", + "title": "Patient-Oriented Research II (2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 186, + 690, + 1166 + ], + "id": 187, + "label": "CLRE 250", + "title": "" + }, + { + "dept": "CLRE", + "description": "This course provides an orientation to database design and management and covers key issues regarding data handling for clinical research and clinical trials. Scholars will also become familiar with technology assessment and decision-making methods and analysis. Class sessions may also be offered live via distance learning with established remote site.", + "edges_from": [], + "edges_to": [ + 1166 + ], + "id": 188, + "label": "CLRE 255", + "title": "Data Management and Informatics (2)" + }, + { + "dept": "CLRE", + "description": "Scholars will understand and conduct advanced biostatistical analyses including: multiple linear and logistic regression, survival analysis, and Cox and extended Cox regression. The scholar will also be familiar with person-time rate analysis with Poisson regression and longitudinal data analysis in the presence of missing values and varying measurement times. Class sessions may also be offered live via distance learning with established remote site. ", + "edges_from": [ + 190 + ], + "edges_to": [ + 432, + 1166 + ], + "id": 189, + "label": "CLRE 254", + "title": "Biostatistics II (2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 432, + 427, + 428, + 189, + 1166 + ], + "id": 190, + "label": "CLRE 253", + "title": "" + }, + { + "dept": "CLRE", + "description": "Scholars will evaluate relevant outcomes in patient-oriented research from the patient (quality of life) and societal (economic) perspectives and locate potential resources for assessing the relevant outcomes in a wide variety of study designs. They will also be able to describe the relative strengths of different health services research approaches to a clinical problem. Finally, they will understand the components of clinical practice guidelines, including patient preferences, and how these guidelines both depend upon as well as inform patient-oriented research. Class sessions may also be offered live via distance learning with established remote site.", + "edges_from": [], + "edges_to": [ + 1166 + ], + "id": 191, + "label": "CLRE 252", + "title": "Health Services Research (2)" + }, + { + "dept": "MUS", + "description": "Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 192, + "label": "MUS 234", + "title": "Symphonic Orchestra (4)" + }, + { + "dept": "MUS", + "description": "Performance of representative chamber music literature, instrumental and/or vocal, through coached rehearsal and seminar studies. Course may be repeated for credit since the literature studied varies from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 193, + "label": "MUS 230", + "title": "Chamber Music Performance (4)" + }, + { + "dept": "CLRE", + "description": "This course covers the key elements of scientific communication skills that are designed to enhance the clinical research\u2019s ability to be successful. Topics include secrets of making good oral presentations and engaging the audience, how to write and prepare abstracts, basics of grant writing and submission, and how grants are reviewed. Course includes mock grant study section. ", + "edges_from": [], + "edges_to": [], + "id": 194, + "label": "CLRE 259", + "title": "Scientific Communication Skills (2)" + }, + { + "dept": "MUS", + "description": "Individual or master class instruction in advanced instrumental/vocal performance. ", + "edges_from": [], + "edges_to": [], + "id": 195, + "label": "MUS 232", + "title": "Proseminar in Music Performance (1\u20134)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 196, + "label": "Linguistics/Heritage Languages (LIHL) 114F", + "title": "Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "PHYS", + "description": "Applications of the theory of ideal quantum gases in condensed matter physics, nuclear physics and astrophysics; advanced thermodynamics, the third law, chemical equilibrium, low temperature physics; kinetic theory and transport in nonequilibrium systems; introduction to critical phenomena including mean field theory. ", + "edges_from": [ + 198, + 199 + ], + "edges_to": [], + "id": 197, + "label": "PHYS 140B", + "title": "Statistical and Thermal Physics II (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 200, + 294 + ], + "edges_to": [ + 2587, + 197, + 5551 + ], + "id": 198, + "label": "PHYS 130B", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 200 + ], + "edges_to": [ + 5819, + 5820, + 197, + 3342 + ], + "id": 199, + "label": "PHYS 140A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 40, + 33, + 5059, + 5060 + ], + "edges_to": [ + 5058, + 198, + 3342, + 199 + ], + "id": 200, + "label": "PHYS 130A", + "title": "" + }, + { + "dept": "PSYC", + "description": "Computational models of perception, cognition, behavior, and social interaction formalize psychological theories, and can offer insights into both how people solve challenging everyday problems and how to improve machine performance on these problems. We will consider formalisms for sensory processing, knowledge representation, learning, planning, and decisions, with an emphasis on modeling common problem structures such as statistical learning and probabilistic inference. ", + "edges_from": [], + "edges_to": [], + "id": 201, + "label": "PSYC 211", + "title": "Proseminar in Computational Models of Mind (5)" + }, + { + "dept": "VIS", + "description": "Methodological investigation of and training in the practices of art museums, galleries, film and digital environments, public arts organizations, and the like. Instruction by museum and gallery curators and opportunities for participation in ongoing programs at local art institutions.", + "edges_from": [], + "edges_to": [], + "id": 202, + "label": "VIS 281", + "title": "Curatorial Practice (4)" + }, + { + "dept": "VIS", + "description": "Practice in writing about art (both one\u2019s own and others) accompanied by analysis of selected contemporary critical writings.", + "edges_from": [], + "edges_to": [], + "id": 203, + "label": "VIS 280", + "title": "Workshop in Critical Writing (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 204, + "label": "Linguistics/Heritage Languages (LIHL) 114W", + "title": "Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "ECE", + "description": "Fresnel and Fraunhofer diffraction theory. Optical resonators, interferometry. Gaussian beam propagation and transformation. Laser oscillation and amplification, Q-switching and mode locking of lasers, some specific laser systems. (Recommended prerequisites: ECE 107 and ECE 182 or equivalent, introductory quantum mechanics or ECE 183.) ", + "edges_from": [], + "edges_to": [ + 207 + ], + "id": 205, + "label": "ECE 240A", + "title": "Lasers and Optics (4)" + }, + { + "dept": "ECE", + "description": "Propagation of waves and rays in anisotropic media. Electro-optical switching and modulation. Acousto-optical deflection and modulation. Detection theory. Heterodyne detection, incoherent and coherent detection. (Recommended prerequisites: ECE 181, ECE 183 or equivalent.) ", + "edges_from": [ + 207 + ], + "edges_to": [], + "id": 206, + "label": "ECE 240C", + "title": "Optical Modulation and Detection (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 205 + ], + "edges_to": [ + 206 + ], + "id": 207, + "label": "ECE 240B", + "title": "" + }, + { + "dept": "HIUS", + "description": "134. Immigration and Ethnicity in Modern American Society (4)", + "edges_from": [], + "edges_to": [], + "id": 208, + "label": "HIUS 180/ETHN", + "title": "" + }, + { + "dept": "BIMM", + "description": "The BioClock Studio is an innovative course in which a team of undergraduate students, drawn from diverse disciplines, will work collaboratively to develop their scientific and communicative skills to produce creative educational materials that will enhance understanding of circadian biology. Students are expected to attend the annual Circadian Biology Symposium held each winter, to the extent course schedules allow, to conduct interviews with prominent scientists. BIMM 116 is not a prerequisite to enroll in BIMM 116B. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 209, + "label": "BIMM 116B", + "title": "BioClock Studio (4)" + }, + { + "dept": "BENG", + "description": "Structural and functional aspects of transport and blood-tissue exchange in key organs during circulatory shock, bacterial toxemia, hypertension. Physical and ultrastructural techniques used to analyze small-vessel dynamics. ", + "edges_from": [], + "edges_to": [], + "id": 210, + "label": "BENG 267", + "title": "Microcirculation in Health and Disease (4)" + }, + { + "dept": "EDS", + "description": "Introduction to Teaching Science (2)", + "edges_from": [], + "edges_to": [], + "id": 211, + "label": "EDS 31/Chem 96", + "title": "" + }, + { + "dept": "NANO", + "description": "Chemical principles involved in synthesis, assembly, and performance of nanostructured materials and devices. Chemical interactions, classical and statistical thermodynamics of small systems, diffusion, carbon-based nanomaterials, supramolecular chemistry, liquid crystals, colloid and polymer chemistry, lipid vesicles, surface modification, surface functionalization, catalysis. Priority enrollment given to NanoEngineering majors. ", + "edges_from": [ + 33, + 215, + 213, + 214, + 135 + ], + "edges_to": [ + 4047, + 145, + 4083, + 4084, + 5335, + 5339 + ], + "id": 212, + "label": "NANO 102", + "title": "Foundations in NanoEngineering: Chemical Principles (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 134, + 219, + 220, + 221, + 126, + 31 + ], + "edges_to": [ + 145, + 146, + 212, + 4277, + 5335 + ], + "id": 213, + "label": "NANO 101", + "title": "" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 139 + ], + "edges_to": [ + 212 + ], + "id": 214, + "label": "NANO 106", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 911, + 220, + 1061, + 133 + ], + "edges_to": [ + 448, + 5472, + 5469, + 3343, + 145, + 4434, + 212, + 3734, + 4728, + 441, + 5082, + 445, + 5470, + 5471 + ], + "id": 215, + "label": "CHEM 6C", + "title": "" + }, + { + "dept": "TDDM", + "description": "Practical and conceptual studies of approaches to dance making. Compositional projects enable students to create short works for solo, duet, and small group situations with options to explore interdisciplinary collaboration, specific sites, text, political and societal issues, and advanced partner work. ", + "edges_from": [ + 217 + ], + "edges_to": [], + "id": 216, + "label": "TDDM 100", + "title": "Dance Making 1 (4)" + }, + { + "dept": "TDDM", + "description": "", + "edges_from": [], + "edges_to": [ + 216, + 218 + ], + "id": 217, + "label": "TDDM 1", + "title": "" + }, + { + "dept": "TDDM", + "description": "The study of compositional, ensemble, collaborative, and improvisational approaches to dance making. Structures, scores, tasks, imagination, timing, spontaneity, partnering skills, composing in the moment, shared authorship, and experimentation facilitate the development of movement vocabulary. ", + "edges_from": [ + 217 + ], + "edges_to": [], + "id": 218, + "label": "TDDM 101", + "title": "Dance Making 2 (4)" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 5985, + 4085, + 213, + 4047 + ], + "id": 219, + "label": "CENG 15", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 129, + 130, + 1061, + 1318, + 1079, + 133 + ], + "edges_to": [ + 1673, + 215, + 1196, + 213, + 2025, + 953, + 958, + 447 + ], + "id": 220, + "label": "CHEM 6B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 5985, + 4047, + 4085, + 3352, + 1148, + 213 + ], + "id": 221, + "label": "MAE 8", + "title": "" + }, + { + "dept": "LTEN", + "description": "This course will focus on contemporary literature of the English-speaking Caribbean. The parallels and contrasts of this Third World literature with those of the Spanish- and French-speaking Caribbean will also be explored.", + "edges_from": [], + "edges_to": [], + "id": 222, + "label": "LTEN 188", + "title": "Contemporary Caribbean Literature (4)" + }, + { + "dept": "LTEN", + "description": "Postcolonial Literatures (4)", + "edges_from": [], + "edges_to": [], + "id": 223, + "label": "LTEN 189", + "title": "Twentieth-Century" + }, + { + "dept": "LTEN", + "description": "Introduction to the literature in English by the Chicano population, the men and women of Mexican descent who live and write in the United States. Primary focus on the contemporary period.", + "edges_from": [], + "edges_to": [], + "id": 224, + "label": "LTEN 180", + "title": "Chicano Literature in English (4)" + }, + { + "dept": "LTEN", + "description": "Selected topics in the literature by men and women of Asian descent who live and write in the United States. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 225, + "label": "LTEN 181", + "title": "Asian American Literature (4)" + }, + { + "dept": "LTEN", + "description": "Analysis and discussion of the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characteristics of African American narrative and the cultural and social circumstances that influence their development.", + "edges_from": [], + "edges_to": [], + "id": 226, + "label": "LTEN 183", + "title": "African American Prose (4)" + }, + { + "dept": "LTEN", + "description": "An intensive examination of a characteristic theme, special issue, or period in African American literature. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 227, + "label": "LTEN 185", + "title": "Themes in African American Literature (4)" + }, + { + "dept": "LTEN", + "description": "The Harlem Renaissance (1917\u201339) focuses on the emergence of the \u201cNew Negro\u201d and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.", + "edges_from": [], + "edges_to": [], + "id": 228, + "label": "LTEN 186", + "title": "Literature of the Harlem Renaissance (4)" + }, + { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 229, + "label": "BGJC 213", + "title": "Journal Club in Computational Neurobiology (1)" + }, + { + "dept": "BISP", + "description": "", + "edges_from": [], + "edges_to": [ + 2307, + 229, + 3429, + 3432, + 3431, + 3631, + 3632, + 3794, + 5014, + 3797, + 3958, + 3959, + 3160, + 3161, + 3163, + 3167 + ], + "id": 230, + "label": "BISP 199", + "title": "" + }, + { + "dept": "Soc/G", + "description": "A discussion of major themes in the work of Weber and Durkheim. ", + "edges_from": [], + "edges_to": [], + "id": 231, + "label": "Soc/G 201B", + "title": "Classical Sociological Theory II (4)" + }, + { + "dept": "COGS", + "description": "Introductory-level course that will give students insight into the fundamental concepts of algorithmic thinking and design. The course will provide the students with first-person, hands-on experience programming a web crawler and simple physical robots.", + "edges_from": [], + "edges_to": [], + "id": 232, + "label": "COGS 8", + "title": "Hands-on Computing (4)" + }, + { + "dept": "COGS", + "description": "Concepts of data and its role in science will be introduced, as well as the ideas behind data-mining, text-mining, machine learning, and graph theory, and how scientists and companies are leveraging those methods to uncover new insights into human cognition.", + "edges_from": [], + "edges_to": [ + 3849 + ], + "id": 233, + "label": "COGS 9", + "title": "Introduction to Data Science (4)" + }, + { + "dept": "ANTH", + "description": "286. Topics in Anthropological Archaeology (4)", + "edges_from": [], + "edges_to": [], + "id": 234, + "label": "ANTH", + "title": "" + }, + { + "dept": "BENG", + "description": "A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ", + "edges_from": [], + "edges_to": [], + "id": 235, + "label": "BENG 283/Chem 283/BIOM 283", + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + { + "dept": "COGS", + "description": "This course is an introduction to the neuroscience behind the principles of economic decision-making. The topics in this course are aimed at exploring the underlying cognitive and neural mechanisms that drive the decisions behind traditional economic models.", + "edges_from": [], + "edges_to": [], + "id": 236, + "label": "COGS 2", + "title": "Cognitive NeuroEconomics (4)" + }, + { + "dept": "COGS", + "description": "Covers the fundamental concepts that underlie all programming languages and provides an introduction to the essential information about algorithms and data structures. Students design and implement web applications using HTML5, CSS3, JavaScript, and Photoshop. No previous programming experience is required.", + "edges_from": [], + "edges_to": [], + "id": 237, + "label": "COGS 3", + "title": "Introduction to Computing (4)" + }, + { + "dept": "COGS", + "description": "A team-taught course highlighting development of the field and the broad range of topics covered in the major. Example topics include addiction, analogy, animal cognition, human-computer interaction, language, neuroimaging, neural networks, reasoning, robots, and real-world applications.", + "edges_from": [], + "edges_to": [ + 3040, + 1157, + 3079, + 2857, + 3498, + 3276, + 3791, + 4368, + 4015, + 3164, + 3166 + ], + "id": 238, + "label": "COGS 1", + "title": "Introduction to Cognitive Science (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 153.) This course will examine the media representations of African Americans from slavery through the twentieth century. Attention will be paid to the emergence and transmission of enduring stereotypes, and their relationship to changing social, political, and economic frameworks in the United States. The course will also consider African Americans\u2019 responses to and interpretations of these mediated images.", + "edges_from": [], + "edges_to": [], + "id": 239, + "label": "ETHN 164", + "title": "African Americans and the Mass Media (4)" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in metaphysics with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 240, + "label": "PHIL 205A", + "title": "Core Course in Metaphysics (4)" + }, + { + "dept": "LTCS", + "description": "The course will explore the relation among cultural production, institutions, history, and ideology during selected historical periods. In considering different kinds of texts, relations of power and knowledge at different historical moments will be discussed. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 241, + "label": "LTCS 120", + "title": "Historical Perspectives on Culture (4)" + }, + { + "dept": "ENVR", + "description": "Instructor will define assistant\u2019s responsibilities in preparing class presentations, leading students\u2019 discussions, and evaluating students\u2019 work. May be taken two times for credit.", + "edges_from": [], + "edges_to": [], + "id": 242, + "label": "ENVR 195", + "title": "Apprentice Teaching (0-4)" + }, + { + "dept": "ECE", + "description": "Electromagnetic Theory\u2014Electromagnetics (4)", + "edges_from": [], + "edges_to": [], + "id": 243, + "label": "ECE 222B", + "title": "Applied" + }, + { + "dept": "LTCS", + "description": "Perspectives on Immigration and Citizenship (4)", + "edges_from": [], + "edges_to": [], + "id": 244, + "label": "LTCS 125", + "title": "Cultural" + }, + { + "dept": "ECON", + "description": "Examination of recent econometric research; development of own research by students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 245, + "label": "ECON 222A-B-C", + "title": "Workshop in Econometrics (4-4-4)" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics in the history of philosophy. Usually the focus will be on a single major text. May be taken for credit nine times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 246, + "label": "PHIL 201A", + "title": "Core Course in History (4)" + }, + { + "dept": "ENVR", + "description": "Independent study in a topic not generally covered in the regular curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 247, + "label": "ENVR 199", + "title": "Independent Study (4)" + }, + { + "dept": "ENVR", + "description": "Directed group research and study, normally with a focus on areas not otherwise covered in the curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 248, + "label": "ENVR 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "ANSC", + "description": "How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125GS and ANSC 125. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 249, + "label": "ANSC 125GS", + "title": "Gender, Sexuality, and Society (4)" + }, + { + "dept": "HIEU", + "description": "Students will exercise advanced German language skills to read and discuss materials in HIEU 154. Must be enrolled in HIEU 154.", + "edges_from": [], + "edges_to": [], + "id": 250, + "label": "HIEU 154XL", + "title": "HIEU 154 Foreign Language Section (4)" + }, + { + "dept": "TDHT", + "description": "Focusing on the contemporary evolution of Chicano dramatic literature, this course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant \u201cactors,\u201d plays, and documentaries for their contributions to the developing Chicano theatre movement. (Cross-listed with Ethnic Studies 132.) No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 251, + "label": "TDHT 110", + "title": "Chicano Dramatic Literature (4)" + }, + { + "dept": "TDHT", + "description": "Course examines the plays of leading Cuban American, Puerto Rican, and Chicano playwrights in an effort to understand the experience of these Hispanic American groups in the United States. (Cross-listed with Ethnic Studies 133.) No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 252, + "label": "TDHT 111", + "title": "Hispanic American Dramatic Literature (4)" + }, + { + "dept": "VIS", + "description": "Speculative design uses design methods to question and investigate material culture with critical creative purpose. This course provides a historical, theoretical, and methodological introduction to speculative design as a distinct program. Emphasis is tracing the integration of interdisciplinary intellectual and technical problems toward creative, unexpected propositions and prototypes. ", + "edges_from": [], + "edges_to": [ + 1155, + 932 + ], + "id": 253, + "label": "VIS 30", + "title": "Introduction to Speculative Design (4)" + }, + { + "dept": "TDHT", + "description": "The class will explore the musical\u2019s origins, evolution, components, and innovators, with emphasis on adaptation and the roles of the director and choreographer. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 254, + "label": "TDHT 114", + "title": "American Musical Theatre (4)" + }, + { + "dept": "TDHT", + "description": "Evolution of directing theory from 1850 to the present with reference to the work of internationally influential directors such as Saxe-Meiningen, Antoine, Stanislavski, Meyerhold, Brecht, and Brook, among others. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 255, + "label": "TDHT 115", + "title": "History and Theory of Directing (4)" + }, + { + "dept": "TDHT", + "description": "Introduces theatre and dance students to the practice of contemporary production dramaturgy. Students learn strategies for applying the results of textual analysis and cultural research to the production process. ", + "edges_from": [], + "edges_to": [], + "id": 256, + "label": "TDHT 119", + "title": "Production Dramaturgy (4)" + }, + { + "dept": "ECE", + "description": "Introduction to linear and nonlinear components and circuits. Topics will include: two terminal devices, bipolar and field-effect transistors, and large and small signal analysis of diode and transistor circuits. (Program or materials fees may apply.) ", + "edges_from": [ + 258 + ], + "edges_to": [ + 3144, + 1231, + 3143 + ], + "id": 257, + "label": "ECE 65", + "title": "Components and Circuits Laboratory (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 129, + 29 + ], + "edges_to": [ + 257, + 1671, + 5902, + 3894, + 2087 + ], + "id": 258, + "label": "ECE 35", + "title": "" + }, + { + "dept": "BENG", + "description": "Development of design project in cell systems bioengineering. ", + "edges_from": [ + 66 + ], + "edges_to": [ + 260 + ], + "id": 259, + "label": "BENG 129A", + "title": "Design Development in Cell Systems Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in cell systems bioengineering. ", + "edges_from": [ + 259, + 68 + ], + "edges_to": [ + 68 + ], + "id": 260, + "label": "BENG 129B", + "title": "Design Implementation in Cell Systems Bioengineering (3)" + }, + { + "dept": "LTWR", + "description": "Study and practice of poetry as artistic and communal expression. Techniques of composition (traditional forms, avant garde techniques, dramatic monologue, performance poetry, and new genre) studied through written and spoken examples of poetry. Students are required to attend at least three New Writing Series readings during the quarter. ", + "edges_from": [ + 75, + 54, + 262, + 263, + 264, + 265, + 266, + 267, + 76, + 269, + 270, + 271, + 53, + 268 + ], + "edges_to": [ + 640, + 644, + 1125, + 647, + 1361, + 1366, + 1367, + 1368 + ], + "id": 261, + "label": "LTWR 8B", + "title": "Writing Poetry (4)" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 3810, + 261, + 263, + 272, + 273, + 1682, + 287, + 1887 + ], + "id": 262, + "label": "MCWP 40", + "title": "" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [ + 262 + ], + "edges_to": [ + 3810, + 261, + 272, + 273, + 1682, + 287, + 1887 + ], + "id": 263, + "label": "MCWP 50", + "title": "" + }, + { + "dept": "WARR", + "description": "", + "edges_from": [ + 266 + ], + "edges_to": [ + 272, + 273, + 3810, + 261, + 1887 + ], + "id": 264, + "label": "WARR 11B", + "title": "" + }, + { + "dept": "WCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 3810, + 261, + 267, + 272, + 273, + 1682, + 1887 + ], + "id": 265, + "label": "WCWP 10A", + "title": "" + }, + { + "dept": "WARR", + "description": "", + "edges_from": [], + "edges_to": [ + 3810, + 261, + 264, + 272, + 273, + 1887 + ], + "id": 266, + "label": "WARR 11A", + "title": "" + }, + { + "dept": "WCWP", + "description": "", + "edges_from": [ + 265 + ], + "edges_to": [ + 3810, + 261, + 272, + 273, + 1682, + 1887 + ], + "id": 267, + "label": "WCWP 10B", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 3810, + 261, + 554, + 272, + 273, + 1682, + 1887, + 287 + ], + "id": 268, + "label": "HUM 1", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 3810, + 261, + 554, + 272, + 273, + 1682, + 1887, + 287 + ], + "id": 269, + "label": "HUM 2", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 299, + 270 + ], + "edges_to": [ + 3810, + 261, + 270, + 271, + 272, + 273, + 1682, + 1688, + 1689, + 1887 + ], + "id": 270, + "label": "MMW 12", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 299, + 300, + 270, + 271 + ], + "edges_to": [ + 3810, + 261, + 271, + 272, + 273, + 1682, + 1688, + 1689, + 1887 + ], + "id": 271, + "label": "MMW 13", + "title": "" + }, + { + "dept": "LTWR", + "description": "Study of nonfictional prose in terms of genre and craft. Techniques of composition (journalism, essay, letters, reviews) will be studied through written examples of the genre. ", + "edges_from": [ + 75, + 54, + 262, + 263, + 264, + 265, + 266, + 267, + 76, + 269, + 270, + 271, + 53, + 268 + ], + "edges_to": [ + 640, + 641, + 644, + 645, + 1366, + 1367, + 1368 + ], + "id": 272, + "label": "LTWR 8C", + "title": "Writing Nonfiction (4)" + }, + { + "dept": "LTWR", + "description": "Study of fiction in both theory and practice. Narrative technique studied in terms of subjectivity and atmosphere, description, dialogue, and the editing process will be introduced through readings from the history of the novel and short story. Students are required to attend at least three New Writing Series readings during the quarter. ", + "edges_from": [ + 75, + 54, + 262, + 263, + 264, + 265, + 266, + 267, + 76, + 269, + 270, + 271, + 53, + 268 + ], + "edges_to": [ + 640, + 1124, + 1126, + 648, + 1361, + 1366, + 1367, + 1368, + 644 + ], + "id": 273, + "label": "LTWR 8A", + "title": "Writing Fiction (4)" + }, + { + "dept": "BIOM", + "description": "A selection of short courses in the biomedical and pharmacological sciences offered by resident experts. Topics will vary annually. Each short course will last one to two weeks, meeting five hours a week. ", + "edges_from": [], + "edges_to": [], + "id": 274, + "label": "BIOM 231", + "title": "Contemporary Topics in Pharmacology (2)" + }, + { + "dept": "BIOM", + "description": "Strategies such as positron emission tomography, magnetic resonance imaging, and ultrasound for nondestructively imaging molecular and cell biological events inside living animals and eventually human patients. Emphasis on detecting angiogenesis, apoptosis, and expression of tumor-specific genes. ", + "edges_from": [], + "edges_to": [], + "id": 275, + "label": "BIOM 232", + "title": "In vivo Cellular and Molecular Imaging (1)" + }, + { + "dept": "BIOM", + "description": "This class is taught by SBMRI program faculty, whose laboratories are actively involved in determining the three-dimensional structure of complex biological entities. The course covers basic principles of crystallization, cryo-electron microscopy, and NMR, and modern techniques for Ab-initio-structural analysis. ", + "edges_from": [], + "edges_to": [], + "id": 276, + "label": "BIOM 233", + "title": "Structural Biology in Cell Signaling and Drug Discovery (2)" + }, + { + "dept": "BIOM", + "description": "The course is designed to introduce or reintroduce histology and histopathology of the various organ systems to those who need to analyze mouse tissues as an essential part of their research. ", + "edges_from": [], + "edges_to": [], + "id": 277, + "label": "BIOM 234", + "title": "Practical Histopathology and Mouse Models of Human Diseases (2)" + }, + { + "dept": "BIOM", + "description": "This course provides an understanding of the evolving area of human genomics and correlation between an individual\u2019s or subpopulation\u2019s genetic makeup and their response to drugs. The information provides the student the basis for select prescribing and/or targeting drug development to improve drug therapy outcomes and reduce adverse drug responses. ", + "edges_from": [], + "edges_to": [], + "id": 278, + "label": "BIOM 235", + "title": "Pharmacogenomics (3)" + }, + { + "dept": "CSE", + "description": "This course will cover software engineering", + "edges_from": [], + "edges_to": [], + "id": 279, + "label": "CSE 112", + "title": "Advanced Software Engineering (4)" + }, + { + "dept": "CSE", + "description": "Engineering (4)", + "edges_from": [], + "edges_to": [ + 1184, + 5628, + 5630, + 5823 + ], + "id": 280, + "label": "CSE 110", + "title": "Software" + }, + { + "dept": "HIGR", + "description": "267A-B. Research Seminar in United States History (4-4)", + "edges_from": [], + "edges_to": [], + "id": 281, + "label": "HIGR", + "title": "" + }, + { + "dept": "ECON", + "description": "Examination of recent research in applied economics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 282, + "label": "ECON 235A-B-C", + "title": "Workshop in Applied Economics (0\u20134/0\u20134/0\u20134)" + }, + { + "dept": "USP", + "description": "(Same as POLI 103A.) This survey course explores six topics: 1) the state\u2019s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California\u2019s role in national politics. ", + "edges_from": [], + "edges_to": [], + "id": 283, + "label": "USP 109", + "title": "California Government and Politics (4)" + }, + { + "dept": "ENVR", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 284, + "label": "ENVR 87", + "title": "Environmental Studies Freshman Seminar (1)" + }, + { + "dept": "PHIL", + "description": "An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ", + "edges_from": [ + 286, + 287 + ], + "edges_to": [], + "id": 285, + "label": "PHIL 28", + "title": "Ethics and Society II (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 285, + 1174 + ], + "id": 286, + "label": "POLI 27", + "title": "" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [ + 299, + 54, + 262, + 263, + 300, + 75, + 76, + 269, + 53, + 268 + ], + "edges_to": [ + 285 + ], + "id": 287, + "label": "PHIL 27", + "title": "" + }, + { + "dept": "ECON", + "description": "Application of econometric methods to such areas as labor supply, human capital, and financial time series. Concurrent enrollment in Econ 120C is permitted. ", + "edges_from": [ + 289 + ], + "edges_to": [], + "id": 288, + "label": "ECON 121", + "title": "Applied Econometrics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 291, + 292 + ], + "edges_to": [ + 288, + 1562, + 1979 + ], + "id": 289, + "label": "ECON 120C", + "title": "" + }, + { + "dept": "ECON", + "description": "Detailed study of the small sample and asymptotic properties of estimators commonly used in applied econometric work: multiple linear regression, instrumental variables, generalized method of moments, and maximum likelihood. Econometric computation using MATLAB. Recommended preparation: Econ 120C. ", + "edges_from": [ + 292, + 291, + 140, + 141 + ], + "edges_to": [], + "id": 290, + "label": "ECON 122", + "title": "Econometric Theory (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1992, + 1993, + 1994, + 1995, + 1996 + ], + "edges_to": [ + 289, + 290, + 1772, + 5190, + 1654 + ], + "id": 291, + "label": "ECON 120B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 289, + 290, + 1772, + 5190, + 1654 + ], + "id": 292, + "label": "MATH 181B", + "title": "" + }, + { + "dept": "PHYS", + "description": "Particle motions, plasmas as fluids, waves, diffusion, equilibrium and stability, nonlinear effects, controlled fusion. Cross-listed with MAE 117A.\u00a0Students cannot earn credit for both Physics 151 and MAE 117A. ", + "edges_from": [ + 296, + 135, + 294, + 295 + ], + "edges_to": [], + "id": 293, + "label": "PHYS 151", + "title": "Elementary Plasma Physics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 385, + 139, + 5060, + 133, + 134, + 129, + 136, + 138, + 135, + 140, + 141 + ], + "edges_to": [ + 293, + 198, + 295 + ], + "id": 294, + "label": "PHYS 100B", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 294 + ], + "edges_to": [ + 5436, + 293 + ], + "id": 295, + "label": "PHYS 100C", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1233, + 3563, + 293, + 1230 + ], + "id": 296, + "label": "ECE 107", + "title": "" + }, + { + "dept": "PHIL", + "description": "An inquiry into fundamental questions at the intersection", + "edges_from": [], + "edges_to": [], + "id": 297, + "label": "PHIL 25", + "title": "Science, Philosophy, and the Big Questions (4)" + }, + { + "dept": "PHIL", + "description": "An exploration of the interaction between scientific theory", + "edges_from": [], + "edges_to": [], + "id": 298, + "label": "PHIL 26", + "title": "Science, Society, and Values (4)" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 1688, + 1689, + 271, + 270, + 287 + ], + "id": 299, + "label": "MMW 2", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 1688, + 1689, + 271, + 287 + ], + "id": 300, + "label": "MMW 3", + "title": "" + }, + { + "dept": "USP", + "description": "(Same as Economics 135.) Economic analysis of why and where cities develop, problems they cause, and public policies to deal with these problems. Determination of urban land rent/use, reasons for suburbanization. Transportation and congestion in cities, zoning, poverty and housing, urban local government. ", + "edges_from": [ + 304, + 129, + 130, + 302, + 303 + ], + "edges_to": [], + "id": 301, + "label": "USP 102", + "title": "Urban Economics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 544, + 800, + 547, + 548, + 1287, + 1288, + 1994, + 301, + 1296, + 505, + 504, + 1049, + 5306, + 543, + 509, + 510, + 511 + ], + "id": 302, + "label": "ECON 1", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 301 + ], + "id": 303, + "label": "ECON 1A", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 301 + ], + "id": 304, + "label": "ECON 1B", + "title": "" + }, + { + "dept": "HINE", + "description": "A close reading of select prose narratives from the Hebrew Bible/Old Testament.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 305, + "label": "HINE 112A", + "title": "Great Stories from the Hebrew Bible (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in ancient Greek history. May be coscheduled with HIEU 160. May be taken for credit up to three times. Department approval required.", + "edges_from": [], + "edges_to": [], + "id": 306, + "label": "HIEU 260", + "title": "Topics in Ancient Greek History (4)" + }, + { + "dept": "USP", + "description": "(Same as Political Science 160AA.) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ", + "edges_from": [], + "edges_to": [], + "id": 307, + "label": "USP 101", + "title": "Introduction to Policy Analysis (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1BX. ", + "edges_from": [ + 309, + 310 + ], + "edges_to": [], + "id": 308, + "label": "Linguistics/Italian (LIIT) 1B", + "title": "Italian Conversation (2.5)" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 3823, + 308, + 2999 + ], + "id": 309, + "label": "LIIT 1A", + "title": "" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 308, + 2999 + ], + "id": 310, + "label": "LIIT 1AX", + "title": "" + }, + { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1CX. ", + "edges_from": [ + 312, + 313 + ], + "edges_to": [], + "id": 311, + "label": "Linguistics/Italian (LIIT) 1C", + "title": "Italian Conversation (2.5)" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 3689, + 2766, + 311 + ], + "id": 312, + "label": "LIIT 1B", + "title": "" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 2766, + 311 + ], + "id": 313, + "label": "LIIT 1BX", + "title": "" + }, + { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught", + "edges_from": [], + "edges_to": [], + "id": 314, + "label": "Linguistics/Italian (LIIT) 1D", + "title": "Italian Conversation (2.5)" + }, + { + "dept": "SE", + "description": "The Senior Seminar is designed to allow senior undergraduates to meet with faculty members to explore an intellectual topic in structural engineering. Topics will vary from quarter to quarter. Enrollment is limited to twenty students with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 315, + "label": "SE 192", + "title": "Senior Seminar (1)" + }, + { + "dept": "TDGR", + "description": "This seminar explores the interaction of new media and technologies for collaboration, research, and creation in dance making and performance. ", + "edges_from": [], + "edges_to": [], + "id": 316, + "label": "TDGR 217", + "title": "New Media and Technology (4)" + }, + { + "dept": "ECON", + "description": "Covers various models in behavioral economics including self-control, bounded memory, belief manipulation, framing effects, and behavioral game theory. The course will also discuss their role in industrial organization, finance, and political economy, and their implications for welfare. ", + "edges_from": [ + 320, + 318, + 319 + ], + "edges_to": [], + "id": 317, + "label": "ECON 263", + "title": "Modeling Behavioral Economics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 320 + ], + "edges_to": [ + 1792, + 321, + 327, + 1802, + 1068, + 319, + 317, + 1791 + ], + "id": 318, + "label": "ECON 200B", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 318 + ], + "edges_to": [ + 1792, + 321, + 322, + 327, + 1802, + 1068, + 317, + 1791 + ], + "id": 319, + "label": "ECON 200C", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 1792, + 321, + 327, + 1802, + 1068, + 317, + 318, + 1791 + ], + "id": 320, + "label": "ECON 200A", + "title": "" + }, + { + "dept": "ECON", + "description": "This course is intended to give students an introduction to the study of strategic interaction through a behavioral lens. We will review game theory experiments and analyze which theoretical predictions are validated and which are violated in practice. We will characterize the systematic violations of the theory that come from experiments and study how these behavioral regularities can be incorporated into new equilibrium concepts. ", + "edges_from": [ + 320, + 318, + 319 + ], + "edges_to": [], + "id": 321, + "label": "ECON 262", + "title": "Behavioral Game Theory (4)" + }, + { + "dept": "ECON", + "description": "This course covers theory and empirical applications in the following areas of industrial organization: mergers, vertical integration, and innovation. Optional topics include network effects, technology adoption, and regulation. ", + "edges_from": [ + 323, + 319 + ], + "edges_to": [], + "id": 322, + "label": "ECON 261", + "title": "Industrial Organization: Markets (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1020 + ], + "edges_to": [ + 1312, + 1313, + 322, + 1315, + 324, + 1068, + 1314, + 1309, + 1310 + ], + "id": 323, + "label": "ECON 220C", + "title": "" + }, + { + "dept": "ECON", + "description": "This course covers theory and empirical applications in the following areas of industrial organization: dynamic pricing, price discrimination, collusion, market power, discrete choice demand modeling, entry, asymmetric information, and search. ", + "edges_from": [ + 323 + ], + "edges_to": [], + "id": 324, + "label": "ECON 260", + "title": "Industrial Organization: Firms (4)" + }, + { + "dept": "ECON", + "description": "The course will cover any of a variety of topics in environmental", + "edges_from": [], + "edges_to": [], + "id": 325, + "label": "ECON 267", + "title": "Topics in Environmental and Resource Economics (4)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in natural resource economics. (Previously numbered Econ 242.) ", + "edges_from": [], + "edges_to": [], + "id": 326, + "label": "ECON 266", + "title": "Economics of Natural Resources (4)" + }, + { + "dept": "ECON", + "description": "Experimental findings by economists and psychologists of systematic departures from the classical model of decision making under risk and uncertainty. Issues of dynamic consistency in choice. Development, formal analysis and application of alternative models of risk preferences and beliefs. ", + "edges_from": [ + 320, + 318, + 319 + ], + "edges_to": [], + "id": 327, + "label": "ECON 265", + "title": "Alternative Choice Theory (4)" + }, + { + "dept": "ECON", + "description": "Design and interpretation of controlled experiments using human subjects. (Previously numbered Econ 207.) ", + "edges_from": [], + "edges_to": [], + "id": 328, + "label": "ECON 264", + "title": "Experimental Economics (4)" + }, + { + "dept": "EDS", + "description": "Second course in a two-course series. The elementary credential candidate performs student teaching in participating schools for seven to eight weeks full-time for each course (fifteen weeks total) under the supervision of a cooperating teacher and university supervisor. The student teaching experience offers professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Multiple Subject Teaching Credential. ", + "edges_from": [ + 330 + ], + "edges_to": [], + "id": 329, + "label": "EDS 369B", + "title": "Multiple Subject (Elementary) Student Teaching Practicum-II (9)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 329 + ], + "id": 330, + "label": "EDS 369A", + "title": "" + }, + { + "dept": "MATH", + "description": "Introduction to the probabilistic method. Combinatorial applications of the linearity of expectation, second moment method, Markov, Chebyschev, and Azuma inequalities, and the local limit lemma. Introduction to the theory of random graphs. ", + "edges_from": [], + "edges_to": [], + "id": 331, + "label": "MATH 261A", + "title": "Probabilistic Combinatorics and Algorithms (4)" + }, + { + "dept": "MATH", + "description": "Combinatorics and Algorithms II (4)", + "edges_from": [], + "edges_to": [], + "id": 332, + "label": "MATH 261B", + "title": "Probabilistic" + }, + { + "dept": "MATH", + "description": "Combinatorics and Algorithms III (4)", + "edges_from": [], + "edges_to": [], + "id": 333, + "label": "MATH 261C", + "title": "Probabilistic" + }, + { + "dept": "MUS", + "description": "Performance in an ensemble appropriate to student abilities and interests. Normally each section requires student participation for the whole academic year, with credit for participation each quarter. Sections of MUS 95W have included: African drumming, Korean percussion, Indian sitar and tabla, koto, and Indonesian flute. Not all sections will be offered every year. May be repeated for credit. Grading on participation level, individual testing, comparative papers on repertoire covered, etc. ", + "edges_from": [], + "edges_to": [], + "id": 334, + "label": "MUS 95", + "title": "Ensemble Performance (2)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1B. ", + "edges_from": [ + 336, + 337 + ], + "edges_to": [], + "id": 335, + "label": "Linguistics/Arabic (LIAB) 1BX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3244, + 335 + ], + "id": 336, + "label": "LIAB 1A", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3244, + 335 + ], + "id": 337, + "label": "LIAB 1AX", + "title": "" + }, + { + "dept": "LTAM", + "description": "Latino/a-Chicano/a Cultures: 1848\u20131960 (4)", + "edges_from": [], + "edges_to": [], + "id": 338, + "label": "LTAM 101", + "title": "Early" + }, + { + "dept": "MAE", + "description": "03. Introduction to Engineering Graphics and Design (4)", + "edges_from": [], + "edges_to": [], + "id": 339, + "label": "MAE", + "title": "" + }, + { + "dept": "TDGR", + "description": "Preparation, presentation, and discussion", + "edges_from": [], + "edges_to": [], + "id": 340, + "label": "TDGR 219", + "title": "Directing Process Studio (4)" + }, + { + "dept": "LTSP", + "description": "A sociolinguistic study of the popular dialects in the United States of America and their relation to other Latin American dialects. The course will cover phonological and syntactic differences between the dialects as well as the influences of English on the Southwest dialects. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 341, + "label": "LTSP 162", + "title": "Spanish Language in the United States (4)" + }, + { + "dept": "LTSP", + "description": "A comparative study of the English and Spanish phonetic systems. Includes a study of the organs of articulation, manner of articulation stress and intonation patterns, as well as dialectal variations of Spanish. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 342, + "label": "LTSP 160", + "title": "Spanish Phonetics (4)" + }, + { + "dept": "LTSP", + "description": "A workshop designed to foster and encourage writing in Spanish of students working on short forms of fiction. The workshop will include discussions of techniques and intensive writing. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 343, + "label": "LTSP 166", + "title": "Creative Writing (4)" + }, + { + "dept": "MUS", + "description": "Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often-provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year. (Cross-listed with ETHN 179.) ", + "edges_from": [], + "edges_to": [], + "id": 344, + "label": "MUS 127", + "title": "Discover Jazz (4)" + }, + { + "dept": "GLBH", + "description": "Course will consist of intensive reading and discussion in fields related to each student\u2019s primary interest and building on their Global Health Field Experience. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ", + "edges_from": [], + "edges_to": [ + 5114 + ], + "id": 345, + "label": "GLBH 150A", + "title": "Global Health Capstone Seminar I (4)" + }, + { + "dept": "HIUS", + "description": "The course investigates race, resistance, and culture in the United States since the late nineteenth century. It interrogates how working-class whites, African Americans, Latinos, Asian Americans, and others have simultaneously challenged, shaped, and assimilated into US society. May be coscheduled with HIUS 268. ", + "edges_from": [], + "edges_to": [], + "id": 346, + "label": "HIUS 168/268", + "title": "Race, Resistance, and Cultural Politics (4)" + }, + { + "dept": "MATH", + "description": "In recent years, topics have included applied complex analysis, special functions, and asymptotic methods. May be repeated for credit with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 347, + "label": "MATH 217", + "title": "Topics in Applied Mathematics (4)" + }, + { + "dept": "MATH", + "description": "Various topics in the mathematics of biological systems. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 348, + "label": "MATH 218", + "title": "Seminar in Mathematics of Biological Systems (1)" + }, + { + "dept": "SOCI", + "description": "Society, and Social Justice (4)", + "edges_from": [], + "edges_to": [], + "id": 349, + "label": "SOCI 147", + "title": "Organizations," + }, + { + "dept": "SOCI", + "description": "Focusing on American history, this course explores violence in the light of three major themes: struggles over citizenship and nationhood; the drawing and maintenance of racial, ethnic, and gender boundaries; and the persistence of notions of \u201cmasculinity\u201d and its relation to violence. ", + "edges_from": [ + 350, + 351 + ], + "edges_to": [ + 350 + ], + "id": 350, + "label": "SOCI 145", + "title": "Violence and Society (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 350 + ], + "id": 351, + "label": "SOCB 145", + "title": "" + }, + { + "dept": "SOCI", + "description": "The organization, development, and mission of social control agencies in the nineteenth and twentieth centuries, with emphasis on crime and madness; agency occupations (police, psychiatrists, correctional work, etc.); theories of control movements. ", + "edges_from": [ + 352, + 353 + ], + "edges_to": [ + 352 + ], + "id": 352, + "label": "SOCI 144", + "title": "Forms of Social Control (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 352 + ], + "id": 353, + "label": "SOCC 144", + "title": "" + }, + { + "dept": "SOCI", + "description": "Traditional and modern theories of suicide will be reviewed and tested. The study of suicide will be treated as one method for investigating the influence of society on the individual. ", + "edges_from": [ + 354, + 355 + ], + "edges_to": [ + 354 + ], + "id": 354, + "label": "SOCI 143", + "title": "Suicide (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 354 + ], + "id": 355, + "label": "SOCB 143", + "title": "" + }, + { + "dept": "POLI", + "description": "The use of real data to assess policy alternatives. Introduction to benefit/cost analysis, decision theory, and the valuation of public goods. Applications to health, environmental, and regulatory economic policy making.", + "edges_from": [], + "edges_to": [], + "id": 356, + "label": "POLI 168", + "title": "Policy Assessment (4)" + }, + { + "dept": "SOCI", + "description": "A study of the social origins of criminal law, the administration of justice, causes, and patterns of criminal behavior, and the prevention and control of crime, including individual rehabilitation and institutional change, and the politics of legal, police, and correctional reform. ", + "edges_from": [ + 357, + 358 + ], + "edges_to": [ + 357 + ], + "id": 357, + "label": "SOCI 141", + "title": "Crime and Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 357 + ], + "id": 358, + "label": "SOCC 141", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course analyzes the functions of law in society, the social sources of legal change, social conditions affecting the administration of justice, and the role of social science in jurisprudence. ", + "edges_from": [ + 360, + 359 + ], + "edges_to": [ + 359 + ], + "id": 359, + "label": "SOCI 140", + "title": "Sociology of Law (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 359 + ], + "id": 360, + "label": "SOCC 140", + "title": "" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of policy analysis. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 361, + "label": "POLI 165", + "title": "Special Topic: Policy Analysis (4)" + }, + { + "dept": "HIUS", + "description": "Religion and Law in American History: Civil War to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 362, + "label": "HIUS 155B", + "title": "" + }, + { + "dept": "HIUS", + "description": "Selected problems in the history of the relationship between religious beliefs and practice and legal institutions in the Anglo American world. Topics include the English background, religion in the age of the American Revolution and the antebellum period.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 363, + "label": "HIUS 155A", + "title": "Religion and Law in American History: Foundations to the Civil War (4)" + }, + { + "dept": "POLI", + "description": "This course will explore contemporary environmental issues such as global warming, endangered species, and land use. Students will be asked to analyze various policy options and to write case analyses. Policies may be debated in class.", + "edges_from": [], + "edges_to": [], + "id": 364, + "label": "POLI 162", + "title": "Environmental Policy (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the biological, psychological, and social influences on the psychology of food and behavior. Topics may include taste preferences and aversions and how they are learned, how culture influences food selection, and food-related behaviors across the lifespan. ", + "edges_from": [], + "edges_to": [], + "id": 365, + "label": "PSYC 173", + "title": "Psychology of Food and Behavior (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of human sexuality research including diversity of sexual behavior and identities, sex and gender development, intimate relationships, and sexual dysfunction. Recommended preparation: completion of PSYC 1, 2, or 106. ", + "edges_from": [], + "edges_to": [], + "id": 366, + "label": "PSYC 172", + "title": "Psychology of Human Sexuality (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the neurobiology of learning and memory, from cognitive to molecular neuroscience, including human, animal, cellular, and molecular studies of memory. Topics include amnesia, intellectual disability, exceptional intelligence, aging, and Alzheimer\u2019s disease. ", + "edges_from": [ + 368, + 369, + 370 + ], + "edges_to": [], + "id": 367, + "label": "PSYC 171", + "title": "Neurobiology of Learning and Memory (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 367 + ], + "id": 368, + "label": "PSYC 181", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1353, + 4141, + 5903, + 3130, + 367, + 2268, + 5946 + ], + "id": 369, + "label": "PSYC 106", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1353, + 5946, + 367 + ], + "id": 370, + "label": "PSYC 2", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides a journey to the interface between neurophysiology and psychology. Topics include neuroimaging and neuroplasticity. ", + "edges_from": [], + "edges_to": [], + "id": 371, + "label": "PSYC 170", + "title": "Cognitive Neuropsychology (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how to foster creativity in individuals, groups, and organizations. Themes that cut across all three levels are highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 372, + "label": "PSYC 176", + "title": "Creativity (4)" + }, + { + "dept": "SE", + "description": "Teaching experience in an appropriate SE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. ", + "edges_from": [], + "edges_to": [], + "id": 373, + "label": "SE 501", + "title": "Teaching Experience (2)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of high-level visual perception, and of how visual perception intersects with attention, memory, and concepts. Topics may include an introduction to the visual system with an emphasis on high-level visual regions; object recognition, face recognition, scene recognition and reading; visual attention, including eye movements during scene perception and during reading; and visual working memory. ", + "edges_from": [], + "edges_to": [], + "id": 374, + "label": "PSYC 174", + "title": "Visual Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the use, abuse, liability, and psychotherapeutic effects of drugs on humans. ", + "edges_from": [], + "edges_to": [], + "id": 375, + "label": "PSYC 179", + "title": "Drugs, Addiction, and Mental Disorders (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an examination of human behavior in industrial, business, and organizational settings. Topics include psychological principles applied to selection, placement, management, and training; the effectiveness of individuals and groups within organizations, including leadership and control; conflict and cooperation; motivation; and organizational structure and design. ", + "edges_from": [], + "edges_to": [], + "id": 376, + "label": "PSYC 178", + "title": "Industrial Organizational Psychology (4)" + }, + { + "dept": "MATH", + "description": "Topological spaces, subspaces, products, sums", + "edges_from": [], + "edges_to": [ + 380 + ], + "id": 377, + "label": "MATH 190", + "title": "Introduction to Topology (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in real analysis. Topics include: Fourier analysis, distribution theory, martingale theory, operator theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 379 + ], + "edges_to": [], + "id": 378, + "label": "MATH 247B", + "title": "Further Topics in Real Analysis (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 378 + ], + "id": 379, + "label": "MATH 247A", + "title": "" + }, + { + "dept": "MATH", + "description": "Topics to be chosen by the instructor from the fields of differential algebraic, geometric, and general topology. ", + "edges_from": [ + 377 + ], + "edges_to": [], + "id": 380, + "label": "MATH 191", + "title": "Topics in Topology (4)" + }, + { + "dept": "HDP", + "description": "Seminar for graduating HDP seniors. Readings and discussion of special topics in human development. Provides advanced-level study on subfields of human development. Topics vary quarterly. (May repeat when topics vary.) ", + "edges_from": [ + 382 + ], + "edges_to": [], + "id": 381, + "label": "HDP 150", + "title": "Senior Seminar (4)" + }, + { + "dept": "HDP", + "description": "", + "edges_from": [], + "edges_to": [ + 381 + ], + "id": 382, + "label": "HDP 181", + "title": "" + }, + { + "dept": "MAE", + "description": "The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 383, + "label": "MAE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MATH", + "description": "First course in a rigorous three-quarter sequence on real analysis. Topics include: the real number system, basic topology, numerical sequences and series, continuity. (Students may not receive credit for both Math 140A and Math 142A.) ", + "edges_from": [ + 385, + 7 + ], + "edges_to": [ + 386, + 5955, + 679, + 5896, + 1036, + 1045, + 2078 + ], + "id": 384, + "label": "MATH 140A", + "title": "Foundations of Real Analysis I (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 138 + ], + "edges_to": [ + 384, + 33, + 5059, + 2884, + 2886, + 6, + 8, + 12, + 294, + 598, + 5060, + 5115, + 796, + 5437 + ], + "id": 385, + "label": "MATH 31CH", + "title": "" + }, + { + "dept": "MATH", + "description": "Second course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation, the Riemann-Stieltjes integral, sequences and series of functions, power series, Fourier series, and special functions. (Students may not receive credit for both Math 140B and Math 142B.) ", + "edges_from": [ + 384 + ], + "edges_to": [ + 5955, + 387, + 1036, + 2078 + ], + "id": 386, + "label": "MATH 140B", + "title": "Foundations of Real Analysis II (4)" + }, + { + "dept": "MATH", + "description": "Third course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation of functions of several real variables, the implicit and inverse function theorems, the Lebesgue integral, infinite-dimensional normed spaces. ", + "edges_from": [ + 386 + ], + "edges_to": [ + 1036, + 2078 + ], + "id": 387, + "label": "MATH 140C", + "title": "Foundations of Real Analysis III (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 201C and ECE 238C.) Classification of phase transformations; displacive and reconstructive transformations; classical and nonclassical theories of nucleation; Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories; interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ", + "edges_from": [], + "edges_to": [ + 970 + ], + "id": 388, + "label": "MAE 271C", + "title": "Phase Transformations (4)" + }, + { + "dept": "MAE", + "description": "State Diffusion and Reaction Kinetics (4)", + "edges_from": [], + "edges_to": [], + "id": 389, + "label": "MAE 271B", + "title": "Solid" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 201A and ECE 238A.) The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. ", + "edges_from": [], + "edges_to": [], + "id": 390, + "label": "MAE 271A", + "title": "Thermodynamics of Solids (4)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in molecular and cell biology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 391, + "label": "BIOM 274", + "title": "Seminars in Molecular and Cell Biology (2)" + }, + { + "dept": "ECE", + "description": "Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ", + "edges_from": [ + 393, + 394, + 395 + ], + "edges_to": [ + 396 + ], + "id": 392, + "label": "ECE 140A", + "title": "The Art of Product Engineering I (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 2336, + 1889, + 3, + 1573, + 2337, + 392, + 9, + 5325, + 4014, + 4015, + 5765, + 2277, + 3891, + 2857, + 3352, + 5903, + 3293, + 2334, + 2335 + ], + "id": 393, + "label": "CSE 11", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 392, + 3352, + 3891, + 4420, + 3894 + ], + "id": 394, + "label": "ECE 15", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 2336, + 2337, + 3, + 1573, + 392, + 9, + 4014, + 5765, + 3891, + 3352, + 2277 + ], + "id": 395, + "label": "CSE 8B", + "title": "" + }, + { + "dept": "ECE", + "description": "Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ", + "edges_from": [ + 392 + ], + "edges_to": [], + "id": 396, + "label": "ECE 140B", + "title": "The Art of Product Engineering II (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 397, + "label": "Linguistics/Heritage Languages (LIHL) 117P", + "title": "Persian for Persian Speakers (4)" + }, + { + "dept": "SE", + "description": "Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 398, + "label": "SE 171", + "title": "Aerospace Structures Repair (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 3330, + 1316, + 1317, + 1129, + 652, + 920 + ], + "edges_to": [ + 3970, + 398, + 2231 + ], + "id": 399, + "label": "SE 160A", + "title": "" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in physiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 400, + "label": "BIOM 276", + "title": "Seminars in Physiology (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 401, + "label": "Linguistics/Heritage Languages (LIHL) 117W", + "title": "Persian for Persian Speakers (4)" + }, + { + "dept": "NEU", + "description": "Specialized advanced topic areas in neurosciences will be addressed in an interactive seminar course format. A different specific topic will be considered each quarter as announced in advance. Students will each present an aspect of the topic area and participate in discussions. ", + "edges_from": [], + "edges_to": [], + "id": 402, + "label": "NEU 221", + "title": "Advanced Topics in Neurosciences (2)" + }, + { + "dept": "NEU", + "description": "This is a practical course designed to emphasize the relationships between experimental design, statistical methods, and biomedical research. The assumptions behind the statistical tests, their appropriate use, and examples of misuse will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 403, + "label": "NEU 225", + "title": "Statistical Methods and Experimental Design (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 404, + "label": "Linguistics/Heritage Languages (LIHL) 117F", + "title": "Persian for Persian Speakers (4)" + }, + { + "dept": "HILA", + "description": "Topics may vary from year to year. May be repeated for credit. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 405, + "label": "HILA 171/271", + "title": "Topics in Latin American History Since 1910 (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design A (4)", + "edges_from": [], + "edges_to": [], + "id": 406, + "label": "EDS 287A", + "title": "Educational" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design C\u2014Qualitative Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 407, + "label": "EDS 287C", + "title": "Educational" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design B (4)", + "edges_from": [], + "edges_to": [], + "id": 408, + "label": "EDS 287B", + "title": "Educational" + }, + { + "dept": "BICD", + "description": "Formation and function of the mammalian immune system, molecular and cellular basis of the immune response, infectious diseases and autoimmunity. ", + "edges_from": [ + 410, + 411, + 412 + ], + "edges_to": [], + "id": 409, + "label": "BICD 140", + "title": "Immunology (4)" + }, + { + "dept": "BIBC", + "description": "", + "edges_from": [ + 1761, + 458, + 2859, + 952, + 953, + 410, + 958 + ], + "edges_to": [ + 5664, + 1445, + 1862, + 1191, + 457, + 1706, + 5263, + 1201, + 3357, + 409, + 410, + 2762 + ], + "id": 410, + "label": "BIBC 100", + "title": "" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [ + 960, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959 + ], + "edges_to": [ + 1444, + 2053, + 5702, + 2057, + 1199, + 1200, + 1201, + 4407, + 409, + 3356, + 5150, + 415 + ], + "id": 411, + "label": "BIMM 100", + "title": "" + }, + { + "dept": "BICD", + "description": "", + "edges_from": [ + 954 + ], + "edges_to": [ + 2882, + 2531, + 1201, + 3765, + 4151, + 409 + ], + "id": 412, + "label": "BICD 100", + "title": "" + }, + { + "dept": "ESYS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate college, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 413, + "label": "ESYS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MAE", + "description": "Basic principles of synthesis techniques, processing, microstructural control and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. ", + "edges_from": [], + "edges_to": [], + "id": 414, + "label": "MAE 166", + "title": "Nanomaterials (4)" + }, + { + "dept": "BICD", + "description": "This course focuses upon a molecular and immunological approach to study problems in modern medical research. The emphasis will be on novel approaches in medicine, including lymphocyte biology, cancer biology, and gene transfer. Material lab fees will apply. ", + "edges_from": [ + 411 + ], + "edges_to": [], + "id": 415, + "label": "BICD 145", + "title": "Laboratory in Molecular Medicine (4)" + }, + { + "dept": "HIUS", + "description": "This course explains the origin of the Atlantic as a zone of interaction for Europeans, indigenous Americans, and Africans, and evaluates the consequences of the interaction over several centuries by exploring contests over political power and economic/demographic change. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 416, + "label": "HIUS 178/278 The Atlantic World, 1400\u20131800 (4)", + "title": "" + }, + { + "dept": "LTRU", + "description": "Second-year Russian grammar, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 417, + "label": "LTRU 2A", + "title": "Second-Year Russian (5)" + }, + { + "dept": "LTRU", + "description": "Second-year Russian grammar, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 418, + "label": "LTRU 2B", + "title": "Second-Year Russian (5)" + }, + { + "dept": "VIS", + "description": "A critical examination of the work of one of the most radical twentieth-century artists. In Duchamp\u2019s four-dimensional perspective, the ideas of art-object, artist, and art itself are deconstructed. The Large Glass and Etant Donn\u00e9es are the twin foci of an oeuvre without boundaries in which many twentieth-century avant-garde devices such as chance techniques, conceptual art, and the fashioning of fictive identities, are invented. ", + "edges_from": [], + "edges_to": [], + "id": 419, + "label": "VIS 125DN", + "title": "Marcel Duchamp (4)" + }, + { + "dept": "HINE", + "description": "This course studies a period or theme in Jewish history. Topics will vary from year to year. ", + "edges_from": [], + "edges_to": [], + "id": 420, + "label": "HINE 170/270", + "title": "Special Topics in Jewish History (4)" + }, + { + "dept": "Soc/G", + "description": "Open to graduate students engaged in thesis research. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 421, + "label": "Soc/G 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "Soc/G", + "description": "Tutorial individual guides study and/or independent research in an area not covered by present course offerings. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 422, + "label": "Soc/G 298", + "title": "Independent Study (1\u20138)" + }, + { + "dept": "Soc/G", + "description": "A research seminar in special topics of interest to available staff, provides majors and minors in sociology with research experience in close cooperation with faculty. (S/U grades permitted.) ", + "edges_from": [], + "edges_to": [], + "id": 423, + "label": "Soc/G 290", + "title": "Graduate Seminar (4)" + }, + { + "dept": "MATH", + "description": "Topics in algebraic and analytic number theory, such as: L-functions, sieve methods, modular forms, class field theory, p-adic L-functions and Iwasawa theory, elliptic curves and higher dimensional abelian varieties, Galois representations and the Langlands program, p-adic cohomology theories, Berkovich spaces, etc. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 424, + "label": "MATH 205", + "title": "Topics in Number Theory (4)" + }, + { + "dept": "CLRE", + "description": "The objective of the course is to provide students instruction in contemporary methods and statistical analyses in behavioral science research. Will teach hands-on practical skills in developing and validating assessment measures, designing clinical trials in behavioral sciences, dissemination and implementation methods, and meta-analysis. ", + "edges_from": [], + "edges_to": [], + "id": 425, + "label": "CLRE 268", + "title": "Behavioral Science Research Methods (2)" + }, + { + "dept": "PHYS", + "description": "Electrostatics, symmetries of Laplace\u2019s equation and methods for solution, boundary value problems, electrostatics in macroscopic media, magnetostatics, Maxwell\u2019s equations, Green functions for Maxwell\u2019s equations, plane wave solutions, plane waves in macroscopic media.", + "edges_from": [], + "edges_to": [ + 2470 + ], + "id": 426, + "label": "PHYS 203A", + "title": "Advanced Classical Electrodynamics I (5)" + }, + { + "dept": "CLRE", + "description": "Course will introduce the R Statistical Platform and help to build proficiency for data analysis. Students will perform their own analysis of the data, using linear regression methods, ANOVA, logistic regression, and regression methods for survival data. They will understand the assumptions, areas of applicability, and limitations of these statistical methods. ", + "edges_from": [ + 190 + ], + "edges_to": [], + "id": 427, + "label": "CLRE 262", + "title": "Analyzing Medical Data Using \u201cR\u201d (2)" + }, + { + "dept": "CLRE", + "description": "The class will introduce statistical methods and techniques for analyzing medical data from longitudinal studies using PASW/SPSS software. Students will understand the challenges and statistical issues for designing and analyzing longitudinal studies, recognize and use longitudinal data analysis methods and perform analysis. ", + "edges_from": [ + 190 + ], + "edges_to": [], + "id": 428, + "label": "CLRE 263", + "title": "Longitudinal Data Analysis (2)" + }, + { + "dept": "CLRE", + "description": "Faculty member will direct a student\u2019s study in selected professional development topics in clinical research. Specific content will be tailored to the student\u2019s particular needs and interests. Students must make arrangements with the program and individual faculty member prior to enrolling in the course. ", + "edges_from": [], + "edges_to": [], + "id": 429, + "label": "CLRE 260", + "title": "Directed Studies in Clinical Research (2)" + }, + { + "dept": "SE", + "description": "of Laminated Composite Structures I (4)", + "edges_from": [], + "edges_to": [ + 2731 + ], + "id": 430, + "label": "SE 253A", + "title": "Mechanics" + }, + { + "dept": "CLRE", + "description": "The course provides an introduction to the use of decision sciences in health care. Student will be able to construct and evaluate an appropriate decision analysis probability tree, value health outcomes, use sensitivity analysis and understand how to conduct a cost-effectiveness analysis. ", + "edges_from": [], + "edges_to": [], + "id": 431, + "label": "CLRE 264", + "title": "Clinical Decision Analysis (2)" + }, + { + "dept": "CLRE", + "description": "This course will expose and familiarize students with important advanced statistical methods such as methods for numeric outcomes (Linear regression), nonlinear regression, methods for binary outcomes (Logistic regression), methods for counts (Poisson regression) and categorical outcomes (Log-linear models). ", + "edges_from": [ + 189, + 190 + ], + "edges_to": [], + "id": 432, + "label": "CLRE 265", + "title": "Advanced Regression Methods (2)" + }, + { + "dept": "MUS", + "description": "This course will give practical experience in conducting a variety of works from various eras of instrumental and/or vocal music. Students will study problems of instrumental or vocal techniques, formal and expressive analysis of the music, and manners of rehearsal. Required of all graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 433, + "label": "MUS 228", + "title": "Conducting (4)" + }, + { + "dept": "MUS", + "description": "A seminar to give practical experience in orchestration. Students will study works from various eras of instrumental music and will demonstrate their knowledge by orchestrating works in the styles of these various eras, learning the capabilities, timbre, and articulation of all the instruments in the orchestra. ", + "edges_from": [], + "edges_to": [], + "id": 434, + "label": "MUS 229", + "title": "Seminar in Orchestration (4)" + }, + { + "dept": "ANSC", + "description": "160. Nature, Culture, and Environmentalism (4)", + "edges_from": [], + "edges_to": [], + "id": 435, + "label": "ANSC", + "title": "" + }, + { + "dept": "PHIL", + "description": "An introduction to one or more central problems in the philosophy of science, or in the philosophy of one of the particular sciences, such as the nature of confirmation and explanation, the nature of scientific knowledge, reductionism, the unity of science, or realism and antirealism. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 436, + "label": "PHIL 204A", + "title": "Core Course in Philosophy of Science (4)" + }, + { + "dept": "VIS", + "description": "Directed group study on specific topics not covered at present in the normal curriculum. Used as an experimental testing of courses that may be given regular course numbers if proved successful. Special arrangement with faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 437, + "label": "VIS 298", + "title": "Directed Group Study (1\u201312)" + }, + { + "dept": "VIS", + "description": "Graduate-level research under the direct guidance of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 438, + "label": "VIS 299", + "title": "Graduate Research (1\u20134)" + }, + { + "dept": "VIS", + "description": "Individual research with the student\u2019s individual faculty adviser in preparation for their comprehensive exhibitions for the MFA degree or qualifying exam for the PhD. These units are intended to be with the chair of the student\u2019s review committee. For the MFA degree, these units can only be taken after completing the First Year Review. (Required, MFA, PhD)", + "edges_from": [], + "edges_to": [], + "id": 439, + "label": "VIS 295", + "title": "Individual Studies for Graduate Students (1\u201312)" + }, + { + "dept": "CHEM", + "description": "Laboratory course in experimental physical chemistry. Program or materials fees may apply. ", + "edges_from": [ + 448, + 441, + 442, + 443, + 444, + 445, + 446, + 447 + ], + "edges_to": [ + 449 + ], + "id": 440, + "label": "CHEM 105A", + "title": "Physical Chemistry Laboratory (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 578, + 1196, + 1197, + 1198, + 215, + 442, + 446 + ], + "edges_to": [ + 440, + 1195 + ], + "id": 441, + "label": "CHEM 100A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 1195, + 1388, + 1390, + 440, + 441, + 443 + ], + "id": 442, + "label": "PHYS 2BL", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 40, + 33, + 442, + 446 + ], + "edges_to": [ + 440, + 5057, + 1195 + ], + "id": 443, + "label": "PHYS 2DL", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 440, + 4724, + 581, + 4727 + ], + "id": 444, + "label": "CHEM 133", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 33, + 578, + 134, + 30, + 215 + ], + "edges_to": [ + 440, + 4724 + ], + "id": 445, + "label": "CHEM 131", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 36, + 38, + 41, + 29, + 30, + 31 + ], + "edges_to": [ + 5057, + 1195, + 1391, + 5233, + 821, + 440, + 441, + 443 + ], + "id": 446, + "label": "PHYS 2CL", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 33, + 1079, + 220, + 30, + 135 + ], + "edges_to": [ + 440, + 581, + 4727 + ], + "id": 447, + "label": "CHEM 126", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 33, + 215, + 134, + 30, + 911 + ], + "edges_to": [ + 440 + ], + "id": 448, + "label": "CHEM 127", + "title": "" + }, + { + "dept": "CHEM", + "description": "Laboratory course in experimental physical chemistry. Program or materials fees may apply. ", + "edges_from": [ + 440 + ], + "edges_to": [], + "id": 449, + "label": "CHEM 105B", + "title": "Physical Chemistry Laboratory (4)" + }, + { + "dept": "TDAC", + "description": "A continuation of TDAC 103A. Working from Meisner technique, students will learn to deepen and detail their objectives, spontaneous response, and deep listening skills. Focus on the process that will lead to scene work using this technique. ", + "edges_from": [ + 451 + ], + "edges_to": [], + "id": 450, + "label": "TDAC 103B", + "title": "Acting Intensive II (4)" + }, + { + "dept": "TDAC", + "description": "", + "edges_from": [ + 452 + ], + "edges_to": [ + 450 + ], + "id": 451, + "label": "TDAC 103A", + "title": "" + }, + { + "dept": "TDAC", + "description": "", + "edges_from": [ + 3547 + ], + "edges_to": [ + 451, + 3721, + 3722, + 3723, + 3724, + 3548, + 3549 + ], + "id": 452, + "label": "TDAC 102", + "title": "" + }, + { + "dept": "LTTH", + "description": "This seminar, regularly offered in the winter quarter, introduces various literary theories that are essential for graduate studies in the field of literature and other related fields. The list of readings is decided by the course instructor in consultation with the department. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 453, + "label": "LTTH 210B", + "title": "Introduction to Literary Theory (4)" + }, + { + "dept": "LTTH", + "description": "This course, regularly offered in the spring quarter, prepares students for dissertation research, publication, conference presentation, and job search. The course is required in one of the first three years of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 454, + "label": "LTTH 210C", + "title": "Practicum in Literary Professionalization (4)" + }, + { + "dept": "BIMM", + "description": "An introduction to virus structures, how they are determined,", + "edges_from": [], + "edges_to": [], + "id": 455, + "label": "BIMM 164", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "TDGR", + "description": "Specific projects in theatre individually determined to meet the developing needs, interests, and abilities of MFA candidates. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 456, + "label": "TDGR 299", + "title": "Thesis Project (2\u201312)" + }, + { + "dept": "BIMM", + "description": "The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells.\u00a0The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed. Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BGGN 262/Chem 265. Note: Students may not receive credit for both BIMM 162 and Chem 165. Recommended preparation: Phys 1C or 2C. ", + "edges_from": [ + 410, + 458 + ], + "edges_to": [], + "id": 457, + "label": "BIMM 162", + "title": "3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5664, + 4548, + 1862, + 457, + 5263, + 5266, + 1551, + 3186, + 410, + 4751 + ], + "id": 458, + "label": "CHEM 114A", + "title": "" + }, + { + "dept": "TDGR", + "description": "Selected material from following topics: Performance Theory, Dramatic Theory, Critical Theory, Cultural Studies. May be taken eight times as content varies. ", + "edges_from": [], + "edges_to": [], + "id": 459, + "label": "TDGR 292", + "title": "Cultural and Critical Theory (4)" + }, + { + "dept": "GPPA", + "description": "Good governance and public administration underpin the effective implementation of almost the entire development agenda. This course examines rigorous evidence on both the drivers and impact of (mis)governance in developing countries. Students may not receive credit for GPPA 404 and IRGN 490, Governance, Public Administration, and Development.", + "edges_from": [], + "edges_to": [], + "id": 460, + "label": "GPPA 404", + "title": "Governance, Public Administration, and Development (4)" + }, + { + "dept": "TDGR", + "description": "Literature and Theatre History Prior to 1900 (4)", + "edges_from": [], + "edges_to": [], + "id": 461, + "label": "TDGR 290", + "title": "Dramatic" + }, + { + "dept": "TDGR", + "description": "Literature and Theatre History 1900 to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 462, + "label": "TDGR 291", + "title": "Dramatic" + }, + { + "dept": "TDGR", + "description": "Taken each term by all graduate stage management students. The class focuses on the development of knowledge and skills necessary for the contemporary stage manager. Seminar format is augmented by lab work that may include departmental productions. ", + "edges_from": [], + "edges_to": [], + "id": 463, + "label": "TDGR 296", + "title": "Stage Management Practicum (4)" + }, + { + "dept": "TDGR", + "description": "Thesis research for MFA. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 464, + "label": "TDGR 297", + "title": "Thesis Research (2\u201312)" + }, + { + "dept": "TDGR", + "description": "Research and preparation of doctoral dissertation.", + "edges_from": [], + "edges_to": [], + "id": 465, + "label": "TDGR 294", + "title": "Dissertation Research (4\u201312)" + }, + { + "dept": "TDGR", + "description": "This course covers the artistic, aesthetic, and practical aspects of the actors\u2019 work as they develop and execute the character/role toward a fully realized production. ", + "edges_from": [], + "edges_to": [], + "id": 466, + "label": "TDGR 295", + "title": "Acting Practicum (2)" + }, + { + "dept": "TDGE", + "description": "Study and perform selected songs from American musical theatre. Open to all students. No audition required. Attendance at rehearsals and performance are mandatory. P/NP grades only. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 467, + "label": "TDGE 50", + "title": "Musical Theatre Chorus (2)" + }, + { + "dept": "HISC", + "description": "Study in the History of Science (4)", + "edges_from": [], + "edges_to": [], + "id": 468, + "label": "HISC 199", + "title": "Independent" + }, + { + "dept": "HISC", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 469, + "label": "HISC 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MAE", + "description": "Independent work by graduate students engaged in research and writing theses. MAE graduate students only. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 470, + "label": "MAE 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "SOCI", + "description": "(Same as USP 105.) Introduces students to the major approaches in the sociological study of cities and to what a sociological analysis can add to our understanding of urban processes. ", + "edges_from": [ + 472, + 471 + ], + "edges_to": [ + 471 + ], + "id": 471, + "label": "SOCI 153", + "title": "Urban Sociology (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 471 + ], + "id": 472, + "label": "SOCC 153", + "title": "" + }, + { + "dept": "HITO", + "description": "The majority of the world\u2019s citizens now live in cities; this course examines the evolution of housing architecture and finance in the twentieth-century context of rapid urbanization, dissolving empire, industrialization, and globalization. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 473, + "label": "HITO 180/280", + "title": "Housing in the Developing World (4)" + }, + { + "dept": "LTEN", + "description": "Tutorial; individual guided reading in an area not normally covered in courses. May be repeated for credit three times.(P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 474, + "label": "LTEN 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTEN", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 475, + "label": "LTEN 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "BENG", + "description": "Introduction to optics. Light propagation in tissue. Propagation modeling. Optical components. Laser concepts. Optical coherence tomography. Microscopic scattering. Tissue optics. Microscopy. Confocal microscopy. Polarization in tissue. Absorption, diffuse reflection, light scattering spectroscopy. Raman, fluorescence lifetime imaging. Photo-acoustic imaging. ", + "edges_from": [ + 477 + ], + "edges_to": [], + "id": 476, + "label": "BENG 141", + "title": "Biomedical Optics and Imaging (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 516, + 140, + 141, + 29, + 30, + 31 + ], + "edges_to": [ + 2882, + 4327, + 476, + 1669, + 2885 + ], + "id": 477, + "label": "BENG 100", + "title": "" + }, + { + "dept": "MATH", + "description": "Topics include regression methods: (penalized) linear regression", + "edges_from": [], + "edges_to": [], + "id": 478, + "label": "MATH 287D", + "title": "Statistical Learning (4)" + }, + { + "dept": "LTEN", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 479, + "label": "LTEN 192", + "title": "Senior Seminar in Literatures in English (1)" + }, + { + "dept": "LTEN", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "edges_from": [], + "edges_to": [], + "id": 480, + "label": "LTEN 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "MATH", + "description": "Bivariate and more general multivariate normal distribution. Study of tests based on Hotelling\u2019s T2. Principal components, canonical correlations, and factor analysis will be discussed as well as some competing nonparametric methods, such as cluster analysis. Students who have not taken Math 282A may enroll with consent of instructor. ", + "edges_from": [ + 482 + ], + "edges_to": [], + "id": 481, + "label": "MATH 287B", + "title": "Multivariate Analysis (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 481, + 2533, + 4556, + 2673, + 2936, + 2941 + ], + "id": 482, + "label": "MATH 282A", + "title": "" + }, + { + "dept": "MATH", + "description": "Nonparametric function (spectrum, density,", + "edges_from": [], + "edges_to": [], + "id": 483, + "label": "MATH 287C", + "title": "Advanced Time Series Analysis (4)" + }, + { + "dept": "LTCS", + "description": "A medical humanities course that examines compelling written and cinematic accounts of health issues confronting contemporary societies such as environmental pollution, contaminated food supply, recreational drug use, HIV/AIDS, cancer, chronic conditions (allergies, diabetes, obesity, arthritis), famine, natural disasters, and war. May be taken for credit two times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 484, + "label": "LTCS 155", + "title": "Health, Illness, and Global Culture (4)" + }, + { + "dept": "LTCS", + "description": "The course will examine one or more forms of cultural production or cultural practice from a variety of theoretical and historical perspectives. Topics may include: contemporary debates on culture, genres of popular music/fiction/film, AIDS and culture, the history of sexuality, subcultural styles, etc. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 485, + "label": "LTCS 150", + "title": "Topics in Cultural Studies (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of psychological findings relevant to designing \u201cuser-friendly\u201d computers and devices and improving aviation and traffic safety. Topics include human perception as it pertains to displays and image compression, human memory limitations relevant to usability, and nature of human errors. ", + "edges_from": [], + "edges_to": [], + "id": 486, + "label": "PSYC 161", + "title": "Engineering Psychology (4)" + }, + { + "dept": "POLI", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 487, + "label": "POLI 502", + "title": "Seminar on Teaching Development\u2014Comparative Politics" + }, + { + "dept": "PHIL", + "description": "A study of selected portions of The Critique of Pure Reason and other theoretical writings and/or his major works in moral theory. May be repeated for credit with change in content and approval of the instructor. ", + "edges_from": [ + 489, + 490, + 491, + 492, + 23, + 24 + ], + "edges_to": [], + "id": 488, + "label": "PHIL 106", + "title": "Kant (4)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [ + 1945 + ], + "edges_to": [ + 488, + 490 + ], + "id": 489, + "label": "PHIL 111", + "title": "" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [ + 489 + ], + "edges_to": [ + 488 + ], + "id": 490, + "label": "PHIL 112", + "title": "" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 488 + ], + "id": 491, + "label": "PHIL 104", + "title": "" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 488 + ], + "id": 492, + "label": "PHIL 105", + "title": "" + }, + { + "dept": "150A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 493, + "label": "150A-B-C", + "title": "Advanced Japanese" + }, + { + "dept": "VIS", + "description": "A critical survey discussing the crisis of the Enlightenment, romanticism, realism and naturalism, academic art and history painting, representations of the New World, the Pre-Raphaelites, impressionism, international symbolism, postimpressionism, and the beginnings of modernism. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 494, + "label": "VIS 124CN", + "title": "Nineteenth-Century Art (4)" + }, + { + "dept": "PHIL", + "description": "A study of one or more of Hegel\u2019s major works, in particular, The Phenomenology of Spirit and The Philosophy of Right. Readings and discussion may also include other figures in the Idealist tradition\u2014such as Fichte, H\u00f6lderlin, and Schelling\u2014and critics of the Idealist tradition\u2014such as Marx and Kierkegaard. ", + "edges_from": [], + "edges_to": [], + "id": 495, + "label": "PHIL 107", + "title": "Hegel (4)" + }, + { + "dept": "TDHT", + "description": "Masterpieces of French farce and comedy from the seventeenth century to the twentieth century studied French theatrical and cultural contexts. Readings include plays by Moliere, Marivauz, Beaumarchais, and Feydeau. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 496, + "label": "TDHT 105", + "title": "French Comedy (4)" + }, + { + "dept": "TDHT", + "description": "Continuities and changes in Italian comedy from the Romans through the Renaissance and commedia dell\u2019arte to modern comedy. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 497, + "label": "TDHT 104", + "title": "Italian Comedy (4)" + }, + { + "dept": "TDHT", + "description": "In this course we will examine representative plays and playwrights who write about the \u201cAmerican\u201d experience from a variety of historical periods and diverse cultural communities. Playwrights will include Glaspell, O\u2019Neill, Williams, Hansberry, Valdez, Yamauchi, Parks, Kushner, Mamet, Greenberg, Hwang, Letts, and Cruz. Theatre companies will include The Group, Provincetown Players, San Francisco Mime Troupe, East/West Players, Teatro Campesino, Spiderwoman, and Cornerstone. TDHT 107 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 498, + "label": "TDHT 107", + "title": "American Theatre (4)" + }, + { + "dept": "TDHT", + "description": "in Dramatic Literature and Theatre History (4)", + "edges_from": [], + "edges_to": [], + "id": 499, + "label": "TDHT 101", + "title": "Topics" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of the major trends and figures in the development of psychology as a field. Topics may include the mind-body problem, nativism vs. empiricism, and the genesis of behaviorism. ", + "edges_from": [], + "edges_to": [], + "id": 500, + "label": "PSYC 166", + "title": "History of Psychology (4)" + }, + { + "dept": "TDHT", + "description": "This course examines pivotal dramatic works in the history of professional Asian American theatre in the United States (1960s to the present). Issues include interculturalism, the crossover between minority theatres and mainstream venues, and the performance of identity. TDHT 103 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 501, + "label": "TDHT 103", + "title": "Asian American Theatre (4)" + }, + { + "dept": "TDHT", + "description": "This course provides a survey of the contributions to the theatre arts made by African Americans. Analytic criteria will include the historical context in which the piece was crafted; thematic and stylistic issues; aesthetic theories and reception. TDHT 109 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 502, + "label": "TDHT 109", + "title": "African American Theatre (4)" + }, + { + "dept": "TDHT", + "description": "This course examines the works of Luis Valdez, playwright, director, screenwriter, film director, and founder of the Teatro Campesino. Readings include plays and essays by Valdez and critical books and articles about this important American theatre artist. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 503, + "label": "TDHT 108", + "title": "Luis Valdez (4)" + }, + { + "dept": "ECON", + "description": "Survey of the Chinese economy. Topics such as economic growth, China\u2019s transition to a market economy, international trade, financial markets, labor markets, and industrial structure. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [], + "id": 504, + "label": "ECON 167", + "title": "Economics of China (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 302 + ], + "edges_to": [ + 800, + 548, + 1287, + 1288, + 1296, + 1297, + 1044, + 504, + 1049, + 5306, + 509, + 510, + 511 + ], + "id": 505, + "label": "ECON 3", + "title": "" + }, + { + "dept": "PHIL", + "description": "A study of Socrates and/or Plato through major dialogues of Plato. Possible topics include the virtues and happiness; weakness of the will; political authority and democracy; the theory of Forms and sensible flux; immortality; relativism, skepticism, and knowledge. May be repeated for credit with change of content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 506, + "label": "PHIL 100", + "title": "Plato (4)" + }, + { + "dept": "Soc/G", + "description": "Supervised teaching in lower-division contact classes, supplemented by seminar on methods in teaching sociology. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 507, + "label": "Soc/G 500", + "title": "Apprentice Teaching (2\u20134)" + }, + { + "dept": "PHIL", + "description": "A study of major issues in Aristotle\u2019s works, such as the categories; form and matter; substance, essence, and accident; the soul; virtue, happiness, and politics. ", + "edges_from": [], + "edges_to": [], + "id": 508, + "label": "PHIL 101", + "title": "Aristotle (4)" + }, + { + "dept": "ECON", + "description": "Examines the integration of Latin American and Caribbean countries into the global economy. Topics include trade in agricultural and manufactured goods, regional trade agreements, international capital flows to Latin America, financial vulnerabilities, and policy responses. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [], + "id": 509, + "label": "ECON 161", + "title": "Global Integration of Latin America (4)" + }, + { + "dept": "ECON", + "description": "Survey of the Mexican economy. Topics such as economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [], + "id": 510, + "label": "ECON 162", + "title": "Economics of Mexico (4)" + }, + { + "dept": "ECON", + "description": "Survey of the Japanese economy. Economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [], + "id": 511, + "label": "ECON 163", + "title": "Japanese Economy (4)" + }, + { + "dept": "CENG", + "description": "Basic conservation laws, flow kinematics. The Navier-Stokes equations and some of its exact solutions, nondimensional parameters and different flow regimes, vorticity dynamics. Cross-listed with MAE 210A. ", + "edges_from": [ + 169, + 157, + 513 + ], + "edges_to": [ + 4948 + ], + "id": 512, + "label": "CENG 210A", + "title": "Fluid Mechanics I (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 512, + 2049, + 2052, + 3309, + 3310, + 2031, + 2032, + 4243, + 5812 + ], + "id": 513, + "label": "MAE 101B", + "title": "" + }, + { + "dept": "BIOM", + "description": "Advanced discussions following on \u201cIntroduction to Anthropogeny.\u201d Online \u201cMuseum of Comparative Anthropogeny (MOCA)\u201d will serve as major scaffold for this in-depth course. MOCA (", + "edges_from": [], + "edges_to": [], + "id": 514, + "label": "BIOM 229", + "title": "Advanced Anthropogeny (2)" + }, + { + "dept": "BIOM", + "description": "Drug discovery is an emerging science available to academic investigators. This course provides an overview of these drug discovery techniques, including high through-put screening, cell-based screening, computational methods of lead compound discovery, and chemical methods of optimization. ", + "edges_from": [], + "edges_to": [], + "id": 515, + "label": "BIOM 228", + "title": "Modern Drug Discovery Technologies (2)" + }, + { + "dept": "BENG", + "description": "An introduction to bioengineering that includes lectures and hands-on laboratory for design projects. The principles of problem definition, engineering inventiveness, team design, prototyping, and testing, as well as information access, engineering standards, communication, ethics, and social responsibility will be emphasized. P/NP grades only. ", + "edges_from": [], + "edges_to": [ + 477 + ], + "id": 516, + "label": "BENG 1", + "title": "Introduction to Bioengineering (2)" + }, + { + "dept": "BENG", + "description": "Introduction to Matlab is designed to give students fluency in Matlab, including popular toolboxes. Consists of interactive lectures with a computer running Matlab for each student. Topics: variables, operations, and plotting; visualization and programming; and solving equations and curve fitting. ", + "edges_from": [], + "edges_to": [], + "id": 517, + "label": "BENG 2", + "title": "Introductory Computer Programming and Matlab (2)" + }, + { + "dept": "SIOC", + "description": "This is a course in social media for the climate sciences. Students will develop a broad understanding of how to use social media to listen to, respond to, and engage in online climate science discussions. Students will learn to use digital technology to actively engage with constituents. Students will learn how social media can be used effectively for communications. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 518, + "label": "SIOC 291S", + "title": "@Climate (6)" + }, + { + "dept": "BIOM", + "description": "Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.", + "edges_from": [], + "edges_to": [], + "id": 519, + "label": "BIOM 222", + "title": "Essentials of Glycobiology (2)" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Caribbean literature in Spanish, such as the romantic movement, the literature of independence, the essay tradition, Afro-Antillean literature, the historical novel. May be taken for credit four times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 520, + "label": "LTSP 137", + "title": "Caribbean Literature (4)" + }, + { + "dept": "BIOM", + "description": "This course provides an overview of the use of mouse models in biomedical research. Sessions will cover general mouse biology, genetics, technologies for generating mutant mice and will focus on model selection, methodological approaches, data interpretation, experimental design, and ethics of animal research. Student participation and discussion will be encouraged. ", + "edges_from": [], + "edges_to": [], + "id": 521, + "label": "BIOM 227", + "title": "Mouse Models of Human Disease (2)" + }, + { + "dept": "BIOM", + "description": "The course covers recent advances in research into hormone action, molecular endocrinology, lipid, lipoprotein, and carbohydrate metabolism, and reproductive medicine. ", + "edges_from": [ + 523, + 524, + 525 + ], + "edges_to": [], + "id": 522, + "label": "BIOM 226", + "title": "Hormone Action (3)" + }, + { + "dept": "BIOM", + "description": "", + "edges_from": [], + "edges_to": [ + 1704, + 522, + 1527, + 1629, + 1757 + ], + "id": 523, + "label": "BIOM 200B", + "title": "" + }, + { + "dept": "BIOM", + "description": "", + "edges_from": [], + "edges_to": [ + 1704, + 522, + 1527, + 1629, + 1757 + ], + "id": 524, + "label": "BIOM 201", + "title": "" + }, + { + "dept": "BIOM", + "description": "", + "edges_from": [], + "edges_to": [ + 1704, + 522, + 1527, + 1629, + 1757 + ], + "id": 525, + "label": "BIOM 200A", + "title": "" + }, + { + "dept": "ANTH", + "description": "A critical analysis of ethnographic and theoretical texts focusing on the sociocultural study of gender. We will also draw on studies of gender and feminist theory from other disciplines (e.g., history, philosophy) to illuminate issues relevant to anthropology. ", + "edges_from": [], + "edges_to": [], + "id": 526, + "label": "ANTH 224", + "title": "The Anthropology of Gender and Sexuality (4)" + }, + { + "dept": "LIGN", + "description": "(Same as Cognitive Science 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. As topics vary, may be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 527, + "label": "LIGN 238", + "title": "Topics in Cognitive Linguistics (0\u20134)" + }, + { + "dept": "PHIL", + "description": "to Philosophy: Knowledge and Its Limits (4)", + "edges_from": [], + "edges_to": [], + "id": 528, + "label": "PHIL 15", + "title": "Introduction" + }, + { + "dept": "PHIL", + "description": "to Philosophy: The Nature of Reality (4)", + "edges_from": [], + "edges_to": [], + "id": 529, + "label": "PHIL 14", + "title": "Introduction" + }, + { + "dept": "PHIL", + "description": "An introduction to philosophy which uses science fiction to make abstract philosophical problems vivid. Science fiction themes may include time travel, teleportation, virtual reality, super-intelligent robots, futuristic utopias, and parallel universes. These scenarios raise philosophical questions about knowledge, reality, ethics, and the mind.", + "edges_from": [], + "edges_to": [], + "id": 530, + "label": "PHIL 16", + "title": "Science Fiction and Philosophy (4)" + }, + { + "dept": "LTGM", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 531, + "label": "LTGM 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "PHIL", + "description": "An inquiry into the nature of morality and its role in personal or social life by way of classical and/or contemporary works in ethics. May be used to fulfill general-education requirements for Muir and Marshall Colleges.", + "edges_from": [], + "edges_to": [], + "id": 532, + "label": "PHIL 13", + "title": "Introduction to Philosophy: Ethics (4)" + }, + { + "dept": "PHIL", + "description": "Strategies of scientific inquiry: how elementary logic, statistical inference, and experimental design are integrated to evaluate hypotheses in the natural and social sciences. May be used to fulfill general-education requirements for Marshall, Warren, and Eleanor Roosevelt Colleges.", + "edges_from": [], + "edges_to": [], + "id": 533, + "label": "PHIL 12", + "title": "Scientific Reasoning (4)" + }, + { + "dept": "LTGM", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 534, + "label": "LTGM 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "LAWS", + "description": "This course will deal in depth each year with a different legal issue of contemporary significance, viewed from the perspectives of political science, history, sociology, and philosophy. Required for students completing the Law and Society minor. May be repeated for credit once, for a maximum total of eight units. ", + "edges_from": [], + "edges_to": [], + "id": 535, + "label": "LAWS 101", + "title": "Contemporary Legal Issues (4)" + }, + { + "dept": "COMM", + "description": "This course examines the challenges that arise in using feminist theory to understand black women\u2019s experience in Africa and the United States. It also looks at the mass media and popular culture as arenas of black feminist struggle. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 536, + "label": "COMM 138", + "title": "Black Women, Feminism, and Media (4)" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 540 + ], + "edges_to": [ + 1543, + 1544, + 1545, + 1548, + 1549, + 1550, + 5906, + 5526, + 536, + 794, + 795, + 5083, + 804, + 805, + 806, + 4650, + 555, + 940, + 943, + 4656, + 2953, + 1982, + 1985, + 3152, + 3017, + 2127, + 2128, + 2129, + 2130, + 3027, + 2134, + 3031, + 4315, + 2013, + 2014, + 2017, + 2018, + 2019, + 2022, + 3153, + 2283, + 2284, + 2286, + 1775, + 1776, + 1777, + 1778, + 1779, + 1782, + 1783 + ], + "id": 537, + "label": "COMM 100B", + "title": "" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 540 + ], + "edges_to": [ + 1543, + 1544, + 1545, + 1548, + 1549, + 1550, + 5906, + 5526, + 536, + 794, + 795, + 5083, + 804, + 805, + 806, + 4650, + 555, + 940, + 943, + 4656, + 2953, + 1982, + 1985, + 3152, + 3017, + 2127, + 2128, + 2129, + 2130, + 3027, + 2134, + 3031, + 4315, + 2013, + 2014, + 2017, + 2018, + 2019, + 2022, + 3153, + 2283, + 2284, + 2286, + 1775, + 1776, + 1777, + 1778, + 1779, + 1782, + 1783 + ], + "id": 538, + "label": "COMM 100C", + "title": "" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 540 + ], + "edges_to": [ + 1543, + 1544, + 1545, + 1548, + 1549, + 1550, + 5906, + 5526, + 536, + 794, + 795, + 5083, + 804, + 805, + 806, + 4650, + 555, + 940, + 943, + 4656, + 2953, + 1982, + 1985, + 3152, + 3017, + 2127, + 2128, + 2129, + 2130, + 3027, + 2134, + 3031, + 4315, + 2013, + 2014, + 2017, + 2018, + 2019, + 2022, + 3153, + 2283, + 2284, + 2286, + 1775, + 1776, + 1777, + 1778, + 1779, + 1782, + 1783 + ], + "id": 539, + "label": "COMM 100A", + "title": "" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [], + "edges_to": [ + 1543, + 1544, + 1545, + 1548, + 1549, + 1550, + 536, + 537, + 538, + 539, + 4125, + 4650, + 555, + 4656, + 5684, + 5687, + 2127, + 3152, + 3153, + 2130, + 2134, + 2145, + 4710, + 2662, + 2663, + 2664, + 2665, + 2151, + 3233, + 2017, + 3749, + 4315, + 1244, + 2283, + 2284, + 2286, + 1775, + 1776, + 1777, + 1778, + 1779, + 1782, + 1783, + 4354, + 4355, + 1293, + 5906, + 794, + 795, + 804, + 805, + 806, + 2362, + 2367, + 2375, + 4954, + 4955, + 4957, + 4958, + 4959, + 4960, + 2022, + 1898, + 1899, + 1900, + 4585, + 1412, + 2953, + 5002, + 1419, + 1420, + 1422, + 1427, + 3989, + 5526, + 3991, + 3992, + 3993, + 3995, + 4508, + 3997, + 4511, + 5539, + 5540, + 4006, + 5544, + 940, + 943, + 1982, + 1985, + 5878, + 2129, + 3017, + 3027, + 3031, + 5062, + 5083, + 2013, + 2014, + 3040, + 2128, + 2018, + 2019, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 4597 + ], + "id": 540, + "label": "COMM 10", + "title": "" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical analysis of labor markets. Topics include: labor supply, labor demand, human capital investment, wage inequality, labor mobility, immigration, labor market discrimination, labor unions and unemployment. ", + "edges_from": [ + 542, + 543 + ], + "edges_to": [], + "id": 541, + "label": "ECON 139", + "title": "Labor Economics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 547 + ], + "edges_to": [ + 800, + 801, + 807, + 1769, + 797, + 2529, + 1051, + 541, + 799 + ], + "id": 542, + "label": "ECON 100B", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 302 + ], + "edges_to": [ + 800, + 801, + 546, + 548, + 551, + 553, + 1772, + 1773, + 1774, + 2549, + 1769, + 1051, + 541 + ], + "id": 543, + "label": "ECON 2", + "title": "" + }, + { + "dept": "ECON", + "description": "This course will investigate differences in economic outcomes on the basis of race, gender, ethnicity, religion, and sexual orientation. We will study economic theories of discrimination, empirical work testing those theories, and policies aimed at alleviating group-level differences in economic outcomes. ", + "edges_from": [ + 302 + ], + "edges_to": [], + "id": 544, + "label": "ECON 138", + "title": "Economics of Discrimination (4)" + }, + { + "dept": "PSYC", + "description": "Selected laboratory topics in the field of psychology. May be taken for credit two times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 545, + "label": "PSYC 193L", + "title": "Psychology Laboratory Topics (4)" + }, + { + "dept": "ECON", + "description": "Addresses environmental issues that transcend national boundaries, such as climate change, biodiversity loss, over-fishing. Examines why international agreements are required, how they are negotiated and implemented, and studies their effectiveness. Explores whether more effective environmental treaties could be designed. ", + "edges_from": [ + 547, + 543 + ], + "edges_to": [], + "id": 546, + "label": "ECON 133", + "title": "International Environmental Agreements (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 138, + 550, + 302, + 134 + ], + "edges_to": [ + 4513, + 546, + 548, + 551, + 553, + 1991, + 1772, + 1773, + 1774, + 1297, + 2549, + 1050, + 542 + ], + "id": 547, + "label": "ECON 100A", + "title": "" + }, + { + "dept": "ECON", + "description": "Energy from an economic perspective. Fuel cycles for coal, hydro, nuclear, oil, and solar energy. Emphasis on efficiency and control of pollution. Comparison of energy use across sectors and across countries. Global warming. Role of energy in the international economy. ", + "edges_from": [ + 547, + 549, + 550, + 551, + 552, + 138, + 302, + 505, + 134, + 543 + ], + "edges_to": [], + "id": 548, + "label": "ECON 132", + "title": "Energy Economics (4)" + }, + { + "dept": "ESYS", + "description": "", + "edges_from": [], + "edges_to": [ + 548, + 3909 + ], + "id": 549, + "label": "ESYS 103", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1061, + 133 + ], + "edges_to": [ + 801, + 547, + 548, + 1994, + 1388, + 1390, + 1391, + 2291, + 5306 + ], + "id": 550, + "label": "MATH 10C", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 547, + 543 + ], + "edges_to": [ + 548 + ], + "id": 551, + "label": "ECON 131", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 548 + ], + "id": 552, + "label": "MAE 124", + "title": "" + }, + { + "dept": "ECON", + "description": "Course uses basic microeconomic tools to discuss a wide variety of public issues, including the war on drugs, global warming, natural resources, health care and safety regulation. Appropriate for majors who have not completed Econ 100A-B-C and students from other departments. ", + "edges_from": [ + 547, + 543 + ], + "edges_to": [], + "id": 553, + "label": "ECON 130", + "title": "Public Policy (4)" + }, + { + "dept": "HUM", + "description": "The revival of classical culture and values and the reaction against medieval ideas concerning the place of human beings in the world. The Protestant Reformation and its intellectual and political consequences. The philosophical background to the scientific revolution. Revelle students must take the course for a letter grade. Students may not receive credit for HUM 3 and HUM 3GS. ", + "edges_from": [ + 268, + 269 + ], + "edges_to": [ + 1682 + ], + "id": 554, + "label": "HUM 3", + "title": "Renaissance, Reformation, and Early Modern Europe (4)" + }, + { + "dept": "COMM", + "description": "Students examine film and video media produced by black women filmmakers worldwide. This course will use readings from the writings of the filmmakers themselves as well as from film studies, women\u2019s studies, literature, sociology, and history. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 555, + "label": "COMM 137", + "title": "Black Women Filmmakers (4)" + }, + { + "dept": "RELI", + "description": "An introduction to key topics in the study of religion through the analysis of religious texts, artifacts, and/or practices. The intent is to develop basic strategies of interpretation for undertaking a critical, disciplined study of religion.", + "edges_from": [], + "edges_to": [], + "id": 556, + "label": "RELI 1", + "title": "Introduction to Religion (4)" + }, + { + "dept": "RELI", + "description": "An introduction to the comparative study of religion, focusing on religious traditions of global significance. Although historical aspects of these traditions will be studied, emphasis will be placed on religious beliefs and practices as manifested in the contemporary world.", + "edges_from": [], + "edges_to": [], + "id": 557, + "label": "RELI 2", + "title": "Comparative World Religions (4)" + }, + { + "dept": "ANTH", + "description": "Directed to graduate students planning ethnographic work in Christian societies, this course explore", + "edges_from": [], + "edges_to": [], + "id": 558, + "label": "ANTH 226", + "title": "Ethnography of Christianity (4)" + }, + { + "dept": "LTWL", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching in literature courses under the supervision of instructor of course. Doctoral students in literature are required to participate in undergraduate teaching for a minimum of twelve units (two to four units per quarter) prior to completion of the PhD degree.", + "edges_from": [], + "edges_to": [], + "id": 559, + "label": "LTWL 500", + "title": "Apprentice Teaching in Literature (2 or 4)" + }, + { + "dept": "VIS", + "description": "Exploration of concepts in representational artworks by critically examining \u201cfound\u201d vs. \u201cmade\u201d recorded material. Advanced film/video, photography, computing work. Issues of narrative and structure; attention to formal aspects of media work emphasized. Two production-course limitation. ", + "edges_from": [ + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568 + ], + "edges_to": [], + "id": 560, + "label": "VIS 180A", + "title": "Documentary Evidence and the Construction of Authenticity in Current Media Practices (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 563 + ], + "edges_to": [ + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 5801 + ], + "id": 561, + "label": "VIS 178", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 563 + ], + "edges_to": [ + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 5801 + ], + "id": 562, + "label": "VIS 175", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 731 + ], + "edges_to": [ + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 561, + 562, + 564, + 565, + 566, + 5801 + ], + "id": 563, + "label": "VIS 174", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 563 + ], + "edges_to": [ + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 5801 + ], + "id": 564, + "label": "VIS 177", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 563 + ], + "edges_to": [ + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 5801 + ], + "id": 565, + "label": "VIS 176", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 563 + ], + "edges_to": [ + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 5801 + ], + "id": 566, + "label": "VIS 171", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 1016 + ], + "edges_to": [ + 2401, + 5986, + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 5801 + ], + "id": 567, + "label": "VIS 164", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 1016 + ], + "edges_to": [ + 2401, + 5986, + 5800, + 5129, + 5130, + 5132, + 5133, + 560, + 5801 + ], + "id": 568, + "label": "VIS 165", + "title": "" + }, + { + "dept": "VIS", + "description": "and Allegory in Current Media Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 569, + "label": "VIS 180B", + "title": "Fiction" + }, + { + "dept": "BENG", + "description": "Implementation of design project in genetic circuits bioengineering. ", + "edges_from": [ + 571, + 68 + ], + "edges_to": [ + 68 + ], + "id": 570, + "label": "BENG 128B", + "title": "Design Implementation in Genetic Circuits Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 66 + ], + "edges_to": [ + 570 + ], + "id": 571, + "label": "BENG 128A", + "title": "" + }, + { + "dept": "FPM", + "description": "This course is an introduction to microarray technology and analysis of gene expression data. This ten-lecture course will cover a range of microarray topics including platform types. Image processing, experimental design, and statistical analysis and application in medicine and health sciences.", + "edges_from": [], + "edges_to": [], + "id": 572, + "label": "FPM 237", + "title": "Microarray Technology and Informatics (2)" + }, + { + "dept": "POLI", + "description": "Introductory reading seminar on Latin American politics to acquaint students with leading schools of thought, provide critical perspective on premises and methodology, and identify themes for further inquiry. Themes include authoritarianism, revolution, democratization, regional conflict, and emergence of middle-level powers. ", + "edges_from": [], + "edges_to": [], + "id": 573, + "label": "POLI 235A", + "title": "Latin American Politics (4)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in labor economics. (Previously numbered Econ 236A-B.) ", + "edges_from": [], + "edges_to": [], + "id": 574, + "label": "ECON 250", + "title": "Labor Economics (4)" + }, + { + "dept": "MUS", + "description": "This course presents selected topics in music and consists of lecture and listening sessions. No prior technical knowledge is necessary. The course will be offered during summer session.", + "edges_from": [], + "edges_to": [], + "id": 575, + "label": "MUS 80", + "title": "Special Topics in Music (1\u20134 )" + }, + { + "dept": "MUS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 576, + "label": "MUS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "POLI", + "description": "This course provides an overview of the challenges posed by chemical, biological, radiological, and nuclear weapons. Students will learn about how these weapons work, why states seek them, and attempts to prevent proliferation. We will delve into technical and policy challenges related to these weapons, and address how CBRN weapons shape national and regional security dynamics. Efforts to restrict the proliferation of these weapons will be discussed. We will also analyze CBRN terrorism.", + "edges_from": [], + "edges_to": [], + "id": 577, + "label": "POLI 142D", + "title": "Weapons of Mass Destruction (4)" + }, + { + "dept": "CHEM", + "description": "Third quarter of a three-quarter honors sequence intended for well-prepared", + "edges_from": [], + "edges_to": [ + 5472, + 3343, + 441, + 5082, + 445, + 5470, + 5471 + ], + "id": 578, + "label": "CHEM 6CH", + "title": "Honors General Chemistry III (4)" + }, + { + "dept": "CHEM", + "description": "of Teaching and Learning Science (4)", + "edges_from": [], + "edges_to": [], + "id": 579, + "label": "CHEM 187", + "title": "Foundations" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 184/BENG 184/CSE 184.)", + "edges_from": [], + "edges_to": [], + "id": 580, + "label": "CHEM 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "CHEM", + "description": "Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. ", + "edges_from": [ + 137, + 444, + 134, + 447 + ], + "edges_to": [], + "id": 581, + "label": "CHEM 185", + "title": "Introduction to Computational Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 182/BENG 182/CSE 182.) This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object oriented databases, data modeling, and description. Survey of current biological database with respect to above, implementation of database on a biological topic. Bioinformatics majors only. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 5873, + 4574 + ], + "id": 582, + "label": "CHEM 182", + "title": "Biological Databases (4)" + }, + { + "dept": "LTSP", + "description": "This course will examine issues of gender, sexuality, and culture in Spanish, Latin American, and/or Chicana/o literatures. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 583, + "label": "LTSP 175", + "title": "Gender, Sexuality, and Culture (4)" + }, + { + "dept": "LTSP", + "description": "Study of the relationships between cultural production (literature, film, popular cultures), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, revolution. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 584, + "label": "LTSP 174", + "title": "Topics in Culture and Politics (4)" + }, + { + "dept": "LTSP", + "description": "This course will focus on a variety of Latin American and/or Spanish intra- and international migrations throughout the world and on the literature produced by these exiles or immigrants. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 585, + "label": "LTSP 177", + "title": "Literary and Historical Migrations (4)" + }, + { + "dept": "LTSP", + "description": "Study of literature as a means through which the nation has been imagined and as a site of debates over national identity and citizenship. Course materials may focus on Spain and/or Latin America. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 586, + "label": "LTSP 176", + "title": "Literature and Nation (4)" + }, + { + "dept": "LTSP", + "description": "Focus on the interaction between literary expression and the study of society, covering issues such as the sociology of literature, the historical novel, literature and social change, the writer as the intellectual. May be taken for credit three times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 587, + "label": "LTSP 171", + "title": "Studies in Peninsular and/or Latin American Literature and Society (4)" + }, + { + "dept": "LTSP", + "description": "Selected readings in recent cultural and literary theory. Students will be exposed to a variety of methodologies drawn from the Latin American, European, and US traditions. May be taken up to two times for credit when topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 588, + "label": "LTSP 170", + "title": "Contemporary Theories of Cultural Production (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with EDS 123.) In the lecture", + "edges_from": [], + "edges_to": [], + "id": 589, + "label": "CHEM 188", + "title": "Capstone Seminar in Science Education (4)" + }, + { + "dept": "LTSP", + "description": "Themes in Latin American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 590, + "label": "LTSP 172", + "title": "Indigenista" + }, + { + "dept": "SOCI", + "description": "The study of the unique and universal aspects of the Holocaust. Special attention will be paid to the nature of discrimination and racism, those aspects of modernity that make genocide possible, the relationship among the perpetrators, the victims and the bystanders, and the teaching, memory, and denial of the Holocaust. ", + "edges_from": [ + 592, + 591 + ], + "edges_to": [ + 4707, + 591 + ], + "id": 591, + "label": "SOCI 178", + "title": "The Holocaust (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 591 + ], + "id": 592, + "label": "SOCD 178", + "title": "" + }, + { + "dept": "SOCI", + "description": "Course focuses on the development of capitalism as a worldwide process, with emphasis on its social and political consequences. Topics include: precapitalist societies, the rise of capitalism in the West, and the social and political responses to its expansion elsewhere. ", + "edges_from": [ + 593, + 594 + ], + "edges_to": [ + 593 + ], + "id": 593, + "label": "SOCI 179", + "title": "Social Change (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 593 + ], + "id": 594, + "label": "SOCD 179", + "title": "" + }, + { + "dept": "HILD", + "description": "Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, and rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration. Program or materials fees may apply. May be taken for credit up to three times. Students must apply and be accepted into the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 595, + "label": "HILD 7GS", + "title": "Race and Ethnicity in the Global World (4)" + }, + { + "dept": "BENG", + "description": "Foundations of membrane mechanics. Micro- and nano-mechanics of cells and their constituent protein networks. Biomechanics of the circulation, properties of blood, non-Newtonian behavior, dimensionless flow analysis. Applications to cardiovascular diseases. Polymer and statistical mechanics. Engineering design and problem solving. ", + "edges_from": [ + 597 + ], + "edges_to": [ + 5905, + 3759 + ], + "id": 596, + "label": "BENG 112B", + "title": "Fluid and Cell Biomechanics (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 598 + ], + "edges_to": [ + 2667, + 596, + 5755 + ], + "id": 597, + "label": "BENG 112A", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 385, + 135, + 136, + 139, + 140, + 30 + ], + "edges_to": [ + 1147, + 597 + ], + "id": 598, + "label": "BENG 110", + "title": "" + }, + { + "dept": "SOCI", + "description": "An analysis of films and how they portray various aspects of American society and culture. ", + "edges_from": [ + 600, + 599 + ], + "edges_to": [ + 599 + ], + "id": 599, + "label": "SOCI 172", + "title": "Films and Society (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 599 + ], + "id": 600, + "label": "SOCB 172", + "title": "" + }, + { + "dept": "SOCI", + "description": "Scientific practices have had a tremendous impact on our understandings of gender. Gender relations have also significantly influenced the character of scientific inquiry. The course will consider how and why these two processes intertwine. ", + "edges_from": [], + "edges_to": [], + "id": 601, + "label": "SOCI 170", + "title": "Gender and Science (4)" + }, + { + "dept": "SOCI", + "description": "Does improved technology mean progress? Or, are environmental pollution and social alienation signs that technology is out of control? This class uncovers the social problems of key modern technologies such as automobile transport, factory farming, biotechnology, and nuclear power. ", + "edges_from": [ + 602, + 603 + ], + "edges_to": [ + 602 + ], + "id": 602, + "label": "SOCI 171", + "title": "Technology and Science (4)" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [], + "edges_to": [ + 602 + ], + "id": 603, + "label": "SOCI 168T", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Same as POLI 1420.) This course covers the definitions, history, and internationalization of terrorism; the interrelation of religion, politics and terror; and the representation of terrorism in the media. A number of organizations and their activities in Europe and the Middle East are examined. ", + "edges_from": [ + 604, + 605 + ], + "edges_to": [ + 604 + ], + "id": 604, + "label": "SOCI 177", + "title": "International Terrorism (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 604 + ], + "id": 605, + "label": "SOCD 177", + "title": "" + }, + { + "dept": "SOCI", + "description": "Surveys the development of nationality and citizenship law in historical and comparative perspective with an emphasis on the United States, Latin America, and Europe. Examines competing sociological accounts for national variation and convergence; consequences of the law; and local, transnational, and extraterritorial forms of citizenship. ", + "edges_from": [ + 606, + 607 + ], + "edges_to": [ + 606 + ], + "id": 606, + "label": "SOCI 175", + "title": "Nationality and Citizenship (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 606 + ], + "id": 607, + "label": "SOCD 175", + "title": "" + }, + { + "dept": "POLI", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 608, + "label": "POLI 99H", + "title": "Independent Study (1)" + }, + { + "dept": "ANTH", + "description": "The Iron Age (ca. 1200\u2013586 BCE) represents", + "edges_from": [], + "edges_to": [], + "id": 609, + "label": "ANTH 292", + "title": "Social Evolution/Iron Age Levant (4)" + }, + { + "dept": "POLI", + "description": "The Senior Seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in political science at the upper-division level. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 610, + "label": "POLI 192", + "title": "Senior Seminar in Political Science (1)" + }, + { + "dept": "POLI", + "description": "(Same as Com/Gen 194; USP 194, HITO 193, SocE 194, COGS 194) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "edges_from": [], + "edges_to": [], + "id": 611, + "label": "POLI 194", + "title": "Research Seminar in Washington, DC (4)" + }, + { + "dept": "POLI", + "description": "Teaching and tutorial activities associated with courses and seminars. Limited to advanced political science majors with at least a 3.5 GPA in upper-division political science courses. P/NP grades only. May be taken for credit two times, but only four units may be used for major credit. ", + "edges_from": [], + "edges_to": [], + "id": 612, + "label": "POLI 195", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "GPPA", + "description": "The health care sector is one of the largest, and continues to grow in most countries. However, it has major quality, safety, and efficiency problems. This course shows how to improve health care delivery. Topics include tools such as checklists, Six Sigma, lean processes, and design of experiments. Some discussion of pharmaceutical development and clinical trials. Students may not receive credit for GPPA 420 and IRGN 490, Innovation in Healthcare Operations.", + "edges_from": [], + "edges_to": [], + "id": 613, + "label": "GPPA 420", + "title": "Innovation in Healthcare Operations (4)" + }, + { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 614, + "label": "LTRU 1A", + "title": "First-Year Russian (5)" + }, + { + "dept": "POLI", + "description": "Independent reading in advanced political science by individual students. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 615, + "label": "POLI 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 616, + "label": "LTRU 1C", + "title": "First-Year Russian (5)" + }, + { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 617, + "label": "LTRU 1B", + "title": "First-Year Russian (5)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to research on language acquisition and its relationship to conceptual development. Topics include theoretical foundations (e.g., learning mechanisms, theories of concepts) and empirical case studies, including word learning, syntax and semantics, and language and thought. Recommended preparation: completion of a course in language/linguistics, cognition, or cognitive development. ", + "edges_from": [], + "edges_to": [], + "id": 618, + "label": "PSYC 146", + "title": "Language and Conceptual Development (4)" + }, + { + "dept": "PSYC", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 619, + "label": "PSYC 147", + "title": "Gender" + }, + { + "dept": "PSYC", + "description": "This course will provide a survey of current research and theory concerning human memory and amnesia from both cognitive and neuropsychological perspectives. Topics may include short-term (working) memory, encoding and retrieval, episodic and semantic memory, interference and forgetting, false memory, eyewitness memory, emotion and memory, famous case studies of amnesia, and the effects of aging and dementia on memory. ", + "edges_from": [], + "edges_to": [], + "id": 620, + "label": "PSYC 144", + "title": "Memory and Amnesia (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of language comprehension and production. Topics include animal communication, language development, and language disorders. Recommended preparation: completion of a course in language, cognition, or philosophy of the mind. ", + "edges_from": [], + "edges_to": [], + "id": 621, + "label": "PSYC 145", + "title": "Psychology of Language (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of research on consciousness from an experimental psychology perspective. Special emphasis will be placed on cognitive, neuro-imaging, and clinical/psychiatric investigative techniques, and on the scientific assessment of the mind-body problem. ", + "edges_from": [], + "edges_to": [], + "id": 622, + "label": "PSYC 142", + "title": "Psychology of Consciousness (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the behavioral approach, including basic principles, self-control, clinical applications, and the design of cultures. ", + "edges_from": [], + "edges_to": [], + "id": 623, + "label": "PSYC 143", + "title": "Control and Analysis of Human Behavior (4)" + }, + { + "dept": "PSYC", + "description": "This course provides training in applying the principles of human behavior, including choice behavior, self-control, and reasoning. ", + "edges_from": [ + 625 + ], + "edges_to": [ + 625 + ], + "id": 624, + "label": "PSYC 140", + "title": "Human Behavior Laboratory (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 624, + 1103 + ], + "edges_to": [ + 624, + 1103 + ], + "id": 625, + "label": "PSYC 120", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides insight into the question of whether important aspects of human behavior can be explained as resulting from natural selection. Topics include sex differences, selfishness and altruism, homicide and violence, and context effects of human reasoning. ", + "edges_from": [], + "edges_to": [], + "id": 626, + "label": "PSYC 141", + "title": "Evolution and Human Nature (4)" + }, + { + "dept": "FPM", + "description": "Introduction to clinical ambulatory medicine where students spend one afternoon per week in a physician\u2019s practice participating in patient care commensurate with their training. Students may opt to continue the course over successive quarters or enroll full time during the summer for up to four weeks. S/U grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 627, + "label": "FPM 238", + "title": "Introduction to Clinical Family Medicine (1-7)" + }, + { + "dept": "ETHN", + "description": "An advanced survey of key issues, themes, and debates in the field of critical ethnic studies focusing on the connection between race and social structures. Students will use diverse theoretical frameworks to identify and interpret contemporary and historical social problems. ", + "edges_from": [ + 629, + 630, + 631 + ], + "edges_to": [ + 3320, + 4712, + 5791, + 3319 + ], + "id": 628, + "label": "ETHN 100A", + "title": "Ethnic Studies: Theoretical Approaches (4)" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 2236, + 628 + ], + "id": 629, + "label": "ETHN 3", + "title": "" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 2236, + 628 + ], + "id": 630, + "label": "ETHN 2", + "title": "" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 628 + ], + "id": 631, + "label": "ETHN 1", + "title": "" + }, + { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "edges_from": [], + "edges_to": [], + "id": 632, + "label": "EDS 240A", + "title": "Research" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of judgment and decision making, which is broadly concerned with preferences, subjective probability, and how they are combined to arrive at decisions. History and current topics will be covered. ", + "edges_from": [], + "edges_to": [], + "id": 633, + "label": "PSYC 148", + "title": "Psychology of Judgment and Decision (4)" + }, + { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "edges_from": [], + "edges_to": [], + "id": 634, + "label": "EDS 240C", + "title": "Research" + }, + { + "dept": "COGS", + "description": "This seminar surveys current research in information visualization with the goal of preparing students to do original research. The focus is on the cognitive aspects of information design, dynamic representations, and computational techniques. Topics vary each time course is offered.", + "edges_from": [], + "edges_to": [], + "id": 635, + "label": "COGS 220", + "title": "Information Visualization (4)" + }, + { + "dept": "COGS", + "description": "This course is designed to open the doors for students who are interested in learning about the fundamental principles of visual perception and important applications of computer vision.", + "edges_from": [], + "edges_to": [], + "id": 636, + "label": "COGS 225", + "title": "Visual Computing (4)" + }, + { + "dept": "COGS", + "description": "(Cross-listed with CSE 219.) New societal challenges, cultural values, and technological opportunities are changing design\u2014and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. S/U grades only. May be taken for credit ninety-nine times.", + "edges_from": [], + "edges_to": [], + "id": 637, + "label": "COGS 229", + "title": "Design at Large (1)" + }, + { + "dept": "HIGR", + "description": "Introduction to methods, theories, and critiques of writing early modern global/world history. It seeks to familiarize students with the main historiographical debates and defining narratives about the first phase of intensifying global connectivity that commenced in the fifteenth century. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 638, + "label": "HIGR 280", + "title": "Global History: Approaches to the Early Modern Era (4)" + }, + { + "dept": "HIGR", + "description": "Introduction to methods, theories, and critiques of writing global/world history in the modern era. Will survey how scholars of diverse disciplinary backgrounds have analyzed global change since the nineteenth century. It assesses the methodological and theoretical contributions of several analysts, the concepts through which they have explained and typified modes of interaction across global space, and the problems posed by studying connectivity. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 639, + "label": "HIGR 281", + "title": "Global History: Approaches to the Modern Era (4)" + }, + { + "dept": "LTWR", + "description": "A workshop designed to encourage regular writing of all forms of personal experience narrative, including journals, autobiography, firsthand biography, and firsthand chronicle. Instructor and students will discuss student work as well as published personal narratives. May be taken for credit three times. ", + "edges_from": [ + 272, + 273, + 261 + ], + "edges_to": [ + 646 + ], + "id": 640, + "label": "LTWR 120", + "title": "Personal Narrative Workshop (4)" + }, + { + "dept": "LTWR", + "description": "Workshop focusing on the review, the op-ed piece, the column, the blurb, the profile, the interview, and \u201ccontent-providing\u201d for websites. We\u2019ll examine current examples of media writing; students will produce a body of work and critique one another\u2019s productions. May be taken for credit three times. ", + "edges_from": [ + 272 + ], + "edges_to": [], + "id": 641, + "label": "LTWR 121", + "title": "Media Writing Workshop (4)" + }, + { + "dept": "LTWR", + "description": "A workshop in writing about science for the public. Students will study and then construct metaphors or analogues that introduce readers to scientific perplexities. Completion of LTWR 8A, 8B, or 8C highly recommended. May be repeated for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 642, + "label": "LTWR 122", + "title": "Writing for the Sciences Workshop (4)" + }, + { + "dept": "CHEM", + "description": "This course explores teaching strategies specific to chemistry at the college level, and promotes the development of skills for facilitating active, student-centered learning in both lecture and laboratory settings. It is required for first-time teaching assistants. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 643, + "label": "CHEM 509", + "title": "Teaching Methods in Chemistry and Biochemistry (2)" + }, + { + "dept": "LTWR", + "description": "A writing workshop on the theory and practice of literary translation. Students will translate literary texts and workshop with the instructor and other course members. Selected readings in translation theory. May be taken for credit three times. ", + "edges_from": [ + 272, + 273, + 261 + ], + "edges_to": [], + "id": 644, + "label": "LTWR 124", + "title": "Translation of Literary Texts Workshop (4)" + }, + { + "dept": "LTWR", + "description": "A writing, reading, and critical-thinking workshop designed to produce nonfiction pieces that fall outside the limits of the essay form. Included are travel narratives, memoir, and information-based writing that transform their own materials into compelling literature. May be repeated for credit three times. ", + "edges_from": [ + 272 + ], + "edges_to": [], + "id": 645, + "label": "LTWR 126", + "title": "Creative Nonfiction Workshop (4)" + }, + { + "dept": "LTWR", + "description": "Workshop designed to critique and engage the means of distributing literature within culture. Publishing from \u201czine\u201d through mainstream publication; web publishings; readings and \u201cslams\u201d; publicity and funding; colloquia with writers; politics and literature; and the uses of performance and media. May be taken for credit three times. ", + "edges_from": [ + 640, + 648, + 647 + ], + "edges_to": [], + "id": 646, + "label": "LTWR 129", + "title": "Distributing Literature Workshop (4)" + }, + { + "dept": "LTWR", + "description": "", + "edges_from": [ + 261 + ], + "edges_to": [ + 646 + ], + "id": 647, + "label": "LTWR 102", + "title": "" + }, + { + "dept": "LTWR", + "description": "", + "edges_from": [ + 273 + ], + "edges_to": [ + 949, + 646 + ], + "id": 648, + "label": "LTWR 100", + "title": "" + }, + { + "dept": "CHEM", + "description": "Under the supervision and mentorship of a course instructor, MS and PhD students serve as teaching assistants to undergraduate laboratory and lecture courses. To support teaching competency, regular meetings with the instructor and attendance at lectures are required. S/U grades only. May be taken for credit twelve times. ", + "edges_from": [], + "edges_to": [], + "id": 649, + "label": "CHEM 500", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "MATH", + "description": "A highly adaptive course designed to build on students\u2019 strengths while increasing overall mathematical understanding and skill. This multimodality course will focus on several topics of study designed to develop conceptual understanding and mathematical relevance: linear relationships; exponents and polynomials; rational expressions and equations; models of quadratic and polynomial functions and radical equations; exponential and logarithmic functions; and geometry and trigonometry. Workload credit only\u2014not for baccalaureate credit. ", + "edges_from": [], + "edges_to": [], + "id": 650, + "label": "MATH 2", + "title": "Introduction to College Mathematics (4)" + }, + { + "dept": "LIGN", + "description": "Language in American culture and society.", + "edges_from": [], + "edges_to": [], + "id": 651, + "label": "LIGN 8", + "title": "Languages and Cultures in America (4)" + }, + { + "dept": "SE", + "description": "Concepts of stress and strain. Hooke\u2019s law. Stress transformation. Axial loading of bars. Torsion of circular shafts. Torsion of thin-walled members. Pure bending of beams. Unsymmetric bending of beams. Shear stresses in beams. Shear stresses in thin-walled beams. Shear center. Differential equation of the deflection curve. Deflections and slopes of beams from integration methods. Statically determinate and indeterminate problems. ", + "edges_from": [ + 653, + 654, + 135 + ], + "edges_to": [ + 3970, + 2659, + 1861, + 5767, + 399, + 1785, + 1308 + ], + "id": 652, + "label": "SE 110A", + "title": "Solid Mechanics I (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 29, + 654, + 134 + ], + "edges_to": [ + 2081, + 3330, + 3745, + 1129, + 1127, + 652, + 79, + 920, + 1147 + ], + "id": 653, + "label": "MAE 130A", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 29, + 134 + ], + "edges_to": [ + 2081, + 3330, + 3745, + 1129, + 1127, + 652, + 653, + 79, + 920, + 1147 + ], + "id": 654, + "label": "SE 101A", + "title": "" + }, + { + "dept": "MGT", + "description": "Introduction to the emerging real estate tech sector; newly available datasets and technologies are transforming the real estate sector; introduction of quantitative methods for analyzing real estate and urban trends; utilizing large datasets and software in making optimal decisions from the perspective of buyers, sellers, real estate agents and brokers, developers, and regulators. ", + "edges_from": [], + "edges_to": [], + "id": 655, + "label": "MGT 158", + "title": "Real Estate and the Tech Sector (4)" + }, + { + "dept": "LIGN", + "description": "The role of language in thought, myth, ritual, advertising, politics, and the law. Language variation, change, and loss; multilingualism, pidginization and creolization; language planning, standardization, and prescriptivism; writing systems. ", + "edges_from": [], + "edges_to": [], + "id": 656, + "label": "LIGN 3", + "title": "Language as a Social and Cultural Phenomenon (4)" + }, + { + "dept": "LIGN", + "description": "Fundamental issues in language and cognition. Differences between animal communication, sign systems, and human language; origins and evolution of language; neural basis of language; language acquisition in children and adults. ", + "edges_from": [], + "edges_to": [ + 1156 + ], + "id": 657, + "label": "LIGN 4", + "title": "Language as a Cognitive System (4)" + }, + { + "dept": "LIGN", + "description": "Introduction to the study of language through the investigation of invented languages, whether conscious (Elvish, Klingon, Esperanto) or unconscious (creoles, twin/sibling languages). Students will participate in the invention of a language fragment. Topics discussed include language structure, history, culture, and writing systems. ", + "edges_from": [], + "edges_to": [], + "id": 658, + "label": "LIGN 5", + "title": "The Linguistics of Invented Languages (4)" + }, + { + "dept": "LIGN", + "description": "Deaf history since the eighteenth century. The structure of American Sign Language and comparison with oral languages. ASL poetry and narrative and Deaf people\u2019s system of cultural knowledge. Basic questions concerning the nature of language and its relation to culture. ", + "edges_from": [], + "edges_to": [], + "id": 659, + "label": "LIGN 7", + "title": "Sign Language and Its Culture (4)" + }, + { + "dept": "PHYS", + "description": "This is a two-quarter course on gravitation and the general theory of relativity. The first quarter is intended to be offered every year and may be taken independently of the second quarter. The second quarter will be offered in alternate years. Topics covered in the first quarter include special relativity, differential geometry, the equivalence principle, the Einstein field equations, and experimental and observational tests of gravitation theories. The second quarter will focus on more advanced topics, including gravitational collapse, Schwarzschild and Kerr geometries, black holes, gravitational radiation, cosmology, and quantum gravitation.", + "edges_from": [], + "edges_to": [], + "id": 660, + "label": "PHYS 225A-B", + "title": "General Relativity (4-4)" + }, + { + "dept": "AAS", + "description": "This course will cover the experiences of peoples of African descent in the U.S. and broader African Diaspora from the vantage points of cultural production, political practice, socioeconomic conditions, and the overall struggle for social justice along intersecting lines of race, gender, and class. Topics reviewed include slavery (and slave rebellion), Reconstruction, Jim Crow apartheid, the Great Migration and Harlem Renaissance, and the Civil Rights and Black Power Movements.", + "edges_from": [], + "edges_to": [], + "id": 661, + "label": "AAS 10", + "title": "Introduction to African American Studies (4)" + }, + { + "dept": "POLI", + "description": "Examines the legal issues surrounding the rights of criminal suspects, as well as the rights of \u201cmarginal\u201d groups such as aliens, illegal immigrants, and the mentally ill. Also includes a discussion of the nature of discrimination in American society. ", + "edges_from": [], + "edges_to": [], + "id": 662, + "label": "POLI 104C", + "title": "Civil Liberties\u2014The Rights of the Accused and Minorities (4)" + }, + { + "dept": "ANTH", + "description": "This seminar deals with recent developments in the anthropology of the political: contemporary forms of power and governance; the formation of the subject; imperial regimes and colonial/postcolonial orders; \u201cgovernmentality\u201d; global process and the contemporary transformations of the state and governance. ", + "edges_from": [], + "edges_to": [], + "id": 663, + "label": "ANTH 218", + "title": "Anthropology of the State and Governance (4)" + }, + { + "dept": "ANTH", + "description": "The focus here is \u201cpolitics,\u201d broadly constructed, in various societies. Analysis is from the perspective of the recourses deployed by all involved, including but not limited to power, with emphasis on the role of culture and social structure. ", + "edges_from": [ + 665 + ], + "edges_to": [], + "id": 664, + "label": "ANTH 219", + "title": "Seminar in Political Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 664 + ], + "id": 665, + "label": "ANGR 219", + "title": "" + }, + { + "dept": "ANTH", + "description": "Examines the worldwide resurgence of religion in the context of migration, missionization, the media, postcolonialism, and personal mobility in contemporary global culture. ", + "edges_from": [], + "edges_to": [], + "id": 666, + "label": "ANTH 210", + "title": "Religion and Globalization (4)" + }, + { + "dept": "ANTH", + "description": "With special attention to the relationship between theory and data, this course deals with psychoanalytic approaches to the study of religion through a close examination of key ethnographic and historical studies of religious systems and experience. ", + "edges_from": [], + "edges_to": [], + "id": 667, + "label": "ANTH 211", + "title": "Psychoanalysis and Religion (4)" + }, + { + "dept": "ANTH", + "description": "A critical exploration of timely and/or controversial topics in biological anthropology. Course will vary in title and content. ", + "edges_from": [], + "edges_to": [], + "id": 668, + "label": "ANTH 212", + "title": "Advanced Topics in Biological Anthropology (4)" + }, + { + "dept": "ANTH", + "description": "This seminar examines intersection of anthropology and psychiatry. Topics include cultural conceptions and social determinants of anxiety, depression, trauma, and psychosis, corporeal experience and manifestation of illness, transnational variation in course and outcome, global circulation of psychiatric knowledge/practice and pharmaceuticals. ", + "edges_from": [], + "edges_to": [], + "id": 669, + "label": "ANTH 213", + "title": "Anthropology and Mental Health (4)" + }, + { + "dept": "ANTH", + "description": "This seminar considers three major tropes for cultivating human relations\u2014being together, living together, and working together. In examining recent inquiries into kinship, environment, and labor, we explore each of these tropes as concrete channels of human relation along which such qualities as love, attachment, stigma, and threat might travel. How do people consider themselves related, and what are the potentials of those relations? ", + "edges_from": [], + "edges_to": [], + "id": 670, + "label": "ANTH 214", + "title": "Kin, Land, and Labor-Cultivating Relations (4)" + }, + { + "dept": "ANTH", + "description": "A critical exploration of timely and/or controversial topics in sociocultural anthropology. Course will vary in title and content. ", + "edges_from": [], + "edges_to": [], + "id": 671, + "label": "ANTH 215", + "title": "Advanced Topics in Sociocultural Anthropology (4)" + }, + { + "dept": "ANTH", + "description": "Pentecostal and charismatic Christianity have recently expanded around the globe. This course explores the cultural and social processes facilitating their spread and examines how these kinds of Christianity shape social life, politics, gender relations, and economic practices in convert societies. ", + "edges_from": [], + "edges_to": [], + "id": 672, + "label": "ANTH 216", + "title": "Global Pentecostalism (4)" + }, + { + "dept": "ANTH", + "description": "The opposition between materiality and ideology structures our practice as social scientists and as neoliberal citizens. This course explores the underpinnings of this division, its current manifestations, and attempts to trouble it analytically, methodologically, and politically. ", + "edges_from": [], + "edges_to": [], + "id": 673, + "label": "ANTH 217", + "title": "Materiality (4)" + }, + { + "dept": "ESYS", + "description": "Provides an introduction to environmental systems. Faculty members from departments in the natural sciences, geosciences, and social sciences will offer perspectives in these areas. (F)", + "edges_from": [], + "edges_to": [], + "id": 674, + "label": "ESYS 90", + "title": "Perspectives on Environmental Issues (1)" + }, + { + "dept": "HIEU", + "description": "Comparative study of Islam in Europe since 1945. Topics include indigenous populations; immigration; Islamic law/church-state questions; EU expansion/integration; gender issues; terrorism; Islamophobia; \u201cEuropeanizing\u201d Islam; the historical tradition of European-Muslim encounter and its present political/cultural issues. Graduate students will be required to do an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 675, + "label": "HIEU 182/282", + "title": "The Muslim Experience in Contemporary European Society (4)" + }, + { + "dept": "CENG", + "description": "Conduction, convection, radiation heat transfer;", + "edges_from": [], + "edges_to": [ + 2049, + 2818, + 2052, + 3309, + 2031, + 2032, + 2545, + 5812, + 3579 + ], + "id": 676, + "label": "CENG 101B", + "title": "Heat Transfer (4)" + }, + { + "dept": "CENG", + "description": "Diffusive and convective mass transfer in", + "edges_from": [], + "edges_to": [ + 2049, + 2052, + 3309, + 2031, + 2032, + 5812, + 4060 + ], + "id": 677, + "label": "CENG 101C", + "title": "Mass Transfer (4)" + }, + { + "dept": "MGTF", + "description": "This course focuses on the means and methods of finance applied to social, economic, and environmental challenges of development. Financial innovations give rise to new intermediaries, new types of instruments, and new services or techniques to create jobs, build communities, and enable capital formation and economic growth. Students will discover why capital structure matters in aligning diverse interests into new business models to finance social and economic change. ", + "edges_from": [], + "edges_to": [], + "id": 678, + "label": "MGTF 458", + "title": "Financial Innovations for Economic Development (4)" + }, + { + "dept": "MATH", + "description": "An introduction to recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ", + "edges_from": [ + 8, + 384, + 6 + ], + "edges_to": [ + 5140 + ], + "id": 679, + "label": "MATH 160A", + "title": "Elementary Mathematical Logic I (4)" + }, + { + "dept": "VIS", + "description": "A critical review of the principal strategies of investigation in past and present art-historical practice, a scrutiny of their contexts and underlying assumptions, and a look at alternative possibilities. The various traditions for formal and iconographic analysis as well as the categories of historical description will be studied. Required for all art history and criticism majors. ", + "edges_from": [ + 681 + ], + "edges_to": [ + 2325, + 3751 + ], + "id": 680, + "label": "VIS 112", + "title": "Art Historical Methods (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 680, + 2843 + ], + "id": 681, + "label": "VIS 23", + "title": "" + }, + { + "dept": "CSE", + "description": "Fundamentals of computer programming and basic software design covering topics related to variables, functions, and control structures; writing, testing, and debugging programs in Matlab. Examples focus on scientific applications. Recommended preparation: high school algebra and familiarity with the computing milieu. Students with limited computing experience may take CSE 3 for preparation. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [ + 5903, + 2335, + 3293, + 2334, + 4205 + ], + "id": 682, + "label": "CSE 7", + "title": "Introduction to Programming with Matlab (4)" + }, + { + "dept": "Soc/G", + "description": "Alternative theories of the relations of immigrants and host societies, and an examination on the debates on, and dynamic of, immigration expansion and restriction. Comparison of the bearing of liberal, communitarian, and ethnic citizenship discourses on the inclusion and exclusion of immigrants and their descendants. ", + "edges_from": [], + "edges_to": [], + "id": 683, + "label": "Soc/G 282", + "title": "Immigration and Citizen (4)" + }, + { + "dept": "Soc/G", + "description": "Develops central themes in medical sociology in order to understand twentieth- and twenty-first century medical practice and research. Topics include authority and expertise; health inequalities; managed care; health activism; biomedical knowledge production; and the construction of medical objects and subjects. ", + "edges_from": [], + "edges_to": [], + "id": 684, + "label": "Soc/G 284", + "title": "Contemporary Biomedicine (4)" + }, + { + "dept": "MGT", + "description": "Residential and commercial mortgage-backed securities markets and the market for structured real estate debt; the estimation of prices, yields, and various measures of investment performance; creating and structuring security issues; legal, regulatory, and institutional issues; derivative products (CDOs, CDSs, options, futures, etc.); and current political, economic, and policy issues. ", + "edges_from": [ + 686 + ], + "edges_to": [], + "id": 685, + "label": "MGT 157", + "title": "Real Estate Securitization (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [ + 129, + 130, + 1132, + 1133, + 1882, + 1884, + 3615 + ], + "edges_to": [ + 5028, + 3784, + 3786, + 3787, + 685, + 4996 + ], + "id": 686, + "label": "MGT 181", + "title": "" + }, + { + "dept": "Soc/G", + "description": "This seminar examines the place of scientific knowledge and information and communication technology in the transformation of capitalist economy and society. The class explores new interactions between science studies and social theory of advanced capitalism. ", + "edges_from": [], + "edges_to": [], + "id": 687, + "label": "Soc/G 288", + "title": "Knowledge Capitalism (4)" + }, + { + "dept": "VIS", + "description": "Examines a topic of special interest to permanent and visiting faculty that is not addressed in the regular curriculum. As in other Art Practice/Theory seminars, students will both produce work and read and write critically about the topic. Topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 688, + "label": "VIS 219", + "title": "Special Topics in Art Practice/Theory (4)" + }, + { + "dept": "POLI", + "description": "An exploration of the relationship between power and justice in modern society. Materials include classic and contemporary texts, films, and literature. POLI 13 is Lecture only, and POLI 13D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 13 and 13D.", + "edges_from": [], + "edges_to": [], + "id": 689, + "label": "POLI 13 or 13D", + "title": "Power and Justice (4)" + }, + { + "dept": "CLRE", + "description": "This experiential course builds on the knowledge gained in the core curriculum through hands-on lab and simulation-based exercises. Students will learn basic lab methods and communication skills pertinent to engaging subjects in clinical research. May be taken for credit four times. While students are required to take the course two times, the course would apply toward general elective requirements when taken a third and fourth time. ", + "edges_from": [ + 185, + 187 + ], + "edges_to": [], + "id": 690, + "label": "CLRE 270", + "title": "Experiential Learning in Clinical Research (2)" + }, + { + "dept": "POLI", + "description": "This course will examine the historical development of the ideal of democracy from Periclean Athens to the present in the light of criticism by such thinkers as Plato, Tocqueville, and Mosca and difficulties encountered in efforts to realize the ideal.", + "edges_from": [], + "edges_to": [], + "id": 691, + "label": "POLI 110H", + "title": "Democracy and Its Critics (4)" + }, + { + "dept": "POLI", + "description": "Leading political theories of liberal democracy since 1950. What is the meaning of political liberty? Political equality is the equality of what? Course will consider thinkers such as J.S. Mill, Berlin, Rawls, Dworkin, Taylor, Sen, Nussbaum, G. Cohen, Petit.", + "edges_from": [], + "edges_to": [], + "id": 692, + "label": "POLI 110K", + "title": "Liberty and Equality (4)" + }, + { + "dept": "POLI", + "description": "This course examines how power has been conceived and contested during the course of American history. The course explores the changes that have occurred in political rhetoric and strategies as America has moved from a relatively isolated agrarian and commercial republic to a military and industrial empire.", + "edges_from": [], + "edges_to": [], + "id": 693, + "label": "POLI 110J", + "title": "Power in American Society (4)" + }, + { + "dept": "POLI", + "description": "Leading theories of environmental justice, ethics, and politics since 1960. Thinkers such as Dauvergne, Dobson, Dryzek, Eckersley, Latour, Plumwood, and Simon on ecosystems, climate change, sustainability, preservation, human welfare, nonhuman animals, place, feminism, state, market, and green political movements. ", + "edges_from": [], + "edges_to": [], + "id": 694, + "label": "POLI 110M", + "title": "Green Political Thought (4)" + }, + { + "dept": "POLI", + "description": "Nationalist ideologies. Examination of the rhetoric of nationalist mobilization. Theories about the relationship between nationalist movements and democracy, capitalism, warfare, and the state. ", + "edges_from": [], + "edges_to": [], + "id": 695, + "label": "POLI 110N", + "title": "Theories of Nationalism (4)" + }, + { + "dept": "POLI", + "description": "and Saints: Political Thought from Plato to Augustine (4)", + "edges_from": [], + "edges_to": [], + "id": 696, + "label": "POLI 110A", + "title": "Citizens" + }, + { + "dept": "POLI", + "description": "and Reaction: Political Thought from Kant to Nietzsche (4)", + "edges_from": [], + "edges_to": [], + "id": 697, + "label": "POLI 110C", + "title": "Revolution" + }, + { + "dept": "POLI", + "description": "The course deals with the period that marks the rise and triumph of the modern state. Central topics include the gradual emergence of human rights and the belief in individual autonomy. Readings from Machiavelli, Hobbes, Locke, Rousseau, and others.", + "edges_from": [], + "edges_to": [], + "id": 698, + "label": "POLI 110B", + "title": "Sovereigns, Subjects, and the Modern State: Political Thought from Machiavelli to Rousseau (4)" + }, + { + "dept": "POLI", + "description": "This course explores theories of politics that are oriented beyond state borders. Key topics include international order, cosmopolitanism, human rights, just war, global justice, mitigation, citizenship, identity, and commercial society. The course examines thinkers from classical antiquity to contemporary times.", + "edges_from": [], + "edges_to": [], + "id": 699, + "label": "POLI 110G", + "title": "International Political Thought (4)" + }, + { + "dept": "BIBC", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 700, + "label": "BIBC 194", + "title": "Advanced Topics in Modern Biology: Biochemistry (2)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 701, + "label": "Linguistics/Hindi (LIHI) 1CX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 702, + "label": "Linguistics/Heritage Languages (LIHL) 116W", + "title": "Arabic for Arabic Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 703, + "label": "Linguistics/Heritage Languages (LIHL) 116P", + "title": "Arabic for Arabic Speakers (4)" + }, + { + "dept": "LATI", + "description": "Guided and supervised reading of the literature on Latin America in the interdisciplinary areas of anthropology, communications, economics, history, literature, political science, and sociology. For students majoring in Latin American Studies, reading will focus around potential topics for senior papers; for honors students in Latin American Studies, reading will culminate in formulation of a prospectus for the research thesis. ", + "edges_from": [ + 705 + ], + "edges_to": [], + "id": 704, + "label": "LATI 199", + "title": "Individual Study (4)" + }, + { + "dept": "LATI", + "description": "", + "edges_from": [], + "edges_to": [ + 704, + 708, + 709, + 942 + ], + "id": 705, + "label": "LATI 50", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 706, + "label": "Linguistics/Heritage Languages (LIHL) 116F", + "title": "Arabic for Arabic Speakers (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students with basic knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 460A-B-C. Students may not get credit for any IRLA 460 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 707, + "label": "GPLA 460A-B-C", + "title": "Basic Bahasa Indonesia for Professional Proficiency (4-4-4)" + }, + { + "dept": "LATI", + "description": "Research seminar on selected topics in the study of Latin America; all students will be required to prepare and present independent research papers. (Honors students will present drafts of senior research theses, of no less than fifty pages in length; non-honors students will present final versions of analytical papers of approximately twenty-five to forty pages in length.) ", + "edges_from": [ + 705 + ], + "edges_to": [], + "id": 708, + "label": "LATI 190", + "title": "Senior Seminar (4)" + }, + { + "dept": "LATI", + "description": "Independent reading and research under direction of a member of the faculty group in Latin American Studies; goal is to provide honors students with an opportunity to complete senior research thesis (to be defended before three-person interdisciplinary faculty committee). ", + "edges_from": [ + 705 + ], + "edges_to": [], + "id": 709, + "label": "LATI 191", + "title": "Honors Seminar (4)" + }, + { + "dept": "BENG", + "description": "Weekly seminars by faculty, visitors, postdoctoral", + "edges_from": [], + "edges_to": [], + "id": 710, + "label": "BENG 281", + "title": "Seminar in Bioengineering (1)" + }, + { + "dept": "BENG", + "description": "Weekly seminars by bioengineering faculty presenting their research. May be repeated for credit. Course does not apply toward MS or PhD graduation requirements. (S/U grades only.) (F)", + "edges_from": [], + "edges_to": [], + "id": 711, + "label": "BENG 282", + "title": "Seminar: Faculty Research (1)" + }, + { + "dept": "BIMM", + "description": "Genomics Research Initiative Laboratory II (4)", + "edges_from": [], + "edges_to": [], + "id": 712, + "label": "BIMM 170", + "title": "" + }, + { + "dept": "ANSC", + "description": "This course examines the diversity of emotional experience in human societies and the contribution of the study of emotion to understanding culture and human nature. ", + "edges_from": [], + "edges_to": [], + "id": 713, + "label": "ANSC 128", + "title": "Culture and Emotion (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. ", + "edges_from": [], + "edges_to": [], + "id": 714, + "label": "ANSC 129", + "title": "Meaning and Healing (4)" + }, + { + "dept": "EDS", + "description": "Students will study discipline-specific principles of effective learning, including critical thinking, problem solving, collaboration, and group communication. Laboratory and hypothesis testing, library research and writing skills, and self-assessment. Students will explore concepts and procedures in mathematics, science, and economics. ", + "edges_from": [], + "edges_to": [], + "id": 715, + "label": "EDS 20S", + "title": "Introduction to Principles of Learning (4)" + }, + { + "dept": "TDGR", + "description": "A weekly seminar in which all graduate stage managers participate. Includes discussions of problems encountered on current productions, paperwork, methodology, and production approaches. ", + "edges_from": [], + "edges_to": [], + "id": 716, + "label": "TDGR 288", + "title": "Stage Management Seminar (4)" + }, + { + "dept": "PHIL", + "description": "Central issues about the justification, proper functions, and limits of the state through classic texts in the history of political philosophy by figures such as Plato, Aristotle, Hobbes, Locke, Rousseau, Mill, and Marx. ", + "edges_from": [], + "edges_to": [], + "id": 717, + "label": "PHIL 166", + "title": "Classics in Political Philosophy (4)" + }, + { + "dept": "ANSC", + "description": "Explores religious life in various cultures. Topics addressed include the problem of religious meaning, psychocultural aspects of religious experience, religious conversion and revitalization, contrasts between traditional and world religions, religion and social change. ", + "edges_from": [], + "edges_to": [], + "id": 718, + "label": "ANSC 120", + "title": "Anthropology of Religion (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the role of communicative practices and language differences in organizing social life. Topics include social action through language; child language socialization; language and social identity (ethnicity, gender, class); interethnic communication; language ideologies; and language and power in social institutions and everyday life. ", + "edges_from": [], + "edges_to": [], + "id": 719, + "label": "ANSC 122", + "title": "Language in Society (4)" + }, + { + "dept": "TDGR", + "description": "A course for MFA students in stage management. Topics will focus on various aspects of theatre administration, and advanced stage management, including nonprofit theatre, commercial theatre, advanced problems, venues, musicals/dance, production management, theatre development, business problems, and theatre marketing. ", + "edges_from": [], + "edges_to": [], + "id": 720, + "label": "TDGR 286", + "title": "Special Topics in Stage Management (1\u20136)" + }, + { + "dept": "ANSC", + "description": "This course introduces the concept of culture and the debates surrounding it. Cultural anthropology asks how people create meaning and order in society, how culture intersects with power, and how national and global forces impact local meanings and practices. ", + "edges_from": [], + "edges_to": [], + "id": 721, + "label": "ANSC 124", + "title": "Cultural Anthropology (4)" + }, + { + "dept": "ANSC", + "description": "How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125 and ANSC 125GS. ", + "edges_from": [], + "edges_to": [], + "id": 722, + "label": "ANSC 125", + "title": "Gender, Sexuality, and Society (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the diversity of practices of child-rearing, socialization, and enculturation across cultures, and the role of culture in the development of personality, morality, spirituality, sexuality, emotion, and cognition. ", + "edges_from": [], + "edges_to": [], + "id": 723, + "label": "ANSC 126", + "title": "Childhood and Adolescence (4)" + }, + { + "dept": "TDGR", + "description": "Creative projects to develop student\u2019s techniques and professional", + "edges_from": [], + "edges_to": [], + "id": 724, + "label": "TDGR 282", + "title": "Advanced Sound Design (4)" + }, + { + "dept": "HISC", + "description": "in Twentieth-Century Science and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 725, + "label": "HISC 165", + "title": "Topics" + }, + { + "dept": "HISC", + "description": "A selection of topics from physical, biological, or medical writings up to 1500. Emphasis on analysis of primary sources and contexts. Topics vary from year to year. Graduate students will be expected to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 726, + "label": "HISC 169", + "title": "Topics in Pre-Renaissance Science (4)" + }, + { + "dept": "HINE", + "description": "Growth of nationalism in relation to imperialism,", + "edges_from": [], + "edges_to": [], + "id": 727, + "label": "HINE 166/266", + "title": "Nationalism in the Middle East (4)" + }, + { + "dept": "ERC", + "description": "Senior thesis research project for students who have been accepted into the Eleanor Roosevelt College Individual Studies major. Project will be carried out under supervision of one or more faculty members. Depending on scope of the project, may be taken for four or eight units of credit in a single quarter, or eight units distributed over two quarters. ", + "edges_from": [], + "edges_to": [], + "id": 728, + "label": "ERC 196", + "title": "Honors Project (4)" + }, + { + "dept": "VIS", + "description": "Develop artworks and installations that utilize digital electronics. Techniques in digital electronic construction and computer interfacing for interactive control of sound, lighting, and electromechanics. Construction of devices that responsively adapt artworks to conditions involving viewer participation, space activation, machine intelligence. Recommended preparation: CSE 8A strongly recommended. Program or materials fees may apply. Purchase of components kit required. Two production-course limitation. ", + "edges_from": [ + 730, + 731, + 732 + ], + "edges_to": [ + 733 + ], + "id": 729, + "label": "VIS 147A", + "title": "Electronic Technologies for Art I (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 4592, + 729, + 4442, + 4595, + 4247 + ], + "id": 730, + "label": "VIS 80", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 2145, + 1411, + 2151, + 5002, + 5554, + 563, + 729 + ], + "id": 731, + "label": "VIS 70N", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 729, + 1155, + 932 + ], + "id": 732, + "label": "VIS 41", + "title": "" + }, + { + "dept": "VIS", + "description": "Continuation of the electronics curriculum. Design of programmable microcontroller systems for creating artworks that are able to respond to complex sets of input conditions, perform algorithmic and procedural processing, and generate real time output. Program or materials fees may apply. Purchase of components kit required. Two production-course limitation. ", + "edges_from": [ + 729 + ], + "edges_to": [ + 3422, + 1910 + ], + "id": 733, + "label": "VIS 147B", + "title": "Electronic Technologies for Art II (4)" + }, + { + "dept": "MATH", + "description": "Second course in a two-quarter introduction to abstract algebra with some applications. Emphasis on rings and fields. Topics include: definitions and basic properties of rings, fields, and ideals, homomorphisms, irreducibility of polynomials. (Students may not receive credit for both Math 100B and Math 103B.) ", + "edges_from": [ + 8, + 6 + ], + "edges_to": [], + "id": 734, + "label": "MATH 103B", + "title": "Modern Algebra II (4)" + }, + { + "dept": "ERC", + "description": "The content of this independent study course, which may not duplicate any existing course on campus, will be determined by a supervising faculty member and tailored to fit specific content needs of students pursuing the Eleanor Roosevelt College Individual Studies major. ", + "edges_from": [], + "edges_to": [], + "id": 735, + "label": "ERC 199", + "title": "ERC Independent Studies (4)" + }, + { + "dept": "SIOC", + "description": "This is a preparatory mathematics class for climate sciences, specifically designed to review math concepts vital to understanding climate science in preparation for SIOC 210 and SIOC 217A. The course will use statistical methods to understand the observed climate records, calculus to investigate Earth\u2019s radiation budget, and vector rotation to introduce the dynamics and transport of the atmosphere and ocean. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 736, + "label": "SIOC 290S", + "title": "Climate Math (6)" + }, + { + "dept": "MATH", + "description": "of Teaching and Learning Mathematics I (4)", + "edges_from": [], + "edges_to": [], + "id": 737, + "label": "MATH 121A", + "title": "Foundations" + }, + { + "dept": "MATH", + "description": "of Teaching and Learning Math II (4)", + "edges_from": [], + "edges_to": [], + "id": 738, + "label": "MATH 121B", + "title": "Foundations" + }, + { + "dept": "HLAW", + "description": "Course examines bioethics from a clinical perspective using medical literature and case law to cover a range of topics such as the principles and theories of bioethics, truth telling and confidentiality, informed consent, research on animals and human subjects, technology and reproduction, surrogacy, abortion and fetal rights, maternal/fetal conflict, the right to die, physician-assisted suicide and euthanasia, medical decision making for incompetent patients, and the changing nature of the doctor-patient relationship. Medical ethical issues in health-care policy at the national and global level are also discussed including allocation of scarce medical resources, compulsory public health measures, clinical research in the developing world, and cross-cultural medical practice. ", + "edges_from": [], + "edges_to": [], + "id": 739, + "label": "HLAW 216", + "title": "Bioethics and Medical Practice (3)" + }, + { + "dept": "LTEA", + "description": "An introduction to later Japanese (kogo) literature in translation. Will focus on several \u201cmodern\u201d works, placing their form in the historical context. No knowledge of Japanese required. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 740, + "label": "LTEA 132", + "title": "Later Japanese Literature in Translation (4)" + }, + { + "dept": "MDE", + "description": "Case studies of integrative physiology to understand how this information is used in designing combination medical devices and instruments for diagnosis or research. Students may not receive credit for both MDE 231A and MDE 231. ", + "edges_from": [ + 742 + ], + "edges_to": [], + "id": 741, + "label": "MDE 231B", + "title": "Fundamentals of Physiology and Anatomy II (2)" + }, + { + "dept": "MDE", + "description": "", + "edges_from": [], + "edges_to": [ + 741 + ], + "id": 742, + "label": "MDE 231A", + "title": "" + }, + { + "dept": "TDPW", + "description": "Project in Playwriting/Screenwriting (4)", + "edges_from": [], + "edges_to": [], + "id": 743, + "label": "TDPW 190", + "title": "Major" + }, + { + "dept": "LTEA", + "description": "An introduction to Japanese films. Attention given to representative Japanese directors (e.g., Ozu), form (e.g., anime), genre (e.g. feminist revenge horror), or historical context in which films are produced. Priority may be given to Japanese studies majors and literature majors.", + "edges_from": [], + "edges_to": [], + "id": 744, + "label": "LTEA 138", + "title": "Japanese Films (4)" + }, + { + "dept": "HIUS", + "description": "The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism.", + "edges_from": [], + "edges_to": [], + "id": 745, + "label": "HIUS 140/ECON 158", + "title": "Economic History of the United States I (4)" + }, + { + "dept": "LIGN", + "description": "Descriptive and theoretical problems in morphology. Theoretical and empirical consequences of alternative analyses. May be taken for credit three times. ", + "edges_from": [ + 747 + ], + "edges_to": [], + "id": 746, + "label": "LIGN 248", + "title": "Topics in Morphology (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 746 + ], + "id": 747, + "label": "LIGN 220", + "title": "" + }, + { + "dept": "DSC", + "description": "Provides an understanding of the structures that underlie the programs, algorithms, and languages used in data science by expanding the repertoire of computational concepts introduced in DSC 10 and exposing students to techniques of abstraction. Course will be taught in Python and will cover topics including recursion, higher-order functions, function composition, object-oriented programming, interpreters, classes, and simple data structures such as arrays, lists, and linked lists. ", + "edges_from": [ + 179 + ], + "edges_to": [ + 993 + ], + "id": 748, + "label": "DSC 20", + "title": "Programming and Basic Data Structures for Data Science (4)" + }, + { + "dept": "TDMV", + "description": "An in-depth investigation of the role and aesthetics of performer/dancer in a fully staged independent project resulting in a dance performance choreographed by faculty or students. May be taken for credit two times.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 749, + "label": "TDMV 190", + "title": "Major Project as Performer (4)" + }, + { + "dept": "LTCS", + "description": "The role of race and culture within the history of empires; may select a single empire for consideration, such as France, Britain, United States, or Japan, or choose to examine the role of race and culture in comparative histories of colonialism. Repeatable for credit when readings and focus vary.", + "edges_from": [], + "edges_to": [], + "id": 750, + "label": "LTCS 141", + "title": "Special Topics in Race and Empire (4)" + }, + { + "dept": "LIGN", + "description": "Official and minority languages, pidgins and Creoles, language planning, bilingual education and literacy, code switching, and language attrition. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 751, + "label": "LIGN 177", + "title": "Multilingualism (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 2817, + 3490, + 1091, + 3684, + 773, + 775, + 4204, + 3502, + 751, + 754, + 3286, + 4157 + ], + "id": 752, + "label": "LIGN 101", + "title": "" + }, + { + "dept": "LIGN", + "description": "Techniques of discovering the structure of a language through elicitation of data from native speaker consultants. Phonemic, morphemic, and syntactic analysis. ", + "edges_from": [ + 754 + ], + "edges_to": [ + 755 + ], + "id": 753, + "label": "LIGN 240", + "title": "Field Methods (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [ + 752 + ], + "edges_to": [ + 753, + 3845, + 3846 + ], + "id": 754, + "label": "LIGN 110", + "title": "" + }, + { + "dept": "LIGN", + "description": "Fieldwork continuing the research of the previous quarter; student-directed elicitations on topics of interest. ", + "edges_from": [ + 753 + ], + "edges_to": [], + "id": 755, + "label": "LIGN 241", + "title": "Fieldwork (4)" + }, + { + "dept": "LIGN", + "description": "Introduction to computational corpus tools for performing empirically grounded linguistic investigations. Annotated and unannotated corpora; annotation schemes. Searching using regular expressions. UNIX tools. The PERL programming language. Publically available language processing systems.", + "edges_from": [], + "edges_to": [], + "id": 756, + "label": "LIGN 245", + "title": "Computational Corpus Linguistics (4)" + }, + { + "dept": "LIGN", + "description": "Advanced material covering particular topics relating to the theoretical analysis of the pragmatics of natural languages. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 757, + "label": "LIGN 247", + "title": "Topics in Pragmatics (2\u20134)" + }, + { + "dept": "ETHN", + "description": "American History in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 758, + "label": "ETHN 149", + "title": "African" + }, + { + "dept": "EDS", + "description": "and Professional Assessment (4)", + "edges_from": [], + "edges_to": [], + "id": 759, + "label": "EDS 204", + "title": "Technology" + }, + { + "dept": "EDS", + "description": "This course will review current literature on effective applications of technology in the classroom. Students will also become fluent in the use of productivity tools, presentation software, and web development for teaching and learning; critique software relevant to their area of teaching; and develop an educational activity based on their review of the literature that harnesses the power of technology. ", + "edges_from": [ + 761, + 762, + 763, + 764, + 765 + ], + "edges_to": [], + "id": 760, + "label": "EDS 203", + "title": "Technology, Teaching, and Learning (4)" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 760 + ], + "id": 761, + "label": "ED 79", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 760, + 3090 + ], + "id": 762, + "label": "ED 78", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 760 + ], + "id": 763, + "label": "ED 80", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 760 + ], + "id": 764, + "label": "ED 77", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 760, + 3090 + ], + "id": 765, + "label": "ED 76", + "title": "" + }, + { + "dept": "EDS", + "description": "to Resources for Teaching and Learning (4)", + "edges_from": [], + "edges_to": [], + "id": 766, + "label": "EDS 201", + "title": "Introduction" + }, + { + "dept": "ETHN", + "description": "This course critically examines the impact of the Vietnam War on refugees from Vietnam, Laos, and Cambodia. Focusing on everyday refugee life, it pays particular attention to how the refugees have created alternative memories, epistemologies, and lifeworlds.", + "edges_from": [], + "edges_to": [], + "id": 767, + "label": "ETHN 140", + "title": "Comparative Refugee Communities from Vietnam, Laos, and Cambodia (4)" + }, + { + "dept": "ETHN", + "description": "Martin Luther King was inspired by Gandhi, but in his own time, Gandhi was as controversial as he was revered. Nonviolence was not widely accepted as a form of political protest. This course explores Gandhi\u2019s complex legacy of nonviolence for places and peoples embroiled in conflict.", + "edges_from": [], + "edges_to": [], + "id": 768, + "label": "ETHN 141", + "title": "Gandhi in the Modern World: From Civil Rights to the Arab Spring (4)" + }, + { + "dept": "ETHN", + "description": "Race, and the Global Politics of Inequality (4)", + "edges_from": [], + "edges_to": [], + "id": 769, + "label": "ETHN 142", + "title": "Medicine," + }, + { + "dept": "ETHN", + "description": "This course is a historical survey of Chicana and Chicano media from roughly 1950 to the present. The goals of the course include learning about Chicana/o history, politics, and culture through different media and gaining the critical tools to analyze Chicana/o media and media more broadly.", + "edges_from": [], + "edges_to": [], + "id": 770, + "label": "ETHN 143", + "title": "Chicana/o Film and Media Studies (4)" + }, + { + "dept": "BENG", + "description": "Training (4)", + "edges_from": [], + "edges_to": [], + "id": 771, + "label": "BENG 295", + "title": "Bioengineering Design Project and Industrial" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 147.) An advanced introduction to historical and contemporary black feminisms in the United States and transnationally. Students will explore the theory and practice of black feminists/womanists and analyze the significance of black feminism to contemporary understandings of race, class, gender, and sexuality.", + "edges_from": [], + "edges_to": [], + "id": 772, + "label": "ETHN 147", + "title": "Black Feminisms, Past and Present\u00a0(4)" + }, + { + "dept": "LIGN", + "description": "The study of how humans learn, represent, comprehend, and produce language. Topics include visual and auditory recognition of words, sentence comprehension, reading, sentence production, language acquisition, neural representation of language, bilingualism, and language disorders. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 773, + "label": "LIGN 170", + "title": "Psycholinguistics (4)" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "edges_from": [], + "edges_to": [], + "id": 774, + "label": "CHIN 100BM", + "title": "Third Year Chinese\u2014Mandarin speakers II (4)" + }, + { + "dept": "LIGN", + "description": "A central cognitive, developmental mystery is how children learn their first language. Overview of research in the learning of sound systems, word forms and word meanings, and word combinations. Exploration of the relation between cognitive and language development. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 775, + "label": "LIGN 171", + "title": "Child Language Acquisition (4)" + }, + { + "dept": "VIS", + "description": "This course examines the significant topics in art practice, theory, and history that are shaping contemporary art thinking. A wide range of media extending across studio art practice, digital media, performative practices, and public culture will be considered as interrelated components. This course is required for visual arts transfer students. Students may not receive credit for both VIS 11 and VIS 111. This course is offered only one time each year during winter quarter. ", + "edges_from": [], + "edges_to": [], + "id": 776, + "label": "VIS 11", + "title": "Introduction to Visual Arts (4)" + }, + { + "dept": "VIS", + "description": "Designed around presentations by visiting artists, critics, and scientists involved with contemporary issues related to computer arts and design. Lectures by the instructor and contextual readings provide background material for the visitor presentations. Program or materials fees may apply. Students may not receive credit for both VIS 10 and ICAM 110. This course is offered only one time each year. ", + "edges_from": [], + "edges_to": [], + "id": 777, + "label": "VIS 10", + "title": "Computing in the Arts Lecture Series (4)" + }, + { + "dept": "CHEM", + "description": "Renumbered from CHEM 213. A discussion of the physical principles governing biomolecular structure and function. Experimental and theoretical approaches to understand protein dynamics, enzyme kinetics, and mechanisms will be covered. Students may only receive credit for one of the following: CHEM 213 or 213B. May be coscheduled with CHEM 113.", + "edges_from": [], + "edges_to": [], + "id": 778, + "label": "CHEM 213B", + "title": "Biophysical Chemistry of Macromolecules (4)" + }, + { + "dept": "GPCO", + "description": "This is the first quarter of a two-quarter requirement. The capstone paper must demonstrate: mastery of the development of the methodologies for rigorous data collection and analysis; an in-depth understanding of the historical regulatory, political and/or economic processes surrounding the chosen \u201cproblem\u201d for analysis; mastery of the working details of the \u201cproblem\u201d at the center of the research; and a requisite level of research proficiency in Mandarin Chinese. Topic to be approved. ", + "edges_from": [], + "edges_to": [ + 2351 + ], + "id": 779, + "label": "GPCO 470", + "title": "Master of Chinese Economics and Political Affairs Capstone (4)" + }, + { + "dept": "CHEM", + "description": "A discussion of structures of nucleic acids and proteins and their larger assemblies. The theoretical basis for nucleic acid and protein structure, as well as methods of structure determination including X-ray crystallography, cryoEM, and computational modeling approaches will be covered. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 780, + "label": "CHEM 213A", + "title": "Structure of Biomolecules and Biomolecular Assemblies (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 208D) Mathematical logic as a tool in computer science. Propositional logic, resolution, first-order logic, completeness and incompleteness theorems with computational viewpoint, finite model theory, descriptive complexity, logic programming, nonmonotonic reasoning, temporal logic. Applications to databases, automatic theorem proving, program verification, and distributed systems. ", + "edges_from": [ + 782 + ], + "edges_to": [], + "id": 781, + "label": "CSE 205A", + "title": "Logic in Computer Science (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 0 + ], + "edges_to": [ + 3003, + 2116, + 781, + 3623 + ], + "id": 782, + "label": "CSE 200", + "title": "" + }, + { + "dept": "COGS", + "description": "Spontaneous gestures and their relationship", + "edges_from": [], + "edges_to": [], + "id": 783, + "label": "COGS 155", + "title": "Gesture and Cognition (4)" + }, + { + "dept": "MAE", + "description": "Overview of present day primary energy sources and availability; fossil fuel, renewable, and nuclear; heat engines; energy conservation, transportation, air pollution, and climate change. Students may not receive credit for both MAE 118 and MAE 118A. ", + "edges_from": [ + 168, + 169 + ], + "edges_to": [], + "id": 784, + "label": "MAE 118", + "title": "Introduction to Energy Systems (4)" + }, + { + "dept": "BIOM", + "description": "Participation in the symposia held by CARTA three times a year. Students shadow one of the speakers during public and private symposia. Students meet after each symposium and each writes a summary of the speaker\u2019s presentation and ensuring discussion. ", + "edges_from": [], + "edges_to": [], + "id": 785, + "label": "BIOM 218", + "title": "Current Topics in Anthropogeny (1)" + }, + { + "dept": "BIOM", + "description": "Overview of ethical issues in scientific research, conflicts of interest; national, statewide and campus issues and requirement; ethical issues in publications; authorship; retention of research records; tracing of research records; attribution; plagiarism; copyright considerations; primary, archival and meeting summary publications; ethical procedures and policies; NIH, NSF, California and UC San Diego; case studies and precedents in ethics. ", + "edges_from": [], + "edges_to": [], + "id": 786, + "label": "BIOM 219", + "title": "Ethics in Scientific Research (1)" + }, + { + "dept": "COGS", + "description": "Human thought and meaning are deeply tied to the capacity for mapping conceptual domains onto each other, inducing common schemas and performing mental simulation. This course examines major aspects of this cognitive activity including metaphor, conceptual blending, and embodied cognition. ", + "edges_from": [], + "edges_to": [], + "id": 787, + "label": "COGS 151", + "title": "Analogy and Conceptual Systems (4)" + }, + { + "dept": "CHIN", + "description": "Bachelor\u2019s thesis, under the direction", + "edges_from": [], + "edges_to": [], + "id": 788, + "label": "CHIN 196", + "title": "Directed Thesis Research (4)" + }, + { + "dept": "ECE", + "description": "Photonic properties of artificially engineered", + "edges_from": [], + "edges_to": [], + "id": 789, + "label": "ECE 212CN", + "title": "Nanophotonics (4)" + }, + { + "dept": "SOCI", + "description": "Small group study and research under the direction of an interested faculty member in an area not covered in regular sociology courses. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 790, + "label": "SOCI 98", + "title": "Directed Group Study (4)" + }, + { + "dept": "SOCI", + "description": "Individual study and research under the direction of an interested faculty member. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 791, + "label": "SOCI 99", + "title": "Independent Study (4)" + }, + { + "dept": "CHIN", + "description": "Group Study in Chinese Studies (2 or 4)", + "edges_from": [], + "edges_to": [], + "id": 792, + "label": "CHIN 198", + "title": "Directed" + }, + { + "dept": "CHIN", + "description": "or 4)", + "edges_from": [], + "edges_to": [], + "id": 793, + "label": "CHIN 199", + "title": "Independent Study in Chinese Studies (2" + }, + { + "dept": "COMM", + "description": "How does media representation of race, nation, and violence work? Taking multicultural California as our site, we will explore how social power is embedded in a variety of visual texts, and how media not only represents but also reproduces conflict. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 794, + "label": "COMM 129", + "title": "Race, Nation, and Violence in Multicultural California (4)" + }, + { + "dept": "COMM", + "description": "Concepts, possibilities, and dilemmas inherent in the notion of global citizenship. Formulate goals and instructional strategies for global education, expected competence of individuals within society. Examine roles that communication and curriculum play in the formation of identity, language use, and civic responsibility of global citizens. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 795, + "label": "COMM 128", + "title": "Education and Global Citizenship (4)" + }, + { + "dept": "ECON", + "description": "Introduction to game theory. Analysis of people\u2019s decisions when the consequences of the decisions depend on what other people do. This course features applications in economics, political science, and law. ", + "edges_from": [ + 385, + 3, + 797, + 798, + 7 + ], + "edges_to": [ + 2759, + 1767 + ], + "id": 796, + "label": "ECON 109", + "title": "Game Theory (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 542 + ], + "edges_to": [ + 803, + 2020, + 2021, + 1768, + 1770, + 3633, + 4404, + 1045, + 796, + 2757 + ], + "id": 797, + "label": "ECON 100C", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 796 + ], + "id": 798, + "label": "MATH 20", + "title": "" + }, + { + "dept": "ECON", + "description": "Examines reasons for international economic agreements, their design, the strategic interactions that determine how the agreements are implemented and sustained, and consequences for global welfare and inequality. Draws on international economics, game theory, law and economics, and political economy to understand international economic agreements. These tools are used to understand multilateral trade and investment agreements, such as NAFTA, and international organizations, such as the WTO. ", + "edges_from": [ + 800, + 542 + ], + "edges_to": [], + "id": 799, + "label": "ECON 106", + "title": "International Economic Agreements (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 505, + 134, + 542, + 302, + 543 + ], + "edges_to": [ + 4168, + 807, + 2475, + 799 + ], + "id": 800, + "label": "ECON 102", + "title": "" + }, + { + "dept": "ECON", + "description": "Detailed treatment of antitrust policy: Sherman Act, price fixing, collusive practices, predatory pricing, price discrimination, double marginalization, exclusive territories, resale price maintenance, refusal to deal, and foreclosure. Theory of regulation and regulatory experience in electrical utilities, oil, telecommunications, broadcasting, etc. ", + "edges_from": [ + 138, + 134, + 542, + 550, + 543 + ], + "edges_to": [], + "id": 801, + "label": "ECON 107", + "title": "Economic Regulation and Antitrust Policy (4)" + }, + { + "dept": "ECON", + "description": "Economics of industries with network effects", + "edges_from": [], + "edges_to": [], + "id": 802, + "label": "ECON 104", + "title": "Economics of Network Industries (4)" + }, + { + "dept": "ECON", + "description": "Theory of monopoly and oligopoly pricing, price discrimination, durable goods pricing, cartel behavior, price wars, strategic entry barriers, mergers, pro- and anti-competitive restraints on business. ", + "edges_from": [ + 797 + ], + "edges_to": [], + "id": 803, + "label": "ECON 105", + "title": "Industrial Organization and Firm Strategy (4)" + }, + { + "dept": "COMM", + "description": "This course will explore the problem of self-expression for members of various ethnic and cultural groups. Of special interest is how writers find ways of describing themselves in the face of others\u2019 sometimes overwhelming predilection to describe them. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 804, + "label": "COMM 127", + "title": "Problem of Voice (4)" + }, + { + "dept": "COMM", + "description": "A course that analyzes the influence of media on children\u2019s behavior and thought processes. The course takes a historical perspective, beginning with children\u2019s print literature, encompassing movies, music, television, and computers. Students will study specific examples of media products intended for children and apply various analytic techniques, including content analysis and experimentation to these materials. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 805, + "label": "COMM 126", + "title": "Children and Media (4)" + }, + { + "dept": "COMM", + "description": "How have politics, media, and society made visible features of life that were once hidden? From the women\u2019s health movement to gay liberation to laws requiring public disclosure, frankness challenges civility, privacy, and taste. How can this be understood? ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 806, + "label": "COMM 125", + "title": "Transparent Society (4)" + }, + { + "dept": "ECON", + "description": "Examines theories of international trade in goods and services and relates the insights to empirical evidence. Explains international trade at the level of industries and firms and analyzes the consequences of trade for resource allocation, welfare, and the income distribution. Discusses sources of comparative advantage, motives for trade policies, and the effects of trade barriers and trading blocs on welfare and incomes. ", + "edges_from": [ + 800, + 542 + ], + "edges_to": [], + "id": 807, + "label": "ECON 101", + "title": "International Trade (4)" + }, + { + "dept": "VIS", + "description": "Eighteenth-century artists and critics were convinced that art could be a force to improve society. This course places Rococo and neoclassical artists such as Watteau, Fragonard, Tiepolo, Hogarth, Reynolds, Vig\u00e9e Le Brun, Blake, and David, within the context of art academies, colonialism, the Grand Tour, Enlightenment conceptualizations of history and nature, and the American and French Revolutions. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 808, + "label": "VIS 124BN", + "title": "Art and the Enlightenment (4)" + }, + { + "dept": "EDS", + "description": "This course investigates early child development (birth through eight years) and education and the role of high quality early education on reducing inequities among diverse populations. Field experience and seminar focus on applying research and theory to experiences in early childhood classrooms (P\u20133). ", + "edges_from": [ + 809, + 810 + ], + "edges_to": [ + 809, + 4012, + 4013 + ], + "id": 809, + "label": "EDS 131", + "title": "Early Childhood Development and Education (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2245, + 809, + 4939, + 4012, + 813, + 4013, + 1820 + ], + "id": 810, + "label": "EDS 139", + "title": "" + }, + { + "dept": "HIEU", + "description": "184/284. Yugoslavia: Before, During, and After (4)", + "edges_from": [], + "edges_to": [], + "id": 811, + "label": "HIEU", + "title": "" + }, + { + "dept": "LTSP", + "description": "Analysis of selected materials that represent the cultural and political relationship between Spain and its colonies. Close reading of literary texts and historical documents. Specific periods covered will fall between the origins of empire in the early sixteenth century to the demise of imperial Spain in 1898; topics may include cultural exchanges between Spain and Latin America, the Philippines, or the US Southwest. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 812, + "label": "LTSP 116", + "title": "Representations of Spanish Colonialism (4)" + }, + { + "dept": "EDS", + "description": "This course focuses on the role of undergraduate mentors in raising academic expectations for students and families traditionally underrepresented at the university. The relationship between the school and community, the social and political organization of elementary schools, and the academic achievement of elementary children are examined. ", + "edges_from": [ + 810 + ], + "edges_to": [ + 4012, + 1820, + 4013 + ], + "id": 813, + "label": "EDS 130", + "title": "Introduction to Academic Mentoring of Elementary/School Students (4)" + }, + { + "dept": "ERC", + "description": "Undergraduate students will be provided with one hour of instruction on pedagogy of tutoring math in a public high school setting and placement in regional public high schools to provide five hours of one-on-one tutoring of math students under supervision of high school math teachers. P/NP grades only. May be taken for credit three times. ", + "edges_from": [ + 129, + 130 + ], + "edges_to": [], + "id": 814, + "label": "ERC 89", + "title": "Practicum in Math Tutoring (2)" + }, + { + "dept": "MUS", + "description": "Third class in a yearlong sequence. Surveys hardware and software resources in an advanced analog/digital and media studio. Required course for use of the studio. Topics include: electronic and computer music, digital and analog audio signal mixing and manipulation, studio devices, interfacing, compositional applications, MIDI synchronization, performance and studio techniques, and student projects. 174C focuses on MIDI, synchronization, and sound-for-picture. ", + "edges_from": [ + 816, + 817 + ], + "edges_to": [], + "id": 815, + "label": "MUS 174C", + "title": "Audio/MlDI Studio Techniques III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 817, + 818 + ], + "edges_to": [ + 815 + ], + "id": 816, + "label": "MUS 174B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 816, + 818, + 815 + ], + "id": 817, + "label": "MUS 170", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 817 + ], + "edges_to": [ + 816 + ], + "id": 818, + "label": "MUS 174A", + "title": "" + }, + { + "dept": "COMM", + "description": "Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ", + "edges_from": [], + "edges_to": [], + "id": 819, + "label": "COMM 196A", + "title": "Honors Seminar in Communication (4)" + }, + { + "dept": "COMM", + "description": "Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ", + "edges_from": [], + "edges_to": [], + "id": 820, + "label": "COMM 196B", + "title": "Honors Seminar in Communication (4)" + }, + { + "dept": "MAE", + "description": "Principles and practice of measurement and control and the design and conduct of experiments. Technical report writing. Lectures relate to dimensional analysis, error analysis, signal-to-noise problems, filtering, data acquisition and data reduction, as well as background of experiments and statistical analysis. Experiments relate to the use of electronic devices and sensors. ", + "edges_from": [ + 446 + ], + "edges_to": [ + 5312, + 2818, + 2883, + 2882, + 5902, + 2705, + 3579 + ], + "id": 821, + "label": "MAE 170", + "title": "Experimental Techniques (4)" + }, + { + "dept": "ECON", + "description": "Course introduces the household as a decision-making unit, and the contracts and institutions that emerge to compensate for imperfect markets. Emphasis is placed on data and identification strategies that can be used to measure the impact of policy interventions. ", + "edges_from": [], + "edges_to": [], + "id": 822, + "label": "ECON 241", + "title": "Microeconomics of Development (4)" + }, + { + "dept": "ECON", + "description": "The study of organizational effectiveness, in both the private and public sectors, bridges the gap between microeconomic analysis of individual and household behavior and macroeconomic analysis of economic aggregates such as capital and output. Topics covered include organizational capacity, leadership and management, staffing, incentives, contracting, finance, learning, market structure, regulations, and politics. ", + "edges_from": [], + "edges_to": [], + "id": 823, + "label": "ECON 243", + "title": "Organizational Economics of Development (4)" + }, + { + "dept": "ECON", + "description": "This course covers development accounting, growth accounting, human capital accumulation, skill-biased technological change, multisector growth models, structural transformation, urban-rural migration, misallocation, informality, technology adoption and diffusion, and other related topics. ", + "edges_from": [], + "edges_to": [], + "id": 824, + "label": "ECON 242", + "title": "Macroeconomics of Development (4)" + }, + { + "dept": "ECON", + "description": "This course covers the determinants of the pattern and volume of trade in goods and services, the interaction of international trade with income distribution and economic growth, and commercial policy. The emphasis is on theory, with some empirical illustration and motivation. ", + "edges_from": [], + "edges_to": [], + "id": 825, + "label": "ECON 245", + "title": "International Trade (4)" + }, + { + "dept": "ECON", + "description": "This course examines the empirical work in international trade or international macroeconomics. International trade topics include empirical tests of theories of international trade and international capital movements. International macroeconomic topics include empirical studies of exchange rate and relative price adjustments. ", + "edges_from": [], + "edges_to": [], + "id": 826, + "label": "ECON 247", + "title": "Empirical Topics in International Economics (4)" + }, + { + "dept": "ECON", + "description": "This course presents open-economy macroeconomics and international finance. Topics include theories of the exchange rate, foreign-exchange regimes, current account adjustments, and international portfolio investments. The course examines real and monetary explanations, and implications of international capital market integration. ", + "edges_from": [], + "edges_to": [], + "id": 827, + "label": "ECON 246", + "title": "International Macroeconomics (4)" + }, + { + "dept": "CHIN", + "description": "(2)", + "edges_from": [], + "edges_to": [], + "id": 828, + "label": "CHIN 269", + "title": "Conversational Mandarin for Medical Students\u2014Beginning" + }, + { + "dept": "NANO", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research, including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. Cross-listed with ECE 221, MAE 265B, and MATS 251B. Students may not receive credit for ECE 221 and MAE 265B and MATS 251B and NANO 251A. ", + "edges_from": [], + "edges_to": [], + "id": 829, + "label": "NANO 251A", + "title": "Magnetic Materials: Principles and Applications (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in mathematical logic. Topics chosen from recursion theory, model theory, and set theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 831 + ], + "edges_to": [], + "id": 830, + "label": "MATH 267B", + "title": "Further Topics in Mathematical Logic (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 830 + ], + "id": 831, + "label": "MATH 267A", + "title": "" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in philosophy of mind with emphasis on classic texts or contemporary authors.\u00a0May be taken for credit three times with changed content.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 832, + "label": "PHIL 207", + "title": "Core Course in Philosophy of Mind (4)" + }, + { + "dept": "MUS", + "description": "All students enrolled in voice lessons (32V,", + "edges_from": [], + "edges_to": [], + "id": 833, + "label": "MUS 32VM", + "title": "Vocal Master Class (1)" + }, + { + "dept": "PSYC", + "description": "Selected topics in the field of psychology. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 834, + "label": "PSYC 193", + "title": "Topics in Psychology (4)" + }, + { + "dept": "PHIL", + "description": "Introduction to philosophical methods of analysis through study of classic historical or contemporary texts. Writing intensive. Enrollment limited to entering graduate students.", + "edges_from": [], + "edges_to": [], + "id": 835, + "label": "PHIL 200", + "title": "Proseminar (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 836, + "label": "PSYC 269C", + "title": "Advanced Topics in Sound and Music Perception III (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 837, + "label": "PSYC 269B", + "title": "Advanced Topics in Sound and Music Perception II (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 838, + "label": "PSYC 269A", + "title": "Advanced Topics in Sound and Music Perception I (1)" + }, + { + "dept": "MUS", + "description": "Independent reading, research, or creative work under the direction of a faculty member, provided no course covering the material to be studied already exists, and the study area derives from previous course work. ", + "edges_from": [], + "edges_to": [], + "id": 839, + "label": "MUS 199", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "PHIL", + "description": "An introduction to some central issues in ethical theory with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 840, + "label": "PHIL 202", + "title": "Core Course in Ethics (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 841, + "label": "LTRU 110B", + "title": "Survey of Russian and Soviet Literature in Translation, 1860\u20131917 (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 842, + "label": "LTRU 110C", + "title": "Survey of Russian and Soviet Literature in Translation, 1917\u2013present (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 843, + "label": "LTRU 110A", + "title": "Survey of Russian and Soviet Literature in Translation, 1800\u20131860 (4)" + }, + { + "dept": "SOCI", + "description": "Will survey the liberal, communitarian, social-democratic, nationalist, feminist, post-nationalist, and multicultural views on the construction of the modern citizen and good society. ", + "edges_from": [ + 844, + 845 + ], + "edges_to": [ + 844 + ], + "id": 844, + "label": "SOCI 169", + "title": "Citizenship, Community, and Culture (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 844 + ], + "id": 845, + "label": "SOCD 169", + "title": "" + }, + { + "dept": "SOCI", + "description": "This class examines how science has been mobilized in the development of nuclear weapons and other weapons of mass destruction. The class applies sociological concepts to the analysis of modern technological violence. ", + "edges_from": [ + 846, + 847 + ], + "edges_to": [ + 846 + ], + "id": 846, + "label": "SOCI 167", + "title": "Science and War (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 846 + ], + "id": 847, + "label": "SOCC 167", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course provides a general introduction to the development of the sociology of knowledge, and will explore questions concerning social determination of consciousness as well as theoretical ways to articulate a critique of ideology. ", + "edges_from": [ + 848, + 849 + ], + "edges_to": [ + 848 + ], + "id": 848, + "label": "SOCI 166", + "title": "Sociology of Knowledge (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 848 + ], + "id": 849, + "label": "SOCB 166", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course explores concepts, theory and empirical research related to demographic, sociopsychological, and institutional aspects of the different stages of human development. It considers social influences on opportunities and constraints by gender, class, race/ethnicity, and historical period. ", + "edges_from": [ + 850, + 851 + ], + "edges_to": [ + 850 + ], + "id": 850, + "label": "SOCI 161", + "title": "Sociology of the Life Course (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 850 + ], + "id": 851, + "label": "SOCB 161", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course will examine the concept of culture, its \u201cdisintegration\u201d in the twentieth century, and the repercussions on the integration of the individual. We will look at this process from a variety of perspectives, each focusing on one cultural fragment (e.g., knowledge, literature, religion) and all suggesting various means to reunify culture and consequently the individual. ", + "edges_from": [ + 852, + 853 + ], + "edges_to": [ + 852 + ], + "id": 852, + "label": "SOCI 160", + "title": "Sociology of Culture (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 853, + "label": "SOCB 160", + "title": "" + }, + { + "dept": "SOCI", + "description": "Provides a global sociological perspective on the development and consequences of laws regulating migration within and across nation-state borders. The ability of the nation-state to control migration using law and its policy instruments. The effects of different legal statuses on political and socioeconomic outcomes. ", + "edges_from": [ + 854, + 855 + ], + "edges_to": [ + 854 + ], + "id": 854, + "label": "SOCI 163", + "title": "Migration and the Law (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 854 + ], + "id": 855, + "label": "SOCC 163", + "title": "" + }, + { + "dept": "SOCI", + "description": "An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. Students may not receive credit for both SOCI 162 and SOCB 162. ", + "edges_from": [], + "edges_to": [], + "id": 856, + "label": "SOCI 162", + "title": "Popular Culture (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of sensory and perceptual phenomena with an emphasis on their underlying physiological mechanisms. ", + "edges_from": [ + 858 + ], + "edges_to": [], + "id": 857, + "label": "PSYC 159", + "title": "Physiological Basis of Perception (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 857, + 3130, + 4141, + 863 + ], + "id": 858, + "label": "PSYC 102", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an examination of theories and empirical work pertaining to interpersonal relationships. Topics include attraction, jealousy, attachments, and love. ", + "edges_from": [], + "edges_to": [], + "id": 859, + "label": "PSYC 158", + "title": "Interpersonal Relationships (4)" + }, + { + "dept": "CHEM", + "description": "Independent study or research under the direction of a member", + "edges_from": [], + "edges_to": [], + "id": 860, + "label": "CHEM 99R", + "title": "Independent Study (1)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to psychology testing. Topics include psychometrics and statistical methods of test construction; application of psychological tests in industry, clinical practice, and applied settings; and controversies in the application of psychological tests. ", + "edges_from": [ + 862 + ], + "edges_to": [], + "id": 861, + "label": "PSYC 151", + "title": "Tests and Measurement (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1028, + 1029, + 1510, + 4327, + 5417, + 2332, + 861 + ], + "id": 862, + "label": "PSYC 60", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the neural basis of visual experience, or how our brain creates what we see in the world around us. ", + "edges_from": [ + 864, + 858 + ], + "edges_to": [], + "id": 863, + "label": "PSYC 150", + "title": "Cognitive Neuroscience of Vision (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 863 + ], + "id": 864, + "label": "PSYC 108", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of past and current theories of emotion. Topics include facial expressions associated with emotion, psychophysiology, evolutionary perspectives, and specific emotions such as anger, fear, and jealousy. ", + "edges_from": [], + "edges_to": [], + "id": 865, + "label": "PSYC 153", + "title": "Psychology of Emotion (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the concept of intelligence from multiple perspectives. Topics include how intelligence is measured and the role of this measurement on practical matters, the role of intelligence in comparative psychology, and attempts to analyze intelligence in terms of more fundamental cognitive processes. ", + "edges_from": [], + "edges_to": [], + "id": 866, + "label": "PSYC 152", + "title": "Conceptions of Intelligence (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an exploration of health, illness, treatment, and delivery of treatment as they relate to psychological concepts and research and considers how the social psychological perspective might be extended into medical fields. ", + "edges_from": [], + "edges_to": [], + "id": 867, + "label": "PSYC 155", + "title": "Social Psychology and Medicine (4)" + }, + { + "dept": "PSYC", + "description": "The course provides an extension of learning principles to human behavior. Topics include broad implications of a behavioral perspective, applied behavior analysis, and applications of behavioral principles to clinical disorders and to normal behavior in varied settings. ", + "edges_from": [], + "edges_to": [], + "id": 868, + "label": "PSYC 154", + "title": "Behavior Modification (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the psychology of happiness. Topics may include such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy\u2014youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless? ", + "edges_from": [], + "edges_to": [], + "id": 869, + "label": "PSYC 157", + "title": "Happiness (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of infant development. Students will critically evaluate scientific theories regarding infant cognitive, linguistic, and social behavior. Recommended preparation: PSYC 60. ", + "edges_from": [ + 872, + 871 + ], + "edges_to": [], + "id": 870, + "label": "PSYC 156", + "title": "Cognitive Development in Infancy (4)" + }, + { + "dept": "HDP", + "description": "", + "edges_from": [], + "edges_to": [ + 4355, + 1156, + 1157, + 1158, + 1423, + 1426, + 870 + ], + "id": 871, + "label": "HDP 1", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1426, + 1350, + 870 + ], + "id": 872, + "label": "PSYC 101", + "title": "" + }, + { + "dept": "COGS", + "description": "Graduate-level seminar studying the design of programming tools from a human-centered perspective, relying primarily on the latest research literature combined with classical theory in cognitive science and human-computer interaction. Course work involves critical reading, discussion, and programming projects. Letter grades only. Recommended preparation: Cognitive Science 120 or CSE 170.", + "edges_from": [], + "edges_to": [], + "id": 873, + "label": "COGS 231", + "title": "Design Seminar on Human-Centered Programming (4)" + }, + { + "dept": "COGS", + "description": "(Cross-listed with CSE 216.) Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Letter grades only.", + "edges_from": [], + "edges_to": [], + "id": 874, + "label": "COGS 230", + "title": "Topics in Human-Computer Interaction (4)" + }, + { + "dept": "HIGR", + "description": "Independent work by graduate students engaged in research and writing of doctoral theses. This course may be repeated for an indefinite number of times due to the independent nature of thesis writing and research. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 875, + "label": "HIGR 299", + "title": "PhD Thesis Direction (1\u201312)" + }, + { + "dept": "COGS", + "description": "This course focuses on aspects of individual and socially distributed cognition. Empirical examples are drawn from natural and experimental settings that presuppose, tacitly or explicitly, socially distributed knowledge among participants. The class examines the way locally managed, pragmatic conditions influence how decisions are framed.", + "edges_from": [], + "edges_to": [], + "id": 876, + "label": "COGS 234", + "title": "Distributed Cognition (4)" + }, + { + "dept": "HIGR", + "description": "For students advanced to candidacy to the doctorate. Discussion, criticism, and revision of drafts of chapters of theses and of work to be submitted for publication.", + "edges_from": [], + "edges_to": [], + "id": 877, + "label": "HIGR 295", + "title": "Thesis Seminar (4)" + }, + { + "dept": "COGS", + "description": "(Same as Linguistics 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. (As topics vary, may be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 878, + "label": "COGS 238", + "title": "Topics in Cognitive Linguistics (1\u20134)" + }, + { + "dept": "BENG", + "description": "Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices; nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles; nanostructures with biological molecules; nanostructural aspects of fuel cells, biofuel cells; potential use of DNA, other biomolecules. ", + "edges_from": [], + "edges_to": [], + "id": 879, + "label": "BENG 247C/ECE 247C/NANO 247C", + "title": "Bionanotechnology (4)" + }, + { + "dept": "COGR", + "description": "Review and critique of studies employing discourse analysis, focusing on the ways that \u201cdiscourse\u201d is identified, recorded, and reported. A working notion of discourse will develop from works representing diverse disciplinary approaches. Students will record, transcribe, and report on segments of talk in an everyday setting. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ", + "edges_from": [], + "edges_to": [], + "id": 880, + "label": "COGR 201C", + "title": "Discourse Analysis (4)" + }, + { + "dept": "COGR", + "description": "A supervised and coordinated group project will allow students to develop competence in a variety of ethnographic approaches to communication. Subjects covered include choosing a fieldwork site, setting or process for participation; entry and development of relationships; techniques of observation, interviewing, note taking, and transcription. Course may also include photography and video as research tools. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ", + "edges_from": [], + "edges_to": [], + "id": 881, + "label": "COGR 201B", + "title": "Ethnographic Methods for Communication Research (4)" + }, + { + "dept": "MGT", + "description": "Introduction to formal and predictive approaches to incorporating", + "edges_from": [], + "edges_to": [], + "id": 882, + "label": "MGT 225", + "title": "Behavioral Economics (4)" + }, + { + "dept": "TDGR", + "description": "The intensive study of the dramatic and fictional", + "edges_from": [], + "edges_to": [], + "id": 883, + "label": "TDGR 210C", + "title": "Process I\u2014Part III (4)" + }, + { + "dept": "TDGR", + "description": "Intensive studio examination of realistic", + "edges_from": [], + "edges_to": [], + "id": 884, + "label": "TDGR 210B", + "title": "Process I\u2014Part II (4)" + }, + { + "dept": "TDGR", + "description": "The actors focus on the nature of the acting", + "edges_from": [], + "edges_to": [], + "id": 885, + "label": "TDGR 210A", + "title": "Process I\u2014Part I (4)" + }, + { + "dept": "ECON", + "description": "The study and development of effective pedagogical materials and techniques in economics. Students who hold appointments as teaching assistants must enroll in this course, but it is open to other students as well. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 886, + "label": "ECON 500A-B-C", + "title": "Teaching Methods in Economics (4-4-4)" + }, + { + "dept": "POLI", + "description": "Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally.", + "edges_from": [], + "edges_to": [], + "id": 887, + "label": "POLI 111B", + "title": "Global Justice in Theory and Action (4)" + }, + { + "dept": "COGR", + "description": "The logic of comparative analysis and its role in communication research. Scientific inference in qualitative research. Selection of cases. Problems of translation across cultures. ", + "edges_from": [], + "edges_to": [], + "id": 888, + "label": "COGR 201J", + "title": "Comparative Analysis (4)" + }, + { + "dept": "COGR", + "description": "Training in genealogical analysis based on Foucault and Nietzsche. Weekly exercises in genealogical methods, and class discussions of findings. A final paper: a genealogy of an object, practice, utterance, or discourse. ", + "edges_from": [], + "edges_to": [], + "id": 889, + "label": "COGR 201N", + "title": "Genealogical Analysis (4)" + }, + { + "dept": "POLI", + "description": "Study of types of social norms and practices, and how to change them. Illustrated with development examples such as the end of foot binding, female genital cutting, urban violence in Colombia, Serbian student revolution, early marriage, and other adverse gender norms.", + "edges_from": [], + "edges_to": [], + "id": 890, + "label": "POLI 111D", + "title": "Social Norms and Global Development (4)" + }, + { + "dept": "COGR", + "description": "Historical and ethnographic studies of information systems\u2014the design and use of information and communication technologies in their social, ethical, political, and organizational dimensions. Objects of study range from the invention of file folders to e-mail use and distributed databases as communication systems. ", + "edges_from": [], + "edges_to": [], + "id": 891, + "label": "COGR 201L", + "title": "Qualitative Analysis of Information Systems (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 892, + "label": "Linguistics/Heritage Languages (LIHL) 119P", + "title": "Hindi for Hindi Speakers (4)" + }, + { + "dept": "COGS", + "description": "This course is affiliated with the honors program (190A-B-C) and is required of honors students during spring quarter. Its aim is to prepare students to present research results to an audience. Emphasis will be on the oral presentation (organization, wording, graphics), but there will also be some discussion about written research reports. Seminar style format with occasional short lectures wherein students will practice oral presentations and provide constructive criticism to each other. ", + "edges_from": [], + "edges_to": [], + "id": 893, + "label": "COGS 190D", + "title": "Preparation for Thesis Presentation (1)" + }, + { + "dept": "COGS", + "description": "This course will provide honors candidates", + "edges_from": [], + "edges_to": [], + "id": 894, + "label": "COGS 190C", + "title": "Honors Thesis in Cognitive Science (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family media/arts; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 895, + "label": "Linguistics/Heritage Languages (LIHL) 119W", + "title": "Hindi for Hindi Speakers (4)" + }, + { + "dept": "COGS", + "description": "This course prepares students for the Cognitive", + "edges_from": [], + "edges_to": [], + "id": 896, + "label": "COGS 190A", + "title": "Pre-Honors Project in Cognitive Science (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in Roman history. May be taken for credit three times as topics will vary. ", + "edges_from": [], + "edges_to": [], + "id": 897, + "label": "HIEU 161/261", + "title": "Topics in Roman History (4)" + }, + { + "dept": "HIUS", + "description": "This seminar will examine racial formation in relation to US wars in American history. Topics include \u201cmanifest destiny\u201d and the frontier; radicalism and the \u201cRed Scare\u201d; the border patrol; civil rights movements; the \u201cwar on drugs,\u201d and mass incarceration.", + "edges_from": [], + "edges_to": [], + "id": 898, + "label": "HIUS 274", + "title": "Race Wars in American Culture (4)" + }, + { + "dept": "LTEN", + "description": "and Eighteenth-Century English Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 899, + "label": "LTEN 231", + "title": "Restoration" + }, + { + "dept": "CHEM", + "description": "Independent literature or laboratory research by arrangement with, and under the direction of, a member of the Department of Chemistry and Biochemistry faculty. Students must register on a P/NP basis. ", + "edges_from": [ + 900 + ], + "edges_to": [ + 900 + ], + "id": 900, + "label": "CHEM 199", + "title": "Reading and Research (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by arrangement with a chemistry and biochemistry faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 904, + 902, + 903 + ], + "edges_to": [], + "id": 901, + "label": "CHEM 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "ESSC", + "description": "", + "edges_from": [], + "edges_to": [ + 901, + 909 + ], + "id": 902, + "label": "ESSC 197", + "title": "" + }, + { + "dept": "ESSC", + "description": "", + "edges_from": [], + "edges_to": [ + 901, + 909 + ], + "id": 903, + "label": "ESSC 198", + "title": "" + }, + { + "dept": "ESSC", + "description": "", + "edges_from": [], + "edges_to": [ + 901, + 909 + ], + "id": 904, + "label": "ESSC 199", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 905, + "label": "Linguistics/Heritage Languages (LIHL) 119F", + "title": "Hindi for Hindi Speakers (4)" + }, + { + "dept": "CHEM", + "description": "in Chemistry and Biochemistry (1)", + "edges_from": [], + "edges_to": [], + "id": 906, + "label": "CHEM 192", + "title": "Senior Seminar" + }, + { + "dept": "CHEM", + "description": "An introduction to teaching chemistry. Students are required to attend a weekly class on methods of teaching chemistry and will teach a discussion section of one of the lower-division chemistry courses. Attendance at lecture of the lower-division course in which the student is participating is required. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 907, + "label": "CHEM 195", + "title": "Methods of Teaching Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Selected topics in the field of chemistry. Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current subtitles will be listed on the Schedule of Classes. May be taken for credit up to four times as topics vary. Students may not receive credit for the same topic.", + "edges_from": [], + "edges_to": [], + "id": 908, + "label": "CHEM 194", + "title": "Special Topics in Chemistry (2 or 4)" + }, + { + "dept": "CHEM", + "description": "An internship program that provides work experience with public/private sector employers. Subject to the availability of positions, students will work in a local company under the supervision of a faculty member and site supervisor. P/NP grades only. May be taken for credit three times. ", + "edges_from": [ + 904, + 902, + 903 + ], + "edges_to": [], + "id": 909, + "label": "CHEM 197", + "title": "Chemistry Internship (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Independent literature or classroom research", + "edges_from": [], + "edges_to": [], + "id": 910, + "label": "CHEM 196", + "title": "Reading and Research in Chemical Education (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Second quarter of a three-quarter honors sequence intended for well-prepared science and engineering majors. Topics include: colligative properties, bulk material properties, chemical equilibrium, acids and bases, and thermodynamics. Three hours lecture and one hour recitation.", + "edges_from": [], + "edges_to": [ + 448, + 953, + 1196, + 215 + ], + "id": 911, + "label": "CHEM 6BH", + "title": "Honors General Chemistry II (4)" + }, + { + "dept": "ANTH", + "description": "Course examines the birth of Olmec and Maya civilizations in the Formative period, the rise of city states during the Early Classic, the decline of the Classic Maya, and the resurgence of the Postclassic period. ", + "edges_from": [], + "edges_to": [ + 2573 + ], + "id": 912, + "label": "ANTH 202", + "title": "Olmec and Maya Archaeology (4)" + }, + { + "dept": "ANTH", + "description": "Course usually taught by visiting faculty in anthropological archaeology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes on", + "edges_from": [], + "edges_to": [], + "id": 913, + "label": "ANTH 201", + "title": "Special Topics in Anthropological Archaeology (4)" + }, + { + "dept": "PHYS", + "description": "This course deals with magnetized plasma. Topics include: Appleton-Hartree theory of waves in cold plasma, waves in warm plasma (Bernstein waves, cyclotron damping). MHD equations, MHD waves, low frequency modes, and the adiabatic theory of particle orbits. ", + "edges_from": [ + 915 + ], + "edges_to": [ + 916 + ], + "id": 914, + "label": "PHYS 218B", + "title": "Plasma Physics II (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 914 + ], + "id": 915, + "label": "PHYS 218A", + "title": "" + }, + { + "dept": "PHYS", + "description": "This course deals with the physics of confined plasmas with particular relevance to controlled fusion. Topics include: topology of magnetic fields, confined plasma equilibria, energy principles, ballooning and kink instabilities, resistive MHD modes (tearing, rippling and pressure-driven), gyrokinetic theory, microinstabilities and anomalous transport, and laser-plasma interactions relevant to inertial fusion. ", + "edges_from": [ + 914 + ], + "edges_to": [ + 2578 + ], + "id": 916, + "label": "PHYS 218C", + "title": "Plasma Physics III (4)" + }, + { + "dept": "SE", + "description": "Wave propagation in elastic media with emphasis on waves in unbound media and on uniform and layered half-spaces. Fundamental aspects of elastodynamics. Application to strong-motion seismology, earthquake engineering, dynamics of foundations, computational wave propagation, and nondestructive evaluations. ", + "edges_from": [], + "edges_to": [], + "id": 917, + "label": "SE 235", + "title": "Wave Propagation in Elastic Media (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with ECE 156.) Characteristics of chemical, biological, seismic and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust censor fabrics; current experience with low power, low-cost sensor deployments. Students may not receive credit for both MAE 149 and ECE 156. May be coscheduled with SIOC 238. ", + "edges_from": [], + "edges_to": [], + "id": 918, + "label": "MAE 149", + "title": "Sensor Networks (4)" + }, + { + "dept": "MAE", + "description": "This course is an introduction to robotic planning algorithms and programming. Topics: sensor-based planning (bug algorithms), motion planning via decomposition and search (basic search algorithms on graphs, A*), the configuration-space concept, free configuration spaces via sampling, collision detection algorithms, (optimal) planning via sampling (probabilistic trees), environment roadmaps, and (extended) Kalman filtering for robot localization and environment mapping (SLAM). ", + "edges_from": [ + 920 + ], + "edges_to": [], + "id": 919, + "label": "MAE 145", + "title": "Introduction to Robotic Planning and Estimation (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 653, + 654 + ], + "edges_to": [ + 399, + 2085, + 919 + ], + "id": 920, + "label": "MAE 130B", + "title": "" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students with low to intermediate knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 461A-B-C. Students may not get credit for any IRLA 461 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 921, + "label": "GPLA 461A-B-C", + "title": "Low Intermediate Bahasa Indonesian for Professional Proficiency (4-4-4)" + }, + { + "dept": "MAE", + "description": "Steady-state and dynamic behavior of linear, lumped-parameter electrical circuits. Kirchoff\u2019s laws. RLC circuits. Node and mesh analysis. Operational amplifiers. Signal acquisition and conditioning. Electric motors. Design applications in engineering. ", + "edges_from": [ + 135, + 139, + 923, + 31 + ], + "edges_to": [ + 1944, + 3579, + 5902 + ], + "id": 922, + "label": "MAE 140", + "title": "Linear Circuits (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 169, + 922, + 2754, + 5966 + ], + "id": 923, + "label": "MATH 21D", + "title": "" + }, + { + "dept": "MAE", + "description": "and Control of Aerospace Vehicles (4)", + "edges_from": [], + "edges_to": [ + 5312, + 2230 + ], + "id": 924, + "label": "MAE 142", + "title": "Dynamics" + }, + { + "dept": "SE", + "description": "in Continuous Structural Elements (4)", + "edges_from": [], + "edges_to": [], + "id": 925, + "label": "SE 236", + "title": "Wave Propagation" + }, + { + "dept": "VIS", + "description": "A studio course for serious art students at the advanced level. Stress will be placed on individual creative problems. Specific orientation of this course will vary with the instructor. Topics may include film, video, photography, painting, performance, etc. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 926, + "label": "VIS 108", + "title": "Advanced Projects in Art (4)" + }, + { + "dept": "VIS", + "description": "Individual or group projects over one or two quarters. Specific project organized by the student(s) will be realized during this course with instructor acting as a close adviser/critic. Concept papers/scripts must be completed by the instructor prior to enrollment. Two production-course limitation. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 927, + "label": "VIS 109", + "title": "Advanced Projects in Media (4)" + }, + { + "dept": "FILM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 928, + "label": "FILM 87", + "title": "Film Studies Freshman Seminar (1)" + }, + { + "dept": "ECE", + "description": "Introduction to basic concepts, source coding theorems, capacity, noisy-channel coding theorem. (Recommended prerequisites: ECE 154A-B-C.) ", + "edges_from": [], + "edges_to": [ + 3084 + ], + "id": 929, + "label": "ECE 255A", + "title": "Information Theory (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 930, + "label": "Linguistics/Heritage Languages (LIHL) 137W", + "title": "Advanced Persian for Persian Speakers (4)" + }, + { + "dept": "VIS", + "description": "This course is about the expansion of contemporary visual arts practice into a field of environmental, architectural, and urban sites. It foregrounds public engagement and political inquiry, explores new forms of research and community-based knowledge production, and develops strategies for visualizing the dynamics of contemporary urban life. ", + "edges_from": [], + "edges_to": [ + 4975, + 4087 + ], + "id": 931, + "label": "VIS 100", + "title": "Introduction to Public Culture (4)" + }, + { + "dept": "VIS", + "description": "This course examines expanded meanings of the urban and the ecological into new conceptual zones for artistic practice and research, introducing urbanization as complex and transformative processes of interrelated cultural, socioeconomic, political, and environmental conditions, whose material and informational flows are generative of new interpretations of ecology. ", + "edges_from": [ + 732, + 253 + ], + "edges_to": [ + 3905, + 4975 + ], + "id": 932, + "label": "VIS 101", + "title": "Introduction to Urban Ecologies (4)" + }, + { + "dept": "VIS", + "description": "Introduction to urban inequality across the Tijuana\u2013San Diego region, and the border flows that make the marginalized neighborhoods within this geography of conflict into sites of socioeconomic and cultural productivity, laboratories to rethink the gap between wealth and poverty. ", + "edges_from": [], + "edges_to": [], + "id": 933, + "label": "VIS 102", + "title": "Cross-Border Urbanizations (4)" + }, + { + "dept": "HDP", + "description": "Foundations of Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 934, + "label": "HDP 133", + "title": "Sociocultural" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 935, + "label": "Linguistics/Heritage Languages (LIHL) 137F", + "title": "Advanced Persian for Persian Speakers (4)" + }, + { + "dept": "ANTH", + "description": "A forum to present work by faculty, students, and guests. Course will be offered quarterly. ", + "edges_from": [ + 937 + ], + "edges_to": [], + "id": 936, + "label": "ANTH 230", + "title": "Department Colloquium (1)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 936 + ], + "id": 937, + "label": "ANGR 230", + "title": "" + }, + { + "dept": "MATH", + "description": "Applications of the residue theorem. Conformal", + "edges_from": [], + "edges_to": [], + "id": 938, + "label": "MATH 120B", + "title": "Applied Complex Analysis (4)" + }, + { + "dept": "MATH", + "description": "Complex numbers and functions. Analytic functions, harmonic functions,", + "edges_from": [], + "edges_to": [], + "id": 939, + "label": "MATH 120A", + "title": "Elements of Complex Analysis (4)" + }, + { + "dept": "COMM", + "description": "Specialized study of communication, politics, and society with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 940, + "label": "COMM 132", + "title": "Advanced Topics in Communication, Politics, and Society (4)" + }, + { + "dept": "HIUS", + "description": "149. African American History in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 941, + "label": "HIUS 139/ETHN", + "title": "" + }, + { + "dept": "LATI", + "description": "Readings and discussion of substantive issues and research in Latin American studies. Topics may include the study of a specific society or a particular issue in comparative cross-national perspective. Topics will vary from year to year. ", + "edges_from": [ + 705 + ], + "edges_to": [], + "id": 942, + "label": "LATI 180", + "title": "Special Topics in Latin American Studies (4)" + }, + { + "dept": "COMM", + "description": "Television is a contested site for negotiating the rationales of inclusion and exclusion associated with citizenship and national belonging. Historical and contemporary case studies within international comparative contexts consider regulation, civil rights, cultural difference, social movements, new technologies, and globalization. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 943, + "label": "COMM 133", + "title": "Television and Citizenship (4)" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in epistemology with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 944, + "label": "PHIL 206A", + "title": "Core Course in Epistemology (4)" + }, + { + "dept": "CLRE", + "description": "Students participate in a series of seminars on professional development topics that will focus on skills and knowledge to enhance the ability of clinical researchers to be successful. Seminar topics may include research management, team building and collaboration, leadership skills, career development in the clinical research field, negotiation skills, research project management, and research budgeting/financial management. ", + "edges_from": [], + "edges_to": [ + 1166 + ], + "id": 945, + "label": "CLRE 258", + "title": "Professional Development in Clinical Research (2)" + }, + { + "dept": "HIEA", + "description": "The Chinese classics reading group translates into English (as a way of understanding and discussing) the Chinese classics and philosophy. Some classical Chinese is required. We consider every aspect of each text from individual words to the historical context.", + "edges_from": [], + "edges_to": [], + "id": 946, + "label": "HIEA 292", + "title": "Chinese Classics Reading Group (4)" + }, + { + "dept": "VIS", + "description": "A survey of the conceptual uses and historical precedents for the use of computers in art and design. Preparation for further study in the computing in the arts area by providing an introduction to ideation strategies and critique-based evaluation, and an overview of theoretical issues related to the use of computers by artists and designers. Introduces the students to the program\u2019s computing and production facilities, and basic computer programming skills. Two production-course limitation. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [ + 1224, + 1889, + 2277, + 4975 + ], + "id": 947, + "label": "VIS 142", + "title": "Practices in Computing Arts (4)" + }, + { + "dept": "LTWR", + "description": "A continuation of LTWR 104A in which fiction writers complete the novella manuscripts they began during the previous quarter. Each student will produce a novella of at least fifty revised pages by the end of the quarter. We will continue to read and discuss published novellas with a particular emphasis on narrative strategy, structure, and revision. Two-quarter sequence; students must complete LTWR 104A and LTWR 104B in order to receive final grade in both courses. ", + "edges_from": [ + 949 + ], + "edges_to": [], + "id": 948, + "label": "LTWR 104B", + "title": "The Novella II (4)" + }, + { + "dept": "LTWR", + "description": "", + "edges_from": [ + 648 + ], + "edges_to": [ + 948 + ], + "id": 949, + "label": "LTWR 104A", + "title": "" + }, + { + "dept": "BENG", + "description": "Independent work by graduate students engaged in research and writing theses. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 950, + "label": "BENG 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "BENG", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 951, + "label": "BENG 298", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 953, + 2859 + ], + "edges_to": [ + 5664, + 1193, + 1552, + 1553, + 1942, + 1865, + 410, + 411 + ], + "id": 952, + "label": "CHEM 40B", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 220, + 911 + ], + "edges_to": [ + 3835, + 1193, + 3313, + 5859, + 952, + 410, + 411, + 4221, + 959 + ], + "id": 953, + "label": "CHEM 40A", + "title": "" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [], + "edges_to": [ + 2178, + 2180, + 2058, + 145, + 411, + 412, + 5664, + 1445, + 1192, + 2601, + 2732, + 2740, + 4149, + 5946, + 5950, + 4661, + 5952, + 2885, + 1353, + 2270, + 2530, + 4324, + 3944, + 2025, + 1906, + 1012, + 1013, + 1705, + 5951, + 1405 + ], + "id": 954, + "label": "BILD 1", + "title": "" + }, + { + "dept": "BIBC", + "description": "", + "edges_from": [], + "edges_to": [ + 411 + ], + "id": 955, + "label": "BIBC 103", + "title": "" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [], + "edges_to": [ + 411, + 5951 + ], + "id": 956, + "label": "BILD 4", + "title": "" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [], + "edges_to": [ + 411, + 5951 + ], + "id": 957, + "label": "BIMM 101", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 220, + 1318 + ], + "edges_to": [ + 1193, + 410, + 411, + 1428, + 1942 + ], + "id": 958, + "label": "BENG 120", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 953, + 2859 + ], + "edges_to": [ + 5664, + 1553, + 411, + 1865 + ], + "id": 959, + "label": "CHEM 40BH", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 3313, + 411, + 4221, + 5859, + 3835 + ], + "id": 960, + "label": "CHEM 40AH", + "title": "" + }, + { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with TDGE 131.) This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America\u2019s First Peoples in Hollywood cinema. Carving spaces of \u201cvisual sovereignty\u201d (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for TDGE 131 and ETHN 163F.", + "edges_from": [], + "edges_to": [], + "id": 961, + "label": "ETHN 163F", + "title": "Playing Indian: Native American and First Nations Cinema (4)" + }, + { + "dept": "TDGR", + "description": "A seminar focusing on all aspects of the design profession, including current projects of graduate design students. The work may also include portfolio presentations, research presentations, and guest lecturers. ", + "edges_from": [], + "edges_to": [], + "id": 962, + "label": "TDGR 271", + "title": "Design Seminar (2)" + }, + { + "dept": "TDGR", + "description": "A survey/history of artistic and cultural stylistic change as embodied in clothing from early Western civilization to the contemporary period. ", + "edges_from": [], + "edges_to": [], + "id": 963, + "label": "TDGR 273", + "title": "Fashioning the Body (4)" + }, + { + "dept": "TDGR", + "description": "This course explores advanced problems in scenic design through development and critique of creative class projects and production works-in-progress. ", + "edges_from": [], + "edges_to": [], + "id": 964, + "label": "TDGR 274", + "title": "Advanced Scenic Design (4)" + }, + { + "dept": "TDGR", + "description": "Creative projects and topics in lighting design to develop the student\u2019s techniques and professional practices. Work to include studies in design research, concepts, psychophysical considerations, collaboration, professional procedures and systems, paperwork, and organization. Various scales of production projects will be addressed by the student for presentation and critique, and may be theoretical or productions in the departmental calendar. ", + "edges_from": [], + "edges_to": [], + "id": 965, + "label": "TDGR 275", + "title": "Advanced Lighting Design (4)" + }, + { + "dept": "TDGR", + "description": "Projects in costume design, emphasizing script analysis, research, conceptualization, and visual expression. Studio work includes costume rendering in various media for specific plays. ", + "edges_from": [], + "edges_to": [], + "id": 966, + "label": "TDGR 276", + "title": "Advanced Costume Design (4)" + }, + { + "dept": "TDGR", + "description": "A course designed to expose the theatre design student to a variety of specialized topics, including millinery, pattern drafting and draping, scenic painting, model making, figure drawing, drafting, fitting, rendering. Topics will vary from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 967, + "label": "TDGR 278", + "title": "Special Topics in Theatre Design (1\u20136)" + }, + { + "dept": "TDGR", + "description": "This course covers the artistic, aesthetic, and practical aspects of the designers\u2019 work as they develop and execute the design toward a fully realized production. ", + "edges_from": [], + "edges_to": [], + "id": 968, + "label": "TDGR 279", + "title": "Design Practicum (4)" + }, + { + "dept": "ANSC", + "description": "Legal systems are central in (re)organizing social institutions, international arrangements, (in)equalities, and are an arena where linguistic practices predominate and define outcomes. With an anthropological approach to language, examine languages of the law, legal conceptions of language, and most importantly, the nature and structure of talk in a range of legal institutions and activities. Students will engage in direct anthropological fieldwork in local contexts involving the legal bureaucracy. ", + "edges_from": [], + "edges_to": [], + "id": 969, + "label": "ANSC 131", + "title": "Language, Law, and Social Justice (4)" + }, + { + "dept": "MATS", + "description": "Classification of phase transformations: displacive and reconstructive transformations: classical and nonclassical theories of nucleation: Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories: interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics, and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ", + "edges_from": [ + 388 + ], + "edges_to": [], + "id": 970, + "label": "MATS 201C", + "title": "Phase Transformations (4)" + }, + { + "dept": "ANSC", + "description": "Course examines major institutions and culture patterns of traditional China, especially as studied through ethnographic sources. Topics include familism, religion, agriculture, social mobility, and personality. ", + "edges_from": [], + "edges_to": [], + "id": 971, + "label": "ANSC 136", + "title": "Traditional Chinese Society (4)" + }, + { + "dept": "MGT", + "description": "Hands-on experience in venture investing. Direct involvement in all stages of managing Rady Venture Fund, including applicant sourcing, initial analysis, due diligence, investment negotiation, portfolio monitoring. IP grade awarded at end of quarter. Final grade assigned upon completion of MGT 496B. Students may not earn credit for both MGT 496A and MGT 289A. S/U grades only. ", + "edges_from": [], + "edges_to": [ + 4758 + ], + "id": 972, + "label": "MGT 496A", + "title": "Venture Capital Management I (2)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 177.) This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries. Fulfills the race, ethnicity, and migration and global/transnational field requirements for the history major. Students may not receive credit for both ETHN 163I and HIUS 177. May be coscheduled with HIUS 277 and ETHN 273.", + "edges_from": [], + "edges_to": [], + "id": 973, + "label": "ETHN 163I", + "title": "Asian American Histography (4)" + }, + { + "dept": "HISC", + "description": "In 1784, Kant asked, \u201cWhat is Enlightenment?\u201d In this course we will pursue this question, which has remained hotly debated ever since. ", + "edges_from": [], + "edges_to": [], + "id": 974, + "label": "HISC 177", + "title": "Science and the Enlightenment (4)" + }, + { + "dept": "HISC", + "description": "This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.", + "edges_from": [], + "edges_to": [], + "id": 975, + "label": "HISC 176", + "title": "History of Medicine in East and Southeast Asia (4)" + }, + { + "dept": "SIOG", + "description": "Radioactive and stable isotope studies in geology and geochemistry, including geochronology, isotopes as tracers of magmatic processes, cosmic-ray produced isotopes as tracers in the crust and weathering cycle, isotopic evolution of the crust and mantle. Coscheduled with SIO 144. Course requires student presentation. Renumbered from SIO 252A. Students may not receive credit for both SIOG 252A and SIO 252A. ", + "edges_from": [], + "edges_to": [], + "id": 976, + "label": "SIOG 252A", + "title": "Introduction to Isotope Geochemistry (4)" + }, + { + "dept": "LATI", + "description": "Students collect survey and qualitative data in Mexican migrants\u2019 communities of origin and destination, serve as team leaders, organize field data collection within specific subpopulations, and prepare a detailed outline of a proposed journal article to be based on field data. ", + "edges_from": [ + 978 + ], + "edges_to": [ + 5943 + ], + "id": 977, + "label": "LATI 222B", + "title": "Field Research Methods for Migration Studies: Practicum (12)" + }, + { + "dept": "LATI", + "description": "", + "edges_from": [], + "edges_to": [ + 977 + ], + "id": 978, + "label": "LATI 222A", + "title": "" + }, + { + "dept": "TDDE", + "description": "Project in Design/Theatre Production (4)", + "edges_from": [], + "edges_to": [], + "id": 979, + "label": "TDDE 190", + "title": "Major" + }, + { + "dept": "MATH", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 980, + "label": "MATH 168A", + "title": "Topics in Applied Mathematics\u2014Computer Science" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in probability and statistics. Topics include: Markov processes, martingale theory, stochastic processes, stationary and Gaussian processes, ergodic theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 982 + ], + "edges_to": [], + "id": 981, + "label": "MATH 289B", + "title": "Further Topics in Probability and Statistics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 981 + ], + "id": 982, + "label": "MATH 289A", + "title": "" + }, + { + "dept": "MATH", + "description": "An introduction to various quantitative methods and statistical techniques for analyzing data\u2014in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. Recommended preparation: familiarity with linear algebra and mathematical statistics highly recommended. ", + "edges_from": [], + "edges_to": [], + "id": 983, + "label": "MATH 289C", + "title": "Exploratory Data Analysis and Inference (4)" + }, + { + "dept": "ERC", + "description": "This weekly seminar focuses on the skills required to write an upper-division research paper and prepare for a winter quarter internship through Academic Internship Program. The structure of the seminar is informal, giving students the opportunity to participate in interactive discussions based on required reading and faculty speakers. ", + "edges_from": [], + "edges_to": [], + "id": 984, + "label": "ERC 188", + "title": "Transfer Seminar: The Research University (1)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods B\u2014Qualitative Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 985, + "label": "EDS 288B", + "title": "Advanced" + }, + { + "dept": "MAE", + "description": "Mechanics Applied to Medicine/Biology (4)", + "edges_from": [], + "edges_to": [ + 2226, + 3930, + 3365 + ], + "id": 986, + "label": "MAE 209", + "title": "Continuum" + }, + { + "dept": "MAE", + "description": "Course builds on the MAE fluids sequence, offering more advanced concepts in conduction, convection, radiation, and heat exchanger design. This course covers numerical methods in conduction, boiling, condensation and evaporation analysis, natural and turbulent convection, spectral and directional radiative transfer, heatpipes, thermal design of spacecraft, heat exchanger analysis and design. ", + "edges_from": [ + 988 + ], + "edges_to": [], + "id": 987, + "label": "MAE 101D", + "title": "Intermediate Heat Transfer (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2049, + 2818, + 3579, + 2052, + 3309, + 3310, + 2031, + 2032, + 2545, + 4243, + 5812, + 987 + ], + "id": 988, + "label": "MAE 101C", + "title": "" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an advanced-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 412A-B-C. Students may not get credit for any IRLA 412 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 989, + "label": "GPLA 412A-B-C", + "title": "Advanced Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "LTCS", + "description": "Topics in Screening Race/Ethnicity, Gender and Sexuality (4)", + "edges_from": [], + "edges_to": [], + "id": 990, + "label": "LTCS 172", + "title": "Special" + }, + { + "dept": "LTCS", + "description": "This course focuses on the critical study of representations of violence, such as war, genocide, sexual violence, and crime, across a range of media, including literature, film, photography, and other forms of visual culture. Repeatable for credit when readings and focus vary.", + "edges_from": [], + "edges_to": [], + "id": 991, + "label": "LTCS 173", + "title": "Topics in Violence and Visual Culture (4)" + }, + { + "dept": "LTCS", + "description": "The course will focus on visual practices and discourses in their intersection and overlap, from traditional media, print, and photography to film, video, TV, computers, medical scanners, and the Internet.", + "edges_from": [], + "edges_to": [], + "id": 992, + "label": "LTCS 170", + "title": "Visual Culture (4)" + }, + { + "dept": "DSC", + "description": "Builds on topics covered in DSC 20 and provides practical experience in composing larger computational systems through several significant programming projects using Java. Students will study advanced programming techniques including encapsulation, abstract data types, interfaces, algorithms and complexity, and data structures such as stacks, queues, priority queues, heaps, linked lists, binary trees, binary search trees, and hash tables. ", + "edges_from": [ + 748 + ], + "edges_to": [ + 5390 + ], + "id": 993, + "label": "DSC 30", + "title": "Data Structures and Algorithms for Data Science (4)" + }, + { + "dept": "LTGK", + "description": "Study of ancient Greek, including grammar and reading.", + "edges_from": [], + "edges_to": [ + 995, + 996 + ], + "id": 994, + "label": "LTGK 1", + "title": "Beginning Greek (4)" + }, + { + "dept": "LTGK", + "description": "Continuation of study of ancient Greek, including grammar and reading. ", + "edges_from": [ + 994 + ], + "edges_to": [ + 996 + ], + "id": 995, + "label": "LTGK 2", + "title": "Intermediate Greek (I) (4)" + }, + { + "dept": "LTGK", + "description": "Continuation of study of ancient Greek, including grammar and reading of texts. ", + "edges_from": [ + 994, + 995 + ], + "edges_to": [], + "id": 996, + "label": "LTGK 3", + "title": "Intermediate Greek (II) (4)" + }, + { + "dept": "LIGN", + "description": "(Same as CSE 256.) Introduction to modern statistical approaches to natural language processing: part-of-speech tagging, word-sense disambiguation and parsing, using Markov models, hidden Markov models, and probabilistic context-free grammars. Recommended prerequisites: one of LIGN 165, LIGN 245, CSE 151, CSE 250A, CSE 254. ", + "edges_from": [], + "edges_to": [], + "id": 997, + "label": "LIGN 256", + "title": "Statistical Natural Language Processing (4)" + }, + { + "dept": "LIGN", + "description": "The study of human language evolution from a variety of perspectives: anatomical, comparative, computational, cultural, experimental, generational, genetic, gestural, historical, neural, phonetic/phonological, pragmatic, semantic, semiotic, syntactic, etc. May be taken for credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 998, + "label": "LIGN 255", + "title": "Topics in Language Evolution (4)" + }, + { + "dept": "LTGM", + "description": "This course offers an overview of issues in contemporary and historical German cultures. How has national identity been constructed in the past? What does it mean to be a German in the new Europe? Materials include fiction, historical documents, films, and the Internet.", + "edges_from": [], + "edges_to": [], + "id": 999, + "label": "LTGM 101", + "title": "German Studies II: National Identities (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 183.) A colloquium dealing with special topics in the history of people of African descent in the United States. Themes will vary from quarter to quarter. Requirements will vary for undergraduate, MA, and PhD students. Graduate students will be required to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 1000, + "label": "ETHN 159", + "title": "Topics in African American History (4)" + }, + { + "dept": "ETHN", + "description": "This course examines Native American intellectuals\u2019 work. It provides a broad historical perspective on the development of twentieth-century Native American political thinking and discusses the recurring issues, problems, and themes inherent to Indian-white relations, as seen from Indian perspectives.", + "edges_from": [], + "edges_to": [], + "id": 1001, + "label": "ETHN 158", + "title": "Native American Intellectuals in the Twentieth Century (4)" + }, + { + "dept": "HIUS", + "description": "New York City breathes history. Whether it is in the music,", + "edges_from": [], + "edges_to": [], + "id": 1002, + "label": "HIUS 123/USP 167", + "title": "History of New York City (4)" + }, + { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [], + "edges_to": [], + "id": 1003, + "label": "BGJC 207", + "title": "Journal Club in Neurobiology (1)" + }, + { + "dept": "MGT", + "description": "Defining markets for products and services, segmenting these markets, and targeting critical customers within segments. Strategies to position products and services within segments. The critical role of pricing as well as market research, product management, promotion, selling, and customer support. ", + "edges_from": [], + "edges_to": [ + 5578, + 5187, + 5028 + ], + "id": 1004, + "label": "MGT 103", + "title": "Product Marketing and Management (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 136.) This course traces the history of the institution of United States citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.", + "edges_from": [], + "edges_to": [], + "id": 1005, + "label": "ETHN 153", + "title": "Citizenship and Civil Rights in the Twentieth Century\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "In this course, students explore the relationship between race, class, and law as it applies to civil rights both in a historical and a contemporary context. Topics include racism and the law, history of the Fourteenth Amendment, equal protection, school desegregation, and affirmative action.", + "edges_from": [], + "edges_to": [], + "id": 1006, + "label": "ETHN 152", + "title": "Law and Civil Rights (4)" + }, + { + "dept": "ETHN", + "description": "This course will survey the political effects of immigration, ethnic mobilization, and community building in America, and the contemporary role of ethnicity in politics and intergroup relations.", + "edges_from": [], + "edges_to": [], + "id": 1007, + "label": "ETHN 151", + "title": "Ethnic Politics in America (4)" + }, + { + "dept": "GLBH", + "description": "Illustrates and explores ecologic settings and frameworks for study and understanding of global health and international health policy. Students acquire understanding of diverse determinants and trends of disease in various settings and interrelationships between socio-cultural-economic development and health. ", + "edges_from": [], + "edges_to": [], + "id": 1008, + "label": "GLBH 181", + "title": "Essentials of Global Health (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 149.) This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes.", + "edges_from": [], + "edges_to": [], + "id": 1009, + "label": "ETHN 157", + "title": "Madness and Urbanization\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "This course considers rationales for and responses to American military expansion as well as its social, environmental, and cultural consequences.\u00a0We will examine racialized, gendered, and sexualized aspects of militarized institutions and practices, including militarized colonialism, tourism, and sex work. ", + "edges_from": [], + "edges_to": [], + "id": 1010, + "label": "ETHN 155", + "title": "US Militarism\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 113.) This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history\u00a0of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.", + "edges_from": [], + "edges_to": [], + "id": 1011, + "label": "ETHN 154", + "title": "History of Mexican America (4)" + }, + { + "dept": "ESYS", + "description": "This course surveys biochemical and physiological processes governing the relationship between organisms and their environments, such as those involved in element cycling and cellular homeostasis. The course introduces biological perspectives on human activities ranging from antibiotic use to genetic engineering. ", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [], + "id": 1012, + "label": "ESYS 101", + "title": "Environmental Biology (4)" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [ + 954 + ], + "edges_to": [ + 5952, + 2178, + 1192, + 2601, + 2530, + 4141, + 1012, + 4661, + 2740, + 3130, + 2270 + ], + "id": 1013, + "label": "BILD 2", + "title": "" + }, + { + "dept": "HIGR", + "description": "Research seminar in ancient history. Selected topics in ancient Greek and Roman history. This is the second course in the IP sequence, which will be devoted to the presentation, discussion, and evaluation of the work in progress.", + "edges_from": [], + "edges_to": [], + "id": 1014, + "label": "HIGR 260B", + "title": "Research Seminar in Ancient History (4)" + }, + { + "dept": "HIGR", + "description": "Research Seminar in Middle Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 1015, + "label": "HIGR 275A", + "title": "" + }, + { + "dept": "VIS", + "description": "An in-depth exploration of the camera and image utilizing photographic digital technology. Emphasis is placed on developing fundamental control of the processes and materials through lectures, field, and lab experience. Basic discussion of image making included. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [ + 568, + 567 + ], + "id": 1016, + "label": "VIS 60", + "title": "Introduction to Digital Photography (4)" + }, + { + "dept": "ANBI", + "description": "Attitudes toward other individuals (and species) are often shaped by their apparent \u201cintelligence.\u201d This course discusses the significance of brain size/complexity, I.Q. tests, communication in marine mammals and apes, complex behavioral tactics, and the evolution of intelligence. ", + "edges_from": [], + "edges_to": [], + "id": 1017, + "label": "ANBI 159", + "title": "Biological and Cultural Perspectives on Intelligence (4)" + }, + { + "dept": "NANO", + "description": "Newton\u2019s laws of motion. Kinematic and kinetic \u200bdescription of particle motion. Angular momentum. Energy and work principles. Motion of the system of interconnected particles.\u00a0Mass center. Degrees of freedom. Equations of planar motion of rigid bodies. Energy methods. Lagrange\u2019s equations of motion. Introduction to vibration. Free and forced vibrations of a single degree of freedom system. Undamped and damped vibrations. Application to NanoEngineering problems.\u00a0", + "edges_from": [ + 1019, + 135 + ], + "edges_to": [], + "id": 1018, + "label": "NANO 141B", + "title": "Engineering Mechanics II: Analysis of Motion (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 29, + 134 + ], + "edges_to": [ + 1018 + ], + "id": 1019, + "label": "NANO 141A", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1069 + ], + "edges_to": [ + 1312, + 1313, + 1314, + 323, + 1068, + 1315, + 1309 + ], + "id": 1020, + "label": "ECON 220B", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1021, + "label": "FMPH 199", + "title": "Independent Study (2\u20134)" + }, + { + "dept": "CHEM", + "description": "Introduction to biochemistry for nonscience majors. Topics include carbohydrates, lipids, amino acids and proteins, with an introduction to metabolic pathways in human physiology.", + "edges_from": [], + "edges_to": [], + "id": 1022, + "label": "CHEM 13", + "title": "Chemistry of Life (4)" + }, + { + "dept": "FMPH", + "description": "Selected topics in the field of public health. Must be taken for a letter grade to be applied to the public health major. May be taken for credit up to three times. ", + "edges_from": [ + 1024 + ], + "edges_to": [], + "id": 1023, + "label": "FMPH 191", + "title": "Topics in Public Health (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [ + 1025, + 1026, + 1028, + 1029, + 4654, + 3603, + 5108, + 5989, + 1023 + ], + "id": 1024, + "label": "FMPH 40", + "title": "" + }, + { + "dept": "FMPH", + "description": "This is the first of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will integrate the skills and knowledge gained throughout the BSPH program and learn critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1024, + 1026, + 1027, + 1028, + 1029 + ], + "edges_to": [ + 5108 + ], + "id": 1025, + "label": "FMPH 193", + "title": "Public Capstone I (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 1024 + ], + "edges_to": [ + 1025, + 3603, + 5108, + 5989 + ], + "id": 1026, + "label": "FMPH 110", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [ + 1025, + 4826, + 3603, + 5108, + 5989 + ], + "id": 1027, + "label": "FMPH 50", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 1024, + 2333, + 862, + 1389 + ], + "edges_to": [ + 1025, + 3603, + 5108, + 5989 + ], + "id": 1028, + "label": "FMPH 102", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 1024, + 2333, + 862, + 1389 + ], + "edges_to": [ + 1025, + 4826, + 3603, + 5108, + 5989 + ], + "id": 1029, + "label": "FMPH 101", + "title": "" + }, + { + "dept": "FMPH", + "description": "Introduction to teaching in a public health course. As an undergraduate instructional apprentice, students will attend the lectures of the course, weekly meetings with students of the course, and weekly meetings with the course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. Renumbered from FPMU 195. FMPH 195 and/or FPMU 195 may be taken for credit for a combined total of two times. ", + "edges_from": [], + "edges_to": [], + "id": 1030, + "label": "FMPH 195", + "title": "Instruction in Public Health (4)" + }, + { + "dept": "GPPS", + "description": "Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 256. Students may not receive credit for GPPS 256 and IRGN 256.\t\tMay be coscheduled with GPPS 456.", + "edges_from": [], + "edges_to": [], + "id": 1031, + "label": "GPPS 256", + "title": "Program Design and Evaluation (4)" + }, + { + "dept": "BIOM", + "description": "Laboratory rotations provide first-year students with experience in the various experimental methods used in biomedical sciences. ", + "edges_from": [], + "edges_to": [], + "id": 1032, + "label": "BIOM 202", + "title": "Biomedical Sciences Research Rotation (3)" + }, + { + "dept": "BIOM", + "description": "Overview of new systems biology \u201comics\u201d approaches to lipid metabolism and cell signaling including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Recommended: one quarter of undergraduate biochemistry. ", + "edges_from": [], + "edges_to": [], + "id": 1033, + "label": "BIOM 209", + "title": "Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)" + }, + { + "dept": "CHEM", + "description": "Introduction to molecular bonding and structure and chemical reactions, including organic molecules and synthetic polymers. Intended for nonscience majors. Cannot be taken for credit after any organic chemistry course. ", + "edges_from": [ + 1035 + ], + "edges_to": [], + "id": 1034, + "label": "CHEM 12", + "title": "Molecules and Reactions (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 1034 + ], + "id": 1035, + "label": "CHEM 11", + "title": "" + }, + { + "dept": "MATH", + "description": "Point set topology, including separation axioms, compactness, connectedness. Algebraic topology, including the fundamental group, covering spaces, homology and cohomology. Homotopy or applications to manifolds as time permits. ", + "edges_from": [ + 384, + 386, + 387, + 6, + 1037, + 1038 + ], + "edges_to": [], + "id": 1036, + "label": "MATH 290A-B-C", + "title": "Topology (4-4-4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 6 + ], + "edges_to": [ + 1036, + 1038 + ], + "id": 1037, + "label": "MATH 100B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1037 + ], + "edges_to": [ + 1036 + ], + "id": 1038, + "label": "MATH 100C", + "title": "" + }, + { + "dept": "Linguistics/Spanish", + "description": "This course concentrates on those language", + "edges_from": [], + "edges_to": [], + "id": 1039, + "label": "Linguistics/Spanish (LISP) 5A, 5B, 5C, 5D", + "title": "Fundamentals of Spanish (5)" + }, + { + "dept": "CSE", + "description": "Training in teaching methods in the field of computer science. This course examines theoretical and practical communication and teaching techniques particularly appropriate to computer science. ", + "edges_from": [], + "edges_to": [], + "id": 1040, + "label": "CSE 599", + "title": "Teaching Methods in Computer Science (2)" + }, + { + "dept": "TDGR", + "description": "This course is designed to enhance dance practitioners\u2019 understanding of pedagogical processes. Candidates will develop strategies to generate course material that functions in multiple contexts. These contexts may include university teaching, professional workshops, master classes, and artist residencies. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1041, + "label": "TDGR 216A", + "title": "Pedagogical Practices (4)" + }, + { + "dept": "HDP", + "description": "Students will take part in a weekly research seminar. In addition, they will plan and carry out a three-quarter research project under the guidance of a faculty member. The project will form the basis for their senior honors thesis. ", + "edges_from": [], + "edges_to": [], + "id": 1042, + "label": "HDP 194A-B-C", + "title": "Honors Thesis (4-4-4)" + }, + { + "dept": "LTCS", + "description": "The course will explore work in cultural studies, feminist studies, and queer theory of scientific practices altering social relations, cultural identities, and conceptions of \u201cnature.\u201d Issues may include the AIDS pandemic, genetic research, electronic communities, reproductive technologies, and other topics. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1043, + "label": "LTCS 256", + "title": "Cultural Studies of Technoscience (4)" + }, + { + "dept": "ECON", + "description": "Financial structure of the US economy. Bank behavior. Monetary control. ", + "edges_from": [ + 129, + 130, + 505 + ], + "edges_to": [], + "id": 1044, + "label": "ECON 111", + "title": "Monetary Economics (4)" + }, + { + "dept": "ECON", + "description": "Mathematical concepts and techniques used in advanced economic analysis; applications to selected aspects of economic theory. ", + "edges_from": [ + 384, + 797, + 1046 + ], + "edges_to": [], + "id": 1045, + "label": "ECON 113", + "title": "Mathematical Economics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5896, + 1045 + ], + "id": 1046, + "label": "MATH 142A", + "title": "" + }, + { + "dept": "POLI", + "description": "An historical and topical survey of major issues in Russian-American relations, such as security arrangements in the post-Soviet space, the war on terrorism, arms control and nonproliferation, and international energy.", + "edges_from": [], + "edges_to": [], + "id": 1047, + "label": "POLI 147B", + "title": "Russian-American Relations (4)" + }, + { + "dept": "LTWL", + "description": "This course examines histories and theories of cinema and Islam. It offers an overview on intersections between film and religious experience in various Muslim cultures, and how such experiences are ultimately grounded in shifting historical and social settings.", + "edges_from": [], + "edges_to": [], + "id": 1048, + "label": "LTWL 134", + "title": "Cinema and Islam (4)" + }, + { + "dept": "ECON", + "description": "Impact of immigration on the US economy. Empirical evidence on the labor market and fiscal impacts of immigration. Consequences of US immigration policies on the economy. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [], + "id": 1049, + "label": "ECON 114", + "title": "Economics of Immigration (4)" + }, + { + "dept": "ECON", + "description": "Models of the economic growth of developed economies. ", + "edges_from": [ + 547 + ], + "edges_to": [], + "id": 1050, + "label": "ECON 117", + "title": "Economic Growth (4)" + }, + { + "dept": "ECON", + "description": "Introduction to the economics of less developed countries, covering their international trade, human resources, urbanization, agriculture, income distribution, political economy, and environment. ", + "edges_from": [ + 542, + 543 + ], + "edges_to": [], + "id": 1051, + "label": "ECON 116", + "title": "Economic Development (4)" + }, + { + "dept": "ECON", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 1052, + "label": "ECON 119", + "title": "Law and Economics: Contracts and Corporations" + }, + { + "dept": "ECON", + "description": "Economics: Torts, Property, and Crime (4)", + "edges_from": [], + "edges_to": [], + "id": 1053, + "label": "ECON 118", + "title": "Law and" + }, + { + "dept": "ERC", + "description": "A seminar intended for exposing undergraduate students, especially freshmen and sophomores, to exciting research programs conducted by the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 1054, + "label": "ERC 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "ERC", + "description": "Individual project on a topic chosen by the student, done under direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 1055, + "label": "ERC 92", + "title": "Honors Project (2)" + }, + { + "dept": "LTTH", + "description": "An introduction to modernist aesthetics with a focus on art and literary movements. Particular attention to be placed on relationships between modern literary movements (realism, imagism, surrealism) and their counterparts in visual arts, music, dance, and theatre, and the ways in which literary movements are components of or responses to issues of political and social identity. ", + "edges_from": [], + "edges_to": [], + "id": 1056, + "label": "LTTH 255", + "title": "Modern Art Movements and Aesthetics (4)" + }, + { + "dept": "TWS", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 1057, + "label": "TWS 198", + "title": "Directed Group Studies (2 or 4)" + }, + { + "dept": "LTTH", + "description": "An overview of issues in modern critical theory as they pertain to writers. Will focus on issues of textuality, cultural forms, and aesthetics as they impact the process and meaning of writing. ", + "edges_from": [], + "edges_to": [], + "id": 1058, + "label": "LTTH 250", + "title": "Writing and Theory (4)" + }, + { + "dept": "PHYS", + "description": "First quarter of a three-quarter introductory physics course, geared toward life-science majors. Equilibrium and motion of particles in one and two dimensions in the framework of Newtonian mechanics, force laws (including gravity), energy, momentum, rotational motion, conservation laws, and fluids. Examples will be drawn from astronomy, biology, sports, and current events. ", + "edges_from": [ + 129, + 130, + 1060, + 133, + 1061 + ], + "edges_to": [ + 1060, + 1388, + 5037, + 1390 + ], + "id": 1059, + "label": "PHYS 1A", + "title": "Mechanics (3)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 129, + 130, + 1059, + 133, + 1061 + ], + "edges_to": [ + 1059, + 1388, + 1390 + ], + "id": 1060, + "label": "PHYS 1AL", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 129, + 130 + ], + "edges_to": [ + 1059, + 1060, + 550, + 3624, + 1388, + 1389, + 1390, + 215, + 1401, + 220 + ], + "id": 1061, + "label": "MATH 10B", + "title": "" + }, + { + "dept": "USP", + "description": "Using the San Diego region as a case study, students will be introduced to the process of collecting, evaluating, and presenting urban and regional data using a variety of methods, including aggregate data analysis, historical research, and ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 1062, + "label": "USP 193", + "title": "San Diego Community Research (4)" + }, + { + "dept": "COGS", + "description": "How damaged and normal brains influence the way humans solve problems, remember or forget, pay attention to things; how they affect our emotions, and the way we use language in daily life.", + "edges_from": [], + "edges_to": [], + "id": 1063, + "label": "COGS 11", + "title": "Minds and Brains (4)" + }, + { + "dept": "PSYC", + "description": "Selected topics in the field of psychology. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1064, + "label": "PSYC 93", + "title": "Topics in Psychology (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Spanish language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 441A-B-C. Students may not get credit for any IRLA 441 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 1065, + "label": "GPLA 441A-B-C", + "title": "Intermediate Spanish Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "COGS", + "description": "This course introduces students to multiple methods to investigate cognition and behavior in natural settings. Students will learn about ethnography, videography (video data collection, coding, and analysis), surveys design and conducting interviews, and how to move from observations to modeling.", + "edges_from": [], + "edges_to": [], + "id": 1066, + "label": "COGS 13", + "title": "Field Methods: Studying Cognition in the Wild (4)" + }, + { + "dept": "ECON", + "description": "Governments serve functions key to economic development, including correcting market failures, raising taxes, delivering services, and protecting property rights. Correspondingly, research in development economics is increasingly focused on how institutions affect development. Generally, the aim of the course is to provide PhD students a complete introduction to the growing literature in this area. Students may not receive credit for Econ 237 and POLI 231E. ", + "edges_from": [], + "edges_to": [], + "id": 1067, + "label": "ECON 237", + "title": "Political Economy: Microeconomic Perspectives (4)" + }, + { + "dept": "ECON", + "description": "Exploration of existing theoretical literature evaluating the efficiency and distribution effects of income and commodity taxes. Characterization of an \u201coptimal\u201d tax structure, and examination of problems faced in tax administration. Scrutiny of behavioral responses to existing tax structures. ", + "edges_from": [ + 320, + 323, + 1069, + 1020, + 318, + 319 + ], + "edges_to": [], + "id": 1068, + "label": "ECON 230", + "title": "Public Economics: Taxation (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 1312, + 1313, + 1314, + 1315, + 1068, + 1020, + 1309 + ], + "id": 1069, + "label": "ECON 220A", + "title": "" + }, + { + "dept": "ECON", + "description": "Public Goods and Externalities (4)", + "edges_from": [], + "edges_to": [], + "id": 1070, + "label": "ECON 231", + "title": "Public Economics:" + }, + { + "dept": "ECON", + "description": "Redistribution and Social Insurance (4)", + "edges_from": [], + "edges_to": [], + "id": 1071, + "label": "ECON 232", + "title": "Public Economics:" + }, + { + "dept": "COGS", + "description": "Introduction to the organization and functions of the nervous system. Topics include molecular, cellular, developmental, systems, and behavioral neurobiology. Specifically, structure and function of neurons, peripheral and central nervous systems, sensory, motor, and control systems, learning and memory mechanisms. (Students may not receive credit for both Biology 12 and Cognitive Science 17. This course fulfills general-education requirements for Marshall and Roosevelt Colleges as well as Warren by petition.)", + "edges_from": [], + "edges_to": [ + 5907, + 1571 + ], + "id": 1072, + "label": "COGS 17", + "title": "Neurobiology of Cognition (4)" + }, + { + "dept": "TMC", + "description": "This course is designed to study, discuss, and analyze the history and current role of public service in the United States. Students will be introduced to the different roles held by the three sectors of the American economic structure (government, business, and nonprofit/public service) with opportunity to provide a critical analysis of those roles within American society.", + "edges_from": [], + "edges_to": [], + "id": 1073, + "label": "TMC 15", + "title": "Introduction to Public Service in America (4)" + }, + { + "dept": "COGS", + "description": "This class will teach fundamental Python programming skills and practices, including the \u201cZen of Python.\u201d Students will focus on scientific computing and learn to write functions and tests, as well as how to debug code using the Jupyter Notebook programming environment. Students with limited computing experience may take COGS 3 for preparation.", + "edges_from": [], + "edges_to": [ + 3293, + 2334, + 2335 + ], + "id": 1074, + "label": "COGS 18", + "title": "Introduction to Python (4)" + }, + { + "dept": "MATH", + "description": "Differential manifolds, Sard theorem, tensor bundles, Lie derivatives, DeRham theorem, connections, geodesics, Riemannian metrics, curvature tensor and sectional curvature, completeness, characteristic classes. Differential manifolds immersed in Euclidean space. ", + "edges_from": [], + "edges_to": [], + "id": 1075, + "label": "MATH 250A-B-C", + "title": "Differential Geometry (4-4-4)" + }, + { + "dept": "MUIR", + "description": "A course of independent work on a research or creative project to satisfy a Muir graduation requirement. (Only Muir students who have had Muir Special Project proposals approved may enroll in this course.) Students wishing to enroll must submit a written request with a description of the project. (Muir students must submit the Muir Special Project 199 form to the major advisor and to the Office of the Provost by the seventh week of the quarter prior to the quarter in which the 199 is to be undertaken. For information on other requirements, consult the provost\u2019s office.) ", + "edges_from": [], + "edges_to": [], + "id": 1076, + "label": "MUIR 199", + "title": "Muir Special Project (4\u201316)" + }, + { + "dept": "MATH", + "description": "Various topics in real analysis. ", + "edges_from": [], + "edges_to": [], + "id": 1077, + "label": "MATH 248", + "title": "Seminar in Real Analysis (1)" + }, + { + "dept": "LTSP", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral Exam. ", + "edges_from": [], + "edges_to": [], + "id": 1078, + "label": "LTSP 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "CHEM", + "description": "First quarter of a three-quarter honors sequence intended for well-prepared science and engineering majors. Topics include quantum mechanics, molecular orbital theory, and bonding. An understanding of nomenclature, stoichiometry, and other fundamentals is assumed. Students completing 6AH may not subsequently take 6A for credit. Recommended: completion of a high school physics course strongly recommended. Concurrent enrollment in MATH 20A or higher.", + "edges_from": [], + "edges_to": [ + 1128, + 447, + 220, + 1847 + ], + "id": 1079, + "label": "CHEM 6AH", + "title": "Honors General Chemistry I (4)" + }, + { + "dept": "LTSP", + "description": "Tutorial: individual guided reading in areas of Spanish literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1080, + "label": "LTSP 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1081, + "label": "LTSP 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MATH", + "description": "In recent years, topics have included Fourier analysis in Euclidean spaces, groups, and symmetric spaces. May be repeated for credit with consent of adviser as topics vary. ", + "edges_from": [ + 1083 + ], + "edges_to": [], + "id": 1082, + "label": "MATH 242", + "title": "Topics in Fourier Analysis (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1082, + 5794 + ], + "id": 1083, + "label": "MATH 240C", + "title": "" + }, + { + "dept": "MATH", + "description": "Various topics in functional analysis. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 1084, + "label": "MATH 243", + "title": "Seminar in Functional Analysis (1)" + }, + { + "dept": "CHEM", + "description": "Reading and laboratory study of special topics for first-year graduate students under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1085, + "label": "CHEM 298", + "title": "Special Study in Chemistry (1\u20134)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1086, + "label": "CHEM 299", + "title": "Research in Chemistry (1\u201312)" + }, + { + "dept": "SOCI", + "description": "(Same as PS 194, COGN 194, ERTH 194, HIST 193, USP 194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "edges_from": [ + 1088, + 1087 + ], + "edges_to": [ + 1087 + ], + "id": 1087, + "label": "SOCI 194", + "title": "Research Seminar in Washington, DC (4)" + }, + { + "dept": "SOCE", + "description": "", + "edges_from": [], + "edges_to": [ + 1087 + ], + "id": 1088, + "label": "SOCE 194", + "title": "" + }, + { + "dept": "MMW", + "description": "MMW 11 explores human origins, the development of social organization, the strategies early peoples and societies used to negotiate their physical and social environments, and the rise of the ancient world\u2019s classical traditions (to ca. 100 BCE). Open to Eleanor Roosevelt College students only. Students may not receive credit for both MMW 1 and MMW 11. Must be taken for a letter grade to meet the requirement. (F)", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1089, + "label": "MMW 11", + "title": "Prehistory and Ancient Foundations (4)" + }, + { + "dept": "SOCI", + "description": "Group study of specific topics under the direction of an interested faculty member. Enrollment will be limited to a small group of students who have developed their topic and secured appropriate approval from the departmental committee on independent and group studies. These studies are to be conducted only in areas not covered in regular sociology courses. ", + "edges_from": [], + "edges_to": [], + "id": 1090, + "label": "SOCI 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LIGN", + "description": "What universal principles determine how words combine into phrases and sentences? Introduction to research methods and results. Emphasis on how argumentation in problem-solving can be used in the development of theories of language. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 1091, + "label": "LIGN 121", + "title": "Syntax I (4)" + }, + { + "dept": "CHEM", + "description": "Formal seminars or informal sessions on topics of current interest in chemical physics as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1092, + "label": "CHEM 296", + "title": "Chemical Physics Seminar (2)" + }, + { + "dept": "CHEM", + "description": "Experimental methods and techniques involved in chemical research are introduced. Hands-on experience provides training for careers in industrial research and for future thesis research. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1093, + "label": "CHEM 297", + "title": "Experimental Methods in Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Formal seminars or informal puzzle sessions on topics of current interest in organic chemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1094, + "label": "CHEM 294", + "title": "Organic Chemistry Seminar (2)" + }, + { + "dept": "CHEM", + "description": "Formal seminars or informal puzzle sessions on topics of current interest in biochemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1095, + "label": "CHEM 295", + "title": "Biochemistry Seminar (2)" + }, + { + "dept": "PSYC", + "description": "This course provides basic information about the nature of reading. Topics include word recognition, eye movements, inner speech, sentence processing, memory for text, learning to read, methods for teaching reading, reading disabilities and dyslexia, and speed-reading. Recommended preparation: completion of PSYC 105 or PSYC 145. ", + "edges_from": [], + "edges_to": [], + "id": 1096, + "label": "PSYC 128", + "title": "Psychology of Reading (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how we perceive the world. Topics include classic studies in perception, discussion of the view that perception is \u201clogical,\u201d and new insights into the neural mechanisms underlying perception. ", + "edges_from": [], + "edges_to": [], + "id": 1097, + "label": "PSYC 129", + "title": "Logic of Perception (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the history, purpose, and recent changes to the Diagnostic and Statistical Manual of Mental Disorders along with appropriate evidence-based interventions. Other topics include psychiatric emergencies, crisis management, and ethics. Recommended preparation: Completion of PSYC 100. ", + "edges_from": [], + "edges_to": [ + 1100 + ], + "id": 1098, + "label": "PSYC 124", + "title": "Clinical Assessment and Treatment (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a fundamental understanding of brain-behavior relationships as applied to the practice of clinical neuropsychology. Major topics include functional neuroanatomy, principles of neuropsychological assessment and diagnosis, and the neuropsychological presentation of common neurologic and psychiatric conditions. ", + "edges_from": [], + "edges_to": [], + "id": 1099, + "label": "PSYC 125", + "title": "Clinical Neuropsychology (4)" + }, + { + "dept": "PSYC", + "description": "This course provides experience with clients in a community mental health care setting, under professional supervision. Seminar-based instruction also provides a framework for understanding theoretical, practical, and ethical issues related to client care. ", + "edges_from": [ + 1098, + 1101 + ], + "edges_to": [], + "id": 1100, + "label": "PSYC 126", + "title": "Practicum in Community Mental Health Care (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1100 + ], + "id": 1101, + "label": "PSYC 100", + "title": "" + }, + { + "dept": "MATH", + "description": "Various topics in computational and applied mathematics. ", + "edges_from": [], + "edges_to": [], + "id": 1102, + "label": "MATH 278A", + "title": "Seminar in Computational and Applied Mathematics (1)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 625 + ], + "edges_to": [ + 625 + ], + "id": 1103, + "label": "PSYC 121", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course focuses on approaches to the study of behavior and its underlying fundamental units of analysis in human and nonhuman animals. Students may not receive credit for both PSYC 122 and PSYC 103. ", + "edges_from": [], + "edges_to": [], + "id": 1104, + "label": "PSYC 122", + "title": "Mechanisms of Animal Behavior (4)" + }, + { + "dept": "TDAC", + "description": "A beginning course in the fundamentals of acting: establishing a working vocabulary and acquiring the basic skills of the acting process. Through exercises, compositions, and improvisations, the student actor explores the imagination as the actor\u2019s primary resource, and the basic approach to text through action. ", + "edges_from": [], + "edges_to": [ + 3720, + 2618, + 3547 + ], + "id": 1105, + "label": "TDAC 1", + "title": "Introduction to Acting (4)" + }, + { + "dept": "EDS", + "description": "Leadership Research Practicum (2)", + "edges_from": [], + "edges_to": [], + "id": 1106, + "label": "EDS 293A", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Leadership Research Practicum (2)", + "edges_from": [], + "edges_to": [], + "id": 1107, + "label": "EDS 293B", + "title": "Advanced" + }, + { + "dept": "PHYS", + "description": "Thesis Research for Undergraduates (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 1108, + "label": "PHYS 199H", + "title": "Honors" + }, + { + "dept": "SOCI", + "description": "History, politics, social organization, and ideology of the American news media. This course,165A, surveys the development of the news media as an institution, from earliest newspapers to modern mass news media. ", + "edges_from": [ + 1109, + 1110 + ], + "edges_to": [ + 1109 + ], + "id": 1109, + "label": "SOCI 165A", + "title": "American News Media (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 1109 + ], + "id": 1110, + "label": "SOCC 165A", + "title": "" + }, + { + "dept": "SE", + "description": "Review of probability theory and random processes. Fundamentals of structural reliability theory. First- and second-order, and simulation methods of reliability analysis. Structural component and system reliability. Reliability sensitivity measures. Bayesian reliability analysis methods. Bases for probabilistic design codes. Use of computer resources. Recommended preparation: basic knowledge of probability theory (e.g., SE 125). ", + "edges_from": [], + "edges_to": [], + "id": 1111, + "label": "SE 224", + "title": "Structural Reliability and Risk Analysis (4)" + }, + { + "dept": "ECE", + "description": "Design and control of DC-DC converters, PWM rectifiers, single-phase and three-phase inverters, power management, and power electronics applications in renewable energy systems, motion control, and lighting. ", + "edges_from": [ + 1113 + ], + "edges_to": [], + "id": 1112, + "label": "ECE 125B", + "title": "Introduction to Power Electronics II (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 2087 + ], + "edges_to": [ + 1112 + ], + "id": 1113, + "label": "ECE 125A", + "title": "" + }, + { + "dept": "SE", + "description": "Influence of soil conditions on ground motion characteristics; dynamic behavior of soils, computation of ground response using wave propagation analysis and finite element analysis; evaluation and mitigation of soil liquefaction; soil-structure interaction; lateral pressures on earth retaining structures; analysis of slope stability. Recommended preparation: SE 181 or equivalent. ", + "edges_from": [], + "edges_to": [], + "id": 1114, + "label": "SE 222", + "title": "Geotechnical Earthquake Engineering (4)" + }, + { + "dept": "SE", + "description": "Modal analysis. Nonlinear response spectra. Performance based seismic design. Nonlinear time history analyses. Capacity design. Structural walls. Coupled walls. Rocking walls. Base isolation. Recommended preparation: grade of B+ or higher in SE 211 and SE 201B.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1115, + "label": "SE 223", + "title": "Advanced Seismic Design of Structures (4)" + }, + { + "dept": "SE", + "description": "Concepts, advantages, and limitations of seismic isolation techniques; fundamentals of dynamic response under seismic excitation; spectral analysis; damping; energy approach; application to buildings and structures. ", + "edges_from": [], + "edges_to": [], + "id": 1116, + "label": "SE 220", + "title": "Seismic Isolation and Energy Dissipation (4)" + }, + { + "dept": "HINE", + "description": "A close reading of select poetic passages from the Hebrew Bible/Old Testament.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 1117, + "label": "HINE 112B", + "title": "Great Poems from the Hebrew Bible (4)" + }, + { + "dept": "COGS", + "description": "This course is taken to focus the students\u2019 development of a thesis topic and research proposal. Students prepare an outline of thesis proposal and make an oral public presentation of the proposed topic prior to the end of the third year. S/U only.", + "edges_from": [], + "edges_to": [], + "id": 1118, + "label": "COGS 205", + "title": "Introduction to Thesis Research (4)" + }, + { + "dept": "COGS", + "description": "This course surveys the development of symbolic and connectionist models of cognition. Selected readings from the late 1940s to the present are covered. Topics include: Turing machines, information theory, computational complexity, search, learning, symbolic artificial intelligence, and neural networks.", + "edges_from": [], + "edges_to": [], + "id": 1119, + "label": "COGS 202", + "title": "Cognitive Science Foundations: Computational Modeling of Cognition (4)" + }, + { + "dept": "COGS", + "description": "Surveys a variety of theoretical and methodological approaches to the study of human cognition. Topics include language structure, language processing, concepts and categories, knowledge representation, analogy and metaphor, reasoning, planning and action, problem solving, learning and expertise, and emotion.", + "edges_from": [], + "edges_to": [], + "id": 1120, + "label": "COGS 203", + "title": "Cognitive Science Foundations: Theories and Methods in the Study of Cognitive Phenomena (4)" + }, + { + "dept": "COGS", + "description": "This seminar emphasizes the conceptual basis of cognitive science, including representation, processing mechanisms, language, and the role of interaction among individuals, culture, and the environment. Current developments in each field are considered as they relate to issues in cognitive science. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 1121, + "label": "COGS 200", + "title": "Cognitive Science Seminar (4)" + }, + { + "dept": "COGS", + "description": "Examination of the neurophysiological and neuroanatomical basis for perception, cognition, and learning. Lectures will focus on the dynamics of neural activity in cortical and subcortical structures as they relate to sensory processing, motor control, attention, arousal state, and memory.", + "edges_from": [], + "edges_to": [], + "id": 1122, + "label": "COGS 201", + "title": "Systems Neuroscience (4)" + }, + { + "dept": "ANTH", + "description": "Seminar to explore student research interests and methodologies needed to complete Honors Thesis in ANTH 196B. Students will be admitted to the Honors Program by invitation of the department in the spring of their junior year. Completion of this course with a grade of at least B+ is a prerequisite to ANTH 196B. ", + "edges_from": [], + "edges_to": [ + 5251, + 2580 + ], + "id": 1123, + "label": "ANTH 196A", + "title": "Honors Studies in Anthropology (4)" + }, + { + "dept": "LTWR", + "description": "In this workshop, students will practice skills of narration, characterization, and style with particular attention to the demands of nonrealistic genres, especially the challenge of suspending disbelief in fictional environments that defy conventional logic. Readings and lectures will accompany writing exercises. May be taken for credit three times. ", + "edges_from": [ + 273 + ], + "edges_to": [], + "id": 1124, + "label": "LTWR 106", + "title": "Science Fiction, Fantasy, and Irrealism Workshop (4)" + }, + { + "dept": "LTWR", + "description": "This workshop includes instruction on using software and writing basic computer code to allow students to create innovative web-based works that experiment with poetic form, draw on rich media resources, and provide more accessibility and interactivity for public audiences. May be taken up to three times for credit. ", + "edges_from": [ + 261 + ], + "edges_to": [], + "id": 1125, + "label": "LTWR 103", + "title": "Digital Poetics Workshop (4)" + }, + { + "dept": "LTWR", + "description": "A workshop for students with interest in writing fiction in Spanish. Includes discussion of student work, together with analysis and discussion of representative examples of short fiction from the present and previous ages. A working knowledge of Spanish is required. May be taken for credit three times. ", + "edges_from": [ + 273, + 82, + 83, + 84 + ], + "edges_to": [], + "id": 1126, + "label": "LTWR 101", + "title": "Writing Fiction in Spanish (4)" + }, + { + "dept": "MAE", + "description": "Elasticity and inelasticity, dislocations and plasticity of crystals, creep, and strengthening mechanisms. Mechanical behavior of ceramics, composites, and polymers. Fracture: mechanical and microstructural. Fatigue. Laboratory demonstrations of selected topics. ", + "edges_from": [ + 1128, + 1129, + 653, + 654 + ], + "edges_to": [ + 3579 + ], + "id": 1127, + "label": "MAE 160", + "title": "Mechanical Behavior of Materials (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 1079, + 1318, + 29, + 38, + 134 + ], + "edges_to": [ + 1127 + ], + "id": 1128, + "label": "MAE 20", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 653, + 654, + 135 + ], + "edges_to": [ + 3970, + 2659, + 1127, + 399, + 1785, + 1308 + ], + "id": 1129, + "label": "MAE 131A", + "title": "" + }, + { + "dept": "ECON", + "description": "Introduces the firm\u2019s capital budgeting decision, including methods for evaluation and ranking of investment projects, the firm\u2019s choice of capital structure, dividend policy decisions, corporate taxes, mergers and acquisitions. ", + "edges_from": [ + 1131, + 1132, + 1133 + ], + "edges_to": [ + 3784, + 3786 + ], + "id": 1130, + "label": "ECON 173B", + "title": "Corporate Finance (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 3408, + 4168, + 1130, + 1546 + ], + "id": 1131, + "label": "ECON 173A", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 2104, + 3633, + 1130, + 686 + ], + "id": 1132, + "label": "ECON 4", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2104, + 1130, + 686 + ], + "id": 1133, + "label": "MGT 4", + "title": "" + }, + { + "dept": "LTEN", + "description": "Selected topics in the study of literary, dramatic, and other Elizabethan cultural texts. Emphasis will be upon articulations among a range of discourses, practices, and institutions. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1134, + "label": "LTEN 222", + "title": "Elizabethan Studies (4)" + }, + { + "dept": "HIUS", + "description": "This course examines the legal and cultural constructions of \u201cfreedom\u201d in American history, with a focus on its inherent limitations and exclusions. We will examine how marginalized groups have engaged in political struggles in pursuit of more expansive notions of freedom.", + "edges_from": [], + "edges_to": [], + "id": 1135, + "label": "HIUS 265", + "title": "The Problem with Freedom (4)" + }, + { + "dept": "NEU", + "description": "For incoming doctoral students in neurobiology, computational neurosciences, and neurosciences. During the first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ", + "edges_from": [], + "edges_to": [], + "id": 1136, + "label": "NEU 210", + "title": "Neurobiology Boot Camp (4)" + }, + { + "dept": "ANTH", + "description": "Examines physical and mental health sequelae of internal and transnational movement of individuals and populations due to warfare, political violence, natural disaster, religious persecution, poverty and struggle for economic survival, and social suffering of communities abandoned by migrants and refugees. May be coscheduled with ANSC 144. ", + "edges_from": [], + "edges_to": [ + 3150 + ], + "id": 1137, + "label": "ANTH 238", + "title": "Immigrant and Refugee Health (4)" + }, + { + "dept": "ANTH", + "description": "Recent decades have witnessed the dramatic rise of religious movements worldwide, posing challenges to secular models of modernity. We will study the sociocultural and political implications of this phenomenon comparatively, focusing especially on new forms of Islamic and Christian practice. ", + "edges_from": [], + "edges_to": [], + "id": 1138, + "label": "ANTH 239", + "title": "Contemporary Religious Movements (4)" + }, + { + "dept": "HLAW", + "description": "Assesses the major models for provision and financing of health care in the U.S. and the world today. Students gain an understanding of the health policy process and how health care is financed as well as learn to evaluate health policies according to range of criteria for cost, quality, and equity. Advantages and disadvantages of the various ways of organizing and financing health care are considered. Actions taken by employers, insurers, consumers, and government and the effects on physicians and provider organizations are analyzed. ", + "edges_from": [], + "edges_to": [], + "id": 1139, + "label": "HLAW 215", + "title": "Comparative Study of Health-care Systems (3)" + }, + { + "dept": "ANTH", + "description": "Examination of the actual operation of culture with attention to the importance of cultural products and social structures. Course goal is to develop skill in understanding the influence, direct and indirect, of culture and behavior. ", + "edges_from": [ + 1141 + ], + "edges_to": [], + "id": 1140, + "label": "ANTH 234", + "title": "Dynamics of Culture (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1140 + ], + "id": 1141, + "label": "ANGR 234", + "title": "" + }, + { + "dept": "ANTH", + "description": "This graduate seminar will attend to the theory and praxis of social justice. Social justice is primarily concerned with the ways in which wealth and privileges are distributed in society. This course explores the ideologies and logics of wealth distribution at various points in history and in different places across the globe. The ways in which we understand basic human needs and the distribution of entitlements are also critical components of theories of social justice. ", + "edges_from": [], + "edges_to": [], + "id": 1142, + "label": "ANTH 235", + "title": "Theories of Social Justice (4)" + }, + { + "dept": "ANTH", + "description": "Indexing a social identity is an achievement; it takes work. But what kind? This course examines Peircean semiotics as a theory of labor, putting it into conversation with traditional Marxist and practice-based conceptualizations of labor. ", + "edges_from": [], + "edges_to": [], + "id": 1143, + "label": "ANTH 232", + "title": "Labor and Semiotics (4)" + }, + { + "dept": "ANTH", + "description": "This seminar takes up Marx\u2019s varied critiques of capitalist forms, categories, doctrines, practices, and tendencies and brings them to bear on contemporary conditions. In particular, the seminar examines what may be understood as Marx\u2019s ontology, epistemology, and ethico-political stance. ", + "edges_from": [], + "edges_to": [], + "id": 1144, + "label": "ANTH 233", + "title": "Critical Studies of Capitalism (4)" + }, + { + "dept": "HLAW", + "description": "Under the guidance of faculty, this survey course features a speaker series of experts covering a range of the most current topics in health policy and law. ", + "edges_from": [], + "edges_to": [], + "id": 1145, + "label": "HLAW 213", + "title": "Current Topics in Health Policy and Law (3)" + }, + { + "dept": "HLAW", + "description": "Given at the discretion of the faculty, topics of interest in health law will be presented for in-depth review and discussion by visiting or resident faculty members. The module will cover seminar topics related to health-care issues. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 1146, + "label": "HLAW 212", + "title": "Special Topics in Health Law (2)" + }, + { + "dept": "MAE", + "description": "Computer-aided analysis and design. Design methodology, tolerance analysis, Monte Carlo analysis, kinematics and computer-aided design of linkages, numerical calculations of moments of inertia, design of cams and cam dynamics; finite element analysis, design using Pro-E, Mechanica Motion and Mechanica Structures. ", + "edges_from": [ + 653, + 654, + 598, + 1148, + 1149, + 1150 + ], + "edges_to": [ + 5312, + 2230 + ], + "id": 1147, + "label": "MAE 150", + "title": "Computer-Aided Design (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 141, + 139, + 140, + 221, + 5919 + ], + "edges_to": [ + 2545, + 1147 + ], + "id": 1148, + "label": "MAE 107", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 1147 + ], + "id": 1149, + "label": "SE 121", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1147, + 3894 + ], + "id": 1150, + "label": "MAE 3", + "title": "" + }, + { + "dept": "MAE", + "description": "This course will teach teams of students how to develop concepts and business plans in the design of new and innovative products. Emphasis will be placed on identifying user needs, concept generation, and prototype fabrication. ", + "edges_from": [], + "edges_to": [], + "id": 1151, + "label": "MAE 154", + "title": "Product Design and Entrepreneurship (4)" + }, + { + "dept": "ETHN", + "description": "Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)", + "edges_from": [], + "edges_to": [], + "id": 1152, + "label": "ETHN 135A", + "title": "Early" + }, + { + "dept": "VIS", + "description": "Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1153, + "label": "VIS 130", + "title": "Special Projects in Visual Arts (4)" + }, + { + "dept": "VIS", + "description": "Through discussions and readings, the class will examine the issues and aesthetics of installation art making. Using media familiar to them, students will produce several projects. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1154, + "label": "VIS 132", + "title": "Installation Production and Studio (4)" + }, + { + "dept": "VIS", + "description": "This course introduces students to studio-based project methodologies, including qualitative and quantitative design research, data visualization, production and exhibition methodologies, and complex collaborative project management. ", + "edges_from": [ + 732, + 253 + ], + "edges_to": [ + 4975, + 2399 + ], + "id": 1155, + "label": "VIS 135", + "title": "Design Research Methods (4)" + }, + { + "dept": "HDP", + "description": "Examination of children\u2019s acquisition of language from babbling to the formation of sentences. Topics covered include: prelinguistic gestures, relationships between babbling and sound systems, speech perception, linking words with objects, rule overgeneralization, bilingualism, nature vs. nurture, individual differences, cultural differences. ", + "edges_from": [ + 657, + 871 + ], + "edges_to": [], + "id": 1156, + "label": "HDP 120", + "title": "Language Development (4)" + }, + { + "dept": "HDP", + "description": "(Same as COGS 110.) This course examines changes in thinking and perceiving the physical and social world from birth through childhood. Evidence of significant changes in encoding information, forming mental representations, and solving problems is culled from psychological research, cross-cultural studies, and cognitive science. ", + "edges_from": [ + 238, + 871 + ], + "edges_to": [], + "id": 1157, + "label": "HDP 121", + "title": "The Developing Mind (4)" + }, + { + "dept": "HDP", + "description": "This course covers topics in social development research. Content will address general principles such as the mutual influences of caregivers and children upon each other and the interplay of person and context. Discussion areas will include attachment, parenting styles, gender differences, aggression, social cognition, social components of achievement motivation, and development of conscience. ", + "edges_from": [ + 871 + ], + "edges_to": [], + "id": 1158, + "label": "HDP 122", + "title": "Social Development (4)" + }, + { + "dept": "MAE", + "description": "and Failure Analysis of Engineering Components (4)", + "edges_from": [], + "edges_to": [], + "id": 1159, + "label": "MAE 165", + "title": "Fatigue" + }, + { + "dept": "BENG", + "description": "Implementation of design project in molecular bioengineering. ", + "edges_from": [ + 1161, + 68 + ], + "edges_to": [ + 68 + ], + "id": 1160, + "label": "BENG 139B", + "title": "Design Implementation in Molecular Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 66 + ], + "edges_to": [ + 1160 + ], + "id": 1161, + "label": "BENG 139A", + "title": "" + }, + { + "dept": "LIGN", + "description": "A rigorous analysis of symbolic systems and their interpretations. Students will learn to encode and decode information using progressively more sophisticated methods; topics covered include ancient and modern phonetic writing systems, hieroglyphics, computer languages, and ciphers (secret codes). ", + "edges_from": [], + "edges_to": [], + "id": 1162, + "label": "LIGN 17", + "title": "Making and Breaking Codes (4)" + }, + { + "dept": "MDE", + "description": "This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues, and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 1163, + "label": "MDE 266", + "title": "Biomaterials for Medical Device Design (4)" + }, + { + "dept": "CLRE", + "description": "Students conduct a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will include their course work in CLRE 295A-B and be presented as a final report that includes a complete description of the project including the study manual, study results, statistical analysis, and a discussion of the findings. Students will make an oral presentation of their ISP to their three-member ISP committee comprised of faculty and industry advisers. The ISP is an independent, creative, and scholarly activity, and students will be graded on their written and oral presentations. ", + "edges_from": [ + 1165 + ], + "edges_to": [], + "id": 1164, + "label": "CLRE 297", + "title": "Independent Study Project\u00a0(2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 1612, + 1164 + ], + "id": 1165, + "label": "CLRE 295A", + "title": "" + }, + { + "dept": "CLRE", + "description": "The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty and may also include industry advisers when appropriate. ", + "edges_from": [ + 945, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191 + ], + "edges_to": [], + "id": 1166, + "label": "CLRE 296", + "title": "Independent Study Project (6)" + }, + { + "dept": "CLRE", + "description": "Faculty member directs student\u2019s study in development of mentorship and career plan as related to student\u2019s research specialization. Readings, assignments and formalized mentoring sessions designed to integrate and apply student\u2019s learning of clinical research theory and practice to individualized career development plan. ", + "edges_from": [], + "edges_to": [], + "id": 1167, + "label": "CLRE 299", + "title": "Mentorship and Career Planning for Clinical Research Professionals (2)" + }, + { + "dept": "VIS", + "description": "What is the place of visual art in modern Western culture? This course will address: visual art and radical politics in Courbet and the generation of 1848; Impressionism, Paris, and the cult of la vie moderne; Gauguin, Van Gogh, and the quest for \u201cvisionary\u201d painting; Cezanne and the reformulation of painting in terms of pure sensation; the divergent paths of Matisse and Picasso in 1906. The twentieth century follows the emergence of different interpretations of modernity in the USSR, Germany, and France. ", + "edges_from": [], + "edges_to": [], + "id": 1168, + "label": "VIS 125C", + "title": "Modern Art in the West, 1850\u20131950 (4)" + }, + { + "dept": "POLI", + "description": "Has the law helped end or contributed to racism in the United States? This course will explore the law of Slavery, Segregation, and Immigration, and study Equal Protection, Affirmative Action, and Criminal Justice (including hate crimes and First Amendment implications).", + "edges_from": [], + "edges_to": [], + "id": 1169, + "label": "POLI 104N", + "title": "Race and Law (4)" + }, + { + "dept": "NANO", + "description": "Experimental investigation of mechanical behavior of engineering materials. Laboratory exercises emphasize the fundamental relationship between microstructure and mechanical properties, and the evolution of the microstructure as a consequence of rate process. ", + "edges_from": [ + 1171 + ], + "edges_to": [], + "id": 1170, + "label": "NANO 174L", + "title": "Mechanical Behavior Laboratory (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 4207 + ], + "edges_to": [ + 1170 + ], + "id": 1171, + "label": "NANO 174", + "title": "" + }, + { + "dept": "COGR", + "description": "This course focuses on the political economy of communication and the social organization of key media institutions. There will be both descriptive and analytical concerns. The descriptive concern will emphasize the complex structure of communication industries and organizations, both historically and cross-nationally. The analytic focus will examine causal relationships between the economic and political structure of societies, the character of their media institutions, public opinion, and public attitudes and behaviors expressed in patterns of voting, consuming, and public participation. The nature of evidence and theoretical basis for such relationships will be critically explored. ", + "edges_from": [], + "edges_to": [], + "id": 1172, + "label": "COGR 200A", + "title": "Introduction to the Study of Communication as Social Force (4)" + }, + { + "dept": "COGR", + "description": "This course focuses on questions of interpretation and meaning. This course will examine how people use texts to interpret the world and coordinate their activities in social groups. Students will study both theories of interpretation in the conventional sense and theories about the act of interpreting. ", + "edges_from": [], + "edges_to": [], + "id": 1173, + "label": "COGR 200B", + "title": "Introduction to Study of Communication: Communication and Culture (4)" + }, + { + "dept": "POLI", + "description": "An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ", + "edges_from": [ + 286 + ], + "edges_to": [], + "id": 1174, + "label": "POLI 28", + "title": "Ethics and Society II (4)" + }, + { + "dept": "TDGR", + "description": "220B. Process II: Classical Text II (4)", + "edges_from": [], + "edges_to": [], + "id": 1175, + "label": "TDGR", + "title": "" + }, + { + "dept": "POLI", + "description": "The course explores the modes of political thinking found in arts, especially in drama and literature. It may include ends and means, political leadership, and political economy. Students may not receive credit for both POLI 112CS and POLI 112C. ", + "edges_from": [], + "edges_to": [], + "id": 1176, + "label": "POLI 112C", + "title": "Political Theory and Artistic Vision (4)" + }, + { + "dept": "POLI", + "description": "A reading and research seminar on the origins, development, and politics of nationalism and the nation-state. ", + "edges_from": [], + "edges_to": [], + "id": 1177, + "label": "POLI 225B", + "title": "The Nation-State (4)" + }, + { + "dept": "POLI", + "description": "An introduction to theories of political behavior developed with the assumptions and methods of economics. General emphasis will be upon theories linking individual behavior to institutional patterns. Specific topics to be covered will include collective action, leadership, voting, and bargaining.", + "edges_from": [], + "edges_to": [], + "id": 1178, + "label": "POLI 112A", + "title": "Economic Theories of Political Behavior (4)" + }, + { + "dept": "TDPW", + "description": "Beginning workshop in the fundamentals of playwriting. Students discuss material from a workbook that elucidates the basic principles of playwriting, do exercises designed to help them put those principles into creative practice, and are guided through the various stages of the playwriting process that culminate with in-class readings of the short plays they have completed. ", + "edges_from": [], + "edges_to": [ + 4834, + 4836 + ], + "id": 1179, + "label": "TDPW 1", + "title": "Introduction to Playwriting (4)" + }, + { + "dept": "CSE", + "description": "Introduction to computer architecture. Computer system design. Processor design. Control design. Memory systems. ", + "edges_from": [ + 1184, + 1181, + 1182, + 1183 + ], + "edges_to": [ + 1184, + 4475 + ], + "id": 1180, + "label": "CSE 141", + "title": "Introduction to Computer Architecture (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1184, + 1569, + 5224, + 1180, + 1182, + 3135 + ], + "id": 1181, + "label": "CSE 140", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 9, + 3, + 1183, + 1181, + 7 + ], + "edges_to": [ + 1184, + 1180 + ], + "id": 1182, + "label": "CSE 140L", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1184, + 1180, + 5227, + 5630, + 5628, + 1182, + 3135 + ], + "id": 1183, + "label": "CSE 30", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 280, + 1180, + 1181, + 1182, + 1183 + ], + "edges_to": [ + 1180 + ], + "id": 1184, + "label": "CSE 141L", + "title": "" + }, + { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health-care systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems\u2014multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. Program or materials fees may apply. Students must apply at", + "edges_from": [], + "edges_to": [], + "id": 1185, + "label": "ANSC 105GS", + "title": "Global Health and Inequality (4)" + }, + { + "dept": "PHIL", + "description": "An introduction to elementary neuroanatomy and neurophysiology and an examination of theoretical issues in cognitive neuroscience and their implications for traditional philosophical conceptions of the relation between mind and body, perception, consciousness, understanding, emotion, and the self. ", + "edges_from": [], + "edges_to": [], + "id": 1186, + "label": "PHIL 151", + "title": "Philosophy of Neuroscience (4)" + }, + { + "dept": "TDGR", + "description": "for the Actor (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 1187, + "label": "TDGR 211B", + "title": "Speech" + }, + { + "dept": "HIEA", + "description": "This course will examine selected topics in modern Korean history through both primary sources (in translation) and secondary sources. Topics will vary year to year.", + "edges_from": [], + "edges_to": [], + "id": 1188, + "label": "HIEA 280", + "title": "Topics in Modern Korean History (4)" + }, + { + "dept": "POLI", + "description": "The course is an introduction to US environmental law at the federal level. It emphasizes issues and current controversies involving natural resources, such as wilderness, biodiversity, water, and climate change. ", + "edges_from": [], + "edges_to": [], + "id": 1189, + "label": "POLI 104E", + "title": "Environmental Law and Policy (4)" + }, + { + "dept": "BENG", + "description": "Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.). Form heterogeneous materials and components. ", + "edges_from": [], + "edges_to": [], + "id": 1190, + "label": "BENG 247B/ECE 247B/NANO 247B", + "title": "Bioelectronics (4)" + }, + { + "dept": "BIMM", + "description": "Basics of pharmacology such as drug absorption, distribution, metabolism, and elimination. Concepts in toxicology and pharmacognosy are used to survey the major drug categories. ", + "edges_from": [ + 1192, + 1193, + 410 + ], + "edges_to": [], + "id": 1191, + "label": "BIMM 118", + "title": "Pharmacology (4)" + }, + { + "dept": "BIPN", + "description": "", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [ + 2273, + 1283, + 1284, + 2275, + 1191, + 2024, + 2003, + 1759 + ], + "id": 1192, + "label": "BIPN 100", + "title": "" + }, + { + "dept": "BIBC", + "description": "", + "edges_from": [ + 1761, + 1193, + 2859, + 1865, + 952, + 953, + 958 + ], + "edges_to": [ + 2531, + 1445, + 1862, + 1191, + 1193, + 1706, + 5229, + 3357, + 1201, + 2762 + ], + "id": 1193, + "label": "BIBC 102", + "title": "" + }, + { + "dept": "MATH", + "description": "Students will develop skills in analytical thinking as they solve and present solutions to challenging mathematical problems in preparation for the William Lowell Putnam Mathematics Competition, a national undergraduate mathematics examination held each year. Students must sit for at least one half of the Putnam exam (given the first Saturday in December) to receive a passing grade. P/NP grades only. May be taken for credit up to four times.\u00a0", + "edges_from": [ + 129 + ], + "edges_to": [], + "id": 1194, + "label": "MATH 96", + "title": "Putnam Seminar (1)" + }, + { + "dept": "CHEM", + "description": "Hands-on laboratory course focuses on development of correct laboratory work habits and methodologies for the operation of modern analytical instrumentation. Gas chromatography, mass spectrometry, high performance liquid chromatography, ion chromatography, atomic absorption spectroscopy, fluorescence spectrometry, infrared spectrometry. Lecture focuses on fundamental theoretical principles, applications, and limitations of instrumentation used for qualitative and quantitative analysis. Program or materials fees may apply. Students may not receive credit for both CHEM 100B and 10. ", + "edges_from": [ + 33, + 30, + 441, + 442, + 443, + 446 + ], + "edges_to": [], + "id": 1195, + "label": "CHEM 100B", + "title": "Instrumental Chemistry Laboratory (5)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 220, + 911 + ], + "edges_to": [ + 441, + 3835, + 4221 + ], + "id": 1196, + "label": "CHEM 7LM", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 441 + ], + "id": 1197, + "label": "CHEM 6BL", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 441, + 3835, + 4221 + ], + "id": 1198, + "label": "CHEM 7L", + "title": "" + }, + { + "dept": "BIMM", + "description": "An introduction to eukaryotic virology, with emphasis on animal virus systems. Topics discussed include the molecular structure of viruses; the multiplication strategies of the major virus families; and viral latency, persistence, and oncology. ", + "edges_from": [ + 411 + ], + "edges_to": [], + "id": 1199, + "label": "BIMM 114", + "title": "Virology (4)" + }, + { + "dept": "BIMM", + "description": "This course explores the mechanisms by which gene activity is regulated in eukaryotes, with an emphasis on transcriptional regulation and chromatin. Topics will include chromatin structure, histone modifications, chromatin dynamics, transcription factors, transcriptional elongation, enhancers, CpG methylation, heterochromatin, and epigenetics. ", + "edges_from": [ + 411 + ], + "edges_to": [], + "id": 1200, + "label": "BIMM 112", + "title": "Regulation of Eukaryotic Gene Expressions (4)" + }, + { + "dept": "BIMM", + "description": "An examination of the molecular basis of human diseases. Course emphasizes inherited human disorders, and some important diseases caused by viruses. Focus on the application of genetic, biochemical, and molecular biological principles to an understanding of the diseases. ", + "edges_from": [ + 1193, + 410, + 411, + 412 + ], + "edges_to": [], + "id": 1201, + "label": "BIMM 110", + "title": "Molecular Basis of Human Disease (4)" + }, + { + "dept": "TDGR", + "description": "Boundaries: Design Improvisations (4)", + "edges_from": [], + "edges_to": [], + "id": 1202, + "label": "TDGR 262", + "title": "Crossing" + }, + { + "dept": "EDS", + "description": "This course provides a combination of seminar work and intensive field experience after the end of the spring quarter, during special summer session. Topics are introduced and analyzed in seminars and reinforced and expanded upon in field visits to historic and cultural sites in Cuba.\u00a0Additional fees may be required for travel expenses. ", + "edges_from": [ + 1204 + ], + "edges_to": [], + "id": 1203, + "label": "EDS 22S", + "title": "Education in Cuba\u2014Field Experience (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 1203 + ], + "id": 1204, + "label": "EDS 22", + "title": "" + }, + { + "dept": "TDGR", + "description": "The collaborative process of new-play development through readings, rehearsals, and public performance. MFA actors, designers, directors, playwrights, and stage managers enroll in one section and collaborate in creating the annual festival of full-length and one-act plays. ", + "edges_from": [], + "edges_to": [], + "id": 1205, + "label": "TDGR 260", + "title": "New-Play Festival (4)" + }, + { + "dept": "POLI", + "description": "This course will examine issues of civil liberties from both legal and political perspectives. Topics will include the First Amendment rights of speech, press, assembly, and religion; other \u201cfundamental\u201d rights, such as the right to privacy; and some issues in equal protection. Conflicts between governmental powers and individual rights will be examined.", + "edges_from": [], + "edges_to": [ + 4376 + ], + "id": 1206, + "label": "POLI 104B", + "title": "Civil Liberties\u2014Fundamental Rights (4)" + }, + { + "dept": "ANSC", + "description": "Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Freshmen and sophomores cannot enroll without consent of the instructor.", + "edges_from": [], + "edges_to": [], + "id": 1207, + "label": "ANSC 106", + "title": "Global Health: Indigenous Medicines in Latin America (4)" + }, + { + "dept": "TDGR", + "description": "Course will cover multiple applications of storyboarding as a tool of communication and expression; comic books, theatre, opera, film, TV, and commercial applications will be explored. Individual and team assignments will be given to develop the basic vocabulary and techniques. ", + "edges_from": [], + "edges_to": [], + "id": 1208, + "label": "TDGR 268", + "title": "Storyboarding (4)" + }, + { + "dept": "ANSC", + "description": "Course usually taught by visiting faculty in sociocultural anthropology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the anthropology department website. (Can be taken a total of four times as topics vary.) ", + "edges_from": [], + "edges_to": [], + "id": 1209, + "label": "ANSC 100", + "title": "Special Topics in Sociocultural Anthropology (4)" + }, + { + "dept": "ANSC", + "description": "Examines aging as process of human development, from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. ", + "edges_from": [], + "edges_to": [ + 4658 + ], + "id": 1210, + "label": "ANSC 101", + "title": "Aging: Culture and Health in Late Life Human Development (4)" + }, + { + "dept": "HISC", + "description": "Selected topics in the history of science. Course can be taken for credit up to three times as topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 1211, + "label": "HISC 144", + "title": "Topics in Science Studies (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major examines topics in contemporary studio art practice. The course is divided among research, discussion, projects, field trips to galleries, and visiting artists, and will encourage student work to engage in a dialogue with the issues raised. ", + "edges_from": [], + "edges_to": [], + "id": 1212, + "label": "VIS 110A", + "title": "Contemporary Issues and Practices (4)" + }, + { + "dept": "VIS", + "description": "This class is for the advanced visual arts major who is interested in taking the next steps toward becoming a professional visual artist. Students will become familiar with artist\u2019s residencies and graduate programs and what they offer. Of most importance will be developing the portfolio and the artist statement, as well as becoming more familiar with the contemporary art world. Two production-based limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1213, + "label": "VIS 110B", + "title": "Professional Practice in the Visual Arts (4)" + }, + { + "dept": "VIS", + "description": "This is a course for the advanced visual arts major that explores the use of the maquette, or sketch, in the process of developing, proposing, and planning visual works in various media for public projects, site specific works, grants, exhibition proposals, etc. The student will work on synthesizing ideas and representing them in alternate forms that deal with conception, fabrication, and presentation. ", + "edges_from": [], + "edges_to": [], + "id": 1214, + "label": "VIS 110C", + "title": "Proposals, Plans, Presentations (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major explores narrative in art practice. The course will explore the construction of real and fictive narratives across a variety of disciplines with an emphasis on illustration, the graphic novel, comics, and other forms of drawing practice. Studio work is complemented by in-depth study of the gaze, subjectivity, memory, and imagination. After guided assignments, emphasis is on self-directed projects. ", + "edges_from": [], + "edges_to": [], + "id": 1215, + "label": "VIS 110D", + "title": "Visual Narrative (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major takes painting, sculpture, and related media out of the studio/gallery and into the public sphere by examining the contemporary history of public artworks with traditional and nontraditional site-specific work, focusing on production, critical discussion, and writing. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1216, + "label": "VIS 110E", + "title": "Art in Public Spaces/Site-Specific Art (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major expands the idea contained in a singular work, or object, into the use of multiple objects, images, and media that redefines the idea as well as the space for which it is intended. Examination of historic, modern, and contemporary works will influence discussion of student project development and execution. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1217, + "label": "VIS 110F", + "title": "Installation: Cross-Disciplinary Projects (4)" + }, + { + "dept": "EDS", + "description": "Supervised research studies with individual topics selected according to students\u2019 special interests. Students will develop a research proposal and begin to gather and analyze data. ", + "edges_from": [], + "edges_to": [], + "id": 1218, + "label": "EDS 190", + "title": "Research Practicum (1\u20136)" + }, + { + "dept": "VIS", + "description": "This class is for the advanced visual arts major devoted to the study and practice of the multiple ways in which writing and other forms of visible language have been incorporated into contemporary and traditional artworks, including artists\u2019 books, collaging and poster art, literature and poetry, typographical experiments, and calligraphies. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1219, + "label": "VIS 110H", + "title": "Art and Text (4)" + }, + { + "dept": "VIS", + "description": "The dematerialization of the performer into media-based image\u2014video, film, slides, still photographs, and using the camera as a spy, a coconspirator, a friend, or a foe\u2014employing time lags, spatial derangement, image destruction, along with narrative, text, and history, to invent time-based pieces that break new ground while being firmly rooted in an understanding of the rich body of work done in this area over the last three decades. ", + "edges_from": [], + "edges_to": [], + "id": 1220, + "label": "VIS 110I", + "title": "Performing for the Camera (4)" + }, + { + "dept": "VIS", + "description": "This is a studio art course for the advanced visual arts major with a focus on the intersection of digital rendering and drawing, painting, sculpture, and performance. Structured as core lectures and labs, studio production, reading, and critical theory focused on contemporary art engaged with technology, as well as artists\u2019 responses to its demands. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1221, + "label": "VIS 110K", + "title": "Digital Studio (4)" + }, + { + "dept": "VIS", + "description": "Students will implement time- and process-based projects under direction of faculty. Projects such as software and hardware interfacing, computer mediated performance, software art, installation, interactive environments, data visualization and sonification will be produced as advanced study and portfolio project. Program or materials fees may apply. Two production-course limitation. ", + "edges_from": [ + 1224, + 1223 + ], + "edges_to": [ + 3422, + 1910 + ], + "id": 1222, + "label": "VIS 145B", + "title": "Time- and Process-Based Digital Media II (4)" + }, + { + "dept": "ICAM", + "description": "", + "edges_from": [], + "edges_to": [ + 1222 + ], + "id": 1223, + "label": "ICAM 102", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 947 + ], + "edges_to": [ + 1222, + 4975 + ], + "id": 1224, + "label": "VIS 145A", + "title": "" + }, + { + "dept": "VIS", + "description": "This is a course for the advanced studio major who is selected based on a proven record of engagement, productivity, and self-discipline as well as a clear trajectory of their work. The intent is to help refine and expand the student\u2019s studio practice toward a unified portfolio and artist\u2019s statement as well as develop experience in participation and organization of group and solo exhibitions. ", + "edges_from": [], + "edges_to": [ + 1226 + ], + "id": 1225, + "label": "VIS 110M", + "title": "Studio Honors I (4)" + }, + { + "dept": "VIS", + "description": "The second advanced studio course in the Honors Program in Studio, the successful completion of which will lead toward an honors degree in the studio major. The course builds on the critical and technical issues raised in Studio Honors I. ", + "edges_from": [ + 1225 + ], + "edges_to": [], + "id": 1226, + "label": "VIS 110N", + "title": "Studio Honors II (4)" + }, + { + "dept": "ECE", + "description": "to Biomedical Imaging and Sensing (4)", + "edges_from": [], + "edges_to": [], + "id": 1227, + "label": "ECE 187", + "title": "Introduction" + }, + { + "dept": "ECE", + "description": "(Conjoined with ECE 241BL) Labs: CO2 laser,", + "edges_from": [], + "edges_to": [], + "id": 1228, + "label": "ECE 185", + "title": "Lasers and Modulators (4)" + }, + { + "dept": "ECE", + "description": "Processing and Holography (4)", + "edges_from": [], + "edges_to": [], + "id": 1229, + "label": "ECE 184", + "title": "Optical Information" + }, + { + "dept": "ECE", + "description": "Quantum electronics, interaction of light and matter in atomic systems, semiconductors. Laser amplifiers and laser systems. Photodetection. Electrooptics and acoustooptics, photonic switching. Fiber optic communication systems. Labs: semiconductor lasers, semiconductor photodetectors. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 296, + 1231 + ], + "edges_to": [], + "id": 1230, + "label": "ECE 183", + "title": "Optical Electronics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 40, + 33, + 41, + 257 + ], + "edges_to": [ + 4920, + 1233, + 1515, + 1230 + ], + "id": 1231, + "label": "ECE 103", + "title": "" + }, + { + "dept": "ECE", + "description": "Optics, Guided-Wave, and Fiber Optics (4)", + "edges_from": [], + "edges_to": [], + "id": 1232, + "label": "ECE 182", + "title": "Electromagnetic" + }, + { + "dept": "ECE", + "description": "Ray optics, wave optics, beam optics, Fourier optics, and electromagnetic optics. Ray transfer matrix, matrices of cascaded optics, numerical apertures of step and graded index fibers. Fresnel and Fraunhofer diffractions, interference of waves. Gaussian and Bessel beams, the ABCD law for transmissions through arbitrary optical systems. Spatial frequency, impulse response and transfer function of optical systems, Fourier transform and imaging properties of lenses, holography. Wave propagation in various (inhomogeneous, dispersive, anisotropic or nonlinear) media. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 296, + 1231 + ], + "edges_to": [], + "id": 1233, + "label": "ECE 181", + "title": "Physical Optics and Fourier Optics (4)" + }, + { + "dept": "ECE", + "description": "Topics of special interest in electrical and computer engineering. Subject matter will not be repeated so it may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 1234, + "label": "ECE 180", + "title": "Topics in Electrical and Computer Engineering (4)" + }, + { + "dept": "FMPH", + "description": "This course requires attendance and participation in the Division of Biostatistics seminar series and journal club. Students will critically read the assigned articles and participate in biweekly journal clubs. Students are also required to lead at least one journal club discussion. ", + "edges_from": [], + "edges_to": [], + "id": 1235, + "label": "FMPH 290", + "title": "Biostatistics Journal Club and Seminar (1)" + }, + { + "dept": "FMPH", + "description": "Topics of special interest in public health. Topics may vary from quarter to quarter. May be taken for credit up to twelve times for a maximum of forty-eight units.", + "edges_from": [], + "edges_to": [], + "id": 1236, + "label": "FMPH 291", + "title": "Special Topics in Public Health (1\u20134)" + }, + { + "dept": "ECE", + "description": "Basics of technical public speaking, including speech organization, body language (eye contact, hand gestures, etc.), volume and rate, and design of technical slides. Students will practice technical public speaking, including speeches with PowerPoint slides and speaker introductions, and presenting impromptu speeches. Students may not receive credit for both ECE 189 and ENG 100E. ", + "edges_from": [], + "edges_to": [], + "id": 1237, + "label": "ECE 189", + "title": "Technical Public Speaking (2)" + }, + { + "dept": "ECE", + "description": "Topics of special interest in electrical and computer engineering with laboratory. Subject matter will not be repeated so it may be taken for credit up to three times. ", + "edges_from": [], + "edges_to": [], + "id": 1238, + "label": "ECE 188", + "title": "Topics in Electrical and Computer Engineering with Laboratory (4)" + }, + { + "dept": "LTCS", + "description": "This course will examine the representation and politics of", + "edges_from": [], + "edges_to": [], + "id": 1239, + "label": "LTCS 165", + "title": "Special Topics: The Politics of Food (4)" + }, + { + "dept": "PSYC", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small setting to explore an intellectual topic in psychology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 1240, + "label": "PSYC 192", + "title": "Senior Seminar in Psychology (1)" + }, + { + "dept": "HILA", + "description": "This course examines factors that shed light on Brazil\u2019s label as a rising nation. In part, we will cover Brazil\u2019s two dictatorships, labor struggles, racial issues, immigration from Asia and Europe, environmental concerns, and emergence as economic and political powerhouse.", + "edges_from": [], + "edges_to": [], + "id": 1241, + "label": "HILA 121B", + "title": "History of Brazil, 1889 to Present (4)" + }, + { + "dept": "HILA", + "description": "This course covers many of the most transformative and fascinating social, political, and racial phenomena in Brazilian society through 1889, including indigenous life, Portuguese colonization, slavery and abolition, royal exile, independence and Empire, the birth of the Republic, war, social unrest, and ideals of modernization. +", + "edges_from": [], + "edges_to": [], + "id": 1242, + "label": "HILA 121A", + "title": "History of Brazil through 1889 (4)" + }, + { + "dept": "ETHN", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 1243, + "label": "ETHN 98", + "title": "Directed Group Studies (1\u20134)" + }, + { + "dept": "COMM", + "description": "This course introduces students to computers as media of communication. Each quarter students participate in a variety of networking activities designed to show the interactive potential of the medium. Fieldwork designed to teach basic methods is combined with readings designed to build a deeper theoretical understanding of computer-based communication. Students will not receive credit for COMT 111A and COMM 101M. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 1244, + "label": "COMM 101M", + "title": "MPL: Communication and Computers (4)" + }, + { + "dept": "ETHN", + "description": "in Racial and Ethnic Communities (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 1245, + "label": "ETHN 97", + "title": "Field Studies" + }, + { + "dept": "SE", + "description": "Application of finite element method to static and dynamic analysis of geotechnical structures. One-, 2-, and 3-D static and seismic response of earth structures/slopes/Foundation systems. Pore-pressure generation/effects during cycle loading. System identification using strong motion downhole-array data. Use of computer resources required. ", + "edges_from": [], + "edges_to": [], + "id": 1246, + "label": "SE 244", + "title": "Numerical Methods in Geomechanics (4)" + }, + { + "dept": "GLBH", + "description": "Independent study opportunity for students to work with global health affiliated faculty on relevant research or to elaborate the intellectual analysis and critique of their global health field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 1247, + "label": "GLBH 199", + "title": "Independent Study in Global Health Field Experience (4)" + }, + { + "dept": "GLBH", + "description": "Directed group study for students to delve deeper into global health topics or elaborate the intellectual analysis and critique of their field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 1248, + "label": "GLBH 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 178.) A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 1249, + "label": "ETHN 168", + "title": "Comparative Ethnic Literature (4)" + }, + { + "dept": "ETHN", + "description": "An examination of interactions among the peoples of western Europe, Africa, and the Americas that transformed the Atlantic basin into an interconnected \u201cAtlantic World.\u201d Topics will include maritime technology and the European Age of Discovery, colonization in the Americas, the beginnings of the transatlantic slave trade, and early development of plantation slavery in the New World. Students may not receive credit for both ETHN 170A and 169.", + "edges_from": [], + "edges_to": [], + "id": 1250, + "label": "ETHN 169", + "title": "Origins of the Atlantic World, c. 1450\u20131650 (4)" + }, + { + "dept": "GLBH", + "description": "Course gives students experience in teaching global health courses. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Students will need to apply for the undergraduate instructional apprentice position through ASES, fulfill the Academic Senate regulations, and receive the approval of the department, instructor, department chair, and Academic Senate. May be taken for credit up to two times. Course cannot be used to fulfill requirements for the global health major or minor.", + "edges_from": [], + "edges_to": [], + "id": 1251, + "label": "GLBH 195", + "title": "Instructional Apprenticeship in Global Health (4)" + }, + { + "dept": "ECE", + "description": "Computational techniques for numerical analysis", + "edges_from": [], + "edges_to": [], + "id": 1252, + "label": "ECE 222C", + "title": "Applied Electromagnetic Theory\u2014Computational Methods for Electromagnetics (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 165.) This course will investigate the changing constructions of sex, gender, and sexuality in African American communities defined by historical period, region, and class. Topics will include the sexual division of labor, myths of black sexuality, the rise of black feminism, black masculinity, and queer politics.", + "edges_from": [], + "edges_to": [], + "id": 1253, + "label": "ETHN 165", + "title": "Gender and Sexuality in African American Communities (4)" + }, + { + "dept": "ETHN", + "description": "Work with California native tribal groups, leaders, and members to identify common, pressing questions surrounding Indian law. In partnership with legal experts, develop and disseminate new media programs and useful documents accessible to native communities throughout California.", + "edges_from": [], + "edges_to": [], + "id": 1254, + "label": "ETHN 162", + "title": "Practicum in California Tribal Law and Journalism\u00a0(4)" + }, + { + "dept": "ECE", + "description": "Review of 222A\u2013B. Fourier transform, waveguide", + "edges_from": [], + "edges_to": [], + "id": 1255, + "label": "ECE 222D", + "title": "Advanced Antenna Design (4)" + }, + { + "dept": "ETHN", + "description": "Focusing on transregional relationships to land and decolonization in the Pacific, Caribbean, and the Americas, this course is a comparative study of cultural and political phenomena that shape indigenous communities globally. We will examine enduring legacies of colonialism, nationalism, and Western normativities, and explore indigenous activism within the decolonial movement.", + "edges_from": [], + "edges_to": [], + "id": 1256, + "label": "ETHN 160", + "title": "Global Indigenous Studies (4)" + }, + { + "dept": "ECON", + "description": "Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ", + "edges_from": [], + "edges_to": [], + "id": 1257, + "label": "ECON 249A", + "title": "International Development Workshop I (1\u20134)" + }, + { + "dept": "ECON", + "description": "Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ", + "edges_from": [], + "edges_to": [], + "id": 1258, + "label": "ECON 249C", + "title": "International Development Workshop III (1\u20134)" + }, + { + "dept": "POLI", + "description": "Comparative analysis of contemporary political systems and developmental profiles of selected Latin American countries, with special reference to the ways in which revolutionary and counter-revolutionary movements have affected the political, economic, and social structures observable in these countries today. Analyzes the performance of \u201crevolutionary\u201d governments in dealing with problems of domestic political management, reducing external economic dependency, redistributing wealth, creating employment, and extending social services. Introduction to general theoretical works on Latin American politics and development. ", + "edges_from": [ + 1260 + ], + "edges_to": [], + "id": 1259, + "label": "POLI 134AA", + "title": "Comparative Politics of Latin America (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 1259, + 4271 + ], + "id": 1260, + "label": "POLI 11", + "title": "" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100B or after successful completion of Econ 100B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 1261, + "label": "ECON 100BH", + "title": "Honors Microeconomics B (1)" + }, + { + "dept": "ANBI", + "description": "The course examines the evolution of primate behaviors (e.g., group formation, dispersal, parenting, coalition formation) from a comparative behavioral, ecological, and evolutionary perspective. Observational methodology and analytical methods will also be discussed. Attendance in lab sections is required. ", + "edges_from": [], + "edges_to": [], + "id": 1262, + "label": "ANBI 148", + "title": "Not by Genes Alone: The Ecology and Evolution of Primate Behavior (4)" + }, + { + "dept": "ANBI", + "description": "Learn the bones of your body; how bone pairs differ even within the body, between men, women, ethnic groups; and how nutrition and disease affect them. Course examines each bone and its relation with other bones and muscles that allow your movements. ", + "edges_from": [], + "edges_to": [], + "id": 1263, + "label": "ANBI 143", + "title": "The Human Skeleton (4)" + }, + { + "dept": "ANBI", + "description": "The genotype of our ancestors had no agriculture or animal domestication, or rudimentary technology. Our modern diet contributes to heart disease, cancers, and diabetes. This course will outline the natural diet of primates and compare it with early human diets. ", + "edges_from": [], + "edges_to": [], + "id": 1264, + "label": "ANBI 141", + "title": "The Evolution of Human Diet (4)" + }, + { + "dept": "ANBI", + "description": "Introduction to the organization of the brain of humans and apes. Overview of the theoretical perspectives on the evolution of the primate cortex and limbic system. Exposure to contemporary techniques applied to the comparative study of the hominoid brain. ", + "edges_from": [], + "edges_to": [ + 1984 + ], + "id": 1265, + "label": "ANBI 140", + "title": "The Evolution of the Human Brain (4)" + }, + { + "dept": "ANBI", + "description": "The stable isotopes of carbon, nitrogen, oxygen, and hydrogen in animal tissues, plant tissues, and soils indicate aspects of diet and ecology. The course will introduce students to this approach for reconstructing paleo-diet, paleo-ecology, and paleo-climate. ", + "edges_from": [], + "edges_to": [], + "id": 1266, + "label": "ANBI 146", + "title": "Stable Isotopes in Ecology (4)" + }, + { + "dept": "ANBI", + "description": "How are skeletal remains used to reconstruct human livelihoods throughout prehistory? The effects of growth, use, and pathology on morphology and the ways that skeletal remains are understood and interpreted by contemporary schools of thought. Recommend related course in human anatomy. ", + "edges_from": [], + "edges_to": [], + "id": 1267, + "label": "ANBI 145", + "title": "Bioarchaeology\u00a0(4)" + }, + { + "dept": "ANBI", + "description": "This course will introduce students to the internal structure of the human body through dissection tutorials on CD-ROM. ", + "edges_from": [], + "edges_to": [], + "id": 1268, + "label": "ANBI 144", + "title": "Human Anatomy (4)" + }, + { + "dept": "BGGN", + "description": "Intensive lecture-, seminar-, and laboratory-based course", + "edges_from": [], + "edges_to": [], + "id": 1269, + "label": "BGGN 208", + "title": "Biological Sciences Graduate Boot Camp (4)" + }, + { + "dept": "BGGN", + "description": "in the Division of Biological Sciences (2)", + "edges_from": [], + "edges_to": [], + "id": 1270, + "label": "BGGN 200", + "title": "Graduate School Fundamentals: Introduction to Graduate Studies" + }, + { + "dept": "BGGN", + "description": "Introduction to the computational methods most frequently used in neuroscience research. Aimed at first-year graduate students in neuroscience and related disciplines. Minimal quantitative background will be assumed. Topics include Poisson processes, Markov Chains, auto- and cross-correlation analysis, Fourier/Spectral analysis, principal components/linear algebra, signal detection theory, information theory, Bayes Theorem, hypothesis testing. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 1271, + "label": "BGGN 201", + "title": "Methods in Computational Neuroscience (3)" + }, + { + "dept": "BGGN", + "description": "Discussions cover professional preparation for future scientists. Topics include: how to read/write/publish papers, to write grant and fellowship proposals, to give oral presentations, and how to apply for research positions. Behind-the-scenes look at reviewing papers, grant and fellowship proposals. Discussions of career options in biological sciences will be included. Scientific content is in the area of eukaryotic gene expression, but knowledge is applicable to all areas of biology. Undergraduate students with senior standing may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 1272, + "label": "BGGN 202", + "title": "Professional Development for Biologists (2)" + }, + { + "dept": "BGGN", + "description": "The course teaches different topics on theory and key concepts in ecology, behavior, and evolution. Students will read materials in depth, attend weekly discussions, and explore relevant topics, theories, and models with advanced analytical tools. S/U grades only. May be taken for credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1273, + "label": "BGGN 203", + "title": "Topics in Ecology, Behavior, and Evolution (3)" + }, + { + "dept": "BGGN", + "description": "This course teaches a different topic each", + "edges_from": [], + "edges_to": [], + "id": 1274, + "label": "BGGN 204", + "title": "Topics in Community and Population Ecology (3)" + }, + { + "dept": "BGGN", + "description": "Learn effective ways of communicating science to nonscientists. Develop an understanding of how people\u2019s views of science and background knowledge can influence their learning and develop methods to tailor communication for different audiences. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1275, + "label": "BGGN 205", + "title": "Communicating Science to the Public (2)" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with SOMI 226.) Lectures, reading, and discussions about the responsible conduct and reporting of research, working with others in science, and social responsibilities; the course is designed as an option for meeting current federal regulations. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1276, + "label": "BGGN 207", + "title": "Scientific Ethics (1)" + }, + { + "dept": "BIPN", + "description": "Course addresses the human body\u2019s response to exercise, addressing energy metabolism and the effects of both acute and chronic exercise on function in several important organ systems. Designing training regimes and the role of exercise in health will be considered. ", + "edges_from": [], + "edges_to": [], + "id": 1277, + "label": "BIPN 108", + "title": "Biology and Medicine of Exercise (4)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in pharmacology and is designed to provoke critical discussion of the presented findings and the scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 1278, + "label": "BIOM 275", + "title": "Seminars in Pharmacology (2)" + }, + { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in composition. Projects will be critically reviewed in seminar with fellow students and faculty composers. ", + "edges_from": [], + "edges_to": [], + "id": 1279, + "label": "MUS 103D-E-F", + "title": "Honors Seminar in Composition (4-4-4)" + }, + { + "dept": "BIOM", + "description": "This course presents developments in cellular and molecular pathology research ongoing in the molecular pathology division of BMS. Each session comprises three fifteen-minute presentations from different faculty members. Discussion questions are fielded during or after each presentation. ", + "edges_from": [], + "edges_to": [], + "id": 1280, + "label": "BIOM 277", + "title": "Seminars in Molecular Pathology (2)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in genetics and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [ + 1997, + 1526 + ], + "id": 1281, + "label": "BIOM 272", + "title": "Seminars in Genetics (2)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in microbiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 1282, + "label": "BIOM 273", + "title": "Seminars in Microbiology (2)" + }, + { + "dept": "BIPN", + "description": "Course completes a survey of organ systems begun in BIPN 100 by considering the respiratory and gastrointestinal systems. Consideration is given to interactions of these systems in weight and temperature regulation, exercise physiology, stress, and pregnancy and reproduction. Note: Students may not receive credit for both BIPN 102 and BENG 140B. ", + "edges_from": [ + 1192 + ], + "edges_to": [ + 2024 + ], + "id": 1283, + "label": "BIPN 102", + "title": "Human Physiology II (4)" + }, + { + "dept": "BIPN", + "description": "Experiments are performed on membrane physiology, nerve and muscle function, hormone actions, cardiovascular physiology, and renal function. Subjects include experimental animals. Students will perform a research project and present their results in a symposium at the end of the quarter. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Material lab fees will apply. ", + "edges_from": [ + 1192 + ], + "edges_to": [], + "id": 1284, + "label": "BIPN 105", + "title": "Animal Physiology Lab (6)" + }, + { + "dept": "BIPN", + "description": "This course examines the physiological adaptation", + "edges_from": [], + "edges_to": [], + "id": 1285, + "label": "BIPN 106", + "title": "Comparative Physiology (4)" + }, + { + "dept": "SOCI", + "description": "We examine cultural production in Japan and abroad, national and transnational political-economic and social influences, the idea of Japan in the West, and the idea of the West in Japan. ", + "edges_from": [], + "edges_to": [], + "id": 1286, + "label": "SOCI 123 Japanese Culture Inside/Out: A Transnational Perspective (4)", + "title": "" + }, + { + "dept": "ECON", + "description": "Survey of the Indian economy. Historical overview and perspective; political economy; democracy and development; economic growth; land, labor, and credit markets; poverty and inequality; health, education, and human development; technology and development; institutions and state capacity; contemporary policy issues and debates. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [], + "id": 1287, + "label": "ECON 164", + "title": "The Indian Economy (4)" + }, + { + "dept": "ECON", + "description": "Socioeconomic development in the Arab world, Iran, and Turkey. Historical perspective; international trade and fuel resources; education, health, and gender gaps; unemployment and migration; population and environment; Islam and democracy. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [ + 2342 + ], + "id": 1288, + "label": "ECON 165", + "title": "Middle East Economics (4)" + }, + { + "dept": "ECON", + "description": "Long-run economic development and current economic issues of Southeast Asia. Topics include: economic growth, industrialization, financial development, demography, human capital and labor, inequality and poverty, corporate sector, institutions, and government. Designed to teach how to apply economics to the real world, with examples and case studies from Southeast Asian economies. Will start with general economic frameworks then use them to discuss issues from countries in Southeast Asia. ", + "edges_from": [ + 1290 + ], + "edges_to": [], + "id": 1289, + "label": "ECON 166", + "title": "Economics of Southeast Asia (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 5306 + ], + "edges_to": [ + 4168, + 1289, + 1771, + 5190 + ], + "id": 1290, + "label": "ECON 110B", + "title": "" + }, + { + "dept": "PHYS", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Physics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.", + "edges_from": [], + "edges_to": [], + "id": 1291, + "label": "PHYS 192", + "title": "Senior Seminar in Physics (1)" + }, + { + "dept": "NANO", + "description": "Overview of NanoEngineering. Presentations and discussions of basic knowledge and career opportunities in nanotechnology for professional development. Introduction to campus library resources. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1292, + "label": "NANO 1", + "title": "NanoEngineering Seminar (1)" + }, + { + "dept": "COMM", + "description": "How visual images contribute to our understanding of the world and ourselves. Theoretical approaches from media studies, art history, gender studies, and social theory will be used to analyze cultures of science, art, mass media, and everyday life. ", + "edges_from": [ + 540, + 1294 + ], + "edges_to": [], + "id": 1293, + "label": "COMM 107", + "title": "Visual Culture (4)" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [], + "edges_to": [ + 1293 + ], + "id": 1294, + "label": "COMM 108", + "title": "" + }, + { + "dept": "PHYS", + "description": "Undergraduate seminars organized around the research interests of various faculty members. P/NP grades only. ", + "edges_from": [ + 29, + 38 + ], + "edges_to": [], + "id": 1295, + "label": "PHYS 191", + "title": "Undergraduate Seminar on Physics (1)" + }, + { + "dept": "ECON", + "description": "This course explores economic processes that shape the Israeli economy. Topics include: biblical economics, economics of religion, economic growth, income inequality and consumer protests, employment, globalization, inflation, the high-tech sector, terrorism, and education. ", + "edges_from": [ + 505, + 302 + ], + "edges_to": [], + "id": 1296, + "label": "ECON 168", + "title": "Economics of Modern Israel (4)" + }, + { + "dept": "ECON", + "description": "This course covers long-run economic development and current economic issues of South Korea. Topics include: examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea\u2019s industrial structure, including the role of large enterprises (chaebol); role of government; and links between Korea and other countries. ", + "edges_from": [ + 505, + 547 + ], + "edges_to": [], + "id": 1297, + "label": "ECON 169", + "title": "Economics of Korea (4)" + }, + { + "dept": "PHYS", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1298, + "label": "PHYS 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "PHYS", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1299, + "label": "PHYS 199", + "title": "Research for Undergraduates (2 or 4)" + }, + { + "dept": "CHIN", + "description": "Introductory course of basic Chinese", + "edges_from": [], + "edges_to": [], + "id": 1300, + "label": "CHIN 10AD", + "title": "First Year Chinese\u2014Dialect speakers I (5)" + }, + { + "dept": "CSE", + "description": "Computer science and engineering topics whose study involves reading and discussion by a small group of students under the supervision of a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1301, + "label": "CSE 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "CSE", + "description": "Comprehensive introduction to computer vision", + "edges_from": [], + "edges_to": [], + "id": 1302, + "label": "CSE 252A", + "title": "Computer Vision I (4)" + }, + { + "dept": "CSE", + "description": "Comprehensive introduction to computer vision", + "edges_from": [], + "edges_to": [], + "id": 1303, + "label": "CSE 252B", + "title": "Computer Vision II (4)" + }, + { + "dept": "CSE", + "description": "Selected topics in computer vision and statistical pattern recognition, with an emphasis on recent developments. Possible topics include: grouping and segmentation, object recognition and tracking, multiple view geometry, kernel-based methods, dimensionality reduction, and mixture models. ", + "edges_from": [ + 1305, + 1306 + ], + "edges_to": [], + "id": 1304, + "label": "CSE 252C", + "title": "Selected Topics in Vision and Learning (1\u20134)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1304 + ], + "id": 1305, + "label": "CSE 250B", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1304 + ], + "id": 1306, + "label": "CSE 252", + "title": "" + }, + { + "dept": "ANAR", + "description": "This course explores in detail the rise of the world\u2019s earliest cities and states in Mesopotamia and the ancient Near East during the fourth millennium B.C. ", + "edges_from": [], + "edges_to": [], + "id": 1307, + "label": "ANAR 138", + "title": "Mesopotamia: The Emergence of Civilization (4)" + }, + { + "dept": "SE", + "description": "Advanced concepts in the mechanics of deformable bodies. Unsymmetrical bending of symmetrical and unsymmetrical sections. Bending of curved beams. Shear center and torsional analysis of open and closed sections. Stability analysis of columns, lateral buckling. Application of the theory of elasticity in rectangular coordinates. ", + "edges_from": [ + 1129, + 652 + ], + "edges_to": [ + 3970, + 3579, + 1861 + ], + "id": 1308, + "label": "SE 110B", + "title": "Solid Mechanics II (4)" + }, + { + "dept": "ECON", + "description": "Topics include weak instruments, unit roots, break tests, switching models, set-based inference, maximum likelihood estimation and meaning of misspecified models, consistency, asymptotic normality, consistent covariance matrix estimation, and tests of model misspecification. ", + "edges_from": [ + 323, + 1020, + 1069, + 1310, + 1311 + ], + "edges_to": [], + "id": 1309, + "label": "ECON 228", + "title": "Nonstandard Inference (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 323 + ], + "edges_to": [ + 1312, + 1313, + 1314, + 1315, + 1309, + 1311 + ], + "id": 1310, + "label": "ECON 220D", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1310 + ], + "edges_to": [ + 1312, + 1313, + 1314, + 1315, + 5186, + 1309 + ], + "id": 1311, + "label": "ECON 220E", + "title": "" + }, + { + "dept": "ECON", + "description": "Topics include neural networks, kernels, series, splines, estimation of densities and spectra, smoothing parameter selection, semiparametric models, efficiency and adaptation, forecasting with nonlinear models, over-fit, computation, and interpretation. ", + "edges_from": [ + 323, + 1020, + 1069, + 1310, + 1311 + ], + "edges_to": [], + "id": 1312, + "label": "ECON 227", + "title": "Nonparametric and Semiparametric Models (4)" + }, + { + "dept": "ECON", + "description": "Topics include Bayesian inference and decision theory, loss functions, estimation of dynamic stochastic general equilibrium models, nonlinear time series, state-space models, spatial-temporal models, and high-frequency data. ", + "edges_from": [ + 323, + 1020, + 1069, + 1310, + 1311 + ], + "edges_to": [], + "id": 1313, + "label": "ECON 226", + "title": "Bayesian and Numerical Methods (4)" + }, + { + "dept": "ECON", + "description": "Topics include testing for rationality of forecasts, Mincer-Zarnowitz regressions, asymmetric loss functions, tests for equal (superior) predictive ability, multivariate forecasting. ", + "edges_from": [ + 323, + 1020, + 1069, + 1310, + 1311 + ], + "edges_to": [], + "id": 1314, + "label": "ECON 225", + "title": "Forecasting (4)" + }, + { + "dept": "ECON", + "description": "Advanced topics in econometrics. Topics may vary from year to year, covering areas such as cross-section, time-series, panel, limited dependent variables, conditional quantile estimation, bootstrapping, and large- and small-sample distribution theory. ", + "edges_from": [ + 323, + 1020, + 1069, + 1310, + 1311 + ], + "edges_to": [], + "id": 1315, + "label": "ECON 221", + "title": "Advanced Econometrics (4)" + }, + { + "dept": "SE", + "description": "Materials testing and/or processing for metals and alloys, polymers and composites, cements, and wood. Materials selection and structural design to meet functional and cost requirements. Structural construction and testing. Use of computer resources. ", + "edges_from": [ + 29, + 1318, + 1317 + ], + "edges_to": [ + 399 + ], + "id": 1316, + "label": "SE 2L", + "title": "Structural Materials Lab (1)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 29, + 1318 + ], + "edges_to": [ + 1316, + 2230, + 399 + ], + "id": 1317, + "label": "SE 2", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 1316, + 1317, + 1128, + 2025, + 5037, + 79, + 158, + 1847, + 220, + 958 + ], + "id": 1318, + "label": "CHEM 6A", + "title": "" + }, + { + "dept": "TMC", + "description": "Weekly seminar conducted by UC San Diego faculty and distinguished guest lecturers on topics related to the core curriculum: diversity, justice, and imagination. P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 1319, + "label": "TMC 20", + "title": "Thurgood Marshall College Honors Seminar (1)" + }, + { + "dept": "PHYS", + "description": "Discussions of recent research in physics directed to the entire physics community. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 1320, + "label": "PHYS 260", + "title": "Physics Colloquium (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research conducted by faculty members in the Department of Physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 1321, + "label": "PHYS 261", + "title": "Seminar on Physics Research at UC San Diego (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of the application of the scientific method in the natural sciences. (S/U grades only.) May be taken for credit twenty-five times.", + "edges_from": [], + "edges_to": [], + "id": 1322, + "label": "PHYS 264", + "title": "Scientific Method Seminar (1)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of problems of impulse control, which are important features of major psychiatric disorders and also of atypical patterns of behavior including pathological gambling, compulsive sex, eating, exercise, and shopping. Topics include development, major common features, treatment, and neurobiological basis of impulse control disorders. ", + "edges_from": [], + "edges_to": [], + "id": 1323, + "label": "PSYC 188", + "title": "Impulse Control Disorders (4)" + }, + { + "dept": "MATH", + "description": "Various topics in differential geometry. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 1324, + "label": "MATH 258", + "title": "Seminar in Differential Geometry (1)" + }, + { + "dept": "MATH", + "description": "Various topics in Lie groups and Lie algebras, including structure theory, representation theory, and applications. ", + "edges_from": [], + "edges_to": [], + "id": 1325, + "label": "MATH 256", + "title": "Seminar in Lie Groups and Lie Algebras (1)" + }, + { + "dept": "MGTA", + "description": "Students will learn to design and run experiments to guide policy and business decisions. They will learn to distinguish between a correlation and a causal effect and also to critically evaluate causal claims based on nonexperimental data. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 1326, + "label": "MGTA 458", + "title": "Experiments in Firms (4)" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [ + 1329 + ], + "edges_to": [ + 5609, + 3883, + 4396, + 1326, + 4399, + 4402, + 5910, + 1369, + 1980 + ], + "id": 1327, + "label": "MGTA 452", + "title": "" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [ + 1329 + ], + "edges_to": [ + 5609, + 3883, + 4396, + 1326, + 4399, + 4402, + 5910, + 1369, + 1980 + ], + "id": 1328, + "label": "MGTA 453", + "title": "" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [], + "edges_to": [ + 5609, + 3883, + 4396, + 1326, + 1327, + 1328, + 4402, + 5910, + 1369, + 4399, + 1980 + ], + "id": 1329, + "label": "MGTA 451", + "title": "" + }, + { + "dept": "SOCI", + "description": "and Indigenous Peoples in Latin America (4)", + "edges_from": [], + "edges_to": [], + "id": 1330, + "label": "SOCI 182", + "title": "Ethnicity" + }, + { + "dept": "SOCI", + "description": "This course examines the nature and dynamics of modern western society in the context of the historical process by which this type of society has emerged over the last several centuries. The aim of the course is to help students think about what kind of society they live in, what makes it the way it is, and how it shapes their lives. ", + "edges_from": [ + 1331, + 1332 + ], + "edges_to": [ + 1331 + ], + "id": 1331, + "label": "SOCI 181", + "title": "Modern Western Society (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 1331 + ], + "id": 1332, + "label": "SOCD 181", + "title": "" + }, + { + "dept": "SOCI", + "description": "An examination of the nature of protests and violence, particularly as they occur in the context of larger social movements. The course will further examine those generic facets of social movements having to do with their genesis, characteristic forms of development, relationship to established political configurations, and gradual fading away. ", + "edges_from": [ + 1333, + 1334 + ], + "edges_to": [ + 1333 + ], + "id": 1333, + "label": "SOCI 180", + "title": "Social Movements and Social Protest (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 1333 + ], + "id": 1334, + "label": "SOCC 180", + "title": "" + }, + { + "dept": "SOCI", + "description": "Exploration of contemporary African urbanization and social change via film, including 1) transitional African communities, 2) social change in Africa, 3) Western vs. African filmmakers\u2019 cultural codes. Ideological and ethnographic representations, aesthetics, social relations, and market demand for African films are analyzed. ", + "edges_from": [ + 1336, + 1335 + ], + "edges_to": [ + 1335 + ], + "id": 1335, + "label": "SOCI 187", + "title": "African Societies through Film (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 1335 + ], + "id": 1336, + "label": "SOCD 187", + "title": "" + }, + { + "dept": "SOCI", + "description": "Social development is more than sheer economic growth. It entails improvements in the overall quality of human life, particularly in terms of access to health, education, employment, and income for the poorer sectors of the population. Course examines the impact of globalization on the prospects for attaining these goals in developing countries. ", + "edges_from": [ + 1337, + 1338 + ], + "edges_to": [ + 1337 + ], + "id": 1337, + "label": "SOCI 185", + "title": "Globalization and Social Development (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 1337 + ], + "id": 1338, + "label": "SOCD 185", + "title": "" + }, + { + "dept": "SOCI", + "description": "This class will examine issues of masculinity and femininity through analysis of films. Emphasis is on contemporary American society and will include varying issues such as race, class, and sexualities; worlds of work; romance, marriage, and family. ", + "edges_from": [ + 1339, + 1340 + ], + "edges_to": [ + 1339 + ], + "id": 1339, + "label": "SOCI 184", + "title": "Gender and Film (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 1339 + ], + "id": 1340, + "label": "SOCC 184", + "title": "" + }, + { + "dept": "CHEM", + "description": "Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. May be coscheduled with CHEM 185. ", + "edges_from": [], + "edges_to": [], + "id": 1341, + "label": "CHEM 285", + "title": "Introduction to Computational Chemistry (4)" + }, + { + "dept": "SOCI", + "description": "Topics in Comparative-Historical Sociology (4)", + "edges_from": [], + "edges_to": [], + "id": 1342, + "label": "SOCI 189", + "title": "Special" + }, + { + "dept": "CHEM", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 1343, + "label": "CHEM 280", + "title": "Applied Bioinformatics" + }, + { + "dept": "CHEM", + "description": "A laboratory course combining hands-on mass spectrometry and", + "edges_from": [], + "edges_to": [], + "id": 1344, + "label": "CHEM 283", + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + { + "dept": "GPPA", + "description": "This course explores three topics: 1) democracy, which is primarily about procedural justice; 2) social policy, which is primarily about distributive justice; and, 3) corruption, which is a breach of formal justice. We will consider potential conflicts and reconciliation between justice and development, approaching various issues not just theoretically and conceptually, but also empirically and quantitatively. The course uses cross-national quantitative studies and case studies. Renumbered from IRGN 450. Students may not receive credit for GPPA 450 and IRGN 450.", + "edges_from": [], + "edges_to": [], + "id": 1345, + "label": "GPPA 450", + "title": "Justice, Policy, and Development (4)" + }, + { + "dept": "POLI", + "description": "and Latin America: Political and Economic Relations (4)", + "edges_from": [], + "edges_to": [], + "id": 1346, + "label": "POLI 146A", + "title": "The U.S." + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the applications of social psychological principles and findings to sports. Topics include motivation, level of aspiration, competition, cooperation, social comparison, and optimal arousal. Additional topics may include the perspective of spectators, discussing motivation and perceptions of success, streaks, and such. ", + "edges_from": [], + "edges_to": [], + "id": 1347, + "label": "PSYC 139", + "title": "The Social Psychology of Sport (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of auditory perception. Topics may include the physiology of the auditory system, perception of pitch, loudness, and timbre, sound localization, perception of melodic and temporal patterns and musical illusions and paradoxes. Recommended preparation: ability to read musical notation. ", + "edges_from": [], + "edges_to": [], + "id": 1348, + "label": "PSYC 138", + "title": "Sound and Music Perception (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of social cognition, which blends cognitive and social psychology to understand how people make sense of the social world. Topics may include social perception, inference, memory, motivation, affect, understanding the self, stereotypes, and cultural cognition. ", + "edges_from": [], + "edges_to": [], + "id": 1349, + "label": "PSYC 137", + "title": "Social Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how children\u2019s thinking develops. Topics may include perception, concept formation, memory, problem solving, and social cognition. ", + "edges_from": [ + 872, + 1351 + ], + "edges_to": [], + "id": 1350, + "label": "PSYC 136", + "title": "Cognitive Development (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1350 + ], + "id": 1351, + "label": "PSYC 105", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the biology and psychology of eating disorders such as anorexia nervosa, bulimia nervosa, and binge eating disorder. Abnormal, as well as normal, eating will be discussed from various perspectives including endocrinological, neurobiological, psychological, sociological, and evolutionary. ", + "edges_from": [], + "edges_to": [], + "id": 1352, + "label": "PSYC 134", + "title": "Eating Disorders (4)" + }, + { + "dept": "PSYC", + "description": "This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. Cross-listed with BIMM 116. ", + "edges_from": [ + 369, + 954, + 370 + ], + "edges_to": [], + "id": 1353, + "label": "PSYC 133", + "title": "Circadian Rhythms\u2014Biological Clocks (4)" + }, + { + "dept": "PSYC", + "description": "This course examines how hormones influence a variety of behaviors and how behavior reciprocally influences hormones. Specific topics covered include aggression, sex and sexuality, feeding, learning, memory, mood and neural mechanisms both in humans and nonhuman animals. Recommended preparation: completion of PSYC 106. ", + "edges_from": [], + "edges_to": [], + "id": 1354, + "label": "PSYC 132", + "title": "Hormones and Behavior (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a review of research on delay of gratification. Topics include what makes it so tough, in what situations it is possible, who can do it, and the implications of this ability. ", + "edges_from": [], + "edges_to": [], + "id": 1355, + "label": "PSYC 130", + "title": "Delay of Gratification (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 150.) This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcomes in non-European and North American countries are explored. Students may not receive credit for GLBH 150 and ANSC 150.", + "edges_from": [], + "edges_to": [], + "id": 1356, + "label": "GLBH 150", + "title": "Culture and Mental Health (4)" + }, + { + "dept": "HIGR", + "description": "Social Evolution, and Intellectuals in the Andes: Mari\u00e1tegui, Haya de la", + "edges_from": [], + "edges_to": [], + "id": 1357, + "label": "HIGR 252", + "title": "History," + }, + { + "dept": "MAE", + "description": "Basics of stratified flows.", + "edges_from": [], + "edges_to": [], + "id": 1358, + "label": "MAE 224A", + "title": "Environmental Fluid Dynamics I (4)" + }, + { + "dept": "MAE", + "description": "Plumes and thermals. Application", + "edges_from": [], + "edges_to": [], + "id": 1359, + "label": "MAE 224B", + "title": "Environmental Fluid Dynamics II (4)" + }, + { + "dept": "SE", + "description": "Techniques in Finite Elements (4)", + "edges_from": [], + "edges_to": [], + "id": 1360, + "label": "SE 233", + "title": "Computational" + }, + { + "dept": "LTWR", + "description": "A workshop and survey of experimental approaches to the writing and production of performance works in a range of literary genres. Emphasis will be placed on the integration of written texts with nonverbal elements from the visual arts, theatre, and music. ", + "edges_from": [ + 1361, + 261, + 273 + ], + "edges_to": [ + 1361 + ], + "id": 1361, + "label": "LTWR 119", + "title": "Writing for Performance (4)" + }, + { + "dept": "RELI", + "description": "A faculty member will direct a student in advanced readings on a topic not generally included in the Program for the Study of Religion\u2019s curriculum. Students must make arrangements with the program and individual faculty. May be repeated for credit up to three times for credit. ", + "edges_from": [ + 1363, + 1364 + ], + "edges_to": [], + "id": 1362, + "label": "RELI 197", + "title": "Directed Advanced Readings (4)" + }, + { + "dept": "RELI", + "description": "", + "edges_from": [], + "edges_to": [ + 1362 + ], + "id": 1363, + "label": "RELI 110A", + "title": "" + }, + { + "dept": "RELI", + "description": "", + "edges_from": [], + "edges_to": [ + 1362 + ], + "id": 1364, + "label": "RELI 110B", + "title": "" + }, + { + "dept": "LTWR", + "description": "A workshop designed to encourage writing of original screenplays and adaptations. There will be discussion of study work, together with analysis of discussion of representative examples of screen writing. May be taken up to three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1365, + "label": "LTWR 110", + "title": "Screen Writing (4)" + }, + { + "dept": "LTWR", + "description": "This course is an introduction to modes of writing from other cultural systems vastly different from the cultural-aesthetic assumptions of Anglo American writing. While disclosing the limitations of the English language, this course attempts to provide new language strategies for students. May be taken for credit three times. ", + "edges_from": [ + 272, + 273, + 261 + ], + "edges_to": [], + "id": 1366, + "label": "LTWR 113", + "title": "Intercultural Writing Workshop (4)" + }, + { + "dept": "LTWR", + "description": "This workshop explores writing for which the traditional generic distinctions of prose/poetry, fiction/documentary, narrative/discourse do not apply. Students taking this course will be asked to challenge the boundaries of literature to discover new forms and modes of expression. May be taken for credit three times. ", + "edges_from": [ + 272, + 273, + 261 + ], + "edges_to": [], + "id": 1367, + "label": "LTWR 115", + "title": "Experimental Writing Workshop (4)" + }, + { + "dept": "LTWR", + "description": "From illuminated manuscripts to digital literature, from alphabets to concrete poems, from artists\u2019 books to comics, this course explores the histories and techniques of combinatory image/word literary arts. The course may emphasize specific movements or genres. May be taken for credit three times. ", + "edges_from": [ + 272, + 273, + 261 + ], + "edges_to": [], + "id": 1368, + "label": "LTWR 114", + "title": "Graphic Texts Workshop (4)" + }, + { + "dept": "MGTA", + "description": "A decision support system consists of decision model, data, and user interface. This course covers the R and Shiny programming and design skills to develop a DSS that addresses a manager\u2019s decision-making needs. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 1369, + "label": "MGTA 457", + "title": "Business Intelligence Systems (2)" + }, + { + "dept": "POLI", + "description": "Asian Thought in Comparative Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 1370, + "label": "POLI 113A", + "title": "East" + }, + { + "dept": "POLI", + "description": "Examines philosophical traditions of ancient and modern China and Japan, to understand how these have been reflected in Chinese and Japanese development. Course will be in English; however, students with Chinese or Japanese language skills will have opportunity to use these. Graduate students will be required to complete a seminar-length research paper; undergraduate students will write a paper. ", + "edges_from": [], + "edges_to": [], + "id": 1371, + "label": "POLI 113B", + "title": "Chinese and Japanese Political Thought I (4)" + }, + { + "dept": "POLI", + "description": "A continuation of 113B, which follows political philosophical themes in China and Japan through the twentieth century. Important topics include Buddhism and Confucianism as they changed in each context in response to internal and external stimuli. ", + "edges_from": [], + "edges_to": [], + "id": 1372, + "label": "POLI 113C", + "title": "Chinese and Japanese Political Thought II (4)" + }, + { + "dept": "RELI", + "description": "The senior seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in religion at the upper-division level. Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.", + "edges_from": [], + "edges_to": [], + "id": 1373, + "label": "RELI 192", + "title": "Senior Seminar in Religion (1)" + }, + { + "dept": "HIGR", + "description": "Introduction to the bibliography, methodology, and ancillary disciplines for the study of ancient history together with readings and discussion on selected topics within the field. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 1374, + "label": "HIGR 254", + "title": "Historical Scholarship in Ancient History (4)" + }, + { + "dept": "LTEN", + "description": "in US Minority Literatures and Cultures (4)", + "edges_from": [], + "edges_to": [], + "id": 1375, + "label": "LTEN 254", + "title": "Topics" + }, + { + "dept": "LTEN", + "description": "A survey of selected responses to imperialism and colonialism as presented in cultural texts produced by colonized or once-colonized peoples. Related issues to be examined: gender dynamics, class, representing others, mimicry, language, cultural theory, and the politics of literary genres. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1376, + "label": "LTEN 256", + "title": "Postcolonial Discourses (4)" + }, + { + "dept": "LTEN", + "description": "in Modern American Literature and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 1377, + "label": "LTEN 252", + "title": "Studies" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 1378, + "label": "PSYC 267C", + "title": "Advanced Topics in Behavior Medicine III (1)" + }, + { + "dept": "LTEN", + "description": "Consideration of one or more major figures, texts, performance, or trends in literature and culture of Africa and/or the African Diaspora. Various theories and methodologies may be applied to the representations being studied. May be taken three times for credit as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1379, + "label": "LTEN 258", + "title": "Studies in Anglophone African and/or African Diaspora Literature and Culture (4)" + }, + { + "dept": "LTEN", + "description": "New developments in the study of literature in diverse frameworks, including but not limited to: globalization, queer theory, diaspora studies, environmentalism, world literary systems, international literary awards, transnational feminism, literary markets, human rights discourse, and translation studies. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1380, + "label": "LTEN 259", + "title": "Transnational Literary Studies (4)" + }, + { + "dept": "USP", + "description": "Introduction to teaching activities associated with course. Responsibilities include preparing reading materials assigned by the instructor, attending course lectures, meeting at least one hour per week with the instructor, assisting instructor in grading, and preparing a summary report to the instructor. ", + "edges_from": [], + "edges_to": [], + "id": 1381, + "label": "USP 195", + "title": "Teaching Apprentice\u2014Undergraduate (2\u20134)" + }, + { + "dept": "USP", + "description": "(Same as Cognitive Science 194, Communication 194, Earth Science 194, History 193, Political Science 194, Sociology E/194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "edges_from": [], + "edges_to": [], + "id": 1382, + "label": "USP 194", + "title": "Research Seminar in Washington, DC (4)" + }, + { + "dept": "USP", + "description": "Introduction to Geographic Information Systems and using GIS to make decisions: acquiring data and organizing data in useful formats, demographic mapping, geocoding. Selected exercises examine crime data, political campaigns, banking and environmental planning, patterns of bank lending and finance. ", + "edges_from": [], + "edges_to": [], + "id": 1383, + "label": "USP 191", + "title": "GIS for Urban and Community Planning (4)" + }, + { + "dept": "USP", + "description": "Each student enrolled will be required to write an honors essay, a substantial research paper on a current urban policy issue, under the supervision of a member of the faculty. Most often the essay will be based on their previous fieldwork courses and internship. This essay and other written exercises, as well as class participation, will be the basis of the final grade for the course. The seminar will rotate from year to year among the faculty in urban studies and planning. ", + "edges_from": [ + 1385, + 1386, + 1387 + ], + "edges_to": [], + "id": 1384, + "label": "USP 190", + "title": "Senior Honors Seminar (4)" + }, + { + "dept": "GPA", + "description": "", + "edges_from": [], + "edges_to": [ + 1384 + ], + "id": 1385, + "label": "GPA 3", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 1384, + 1387 + ], + "id": 1386, + "label": "USP 186", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [ + 1386 + ], + "edges_to": [ + 1384 + ], + "id": 1387, + "label": "USP 187", + "title": "" + }, + { + "dept": "PHYS", + "description": "Second quarter of a three-quarter introductory physics course geared toward life-science majors. Electric fields, magnetic fields, DC and AC circuitry. ", + "edges_from": [ + 1059, + 1060, + 1061, + 550, + 138, + 1389, + 1390, + 442, + 29, + 134, + 133 + ], + "edges_to": [ + 5822, + 1390, + 1391 + ], + "id": 1388, + "label": "PHYS 1B", + "title": "Electricity and Magnetism (3)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1061, + 133 + ], + "edges_to": [ + 1028, + 1029, + 4327, + 5417, + 3943, + 1388, + 1390, + 1391, + 3636, + 4151, + 4765 + ], + "id": 1389, + "label": "MATH 11", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 1059, + 1060, + 1061, + 550, + 138, + 1388, + 1389, + 442, + 29, + 134, + 133 + ], + "edges_to": [ + 1388, + 1391 + ], + "id": 1390, + "label": "PHYS 1BL", + "title": "" + }, + { + "dept": "PHYS", + "description": "Third quarter of a three-quarter introductory physics course geared toward life-science majors. The physics of oscillations and waves, vibrating strings and sound, the behavior of systems under combined thermal and electric forces, and the interaction of light with matter as illustrated through optics and quantum mechanics. Examples from biology, sports, medicine, and current events. ", + "edges_from": [ + 134, + 550, + 138, + 1388, + 1389, + 1390, + 1392, + 446, + 31 + ], + "edges_to": [ + 5822, + 5263 + ], + "id": 1391, + "label": "PHYS 1C", + "title": "Waves, Optics, and Modern Physics (3)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 1391 + ], + "id": 1392, + "label": "PHYS 1CL", + "title": "" + }, + { + "dept": "USP", + "description": "Reading and research programs and field-study projects to be arranged between student and instructor, depending on the student\u2019s needs and the instructor\u2019s advice in terms of these needs. ", + "edges_from": [], + "edges_to": [], + "id": 1393, + "label": "USP 199", + "title": "Independent Study (2\u20134)" + }, + { + "dept": "USP", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 1394, + "label": "USP 198", + "title": "Directed Group Study (2\u20134)" + }, + { + "dept": "ANTH", + "description": "This seminar will focus on a close and intensive reading of Maurice Merleau-Ponty\u2019s masterwork, The Phenomenology of Perception. Emphasis will be placed on the relevance of this work for theory, method, and practice in the social sciences. ", + "edges_from": [], + "edges_to": [], + "id": 1395, + "label": "ANTH 221", + "title": "Phenomenology of Perception (4)" + }, + { + "dept": "ANTH", + "description": "This is an interdisciplinary seminar examining the place of the body and embodiment in contemporary culture and culture theory. ", + "edges_from": [], + "edges_to": [], + "id": 1396, + "label": "ANTH 220", + "title": "The Human Body in Discourse and Experience (4)" + }, + { + "dept": "ANTH", + "description": "The course teaches techniques of long-term, intensive interviewing in fieldwork settings with an emphasis on psychodynamic inference and its usefulness in different cultural settings. ", + "edges_from": [ + 1398 + ], + "edges_to": [], + "id": 1397, + "label": "ANTH 223", + "title": "Anthropological Interviewing (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1397 + ], + "id": 1398, + "label": "ANGR 223", + "title": "" + }, + { + "dept": "ANTH", + "description": "The study of subjectivity has emerged as an anthropological focal point for theorizing the interconnections among culture, experience, and power. This seminar explores the shaping of the lived experience and structures of knowledge that reciprocally produce forms of subjectivity. ", + "edges_from": [], + "edges_to": [], + "id": 1399, + "label": "ANTH 222", + "title": "Anthropological Studies of Subjectivity (4)" + }, + { + "dept": "PHYS", + "description": "This is a one-quarter general physics course for nonscience majors. Topics covered are motion, energy, heat, waves, electric current, radiation, light, atoms and molecules, nuclear fission and fusion. This course emphasizes concepts with minimal mathematical formulation. Recommended preparation: college algebra.", + "edges_from": [], + "edges_to": [], + "id": 1400, + "label": "PHYS 10", + "title": "Concepts in Physics (4)" + }, + { + "dept": "PHYS", + "description": "Survey of physics for nonscience majors with strong mathematical background, including calculus. Physics 11 describes the laws of motion, gravity, energy, momentum, and relativity. A laboratory component consists of two experiments with gravity and conservation principles. ", + "edges_from": [ + 1061, + 133 + ], + "edges_to": [], + "id": 1401, + "label": "PHYS 11", + "title": "Survey of Physics (4)" + }, + { + "dept": "PHYS", + "description": "A course covering energy fundamentals, energy use in an industrial society and the impact of large-scale energy consumption. It addresses topics on fossil fuel, heat engines, solar energy, nuclear energy, energy conservation, transportation, air pollution and global effects. Concepts and quantitative analysis.", + "edges_from": [], + "edges_to": [], + "id": 1402, + "label": "PHYS 12", + "title": "Energy and the Environment (4)" + }, + { + "dept": "PHYS", + "description": "An exploration of life in the Universe. Topics include defining life; the origin, development, and fundamental characteristics of life on Earth; searches for life elsewhere in the solar system and other planetary systems; space exploration; and identifying extraterrestrial intelligence. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 1403, + "label": "PHYS 13", + "title": "Life in the Universe (4)" + }, + { + "dept": "ANTH", + "description": "This seminar is an in-depth analysis of cultural meaning, personal experience, and therapeutic process in ritual healing, emphasizing performative/persuasive aspects of the relation between religion and health in comparative, cross-cultural perspective. ", + "edges_from": [], + "edges_to": [], + "id": 1404, + "label": "ANTH 229", + "title": "Religion and Healing (4)" + }, + { + "dept": "BICD", + "description": "Course implements key concepts in genetics and genomics such as performing and interpreting results of genetic crosses, analyzing mutations and their phenotypic consequences, analyzing the genetic basis of quantitative traits, and analyzing genome sequences in relation to phenotypic variation. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 100. ", + "edges_from": [ + 954 + ], + "edges_to": [], + "id": 1405, + "label": "BICD 101", + "title": "Eucaryotic Genetics Laboratory (4)" + }, + { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in analyzing existing data sets. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1406, + "label": "FPM 280C", + "title": "Practicum in Health Behavior III (4)" + }, + { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in preparing manuscripts using data from a specific health behavior intervention. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1407, + "label": "FPM 280B", + "title": "Practicum in Health Behavior II (4)" + }, + { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor to learn how to conduct a health behavior intervention. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1408, + "label": "FPM 280A", + "title": "Practicum in Health Behavior I (4)" + }, + { + "dept": "LTSP", + "description": "Major Spanish literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of this period. May be taken for credit three times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 1409, + "label": "LTSP 100", + "title": "Major Works of the Middle Ages (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 1410, + "label": "Linguistics/Heritage Languages (LIHL) 135P", + "title": "Advanced Korean for Korean Speakers (4)" + }, + { + "dept": "COMM", + "description": "Specialized study in production with topics to be determined by the instructor for any given quarter. Students will use studio, editing rooms, cameras to construct a variety of in or outside studio productions that can include YouTube, Documentary shorts, Vimeo, with topics that show the effects on social issues. May be taken for credit three times. ", + "edges_from": [ + 731, + 1412, + 1413 + ], + "edges_to": [], + "id": 1411, + "label": "COMM 101T", + "title": "MPL: Topics in Production (4)" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 540 + ], + "edges_to": [ + 2145, + 1411, + 2151, + 5002, + 1419, + 1420, + 1422, + 1427 + ], + "id": 1412, + "label": "COMM 101", + "title": "" + }, + { + "dept": "COGN", + "description": "", + "edges_from": [], + "edges_to": [ + 2145, + 5002, + 1411, + 2151 + ], + "id": 1413, + "label": "COGN 22", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 1414, + "label": "Linguistics/Heritage Languages (LIHL) 135W", + "title": "Advanced Korean for Korean Speakers (4)" + }, + { + "dept": "TDGE", + "description": "The Honors thesis is designed to give theatre and dance majors the opportunity to undertake advanced creative research in an area of specialization (directing, history, pedagogy, performance, playwriting, or stage management), culminating in the writing of a thesis and the oral or performative presentation of the thesis to the members of the student\u2019s Honors Committee. Application available with the theatre and dance undergraduate coordinator. This is a two-quarter research project. Students enroll in the winter and spring quarters of their senior year. Deadline to apply is fall quarter of the student\u2019s senior year. ", + "edges_from": [], + "edges_to": [ + 1417 + ], + "id": 1415, + "label": "TDGE 196A", + "title": "Honors Study in Theatre and Dance (4)" + }, + { + "dept": "ECE", + "description": "Signal analysis methods for recognition, dynamic", + "edges_from": [], + "edges_to": [], + "id": 1416, + "label": "ECE 252B", + "title": "Speech Recognition (4)" + }, + { + "dept": "TDGE", + "description": "A continuation of TDGE 196A. Theatre and dance Honors students complete thesis work in directing, history, pedagogy, performance, playwriting, or stage management under the close supervision of a faculty member. All students enrolled will present their thesis work during a departmental showcase event at the end of the spring quarter. ", + "edges_from": [ + 1415 + ], + "edges_to": [], + "id": 1417, + "label": "TDGE 196B", + "title": "Honors Study in Theatre and Dance (4)" + }, + { + "dept": "COGS", + "description": "An applied hands-on programming course that focuses on the design, implementation and analysis of experiments. Topics include experiment design, stimulus presentation, response collection, file manipulation, data analysis, display, and presentation. Course work includes both team and individual projects. Graduate students who have not programmed at all should speak with the professor beforehand.", + "edges_from": [], + "edges_to": [], + "id": 1418, + "label": "COGS 219", + "title": "Programming for Behavioral Sciences (4)" + }, + { + "dept": "COMM", + "description": "This is a practical course on ethnographic fieldwork\u2014obtaining informed consent interviewing, negotiating, formulating a research topic, finding relevant literature, writing a research paper, and assisting others with their research. May be taken for credit three times. Students will not receive credit for COMT 112 and COMM 101E. ", + "edges_from": [ + 540, + 1412 + ], + "edges_to": [], + "id": 1419, + "label": "COMM 101E", + "title": "MPL: Ethnographic Methods for Media Production (4)" + }, + { + "dept": "COMM", + "description": "Prepare students to edit on nonlinear editing facilities and introduce aesthetic theories of editing: time code editing, time line editing on the Media 100, digital storage and digitization of audio and video, compression, resolution, and draft mode editing. By the end of the course students will be able to demonstrate mastery of the digital editing facilities. May be taken for credit three times. Students will not receive credit for COMT 100 and COMM 101D. ", + "edges_from": [ + 540, + 1412 + ], + "edges_to": [], + "id": 1420, + "label": "COMM 101D", + "title": "MPL: Nonlinear/Digital Editing (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 1421, + "label": "Linguistics/Heritage Languages (LIHL) 135F", + "title": "Advanced Korean for Korean Speakers (4)" + }, + { + "dept": "COMM", + "description": "Digital video is the medium used in this class both as a production technology and as a device to explore the theory and practice of documentary production. Technical demonstrations, lectures, production exercises, and readings will emphasize the interrelation between production values and ethics, problems of representation, and documentary history. May be taken for credit three times. Students will not receive credit for COMT 120 and COMM 101K. ", + "edges_from": [ + 540, + 1412 + ], + "edges_to": [], + "id": 1422, + "label": "COMM 101K", + "title": "MPL: Documentary Sketchbook (4)" + }, + { + "dept": "HDP", + "description": "The course will examine the human evolutionary past to inform our understanding of the biological, cognitive, and sociocultural aspects of growth and change across the lifespan. Lectures and readings will draw from diverse fields to situate our understanding of human development within its broader evolutionary context. Areas of focus will include but are not limited to human longevity, biology of growth, theory of mind, and social and biological development in cross-species comparison. ", + "edges_from": [ + 1424, + 1425, + 871 + ], + "edges_to": [], + "id": 1423, + "label": "HDP 111", + "title": "Evolutionary Principles in Human Development (4)" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [], + "edges_to": [ + 4324, + 4326, + 3399, + 3624, + 3946, + 3948, + 3789, + 4494, + 1423, + 3792, + 3944, + 4149, + 4153, + 4765, + 4661 + ], + "id": 1424, + "label": "BILD 3", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 1423 + ], + "id": 1425, + "label": "ANTH 2", + "title": "" + }, + { + "dept": "HDP", + "description": "The purpose of this course is to familiarize students with basic mechanisms of brain and behavioral development from embryology through aging. Multiple levels of analysis will be discussed, including the effects of hormones on behavior, developmental events at the level of cells, structures, and neural systems, and the neural basis of cognition, social, perceptual, and language development. ", + "edges_from": [ + 872, + 871 + ], + "edges_to": [], + "id": 1426, + "label": "HDP 110", + "title": "Brain and Behavioral Development (4)" + }, + { + "dept": "COMM", + "description": "Advanced seminar in sound production, design, editing. Students create projects by recording original sounds, editing on a Pro-Tools system. We consider the potential of sound in film, radio, TV, and the web by reviewing work and reading sound theory. May be taken for credit three times. Students will not receive credit for COMT 121 and COMM 101N. ", + "edges_from": [ + 540, + 1412 + ], + "edges_to": [], + "id": 1427, + "label": "COMM 101N", + "title": "MPL: Sound Production and Manipulation (4)" + }, + { + "dept": "BENG", + "description": "Introduction to molecular structures. Macromolecules and assemblies-proteins, nucleic acids, and metabolites. Principles of design of simple and complex components of organelles, cells, and tissues. ", + "edges_from": [ + 958 + ], + "edges_to": [ + 2192, + 2025 + ], + "id": 1428, + "label": "BENG 102", + "title": "Molecular Components of Living Systems (4)" + }, + { + "dept": "MAE", + "description": "Compressible flow, thermodynamics, and combustion", + "edges_from": [], + "edges_to": [ + 5312, + 2230 + ], + "id": 1429, + "label": "MAE 113", + "title": "Fundamentals of Propulsion (4)" + }, + { + "dept": "HIUS", + "description": "This course traces the history of the institution of US citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.", + "edges_from": [], + "edges_to": [], + "id": 1430, + "label": "HIUS 136/ETHN 153", + "title": "Citizenship and Civil Rights in the Twentieth Century (4)" + }, + { + "dept": "CSE", + "description": "Bioinformatics III: Functional Genomics (4)", + "edges_from": [], + "edges_to": [], + "id": 1431, + "label": "CSE 283/BENG 203", + "title": "" + }, + { + "dept": "LTFR", + "description": "Major literary works of the nineteenth century. May be repeated for credit as topics vary. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 1432, + "label": "LTFR 124", + "title": "Nineteenth Century (4)" + }, + { + "dept": "LTFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2634, + 2635, + 2636, + 2637, + 3790, + 3793, + 1432, + 3419, + 3676 + ], + "id": 1433, + "label": "LTFR 116", + "title": "" + }, + { + "dept": "LTFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2634, + 2635, + 2636, + 2637, + 3790, + 3793, + 1432, + 3419, + 3676 + ], + "id": 1434, + "label": "LTFR 115", + "title": "" + }, + { + "dept": "HITO", + "description": "This course introduces students to the history of modern Vietnam, starting with the Tay Son rebellion in the late eighteenth century and ending with the economic reforms of the 1980s. Topics include the expansion and consolidation of the French colonial state, the rise of anti-colonialism and nationalism, the development of Vietnamese communism, World War II, and the First and Second Indochina Wars. A special emphasis will be focused on the place of Vietnam within wider regional and global histories.", + "edges_from": [], + "edges_to": [], + "id": 1435, + "label": "HITO 114", + "title": "History of Modern Vietnam (4)" + }, + { + "dept": "HITO", + "description": "How did cars come to dominate the world? This course provides a survey of the world since 1900 to the near future through the history of cars and their impacts on politics, economics, society, and the environment.", + "edges_from": [], + "edges_to": [], + "id": 1436, + "label": "HITO 116", + "title": "Car Wars: A Global History of the World since 1900 through Cars (4)" + }, + { + "dept": "HITO", + "description": "This course examines the interaction between", + "edges_from": [], + "edges_to": [], + "id": 1437, + "label": "HITO 117", + "title": "World History 1200\u20131800 (4)" + }, + { + "dept": "NEU", + "description": "This course will blend research and clinical perspectives to allow comprehensive learning of CNS diseases. For each two-week disease block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.", + "edges_from": [], + "edges_to": [], + "id": 1438, + "label": "NEU 270A", + "title": "Neurobiology of Disease: Mechanisms of Neurodegeneration (4)" + }, + { + "dept": "NEU", + "description": "This course will blend research and clinical perspectives to allow comprehensive learning of CNS neurodevelopmental disorders. For each two-week block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.", + "edges_from": [], + "edges_to": [], + "id": 1439, + "label": "NEU 270B", + "title": "Neurobiology of Disease: Neurodevelopmental Disorders (4)" + }, + { + "dept": "PHYS", + "description": "An exploration of our solar system. Topics include the Sun, terrestrial and giant planets, satellites, asteroids, comets, dwarf planets and the Kuiper Belt, exoplanets, and the formation of planetary systems. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 1440, + "label": "PHYS 9", + "title": "The Solar System (4)" + }, + { + "dept": "ECE", + "description": "The course reinforces students\u2019 intuitive, theoretical, and computational understanding of probability and statistics, and builds on these foundations to introduce more advanced concepts useful in both data science research and practice. The following topics will be covered: basics, convergence, estimation, and hypothesis testing. Python programs, examples, and visualizations will be used throughout the course. ", + "edges_from": [], + "edges_to": [ + 1442 + ], + "id": 1441, + "label": "ECE 225A", + "title": "Probability and Statistics for Data Science (4)" + }, + { + "dept": "ECE", + "description": "In many data science problems, there is only limited information on statistical properties of the data. This course develops the concept of universal probability that can be used as a proxy for the unknown distribution of data and provides a unified framework for several data science problems, including compression, portfolio selection, prediction, and classification. ", + "edges_from": [ + 1441, + 1443 + ], + "edges_to": [], + "id": 1442, + "label": "ECE 225B", + "title": "Universal Probability and Its Applications in Data Science (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1442, + 3083, + 4819 + ], + "id": 1443, + "label": "ECE 250", + "title": "" + }, + { + "dept": "BIMM", + "description": "Course will consider the organization and function of prokaryotic genomes including content, DNA supercoiling, histone-like proteins, chromosomal dynamics (short-term and long-term), extrachromosomal elements, bacterial sex, transduction, transformation, mobile elements (transposon), epigenetic change, adaptive and directed mutation, transcription and its regulation, sensory transduction, bacterial differentiation, symbiosis, and pathogenesis. ", + "edges_from": [ + 411 + ], + "edges_to": [], + "id": 1444, + "label": "BIMM 122", + "title": "Microbial Genetics (4)" + }, + { + "dept": "BIMM", + "description": "A discussion of the structure, growth, physiology, molecular genetics, genomics, and ecology of prokaryotic microorganisms, with emphasis on the genetic and metabolic diversity of bacteria and Archaea and their interactions with hosts and the environment. ", + "edges_from": [ + 1193, + 954, + 410 + ], + "edges_to": [], + "id": 1445, + "label": "BIMM 120", + "title": "Microbiology (4)" + }, + { + "dept": "BIMM", + "description": "Course emphasizes fundamental principles of microbiology, including comparative", + "edges_from": [], + "edges_to": [], + "id": 1446, + "label": "BIMM 121", + "title": "Laboratory in Microbiology (6)" + }, + { + "dept": "BIMM", + "description": "Encompasses the increasingly important areas", + "edges_from": [], + "edges_to": [], + "id": 1447, + "label": "BIMM 124", + "title": "Medical Microbiology (4)" + }, + { + "dept": "ANSC", + "description": "This course will provide an anthropological perspective on Chinese culture in Taiwan from its earliest settlement to the present, including distinctive Taiwanese variants of traditional Chinese marriage and family life, institutions, festivals, agricultural practices, etc. ", + "edges_from": [], + "edges_to": [], + "id": 1448, + "label": "ANSC 111", + "title": "The Chinese Heritage in Taiwan (4)" + }, + { + "dept": "ANSC", + "description": "This course examines societies and cultures of the Caribbean in anthropological and historical perspective. Topics include slavery, emancipation, indentureship, kinship, race, ethnicity, class, gender, politics, food, religion, music, festivals, popular culture, migration, globalization, and tourism. ", + "edges_from": [], + "edges_to": [], + "id": 1449, + "label": "ANSC 110", + "title": "Societies and Cultures of the Caribbean (4)" + }, + { + "dept": "ANSC", + "description": "Young people draw on language as well as clothing and music to display identities in contemporary societies. We examine the relation of language to race, class, gender, and ethnicity in youth identity construction, especially in multilingual and multiracial societies. ", + "edges_from": [], + "edges_to": [], + "id": 1450, + "label": "ANSC 113", + "title": "Language, Style, and Youth Identities (4)" + }, + { + "dept": "TDGR", + "description": "This course is open to any graduate student who wants to expand their knowledge and experience of writing for performance. Open to graduate students who wish to incorporate writing into their creative and research practice. S/U grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 1451, + "label": "TDGR 255", + "title": "Writing for Performance (4)" + }, + { + "dept": "TDGR", + "description": "The seminar will deal with all dramaturgical issues pertaining to departmental productions: production research, textual and analysis, translation, adaptation, rehearsal process, and critique. Concurrently with the dramaturgy issues of the given year, the seminar will discuss possible choices of plays for future production seasons. ", + "edges_from": [], + "edges_to": [], + "id": 1452, + "label": "TDGR 252", + "title": "Dramaturgy Seminar (4)" + }, + { + "dept": "TDGR", + "description": "Students enrolled in this course will work on productions in the function of a dramaturg. This will entail preparation of texts, research, participation at rehearsals, etc. ", + "edges_from": [], + "edges_to": [], + "id": 1453, + "label": "TDGR 253", + "title": "Dramaturgy Practicum (1\u20136)" + }, + { + "dept": "ANSC", + "description": "This course contrasts mainstream Anglo-American conceptualizations of transgenderism with ethnographic accounts of the experiences and practices of gender expansive people of color (African, Native, Asian/Pacific Islander, and Latinx Americans) in the U.S. and abroad. It will question the idea of transgenderism as a crossing from one gender to another one, the distinction between gender identity and sexuality, and the analytic of intersectionality. Students will not receive credit for both CGS 117 and ANSC 117. ", + "edges_from": [], + "edges_to": [], + "id": 1454, + "label": "ANSC 117", + "title": "Transgenderisms (4)" + }, + { + "dept": "TDGR", + "description": "Creative writing project developing original scripts from outline to the final play. Plays may vary depending on the quarter, but will include writing of a realistic one-act, a nonrealistic one-act, a one-act documentary or dramatization of fiction, a full-length play. ", + "edges_from": [], + "edges_to": [], + "id": 1455, + "label": "TDGR 251", + "title": "Playwriting Practicum (2)" + }, + { + "dept": "ANSC", + "description": "Communication, and the Body (4)", + "edges_from": [], + "edges_to": [], + "id": 1456, + "label": "ANSC 119", + "title": "Gesture," + }, + { + "dept": "ANSC", + "description": "An introduction to the study of cultural patterns of thought, action, and expression, in relation to language. We consider comparatively semiotics and structuralism, cognition and categorization, universals versus particulars, ideologies of stasis and change, cultural reconstruction, and ethnopoetics. ", + "edges_from": [], + "edges_to": [], + "id": 1457, + "label": "ANSC 118", + "title": "Language and Culture (4)" + }, + { + "dept": "LTTH", + "description": "This proseminar, regularly offered in the fall quarter, consists of seven or eight guest lectures by the literature faculty and introduces their research and methodologies. This proseminar is organized by a literature faculty member or the director of doctoral studies. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1458, + "label": "LTTH 210A", + "title": "Proseminar on Literary Scholarship (4)" + }, + { + "dept": "ANTH", + "description": "A seminar given to acquaint students with the techniques and problems of fieldwork. Students carry out ethnographic field research in a local community group under faculty supervision. ", + "edges_from": [ + 1460 + ], + "edges_to": [], + "id": 1459, + "label": "ANTH 283A", + "title": "Fieldwork Seminar (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1459 + ], + "id": 1460, + "label": "ANGR 283A", + "title": "" + }, + { + "dept": "TDGR", + "description": "A guided reading course focusing exclusively on very recent plays in an attempt to become aware of what is being written now. Course may be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1461, + "label": "TDGR 256", + "title": "Contemporary Plays (1\u20134)" + }, + { + "dept": "ENVR", + "description": "Explores environmental policy in the United States and the ways in which it is reflected in law. The social and political issues addressed include environmental justice and environmental racism, as well as the role of government in implementing environmental law. ", + "edges_from": [], + "edges_to": [], + "id": 1462, + "label": "ENVR 110", + "title": "Environmental Law (4)" + }, + { + "dept": "PHYS", + "description": "A hands-on laboratory course in which the students learn and use experimental techniques, including optics, electronics, chemistry, machining, and computer interface, to design and develop simple instruments for quantitative characterization of living systems. Lab classes will comprise five two-week modules. ", + "edges_from": [], + "edges_to": [ + 1905 + ], + "id": 1463, + "label": "PHYS 270A", + "title": "Experimental Techniques for Quantitative Biology (4)" + }, + { + "dept": "INTL", + "description": "Honors Seminar in International Studies (4)", + "edges_from": [], + "edges_to": [ + 5953 + ], + "id": 1464, + "label": "INTL 190H", + "title": "" + }, + { + "dept": "TDGR", + "description": "A one-quarter course covering the hour-long format (five weeks) and situation comedies (five weeks). Includes study and discussion of television script format and structure. Students will create the concept and structure for spec scripts in each genre. ", + "edges_from": [], + "edges_to": [], + "id": 1465, + "label": "TDGR 254", + "title": "Television Writing (4)" + }, + { + "dept": "HILA", + "description": "How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.", + "edges_from": [], + "edges_to": [], + "id": 1466, + "label": "HILA 114D", + "title": "Dictatorship in Latin America (4)" + }, + { + "dept": "EDS", + "description": "This course examines special topics in P\u201312 education from a variety of theoretical and pedagogical perspectives. Topics will address pertinent and current issues related to P\u201312", + "edges_from": [], + "edges_to": [], + "id": 1467, + "label": "EDS 180", + "title": "Topics in Education Studies (4)" + }, + { + "dept": "ECE", + "description": "Students design, build, and race an autonomous car using principles in electrical engineering and computer science: circuit design, control theory, digital signal processing, embedded systems, microcontrollers, electromagnetism, and programming. ", + "edges_from": [], + "edges_to": [], + "id": 1468, + "label": "ECE 194", + "title": "Viacar Design Project (4)" + }, + { + "dept": "ECE", + "description": "Teaching and tutorial activities associated with courses and seminars. Not more than four units of ECE 195 may be used for satisfying graduation requirements. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1469, + "label": "ECE 195", + "title": "Teaching (2 or 4)" + }, + { + "dept": "EDS", + "description": "121B. Foundations of Teaching and Learning Math II (4)", + "edges_from": [], + "edges_to": [], + "id": 1470, + "label": "EDS 121B/Math", + "title": "" + }, + { + "dept": "ECE", + "description": "Directed study and research at laboratories and observatories away from the campus. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1471, + "label": "ECE 197", + "title": "Field Study in Electrical and Computer Engineering (4, 8, 12, or 16)" + }, + { + "dept": "ECE", + "description": "Digital communication theory including performance of various modulation techniques, effects of inter-symbol interference, adaptive equalization, spread spectrum communication. ", + "edges_from": [ + 1473, + 1474, + 1475, + 1476 + ], + "edges_to": [], + "id": 1472, + "label": "ECE 258A\u2013B", + "title": "Digital Communication (4-4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 73, + 2653 + ], + "edges_to": [ + 1472, + 1939, + 4589, + 1475 + ], + "id": 1473, + "label": "ECE 154A", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1475 + ], + "edges_to": [ + 1472 + ], + "id": 1474, + "label": "ECE 154C", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1473 + ], + "edges_to": [ + 1472, + 1474 + ], + "id": 1475, + "label": "ECE 154B", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1472 + ], + "id": 1476, + "label": "ECE 254", + "title": "" + }, + { + "dept": "TDGR", + "description": "A seminar focusing on the current playwriting project of all graduate playwriting students. Work for each quarter is individually determined according to student needs, but may include exploration of an inceptive idea, development of a scenario or other structural work, and writing dialogue. Students present work to be discussed in class. May include group or individual playwriting exercises. ", + "edges_from": [], + "edges_to": [ + 2770 + ], + "id": 1477, + "label": "TDGR 250", + "title": "Playwriting Seminar (4)" + }, + { + "dept": "ANSC", + "description": "An introduction to the languages and cultures of speakers of the Mayan family of languages, with emphasis on linguistic structures, ethnography, and the social history of the region. The course will concentrate on linguistic and ethnographic literature of a single language or sub-branch, emphasizing commonalities with the family and region as a whole. ", + "edges_from": [], + "edges_to": [], + "id": 1478, + "label": "ANSC 116", + "title": "Languages of the Americas: Mayan (4)" + }, + { + "dept": "ECE", + "description": "Topics in electrical and computer engineering whose study involves reading and discussion by a small group of students under direction of a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1479, + "label": "ECE 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "ECE", + "description": "Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1480, + "label": "ECE 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "HIEU", + "description": "A study of the social, intellectual, and political currents in French history from the end of the French Revolution to the eve of the First World War. Lectures, slides, films, readings, and discussions.", + "edges_from": [], + "edges_to": [], + "id": 1481, + "label": "HIEU 153A", + "title": "Nineteenth-Century France (4)" + }, + { + "dept": "CHIN", + "description": "160/260. Late Imperial and Twentieth-Century Chinese Historical Texts", + "edges_from": [], + "edges_to": [], + "id": 1482, + "label": "CHIN", + "title": "" + }, + { + "dept": "LTCS", + "description": "Directed group research, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.) ", + "edges_from": [], + "edges_to": [], + "id": 1483, + "label": "LTCS 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTCS", + "description": "Individual reading in an area not covered in courses currently offered by the department. (P/NP only.) ", + "edges_from": [], + "edges_to": [], + "id": 1484, + "label": "LTCS 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "MDE", + "description": "Computer-aided analysis and design with applications to medical devices. Solid model representation, finite element analysis for strength and deformation, material selection, kinematics, statistical analysis, and visualization of analytical results. Software packages used will include 3D CAD, FEA solvers, and student generated code. Analytical methods will be applied to case studies of medical devices. ", + "edges_from": [], + "edges_to": [], + "id": 1485, + "label": "MDE 292", + "title": "Computer Aided Design of Medical Devices (4)" + }, + { + "dept": "MSED", + "description": "Students will work on an independent research project under the supervision of MSED faculty.", + "edges_from": [], + "edges_to": [], + "id": 1486, + "label": "MSED 298", + "title": "Research Project (2\u201312)" + }, + { + "dept": "LIGN", + "description": "Issues of language representation and neural instantiation that arise in studies of neural imaging, language disorders, multilingualism and second language acquisition, animal communication, and the origins and evolution of language. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1487, + "label": "LIGN 272", + "title": "Topics in Neurolinguistics (4)" + }, + { + "dept": "LIGN", + "description": "Investigation of problems in psycholinguistics\u2014the study of how humans learn, represent, comprehend, and produce language\u2014from a computational perspective. Research article readings covering word-level, sentence-level, and discourse-level processing. Prior background in psycholinguistics and/or computational linguistics highly recommended.", + "edges_from": [], + "edges_to": [], + "id": 1488, + "label": "LIGN 274", + "title": "Computational Psycholinguistics (4)" + }, + { + "dept": "BENG", + "description": "Multiscale Biology (4)", + "edges_from": [], + "edges_to": [], + "id": 1489, + "label": "BENG 276/Chem 276/Math 276/Pharm 276", + "title": "Numerical Analysis in" + }, + { + "dept": "LIGN", + "description": "Language acquisition is central to theories about human development, cognition, brain organization, and language origins and change. Topics include the role of input and critical periods on language outcome and processing, neural organization, and sign language creation. ", + "edges_from": [], + "edges_to": [], + "id": 1490, + "label": "LIGN 279", + "title": "Topics in Language Acquisition (4)" + }, + { + "dept": "MUS", + "description": "This course will introduce basic voicings and voice leading, stylistically appropriate accompaniment, and basic chord substitution. For majors with a Jazz and the Music of the African diaspora emphasis to be taken concurrently with MUS 2C. ", + "edges_from": [ + 1492, + 1493, + 1494 + ], + "edges_to": [], + "id": 1491, + "label": "MUS 2JK", + "title": "Jazz Keyboard (2)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1491, + 3763 + ], + "id": 1492, + "label": "MUS 2AK", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1491, + 3763 + ], + "id": 1493, + "label": "MUS 2BK", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 3305, + 4298, + 3927, + 1491, + 3925, + 1559, + 1560, + 3801 + ], + "id": 1494, + "label": "MUS 2C", + "title": "" + }, + { + "dept": "MSED", + "description": "Survey of recent literature highlighting critical issues in science education research. Specific focus on research in biology education, chemistry education, and physics education. Theoretical perspectives and research methodology (both qualitative and quantitative) used to understand learning will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 1495, + "label": "MSED 290", + "title": "Issues in Science Education Research (4)" + }, + { + "dept": "MSED", + "description": "Topics in Math and Science Education (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 1496, + "label": "MSED 297", + "title": "Special" + }, + { + "dept": "MSED", + "description": "In this course, the graduate student will teach or assist a teacher in a K\u201312 setting. The graduate student will have the mentorship of the classroom teacher as well as the supervision of an MSED faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 1497, + "label": "MSED 294", + "title": "Teaching Practicum (4)" + }, + { + "dept": "ETHN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 1498, + "label": "ETHN 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "GLBH", + "description": "Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will focus on identifying critical global health policy challenges and solving them using a multidisciplinary approach that takes into account the perspectives of various stakeholders. ", + "edges_from": [], + "edges_to": [], + "id": 1499, + "label": "GLBH 160", + "title": "Global Health Policy (4)" + }, + { + "dept": "ETHN", + "description": "The development of the Atlantic slave trade and the spread of racial slavery in the Americas before 1800. Explores the diversity of slave labor in the Americas and the different slave cultures African Americans produced under the constraints of slavery. Students may not receive credit for both ETHN 170 and 170B.", + "edges_from": [], + "edges_to": [], + "id": 1500, + "label": "ETHN 170", + "title": "Slavery and the Atlantic World (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 183.) Students will analyze and discuss the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characters of Afro-American narrative and the cultural and social circumstances that influence their development.", + "edges_from": [], + "edges_to": [], + "id": 1501, + "label": "ETHN 172", + "title": "Afro-American Prose (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 186.) The Harlem Renaissance (1917\u201339) focuses on the emergence of the \u201cNew Negro\u201d and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.", + "edges_from": [], + "edges_to": [], + "id": 1502, + "label": "ETHN 175", + "title": "Literature of the Harlem Renaissance (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 185.) This course focuses on the influence of slavery upon African American writers. Our concern is not upon what slavery was but upon what it is within the works and what these texts reveal about themselves, their authors, and their audiences.", + "edges_from": [], + "edges_to": [], + "id": 1503, + "label": "ETHN 174", + "title": "Themes in Afro-American Literature (4)" + }, + { + "dept": "ETHN", + "description": "This course considers the history of listening to the music of the world in Western culture. We will critically examine how the history of perception directs us to listen for familiar and different sounds in music. No musical training required.", + "edges_from": [], + "edges_to": [], + "id": 1504, + "label": "ETHN 177", + "title": "Listening to the World (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 127.) Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year.\u00a0May be taken for credit two times. Students may receive a combined total of eight units for MUS 127 and ETHN 179.", + "edges_from": [], + "edges_to": [], + "id": 1505, + "label": "ETHN 179", + "title": "Discover Jazz (4)" + }, + { + "dept": "NANO", + "description": "Electrochemistry and electrochemical engineering for energy applications. Thermodynamics and kinetics of electrochemical reactions; fundamental principles of batteries, super capacitors, fuel cells, and electrochemical synthesis systems; electrochemical analysis of these systems, engineering design considerations, and modeling. Practical device design and fabrication will be covered in greater detail.", + "edges_from": [], + "edges_to": [], + "id": 1506, + "label": "NANO 279", + "title": "Advanced Electrochemical Energy Engineering (4)" + }, + { + "dept": "EDS", + "description": "This course explores topical issues in education. It focuses on recent developments that have broad implications for research and practice in teaching and learning. Course topics will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 1507, + "label": "EDS 232", + "title": "Special Topics in Education (4)" + }, + { + "dept": "EDS", + "description": "Topics in Instructional Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 1508, + "label": "EDS 231", + "title": "Advanced" + }, + { + "dept": "PSYC", + "description": "This course provides hands-on research experience. Lecture topics will include experimental and nonexperimental designs, research ethics, data analysis, and causal inference. Students will design original research projects, collect and analyze data, and write a full APA-style report, including a brief literature review relevant to their design. This course builds on PSYC 70 by applying design principles to students\u2019 own research questions and ideas. ", + "edges_from": [ + 1510 + ], + "edges_to": [], + "id": 1509, + "label": "PSYC 71", + "title": "Laboratory in Psychological Research Methods (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 862 + ], + "edges_to": [ + 1509 + ], + "id": 1510, + "label": "PSYC 70", + "title": "" + }, + { + "dept": "TWS", + "description": "This course will investigate novelistic and dramatic treatments of European society in the era of nineteenth-century imperialism, Third World societies under the impact of colonialism, and the position of national minorities inside the United States to the present day. Attention will center on the interplay between the aesthetic merits and social-historical-philosophical content of the works read.", + "edges_from": [], + "edges_to": [], + "id": 1511, + "label": "TWS 132", + "title": "Literature and Third World Societies (4)" + }, + { + "dept": "ANBI", + "description": "Conservation on a human-dominated planet is a complex topic. Sometimes a picture is worth a thousand words. This course explores how films about conservation and the human predicament tackle current problems. What makes them effective and what makes them \u201cfail\u201d? We view one film a week and discuss it based on articles and books about that week\u2019s topic. Corequisite: must be enrolled in ANBI 132.", + "edges_from": [], + "edges_to": [], + "id": 1512, + "label": "ANBI 174", + "title": "Conservation and the Media: Film Lab (4)" + }, + { + "dept": "ANBI", + "description": "Models of human evolution combine science and myth. This course examines methods used in reconstructions of human evolution. Models such as \u201cman the hunter\u201d and \u201cwoman the gatherer\u201d are examined in light of underlying assumptions, and cultural ideals. ", + "edges_from": [], + "edges_to": [], + "id": 1513, + "label": "ANBI 175", + "title": "Paleofantasy: The Evidence for Our Early Ancestors (4)" + }, + { + "dept": "ANBI", + "description": "The last divide between humans and other animals is in the area of cognition. A comparative perspective to explore recent radical reinterpretations of the cognitive abilities of different primate species, including humans and their implications for the construction of evolutionary scenarios. ", + "edges_from": [], + "edges_to": [], + "id": 1514, + "label": "ANBI 173", + "title": "How Monkeys See the World (4)" + }, + { + "dept": "ECE", + "description": "Crystal structure and quantum theory of solids; electronic band structure; review of carrier statistics, drift and diffusion, p-n junctions; nonequilibrium carriers, imrefs, traps, recombination, etc; metal-semiconductor junctions and heterojunctions. ", + "edges_from": [ + 1231 + ], + "edges_to": [ + 1517 + ], + "id": 1515, + "label": "ECE 135A", + "title": "Semiconductor Physics (4)" + }, + { + "dept": "Soc/G", + "description": "An introduction for entering graduate students to the range and variety of research and scholarly interest of the department\u2019s faculty. Through this introduction students will be better able to relate their own research interests and professional objectives to the ongoing work of faculty. ", + "edges_from": [], + "edges_to": [], + "id": 1516, + "label": "Soc/G 208", + "title": "Faculty Research Seminar (2)" + }, + { + "dept": "ECE", + "description": "Structure and operation of bipolar junction transistors, junction field-effect transistors, metal-oxide-semiconductor diodes and transistors. Analysis of dc and ac characteristics. Charge control model of dynamic behavior. ", + "edges_from": [ + 1515 + ], + "edges_to": [], + "id": 1517, + "label": "ECE 135B", + "title": "Electronic Devices (4)" + }, + { + "dept": "BGGN", + "description": "This course provides a hands-on introduction to the computer-based analysis of genomic and biomolecular data. Major topics include sequencing technologies, genome informatics, structural bioinformatics, and transcriptomics. Students completing this course will be able to evaluate new genomic and biomolecular information using existing software and will have experience in combining bioinformatic approaches to answer biological questions. Enrollment restricted to the following major codes: BI77, BI78, and BS75. Course limited to PhD level students.", + "edges_from": [], + "edges_to": [], + "id": 1518, + "label": "BGGN 213", + "title": "Foundations of Bioinformatics (4)" + }, + { + "dept": "BGGN", + "description": "The goal of the course is to provide an introduction to modern evolutionary biology using quantitative approaches. The course will focus on mathematical modeling, experimental, and genomic approaches to study evolution.", + "edges_from": [], + "edges_to": [], + "id": 1519, + "label": "BGGN 212", + "title": "Introduction to Quantitative Evolutionary Biology (4)" + }, + { + "dept": "BGGN", + "description": "Introduces students to advanced concepts of modern biology (e.g. molecular and cell biology, biochemistry, genomics, and epigenomics, etc.). Current experimental approaches (including high-throughput sequencing, microarray technology, RNAi, proteomic technologies, ChIP-seq) are discussed using primary research papers. The course provides training in critical analysis of scientific papers, data interpretation, scientific writing, and experimental design. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.", + "edges_from": [], + "edges_to": [], + "id": 1520, + "label": "BGGN 211", + "title": "Recent Advances and Experimental Approaches in Modern Biology (4)" + }, + { + "dept": "BGGN", + "description": "For incoming doctoral students in neurobiology, computational neurobiology, and neurosciences. During first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ", + "edges_from": [], + "edges_to": [], + "id": 1521, + "label": "BGGN 210", + "title": "Neurobiology Boot Camp (4)" + }, + { + "dept": "BGGN", + "description": "Fundamentals behind and practical application of biostatistics, including central tendency and variability, hypothesis testing, inferential techniques (parametric and nonparametric), correlation and regression. Practice examples taken from the laboratory bench and primary literature. Training in the use of biostatistical software. ", + "edges_from": [], + "edges_to": [], + "id": 1522, + "label": "BGGN 216", + "title": "Graduate Biostatistics (4)" + }, + { + "dept": "SOCI", + "description": "A continuation of Sociology/L 1A. The focus here is on socialization processes, culture, social reproduction and social control, and collective action. As in 1A, materials include both theoretical statements and case studies. While 1B may be taken as an independent course, it is recommended that students take 1A and 1B in sequence, as the latter builds on the former. Will not receive credit for SOCI 2 and SOCL 1B.", + "edges_from": [], + "edges_to": [ + 2126 + ], + "id": 1523, + "label": "SOCI 2", + "title": "The Study of Society (4)" + }, + { + "dept": "BGGN", + "description": "The course goal is to discuss and work through examples where quantitative biology approaches were necessary to yield novel biological insights. Problems will be presented with a historic perspective to instill a philosophy for when, how, and why q-bio approaches are most effective. The course may also appeal to physics and engineering graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 1524, + "label": "BGGN 214", + "title": "Introduction to Q-Biology (4)" + }, + { + "dept": "BIOM", + "description": "This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ", + "edges_from": [], + "edges_to": [], + "id": 1525, + "label": "BIOM 267", + "title": "Drug Discovery, Development, and Commercialization (3)" + }, + { + "dept": "BIOM", + "description": "This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages. ", + "edges_from": [ + 1528, + 1281, + 1527 + ], + "edges_to": [], + "id": 1526, + "label": "BIOM 262", + "title": "Quantitative Methods in Genetics (4)" + }, + { + "dept": "BIOM", + "description": "", + "edges_from": [ + 523, + 524, + 525 + ], + "edges_to": [ + 1997, + 1526 + ], + "id": 1527, + "label": "BIOM 252", + "title": "" + }, + { + "dept": "BGGN", + "description": "", + "edges_from": [ + 1752, + 1753, + 1754, + 1755 + ], + "edges_to": [ + 1997, + 1526 + ], + "id": 1528, + "label": "BGGN 223", + "title": "" + }, + { + "dept": "FMPH", + "description": "This is the third of a three-part honors series that serves as the culminating experience for the BS in public health majors. Students will analyze, interpret, and contextualize findings from their projects completed in the series. Oral and written communication will focus on disseminating public health information in diverse formats, and will include a presentation and an honors thesis. Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1530 + ], + "edges_to": [], + "id": 1529, + "label": "FMPH 196C", + "title": "Public Health Honors Practicum III (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 3603 + ], + "edges_to": [ + 1529 + ], + "id": 1530, + "label": "FMPH 196B", + "title": "" + }, + { + "dept": "NANO", + "description": "Course is designed to give NanoEngineering students from a variety of backgrounds a working knowledge of biochemistry and molecular biology. While the course offers biochemistry basics and key themes in molecular biology, it will emphasize the role of engineering innovations.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1531, + "label": "NANO 242", + "title": "Biochemisty and Molecular Biology (4)" + }, + { + "dept": "LTFR", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 1532, + "label": "LTFR 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "MAE", + "description": "Methods for Differential Equations (4)", + "edges_from": [], + "edges_to": [ + 1534 + ], + "id": 1533, + "label": "MAE 290B", + "title": "Numerical" + }, + { + "dept": "MAE", + "description": "Numerical methods in fluid dynamics and convective transport processes. Numerical solution of the Euler and Navier-Stokes equation. Additional topics will vary according to instructor. Examples include eigenvalue problems in hydrodynamic stability, vortex methods, spectral and panel methods. Students may not receive credit for both MAE 290C and MAE 223. ", + "edges_from": [ + 1536, + 1537, + 1533, + 1535 + ], + "edges_to": [], + "id": 1534, + "label": "MAE 290C", + "title": "Computational Fluid Dynamics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4753, + 3973, + 1534 + ], + "id": 1535, + "label": "MAE 290A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4948, + 1534 + ], + "id": 1536, + "label": "MAE 210B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2226, + 4948, + 3973, + 1534 + ], + "id": 1537, + "label": "MAE 210A", + "title": "" + }, + { + "dept": "MATH", + "description": "Two- and three-dimensional Euclidean geometry", + "edges_from": [], + "edges_to": [], + "id": 1538, + "label": "MATH 153", + "title": "Geometry for Secondary Teachers (4)" + }, + { + "dept": "LTFR", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 1539, + "label": "LTFR 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "LTFR", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 1540, + "label": "LTFR 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "DSGN", + "description": "This directed group study course is for small groups of advanced students who wish to complete a one-quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit up to three times. ", + "edges_from": [], + "edges_to": [], + "id": 1541, + "label": "DSGN 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "HIEA", + "description": "of Thought and Religion in China: Daoism (4)", + "edges_from": [], + "edges_to": [], + "id": 1542, + "label": "HIEA 136", + "title": "History" + }, + { + "dept": "COMM", + "description": "An examination of the questions that developments in robotics pose to the scholars of communication: How do we communicate when our interlocutors are nonhumans? How do we study objects that are claimed to be endowed with social and affective character? ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1543, + "label": "COMM 174", + "title": "Communication and Social Machines (4)" + }, + { + "dept": "COMM", + "description": "This course examines the cultural politics of consumption across time and cultures through several concepts: commodity fetishism; conspicuous consumption; taste; class; and identity formation; consumption\u2019s psychological, phenomenological, and poetic dimensions; and contemporary manifestations of globalization and consumer activism. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1544, + "label": "COMM 175", + "title": "Cultures of Consumption (4)" + }, + { + "dept": "COMM", + "description": "The secularization thesis\u2014that as society becomes more modern and standards of living rise, the importance of religion will diminish and be confined to the private sphere\u2014may be wrong. We address religion, communication, culture, and politics in the United States. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1545, + "label": "COMM 176", + "title": "Communication and Religion (4)" + }, + { + "dept": "ECON", + "description": "Risk measures, hedging techniques, value of risk to firms, estimation of optimal hedge ratio, risk management with options and futures. Econ 171 is recommended. ", + "edges_from": [ + 1131 + ], + "edges_to": [], + "id": 1546, + "label": "ECON 174", + "title": "Financial Risk Management (4)" + }, + { + "dept": "POLI", + "description": "Relations After the Cold War: Theory and Prospect (4)", + "edges_from": [], + "edges_to": [], + "id": 1547, + "label": "POLI 145C", + "title": "International" + }, + { + "dept": "COMM", + "description": "Survey of the communication practices found in environment controversies. The sociological aspects of environmental issues will provide background for the investigation of environmental disputes in particular contested areas, such as scientific institutions, communities, workplaces, governments, popular culture, and the media. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1548, + "label": "COMM 171", + "title": "Environmental Communication (4)" + }, + { + "dept": "COMM", + "description": "Specialized advanced study in mediation and interaction with topics to be determined by the instructor for any given quarter. May be taken three times for credit. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1549, + "label": "COMM 172", + "title": "Advanced Topics in Mediation and Interaction (4)" + }, + { + "dept": "COMM", + "description": "In this class we will look closely at the everyday ways in which we interact with technology to discuss sociocultural character of objects, built environments; situated, distributed, and embodied character of knowledges; use of multimodal semiotic resources, talk, gesture, body orientation, and gaze in interaction with technology. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1550, + "label": "COMM 173", + "title": "Interaction with Technology (4)" + }, + { + "dept": "CHEM", + "description": "Practical methods to make drugs currently in use and to design future drugs. Treats both chemical synthesis and biologics like monoclonal antibodies. Topics include fragment-based screening, solid phase synthesis, directed evolution, and bioconjugation as well as efficacy, metabolism, and toxicity. ", + "edges_from": [ + 1552, + 1553, + 1554, + 1555, + 458 + ], + "edges_to": [], + "id": 1551, + "label": "CHEM 168", + "title": "Drug Synthesis and Design (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 952, + 1761 + ], + "edges_to": [ + 5666, + 5667, + 1551, + 5136, + 5266, + 2068, + 5853, + 5118 + ], + "id": 1552, + "label": "CHEM 40C", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 952, + 1761, + 2562, + 959 + ], + "edges_to": [ + 5666, + 5667, + 1551, + 5136, + 5266, + 2068, + 5853, + 5118 + ], + "id": 1553, + "label": "CHEM 40CH", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5666, + 5667, + 1551, + 5136, + 5266, + 2068, + 5853, + 5118 + ], + "id": 1554, + "label": "CHEM 140C", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5666, + 5667, + 1551, + 5136, + 5266, + 2068, + 5853, + 5118 + ], + "id": 1555, + "label": "CHEM 140CH", + "title": "" + }, + { + "dept": "HILA", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 1556, + "label": "HILA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "HILA", + "description": "Study in Latin American History (4)", + "edges_from": [], + "edges_to": [], + "id": 1557, + "label": "HILA 199", + "title": "Independent" + }, + { + "dept": "MUS", + "description": "Second part of intensive historical, analytical, and cultural-aesthetic examination of music in Western culture from the ninth through the twenty-first centuries. Considers both instrumental and vocal repertories, from the Baroque to the Romantic, c. 1600\u20131830. ", + "edges_from": [ + 1560, + 1559 + ], + "edges_to": [], + "id": 1558, + "label": "MUS 120B", + "title": "History of Music in Western Culture II (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 1494 + ], + "edges_to": [ + 3921, + 4298, + 3926, + 3142, + 1558 + ], + "id": 1559, + "label": "MUS 101B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 5804, + 1494, + 3927 + ], + "edges_to": [ + 1558 + ], + "id": 1560, + "label": "MUS 120A", + "title": "" + }, + { + "dept": "MUS", + "description": "Third part of intensive historical, analytical,", + "edges_from": [], + "edges_to": [ + 3924 + ], + "id": 1561, + "label": "MUS 120C", + "title": "History of Music in Western Culture III (4)" + }, + { + "dept": "ECON", + "description": "Survey of theoretical and practical aspects of statistical and economic forecasting. Such topics as long-run and short-run horizons, leading indicator analysis, econometric models, technological and population forecasts, forecast evaluation, and the use of forecasts for public policy. Concurrent enrollment in Econ 120C is permitted. ", + "edges_from": [ + 289 + ], + "edges_to": [], + "id": 1562, + "label": "ECON 178", + "title": "Economic and Business Forecasting (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "(2.5)", + "edges_from": [], + "edges_to": [], + "id": 1563, + "label": "Linguistics/Italian (LIIT) 1DX", + "title": "Analysis of Italian" + }, + { + "dept": "CSE", + "description": "Explores emerging opportunities enabled by cheap sensors and networked computing devices. Small research projects will be conducted in teams, culminating in project presentations at the end of the term. Section will cover material relevant to the project, such as research methods, software engineering, teamwork, and project management. ", + "edges_from": [ + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1565, + 1566, + 1567 + ], + "edges_to": [], + "id": 1564, + "label": "CSE 118", + "title": "Ubiquitous Computing (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1564 + ], + "id": 1565, + "label": "ECE 191", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1564 + ], + "id": 1566, + "label": "ECE 192", + "title": "" + }, + { + "dept": "COMT", + "description": "", + "edges_from": [], + "edges_to": [ + 1564 + ], + "id": 1567, + "label": "COMT 111B", + "title": "" + }, + { + "dept": "COMT", + "description": "", + "edges_from": [], + "edges_to": [ + 1564 + ], + "id": 1568, + "label": "COMT 115", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 3136, + 1181 + ], + "edges_to": [ + 1564 + ], + "id": 1569, + "label": "ECE 111", + "title": "" + }, + { + "dept": "ICAM", + "description": "", + "edges_from": [], + "edges_to": [ + 1564 + ], + "id": 1570, + "label": "ICAM 160B", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 3080, + 4833, + 1072, + 4311 + ], + "edges_to": [ + 1564 + ], + "id": 1571, + "label": "COGS 184", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1564 + ], + "id": 1572, + "label": "ECE 118", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 393, + 395, + 2857 + ], + "edges_to": [ + 4016, + 1564 + ], + "id": 1573, + "label": "COGS 121", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1564 + ], + "id": 1574, + "label": "CSE 131", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 4256 + ], + "edges_to": [ + 1564 + ], + "id": 1575, + "label": "CSE 132B", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 3134 + ], + "edges_to": [ + 4017, + 1564 + ], + "id": 1576, + "label": "COGS 102C", + "title": "" + }, + { + "dept": "HIEU", + "description": "This course examines English responses to the French Revolution, industrialization, and engagement with other cultures during the eighteenth and nineteenth centuries. Readings from high, popular, and folk literature, both serious and satirical, illuminate life in the London metropolis. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 1577, + "label": "HIEU 140GS", + "title": "Art and Society in Nineteenth-Century London (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100C or after successful completion of Econ 100C with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 1578, + "label": "ECON 100CH", + "title": "Honors Microeconomics C (1)" + }, + { + "dept": "ECON", + "description": "Covers various topics in macroeconomics at the frontiers of research, including theory, computation, and empirical work. Emphasis depends on the instructor. Students will read the latest working papers and publications in the covered areas. ", + "edges_from": [ + 1580, + 109, + 1581 + ], + "edges_to": [], + "id": 1579, + "label": "ECON 211", + "title": "Advanced Macroeconomics (4-4-4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1581 + ], + "edges_to": [ + 1794, + 1579, + 109, + 1582, + 1583, + 1584, + 1585 + ], + "id": 1580, + "label": "ECON 210B", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 1794, + 1579, + 1580, + 1582, + 1583, + 1584, + 1585 + ], + "id": 1581, + "label": "ECON 210A", + "title": "" + }, + { + "dept": "ECON", + "description": "This course covers advanced computation techniques that are widely used in macroeconomics, finance, and other fields. Students will learn a range of numerical methods for handling systems of equations, integration, optimization, and other problems. ", + "edges_from": [ + 1580, + 109, + 1581 + ], + "edges_to": [], + "id": 1582, + "label": "ECON 216", + "title": "Computation for Macroeconomics (4)" + }, + { + "dept": "ECON", + "description": "While understanding how the macro economy behaves in the ideal, frictionless setting is indispensable; most of the interesting issues in macro arise as a consequence of some sort of friction or missing market. In this course, we will study some models based on real frictions and financial frictions. Topics covered include convex and nonconvex adjustment costs, housing markets and investment decisions, and financial crises. ", + "edges_from": [ + 1580, + 109, + 1581 + ], + "edges_to": [], + "id": 1583, + "label": "ECON 217", + "title": "Real Frictions and Financial Frictions (4)" + }, + { + "dept": "ECON", + "description": "This course focuses on applied macroeconomics, including econometric testing of macroeconomic theories and empirical measurement guided by theoretical insights. Topics will vary from year to year depending on the latest developments in research. Students will complete the course with a broader understanding of a number of leading topics in macroeconomics as well as a toolkit of estimation and simulation programs. Recommended preparation: Econ 220D. ", + "edges_from": [ + 1580, + 109, + 1581 + ], + "edges_to": [], + "id": 1584, + "label": "ECON 214", + "title": "Applied Macroeconomics (4)" + }, + { + "dept": "ECON", + "description": "This course focuses on theoretical models and empirical analysis aimed at understanding and directing macroeconomic policy, including monetary, fiscal, and structural policies. ", + "edges_from": [ + 1580, + 109, + 1581 + ], + "edges_to": [], + "id": 1585, + "label": "ECON 215", + "title": "Macroeconomic Policy (4)" + }, + { + "dept": "ANAR", + "description": "Concerns the latest developments in digital data capture, analyses, curation, and dissemination for cultural heritage. Introduction to geographic information systems (GIS), spatial analysis, and digital technologies applied to documentation and promotion of cultural heritage and tourism. Lectures and lab exercises. ", + "edges_from": [], + "edges_to": [], + "id": 1586, + "label": "ANAR 121", + "title": "Cyber-Archaeology and World Digital Cultural Heritage (4)" + }, + { + "dept": "ECON", + "description": "This course will cover numerical analysis of dynamic macroeconomic models. Topics include numerical techniques, dynamic programming, linear systems, solution algorithms, and applications to dynamic general equilibrium. ", + "edges_from": [], + "edges_to": [], + "id": 1587, + "label": "ECON 219", + "title": "Readings in Macroeconomics (4)" + }, + { + "dept": "MUS", + "description": "The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music and music humanities majors every quarter a student is a declared music major. Four units or four quarters of enrollment are required of all undergraduate ICAM music majors who choose the MUS 43. Department Seminar option for their Visitor Series requirement. P/NP grades only. May be taken for credit up to twelve times.", + "edges_from": [], + "edges_to": [], + "id": 1588, + "label": "MUS 43", + "title": "Department Seminar (1)" + }, + { + "dept": "ANAR", + "description": "This course explores the archaeology of Asia from the first humans through the rise of state societies. Topics include the environmental setting, pioneer migrations, hunting and gathering societies, plant and animal domestication, and the development of metallurgy, agriculture, technology, trade, and warfare in early civilizations. We consider how ancient political, intellectual, and artistic achievements shape the archaeological heritage in present-day Asia. ", + "edges_from": [], + "edges_to": [], + "id": 1589, + "label": "ANAR 124", + "title": "Archaeology of Asia (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1C. ", + "edges_from": [ + 1592, + 1591 + ], + "edges_to": [], + "id": 1590, + "label": "Linguistics/Spanish (LISP) 1CX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 4824, + 1590 + ], + "id": 1591, + "label": "LISP 1B", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 4824, + 1590 + ], + "id": 1592, + "label": "LISP 1BX", + "title": "" + }, + { + "dept": "POLI", + "description": "This course examines the domestic and international aspects of the drug trade. It will investigate the drug issues from the perspectives of consumers, producers, traffickers, money launderers, and law enforcement. Course material covers the experience of the United States, Latin America, Turkey, Southeast Asia, Western Europe, and Japan.", + "edges_from": [], + "edges_to": [], + "id": 1593, + "label": "POLI 145A", + "title": "International Politics and Drugs (4)" + }, + { + "dept": "HILA", + "description": "History of Women and Gender in Latin America (4)", + "edges_from": [], + "edges_to": [], + "id": 1594, + "label": "HILA 124A", + "title": "" + }, + { + "dept": "PHYS", + "description": "Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, Physics 279.", + "edges_from": [], + "edges_to": [], + "id": 1595, + "label": "PHYS 279", + "title": "Neurodynamics (4)" + }, + { + "dept": "140A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1596, + "label": "140A-B-C", + "title": "Fourth-Year Japanese" + }, + { + "dept": "PHYS", + "description": "This course discusses how living systems acquire information on their environment and exploit it to generate structures and perform functions. Biological sensing of concentrations, reaction-diffusion equations, the Turing mechanism, and applications of information theory to cellular transduction pathways and animal behavior will be presented. Recommended preparation: familiarity with probabilities at the level of undergraduate statistical mechanics and major cellular processes; basic knowledge of information theory.", + "edges_from": [], + "edges_to": [], + "id": 1597, + "label": "PHYS 273", + "title": "Information Theory and Pattern Formation in Biological Systems (4)" + }, + { + "dept": "Linguistics", + "description": "19. Directed Study\u2014Language (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 1598, + "label": "Linguistics (LIDS)", + "title": "" + }, + { + "dept": "PHYS", + "description": "The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from chemotaxis as a model system, signal transduction networks and cellular information processing, mechanics of the membrane, cytoskeletal dynamics, nonlinear Calcium waves. The graduate version will include a report at the level of a research paper. May be scheduled with Physics 177. Recommended preparation: an introductory course in biology is helpful but not necessary.", + "edges_from": [], + "edges_to": [], + "id": 1599, + "label": "PHYS 277", + "title": "Physics of the Cell (4)" + }, + { + "dept": "PHYS", + "description": "A quantitative approach to gene regulation, including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. Recommended preparation: an introductory course in biology is helpful but not necessary.", + "edges_from": [], + "edges_to": [], + "id": 1600, + "label": "PHYS 276", + "title": "Quantitative Molecular Biology (4)" + }, + { + "dept": "PHYS", + "description": "This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. Recommended preparation: an introduction to statistical mechanics, at least at the level of Physics 140A or Chemistry 132.", + "edges_from": [], + "edges_to": [], + "id": 1601, + "label": "PHYS 275", + "title": "Fundamentals of Biological Physics (4)" + }, + { + "dept": "PHYS", + "description": "The course explores genetic diversity within biological populations.\u00a0Genetics fundamentals, mutation/selection equilibria, speciation, Wright-Fisher model, Kimura\u2019s neutral theory,\u00a0Luria-Delbr\u00fcck\u00a0test, the coalescent theory, evolutionary games and statistical methods for quantifying genetic observables such as SNPs, copy number variations, etc., will be discussed.\u00a0Recommended preparation: familiarity with probabilities and PDEs at the undergraduate level; an introduction to basic evolutionary processes.", + "edges_from": [], + "edges_to": [], + "id": 1602, + "label": "PHYS 274", + "title": "Stochastic Processes in Population Genetics (4)" + }, + { + "dept": "MATH", + "description": "Various topics in logic. ", + "edges_from": [], + "edges_to": [], + "id": 1603, + "label": "MATH 268", + "title": "Seminar in Logic (1)" + }, + { + "dept": "MATH", + "description": "Various topics in combinatorics. ", + "edges_from": [], + "edges_to": [], + "id": 1604, + "label": "MATH 269", + "title": "Seminar in Combinatorics (1)" + }, + { + "dept": "ECE", + "description": "Groups of students work to build and demonstrate at least three engineering projects at the beginning, intermediate, and advanced levels. The final project consists of either a new project designed by the student team or extension of an existing project. The student teams also prepare a manual as part of their documentation of the final project. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 1605, + "label": "ECE 196", + "title": "Engineering Hands-on Group Project (4)" + }, + { + "dept": "CHEM", + "description": "Topics of special interest in analytical chemistry. May include, but is not limited to, chemical separation, sample introductions, mass analyzers, ionization schemes, and current state-of-the-art applications in environmental and biological chemistry.", + "edges_from": [], + "edges_to": [], + "id": 1606, + "label": "CHEM 271", + "title": "Special Topics in Analytical Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 173. ", + "edges_from": [], + "edges_to": [], + "id": 1607, + "label": "CHEM 273", + "title": "Atmospheric Chemistry (4)" + }, + { + "dept": "GPPA", + "description": "This course will focus on three dimensions of Chinese environmental and energy policy. First, we will introduce the causes and consequences of environmental and energy problems. Second, we will examine Chinese environmental and energy governance: institutions, laws, and regulations for environmental protection, energy production and consumption. Third, we will explore the practices of the Chinese government to address the emerging environmental and energy options, focusing on climate change. Renumbered from IRGN 467. Students may not receive credit for GPPA 467 and IRGN 467.", + "edges_from": [], + "edges_to": [], + "id": 1608, + "label": "GPPA 467", + "title": "Chinese Environmental and Energy Policy (4)" + }, + { + "dept": "CHEM", + "description": "Introduces mathematical tools", + "edges_from": [], + "edges_to": [], + "id": 1609, + "label": "CHEM 276", + "title": "Numerical Analysis in Multiscale Biology (4)" + }, + { + "dept": "TMC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1610, + "label": "TMC 1", + "title": "First Year Experience (2)" + }, + { + "dept": "WCWP", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching in Warren College Writing courses, under the supervision of the program director. (S/U grade only.) ", + "edges_from": [], + "edges_to": [], + "id": 1611, + "label": "WCWP 500", + "title": "Apprentice Teaching in WCWP (2 or 4)" + }, + { + "dept": "CLRE", + "description": "Students present a research-in-progress talk related to their ongoing ISP work. They will submit an institutional review board (IRB) proposal/report including a master\u2019s protocol that would be submitted to the IRB. This will consist of the data management plans including case report forms, data analysis plans, sample size calculations, and budget. Mentorship and career development topics will be discussed by guest speakers from academia and industry. ", + "edges_from": [ + 1165 + ], + "edges_to": [], + "id": 1612, + "label": "CLRE 295B", + "title": "Independent Study Project (ISP) Seminar Series B (2)" + }, + { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of the field of social psychology, covering a review of the field\u2019s founding principles, classic findings, and a survey of recent findings. Topics will include social perception, attributions and attitudes, stereotypies, social influence, group dynamics, and aggressive and prosocial tendencies. ", + "edges_from": [], + "edges_to": [], + "id": 1613, + "label": "PSYC 104", + "title": "Social Psychology (4)" + }, + { + "dept": "CONT", + "description": "CAMP students continue service learning in underserved local communities by working as paraprofessionals mentoring high school students to prepare for college application and attendance under the guidance of school counselors and the instructor. May be taken for credit two times. ", + "edges_from": [ + 1615 + ], + "edges_to": [], + "id": 1614, + "label": "CONT 150B", + "title": "College Academic Mentor Program Field Study (2)" + }, + { + "dept": "CONT", + "description": "", + "edges_from": [], + "edges_to": [ + 1614 + ], + "id": 1615, + "label": "CONT 150A", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 1616, + "label": "Linguistics/Heritage Languages (LIHL) 134F", + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "EDS", + "description": "Students use their placements in local schools and educational settings to examine leadership research and practice topics raised in the Leadership core courses and Research and Evaluation Design/Methods courses. This is the second course in a three-course series. ", + "edges_from": [ + 1618 + ], + "edges_to": [], + "id": 1617, + "label": "EDS 291B", + "title": "Leadership Research Practicum (2)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 1617 + ], + "id": 1618, + "label": "EDS 291A", + "title": "" + }, + { + "dept": "SE", + "description": "in Structural Engineering (4)", + "edges_from": [], + "edges_to": [ + 2616 + ], + "id": 1619, + "label": "SE 200", + "title": "Applied Mathematics" + }, + { + "dept": "SE", + "description": "Static, dynamic, and energy-based techniques and predicting elastic stability. Linear and nonlinear analysis of classical and shear deformable beams and plates. Ritz, Galerkin, and finite element approaches for frames and reinforced shells. Nonconservative aerodynamic (divergence flutter) and follower forces. Recommended preparation: SE 101A-C and SE 110A or equivalent background in solid mechanics and structural dynamics. ", + "edges_from": [], + "edges_to": [], + "id": 1620, + "label": "SE 202", + "title": "Structural Stability (4)" + }, + { + "dept": "SE", + "description": "Response of discrete linear structural systems to harmonic, periodic and transient excitations. Lagrangian mechanics. Linearization of the equations of motion. Free and forced vibrations of multi degree-of-freedom structures. Normal mode,\u00a0frequency response and numerical methods. Continuous systems. ", + "edges_from": [], + "edges_to": [ + 2616, + 2409, + 5546, + 1623 + ], + "id": 1621, + "label": "SE 203", + "title": "Structural Dynamics (4)" + }, + { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 1622, + "label": "EDS 342A", + "title": "ASL-English" + }, + { + "dept": "SE", + "description": "Advanced analytical techniques to understand nonlinearity in mechanical vibration. Phase plane analysis instability, and bifurcations. Application in nonlinear structural resonance. Introduction to chaotic dynamics, advanced time series analysis, and using chaotic dynamics in applications such as structural damage assessment. ", + "edges_from": [ + 1621 + ], + "edges_to": [], + "id": 1623, + "label": "SE 205", + "title": "Nonlinear Mechanical Vibrations (4)" + }, + { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 1624, + "label": "EDS 342C", + "title": "ASL-English" + }, + { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 1625, + "label": "EDS 342B", + "title": "ASL-English" + }, + { + "dept": "HITO", + "description": "Medieval and early modern origins of constitutional ideas and institutions. The question of the course is: Where did the ideas and institutions embodied in the constitutions of the U.S. (1787) and of France (1791) come from? Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 1626, + "label": "HITO 274", + "title": "The Foundations of Constitutional Law (4)" + }, + { + "dept": "CHEM", + "description": "Theoretical basis of quantum", + "edges_from": [], + "edges_to": [], + "id": 1627, + "label": "CHEM 230A", + "title": "Quantum Mechanics I (4)" + }, + { + "dept": "CHEM", + "description": "Mechanics II (4)", + "edges_from": [], + "edges_to": [], + "id": 1628, + "label": "CHEM 230B", + "title": "Quantum" + }, + { + "dept": "BIOM", + "description": "This course will examine the innate and adaptive immune responses of humans to microbial infection. In parallel, we will explore the virulence mechanisms through which certain medically important viruses, bacteria, fungi, and parasites subvert host defense to produce infectious disease. Emphasis will be placed on basic molecular genetic and cellular approaches to understanding microbial pathogenesis and host susceptibility, including progress toward novel antibiotic and immune stimulatory therapies. ", + "edges_from": [ + 523, + 524, + 525 + ], + "edges_to": [], + "id": 1629, + "label": "BIOM 253", + "title": "Pathogens and Host Defense (3)" + }, + { + "dept": "CAT", + "description": "Course designated for lower-division Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive then individual special studies. ", + "edges_from": [], + "edges_to": [], + "id": 1630, + "label": "CAT 98", + "title": "Culture, Art, and Technology Lower-Division Group Study (2 or 4)" + }, + { + "dept": "LTWL", + "description": "A study of various bodies of myth: their content, form, and meaning. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1631, + "label": "LTWL 100", + "title": "Mythology (4)" + }, + { + "dept": "WARR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1632, + "label": "WARR 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "LTWL", + "description": "Greek and Roman literature in translation. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1633, + "label": "LTWL 106", + "title": "The Classical Tradition (4)" + }, + { + "dept": "WARR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1634, + "label": "WARR 1", + "title": "First Year Experience (2)" + }, + { + "dept": "LTEN", + "description": "Consideration of one or more major figures, texts, or trends in the Victorian period. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1635, + "label": "LTEN 246", + "title": "Victorian Literature (4)" + }, + { + "dept": "LTEN", + "description": "Consideration of some of the principal writers and movements in nineteenth-century American literature. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1636, + "label": "LTEN 245", + "title": "Nineteenth-Century American Studies (4)" + }, + { + "dept": "HIUS", + "description": "Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 1637, + "label": "HIUS 286", + "title": "Topics in US Economic History (4)" + }, + { + "dept": "USP", + "description": "(Same as SOCI 183.) How does where you grow up affect where you end up? This course explores \u201cwho gets what where and why,\u201d by examining spatial inequalities in life chances across regions, rural and urban communities, and divergent local economies in the U.S. We will \u201cplace\u201d places within their economic, socio-cultural, and historical contexts. Readings and exercises will uncover spatial variation in inequalities by race/ethnicity, immigrant status, gender, class, and LGBTQIA status that national averages obscure. Students may not receive credit for SOCI 183 and USP 183. ", + "edges_from": [], + "edges_to": [], + "id": 1638, + "label": "USP 183", + "title": "The Geography of American Opportunity (4)" + }, + { + "dept": "USP", + "description": "Introduction to the history and current state of urban transportation planning, including the relationship between transportation and urban form; role of automotive, mass transit, and alternative modes; methods for transportation systems analysis; decision-making, regulatory, and financing mechanisms; and public attitudes. ", + "edges_from": [], + "edges_to": [], + "id": 1639, + "label": "USP 180", + "title": "Transportation Planning (4)" + }, + { + "dept": "USP", + "description": "Livable cities rely on balanced transportation systems that can mitigate the negative impacts of car-oriented environment and society. This course will explore the role of public transit in creating a balanced transportation system. A variety of public transportation systems will be analyzed. ", + "edges_from": [], + "edges_to": [], + "id": 1640, + "label": "USP 181", + "title": "Public Transportation (4)" + }, + { + "dept": "USP", + "description": "An undergraduate course designed to cover various aspects of Urban Planning. May be taken for credit up to two times. ", + "edges_from": [], + "edges_to": [], + "id": 1641, + "label": "USP 189", + "title": "Special Topics in Urban Planning (4)" + }, + { + "dept": "ANTH", + "description": "Students writing their dissertations present work-in-progress and receive structured peer and mentor feedback. Supervising or coparticipating faculty lead workshops about doctoral completion, publication, and other professionalization processes. S/U grades only. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 1642, + "label": "ANTH 254", + "title": "Dissertation Practicum (4)" + }, + { + "dept": "ANTH", + "description": "This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ", + "edges_from": [], + "edges_to": [], + "id": 1643, + "label": "ANTH 255", + "title": "Understanding the Human Social Order (4)" + }, + { + "dept": "ANTH", + "description": "We will review the neural basis of cognition in humans and other primates. Neurobiological findings will be related to contributions from various subfields of anthropology. Brain/mind associations will be explored in the context of hominid evolution. ", + "edges_from": [ + 1645 + ], + "edges_to": [], + "id": 1644, + "label": "ANTH 256", + "title": "Seminar on Brain Evolution\u00a0(4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1644 + ], + "id": 1645, + "label": "ANGR 256", + "title": "" + }, + { + "dept": "ANTH", + "description": "This seminar critically examines social, cultural, and psychological theories of the person, and their relationship to conceptions of the person found in moral political and religious discourses. It explores the role of concepts of the person in ethnographic research. Formerly known as ANGR 257. ", + "edges_from": [], + "edges_to": [], + "id": 1646, + "label": "ANTH 257", + "title": "Mind, Self, and Identity (4)" + }, + { + "dept": "ANTH", + "description": "This graduate seminar will explore the theories and critiques of the contemporary human rights framework, through history and ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 1647, + "label": "ANTH 250", + "title": "The Anthropology of Human Rights (4)" + }, + { + "dept": "ANTH", + "description": "How is the idea of modernity experienced in diverse cultural and historical settings? This seminar focuses on ethnographic representations of modernity, exploring such topics as globalization, mass media, consumerism, gender and modernity, modern religious movements, and theories of modernity. ", + "edges_from": [], + "edges_to": [], + "id": 1648, + "label": "ANTH 251", + "title": "The Ethnography of Modernity (4)" + }, + { + "dept": "ANTH", + "description": "This seminar will consider the theoretical constructions and deployments of neoliberalism, which has produced an assemblage of capitalist restructuring, transformed governance, and newly produced subjectivities. ", + "edges_from": [], + "edges_to": [], + "id": 1649, + "label": "ANTH 252", + "title": "Interrogating Neoliberalism (4)" + }, + { + "dept": "ANTH", + "description": "This course pulls on classical Western social theory as well as recent ethnographies to examine the role of sympathetic engagement in liberal governance. We also interrogate the role anthropology has played as liberalism\u2019s witness in this regard. ", + "edges_from": [], + "edges_to": [], + "id": 1650, + "label": "ANTH 253", + "title": "Who Cares? Sympathy and the Conduct of Liberalism (4)" + }, + { + "dept": "ANTH", + "description": "Specialized scientific techniques are increasingly important to archaeology. This seminar examines chronometric date techniques, site-formation processes, and geoarchaeology and pedology, chemical analyses of soils, zooarchaeology, palaeoethnobotany, and how land-use strategies can be inferred from archaeological remains. ", + "edges_from": [ + 1652 + ], + "edges_to": [], + "id": 1651, + "label": "ANTH 258", + "title": "Analytical Methods in Archaeology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1651 + ], + "id": 1652, + "label": "ANGR 258", + "title": "" + }, + { + "dept": "ANTH", + "description": "This seminar in psychological/psychiatric anthropology takes a comparative approach to the study of gender and mental health. Culture and feminist theory is employed to address questions of gender in relation to various problems, such as depression, anxiety, and eating disorders. ", + "edges_from": [], + "edges_to": [], + "id": 1653, + "label": "ANTH 259", + "title": "Gender and Mental Health (4)" + }, + { + "dept": "ECON", + "description": "Interaction between economic forces and demographic changes are considered, as are demographic composition and analysis; fertility, mortality, and migration processes and trends. Course emphasizes the creation, evaluation, and interpretation of forecasts for states, regions, and subcounty areas. Econ 178 is recommended. ", + "edges_from": [ + 291, + 292 + ], + "edges_to": [], + "id": 1654, + "label": "ECON 125", + "title": "Demographic Analysis and Forecasting (4)" + }, + { + "dept": "GPIM", + "description": "This research-oriented class introduces: (a) frameworks from organization theory and strategy on innovation, corporate renewal, and system change; (b) the specific situation of Japan, including Japan\u2019s national system of innovation, research consortia and industrial policy, business models, HR practices, VC, and entrepreneurship. Ongoing changes toward open innovation and new management of technology in Japan are the subject of student research projects. May not receive credit for GPIM 410 and IRGN 490. Japan Lab.", + "edges_from": [], + "edges_to": [], + "id": 1655, + "label": "GPIM 410", + "title": "Innovation and Entrepreneurship in Japan (4)" + }, + { + "dept": "VIS", + "description": "This collection of courses gathers, under one cover, films that are strongly marked by period, geography, and the culture within which they received their dominating local quality. These courses pay particular attention to the stamp of place\u2014climate, dress, habitation, language, music, politics\u2014as well as the filmic moves that helped color such works as environmental. The series takes in the following subjects: Third World films, the Munich films (the new wave of Germans who made their first features in Munich following 1967), Japanese movies, films of the American thirties and their relationship to current thought, American Westerns, ethnographic film, Brazil\u2019s Cinema Novo, etc. Specific topics to be covered will vary with the instructor. May be repeated twice for credit. Materials fees required. ", + "edges_from": [ + 1657 + ], + "edges_to": [], + "id": 1656, + "label": "VIS 152", + "title": "Film in Social Context (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 4681, + 5391, + 1656, + 1658, + 1660, + 1661 + ], + "id": 1657, + "label": "VIS 84", + "title": "" + }, + { + "dept": "VIS", + "description": "An inquiry into a specialized alternative history of film, consisting of experimental works made outside the conventions of the movie industry that are closer in their style and nature to experimental work in painting, poetry, the sciences, etc., than to the mainstream theatrical cinema. Materials fees required. ", + "edges_from": [ + 1657 + ], + "edges_to": [], + "id": 1658, + "label": "VIS 151", + "title": "History of the Experimental Film (4)" + }, + { + "dept": "GPIM", + "description": "This seminar examines the ability of firms to increase shareholder value through improved environmental performance. Topics include product differentiation, strategic use of regulations, the \u201cPorter hypothesis,\u201d and environmental management systems. Readings include case studies and research articles. Renumbered from IRGN 413. Students may not receive credit for GPIM 413 and IRGN 413.", + "edges_from": [], + "edges_to": [], + "id": 1659, + "label": "GPIM 413", + "title": "Corporate Strategy and the Environment (4)" + }, + { + "dept": "VIS", + "description": "This course introduces students to the developing history of cinema in the Latin American region. It explores the multiple authors and film movements that engage cinema as an art form in relation to issues of modernization, development, and political and social crisis. It will regard the history of cinema in the subcontinent as a force generating important cultural transformations within the complex, conflictual processes of modernization. Students may not receive credit for both VIS 156 and VIS 125F. ", + "edges_from": [ + 1657 + ], + "edges_to": [], + "id": 1660, + "label": "VIS 156", + "title": "Latino American Cinema (4)" + }, + { + "dept": "VIS", + "description": "Examines the work of a single director or group of directors, considering the aesthetic, social, political, and/or historical aspects of the body of films and, if relevant, the directors\u2019 broader sphere of creative production, which may include photography, art practice, writing, and/or other contributions besides film directing. May be taken up to two times for credit. Materials fees required. ", + "edges_from": [ + 1657 + ], + "edges_to": [], + "id": 1661, + "label": "VIS 155", + "title": "The Director Series (4)" + }, + { + "dept": "VIS", + "description": "Close examination of a group of films on the level of form, technique, style, and/or poetics. Emphasis will be placed on collective film viewing, in-class discussion, and formal and/or narrative analysis. Specific topics to be covered will vary by quarter and instructor. May be taken up to two times for credit.", + "edges_from": [], + "edges_to": [], + "id": 1662, + "label": "VIS 154", + "title": "Hard Look at the Movies (4)" + }, + { + "dept": "GPIM", + "description": "This course provides an introduction to derivative assets such as options, futures, and swap contracts. The main emphasis is on their valuation, use in hedging, and role as components of liabilities that mitigate risk and agency problems in business firms. Renumbered from IRGN 419. Students may not receive credit for GPIM 419 and IRGN 419.", + "edges_from": [], + "edges_to": [], + "id": 1663, + "label": "GPIM 419", + "title": "Risk Management (4)" + }, + { + "dept": "VIS", + "description": "Aims to provide historical context for computer arts by examining the interaction between the arts, media technologies, and sciences in different historical periods. Topics vary (e.g., Renaissance perspective, futurism and technology, and computer art of the 1950s and 1960s). Materials fees required. ", + "edges_from": [], + "edges_to": [ + 5554, + 5391 + ], + "id": 1664, + "label": "VIS 159", + "title": "History of Art and Technology (4)" + }, + { + "dept": "VIS", + "description": "Photography is so ubiquitous a part of our culture that it seems to defy any simple historical definition. Accordingly, this course presents a doubled account of the medium; it explores both the historical and cultural specificity of a singular photography as well as some of the multitude of photographies that inhabit our world. Will examine a number of the most important photographic themes from the past two hundred years. ", + "edges_from": [], + "edges_to": [], + "id": 1665, + "label": "VIS 158", + "title": "Histories of Photography (4)" + }, + { + "dept": "ETHN", + "description": "How did the United States become an empire? This course approaches the historical and contemporary problem of the United States as an imperial power through analyses of hierarchies and cultures at home and outside of formal US borders. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 1666, + "label": "ETHN 268", + "title": "Theories and Cultures of US Imperialism (4)" + }, + { + "dept": "NEU", + "description": "Independent clinical study for medical students (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 1667, + "label": "NEU 496", + "title": "Clinical Independent Study (1\u201321)" + }, + { + "dept": "COGS", + "description": "Specific topics in cognitive science are discussed. (May be repeated when topics vary.)", + "edges_from": [], + "edges_to": [], + "id": 1668, + "label": "COGS 260", + "title": "Seminar on Special Topics (1\u20134)" + }, + { + "dept": "BENG", + "description": "A combined lecture and laboratory course that provides an introductory treatment of probability theory, including distribution functions, moments, and random variables. Practical applications include estimation of means and variances, hypothesis testing, sampling theory, and linear regression. ", + "edges_from": [ + 141, + 140, + 477, + 135 + ], + "edges_to": [ + 3642, + 5550 + ], + "id": 1669, + "label": "BENG 134", + "title": "Measurements, Statistics, and Probability (4)" + }, + { + "dept": "BENG", + "description": "Discrete systems: linearity, convolution, impulse, and step responses. Linear systems properties. Difference equations. Fourier Series. Continuous FS. Discrete FS. Periodic signals, filtering, and FT. Discrete FT examples. Frequency response of linear systems. Sampling. Relationship between FT, DFT. Laplace Transform. LT and inverse LT. ", + "edges_from": [ + 1672, + 1671 + ], + "edges_to": [ + 5550 + ], + "id": 1670, + "label": "BENG 135", + "title": "Biomedical Signals and Systems (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 258 + ], + "edges_to": [ + 3144, + 73, + 5902, + 1670 + ], + "id": 1671, + "label": "ECE 45", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 139, + 135 + ], + "edges_to": [ + 5550, + 1670 + ], + "id": 1672, + "label": "BENG 133", + "title": "" + }, + { + "dept": "BENG", + "description": "An\u00a0introduction to physical principles that govern biological matter and processes, with engineering examples. Thermodynamic principles, structural basis of life, molecular reactions and kinetics, and models to illustrate biological phenomena. ", + "edges_from": [ + 129, + 133, + 135, + 220, + 29, + 30, + 31 + ], + "edges_to": [], + "id": 1673, + "label": "BENG 130", + "title": "Biotechnology Thermodynamics and Kinetics (4)" + }, + { + "dept": "CSE", + "description": "Selected topics in computer graphics, with an emphasis on recent developments. Possible topics include computer animation, shape modeling and analysis, image synthesis, appearance modeling, and real-time rendering. CSE 168 or CSE 169 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 1674, + "label": "CSE 274", + "title": "Selected Topics in Graphics (2\u20134)" + }, + { + "dept": "HIUS", + "description": "103. The American City in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 1675, + "label": "HIUS 148/USP", + "title": "" + }, + { + "dept": "MSED", + "description": "Students will do independent study and research in preparation of their doctoral dissertation under the supervision of MSED faculty.", + "edges_from": [], + "edges_to": [], + "id": 1676, + "label": "MSED 299", + "title": "Reading and Research (1\u201312)" + }, + { + "dept": "CHEM", + "description": "Independent literature or laboratory research", + "edges_from": [], + "edges_to": [], + "id": 1677, + "label": "CHEM 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "POLI", + "description": "An introduction to Marxist thought from its roots in the Western tradition through its development in non-Western contexts. Emphasis is placed on how adaptations were made in Marxism to accommodate the specific challenges of each environment.", + "edges_from": [], + "edges_to": [], + "id": 1678, + "label": "POLI 114B", + "title": "Marxist Political Thought (4)" + }, + { + "dept": "HITO", + "description": "The course will explore the cultural, religious, and social relationships between the three major religious groups in the medieval Mediterranean: Muslims, Christians, and Jews from the sixth through sixteenth centuries AD.", + "edges_from": [], + "edges_to": [], + "id": 1679, + "label": "HITO 101", + "title": "Jews, Christians, and Muslims (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with EDS 31.) Explores routine challenges and exceptional", + "edges_from": [], + "edges_to": [], + "id": 1680, + "label": "CHEM 96", + "title": "Introduction to Teaching Science (2)" + }, + { + "dept": "DSGN", + "description": "Students study, research, and implement project under the direction of a member of the faculty. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ", + "edges_from": [], + "edges_to": [], + "id": 1681, + "label": "DSGN 299", + "title": "Independent Project (2 or 4)" + }, + { + "dept": "HITO", + "description": "This course explores Jewish women\u2019s experiences from the seventeenth century to the present, covering Europe, the United States, and Israel. Examines work, marriage, motherhood, spirituality, education, community, and politics across three centuries and three continents.\u00a0", + "edges_from": [ + 262, + 263, + 265, + 267, + 268, + 269, + 270, + 271, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 554, + 52, + 53, + 54, + 1089, + 75, + 76, + 77 + ], + "edges_to": [], + "id": 1682, + "label": "HITO 106", + "title": "Love and Family in the Jewish Past (4)" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1683, + "label": "HILD 14", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682, + 2236 + ], + "id": 1684, + "label": "HILD 7A", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1685, + "label": "HILD 12", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682, + 2236 + ], + "id": 1686, + "label": "HILD 7C", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682, + 2236 + ], + "id": 1687, + "label": "HILD 7B", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 299, + 300, + 270, + 271, + 1688, + 5404 + ], + "edges_to": [ + 1688, + 1682 + ], + "id": 1688, + "label": "MMW 14", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 299, + 300, + 270, + 271, + 1689, + 5433 + ], + "edges_to": [ + 1689, + 1682 + ], + "id": 1689, + "label": "MMW 15", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1690, + "label": "HILD 11", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1691, + "label": "HUM 5", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1692, + "label": "HILD 10", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1693, + "label": "HUM 4", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1694, + "label": "HILD 2B", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1695, + "label": "HILD 2C", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1696, + "label": "HILD 2A", + "title": "" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1697, + "label": "MCWP 41", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1698, + "label": "MMW 22", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1699, + "label": "MMW 21", + "title": "" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 1682 + ], + "id": 1700, + "label": "MCWP 125", + "title": "" + }, + { + "dept": "HITO", + "description": "Topics include the political emancipation of the Jews of Europe; the emergence of Reform, Conservative, and Modern Orthodox Judaism; Hasidism; modern anti-Semitism; Jewish socialism; Zionism; the Holocaust; the American Jewish community; the State of Israel.", + "edges_from": [], + "edges_to": [], + "id": 1701, + "label": "HITO 105", + "title": "Jewish Modernity from 1648 to 1948 (4)" + }, + { + "dept": "HITO", + "description": "Jews and Judaism in the Ancient and Medieval Worlds (4)", + "edges_from": [], + "edges_to": [], + "id": 1702, + "label": "HITO 104", + "title": "The" + }, + { + "dept": "GPPS", + "description": "Are authoritarian regimes fundamentally different from democratic ones? If so, how are they different and what are the political and economic implications of such differences? This course will explore the different logics of authoritarian politics, followed by an investigation of the growth and inequality implications of those politics. Renumbered from IRGN 481. Students may not receive credit for GPPS 481 and IRGN 481.", + "edges_from": [], + "edges_to": [], + "id": 1703, + "label": "GPPS 481: The Political Economy of Authoritarian Regimes (4)", + "title": "" + }, + { + "dept": "BIOM", + "description": "This course will examine the basic principles of molecular and cellular biology and their impact on medicine focusing on classic discoveries and examples of approaches to current experimental problems. Emphasis areas will vary but will include genes and genomics, chromosome biology and nuclear structure, transcriptional regulation, RNA processing, cell cycle control, cell growth and death, cell differentiation and stem cell biology, molecular motors and motility, membrane trafficking and signaling. ", + "edges_from": [ + 523, + 524, + 525 + ], + "edges_to": [], + "id": 1704, + "label": "BIOM 254", + "title": "Molecular and Cell Biology (3)" + }, + { + "dept": "BIMM", + "description": "This course explores the molecular and cellular pathways that become dysregulated during carcinogenesis. We will synthesize principles from genetics and molecular, cellular, and developmental biology to investigate how normal cells evolve into tumors. We will examine how tissues distinct from the tumor itself can participate in both facilitating and fighting tumor growth and explore historical and current approaches employed to inhibit tumorigenesis. ", + "edges_from": [ + 954 + ], + "edges_to": [], + "id": 1705, + "label": "BIMM 134", + "title": "Biology of Cancer (4)" + }, + { + "dept": "BIMM", + "description": "Prokaryotic cell biology will be discussed primarily from physiological and biochemical standpoints with a focus on conceptual understanding, integration, and mechanism. Topics will vary from year to year but will include the following themes: bioenergetics, cell polarity, cell adhesion, the molecular basis of morphogenesis and differentiation, prokaryotic motility and behavior, rotary and linear molecular machines, bacterial organelles, pheromones and messengers, circadian rhythms, biological warfare, and bioremediation. ", + "edges_from": [ + 1193, + 410 + ], + "edges_to": [], + "id": 1706, + "label": "BIMM 130", + "title": "Microbial Physiology (4)" + }, + { + "dept": "MAE", + "description": "Computer programming in Matlab with elementary numerical analysis of engineering problems. Arithmetic and logical operations, arrays, graphical presentation of computations, symbolic mathematics, solutions of equations, and introduction to data structures. ", + "edges_from": [ + 129, + 133 + ], + "edges_to": [], + "id": 1707, + "label": "MAE 08", + "title": "Matlab Programming for Engineering Analysis (4)" + }, + { + "dept": "TDGR", + "description": "A seminar focusing on the current directing projects of all graduate directing students. Depending upon individual student needs, the work may include play selection, historical or sociological research, and discussion of emerging directorial concepts, the rehearsal process, and post-production evaluation. ", + "edges_from": [], + "edges_to": [], + "id": 1708, + "label": "TDGR 240", + "title": "Directing Seminar (1\u20136)" + }, + { + "dept": "TDGR", + "description": "Lab (4)", + "edges_from": [], + "edges_to": [], + "id": 1709, + "label": "TDGR 243", + "title": "Director/Playwright/Choreographer" + }, + { + "dept": "TDGR", + "description": "Students enrolled in this course will work on productions in the function of a director. This will include staging, creative interpretation, blocking, etc. ", + "edges_from": [], + "edges_to": [], + "id": 1710, + "label": "TDGR 245", + "title": "Directing Practicum (4)" + }, + { + "dept": "TDGR", + "description": "A course where playwrights and actors work together to develop", + "edges_from": [], + "edges_to": [], + "id": 1711, + "label": "TDGR 244", + "title": "New Plays Workshop (2)" + }, + { + "dept": "HIEU", + "description": "Language and cultural study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fee may be required. Students may not receive credit for both HIEU 124 and HIEU 124GS. Students must apply and be accepted into the Global Seminar Program.", + "edges_from": [], + "edges_to": [], + "id": 1712, + "label": "HIEU 124GS", + "title": "The City Italy (4)" + }, + { + "dept": "ANSC", + "description": "This course explores contemporary cultural life in South Asia by examining selected works of literature, film, and ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 1713, + "label": "ANSC 165", + "title": "Contemporary South Asia (4)" + }, + { + "dept": "ANSC", + "description": "Explores films from China, India, Japan and other Asian countries. Popular, documentary, and ethnographic films are examined for what they reveal about family life, gender, politics, religion, social change and everyday experience in South Asia. ", + "edges_from": [], + "edges_to": [], + "id": 1714, + "label": "ANSC 166", + "title": "Film and Culture in Asia (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the use of language difference in negotiating identity in bilingual and bidialectal communities, and in structuring interethnic relations. It addresses social tensions around language variation and the social significance of language choices in several societies. ", + "edges_from": [], + "edges_to": [], + "id": 1715, + "label": "ANSC 162", + "title": "Language, Identity, and Community (4)" + }, + { + "dept": "MSED", + "description": "Each practicum lasts five weeks and is designed to inform students about a faculty member\u2019s research program. Assignment as a research assistant may be used as one practicum. This course should be taken during the first year. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 1716, + "label": "MSED 295", + "title": "MSED Orientation Practicum (1\u20133)" + }, + { + "dept": "ANSC", + "description": "This course explores experiences of the human life cycle\u2014birth, death, love, family relations, coming of age, suffering, the quest for identity, the need for meaning\u2014from diverse cultural perspectives. Examines anthropological thought concerning what it means to be human. ", + "edges_from": [], + "edges_to": [], + "id": 1717, + "label": "ANSC 168", + "title": "The Human Condition (4)" + }, + { + "dept": "ANSC", + "description": "Examines the role of culture in the way people perceive and interact with the natural environment. Combines reading of select anthropological studies with training in ethnographic research methods. Students develop a research project and analyze data. Limit: fifteen students. ", + "edges_from": [], + "edges_to": [], + "id": 1718, + "label": "ANSC 169", + "title": "Culture and Environment: Research Seminar and Practicum (4)" + }, + { + "dept": "HIGR", + "description": "Scholarship on European History, 1715\u20131850 (4)", + "edges_from": [], + "edges_to": [], + "id": 1719, + "label": "HIGR 221", + "title": "Historical" + }, + { + "dept": "COGS", + "description": "This course is designed for students interested in learning about basic tools and technologies for dealing with big image data in the sense of collecting, crawling, processing, and classifying images, focusing on matching, hashing, deep learning, and online learning.", + "edges_from": [], + "edges_to": [], + "id": 1720, + "label": "COGS 283", + "title": "Big Visual Data Processing (4)" + }, + { + "dept": "COGS", + "description": "Brain rhythms play a critical role in perception and cognition. What are they? Where do they come from? This course will examine the origin and function of neural oscillations and the role they play in neural computation, representation, and cognition. ", + "edges_from": [], + "edges_to": [], + "id": 1721, + "label": "COGS 280", + "title": "Neural Oscillations (4)" + }, + { + "dept": "TDGR", + "description": "Professional Preparation for the Actor (4)", + "edges_from": [], + "edges_to": [], + "id": 1722, + "label": "TDGR 231A", + "title": "" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Portuguese. Must be taken in conjunction with LIPO 1D. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 1724, + 1725 + ], + "edges_to": [], + "id": 1723, + "label": "Linguistics/Portuguese (LIPO) 1DX", + "title": "Analysis of Portuguese (2.5)" + }, + { + "dept": "LIPO", + "description": "", + "edges_from": [], + "edges_to": [ + 3850, + 1723 + ], + "id": 1724, + "label": "LIPO 1C", + "title": "" + }, + { + "dept": "LIPO", + "description": "", + "edges_from": [], + "edges_to": [ + 3850, + 1723 + ], + "id": 1725, + "label": "LIPO 1CX", + "title": "" + }, + { + "dept": "LTCS", + "description": "Introduction to a script programming language (like Python + NLTK or R) and its usages in the processing of literary and historical digital corpora.", + "edges_from": [], + "edges_to": [], + "id": 1726, + "label": "LTCS 180", + "title": "Programming for the Humanities (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 126.) This course will examine the development of the blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of urban blues and the close relationship of the blues with jazz, rhythm and blues, and rock and roll.", + "edges_from": [], + "edges_to": [], + "id": 1727, + "label": "ETHN 178", + "title": "Blues: An Oral Tradition (4)" + }, + { + "dept": "NANO", + "description": "Introduction to DNA nanotechnology. Topics include basic design principles for DNA nanostructures and DNA origami, DNA nanomotors, computing, and the use of DNA nanotechnology in organizing other materials, nanofabrication, biosensing, and drug delivery.", + "edges_from": [], + "edges_to": [], + "id": 1728, + "label": "NANO 268", + "title": "DNA Nanotechnology (4)" + }, + { + "dept": "LIGN", + "description": "A forum for discussion of current issues. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 1729, + "label": "LIGN 200", + "title": "Research Forum (2)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in topology. Topics include generalized cohomology theory, spectral sequences, K-theory, homotophy theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 1731 + ], + "edges_to": [], + "id": 1730, + "label": "MATH 291B", + "title": "Further Topics in Topology (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1730 + ], + "id": 1731, + "label": "MATH 291A", + "title": "" + }, + { + "dept": "ETHN", + "description": "Through in-depth studies of housing segregation, urban renewal and displacement, neighborhood race effects, and the location of hazards and amenities, this course examines how space becomes racialized and how race becomes spatialized in the contemporary United States.", + "edges_from": [], + "edges_to": [], + "id": 1732, + "label": "ETHN 104", + "title": "Race, Space, and Segregation (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 104.) This course will examine the city as a crucible of ethnic identity, exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present.", + "edges_from": [], + "edges_to": [], + "id": 1733, + "label": "ETHN 105", + "title": "Ethnic Diversity and the City (4)" + }, + { + "dept": "ETHN", + "description": "Using interdisciplinary approaches, this course examines some of the contexts in which the conditions of life and death become sites of political, economic, and cultural significance, and how categories of difference impact access to the protections of \u2018humanity.\u2019", + "edges_from": [], + "edges_to": [], + "id": 1734, + "label": "ETHN 106", + "title": "Life, Death, and the Human (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 130.) This is a research course examining social, economic, and political issues in ethnic and racial communities through a variety of research methods that may include interviews and archival, library, and historical research.", + "edges_from": [], + "edges_to": [], + "id": 1735, + "label": "ETHN 107", + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + { + "dept": "ETHN", + "description": "An upper-division lecture course studying representations of ethnicity in the American cinema. Topics include ethnic images as narrative devices, the social implications of ethnic images, and the role of film in shaping and reflecting societal power relations.", + "edges_from": [], + "edges_to": [], + "id": 1736, + "label": "ETHN 101", + "title": "Ethnic Images in Film (4)" + }, + { + "dept": "ETHN", + "description": "This course examines the role of science and technology in forming popular conceptions of race, gender and class, and vice versa. We also consider how some populations benefit from the results of experimentation while others come to be its subjects.", + "edges_from": [], + "edges_to": [], + "id": 1737, + "label": "ETHN 102", + "title": "Science and Technology in Society: Race/Gender/Class (4)" + }, + { + "dept": "ETHN", + "description": "This course will examine the concept of environmental racism, the empirical evidence of its widespread existence, and the efforts by government, residents, workers, and activists to combat it. We will examine those forces that create environmental injustices in order to understand its causes as well as its consequences. Students are expected to learn and apply several concepts and social scientific theories to the course material.", + "edges_from": [], + "edges_to": [], + "id": 1738, + "label": "ETHN 103", + "title": "Environmental Racism (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 151.) Aggrieved groups often generate distinctive forms of cultural expression by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States.", + "edges_from": [], + "edges_to": [], + "id": 1739, + "label": "ETHN 108", + "title": "Race, Culture, and Social Change (4)" + }, + { + "dept": "ETHN", + "description": "This course explores collective mobilizations for resources, recognition, and power by members of aggrieved racialized groups, past and present. Emphasis will be placed on the conditions that generate collective movements, the strategies and ideologies that these movements have developed, and on the prospect for collective mobilization for change within aggrieved communities in the present and future.", + "edges_from": [], + "edges_to": [], + "id": 1740, + "label": "ETHN 109", + "title": "Race and Social Movements (4)" + }, + { + "dept": "BGGN", + "description": "To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. First course in series. ", + "edges_from": [], + "edges_to": [], + "id": 1741, + "label": "BGGN 238A", + "title": "Integrative Microbiology I (4)" + }, + { + "dept": "CSE", + "description": "Private and public key cryptography, introduction to reduction based proofs of security, concrete security, block ciphers, pseudorandom functions and generators, symmetric encryption, asymmetric encryption, computational number theory, RSA and discrete log systems, message authentication, digital signatures, key distribution and key management. ", + "edges_from": [ + 1743 + ], + "edges_to": [ + 3623 + ], + "id": 1742, + "label": "CSE 207", + "title": "Modern Cryptography (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 11 + ], + "edges_to": [ + 5784, + 2116, + 5750, + 1742, + 3623 + ], + "id": 1743, + "label": "CSE 202", + "title": "" + }, + { + "dept": "GPPS", + "description": "This course will analyze post-1949 Chinese politics, including political institutions, the policy-making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 261. Students may not receive credit for GPPS 204 and IRGN 261. May be coscheduled with GPPS 404.", + "edges_from": [], + "edges_to": [], + "id": 1744, + "label": "GPPS 204", + "title": "Chinese Politics (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1B. ", + "edges_from": [ + 1746, + 1747 + ], + "edges_to": [], + "id": 1745, + "label": "Linguistics/Spanish (LISP) 1BX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 1745, + 4823 + ], + "id": 1746, + "label": "LISP 1A", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 1745, + 4823 + ], + "id": 1747, + "label": "LISP 1AX", + "title": "" + }, + { + "dept": "BGGN", + "description": "This course covers graduate level lectures on developmental biology, emphasizing the use of genetically tractable model systems. Discussion of recent research articles is an integral aspect of this course. Students are introduced to classical experiments and given detailed coverage of recent fundamental findings in developmental biology. ", + "edges_from": [], + "edges_to": [], + "id": 1748, + "label": "BGGN 228", + "title": "Graduate Developmental Biology (4)" + }, + { + "dept": "BGGN", + "description": "This course consists of a review of fundamental concepts together with an in-depth analysis of the structure, genetics, multiplication and oncogenicity of animal viruses. Particular emphasis will be given to the DNA and RNA tumor viruses. The format of this section includes lectures and discussion of selected papers. ", + "edges_from": [], + "edges_to": [], + "id": 1749, + "label": "BGGN 226", + "title": "Graduate Animal Virology (4)" + }, + { + "dept": "MGT", + "description": "Directed individual study", + "edges_from": [], + "edges_to": [], + "id": 1750, + "label": "MGT 199", + "title": "Directed Independent Study (4)" + }, + { + "dept": "BGGN", + "description": "The course is devoted to immunology and is organized as a combined lecture-tutorial course stressing classical as well as current literature. Each week will compose an independent section. Topics will include cellular interactions involved in the immune response and the molecular biology unique to lymphoid factor and receptors. ", + "edges_from": [], + "edges_to": [], + "id": 1751, + "label": "BGGN 225", + "title": "Graduate Immunology (4)" + }, + { + "dept": "BGGN", + "description": "Coverage of modern cell biology. Topics may include structure and function of membranes; ion pumps, ion channels, transmembrane signaling; receptor-mediated endocytosis; protein targeting; the role of RER and Golgi apparatus; the biosynthesis of intracellular organelles in animal and plant cells; the cytoskeleton, motility, molecular motors, and cell-cell interactions; mitosis and the control of cell division; and cell-signaling mechanisms and discussions on molecular approaches to cell biology. ", + "edges_from": [ + 1753, + 1754, + 1755 + ], + "edges_to": [ + 1528 + ], + "id": 1752, + "label": "BGGN 222", + "title": "Graduate Cell Biology (6)" + }, + { + "dept": "BGGN", + "description": "", + "edges_from": [], + "edges_to": [ + 1752, + 1528 + ], + "id": 1753, + "label": "BGGN 220F", + "title": "" + }, + { + "dept": "BGGN", + "description": "", + "edges_from": [], + "edges_to": [ + 1752, + 1528 + ], + "id": 1754, + "label": "BGGN 220E", + "title": "" + }, + { + "dept": "BGGN", + "description": "", + "edges_from": [], + "edges_to": [ + 1752, + 1528 + ], + "id": 1755, + "label": "BGGN 220D", + "title": "" + }, + { + "dept": "BGGN", + "description": "Provides a broad, advanced-level coverage of modern molecular biology for first-year graduate students. Topics include prokaryotic and eukaryotic gene structure and regulation, chromatin structure, DNA replication, translation, mechanisms of transcription, and an introduction to viruses. Open only to students enrolled in a graduate degree program. Letter grades only.", + "edges_from": [], + "edges_to": [], + "id": 1756, + "label": "BGGN 220", + "title": "Graduate Molecular Biology (6)" + }, + { + "dept": "BIOM", + "description": "Molecular basis of drug action; basis of disease; drug invention. Topics may include: basic principles, autonomic nervous system; CV, pulmonary, diabetes, cancer therapy, pharmacotherapy of CNS disease (depression, etc.) pain, infections (bacterial, viral, malarial). Students that have taken both 255A and 255B cannot take 255 for credit. ", + "edges_from": [ + 523, + 524, + 525 + ], + "edges_to": [], + "id": 1757, + "label": "BIOM 255", + "title": "Molecular Basis of Drug Action and Disease Therapy (3)" + }, + { + "dept": "CHIN", + "description": "and Trade (4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 1758, + "label": "CHIN 186A-B-C", + "title": "Readings in Chinese Economics, Politics," + }, + { + "dept": "BIPN", + "description": "Normal function and diseases of the major hormone systems of the body including the hypothalamus/pituitary axis, the thyroid gland, reproduction and sexual development, metabolism and the pancreas, bone and calcium metabolism, and the adrenal glands. Students may not receive credit for both BIPN 120 and BICD 150. ", + "edges_from": [ + 1192 + ], + "edges_to": [], + "id": 1759, + "label": "BIPN 120", + "title": "Endocrinology (4)" + }, + { + "dept": "ENG", + "description": "Examines the engineering/entrepreneurism interface. Discovery, development, and implementation of new product ideas. Understanding markets, competitors, and selling innovations. Cultivating effective working relationships between research, engineering, manufacturing, and marketing elements of an organization. Priority enrollment given to engineering majors.", + "edges_from": [], + "edges_to": [], + "id": 1760, + "label": "ENG 201", + "title": "Venture Mechanics (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5664, + 1865, + 5134, + 5135, + 1552, + 1553, + 1193, + 410 + ], + "id": 1761, + "label": "CHEM 140B", + "title": "" + }, + { + "dept": "ENG", + "description": "Course includes the examination of business plans developed by early stage technology businesses. Students expected to work on the development of business plans for real, innovative business organizations. Will explore all of the business research and analysis that needs to be undertaken in order to develop a complete business plan. Completion of ENG 201 or ENG 202 preferred.", + "edges_from": [], + "edges_to": [], + "id": 1762, + "label": "ENG 203", + "title": "Applied Innovations (4)" + }, + { + "dept": "ENG", + "description": "Case studies of start-ups, strategic technology management, practice in use of industrial decision-making tools, and speakers from successful firms combined with experience in making management decisions dynamically in a competitive computer-simulated enterprise. Field study of ongoing processes in a local high technology company. Priority enrollment given to engineering majors.", + "edges_from": [], + "edges_to": [], + "id": 1763, + "label": "ENG 202", + "title": "Enterprise Dynamics (4)" + }, + { + "dept": "ENG", + "description": "Corporate Entrepreneurship for Global Competitiveness (4)", + "edges_from": [], + "edges_to": [], + "id": 1764, + "label": "ENG 207", + "title": "" + }, + { + "dept": "LTEU", + "description": "Attention given to historical and cultural contexts. Topics to be considered include the concept of nature, the reaction to science, the role of the imagination.", + "edges_from": [], + "edges_to": [], + "id": 1765, + "label": "LTEU 110", + "title": "European Romanticism (4)" + }, + { + "dept": "ECE", + "description": "The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 1766, + "label": "ECE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ECON", + "description": "Course will study economic models in which standard economic rationality assumptions are combined with psychologically plausible assumptions on behavior. We consider whether the new models improve ability to predict and understand phenomena including altruism, trust and reciprocity, procrastination, and self-control. ", + "edges_from": [ + 796 + ], + "edges_to": [], + "id": 1767, + "label": "ECON 142", + "title": "Behavioral Economics (4)" + }, + { + "dept": "ECON", + "description": "Explore use of experiments to study individual and interactive (strategic) decision-making. Topics may include choice over risky alternatives, altruism and reciprocity, allocation and information aggregation in competitive markets, cooperation and collusion, bidding in auctions, strategy in coordination and \u201coutguessing\u201d games. ", + "edges_from": [ + 797 + ], + "edges_to": [], + "id": 1768, + "label": "ECON 143", + "title": "Experimental Economics (4)" + }, + { + "dept": "ECON", + "description": "Provides an overview of the physician, hospital, and pharmaceutical segments of the health sector. Uses models of physician behavior, for-profit and nonprofit institutions to understand the trade-offs facing health-sector regulators and the administrators of public and private insurance arrangements. ", + "edges_from": [ + 542, + 543 + ], + "edges_to": [], + "id": 1769, + "label": "ECON 140", + "title": "Economics of Health Producers (4)" + }, + { + "dept": "ECON", + "description": "Demand for health care and health insurance, employer-provision of health insurance and impact on wages and job changes. Cross-country comparisons of health systems. ", + "edges_from": [ + 797 + ], + "edges_to": [], + "id": 1770, + "label": "ECON 141", + "title": "Economics of Health Consumers (4)" + }, + { + "dept": "ECON", + "description": "Theory of business cycles and techniques used by governments to stabilize an economy. Discussion of recent economic experience. ", + "edges_from": [ + 1290 + ], + "edges_to": [], + "id": 1771, + "label": "ECON 146", + "title": "Economic Stabilization (4)" + }, + { + "dept": "ECON", + "description": "Examination of issues in education using theoretical and empirical approaches from economics. Analysis of decisions to invest in education. Consideration of various market structures in education, including school choice and school finance programs. ", + "edges_from": [ + 291, + 547, + 292, + 543 + ], + "edges_to": [], + "id": 1772, + "label": "ECON 147", + "title": "Economics of Education (4)" + }, + { + "dept": "ECON", + "description": "Examines conservation of biodiversity from an economic perspective. Topics include valuing biodiversity, defining successful conservation, and evaluating the cost effectiveness of policies such as conservation payments, ecotourism, and privatization. Emphasis on forests, coral reefs, elephants, tigers, and sea turtles. ", + "edges_from": [ + 547, + 543 + ], + "edges_to": [], + "id": 1773, + "label": "ECON 144", + "title": "Economics of Conservation (4)" + }, + { + "dept": "ECON", + "description": "Economic issues associated with oceans. Economics of managing renewable resources in the oceans, with an emphasis on fisheries, economics of conservation and biodiversity preservation for living marine resources, with an emphasis on whales, dolphins, sea turtles, and coral reefs. ", + "edges_from": [ + 547, + 543 + ], + "edges_to": [], + "id": 1774, + "label": "ECON 145", + "title": "Economics of Ocean Resources (4)" + }, + { + "dept": "COMM", + "description": "Contributions of the field of communication to the study of surveillance and risk. Critical and legal perspectives on consumer research, copyright enforcement, the surveillance capacity of Information and Communication Technologies (ICTs), closed-circuit television, interactive media, and the \u201crhetorics of surveillance\u201d in television and film. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1775, + "label": "COMM 166", + "title": "Surveillance, Media, and the Risk Society (4)" + }, + { + "dept": "COMM", + "description": "This course aims to unveil the vast and largely hidden infrastructures silently shaping how digital communication take place in contemporary societies as well as the visible and invisible geographic of power and inequality these infrastructures are helping to create. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1776, + "label": "COMM 164", + "title": "Behind the Internet: Invisible Geographies of Power and Inequality (4)" + }, + { + "dept": "COMM", + "description": "This course examines some of the changing cultural, social, technological, and political meanings; practices; and aspirations that together constitute what is and has been called freedom. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1777, + "label": "COMM 163", + "title": "Concepts of Freedom (4)" + }, + { + "dept": "COMM", + "description": "We examine how people interact with products of popular culture, production of cultural goods by looking at conditions in cultural industries. We examine film, music, publishing, focusing on how production is organized, what kind of working conditions arise, how products are distributed. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1778, + "label": "COMM 162", + "title": "Advanced Studies in Cultural Industries (4)" + }, + { + "dept": "COMM", + "description": "The character and forms of international communications. Emerging structures of international communications. The United States as the foremost international communicator. Differential impacts of the free flow of information and the unequal roles and needs of developed and developing economies in international communications. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1779, + "label": "COMM 160", + "title": "Political Economy and International Communication (4)" + }, + { + "dept": "LTCS", + "description": "in Queer Cultures/Queer Subcultures (4)", + "edges_from": [], + "edges_to": [], + "id": 1780, + "label": "LTCS 131", + "title": "Topics" + }, + { + "dept": "PHYS", + "description": "Studies of special topics in physics under the direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 1781, + "label": "PHYS 297", + "title": "Special Studies in Physics (1\u20134)" + }, + { + "dept": "COMM", + "description": "The relationship between small groups and dominant culture is studied by exploring the world of deaf people who have for the past twenty years begun to speak as a cultural group. Issues of language, communication, self-representation, and social structure are examined. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1782, + "label": "COMM 169", + "title": "Deaf Culture in the U.S. (4)" + }, + { + "dept": "COMM", + "description": "This course is designed to introduce students to multiple settings where bilingualism is the mode of communication. Examination of how such settings are socially constructed and culturally based. Language policy, bilingual education, and linguistic minorities, as well as field activities included. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1783, + "label": "COMM 168", + "title": "Bilingual Communication (4)" + }, + { + "dept": "SE", + "description": "Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ", + "edges_from": [ + 1785 + ], + "edges_to": [], + "id": 1784, + "label": "SE 182", + "title": "Foundation Engineering (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 1129, + 652 + ], + "edges_to": [ + 1784, + 3359, + 2879 + ], + "id": 1785, + "label": "SE 181", + "title": "" + }, + { + "dept": "CHEM", + "description": "The chemistry of the main group elements in", + "edges_from": [], + "edges_to": [ + 4545, + 1787, + 4548 + ], + "id": 1786, + "label": "CHEM 120A", + "title": "Inorganic Chemistry I (4)" + }, + { + "dept": "CHEM", + "description": "A continuation of the discussion of structure, bonding, and reactivity with emphasis on transition metals and other elements using filled d orbitals to form bonds. Coordination chemistry in terms of valence bond, crystal field, and molecular orbital theory. The properties and reactivities of transition metal complexes including organometallic compounds. ", + "edges_from": [ + 1786 + ], + "edges_to": [], + "id": 1787, + "label": "CHEM 120B", + "title": "Inorganic Chemistry II (4)" + }, + { + "dept": "CSE", + "description": "Theoretical foundations of machine learning. Topics include concentration of measure, the PAC model, uniform convergence bounds, and VC dimension. Possible topics include online learning, learning with expert advice, multiarmed bandits, and boosting. Recommended preparation: CSE 103 and CSE 101 or similar course. ", + "edges_from": [], + "edges_to": [], + "id": 1788, + "label": "CSE 250C", + "title": "Machine Learning Theory (4)" + }, + { + "dept": "CSE", + "description": "Methods based on probability theory for reasoning and learning under uncertainty. Content may include directed and undirected probabilistic graphical models, exact and approximate inference, latent variables, expectation-maximization, hidden Markov models, Markov decision processes, applications to vision, robotics, speech, and/or text. Recommended preparation: CSE 103 or similar course. ", + "edges_from": [], + "edges_to": [], + "id": 1789, + "label": "CSE 250A", + "title": "Principles of Artificial Intelligence: Probabilistic Reasoning and Learning (4)" + }, + { + "dept": "ECON", + "description": "Advanced calculus review for new graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 1790, + "label": "ECON 205", + "title": "Mathematics for Economists (4)" + }, + { + "dept": "ECON", + "description": "This course reviews the theoretical foundations for the analysis of contractual interaction and it covers a selection of game-theoretic models and applications. The course is intended to provide a foundation for theoretical research on contracts as well as applied research on topics in behavioral/experimental, development, environmental, international, and labor economics, law and economics, and macroeconomics. ", + "edges_from": [ + 320, + 318, + 319 + ], + "edges_to": [], + "id": 1791, + "label": "ECON 204", + "title": "Contract Theory (4)" + }, + { + "dept": "ECON", + "description": "Further topics in consumer and producer theory, intertemporal optimization, and decision making under uncertainty. (Previously numbered Econ 200D.) ", + "edges_from": [ + 320, + 318, + 319 + ], + "edges_to": [], + "id": 1792, + "label": "ECON 206", + "title": "Decisions (4)" + }, + { + "dept": "ECON", + "description": "An intensive examination of selected topics in economic theory. Course topic nonrepetitive in a three-year cycle. ", + "edges_from": [ + 1794, + 1795 + ], + "edges_to": [], + "id": 1793, + "label": "ECON 201", + "title": "Advanced Economic Theory (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1580, + 109, + 1581 + ], + "edges_to": [ + 1793 + ], + "id": 1794, + "label": "ECON 213", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 4776, + 1793 + ], + "id": 1795, + "label": "ECON 207", + "title": "" + }, + { + "dept": "ANAR", + "description": "Our campus houses some of the earliest human settlements in North America. This course reviews the archaeology, climate, and environment of the sites and outlines research aimed at understanding the lives of these early peoples. ", + "edges_from": [], + "edges_to": [], + "id": 1796, + "label": "ANAR 118", + "title": "Archaeology of the UC San Diego Campus (4)" + }, + { + "dept": "ANAR", + "description": "This course provides students with a broad understanding of the most current sea level change research that has been conducted around the globe. Students will be introduced to the general terminology used in this field, coastal shallow marine and deep sea sea-level indicators, and their degree of uncertainty, along with corresponding dating methods. An emphasis will be given to sea-level studies conducted in Israel and neighboring lands. ", + "edges_from": [], + "edges_to": [], + "id": 1797, + "label": "ANAR 116", + "title": "Sea Level Change\u2014The Israel Case in World Perspective (4)" + }, + { + "dept": "ANAR", + "description": "The archaeological field and laboratory class will take place in the field in San Diego or adjacent counties. This course is a hands-on introduction to the research design of interdisciplinary archaeological projects and techniques of data collection, including survey, excavation, or laboratory analysis. May be taken for credit up to two times. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 1798, + "label": "ANAR 117", + "title": "Archaeological Field and Lab Class, Southern California (4)" + }, + { + "dept": "ANAR", + "description": "Israel, like California, is located on a complex tectonic boundary, which is responsible for a history of earthquakes, volcanism, and tsunamis. How great is the risk today and what will be the regional impact of a major earthquake? We will try to answer these questions by understanding the basic geology of Israel and reviewing the history of natural disasters as recorded by archaeology and historical documentation. ", + "edges_from": [], + "edges_to": [], + "id": 1799, + "label": "ANAR 114", + "title": "Environmental Hazards in Israel (4)" + }, + { + "dept": "ANAR", + "description": "Students will develop a broad understanding of the morphological features that are identified in coastal systems, and the short- and long-term processes that shape them through time. Students will become familiar with terminology, approaches, and methodologies used in coastal geomorphological research, which are relevant for today\u2019s study of climate and environmental change, with a focus on coastal sedimentary environments and an emphasis on the coast of Israel from ancient times until today. ", + "edges_from": [], + "edges_to": [], + "id": 1800, + "label": "ANAR 115", + "title": "Coastal Geomorphology and Environmental Change\u2014Perspectives from Israel and the South-Eastern Mediterranean (4)" + }, + { + "dept": "ANAR", + "description": "The origins and development of early cities in the Old and New Worlds are compared and contrasted from an archaeological anthropological perspective. ", + "edges_from": [], + "edges_to": [], + "id": 1801, + "label": "ANAR 112", + "title": "Ancient Urbanism (4)" + }, + { + "dept": "ECON", + "description": "Further topics in game theory and the economics of information. (Previously numbered Econ 200F.) ", + "edges_from": [ + 320, + 318, + 319 + ], + "edges_to": [], + "id": 1802, + "label": "ECON 208", + "title": "Games and Information (4)" + }, + { + "dept": "ANAR", + "description": "As part of the broad discipline of anthropology, archaeology provides the long chronological record needed for investigating human and social evolution. The theories and methods used in this field are examined. (Archaeology core sequence course.) Recommended preparation: ANTH 3. ", + "edges_from": [], + "edges_to": [], + "id": 1803, + "label": "ANAR 111", + "title": "Foundations of Archaeology (4)" + }, + { + "dept": "LTCS", + "description": "and Historical Analysis of Cultural Texts (4)", + "edges_from": [], + "edges_to": [], + "id": 1804, + "label": "LTCS 225", + "title": "Interdisciplinary" + }, + { + "dept": "LTCS", + "description": "This course will consider various theoretical approaches to film texts (historical-materialist, feminist, psychoanalytic, semiotic) as well as the history of film, the political economy of film production and distribution, exhibition practices, and spectatorship in national and transnational contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1805, + "label": "LTCS 222", + "title": "Topics in Theory and History of Film (4)" + }, + { + "dept": "GPEC", + "description": "Analytical review of South Korea\u2019s economic performance. Examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea\u2019s industrial structure, including the role of large enterprises (chaebol); role of government; links between Korea and other countries. Renumbered from IRGN 485. Student may not receive credit for GPEC 485 and IRGN 485.", + "edges_from": [], + "edges_to": [], + "id": 1806, + "label": "GPEC 485", + "title": "The Korean Economy (4)" + }, + { + "dept": "SOCI", + "description": "Some people do much better than others in the world of work. Causes and consequences of this inequality will be examined: How do characteristics of individuals (e.g., class, gender, race, education, talent) and characteristics of jobs affect market outcomes? ", + "edges_from": [ + 1808, + 1807 + ], + "edges_to": [ + 1807 + ], + "id": 1807, + "label": "SOCI 148E", + "title": "Inequality and Jobs (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 1807 + ], + "id": 1808, + "label": "SOCC 148L", + "title": "" + }, + { + "dept": "PHYS", + "description": "Computing in Science and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 1809, + "label": "PHYS 244", + "title": "Parallel" + }, + { + "dept": "PHYS", + "description": "Models (4)", + "edges_from": [], + "edges_to": [], + "id": 1810, + "label": "PHYS 242", + "title": "Computational Physics II: PDE and Matrix" + }, + { + "dept": "PHYS", + "description": "Introduction to methods of stochastic modeling and simulation. Topics include: random variables; stochastic processes; Markov processes; one-step processes; the Fokker-Planck equation and Brownian motion; the Langevin approach; Monte-Carlo methods; fluctuations and the Boltzmann equation; and stochastic differential equations.", + "edges_from": [], + "edges_to": [], + "id": 1811, + "label": "PHYS 243", + "title": "Stochastic Methods (4)" + }, + { + "dept": "PHYS", + "description": "Project-based computational physics laboratory course with student\u2019s choice of Fortran90/95 or C/C++. Applications from materials science to the structure of the early universe are chosen from molecular dynamics, classical and quantum Monte Carlo methods, physical Langevin/Fokker-Planck processes, and other modern topics.", + "edges_from": [], + "edges_to": [], + "id": 1812, + "label": "PHYS 241", + "title": "Computational Physics I: Probabilistic Models and Simulations (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 175.) Mathematical background", + "edges_from": [], + "edges_to": [], + "id": 1813, + "label": "MATH 275", + "title": "Numerical Methods for Partial Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 174.) Floating point", + "edges_from": [], + "edges_to": [ + 4042 + ], + "id": 1814, + "label": "MATH 274", + "title": "Numerical Methods for Physical Modeling (4)" + }, + { + "dept": "MATH", + "description": "(Cross-listed with BENG 276/CHEM 276.) Introduces", + "edges_from": [], + "edges_to": [], + "id": 1815, + "label": "MATH 276", + "title": "Numerical Analysis in Multiscale Biology (4)" + }, + { + "dept": "COGR", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ", + "edges_from": [], + "edges_to": [], + "id": 1816, + "label": "COGR 285", + "title": "Ethnography Practicum (4)" + }, + { + "dept": "HIEU", + "description": "Cross-listed with RELI 147. This course explores the history of how Western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. Students may not receive credit for both HIEU 107 and RELI 147.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 1817, + "label": "HIEU 107", + "title": "Pagan Europe and its Christian Aftermath (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 179.) Mathematical models of physical", + "edges_from": [], + "edges_to": [], + "id": 1818, + "label": "MATH 279", + "title": "Projects in Computational and Applied Mathematics (4)" + }, + { + "dept": "HIEU", + "description": "A survey course of the history of the Byzantine state from the reign of Constantine to the fall of Constantinople. This course will emphasize the importance of the Byzantine state within a larger European focus, its relationship to the emerging Arab states, its political and cultural contributions to Russia and the late medieval west.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 1819, + "label": "HIEU 104", + "title": "Byzantine Empire (4)" + }, + { + "dept": "EDS", + "description": "This course series is for undergraduates who are exploring a career in elementary school teaching. Topics addressed include: theories of teaching and learning; research on cognition and motivation; and the cultural context of classroom teaching and learning. EDS 128A focuses on the learner in the teaching-learning interaction and EDS 128B focuses on the teacher in the teaching-learning interaction. ", + "edges_from": [ + 810, + 1823, + 813, + 1822, + 1821 + ], + "edges_to": [], + "id": 1820, + "label": "EDS 128 A-B", + "title": "Introduction to Teaching and Learning (Elementary) (4-4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 1820 + ], + "id": 1821, + "label": "EDS 128A", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4012, + 1820, + 4013 + ], + "id": 1822, + "label": "EDS 134", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 1820 + ], + "id": 1823, + "label": "EDS 128B", + "title": "" + }, + { + "dept": "CHEM", + "description": "A survey of inorganic chemistry to prepare for graduate research in the field, including a detailed introduction to nuclear magnetic resonance (NMR), followed by applications of NMR to structural and mechanistic problems in inorganic chemistry.", + "edges_from": [], + "edges_to": [], + "id": 1824, + "label": "CHEM 262", + "title": "Inorganic Chemistry and NMR (4)" + }, + { + "dept": "GPPA", + "description": "Course on the challenges of improving cyber security in the United States and globally. Topics to include the technical challenges involving cyber security, an understanding of the range of threats, fundamental problems of designing prudent national policies that are politically feasible, and the possibilities and limitations regarding the designing of prudent cooperative strategies. Renumbered from IRGN 477. Students may not receive credit for GPPA 477 and IRGN 477.", + "edges_from": [], + "edges_to": [], + "id": 1825, + "label": "GPPA 477", + "title": "Cyber Security (4)" + }, + { + "dept": "HINE", + "description": "Course will analyze and compare major myths", + "edges_from": [], + "edges_to": [], + "id": 1826, + "label": "HINE 113", + "title": "Ancient Near East Mythology (4)" + }, + { + "dept": "GPCO", + "description": "This capstone is intended as a culminating intellectual experience for students, particularly those in economics-oriented tracks. Students will learn to analyze \u201cwhat works,\u201d integrating a technical understanding of innovation with rigorous statistical analysis. The first half of the course focuses on building a set of science/engineering tools, and the second half on building statistical tools of analysis. Renumbered from IRCO 468. Students may not receive credit for GPCO 468 and IRCO 468. ", + "edges_from": [ + 1828 + ], + "edges_to": [], + "id": 1827, + "label": "GPCO 468: Evaluating Technological Innovation (4)", + "title": "" + }, + { + "dept": "GPEC", + "description": "", + "edges_from": [ + 1840, + 1841 + ], + "edges_to": [ + 1827, + 3372 + ], + "id": 1828, + "label": "GPEC 446", + "title": "" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BGGN 264.) An introduction of virus structures,", + "edges_from": [], + "edges_to": [], + "id": 1829, + "label": "CHEM 264", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "HINE", + "description": "A survey of the Middle East from the rise of Islam to the region\u2019s economic, political, and cultural integration into the West (mid-nineteenth century). Emphasis on socioeconomic and political change in the early Arab empires and the Ottoman state.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 1830, + "label": "HINE 114", + "title": "History of the Islamic Middle East (4)" + }, + { + "dept": "HIUS", + "description": "Examine the development of apocalyptic Jewish movements in the Second Temple period and the influence these movements had on Rabbinic Judaism and early Christianity.", + "edges_from": [], + "edges_to": [], + "id": 1831, + "label": "HIUS 106S", + "title": "Apocalyptic Judaism (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview and training in the use of psychophysiological methods to investigate the cognitive and emotional process involved in understanding and reacting to other people. Students will develop individual research questions and actively participate in designing and conducting the experiments. ", + "edges_from": [], + "edges_to": [], + "id": 1832, + "label": "PSYC 114", + "title": "Psychophysiological Perspectives on the Social Mind Laboratory (4)" + }, + { + "dept": "PSYC", + "description": "This course provides experience conducting educational research and outreach for children in greater San Diego County. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 1833, + "label": "PSYC 117", + "title": "Laboratory in Educational Research and Outreach (4)" + }, + { + "dept": "PSYC", + "description": "This course provides examination of theory, research design, and methods for clinical research. Students complete an internship at a clinical research lab, culminating in a paper. May be taken for credit three times for a total of eight units. Students may not receive credit for both PSYC 116 and PSYC 107. ", + "edges_from": [ + 1835 + ], + "edges_to": [], + "id": 1834, + "label": "PSYC 116", + "title": "Laboratory in Clinical Psychology Research (2, 4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1834 + ], + "id": 1835, + "label": "PSYC 199", + "title": "" + }, + { + "dept": "SE", + "description": "Design and analysis of bridge structures, construction methods, load conditions. Load paths and distribution of dead and live loads. Service, strength, and extreme event limit states and other load and resistance factor design (LRFD) principles. Design of pre-stressed concrete bridges. Special problems in analysis\u2014concrete box girders, curved and skewed bridges, environmental and seismic loads. Conceptual/preliminary bridge design project. Recommended preparation: SE 223 (Advanced Seismic Design of Structures). ", + "edges_from": [ + 1837, + 1838 + ], + "edges_to": [], + "id": 1836, + "label": "SE 213", + "title": "Bridge Design (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 5324, + 1836 + ], + "id": 1837, + "label": "SE 201A", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 1836 + ], + "id": 1838, + "label": "SE 211", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides research seminars by a range of departmental faculty, exposing students to contemporary research problems in many areas of psychology. Class discussions will follow faculty presentations. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [], + "edges_to": [ + 5475 + ], + "id": 1839, + "label": "PSYC 110", + "title": "Juniors Honors Research Seminars (4)" + }, + { + "dept": "GPCO", + "description": "This course is designed to provide proficiency in quantitative methods that are used for optimization and decision making. The use of spreadsheets is applied to data analysis and problem solving. Statistical theory and regression analysis are introduced. Renumbered from IRCO 453. Students may not receive credit for GPCO 453 and IRCO 453. ", + "edges_from": [], + "edges_to": [ + 2120, + 1828, + 3372 + ], + "id": 1840, + "label": "GPCO 453", + "title": "Quantitative Methods I (4)" + }, + { + "dept": "GPCO", + "description": "The course introduces the theory and application of econometric regression for policy analysis. Students will learn the underlying mathematical formalism, basic data management and coding skills, and appropriate interpretation and meaningful presentation of results. Renumbered from IRCO 454. Students may not receive credit for GPCO 454 and IRCO 454. ", + "edges_from": [], + "edges_to": [ + 4444, + 1828, + 4443, + 3372 + ], + "id": 1841, + "label": "GPCO 454", + "title": "Quantitative Methods II (4)" + }, + { + "dept": "HIUS", + "description": "American Foreign Relations, since 1900 (4)", + "edges_from": [], + "edges_to": [], + "id": 1842, + "label": "HIUS 106B", + "title": "" + }, + { + "dept": "HIUS", + "description": "Course examines range of public and private interactions between the United States and the world, from the founding of the republic to the Spanish-American War. Topics include origins of federal foreign policy making power, territorial and commercial and ideological expansionism.", + "edges_from": [], + "edges_to": [], + "id": 1843, + "label": "HIUS 106A", + "title": "American Foreign Relations, to 1900 (4)" + }, + { + "dept": "POLI", + "description": "Examination of effects of national policies and international collaboration on public and private international financial institutions, in particular the management of international debt crises, economic policy coordination, and the role of international lender of last resort.", + "edges_from": [], + "edges_to": [], + "id": 1844, + "label": "POLI 144D", + "title": "International Political Economy: Money and Finance (4)" + }, + { + "dept": "POLI", + "description": "Examines theories of trade and protectionism, focusing both on relations among advanced industrial nations and on relations between developed and developing countries. Topics include standard and strategic trade theory, nontariff barriers to trade, export-led growth strategies, regional trade agreements, and the future of the WTO.", + "edges_from": [], + "edges_to": [], + "id": 1845, + "label": "POLI 144E", + "title": "The Politics of International Trade (4)" + }, + { + "dept": "POLI", + "description": "of International Trade and Finance (4)", + "edges_from": [], + "edges_to": [], + "id": 1846, + "label": "POLI 144F", + "title": "The Politics" + }, + { + "dept": "MAE", + "description": "Atomic structure and physical properties of engineering materials including metals, ceramics, glasses, polymers, and composite materials. Defects and phase diagram of materials. Material testing and processing. Program or materials fees may apply. ", + "edges_from": [ + 1318, + 133, + 38, + 1079, + 1848, + 29 + ], + "edges_to": [], + "id": 1847, + "label": "MAE 21", + "title": "Aerospace Materials Science (4)" + }, + { + "dept": "MC", + "description": "", + "edges_from": [], + "edges_to": [ + 1847 + ], + "id": 1848, + "label": "MC 25", + "title": "" + }, + { + "dept": "10A-B-C", + "description": "(No prior study of Japanese language is required for 10A.) Prerequisites", + "edges_from": [], + "edges_to": [], + "id": 1849, + "label": "10A-B-C", + "title": "First-Year Japanese" + }, + { + "dept": "TDGR", + "description": "Seminar acquaints doctoral students of all levels with research methods, theoretical models, publishing protocol, professional preparation, and pedagogical approaches particular to theatre and performance studies. Course assignments are tailored to students\u2019 scholarly interests and progress toward degree. ", + "edges_from": [], + "edges_to": [], + "id": 1850, + "label": "TDGR 289", + "title": "Introduction to Doctoral Studies (4)" + }, + { + "dept": "SOCI", + "description": "An introduction to the organizing themes and ideas, empirical concerns, and analytical approaches of the discipline of sociology. The course focuses on both classical and contemporary views of modern society, on the nature of community, and on inequality, with special attention to class, race, and gender. Materials include both theoretical statements and case studies. Will not receive credit for SOCI 1 and SOCL 1A.", + "edges_from": [], + "edges_to": [ + 3233, + 2126 + ], + "id": 1851, + "label": "SOCI 1", + "title": "Introduction to Sociology (4)" + }, + { + "dept": "POLI", + "description": "Our understanding of politics, power, conflict, and quality continue to be challenged and transformed by considering gender as it intersects with nationality, race, class, and ethnicity. We will consider the importance of gender in each of the subfields of political science.", + "edges_from": [], + "edges_to": [], + "id": 1852, + "label": "POLI 115A", + "title": "Gender and Politics (4)" + }, + { + "dept": "LTEN", + "description": "The study of writing produced over an extended period of time by members of an identifiable cultural formation as defined (e.g., by political/social ideology, class, religion, ethnicity, or sexual preference). May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1853, + "label": "LTEN 272", + "title": "Cultural Traditions in English (4)" + }, + { + "dept": "LTWL", + "description": "A lecture/discussion course designed to explore a variety of topics in medieval literatures and cultures. Topics may include a genre or combination of genres (e.g., drama, romance, lyric, allegory), or a central theme (e.g., the Crusades or courtly love).", + "edges_from": [], + "edges_to": [], + "id": 1854, + "label": "LTWL 111", + "title": "Medieval Studies (4)" + }, + { + "dept": "LTEN", + "description": "Consideration of one or more genres present in English and/or American literature; for instance, the ballad, landscape poetry, comedy, satire, the familiar essay. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1855, + "label": "LTEN 271", + "title": "Genres in English (4)" + }, + { + "dept": "LTWL", + "description": "A study of fiction written for the young adult in various cultures and periods. Consideration will be given to the young adult hero in fiction. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1856, + "label": "LTWL 116", + "title": "Adolescent Literature (4)" + }, + { + "dept": "LTWL", + "description": "A study of literature written for children in various cultures and periods. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1857, + "label": "LTWL 114", + "title": "Children\u2019s Literature (4)" + }, + { + "dept": "TDGR", + "description": "Voice exercises designed", + "edges_from": [], + "edges_to": [], + "id": 1858, + "label": "TDGR 214C", + "title": "Voice for Theatre I\u2014Part III (3)" + }, + { + "dept": "TDGR", + "description": "II\u2014Part I (3)", + "edges_from": [], + "edges_to": [], + "id": 1859, + "label": "TDGR 214B", + "title": "Voice for Theatre" + }, + { + "dept": "TDGR", + "description": "Voice exercises designed to \u201cfree the voice\u201d with emphasis", + "edges_from": [], + "edges_to": [], + "id": 1860, + "label": "TDGR 214A", + "title": "Voice for Theatre I\u2014Part I (3)" + }, + { + "dept": "SE", + "description": "Damage detection, materials characterization. Introduction to nondestructive evaluation. Impedance-based methods, ultrasonics, acoustic, thermography, shearography, liquid penetrant, proof testing, stress coatings, vibrational techniques. ", + "edges_from": [ + 1308, + 652 + ], + "edges_to": [], + "id": 1861, + "label": "SE 163", + "title": "Nondestructive Evaluation (4)" + }, + { + "dept": "BIOM", + "description": "Molecular and cellular mechanisms underlie the actions of environmental toxicants. This course will investigate approaches to study the impact of environmental toxicants on human health. Other modern approaches that are being implemented to detect and remediate environmental toxicants will also be examined. BGGN 256, BIOM 266 and Chem 266 students will be required to complete an additional paper and/or exam beyond that expected of students in Chem 166 and BIMM 166. ", + "edges_from": [ + 1863, + 1864, + 1193, + 458, + 1865, + 410 + ], + "edges_to": [], + "id": 1862, + "label": "BIOM 266", + "title": "Environmental and Molecular Toxicology (4)" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [], + "edges_to": [ + 1862 + ], + "id": 1863, + "label": "BIMM 166", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 1862 + ], + "id": 1864, + "label": "CHEM 166", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 952, + 1761, + 2562, + 959 + ], + "edges_to": [ + 1193, + 1862, + 4751 + ], + "id": 1865, + "label": "CHEM 114B", + "title": "" + }, + { + "dept": "Math", + "description": "", + "edges_from": [], + "edges_to": [ + 130, + 141 + ], + "id": 1866, + "label": "Math Level 2", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 130, + 132, + 141 + ], + "id": 1867, + "label": "MATH 3C", + "title": "" + }, + { + "dept": "MAE", + "description": "(Cross-listed with AESE 278A, CSE 278A, and ECE 205.) Comprehensive introduction to system and event complexity, software and systems engineering practices for complexity management, agile and plan-driven development, development and management processes and process models, data-, information- and knowledge-management, basics of distributed data and computation. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [], + "edges_to": [ + 2426, + 2434, + 2423 + ], + "id": 1868, + "label": "MAE 277A", + "title": "Complexity and Large-Scale Systems (4)" + }, + { + "dept": "ECE", + "description": "Fundamentals of Fourier transform and linear systems theory including convolution, sampling, noise, filtering, image reconstruction, and visualization with an emphasis on applications to biomedical imaging. Examples from optical imaging, CT, MR, ultrasound, nuclear, PET, and radiography. ", + "edges_from": [], + "edges_to": [], + "id": 1869, + "label": "ECE 207", + "title": "Principles of Biomedical Imaging (4)" + }, + { + "dept": "USP", + "description": "Roles of the urban designer, preparing schematic proposals and performance statements, identifying opportunities for and constraints on designers. Each student will prepare a practical exercise in urban design using various urban design methods. ", + "edges_from": [], + "edges_to": [], + "id": 1870, + "label": "USP 179", + "title": "Urban Design, Theory, and Practice (4)" + }, + { + "dept": "ESYS", + "description": "This course explores the impacts of human, social, economic, and industrial activity on the environment. It highlights the central roles in ensuring sustainable development played by market forces, technological innovation, and government regulation on local, national, and global scales. ", + "edges_from": [], + "edges_to": [], + "id": 1871, + "label": "ESYS 103/MAE 124", + "title": "Environmental Challenges: Science and Solutions (4)" + }, + { + "dept": "USP", + "description": "This course is designed to introduce the student to the theory and practice of urban design, the form of the built environment, and how it is created. There is an emphasis on the development within a larger urban context. ", + "edges_from": [], + "edges_to": [], + "id": 1872, + "label": "USP 177", + "title": "Urban Design Practicum (4)" + }, + { + "dept": "USP", + "description": "This course explores governance and planning challenges in the California/Baja California binational region. What are the roles of federal, state, and local governments in addressing issues of transportation, land use, water/wastewater management, and safety and security? ", + "edges_from": [], + "edges_to": [], + "id": 1873, + "label": "USP 176", + "title": "Binational Regional Governance (4)" + }, + { + "dept": "USP", + "description": "Introduction to the theory and practice of context-sensitive site analysis, including site selection and programming, site inventory and analysis, and conceptual design. Demonstrates uses of GIS-based sketch planning tools for suitability analysis and project visualization in real world settings. ", + "edges_from": [], + "edges_to": [], + "id": 1874, + "label": "USP 175", + "title": "Site Analysis: Opportunities and Constraints (4)" + }, + { + "dept": "USP", + "description": "and Planning Reconsidered (4)", + "edges_from": [], + "edges_to": [], + "id": 1875, + "label": "USP 174", + "title": "Regional Governance" + }, + { + "dept": "USP", + "description": "The analysis of the evolution of city designs over time; study of the forces that influence the form and content of a city: why cities change; comparison of urban planning and architecture in Europe and the United States. ", + "edges_from": [], + "edges_to": [], + "id": 1876, + "label": "USP 173", + "title": "History of Urban Planning and Design (4)" + }, + { + "dept": "USP", + "description": "This course examines the use of graphic techniques and tools to explain research, data analysis, and convey ideas with a focus on the built environment. Visual communication for planners/designers using traditional graphic media, electronic media, and visualization are explored. ", + "edges_from": [], + "edges_to": [], + "id": 1877, + "label": "USP 172", + "title": "Graphics, Visual Communication, and Urban Information" + }, + { + "dept": "USP", + "description": "Sustainable development is a concept invoked by an increasingly wide range of scholars, activists, and organizations dedicated to promoting environmentally sound approaches to economic development. This course critically examines the diverse, often contradictory, interests in sustainability. It provides a transdisciplinary overview of emergent theories and practices. ", + "edges_from": [], + "edges_to": [], + "id": 1878, + "label": "USP 171", + "title": "Sustainable Development (4)" + }, + { + "dept": "CSE", + "description": "Introduces the concepts and skills necessary to effectively use information technology. Includes basic concepts and some practical skills with computer and networks. ", + "edges_from": [], + "edges_to": [], + "id": 1879, + "label": "CSE 3", + "title": "Fluency in Information Technology (4)" + }, + { + "dept": "ANTH", + "description": "Human society evolved in the context of face-to-face interaction. The course will examine methods and theoretical approaches to different modalities of interaction\u2014especially speech, gesture, and gaze\u2014their mutual integration, and their relevance to ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 1880, + "label": "ANTH 247", + "title": "Multimodal Interaction (4)" + }, + { + "dept": "ANTH", + "description": "This seminar considers the ethnohistory, ethnography, and archaeology of the Inca Empire Tawantinsuyu, with emphasis on the economic, social, and ideological foundations of the Cusco Inca state and the dynamics of Inca imperial expansion throughout Andean South America. ", + "edges_from": [], + "edges_to": [], + "id": 1881, + "label": "ANTH 246", + "title": "The Inca and the Late Horizon (4)" + }, + { + "dept": "MGT", + "description": "Introduction to techniques to develop/analyze data for informed tactical and strategic management decisions: statistical inference, probability, regression analysis, and optimization. Using these analytic approaches, theory-based formulas, and spreadsheets, students explore managerial applications across all areas of business activity.", + "edges_from": [], + "edges_to": [ + 686, + 4327 + ], + "id": 1882, + "label": "MGT 3", + "title": "Quantitative Methods in Business (4)" + }, + { + "dept": "ANTH", + "description": "This seminar examines the prehistory of the Andean region from the peopling of the New World through the formation of Archaic, Preceramic, and Initial periods; the Chavin Horizon; and the Nasca and Moche States of the Early Intermediate Period. ", + "edges_from": [], + "edges_to": [], + "id": 1883, + "label": "ANTH 244", + "title": "Andean Prehistory: Origins of Chiefdoms and States (4)" + }, + { + "dept": "MGT", + "description": "Internal accounting fundamentals, including cost behavior, cost application", + "edges_from": [], + "edges_to": [ + 2104, + 686 + ], + "id": 1884, + "label": "MGT 5", + "title": "Managerial Accounting (4)" + }, + { + "dept": "BICD", + "description": "Techniques in plant cell and tissue culture, plant transformation, genetic selection and screening of mutants, host pathogen interactions, gene regulation, organelle isolation, membrane transport. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 120. Material lab fees will apply. ", + "edges_from": [], + "edges_to": [], + "id": 1885, + "label": "BICD 123", + "title": "Plant Molecular Genetics and Biotechnology Laboratory (4)" + }, + { + "dept": "ANTH", + "description": "This seminar will focus on classic and contemporary studies of Southeast Asia, concentrating on Thailand, Indonesia, and the Philippines. Particular attention will be paid to the impact of the state and global forces on Southeast Asian cultural and social dynamics. Formerly known as ANGR 240. Students may not receive credit for both ANGR 240 and ANTH 240.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1886, + "label": "ANTH 240", + "title": "Culture and Politics in Southeast Asia (4)" + }, + { + "dept": "PHYS", + "description": "Physicists have spoken of the beauty of equations. The poet John Keats wrote, \u201cBeauty is truth, truth beauty...\u201d What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Cross-listed with LTEN 30. Students cannot earn credit for both Physics 30 and LTEN 30. ", + "edges_from": [ + 267, + 262, + 263, + 264, + 268, + 266, + 75, + 76, + 269, + 270, + 271, + 53, + 54, + 265 + ], + "edges_to": [], + "id": 1887, + "label": "PHYS 30", + "title": "Poetry for Physicists (4)" + }, + { + "dept": "ANTH", + "description": "This seminar investigates global health from the perspective of medical anthropology on disease and illness; cultural conceptions of health; doctor-patient interaction; illness experience; medical science and technology; mental health; infectious disease; and health-care inequalities by ethnicity, gender, and socioeconomic status. ", + "edges_from": [], + "edges_to": [], + "id": 1888, + "label": "ANTH 248", + "title": "Global Health and Cultural Diversity (4)" + }, + { + "dept": "VIS", + "description": "Students develop artworks and performances in current virtual environments. Projects may be done individually or in groups in multiplayer games, immersive life platforms, or mixed reality projects and performances. Exploration of theoretical issues involved will underlie acquisition of techniques utilized in the construction of virtual environments. Materials fees required. ", + "edges_from": [ + 393, + 947 + ], + "edges_to": [], + "id": 1889, + "label": "VIS 143", + "title": "Virtual Environments (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 148.) Introduction to global health from the perspective of medical anthropology on disease and illness, cultural conceptions of health, doctor-patient interaction, illness experience, medical science and technology, mental health, infectious disease, and health-care inequalities by ethnicity, gender, and socioeconomic status. Students may not receive credit for GLBH 148 and ANSC 148.", + "edges_from": [], + "edges_to": [], + "id": 1890, + "label": "GLBH 148", + "title": "Global Health and Cultural Diversity (4)" + }, + { + "dept": "VIS", + "description": "Artistic practice is a site of critical intervention. Through individual \u201cPractice Diagrams,\u201d students will visualize the issues, motivations, positions, and procedures that inspire and problematize their work, seeking to discover and mobilize new tools, spaces of research, and media experimentation. ", + "edges_from": [], + "edges_to": [], + "id": 1891, + "label": "VIS 148", + "title": "Visualizing Art Practice (4)" + }, + { + "dept": "VIS", + "description": "Topics relevant to computer-based art and music making, such as computer methods for making art/music, design of interactive systems, spatialization of visual/musical elements, critical studies. Topics will vary. May be taken for credit three times. Recommended preparation: VIS 145A or MUS 171. Program or materials fees may apply. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 1892, + "label": "VIS 149", + "title": "Seminar in Contemporary Computer Topics (4)" + }, + { + "dept": "Soc/G", + "description": "Issues in the Sociology of Knowledge (4)", + "edges_from": [], + "edges_to": [], + "id": 1893, + "label": "Soc/G 232", + "title": "Advanced" + }, + { + "dept": "Soc/G", + "description": "Foundation of the Study of Science, Technology, and Medicine (4)", + "edges_from": [], + "edges_to": [], + "id": 1894, + "label": "Soc/G 234", + "title": "Intellectual" + }, + { + "dept": "Soc/G", + "description": "of the Sociology of Scientific Knowledge (4)", + "edges_from": [], + "edges_to": [], + "id": 1895, + "label": "Soc/G 238", + "title": "Survey" + }, + { + "dept": "LTGK", + "description": "Directed group study in areas of Greek literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1896, + "label": "LTGK 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "HIUS", + "description": "This course will focus on the transformation of work and leisure and development of consumer culture. Students will consider connections between culture, class relations, gender ideology, and politics. Topics will include labor radicalism, Taylorism, the development of organized sports, the rise of department stores, and the transformation of middle-class sexual culture of the Cold War.", + "edges_from": [], + "edges_to": [], + "id": 1897, + "label": "HIUS 131D", + "title": "Cultural History from the Civil War to the Present (4)" + }, + { + "dept": "COMM", + "description": "This course increases our awareness of the ways we interpret or make understanding from movies to enrich and increase the means by which one can enjoy and comprehend movies. We will talk about movies and explore a range of methods and approaches to film interpretation. Readings will emphasize major and diverse theorists, including Bazin, Eisenstein, Cavell, and Mulvey. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 1898, + "label": "COMM 103F", + "title": "CM: How to Read a Film (4)" + }, + { + "dept": "COMM", + "description": "This course considers the social, cultural, economic, and technological contexts that have shaped electronic media, from the emergence of radio and television to their convergence through the Internet, and how these pervasive forms of audiovisual culture have impacted American society. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 1899, + "label": "COMM 103E", + "title": "CM: History of Electronic Media (4)" + }, + { + "dept": "COMM", + "description": "History of nonfiction film and video. Through film and written texts we survey the nonfiction film genre, considering technological innovations, ethical issues, and formal movements related to these representations of the \u201creal.\u201d Students write a research paper in lieu of a final. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 1900, + "label": "COMM 103D", + "title": "CM: Documentary History and Theory (4)" + }, + { + "dept": "COGS", + "description": "(Cross-listed", + "edges_from": [], + "edges_to": [], + "id": 1901, + "label": "COGS 279", + "title": "Electrophysiology of Cognition (4)" + }, + { + "dept": "COGS", + "description": "Evidence for the heritability and for the association of genetic variants with behavioral and neural phenotypes will be reviewed. Integrative models of gene-environment interaction will be discussed. Guest faculty will describe their own work in this area.", + "edges_from": [], + "edges_to": [], + "id": 1902, + "label": "COGS 278", + "title": "Genetics and Individuality (4)" + }, + { + "dept": "COGS", + "description": "The discovery of mirror neurons in the monkey brain raised the possibility that \u201cmirroring\u201d constitutes instances of mental simulation. In this seminar, we will examine the neural basis of social cognition and specifically the relationship between mirroring processes and cognition.", + "edges_from": [], + "edges_to": [], + "id": 1903, + "label": "COGS 277", + "title": "Mirroring in Social Cognition (4)" + }, + { + "dept": "VIS", + "description": "Art after abstract expressionism: happenings, postpainterly abstraction, minimalism, performance, earth art, conceptual art, neo-expressionism, postconceptualism and development in the 1990s, including non-Western contexts. We also explore the relation of these tendencies to postmodernism, feminism, and ideas of postcoloniality. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 1904, + "label": "VIS 125BN", + "title": "Contemporary Art (4)" + }, + { + "dept": "PHYS", + "description": "A project-oriented laboratory course in which students are guided to develop their own ideas and tools, along with using state-of-art instruments to investigate a biological problem of current interest, under the direction of a faculty member. A range of current topics in quantitative biology is available, including microbiology, molecular and cell biology, developmental biology, synthetic biology, and evolution. This course may be repeated up to ten times for credit as long as the student works on a different project. ", + "edges_from": [ + 1463 + ], + "edges_to": [], + "id": 1905, + "label": "PHYS 270B", + "title": "Quantitative Biology Laboratory (4)" + }, + { + "dept": "BIBC", + "description": "Course will provide an overview of energy production and utilization and the consequences of this on the economy and environment. The course will introduce renewable energy technologies including biofuels, and explores the social, economic, and political aspects of energy use. ", + "edges_from": [ + 954 + ], + "edges_to": [], + "id": 1906, + "label": "BIBC 140", + "title": "Our Energy Future\u2014Sustainable Energy Solutions (4)" + }, + { + "dept": "HITO", + "description": "Explore contrasts and parallels between African Americans and Jews from the seventeenth century to the present. Investigate slavery, the Civil War, shared music, political movements, urban geography, and longings to return to a homeland in Africa or Palestine.", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 1907, + "label": "HITO 136", + "title": "Jews and African Americans:\u00a0Slavery, Diaspora, Ghetto (4)" + }, + { + "dept": "HITO", + "description": "Law\u2014War Crimes and Genocide (4)", + "edges_from": [], + "edges_to": [], + "id": 1908, + "label": "HITO 134", + "title": "International" + }, + { + "dept": "CHEM", + "description": "This seminar will present topics in chemistry at a level appropriate for first-year students.", + "edges_from": [], + "edges_to": [], + "id": 1909, + "label": "CHEM 87", + "title": "Freshman Seminar in Chemistry and Biochemistry (1)" + }, + { + "dept": "VIS", + "description": "Students pursue projects of their own design over two quarters with support from faculty in a seminar environment. Project proposals are developed, informed by project development guidelines from real-world examples. Two production-course limitation. Renumbered from ICAM 160A. Students may receive credit for only one of the following: VIS 160A, MUS 160A, or ICAM 160A. ", + "edges_from": [ + 1912, + 733, + 1222, + 1911 + ], + "edges_to": [ + 3421, + 5661 + ], + "id": 1910, + "label": "VIS 160A", + "title": "Senior Project in Computing Arts I (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 2277 + ], + "edges_to": [ + 3422, + 1910 + ], + "id": 1911, + "label": "VIS 141B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 3422, + 2925, + 1910 + ], + "id": 1912, + "label": "MUS 172", + "title": "" + }, + { + "dept": "LTKO", + "description": "This course will help students develop advanced-level skills in the Korean language. Upon completion of this course, students are expected to have good command of Korean in various formal settings and to understand daily news broadcasts/newspapers. ", + "edges_from": [ + 1914 + ], + "edges_to": [ + 3968 + ], + "id": 1913, + "label": "LTKO 3", + "title": "Advanced Korean: Third Year (5)" + }, + { + "dept": "LTKO", + "description": "", + "edges_from": [], + "edges_to": [ + 1913 + ], + "id": 1914, + "label": "LTKO 2C", + "title": "" + }, + { + "dept": "MAE", + "description": "Teaching experience in an appropriate MAE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. (S/U grade only.) ", + "edges_from": [], + "edges_to": [], + "id": 1915, + "label": "MAE 501", + "title": "Teaching Experience (2)" + }, + { + "dept": "HIUS", + "description": "This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.", + "edges_from": [], + "edges_to": [], + "id": 1916, + "label": "HIUS 113/ETHN 154", + "title": "History of Mexican America (4)" + }, + { + "dept": "TDGR", + "description": "A unifying approach to acting skills (voice, movement, and speech) designed to result in providing the graduating actor with a daily regimen appropriate for professional work. ", + "edges_from": [], + "edges_to": [], + "id": 1917, + "label": "TDGR 239", + "title": "Skills (4)" + }, + { + "dept": "ECON", + "description": "Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ", + "edges_from": [], + "edges_to": [], + "id": 1918, + "label": "ECON 191A", + "title": "Senior Essay Seminar A (4)" + }, + { + "dept": "TDGR", + "description": "Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ", + "edges_from": [], + "edges_to": [], + "id": 1919, + "label": "TDGR 235", + "title": "Singing for the Actor III (1)" + }, + { + "dept": "ECON", + "description": "Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ", + "edges_from": [], + "edges_to": [], + "id": 1920, + "label": "ECON 191B", + "title": "Senior Essay Seminar B (4)" + }, + { + "dept": "TDGR", + "description": "An advanced studio for graduate actors and directors, this work will explore a single text from the modern theatre under the direction of a master teacher-artist. Concentration will be on multiple possible modes of encountering a text, varieties of interpretation and performance realization, and the development of a theatre ensemble. ", + "edges_from": [], + "edges_to": [], + "id": 1921, + "label": "TDGR 230", + "title": "Acting Process III: Actors\u2019 Studio (2\u20134)" + }, + { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among African-Americans. The course examines changing religious traditions and ritual practices among African-Americans since slavery to the present era. ", + "edges_from": [], + "edges_to": [], + "id": 1922, + "label": "RELI 155", + "title": "African-American Religions (4)" + }, + { + "dept": "TDGR", + "description": "This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will rehearse and perform in simulated studio setting. ", + "edges_from": [], + "edges_to": [], + "id": 1923, + "label": "TDGR 233", + "title": "Acting for the Camera (1)" + }, + { + "dept": "ANSC", + "description": "Course aims to explore the ways in which historicity can be turned to a critical field of inquiry and reflection. Shows how the past isn\u2019t something that \u201chas happened,\u201d but that actively lingers\u00a0and invades the present, both inviting and constraining possible futures. Challenges the assumptions and practices of each modern discipline, affecting key concepts, methods, modes of analysis, and narrative forms that both anthropologists and historians have used. ", + "edges_from": [], + "edges_to": [], + "id": 1924, + "label": "ANSC 177", + "title": "Step Into Anthrohistory: The Past and Its Hold on the Future (4)" + }, + { + "dept": "ANSC", + "description": "Examines interdisciplinary field of Critical Military Studies (CMS), led by sociocultural anthropologist research on aspects of militarism and on specific military forces in varied geographical and historical context. Focuses on changing strategies and doctrines into specific forms of military practice in regards to the way past conflicts inform current approaches and tactics. Also looks at field research conducted by social scientists on behalf of the US military, drawing on local experts in San Diego. ", + "edges_from": [], + "edges_to": [], + "id": 1925, + "label": "ANSC 176", + "title": "The Meaning of Political Violence (4)" + }, + { + "dept": "ANSC", + "description": "This course considers together the economic, political, social, and cultural dimensions of capitalist relations on the planet. Focuses on the current trajectory of capitalism, especially its changing margins and centers. Emphasizes new research on money, paid and unpaid work, and the material concerns of water, energy, food, and shelter. ", + "edges_from": [], + "edges_to": [], + "id": 1926, + "label": "ANSC 175", + "title": "Money, Work, and Nature: The Anthropology of Capitalism (4)" + }, + { + "dept": "ANSC", + "description": "This course examines ideologies surrounding intersections of sex and money as well as ethnographies of sex workers in diverse contexts throughout the world. ", + "edges_from": [], + "edges_to": [], + "id": 1927, + "label": "ANSC 174", + "title": "Sex and Money: The Anthropology of Sex Work (4)" + }, + { + "dept": "ANSC", + "description": "This practicum course will explore anthropology\u2019s traditional methodology, ethnography, through texts, films, and literature, and give students practical experience through a quarter-long case study. ", + "edges_from": [], + "edges_to": [ + 4658 + ], + "id": 1928, + "label": "ANSC 173", + "title": "Ethnography in Practice (4)" + }, + { + "dept": "BGGN", + "description": "Students will explore selected areas of research on the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. Students will apply their understanding of this research through apprentice teaching under mentorship of faculty. Course restricted to Division of Biological Sciences doctoral students as part of the practical training in college teaching. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1929, + "label": "BGGN 502", + "title": "Evidence-Based Teaching and Learning in Biological Sciences (1)" + }, + { + "dept": "ANSC", + "description": "Examines methods for employing iconic recording techniques into ethnographic field research, with an emphasis on digital audio and video recording technologies and analysis. ", + "edges_from": [], + "edges_to": [], + "id": 1930, + "label": "ANSC 171", + "title": "Multimodal Methods in Ethnography (4)" + }, + { + "dept": "ANSC", + "description": "What is modernity? How does it shape human experience? Using selected works of art, film, literature, anthropology, philosophy and social theory, the course explores conceptions of self, identity, and culture that characterize modernity. ", + "edges_from": [], + "edges_to": [], + "id": 1931, + "label": "ANSC 170", + "title": "Modernity and Human Experience (4)" + }, + { + "dept": "EDS", + "description": "This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for both EDS 115GS and EDS 115. ", + "edges_from": [], + "edges_to": [], + "id": 1932, + "label": "EDS 115GS", + "title": "Cognitive Development and Education (4)" + }, + { + "dept": "ANSC", + "description": "This course introduces students to the field of economic anthropology and situates it within the historical development of the discipline since the late nineteenth century. In particular, the course focuses on the complexities of capitalism and its relations with what appear to be \u201cnon-capitalist\u201d contexts and ways of life. ", + "edges_from": [], + "edges_to": [], + "id": 1933, + "label": "ANSC 179", + "title": "The New Economic Anthropology: Producing, Consuming, and Exchanging Stuff Worldwide (4)" + }, + { + "dept": "ANSC", + "description": "Students will learn firsthand a new transdisciplinary effort to understand the intersection of individual and society at all levels of analysis. This course introduces students to a remarkable convergence led by transdisciplinary scholars at UC San Diego (anthropology, cognitive science, psychology, history, philosophy, the arts, etc.), based on the recognition that individual neurological, cognitive, emotional, and behavioral capacities are reciprocally related to aggregate social, cultural, and historical processes. ", + "edges_from": [], + "edges_to": [], + "id": 1934, + "label": "ANSC 178", + "title": "Brain, Mind, Culture, and History (4)" + }, + { + "dept": "VIS", + "description": "These lecture courses are on topics of special interest to visiting and permanent faculty. Topics vary from term to term and with instructor and many will not be repeated. These courses fulfill upper-division distribution requirements. As the courses under this heading will be offered less frequently than those of the regular curriculum, students are urged to check with the visual arts department academic advising office for availability and descriptions of these supplementary courses. Like the courses listed under VIS 129, below, the letters following the course number designate the general area in which the courses fall. Students may take courses with the same number but of different content, for a total of three times for credit. Recommended preparation: courses in art history (VIS 113AN\u2013129F).", + "edges_from": [], + "edges_to": [], + "id": 1935, + "label": "VIS 128A\u2013E", + "title": "Topics in Art History and Theory (4)" + }, + { + "dept": "ANTH", + "description": "Continuation of seminars held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1936, + "label": "ANTH 281B", + "title": "Introductory Seminar (1)" + }, + { + "dept": "TDGE", + "description": "Group studies, readings, projects, and discussions in theatre history, problems of production and performance, and similarly appropriate subjects. ", + "edges_from": [], + "edges_to": [], + "id": 1937, + "label": "TDGE 198", + "title": "Directed Group Studies (0-2-4)" + }, + { + "dept": "TDGE", + "description": "Qualified students will pursue a special project in theatre history, problems of production and performance, and similarly appropriate topics. ", + "edges_from": [], + "edges_to": [], + "id": 1938, + "label": "TDGE 199", + "title": "Special Projects (0-2-4)" + }, + { + "dept": "ECE", + "description": "Experiments in the modulation and demodulation of baseband and passband signals. Statistical characterization of signals and impairments. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 1473 + ], + "edges_to": [], + "id": 1939, + "label": "ECE 157A", + "title": "Communications Systems Laboratory I (4)" + }, + { + "dept": "MATS", + "description": "Point, line, and planar defects in crystalline solids, including vacancies, self-interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements. ", + "edges_from": [], + "edges_to": [], + "id": 1940, + "label": "MATS 205A", + "title": "Imperfections in Solids (4)" + }, + { + "dept": "TDGE", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in theatre and dance (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 1941, + "label": "TDGE 192", + "title": "Senior Seminar in Theatre and Dance (1)" + }, + { + "dept": "BENG", + "description": "Dynamic simulation of biochemical reaction networks, including reconstruction of networks, mathematical description of kinetics of biochemical reactions, dynamic simulation of systems of biochemical reactions, and use of simulators for data interpretation and prediction in biology. Emphasis on a design project. ", + "edges_from": [ + 952, + 140, + 141, + 958, + 135 + ], + "edges_to": [ + 5905, + 3839, + 1943 + ], + "id": 1942, + "label": "BENG 123", + "title": "Dynamic Simulation in Bioengineering (4)" + }, + { + "dept": "BENG", + "description": "Computational modeling of molecular bioengineering phenomena: excitable cells, regulatory networks, and transport. Application of ordinary, stochastic, and partial differential equations. Introduction to data analysis techniques: power spectra, wavelets, and nonlinear time series analysis. ", + "edges_from": [ + 1944, + 1942 + ], + "edges_to": [], + "id": 1943, + "label": "BENG 125", + "title": "Modeling and Computation in Bioengineering (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 922 + ], + "edges_to": [ + 4599, + 1943 + ], + "id": 1944, + "label": "BENG 122A", + "title": "" + }, + { + "dept": "PHIL", + "description": "An examination of ancient Greek philosophy, focusing on major works of Plato and Aristotle. Philosophy 110, Philosophy 111, and Philosophy 112 should be taken in order. ", + "edges_from": [], + "edges_to": [ + 489 + ], + "id": 1945, + "label": "PHIL 110", + "title": "History of Philosophy: Ancient (4)" + }, + { + "dept": "PHIL", + "description": "The syntax, semantics, and proof-theory of first-order predicate logic with identity, emphasizing both conceptual issues and practical skills (e.g., criteria for logical truth, consistency, and validity; the application of logical methods to everyday as well as scientific reasoning). ", + "edges_from": [ + 1947 + ], + "edges_to": [ + 1948, + 1949, + 1950 + ], + "id": 1946, + "label": "PHIL 120", + "title": "Symbolic Logic I (4)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 1946 + ], + "id": 1947, + "label": "PHIL 10", + "title": "" + }, + { + "dept": "PHIL", + "description": "Topics vary from year to year. They include: Metalogic (Mathematical Logic), Modal Logic, Foundations of Logic, Foundations of Set Theory, G\u00f6del\u2019s Incompleteness Theorems, and others. ", + "edges_from": [ + 1946 + ], + "edges_to": [], + "id": 1948, + "label": "PHIL 122", + "title": "Advanced Topics in Logic (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical issues underlying standard and nonstandard logics, the nature of logical knowledge, the relation between logic and mathematics, the revisability of logic, truth and logic, ontological commitment and ontological relativity, logical consequence, etc. May be repeated for credit with change in content and approval of instructor. ", + "edges_from": [ + 1946 + ], + "edges_to": [], + "id": 1949, + "label": "PHIL 123", + "title": "Philosophy of Logic (4)" + }, + { + "dept": "PHIL", + "description": "The character of logical and mathematical truth and knowledge; the relations between logic and mathematics; the significance of Godel\u2019s Incompleteness Theorem; Platonism, logicism, and more recent approaches. ", + "edges_from": [ + 1946 + ], + "edges_to": [], + "id": 1950, + "label": "PHIL 124", + "title": "Philosophy of Mathematics (4)" + }, + { + "dept": "ENVR", + "description": "An interdisciplinary course focusing on one of a variety of topics related to environmental studies such as environmental policy and politics, foreign study in environmental problems, environmental history, nature writers, ethics and the environment. May be repeated three times for credit as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 1951, + "label": "ENVR 102", + "title": "Selected Topics in Environmental Studies (4)" + }, + { + "dept": "TDTR", + "description": "The study of the theoretical aspects of dance education, including an analysis of movement concepts for all ages. Development of basic technique training in all forms, curriculum planning, social awareness, and problem solving. Fundamental elements of cognitive and kinetic learning skills. ", + "edges_from": [], + "edges_to": [], + "id": 1952, + "label": "TDTR 104", + "title": "Dance Theory and Pedagogy (4)" + }, + { + "dept": "POLI", + "description": "Politics are understood as the combination of individual preferences and decisions into collective choices. What are the issues involved in aggregating individual preferences, what is the choice of rules\u2014formal and informal\u2014for doing so.", + "edges_from": [], + "edges_to": [], + "id": 1953, + "label": "POLI 163", + "title": "Analyzing Politics (4)" + }, + { + "dept": "SOCI", + "description": "Course focuses on the interaction between state and society. It discusses central concepts of political sociology (social cleavages, mobilization, the state, legitimacy), institutional characteristics, causes, and consequences of contemporary political regimes (liberal democracies, authoritarianism, communism), and processes of political change. ", + "edges_from": [ + 1954, + 1955 + ], + "edges_to": [ + 1954 + ], + "id": 1954, + "label": "SOCI 148", + "title": "Political Sociology (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 1954 + ], + "id": 1955, + "label": "SOCC 148", + "title": "" + }, + { + "dept": "MATH", + "description": "Metric spaces and contraction mapping theorem;", + "edges_from": [], + "edges_to": [], + "id": 1956, + "label": "MATH 241A-B", + "title": "Functional Analysis (4-4)" + }, + { + "dept": "LIGN", + "description": "Discussion of a topic of current phonological interest, with a focus on descriptive, analytical, and theoretical issues in phonology and phonological theory.", + "edges_from": [], + "edges_to": [], + "id": 1957, + "label": "LIGN 215", + "title": "Topics in Phonology (4)" + }, + { + "dept": "LIGN", + "description": "This course examines recent developments in controversial areas of phonetics. Topics will vary and will address issues in speech production (articulation, acoustics), speech perception, phonetic theory, and the relationship between phonetics and phonology. May be taken for credit two times. ", + "edges_from": [ + 1960, + 1959 + ], + "edges_to": [], + "id": 1958, + "label": "LIGN 214", + "title": "Topics in Phonetics (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 1958 + ], + "id": 1959, + "label": "LIGN 211", + "title": "" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 1958 + ], + "id": 1960, + "label": "LIGN 210", + "title": "" + }, + { + "dept": "ECE", + "description": "Diffusion equations, linear and nonlinear estimation and detection, random fields, optimization of stochastic dynamic systems, applications of stochastic optimization to problems. (Recommended prerequisites: ECE 250.) ", + "edges_from": [], + "edges_to": [ + 1962 + ], + "id": 1961, + "label": "ECE 272A", + "title": "Stochastic Processes in Dynamic Systems I (4)" + }, + { + "dept": "ECE", + "description": "Continuous and discrete random processes, Markov models and hidden Markov models, Martingales, linear and nonlinear estimation. Applications in mathematical finance and real options. ", + "edges_from": [ + 1961 + ], + "edges_to": [], + "id": 1962, + "label": "ECE 272B", + "title": "Stochastic Processes in Dynamic Systems II (4)" + }, + { + "dept": "ETHN", + "description": "Examination of local responses to global change and social disruption through the examination of organic movements in indigenous societies. In-depth analysis of the Kuna Indians of San Blas, Panama; Maya-Zapatistas of Chiapas, Mexico; and Micronesians of the western Pacific.", + "edges_from": [], + "edges_to": [], + "id": 1963, + "label": "ETHN 117", + "title": "Organic Social Movements (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 147.) Examines interactions of culture, health, and environment. Rural and urban human ecologies, their energy foundations, sociocultural systems, and characteristic health and environmental problems are explored. The role of culture and human values in designing solutions will be investigated. Students may not receive credit for GLBH 147 and ANSC 147.", + "edges_from": [], + "edges_to": [], + "id": 1964, + "label": "GLBH 147", + "title": "Global Health and the Environment (4)" + }, + { + "dept": "ETHN", + "description": "This course considers dark agencies, queer threats, and how they seep through cracks in containers meant to disable them. This class will be writing intensive with an artistic production component. Recommended: ETHN 100 is recommended prior to enrollment in this course.", + "edges_from": [], + "edges_to": [], + "id": 1965, + "label": "ETHN 115", + "title": "Monsters, Orphans, and\u00a0Robots\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "This course considers decolonial theories of education in relation to classroom pedagogy, focusing on US urban high schools.", + "edges_from": [], + "edges_to": [], + "id": 1966, + "label": "ETHN 113", + "title": "Decolonizing Education (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 205A.) Point, line, and planar defects in crystalline solids, including vacancies, self interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements.", + "edges_from": [], + "edges_to": [], + "id": 1967, + "label": "MAE 272", + "title": "Imperfections in Solids (4)" + }, + { + "dept": "ETHN", + "description": "This course analyzes Native American written and oral traditions. Students will read chronicles and commentaries on published texts, historic speeches, trickster narratives, oratorical and prophetic tribal epics, and will delve into the methodological problems posed by tribal literature in translation.", + "edges_from": [], + "edges_to": [], + "id": 1968, + "label": "ETHN 111", + "title": "Native American Literature (4)" + }, + { + "dept": "ETHN", + "description": "Places Native Americans/indigenous people\u2019s ways of living, knowing, and understanding the world in relation to settler-immigrant societies in North America.\u00a0Students gain analytical tools for thinking about world views through themes of cosmology, land, kinship, and identity formation.", + "edges_from": [], + "edges_to": [], + "id": 1969, + "label": "ETHN 110", + "title": "Cultural Worldviews of Indigenous America (4)" + }, + { + "dept": "EDS", + "description": "Educational Research and Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 1970, + "label": "EDS 250", + "title": "Equitable" + }, + { + "dept": "EDS", + "description": "This course explores formal and informal learning environments with documented records of successful student engagement. Using an array of curriculum and learning theories, students investigate new and traditional pedagogical practices, curricula, and learning environments for elements of transformative practices. Students critique current literature on teaching for change as it applies to the contexts they chose to study, and identify new possibilities for teaching and learning in diverse student contexts. Letter grades only.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1971, + "label": "EDS 251", + "title": "Transforming Learning Environments (4)" + }, + { + "dept": "EDS", + "description": "The course focuses on factors that shape the unequal distribution of educational opportunities for marginalized groups. Students will interrogate societal and school structures, and underlying socio-cultural processes that impact engagement and outcomes for marginalized groups or students. Students will explore theories on student success and failure, family and community connections, and identity formation in relation to transforming outcomes. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1972, + "label": "EDS 252", + "title": "Transforming Inequities in Student Outcomes (4)" + }, + { + "dept": "EDS", + "description": "This course exposes students to past and present systemic policies that influence the practices and efficiency of the P\u201320 system. Students will explore the barriers and facilitators of successful policy interventions at the local, state, and federal levels of education policy. Attention is given to each segment of the educational continuum, exposing students to strategies for transforming the educational system to ensure equitable opportunities to learn and achieve. ", + "edges_from": [], + "edges_to": [], + "id": 1973, + "label": "EDS 253", + "title": "Transforming Educational Systems and Policy (4)" + }, + { + "dept": "EDS", + "description": "Introduction to quantitative concepts, descriptive statistics, and fundamentals of statistical inference in social science. Emphasis on applying statistical concepts\u2014how to select the appropriate statistical techniques, execute those techniques, examine assumptions necessary for the techniques to work appropriately, interpret analytic results, and summarize findings in a professional manner. Hands-on computer-based practice of quantitative analyses will be an integral part of the course. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 1976 + ], + "id": 1974, + "label": "EDS 254", + "title": "Introduction to Research Design and Quantitative Data Analysis (4)" + }, + { + "dept": "EDS", + "description": "In this course, students will extend their knowledge of statistical methods based on the general linear model, including correlation, regression, analysis of variance, and analysis of covariance to address questions that emerge in educational and social science research. Students will address a variety of substantive research questions by analyzing data and fitting increasingly sophisticated analytic models. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1975, + "label": "EDS 255", + "title": "Advanced Quantitative Data Analysis (4)" + }, + { + "dept": "EDS", + "description": "This course offers an introduction to mixed methods research in education studies. Participants will learn how qualitative and quantitative data can be integrated to capture the perspectives of individuals and organizations to answer complex research questions. The course will cover formulating research questions, collecting and analyzing different types of data, choosing appropriate mixed methods designs, and interpreting mixed methods results. Letter grades only. ", + "edges_from": [ + 1977, + 1974 + ], + "edges_to": [], + "id": 1976, + "label": "EDS 256", + "title": "Introduction to Mixed Methods Research Design and Analysis (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 1976 + ], + "id": 1977, + "label": "EDS 264", + "title": "" + }, + { + "dept": "EDS", + "description": "This course will guide doctoral students in conducting rigorous case study research in the social sciences and the field of education. The course will address case study design, data collection, data analysis, and reporting. This will be accomplished through training on these stages of case study research. It will also provide hands-on experience designing case studies and analyzing case study data. The course will equip students with all the necessary tools to conduct independent case studies. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1978, + "label": "EDS 257", + "title": "Case Study Research (4)" + }, + { + "dept": "ECON", + "description": "Role of marketing in the economy. Topics such as buyer behavior, marketing mix, promotion, product selection, pricing, and distribution. Concurrent enrollment in Econ 120C is permitted. ", + "edges_from": [ + 289 + ], + "edges_to": [ + 3633 + ], + "id": 1979, + "label": "ECON 176", + "title": "Marketing (4)" + }, + { + "dept": "MGTA", + "description": "Students will pursue their capstone experience as part of a team to solve practical business problems faced by companies. Each team will work as external consultants on a project to create value for a client company. Student may not receive credit for both MGTA 454 and MGTA 454A or MGTA 454B. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 1980, + "label": "MGTA 454", + "title": "Business Analytics Capstone Project (4)" + }, + { + "dept": "ANBI", + "description": "Primate (and other vertebrate) conservation involves a variety of methods: field (e.g., population and habitat assessment), computer (e.g., population genetic models), and increasingly the web (e.g. interactive GIS and databases). Course takes problem-solving approach to learning some of these methods. ", + "edges_from": [], + "edges_to": [], + "id": 1981, + "label": "ANBI 114", + "title": "Methods in Primate Conservation (4)" + }, + { + "dept": "COMM", + "description": "Explores theories and narratives of cultural power, contemporary practices of resistance. Texts from a wide range of disciplines consider how domination is enacted, enforced, and what modes of resistance are employed to contend with uses and abuses of political power. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1982, + "label": "COMM 177", + "title": "Culture, Domination, and Resistance (4)" + }, + { + "dept": "ANBI", + "description": "Major stages of human evolution including the fossil evidence for biological and cultural changes through time. ", + "edges_from": [], + "edges_to": [], + "id": 1983, + "label": "ANBI 111", + "title": "Human Evolution (4)" + }, + { + "dept": "ANBI", + "description": "Cytoarchitecture reveals the fundamental structural organization of the human brain and stereology extracts quantitative information in a three-dimensional space. Students will learn the principles of both fields and their applications. ", + "edges_from": [ + 1265 + ], + "edges_to": [], + "id": 1984, + "label": "ANBI 112", + "title": "Methods in Human Comparative Neuroscience (4)" + }, + { + "dept": "COMM", + "description": "Course examines several different ways of telling stories as a form of communication: our own life and about the lives of others. There are also the occasions that the life stories of ordinary people are told at and celebrated, for example, funerals, Festschrifts, retirement dinners, fiftieth-anniversary parties, and retrospective art shows. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 1985, + "label": "COMM 170", + "title": "Biography and Life Stories (4)" + }, + { + "dept": "USP", + "description": "This course charts the development of urban communities across the United States both temporally and geographically. It examines the patterns of cleavage, conflict, convergence of interest, and consensus that have structured urban life. Social, cultural, and economic forces will be analyzed for the roles they have played in shaping the diverse communities of America\u2019s cities.", + "edges_from": [], + "edges_to": [ + 3040 + ], + "id": 1986, + "label": "USP 1", + "title": "History of US Urban Communities (4)" + }, + { + "dept": "BGGN", + "description": "The course will introduce students to a variety of signal transduction pathways and their function in the regulation of cellular processes. Special emphasis will be given to signaling cascades regulating immunological responses and alterations of signaling pathways during oncogenesis. Open only to students enrolled in a graduate degree program. Letter grades only.", + "edges_from": [], + "edges_to": [], + "id": 1987, + "label": "BGGN 230", + "title": "Graduate Signal Transduction (4)" + }, + { + "dept": "USP", + "description": "An introduction to the sociological study of cities, focusing on urban society in the United States. Students in the course will examine theoretical approaches to the study of urban life; social stratification in the city; urban social and cultural systems\u2013ethnic communities, suburbia, family life in the city, religion, art, and leisure.", + "edges_from": [], + "edges_to": [], + "id": 1988, + "label": "USP 3", + "title": "The City and Social Theory (4)" + }, + { + "dept": "USP", + "description": "Examines cities and the environment in a global context. Emphasizes how the world\u2019s economy and the earth\u2019s ecology are increasingly interdependent. Focuses on biophysical and ethicosocial concerns rooted in the contemporary division of labor among cities, Third World industrialization, and the post-industrial transformation of US cities.", + "edges_from": [], + "edges_to": [], + "id": 1989, + "label": "USP 2", + "title": "Urban World System (4)" + }, + { + "dept": "USP", + "description": "This course introduces students to the terminology, concepts, and basic practices of real estate finance and development. It surveys real estate law, appraisal, marketing, brokerage, management, finance, investment analysis, and taxation.", + "edges_from": [], + "edges_to": [], + "id": 1990, + "label": "USP 5", + "title": "Introduction to the Real Estate and Development Process (4)" + }, + { + "dept": "ECON", + "description": "Decision making when the consequences are uncertain. Decision trees, payoff tables, decision criteria, expected utility theory, risk aversion, sample information. ", + "edges_from": [ + 547, + 1992, + 1993, + 1994, + 1995, + 1996 + ], + "edges_to": [], + "id": 1991, + "label": "ECON 171", + "title": "Decisions Under Uncertainty (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 138, + 134 + ], + "edges_to": [ + 4513, + 291, + 4327, + 1991, + 3636, + 3642 + ], + "id": 1992, + "label": "MATH 183", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 138, + 134 + ], + "edges_to": [ + 4513, + 291, + 4327, + 1991, + 3636, + 4151, + 3642 + ], + "id": 1993, + "label": "MATH 186", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 138, + 550, + 302, + 134 + ], + "edges_to": [ + 4513, + 291, + 4327, + 1991, + 3437, + 3636, + 3642 + ], + "id": 1994, + "label": "ECON 120A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2336, + 2337, + 291, + 4736, + 1991, + 4327, + 3437, + 5325, + 4513, + 3638, + 3642, + 2331 + ], + "id": 1995, + "label": "MATH 180A", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 4513, + 291, + 4420, + 4327, + 1991, + 5325, + 4935, + 3636, + 3642 + ], + "id": 1996, + "label": "ECE 109", + "title": "" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with BIOM 262, CMM 262.) This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages.\u00a0", + "edges_from": [ + 1528, + 1281, + 1527 + ], + "edges_to": [], + "id": 1997, + "label": "BGGN 237", + "title": "Quantitative Methods in Genetics (4)" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with BIOM 222, CMM 225, MED 225, Chem 237.) Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.", + "edges_from": [], + "edges_to": [], + "id": 1998, + "label": "BGGN 236", + "title": "Advanced Glycobiology (4)" + }, + { + "dept": "LAWS", + "description": "Through lectures and discussions on several controversial topics, students are introduced to the subjects taught in the first year of law school. They learn briefing, case analysis, and the Socratic method of instruction, engage in role-playing exercises, and take law-school examinations. ", + "edges_from": [], + "edges_to": [], + "id": 1999, + "label": "LAWS 102S", + "title": "Crimes, Civil Wrongs, and Constitution (4)" + }, + { + "dept": "BIOM", + "description": "Lectures on the molecular and cellular mechanisms of pathogenesis. Topics will include Alzheimer\u2019s disease, cell surface and unclear receptors in disease, signal transduction by oncogenes in cancer cells, AIDS, human diseases affecting glycosylation pathways, rheumatoid arthritis, and arteriosclerosis. ", + "edges_from": [], + "edges_to": [], + "id": 2000, + "label": "BIOM 264", + "title": "Molecular and Cellular Basis of Disease (2)" + }, + { + "dept": "BIOM", + "description": "This course will focus on critical reading and understanding current areas in cell and molecular biology. The exact topic will vary, but will include such topics as protein trafficking, cell division, intracellular movement, cell interaction, and cell cycle.", + "edges_from": [], + "edges_to": [], + "id": 2001, + "label": "BIOM 240", + "title": "Critical Reading in Cell Biology (3)" + }, + { + "dept": "BIOM", + "description": "Intended for graduate students interested in principles of classical and molecular genetics. Will attend weekly genetics seminar and participate in didactic/discussion preparatory session. ", + "edges_from": [], + "edges_to": [], + "id": 2002, + "label": "BIOM 242", + "title": "Seminar in Genetics (1)" + }, + { + "dept": "BIPN", + "description": "Course focuses on physiological aspects of the human reproductive systems. Emphasis will be on cellular and systems physiology. Topics will include: reproductive endocrinology, gametogenesis, fertilization and implantation, pregnancy and parturition, development of reproductive systems, and reproductive pathologies. Students may not receive credit for both BIPN 134 and BICD 134. ", + "edges_from": [ + 1192 + ], + "edges_to": [], + "id": 2003, + "label": "BIPN 134", + "title": "Human Reproduction (4)" + }, + { + "dept": "NANO", + "description": "Basic engineering principles of nanofabrication. Topics include: photo-electronbeam and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Cross-listed with CENG 208. Students may not receive credit for both NANO 208 and CENG 208. ", + "edges_from": [], + "edges_to": [], + "id": 2004, + "label": "NANO 208", + "title": "Nanofabrication (4)" + }, + { + "dept": "NANO", + "description": "Each graduate student in NANO is expected to attend three seminars per quarter, of his or her choice, dealing with current topics in chemical engineering. Topics will vary. Cross-listed with CENG 205. S/U grades only. May be taken for credit four times.", + "edges_from": [], + "edges_to": [], + "id": 2005, + "label": "NANO 200", + "title": "Graduate Seminar in Chemical Engineering (1)" + }, + { + "dept": "NANO", + "description": "Understanding nanotechnology, broad implications, miniaturization: scaling laws; nanoscale physics; types and properties of nanomaterials; nanomechanical oscillators, nano(bio)electronics, nanoscale heat transfer; fluids at the nanoscale; machinery cell; applications of nanotechnology and nanobiotechnology. Students may not receive credit for both NANO 201 and CENG 211. ", + "edges_from": [], + "edges_to": [ + 2203 + ], + "id": 2006, + "label": "NANO 201", + "title": "Introduction to NanoEngineering (4)" + }, + { + "dept": "NANO", + "description": "Development of quantitative understanding of the different intermolecular forces between atoms and molecules and how these forces give rise to interesting phenomena at the nanoscale, such as flocculation, wetting, self-assembly in biological (natural) and synthetic systems. Cross-listed with CENG 212. Students may not receive credit for both NANO 202 and CENG 212. ", + "edges_from": [], + "edges_to": [ + 2009 + ], + "id": 2007, + "label": "NANO 202", + "title": "Intermolecular and Surface Forces (4)" + }, + { + "dept": "NANO", + "description": "Nanoscale synthesis\u2014top-down and bottom-up; chemical vapor deposition; plasma processes; soft-lithography; self-assembly; layer-by-layer. Characterization; microscopy; scanning probe microscopes; profilometry; reflectometry and ellipsometry; X-ray diffraction; spectroscopies (EDX, SIMS, Mass spec, Raman, XPS); particle size analysis; electrical, optical. Cross-listed with CENG 213. Students may not receive credit for both NANO 203 and CENG 213. ", + "edges_from": [], + "edges_to": [], + "id": 2008, + "label": "NANO 203", + "title": "Nanoscale Synthesis and Characterization (4)" + }, + { + "dept": "NANO", + "description": "This course will introduce students to analytical and numerical methods such as statistical mechanisms, molecular simulations, and finite differences and finite element modeling through their application to NanoEngineering problems involving polymer and colloiod self-assembly, absorption, phase separation, and diffusion. Cross-listed with CENG 214. Students may not receive credit for both NANO 204 and CENG 214. ", + "edges_from": [ + 2007 + ], + "edges_to": [], + "id": 2009, + "label": "NANO 204", + "title": "Nanoscale Physics and Modeling (4)" + }, + { + "dept": "NANO", + "description": "Scaling issues and hierarchical assembly of nanoscale components into higher order structures which retain desired properties at microscale and macroscale levels. Novel ways to combine top-down and bottom-up processes for integration of heterogeneous components into higher order structures. Cross-listed with CENG 215. Students may not receive credit for both NANO 205 and CENG 215. ", + "edges_from": [], + "edges_to": [], + "id": 2010, + "label": "NANO 205", + "title": "Nanosystems Integration (4)" + }, + { + "dept": "ENG", + "description": "This course examines the complexity of integrating components of product engineering, marketing and client requirements into a single engineering system. Case studies explore successes and failures in engineered systems and how to detect and avoid potential failures using strong leadership skills, systemic analysis and thinking. ", + "edges_from": [], + "edges_to": [], + "id": 2011, + "label": "ENG 210", + "title": "Systems Engineering (4)" + }, + { + "dept": "SOCI", + "description": "A survey of the major economic, political, and social forces that have shaped the contemporary world. The course will provide an introduction to theories of social change, as well as prepare the student for upper-division work in comparative-historical sociology. Will not receive credit for SOCI 20 and SOCL 20.", + "edges_from": [], + "edges_to": [], + "id": 2012, + "label": "SOCI 20", + "title": "Social Change in the Modern World (4)" + }, + { + "dept": "COMM", + "description": "The conflict between the state of Israel and the group of people known as Palestinians is arguably the most intractable conflict in the world today. This course is a critical engagement with debates about this conflict, and the different representations of these debates. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2013, + "label": "COMM 158", + "title": "Representations of the Israeli/Palestinian Conflict (4)" + }, + { + "dept": "COMM", + "description": "Explores tourism encounters around the world to question the discourses, imaginaries, and social practices involved in the construction, consumption, and reproduction of stereotypical representations of otherness (place, nature, culture, bodies). ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2014, + "label": "COMM 159", + "title": "Tourism, Power, and Place (4)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with HIUS 141.) The United States as a modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism. Credit not allowed for both Econ 159 and HIUS 141. ", + "edges_from": [], + "edges_to": [], + "id": 2015, + "label": "ECON 159", + "title": "Economic History of the United States II (4)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with HIUS 140.) The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism. Credit not allowed for both Econ 158 and HIUS 140. ", + "edges_from": [], + "edges_to": [], + "id": 2016, + "label": "ECON 158", + "title": "Economic History of the United States I (4)" + }, + { + "dept": "COMM", + "description": "This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2017, + "label": "COMM 152", + "title": "Global Economy and Consumer Culture (4)" + }, + { + "dept": "COMM", + "description": "This course examines how buildings, cities, towns, gardens, neighborhoods, roads, bridges, and other bits of infrastructure communicate. We consider both the materiality and language like properties of physical things in order to understand how built environments are represented, experienced, and remembered. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2018, + "label": "COMM 153", + "title": "Architecture as Communication (4)" + }, + { + "dept": "COMM", + "description": "Analysis of the forces propelling the Information Age. An examination of the differential benefits and costs, and a discussion of the presentation in the general media of the Information Age. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2019, + "label": "COMM 151", + "title": "The Information Age: Fact and Fiction (4)" + }, + { + "dept": "ECON", + "description": "Overview of the public sector in the United States and the scope of government intervention in economic life. Theory of public goods and externalities. Discussion of specific expenditure programs such as education and national defense. ", + "edges_from": [ + 797 + ], + "edges_to": [], + "id": 2020, + "label": "ECON 151", + "title": "Public Economics: Expenditures I (4)" + }, + { + "dept": "ECON", + "description": "Overview of the existing national tax structure in the United States, its effects on individual and firm decisions, and the resulting efficiency costs and distributional consequences. The course concludes with an examination of several commonly proposed tax reforms. ", + "edges_from": [ + 797 + ], + "edges_to": [], + "id": 2021, + "label": "ECON 150", + "title": "Public Economics: Taxation (4)" + }, + { + "dept": "COMM", + "description": "Develop a critical understanding of the history, politics, and poetics of the Latino barrio as a distinct urban form. Course covers key concepts such as the production of space, landscapes of power, spatial apartheid, everyday urbanism, urban renewal, and gentrification. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2022, + "label": "COMM 155", + "title": "Latino Space, Place, and Culture (4)" + }, + { + "dept": "LTTH", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 2023, + "label": "LTTH 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "BENG", + "description": "Introduction on the integration of bioengineering and clinical medicine through lectures and rotations with clinical faculty. Students will work with clinical mentors and course faculty to identify areas where engineering can improve diagnostics, clinical practice, and/or treatment. ", + "edges_from": [ + 1192, + 2025, + 2026, + 1283 + ], + "edges_to": [], + "id": 2024, + "label": "BENG 193", + "title": "Clinical Bioengineering (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 1318, + 1428, + 954, + 220, + 29, + 30, + 31 + ], + "edges_to": [ + 2024, + 2026, + 5550 + ], + "id": 2025, + "label": "BENG 140A", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 2025 + ], + "edges_to": [ + 2024, + 5550 + ], + "id": 2026, + "label": "BENG 140B", + "title": "" + }, + { + "dept": "MGT", + "description": "The modern workplace includes people different in culture, gender, age, language, religion, education, and more. Students will learn why diverse teams make better decisions and are often integral to the success of organizations. Topics include challenges of diversity, and the impact of emotional, social, and cultural intelligence on team success. Content will include significant attention to the experiences of Asian Americans and African Americans as members and leaders of such diverse teams.", + "edges_from": [], + "edges_to": [], + "id": 2027, + "label": "MGT 18", + "title": "Managing Diverse Teams (4)" + }, + { + "dept": "POLI", + "description": "This seminar provides perspectives on the theories and politics of European integration. Analysis will focus on the development of the European Union, the functioning of core institutions, and the challenges of creating a supranational political regime. ", + "edges_from": [], + "edges_to": [], + "id": 2028, + "label": "POLI 244A", + "title": "European Integration (4)" + }, + { + "dept": "VIS", + "description": "An in depth look at the art of Leonardo da Vinci with special emphasis on his training in Florence, interactions with Bramante, and the response to his work by Raphael. ", + "edges_from": [], + "edges_to": [], + "id": 2029, + "label": "VIS 122CN", + "title": "Leonardo da Vinci in Context (4)" + }, + { + "dept": "MATH", + "description": "Formulation and analysis of algorithms for constrained optimization. Optimality conditions; linear and quadratic programming; interior methods; penalty and barrier function methods; sequential quadratic programming methods. ", + "edges_from": [], + "edges_to": [], + "id": 2030, + "label": "MATH 271A-B-C", + "title": "Numerical Optimization (4-4-4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with CENG 221B.) Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. ", + "edges_from": [ + 513, + 676, + 677, + 168, + 169, + 988 + ], + "edges_to": [], + "id": 2031, + "label": "MAE 221B", + "title": "Mass Transfer (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with CENG 221A.) Conduction, convection, and radiation heat transfer. Development of energy conservation equations. Analytical and numerical solutions to transport problems. Specific topics and applications vary. ", + "edges_from": [ + 513, + 676, + 677, + 168, + 169, + 988 + ], + "edges_to": [ + 4243 + ], + "id": 2032, + "label": "MAE 221A", + "title": "Heat Transfer (4)" + }, + { + "dept": "HIEA", + "description": "Chinese society, thought, religion, culture, economy and politics from the Shang through the Song dynasties, through primary and secondary sources. Topics vary; may be repeated for credit. Requirements differ for undergraduate, MA and PhD students. Graduate students will be required to submit a more substantial piece of work or an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 2033, + "label": "HIEA 168/268", + "title": "Topics in Classical and Medieval Chinese History (4)" + }, + { + "dept": "TDHT", + "description": "An introduction to the fundamental techniques of analyzing dramatic texts. Focus is on the student\u2019s ability to describe textual elements and their relationships to each other as well as on strategies for writing critically about drama. ", + "edges_from": [], + "edges_to": [], + "id": 2034, + "label": "TDHT 10", + "title": "Introduction to Play Analysis (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in algebra. In recent years, topics have included number theory, commutative algebra, noncommutative rings, homological algebra, and Lie groups. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 2035, + "label": "MATH 207A", + "title": "Topics in Algebra (4)" + }, + { + "dept": "POLI", + "description": "How has warfighting evolved over the centuries? How has it varied across cultures? What has war been like for soldiers and civilians? How do societies mobilize for war, and how do they change in the short and long term from fighting? ", + "edges_from": [], + "edges_to": [], + "id": 2036, + "label": "POLI 143A", + "title": "War and Society (4)" + }, + { + "dept": "HISC", + "description": "Examines evolutionary theory before Darwin, the development of the theory of natural selection, the ongoing challenge from Lamarckism, nineteenth-century social Darwinism, the emergence of the neo-Darwinist synthesis, and the recent controversies over evolutionary psychology and creationism. Graduate students are expected to submit an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 2037, + "label": "HISC 173/273", + "title": "Seminar on Darwin and Darwinisms (4)" + }, + { + "dept": "ANAR", + "description": "Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the Department of Anthropology website. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 2038, + "label": "ANAR 100", + "title": "Special Topics in Anthropological Archaeology (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100A or after successful completion of Econ 100A with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 2039, + "label": "ECON 100AH", + "title": "Honors Microeconomics A (1)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1A. ", + "edges_from": [], + "edges_to": [], + "id": 2040, + "label": "Linguistics/Spanish (LISP) 1AX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research in nuclear physics, principally in the field of elementary particles. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2041, + "label": "PHYS 251", + "title": "High-Energy Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussion of current research in physics of the solid state and of other condensed matter. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2042, + "label": "PHYS 250", + "title": "Condensed Matter Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of recent research in astrophysics and space physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2043, + "label": "PHYS 253", + "title": "Astrophysics and Space Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of recent research in plasma physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2044, + "label": "PHYS 252", + "title": "Plasma Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussion of recent research in biological physics and quantitative biology by current graduate students. (S/U grades only.) May be taken for credit thirty times.", + "edges_from": [], + "edges_to": [], + "id": 2045, + "label": "PHYS 255", + "title": "Biophysics Research Talks (1)" + }, + { + "dept": "PHYS", + "description": "Presentation of current research in biological physics and quantitative biology by invited speakers from the United States and abroad. (S/U grades only.) May be taken for credit thirty times.", + "edges_from": [], + "edges_to": [], + "id": 2046, + "label": "PHYS 254", + "title": "Biophysics Seminar (1)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research in high-energy physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2047, + "label": "PHYS 257", + "title": "High-Energy Physics Special Topics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Critical analysis of classic and current literature in quantitative biology, involving written critiques and group discussion. (S/U grades only.) May be taken for credit thirty times.", + "edges_from": [], + "edges_to": [], + "id": 2048, + "label": "PHYS 256", + "title": "Critical Reading in Quantitative Biology (1)" + }, + { + "dept": "CENG", + "description": "Conduction, convection, and radiation heat transfer development of energy conservation equations. Analytical and numerical solutions to heat transport problems. Specific topics and applications vary. Cross-listed with MAE 221A. ", + "edges_from": [ + 513, + 676, + 677, + 168, + 169, + 988 + ], + "edges_to": [], + "id": 2049, + "label": "CENG 221A", + "title": "Heat Transfer (4)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research in astrophysics and space physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2050, + "label": "PHYS 258", + "title": "Astrophysics and Space Physics Special Topics Seminar (0\u20131)" + }, + { + "dept": "HIGR", + "description": "Research seminar in ancient history. Selected topics in ancient Greek and Roman history.", + "edges_from": [], + "edges_to": [], + "id": 2051, + "label": "HIGR 260A", + "title": "Research Seminar in Ancient History (4)" + }, + { + "dept": "CENG", + "description": "Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. Cross-listed with MAE 221B. ", + "edges_from": [ + 513, + 676, + 677, + 168, + 169, + 988 + ], + "edges_to": [], + "id": 2052, + "label": "CENG 221B", + "title": "Mass Transfer (4)" + }, + { + "dept": "CSE", + "description": "This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNS sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. ", + "edges_from": [ + 2053, + 2054, + 2055, + 2056, + 2057, + 11, + 16, + 17, + 411 + ], + "edges_to": [ + 5873, + 2053, + 4574 + ], + "id": 2053, + "label": "CSE 181", + "title": "Molecular Sequence Analysis (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2057, + 2053, + 5425 + ], + "id": 2054, + "label": "MATH 188", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 5873, + 2053, + 4574 + ], + "id": 2055, + "label": "BENG 181", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2057, + 4751, + 3356, + 2053, + 4407 + ], + "id": 2056, + "label": "CHEM 114C", + "title": "" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [ + 2054, + 2056, + 11, + 16, + 17, + 411 + ], + "edges_to": [ + 5873, + 2053, + 4574 + ], + "id": 2057, + "label": "BIMM 181", + "title": "" + }, + { + "dept": "CSE", + "description": "Topics include an overview of various aspects of bioinformatics and will simultaneously introduce students to programming in Python. The assessments in the course represent various programming challenges and include solving diverse biological problems using popular bioinformatics tools. ", + "edges_from": [ + 954 + ], + "edges_to": [], + "id": 2058, + "label": "CSE 180", + "title": "Biology Meets Computing (4)" + }, + { + "dept": "CSE", + "description": "This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object oriented databases, data modeling and description. Survey of current biological database with respect to above, implementation of a database on a biological topic. Cross-listed with BIMM 182/BENG 182/CHEM 182. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 5873, + 4574 + ], + "id": 2059, + "label": "CSE 182", + "title": "Biological Databases (4)" + }, + { + "dept": "MGT", + "description": "Addresses issues faced in government and not-for-profit accounting. Students will gain insight into how and why these issues may have been resolved either similarly or differently from the for-profit business sector. Focus will be placed on how revenue and expense recognition, asset and liability valuation, the scope of the reporting entity, reporting cash flows, etc., differ in comparison to for-profit business accounting. ", + "edges_from": [ + 2061 + ], + "edges_to": [], + "id": 2060, + "label": "MGT 147", + "title": "Not-For-Profit and Government Accounting (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4492, + 2060, + 4669, + 4495 + ], + "id": 2061, + "label": "MGT 131B", + "title": "" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "edges_from": [], + "edges_to": [], + "id": 2062, + "label": "EDS 260C", + "title": "Educational" + }, + { + "dept": "CHEM", + "description": "and Properties of Organic Molecules (4)", + "edges_from": [], + "edges_to": [], + "id": 2063, + "label": "CHEM 256", + "title": "Structure" + }, + { + "dept": "CHEM", + "description": "A comprehensive survey of modern bioorganic and natural products chemistry. Topics include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 157. ", + "edges_from": [], + "edges_to": [], + "id": 2064, + "label": "CHEM 257", + "title": "Biorganic and Natural Products Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "A qualitative approach to the mechanisms of various organic reactions; substitutions, additions, eliminations, condensations, rearrangements, oxidations, reductions, free-radical reactions, and photochemistry. Includes considerations of molecular structure and reactivity, synthetic methods, spectroscopic tools, and stereochemistry. The topics emphasized will vary from year to year. This is the first quarter of the advanced organic chemistry sequence. May be coscheduled with CHEM 154. ", + "edges_from": [], + "edges_to": [], + "id": 2065, + "label": "CHEM 254", + "title": "Mechanisms of Organic Reactions (4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 155.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper and/or exam beyond that expected of students in CHEM 155. (May not be offered every year.) ", + "edges_from": [ + 2067, + 2068 + ], + "edges_to": [], + "id": 2066, + "label": "CHEM 255", + "title": "Synthesis of Complex Molecules (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2066, + 5117 + ], + "id": 2067, + "label": "CHEM 252", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 1552, + 1553, + 1554, + 1555 + ], + "edges_to": [ + 2066, + 5117 + ], + "id": 2068, + "label": "CHEM 152", + "title": "" + }, + { + "dept": "CHEM", + "description": "The course focuses on the discovery and development of modern antibiotics. We will discuss the discovery, synthesis, medicinal chemistry, mechanism of action studies, and preclinical as well as clinical development of drugs that are currently being used in the therapy of bacterial infections. Emphasis will be given to compounds approved over the last three decades and investigational drugs that are in clinical trials.", + "edges_from": [], + "edges_to": [], + "id": 2069, + "label": "CHEM 253", + "title": "Antibiotics (4)" + }, + { + "dept": "CHEM", + "description": "Course offers training in responsible conduct of research in chemistry and biochemistry, as well as presentation skills, teamwork, and other survival skills for a career in research. Objectives include learning rules, issues, and resources for research ethics; understanding the value of ethical decision-making; and creating a positive disposition toward learning about research ethics. The course is designed to meet federal grant requirements for training in the responsible conduct of research. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2070, + "label": "CHEM 250", + "title": "Research Survival Skills (2)" + }, + { + "dept": "CHEM", + "description": "Group discussion of research activities and progress of the group members. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2071, + "label": "CHEM 251", + "title": "Research Conference (2)" + }, + { + "dept": "POLI", + "description": "An analysis of the dynamics of the Chinese Revolution from the fall of the Qing Dynasty (1644\u20131911) to the present. Emphasis is placed on the relationship between political thought and the dynamics of the revolutionary process.", + "edges_from": [], + "edges_to": [], + "id": 2072, + "label": "POLI 131C", + "title": "The Chinese Revolution (4)" + }, + { + "dept": "CHEM", + "description": "Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be strongly emphasized. Students will be required to write and submit a paper that reviews a recent research publication that reports the structure determination by spectroscopic methods of natural products. May be coscheduled with CHEM 158. ", + "edges_from": [], + "edges_to": [], + "id": 2073, + "label": "CHEM 258", + "title": "Applied Spectroscopy (4)" + }, + { + "dept": "CHEM", + "description": "Various advanced topics in organic chemistry. Includes but is not limited to: advanced kinetics, advanced spectroscopy, computational chemistry, heterocyclic chemistry, medicinal chemistry, organotransition metal chemistry, polymers, solid-phase synthesis/combinatorial chemistry, stereochemistry, and total synthesis classics.", + "edges_from": [], + "edges_to": [], + "id": 2074, + "label": "CHEM 259", + "title": "Special Topics in Organic Chemistry (2\u20134)" + }, + { + "dept": "SE", + "description": "Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ", + "edges_from": [], + "edges_to": [], + "id": 2075, + "label": "SE 262", + "title": "Aerospace Structures Repair (4)" + }, + { + "dept": "SE", + "description": "Advanced topics in the design of weight-critical aerospace structures. Topics include: static, dynamic and environmental load definitions; metallics and polymeric composite material selection; semi-monocoque analysis techniques, and bolted/bonded connections. Design procedures for sizing the structural components of aircraft and spacecraft will be reviewed.", + "edges_from": [], + "edges_to": [], + "id": 2076, + "label": "SE 261", + "title": "Aerospace Engineering Design (4)" + }, + { + "dept": "SE", + "description": "This course examines the properties, physics, mechanisms, and design of smart and multifunctional materials; data acquisition and operating principles of sensor technologies; smart materials (piezoresistive, piezoelectric, magnetorheological, and shape memory materials); nanotechnology-enabled multifunctional materials; and applications for structural health monitoring. Use of computer resources. ", + "edges_from": [], + "edges_to": [], + "id": 2077, + "label": "SE 266", + "title": "Smart and Multifunctional Materials (4)" + }, + { + "dept": "MATH", + "description": "Lebesgue integral and Lebesgue measure, Fubini theorems, functions of bounded variations, Stieltjes integral, derivatives and indefinite integrals, the spaces L and C, equi-continuous families, continuous linear functionals general measures and integrations. ", + "edges_from": [ + 384, + 386, + 387 + ], + "edges_to": [], + "id": 2078, + "label": "MATH 240A-B-C", + "title": "Real Analysis (4-4-4)" + }, + { + "dept": "SE", + "description": "A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. Matlab-based exercises. Term project. ", + "edges_from": [], + "edges_to": [], + "id": 2079, + "label": "SE 265", + "title": "Structural Health Monitoring (4)" + }, + { + "dept": "SE", + "description": "Dynamic/model testing of structures: test planning/execution, actuation, sensing, and data acquisition, signal processing, data conditioning, test troubleshooting. Methods of updating finite element structural models to correlate with dynamic test results. Model/test correlation assessment in industrial practice. Recommended preparation: vibrations, finite element analysis, and knowledge of Matlab. ", + "edges_from": [], + "edges_to": [], + "id": 2080, + "label": "SE 268", + "title": "Structural System Testing and Model Correlation (4)" + }, + { + "dept": "SE", + "description": "Introduction to engineering computing. Interpolation, integration, differentiation. Ordinary differential equations. Nonlinear algebraic equations. Systems of linear algebraic equations. Representation of data in the computer. Use of computer resources. ", + "edges_from": [ + 2082, + 2083, + 653, + 654 + ], + "edges_to": [ + 2084 + ], + "id": 2081, + "label": "SE 121A", + "title": "Introduction to Computing for Engineers (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 2081, + 4076 + ], + "id": 2082, + "label": "SE 1", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 141, + 135 + ], + "edges_to": [ + 2081, + 3745 + ], + "id": 2083, + "label": "SE 9", + "title": "" + }, + { + "dept": "SE", + "description": "Exploration of numerical algorithms in engineering computations. Centered around computing projects. Matrix eigenvalue problems, boundary value problems, solution of systems of nonlinear algebraic equations, optimization. Use of computer resources. ", + "edges_from": [ + 2081, + 2085, + 2086 + ], + "edges_to": [ + 4167 + ], + "id": 2084, + "label": "SE 121B", + "title": "Computing Projects in Structural Engineering (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 920, + 3330, + 139 + ], + "edges_to": [ + 3579, + 4167, + 2084, + 2133, + 2231 + ], + "id": 2085, + "label": "SE 101C", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2084, + 4167, + 2133, + 2230, + 2231, + 3579 + ], + "id": 2086, + "label": "MAE 130C", + "title": "" + }, + { + "dept": "ECE", + "description": "This course introduces concepts of large-scale power system analysis: electric power generation, distribution, steady-state analysis and economic operation. It provides the fundamentals for advanced courses and engineering practice on electric power systems, smart grid, and electricity economics. The course requires implementing some of the computational techniques in simulation software. ", + "edges_from": [ + 258 + ], + "edges_to": [ + 2088, + 1113 + ], + "id": 2087, + "label": "ECE 121A", + "title": "Power Systems Analysis and Fundamentals (4)" + }, + { + "dept": "ECE", + "description": "Principles of electro-mechanical energy conversion, balanced three-phase systems, fundamental concepts of magnetic circuits, single-phase transformers, and the steady-state performance of DC and induction machines. Students may not receive credit for both ECE 121B and ECE 121. ", + "edges_from": [ + 2087 + ], + "edges_to": [], + "id": 2088, + "label": "ECE 121B", + "title": "Energy Conversion (4)" + }, + { + "dept": "POLI", + "description": "An examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on computational social science. ", + "edges_from": [], + "edges_to": [], + "id": 2089, + "label": "POLI 288", + "title": "Multidisciplinary Methods in Political Science: Computational Social Science (4)" + }, + { + "dept": "POLI", + "description": "Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on biology. ", + "edges_from": [], + "edges_to": [], + "id": 2090, + "label": "POLI 289", + "title": "Multidisciplinary Methods in Political Science: Biology (4)" + }, + { + "dept": "LTWR", + "description": "A review of the history of the development of alphabets and writing systems. Survey of the rise of literacy since the fifteenth century and analysis of continuing literacy problems in developed and developing countries.", + "edges_from": [], + "edges_to": [], + "id": 2091, + "label": "LTWR 140", + "title": "History of Writing (4)" + }, + { + "dept": "HLAW", + "description": "This course presents a comprehensive view of modern issues at the intersection of health care and law, with an emphasis on improving understanding and synergy between the professions. The course stresses foundational understanding of how health law and policy is formulated and the application of health law and policy in current practice. A portion of the class is devoted to group work where students select and study issues in depth to build a framework for resolving enduring challenges in the field. A variety of timely topics on the health law system and procedures/processes, such as Medicare and Medi-Cal coverage, are introduced to reinforce understanding. Part B emphasizes \u201cpublic\u201d law\u2014the law concerning government\u2019s own activities and programs, such as Medicare and Medicaid. ", + "edges_from": [], + "edges_to": [], + "id": 2092, + "label": "HLAW 207B", + "title": "Principles of Health Law and Policy B (4.5)" + }, + { + "dept": "LTWR", + "description": "Wide reading in current theory and practice of teaching writing in schools and colleges. Careful attention to various models of classroom writing instruction and to different approaches in the individual conference. Students in this course may observe instruction in the UC San Diego college writing programs or tutor freshman students in those programs. ", + "edges_from": [], + "edges_to": [], + "id": 2093, + "label": "LTWR 144", + "title": "The Teaching of Writing (4)" + }, + { + "dept": "HLAW", + "description": "The course offers a broad introduction to the legal aspects of American health care, through an in-depth analysis of selected contemporary issues at the intersection of health care and legal systems. It draws heavily on the experiences of the participants as well as the faculty. The course attends to how and why the law came to be (legal policy), how it is used (legal process), and how it affects the shape, cost, and quality of health care in America (legal impact). Part A emphasizes \u201cprivate\u201d law topics\u2014the legal environment within which the private participants in health care interact with each other. ", + "edges_from": [], + "edges_to": [], + "id": 2094, + "label": "HLAW 207A", + "title": "Principles in Health Law and Policy A (4.5)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in international law and regulation: development and presentation of research projects by graduate students; presentation of research by faculty. Third-year students present dissertation prospectus, candidates make yearly presentations of dissertation research. S/U grades only. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 2095, + "label": "POLI 280", + "title": "Workshop: International Law and Regulation (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in American politics: development and presentation of research projects by graduate students, presentations of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2096, + "label": "POLI 281", + "title": "Workshop: American Politics (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in comparative politics, development and presentation of research projects by graduate students; presentations of research projects by faculty. Third-year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2097, + "label": "POLI 282", + "title": "Workshop: Comparative Politics (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in international relations, development and presentation of research projects by graduate students, presentations of research projects by faculty. Third year students present dissertation prospectus; candidates make yearly presentation of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2098, + "label": "POLI 283", + "title": "Workshop: International Relations (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in political theory: development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2099, + "label": "POLI 285", + "title": "Workshop: Political Theory (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in political methodology; development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2100, + "label": "POLI 286", + "title": "Workshop: Methodology (4)" + }, + { + "dept": "POLI", + "description": "Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on social networks. ", + "edges_from": [], + "edges_to": [], + "id": 2101, + "label": "POLI 287", + "title": "Multidisciplinary Methods in Political Science: Social Networks (4)" + }, + { + "dept": "VIS", + "description": "Study of the philosophical concepts of the function of art and visual culture and the criteria for its evaluation in diverse epochs and cultures. May be taught as an historical overview or comparative study or focus a single topic or theorist.", + "edges_from": [], + "edges_to": [], + "id": 2102, + "label": "VIS 243", + "title": "Aesthetic Theory (4)" + }, + { + "dept": "MGT", + "description": "This course helps students understand the complexities involved in international deals. Examines current financial reporting practices for business entities engaged in international activities. Focuses on policy issues such as foreign currency translation, global inflation, transfer pricing, complying with reporting requirements, taxation, and international accounting and auditing standards. ", + "edges_from": [ + 2104, + 2105 + ], + "edges_to": [], + "id": 2103, + "label": "MGT 148", + "title": "Mergers and Acquisitions (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [ + 1132, + 1884, + 1133 + ], + "edges_to": [ + 2103 + ], + "id": 2104, + "label": "MGT 137", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2103 + ], + "id": 2105, + "label": "MGT 136", + "title": "" + }, + { + "dept": "LTWL", + "description": "to Semiotics and Applications (4)", + "edges_from": [], + "edges_to": [], + "id": 2106, + "label": "LTWL 128", + "title": "Introduction" + }, + { + "dept": "LTWL", + "description": "What is wisdom? Does wisdom refer to a specific type of discourse; a literary genre; a specific content that holds true transculturally and transtemporally? This class will consider these questions by reading literature from diverse times and places.", + "edges_from": [], + "edges_to": [], + "id": 2107, + "label": "LTWL 129", + "title": "Wisdom: The Literature of Authority (4)" + }, + { + "dept": "SOCI", + "description": "A sociological examination of the era of the 1960s in America, its social and political movements, its cultural expressions, and debates over its significance, including those reflected in video documentaries. Comparisons will also be drawn with events in other countries. ", + "edges_from": [ + 2108, + 2109 + ], + "edges_to": [ + 2108 + ], + "id": 2108, + "label": "SOCI 187E", + "title": "The Sixties (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 2108 + ], + "id": 2109, + "label": "SOCD 187S", + "title": "" + }, + { + "dept": "CHEM", + "description": "Interacting systems at equilibrium, both classical (liquids)", + "edges_from": [], + "edges_to": [], + "id": 2110, + "label": "CHEM 232B", + "title": "Statistical Mechanics II (4)" + }, + { + "dept": "LTWL", + "description": "An exploration of the genre\u2014past and present, in literature and the visual media\u2014as a cultural response to scientific and technological change, as modern mythmaking, and as an enterprise serving a substantial fan subculture. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2111, + "label": "LTWL 124", + "title": "Science Fiction (4)" + }, + { + "dept": "LTWL", + "description": "A study of representations of the vampire through a variety of methodological perspectives with an emphasis on historical context and cultural symbolism.", + "edges_from": [], + "edges_to": [], + "id": 2112, + "label": "LTWL 123", + "title": "Vampires in Literature (4)" + }, + { + "dept": "LTWL", + "description": "A study of various popular forms\u2014such as pop music, cult books, film, fashion, magazines, graphic arts\u2014within a broader cultural context. Focus may be on a particular genre (e.g., best sellers) or era (e.g., the sixties). May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2113, + "label": "LTWL 120", + "title": "Popular Literature and Culture (4)" + }, + { + "dept": "USP", + "description": "(Same as HIUS 117.) This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification. ", + "edges_from": [], + "edges_to": [], + "id": 2114, + "label": "USP 168", + "title": "History of Los Angeles (4)" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of comparative politics. May be repeated for credit three times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 2115, + "label": "POLI 138D", + "title": "Special Topics in Comparative Politics (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 207C) Introduction to the algorithmic theory of point lattices (aka algorithmic geometry of numbers), and some of its most important applications in cryptography and cryptanalysis. Topics usually include: LLL basis reduction algorithm, cryptanalysis of broadcast RSA, hardness of approximating lattice problems. ", + "edges_from": [ + 782, + 1743 + ], + "edges_to": [], + "id": 2116, + "label": "CSE 206A", + "title": "Lattice Algorithms and Applications (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in differential geometry. In recent years, topics have included Morse theory and general relativity. May be taken for credit six times with consent of adviser. ", + "edges_from": [], + "edges_to": [ + 2118 + ], + "id": 2117, + "label": "MATH 257A", + "title": "Topics in Differential Geometry (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in differential geometry. Topics include Morse theory and general relativity. May be taken for credit three times with consent of adviser. ", + "edges_from": [ + 2117 + ], + "edges_to": [], + "id": 2118, + "label": "MATH 257B", + "title": "Further Topics in Differential Geometry (4)" + }, + { + "dept": "GPIM", + "description": "This course examines the current business environment in Latin America, taking into account political, economic, and cultural factors. The course will be based on case studies, supplemented with guest lectures from business executives and discussions of selected readings. Students will be required to develop a business plan as a major part of the grade for the course. Renumbered from IRGN 436. Students may not receive credit for both GPIM 436 and IRGN 436.", + "edges_from": [], + "edges_to": [], + "id": 2119, + "label": "GPIM 436", + "title": "Doing Business in Latin America (4)" + }, + { + "dept": "GPIM", + "description": "Introduction to operations and technology, including services, manufacturing, and R&D. How organizations produce useful outputs that meet customer needs. Capital cost, variable cost, speed, lead time, robustness, including process analysis, supply chains, total quality, and process improvement. Case studies, simulations, and lectures. Renumbered from IRGN 438. Students may not receive credit for GPIM 438 and IRGN 438. ", + "edges_from": [ + 1840 + ], + "edges_to": [], + "id": 2120, + "label": "GPIM 438", + "title": "Operations and Technology Management (4)" + }, + { + "dept": "Soc/G", + "description": "An examination of theories accounting for the causes and consequences of social movements, including a discussion of the strengths and weaknesses of such theories for understanding historically specific revolutions, rebellions, and violent and nonviolent forms of protest in various parts of the world. ", + "edges_from": [], + "edges_to": [], + "id": 2121, + "label": "Soc/G 222", + "title": "Social Movements (4)" + }, + { + "dept": "VIS", + "description": "The art of the Early Renaissance in Northern Europe is marked by what appears to be striking conflict: on the one hand, a new love of nature and the pleasures of court society, and on the other, an intensified spirituality and focus on personal devotion. This course explores these provocative crosscurrents in works by master painters like Jan van Eyck and Hieronymus Bosch as well as in lesser known mass-produced objects of everyday use. ", + "edges_from": [], + "edges_to": [], + "id": 2122, + "label": "VIS 123AN", + "title": "Between Spirit and Flesh (4)" + }, + { + "dept": "LTKO", + "description": "This course will help students develop intermediate-level skills in the Korean language. Upon completion of this course, students are expected to have good command of Korean in various daily conversational situations. ", + "edges_from": [ + 2124 + ], + "edges_to": [], + "id": 2123, + "label": "LTKO 2A-B-C", + "title": "Intermediate Korean: Second Year I-II-III (5-5-5)" + }, + { + "dept": "LTKO", + "description": "", + "edges_from": [ + 5842 + ], + "edges_to": [ + 2123 + ], + "id": 2124, + "label": "LTKO 1C", + "title": "" + }, + { + "dept": "Soc/G", + "description": "This course discusses the relationship between state and society in a comparative perspective. The focus is on the interaction among states, domestic economic elites, and external economic and political processes in the determination of different developmental paths. Analytically, it includes topics such as characteristics and functions of the state in different types of society throughout history (with an emphasis on the varieties of capitalist and socialist state), the autonomy of the state and its causes in different settings, and developmental and predatory consequences of state activity. Readings will include both theoretical and empirical materials, the latter dealing mostly with nineteenth- and twentieth-century Europe and twentieth-century Latin America. ", + "edges_from": [], + "edges_to": [], + "id": 2125, + "label": "Soc/G 226", + "title": "Political Sociology (4)" + }, + { + "dept": "Soc/G", + "description": "Ethnographic recording of field data in written and audiovisual formats, including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual data in terms of styles, format, and approaches. Graduate students are required to submit a fifteen-page mid-term paper comparing a written and an audiovisual ethnography and a final video ethnography with a project abstract. ", + "edges_from": [ + 1851, + 1523 + ], + "edges_to": [], + "id": 2126, + "label": "Soc/G 227", + "title": "Ethnographic Film: Media Methods (6)" + }, + { + "dept": "COMM", + "description": "Analyze forms of social issue media production, photography, audio/radio, arts, crafts, web, print zines, political documentary. Students work with several forms of media making: video, audio, web design, and a project in their chosen format. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2127, + "label": "COMM 120I", + "title": "AMP: Social Issues in Media Production (4)" + }, + { + "dept": "COMM", + "description": "An examination of how the media present society\u2019s members and activities in stereotypical formats. Reasons for and consequences of this presentation are examined. Student responsibilities will be (a) participation in measurement and analysis of stereotype presentations. (b) investigating techniques for assessing both cognitive and behavioral effects of such scripted presentations on the users of media. Students will not receive credit for COMT 105 and COMM 120M. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2128, + "label": "COMM 120M", + "title": "AMP: Media Stereotypes (4)" + }, + { + "dept": "COMM", + "description": "Designed for students working in student news organizations or off-campus internships or jobs in news, public relations, or public information. A workshop in news writing and news analysis. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2129, + "label": "COMM 120N", + "title": "AMP: News Media Workshop (4)" + }, + { + "dept": "COMM", + "description": "This course develops critical understanding of educational uses of digital media through firsthand experience in public educational settings, and readings/discussions of challenges, benefits, and pitfalls of educational applications of media technology. Three hours/week of fieldwork required. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2130, + "label": "COMM 120P", + "title": "AMP: Digital Media in Education (4)" + }, + { + "dept": "COGS", + "description": "This course provides a rigorous treatment of hypothesis testing, statistical inference, model fitting, and exploratory data analysis techniques used in the cognitive and neural sciences. Students will acquire an understanding of mathematical foundations and hands-on experience in applying these methods using Matlab.", + "edges_from": [], + "edges_to": [], + "id": 2131, + "label": "COGS 243", + "title": "Statistical Inference and Data Analysis (2 or 4)" + }, + { + "dept": "COGS", + "description": "(Same as Neurosciences 241.) This course will cover ethical issues that arise in academia, including: dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss \u201csurvival\u201d issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. S/U only.", + "edges_from": [], + "edges_to": [], + "id": 2132, + "label": "COGS 241", + "title": "Ethics and Survival Skills in Academia (3)" + }, + { + "dept": "SE", + "description": "A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. MATLAB-based exercise. Term project. Use of computer resources. ", + "edges_from": [ + 2085, + 2086 + ], + "edges_to": [], + "id": 2133, + "label": "SE 165", + "title": "Structural Health Monitoring (4)" + }, + { + "dept": "COMM", + "description": "Practice, history, and theory of writing for digital media. Text combines with images, sounds, movement, and interaction. New network technologies (e-mail, blogs, wikis, and virtual worlds) create new audience relationships. Computational processes enable texts that are dynamically configured and more. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2134, + "label": "COMM 120W", + "title": "AMP: Writing for Digital Media (4)" + }, + { + "dept": "ANTH", + "description": "Core seminar focuses on motives, values, cognition, and qualities of personal experience. ", + "edges_from": [ + 2136 + ], + "edges_to": [], + "id": 2135, + "label": "ANTH 280C", + "title": "Core Seminar in Psychological Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2135 + ], + "id": 2136, + "label": "ANGR 280C", + "title": "" + }, + { + "dept": "ANTH", + "description": "Seminar focuses on the development of archaeological theory. Required of archaeological and biological anthropology graduate students, sociocultural students may take this course to fulfill core distribution requirement. ", + "edges_from": [ + 2138 + ], + "edges_to": [], + "id": 2137, + "label": "ANTH 280D", + "title": "Core Seminar in Anthropological Archaeology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2137 + ], + "id": 2138, + "label": "ANGR 280D", + "title": "" + }, + { + "dept": "ANTH", + "description": "This seminar will examine the central problems and concepts of biological anthropology, laying the foundation for first-year graduate students in Biological Anthropology as well as providing an overview of the field for graduate students in other areas of anthropology. ", + "edges_from": [ + 2140 + ], + "edges_to": [], + "id": 2139, + "label": "ANTH 280E", + "title": "Core Seminar in Biological Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2139 + ], + "id": 2140, + "label": "ANGR 280E", + "title": "" + }, + { + "dept": "ANTH", + "description": "Examines the theoretical and methodological foundations and principal research questions of linguistic anthropology, providing the fundamentals for graduate study in this area. Required for students specializing in linguistic anthropology and open to other students. Course formerly numbered as ANTH 263. Students will not receive credit for both ANTH 263 and ANTH 280F. ", + "edges_from": [], + "edges_to": [], + "id": 2141, + "label": "ANTH 280F", + "title": "Core Seminar in Linguistic Anthropology (4)" + }, + { + "dept": "POLI", + "description": "This course examines contemporary issues in Latino politics in the U.S.; comparisons of racial and ethnic group experiences in the U.S.; Latino access to the political system through political participation. ", + "edges_from": [], + "edges_to": [], + "id": 2142, + "label": "POLI 105A", + "title": "Latino Politics in the U.S. (4)" + }, + { + "dept": "MGT", + "description": "This course provides the theoretical underpinnings", + "edges_from": [], + "edges_to": [], + "id": 2143, + "label": "MGT 226", + "title": "Theory of Industrial Organization and Business Strategy (4)" + }, + { + "dept": "GPPS", + "description": "This course will analyze how the domestic politics of each country, their international negotiations, and their interaction concerning economic issues have affected the US-Japan relationship. Both the politics of cooperation and integration, and trade friction and conflict will be addressed in part through study of specific cases. Renumbered from IRGN 460. Students may not receive credit for GPPS 460 and IRGN 460.", + "edges_from": [], + "edges_to": [], + "id": 2144, + "label": "GPPS 460", + "title": "The Politics of US-Japan Economic Relations (4)" + }, + { + "dept": "COMM", + "description": "This course offers students the opportunity to produce and engage in critical discussions around various television production formats. We will study and produce a variety of projects, including public service announcements, panel programs, scripted drama, and performance productions. May be taken for credit three times. ", + "edges_from": [ + 540, + 731, + 1412, + 1413 + ], + "edges_to": [], + "id": 2145, + "label": "COMM 102M", + "title": "MMPP: Studio Television (6)" + }, + { + "dept": "COMM", + "description": "A combined lecture/lab in a specially designed after-school setting in southeastern San Diego working with children and adults. Students design new media and produce special projects, and explore issues related to human development, social justice, and community life. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2146, + "label": "COMM 102C", + "title": "MMPP: Practicum in New Media and Community Life (6)" + }, + { + "dept": "COMM", + "description": "A combined lecture/lab course on after-school learning, social change, and community-based research. Students are expected to participate in a supervised after-school setting at one of four community labs in San Diego County. Students will learn ethnographic field methods, develop culturally relevant curriculum, and work in diverse settings. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2147, + "label": "COMM 102D", + "title": "MMPP: Practicum in Child Development (6)" + }, + { + "dept": "GPPS", + "description": "This course provides an introduction to five Southeast Asian countries: Indonesia, Thailand, Malaysia, the Philippines, and Vietnam. The focus will be on the national level of political and economic issues in these countries. In addition, a number of region-wide issues will also be examined such as: Chinese business groups and networks; clientelism and corruption; regional trade and investment linkages; democratization; and the implications of political change for future economic development. Renumbered from IRGN 463. Students may not receive credit for GPPS 463 and IRGN 463.", + "edges_from": [], + "edges_to": [], + "id": 2148, + "label": "GPPS 463", + "title": "Politics of Southeast Asia (4)" + }, + { + "dept": "HITO", + "description": "The course examines multiform mystical traditions in world religions and cultures, including Greco-Roman philosophy, Judaism, Christianity, Islam, Hinduism, and Buddhism by studying classics of mystical literature and secondary sources; also addressed are mystical beliefs and practices in contemporary society.", + "edges_from": [], + "edges_to": [], + "id": 2149, + "label": "HITO 124", + "title": "Mystical Traditions (4)" + }, + { + "dept": "HITO", + "description": "This course will examine the different ways that attitudes toward children have changed throughout history. By focusing on the way that the child was understood, we will examine the changing role of the family, the role of culture in human development, and the impact of industrialization and modern institutions on the child and childhood.", + "edges_from": [], + "edges_to": [], + "id": 2150, + "label": "HITO 126", + "title": "A History of Childhood (4)" + }, + { + "dept": "COMM", + "description": "An introduction to the techniques and conventions common in television production with equal emphasis on method and content. Studio sessions provide students with opportunities to experiment in framing subject matter through a variety of cinematographic methods. May be taken for credit three times. ", + "edges_from": [ + 540, + 731, + 1412, + 1413 + ], + "edges_to": [], + "id": 2151, + "label": "COMM 102P", + "title": "MMPP: Television Analysis and Production (6)" + }, + { + "dept": "ETHN", + "description": "This course examines the effects of war and militarism on women\u2019s lives, focusing in particular on the experiences of Vietnamese women during and in the aftermath of the Vietnam War. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 2152, + "label": "ETHN 173GS", + "title": "Gender, Sexuality, and War (4)" + }, + { + "dept": "CSE", + "description": "Undergraduate research for completing an honors project under the supervision of a CSE faculty member. May be taken across multiple quarters. Students should enroll for a letter grade. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2153, + "label": "CSE 199H", + "title": "CSE Honors Thesis Research for Undergraduates (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with AESE 278C, CSE 278C, and ECE 206.) Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [], + "edges_to": [ + 2434, + 2429 + ], + "id": 2154, + "label": "MAE 278A", + "title": "Modeling, Simulation, and Analysis (4)" + }, + { + "dept": "TDGR", + "description": "This seminar focuses on concepts that inform creation, performance, research, and critical analysis of current and emerging dance making practices with varying content by faculty. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 2155, + "label": "TDGR 215A", + "title": "Special Topics in Dance Making (4)" + }, + { + "dept": "POLI", + "description": "Readings in historical and contemporary feminist theory; development of gender as a category of political analysis; alternative perspectives on core concepts and categories in feminist thought. ", + "edges_from": [], + "edges_to": [], + "id": 2156, + "label": "POLI 116A", + "title": "Feminist Theory (4)" + }, + { + "dept": "ECE", + "description": "Antennas, waves, polarization. Friis transmission and Radar equations, dipoles, loops, slots, ground planes, traveling wave antennas, array theory, phased arrays, impedance, frequency independent antennas, microstrip antennas, cell phone antennas, system level implications such as MIMO, multi-beam and phased array systems. (Recommended prerequisites: ECE107 or an equivalent undergraduate course in electromagnetics.) ", + "edges_from": [], + "edges_to": [], + "id": 2157, + "label": "ECE 222A", + "title": "Antennas and Their System Applications (4)" + }, + { + "dept": "RELI", + "description": "This course introduces the students to historical and social developments of Islam in the United States. Tracing Islam back to the African slaves, the course examines various Muslim communities in the United States, with a focus on African-American Muslims, especially Malcolm X. ", + "edges_from": [], + "edges_to": [], + "id": 2158, + "label": "RELI 149", + "title": "Islam in America (4)" + }, + { + "dept": "RELI", + "description": "The course surveys women\u2019s formal and informal roles and activities in a number of faiths, examining how women\u2019s agency and activism may be constrained or fostered by religious ideologies and norms in various historical and political contexts. Examples are drawn from a range of male-centered (Islam, Judaism, Christianity, Buddhism) and woman-centered religions (Sande, Afro-Brazilian, Z-ar Cult), and newly formed theologies (Womanist, Native American, and Mujerista; New Age feminist spiritualities). ", + "edges_from": [], + "edges_to": [], + "id": 2159, + "label": "RELI 148", + "title": "Religion and Women\u2019s Activisms (4)" + }, + { + "dept": "TDGR", + "description": "Selected professional opportunities in repertory and commercial theatre, designed to engage the student in particular creative responsibilities under the guidance of master artist-teachers. Student is expected to give biweekly reports detailing his/her experience with the professional company. ", + "edges_from": [], + "edges_to": [], + "id": 2160, + "label": "TDGR 229", + "title": "Theatre Externship (6\u201312)" + }, + { + "dept": "RELI", + "description": "This course explores religion as a system of bodily practices, rather than one of tenets or beliefs. How do day-to-day activities as well as significant rituals express and inform people\u2019s religious lives? Why is doctrine an insufficient basis for understanding religion? May be taken up to three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 2161, + "label": "RELI 143", + "title": "Topics in Performing Religion (4)" + }, + { + "dept": "TDGR", + "description": "Assisting faculty with productions off-campus.\u00a0Perform research necessary for project. Assist with preproduction meetings and other work. Observe and participate in any or all phases of the production process from preproduction through closing. ", + "edges_from": [], + "edges_to": [], + "id": 2162, + "label": "TDGR 226", + "title": "Stage Managing Assistantship (4\u201312)" + }, + { + "dept": "RELI", + "description": "This interdisciplinary course will explore the historical and theoretical relationship between public sphere and religion, particularly focusing on the manifestation of religious power, public ritual, and sacred theatricality in everyday spaces of life. ", + "edges_from": [], + "edges_to": [], + "id": 2163, + "label": "RELI 141", + "title": "Public Sphere and Religion (4)" + }, + { + "dept": "ANSC", + "description": "This course explores the interrelationships of language, politics, and identity in the United States: the ways that language mediates politics and identity, the ways that the connection between identity and language is inherently political, and the ways that political language inevitably draws on identity in both subtle and explicit ways. ", + "edges_from": [], + "edges_to": [], + "id": 2164, + "label": "ANSC 141", + "title": "Language, Politics, and Identity (4)" + }, + { + "dept": "RELI", + "description": "This course explores the history of how western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. ", + "edges_from": [], + "edges_to": [], + "id": 2165, + "label": "RELI 147", + "title": "Pagan Europe and Its Christian Aftermath (4)" + }, + { + "dept": "RELI", + "description": "Topical studies in the religious beliefs, practices, and institutions of pre-Christian Europe and near East. May be repeated for credit up to three times when topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 2166, + "label": "RELI 146", + "title": "Topics in the Religions of Antiquity (4)" + }, + { + "dept": "TDGR", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 2167, + "label": "TDGR 221", + "title": "Graduate Studio: Contemporary Movement Practices" + }, + { + "dept": "RELI", + "description": "Christianity frequently finds definition in contradistinction to an \u201cOther\u201d characterized as immoral, irrational, and malevolent. This class investigates how devils and demons as constructions of the \u201cOther\u201d have contributed to Christianity\u2019s growth and identity formation throughout history. ", + "edges_from": [], + "edges_to": [], + "id": 2168, + "label": "RELI 144", + "title": "Devils and Demons in Christianity (4)" + }, + { + "dept": "HISC", + "description": "Technology as an agent of change. How have humans harnessed the power of nature? What factors have contributed to successes and failures? How has technology changed human life? How should we evaluate the quality of these changes?", + "edges_from": [], + "edges_to": [], + "id": 2169, + "label": "HISC 102", + "title": "Technology in World History (4)" + }, + { + "dept": "HISC", + "description": "and Science in Historical Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 2170, + "label": "HISC 103", + "title": "Gender" + }, + { + "dept": "ECE", + "description": "Advanced topics in coding theory. Course contents vary by instructor. Example course topics: Coded-modulation for bandwidth-efficient data transmission; advanced algebraic and combinatorial coding theory; space-time coding for wireless communications; constrained coding for digital recording. Students who have taken ECE 259CN may not receive credit for ECE 259C. ", + "edges_from": [], + "edges_to": [], + "id": 2171, + "label": "ECE 259C", + "title": "Advanced Topics in Coding (4)" + }, + { + "dept": "HISC", + "description": "The development of the modern conception of the sciences, and of the modern social and institutional structure of scientific activity, chiefly in Europe, during the eighteenth and nineteenth centuries.", + "edges_from": [], + "edges_to": [], + "id": 2172, + "label": "HISC 107", + "title": "The Emergence of Modern Science (4)" + }, + { + "dept": "ECE", + "description": "Fundamentals of block codes, introduction to groups, rings and finite fields, nonbinary codes, cyclic codes such as BCH and RS codes, decoding algorithms, applications. Students who have taken ECE 259AN may not receive credit for ECE 259A. ", + "edges_from": [], + "edges_to": [ + 5103 + ], + "id": 2173, + "label": "ECE 259A", + "title": "Algebraic Coding (4)" + }, + { + "dept": "HISC", + "description": "History of human effects on the natural environment, with emphasis on understanding the roles of the physical and biological sciences in providing insights into environmental processes.", + "edges_from": [], + "edges_to": [], + "id": 2174, + "label": "HISC 105", + "title": "History of Environmentalism (4)" + }, + { + "dept": "POLI", + "description": "This course uses the tools of political science and economics to study how corporations affect and are affected by politics. We will cover a broad range of issues, including regulation, lawmaking, mass media, interest group mobilization, and corporate social responsibility.", + "edges_from": [], + "edges_to": [], + "id": 2175, + "label": "POLI 100T", + "title": "Business and Politics (4)" + }, + { + "dept": "HISC", + "description": "The history of twentieth-century life sciences, with an emphasis on the way in which model organisms such as fruit flies, guinea pigs, bacteriophage, and zebra fish shaped the quest to unlock the secrets of heredity, evolution, and development.", + "edges_from": [], + "edges_to": [], + "id": 2176, + "label": "HISC 108", + "title": "Life Sciences in the Twentieth Century (4)" + }, + { + "dept": "HISC", + "description": "Explores the origins of the idea of the \u201ctropics\u201d and \u201ctropical disease\u201d as a legacy of European conquest and colonization, and introduces students to themes in the history of colonialism, tropical medicine, and global public health.", + "edges_from": [], + "edges_to": [], + "id": 2177, + "label": "HISC 109", + "title": "Invention of Tropical Disease (4)" + }, + { + "dept": "BISP", + "description": "Course will examine different aspects of a current topic in biology and will include several speakers. Each speaker will introduce the scientific foundation of the chosen theme (\u201cbench\u201d), describe practical applications of their subject (\u201cbedside\u201d), and consider social and ethical implications of the topic (\u201cbeyond\u201d). The theme of the course will vary from year to year, and speakers will come from a variety of disciplines relevant to the theme. May be taken for credit three times. ", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [], + "id": 2178, + "label": "BISP 170", + "title": "Bioscholars Seminar: From Bench to Bedside and Beyond (2)" + }, + { + "dept": "LIGN", + "description": "Students lead a class section of a lower-division linguistics course. They also attend a weekly meeting on teaching methods. (This course does not count toward minor or major.) May be repeated for credit, up to a maximum of four units. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2179, + "label": "LIGN 195", + "title": "Apprentice Teaching (0\u20134)" + }, + { + "dept": "BICD", + "description": "Introduction to the biology of plants with a particular focus on the underlying genetic and molecular mechanisms controlling plant development. Topics include the role of plant hormones and stem cells in the formation of embryos, roots, flowers, and fruit. ", + "edges_from": [ + 954 + ], + "edges_to": [], + "id": 2180, + "label": "BICD 120", + "title": "Molecular Basis of Plant Development (4)" + }, + { + "dept": "LIGN", + "description": "The student will undertake a program of practical research in a supervised work environment. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies. ", + "edges_from": [], + "edges_to": [], + "id": 2181, + "label": "LIGN 197", + "title": "Linguistics Internship (2 or 4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120A or after successful completion of Econ 120A with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 2182, + "label": "ECON 120AH", + "title": "Honors Econometrics A (1)" + }, + { + "dept": "LIGN", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in linguistics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 2183, + "label": "LIGN 192", + "title": "Senior Seminar in Linguistics (1)" + }, + { + "dept": "LTEN", + "description": "A study of Chaucer\u2019s poetic development, beginning with The Book of the Duchess and The Parliament of Fowls, including Troilus and Criseyde, and concluding with substantial selections from The Canterbury Tales.", + "edges_from": [], + "edges_to": [], + "id": 2184, + "label": "LTEN 107", + "title": "Chaucer (4)" + }, + { + "dept": "LIGN", + "description": "The student undertakes a program of research or advanced reading in linguistics under the supervision of a faculty member of the Department of Linguistics. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2185, + "label": "LIGN 199", + "title": "Independent Study in Linguistics (2 or 4)" + }, + { + "dept": "HIEU", + "description": "Why did Germany in 1919 produce an Adolf Hitler;", + "edges_from": [], + "edges_to": [], + "id": 2186, + "label": "HIEU 158", + "title": "Why Hitler? How Auschwitz? (4)" + }, + { + "dept": "PHYS", + "description": "Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. Recommended preparation: a working knowledge of calculus and linear algebra.", + "edges_from": [], + "edges_to": [], + "id": 2187, + "label": "PHYS 278", + "title": "Biophysics of Neurons and Networks (4)" + }, + { + "dept": "BENG", + "description": "283. Genomics, Proteomics, and Network Biology (4)", + "edges_from": [], + "edges_to": [], + "id": 2188, + "label": "BENG 203/CSE", + "title": "" + }, + { + "dept": "ECE", + "description": "Quantum states and quantum transport of electrons;", + "edges_from": [], + "edges_to": [], + "id": 2189, + "label": "ECE 212BN", + "title": "Nanoelectronics (4)" + }, + { + "dept": "ETHN", + "description": "This is an independent research or individual guided tutorial in an area not covered by present course offerings. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course.", + "edges_from": [], + "edges_to": [], + "id": 2190, + "label": "ETHN 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "ETHN", + "description": "Open to graduate students conducting doctoral thesis research. This course may be repeated for an indefinite number of times due to the independent nature of thesis research and writing.", + "edges_from": [], + "edges_to": [], + "id": 2191, + "label": "ETHN 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "BENG", + "description": "Experimental study of real and simulated systems and their controls (examples will include electrical, biological, and biomechanical systems). Projects consist of identification, input-output analysis, design, and implementation of analog controls. Laboratory examples will include electrical circuit design and analysis, analysis of living tissues such as bone, analysis and manipulation of cells (bacteria in chemostat). Program or materials fees may apply.\u00a0", + "edges_from": [ + 1428 + ], + "edges_to": [ + 5755 + ], + "id": 2192, + "label": "BENG 152", + "title": "BioSystems Engineering Laboratory (4)" + }, + { + "dept": "PHIL", + "description": "Social justice issues as they arise across the borders of nation-states. Topics may include nationalism and cosmopolitanism, theories of just war and just warfare, issues of migration and immigration, global distributive justice and fair trade, and international cooperation in the face of global problems such as climate change and human rights violations. ", + "edges_from": [], + "edges_to": [], + "id": 2193, + "label": "PHIL 139", + "title": "Global Justice (4)" + }, + { + "dept": "PHIL", + "description": "A study of the nature and significance of responsibility. Possible topics include: freedom, determinism, and responsibility; moral luck; responsibility and reactive attitudes such as blame and forgiveness; responsibility and situationism; moral and criminal responsibility; responsibility and excuse; insanity and psychopathy, immaturity, addiction, provocation, and duress. ", + "edges_from": [], + "edges_to": [], + "id": 2194, + "label": "PHIL 138", + "title": "Responsibility (4)" + }, + { + "dept": "CSE", + "description": "Efficient primitives for distributed operating systems and high-performance network servers, including concurrent and event-driven server architectures, remote procedure calls, and load shedding. Distributed naming, directory, and storage services, replication for fault tolerance, and security in distributed systems. ", + "edges_from": [ + 2196, + 44 + ], + "edges_to": [], + "id": 2195, + "label": "CSE 223B", + "title": "Distributed Computing and Systems (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 3200, + 3199 + ], + "edges_to": [ + 2195, + 3198 + ], + "id": 2196, + "label": "CSE 221", + "title": "" + }, + { + "dept": "PHIL", + "description": "An in-depth study of some central problem, figure, or tradition in metaphysics. May be repeated for credit with change of content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 2197, + "label": "PHIL 131", + "title": "Topics in Metaphysics (4)" + }, + { + "dept": "PHIL", + "description": "Central problems in metaphysics, such as free will and determinism, the mind-body problem, personal identity, causation, primary and secondary qualities, the nature of universals, necessity, and identity. ", + "edges_from": [], + "edges_to": [], + "id": 2198, + "label": "PHIL 130", + "title": "Metaphysics (4)" + }, + { + "dept": "PHIL", + "description": "The nature of action and psychological explanation. Topics include action individuation, reasons as causes, psychological laws, freedom and responsibility, weakness of will, self-deception, and the emotions. ", + "edges_from": [], + "edges_to": [], + "id": 2199, + "label": "PHIL 137", + "title": "Moral Psychology (4)" + }, + { + "dept": "PHIL", + "description": "Different conceptions of the nature of mind and its relation to the physical world. Topics include identity theories, functionalism, eliminative materialism, internalism and externalism, subjectivity, other minds, consciousness, self-knowledge, perception, memory, and imagination. ", + "edges_from": [], + "edges_to": [], + "id": 2200, + "label": "PHIL 136", + "title": "Philosophy of Mind (4)" + }, + { + "dept": "PHIL", + "description": "Examination of contemporary debates about meaning, reference, truth, and thought. Topics include descriptional theories of reference, sense and reference, compositionality, truth, theories of meaning, vagueness, metaphor, and natural and formal languages. ", + "edges_from": [], + "edges_to": [], + "id": 2201, + "label": "PHIL 134", + "title": "Philosophy of Language (4)" + }, + { + "dept": "LIGN", + "description": "(Same as Psychology 232.) Computational theories of human cognition, particularly Bayesian approaches.\u00a0Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision making; perception; causal reasoning; categorization; language. Recommended preparation: previous experience with statistics, machine learning, and/or functional programming helpful.", + "edges_from": [], + "edges_to": [], + "id": 2202, + "label": "LIGN 228", + "title": "Probabilistic Models of Cognition (4)" + }, + { + "dept": "NANO", + "description": "An introduction to the nano electronics and nanospintronics; fundamentals of semiconductors; electronic band structure theory, electron transport in semiconductors and nano structures, nano devices. ", + "edges_from": [ + 2006 + ], + "edges_to": [], + "id": 2203, + "label": "NANO 245", + "title": "Nanoelectronics (4)" + }, + { + "dept": "LIGN", + "description": "An introduction to syntactic phenomena, argumentation, analyses, and theoretical models. Phenomena to be discussed include phrase structure, argument structure, binding, control, and A- and A\u2019-dependencies.", + "edges_from": [], + "edges_to": [], + "id": 2204, + "label": "LIGN 221", + "title": "Syntax (4)" + }, + { + "dept": "LTWL", + "description": "19A-B-C. Introduction to the Ancient Greeks and Romans (4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 2205, + "label": "LTWL", + "title": "" + }, + { + "dept": "LIGN", + "description": "Descriptive and theoretical problems in syntactic analysis. Theoretical consequences of alternative analyses. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2206, + "label": "LIGN 225", + "title": "Topics in Syntax (4)" + }, + { + "dept": "EDS", + "description": "This course series addresses special topics in education research and data analysis. Students explore a faculty-specified qualitative research method and analytic approach. Approaches may include case studies, video analysis, mixed methods, naturalistic observations, ethnography, and netnography. The assigned readings include scholarship on the practice and philosophical underpinnings of the specified qualitative research approach and examples of published qualitative studies. ", + "edges_from": [], + "edges_to": [], + "id": 2207, + "label": "EDS 265", + "title": "Special Topics in Qualitative Methods (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 152.) Examination of hip-hop\u2019s technology, lyrics, and dance and its influences in graffiti, film, music video, fiction, advertising, gender, corporate investment, government, and censorship with a critical focus on race, gender, and popular culture and the politics of creative expression.", + "edges_from": [], + "edges_to": [], + "id": 2208, + "label": "ETHN 128", + "title": "Hip-Hop: The Politics of Culture (4)" + }, + { + "dept": "EDS", + "description": "This course series addresses special topics in quantitative education research and data analysis. Students explore a faculty-specified quantitative research method and analytic approach. Approaches may include social network analysis, hierarchical linear modeling, latent class analysis, and structural equation modeling. The readings include scholarship on the practice and philosophical underpinnings of the specified quantitative research approach and examples of published quantitative studies. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2209, + "label": "EDS 266", + "title": "Special Topics in Quantitative Methods (4)" + }, + { + "dept": "SE", + "description": "Element Methods in Solid Mechanics (4)", + "edges_from": [], + "edges_to": [ + 5641 + ], + "id": 2210, + "label": "SE 276B", + "title": "Finite" + }, + { + "dept": "EDS", + "description": "This seminar will examine basic approaches to the study of human development, drawing on theory, research, and methods from multiple disciplines to study how children and adults develop within the context of cultural communities. It includes discussion of cultural practices as mediators on developmental outcomes, notions of universals and diversity, and individualism and familism. We will discuss the complex ways that individual and sociocultural factors interact in learning and development.", + "edges_from": [], + "edges_to": [], + "id": 2211, + "label": "EDS 263", + "title": "Developmental Theory and Culture (4)" + }, + { + "dept": "POLI", + "description": "The role of the presidency in American politics. Topics will include nomination and election politics, relations with Congress, party leadership, presidential control of the bureaucracy, international political role, and presidential psychology.", + "edges_from": [], + "edges_to": [], + "id": 2212, + "label": "POLI 100A", + "title": "The Presidency (4)" + }, + { + "dept": "ETHN", + "description": "A survey of Asian American cultural expressions in literature, art, and music to understand the social experiences that helped forge Asian American identity. Topics: culture conflict, media portrayals, assimilation pressures, the model minority myth, and interethnic and class relations.", + "edges_from": [], + "edges_to": [], + "id": 2213, + "label": "ETHN 122", + "title": "Asian American Culture and Identity (4)" + }, + { + "dept": "ETHN", + "description": "This course will examine the development of Asian American politics by studying the historical and contemporary factors, such as political and economic exclusion, that have contributed to the importance and complexity of ethnicity as a mobilizing force in politics.", + "edges_from": [], + "edges_to": [], + "id": 2214, + "label": "ETHN 123", + "title": "Asian American Politics (4)" + }, + { + "dept": "ETHN", + "description": "Performance: The Politics of Popular Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 2215, + "label": "ETHN 120", + "title": "Race and" + }, + { + "dept": "ETHN", + "description": "The course will study changes in Asian American communities as a result of renewed immigration since 1965; the influx of refugees from Vietnam, Kampuchea, and Laos; the impact of contemporary social movements on Asian Americans\u2019 current economic, social, and political status.", + "edges_from": [], + "edges_to": [], + "id": 2216, + "label": "ETHN 121", + "title": "Contemporary Asian American History (4)" + }, + { + "dept": "ETHN", + "description": "This course compares the historical and contemporary social, political, and economic experiences of Filipino and Vietnamese Americans, paying particular attention to the impact of US wars in the Philippines and in Vietnam on their respective lives.", + "edges_from": [], + "edges_to": [], + "id": 2217, + "label": "ETHN 126", + "title": "Comparative Filipino and Vietnamese American Identities and Communities (4)" + }, + { + "dept": "COGS", + "description": "Review of historical perspectives: introspectionist, behaviorist, and cognitivist models. Examination of how perceptual and motor constraints and ecological demands yield species-specific differences in cognitive repertoire. Contemporary issues in the comparative study of the evolution of human cognition. ", + "edges_from": [], + "edges_to": [], + "id": 2218, + "label": "COGS 143", + "title": "Animal Cognition (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 181.) Selected topics in the literature by men and women of Asian descent who live and write in the United States. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2219, + "label": "ETHN 124", + "title": "Asian American Literature (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 124.) Explore how Asian Americans were involved in the political, economic and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.", + "edges_from": [], + "edges_to": [], + "id": 2220, + "label": "ETHN 125", + "title": "Asian American History (4)" + }, + { + "dept": "AESE", + "description": "Students will work collaboratively on a team project, mostly in a lab setting, to demonstrate their knowledge of leadership teams and enterprise architecting for complex systems. Students are required to take three instances of AESE 279A before they can take AESE 279B (the final for the team project). ", + "edges_from": [], + "edges_to": [ + 5289 + ], + "id": 2221, + "label": "AESE 279A", + "title": "Architecture-based Enterprise Systems Engineering Quarterly Team Project (1)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 252.) This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "edges_from": [], + "edges_to": [ + 3735 + ], + "id": 2222, + "label": "MAE 266", + "title": "Biomaterials and Medical Devices (4)" + }, + { + "dept": "POLI", + "description": "This course examines the development of the two major parties from 1789 to the present. Considers the nature of party coalitions, the role of leaders, activists, organizers, and voters, and the performance of parties in government.", + "edges_from": [], + "edges_to": [], + "id": 2223, + "label": "POLI 100C", + "title": "American Political Parties (4)" + }, + { + "dept": "LTRU", + "description": "Tutorial; individual guided reading in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2224, + "label": "LTRU 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTRU", + "description": "Directed group study in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2225, + "label": "LTRU 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MAE", + "description": "Fluids phenomena relevant to the function, environment, and dynamics of biological cells. Topics include: low-Reynolds number flows, cell motility, internal cellular flows, development and morphogenesis, hydrodynamics of suspensions and polymers, rheology, diffusion, hydrodynamics of deformable bodies (vesicles, membranes, filaments), cells under shear flow. ", + "edges_from": [ + 1537, + 986 + ], + "edges_to": [], + "id": 2226, + "label": "MAE 262", + "title": "Biological Fluid Mechanics (4)" + }, + { + "dept": "MAE", + "description": "Methods in Cell Mechanics (4)", + "edges_from": [], + "edges_to": [], + "id": 2227, + "label": "MAE 263", + "title": "Experimental" + }, + { + "dept": "MAE", + "description": "Pressure and shear waves in infinite solids. Reflection and diffraction. Rayleigh and Love waves in semi-infinite space. Impulse load on a half space. Waveguides and group velocity. ", + "edges_from": [], + "edges_to": [], + "id": 2228, + "label": "MAE 167", + "title": "Wave Dynamics in Materials (4)" + }, + { + "dept": "POLI", + "description": "The theory and practice of interest group politics in the United States. Theories of pluralism and collective action, the behavior and influence of lobbies, the role of political action committees, and other important aspects of group action in politics are examined. ", + "edges_from": [], + "edges_to": [], + "id": 2229, + "label": "POLI 100E", + "title": "Interest Group Politics (4)" + }, + { + "dept": "MAE", + "description": "Fundamental principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. ", + "edges_from": [ + 1317, + 2086, + 1429, + 2231, + 2232, + 2233, + 1147, + 924 + ], + "edges_to": [ + 5312 + ], + "id": 2230, + "label": "MAE 155A", + "title": "Aerospace Engineering Design I (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 2085, + 2086, + 399 + ], + "edges_to": [ + 4075, + 2230 + ], + "id": 2231, + "label": "SE 160B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2230 + ], + "id": 2232, + "label": "MAE 104", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3894, + 2230 + ], + "id": 2233, + "label": "MAE 2", + "title": "" + }, + { + "dept": "LTTH", + "description": "Directed group study, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.)", + "edges_from": [], + "edges_to": [], + "id": 2234, + "label": "LTTH 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTTH", + "description": "Individual reading in an area not covered in courses currently offered by the department. (P/NP only.)", + "edges_from": [], + "edges_to": [], + "id": 2235, + "label": "LTTH 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "EDS", + "description": "The course engages students in field research aimed at supporting education reform efforts in local schools. Students are introduced to a design-based, applied orientation to educational research on equity and diversity. In collaboration with local school leaders, students conduct qualitative research projects on a range of issues that impact youth in schools. Students will examine research on educational equity, theories of education reform, and qualitative research principles and methods. Students are required to travel to school sites. ", + "edges_from": [ + 1684, + 1686, + 1687, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 77, + 2254, + 2253, + 2256, + 2257, + 85, + 87, + 2255, + 1907, + 629, + 630 + ], + "edges_to": [], + "id": 2236, + "label": "EDS 120", + "title": "Introduction to Design-Based Educational Research: A Field Experience for Improving San Diego Schools (4)" + }, + { + "dept": "DOC", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2237, + "label": "DOC 100D", + "title": "" + }, + { + "dept": "HITO", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2238, + "label": "HITO 156", + "title": "" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [ + 5288, + 2239 + ], + "edges_to": [ + 2236, + 2239 + ], + "id": 2239, + "label": "SOCI 117", + "title": "" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [ + 5680, + 2240 + ], + "edges_to": [ + 2240, + 2236 + ], + "id": 2240, + "label": "SOCI 139", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2241, + "label": "EDS 117", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2242, + "label": "EDS 113", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2243, + "label": "EDS 112", + "title": "" + }, + { + "dept": "LTCS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2244, + "label": "LTCS 130", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [ + 810 + ], + "edges_to": [ + 4012, + 4939, + 2236, + 4013 + ], + "id": 2245, + "label": "EDS 136", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2246, + "label": "ANTH 131", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2247, + "label": "POLI 100Q", + "title": "" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2248, + "label": "HIUS 180", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2249, + "label": "EDS 126", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2250, + "label": "EDS 125", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2251, + "label": "POLI 100H", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2252, + "label": "POLI 100O", + "title": "" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [ + 5869, + 2253 + ], + "edges_to": [ + 2236, + 2253 + ], + "id": 2253, + "label": "SOCI 127", + "title": "" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [ + 2254, + 5870 + ], + "edges_to": [ + 2236, + 2254 + ], + "id": 2254, + "label": "SOCI 126", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2255, + "label": "USP 129", + "title": "" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2256, + "label": "HIUS 136", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 2236 + ], + "id": 2257, + "label": "POLI 108", + "title": "" + }, + { + "dept": "POLI", + "description": "This course explores the various aspects of a political campaign including campaign organization, vote targeting, political parties, social media, fundraising, polling, media interactions, and more. These areas are examined citing specific examples from federal, state, and local campaigns.", + "edges_from": [], + "edges_to": [], + "id": 2258, + "label": "POLI 100G", + "title": "How to Win or Lose an Election (4)" + }, + { + "dept": "MATH", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshman. ", + "edges_from": [], + "edges_to": [], + "id": 2259, + "label": "MATH 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "BENG", + "description": "Development of design project in tissue engineering. ", + "edges_from": [ + 66 + ], + "edges_to": [ + 2261 + ], + "id": 2260, + "label": "BENG 169A", + "title": "Design Development in Tissue Engineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in tissue engineering. ", + "edges_from": [ + 68, + 2260 + ], + "edges_to": [ + 68 + ], + "id": 2261, + "label": "BENG 169B", + "title": "Design Implementation in Tissue Engineering (3)" + }, + { + "dept": "ANBI", + "description": "A weekly forum for presentation and discussion of work in anthropology and cognitive neuroscience by faculty, students, and guest speakers. P/NP only. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. ", + "edges_from": [], + "edges_to": [], + "id": 2262, + "label": "ANBI 109", + "title": "Brain Mind Workshop (2)" + }, + { + "dept": "BGGN", + "description": "Lectures on basic and advanced concepts in cancer biology, will include defining outstanding contemporary questions and cutting-edge basic and translational research. Will rely on participants reading assigned literature prior to lectures. For doctoral or master\u2019s students. Course will be held at the Salk Institute. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2263, + "label": "BGGN 245", + "title": "Advanced Topics in Cancer Research and Therapy (2)" + }, + { + "dept": "POLI", + "description": "The railroads transformed the economy and politics of the United States in the nineteenth century. The railroads were the first big businesses, and their sheer size led inevitably to conflict with governments at all levels. This conflict shaped modern politics. ", + "edges_from": [], + "edges_to": [], + "id": 2264, + "label": "POLI 100K", + "title": "Railroads and American Politics (4)" + }, + { + "dept": "BGGN", + "description": "This course will cover the cellular", + "edges_from": [], + "edges_to": [], + "id": 2265, + "label": "BGGN 248", + "title": "Molecular Mechanisms of Neural Development (4)" + }, + { + "dept": "POLI", + "description": "We begin with hypotheses about how people develop political attitudes, and methods to test those hypotheses. The second half focuses on emerging cognitive neuroscience insights, including brain imaging, and asks how these inform theories of political cognition, affect, and behavior. ", + "edges_from": [], + "edges_to": [], + "id": 2266, + "label": "POLI 100M", + "title": "Political Psychology (4)" + }, + { + "dept": "BIPN", + "description": "Molecular basis of neuronal cell fate determination, axon pathfinding, synaptogenesis experience-based refinement of connections, and learning in the brain will be examined. ", + "edges_from": [], + "edges_to": [], + "id": 2267, + "label": "BIPN 144", + "title": "Developmental Neurobiology (4)" + }, + { + "dept": "BIPN", + "description": "An exploration of computational brain models, including biophysical models of single neurons, small neural circuits, and larger scale network models. ", + "edges_from": [ + 369, + 2269, + 2270, + 2271 + ], + "edges_to": [], + "id": 2268, + "label": "BIPN 146", + "title": "Computational Neurobiology (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 2268 + ], + "id": 2269, + "label": "COGS 107", + "title": "" + }, + { + "dept": "BIPN", + "description": "", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [ + 2273, + 2268 + ], + "id": 2270, + "label": "BIPN 140", + "title": "" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [], + "edges_to": [ + 5907, + 2268, + 5903 + ], + "id": 2271, + "label": "BILD 12", + "title": "" + }, + { + "dept": "ETHN", + "description": "We analyze how concepts of power and memory are appropriated in diverse narratives: literature, theatre, personal testimonies, monuments, museums, memorials; and examine how mutually constituted processes of remembering/forgetting work to produce official discourses of nationalism, colonialism, violence, and construction of subaltern subjectivities. ", + "edges_from": [], + "edges_to": [], + "id": 2272, + "label": "ETHN 267", + "title": "History and Memory (4)" + }, + { + "dept": "BIPN", + "description": "Course will cover integrated networks of nerve cells, including simple circuits like those involved in spinal reflexes.\u00a0Course will study how information and motor output is integrated and processed in the brain. Course will also discuss higher-level neural processing. ", + "edges_from": [ + 1192, + 2270 + ], + "edges_to": [], + "id": 2273, + "label": "BIPN 142", + "title": "Systems Neurobiology (4)" + }, + { + "dept": "ETHN", + "description": "This course examines popular culture as a site of domination", + "edges_from": [], + "edges_to": [], + "id": 2274, + "label": "ETHN 266", + "title": "Popular Culture and Pedagogy (4)" + }, + { + "dept": "BIPN", + "description": "Course will explore cellular and molecular mechanisms that underlie learning and memory. Topics will include synapse formation and synaptic plasticity, neurotransmitter systems and their receptors, mechanisms of synaptic modification, and effect of experience on neuronal connectivity, and gene expression. ", + "edges_from": [ + 1192 + ], + "edges_to": [], + "id": 2275, + "label": "BIPN 148", + "title": "Cellular Basis of Learning and Memory (4)" + }, + { + "dept": "ECON", + "description": "Study of the determinants of economic fluctuations, inflation, and interest rates with particular focus on the effects of monetary policy. Overview of key methods and findings of empirical research in macroeconomics. Recommended preparation: Econ 220D. Prerequisite: graduate standing and Econ 210A-B-C.", + "edges_from": [], + "edges_to": [], + "id": 2276, + "label": "ECON 210D", + "title": "Monetary Economics and Business Cycles (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 393, + 947, + 395 + ], + "edges_to": [ + 1911 + ], + "id": 2277, + "label": "VIS 141A", + "title": "" + }, + { + "dept": "NANO", + "description": "Various modeling techniques like finite elements, finite differences, and simulation techniques like molecular dynamics and Monte Carlo to model fluid flow, mechanical properties, self-assembly at the nanoscale, and protein, RNA and DNA folding.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2278, + "label": "NANO 212", + "title": "Computational Modeling of Nanosystems (4)" + }, + { + "dept": "NANO", + "description": "Molecular and modeling and simulation techniques like molecular dynamics, Monte Carlo, and Brownian dynamics to model nanoscale systems and phenomena like molecular motors, self-assembly, protein-ligand binding, RNA, folding. Valuable hands-on experience with different simulators.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2279, + "label": "NANO 210", + "title": "Molecular Modeling and Simulations of Nanoscale Systems (4)" + }, + { + "dept": "SOCI", + "description": "A series of case studies of the relations between society and modern science, technology, and medicine. Global warming, reproductive medicine, AIDS, and other topical cases prompt students to view science-society interactions as problematic and complex. Will not receive credit for SOCI 30 and SOCL 30.", + "edges_from": [], + "edges_to": [], + "id": 2280, + "label": "SOCI 30", + "title": "Science, Technology, and Society (4)" + }, + { + "dept": "VIS", + "description": "This seminar treats landscape as site, image, symbol, and ideal through a historical examination of the major themes and issues in the forms and functions of landscape and its representation in the European and, to a certain extent, the American tradition from antiquity to the present day. These historical discussions will also form a framework for observations on and analyses of contemporary landscape, both as experienced and as an idea. This course presumes no prior knowledge of the field. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 2281, + "label": "VIS 114A", + "title": "Landscape and Memory (4)" + }, + { + "dept": "VIS", + "description": "This seminar focuses on the dynamic and at times contentious relationship between antiquity and the Middle Ages as it played out in various environments\u2014physical, social, cultural, and intellectual\u2014from Rome to Constantinople to Venice, Pisa, and Florence. After considering classic and contemporary formulations of the problem, it turns to in-depth examination of the architecture, images, objects, and techniques at sites in the history of art, where fragments were deployed and displayed. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20 or VIS 112. ", + "edges_from": [], + "edges_to": [], + "id": 2282, + "label": "VIS 114B", + "title": "The Fragment: Uses and Theories (4)" + }, + { + "dept": "COMM", + "description": "What role does popular culture play in shaping and creating our shared memory of the past? The course examines diverse sources such as school textbooks, monuments, holidays and commemorations, museums, films, music, and tourist attractions. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2283, + "label": "COMM 145", + "title": "History, Memory, and Popular Culture (4)" + }, + { + "dept": "COMM", + "description": "Course will explore the politics and culture of the 1970s through the lens of network television programming and the decade\u2019s most provocative sitcoms, dramas, variety shows, and news features. Students will analyze television episodes and read relevant media studies scholarship. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2284, + "label": "COMM 144", + "title": "American Television in the 1970s (4)" + }, + { + "dept": "VIS", + "description": "This course surveys the changes in art and architecture caused by the rise of new religions after the ancient world demise, a period of upheaval and contention often known as the \u201cClash of Gods.\u201d How did Christianity come to dominate Europe with its churches and monasteries and then Islam with its mosques in the Middle East and North Africa? Studying the role of religion in the formation of artistic styles will show a dynamic interaction between the visual cultures of Christianity and Islam. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 2285, + "label": "VIS 121B", + "title": "Church and Mosque: Medieval Art and Architecture between Christianity and Islam (4)" + }, + { + "dept": "COMM", + "description": "Focuses on science fiction\u2019s critical investigation of history, identity, and society across a range of media forms, including film, television, and literature. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2286, + "label": "COMM 143", + "title": "Science Fiction (4)" + }, + { + "dept": "COGS", + "description": "Research Methods in Cognitive Science (2-2-2)", + "edges_from": [], + "edges_to": [], + "id": 2287, + "label": "COGS 211A-B-C", + "title": "" + }, + { + "dept": "TDHT", + "description": "and Medieval Theatre (4)", + "edges_from": [], + "edges_to": [], + "id": 2288, + "label": "TDHT 21", + "title": "Ancient" + }, + { + "dept": "TDHT", + "description": "Theatre (4)", + "edges_from": [], + "edges_to": [], + "id": 2289, + "label": "TDHT 23", + "title": "Twentieth-Century" + }, + { + "dept": "TDHT", + "description": "1500\u20131900 (4)", + "edges_from": [], + "edges_to": [], + "id": 2290, + "label": "TDHT 22", + "title": "Theatre" + }, + { + "dept": "EDS", + "description": "Develop teachers\u2019 knowledge base (knowledge of mathematics content, pedagogy, and student learning) in the context of advanced mathematics. This course builds on the previous courses where these components of knowledge were addressed exclusively in the context of high-school mathematics. ", + "edges_from": [ + 2292, + 2293, + 550, + 134 + ], + "edges_to": [], + "id": 2291, + "label": "EDS 121A/Math 121A", + "title": "Foundations of Teaching and Learning Mathematics I (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2291 + ], + "id": 2292, + "label": "EDS 30M", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2291 + ], + "id": 2293, + "label": "EDS 30", + "title": "" + }, + { + "dept": "MUS", + "description": "A study of opera masterworks that often coincide with operas presented in the San Diego Opera season. Class consists of lectures, listening labs, live performances, and opera on video. ", + "edges_from": [], + "edges_to": [], + "id": 2294, + "label": "MUS 12", + "title": "Opera (4)" + }, + { + "dept": "MUS", + "description": "Through surveying selected musical traditions and practices from around the world, this course explores the ways in which music both reflects and affects social, cultural, and ecological relationships. Specific case studies will be covered through lectures, films, and listening sessions. ", + "edges_from": [], + "edges_to": [], + "id": 2295, + "label": "MUS 13", + "title": "Worlds of Music (4)" + }, + { + "dept": "MUS", + "description": "A course on folk music of the world, covered through lectures, films, and listening sessions devoted to detailed discussion of music indigenous to varying countries/areas of the world. Topics vary from year to year. May be repeated once for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2296, + "label": "MUS 11", + "title": "Folk Music (4)" + }, + { + "dept": "MUS", + "description": "This course will explore The Beatles from musical, cultural, historical, technological, and critical angles. It will place them in context, examining their assorted confluences and wide influences. The group will be critically examined as artists, innovators, and public personalities. Listening, watching, and discussion will provide a broader, deeper, and more personal understanding of the group\u2019s enduring appeal. ", + "edges_from": [], + "edges_to": [], + "id": 2297, + "label": "MUS 16", + "title": "The Beatles (4)" + }, + { + "dept": "MUS", + "description": "This class presents a broad chronological overview of the development of hip-hop as a musical form from the late 1970s through today. It examines the development of the style in relation to direct context and to earlier African American musical and cultural forms and considers the technological and legal issues that have impacted its development. The class is listening intensive and students will be expected to know and recognize essential structures and production techniques. ", + "edges_from": [], + "edges_to": [], + "id": 2298, + "label": "MUS 17", + "title": "Hip-Hop (4)" + }, + { + "dept": "MUS", + "description": "This course offers opportunities to prepare oneself for experiences with new music (through preview lectures), hear performances (by visiting or faculty artists), to discuss each event informally with a faculty panel: an effort to foster informed listening to the new in music. ", + "edges_from": [], + "edges_to": [], + "id": 2299, + "label": "MUS 14", + "title": "Contemporary Music (4)" + }, + { + "dept": "MUS", + "description": "A course on popular music from different time periods, covered through lectures, films, and listening sessions. Topics vary from year to year. May be repeated once for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2300, + "label": "MUS 15", + "title": "Popular Music (4)" + }, + { + "dept": "MUS", + "description": "A survey of Eastern European Jewish folk music, Yiddish theatre and popular song, and their transition to America. Credit not allowed for MUS 18 and JUDA 18. (Cross-listed with JUDA 18.) ", + "edges_from": [], + "edges_to": [], + "id": 2301, + "label": "MUS 18", + "title": "Klezmer Music (4)" + }, + { + "dept": "ANAR", + "description": "This course trains students to design, implement, and conduct research in anthropological archaeology. Writing and presenting work in progress will take place in a seminar-like forum. ", + "edges_from": [], + "edges_to": [], + "id": 2302, + "label": "ANAR 170", + "title": "Research Design in Anthropological Archaeology (4)" + }, + { + "dept": "LTEU", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 2303, + "label": "LTEU 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "HISC", + "description": "175/275. The Historical Sciences in the Nineteenth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 2304, + "label": "HISC", + "title": "" + }, + { + "dept": "BGSE", + "description": "Discussions of recent research in various aspects of biological research conducted by third- and fourth-year doctoral students in the Division of Biological Sciences. S/U grades only.", + "edges_from": [], + "edges_to": [], + "id": 2305, + "label": "BGSE 205", + "title": "Graduate Research Seminar (1)" + }, + { + "dept": "PHYS", + "description": "Physics II: PDE and Matrix Models (4)", + "edges_from": [], + "edges_to": [], + "id": 2306, + "label": "PHYS 142", + "title": "Computational" + }, + { + "dept": "BGSE", + "description": "Invited speakers from the United States and abroad, who are leaders in various aspects of biological research, describe their current research. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 2307, + "label": "BGSE 200", + "title": "Seminar in Biology (1)" + }, + { + "dept": "PHYS", + "description": "Gaseous nebulae, molecular clouds, ionized", + "edges_from": [], + "edges_to": [], + "id": 2308, + "label": "PHYS 224", + "title": "Physics of the Interstellar Medium (4)" + }, + { + "dept": "EDS", + "description": "Last course in a three-course sequence. It provides pedagogical methods for multiple subject teaching. General teaching methods are integrated into a single intercurricular course of study by emphasizing activity/inquiry techniques of instruction. ", + "edges_from": [ + 2310 + ], + "edges_to": [], + "id": 2309, + "label": "EDS 361C", + "title": "Innovative Instructional Practices III (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [ + 5677 + ], + "edges_to": [ + 2309 + ], + "id": 2310, + "label": "EDS 361B", + "title": "" + }, + { + "dept": "PHYS", + "description": "The structure and dynamics of galaxies. Topics include potential theory, the theory of stellar orbits, self-consistent equilibria of stellar systems, stability and dynamics of stellar systems including relaxation and approach to equilibrium. Collisions between galaxies, galactic evolution, dark matter, and galaxy formation.", + "edges_from": [], + "edges_to": [], + "id": 2311, + "label": "PHYS 226", + "title": "Galaxies and Galactic Dynamics (4)" + }, + { + "dept": "CSE", + "description": "Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2312, + "label": "CSE 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "PHYS", + "description": "Study of group theoretical methods with applications to problems in high energy, atomic, and condensed matter physics. Representation theory, tensor methods, Clebsh-Gordan series. Young tableaux. The course will cover discrete groups, Lie groups and Lie algebras, with emphasis on permutation, orthogonal, and unitary groups. ", + "edges_from": [ + 2314 + ], + "edges_to": [], + "id": 2313, + "label": "PHYS 220", + "title": "Group Theoretical Methods in Physics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2313 + ], + "id": 2314, + "label": "PHYS 212C", + "title": "" + }, + { + "dept": "PHYS", + "description": "Energy generation, flow, hydrostatic equilibrium,", + "edges_from": [], + "edges_to": [], + "id": 2315, + "label": "PHYS 223", + "title": "Stellar Structure and Evolution (4)" + }, + { + "dept": "CSE", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in CSE (at the upper-division level). Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2316, + "label": "CSE 192", + "title": "Senior Seminar in Computer Science and Engineering (1)" + }, + { + "dept": "GPEC", + "description": "Effects of fiscal and monetary policies on aggregate variables such as output, nominal and real interest rates, price level, and employment. Additional topics include the inflation/ unemployment trade-off, budget deficit, and economic growth. Renumbered from IRGN 431. Students may not receive credit for GPEC 431 and IRGN 431.", + "edges_from": [], + "edges_to": [], + "id": 2317, + "label": "GPEC 431", + "title": "Fiscal and Monetary Policy (4)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 2318, + "label": "CSE 190", + "title": "Topics" + }, + { + "dept": "CSE", + "description": "A seminar course on topics of current interest. Students, as well as, the instructor will be actively involved in running the course/class. This course cannot be counted toward a technical elective. ", + "edges_from": [], + "edges_to": [], + "id": 2319, + "label": "CSE 191", + "title": "Seminar in CSE (1\u20134)" + }, + { + "dept": "PHYS", + "description": "Astrophysics and Compact Objects (4)", + "edges_from": [], + "edges_to": [], + "id": 2320, + "label": "PHYS 228", + "title": "High-Energy" + }, + { + "dept": "CSE", + "description": "Study in Computer Science and Engineering (4, 8, 12, or 16)", + "edges_from": [], + "edges_to": [], + "id": 2321, + "label": "CSE 197", + "title": "Field" + }, + { + "dept": "CSE", + "description": "Teaching and tutorial assistance in a CSE course under the supervision of the instructor. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2322, + "label": "CSE 195", + "title": "Teaching (4)" + }, + { + "dept": "HIEU", + "description": "This course looks at sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries. Students may not get credit for both HIEU 127 and HIEU 127D.", + "edges_from": [], + "edges_to": [], + "id": 2323, + "label": "HIEU 127D", + "title": "Sport in the Modern World (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 2324, + "label": "Linguistics/Heritage Languages (LIHL) 134W", + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "VIS", + "description": "Using a wide range of nineteenth-century texts, this course will offer close discussions of romantic criticism and aesthetic philosophy (ideas of originality, genius, and nature); the conditions of \u201cmodern life;\u201d realism and naturalism; science and photography; and questions of form, expression, symbolism, and history. This is a seminar course. Recommended preparation: two upper-division art history courses. ", + "edges_from": [ + 680 + ], + "edges_to": [], + "id": 2325, + "label": "VIS 113AN", + "title": "History of Criticism I: Early Modern (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with NANO 241.) This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science.", + "edges_from": [], + "edges_to": [], + "id": 2326, + "label": "CHEM 241", + "title": "Organic Nanomaterials (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with NANO 255.) Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electro-chemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 2327, + "label": "CHEM 240", + "title": "Electrochemistry (4)" + }, + { + "dept": "CHEM", + "description": "The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field starting from the basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. This course is geared to introduce students with limited prior exposure to the field, supported by selected readings and class notes. May be coscheduled with CHEM 142. Recommended preparation: undergraduate-level organic chemistry and at least one previous course in either general biology, molecular biology, or cell biology is strongly encouraged.", + "edges_from": [], + "edges_to": [], + "id": 2328, + "label": "CHEM 242", + "title": "Introduction to Glycosciences (4)" + }, + { + "dept": "CHEM", + "description": "Methodology of mechanistic organic chemistry: integration of rate expressions, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, substituent effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 2329, + "label": "CHEM 246", + "title": "Kinetics and Mechanism (4)" + }, + { + "dept": "MGT", + "description": "This course provides an introduction to the role and use of models and modeling in managerial decision-making. Students will gain hands-on experience in evaluating accounting data using Microsoft Excel. Content includes creating data boxes in financial accounting, using multiple sheets with formulas, preparing professional quality financial reports, and creating graphs to interpret business results. Students will also explore the utility of QuickBooks and the functionality for small businesses. ", + "edges_from": [], + "edges_to": [], + "id": 2330, + "label": "MGT 138", + "title": "Information Technology and Accounting (4)" + }, + { + "dept": "COGS", + "description": "Statistical methods for analyzing behavioral data. A mathematically sophisticated course covering both classical and Bayesian statistical methods for estimation, hypothesis testing, regression, and model comparison. Emphasis on both mathematical understanding of statistical methods as well as common applications. ", + "edges_from": [ + 1995, + 140, + 141 + ], + "edges_to": [], + "id": 2331, + "label": "COGS 118D", + "title": "Mathematical Statistics for Behavioral Data Analysis (4)" + }, + { + "dept": "COGS", + "description": "This course will cover theoretical foundations and practical applications of signal processing to neural data. Topics include EEG/field potential methods (filtering, Fourier (spectral) analysis, coherence) and spike train analysis (reverse correlation, spike sorting, multielectrode recordings). Some applications to neural imaging (optical microscopy, fMRI) data will also be discussed. ", + "edges_from": [ + 140, + 141, + 862, + 2333, + 2334, + 2335 + ], + "edges_to": [], + "id": 2332, + "label": "COGS 118C", + "title": "Neural Signal Processing (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 3165 + ], + "edges_to": [ + 1028, + 1029, + 4327, + 3849, + 3691, + 4205, + 5417, + 2332, + 2334 + ], + "id": 2333, + "label": "COGS 14B", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 393, + 682, + 140, + 141, + 2670, + 1074, + 2333 + ], + "edges_to": [ + 5908, + 5909, + 2332, + 5325, + 5903 + ], + "id": 2334, + "label": "COGS 109", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 393, + 1074, + 682, + 2670 + ], + "edges_to": [ + 5908, + 2332, + 5325, + 5903 + ], + "id": 2335, + "label": "COGS 108", + "title": "" + }, + { + "dept": "COGS", + "description": "This course, with Cognitive Science 118A, forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118B include: maximum likelihood estimation, Bayesian parameter estimation, clustering, principal component analysis, and some application areas. ", + "edges_from": [ + 1995, + 136, + 393, + 395, + 140, + 141 + ], + "edges_to": [ + 3771, + 5908, + 5909 + ], + "id": 2336, + "label": "COGS 118B", + "title": "Introduction to Machine Learning II (4)" + }, + { + "dept": "COGS", + "description": "This course with COGS 118B forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118A include: regression, nearest neighborhood, decision tree, support vector machine, and ensemble classifiers. ", + "edges_from": [ + 1995, + 136, + 393, + 395, + 140, + 141 + ], + "edges_to": [ + 3771, + 5908, + 5909 + ], + "id": 2337, + "label": "COGS 118A", + "title": "Introduction to Machine Learning I (4)" + }, + { + "dept": "SIO", + "description": "to Marine Biodiversity and Conservation\u2014Seminar (8)", + "edges_from": [], + "edges_to": [], + "id": 2338, + "label": "SIO 295S", + "title": "Introduction" + }, + { + "dept": "SE", + "description": "for Structural and Aerospace Engineering (4)", + "edges_from": [], + "edges_to": [ + 2341 + ], + "id": 2339, + "label": "SE 271", + "title": "Solid Mechanics" + }, + { + "dept": "SE", + "description": "Overview of inelastic behavior of materials. Models of plasticity, viscoplasticity, viscoelasticity. Micromechanics and modeling of damage. Fatigue phenomena. Fracture mechanics. Processes and models of the failure of materials. Students may not receive credit for SE 273 and MAE 231C. ", + "edges_from": [], + "edges_to": [], + "id": 2340, + "label": "SE 273", + "title": "Inelasticity (4)" + }, + { + "dept": "SE", + "description": "Development, formulation, and application of field equations of elasticity and variational principles for structural applications in civil and aerospace area. Use of plane stress and plane strain formulation, solution of typical boundary value problems. ", + "edges_from": [ + 2339 + ], + "edges_to": [], + "id": 2341, + "label": "SE 272", + "title": "Theory of Elasticity (4)" + }, + { + "dept": "ECON", + "description": "This course will cover certain country experiences and certain topics in more depth than in Econ 165. Students will also have the opportunity to choose countries and topics of particular interest to them for further reading and as subjects for a presentation and brief paper. ", + "edges_from": [ + 1288 + ], + "edges_to": [], + "id": 2342, + "label": "ECON 165T", + "title": "Advanced Topics in Middle East Economics (2)" + }, + { + "dept": "SE", + "description": "This course will provide an overview of the latest technology for evaluating and improving the accuracy and validity of linear and nonlinear finite element models, solution verification, finite element model validation, sensitivity analysis, uncertainty analysis, and test-analysis correlation. ", + "edges_from": [ + 2344, + 2345 + ], + "edges_to": [], + "id": 2343, + "label": "SE 277", + "title": "Error Control in Finite Element Analysis (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 5641, + 2343 + ], + "id": 2344, + "label": "MAE 232B", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 2343 + ], + "id": 2345, + "label": "SE 232B", + "title": "" + }, + { + "dept": "SE", + "description": "Meshfree approximation theories (moving least-squares, reproducing kernel, partition of unity, radial basis), Galerkin meshfree methods, collocation meshfree methods, imposition of boundary conditions, domain integration, stability, nonlinear meshfree method for hyperelasticity and plasticity, meshfree methods for fracture and plate/shell problems.\u00a0", + "edges_from": [ + 2347, + 2348 + ], + "edges_to": [], + "id": 2346, + "label": "SE 279", + "title": "Meshfree Methods for Linear and Nonlinear Mechanics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2753, + 2346, + 5641 + ], + "id": 2347, + "label": "MAE 232A", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 2753, + 2346, + 5641 + ], + "id": 2348, + "label": "SE 276A", + "title": "" + }, + { + "dept": "POLI", + "description": "This graduate course surveys theories of regional political and economic integration and international cooperation from a comparative and international relations perspective. We compare and contrast the European Union and other regional organizations. ", + "edges_from": [], + "edges_to": [], + "id": 2349, + "label": "POLI 245A", + "title": "Political Economy of Regional Integration (4)" + }, + { + "dept": "POLI", + "description": "This course examines the most critical areas in contemporary world politics. While the emphasis will be placed on American involvement in each crisis, an effort will be made to acquaint the student with its historical and political background. ", + "edges_from": [], + "edges_to": [], + "id": 2350, + "label": "POLI 142P", + "title": "Crisis Areas in World Politics (4)" + }, + { + "dept": "GPCO", + "description": "Students will work closely with the faculty of record and a GPS professor who specializes in the research who are chosen for the capstone project. This required second quarter will be focused on writing, developing a presentation, and presenting the work to either a real-world client or a panel of faculty. ", + "edges_from": [ + 779 + ], + "edges_to": [], + "id": 2351, + "label": "GPCO 471", + "title": "MCEPA Capstone Part II (4)" + }, + { + "dept": "MUS", + "description": "This course, second in a three-quarter sequence, focuses on understanding music theory and in developing musical ability through rhythm, ear training, and sight singing exercises. Topics include major and minor scales, seventh-chords, transposition, compound meter and rudiments of musical form. ", + "edges_from": [ + 2353 + ], + "edges_to": [ + 5804 + ], + "id": 2352, + "label": "MUS 1B", + "title": "Fundamentals of Music B (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2352 + ], + "id": 2353, + "label": "MUS 1A", + "title": "" + }, + { + "dept": "EDS", + "description": "The course, designed for graduate students serving as teaching assistants in teacher education courses, includes discussion of teaching theory and practice, instructional materials, organization of discussion sections, liaison with participating schools, and methods of evaluation/grading under the supervision of the instructor of the course. S/U grades only. May be taken for credit five times.", + "edges_from": [], + "edges_to": [], + "id": 2354, + "label": "EDS 500", + "title": "Apprentice Teaching in Education (2\u20134)" + }, + { + "dept": "POLI", + "description": "\u201cTerrorism\u201d uses \u201cillegitimate\u201d violence to achieve political goals. This course uses philosophical, historical, and contemporary material from distinct cultures to understand which actions are defined as \u201cterrorist,\u201d who uses them, why, and when, as well as the determinants of their effectiveness.", + "edges_from": [], + "edges_to": [], + "id": 2355, + "label": "POLI 142L", + "title": "Insurgency and Terrorism (4)" + }, + { + "dept": "LTSP", + "description": "Consideration of one or more major figures, texts, trends, or problems in Spanish American prose. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 2356, + "label": "LTSP 258", + "title": "Spanish American Prose (4)" + }, + { + "dept": "POLI", + "description": "This course offers an exploration of general theories of the origins of warfare; the impact of the state on war in the modern world; and the microfoundations of combat and compliance in the context of the costs of war and military mobilization. The course should be of special interest to students in international relations and comparative politics.", + "edges_from": [], + "edges_to": [], + "id": 2357, + "label": "POLI 142K", + "title": "Politics and Warfare (4)" + }, + { + "dept": "POLI", + "description": "A survey of theories of defense policies and international security.", + "edges_from": [], + "edges_to": [], + "id": 2358, + "label": "POLI 142I", + "title": "National and International Security (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1A. ", + "edges_from": [], + "edges_to": [], + "id": 2359, + "label": "Linguistics/Italian (LIIT) 1AX", + "title": "Analysis of Italian (2.5)" + }, + { + "dept": "POLI", + "description": "United States foreign policy from the colonial period to the present era. Systematic analysis of competing explanations for US policies\u2014strategic interests, economic requirements, or the vicissitudes of domestic politics. Interaction between the U.S., foreign states (particularly allies), and transnational actors are examined. ", + "edges_from": [ + 2361 + ], + "edges_to": [], + "id": 2360, + "label": "POLI 142A", + "title": "United States Foreign Policy (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 2360 + ], + "id": 2361, + "label": "POLI 12", + "title": "" + }, + { + "dept": "COMM", + "description": "Movement is central to our lives. This course draws on the latest research into how we travel, trade, and move. Diverse topics will be covered, including kids in cars, the New York subway, and theories of mobility. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 2362, + "label": "COMM 105M", + "title": "CT: Mobile Communication (4)" + }, + { + "dept": "POLI", + "description": "Independent work by graduate students engaged in research and writing of second-year paper and doctoral dissertation, under direct supervision of advisor.", + "edges_from": [], + "edges_to": [], + "id": 2363, + "label": "POLI 299", + "title": "Dissertation Research (1\u201312)" + }, + { + "dept": "MGT", + "description": "This course covers the management of technology and innovation emphasizing", + "edges_from": [], + "edges_to": [], + "id": 2364, + "label": "MGT 246", + "title": "Research in Management and Technology Strategy (4)" + }, + { + "dept": "BILD", + "description": "Introduction to the elements of human physiology and the functioning of the various organ systems. The course presents a broad, yet detailed, analysis of human physiology, with particular emphasis toward understanding disease processes. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 26 after receiving credit for BIPN 100.", + "edges_from": [], + "edges_to": [], + "id": 2365, + "label": "BILD 26", + "title": "Human Physiology (4)" + }, + { + "dept": "MAE", + "description": "An introduction to topics in aeronautical and astronautical engineering including aerodynamics, propulsion, flight mechanics, structures, materials, orbital mechanics, design, mission planning, and environments. General topics include historical background, career opportunities, engineering ethics, and professionalism. ", + "edges_from": [], + "edges_to": [], + "id": 2366, + "label": "MAE 02", + "title": "Introduction to Aerospace Engineering (4)" + }, + { + "dept": "COMM", + "description": "Course considers computer games both as media and as sites of communication. Games are studied through hands-on play and texts from a variety of disciplinary perspectives. Course encompasses commercial, academic, and independent games. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 2367, + "label": "COMM 105G", + "title": "CT: Computer Games Studies (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SE 7.) Spatial visualization is the ability to manipulate 2-D and 3-D shapes in one\u2019s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ", + "edges_from": [], + "edges_to": [], + "id": 2368, + "label": "MAE 07", + "title": "Spatial Visualization (1)" + }, + { + "dept": "MATH", + "description": "Thesis Research for Undergraduates (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 2369, + "label": "MATH 199H", + "title": "Honors" + }, + { + "dept": "MAE", + "description": "Introductory course for nonengineering majors. Use of computers in solving problems; applications from life sciences, physical sciences, and engineering. Students run existing computer programs and complete some programming in BASIC. ", + "edges_from": [], + "edges_to": [], + "id": 2370, + "label": "MAE 05", + "title": "Quantitative Computer Skills (4)" + }, + { + "dept": "POLI", + "description": "Statistics for Political Science and Public Policy (4)", + "edges_from": [], + "edges_to": [], + "id": 2371, + "label": "POLI 170A", + "title": "Introductory" + }, + { + "dept": "LTWL", + "description": "This course explores the writings of Buddhists who actively engage with the problems of the world: social, environmental, economic, political. We will examine the historical development of engaged Buddhism in light of traditional Buddhist concepts of morality, interdependence, and liberation.", + "edges_from": [], + "edges_to": [], + "id": 2372, + "label": "LTWL 136", + "title": "Socially Engaged Buddhism (4)" + }, + { + "dept": "LTEN", + "description": "Similar to a 297, but a paper is required. Papers are usually on subject not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 2373, + "label": "LTEN 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "LTWL", + "description": "Selected topics, texts, and problems in the study of religion. May be repeated for credit when content varies.", + "edges_from": [], + "edges_to": [], + "id": 2374, + "label": "LTWL 138", + "title": "Critical Religion Studies (4)" + }, + { + "dept": "COMM", + "description": "This course examines photographic technologies as a set of instruments and practices that modern societies have developed and used to tell stories about themselves and make particular claims about truth and reality, focusing on the domains of science, policing, journalism, advertising, and self-expression. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 2375, + "label": "COMM 105P", + "title": "CT: Photographic Technologies (4)" + }, + { + "dept": "BENG", + "description": "The role of the cellular microenvironment in directing cell behavior and function in health and disease. Cell adherence and deformation and cell-mediated matrix remodeling. Bioengineering of the microenvironment in tissue engineering and regenerative medicine. ", + "edges_from": [ + 2377 + ], + "edges_to": [], + "id": 2376, + "label": "BENG 241B", + "title": "Tissue Engineering and Regenerative Medicine: Cell Microenvironment (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 2376, + 5383 + ], + "id": 2377, + "label": "BENG 241A", + "title": "" + }, + { + "dept": "EDS", + "description": "Revisit students\u2019 learning difficulties in mathematics in more depth to prepare students to make meaningful observations of how K\u201312 teachers deal with these difficulties. Explore how instruction can use students\u2019 knowledge to pose problems that stimulate students\u2019 intellectual curiosity.", + "edges_from": [], + "edges_to": [], + "id": 2378, + "label": "EDS 30/Math 95", + "title": "Introduction to Math Teaching (2)" + }, + { + "dept": "COGS", + "description": "This sequence is an intensive research project. Students under faculty mentorship perform a thorough analysis of the problem and the literature, carry out original studies, and prepare oral and written presentations. Students should aim for a report of publishable quality. Letter grade required.", + "edges_from": [], + "edges_to": [], + "id": 2379, + "label": "COGS 210A-B-C", + "title": "Introduction to Research (4-4-4)" + }, + { + "dept": "USP", + "description": "This course covers the methods and procedures utilized in development from inception to completion. Topics include initial planning, project feasibility and decision-making, partnerships, financing, design, entitlement and approvals, site acquisition, construction management, project completion, leasing, and asset management. ", + "edges_from": [], + "edges_to": [], + "id": 2380, + "label": "USP 151", + "title": "Real Estate Planning and Development (4)" + }, + { + "dept": "USP", + "description": "This course reviews the legal issues, processes, and institutions involved in real estate. Topics include principles of real property law, legislative and judicial institutions, land use and environmental regulation, financial instruments, property transactions, and forms of investment and development entities. ", + "edges_from": [], + "edges_to": [], + "id": 2381, + "label": "USP 150", + "title": "Real Estate and Development Law and Regulation (4)" + }, + { + "dept": "USP", + "description": "This course examines the analysis of demand for real estate products and site-specific real estate development projects. Consideration is given to relevant factors such as economic change, social attitudes, and changing laws. ", + "edges_from": [], + "edges_to": [], + "id": 2382, + "label": "USP 153", + "title": "Real Estate and Development Market Analysis (4)" + }, + { + "dept": "USP", + "description": "This course investigates the institutions, instruments, and structures by which investment in real estate is financed. It reviews capital markets, the sources and uses of real estate funds, and the role of government in real estate finance. ", + "edges_from": [], + "edges_to": [], + "id": 2383, + "label": "USP 152", + "title": "Real Estate Development Finance and Investment (4)" + }, + { + "dept": "USP", + "description": "This course compares real estate markets in Asia, Europe, the Middle East, and Latin America. It explores the factors that affect these regions\u2019 real estate economies including finance in city systems, emerging markets, development trends, demographic shifts, and urban planning. ", + "edges_from": [], + "edges_to": [], + "id": 2384, + "label": "USP 155", + "title": "Real Estate Development in Global and Comparative Perspective (4)" + }, + { + "dept": "USP", + "description": "(Same as Political Science 111B.) Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally. ", + "edges_from": [], + "edges_to": [], + "id": 2385, + "label": "USP 154", + "title": "Global Justice in Theory and Action (4)" + }, + { + "dept": "GPIM", + "description": "This course focuses on developing an in-depth understanding of four of China\u2019s most dynamic industries. These are health care, consumer goods and retail, high technology, and eCommerce. Students will select one of these four industries for deep study and will gain an overview of the other three. The course includes extensive analysis of investment bank analyst reports and Harvard case studies. The course also includes simulated job interviews in the targeted industries. May not receive credit for both GPIM 429 and IRGN 490, Understanding China\u2019s Dynamic Industries.", + "edges_from": [], + "edges_to": [], + "id": 2386, + "label": "GPIM 429", + "title": "Understanding China\u2019s Dynamic Industries (4)" + }, + { + "dept": "GPIM", + "description": "This course examines the challenges of corporate leadership and entrepreneurship in China, with discussion of business in Taiwan as well. The issues are explored from the perspective of various types of companies in China, including start-ups, larger private sector companies, state-owned enterprises, and multinational companies. We explore various major industries in China, and explore various managerial challenges including strategy, HR, partnership development, and government relations. May not receive credit for GPIM 428 and IRGN 490. Management and Entrepreneurship in China.", + "edges_from": [], + "edges_to": [], + "id": 2387, + "label": "GPIM 428", + "title": "Management and Entrepreneurship in China (4)" + }, + { + "dept": "EDS", + "description": "The mutual influence of language, culture, and education will be explored; explanations of students\u2019 school successes and failures that employ linguistic and cultural variables will be considered; bilingualism and cultural transmission through education. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for EDS 117GS and EDS 117 and SOCI 117. ", + "edges_from": [], + "edges_to": [], + "id": 2388, + "label": "EDS 117GS", + "title": "Language, Culture, and Education (4)" + }, + { + "dept": "GPIM", + "description": "The role and function of marketing in organizations and society. Attention is given to the analysis of markets and customers using primary and secondary sources of information and the planning, implementation, and evaluation of marketing strategies and programs. Renumbered from IRGN 420. Students may not receive credit for GPIM 420 and IRGN 420.", + "edges_from": [], + "edges_to": [], + "id": 2389, + "label": "GPIM 420", + "title": "Marketing (4)" + }, + { + "dept": "EDS", + "description": "Foundations of Teaching and Learning Science (4)", + "edges_from": [], + "edges_to": [], + "id": 2390, + "label": "EDS 122/Chem 187", + "title": "" + }, + { + "dept": "GPIM", + "description": "The topics covered are dividend policy and capital structure, options, debt financing, and short- and long-term in financial planning. Course format will be mostly lectures with occasional cases. Some international aspects of corporate finance will also be discussed. Renumbered from IRGN 424. Students may not receive credit for GPIM 424 and IRGN 424.", + "edges_from": [], + "edges_to": [], + "id": 2391, + "label": "GPIM 424", + "title": "Corporate Finance (4)" + }, + { + "dept": "GPIM", + "description": "This course explores the major types of business systems prevalent in developing Asia. These include, for example, the state-owned enterprises of China, Chinese private sector firms, family-owned businesses of HK/Taiwan/SE Asia, Taiwanese tech firms, the Korean Chaebol, Indian promoter-led companies, and companies of developed markets that operate in the region. Course explores the nature of incentives, constraints, and decision making within these different types of firms. May not receive credit for GPIM 427 and IRGN 490. Competing Business Systems of Developing Asia.", + "edges_from": [], + "edges_to": [], + "id": 2392, + "label": "GPIM 427", + "title": "The Competing Business Systems of Developing Asia" + }, + { + "dept": "GPIM", + "description": "This course provides a case-based approach to developing and implementing strategy. It uses business cases from Asia (China, Japan, Taiwan, and South Korea) and Latin America (Mexico, Brazil, Chile, and Argentina) to help students develop a well-defined methodology for approaching strategic decision making that would be applicable to any situation. Renumbered from IRGN 426. Students may not receive credit for GPIM 426 and IRGN 426.", + "edges_from": [], + "edges_to": [], + "id": 2393, + "label": "GPIM 426", + "title": "Business Strategy in the Pacific Rim (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in several complex variables. In recent years, topics have included formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [ + 2395, + 2396 + ], + "edges_to": [ + 2397 + ], + "id": 2394, + "label": "MATH 221A", + "title": "Topics in Several Complex Variables (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2394 + ], + "id": 2395, + "label": "MATH 200A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2394 + ], + "id": 2396, + "label": "MATH 220C", + "title": "" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in several complex variables. Topics include: formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 2394 + ], + "edges_to": [], + "id": 2397, + "label": "MATH 221B", + "title": "Further Topics in Several Complex Variables (4)" + }, + { + "dept": "VIS", + "description": "The course seeks to bring the scientific laboratory into the artist and designers\u2019 studio, and vice versa. It explores intersections of advanced research in art/ design and science/technology. The course will focus on a specific laboratory innovation or a longer-term enduring challenge, and will conceive and prototype possible applications, scenarios, structures, and interventions. Course will be conducted in direct collaborations with other campus laboratories and research units. ", + "edges_from": [ + 2399 + ], + "edges_to": [], + "id": 2398, + "label": "VIS 162", + "title": "Speculative Science and Design Invention (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 1155 + ], + "edges_to": [ + 2400, + 2398, + 4975 + ], + "id": 2399, + "label": "VIS 161", + "title": "" + }, + { + "dept": "VIS", + "description": "What is design as a way of knowing? The course examines critical contemporary topics in design theory, epistemology, research, and criticism. Students develop original critical and theoretical discourse. Topics draw from combinations of experimental and conceptual art, philosophy of technology, architectural theory and design, speculative fiction, bioethics and nanoethics, political philosophy of artificial intelligence and robotics, and critical engineering studies. ", + "edges_from": [ + 2399 + ], + "edges_to": [], + "id": 2400, + "label": "VIS 163", + "title": "Design Research and Criticism (4)" + }, + { + "dept": "VIS", + "description": "The photograph is an empirical object. This course will explore the use of photography as a tool to both understand and represent the world. Students will learn the history of the use of photography as evidence and as a tool of empirical knowledge. In a world where subjectivity is performed the students will be required to make a medium-sized work that engages the social in a creative way. Program or materials fees may apply. Two production-course limitation. ", + "edges_from": [ + 568, + 567 + ], + "edges_to": [], + "id": 2401, + "label": "VIS 167", + "title": "Social Engagement and Photography (4)" + }, + { + "dept": "Soc/G", + "description": "The history of the concept of culture; cultural pluralism in advanced industrialized societies; the differentiation of cultural institutions; cultural policy and social structure; culture as a property of social groups; conflict and accommodation over efforts to change and sustain traditional culture.", + "edges_from": [], + "edges_to": [], + "id": 2402, + "label": "Soc/G 216", + "title": "Sociology of Culture (4)" + }, + { + "dept": "Soc/G", + "description": "The causes and effects of social ranking in various societies. Theories of stratification; the dynamics of informal social grouping; determinants of institutional power, and the nature of struggles for power; the distribution of wealth and its causes; the dynamics of social mobility; the effects of stratification on life-styles, culture, and deviance. ", + "edges_from": [], + "edges_to": [], + "id": 2403, + "label": "Soc/G 212", + "title": "Social Stratification (4)" + }, + { + "dept": "Soc/G", + "description": "This course provides an overview and practical, hands-on introduction to some of the common tools employed in computational approaches to social science research. Students will acquire sufficient skills to use existing tools to conduct computational social science research, such as basic Python language. Recommended preparation: knowledge of or background in statistics. ", + "edges_from": [], + "edges_to": [], + "id": 2404, + "label": "Soc/G 211", + "title": "Introduction to Computational Social Science (4)" + }, + { + "dept": "SE", + "description": "Free-and forced-vibration of continuous systems such as axial and torsional vibrations of bars and transverse vibrations of various beams, membranes, and plates. Euler-Lagrange formulation using variational calculus. Rayleigh-Ritz method for approximation. Applications in vibration suppression/isolation. ", + "edges_from": [], + "edges_to": [], + "id": 2405, + "label": "SE 204", + "title": "Advanced Structural Dynamics (4)" + }, + { + "dept": "SIOC", + "description": "This course explores the interaction between climate science, policy, and the larger culture. S/U grades permitted. ", + "edges_from": [], + "edges_to": [], + "id": 2406, + "label": "SIOC 292", + "title": "Introduction to Climate Science and Policy (4)" + }, + { + "dept": "SOCI", + "description": "This course examines major formulations of the relationship between law and culture in the sociological literature. Topics include formal law versus embedded law, law and morality, law and the self, legal consciousness, the rule of law, and the construction of legality. ", + "edges_from": [ + 2408, + 2407 + ], + "edges_to": [ + 2407 + ], + "id": 2407, + "label": "SOCI 160E", + "title": "Law and Culture (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 2407 + ], + "id": 2408, + "label": "SOCB 160L", + "title": "" + }, + { + "dept": "SE", + "description": "Introduction to probability theory and random processes. Dynamic analysis of linear structural systems subjected to stationary and nonstationary random excitations. Reliability studies related to first excursion and fatigue failures. Applications in earthquake engineering, offshore engineering, wind engineering, and aerospace engineering. Use of computer resources. Recommended preparation: basic knowledge of probability theory (SE 125 or equivalent). ", + "edges_from": [ + 1621 + ], + "edges_to": [], + "id": 2409, + "label": "SE 206", + "title": "Random Vibrations (4)" + }, + { + "dept": "COGS", + "description": "Empirical investigation of the nature of mathematics. How the human mind/brain creates abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero: embodiment, creativity, and history. Cognitive approaches that connect mathematics to human thought in general.", + "edges_from": [], + "edges_to": [], + "id": 2410, + "label": "COGS 252", + "title": "Cognitive Science of Mathematics (4)" + }, + { + "dept": "SE", + "description": "A course to be given at the discretion of the faculty in which topics of current interest in structural engineering will be presented.", + "edges_from": [], + "edges_to": [], + "id": 2411, + "label": "SE 207", + "title": "Topics in Structural Engineering (4)" + }, + { + "dept": "FPM", + "description": "This course will provide an overview of the problem of cancer and its avoidable causes. It covers some of the hottest topics currently facing cancer prevention professional as they try to prevent cancer from occurring in the first place and delay its progression.", + "edges_from": [], + "edges_to": [], + "id": 2412, + "label": "FPM 257", + "title": "Cancer: Cause and Prevention (2)" + }, + { + "dept": "HITO", + "description": "This course tracks the worldwide interplay of sport and race. We begin with patterns of exclusion and participation on the part of African Americans, Latinos, and Native Americans. We then examine patterns of inequality across the globe.", + "edges_from": [], + "edges_to": [], + "id": 2413, + "label": "HITO 155", + "title": "Race, Sport, and Inequality in the Twentieth Century (4)" + }, + { + "dept": "NEU", + "description": "Laboratory research under the supervision of individual members of the faculty of the neurosciences department in one or a combination of neurosciences disciplines, e.g., neuroanatomy, neurophysiology, neurochemistry, neuropharmacology. (P/NP grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 2414, + "label": "NEU 199", + "title": "Independent Research (2 or 4)" + }, + { + "dept": "LTSP", + "description": "Spanish: Spanish for Bilingual Speakers (4)", + "edges_from": [], + "edges_to": [], + "id": 2415, + "label": "LTSP 2D", + "title": "Intermediate/Advanced" + }, + { + "dept": "LTSP", + "description": "Readings and Composition for Bilingual Speakers (4)", + "edges_from": [], + "edges_to": [ + 82, + 83, + 84 + ], + "id": 2416, + "label": "LTSP 2E", + "title": "Advanced" + }, + { + "dept": "LTSP", + "description": "Spanish II: Readings and Composition (5)", + "edges_from": [], + "edges_to": [], + "id": 2417, + "label": "LTSP 2B", + "title": "Intermediate" + }, + { + "dept": "LTSP", + "description": "Spanish III: Cultural Topics and Composition (4)", + "edges_from": [], + "edges_to": [ + 82, + 83, + 84 + ], + "id": 2418, + "label": "LTSP 2C", + "title": "Intermediate" + }, + { + "dept": "LTSP", + "description": "Course is taught in Spanish, emphasizing the development of reading ability, listening comprehension, and writing skills. It includes grammar review, weekly compositions, and class discussions. Successful completion of LTSP 2A satisfies the requirement for language proficiency in Revelle College. ", + "edges_from": [ + 2420, + 2421, + 2422 + ], + "edges_to": [], + "id": 2419, + "label": "LTSP 2A", + "title": "Intermediate Spanish I: Foundations (5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 3656, + 2419 + ], + "id": 2420, + "label": "LISP 1DX", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 2419, + 3132, + 4821 + ], + "id": 2421, + "label": "LISP 1C", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 3656, + 2419 + ], + "id": 2422, + "label": "LISP 1D", + "title": "" + }, + { + "dept": "AESE", + "description": "Architectural foundations, frameworks, standards, and infrastructures with an emphasis on layered architectures, loose coupling, architecture evolution, service- and component-oriented architectures, enterprise service buses, metadata and information virtualization, ontologies, Semantic Web, policy and governance, service-level agreements, information assurance essentials. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 1868, + 2424, + 2425, + 2426, + 2427, + 2428 + ], + "edges_to": [ + 2435, + 2429 + ], + "id": 2423, + "label": "AESE 278B", + "title": "Enterprise Architecting (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4335, + 2423 + ], + "id": 2424, + "label": "MGT 406", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2423 + ], + "id": 2425, + "label": "ECE 205", + "title": "" + }, + { + "dept": "AESE", + "description": "", + "edges_from": [ + 2433, + 2426, + 2427, + 1868 + ], + "edges_to": [ + 2426, + 2429, + 2434, + 2423 + ], + "id": 2426, + "label": "AESE 278A", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 2426, + 2434, + 2423 + ], + "id": 2427, + "label": "CSE 278A", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2429, + 2423 + ], + "id": 2428, + "label": "MGT 291", + "title": "" + }, + { + "dept": "AESE", + "description": "Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 2154, + 2423, + 2426, + 2428, + 2429, + 2430, + 2431 + ], + "edges_to": [ + 2434, + 2435, + 2429 + ], + "id": 2429, + "label": "AESE 278C", + "title": "Modeling, Simulation, and Analysis (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2434, + 2429 + ], + "id": 2430, + "label": "ECE 206", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 2434, + 2429 + ], + "id": 2431, + "label": "CSE 278C", + "title": "" + }, + { + "dept": "GPPA", + "description": "Course builds on policy-making processes class by focusing on nonelected officials\u2019 role in setting and implementing policy. Ideally, elected officials make policies that unbiased, technically proficient bureaucrats carry out. Course provides insight into why the real world departs from this. Renumbered from IRGN 407. Students may not receive credit for GPPA 407 and IRGN 407.", + "edges_from": [], + "edges_to": [], + "id": 2432, + "label": "GPPA 407", + "title": "Policy Implementation Process (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2426, + 2434 + ], + "id": 2433, + "label": "ECE 205A", + "title": "" + }, + { + "dept": "AESE", + "description": "Engineering tools and their use in defining the layered and service-oriented architectures, Unified Modeling Language and enterprise architecture tools, business and process modeling tools, visualization methods, data and information management tools, comprehensive domain modeling, architecture implementation via enterprise service buses. This workshop course meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ", + "edges_from": [ + 2433, + 2154, + 1868, + 2426, + 2427, + 2429, + 2430, + 2431 + ], + "edges_to": [ + 2435 + ], + "id": 2434, + "label": "AESE 278D", + "title": "Engineering Essentials for Open, Distributed Systems (4)" + }, + { + "dept": "AESE", + "description": "Fundamental aspects of pattern methodologies and re-use, requirements, design and architecture patterns, patterns for service-oriented architectures, enterprise application and integration patterns, E-business patterns, event-driven architectures and patterns for complex event processing, process patterns, architecture evolution and refactoring using patterns. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 2434, + 2429, + 2423 + ], + "edges_to": [], + "id": 2435, + "label": "AESE 278E", + "title": "Patterns for Enterprise Architecting (4)" + }, + { + "dept": "ANTH", + "description": "The seminar will follow recent advances and key discoveries in the coastal and maritime archaeology of Israel and the eastern Mediterranean from the Neolithic period to the end of the classical period. Topics include methodologies of underwater excavations and surveys, sunken Neolithic villages of the Carmel coast, archaeology and geoarchaeology of Canaanite and Phoenician harbors, shipwrecks of the eastern Mediterranean and maritime trade, the Anthropocene, sea level changes, and paleoclimate. ", + "edges_from": [], + "edges_to": [], + "id": 2436, + "label": "ANTH 265", + "title": "Marine and Coastal Archaeology: Israel and the Neighboring Lands (4)" + }, + { + "dept": "ANTH", + "description": "This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANBI 134. ", + "edges_from": [], + "edges_to": [], + "id": 2437, + "label": "ANTH 264", + "title": "Human Evolutionary Genetics (4)" + }, + { + "dept": "ANTH", + "description": "Despite being foundational to the discipline of anthropology, ethnographic methods are often mystifying to graduate students. Students are expected to simply go into their respective field sites armed with a notebook, voice recorder, and hope. Drawing on feminist and decolonial epistemologies, we will examine, critique, and reconstruct ethnography\u2019s dilemmas, changing forms, and ethical stakes as we understand it as a particular mode of writing and representation. ", + "edges_from": [], + "edges_to": [], + "id": 2438, + "label": "ANTH 267", + "title": "Decolonizing Ethnography: Ethics, Politics, and Praxis (4)" + }, + { + "dept": "ANTH", + "description": "This course interrogates the association of romantic love with modernity, egalitarianism, and choice. The focus is on how cultural political economy shapes desires and structures relationships. We consider how race, class, nation, gender, and sexuality reinforce or undermine status hierarchies. For example, we examine the concept of racial and transnational hypergamy, in which women, men, and trans people from lower status ethnic groups and developing countries \u201cmarry up.\u201d ", + "edges_from": [], + "edges_to": [], + "id": 2439, + "label": "ANTH 266", + "title": "Anthropology of Love (4)" + }, + { + "dept": "Soc/G", + "description": "A survey of topics in urban sociology, including the city and suburb as social forms, civility among strangers, urbanism and culture, the political economy of metropolitan development, urban poverty, and racial residential segregation. Classical and contemporary approaches will be considered. ", + "edges_from": [], + "edges_to": [], + "id": 2440, + "label": "Soc/G 214 Urban Sociology (4)", + "title": "" + }, + { + "dept": "ANTH", + "description": "This seminar examines medical, psychological, and psychiatric anthropology through reading, discussion, and presentation of work 1) essential to the development of and 2) exemplifying the state of the art in these related fields. May be taken for credit up to two times. ", + "edges_from": [], + "edges_to": [], + "id": 2441, + "label": "ANTH 260", + "title": "Seminar in Medical and Psychological Anthropology (4)" + }, + { + "dept": "ANTH", + "description": "This graduate seminar discusses recent publications on topics related to human evolution and health in modern and ancient populations, using data beyond traditional genetics, including the microbiome, various levels of epigenetic regulation (DNA and histone modifications, micro and non-coding RNAs), telomeres, hormonal influences on the genome (e.g., cortisol, oxytocin), and gender-biased selection in reproductive success under stressful environments. ", + "edges_from": [], + "edges_to": [], + "id": 2442, + "label": "ANTH 263", + "title": "Beyond the Genome (4)" + }, + { + "dept": "ANTH", + "description": "Anthropology has long analyzed the relations between culture, economics, and politics. This seminar will examine these issues through ethnographic and historical accounts, engaging contemporary theory and debates. S/U grades only. May be taken for credit ten times. ", + "edges_from": [], + "edges_to": [], + "id": 2443, + "label": "ANTH 262", + "title": "Critical Anthropology Workshop (4)" + }, + { + "dept": "TDGR", + "description": "One-on-one laboratory workshop that examines practical applications of accents, speech and voice work, dialect, movement and combat work specific and ancillary to the productions in which the students have been cast. ", + "edges_from": [], + "edges_to": [], + "id": 2444, + "label": "TDGR 212", + "title": "Acting Practicum (2)" + }, + { + "dept": "Classics", + "description": "F,W,S. May be repeated for credit. Satisfactory/Unsatisfactory", + "edges_from": [], + "edges_to": [], + "id": 2445, + "label": "Classics 299", + "title": "Dissertation Research (4\u201312)" + }, + { + "dept": "ANSC", + "description": "What can we learn by looking at a society\u2019s ideas about marriage, intimate relationships, and family? Why do these \u201cprivate\u201d institutions draw so much public scrutiny and debate? How are they linked to concepts of national progress, individualism, religion, status, or morality? We will explore these questions in Western and non-Western contexts through such topics as polygamy, same-sex marriage, transnational marriage, and the global impact of Western ideas of love and companionate marriage. ", + "edges_from": [], + "edges_to": [], + "id": 2446, + "label": "ANSC 159", + "title": "The Anthropology of Marriage (4)" + }, + { + "dept": "ANSC", + "description": "Starting at the crisis of 2008, but with beginnings in the early 1980s, the theme of this course is the dynamic mechanisms that lead to crisis, systemic and otherwise. It will deal with historical and archaeological discussions of particular cases of breakdowns, collapses, and transformations. It also deals extensively with crisis misrecognition and its causes from moral dramas, witchcraft epidemics, intimate violence, overt conflict, ethnicity, etc. ", + "edges_from": [], + "edges_to": [], + "id": 2447, + "label": "ANSC 158", + "title": "Comparative Anthropology of Crisis (4)" + }, + { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with TDHT 120.) This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for TDHT 120 and ETHN 163G.", + "edges_from": [], + "edges_to": [], + "id": 2448, + "label": "ETHN 163G", + "title": "Indigenous Theatre and Performance (4)" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 162 + ], + "id": 2449, + "label": "ANTH 101", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 162 + ], + "id": 2450, + "label": "ANSC 123", + "title": "" + }, + { + "dept": "ANSC", + "description": "How and why is gender important to religious practices, doctrines, and ideologies? Focusing on modern Islam, Christianity, and Judaism, we will look at women\u2019s involvement in religious movements as well as religious debates over issues of gender, sexuality, and marriage. ", + "edges_from": [], + "edges_to": [], + "id": 2451, + "label": "ANSC 154", + "title": "Gender and Religion (4)" + }, + { + "dept": "Classics", + "description": "F,W,S.", + "edges_from": [], + "edges_to": [], + "id": 2452, + "label": "Classics 290", + "title": "Research in Classics (4-4-4)" + }, + { + "dept": "ANSC", + "description": "This course examines historical and cultural dimensions of madness as depicted in iconic and popular films such as \u201cOne Flew Over the Cuckoo\u2019s Nest,\u201d \u201cGirl Interrupted,\u201d \u201cSilver Linings Playbook,\u201d along with ethnographic and artistic films that utilize anthropological approaches. ", + "edges_from": [], + "edges_to": [], + "id": 2453, + "label": "ANSC 156", + "title": "Mad Films: Cultural Studies of Mental Illness in Cinema (4)" + }, + { + "dept": "ANSC", + "description": "This course examines ethnographies of the US-Mexican borderlands to understand how the binational relationship shapes social life on both sides of the border. Topics discussed will include the maquiladora industry, drug trafficking, militarization, migration, tourism, missionary work, feminicide, and prostitution. ", + "edges_from": [], + "edges_to": [], + "id": 2454, + "label": "ANSC 151", + "title": "U.S.-Mexico Border Ethnographies (4)" + }, + { + "dept": "ANSC", + "description": "This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcome in non-European and North American countries are explored. ", + "edges_from": [], + "edges_to": [], + "id": 2455, + "label": "ANSC 150", + "title": "Culture and Mental Health (4)" + }, + { + "dept": "HISC", + "description": "Explores the origin of clinical method, the hospital, internal surgery, and the medical laboratory, as well as the historical roots of debates over health-care reform, genetic determinism, and the medicalization of society.", + "edges_from": [], + "edges_to": [], + "id": 2456, + "label": "HISC 115", + "title": "History of Modern Medicine (4)" + }, + { + "dept": "HISC", + "description": "The Origin of Species by means of Natural Selection, and its scientific, intellectual, and political legacies. Topics include social Darwinism, eugenics, Nazi racial hygiene, population control, neo-Malthusianism in the modern environmental movement.", + "edges_from": [], + "edges_to": [], + "id": 2457, + "label": "HISC 114", + "title": "The Darwinian Legacy (4)" + }, + { + "dept": "HISC", + "description": "A survey of the history of the neurosciences from the seventeenth century to the present, exploring the political, philosophical, cultural, aesthetic and ethical aspects of research into the workings of the human brain.", + "edges_from": [], + "edges_to": [], + "id": 2458, + "label": "HISC 117", + "title": "History of the Neurosciences (4)" + }, + { + "dept": "HISC", + "description": "The story behind the postwar rise of bioethics\u2014medical", + "edges_from": [], + "edges_to": [], + "id": 2459, + "label": "HISC 116", + "title": "History of Bioethics (4)" + }, + { + "dept": "HISC", + "description": "Development of nuclear science and weapons\u20141930s to present\u2014including the discovery of radioactivity and fission, the Manhattan project, the bombings of Hiroshima and Nagasaki and end of WWII, the H-bomb, and legacies of nuclear proliferation, environmental damage, and radioactive waste.", + "edges_from": [], + "edges_to": [], + "id": 2460, + "label": "HISC 111", + "title": "The Atomic Bomb and the Atomic Age (4)" + }, + { + "dept": "HISC", + "description": "There was no such thing as a single, unchanging relationship between science and religion, and this is a course about it. Topics include the \u201cConflict Thesis,\u201d natural theology, the Galileo Affair, Darwinism, the antievolution crusade, creationism, secularization, atheism, and psychoanalysis. +", + "edges_from": [], + "edges_to": [], + "id": 2461, + "label": "HISC 110", + "title": "Historical Encounters of Science and Religion (4)" + }, + { + "dept": "HISC", + "description": "This course explores contemporary issues in biology, ethics, and society. We will start by examining early cases of biopolitics, like social Darwinism and eugenics, and proceed to more recent issues, such as genetic engineering, patenting life, and the pharmaceutical industry.", + "edges_from": [], + "edges_to": [], + "id": 2462, + "label": "HISC 119", + "title": "Biology and Society (4)" + }, + { + "dept": "Linguistics/American", + "description": "Sign Language (LISL) 1DX. Analysis of American Sign Language (2.5)", + "edges_from": [], + "edges_to": [], + "id": 2463, + "label": "Linguistics/American", + "title": "" + }, + { + "dept": "LTEN", + "description": "A lecture/discussion course exploring the rich and varied achievements of Shakespeare\u2019s later plays, including the major tragedies and late romances. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare\u2019s theatre and his society.", + "edges_from": [], + "edges_to": [], + "id": 2464, + "label": "LTEN 113", + "title": "Shakespeare II: The Jacobean Period (4)" + }, + { + "dept": "LTEN", + "description": "A lecture/discussion course exploring the development of Shakespeare\u2019s dramatic powers in comedy, history, and tragedy, from the early plays to the middle of his career. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare\u2019s theatre and his society.", + "edges_from": [], + "edges_to": [], + "id": 2465, + "label": "LTEN 112", + "title": "Shakespeare I: The Elizabethan Period (4)" + }, + { + "dept": "LTEN", + "description": "Major literary works of the Renaissance, an exciting period of social and cultural transformation in England as elsewhere in Europe. Topics may include a central theme (e.g., humanism, reformation, revolution), a genre (e.g., pastoral), or comparison with other arts and sciences. May be repeated up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2466, + "label": "LTEN 110", + "title": "Topics: The Renaissance (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2467, + "label": "LTEN 117", + "title": "Topics: The Seventeenth Century (4)" + }, + { + "dept": "LIGN", + "description": "Modularity and models of language processing, basic neurophysiology,", + "edges_from": [], + "edges_to": [], + "id": 2468, + "label": "LIGN 181", + "title": "Language Processing in the Brain (4)" + }, + { + "dept": "LIGN", + "description": "The mind/body problem, modularity,", + "edges_from": [], + "edges_to": [], + "id": 2469, + "label": "LIGN 180", + "title": "Language Representation in the Brain (4)" + }, + { + "dept": "PHYS", + "description": "Special theory of relativity, covariant formulation of electrodynamics, radiation from current distributions and accelerated charges, multipole radiation fields, waveguides and resonant cavities. ", + "edges_from": [ + 426 + ], + "edges_to": [], + "id": 2470, + "label": "PHYS 203B", + "title": "Advanced Classical Electrodynamics II (4)" + }, + { + "dept": "HIGR", + "description": "Consideration and development of pedagogical methods appropriate to undergraduate teaching in the interdisciplinary Sixth College core sequence: Culture, Art, and Technology. Supervised by the core program faculty, director, and associate directors for the Writing and Thematic Programs.", + "edges_from": [], + "edges_to": [], + "id": 2471, + "label": "HIGR 502", + "title": "Apprentice Teaching in Culture, Art, and Technology (CAT) (4)" + }, + { + "dept": "HIGR", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 2472, + "label": "HIGR 500", + "title": "Apprentice Teaching in History (1\u20134)" + }, + { + "dept": "HIGR", + "description": "Teaching assistant for lower-level Hebrew courses, Judaic Studies 1, 2, 3. Must teach four or six sections and grade assignments.", + "edges_from": [], + "edges_to": [], + "id": 2473, + "label": "HIGR 505", + "title": "Apprentice Teaching in Judaic Studies (4)" + }, + { + "dept": "ETHN", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287.", + "edges_from": [], + "edges_to": [], + "id": 2474, + "label": "ETHN 287", + "title": "Ethnography Practicum (4)" + }, + { + "dept": "ECON", + "description": "This course presents a selection of empirical applications and advanced topics that build on the material covered in Econ 102, Globalization. Students have the opportunity to analyze global trade and capital market data and to prepare a presentation and brief paper on a specific topic. ", + "edges_from": [ + 800 + ], + "edges_to": [], + "id": 2475, + "label": "ECON 102T", + "title": "Advanced Topic in Globalization (2)" + }, + { + "dept": "ETHN", + "description": "This course explores major currents in black intellectual history, and some paths less well tread, structured thematically, geographically, and chronologically from the nineteenth century to the present. Students read foundational primary sources and contemporary scholarly studies of African diasporic texts. ", + "edges_from": [], + "edges_to": [], + "id": 2476, + "label": "ETHN 280", + "title": "Black Thought: Roots and Routes (4)" + }, + { + "dept": "ETHN", + "description": "This course is a research seminar on themes of contemporary and historic importance in ethnic studies. Themes will be determined by instructor. Course may be repeated three times for credit.", + "edges_from": [], + "edges_to": [], + "id": 2477, + "label": "ETHN 289", + "title": "Topics in Ethnic Studies Research (4)" + }, + { + "dept": "ENVR", + "description": "Explores the diverse ecosystems of coastal San Diego County (salt marsh, rocky intertidal, sandy beach, etc.) in the classroom and in the field with attention to basic principles of field ecology, natural history, and techniques for collecting ecological data. Course and/or materials fee may apply. ", + "edges_from": [], + "edges_to": [], + "id": 2478, + "label": "ENVR 120", + "title": "Coastal Ecology (4)" + }, + { + "dept": "PHIL", + "description": "A study of one or more figures in nineteenth-century philosophy, such as Schopenhauer, Nietzsche, Kierkegaard, Marx, Emerson, Thoreau, James, and Mill. The focus may be on particular figures or intellectual themes and traditions. May be repeated for credit with change of content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 2479, + "label": "PHIL 108", + "title": "Nineteenth-Century Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "Central texts, figures, and traditions in", + "edges_from": [], + "edges_to": [], + "id": 2480, + "label": "PHIL 109", + "title": "History of Analytic Philosophy (4)" + }, + { + "dept": "MATH", + "description": "Unconstrained optimization: linear least squares; randomized linear least squares; method(s) of steepest descent; line-search methods; conjugate-gradient method; comparing the efficiency of methods; randomized/stochastic methods; nonlinear least squares; norm minimization methods. Convex constrained optimization: optimality conditions; convex programming; Lagrangian relaxation; the method of multipliers; the alternating direction method of multipliers; minimizing combinations of norms. ", + "edges_from": [ + 2482 + ], + "edges_to": [], + "id": 2481, + "label": "MATH 173B", + "title": "Optimization Methods for Data Science II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 138, + 139, + 140, + 134 + ], + "edges_to": [ + 2481 + ], + "id": 2482, + "label": "MATH 173A", + "title": "" + }, + { + "dept": "Linguistics/French", + "description": "(2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 2483, + "label": "Linguistics/French (LIFR) 11", + "title": "Elementary French Reading" + }, + { + "dept": "PHIL", + "description": "A study of selected texts from the main schools of Hellenistic philosophy\u2014Stoicism, Epicureanism, and Skepticism. ", + "edges_from": [], + "edges_to": [], + "id": 2484, + "label": "PHIL 102", + "title": "Hellenistic Philosophy (4)" + }, + { + "dept": "MATH", + "description": "Elementary number theory with applications. Topics include", + "edges_from": [], + "edges_to": [], + "id": 2485, + "label": "MATH 104A", + "title": "Number Theory I (4)" + }, + { + "dept": "MATH", + "description": "II (4)", + "edges_from": [], + "edges_to": [], + "id": 2486, + "label": "MATH 104B", + "title": "Number Theory" + }, + { + "dept": "MATH", + "description": "Topics in algebraic and analytic number theory, with an advanced", + "edges_from": [], + "edges_to": [], + "id": 2487, + "label": "MATH 104C", + "title": "Number Theory III (4)" + }, + { + "dept": "TDMV", + "description": "An introduction to the physical practice of yoga. A detailed investigation into the ancient somatic practice of energetically connecting the mind and body through kinesthetic and sensory awareness and how this supports and informs dance practices. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 2488, + "label": "TDMV 5", + "title": "Yoga for Dance (2)" + }, + { + "dept": "CHEM", + "description": "Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2489, + "label": "CHEM 219C", + "title": "Special Topics in Biochemistry (2 or 4)" + }, + { + "dept": "TDMV", + "description": "Introduction to the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds a beginning technical jazz vocabulary with a focus on rhythmic exercises, isolations, turns, and locomotor combinations. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [ + 5387 + ], + "id": 2490, + "label": "TDMV 3", + "title": "Beginning Jazz (2)" + }, + { + "dept": "ANAR", + "description": "The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500\u20131000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Course is offered during summer Study Abroad. Students may not receive credit for both ANAR 157 and ANAR 157S. ", + "edges_from": [], + "edges_to": [], + "id": 2491, + "label": "ANAR 157S", + "title": "Early Empires of the Andes: The Middle Horizon (4)" + }, + { + "dept": "TDMV", + "description": "A contemporary approach to beginning-level ballet technique, principles, and terminology. Develops the body for strength, flexibility, and artistic interpretation. Emphasis on developing a foundation in movement for the continuation of ballet training. Historical origin of ballet will be discussed. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [ + 5020 + ], + "id": 2492, + "label": "TDMV 1", + "title": "Beginning Ballet (2)" + }, + { + "dept": "LIGN", + "description": "Advanced material in special areas of the study of meaning and its relation to formal aspects of human language. May be taken for credit three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2493, + "label": "LIGN 235", + "title": "Topics in Semantics (2\u20134)" + }, + { + "dept": "ERC", + "description": "Seminar: International Themes (1)", + "edges_from": [], + "edges_to": [], + "id": 2494, + "label": "ERC 20", + "title": "Freshman Honors" + }, + { + "dept": "Linguistics/Hindi", + "description": "(LIHI) 1C. Hindi Conversation (2.5)", + "edges_from": [], + "edges_to": [], + "id": 2495, + "label": "Linguistics/Hindi", + "title": "" + }, + { + "dept": "LIGN", + "description": "Theories of semantic structure. The relation of meaning to grammar, and how it is to be accommodated in an overall model of linguistic organization. The application of formal semantics to the description of natural language.", + "edges_from": [], + "edges_to": [], + "id": 2496, + "label": "LIGN 230", + "title": "Semantics (4)" + }, + { + "dept": "LIGN", + "description": "(Same as Psychology 235.) This course will explore the development of concepts and linguistic meaning via classic case studies in semantics, including word learning, quantifier acquisition, and the foundations of mathematics. The course will draw on evidence from linguistics, the philosophy of language, and developmental psychology.", + "edges_from": [], + "edges_to": [], + "id": 2497, + "label": "LIGN 232", + "title": "Semantic Development (4)" + }, + { + "dept": "EDS", + "description": "This course examines schooling from an anthropological perspective, focusing on the impact of social and cultural forces on teaching and learning in US public schools using comparative materials from other societies and settings. ", + "edges_from": [], + "edges_to": [], + "id": 2498, + "label": "EDS 272", + "title": "Education and Culture (4)" + }, + { + "dept": "EDS", + "description": "and Equity in Educational Reform (4)", + "edges_from": [], + "edges_to": [], + "id": 2499, + "label": "EDS 270", + "title": "Leadership" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2500, + "label": "ETHN 139", + "title": "Chicano Literature in English (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 129.) This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. Students may not receive credit for GLBH 129 and ANSC 129.", + "edges_from": [], + "edges_to": [], + "id": 2501, + "label": "GLBH 129", + "title": "Meaning and Healing (4)" + }, + { + "dept": "ETHN", + "description": "and Ethnicity in Modern American Society (4)", + "edges_from": [], + "edges_to": [], + "id": 2502, + "label": "ETHN 134", + "title": "Immigration" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 137.) This course will focus on the intersection of labor, class, race, ethnicity, gender, sexuality, and immigration in Latina cultural production. Examined from a socioeconomic, feminist, and cultural perspective, class readings will allow for historically grounded analyses of these issues. Course may be repeated as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2503, + "label": "ETHN 137", + "title": "Latina Issues and Cultural Production (4)" + }, + { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with SIO 114.) Introduction to the scientific basis and critical analysis of environmental justice, with an emphasis on case studies, activism, and community engagement. This course will prepare students to critique and develop scientific models, research designs, and measurements consistent with environmental justice. Students may not receive credit for both ETHN 136 and SIO 114.", + "edges_from": [], + "edges_to": [], + "id": 2504, + "label": "ETHN 136", + "title": "The Science and Critical Analysis of Environmental Justice (4)" + }, + { + "dept": "ETHN", + "description": "Economic History of the Southwest II (4)", + "edges_from": [], + "edges_to": [], + "id": 2505, + "label": "ETHN 131", + "title": "Social and" + }, + { + "dept": "ETHN", + "description": "Economic History of the Southwest I (4)", + "edges_from": [], + "edges_to": [], + "id": 2506, + "label": "ETHN 130", + "title": "Social and" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with TDHT 110.) Focusing on the contemporary evolution of Chicano dramatic literature, the course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant actors, plays, and documentaries for their contributions to the developing Chicano theatre movement.", + "edges_from": [], + "edges_to": [], + "id": 2507, + "label": "ETHN 132", + "title": "Chicano Dramatic Literature (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 227 and Chem 222.)", + "edges_from": [], + "edges_to": [], + "id": 2508, + "label": "MAE 251", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 236.) Topics include phase equilibria and crystallography, defects and thermodynamics (Kr\u00f6ger-Vink notation), glass scona, electrical and ionic transport behavior, Bronner diagrams, powder synthesis and compaction, sintering theory and grain growth, mechanical optical, magnetic, electrical properties, fuel cells. ", + "edges_from": [], + "edges_to": [], + "id": 2509, + "label": "MAE 253", + "title": "Advanced Ceramics (4)" + }, + { + "dept": "MAE", + "description": "Layer and Renewable Energy Meteorology (4)", + "edges_from": [], + "edges_to": [], + "id": 2510, + "label": "MAE 255", + "title": "Boundary" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 256.) This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor, and chemical structures, and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 2511, + "label": "MAE 254", + "title": "Energy Materials and Applications (4)" + }, + { + "dept": "HINE", + "description": "186/286. Special Topics in Middle Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 2512, + "label": "HINE", + "title": "" + }, + { + "dept": "MAE", + "description": "Global insolation heat engine; solar-wind coupling; regional/seasonal insolation patterns; atmospheric radiation balance; RTE models; scattering; optical depth and transmittance of cloud layers; Schwarzschild\u2019s equation; absorption/emission lines; rotational, vibrational and electronic transitions; Doppler/pressure broadening; Elsasser/Malkmus/Edwards models; solution methods. ", + "edges_from": [], + "edges_to": [], + "id": 2513, + "label": "MAE 256", + "title": "Radiative Transfer for Energy Applications (4)" + }, + { + "dept": "HIGR", + "description": "A two-quarter research seminar in Korean history. Seminar topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 2514, + "label": "HIGR 219B", + "title": "Research Seminar in Modern Korean History (4)" + }, + { + "dept": "HIGR", + "description": "A two-quarter research seminar in Korean history. A paper, based on original research, will be due in HIGR 219B. Seminar topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 2515, + "label": "HIGR 219A", + "title": "Research Seminar in Modern Korean History (4)" + }, + { + "dept": "NANO", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2516, + "label": "NANO 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "ANBI", + "description": "The course will explore the major epidemiological transitions from ape-like ancestors to foraging tribes, farmers, and pastoralists to the global metropolitan primate we now are. We will focus on how diseases have shaped humans and how humans have shaped disease. ", + "edges_from": [], + "edges_to": [], + "id": 2517, + "label": "ANBI 139", + "title": "Evolution of Human Disease (4)" + }, + { + "dept": "ANBI", + "description": "The great apes are our closest living relatives and their ecology and evolution provide insights for human evolutionary history and perhaps ideas about how to coexist with them. The course examines the natural history, behavior, ecology, and life history of each of the great apes including: orangutans, gorillas, bonobos, and chimpanzees. We will also consider conservation issues facing wild great apes, the welfare of apes in captivity, and ethical debates on ape \u201cpersonhood.\u201d ", + "edges_from": [], + "edges_to": [], + "id": 2518, + "label": "ANBI 133", + "title": "Planet of the Apes: Evolution and Ecology of the Great Ape (4)" + }, + { + "dept": "ANBI", + "description": "Biological and health consequences of racial and social inequalities. Psychosocial stress and measurement of health impact. Effects on disease and precursors to disease, including measures of molecular biology (e.g., epigenetics, gene expression), and biomarkers of inflammation, cardiometabolic health, and immune function. ", + "edges_from": [], + "edges_to": [], + "id": 2519, + "label": "ANBI 130", + "title": "Biology of Inequality (4)" + }, + { + "dept": "ANBI", + "description": "This course examines conceptions of race from both evolutionary and sociocultural perspectives. We will examine current patterns of human genetic variation and critically determine how these patterns map onto current and historic conceptions of race in the United States, and abroad. We will also explore the social construction of race throughout US history, the use of racial categories in biomedicine today, and consequences of racism and discrimination on health. ", + "edges_from": [], + "edges_to": [], + "id": 2520, + "label": "ANBI 131", + "title": "Biology and Culture of Race (4)" + }, + { + "dept": "ANBI", + "description": "This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANTH 264. ", + "edges_from": [], + "edges_to": [], + "id": 2521, + "label": "ANBI 134", + "title": "Human Evolutionary Genetics (4)" + }, + { + "dept": "ANBI", + "description": "This course provides hands-on experience with the latest molecular techniques as applied to questions of anthropological and human genetic interest. Students will isolate their own DNA and generate DNA sequence data. They will also measure and analyze the percent of DNA methylation at certain regions of their own genomes. We will also discuss measurement of other nongenetic biomarkers that can be incorporated into anthropological research of living populations, e.g., cortisol measures. ", + "edges_from": [], + "edges_to": [], + "id": 2522, + "label": "ANBI 135", + "title": "Genetic Anthropology Lab Techniques (4)" + }, + { + "dept": "BENG", + "description": "A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BENG 285 and ECE 204 and BNFO 285. ", + "edges_from": [ + 2524, + 2525, + 2526 + ], + "edges_to": [], + "id": 2523, + "label": "BENG 285/BNFO 285/ECE 204", + "title": "Statistical Learning in Bioinformatics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2760, + 4464, + 2523, + 2525, + 4819 + ], + "id": 2524, + "label": "ECE 271A", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 2524 + ], + "edges_to": [ + 2760, + 4464, + 2523 + ], + "id": 2525, + "label": "ECE 271B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 4464, + 2523 + ], + "id": 2526, + "label": "MATH 283", + "title": "" + }, + { + "dept": "MUS", + "description": "Individual instruction on intermediate level in instrumental technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2527, + "label": "MUS 32", + "title": "Instrumental/Vocal Instruction (2)" + }, + { + "dept": "LTWL", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 2528, + "label": "LTWL 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ECON", + "description": "A practical yet theory-based study of the firm\u2019s role in managing workers, including issues related to hiring, education and training, promotions, layoffs and buyouts, and the overarching role that worker compensation plays in all of these. ", + "edges_from": [ + 542 + ], + "edges_to": [], + "id": 2529, + "label": "ECON 136", + "title": "Human Resources (4)" + }, + { + "dept": "BIPN", + "description": "Coverage of the history of research, diagnosis, and treatment of common neuropsychiatric disorders. Comparisons will be made between primary research data and existing treatments, and on developing skills to digest scientific literature aimed at understanding the neuroscience of disease. ", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [], + "id": 2530, + "label": "BIPN 152", + "title": "The Healthy and Diseased Brain (4)" + }, + { + "dept": "BIPN", + "description": "Course will be taught from a research perspective, highlighting the biological pathways impacted by different neurological diseases. Each disease covered will be used to illustrate a key molecular/cellular pathway involved in proper neurological function. ", + "edges_from": [ + 1193, + 412 + ], + "edges_to": [], + "id": 2531, + "label": "BIPN 150", + "title": "Diseases of the Nervous System (4)" + }, + { + "dept": "FMPH", + "description": "This practicum provides hand-on experience with biomedical research and data analysis. Working within a specific biomedical domain (e.g., cancer, genomics, or physical activity research), students will conduct original data analysis, and prepare or substantially contribute to a final project report. May be taken for credit up to five times. ", + "edges_from": [ + 2533, + 2534 + ], + "edges_to": [], + "id": 2532, + "label": "FMPH 241", + "title": "Biostatistics Rotation (3)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 482, + 2940, + 2534 + ], + "edges_to": [ + 2532, + 5942, + 2934, + 2935, + 2936, + 2937, + 2938 + ], + "id": 2533, + "label": "FMPH 222", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [ + 2532, + 2533, + 5942, + 2934, + 2935, + 2937, + 2938 + ], + "id": 2534, + "label": "FMPH 221", + "title": "" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 2535, + "label": "Linguistics/French (LIFR) 1A", + "title": "French Conversation (2.5)" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1BX. ", + "edges_from": [ + 2537, + 2538 + ], + "edges_to": [], + "id": 2536, + "label": "Linguistics/French (LIFR) 1B", + "title": "French Conversation (2.5)" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2536, + 4109 + ], + "id": 2537, + "label": "LIFR 1AX", + "title": "" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2536, + 4109 + ], + "id": 2538, + "label": "LIFR 1A", + "title": "" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1CX. ", + "edges_from": [ + 2540, + 2541 + ], + "edges_to": [], + "id": 2539, + "label": "Linguistics/French (LIFR) 1C", + "title": "French Conversation (2.5)" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 4265, + 2539 + ], + "id": 2540, + "label": "LIFR 1B", + "title": "" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 4265, + 2539 + ], + "id": 2541, + "label": "LIFR 1BX", + "title": "" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in French. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIFR 1DX. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 2544, + 2543 + ], + "edges_to": [], + "id": 2542, + "label": "Linguistics/French (LIFR) 1D", + "title": "French Conversation (2.5)" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2970, + 4627, + 2542 + ], + "id": 2543, + "label": "LIFR 1CX", + "title": "" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2970, + 4627, + 2542 + ], + "id": 2544, + "label": "LIFR 1C", + "title": "" + }, + { + "dept": "MAE", + "description": "Introduction to groundwater flow. Pollution transport through the water table. Fundamentals of flow. Single- and multi-phase flow. Darcy law. Well hydraulics. Diffusion and dispersion. Gravity currents and plumes in porous media. Chemistry of fluid-solid interactions. Fundamentals of adsorption and surface reactions. ", + "edges_from": [ + 1148, + 2546, + 676, + 988 + ], + "edges_to": [], + "id": 2545, + "label": "MAE 123", + "title": "Introduction to Transport in Porous Media (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2545, + 5966 + ], + "id": 2546, + "label": "MAE 105", + "title": "" + }, + { + "dept": "NANO", + "description": "Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. Cross-listed with MATS 227, MAE 251 and Chem 222.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2547, + "label": "NANO 227", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "PHIL", + "description": "An investigation of a selected philosophical topic through", + "edges_from": [], + "edges_to": [], + "id": 2548, + "label": "PHIL 90", + "title": "Basic Problem in Philosophy (4)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with USP 102.) Economic analysis of why cities develop, patterns of land use in cities, why cities suburbanize, and the pattern of urban commuting. The course also examines problems of urban congestion, air pollution, zoning, poverty, crime, and discusses public policies to deal with them. Credit not allowed for both Econ 135 and USP 102. ", + "edges_from": [ + 129, + 130, + 547, + 543 + ], + "edges_to": [], + "id": 2549, + "label": "ECON 135", + "title": "Urban Economics (4)" + }, + { + "dept": "MAE", + "description": "to Applied Mathematics II (4)", + "edges_from": [], + "edges_to": [], + "id": 2550, + "label": "MAE 294B", + "title": "Introduction" + }, + { + "dept": "MAE", + "description": "to Applied Mathematics III (4)", + "edges_from": [], + "edges_to": [], + "id": 2551, + "label": "MAE 294C", + "title": "Introduction" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SIO 203A.) Review of exact methods for ordinary differential equations. Expansions about regular and irregular singular points. Introduction to asymptotic expansions. Approximate methods for nonlinear differential equations. Regular and singular perturbation theory. Additional topics depending upon the interests of the instructor.", + "edges_from": [], + "edges_to": [], + "id": 2552, + "label": "MAE 294A", + "title": "Introduction to Applied Mathematics (4)" + }, + { + "dept": "LIGN", + "description": "The student undertakes a program of research and advanced reading in linguistics under the supervision of a faculty member in the Department of Linguistics. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2553, + "label": "LIGN 199H", + "title": "Honors Independent Study in Linguistics (4)" + }, + { + "dept": "TDGR", + "description": "Advanced voice training designed to help the actor fuse voice, emotion, and body into a fully realized reflection of the text. (S/U grades only.) ", + "edges_from": [ + 2555 + ], + "edges_to": [], + "id": 2554, + "label": "TDGR 224A-B", + "title": "Voice for Theatre II (3-3)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2554 + ], + "id": 2555, + "label": "TDGR 224A", + "title": "" + }, + { + "dept": "HIUS", + "description": "The course addresses the causes, course, and consequences of the US Civil War. We will explore such themes as how Unionists and Confederates mobilized their populations and dealt with dissension, the war\u2019s effects on gender and race relations, and the transformation of the federal government.", + "edges_from": [], + "edges_to": [], + "id": 2556, + "label": "HIUS 112", + "title": "The US Civil War (4)" + }, + { + "dept": "MAE", + "description": "Topics in mathematical analysis, with the emphasis on those of use in applications. The topics may include: metric spaces, open and closed sets, compact sets, continuity, differentiation, series of functions and uniform convergence, convex sets and functions, transforms, and Stokes theorem. ", + "edges_from": [], + "edges_to": [ + 2558 + ], + "id": 2557, + "label": "MAE 289A", + "title": "Mathematical Analysis for Applications (4)" + }, + { + "dept": "MAE", + "description": "Topics in real analysis, with the emphasis on those of use in applications.\u00a0May include: countable/uncountable, open and closed sets, topology, Borel sets, sigma algebras, measurable functions, integration (Lebesgue), absolute continuity, function spaces, and fixed-point theorems. ", + "edges_from": [ + 2557 + ], + "edges_to": [ + 2559 + ], + "id": 2558, + "label": "MAE 289B", + "title": "Real Analysis for Applications (4)" + }, + { + "dept": "MAE", + "description": "Topics in functional analysis, with the emphasis on those of use in applications. May include: function spaces, linear functionals, dual spaces, reflexivity, linear operators, strong and weak convergence, Hahn-Banach Theorem, nonlinear functionals, differential calculus of variations, Pontryagin Maximum Principle. Students cannot obtain credit for MAE 289C if they have taken MAE 289. ", + "edges_from": [ + 2558 + ], + "edges_to": [], + "id": 2559, + "label": "MAE 289C", + "title": "Functional Analysis and Applications (4)" + }, + { + "dept": "HIUS", + "description": "This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification.", + "edges_from": [], + "edges_to": [], + "id": 2560, + "label": "HIUS 117", + "title": "History of Los Angeles (4)" + }, + { + "dept": "VIS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 2561, + "label": "VIS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5664, + 1553, + 1865 + ], + "id": 2562, + "label": "CHEM 140BH", + "title": "" + }, + { + "dept": "HIUS", + "description": "Constructions of sex and sexuality in the United States from the time of precontact Native America to the present, focusing on sexual behaviors, sexual ideologies, and the uses of sexuality for social control.", + "edges_from": [], + "edges_to": [], + "id": 2563, + "label": "HIUS 115", + "title": "History of Sexuality in the United States (4)" + }, + { + "dept": "FPM", + "description": "The Free Clinic Project operates at three community-based sites. In this class, students, under faculty supervision, provide clinical services and learn administrative, health education and leadership. S/U grades only. May be taken for credit as many times as desired. ", + "edges_from": [ + 2565 + ], + "edges_to": [], + "id": 2564, + "label": "FPM 286", + "title": "Free Clinic II (2 or 4)" + }, + { + "dept": "FPM", + "description": "", + "edges_from": [], + "edges_to": [ + 2564 + ], + "id": 2565, + "label": "FPM 272", + "title": "" + }, + { + "dept": "RELI", + "description": "First quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196AH. ", + "edges_from": [ + 2567 + ], + "edges_to": [], + "id": 2566, + "label": "RELI 196AH", + "title": "Honors Thesis in Religion (4)" + }, + { + "dept": "RELI", + "description": "", + "edges_from": [], + "edges_to": [ + 4579, + 2566 + ], + "id": 2567, + "label": "RELI 101", + "title": "" + }, + { + "dept": "ANAR", + "description": "(Cross-listed with SIO 167.) As specialists in human timescales, archaeologists are trained to identify subtle details that are often imperceptible for other geoscientists. This course is designed to train archaeologists to identify the natural processes affecting the archaeological record, and geoscientists to identify the influence of human behavior over land surfaces. The course, which includes lectures, laboratory training, and field observations, focuses on the articulation of sedimentology and human activity. Students may not receive credit for both ANAR 167 and SIO 167. ", + "edges_from": [ + 2569, + 2570 + ], + "edges_to": [], + "id": 2568, + "label": "ANAR 167", + "title": "Geoarchaeology in Theory and Practice (6)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 2568 + ], + "id": 2569, + "label": "SIO 50", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 2568 + ], + "id": 2570, + "label": "ANTH 3", + "title": "" + }, + { + "dept": "ANAR", + "description": "(Cross-listed with SIO 166.) Introduction to the multidisciplinary tools for paleoenvironmental analysis\u2014from ecology, sedimentology, climatology, zoology, botany, chemistry, and others\u2014and provides the theory and method to investigate the dynamics between human behavior and natural processes. This socioecodynamic perspective facilitates a nuanced understanding of topics such as resource overexploitation, impacts on biodiversity, social vulnerability, sustainability, and responses to climate change. Students may not receive credit for ANAR 166 and SIO 166. ", + "edges_from": [], + "edges_to": [], + "id": 2571, + "label": "ANAR 166", + "title": "Introduction to Environmental Archaeology\u2014Theory and Method of Socioecodynamics and Human Paleoecology (4)" + }, + { + "dept": "ANAR", + "description": "This course will follow the interaction between humans and the sea in cultures that formed the biblical world of the second and first millennium BCE: the Canaanites, Israelites, Egyptians, Phoenicians, Philistines, and cultures of the Aegean Sea. Themes discussed will be maritime matters in the Canaanite and biblical narrative, key discoveries in maritime coastal archaeology of the eastern Mediterranean, shipwrecks: Canaanite, Phoenician, and Aegean, Egyptian ports, and Egyptian sea adventures. ", + "edges_from": [], + "edges_to": [], + "id": 2572, + "label": "ANAR 165", + "title": "Marine and Coastal Archaeology and the Biblical Seas (4)" + }, + { + "dept": "ANAR", + "description": "This course considers in detail a particular region or archaeological site within the Maya area.\u00a0Content will cover primary literature on Maya archaeology, epigraphy, and art history. Course content will vary based on the specific region/site. May be taken for credit three times. ", + "edges_from": [ + 912, + 2574 + ], + "edges_to": [], + "id": 2573, + "label": "ANAR 160", + "title": "Ancient Maya: Archaeological Problems and Perspectives (4)" + }, + { + "dept": "ANAR", + "description": "", + "edges_from": [], + "edges_to": [ + 2573 + ], + "id": 2574, + "label": "ANAR 153", + "title": "" + }, + { + "dept": "HIEA", + "description": "Ming was considered absolutist, closed, and stagnant. Nowadays its vibrant economy and culture are celebrated. We pair scholarship with primary sources to explore Ming\u2019s complexities and learn how historians work. May be coscheduled with HIEA 266. ", + "edges_from": [], + "edges_to": [], + "id": 2575, + "label": "HIEA 166/266", + "title": "Creating Ming Histories (4)" + }, + { + "dept": "LTCS", + "description": "This seminar will be organized around any of various topic areas relating to cultural studies. These might include studies in colonialism, historicism, gender, sexuality, social institutions, popular culture, subaltern practices, etc. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 2576, + "label": "LTCS 250", + "title": "Topics in Cultural Studies (4)" + }, + { + "dept": "MUIR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2577, + "label": "MUIR 1", + "title": "First Year Experience (2)" + }, + { + "dept": "PHYS", + "description": "This course deals with nonlinear phenomena in plasmas. Topics include: orbit perturbation theory, stochasticity, Arnold diffusion, nonlinear wave-particle and wave-wave interaction, resonance broadening, basics of fluid and plasma turbulence, closure methods, models of coherent structures. ", + "edges_from": [ + 916 + ], + "edges_to": [], + "id": 2578, + "label": "PHYS 235", + "title": "Nonlinear Plasma Theory (4)" + }, + { + "dept": "MUIR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2579, + "label": "MUIR 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "ANTH", + "description": "Independent preparation of a senior thesis under the supervision of a faculty member. Students begin two-quarter sequence in fall quarter. ", + "edges_from": [ + 1123 + ], + "edges_to": [ + 5251 + ], + "id": 2580, + "label": "ANTH 196B", + "title": "Honors Studies in Anthropology (4)" + }, + { + "dept": "PHYS", + "description": "Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ", + "edges_from": [ + 2582 + ], + "edges_to": [], + "id": 2581, + "label": "PHYS 232", + "title": "Electronic Materials (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2584, + 2581 + ], + "id": 2582, + "label": "PHYS 211A", + "title": "" + }, + { + "dept": "PHYS", + "description": "Selection of advanced topics in solid-state physics; material covered may vary from year to year. Examples of topics covered: disordered systems, surface physics, strong-coupling superconductivity, quantum Hall effect, low-dimensional solids, heavy fermion systems, high-temperature superconductivity, solid and liquid helium. ", + "edges_from": [ + 2584 + ], + "edges_to": [], + "id": 2583, + "label": "PHYS 230", + "title": "Advanced Solid-State Physics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 2974, + 2582 + ], + "edges_to": [ + 2583 + ], + "id": 2584, + "label": "PHYS 211B", + "title": "" + }, + { + "dept": "GPEC", + "description": "This course is devoted to studying the central player in the globalization process: the multinational corporation. From the perspective of both developed and developing countries, we will analyze the determinants of flows of multinational firms and foreign direct investment across countries; explore the incentives a firm has to become an MNC, particularly those to split production, and its consequences on a domestic economy; and the transfer of managerial abilities across countries. May not receive credit for GPEC 422 and IRGN 490. Knowledge of STATA is assumed.", + "edges_from": [], + "edges_to": [], + "id": 2585, + "label": "GPEC 422", + "title": "Multinational Corporations (4)" + }, + { + "dept": "GPEC", + "description": "This course studies how the financial system works to support economic growth most of the time, but also how it gets into crisis and puts the economy into a recession. Course emphasizes the importance and incentive problems inherent in financial transactions. Renumbered from IRGN 421. Students may not receive credit for GPEC 421 and IRGN 421.", + "edges_from": [], + "edges_to": [], + "id": 2586, + "label": "GPEC 421", + "title": "Financial Institutions (4)" + }, + { + "dept": "PHYS", + "description": "The constituents of matter (quarks and leptons) and their interactions (strong, electromagnetic, and weak). Symmetries and conservation laws. Fundamental processes involving quarks and leptons. Unification of weak and electromagnetic interactions. Particle-astrophysics and the Big Bang. ", + "edges_from": [ + 198 + ], + "edges_to": [], + "id": 2587, + "label": "PHYS 154", + "title": "Elementary Particle Physics (4)" + }, + { + "dept": "PHYS", + "description": "From time to time a member of the regular faculty or a resident visitor will find it possible to give a self-contained short course on an advanced topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. (S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 2588, + "label": "PHYS 239", + "title": "Special Topics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2589, + "label": "PHYS 238", + "title": "Observational Astrophysics Research Lab (4)" + }, + { + "dept": "TDDE", + "description": "Introductory course that explores a variety of digital rendering methods for artistic 2-D, 3-D, and moving graphics visualization in theatre and performance design. Course objective is to synthesize and expand traditional drawing and painting methods with modern digital media-based applications. ", + "edges_from": [], + "edges_to": [ + 2591 + ], + "id": 2590, + "label": "TDDE 169A", + "title": "Digital Rendering for Theatre and Performance Design I (4)" + }, + { + "dept": "TDDE", + "description": "A continuation of TDDE 169A. Studio course explores advanced digital rendering methods for artistic 2-D, 3-D, and moving graphics for theatre and performance design. Focus will be on advanced techniques in the process of visualization from conception to production. ", + "edges_from": [ + 2590 + ], + "edges_to": [], + "id": 2591, + "label": "TDDE 169B", + "title": "Digital Rendering for Theatre and Performance Design II (4)" + }, + { + "dept": "CHEM", + "description": "Topics of special interest will be presented. Examples include NMR, solid-state chemistry, phase transitions, stochastic processes, scattering theory, nonequilibrium processes, tensor transformations, and advanced topics in statistical mechanics, thermodynamics, and chemical kinetics. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 2592, + "label": "CHEM 239", + "title": "Special Topics in Chemical Physics (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena and the density matrices. Instrumentation, measurement, and interpretation. ", + "edges_from": [], + "edges_to": [], + "id": 2593, + "label": "CHEM 235", + "title": "Molecular Spectroscopy (4)" + }, + { + "dept": "CHEM", + "description": "Explore physical and analytical chemistry of surfaces. Topics include chemisorption and physisorption, sticking probabilities, adsorption isotherms, and passivation of semiconductors.", + "edges_from": [], + "edges_to": [], + "id": 2594, + "label": "CHEM 236", + "title": "Chemical Dynamics on Surfaces (4)" + }, + { + "dept": "MUS", + "description": "Master class instruction in advanced improvisation performance for declared majors and minors only or consent of instructor. Audition required at first class meeting. May be repeated six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2595, + "label": "MUS 131", + "title": "Advanced Improvisation Performance (4/0)" + }, + { + "dept": "BICD", + "description": "Developmental biology of animals at the tissue,", + "edges_from": [], + "edges_to": [], + "id": 2596, + "label": "BICD 130", + "title": "Embryos, Genes, and Development (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 125.) This course introduces students to the history of Asian American social movements from the late-nineteenth century to the present, with an emphasis on inter-ethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anticolonial movements, redress, hate crimes, and police brutality. Students may not receive credit for HIUS 125 and ETHN 163J.", + "edges_from": [], + "edges_to": [], + "id": 2597, + "label": "ETHN 163J", + "title": "Asian American Social Movements (4)" + }, + { + "dept": "SE", + "description": "Fluid-Structure Interaction (4)", + "edges_from": [], + "edges_to": [], + "id": 2598, + "label": "SE 278B", + "title": "Computational" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in computational and applied mathematics. In recent years, topics have included: applied functional analysis and approximation theory; numerical treatment of nonlinear partial differential equations; and geometric numerical integration for differential equations. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 2599, + "label": "MATH 277A", + "title": "Topics in Computational and Applied Mathematics (4)" + }, + { + "dept": "TDGR", + "description": "Individual or small group directed study.", + "edges_from": [], + "edges_to": [], + "id": 2600, + "label": "TDGR 293", + "title": "Directed Studies (4\u201312)" + }, + { + "dept": "BICD", + "description": "An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection, HIV testing, education and approaches to therapy, and the social, political, and legal impacts of AIDS on the individual and society. In order to count for their major, biology majors must take the upper-division course, BICD 136. ", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [], + "id": 2601, + "label": "BICD 136", + "title": "AIDS Science and Society (4)" + }, + { + "dept": "Classics", + "description": "An introduction to contemporary literary theory, focusing on important", + "edges_from": [], + "edges_to": [], + "id": 2602, + "label": "Classics 200A", + "title": "Contemporary Literary Theory and the Classics (4)" + }, + { + "dept": "GPCO", + "description": "Using class exercises, this capstone class introduces the fundamentals of business strategy, based on case studies requiring market and corporate analysis, and the principles of negotiation. Students apply analytic problem-solving skills in a strategy consulting project with a real-world client company. Renumbered from IRCO 463. Students may not receive credit for GPCO 463 and IRCO 463. ", + "edges_from": [ + 2604 + ], + "edges_to": [], + "id": 2603, + "label": "GPCO 463", + "title": "Strategy and Negotiation (4)" + }, + { + "dept": "GPIM", + "description": "", + "edges_from": [], + "edges_to": [ + 2603 + ], + "id": 2604, + "label": "GPIM 474", + "title": "" + }, + { + "dept": "GPCO", + "description": "The capstone paper should demonstrate mastery of the three components of a public policy program: 1) development of the methodologies for rigorous data collection and policy analysis; 2) an in-depth understanding of the regulatory and legal politics and processes surrounding the student\u2019s chosen policy area; and 3) mastery of the details of the particular issue area and policies intended or that were intended as solutions. Paper may focus on policy interest of the student or of a client. Letter grades only. Renumbered from IRCO 462. Students may not receive credit for GPCO 462 and IRCO 462. ", + "edges_from": [], + "edges_to": [], + "id": 2605, + "label": "GPCO 462", + "title": "Public Policy Capstone (4)" + }, + { + "dept": "SE", + "description": "Experimental/constitutive modeling perspectives on mechanical, hydraulic, thermal behavior of dry and saturated soils. Experimental techniques and methodologies presented; students will be able to perform key tests. Behavior of saturated sands and clays described based on key studies. Calibration of constitutive models for stress-strain behavior of soils, including hyperbolic, Mohr-Coulomb/Cam-Clay models. Modification of these models to consider thermal effects.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2606, + "label": "SE 248", + "title": "Engineering Properties of Soils (4)" + }, + { + "dept": "GPCO", + "description": "This capstone is designed to test the analytic skills of students, using them to explain complex real-world problems: security, persistent recurring conflict, persistent inequality and intergenerational debt, women\u2019s rights, environmental change, energy/resource systems, and financial contagion. Emphasis will be placed on determining the nature and dimension of the problem, exploring a range of solutions and assessing the capacity of public institutions. Renumbered from IRCO 467. Students may not receive credit for GPCO 467 and IRCO 467. ", + "edges_from": [], + "edges_to": [], + "id": 2607, + "label": "GPCO 467", + "title": "Policy Responses to Global Problems (4)" + }, + { + "dept": "GPCO", + "description": "The course will emphasize real world application of theories and methods of policy analysis to projects with real clients in the area of energy and the environment. The class will include case studies and seminar-style discussions of topics such as project finance and management of regulatory risk. Most of the class will be devoted to work in small teams with clients seeking strategic guidance. Students are expected to produce final projects suitable for senior management and governing boards. ", + "edges_from": [ + 2609, + 2610 + ], + "edges_to": [], + "id": 2608, + "label": "GPCO 466", + "title": "Real World Projects in Energy and the Environment (4)" + }, + { + "dept": "GPPS", + "description": "", + "edges_from": [], + "edges_to": [ + 2608 + ], + "id": 2609, + "label": "GPPS 428", + "title": "" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 2608 + ], + "id": 2610, + "label": "GPCO 400", + "title": "" + }, + { + "dept": "VIS", + "description": "Apprentice teaching in undergraduate courses given by the Department of Visual Arts. Graduate students are required to teach a minimum of one quarter (four units) within the department to fulfill degree requirements.", + "edges_from": [], + "edges_to": [], + "id": 2611, + "label": "VIS 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "VIS", + "description": "Training in teaching methods in the field of visual arts. This course examines theoretical and practical communication and teaching techniques particularly appropriate to studio and production-style courses. Open to VA75, VA76, and VA77 major codes.", + "edges_from": [], + "edges_to": [], + "id": 2612, + "label": "VIS 502", + "title": "Graduate Teaching in Visual Arts (4)" + }, + { + "dept": "SE", + "description": "Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. Recommended Preparation: SE 181 or equivalent background in the physics and engineering properties of soil. ", + "edges_from": [], + "edges_to": [], + "id": 2613, + "label": "SE 247", + "title": "Ground Improvement (4)" + }, + { + "dept": "SE", + "description": "Advanced treatment of topics in soil mechanics, including state of stress, pore pressure, consolidation and settlement analysis, shear strength of cohesionless and cohesive soils, mechanisms of ground improvement, and slope stability analysis. Concepts in course reinforced by laboratory experiments.", + "edges_from": [], + "edges_to": [ + 5126 + ], + "id": 2614, + "label": "SE 241", + "title": "Advanced Soil Mechanics (4)" + }, + { + "dept": "SE", + "description": "Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in-situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ", + "edges_from": [], + "edges_to": [], + "id": 2615, + "label": "SE 242", + "title": "Foundation Engineering (4)" + }, + { + "dept": "SE", + "description": "Advanced treatment of the dynamic interaction between soils and structures. Dynamic response of shallow and embedded foundations. Kinematic and inertial interaction. General computational and approximate analytical methods of analysis. ", + "edges_from": [ + 1619, + 1621 + ], + "edges_to": [], + "id": 2616, + "label": "SE 243", + "title": "Soil-Structure Interaction (4)" + }, + { + "dept": "HIUS", + "description": "This course considers how cultural processes have shaped histories of the Civil War and Reconstruction. Students will analyze the relationship between popular culture and major themes of the era through the use of literature, texts, film, television, and print images. Students who took HIUS 132 cannot repeat this course.", + "edges_from": [], + "edges_to": [], + "id": 2617, + "label": "HIUS 132S", + "title": "The Civil War and Reconstruction in Popular Culture (4)" + }, + { + "dept": "TDAC", + "description": "Improvisation for the Theatre explores improvisation techniques as an alternative and unique approach to acting. Students should have a performance background. ", + "edges_from": [ + 1105 + ], + "edges_to": [], + "id": 2618, + "label": "TDAC 107", + "title": "Improvisation for the Theatre (4)" + }, + { + "dept": "HITO", + "description": "In this course we compare the Jewish experience to other religious minorities in American history. Topics include motives and rates of immigration, education and work patterns, religious experiences, women\u2019s roles, family life, and representations in popular and high culture.", + "edges_from": [], + "edges_to": [], + "id": 2619, + "label": "HITO 164/264", + "title": "Jews and Other Ethnics in the American Past (4)" + }, + { + "dept": "POLI", + "description": "Training in teaching methods in the field of political science. Examines evidence-based research on undergraduate teaching and learning with emphasis on effective teaching techniques appropriate to political science. Covers TA training, syllabus design, and effective teaching strategies. ", + "edges_from": [], + "edges_to": [], + "id": 2620, + "label": "POLI 599", + "title": "Teaching Methods in Political Science (2)" + }, + { + "dept": "MGT", + "description": "This course covers concepts and theories useful in understanding and", + "edges_from": [], + "edges_to": [], + "id": 2621, + "label": "MGT 256", + "title": "Consumer Behavior Research (4)" + }, + { + "dept": "MGT", + "description": "Theories/research about behavior of employees/managers in organizations,", + "edges_from": [], + "edges_to": [], + "id": 2622, + "label": "MGT 257", + "title": "Behavior in Organizations (4)" + }, + { + "dept": "MGT", + "description": "This course introduces students to theories and research in the field", + "edges_from": [], + "edges_to": [], + "id": 2623, + "label": "MGT 255", + "title": "Psychology and Decision Making (4)" + }, + { + "dept": "LTWL", + "description": "This course examines the relationship between cinema and Islam. It looks at how Islam is represented through various cinematic genres and historical periods from 1920s to the present.", + "edges_from": [], + "edges_to": [], + "id": 2624, + "label": "LTWL 144", + "title": "Islam and Cinema (4)" + }, + { + "dept": "LTEN", + "description": "in Literary Research and Criticism (4)", + "edges_from": [], + "edges_to": [], + "id": 2625, + "label": "LTEN 281", + "title": "Practicum" + }, + { + "dept": "LTWL", + "description": "This course sets out to explore the relation between the novel and the \u201cdependent\u201d history of the Third World, contrasting and comparing the uses of history in the European novel as defined in the theoretical analysis of Lukacs with uses of history in the Third World novel. An analysis of major themes and movements common to selected ethnic literature in the United States and national literatures in the Third World.", + "edges_from": [], + "edges_to": [], + "id": 2626, + "label": "LTWL 140", + "title": "Novel and History in the Third World (4)" + }, + { + "dept": "LTWL", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2627, + "label": "LTWL 143", + "title": "Arab Literatures and Cultures (4)" + }, + { + "dept": "USP", + "description": "This course examines urban design\u2019s effects on physical activity. In field experience settings, students will learn about survey, accelerometer, observation, and GIS methods. Quality control, use of protocols, relevance to all ages, and international applications will also be emphasized. ", + "edges_from": [], + "edges_to": [], + "id": 2628, + "label": "USP 146", + "title": "Research Methods for Built Environment and Active Living (4)" + }, + { + "dept": "USP", + "description": "in Health-Care Programs/Poor and Underserved Population (4)", + "edges_from": [], + "edges_to": [], + "id": 2629, + "label": "USP 147", + "title": "Case Studies" + }, + { + "dept": "USP", + "description": "This course will analyze needs of populations, highlighting current major public health problems such as chronic and communicable diseases, environmental hazards of diseases, psychiatric problems and additional diseases, new social mores affecting health maintenance, consumer health awareness and health practices, special needs of economically and socially disadvantaged populations. The focus is on selected areas of public and environmental health, namely: epidemiology, preventive services in family health, communicable and chronic disease control, and occupational health. ", + "edges_from": [], + "edges_to": [], + "id": 2630, + "label": "USP 144", + "title": "Environmental and Preventive Health Issues (4)" + }, + { + "dept": "USP", + "description": "This course will provide a brief introduction to the nature and problems of aging, with emphasis on socioeconomic and health status; determinants of priorities of social and health policies will be examined through analysis of the structure and organization of selected programs for the elderly. Field visits will constitute part of the course. ", + "edges_from": [], + "edges_to": [], + "id": 2631, + "label": "USP 145", + "title": "Aging\u2014Social and Health Policy Issues (4)" + }, + { + "dept": "USP", + "description": "This course will provide an overview of the organization of health care within the context of the community with emphasis on the political, social, and cultural influences. It is concerned with the structure, objectives, and trends of major health and health-related programs in the United States to include sponsorship, financing, training and utilization of health personnel. ", + "edges_from": [], + "edges_to": [], + "id": 2632, + "label": "USP 143", + "title": "The US Health-Care System (4)" + }, + { + "dept": "GPIM", + "description": "This course introduces the core features of Japanese business and industrial organization, as well as Japanese management and HR practices. Business frameworks and concepts are introduced to enable students to analyze and evaluate organization change and the emergence of \u201cNew Japan\u201d companies. Renumbered from IRGN 411. Students may not receive credit for GPIM 411 and IRGN 411.", + "edges_from": [], + "edges_to": [], + "id": 2633, + "label": "GPIM 411", + "title": "Business and Management in Japan (4)" + }, + { + "dept": "LTFR", + "description": "Major literary works and problems of the eighteenth century. May be repeated for credit as topics vary. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 2634, + "label": "LTFR 123", + "title": "Eighteenth Century (4)" + }, + { + "dept": "LTFR", + "description": "This course will cover major literary works and problems of seventeenth-century French literature. May be taken for credit three times as topics vary. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 2635, + "label": "LTFR 122", + "title": "Topics in Seventeenth-Century French Literature (4)" + }, + { + "dept": "LTFR", + "description": "Major literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of the period. Medieval texts in modern French translation. May be repeated for credit as topics vary. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 2636, + "label": "LTFR 121", + "title": "The Middle Ages and the Renaissance (4)" + }, + { + "dept": "LTFR", + "description": "Major literary works and problems of the twentieth century. May be repeated for credit as topics vary. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 2637, + "label": "LTFR 125", + "title": "Twentieth Century (4)" + }, + { + "dept": "USP", + "description": "This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes. ", + "edges_from": [], + "edges_to": [], + "id": 2638, + "label": "USP 149", + "title": "Madness and Urbanization (4)" + }, + { + "dept": "MATH", + "description": "Mathematical Statistics\u2014Nonparametric Statistics (4)", + "edges_from": [], + "edges_to": [], + "id": 2639, + "label": "MATH 181C", + "title": "" + }, + { + "dept": "MAE", + "description": "This course will reintroduce the math fundamentals necessary for success in the engineering graduate program in MAE. Topics will include calculus, ODE\u2019s, vector calculus, linear algebra, probability and PDE\u2019s. ", + "edges_from": [], + "edges_to": [], + "id": 2640, + "label": "MAE 208", + "title": "Mathematics for Engineers (4)" + }, + { + "dept": "VIS", + "description": "of Criticism III: Contemporary (1950\u2013Present) (4)", + "edges_from": [], + "edges_to": [], + "id": 2641, + "label": "VIS 113CN", + "title": "History" + }, + { + "dept": "GPIM", + "description": "Examination of public policy analysis, such as cost-benefit analysis and project evaluation, for use in policy formation. Sustainable development will receive particular attention. Case studies emphasizing the environment, agriculture and food, and economic development will be included. Renumbered from IRGN 457. Students may not receive credit for GPIM 457 and IRGN 457.", + "edges_from": [], + "edges_to": [], + "id": 2642, + "label": "GPIM 457", + "title": "Cost-Benefit Analysis (4)" + }, + { + "dept": "GPIM", + "description": "This course will use tools and case studies to illustrate the promise and challenges of analyzing big data sets. Emphasis will be on solving problems rather than testing hypothesis. Renumbered from IRGN 452. Students may not receive credit for GPIM 452 and IRGN 452.", + "edges_from": [], + "edges_to": [], + "id": 2643, + "label": "GPIM 452", + "title": "Big Data Analytics (4)" + }, + { + "dept": "Soc/G", + "description": "This course provides an accessible, graduate level introduction to social network analysis as a theoretical and methodological approach\u2014one takes relationships rather than individuals as the fundamental unit of analysis. While the course will focus on concepts and applications rather than statistical models, students will also become acquainted with basic analytic techniques as well as learn how to collect, store, inspect, and visualize original network data. ", + "edges_from": [], + "edges_to": [], + "id": 2644, + "label": "Soc/G 209", + "title": "Social Networks (4)" + }, + { + "dept": "MATH", + "description": "A hands-on introduction to the use of a variety of open-source mathematical software packages, as applied to a diverse range of topics within pure and applied mathematics. Most of these packages are built on the Python programming language, but no prior experience with mathematical software or computer programming is expected. All software will be accessed using the CoCalc web platform (", + "edges_from": [], + "edges_to": [], + "id": 2645, + "label": "MATH 157", + "title": "Introduction to Mathematical Software (4)" + }, + { + "dept": "MATH", + "description": "This course will give students experience", + "edges_from": [], + "edges_to": [], + "id": 2646, + "label": "MATH 152", + "title": "Applicable Mathematics and Computing (4)" + }, + { + "dept": "DSGN", + "description": "A project-based course examining how principles from cognitive science apply to the design of things simple (doors) and complex (new technology). Learn about affordances, constraints, mappings, and conceptual models. Learn observational and design skills. Become a human-centered design thinker.", + "edges_from": [], + "edges_to": [ + 4017, + 4015, + 3131, + 3293, + 2857 + ], + "id": 2647, + "label": "DSGN 1", + "title": "Design of Everyday Things (4)" + }, + { + "dept": "BENG", + "description": "Quantitative basic understanding of different", + "edges_from": [], + "edges_to": [], + "id": 2648, + "label": "BENG 242/MATS 257/NANO 257", + "title": "Polymer Science and Engineering (4)" + }, + { + "dept": "Soc/G", + "description": "Techniques of gathering and analyzing transcripts of naturally occurring conversations, interviews, discourse in institutional settings, public political discourse, and text of historical materials. ", + "edges_from": [], + "edges_to": [], + "id": 2649, + "label": "Soc/G 204", + "title": "Text and Discourse Analysis (4)" + }, + { + "dept": "Soc/G", + "description": "This course covers some of the elementary techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ", + "edges_from": [], + "edges_to": [], + "id": 2650, + "label": "Soc/G 205", + "title": "Quantitative Methods I (4)" + }, + { + "dept": "Soc/G", + "description": "The course covers some of the more advanced techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ", + "edges_from": [], + "edges_to": [], + "id": 2651, + "label": "Soc/G 206", + "title": "Quantitative Methods II (4)" + }, + { + "dept": "Soc/G", + "description": "A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time. ", + "edges_from": [], + "edges_to": [], + "id": 2652, + "label": "Soc/G 207", + "title": "Comparative-Historical Methods (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1473 + ], + "id": 2653, + "label": "ECE 153", + "title": "" + }, + { + "dept": "EDS", + "description": "This online course develops educators\u2019 knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124AR and EDS 124A. ", + "edges_from": [], + "edges_to": [], + "id": 2654, + "label": "EDS 124AR", + "title": "Teaching Computation in the Digital World (4)" + }, + { + "dept": "GLBH", + "description": "Offers global health students the opportunity to intern and gain credit for their global health field experience requirement. Students will intern and work with a faculty adviser to elaborate on the intellectual analysis and critique of the field experience. Students must complete the AIP application process and have the consent of a faculty adviser. May be taken for credit up to two times. Must be taken for a letter grade to fulfill requirements for the global health major or minor.", + "edges_from": [], + "edges_to": [], + "id": 2655, + "label": "GLBH 197", + "title": "Global Health Academic Internship Program (4)" + }, + { + "dept": "CHEM", + "description": "Survey of the chemistry of semiconductors, superconductors, molecular magnetic materials, zeolites, fast ion conductors, electronically conducting polymers and ceramics. Synthetic techniques such as molecular precursor design, the sol-gel process, electrosynthesis, and high-temperature thermolysis will be covered. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 2656, + "label": "CHEM 228", + "title": "Solid State Chemistry (4)" + }, + { + "dept": "PHYS", + "description": "Hamilton\u2019s equations, canonical transformations; Hamilton-Jacobi theory; action-angle variables and adiabatic invariants; introduction to canonical perturbation theory, nonintegrable systems and chaos; Liouville equation; ergodicity and mixing; entropy; statistical ensembles. ", + "edges_from": [ + 2658 + ], + "edges_to": [ + 3966 + ], + "id": 2657, + "label": "PHYS 200B", + "title": "Theoretical Mechanics II (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2657 + ], + "id": 2658, + "label": "PHYS 200A", + "title": "" + }, + { + "dept": "SE", + "description": "Classical methods of analysis for statically indeterminate structures. Development of computer codes for the analysis of civil, mechanical, and aerospace structures from the matrix formulation of the classical structural theory, through the direct stiffness formulation, to production-type structural analysis programs. ", + "edges_from": [ + 2660, + 652, + 2661, + 1129 + ], + "edges_to": [], + "id": 2659, + "label": "SE 130A\u2013B", + "title": "Structural Analysis (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 2659, + 3971, + 2877, + 4167 + ], + "id": 2660, + "label": "SE 130B", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 3809, + 2659, + 2878, + 5767 + ], + "id": 2661, + "label": "SE 130A", + "title": "" + }, + { + "dept": "COMM", + "description": "This course will critically examine the role of the mass media in sub-Saharan Africa in the areas of colonial rule, nationalist struggles, authoritarianism, and popular movements. It will examine general trends regionally and internationally, as well as individual national cases, from the early twentieth century to the Internet news services of the information age. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 2662, + "label": "COMM 104F", + "title": "CMS: Africa (4)" + }, + { + "dept": "COMM", + "description": "The development of media systems and policies in Latin America and the Caribbean. Debates over dependency and cultural imperialism. The news media and the process of democratization. Development of the regional television industry. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 2663, + "label": "COMM 104G", + "title": "CMS: Latin America and the Caribbean (4)" + }, + { + "dept": "COMM", + "description": "The development of media systems in Asia, focusing on India and China. Debates over nationalism, regionalism, globalization, new technologies, identity politics, censorship, privatization, and media piracy. Alignments and differences with North American and European media systems will also be considered. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 2664, + "label": "COMM 104D", + "title": "CMS: Asia (4)" + }, + { + "dept": "COMM", + "description": "The development of media systems and policies in Europe. Differences between European and American journalism. Debates over the commercialization of television. The role of media in postcommunist societies in Eastern Europe. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 2665, + "label": "COMM 104E", + "title": "CMS: Europe (4)" + }, + { + "dept": "POLI", + "description": "This course is designed as a broad introduction to the study of law as a social institution and its relations to other institutions in society. The focus will be less on the substance of law (legal doctrine and judicial opinions) than on the process of law\u2013how legal rules both reflect and shape basic social values and their relation to social, political, and economic conflicts within society.", + "edges_from": [], + "edges_to": [ + 4508 + ], + "id": 2666, + "label": "POLI 40", + "title": "Introduction to Law and Society (4)" + }, + { + "dept": "BENG", + "description": "Mass transfer in solids, liquids, and gases with application to biological systems. Free and facilitated diffusion. Convective mass transfer. Diffusion-reaction phenomena. Active transport. Biological mass transfer coefficients. Steady and unsteady state. Flux-force relationships. (Credit not allowed for both CENG 101C and BENG 103B.) ", + "edges_from": [ + 168, + 169, + 597 + ], + "edges_to": [ + 3759 + ], + "id": 2667, + "label": "BENG 103B", + "title": "Bioengineering Mass Transfer (4)" + }, + { + "dept": "Linguistics/American", + "description": "This course concentrates on those language", + "edges_from": [], + "edges_to": [], + "id": 2668, + "label": "Linguistics/American Sign Language (LISL) 5A, 5B, 5C", + "title": "Fundamentals of American Sign Language (5)" + }, + { + "dept": "HITO", + "description": "An examination of the history of emotions from the early modern period to the present with a focus on Europe and North America. Analysis of different approaches to emotions as well as of specific emotions (love, honor, shame, fear, guilt).", + "edges_from": [], + "edges_to": [], + "id": 2669, + "label": "HITO 140", + "title": "History of Emotions (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 9, + 3849, + 4015, + 2857, + 5903, + 3293, + 2334, + 2335 + ], + "id": 2670, + "label": "CSE 8A", + "title": "" + }, + { + "dept": "COMM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 2671, + "label": "COMM 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MGT", + "description": "Internship with approved business or governmental agency, allowing student to pursue topics raised in the management core and elective courses. S/U grades only. May be taken for credit four times, for a maximum of four units, with instructor consent. Students may not earn credit for both MGT 497 and MGT 297. Internship credit may not be applied to fulfill specific course requirements or to credits required for graduation. ", + "edges_from": [], + "edges_to": [], + "id": 2672, + "label": "MGT 497", + "title": "Advanced Management Research Practicum (1)" + }, + { + "dept": "MATH", + "description": "Discussion of finite parameter schemes in the Gaussian and non-Gaussian context. Estimation for finite parameter schemes. Stationary processes and their spectral representation. Spectral estimation. Students who have not taken Math 282A may enroll with consent of instructor. ", + "edges_from": [ + 482 + ], + "edges_to": [], + "id": 2673, + "label": "MATH 287A", + "title": "Time Series Analysis (4)" + }, + { + "dept": "MAE", + "description": "Deterministic methods: Pontryagin\u2019s Maximum Principle, dynamic programming, calculus of variations. Stochastic methods: Gauss-Markov processes, Linear Quadratic control, Markov chains. Linear Quadratic Gaussian Control and the Separation Principle. ", + "edges_from": [], + "edges_to": [], + "id": 2674, + "label": "MAE 288A", + "title": "Optimal Control (4)" + }, + { + "dept": "ANTH", + "description": "Survey of Mesoamerican archaeology focusing on highland Mexico. Topics covered: settling of Mesoamerica, agricultural origins, development of social complexity, rise of cities, emergence of large-scale states. ", + "edges_from": [ + 2676 + ], + "edges_to": [], + "id": 2675, + "label": "ANTH 291", + "title": "Archaeology of Highland Mexico (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2675 + ], + "id": 2676, + "label": "ANGR 291", + "title": "" + }, + { + "dept": "NEU", + "description": "Participation in the department teaching program is required of all students working toward a PhD. In general, students are not expected to teach in the first year, but are required to serve as teaching assistants or tutors for one quarter at any time during their subsequent years of training. The amount of teaching required is equivalent to the duties expected of a 50 percent assistant for one quarter. ", + "edges_from": [], + "edges_to": [], + "id": 2677, + "label": "NEU 500", + "title": "Apprenticeship Teaching (1\u20134)" + }, + { + "dept": "ANTH", + "description": "Course examines theories for the causes of sociality in primates. Implications for our understanding of human evolution are considered. ", + "edges_from": [ + 2679 + ], + "edges_to": [], + "id": 2678, + "label": "ANTH 293", + "title": "Primate Socioecology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2678 + ], + "id": 2679, + "label": "ANGR 293", + "title": "" + }, + { + "dept": "ANTH", + "description": "The student will work on the master\u2019s thesis under the direction of the departmental committee chair. The course will be taken in the student\u2019s second year. S/U grades only. ", + "edges_from": [ + 2681 + ], + "edges_to": [], + "id": 2680, + "label": "ANTH 295", + "title": "Master\u2019s Thesis Preparation (1\u201312)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2680 + ], + "id": 2681, + "label": "ANGR 295", + "title": "" + }, + { + "dept": "ANTH", + "description": "The student will work in cooperation with his or her departmental committee to develop a research proposal for the doctoral research project. S/U grades only. ", + "edges_from": [ + 2683 + ], + "edges_to": [], + "id": 2682, + "label": "ANTH 296", + "title": "Dissertation Fieldwork Proposal Preparation (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2682 + ], + "id": 2683, + "label": "ANGR 296A", + "title": "" + }, + { + "dept": "ANTH", + "description": "Supervised advanced research studies with individual topics to be selected according to the student\u2019s special interests. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2684, + "label": "ANTH 297", + "title": "Research Practicum (1\u20134)" + }, + { + "dept": "ANTH", + "description": "Supervised study of individually selected anthropological topics under the direction of a member of the faculty. S/U grades only. ", + "edges_from": [ + 2686 + ], + "edges_to": [], + "id": 2685, + "label": "ANTH 298", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2685 + ], + "id": 2686, + "label": "ANGR 298", + "title": "" + }, + { + "dept": "ANTH", + "description": "S/U grades only. ", + "edges_from": [ + 2688 + ], + "edges_to": [], + "id": 2687, + "label": "ANTH 299", + "title": "Dissertation Research (1\u201312)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2687 + ], + "id": 2688, + "label": "ANGR 299", + "title": "" + }, + { + "dept": "TDGR", + "description": "The collaborative process from the rehearsal process through public performance. All participants will enroll in the same section, the same number of units. ", + "edges_from": [], + "edges_to": [], + "id": 2689, + "label": "TDGR 207", + "title": "Production (4)" + }, + { + "dept": "TDGR", + "description": "A study of the dramatic elements of stage violence, and practical work in developing the physical skills necessary to fully realize violent moments on the stage. At the core of the study is the process from text to convincing theatrical action. Physical work revolves around basic principles of energy, focus, and center inherent in unarmed and weapons combat. ", + "edges_from": [], + "edges_to": [], + "id": 2690, + "label": "TDGR 201", + "title": "Stage Combat (2)" + }, + { + "dept": "Classics", + "description": "Supervised independent research. Subject varies.", + "edges_from": [], + "edges_to": [], + "id": 2691, + "label": "Classics 280", + "title": "Independent Study (4)" + }, + { + "dept": "MGT", + "description": "Introduces how IT will transform health sciences. Highlights how IT and associated disruptive innovations in health-care delivery will enable physicians, patients, and caregivers to cost effectively prevent, diagnose, and monitor health conditions; manage treatment; and facilitate timely communication and intervention. Letter grades only. Students may not earn credit for both MGT 454 and MGT 274. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2692, + "label": "MGT 454", + "title": "Disruptive Technologies for Health Care (4)" + }, + { + "dept": "TDGR", + "description": "This course serves as a laboratory for experimentation in the choreographic strategies and structures of contemporary dance making. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 2693, + "label": "TDGR 208", + "title": "Dance Making Processes (4)" + }, + { + "dept": "TDDE", + "description": "A hands-on course develops craft skills and solution-finding process in design including script analysis, concept sketches, research, and scale model making. An exploration of fundamental ways of seeing and understanding visual design. ", + "edges_from": [ + 128, + 2695 + ], + "edges_to": [ + 2696 + ], + "id": 2694, + "label": "TDDE 101", + "title": "Theatre Process\u2014Scenery (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 2694, + 4351 + ], + "id": 2695, + "label": "TDPR 1", + "title": "" + }, + { + "dept": "TDDE", + "description": "An advanced course based on the \u201cpractice\u201d of scenic design, dealing with the solution finding process, from text to idea to realized work. ", + "edges_from": [ + 128, + 2694 + ], + "edges_to": [], + "id": 2696, + "label": "TDDE 102", + "title": "Advanced Scenic Design (4)" + }, + { + "dept": "VIS", + "description": "This survey course follows the parallel tracks of the sacred and secular in art and architecture from Constantine to the Crusades. Highlights include the emergence of Christian art, visual culture of the courts, development of monasteries, fall and rise of towns and cities, and arts of ritual. The thematic juxtaposition of different media and medieval people speaking in their own voices yields a multidimensional image of society in which the medieval experience is made as concrete as possible. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 2697, + "label": "VIS 121AN", + "title": "Art and Experience in the Middle Ages (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2698, + "label": "LTEN 127", + "title": "Victorian Poetry (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2699, + "label": "LTEN 124", + "title": "Topics: The Nineteenth Century (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2700, + "label": "LTEN 125", + "title": "Romantic Poetry (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2701, + "label": "LTEN 120", + "title": "Topics: The Eighteenth Century (4)" + }, + { + "dept": "MGT", + "description": "Examines financial theory and empirical evidence useful for making investment decisions. Topics include: portfolio theory, equilibrium models of security prices, the empirical behavior of security prices, market efficiency, and fixed-income markets and behavioral finance. ", + "edges_from": [ + 2703 + ], + "edges_to": [ + 5315 + ], + "id": 2702, + "label": "MGT 491", + "title": "Investments (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2702 + ], + "id": 2703, + "label": "MGT 408", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 2704, + "label": "Linguistics/Heritage Languages (LIHL) 137P", + "title": "Advanced Persian for Persian Speakers (4)" + }, + { + "dept": "BENG", + "description": "A laboratory course demonstrating basic concepts of biomechanics, bioengineering design, and experimental procedures involving animal tissue. Sources of error and experimental limitations. Computer data acquisition, modeling, statistical analysis. Experiments on artery, muscle and heart mechanics, action potentials, viscoelasticity, electrocardiography, hemorheology. Course materials fees may apply. ", + "edges_from": [ + 821 + ], + "edges_to": [], + "id": 2705, + "label": "BENG 172", + "title": "Bioengineering Laboratory (4)" + }, + { + "dept": "NANO", + "description": "Metal casting processes, solidification, deformation processing, thermal processing: solutionizing, aging, and tempering, joining processes such as welding and brazing. The effect of processing route on microstructure and its effect on mechanical and physical properties will be explored.\u00a0NanoEngineering majors have priority enrollment. ", + "edges_from": [ + 2707 + ], + "edges_to": [], + "id": 2706, + "label": "NANO 158L", + "title": "Materials Processing Laboratory\u00a0(4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 4782, + 4207 + ], + "edges_to": [ + 2706 + ], + "id": 2707, + "label": "NANO 158", + "title": "" + }, + { + "dept": "PHIL", + "description": "This course provides an introduction to the techniques of philosophical inquiry through detailed study of selected philosophical texts and through extensive training in philosophical writing based on those texts. Enrollment limited and restricted to majors; must be taken for letter grade. May not be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2708, + "label": "PHIL 115", + "title": "Philosophical Methods Seminar (4)" + }, + { + "dept": "ENVR", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 2709, + "label": "ENVR 130", + "title": "Environmental Issues: Social Sciences" + }, + { + "dept": "MGT", + "description": "Explains how to identify, measure, and analyze investment risks associated with interest rates, currency exchange, and equity markets, and acquire techniques to manage and control risk through the use of over-the-counter and exchange-traded derivatives. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2710, + "label": "MGT 492", + "title": "Financial Risk Management (4)" + }, + { + "dept": "POLI", + "description": "Explores empirical research in international relations with special emphasis on international conflict. Topics covered include theories on the causes of war, the distribution of power and conflict, formal and informal alignment, interdependence and conflict, linkages between domestic and international processes, and issues of research design. Students who have previously taken 247 may not take this course for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2711, + "label": "POLI 247A", + "title": "Quantitative International Relations (4)" + }, + { + "dept": "CSE", + "description": "Support for Applications of Parallel Computation (4)", + "edges_from": [], + "edges_to": [], + "id": 2712, + "label": "CSE 262", + "title": "System" + }, + { + "dept": "MATS", + "description": "Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. ", + "edges_from": [], + "edges_to": [], + "id": 2713, + "label": "MATS 227", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "EDS", + "description": "This course explores topical issues in the field of leadership. It focuses on recent developments that have broad implications for research and practice in educational leadership. Course topics will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 2714, + "label": "EDS 286", + "title": "Advanced Topics in Leadership (4)" + }, + { + "dept": "EDS", + "description": "This course addresses interdisciplinary influences on leadership practice within learning organizations. Contributions from scholars in futures\u2019 studies, including those influenced by modernism and postmodernism, will be used to explore topics such as long-range planning, demographic trends, technology, and brain theory. ", + "edges_from": [], + "edges_to": [], + "id": 2715, + "label": "EDS 285", + "title": "Leadership for the Future (4)" + }, + { + "dept": "EDS", + "description": "This course will investigate the skills and dispositions needed for students to lead the development of learning organizations. Faculty will teach and model concepts of working with people within educational organizations and programs. Emphasis will be placed on individual\u2019s team development and facilitation, organizational communications, adult learning, and professional development. ", + "edges_from": [], + "edges_to": [], + "id": 2716, + "label": "EDS 284", + "title": "Leadership for Organizational Development (4)" + }, + { + "dept": "EDS", + "description": "This course will present multiple theories of organizational change, explore group processes and identify models of decision making, and analyze human motivation theories. Establishing and nurturing a purpose-driven organization, while dealing with competing demands, will be discussed. A major emphasis in this course is on people as agents of change and on the creation of high-quality ethical and productive workplaces where employees can achieve success and satisfaction, while advancing the mission of the educational organization. ", + "edges_from": [], + "edges_to": [], + "id": 2717, + "label": "EDS 283", + "title": "Leadership for Organizational Change (4)" + }, + { + "dept": "EDS", + "description": "This course will address theories and practices for achieving schools and classrooms that are informed by and built around the participation of diverse communities and cultures. The emphasis is on how leadership intersects with sociohistorical and sociocultural theories that suggest that the organization of schools and instruction is critical to student inclusion and outcomes. A basic premise of this course is that a socially just learning theory begins with using all of the resources and knowledge of families, communities, and cultures in formulating policy and practice. ", + "edges_from": [], + "edges_to": [], + "id": 2718, + "label": "EDS 282", + "title": "Leadership for a Diverse Society (4)" + }, + { + "dept": "EDS", + "description": "This course will explore various models of curriculum and instruction in response to students\u2019 learning needs. It also will examine models of school organization and the leader\u2019s role and responsibility in developing a school culture that promotes student achievement, using evidence-based decision making. A major emphasis will be on evaluating research on which theories and practice are based. ", + "edges_from": [], + "edges_to": [], + "id": 2719, + "label": "EDS 281", + "title": "Leadership for Learning (4)" + }, + { + "dept": "EDS", + "description": "This course will present the evolution of leadership thought and theory, with an emphasis on the distinction between, and interrelatedness of, effective management and leadership. The ethics of leadership practice and epistemological perspectives of emerging leadership styles will be explored, and students will have opportunities to reflect on the nature of leadership as it is practiced in educational settings. Applying critical, self-reflective leadership practice through structured activities is also an element of this course.", + "edges_from": [], + "edges_to": [], + "id": 2720, + "label": "EDS 280", + "title": "Rethinking Leadership (4)" + }, + { + "dept": "MAE", + "description": "Tools for the design of cooperative control strategies for", + "edges_from": [], + "edges_to": [], + "id": 2721, + "label": "MAE 247", + "title": "Cooperative Control of Multi-agent Systems (4)" + }, + { + "dept": "MAE", + "description": "Modeling, solving, and analyzing planning problems for single robots or agents. Configuration space for motion planning, sampling-based motion planning, combinatorial motion planning, feedback motion planning, differential models, and nonholonomic constraints. Basic decision-theory and dynamic programming, sensor and information spaces.", + "edges_from": [], + "edges_to": [], + "id": 2722, + "label": "MAE 242", + "title": "Robot Motion Planning (4)" + }, + { + "dept": "BENG", + "description": "A general survey of structure-function relationships", + "edges_from": [], + "edges_to": [], + "id": 2723, + "label": "BENG 230B", + "title": "Cell and Molecular Biology (4)" + }, + { + "dept": "BENG", + "description": "Cardiovascular Physiology (4)", + "edges_from": [], + "edges_to": [], + "id": 2724, + "label": "BENG 230C", + "title": "" + }, + { + "dept": "BENG", + "description": "A graduate course in biochemistry especially tailored to the requirements and background of bioengineering graduate students. It will cover the important macro- and small molecules in cells that are the major constituents, or that function as signaling molecules or molecular machineries. The structures, pathways, interactions, methodologies, and molecular designs using recombinant DNA technology will be covered. ", + "edges_from": [], + "edges_to": [ + 5150 + ], + "id": 2725, + "label": "BENG 230A", + "title": "Biochemistry (4)" + }, + { + "dept": "ANTH", + "description": "These seminars are held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2726, + "label": "ANTH 281A", + "title": "Introductory Seminar (1)" + }, + { + "dept": "BENG", + "description": "Mechanics of breathing. Gas diffusion. Pulmonary", + "edges_from": [], + "edges_to": [], + "id": 2727, + "label": "BENG 230D", + "title": "Respiratory and Renal Physiology (4)" + }, + { + "dept": "ANBI", + "description": "All human endeavors are subject to human biases. We\u2019ll cover several issues that are subject to such biases: \u201crace\u201d concept; transfer of human remains to Native American tribal members; nonhuman primate testing; and use of human materials, including cell lines. ", + "edges_from": [], + "edges_to": [], + "id": 2728, + "label": "ANBI 120", + "title": "Ethical Dilemmas in Biological Anthropology (4)" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with Chem 265.) The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells. The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed.\u00a0Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BIMM 162/Chem 165. Students may not receive credit for BGGN 262 and Chem 265.", + "edges_from": [], + "edges_to": [], + "id": 2729, + "label": "BGGN 262", + "title": "3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)" + }, + { + "dept": "BGGN", + "description": "Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, and PHYS 279. ", + "edges_from": [], + "edges_to": [], + "id": 2730, + "label": "BGGN 260", + "title": "Neurodynamics (4)" + }, + { + "dept": "SE", + "description": "Strengthening of existing reinforced concrete structures with fiber reinforced composites. Mechanics of Fiber Reinforced Plastic lamina, bond strength of FRP-to-concrete joints, shear and flexural strengthening of beams and walls, increased strength and ductility of axially loaded columns, and seismic retrofit of columns. Use of computer resources. ", + "edges_from": [ + 430 + ], + "edges_to": [], + "id": 2731, + "label": "SE 254", + "title": "FRPs in Civil Structures (4)" + }, + { + "dept": "BGGN", + "description": "Experiments that emphasize biophysical principles through hands-on experience, with an emphasis on the blending of physical measurements with a clearly identified biological problem. Exercises include the use of optical tweezers to measure viscous forces at the level of cellular organelles, the characterization of sensorimotor control in the fly during visually guided flight, and the use of microscopic imaging techniques to characterize cell motility and organelle transport. Includes instruction in LabView. Students are encouraged to attend the Phys 173 undergraduate lectures. ", + "edges_from": [ + 954, + 2733, + 2734 + ], + "edges_to": [], + "id": 2732, + "label": "BGGN 266", + "title": "Advanced Laboratory in Biophysical Techniques (6)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2732 + ], + "id": 2733, + "label": "PHYS 120A", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2732 + ], + "id": 2734, + "label": "CHEM 6CL", + "title": "" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with Chem 264.) An introduction of virus structures, how they are determined, and how they facilitate the various stages of the viral life cycle from host recognition and entry to replication, assembly, release, and transmission to uninfected host cells. Students will be required to complete a term paper. (May not be offered every year.) Recommended preparation: elementary biochemistry as treated in Chem 114A or BIBC 100 and a basic course in cell biology or consent of the instructor.", + "edges_from": [], + "edges_to": [], + "id": 2735, + "label": "BGGN 264", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "BIOM", + "description": "Reading of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. ", + "edges_from": [], + "edges_to": [], + "id": 2736, + "label": "BIOM 296", + "title": "Directed Reading (1\u20134)" + }, + { + "dept": "BIOM", + "description": "Papers describing recent progress in signal transduction from the cell-surface to the nucleus will be chosen from recent research literature. Two papers will be discussed and criticized in detail each week for one hour. ", + "edges_from": [], + "edges_to": [], + "id": 2737, + "label": "BIOM 297", + "title": "Progress in Signal Transduction (1)" + }, + { + "dept": "BIOM", + "description": "Current literature in molecular pharmacology and molecular biology is reviewed. Two papers are chosen per week for oral presentation by students. Faculty critique the student presentations. ", + "edges_from": [], + "edges_to": [], + "id": 2738, + "label": "BIOM 294", + "title": "Pharmacology and Molecular Biology Journal Club (0\u20131)" + }, + { + "dept": "BIOM", + "description": "Student, faculty, and fellow discussion groups on research projects. Students are expected to present research findings to fellows, other PhD students, and faculty.", + "edges_from": [], + "edges_to": [], + "id": 2739, + "label": "BIOM 295", + "title": "Pharmacology Research Discussions (0\u20131)" + }, + { + "dept": "BIPN", + "description": "The course will cover a broad anatomical and functional description of the human nervous system and explore evidence implicating key brain areas in specific functions. This course will discuss modern techniques and the use of model organisms for dissecting the anatomical organization of the brain. ", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [], + "id": 2740, + "label": "BIPN 160", + "title": "Neuroanatomy (4)" + }, + { + "dept": "BIOM", + "description": "Reading and laboratory study of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 2741, + "label": "BIOM 298", + "title": "Directed Study (1\u201312)" + }, + { + "dept": "BIOM", + "description": "Independent study or research. ", + "edges_from": [], + "edges_to": [], + "id": 2742, + "label": "BIOM 299", + "title": "Independent Study or Research (1\u201312)" + }, + { + "dept": "VIS", + "description": "This seminar explores movement and exchange between Mediterranean cities with diverse political, social, ethnic, and religious roots and the new modes of art, architecture, and intellectual discourse that this diversity fostered. In addition to medieval sources, readings include art historical and theoretical texts from a variety of periods and fields that frame the implications of multiculturalism for historical and contemporary categories of perception and for the analysis of visual culture. Recommended preparation: VIS 20 or VIS 112 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 2743, + "label": "VIS 121H", + "title": "Medieval Multiculturalism (4)" + }, + { + "dept": "PHIL", + "description": "A research group for graduate students engaged in philosophy or history of the biological sciences. The group discusses biological, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ", + "edges_from": [], + "edges_to": [], + "id": 2744, + "label": "PHIL 284", + "title": "Philosophy of Biology Research Group (1\u20132)" + }, + { + "dept": "LTCS", + "description": "This course is designed to complement LTCS 50, Introduction to Cultural Studies. In this course, cultural studies methods are further introduced and applied to various concrete topics in order to illustrate the practical analysis of culture and cultural forms.", + "edges_from": [], + "edges_to": [], + "id": 2745, + "label": "LTCS 52", + "title": "Topics in Cultural Studies (4)" + }, + { + "dept": "LTCS", + "description": "An introduction to cultural studies with a focus on the following areas: literary and historical studies, popular culture, women\u2019s studies, ethnic studies, science studies, and gay/lesbian studies. Particular emphasis on the question of \u201ccultural practices\u201d and their social and political conditions and effects.", + "edges_from": [], + "edges_to": [], + "id": 2746, + "label": "LTCS 50", + "title": "Introduction to Cultural Studies (4)" + }, + { + "dept": "MAE", + "description": "Least Squares and Maximum Likelihood Estimation methods, Gauss-Markov models, State Estimation and Kalman Filtering, prediction and smoothing. The extended Kalman filter. ", + "edges_from": [ + 2748 + ], + "edges_to": [], + "id": 2747, + "label": "MAE 288B", + "title": "Optimal Estimation (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4288, + 4944, + 2747, + 5005 + ], + "id": 2748, + "label": "MAE 280A", + "title": "" + }, + { + "dept": "NANO", + "description": "Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with CENG 230. Students may not receive credit for both NANO 230 and CENG 230. ", + "edges_from": [], + "edges_to": [], + "id": 2749, + "label": "NANO 230", + "title": "Synchrotron Characterization of Nanomaterials (4)" + }, + { + "dept": "NANO", + "description": "Engineering principles of nanofabrication. Topics include: photo-, electron beam, and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Relevance to applications in energy, electronics, and medicine will be discussed.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2750, + "label": "NANO 234", + "title": "Advanced Nanoscale Fabrication (4)" + }, + { + "dept": "NANO", + "description": "Fundamental nanomanufacturing science and engineering, top-down nanomanufacturing processes, bottom-up nanomanufacturing processes, integrated top-down and bottom-up nanofabrication processes, three-dimensional nanomanufacturing, nanomanufacturing systems, nanometrology, nanomanufactured devices for medicine, life sciences, energy, and defense applications.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2751, + "label": "NANO 239", + "title": "Nanomanufacturing (4)" + }, + { + "dept": "NANO", + "description": "Scanning electron microscopy (SEM) detectors, imaging, image interpretation, and artifacts, introduction to lenses, electron beam-specimen interactions. Operating principles and capabilities for atomic force microscopy and scanning tunneling microscopy, scanning optical microscopy and scanning transmission electron microscopy.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2752, + "label": "NANO 238", + "title": "Scanning Probe Microscopy (4)" + }, + { + "dept": "SE", + "description": "Development and application of advanced computational techniques for fluid flow. Stabilized and variational multiscale methods for finite element and related discretizations are stressed. Applications involve advection-diffusion equations and systems, and incompressible and compressible Navier-Stokes equations. Turbulence modeling will also be covered. ", + "edges_from": [ + 2347, + 2348 + ], + "edges_to": [], + "id": 2753, + "label": "SE 278A", + "title": "Finite Elements for Fluid Mechanics (4)" + }, + { + "dept": "MATH", + "description": "Numerical differentiation and integration. Ordinary differential equations and their numerical solution. Basic existence and stability theory. Difference equations. Boundary value problems. ", + "edges_from": [ + 2755, + 923, + 135 + ], + "edges_to": [], + "id": 2754, + "label": "MATH 170C", + "title": "Introduction to Numerical Analysis: Ordinary Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 2756 + ], + "edges_to": [ + 2754 + ], + "id": 2755, + "label": "MATH 170B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2755 + ], + "id": 2756, + "label": "MATH 170A", + "title": "" + }, + { + "dept": "ECON", + "description": "Selected topics in microeconomics. ", + "edges_from": [ + 797 + ], + "edges_to": [], + "id": 2757, + "label": "ECON 182", + "title": "Topics in Microeconomics (4)" + }, + { + "dept": "PHIL", + "description": "Weekly or biweekly meetings to discuss recent literature in ethics, broadly construed so as to include ethical theory, normative ethics, jurisprudence, and historical traditions in these fields. The course is suitable for those specializing in ethics and for those seeking some familiarity with the field. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 2758, + "label": "PHIL 282", + "title": "Topics and Methods in Ethics (1\u20132)" + }, + { + "dept": "ECON", + "description": "This course presents a selection of applications and advanced topics that build on the material covered in the Econ 109. Game Theory course. ", + "edges_from": [ + 796 + ], + "edges_to": [], + "id": 2759, + "label": "ECON 109T", + "title": "Advanced Topics in Game Theory (2)" + }, + { + "dept": "ECE", + "description": "Foundations of deep learning. Deep learning architectures and learning algorithms. Feedforward, convolutional, and recurrent networks. Regularization. Applications to vision, speech, or text processing. ", + "edges_from": [ + 2524, + 2525 + ], + "edges_to": [], + "id": 2760, + "label": "ECE 271C", + "title": "Deep Learning and Applications (4)" + }, + { + "dept": "MATH", + "description": "Various topics in mathematical physics and partial differential equations. ", + "edges_from": [], + "edges_to": [], + "id": 2761, + "label": "MATH 278B", + "title": "Seminar in Mathematical Physics/PDE (1)" + }, + { + "dept": "BIBC", + "description": "Nearly all interactions between organisms, including host-pathogen interactions and mate attraction, have a chemical basis. Plants and microorganisms are the dominant life forms on earth and remain a major source of pharmaceutical leads. Students in this course will utilize biochemical methods to extract, fractionate, and analyze plant and microbial compounds of medicinal and ecological significance including antibiotics, growth regulators, toxins, and signaling molecules. Students use own laptops. Course requires field studies. Transportation not provided by the university. Students must comply with all risk management policies and procedures. Course materials fees will be applied. ", + "edges_from": [ + 1193, + 410 + ], + "edges_to": [], + "id": 2762, + "label": "BIBC 151", + "title": "Chemistry of Biological Interactions (4)" + }, + { + "dept": "HIGR", + "description": "Graduate Seminar in Premodern Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 2763, + "label": "HIGR 218A", + "title": "" + }, + { + "dept": "HIGR", + "description": "Graduate Seminar in Premodern Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 2764, + "label": "HIGR 218B", + "title": "" + }, + { + "dept": "ANAR", + "description": "The history and culture of the Inca Empire of South America and its fatal encounter with the West. Archaeological excavations, accounts from the sixteenth and seventeenth centuries, and ethnographies of present-day peoples of the Andes are explored. ", + "edges_from": [], + "edges_to": [], + "id": 2765, + "label": "ANAR 158", + "title": "The Inca: Empire of the Andes (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1C. ", + "edges_from": [ + 312, + 313 + ], + "edges_to": [], + "id": 2766, + "label": "Linguistics/Italian (LIIT) 1CX", + "title": "Analysis of Italian (2.5)" + }, + { + "dept": "ANAR", + "description": "This course will examine archaeological evidence for the development of societies in the South American continent. From the initial arrival of populations through to the Inca period and the arrival of the Spaniards. ", + "edges_from": [], + "edges_to": [], + "id": 2767, + "label": "ANAR 156", + "title": "The Archaeology of South America (4)" + }, + { + "dept": "ANAR", + "description": "The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500\u20131000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Students may not receive credit for both ANAR 157S and ANAR 157. ", + "edges_from": [], + "edges_to": [], + "id": 2768, + "label": "ANAR 157", + "title": "Early Empires of the Andes: The Middle Horizon (4)" + }, + { + "dept": "ANAR", + "description": "Introduction to the archaeology of the ancient culture of Mexico from the early Olmec culture through the Postclassic Aztec, Tarascan, Zapotec, and Mixtec states. Agriculture; trade and exchange; political and social organization; kinship networks; religious system, ideology, and worldviews. ", + "edges_from": [], + "edges_to": [], + "id": 2769, + "label": "ANAR 154", + "title": "The Aztecs and their Ancestors (4)" + }, + { + "dept": "TDGR", + "description": "Students will develop the concept for an original piece for television or film and will write the screenplay. Student work will be discussed in seminar at each phase of the development. ", + "edges_from": [ + 1477 + ], + "edges_to": [], + "id": 2770, + "label": "TDGR 257A-B", + "title": "Screenwriting (4-4)" + }, + { + "dept": "LTCS", + "description": "Selected topics on the construction of national cultural identities. Investigation of the dynamics of canon formation and nation building in specific historical contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 2771, + "label": "LTCS 260", + "title": "National Cultures (4)" + }, + { + "dept": "HIEU", + "description": "Ancient travel into unexplored regions of the world and the discovery of new civilizations. Look at actual voyages, focusing on the remarkable figures who braved the unknown, the objects of their journeys, and their crude equipment and knowledge.", + "edges_from": [], + "edges_to": [], + "id": 2772, + "label": "HIEU 112S", + "title": "Ancient Explorers (4)" + }, + { + "dept": "HITO", + "description": "Students will produce creative video projects by conducting interviews and drawing from relevant texts, lectures, archival resources, and other materials to expand and deepen their understanding of the Holocaust and help contribute to the body of work documenting this period in history.", + "edges_from": [], + "edges_to": [], + "id": 2773, + "label": "HITO 107", + "title": "Holocaust Video Production (4)" + }, + { + "dept": "PHYS", + "description": "An introduction to mathematical methods used in theoretical physics. Topics include: a review of complex variable theory, applications of the Cauchy residue theorem, asymptotic series, method of steepest descent, Fourier and Laplace transforms, series solutions for ODE\u2019s and related special functions, Sturm Liouville theory, variational principles, boundary value problems, and Green\u2019s function techniques.", + "edges_from": [], + "edges_to": [], + "id": 2774, + "label": "PHYS 201", + "title": "Mathematical Physics (5)" + }, + { + "dept": "Classics", + "description": "Examines ways in which classical texts and ideas have been received and", + "edges_from": [], + "edges_to": [], + "id": 2775, + "label": "Classics 200B", + "title": "Historical Perspectives on Classical Antiquity (4)" + }, + { + "dept": "Classics", + "description": "Cultural Contexts (4)", + "edges_from": [], + "edges_to": [], + "id": 2776, + "label": "Classics 200C", + "title": "Greece and Rome in Their Contemporary" + }, + { + "dept": "MUS", + "description": "Studies Seminar in Creative Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 2777, + "label": "MUS 254", + "title": "Integrative" + }, + { + "dept": "GPEC", + "description": "The course looks at clean energy and related technologies, including a high-level understanding of the science, policy, and market forces governing innovation. Students will develop an understanding of the renewable energy sector and the market variability of new technology. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 418. Students may not receive credit for GPEC 418 and IRGN 418.", + "edges_from": [], + "edges_to": [], + "id": 2778, + "label": "GPEC 418", + "title": "Green Technology (4)" + }, + { + "dept": "GPEC", + "description": "This course will begin by examining financial systems in poor countries. We will investigate how microfinance contracts overcome problems which had previously barred the extension of business credit in many environments. Renumbered from IRGN 417. Students may not receive credit for GPEC 417 and IRGN 417.", + "edges_from": [], + "edges_to": [], + "id": 2779, + "label": "GPEC 417", + "title": "Microfinance (4)" + }, + { + "dept": "GPEC", + "description": "This course examines the theoretical and empirical questions around the supply and demand markets, and the use for energy in firms and households. We will consider the environmental consequences and regulations of use. The course emphasizes the application of economic theory to energy issues. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 414. Students may not receive credit for GPEC 414 and IRGN 414. ", + "edges_from": [], + "edges_to": [], + "id": 2780, + "label": "GPEC 414", + "title": "The Economics of Energy Policy (4)" + }, + { + "dept": "GPEC", + "description": "This course explores the rationales and consequences of trade-related government interventions from an economic perspective. We will cover classical trade theory, \u201cnew\u201d trade theory, the process of global multilateral trade integration, and the political economy roots of trade policy. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 415. Students may not receive credit for GPEC 415 and IRGN 415.", + "edges_from": [], + "edges_to": [], + "id": 2781, + "label": "GPEC 415", + "title": "The Economics of Trade Policy (4)" + }, + { + "dept": "GPEC", + "description": "This course studies the economic development, current economic issues, and future prospects and challenges of East Asia, broadly defined as China, Japan, Korea, and Southeast Asia. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies in the region. Renumbered from IRGN 412. Students may not receive credit for GPEC 412 and IRGN 412.", + "edges_from": [], + "edges_to": [], + "id": 2782, + "label": "GPEC 412", + "title": "Comparative Development of the East Asian Economies (4)" + }, + { + "dept": "GPEC", + "description": "Why has China been growing so fast in the past few decades? Does the authoritarianism select competent leaders? How do firms and households behave in such a quasi-market economy? The course is designed to investigate these topical questions and provide students with a general overview of existing research on China\u2019s development. May not receive credit for GPEC 411 and IRGN 490, Topics in China\u2019s Development.", + "edges_from": [], + "edges_to": [], + "id": 2783, + "label": "GPEC 411", + "title": "Topics in China\u2019s Development (4)" + }, + { + "dept": "CSE", + "description": "Robotics has the potential to improve well-being for millions of people, support care givers, and aid the clinical workforce. This course brings together engineers, clinicians, and end-users to explore this exciting new field. It is project-based, interactive, and hands on, and involves working closely with stakeholders to develop prototypes that solve real-world problems.\u00a0Students will explore the latest research in healthcare robotics, human-robot teaming, and health design. JSOE students should be comfortable building and experimenting within their area of expertise (e.g., CSE, software development, MAE, rapid prototyping). Students with clinical backgrounds should be familiar with translational research methods. Students may not receive credit for CSE 276D and CSE 291 (H00) taught spring 2017 with the same subtitle. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 2784, + "label": "CSE 276D", + "title": "Healthcare Robotics (4)" + }, + { + "dept": "CSE", + "description": "Robots are entering human spaces. How do we make them functional, useful, and acceptable? This course explores the core computational, engineering, and experimental challenges in human-robot interaction. Course topics include shared autonomy, perception of people and context, coordination, collaboration, human-guided learning, robot design, and experimental robotics. Students will review seminal and recent papers in the field and engage in team-based projects with physical, mobile robots. This class requires expertise in software development. Prior exposure to robotics, computer vision, or machine learning is recommended. Students should be comfortable reading and analyzing scientific papers at the graduate level. Students may not receive credit for CSE 276B and CSE 291 (A00) taught winter 2017 with the same subtitle. ", + "edges_from": [], + "edges_to": [], + "id": 2785, + "label": "CSE 276B", + "title": "Human Robot Interaction (4)" + }, + { + "dept": "CSE", + "description": "The course will provide a comprehensive introduction to the key mathematical concepts used for modeling, implementing, and evaluation of robot systems. The course will use small home assignments tasks and a larger robot project to exercise the topics covered in class. The students should have a basic knowledge of mathematics and know one or more programming languages such as Python or Matlab for completion of homework assignments. ", + "edges_from": [], + "edges_to": [], + "id": 2786, + "label": "CSE 276C", + "title": "Mathematics for Robotics (4)" + }, + { + "dept": "CHEM", + "description": "Selection of topics of current interest. May be repeated for credit when topics vary. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 2787, + "label": "CHEM 229", + "title": "Special Topics in Inorganic Chemistry (2\u20134)" + }, + { + "dept": "CSE", + "description": "This course provides an introduction to the fundamentals of robotics across kinematics, sensor systems, estimation, control, and planning. The contents include introduction to robotics in general, kinematics of robot systems, robot arm systems, sensors for robots, basic vision for robots, estimation methods, perception, robot localization and navigation, control of robot systems, robot motion planning, robot task planning, robot architectures, and evaluation of robot systems. It is expected that students have a solid understanding of linear algebra, can program in Python or C++, and have a basic understanding of methods for reasoning under uncertainty. ", + "edges_from": [], + "edges_to": [], + "id": 2788, + "label": "CSE 276A", + "title": "Introduction to Robotics (4)" + }, + { + "dept": "CHEM", + "description": "Seminars presented by faculty and students on topics of current interest in inorganic chemistry, including areas such as bioinorganic, organometallic and physical-inorganic chemistry. The course is designed to promote a critical evaluation of the available data in specialized areas of inorganic chemistry. Each quarter three or four different topics will be discussed. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2789, + "label": "CHEM 227", + "title": "Seminar in Inorganic Chemistry (2)" + }, + { + "dept": "CHEM", + "description": "Advanced aspects of structure and bonding in transition metal", + "edges_from": [], + "edges_to": [], + "id": 2790, + "label": "CHEM 226", + "title": "Transition Metal Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "The role of metal", + "edges_from": [], + "edges_to": [], + "id": 2791, + "label": "CHEM 225", + "title": "Bioinorganic Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Application of physical techniques to the elucidation of the structure of inorganic complex ions and organometallic compounds. Topics covered include group theory, and its application to vibrational, magnetic resonance and Raman spectroscopy. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 2792, + "label": "CHEM 224", + "title": "Spectroscopic Techniques (4)" + }, + { + "dept": "CHEM", + "description": "A survey of this field from a synthetic and mechanistic viewpoint. Fundamental reactivity patterns for transition element organometallic compounds will be discussed and organized according to periodic trends. Transition metal catalyzed reactions of importance to organic synthesis and industrial chemistry will be presented from a mechanistic perspective. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2793, + "label": "CHEM 223", + "title": "Organometallic Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with MATS 227.) Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands versus bonds, free electron theory.", + "edges_from": [], + "edges_to": [], + "id": 2794, + "label": "CHEM 222", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "CHEM", + "description": "The aim of this course is to develop an appreciation for a variety of topics in signal transduction. We will discuss several historical developments while the focus will be on current issues. Both experimental approaches and results will be included in our discussions. Topics may vary from year to year. ", + "edges_from": [], + "edges_to": [], + "id": 2795, + "label": "CHEM 221", + "title": "Signal Transduction (4)" + }, + { + "dept": "CHEM", + "description": "Modulation cellular activity and influencing viral fate involve", + "edges_from": [], + "edges_to": [], + "id": 2796, + "label": "CHEM 220", + "title": "Regulatory Circuits in Cells (4)" + }, + { + "dept": "VIS", + "description": "Art Making: Three-Dimensional Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 2797, + "label": "VIS 3", + "title": "Introduction to" + }, + { + "dept": "VIS", + "description": "Art Making: Motion and Time Based Art (4)", + "edges_from": [], + "edges_to": [], + "id": 2798, + "label": "VIS 2", + "title": "Introduction to" + }, + { + "dept": "VIS", + "description": "Art Making: Two-Dimensional Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 2799, + "label": "VIS 1", + "title": "Introduction to" + }, + { + "dept": "MAE", + "description": "This course covers topics in probability and stochastic processes, linear control and estimation including optimal linear control, nonlinear stabilization, and optimal control and estimation for nonlinear systems. ", + "edges_from": [], + "edges_to": [], + "id": 2800, + "label": "MAE 200", + "title": "Controls (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 2851, + 2980 + ], + "id": 2801, + "label": "GPCO 415", + "title": "Accounting and Finance for Policy Makers (4)" + }, + { + "dept": "POLI", + "description": "Explores formal analytic and primarily game-theoretic research in international relations with emphasis on conflict and bargaining. Topics include: causes of war and peace, conventional and nuclear deterrence, crisis bargaining, arms race, and two-level games.", + "edges_from": [], + "edges_to": [], + "id": 2802, + "label": "POLI 247B", + "title": "Formal Models in International Relations (4)" + }, + { + "dept": "POLI", + "description": "This course is a survey of the history of international relations from 1618 to 1945. The focus is on diplomacy and war-fighting in their social, economic, political, cultural, and technological contexts. Formative conflicts will be examined in detail. ", + "edges_from": [], + "edges_to": [], + "id": 2803, + "label": "POLI 247C", + "title": "History of International Relations (4)" + }, + { + "dept": "GPCO", + "description": "Development of analytic tools for understanding international relations with applications to contemporary problems such as the environment, nuclear proliferation, human rights, humanitarian interventions, and the roots of conflict and cooperation among countries. Renumbered from IRCO 410. Students may not receive credit for GPCO 410 and IRCO 410. ", + "edges_from": [], + "edges_to": [], + "id": 2804, + "label": "GPCO 410", + "title": "International Politics and Security (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2805, + "label": "GPCO 412", + "title": "Globalization, the World System, and the Pacific (4)" + }, + { + "dept": "SE", + "description": "Requirements for strain measurements, electrical resistance strain gages, fiberoptic strain gages, wave propagation, ultrasonic testing, impact-echo, acoustic emission, infrared thermography, vibrational testing. Applications to materials characterization, defect detection, and health monitoring of structural components. Recommended preparation: SE 101A, SE 110A or MAE 131A, and SE 110B or MAE 131B. ", + "edges_from": [], + "edges_to": [], + "id": 2806, + "label": "SE 252", + "title": "Experimental Mechanics and NDE (4)" + }, + { + "dept": "SE", + "description": "Fundamental and advanced concepts of stability analysis for earth slopes and retaining walls with soil backfill. Topics: shear strength, effective/total stress analysis, infinite/finite slopes, reinforced soil slopes, lateral earth pressure, retaining wall design and reinforced soil retaining walls. Recommended preparation: SE 181 or equivalent background. ", + "edges_from": [], + "edges_to": [], + "id": 2807, + "label": "SE 250", + "title": "Stability of Earth Slopes and Retaining Walls (4)" + }, + { + "dept": "SE", + "description": "Introduction to textile structure and behavior, mechanics of yarns and fabrics as relevant to structural composites and geotechnical applications. Mechanics of textiles and fabric-based composites. Applications in fiber reinforced composites, coated textile structures, geotextiles.", + "edges_from": [], + "edges_to": [], + "id": 2808, + "label": "SE 255", + "title": "Textile Composite Structures (4)" + }, + { + "dept": "HUM", + "description": "Selected topics in the history, literature, and thought of Mediterranean antiquity and its successor-cultures. Emphasis on identifying both common themes and cultural distinctiveness. Discussion of pedagogical approaches to this material. Required of all graduate instructional assistants in the humanities sequence. ", + "edges_from": [], + "edges_to": [], + "id": 2809, + "label": "HUM 200", + "title": "Seminar in the Humanities (4)" + }, + { + "dept": "POLI", + "description": "International migration creates a distinct set of human rights challenges. This course examines the conflict between international legal obligations and domestic politics of citizenship, human rights, asylum, and human trafficking. ", + "edges_from": [], + "edges_to": [], + "id": 2810, + "label": "POLI 140D", + "title": "International Human Rights Law: Migrant Populations (4)" + }, + { + "dept": "POLI", + "description": "International law is central to the efforts to create a world order to limit armed conflict, regulate world economy, and set minimum standards for human rights. This course introduces international law and explains theories advanced by academic analysts and practitioners to explain its role. ", + "edges_from": [], + "edges_to": [], + "id": 2811, + "label": "POLI 140A", + "title": "International Law (4)" + }, + { + "dept": "POLI", + "description": "Introduction to the analytical and comparative study of revolutionary movements and related forms of political violence. Topics include: the classical paradigm; types of revolutionary episodes; psychological theories; ideology and belief systems; coups; insurgencies; civil wars; terrorism and revolutionary outcomes. ", + "edges_from": [], + "edges_to": [], + "id": 2812, + "label": "POLI 140B", + "title": "Concepts and Aspects of Revolution (4)" + }, + { + "dept": "POLI", + "description": "A survey of international peacekeeping and peace enforcement in civil conflicts with a simulation of international diplomacy. ", + "edges_from": [], + "edges_to": [], + "id": 2813, + "label": "POLI 140C", + "title": "International Crisis Diplomacy (4)" + }, + { + "dept": "MUS", + "description": "This course will examine the development of the Blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of Urban Blues and the close relationship of the Blues with Jazz, Rhythm and Blues, and Rock and Roll. (Cross-listed with ETHN 178.) ", + "edges_from": [], + "edges_to": [], + "id": 2814, + "label": "MUS 126", + "title": "Blues: An Oral Tradition (4)" + }, + { + "dept": "MATH", + "description": "Various topics in optimization and applications. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 2815, + "label": "MATH 278C", + "title": "Seminar in Optimization (1)" + }, + { + "dept": "ETHN", + "description": "Using key theoretical approaches, debates, and frameworks of ethnic studies, students develop a critical analysis of how existing scholarship within the field of ethnic studies informs a specific research question, topic, or object of study; this literature review demonstrates comprehensive and holistic knowledge of critical approaches and constructs a coherent theoretical framework that effectively summarizes, synthesizes, and assesses a particular body of relevant ethnic studies literature.", + "edges_from": [], + "edges_to": [ + 3748 + ], + "id": 2816, + "label": "ETHN 291A", + "title": "Comprehensive Research Preparation: The Literature Review (4)" + }, + { + "dept": "LIGN", + "description": "How do some languages express with one word complex meanings that English needs several words to express? Discovery of underlying principles of word formation through problem solving and analysis of data from a wide variety of languages. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 2817, + "label": "LIGN 120", + "title": "Morphology (4)" + }, + { + "dept": "MAE", + "description": "Analysis of aerospace engineering systems using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine. Students operate facilities, obtain data, complete engineering analysis and write major reports. ", + "edges_from": [ + 2820, + 988, + 2819, + 676, + 821 + ], + "edges_to": [], + "id": 2818, + "label": "MAE 175A", + "title": "Aerospace Engineering Laboratory I (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 5966 + ], + "edges_to": [ + 2818, + 3579, + 4599 + ], + "id": 2819, + "label": "MAE 143B", + "title": "" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 2818, + 3579 + ], + "id": 2820, + "label": "CENG 120", + "title": "" + }, + { + "dept": "EDS", + "description": "Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the first course of a two-course series. ", + "edges_from": [], + "edges_to": [ + 2822 + ], + "id": 2821, + "label": "EDS 294A", + "title": "Colloquium on Educational Leadership (2)" + }, + { + "dept": "EDS", + "description": "Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the second course in a two-course series. ", + "edges_from": [ + 2821 + ], + "edges_to": [], + "id": 2822, + "label": "EDS 294B", + "title": "Colloquium on Educational Leadership (2)" + }, + { + "dept": "Revelle", + "description": "Weekly seminars with a faculty member (chosen each year by the provost to match the interests of participating students). This seminar will acquaint students with the scholarship and research being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2823, + "label": "Revelle 20", + "title": "Revelle Freshman Honors Program Seminar (0)" + }, + { + "dept": "ECE", + "description": "Stability of continuous- and discrete-time", + "edges_from": [], + "edges_to": [ + 4599 + ], + "id": 2824, + "label": "ECE 171A", + "title": "Linear Control System Theory (4)" + }, + { + "dept": "ECE", + "description": "Time-domain, state-variable formulation of", + "edges_from": [], + "edges_to": [], + "id": 2825, + "label": "ECE 171B", + "title": "Linear Control System Theory (4)" + }, + { + "dept": "LTWL", + "description": "Course sets out to explore the history and theory of Iranian films in the context of the country\u2019s political, cultural, and religious settings since 1945. Students are expected to watch and discuss Iranian films, particularly the postrevolutionary films of Kiarostami and Mokhbalbaf.", + "edges_from": [], + "edges_to": [], + "id": 2826, + "label": "LTWL 157", + "title": "Iranian Film (4)" + }, + { + "dept": "LTWL", + "description": "The study of the construction of sexual differences in literature and culture. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2827, + "label": "LTWL 155", + "title": "Gender Studies (4)" + }, + { + "dept": "LTWL", + "description": "Explores the various cross-cultural historical, philosophical, and aesthetic ideas which formed the basis of most twentieth-century literature. Literature from the Americas, Europe, Asia, and Africa will be studied through lectures and the reading of texts in English translation. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2828, + "label": "LTWL 150", + "title": "Modernity and Literature (4)" + }, + { + "dept": "LTWL", + "description": "This course examines the role of Information Communication Technologies (ICTs) such as the Internet, mobile, and satellite TV in the reshaping of the Middle East and North Africa. It will focus on how ICTs like the Internet are changing culture, politics, and religion in the region and implication of such transformations.", + "edges_from": [], + "edges_to": [], + "id": 2829, + "label": "LTWL 159", + "title": "Digital Middle East: Culture, Politics, and Religion (4)" + }, + { + "dept": "USP", + "description": "(Same as SOCI 152.) Primary focus on understanding", + "edges_from": [], + "edges_to": [], + "id": 2830, + "label": "USP 133", + "title": "Social Inequality and Public Policy (4)" + }, + { + "dept": "USP", + "description": "(Same as ETHN 188.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived. ", + "edges_from": [], + "edges_to": [], + "id": 2831, + "label": "USP 132", + "title": "African Americans, Religion, and the City (4)" + }, + { + "dept": "USP", + "description": "Craft breweries are emerging as a significant part of the economy in US cities. This course examines the rise and impact of craft breweries in city life with a focus on tourism, urban culture, local job growth, and urban revitalization. ", + "edges_from": [], + "edges_to": [], + "id": 2832, + "label": "USP 131", + "title": "Culture, Tourism, and the Urban Economy: Case Studies of Craft Breweries" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of political theory. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 2833, + "label": "POLI 119A", + "title": "Special Topics in Political Theory (4)" + }, + { + "dept": "USP", + "description": "Community Development Policy and Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 2834, + "label": "USP 137", + "title": "Housing and" + }, + { + "dept": "USP", + "description": "Provides an overview of collaborative leadership and considers consensus organizing as both a tactical and strategic approach to effective community building and development. Examines how various communities have approached collaborative leadership, consensus organizing, and community building. ", + "edges_from": [], + "edges_to": [], + "id": 2835, + "label": "USP 136", + "title": "Collaborative Community Leadership (4)" + }, + { + "dept": "USP", + "description": "Latina Immigrant Workers in the Global Economy (4)", + "edges_from": [], + "edges_to": [], + "id": 2836, + "label": "USP 135", + "title": "Asian and" + }, + { + "dept": "USP", + "description": "This course examines the integration of youth development and community development in theory and practice as a strategy for addressing adultism. Analyze cases through a cultural lens where local, national, and international youth movements have helped make community development more responsive, inclusive, and culturally sensitive. ", + "edges_from": [], + "edges_to": [], + "id": 2837, + "label": "USP 134", + "title": "Community Youth Development (4)" + }, + { + "dept": "USP", + "description": "This course explores emerging trends in urban design and economic development and their interrelationship. The course focuses on selected community projects and also considers urban governance structures. Various research methods will be applied to urban problems. ", + "edges_from": [], + "edges_to": [], + "id": 2838, + "label": "USP 139", + "title": "Urban Design and Economic Development (4)" + }, + { + "dept": "USP", + "description": "This course focuses on strategies that policy makers and planners use in their efforts to foster healthy economies. Topics include theories of urban economic development, analytical techniques for describing urban economies, and the politics and planning of economic development. ", + "edges_from": [], + "edges_to": [], + "id": 2839, + "label": "USP 138", + "title": "Urban Economic Development (4)" + }, + { + "dept": "HIEU", + "description": "An analysis of the volatile course of German history from unification to the collapse of the Nazi dictatorship. Focus is on domestic developments inside Germany as well as on their impact on European and global politics in the twentieth century. Students may not receive credit for both HIEU 154 and HIEU 154GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 2840, + "label": "HIEU 154GS", + "title": "Modern Germany: From Bismarck to Hitler (4)" + }, + { + "dept": "ETHN", + "description": "The class will work in teams to design all aspects of an actual museum exhibition of Plains Indian drawings from 1860 to 1890, turning theory into practice. In some quarters, the exhibition will be installed in a San Diego museum directly after completion of the course. ", + "edges_from": [ + 2842 + ], + "edges_to": [], + "id": 2841, + "label": "ETHN 114B", + "title": "Representing Native America\u2014Exhibition Design (4)" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 2841 + ], + "id": 2842, + "label": "ETHN 114A", + "title": "" + }, + { + "dept": "VIS", + "description": "This course offers new approaches to understanding Michelangelo\u2019s greatest creations. By considering how each work relates to the setting for which it was intended, by regarding critical literature and artistic borrowings as evidence about the works, and by studying the thought of the spiritual reformers who counseled Michelangelo, new interpretations emerge which show the artist to be a deeply religious man who invested his works with both public and private meanings. ", + "edges_from": [ + 681, + 2844, + 2845, + 2846 + ], + "edges_to": [], + "id": 2843, + "label": "VIS 122D", + "title": "Michelangelo (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 5554, + 2843, + 5391 + ], + "id": 2844, + "label": "VIS 22", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 2843 + ], + "id": 2845, + "label": "VIS 20", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 2843 + ], + "id": 2846, + "label": "VIS 21", + "title": "" + }, + { + "dept": "GPIM", + "description": "This course examines the economics of decisions and strategies made within non-governmental organizations. Topics covered include how and why organizations emerge and the impact that owner and manager decisions have on workers, strategy, and success. Renumbered from IRGN 447. Students may not receive credit for GPIM 447 and IRGN 447.", + "edges_from": [], + "edges_to": [], + "id": 2847, + "label": "GPIM 447", + "title": "Organizational Economics (4)" + }, + { + "dept": "HIUS", + "description": "Cultural and political construction of the American nation. Topics include: how citizenship and national community were imagined and contested; importance of class, gender, and race in the nation\u2019s public sphere; debates over slavery, expansion, and democracy in defining national purpose. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial paper.", + "edges_from": [], + "edges_to": [], + "id": 2848, + "label": "HIUS 182", + "title": "Special Topics in Intellectual History (4)" + }, + { + "dept": "HIUS", + "description": "A colloquium dealing with special topics in the history of people of African descent in the United States. Course may be taken for credit up to three times, as topics will vary from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 2849, + "label": "HIUS 183", + "title": "Topics in African American History (4)" + }, + { + "dept": "HIUS", + "description": "Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2850, + "label": "HIUS 186", + "title": "Topics in US Economic History (4)" + }, + { + "dept": "GPIM", + "description": "Focus on planning, managing, controlling, and evaluating costs for competitive advantage in global markets. Key topics will include cost structure, cost-based managerial decision making, strategic cost management, JIT/TQC cost management, and accounting control systems. Renumbered from IRGN 440. Students may not receive credit for GPIM 440 and IRGN 440. ", + "edges_from": [ + 2801 + ], + "edges_to": [], + "id": 2851, + "label": "GPIM 440", + "title": "Managerial Accounting and Control (4)" + }, + { + "dept": "USP", + "description": "(Same as ETHN 107.) This is a research course examining social, economic, and political issues in ethnic and racial communities through fieldwork. Topics are examined through a variety of research methods that may include interviews and archival, library, and historical research. ", + "edges_from": [], + "edges_to": [], + "id": 2852, + "label": "USP 130", + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + { + "dept": "Soc/G", + "description": "Assimilation, and Identity (4)", + "edges_from": [], + "edges_to": [], + "id": 2853, + "label": "Soc/G 278", + "title": "Immigration," + }, + { + "dept": "PSYC", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 2854, + "label": "PSYC 270A", + "title": "Introduction to Laboratory Experimentation I" + }, + { + "dept": "PSYC", + "description": "Final quarter of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2855, + "label": "PSYC 270C", + "title": "Introduction to Laboratory Experimentation III (4)" + }, + { + "dept": "PSYC", + "description": "Continuation of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2856, + "label": "PSYC 270B", + "title": "Introduction to Laboratory Experimentation II (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 393, + 2670, + 3293, + 238, + 2647 + ], + "edges_to": [ + 1573, + 4590, + 4016, + 4017, + 4014, + 5823 + ], + "id": 2857, + "label": "COGS 120", + "title": "" + }, + { + "dept": "BENG", + "description": "Biotech is a special breed of business, especially in start-up and early phases. Whether you are considering joining a biotech start-up or want to be successful in a life-science organization, it pays to understand this unique business model. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies. The format is highly interactive and learning is enhanced by means of exercises, team presentations, and case studies. ", + "edges_from": [], + "edges_to": [], + "id": 2858, + "label": "BENG 225", + "title": "BioBusiness: Starting, Growing, and Harvesting a Biotech Company (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5859, + 1193, + 3313, + 952, + 410, + 3835, + 4221, + 959 + ], + "id": 2859, + "label": "CHEM 140A", + "title": "" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 2860, + "label": "Linguistics/Portuguese (LIPO) 1AX", + "title": "Analysis of Portuguese (2.5)" + }, + { + "dept": "MATH", + "description": "Probabilistic Foundations of Insurance. Short-term", + "edges_from": [], + "edges_to": [ + 2862 + ], + "id": 2861, + "label": "MATH 193A", + "title": "Actuarial Mathematics I (4)" + }, + { + "dept": "MATH", + "description": "Life Insurance and Annuities. Analysis of premiums and premium reserves. Introduction to multiple life functions and decrement models as time permits. ", + "edges_from": [ + 2861 + ], + "edges_to": [], + "id": 2862, + "label": "MATH 193B", + "title": "Actuarial Mathematics II (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 110A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110A or after successful completion of Econ 110A with A\u2013or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 2863, + "label": "ECON 110AH", + "title": "Honors Macroeconomics A (1)" + }, + { + "dept": "HLAW", + "description": "This course series focuses on developing students\u2019 research and scholarly writing skills for their Independent Study Projects (ISP). Topics include refining the research question, collecting/analyzing data, understanding research methodology, forming the ISP committee, and producing a viable ISP proposal. ", + "edges_from": [], + "edges_to": [], + "id": 2864, + "label": "HLAW 298A-C", + "title": "Health Law Research Forum (1-1-1)" + }, + { + "dept": "ANTH", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ", + "edges_from": [], + "edges_to": [], + "id": 2865, + "label": "ANTH 287", + "title": "Ethnography Practicum (4)" + }, + { + "dept": "ANTH", + "description": "This workshop is designed for third and fourth year students writing grant proposals for dissertation research. Students will learn grant writing, research methods, ethics, and budgets. Students will be expected to share their work with each other. ", + "edges_from": [], + "edges_to": [], + "id": 2866, + "label": "ANTH 285", + "title": "Grants Writing Practicum (4)" + }, + { + "dept": "ANTH", + "description": "This workshop is designed for second year students writing their MA theses. It includes study of thesis and article writing styles, standards of documentation, and argumentation. Students will be expected to share their work with each other. ", + "edges_from": [], + "edges_to": [], + "id": 2867, + "label": "ANTH 284", + "title": "Master Writing Practicum (4)" + }, + { + "dept": "HIUS", + "description": "This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries. Program or materials fees may apply. Students must apply and be accepted into the Global Seminars Program. Students may not receive credit for HIUS 133 and HIUS 133GS.", + "edges_from": [], + "edges_to": [], + "id": 2868, + "label": "HIUS 133GS", + "title": "The Golden Age of Piracy (4)" + }, + { + "dept": "ANTH", + "description": "Field and laboratory training for graduate students in archaeology. Students will design and implement archaeological fieldwork or analyze data collected in the field. ", + "edges_from": [ + 2870 + ], + "edges_to": [], + "id": 2869, + "label": "ANTH 288", + "title": "Archaeology Practicum (12)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2869 + ], + "id": 2870, + "label": "ANGR 288", + "title": "" + }, + { + "dept": "MATH", + "description": "Recommended for all students specializing in algebra. Basic topics include categorical algebra, commutative algebra, group representations, homological algebra, nonassociative algebra, ring theory. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [ + 2872 + ], + "edges_to": [], + "id": 2871, + "label": "MATH 201A", + "title": "Basic Topics in Algebra I (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3448, + 3054, + 2871 + ], + "id": 2872, + "label": "MATH 200C", + "title": "" + }, + { + "dept": "TDDE", + "description": "An advanced course based on the \u201cpractice\u201d of costume design, dealing with the solution finding process, from text to idea to realized work. ", + "edges_from": [ + 128, + 2874 + ], + "edges_to": [], + "id": 2873, + "label": "TDDE 112", + "title": "Advanced Costume Design (4)" + }, + { + "dept": "TDDE", + "description": "", + "edges_from": [ + 128 + ], + "edges_to": [ + 2873 + ], + "id": 2874, + "label": "TDDE 111", + "title": "" + }, + { + "dept": "LTEN", + "description": "Selected topics concerned with modern British literature; study of various authors, issues, and trends in literatures of the British Isles from the mid-1850s through the present day. May be taken up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2875, + "label": "LTEN 130", + "title": "Modern British Literature (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2876, + "label": "LTEN 132", + "title": "Modern Irish Literature (4)" + }, + { + "dept": "SE", + "description": "Part I of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 2660, + 2878 + ], + "edges_to": [ + 2879 + ], + "id": 2877, + "label": "SE 140A", + "title": "Professional Issues and Design for Civil Structures I (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 2661 + ], + "edges_to": [ + 2877, + 3613 + ], + "id": 2878, + "label": "SE 150", + "title": "" + }, + { + "dept": "SE", + "description": "Part II of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 2880, + 1785, + 2877 + ], + "edges_to": [], + "id": 2879, + "label": "SE 140B", + "title": "Professional Issues and Design for Civil Structures II (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 3611, + 2879 + ], + "id": 2880, + "label": "SE 151A", + "title": "" + }, + { + "dept": "HISC", + "description": "The role of technology in American history through the Civil War. Indigenous and colonial development, transportation infrastructures, and industrialization are explored to understand the connections among technology, society, and culture.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2881, + "label": "HISC 120A", + "title": "Technology in America I (4)" + }, + { + "dept": "BENG", + "description": "Introductory laboratory course in current principles and techniques of chemistry and molecular biology applicable to bioengineering. Quantitation of proteins and nucleic acids by spectrophotometric, immunological, and enzymatic methods. Separations and purification by centrifugation, chromatographic, and electrophoretic methods. Course materials fees may apply. ", + "edges_from": [ + 412, + 821, + 477 + ], + "edges_to": [ + 2883, + 3839 + ], + "id": 2882, + "label": "BENG 160", + "title": "Chemical and Molecular Bioengineering Techniques (4)" + }, + { + "dept": "BENG", + "description": "Laboratory practices and design principles for biotechnology. Culture of microorganisms and mammalian cells, recombinant DNA bioreactor design and operation. Design and implementation of biosensors. A team design-based term project and oral presentation required. Course materials fees may apply. ", + "edges_from": [ + 2882, + 821 + ], + "edges_to": [], + "id": 2883, + "label": "BENG 162", + "title": "Biotechnology Laboratory (4)" + }, + { + "dept": "PHYS", + "description": "A combined analytic and mathematically-based numerical approach to the solution of common applied mathematics problems in physics and engineering. Topics: Fourier series and integrals, special functions, initial and boundary value problems, Green\u2019s functions; heat, Laplace and wave equations. ", + "edges_from": [ + 129, + 36, + 133, + 134, + 135, + 136, + 41, + 138, + 139, + 140, + 141, + 385, + 40, + 33, + 37, + 30, + 31 + ], + "edges_to": [ + 2886 + ], + "id": 2884, + "label": "PHYS 105A", + "title": "Mathematical and Computational Physics I (4)" + }, + { + "dept": "BENG", + "description": "Basic molecular biology and recombinant DNA technologies. Structure and function of biomolecules that decode genomes and perform energy conversion, enzymatic catalysis, and active transport. Metabolism of macromolecules. Molecular diagnostics. Design, engineering, and manufacture of proteins, genomes, cells, and biomolecular therapies. ", + "edges_from": [ + 954, + 477 + ], + "edges_to": [ + 5755 + ], + "id": 2885, + "label": "BENG 168", + "title": "Biomolecular Engineering (4)" + }, + { + "dept": "PHYS", + "description": "A continuation of Physics 105A covering selected advanced topics in applied mathematical and numerical methods. Topics include statistics, diffusion and Monte-Carlo simulations; Laplace equation and numerical methods for nonseparable geometries; waves in inhomogeneous media, WKB analysis; nonlinear systems and chaos. ", + "edges_from": [ + 385, + 139, + 2884, + 133, + 134, + 129, + 136, + 138, + 135, + 140, + 141 + ], + "edges_to": [], + "id": 2886, + "label": "PHYS 105B", + "title": "Mathematical and Computational Physics II (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical issues involved in the development of modern science, the growth of technology, and control of the natural environment. The interaction of science and technology with human nature and political and moral ideals. ", + "edges_from": [], + "edges_to": [], + "id": 2887, + "label": "PHIL 164", + "title": "Technology and Human Values (4)" + }, + { + "dept": "PHIL", + "description": "Examination of freedom and equality under the US Constitution, focusing on Supreme Court cases concerning discrimination on grounds of race, ethnic background, gender, undocumented status, wealth, and sexual orientation, and cases regarding contraceptives, abortion, interracial marriage, polygamy, and same-sex marriage. ", + "edges_from": [], + "edges_to": [], + "id": 2888, + "label": "PHIL 165", + "title": "Freedom, Equality, and the Law (4)" + }, + { + "dept": "VIS", + "description": "This seminar will examine key moments in the interaction between the world of art and the world of ideas; the goal is to start students thinking about the entire theory-practice relation as it connects with their own projects and research. ", + "edges_from": [], + "edges_to": [], + "id": 2889, + "label": "VIS 117G", + "title": "Critical Theory and Visual Practice (4)" + }, + { + "dept": "VIS", + "description": "Examines the philosophical debates that locate the Americas in relation to the modern world. ", + "edges_from": [], + "edges_to": [], + "id": 2890, + "label": "VIS 117F", + "title": "Theorizing the Americas (4)" + }, + { + "dept": "PHIL", + "description": "Systematic and/or historical perspectives on central issues in ethical theory such as deontic, contractualist, and consequentialist conceptions of morality; rights and special obligations; the role of happiness and virtue in morality; moral conflict; ethical objectivity and relativism; and the rational authority of morality. ", + "edges_from": [], + "edges_to": [], + "id": 2891, + "label": "PHIL 160", + "title": "Ethical Theory (4)" + }, + { + "dept": "PHIL", + "description": "Central issues and texts in the history of ethics. Subject matter can vary, ranging from one philosopher (e.g., Aristotle, Hobbes, Kant, or Mill) to a historical tradition (e.g., Greek ethics or the British moralists). May be repeated for credit with change in content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 2892, + "label": "PHIL 161", + "title": "Topics in the History of Ethics (4)" + }, + { + "dept": "PHIL", + "description": "An examination of contemporary moral issues, such as abortion, euthanasia, war, affirmative action, and freedom of speech. ", + "edges_from": [], + "edges_to": [], + "id": 2893, + "label": "PHIL 162", + "title": "Contemporary Moral Issues (4)" + }, + { + "dept": "PHIL", + "description": "Moral issues in medicine and the biological sciences, such as patient\u2019s rights and physician\u2019s responsibilities, abortion and euthanasia, the distribution of health care, experimentation, and genetic intervention. ", + "edges_from": [], + "edges_to": [], + "id": 2894, + "label": "PHIL 163", + "title": "Biomedical Ethics (4)" + }, + { + "dept": "VIS", + "description": "and Non-Western Rituals and Ceremonies (4)", + "edges_from": [], + "edges_to": [], + "id": 2895, + "label": "VIS 117I", + "title": "Western" + }, + { + "dept": "PHIL", + "description": "Philosophical examination of core concepts and theses in feminism, feminist philosophy, and critiques of traditional philosophical approaches to morality, politics, and science, from a feminist perspective. May also treat the historical development of feminist philosophy and its critiques. May be taken for credit two times with permission of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 2896, + "label": "PHIL 169", + "title": "Feminism and Philosophy (4)" + }, + { + "dept": "ANAR", + "description": "Introduction to archaeology of Mesoamerica, taught through visits to important ancient cities and museums of Mexico and Central America. Complementary to ANAR 154. Itinerary and subject will vary, so course may be taken more than once. Course/program fees may apply. ", + "edges_from": [ + 2897, + 2898 + ], + "edges_to": [ + 2897 + ], + "id": 2897, + "label": "ANAR 155S", + "title": "Study Abroad: Ancient Mesoamerica (4)" + }, + { + "dept": "ANRG", + "description": "", + "edges_from": [], + "edges_to": [ + 2897 + ], + "id": 2898, + "label": "ANRG 106", + "title": "" + }, + { + "dept": "SIOC", + "description": "Fluid dynamics of the atmosphere; derivation of governing equations from the laws of physics, scale analysis, conservation principles, theoretical and observed structure of midlatitude synoptic systems; gradient wind and thermal wind approximations, geostrophic and quasigeostrophic approximations; potential vorticity, Rossby waves, climate and weather phenomena such as jet streams and cyclones. Graduate students who have not completed SIO 217A but have an equivalent background may enroll with consent of instructor. Renumbered from SIO 217B. ", + "edges_from": [ + 2900, + 2901 + ], + "edges_to": [ + 5459, + 5462 + ], + "id": 2899, + "label": "SIOC 217B", + "title": "Atmospheric and Climate Sciences II (4)" + }, + { + "dept": "SIOC", + "description": "", + "edges_from": [], + "edges_to": [ + 5459, + 2899, + 5462 + ], + "id": 2900, + "label": "SIOC 217A", + "title": "" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 5459, + 2899, + 5462 + ], + "id": 2901, + "label": "SIO 217A", + "title": "" + }, + { + "dept": "GLBH", + "description": "Selected topics in global health. Content will vary from quarter to quarter. May be taken for credit up to four times.", + "edges_from": [], + "edges_to": [], + "id": 2902, + "label": "GLBH 100", + "title": "Special Topics in Global Health (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 101.) Examines aging as a process of human development from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. Students may not receive credit for GLBH 101 and ANSC 101.", + "edges_from": [], + "edges_to": [], + "id": 2903, + "label": "GLBH 101", + "title": "Aging: Culture and Health in Late Life Human Development (4)" + }, + { + "dept": "EDS", + "description": "Individual guided study and/or independent research in an area not covered by present course offerings. Offered for repeated registration. ", + "edges_from": [], + "edges_to": [], + "id": 2904, + "label": "EDS 298", + "title": "Independent Study (1\u20136)" + }, + { + "dept": "ECE", + "description": "This course covers the mathematical fundamentals of Bayesian filtering and their application to sensing and estimation in mobile robotics. Topics include maximum likelihood estimation (MLE), expectation maximization (EM), Gaussian and particle filters, simultaneous localization and mapping (SLAM), visual features and optical flow, and hidden Markov models (HMM). ", + "edges_from": [], + "edges_to": [ + 2906, + 3370 + ], + "id": 2905, + "label": "ECE 276A", + "title": "Sensing and Estimation in Robotics (4)" + }, + { + "dept": "ECE", + "description": "This course covers optimal control and reinforcement learning fundamentals and their application to planning and decision-making in mobile robotics. Topics include Markov decision processes (MDP), Pontryagin\u2019s maximum principle, linear quadratic regulation (LQR), deterministic planning, value and policy iteration, and policy gradient methods. ", + "edges_from": [ + 2905 + ], + "edges_to": [], + "id": 2906, + "label": "ECE 276B", + "title": "Planning and Learning in Robotics (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 105.) Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health care systems in developed, underdeveloped, and developing countries. In addition, we'll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems\u2014multi-drug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: GLBH 105, ANSC 105, ANSC 105S, or ANSC 105GS.", + "edges_from": [], + "edges_to": [], + "id": 2907, + "label": "GLBH 105", + "title": "Global Health and Inequality (4)" + }, + { + "dept": "EDS", + "description": "Research for the master\u2019s thesis (Educational Research) or curriculum design portfolio thesis (Curriculum Design). Open for repeated registration up to eight units (S/U grade only). ", + "edges_from": [], + "edges_to": [], + "id": 2908, + "label": "EDS 295", + "title": "MA Thesis (1\u20138)" + }, + { + "dept": "EDS", + "description": "The RAC will introduce students to transformational research and practice in education through involvement in faculty-led research teams. The RAC will provide a structured environment for mentoring through engagement in collaborative research activities. Each RAC will conceptualize and conduct research that is likely to result in student presentations at educational conferences and in student publications. The RAC also provides support for the analysis and write-up of dissertation research. S/U grades only. May be repeated for credit for a maximum of thirty-eight units. ", + "edges_from": [], + "edges_to": [], + "id": 2909, + "label": "EDS 296", + "title": "Research Apprenticeship Course (2\u20134)" + }, + { + "dept": "EDS", + "description": "Study and analysis of specific topics under the guidance of a faculty member. Offered for repeated registration. ", + "edges_from": [], + "edges_to": [], + "id": 2910, + "label": "EDS 297", + "title": "Directed Group Study (1\u20136)" + }, + { + "dept": "EDS", + "description": "Supervised research studies with individual topics selected according to students\u2019 special interests. Students will develop a research proposal appropriate for MA thesis, begin to gather and analyze data. ", + "edges_from": [], + "edges_to": [], + "id": 2911, + "label": "EDS 290", + "title": "Research Practicum (1\u201312)" + }, + { + "dept": "EDS", + "description": "This course will provide students with time, resources, and guidance for the purpose of developing a review of literature on a student-related topic, which typically becomes the focus of the dissertation research project. Students will be expected to use a variety of research tools in order to discover and identify relevant information. ", + "edges_from": [], + "edges_to": [], + "id": 2912, + "label": "EDS 292", + "title": "Qualifying Paper Preparation (2)" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Foundations\u2014China", + "edges_from": [], + "edges_to": [], + "id": 2913, + "label": "HIGR 217A", + "title": "" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Late Imperial Chinese", + "edges_from": [], + "edges_to": [], + "id": 2914, + "label": "HIGR 217C", + "title": "" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Han Dynasty", + "edges_from": [], + "edges_to": [], + "id": 2915, + "label": "HIGR 217B", + "title": "" + }, + { + "dept": "BGGN", + "description": "Students read classic and modern papers that form the basis of the undergraduate lectures (BIPN 146), which they are encouraged to attend. Students present these papers at weekly discussion sessions. The focus of 246A is cellular neuronal properties. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2916, + "label": "BGGN 246A", + "title": "Computational Neurobiology (2)" + }, + { + "dept": "HILA", + "description": "162/262. Special Topics in Latin American History (4)", + "edges_from": [], + "edges_to": [], + "id": 2917, + "label": "HILA", + "title": "" + }, + { + "dept": "ECE", + "description": "in Photonics/Applied Optics (2)", + "edges_from": [], + "edges_to": [], + "id": 2918, + "label": "ECE 296", + "title": "Graduate Seminar" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SE 255.) Practical application of the finite element method to problems in solid mechanics. Elements of theory are presented as needed. Covered are static and dynamic heat transfer and stress analysis. Basic processing, solution methods, and postprocessing are practiced with commercial finite element software. Students may not receive credit for SE 233 and MAE 235. ", + "edges_from": [], + "edges_to": [], + "id": 2919, + "label": "MAE 235", + "title": "Computational Techniques in Finite Elements (4)" + }, + { + "dept": "GPIM", + "description": "This course examines how high-tech companies develop successful products. Emphasizes interplay between business and technology issues, including marketing, finance, manufacturing, prototyping, testing, and design. Student teams develop novel products, from concept to working prototype, including a business plan for launching the product. Discussion of concurrent engineering, rapid prototyping, industrial design, and other design methodologies. Renumbered from IRGN 444. Students may not receive credit for GPIM 444 and IRGN 444.", + "edges_from": [], + "edges_to": [], + "id": 2920, + "label": "GPIM 444", + "title": "Product Development (4)" + }, + { + "dept": "TDGR", + "description": "Taken each term by all graduate contemporary dance making and performance students. The class supports candidates in their ongoing research in the development of performance work for all three years from in-studio showings through thesis presentation. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 2921, + "label": "TDGR 227A", + "title": "Production Practicum (4)" + }, + { + "dept": "SE", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 2922, + "label": "SE 168", + "title": "Structural System Testing and Model Correlation" + }, + { + "dept": "EDS", + "description": "This course introduces principles and practices of reflective teaching. Student teachers and interns will systematically document their practice teaching and analyze observation data to improve performance. Students will collaborate with supervisors and expert teachers throughout the yearlong preservice teaching experience. ", + "edges_from": [ + 2924 + ], + "edges_to": [], + "id": 2923, + "label": "EDS 205B", + "title": "Reflective Teaching Practice (2)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2923 + ], + "id": 2924, + "label": "EDS 205A", + "title": "" + }, + { + "dept": "MUS", + "description": "Fundamentals of programming music software in C and C++. DSP implementation of oscillators, filters, delay, reverb and spectral processing; programming techniques specific to audio and MIDI and simple GUI design for parameter control and signal display. Implementation using a plug-in or external programming interface such as for VST, Audio Unit, PD, or Max/MSP. May be taken for credit two times. ", + "edges_from": [ + 1912, + 2926 + ], + "edges_to": [], + "id": 2925, + "label": "MUS 177", + "title": "Music Programming (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2925 + ], + "id": 2926, + "label": "MUS 161", + "title": "" + }, + { + "dept": "BIOM", + "description": "A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ", + "edges_from": [], + "edges_to": [], + "id": 2927, + "label": "BIOM 283", + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + { + "dept": "ECE", + "description": "Weekly discussion of research topics in signal and image processing of robotics and control systems. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2928, + "label": "ECE 295", + "title": "Graduate Seminar in Signal and Image Processing/Robotics and Control Systems (2)" + }, + { + "dept": "BGGN", + "description": "(4\u201312)", + "edges_from": [], + "edges_to": [], + "id": 2929, + "label": "BGGN 271", + "title": "Advanced Experimental Methods in Biology" + }, + { + "dept": "BIOM", + "description": "Students will learn to conduct tissue engineering and developmental biology experiments, microfabricate cell culture systems, engineer biopolymer materials, and develop and analyze quantitative models of transport, cell fate, and growth mechanics. The understanding and manipulation of multicellular processes that comprise development and growth involves specialized areas of biomechanics, developmental biology, biomaterials, and the tools of molecular biology, as well as the integration of theory and experiment. To fabricate functional tissues, it is important to establish underlying molecular and physical mechanisms, and then control and integrate these. ", + "edges_from": [], + "edges_to": [], + "id": 2930, + "label": "BIOM 287", + "title": "Tissue Engineering Laboratory (4)" + }, + { + "dept": "SE", + "description": "of Laminated Composite Structures II (4)", + "edges_from": [], + "edges_to": [], + "id": 2931, + "label": "SE 253B", + "title": "Mechanics" + }, + { + "dept": "BIOM", + "description": "An overview of the current state of research into human origins with illustration of the spatial and temporal scales: from million-year-old phylogenies to millisecond physiological processes, and from human societies dispersed across continents to cells and molecules. ", + "edges_from": [], + "edges_to": [], + "id": 2932, + "label": "BIOM 225", + "title": "Introduction to Anthropogeny (2)" + }, + { + "dept": "DSGN", + "description": "New societal challenges, cultural values, and technological opportunities are changing design, and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2933, + "label": "DSGN 119", + "title": "Design at Large (2)" + }, + { + "dept": "FMPH", + "description": "This graduate course covers concepts, methods, and applications of multivariate data analysis, including multivariate regression, principal components, clustering and functional analysis. Data analysis will be emphasized. ", + "edges_from": [ + 2533, + 2534 + ], + "edges_to": [], + "id": 2934, + "label": "FMPH 227", + "title": "Applied Multivariate Statistical Analysis (4)" + }, + { + "dept": "FMPH", + "description": "An introduction to inference and causal modeling for observational data, including propensity score adjustment, inverse probability weighting, instrumental variables, and sensitivity analysis. Data analysis and computation will be required. ", + "edges_from": [ + 2936, + 2533, + 2534 + ], + "edges_to": [], + "id": 2935, + "label": "FMPH 226", + "title": "Statistical Methods for Observational Studies (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 482, + 2939, + 2940, + 2533, + 2941 + ], + "edges_to": [ + 2937, + 2935 + ], + "id": 2936, + "label": "FMPH 223", + "title": "" + }, + { + "dept": "FMPH", + "description": "The graduate class will cover modern statistical inference including non-parametric statistics, estimating equations, resampling methods, and statistical learning. Data analysis and computation will be emphasized. ", + "edges_from": [ + 2936, + 2533, + 2534 + ], + "edges_to": [], + "id": 2937, + "label": "FMPH 225", + "title": "Advanced Topics in Biostatistical Inference (4)" + }, + { + "dept": "FMPH", + "description": "The graduate class will cover statistical aspects of clinical trial design, monitoring, analysis, and ethics of human subjects research. Data analysis and computation will be emphasized. ", + "edges_from": [ + 2533, + 2534 + ], + "edges_to": [], + "id": 2938, + "label": "FMPH 224", + "title": "Clinical Trials (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2936 + ], + "id": 2939, + "label": "MATH 281B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2936, + 2533 + ], + "id": 2940, + "label": "MATH 281A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 482 + ], + "edges_to": [ + 2936 + ], + "id": 2941, + "label": "MATH 282B", + "title": "" + }, + { + "dept": "ECON", + "description": "Independent reading or research under the direction of and by special arrangement with a Department of Economics faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2942, + "label": "ECON 199", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "ECON", + "description": "Directed study on a topic or in a group field not included in regular department curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 2943, + "label": "ECON 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "MGT", + "description": "Preparation and interpretation", + "edges_from": [], + "edges_to": [], + "id": 2944, + "label": "MGT 131A", + "title": "Intermediate Accounting A (4)" + }, + { + "dept": "NANO", + "description": "Introduction to nanomedicine; diffusion and drug dispersion; diffusion in biological systems; drug permeation through biological barriers; drug transport by fluid motion; pharmacokinetics of drug distribution; drug delivery systems; nanomedicine in practice: cancers, cardiovascular diseases, immune diseases, and skin diseases. Cross-listed with CENG 207. Students may not receive credit for both NANO 243 and CENG 207. ", + "edges_from": [], + "edges_to": [], + "id": 2945, + "label": "NANO 243", + "title": "Nanomedicine (4)" + }, + { + "dept": "ECON", + "description": "Introduction to teaching economics. Each student will be responsible for a class section in one of the lower-division economics courses. Limited to advanced economics majors with at least a 3.5 GPA in upper-division economics work. (P/NP grades only.) Students may not earn more than eight units credit in 195 courses. ", + "edges_from": [], + "edges_to": [], + "id": 2946, + "label": "ECON 195", + "title": "Introduction to Teaching Economics (4)" + }, + { + "dept": "ETHN", + "description": "A Genealogy of Critical Racial and Ethnic Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 2947, + "label": "ETHN 200A", + "title": "Departures:" + }, + { + "dept": "ETHN", + "description": "This course uses model studies to explore how comparative and relational problems are posed as research projects, how research questions are constructed, and how they employ theory to frame the project and establish what is at stake in the research. ", + "edges_from": [], + "edges_to": [], + "id": 2948, + "label": "ETHN 200B", + "title": "Formulations: Interdisciplinarity and Knowledge Production in Ethnic Studies (4)" + }, + { + "dept": "ETHN", + "description": "(Proseminar): Research in Ethnic Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 2949, + "label": "ETHN 200C", + "title": "Projects" + }, + { + "dept": "COMM", + "description": "(Same as PS 194, USP 194, Hist 193, SocE 194, Erth 194.) Course attached to six-unit internship taken by students participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistants and a substantial research paper. ", + "edges_from": [], + "edges_to": [], + "id": 2950, + "label": "COMM 194", + "title": "Research Seminar in Washington, D.C. (4)" + }, + { + "dept": "COMM", + "description": "Specialized study in general communication with topics to be determined by the instructor for any given quarter. May be repeated for credit. ", + "edges_from": [ + 2952 + ], + "edges_to": [], + "id": 2951, + "label": "COMM 193", + "title": "Advanced Topics in Communication: General (2)" + }, + { + "dept": "AIP", + "description": "", + "edges_from": [], + "edges_to": [ + 2951 + ], + "id": 2952, + "label": "AIP 197", + "title": "" + }, + { + "dept": "COMM", + "description": "The junior seminar entails a detailed examination of a specific topic from the field of communication, exploring in greater depth theories and methods introduced in the core communication curriculum. Seminars are limited to thirty students, with a heavy focus on class participation. Students complete a research project with a significant final product (typically a research paper). Students will not receive credit for both COGN 150 and COMM 190. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 2953, + "label": "COMM 190", + "title": "Junior Seminar in Communication (4)" + }, + { + "dept": "COMM", + "description": "Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2954, + "label": "COMM 198", + "title": "Directed Group Study in Communication (4)" + }, + { + "dept": "COMM", + "description": "Independent study and research under the direction of a member of the faculty. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2955, + "label": "COMM 199", + "title": "Independent Study in Communication (4)" + }, + { + "dept": "VIS", + "description": "(Cross-listed with HIEU 124GS.) Language and culture study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fees may be required. Students may not receive credit for both VIS 122E and VIS 122GS or both HIEU 124 and HIEU 124GS.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2956, + "label": "VIS 122GS", + "title": "The City in Italy (4)" + }, + { + "dept": "CSE", + "description": "Design for test, testing economics, defects, failures and faults, fault models, fault simulation, automatic test pattern generation, functional testing, memory, PLA, FPGA, microprocessor test, and fault diagnosis. ", + "edges_from": [], + "edges_to": [], + "id": 2957, + "label": "CSE 244A", + "title": "VLSI Test (4)" + }, + { + "dept": "ANAR", + "description": "An introductory survey of the archaeology, history, art, and architecture of ancient Egypt that focuses on the men and women who shaped Western civilization. ", + "edges_from": [], + "edges_to": [], + "id": 2958, + "label": "ANAR 144", + "title": "Pharaohs, Mummies, and Pyramids: Introduction to Egyptology (4)" + }, + { + "dept": "ANAR", + "description": "What should we eat and how should we farm to guide a sustainable future? This course will examine what humans evolved to eat and how we began to first cultivate the foods we rely on today. After a survey of traditional farming methods around the world, we will examine how farming systems have changed since the Green Revolution and its successes and failures. The final part of class will focus on the last twenty years, when humans began to modify plant life at the genetic level. Students may not receive credit for ANAR 146 and SIO 146. ", + "edges_from": [], + "edges_to": [], + "id": 2959, + "label": "ANAR 146", + "title": "Feeding the World (4)" + }, + { + "dept": "ANAR", + "description": "Israel is a land-bridge between Africa and Asia. Course highlights the prehistory of the Levant and its interconnections from the Paleolithic to the rise of the earliest cities in anthropological perspective. ", + "edges_from": [], + "edges_to": [], + "id": 2960, + "label": "ANAR 141", + "title": "Prehistory of the Holy Land (4)" + }, + { + "dept": "ANAR", + "description": "The relationship between archaeological data, historical research, the Hebrew Bible, and anthropological theory are explored along with new methods and current debates in Levantine archaeology. ", + "edges_from": [], + "edges_to": [], + "id": 2961, + "label": "ANAR 143", + "title": "Biblical Archaeology\u2014Fact or Fiction (4)" + }, + { + "dept": "ANAR", + "description": "The emergence and consolidation of the state in ancient Israel is explored by using archaeological data, biblical texts, and anthropological theories. The social and economic processes responsible for the rise and collapse of ancient Israel are investigated. Recommended preparation: ANTH 3. ", + "edges_from": [], + "edges_to": [], + "id": 2962, + "label": "ANAR 142", + "title": "The Rise and Fall of Ancient Israel (4)" + }, + { + "dept": "MAE", + "description": "Students work in local industry or hospitals under faculty supervision. Units may not be applied toward graduation requirements. Salaried or unsalaried. Number of units determined by enrollment frequency. First quarter up to four units. Subsequent quarters cannot exceed one unit. ", + "edges_from": [], + "edges_to": [], + "id": 2963, + "label": "MAE 197", + "title": "Engineering Internship (1\u20134)" + }, + { + "dept": "MAE", + "description": "Principles of Mechanical Design I (4)", + "edges_from": [], + "edges_to": [], + "id": 2964, + "label": "MAE 156A", + "title": "Fundamental" + }, + { + "dept": "ECE", + "description": "This course covers the growth, characterization, and heterojunction properties of III-V compound semiconductors and group-IV heterostructures for the subsequent courses on electronic and photonic device applications. Topics include epitaxial growth techniques, electrical properties of heterojunctions, transport and optical properties of quantum wells and superlattices. ", + "edges_from": [ + 2966 + ], + "edges_to": [ + 2967 + ], + "id": 2965, + "label": "ECE 236A", + "title": "III-V Compound Semiconductor Materials (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2965, + 4101 + ], + "id": 2966, + "label": "ECE 230A", + "title": "" + }, + { + "dept": "ECE", + "description": "Absorption and emission of radiation in semiconductors. Radiative transition and nonradiative recombination. Laser, modulators, and photodetector devices will be discussed. (Recommended prerequisites: ECE 230A and ECE 230C or equivalent.) ", + "edges_from": [ + 2965 + ], + "edges_to": [ + 2968 + ], + "id": 2967, + "label": "ECE 236B", + "title": "Optical Processes in Semiconductors (4)" + }, + { + "dept": "ECE", + "description": "The physics and circuit applications of heterojunction field effect transistors (HFETs) and heterojunction bipolar transistors (HBTs). Operating principles of FETs and BJTs are reviewed, and opportunities for improving their performance with suitable material choices and bandgap engineering are highlighted. SiGe and III-V HBTs, III-V FETs, and current research areas are covered. Microwave characteristics, models and representative circuit applications. Students who have already completed ECE 236C and/or D should not enroll in this course. Recommended preparation: ECE 230B or equivalent course with emphasis on physics of solid-state electronic devices. ", + "edges_from": [ + 2967 + ], + "edges_to": [], + "id": 2968, + "label": "ECE 236C", + "title": "Heterojunction Field Effect Transistors (4)" + }, + { + "dept": "PHYS", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 2969, + "label": "PHYS 219", + "title": "Condensed Matter/Materials Science Laboratory" + }, + { + "dept": "Linguistics/French", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in French. Must be taken in conjunction with LIFR 1D. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 2544, + 2543 + ], + "edges_to": [], + "id": 2970, + "label": "Linguistics/French (LIFR) 1DX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "PHYS", + "description": "Classification of particles using symmetries and invariance principles, quarks and leptons, quantum electrodynamics, weak interactions, e+p- interactions, deep-inelastic lepton-nucleon scattering, pp collisions, introduction to QCD. ", + "edges_from": [ + 2972 + ], + "edges_to": [], + "id": 2971, + "label": "PHYS 214", + "title": "Physics of Elementary Particles (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2971, + 4228 + ], + "id": 2972, + "label": "PHYS 215A", + "title": "" + }, + { + "dept": "PHYS", + "description": "Application of field theoretic and renormalization group methods to problems in condensed matter, or particle physics. Topics will vary and may include: phase transition and critical phenomena; many body quantum systems; quantum chromodynamics and the electroweak model. ", + "edges_from": [ + 2974 + ], + "edges_to": [], + "id": 2973, + "label": "PHYS 217", + "title": "Field Theory and the Renormalization Group (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2584, + 5067, + 2973 + ], + "id": 2974, + "label": "PHYS 210A", + "title": "" + }, + { + "dept": "PHYS", + "description": "This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 116. The performance criteria for graduate students will be to complete and pass: (1) a graduate-level exam and (2) graduate-level homework problem sets. In both cases, there will be overlap with the undergraduate exam and problems, but the graduates will be expected to complete additional work at a higher level.", + "edges_from": [], + "edges_to": [], + "id": 2975, + "label": "PHYS 216", + "title": "Fluid Dynamics for Physicists (4)" + }, + { + "dept": "TMC", + "description": "These seminars are designed to expose undergraduate students, especially freshmen and sophomores, to exciting research conducted by UC San Diego faculty. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2976, + "label": "TMC 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "HINE", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 2977, + "label": "HINE 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "HINE", + "description": "Study in Near Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 2978, + "label": "HINE 199", + "title": "Independent" + }, + { + "dept": "SOCI", + "description": "This course introduces students to the fundamental principles of the design of social research. It examines the key varieties of evidence, sampling methods, logic of comparison, and causal reasoning researchers use in their study of social issues. Will not receive credit for SOCI 60 and SOCL 60.", + "edges_from": [], + "edges_to": [ + 4707, + 3878, + 5479, + 5481, + 5483, + 5486, + 5488 + ], + "id": 2979, + "label": "SOCI 60", + "title": "The Practice of Social Research (4)" + }, + { + "dept": "GPEC", + "description": "This course analyzes the roles of money and financial institutions in the economy. The first part of the course focuses on microeconomics and the financial system. The topics include money, financial markets, financial intermediaries, banking regulations, and bank runs. The second part of the course focuses on the microeconomics aspects of financial institutions. The topics include financial development, financial liberalization, and their effects on the economy, especially economic growth and development. Renumbered from IRGN 406. Students may not receive credit for GPEC 406 and IRGN 406. ", + "edges_from": [ + 2801, + 2981 + ], + "edges_to": [], + "id": 2980, + "label": "GPEC 406", + "title": "Finance and Development (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 3178, + 2980, + 3594, + 2982, + 3375 + ], + "id": 2981, + "label": "GPCO 403", + "title": "" + }, + { + "dept": "GPEC", + "description": "This course examines the economic policies implemented by Latin American countries over the last half century, focusing on their role in the process of economic development in the region, and considers the central role of politics in shaping policy. Renumbered from IRGN 409. Students may not receive credit for GPEC 409 and IRGN 409. ", + "edges_from": [ + 2981, + 2983 + ], + "edges_to": [], + "id": 2982, + "label": "GPEC 409", + "title": "Economic Policy in Latin America (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 2982, + 3178, + 3375, + 4443, + 4444, + 3594 + ], + "id": 2983, + "label": "GPCO 401", + "title": "" + }, + { + "dept": "VIS", + "description": "Roman art was the \u201cmodern art\u201d of antiquity. Out of their Italic tradition and the great inheritance of Greek classic and Hellenistic art, the Romans forged a new language of form to meet the needs of a vast empire, a complex and tumultuous society, and a sophisticated, intellectually diverse culture. An unprecedented architecture of shaped space used new materials and revolutionary engineering techniques in boldly functional ways for purposes of psychological control and symbolic assertion. Sculpture in the round and in relief was pictorialized to gain spatial effects and immediacy of presence, and an extraordinary art of portraiture investigated the psychology while asserting the status claims of the individual. Extreme shifts of style, from the classicism of the age of Augustus to the expressionism of the third century AD, are characteristic of this period. The new modes of architecture, sculpture, and painting, whether in the service of the rhetoric of state power or of the individual quest for meaning, were passed on to the medieval and ultimately to the modern West. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 2984, + "label": "VIS 120B", + "title": "Roman Art (4)" + }, + { + "dept": "VIS", + "description": "Greek classical civilization was a turning point in the history of humanity. Within a new kind of society, the idea of the individual as free and responsible was forged, and with it the invention of history, philosophy, tragedy, and science. The arts that expressed this cultural explosion were no less revolutionary. The achievements of Greek art in architecture, sculpture, and painting will be examined from their beginnings in the archaic period, to their epoch-making fulfillment in the classical decades of the fifth century BC, to their diffusion over the entire ancient world in the age of Alexander and his successors. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 2985, + "label": "VIS 120A", + "title": "Greek Art (4)" + }, + { + "dept": "CHEM", + "description": "Overview of new systems biology \u201c-omics\u201d approached to lipid metabolism and cell signaling, including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Cross-listed with BIOM 209 and PHAR 208. Recommended preparation: one quarter of undergraduate biochemistry.", + "edges_from": [], + "edges_to": [], + "id": 2986, + "label": "CHEM 210", + "title": "Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)" + }, + { + "dept": "CHEM", + "description": "A discussion of current topics in chemical biology including mechanistic aspects of enzymes and cofactors, use of modified enzymes to alter biochemical pathways, chemical intervention in cellular processes, and natural product discovery. ", + "edges_from": [], + "edges_to": [], + "id": 2987, + "label": "CHEM 216", + "title": "Chemical Biology (4)" + }, + { + "dept": "SOCI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminar topics will vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 2988, + "label": "SOCI 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "CHEM", + "description": "This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 114D. ", + "edges_from": [], + "edges_to": [], + "id": 2989, + "label": "CHEM 214", + "title": "Molecular and Cellular Biochemistry (4)" + }, + { + "dept": "GPCO", + "description": "This course introduces students to the methods of policy analysis and decision-making theory, including methods to assemble panel data to capture the impact of new policy on observable data, decision-making theory, uncertainty, decision criteria, expected utility, and risk. Renumbered from IRCO 407. Students may not receive credit for GPCO 407 and IRCO 407. ", + "edges_from": [], + "edges_to": [], + "id": 2990, + "label": "GPCO 407", + "title": "Policy Analysis and Decision Theory (4)" + }, + { + "dept": "GPCO", + "description": "This course introduces principles of taxation and expenditure analysis, public budgeting, and assessment of budget priorities. It will introduce students to concepts related to how public finance affects the private economy, how governments raise funds (and account for their expenditures to the public, foreign investors, and international organizations), and the major public policy tools for governing public finance. Renumbered from IRCO 406. Students may not receive credit for GPCO 406 and IRCO 406. ", + "edges_from": [], + "edges_to": [], + "id": 2991, + "label": "GPCO 406", + "title": "Public Finance and Taxation (4)" + }, + { + "dept": "GPCO", + "description": "This course studies the structure of American government and the political dimensions of policy problems. Emphasis will be on the study of institutions and the influences and constraints on decision-making, interaction between branches of government, government and society, and the international context in which US policy makers must work. Attention will be given to considering the United States with a comparative perspective. Renumbered from IRCO 405. Students may not receive credit for GPCO 405 and IRCO 405. ", + "edges_from": [], + "edges_to": [], + "id": 2992, + "label": "GPCO 405", + "title": "Policy and Political Decision-Making in the U.S. (4)" + }, + { + "dept": "GPCO", + "description": "Builds on GPCO 410, Microeconomics for Policy and Management. Applies economic reasoning to public issues, policies, and programs with a focus on the logic of when and how policy makers intervene in the market. It considers incentives and organizations; models of economic behavior, including markets, the absence of markets, and interventions; the price system; policy objectives and instruments. Renumbered from IRCO 404. Students may not receive credit for GPCO 404 and IRCO 404. ", + "edges_from": [], + "edges_to": [], + "id": 2993, + "label": "GPCO 404", + "title": "Market Failures and Policy Interventions (4)" + }, + { + "dept": "ENVR", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. ", + "edges_from": [], + "edges_to": [], + "id": 2994, + "label": "ENVR 500", + "title": "Apprentice Teaching in Environmental Studies (4)" + }, + { + "dept": "FMPH", + "description": "This course provides an overview of the US health policy landscape. It addresses the development of explicit health policies to promote certain health behaviors, policies aimed at public health safety, and policy issues related to emerging health and biomedical technologies. Renumbered from FPM 290. Students may not receive credit for FMPH 277 and FPM 290. ", + "edges_from": [], + "edges_to": [], + "id": 2995, + "label": "FMPH 277", + "title": "Health Policy, Technology, and Public Health (4)" + }, + { + "dept": "POLI", + "description": "In between \u201crises\u201d and \u201cdeclines,\u201d empires are political entities with highly heterogeneous populations that must be governed. The course examines the similarities and differences in imperial governance, comparing the internal and external political dynamics of traditional (Roman, Ottoman), modernizing (Habsburg), and modern (British) empires. ", + "edges_from": [], + "edges_to": [], + "id": 2996, + "label": "POLI 123", + "title": "Politics of Empire in Comparative Perspective (4)" + }, + { + "dept": "HINE", + "description": "Great Poems from the Hebrew Bible/Foreign Language (1)", + "edges_from": [], + "edges_to": [], + "id": 2997, + "label": "HINE 112BL", + "title": "" + }, + { + "dept": "LTWL", + "description": "This class investigates the link between desire and death in classical and modern Hindu thought. It considers the stories of Hindu deities, as well as the lives of contemporary South Asian men and women, in literature and film.", + "edges_from": [], + "edges_to": [], + "id": 2998, + "label": "LTWL 168", + "title": "Death and Desire in India (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1B. ", + "edges_from": [ + 309, + 310 + ], + "edges_to": [], + "id": 2999, + "label": "Linguistics/Italian (LIIT) 1BX", + "title": "Analysis of Italian (2.5)" + }, + { + "dept": "LTWL", + "description": "This course will explore the relationship between women and literature, i.e., women as producers of literature, as objects of literary discourse, and as readers. Foreign language texts will be read in translation. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3000, + "label": "LTWL 160", + "title": "Women and Literature (4)" + }, + { + "dept": "LTWL", + "description": "Yiddish literature is much more than folk songs and jokes. We will read major American and European works by Nobel laureate I. B. Singer, his brother I. J. Singer, and his sister Esther Kreytman, Sholem Aleichem, Mendele, Chava Rozenfarb, and others. (In English translation.)", + "edges_from": [], + "edges_to": [], + "id": 3001, + "label": "LTWL 166", + "title": "The Yiddish Novel (4)" + }, + { + "dept": "LTWL", + "description": "With primarily American (and a couple of English) readings, the course inquires into the relation of human and nonhuman nature. Topics include wilderness, animals, Native American thought, women in nature, description as a kind of writing, the spirituality of place.", + "edges_from": [], + "edges_to": [], + "id": 3002, + "label": "LTWL 165", + "title": "Literature and the Environment (4)" + }, + { + "dept": "CSE", + "description": "Theory of databases. Theory of query languages, dependency theory, deductive databases, incomplete information, complex objects, object-oriented databases, and more. Connections to logic and complexity theory including finite model theory and descriptive complexity. ", + "edges_from": [ + 782 + ], + "edges_to": [], + "id": 3003, + "label": "CSE 233", + "title": "Database Theory (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 264D.) Database models including relational, hierarchic, and network approaches. Implementation of databases including query languages and system architectures. ", + "edges_from": [ + 17 + ], + "edges_to": [ + 4337 + ], + "id": 3004, + "label": "CSE 232", + "title": "Principles of Database Systems (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 264C.) Advanced material in", + "edges_from": [], + "edges_to": [], + "id": 3005, + "label": "CSE 231", + "title": "Advanced Compiler Design (4)" + }, + { + "dept": "SIOC", + "description": "Physical description of the sea; physical properties of seawater, methods and measurements, boundary processes, regional oceanography. Renumbered from SIO 210. Students may not receive credit for both SIOC 210 and SIO 210. ", + "edges_from": [], + "edges_to": [], + "id": 3006, + "label": "SIOC 210", + "title": "Physical Oceanography (4)" + }, + { + "dept": "USP", + "description": "This course will explore", + "edges_from": [], + "edges_to": [], + "id": 3007, + "label": "USP 120", + "title": "Urban Planning, Infrastructure, and Real Estate (4)" + }, + { + "dept": "USP", + "description": "Examination of regulation of real estate development, as it affects landowners, developers and others private sector actors. Includes underlying public policies, establishment and enforcement of laws and regulations, application of regulations to individual projects, and political considerations in implementing regulations. ", + "edges_from": [], + "edges_to": [], + "id": 3008, + "label": "USP 121", + "title": "Real Estate Law and Regulation (4)" + }, + { + "dept": "USP", + "description": "Planning, Policymaking, and Law (4)", + "edges_from": [], + "edges_to": [], + "id": 3009, + "label": "USP 122", + "title": "Redevelopment" + }, + { + "dept": "USP", + "description": "Examination of the intersection of law and policy, in the form of processes and institutions, as they affect decision-making and program implementation in urban planning and design. Opportunities and constraints in making law and policy. Application to specific case examples. ", + "edges_from": [], + "edges_to": [], + "id": 3010, + "label": "USP 123", + "title": "Law, Planning, and Public Policy (4)" + }, + { + "dept": "USP", + "description": "Introduction to land use planning in the United States: zoning and subdivision, regulation, growth management, farmland preservation, environmental protection, and comprehensive planning. ", + "edges_from": [], + "edges_to": [], + "id": 3011, + "label": "USP 124", + "title": "Land Use Planning (4)" + }, + { + "dept": "USP", + "description": "Research methods are tools for improving knowledge. Beginning with a research question, students will learn to select appropriate methods for sampling, collecting, and analyzing data to improve their research activities and research results. ", + "edges_from": [], + "edges_to": [], + "id": 3012, + "label": "USP 125", + "title": "The Design of Social Research (4)" + }, + { + "dept": "USP", + "description": "This course evaluates alternative land use, regulatory, and land transfer approaches to the US regime. Considered are overseas reform models for comprehensive land use and resource management and their effects on environmental justice, resource sustainability, and management efficiency and innovation. ", + "edges_from": [], + "edges_to": [], + "id": 3013, + "label": "USP 126", + "title": "Comparative Land Use and Resource Management (4)" + }, + { + "dept": "LTIT", + "description": "This course constitutes the sixth and final quarter of the Italian language sequence. It offers an intensive study of Italian grammar, drills in conversation and composition, and readings in modern Italian literature. ", + "edges_from": [ + 3016, + 3015 + ], + "edges_to": [ + 4289, + 3914 + ], + "id": 3014, + "label": "LTIT 50", + "title": "Advanced Italian (4)" + }, + { + "dept": "LTIT", + "description": "", + "edges_from": [ + 3640, + 3641 + ], + "edges_to": [ + 3016, + 3014 + ], + "id": 3015, + "label": "LTIT 2A", + "title": "" + }, + { + "dept": "LTIT", + "description": "", + "edges_from": [ + 3015 + ], + "edges_to": [ + 3014 + ], + "id": 3016, + "label": "LTIT 2B", + "title": "" + }, + { + "dept": "COMM", + "description": "Emergence of dissent in different societies, and relationship of dissent to movements of protest and social change. Movements studied include media concentration, antiwar, antiglobalization, death penalty, national liberation, and labor. Survey of dissenting voices seeking to explain the relationship of ideas to collective action and outcomes. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 3017, + "label": "COMM 131", + "title": "Communication, Dissent, and the Formation of Social Movements (4)" + }, + { + "dept": "GPIM", + "description": "This course introduces basic concepts of international business decision making. It covers entry modes, headquarter tasks and organization charts, strategic planning for foreign subsidiaries, international HR management and payroll, international taxation, and an introduction to transfer pricing. Renumbered from IRGN 470. Students may not receive credit for GPIM 470 and IRGN 470.", + "edges_from": [], + "edges_to": [], + "id": 3018, + "label": "GPIM 470", + "title": "International Business (4)" + }, + { + "dept": "HIUS", + "description": "Directed group study on United States history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 3019, + "label": "HIUS 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MATH", + "description": "Third course in algebra from a computational perspective. Groups, rings, linear algebra, rational and Jordan forms, unitary and Hermitian matrices, matrix decompositions, perturbation of eigenvalues, group representations, symmetric functions, fast Fourier transform, commutative algebra, Grobner basis, finite fields. ", + "edges_from": [ + 3021 + ], + "edges_to": [], + "id": 3020, + "label": "MATH 202C", + "title": "Applied Algebra III (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 3022 + ], + "edges_to": [ + 3020 + ], + "id": 3021, + "label": "MATH 202B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3021 + ], + "id": 3022, + "label": "MATH 202A", + "title": "" + }, + { + "dept": "PSYC", + "description": "Independent research and thesis research. S/U grades only. May be taken for credit fifteen times.", + "edges_from": [], + "edges_to": [], + "id": 3023, + "label": "PSYC 299", + "title": "Research Practicum (1\u201312)" + }, + { + "dept": "PSYC", + "description": "Research in psychology under supervision of individual faculty members. S/U grades only. May be taken for credit fifteen times.", + "edges_from": [], + "edges_to": [], + "id": 3024, + "label": "PSYC 296", + "title": "Research Practicum (1\u201312)" + }, + { + "dept": "PHYS", + "description": "Physics I: Probabilistic Models and Simulations (4)", + "edges_from": [], + "edges_to": [], + "id": 3025, + "label": "PHYS 141", + "title": "Computational" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 274.) Floating point", + "edges_from": [], + "edges_to": [ + 4042 + ], + "id": 3026, + "label": "MATH 174", + "title": "Numerical Methods for Physical Modeling (4)" + }, + { + "dept": "COMM", + "description": "This advanced course examines, analyzes, and discusses media works by contemporary Asian American, Native American, African American, and Latina/o American filmmakers. The course does not offer a historical survey of films by minority makers but rather will operate on themes such as cultural identity, urbanization, personal relationships, gender relations, cultural retentions, and music. The course will require students to attend some off-campus screenings, especially those at area film festivals. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 3027, + "label": "COMM 135", + "title": "Contemporary Minority Media Makers and the Festival Experience (4)" + }, + { + "dept": "TDGR", + "description": "An investigation of contemporary theories of theatre with an emphasis on structural and poststructural perspectives on text and textuality. The seminar will focus on adapting contemporary techniques of close reading to the interpretive and creative process in the theatre. ", + "edges_from": [ + 3029 + ], + "edges_to": [ + 3030 + ], + "id": 3028, + "label": "TDGR 204B", + "title": "Contemporary Theories of Theatre (4)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3028 + ], + "id": 3029, + "label": "TDGR 204A", + "title": "" + }, + { + "dept": "TDGR", + "description": "The culmination of the TDGR 204 sequence, in which students in all disciplines create and perform publicly presented original theatre pieces. ", + "edges_from": [ + 3028 + ], + "edges_to": [], + "id": 3030, + "label": "TDGR 204C", + "title": "Collective Creation (4)" + }, + { + "dept": "COMM", + "description": "Transmedia is a mode of production in which a text or story unfolds across multiple media platforms. Exploring all the facets of this widespread phenomenon\u2014historical, aesthetic, industrial, theoretical, and practical. This course explores and critically analyzes the art and economics of contemporary transmedia. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 3031, + "label": "COMM 136", + "title": "Transmedia (4)" + }, + { + "dept": "Soc/G", + "description": "Will examine the controversies surrounding the construction of the modern citizen and the good society of the liberal outlook, and their alternatives in the communitarian, social-democratic, nationalist, feminist, and multiculturalist perspectives. ", + "edges_from": [], + "edges_to": [], + "id": 3032, + "label": "Soc/G 269", + "title": "The Citizenship Debates (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 109) This survey course explores six topics: 1) the state\u2019s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California\u2019s role in national politics.", + "edges_from": [], + "edges_to": [], + "id": 3033, + "label": "POLI 103A", + "title": "California Government and Politics (4)" + }, + { + "dept": "Soc/G", + "description": "Course examines social construction of gender focusing on recent contributions to the field, including micro- and macro-level topics, i.e., social psychological issues in the development of gender, gender stratification in the labor force, gender and social protest, feminist methodologies. ", + "edges_from": [], + "edges_to": [], + "id": 3034, + "label": "Soc/G 267", + "title": "Sociology of Gender (4)" + }, + { + "dept": "Soc/G", + "description": "This course provides an overview of the classical and current debates in the economic sociology literature. It presents theories of the rise of industrial economics and addresses how economic activities are constituted and influenced by institutions, culture, and social structure. ", + "edges_from": [], + "edges_to": [], + "id": 3035, + "label": "Soc/G 264", + "title": "Economic Sociology (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 113) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ", + "edges_from": [], + "edges_to": [], + "id": 3036, + "label": "POLI 103B", + "title": "Politics and Policymaking in Los Angeles (4)" + }, + { + "dept": "Soc/G", + "description": "Seminar in the Sociology of Art (4)", + "edges_from": [], + "edges_to": [], + "id": 3037, + "label": "Soc/G 263", + "title": "Graduate" + }, + { + "dept": "COGR", + "description": "Approaches to Culture/Mind (4)", + "edges_from": [], + "edges_to": [], + "id": 3038, + "label": "COGR 261", + "title": "Mediational" + }, + { + "dept": "CAT", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 3039, + "label": "CAT 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "COMM", + "description": "Hands-on course introduces design as political activity. How will differently designed objects, environments perpetuate, interrupt status quo. Examine design, architecture, media activism, workday life. Examine ambiguous problems, take and give feedback, create prototypes to engage communities, broader publics. Students see design as part of longer-term social transformations. ", + "edges_from": [ + 3041, + 1986, + 3043, + 3042, + 238, + 540 + ], + "edges_to": [ + 3044 + ], + "id": 3040, + "label": "COMM 124A", + "title": "Critical Design Practice/Advanced Studio (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 3040, + 4271 + ], + "id": 3041, + "label": "POLI 10", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 3040 + ], + "id": 3042, + "label": "POLI 10D", + "title": "" + }, + { + "dept": "ESYS", + "description": "", + "edges_from": [], + "edges_to": [ + 3040 + ], + "id": 3043, + "label": "ESYS 10", + "title": "" + }, + { + "dept": "COMM", + "description": "Course builds on understanding design as political activity. Group work to design quarter-long projects that explore political role of design, include design in built environments, organizations, media technologies. Deepened capacities to design in public, for publics, with publics. May be taken for credit three times. ", + "edges_from": [ + 3040 + ], + "edges_to": [], + "id": 3044, + "label": "COMM 124B", + "title": "Critical Design Practice/Topic Studio (4)" + }, + { + "dept": "COMM", + "description": "A study of the social organization of the film industry throughout its history. Who makes films, by what criteria, and for what audience. The changing relationships between studios, producers, directors, writers, actors, editors, censors, distributors, audience, and subject matter of the films will be explored. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3045, + "label": "COMM 106F", + "title": "CI: Film Industry (4)" + }, + { + "dept": "COMM", + "description": "The largest industry in the world has far-reaching cultural ramifications. We will explore tourism\u2019s history and its contemporary cultural effects, taking the perspective of the \u201ctoured\u201d as well as that of the tourist. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3046, + "label": "COMM 106G", + "title": "CI: Tourism: Global Industry and Cultural Form (4)" + }, + { + "dept": "COMM", + "description": "Course examines the organization of some of the many industries (e.g., film, music, gaming, and publishing) that make up the cultural landscape with an eye toward discerning the conditions that shape the production of cultural goods and services: how is production organized within cultural industries; how are products distributed; and what is the impact of both the organization and distribution of goods on the conditions of work and labor? ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3047, + "label": "COMM 106A", + "title": "CI: Introduction (4)" + }, + { + "dept": "COMM", + "description": "Pasts have been conveyed through various media for millennia. This course will use comics to explore how this medium impacts how we might learn and understand Japanese history. Topics discussed include memory, storytelling, perspective, and visuality. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3048, + "label": "COMM 106C", + "title": "CI: History Through Comics\u2014Japan (4)" + }, + { + "dept": "COMM", + "description": "The political economy of the emergent Internet industry, charted through analysis of its hardware, software, and services components. The course specifies leading trends and changing institutional outcomes by relating the Internet industry to the adjoining media, telecommunications, and computer industries. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3049, + "label": "COMM 106I", + "title": "CI: Internet Industry (4)" + }, + { + "dept": "COMM", + "description": "How and what does television communicate? Emphasis will be on contemporary US television programming, placed in comparative and historical context. Special topics may include: TV genres, TV and politics, TV and other media. Frequent in-class screenings. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3050, + "label": "COMM 106T", + "title": "CI: Television Culture and the Public (4)" + }, + { + "dept": "COMM", + "description": "Course examines political economy of television throughout its history. How TV is made, who is involved, how is industry organized, how does it get regulated, distributed? Consider how these answers changed over time and look at recent influences of digital technologies. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3051, + "label": "COMM 106V", + "title": "CI: TV Industry (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit three times when topics vary. Recommended preparation: may require shop skills. ", + "edges_from": [], + "edges_to": [], + "id": 3052, + "label": "DSGN 161", + "title": "Design Project (4)" + }, + { + "dept": "POLI", + "description": "A popular new idea in environmental protection is to include local communities in conservation efforts. But what are these communities? What challenges do they face in governing their own resources? This course uses both theory and case studies to explore the political economy of community-based conservations.", + "edges_from": [], + "edges_to": [], + "id": 3053, + "label": "POLI 125A", + "title": "Communities and the Environment (4)" + }, + { + "dept": "MATH", + "description": "Introduction to algebraic geometry. Topics chosen from: varieties and their properties, sheaves and schemes and their properties. May be taken for credit up to three times. ", + "edges_from": [ + 2872 + ], + "edges_to": [ + 5410 + ], + "id": 3054, + "label": "MATH 203A", + "title": "Algebraic Geometry I (4)" + }, + { + "dept": "PHYS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 3055, + "label": "PHYS 87", + "title": "Freshman Seminar in Physics and Astrophysics (1)" + }, + { + "dept": "ANAR", + "description": "The course uses a comparative perspective to examine changes in how human societies organized themselves after the end of the last Ice Age across the world and the impact that those changes had on the planet\u2019s natural environment. ", + "edges_from": [], + "edges_to": [], + "id": 3056, + "label": "ANAR 186", + "title": "The Human Era: The Archaeology of the Anthropocene (4)" + }, + { + "dept": "HLAW", + "description": "Students will be involved in a high-level applied research project. The project will cover an area of health law related to topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty and may include industry advisors when appropriate. ", + "edges_from": [ + 3058, + 3059 + ], + "edges_to": [], + "id": 3057, + "label": "HLAW 299", + "title": "Independent Study Project in Health Law (3)" + }, + { + "dept": "HLAW", + "description": "", + "edges_from": [], + "edges_to": [ + 3057 + ], + "id": 3058, + "label": "HLAW 298C", + "title": "" + }, + { + "dept": "HLAW", + "description": "", + "edges_from": [], + "edges_to": [ + 3057 + ], + "id": 3059, + "label": "HLAW 298A", + "title": "" + }, + { + "dept": "HLAW", + "description": "Faculty member will direct a student\u2019s study in selected professional development topics in health law. Specific content will be tailored to the student\u2019s particular needs and area of interest. Students must make arrangements with the program and individual faculty member prior to enrolling in the course each time. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3060, + "label": "HLAW 298", + "title": "Directed Studies in Health Law (2)" + }, + { + "dept": "ANSC", + "description": "(Cross-listed with CGS 118.) This course investigates the ways in which forces of racism, gendered violence, and state control intersect in the penal system. The prison-industrial complex is analyzed as a site where certain types of gendered and racialized bodies are incapacitated, neglected, or made to die. Students may not receive credit for ANSC 186 and CGS 118. ", + "edges_from": [], + "edges_to": [], + "id": 3061, + "label": "ANSC 186", + "title": "Gender and Incarceration (4)" + }, + { + "dept": "ANSC", + "description": "This seminar addresses the production, consumption, and distribution of food, with particular emphasis on the culture of food. Food studies provide insight into a wide range of topics including class, poverty, hunger, ethnicity, nationalism, capitalism, gender, race, and sexuality. ", + "edges_from": [], + "edges_to": [], + "id": 3062, + "label": "ANSC 184", + "title": "Food, Culture, and Society (4)" + }, + { + "dept": "ANSC", + "description": "(Cross-listed with AAS 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for ANSC 185 and AAS 185. ", + "edges_from": [], + "edges_to": [], + "id": 3063, + "label": "ANSC 185", + "title": "#BlackLivesMatter (4)" + }, + { + "dept": "ANSC", + "description": "In this seminar, we investigate gun violence from a critical perspective that draws on social and health sciences, films, media, and more. While we take the contemporary issue of gun violence in the United States as a primary case study, we employ a global and comparative perspective. We explore controversies to include cultural, gendered, ethnic, political, and economic analysis. We examine discourses on gun violence as rational/irrational, healthy/pathological, and individually or socially produced. ", + "edges_from": [], + "edges_to": [], + "id": 3064, + "label": "ANSC 182", + "title": "Gun Violence as Social Pathology (4)" + }, + { + "dept": "ANSC", + "description": "Explores the role of film, photography, digital media, and visualization technologies in understanding human life. Students develop their own visualization projects. ", + "edges_from": [], + "edges_to": [], + "id": 3065, + "label": "ANSC 183", + "title": "Visualizing the Human: Film, Photography, and Digital Technologies (4)" + }, + { + "dept": "ANSC", + "description": "Drawing insight from anti-colonial and queer of color critique, this course critically examines the demands capitalism makes on us to perform gender, and how that relates to processes of exploitation and racialization. We will explore alternatives and develop strategies for navigating jobs in this system. Students may receive credit for one of the following: CGS 120, CGS 180 and ANSC 180. CGS 120 is renumbered from CGS 180. ", + "edges_from": [], + "edges_to": [], + "id": 3066, + "label": "ANSC 180", + "title": "Capitalism and Gender (4)" + }, + { + "dept": "ANSC", + "description": "We humans are animals. How do our relations with other animals\u2014how we rely on them, how we struggle against them, how we live among them\u2014shape our own worlds? In this course, we examine, through ethnography and speculative fiction, the boundary between human and other animals. ", + "edges_from": [], + "edges_to": [], + "id": 3067, + "label": "ANSC 181", + "title": "Animal Affairs (4)" + }, + { + "dept": "LIGN", + "description": "Language is constantly changing. This course", + "edges_from": [], + "edges_to": [], + "id": 3068, + "label": "LIGN 150", + "title": "Historical Linguistics (4)" + }, + { + "dept": "COGS", + "description": "Survey the theory and practice of using electrical", + "edges_from": [], + "edges_to": [], + "id": 3069, + "label": "COGS 179", + "title": "Electrophysiology of Cognition (4)" + }, + { + "dept": "LIGN", + "description": "This course is an introduction to the study of the indigenous languages of the Americas. Its goals are to offer orientation in a broad field and to prepare students for possible future research. Topics covered include grammatical structures, genetic classification, characteristics of major language families, and factors affecting language use and mother tongue transmission of these languages in contemporary societies. Recommended preparation: LIGN 101.", + "edges_from": [], + "edges_to": [], + "id": 3070, + "label": "LIGN 152", + "title": "Indigenous Languages of the Americas (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3071, + "label": "LTEN 148", + "title": "Genres in English and American Literature (4)" + }, + { + "dept": "LIGN", + "description": "History of thought on language", + "edges_from": [], + "edges_to": [], + "id": 3072, + "label": "LIGN 155", + "title": "Evolution of Language (4)" + }, + { + "dept": "COGS", + "description": "Students study and research selected topics under the direction of a member of the faculty.", + "edges_from": [], + "edges_to": [], + "id": 3073, + "label": "COGS 298", + "title": "Directed Independent Study (1\u201312)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3074, + "label": "LTEN 144", + "title": "The British Novel: 1890 to Present (4)" + }, + { + "dept": "COGS", + "description": "This class will examine the neuroanatomy, physiology, and functional correlates of the human mirror neuron system and its putative role in social cognition, e.g., action understanding, empathy, and theory of mind. We will examine the developmental, neuroimaging, electrophysiological, as well as clinical evidence, for and against this hypothesis. ", + "edges_from": [], + "edges_to": [], + "id": 3075, + "label": "COGS 171", + "title": "Mirror Neuron System (4)" + }, + { + "dept": "HISC", + "description": "Analyzes the history of sexology as a series of episodes in the science of human difference, from the European reception of the first translation of the Kama Sutra in 1883 to the search for the \u201cgay gene\u201d in the 1990s.", + "edges_from": [], + "edges_to": [], + "id": 3076, + "label": "HISC 118", + "title": "History of Sexology (4)" + }, + { + "dept": "COGS", + "description": "This course explores how drugs interact with the brain/mind and culture. It covers evolutionary and historical perspectives, brain chemistry, pharmacology, expectancies and placebo effects, and models of addiction. It also provides a biopsychosocial survey of commonly used and abused substances. ", + "edges_from": [], + "edges_to": [], + "id": 3077, + "label": "COGS 174", + "title": "Drugs: Brain, Mind, and Culture (4)" + }, + { + "dept": "COGS", + "description": "This course will review the literature that correlates brain rhythms in the human EEG with aspects of cognition, behavioral states, neuropsycho-pharmacology, and psychopathology in order to understand the psychological and neurophysiological underpinnings of these experiences. ", + "edges_from": [ + 3080, + 3079 + ], + "edges_to": [], + "id": 3078, + "label": "COGS 175", + "title": "The Neuropsychological Basis of Alternate States of Consciousness (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 238 + ], + "edges_to": [ + 3166, + 3078, + 3495 + ], + "id": 3079, + "label": "COGS 101A", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 4328, + 1571, + 3276, + 4310, + 3078 + ], + "id": 3080, + "label": "COGS 107A", + "title": "" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3081, + "label": "LTEN 142", + "title": "The British Novel: 1830\u20131890 (4)" + }, + { + "dept": "COGS", + "description": "The course examines features of neural dynamics that map spatial and temporal relationships. Lectures will cover interval timing, mapping of item-to-observer position, mapping of observer-to-world position, and the conjunction of spatial and temporal coding in hippocampus. ", + "edges_from": [], + "edges_to": [], + "id": 3082, + "label": "COGS 177", + "title": "Space and Time in the Brain (4)" + }, + { + "dept": "ECE", + "description": "The course aims to provide a broad coverage of key results, techniques, and open problems in network information theory. Topics include background (information measures and typical sequences, point-to-point communication) and single-hop networks (multiple access channels, degraded broadcast channels, interference channels, channels with state, general broadcast channels, Gaussian vector channels, distributed lossless source coding, source coding with side information). ", + "edges_from": [ + 1443, + 3084 + ], + "edges_to": [], + "id": 3083, + "label": "ECE 255C", + "title": "Network Information Theory (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 929 + ], + "edges_to": [ + 3083 + ], + "id": 3084, + "label": "ECE 255B", + "title": "" + }, + { + "dept": "ETHN", + "description": "This course offers scholars of race, gender, and sexuality an introduction to spatial theory and geographic methodologies. Particular attention will be given to theories of spatial formation, the interplay of social and spatial mobility and containment, and alternative spatio-political imaginaries. ", + "edges_from": [], + "edges_to": [], + "id": 3085, + "label": "ETHN 252", + "title": "Race, Gender, and Space (4)" + }, + { + "dept": "ETHN", + "description": "This seminar explores the centrality of race to the formation of the discipline of psychoanalysis as well as the relevance of psychoanalysis to the study of race, gender, and sexuality. We will read key texts by Freud, Lacan, and Fanon and follow the development of their ideas in the works of late twentieth and twenty-first century scholars like Spillers, Marriott, Judy, Seshadri-Crooks, Eng, and Mercer. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 3086, + "label": "ETHN 255", + "title": "Race and Psychoanalysis (4)" + }, + { + "dept": "ETHN", + "description": "This course studies the body cross-culturally as the site for the construction of gender, sex, ethnic, and racial identities. ", + "edges_from": [], + "edges_to": [], + "id": 3087, + "label": "ETHN 256", + "title": "Gender, Sexuality, and Race (4)" + }, + { + "dept": "EDS", + "description": "This course introduces prospective secondary teachers to the cognitive, social, and emotional development of adolescents, including developmental learning theory, the teaching/learning process, effective learning environments, and cross-cultural variation in development. Implications for classroom practice are drawn.", + "edges_from": [], + "edges_to": [], + "id": 3088, + "label": "EDS 118", + "title": "Adolescent Development and Education (4)" + }, + { + "dept": "EDS", + "description": "College students tutoring college students. Curriculum: basic applied learning principles, specifying objectives, planning and designing instruction, testing, evaluation, interpersonal communication skills, study skills. Objectives will be specified for each area. Competency will be assessed by project completion and practicum feedback. This course is not creditable toward professional preparation requirements for the multiple subject credential. ", + "edges_from": [], + "edges_to": [], + "id": 3089, + "label": "EDS 116", + "title": "The Psychology of Teaching and Structures of Information for Human Learning (4)" + }, + { + "dept": "EDS", + "description": "This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. Students may not receive credit for both EDS 115 and EDS 115GS. ", + "edges_from": [ + 762, + 765 + ], + "edges_to": [], + "id": 3090, + "label": "EDS 115", + "title": "Cognitive Development and Education (4)" + }, + { + "dept": "EDS", + "description": "Development and learning are increasingly supported by interactive computing environments. This course will explore technology-supported learning environments, looking at the ways they can be used to promote effective development, learning, and teaching. ", + "edges_from": [], + "edges_to": [], + "id": 3091, + "label": "EDS 114", + "title": "Cognitive Development and Interactive Computing Environments (4)" + }, + { + "dept": "EDS", + "description": "This course examines how early education programs collaborate with socioculturally diverse families to support child development. Theories will examine social learning, family socialization, risk and resilience, and community engagement and how these theories are enacted in schools, communities, and families. Course assignments will support undergraduates to utilize families\u2019 beliefs, strengths, and resources to support children\u2019s learning with opportunities to engage with them. ", + "edges_from": [], + "edges_to": [], + "id": 3092, + "label": "EDS 111", + "title": "Child, Family, and Community Partnerships with Schools (4)" + }, + { + "dept": "GPEC", + "description": "Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. Previously taught as an IRGN 290, Special Topics course. Students may not receive credit for GPEC 244 and IRGN 290 or IRGN 490 with the same title. May be coscheduled with GPEC 444.", + "edges_from": [], + "edges_to": [], + "id": 3093, + "label": "GPEC 244", + "title": "Advanced GIS and Remote Sensing (4)" + }, + { + "dept": "Linguistics/American", + "description": "Course aims to improve language skills through discussion of topics relevant to the Deaf community. Central topics will include education and American Sign Language (ASL) literature. Conducted entirely in American Sign Language. ", + "edges_from": [ + 3096, + 3095 + ], + "edges_to": [], + "id": 3094, + "label": "Linguistics/American Sign Language (LISL) 1E", + "title": "Intermediate American Sign Language Conversation (4)" + }, + { + "dept": "LISL", + "description": "", + "edges_from": [], + "edges_to": [ + 3094 + ], + "id": 3095, + "label": "LISL 1D", + "title": "" + }, + { + "dept": "LISL", + "description": "", + "edges_from": [], + "edges_to": [ + 3094 + ], + "id": 3096, + "label": "LISL 1DX", + "title": "" + }, + { + "dept": "BGGN", + "description": "Students present and discuss papers on", + "edges_from": [], + "edges_to": [], + "id": 3097, + "label": "BGGN 290", + "title": "Advances in Cellular and Molecular Mechanisms (1)" + }, + { + "dept": "PHIL", + "description": "A study of philosophical themes contained in selected fiction, drama, or poetry, and the philosophical issues that arise in the interpretation, appreciation, and criticism of literature. ", + "edges_from": [], + "edges_to": [], + "id": 3098, + "label": "PHIL 177", + "title": "Philosophy and Literature (4)" + }, + { + "dept": "PHIL", + "description": "Central issues in philosophical aesthetics such as the nature of art and aesthetic experience, the grounds of artistic interpretation and evaluation, artistic representation, and the role of the arts in education, culture, and politics. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 3099, + "label": "PHIL 175", + "title": "Aesthetics (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "(2.5)", + "edges_from": [], + "edges_to": [], + "id": 3100, + "label": "Linguistics/Portuguese (LIPO) 1BX", + "title": "Analysis of Portuguese" + }, + { + "dept": "EDS", + "description": "Course focuses on challenges that confront college students in their second year of higher education and solutions. Emphasis on historically underrepresented students of color with more complex adjustment to college. Analysis of national trends from research including High-Impact Practices. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3101, + "label": "EDS 23", + "title": "Success and Satisfaction in the Second Year of Higher Education: Research Trends and Conclusions (2)" + }, + { + "dept": "PHIL", + "description": "A philosophical investigation of the topics of race and racism. The role of \u201crace\u201d in ordinary speech. The ethics of racial discourse. Anthropological and biological conceptions of race. The social and political significance of racial categories. Post-racialist conceptions of race. ", + "edges_from": [], + "edges_to": [], + "id": 3102, + "label": "PHIL 170", + "title": "Philosophy and Race (4)" + }, + { + "dept": "MGT", + "description": "This class covers issues in pricing decisions.\u00a0The main emphasis will be on the data and tools required to make successful profitable pricing decisions.\u00a0Students may not earn credit for both MGT 479 and MGT 205. They are course equivalents. ", + "edges_from": [ + 3104 + ], + "edges_to": [], + "id": 3103, + "label": "MGT 479", + "title": "Pricing (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 3103 + ], + "id": 3104, + "label": "MGT 407", + "title": "" + }, + { + "dept": "VIS", + "description": "Italian artists and critics of the fourteenth through sixteenth centuries were convinced that they were participating in a revival of the arts unparalleled since antiquity. Focusing primarily on Italy, this course traces the emergence in painting, sculpture and architecture, of an art based on natural philosophy, optical principles, and humanist values, which embodied the highest intellectual achievement and deepest spiritual beliefs of the age. Artists treated include Giotto, Donatello, Masaccio, Brunelleschi, Jan van Eyck, Mantegna, Botticelli, Leonardo da Vinci, Michelangelo, Raphael, Bramante, Durer, and Titian. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 3105, + "label": "VIS 122AN", + "title": "Renaissance Art (4)" + }, + { + "dept": "PHIL", + "description": "Continuation of Philosophy 178 in the careful, line-by-line translation of passages of advanced difficulty from German philosophical texts, both classic (Kant, Fichte, Hegel, Schopenhauer) and contemporary (Heidegger, Wittgenstein, Habermas). May be repeated for credit as topics vary. ", + "edges_from": [ + 3107 + ], + "edges_to": [], + "id": 3106, + "label": "PHIL 179", + "title": "Topics in German Philosophy Translation\u2014Advanced (2)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 3106 + ], + "id": 3107, + "label": "PHIL 178", + "title": "" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 411A-B-C. Students may not get credit for any IRLA 411 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 3108, + "label": "GPLA 411A-B-C", + "title": "Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "GLBH", + "description": "Introduces students to the physical and mental health needs of vulnerable migrants and socially marginalized communities, including substance users, LGBTQ, deportees, and the homeless and medically indigent. Students will become integrated into a free clinic in Tijuana where they will obtain community-based field experiences in interacting with these populations; learn about delivering evidence-based health care in underserved settings and be introduced to issues regarding cultural appropriation. Program or materials fees may apply. May be taken for credit up to three times. Students are required to cross the US-Mexico border to attend clinic in Tijuana as part of the requirements for the course. Recommended preparation: upper-division global health course work prior to participation is recommended.", + "edges_from": [], + "edges_to": [], + "id": 3109, + "label": "GLBH 111", + "title": "Clinic on the Border: Health Frontiers in Tijuana (4)" + }, + { + "dept": "GLBH", + "description": "This course will provide an overview of demographic principles, and their associations with maternal and child health outcomes. We will focus on demographic trends in developing countries, using research from the DHS to discuss inequalities in fertility, mortality, and morbidity. The remainder of the class will question why we see such spatial variation in many maternal and child health outcomes, with a focus on theories of social norms, and social network methods for uncovering those trends.", + "edges_from": [], + "edges_to": [], + "id": 3110, + "label": "GLBH 110", + "title": "Demography and Social Networks in Global Health (4)" + }, + { + "dept": "GLBH", + "description": "The course examines women\u2019s and girls\u2019 health throughout the world, focusing on the main health problems experienced primarily in low resource settings. This course presents issues in the context of a woman\u2019s life from childhood, through adolescence, reproductive years, and aging. The course will have a strong emphasis on social, economic, environmental, behavioral, and political factors that affect health behaviors, reproductive health, maternal morbidity/mortality, and STIs/HIV.", + "edges_from": [], + "edges_to": [], + "id": 3111, + "label": "GLBH 113", + "title": "Women\u2019s Health in Global Perspective (4)" + }, + { + "dept": "LTRU", + "description": "An introduction to Russia\u2019s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present. ", + "edges_from": [], + "edges_to": [], + "id": 3112, + "label": "LTRU 150", + "title": "Russian Culture (4)" + }, + { + "dept": "MAE", + "description": "Collisionless magnetic reconnection, interactions of relativistic laser field with plasma, plasma in astrophysics, computational plasma physics. ", + "edges_from": [ + 3114, + 3115, + 3116 + ], + "edges_to": [], + "id": 3113, + "label": "MAE 228", + "title": "Selected Topics in Plasma Physics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3113 + ], + "id": 3114, + "label": "MAE 217C", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3113 + ], + "id": 3115, + "label": "MAE 217B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3113, + 5635 + ], + "id": 3116, + "label": "MAE 217A", + "title": "" + }, + { + "dept": "POLI", + "description": "Senior Honors Seminar: Frontiers of Political Science (4-4)", + "edges_from": [], + "edges_to": [], + "id": 3117, + "label": "POLI 191A\u2013B", + "title": "" + }, + { + "dept": "MGT", + "description": "Taking a global perspective, this course examines how innovation is funded and the financial tools necessary over the life cycle of a new venture\u2014development, growth, maturity, and exit. Students will learn to perform financial analysis to determine the feasibility of financing new, transformed, and growing ventures, whether foreign or domestic. The course will also cover term sheets, valuation methods, and the role of private equity investors\u2014angels, VCs, and vendors. ", + "edges_from": [], + "edges_to": [ + 3784, + 5028, + 3786, + 3787, + 4996 + ], + "id": 3118, + "label": "MGT 187", + "title": "New Venture Finance (4)" + }, + { + "dept": "LTTH", + "description": "Selected topics in critical theory such as a particular mode of literary theory; comparative study of theories of text and image; a problem or theme in the history of theory; and issues involved in the relationship between fiction and other discourses (science, law, history, philosophy, music). Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3119, + "label": "LTTH 150", + "title": "Topics in Critical Theory (4)" + }, + { + "dept": "BIOM", + "description": "Each quarter will focus on an important area of cancer research such as immunology (fall), growth regulation (winter), and cancer genetics (spring). One-hour lecture coordinated with a one-hour seminar with the opportunity to meet with the invited speaker. ", + "edges_from": [], + "edges_to": [], + "id": 3120, + "label": "BIOM 224", + "title": "Topics in Cancer Research (2)" + }, + { + "dept": "BISP", + "description": "Course is designed to assist new transfers in making a smooth and informed transition from community college.\u00a0Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problem-solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new transfers. ", + "edges_from": [], + "edges_to": [], + "id": 3121, + "label": "BISP 191", + "title": "Biology Transfers: Strategies for Success (1)" + }, + { + "dept": "BISP", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in biology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 3122, + "label": "BISP 192", + "title": "Senior Seminar in Biology (1)" + }, + { + "dept": "BISP", + "description": "Individual research on a problem in biology education by special arrangement with and under the direction of a faculty member. Projects are expected to involve novel research that examines issues in biology education such as the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. P/PN grades only. May be taken for credit five times. ", + "edges_from": [ + 3123 + ], + "edges_to": [ + 3123 + ], + "id": 3123, + "label": "BISP 193", + "title": "Biology Education Research (2 or 4)" + }, + { + "dept": "BISP", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 3124, + "label": "BISP 194", + "title": "Advanced Topics in Modern Biology (2)" + }, + { + "dept": "BISP", + "description": "Under the supervision of an instructor, student apprentices will assist in the instruction of a biology course. The purpose of the apprenticeship is to learn the methodology of teaching biology, at the college level, through theory and actual practice in a regularly scheduled course. Limited to upper-division students with a 3.0 GPA or higher. Students must apply the quarter preceding the quarter in which BISP 195 will be completed. Applications are reviewed by instructors, and assignments are made based on divisional need. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 3125, + "label": "BISP 195", + "title": "Undergraduate Instructional Apprenticeship in Biological Sciences (4)" + }, + { + "dept": "BISP", + "description": "Course for student participants in the senior Honors thesis research program. Students complete individual research on a problem by special arrangement with, and under the direction of, a faculty member. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. P/NP grades only. May be taken for credit three times. Research to be approved by Honors thesis faculty adviser via application.\u00a0Note: Students must apply to the division via the online system. For complete details, applications, and deadlines, please consult the", + "edges_from": [], + "edges_to": [], + "id": 3126, + "label": "BISP 196", + "title": "Honors Thesis in Biological Sciences (4)" + }, + { + "dept": "BISP", + "description": "Individual research on a problem by special arrangement with, and under the direction of, a UC San Diego faculty member and a selected researcher in industry or at a research institution. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. Application deadlines are strictly enforced. Consult the", + "edges_from": [], + "edges_to": [], + "id": 3127, + "label": "BISP 197", + "title": "Biology Internship Program (2 or 4)" + }, + { + "dept": "BISP", + "description": "Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 3128 + ], + "edges_to": [ + 3128 + ], + "id": 3128, + "label": "BISP 198", + "title": "Directed Group Study (1 to 4)" + }, + { + "dept": "WARR", + "description": "Students will gain a fundamental understanding of all stages of the writing process and will develop the necessary skills to serve as productive mentors for their peers. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3129, + "label": "WARR 189", + "title": "Academic Mentoring and the Writing Process (2)" + }, + { + "dept": "BIPN", + "description": "This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural systems that control them, emphasizing broad fundamental relationships between brain and behavior across species. Note: Students may not receive credit for Psyc 189 and BIPN 189. ", + "edges_from": [ + 369, + 858, + 1013 + ], + "edges_to": [], + "id": 3130, + "label": "BIPN 189", + "title": "Brain, Behavior, and Evolution (4)" + }, + { + "dept": "DSGN", + "description": "Explores cognitive principles of thinking through making. Introduces methods and tools for prototyping user experiences. Students make various prototypes and participate in weekly critique sessions. Topics: experience design, rapid prototyping, sketching, bodystorming, cardboard modeling, UI hacking, and design theory. ", + "edges_from": [ + 2647 + ], + "edges_to": [ + 4590 + ], + "id": 3131, + "label": "DSGN 100", + "title": "Information Design (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Spanish. Must be taken in conjunction with LISP 1D. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 2421, + 3133 + ], + "edges_to": [], + "id": 3132, + "label": "Linguistics/Spanish (LISP) 1DX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 3132, + 4821 + ], + "id": 3133, + "label": "LISP 1CX", + "title": "" + }, + { + "dept": "COGS", + "description": "This course examines memory, reasoning, language understanding, learning, and planning directly in everyday, real-world settings. The course work includes projects in which students make observations of real-world activity and analyze their cognitive significance. ", + "edges_from": [], + "edges_to": [ + 1576 + ], + "id": 3134, + "label": "COGS 102B", + "title": "Cognitive Ethnography (4)" + }, + { + "dept": "ECE", + "description": "A transistor-level view of digital integrated circuits. CMOS combinational logic, ratioed logic, noise margins, rise and fall delays, power dissipation, transmission gates. Short channel MOS model, effects on scaling. Sequential circuits, memory and array logic circuits. Three hours of lecture, one hour of discussion, three hours of laboratory. ", + "edges_from": [ + 3136, + 3137, + 3138, + 3139, + 1181, + 1183 + ], + "edges_to": [], + "id": 3135, + "label": "ECE 108", + "title": "Digital Circuits (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1569, + 3135 + ], + "id": 3136, + "label": "ECE 25", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3135 + ], + "id": 3137, + "label": "CSE 65", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3135 + ], + "id": 3138, + "label": "CSE 45", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3135 + ], + "id": 3139, + "label": "ECE 30", + "title": "" + }, + { + "dept": "CENG", + "description": "Thermodynamic behavior of pure substances", + "edges_from": [], + "edges_to": [], + "id": 3140, + "label": "CENG 102", + "title": "Chemical Engineering Thermodynamics (4)" + }, + { + "dept": "MATS", + "description": "Each graduate student in the Materials Science and Engineering Program is expected to attend a weekly seminar in materials science or related areas. MS students must enroll for three quarters, PhD students for six quarters, as of fall 1995. (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 3141, + "label": "MATS 200", + "title": "Graduate Seminar (0)" + }, + { + "dept": "MUS", + "description": "Tonal harmony and counterpoint. Analysis of larger classical forms: Sonata, Variation, Minuet and Trio, Rondo. Musicianship studies: sight-singing, dictation, and keyboard skills. ", + "edges_from": [ + 1559 + ], + "edges_to": [ + 4298 + ], + "id": 3142, + "label": "MUS 101C", + "title": "Music Theory and Practice III (4)" + }, + { + "dept": "ECE", + "description": "Nonlinear active circuits design. Nonlinear device models for diodes, bipolar and field-effect transistors. Linearization of device models and small-signal equivalent circuits. Circuit designs will be simulated by computer and tested in the laboratory. ", + "edges_from": [ + 3144, + 257 + ], + "edges_to": [ + 4259, + 4260, + 4261 + ], + "id": 3143, + "label": "ECE 102", + "title": "Introduction to Active Circuit Design (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 257, + 1671 + ], + "edges_to": [ + 3143 + ], + "id": 3144, + "label": "ECE 100", + "title": "" + }, + { + "dept": "NANO", + "description": "Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. Cross-listed with MATS 257 and BENG 242. Restricted to BE 75, MS 76, CE 75, and NA 75 majors.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3145, + "label": "NANO 257", + "title": "Polymer Science and Engineering (4)" + }, + { + "dept": "NANO", + "description": "This course covers the design, microfabrication, operational principles, basic transport processes and diverse applications of microfluidic and nanofluidic (lab-on-a-chip) systems.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3146, + "label": "NANO 256", + "title": "Microfluids (4)" + }, + { + "dept": "NANO", + "description": "Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electrochemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. Cross-listed with Chem 240.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3147, + "label": "NANO 255", + "title": "Electrochemistry (4)" + }, + { + "dept": "NANO", + "description": "This course discusses synthesis techniques, processes, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 267.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3148, + "label": "NANO 253", + "title": "Nanomaterials and Properties (4)" + }, + { + "dept": "NANO", + "description": "Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Cross-listed with CENG 256. Students may not receive credit for both NANO 252 and CENG 256. ", + "edges_from": [], + "edges_to": [], + "id": 3149, + "label": "NANO 252", + "title": "Biomaterials and Biomimetics (4)" + }, + { + "dept": "ANSC", + "description": "Examines physical and mental health sequalae of internal and transnational movement of individuals and populations due to warfare, political violence, natural disaster, religious persecution, poverty and struggle for economic survival, and social suffering of communities abandoned by migrants and refugees. May be coscheduled with ANTH 238. ", + "edges_from": [ + 1137, + 3150 + ], + "edges_to": [ + 3150 + ], + "id": 3150, + "label": "ANSC 144", + "title": "Immigrant and Refugee Health (4)" + }, + { + "dept": "NANO", + "description": "Elements of continuum mechanics; quantum and statistical mechanics; interatomic forces and intermolecular interactions; thermodynamics and diffusion materials; nanomechanics of self-assembly, pattern formation, and hierarchical ordering, defects, thin films, surfaces, and interfaces; plasticity, creep, fracture, and fatigue, nanomechanics, nanorheology, and nanotribology.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3151, + "label": "NANO 250", + "title": "Mechanics of Nanomaterials (4)" + }, + { + "dept": "COMM", + "description": "Explores the uneven nature of globalization and its geographical expression in the built environment by looking into gentrification processes and community change in service-oriented economies in the Global North as well as into production offshoring and disputes over development in the Global South. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 3152, + "label": "COMM 181", + "title": "Neoliberal Cities (4)" + }, + { + "dept": "COMM", + "description": "How are messages created, transmitted, and received? What is the relationship between thinking and communicating?\u00a0How are linguistic processes embedded in sociocultural practices?\u00a0Course discusses classic texts in the field of communication theory stemming from linguistics, semiotics, philosophy of language, literary theory.\u00a0", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 3153, + "label": "COMM 180", + "title": "Advanced Studies in Communication Theory (4)" + }, + { + "dept": "ANTH", + "description": "Course will provide an introduction to bones as a tissue, to different bones in the body, and the ligaments and muscles surrounding major joints. You will learn how the skeleton, ligaments, and muscles support our mode of locomotion; the differences between male and female skeletons; and the differences across human populations. You\u2019ll see how nutrition and disease can affect bones. Course examines functional areas within the body.", + "edges_from": [], + "edges_to": [], + "id": 3154, + "label": "ANTH 5", + "title": "The Human Machine: The Skeleton Within (4)" + }, + { + "dept": "ANTH", + "description": "How does one\u2019s language mutually interact with the social, cultural, and conceptual worlds one inhabits and mutually constructs with others? This course will introduce the comparative study of social life through the lens of the uniquely human capacity for language.", + "edges_from": [], + "edges_to": [], + "id": 3155, + "label": "ANTH 4", + "title": "Words and Worlds: Introduction to the Anthropology of Language (4)" + }, + { + "dept": "NANO", + "description": "Various nanoscale systems where macroscopic laws of mass, heat, and momentum transfer break down; nonequilibrium statistical mechanics concepts such as transition state and Green-Kubo theories, and molecular simulations for modeling nanoscale transport issues will be introduced.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3156, + "label": "NANO 258", + "title": "Nanoscale Transport Phenomenon (4)" + }, + { + "dept": "ETHN", + "description": "States\u2013Mexico Border in Comparative Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 3157, + "label": "ETHN 116", + "title": "The United" + }, + { + "dept": "MUS", + "description": "Group instruction in instrumental or vocal technique and repertory. Intermediate level. Intended for students who make an important contribution to Department of Music ensembles. ", + "edges_from": [], + "edges_to": [], + "id": 3158, + "label": "MUS 32G", + "title": "Group Instrumental Instruction (2)" + }, + { + "dept": "ECE", + "description": "This course will build mathematical foundations of linear algebraic techniques and justify their use in signal processing, communication, and machine learning. Topics include geometry of vector and Hilbert spaces, orthogonal projection, systems of linear equations and role of sparsity, eigenanalysis, Hermitian matrices and variational characterization, positive semidefinite matrices, singular value decomposition, and principal component analysis. ", + "edges_from": [], + "edges_to": [ + 4819 + ], + "id": 3159, + "label": "ECE 269", + "title": "Linear Algebra and Application (4)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3160, + "label": "BGRD 212", + "title": "Research Discussion in Behavior and Development of Simple Nervous Systems (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3161, + "label": "BGRD 210", + "title": "Research Discussion in Virology (1)" + }, + { + "dept": "LTAM", + "description": "Examines the growing Iranian American culture, focusing on developments in Iranian American cinematic and popular culture.", + "edges_from": [], + "edges_to": [], + "id": 3162, + "label": "LTAM 120", + "title": "Iranian American Culture (4)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3163, + "label": "BGRD 211", + "title": "Research Discussion in Developmental Cellular Neurobiology (1)" + }, + { + "dept": "COGS", + "description": "An introduction to structure of natural language, and to the cognitive processes that underline its acquisition, comprehension, and production. This course covers findings from linguistics, computer science, psychology, and cognitive neuroscience to provide an integrated perspective on human language abilities. ", + "edges_from": [ + 3165, + 238 + ], + "edges_to": [ + 3495 + ], + "id": 3164, + "label": "COGS 101C", + "title": "Language (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 3691, + 3164, + 2333, + 3791 + ], + "id": 3165, + "label": "COGS 14A", + "title": "" + }, + { + "dept": "COGS", + "description": "A survey of the experimental study of learning, memory, and attention. Topics include conditioning, automaticity, divided attention, memory systems, and the nature of mental representation. ", + "edges_from": [ + 238, + 3079 + ], + "edges_to": [ + 3495 + ], + "id": 3166, + "label": "COGS 101B", + "title": "Learning, Memory, and Attention (4)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3167, + "label": "BGRD 216", + "title": "Research Discussion in Molecular and Cell Biology (1)" + }, + { + "dept": "ANSC", + "description": "Explores anthropological approaches to finding solutions to human problems. Using cultural analysis and ethnographic approaches, students conduct supervised field projects to assess real-world problems and then design, evaluate, and communicate possible solutions. ", + "edges_from": [], + "edges_to": [], + "id": 3168, + "label": "ANSC 138", + "title": "The Cultural Design Practicum: Using Anthropology to Solve Human Problems (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in neural engineering. ", + "edges_from": [ + 66 + ], + "edges_to": [ + 3170 + ], + "id": 3169, + "label": "BENG 147A", + "title": "Design Development in Neural Engineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in neural engineering. ", + "edges_from": [ + 3169, + 68 + ], + "edges_to": [ + 68 + ], + "id": 3170, + "label": "BENG 147B", + "title": "Design Implementation in Neural Engineering (3)" + }, + { + "dept": "POLI", + "description": "to Political Science: Comparative Politics (4)", + "edges_from": [], + "edges_to": [], + "id": 3171, + "label": "POLI 11 or 11D", + "title": "Introduction" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "edges_from": [], + "edges_to": [], + "id": 3172, + "label": "PSYC 249A", + "title": "Advanced Topics in Applied Behavior Analysis I (1)" + }, + { + "dept": "LTEN", + "description": "This course provides an introduction to the literary production of the population of Mexican origin in the United States. Students will examine a variety of texts dealing with the historical (social, economic, and political) experiences of this heterogeneous population.", + "edges_from": [], + "edges_to": [], + "id": 3173, + "label": "LTEN 29", + "title": "Introduction to Chicano Literature (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "edges_from": [], + "edges_to": [], + "id": 3174, + "label": "PSYC 249C", + "title": "Advanced Topics in Applied Behavior Analysis III (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "edges_from": [], + "edges_to": [], + "id": 3175, + "label": "PSYC 249B", + "title": "Advanced Topics in Applied Behavior Analysis II (1)" + }, + { + "dept": "SOCI", + "description": "This introductory course is specifically designed for premedical students and will provide them with a broad introduction to sociological concepts and research, particularly as applied to medicine.", + "edges_from": [], + "edges_to": [], + "id": 3176, + "label": "SOCI 70", + "title": "General Sociology for Premedical Students (4)" + }, + { + "dept": "MUS", + "description": "The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music majors every quarter.", + "edges_from": [], + "edges_to": [], + "id": 3177, + "label": "MUS 143", + "title": "Department Seminar (1)" + }, + { + "dept": "GPEC", + "description": "A broad survey of the Japanese economy, together with in-depth examination of some distinctively Japanese phenomena such as savings behavior, financial structure, industrial organization, and labor markets. Renumbered from IRGN 471. Students may not receive credit for GPEC 471 and IRGN 471. ", + "edges_from": [ + 2981, + 2983 + ], + "edges_to": [], + "id": 3178, + "label": "GPEC 471", + "title": "Japanese Economy (4)" + }, + { + "dept": "HIEU", + "description": "Directed readings for undergraduates under the supervision of various faculty members. ", + "edges_from": [], + "edges_to": [], + "id": 3179, + "label": "HIEU 199", + "title": "Independent Study in European History (4)" + }, + { + "dept": "HIEU", + "description": "Directed group study on European history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. ", + "edges_from": [], + "edges_to": [], + "id": 3180, + "label": "HIEU 198", + "title": "Directed Group Study (1, 2, 3, 4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 104.) Analysis", + "edges_from": [], + "edges_to": [], + "id": 3181, + "label": "CHEM 204", + "title": "Introduction to X-ray Crystallography (4)" + }, + { + "dept": "CHEM", + "description": "A broad introduction to the uses of nuclear magnetic resonance", + "edges_from": [], + "edges_to": [], + "id": 3182, + "label": "CHEM 207", + "title": "Protein NMR (4)" + }, + { + "dept": "CHEM", + "description": "Structures and functions of nucleic acids, folding and catalysis of nucleic acids, motifs and domains of proteins, principles of protein-protein interactions, chemistry of protein/DNA and protein/RNA interfaces, conformational changes in macromolecular recognition. ", + "edges_from": [], + "edges_to": [], + "id": 3183, + "label": "CHEM 209", + "title": "Macromolecular Recognition (4)" + }, + { + "dept": "HINE", + "description": "This course explores the evolution of Zionism from its late nineteenth-century origins to the present. Among the topics explored: political, cultural, spiritual and social varieties of Zionism; and the contending narratives about its nature, meaning, and accomplishments.", + "edges_from": [], + "edges_to": [], + "id": 3184, + "label": "HINE 136GS", + "title": "Zionism and Post Zionism (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3185, + "label": "LTEN 138", + "title": "The British Novel: 1680\u20131790 (4)" + }, + { + "dept": "CHEM", + "description": "This special-topics course is designed for first-year graduate students in biochemistry. Topics presented in recent years have included protein processing, the chemical modification of proteins, the biosynthesis and function of glycoproteins, lipid biochemistry and membrane structure, and bioenergetics. ", + "edges_from": [ + 458 + ], + "edges_to": [], + "id": 3186, + "label": "CHEM 219A", + "title": "Special Topics in Biochemistry (4)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Arabic, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 3187, + "label": "LIGN 510", + "title": "Apprentice Teaching of Arabic (1\u20134)" + }, + { + "dept": "HIEU", + "description": "How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D.", + "edges_from": [], + "edges_to": [], + "id": 3188, + "label": "HIEU 132D", + "title": "Germany from Luther to Bismarck (4)" + }, + { + "dept": "BGGN", + "description": "This course covers advanced topics in plant biology in the areas of molecular genetic developmental, and physiological biology. We will discuss plant-microbe interactions, transposable elements, protein trafficking, ion transport, and organ development. The format of this section includes lectures and discussion of selected papers. ", + "edges_from": [], + "edges_to": [], + "id": 3189, + "label": "BGGN 227", + "title": "Graduate Topics in Plant Biology (4)" + }, + { + "dept": "LIGN", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 3190, + "label": "LIGN 512", + "title": "Apprentice Teaching of Heritage Korean" + }, + { + "dept": "MUS", + "description": "Individual instruction in advanced vocal performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [ + 4651 + ], + "id": 3191, + "label": "MUS 132V", + "title": "Proseminar in Vocal Instruction (4)" + }, + { + "dept": "BIOM", + "description": "This course outlines a current understanding of genetic mechanisms that underlie carcinogenesis and their impact on cell proliferation, differentiation, angiogenesis, metastasis, and survival. The topics of tumor histopathology, the tumor stem cell phenotype, and cancer drug design are also addressed. ", + "edges_from": [], + "edges_to": [], + "id": 3192, + "label": "BIOM 256", + "title": "Molecular Pathology of Cancer (3)" + }, + { + "dept": "LTWL", + "description": "The course will center on writers or movements of international literary, cultural, or ideological significance. The texts studied, if foreign, may be read either in the original language or in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3193, + "label": "LTWL 176", + "title": "Literature and Ideas (4)" + }, + { + "dept": "MGT", + "description": "This course covers the basic concepts and important models used in", + "edges_from": [], + "edges_to": [], + "id": 3194, + "label": "MGT 285", + "title": "Financial Economics (4)" + }, + { + "dept": "MGT", + "description": "This course covers econometric methods including the linear regression", + "edges_from": [], + "edges_to": [], + "id": 3195, + "label": "MGT 287", + "title": "Empirical Finance (4)" + }, + { + "dept": "MGT", + "description": "This course covers most powerful tools in finance, i.e., which are", + "edges_from": [], + "edges_to": [], + "id": 3196, + "label": "MGT 286", + "title": "Continuous-Time Finance (4)" + }, + { + "dept": "CSE", + "description": "This course will provide a broad understanding of network design and implementation. Topics include techniques for building distributed applications, sockets programming, remote procedure calls (RPC), scale-out distributed directories, distributed consensus and state management, fault tolerance, networked storage, indirection, overlay networks, load balancing, and datacenter design. ", + "edges_from": [], + "edges_to": [], + "id": 3197, + "label": "CSE 224", + "title": "Graduate Networked Systems (4)" + }, + { + "dept": "CSE", + "description": "Security and threat models, risk analysis, authentication and authorization, auditing, operating systems security, access control mechanisms, protection mechanisms, distributed systems/network security, security architecture, electronic commerce security mechanisms, security evaluation. ", + "edges_from": [ + 2196 + ], + "edges_to": [], + "id": 3198, + "label": "CSE 227", + "title": "Computer Security (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 2196 + ], + "id": 3199, + "label": "CSE 121", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3411, + 2196, + 5629 + ], + "id": 3200, + "label": "CSE 120", + "title": "" + }, + { + "dept": "POLI", + "description": "of Political Thought: Kant to Rawls (4)", + "edges_from": [], + "edges_to": [], + "id": 3201, + "label": "POLI 210AB", + "title": "Systems" + }, + { + "dept": "POLI", + "description": "of Political Thought: Thucydides to Rousseau (4)", + "edges_from": [], + "edges_to": [], + "id": 3202, + "label": "POLI 210AA", + "title": "Systems" + }, + { + "dept": "USP", + "description": "(Same as POLI 103C.) This course examines how major policy decisions are made in San Diego. In analyses the region\u2019s power structure (including the roles of nongovernmental organizations and the media), governance systems and reform efforts, and the politics of major infrastructure projects. ", + "edges_from": [], + "edges_to": [], + "id": 3203, + "label": "USP 115", + "title": "Politics and Policymaking in San Diego (4)" + }, + { + "dept": "USP", + "description": "Local Government: Finance and Administration (4)", + "edges_from": [], + "edges_to": [], + "id": 3204, + "label": "USP 116", + "title": "California" + }, + { + "dept": "USP", + "description": "(Same as POLI 102JJ.) To be taken with the approval of the Political Science 102J instructor, this course allows students to do original field research on topics in urban politics. This course is offered in Summer Session II subsequent to a spring 102J course. May not be used to fulfill any major or minor requirements in politics science or urban studies and planning. ", + "edges_from": [ + 3208, + 3206, + 3207 + ], + "edges_to": [], + "id": 3205, + "label": "USP 111", + "title": "Field Research in Urban Politics (4)" + }, + { + "dept": "???", + "description": "", + "edges_from": [], + "edges_to": [ + 3205 + ], + "id": 3206, + "label": "??? Science 102J", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 3205 + ], + "id": 3207, + "label": "USP 110", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 3205 + ], + "id": 3208, + "label": "USP 110P", + "title": "" + }, + { + "dept": "USP", + "description": "(Same as POLI 103B.) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ", + "edges_from": [], + "edges_to": [], + "id": 3209, + "label": "USP 113", + "title": "Politics and Policymaking in Los Angeles (4)" + }, + { + "dept": "HISC", + "description": "Historical aspects of the popularization of science. The changing relation between expert science and popular understanding. The reciprocal impact of scientific discoveries and theories, and popular conceptions of the natural world.", + "edges_from": [], + "edges_to": [], + "id": 3210, + "label": "HISC 104", + "title": "History of Popular Science (4)" + }, + { + "dept": "ETHN", + "description": "of Native Americans in the United States II (4)", + "edges_from": [], + "edges_to": [], + "id": 3211, + "label": "ETHN 112B", + "title": "History" + }, + { + "dept": "ETHN", + "description": "of Native Americans in the United States I (4)", + "edges_from": [], + "edges_to": [], + "id": 3212, + "label": "ETHN 112A", + "title": "History" + }, + { + "dept": "INTL", + "description": "Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 3213, + "label": "INTL 197", + "title": "Internship (1)" + }, + { + "dept": "PSYC", + "description": "in Communication and Information Processing (1)", + "edges_from": [], + "edges_to": [], + "id": 3214, + "label": "PSYC 280", + "title": "Seminar" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of current theoretical and empirical issues in the neurobiological study of auditory perception and cognition. Example topics include auditory stream segregation, localization, natural stimulus coding, pattern recognition and communication in multiple species. ", + "edges_from": [], + "edges_to": [], + "id": 3215, + "label": "PSYC 282", + "title": "Auditory Neuroscience (4)" + }, + { + "dept": "GPIM", + "description": "This course describes the Chinese commercial, organizational, and cultural environment. Case studies of foreign businesses in China are examined, and the opportunities and pitfalls of operation in China are considered. Negotiation with Chinese counterparts is covered through a negotiation exercise. The focus is on mainland China, but some attention is given to business in Hong Kong and Taiwan as well. Students are required to prepare business plans for proposed Chinese ventures. Renumbered from IRGN 461. Students may not receive credit for GPIM 461 and IRGN 461.", + "edges_from": [], + "edges_to": [], + "id": 3216, + "label": "GPIM 461", + "title": "Doing Business in China (4)" + }, + { + "dept": "INTL", + "description": "Required seminar for International Studies seniors. Readings and discussion of topics in international and comparative studies from an interdisciplinary perspective. Emphasis on independent work and completion of a research paper. ", + "edges_from": [ + 3218, + 3219 + ], + "edges_to": [], + "id": 3217, + "label": "INTL 190", + "title": "Seminar in International Studies (4)" + }, + { + "dept": "INTL", + "description": "", + "edges_from": [], + "edges_to": [ + 3217 + ], + "id": 3218, + "label": "INTL 101", + "title": "" + }, + { + "dept": "INTL", + "description": "", + "edges_from": [], + "edges_to": [ + 3217 + ], + "id": 3219, + "label": "INTL 102", + "title": "" + }, + { + "dept": "MATH", + "description": "Topics will vary from year to year in areas of mathematics and their development. Topics may include the evolution of mathematics from the Babylonian period to the eighteenth century using original sources, a history of the foundations of mathematics and the development of modern mathematics. ", + "edges_from": [ + 133 + ], + "edges_to": [], + "id": 3220, + "label": "MATH 163", + "title": "History of Mathematics (4)" + }, + { + "dept": "Soc/G", + "description": "In this seminar students revise an existing research paper (usually the one they wrote for Sociology 252) for submission to an academic journal. Emphasis is placed on conceptual development, writing style and structure, and drawing links to the existing theoretical and empirical literature. ", + "edges_from": [], + "edges_to": [], + "id": 3221, + "label": "Soc/G 253", + "title": "Research Practicum II (4)" + }, + { + "dept": "Soc/G", + "description": "In this seminar students work on a research project, which might have originated in a paper written for another course. The goal is to produce the first draft of a paper that will be submitted to an academic journal. ", + "edges_from": [], + "edges_to": [], + "id": 3222, + "label": "Soc/G 252", + "title": "Research Practicum I (4)" + }, + { + "dept": "Soc/G", + "description": "This course explores institutional change in contemporary Latin America, and compares this area with other transitional societies. Issues include social consequences of economic liberalization, changing forms of inequality, dynamics of civil society, conceptions of citizenship, quality and future of democracy. ", + "edges_from": [], + "edges_to": [], + "id": 3223, + "label": "Soc/G 258", + "title": "Institutional Change in the Contemporary World; Latin American Societies in a Comparative Perspective (4)" + }, + { + "dept": "MGTF", + "description": "Introduces ways to identify, measure, estimate, and control risks in the context of risk management as applied in fixed income, foreign exchange, and equity markets. Reviews the pricing and hedging applications of derivatives, such as futures, options, and CDSs. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 4266 + ], + "id": 3224, + "label": "MGTF 403", + "title": "Advanced Financial Risk Management (4)" + }, + { + "dept": "POLI", + "description": "An analysis of the political system of the Federal Republic of Germany with an emphasis on the party system, elections, executive-legislative relations, and federalism. Comparisons will be made with other West European democracies and the Weimar Republic.", + "edges_from": [], + "edges_to": [], + "id": 3225, + "label": "POLI 120B", + "title": "The German Political System (4)" + }, + { + "dept": "POLI", + "description": "This course will examine the consequences of social and economic change in France. Specific topics will include institutional development under a semi-presidential system, parties, and elections.", + "edges_from": [], + "edges_to": [], + "id": 3226, + "label": "POLI 120C", + "title": "Politics in France (4)" + }, + { + "dept": "POLI", + "description": "An examination of various paths of European political development through consideration of the conflicts that shaped these political systems: the commercialization of agriculture; religion and the role of the church; the army and the state bureaucracy; and industrialization. Stress will be on alternative paradigms and on theorists.", + "edges_from": [], + "edges_to": [], + "id": 3227, + "label": "POLI 120A", + "title": "Political Development of Western Europe (4)" + }, + { + "dept": "POLI", + "description": "Emphasis will be placed on the interaction between British political institutions and processes and contemporary policy problems: the economy, social policy, foreign affairs. The course assumes no prior knowledge of British politics and comparisons with the United States will be drawn.", + "edges_from": [], + "edges_to": [], + "id": 3228, + "label": "POLI 120G", + "title": "British Politics (4)" + }, + { + "dept": "POLI", + "description": "Consideration of political, economic, and security factors that have kept Germany at the center of European developments for more than a century.", + "edges_from": [], + "edges_to": [], + "id": 3229, + "label": "POLI 120D", + "title": "Germany: Before, During, and After Division (4)" + }, + { + "dept": "POLI", + "description": "Introduction to the politics and societies of the Scandinavian states (Denmark, Finland, Norway, and Sweden). Focuses on historical development, political culture, constitutional arrangements, political institutions, parties and interest groups, the Scandinavian welfare states, and foreign policy. ", + "edges_from": [], + "edges_to": [], + "id": 3230, + "label": "POLI 120E", + "title": "Scandinavian Politics (4)" + }, + { + "dept": "USP", + "description": "This course introduces students to major concepts, demographic trends, and the diversity of the aging experience. Through site visits, community-based research, and interactions with elders, students will understand the social and structural determinants of health and well-being across the life course. ", + "edges_from": [], + "edges_to": [ + 5161 + ], + "id": 3231, + "label": "USP 141A", + "title": "Life Course Scholars Research and Core Fundamentals" + }, + { + "dept": "POLI", + "description": "This course reviews the origins and development of the European Community/European Union and its institutions, theories of integration and the challenges inherent in the creation of a supranational political regime.", + "edges_from": [], + "edges_to": [], + "id": 3232, + "label": "POLI 120H", + "title": "European Integration (4)" + }, + { + "dept": "COMM", + "description": "History, politics, social organization, and ideology of the American news media. Surveys of the development of the news media as an institution, from earliest new newspapers to modern mass news media. ", + "edges_from": [ + 1851, + 540 + ], + "edges_to": [], + "id": 3233, + "label": "COMM 109N", + "title": "MC: American News Media (4)" + }, + { + "dept": "MATH", + "description": "Approximation and Nonlinear Equations (4)", + "edges_from": [], + "edges_to": [ + 3235 + ], + "id": 3234, + "label": "MATH 270B", + "title": "Numerical" + }, + { + "dept": "MATH", + "description": "Initial value problems (IVP) and boundary value problems (BVP) in ordinary differential equations. Linear methods for IVP: one and multistep methods, local truncation error, stability, convergence, global error accumulation. Runge-Kutta (RK) Methods for IVP: RK methods, predictor-corrector methods, stiff systems, error indicators, adaptive time-stepping. Finite difference, finite volume, collocation, spectral, and finite element methods for BVP; a priori and a posteriori error analysis, stability, convergence, adaptivity. ", + "edges_from": [ + 3234 + ], + "edges_to": [], + "id": 3235, + "label": "MATH 270C", + "title": "Numerical Ordinary Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "Error analysis of the numerical solution of linear equations and least squares problems for the full rank and rank deficient cases. Error analysis of numerical methods for eigenvalue problems and singular value problems. Iterative methods for large sparse systems of linear equations. ", + "edges_from": [], + "edges_to": [], + "id": 3236, + "label": "MATH 270A", + "title": "Numerical Linear Algebra (4)" + }, + { + "dept": "POLI", + "description": "This course examines reasons why we can be cautiously optimistic about development, growth, peace and democratization in Africa. Sample cases include Botswana\u2019s resource blessing, postconflict reconstruction in Uganda, and democratization in Ghana, Benin, and Niger.", + "edges_from": [], + "edges_to": [], + "id": 3237, + "label": "POLI 120P", + "title": "Africa\u2019s Success Stories (4)" + }, + { + "dept": "ANTH", + "description": "This course examines conceptions of race from evolutionary and sociocultural perspectives. We will critically examine how patterns of current human genetic variation map onto conceptions of race. We will also focus on the history of the race concept and explore ways in which biomedical researchers and physicians use racial categories today. Finally, we will examine the social construction of race, and the experiences and consequences of racism on health in the United States and internationally.", + "edges_from": [], + "edges_to": [], + "id": 3238, + "label": "ANTH 43", + "title": "Introduction to Biology and Culture of Race (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 257A/BENG 202.) Introduction to methods for sequence analysis. Applications to genome and proteome sequences. Protein structure, sequence-structure analysis. ", + "edges_from": [ + 3240 + ], + "edges_to": [], + "id": 3239, + "label": "CSE 282/BENG 202", + "title": "Bioinformatics II: Sequence and Structure Analysis\u2014Methods and Applications (4)" + }, + { + "dept": "PHARM", + "description": "", + "edges_from": [], + "edges_to": [ + 3239 + ], + "id": 3240, + "label": "PHARM 201", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 3241, + "label": "Linguistics/Arabic (LIAB) 1A", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "ANTH", + "description": "This course examines new media fandoms through the representation and reception of gender and sexuality in Korean media consumed around the world by highlighting how Korean images are differently interpreted by other national groups. Contrasting various understandings of masculinity, homosexuality, and transgenderism, we explore how the meanings attached to gender and sexuality are not fixed by the productive frame of Korean society, but cocreated and reimagined by international audiences.", + "edges_from": [], + "edges_to": [], + "id": 3242, + "label": "ANTH 44", + "title": "Gender, Sexuality, and New Media Fandom in the Korean Wave (4)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1CX. ", + "edges_from": [ + 148, + 149 + ], + "edges_to": [], + "id": 3243, + "label": "Linguistics/Arabic (LIAB) 1C", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1BX. ", + "edges_from": [ + 336, + 337 + ], + "edges_to": [], + "id": 3244, + "label": "Linguistics/Arabic (LIAB) 1B", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1EX. ", + "edges_from": [ + 3246, + 3247 + ], + "edges_to": [], + "id": 3245, + "label": "Linguistics/Arabic (LIAB) 1E", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3245, + 5015 + ], + "id": 3246, + "label": "LIAB 1D", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3245, + 5015 + ], + "id": 3247, + "label": "LIAB 1DX", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1DX. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 3249, + 3250 + ], + "edges_to": [], + "id": 3248, + "label": "Linguistics/Arabic (LIAB) 1D", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3248, + 5069 + ], + "id": 3249, + "label": "LIAB 1CX", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3248, + 5069 + ], + "id": 3250, + "label": "LIAB 1C", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "A course to increase the proficiency level of students who have completed LIAB 1E/1EX or who are at an equivalent level. Attention to listening comprehension, conversation, vocabulary building, reading, grammar analysis, and culture. ", + "edges_from": [ + 3252, + 3253 + ], + "edges_to": [], + "id": 3251, + "label": "Linguistics/Arabic (LIAB) 1F", + "title": "Intermediate Arabic Conversation and Analysis (4)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3251 + ], + "id": 3252, + "label": "LIAB 1E", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 3251 + ], + "id": 3253, + "label": "LIAB 1EX", + "title": "" + }, + { + "dept": "HITO", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in history (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 3254, + "label": "HITO 192", + "title": "Senior Seminar in History (1)" + }, + { + "dept": "HITO", + "description": "A program of independent study providing candidates for history honors an opportunity to develop, in consultation with an adviser, a preliminary proposal for the honors essay. An IP grade will be awarded at the end of this quarter. A final grade will be given for both quarters at the end of HITO 195. ", + "edges_from": [], + "edges_to": [], + "id": 3255, + "label": "HITO 194", + "title": "History Honors (4)" + }, + { + "dept": "HITO", + "description": "Independent study under the supervision of a faculty member leading to the preparation of an honors essay. A letter grade for both HITO 194 and 195 will be given at the completion of this quarter. ", + "edges_from": [], + "edges_to": [], + "id": 3256, + "label": "HITO 195", + "title": "The Honors Essay (4)" + }, + { + "dept": "HITO", + "description": "The nature and uses of history are explored through the study of the historian\u2019s craft based on critical analysis of historical literature relating to selected topics of concern to all historians. Required of all candidates for history honors and open to other interested students with the instructor\u2019s consent. Department stamp required.", + "edges_from": [], + "edges_to": [], + "id": 3257, + "label": "HITO 196", + "title": "Honors Seminar (4)" + }, + { + "dept": "HIUS", + "description": "The historical development of constitutional", + "edges_from": [], + "edges_to": [], + "id": 3258, + "label": "HIUS 152B", + "title": "A Constitutional History of the United States since 1865 (4)" + }, + { + "dept": "HITO", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3259, + "label": "HITO 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "HITO", + "description": "Independent study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3260, + "label": "HITO 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "MAE", + "description": "Introduction to the air and aquatic environments. Buoyancy, stratification, and rotation. Earth surface energy balance. Introduction to the atmospheric boundary layer. Advection and diffusion. Turbulent diffusion and dispersion in rivers and in the atmospheric boundary layer. Surface waves and internal gravity waves. ", + "edges_from": [ + 168, + 169 + ], + "edges_to": [ + 3262 + ], + "id": 3261, + "label": "MAE 122", + "title": "Flow and Transport in the Environment (4)" + }, + { + "dept": "MAE", + "description": "Overview of air pollution and wastes and their impact. Characteristics of air pollutants. Air pollution transport. Atmospheric stability. Plume rise and dispersion. Meteorological data. Selecting the appropriate air quality model and case studies. Modeling complex terrain situations. Current air quality modeling issues. Laws and regulations to control air pollution. ", + "edges_from": [ + 3261, + 3263 + ], + "edges_to": [], + "id": 3262, + "label": "MAE 121", + "title": "Air Pollution Transport and Dispersion Modeling (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3262 + ], + "id": 3263, + "label": "MAE 125A", + "title": "" + }, + { + "dept": "MAE", + "description": "Overview of basic fission and fusion processes. Elementary fission reactor physics and engineering; environmental and waste disposal issues. Survey of fusion technology issues and perspectives. May not receive credit for both MAE 118C and MAE 120. ", + "edges_from": [ + 168, + 169 + ], + "edges_to": [], + "id": 3264, + "label": "MAE 120", + "title": "Introduction to Nuclear Energy (4)" + }, + { + "dept": "HIEA", + "description": "Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China\u2019s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 170.", + "edges_from": [], + "edges_to": [], + "id": 3265, + "label": "HIEA 270", + "title": "Love and Marriage in Chinese History (4)" + }, + { + "dept": "PHYS", + "description": "Directed group study on a topic, or in a field not included in the regular departmental curriculum. P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 3266, + "label": "PHYS 98", + "title": "Directed Group Study (2)" + }, + { + "dept": "PHYS", + "description": "Independent reading or research on a topic by special arrangement with a faculty member. P/NP grading only. ", + "edges_from": [], + "edges_to": [], + "id": 3267, + "label": "PHYS 99", + "title": "Independent Study (2)" + }, + { + "dept": "ETHN", + "description": "This course examines the impact of the Vietnam War on three populations: Americans, Vietnamese in Vietnam, and Viet Kieu (overseas Vietnamese). We will supplement scholarly texts on the war with films, literature, and visits to war museums and monuments. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 3268, + "label": "ETHN 155GS", + "title": "Critical Perspectives on the Vietnam War (4)" + }, + { + "dept": "ENG", + "description": "Learn basics of start-up through a series of lectures, workshops, and assignments. Students will learn to effectively communicate the values of their ideas to investors and partners. Learn to validate market potential of a technology. ", + "edges_from": [], + "edges_to": [], + "id": 3269, + "label": "ENG 208", + "title": "Basics of Entrepreneurism and Technology Commercialization (4)" + }, + { + "dept": "TDDE", + "description": "A course designed to expose the theatre design students to a variety of specialized topics that will vary from quarter to quarter. May be taken for credit three times. ", + "edges_from": [ + 128 + ], + "edges_to": [], + "id": 3270, + "label": "TDDE 131", + "title": "Special Topics in Theatre Design (4)" + }, + { + "dept": "TDDE", + "description": "A production-oriented course that continues", + "edges_from": [], + "edges_to": [], + "id": 3271, + "label": "TDDE 130", + "title": "Assistant Designer (2\u20136)" + }, + { + "dept": "TDDE", + "description": "Main Stage Production: Design (4)", + "edges_from": [], + "edges_to": [], + "id": 3272, + "label": "TDDE 132", + "title": "Undergraduate" + }, + { + "dept": "LTEU", + "description": "A study of literary works from Pushkin to the present.", + "edges_from": [], + "edges_to": [], + "id": 3273, + "label": "LTEU 150A-B-C", + "title": "Survey of Russian and Soviet Literature in Translation, 1800 to the Present (4-4-4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 110) Building upon the introductory urban politics course, the advanced topics course explores issues such as community power, minority empowerment, and the politics of growth. A research paper is required. Students may not receive credit for both POLI 102J and USP 110. ", + "edges_from": [], + "edges_to": [], + "id": 3274, + "label": "POLI 102J", + "title": "Advanced Topics in Urban Politics (4)" + }, + { + "dept": "POLI", + "description": "The lives of individuals living in ghetto poverty in the United States. Causes and consequences of ghetto poverty. Political debates surrounding the underclass and different possible solutions. ", + "edges_from": [], + "edges_to": [], + "id": 3275, + "label": "POLI 102K", + "title": "The Urban Underclass (4)" + }, + { + "dept": "COGS", + "description": "Behavior draws on a wide range of genes acting as a complex source of information. Model organisms\u2014bacteria, Paramecium, C. elegans, Drosophila, and mice\u2014have provided insight into how genes influence both innate and learned behaviors. ", + "edges_from": [ + 3080, + 238 + ], + "edges_to": [], + "id": 3276, + "label": "COGS 169", + "title": "Genetic Information for Behavior: From Single Cells to Mammals (4)" + }, + { + "dept": "TDGE", + "description": "An exploration of fundamental ways of seeing and thinking about the performance space. A look at the design process as it reflects styles and attitudes through an examination of text/image/meaning/message in theatre, dance, opera, and visual arts. With a special emphasis on the \u201csolution-finding process\u201d in design, as a leap from text to context, to finalized design. ", + "edges_from": [ + 128 + ], + "edges_to": [], + "id": 3277, + "label": "TDGE 133", + "title": "Visual Ideas (4)" + }, + { + "dept": "TDGE", + "description": "This class examines disability in the performative context, exploring the representation of people with disabilities and the struggle for access and inclusion. The frame of advocacy, understanding, and creative collaboration will deepen the historical perspective on disability. ", + "edges_from": [], + "edges_to": [], + "id": 3278, + "label": "TDGE 134", + "title": "Disability and Performative Exploration: Struggle for Inclusion (4)" + }, + { + "dept": "LIGN", + "description": "An examination of sociolinguistic research on Deaf communities throughout the world, including: sociohistorical contexts for phonological, lexical and syntactic variation, contact between languages, multilingualism, language policies and planning, second language learning, language attitudes, and discourse analysis of specific social contexts. Course will be conducted in ASL. ", + "edges_from": [ + 3280 + ], + "edges_to": [], + "id": 3279, + "label": "LIGN 146", + "title": "Sociolinguistics in Deaf Communities (4)" + }, + { + "dept": "LISL", + "description": "", + "edges_from": [], + "edges_to": [ + 5401, + 3286, + 3279 + ], + "id": 3280, + "label": "LISL 1C", + "title": "" + }, + { + "dept": "POLI", + "description": "Politics and policy-making issues in regulation. Themes: regulation versus legislation; general versus specific grants of regulatory power; market versus command mechanisms; private property; and risk assessment. Emphasis on American regulatory policy, examples from current regulatory debates (e.g., health care and environment). ", + "edges_from": [], + "edges_to": [], + "id": 3281, + "label": "POLI 102L", + "title": "The Politics of Regulation (4)" + }, + { + "dept": "ETHN", + "description": "This course explores the genesis, evolution, and contradictions of racially heterogeneous societies in the Americas, from European conquest to the present. Topics: the social history of Native Americans, blacks, and Asians, their interactions with European settlers, and racial, sexual, and class divisions.", + "edges_from": [], + "edges_to": [], + "id": 3282, + "label": "ETHN 119", + "title": "Race in the Americas (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3283, + "label": "LTEN 157", + "title": "Captivity and Prison Narratives (4)" + }, + { + "dept": "POLI", + "description": "Examines selected issues and moments in the political history of the United States, comparing competing explanations and analyses of US politics. Likely topics include the founding, \u201cAmerican exceptionalism,\u201d change in the party system, race in US politics, the \u201cnew institutionalism.\u201d", + "edges_from": [], + "edges_to": [], + "id": 3284, + "label": "POLI 102C", + "title": "American Political Development (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3285, + "label": "LTEN 155", + "title": "Interactions between American Literature and the Visual Arts (4)" + }, + { + "dept": "LIGN", + "description": "The study of how sign languages are structured, and how they are understood and produced by adults. Topics include the contrast between gesture and language, sign language acquisition, brain processing, sociolinguistics, and the role of sign language in reading. ", + "edges_from": [ + 752, + 3280 + ], + "edges_to": [], + "id": 3286, + "label": "LIGN 148", + "title": "Psycholinguistics of Sign Language (4)" + }, + { + "dept": "POLI", + "description": "This course will explore both the role played by mass media in political institutions, processes and behaviors, and reciprocally, the roles played by political systems in guiding communication processes.", + "edges_from": [], + "edges_to": [], + "id": 3287, + "label": "POLI 102F", + "title": "Mass Media and Politics (4)" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of American politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 3288, + "label": "POLI 102G", + "title": "Special Topics in American Politics (4)" + }, + { + "dept": "POLI", + "description": "The Voting Rights Act (VRA) is one of the most significant and controversial acts in American history. We will examine the environment that led to its introduction, the legislative process, executive implementation, and the political ramifications and subsequent state government and court decisions.", + "edges_from": [], + "edges_to": [], + "id": 3289, + "label": "POLI 102D", + "title": "Voting Rights Act: Fifty Years Later (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP107) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the \u201cnew\u201d ethnic politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race.", + "edges_from": [], + "edges_to": [], + "id": 3290, + "label": "POLI 102E", + "title": "Urban Politics (4)" + }, + { + "dept": "HIUS", + "description": "The historical development of constitutional thought and practice in the United States from the era of the American Revolution through the Civil War, with special attention to the role of the Supreme Court under Chief Justices Marshall and Taney.", + "edges_from": [], + "edges_to": [], + "id": 3291, + "label": "HIUS 152A", + "title": "A Constitutional History of the United States to 1865 (4)" + }, + { + "dept": "COGS", + "description": "This course follows up on the basics of multimedia design taught in Cognitive Science 187A. Students will probe more deeply into selective topics, such as animation, navigation, graphical display of information, and narrative coherence. ", + "edges_from": [ + 3293 + ], + "edges_to": [ + 4017, + 4590 + ], + "id": 3292, + "label": "COGS 187B", + "title": "Practicum in Professional Web Design (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 393, + 682, + 2670, + 1074, + 2647, + 3294 + ], + "edges_to": [ + 4017, + 4015, + 3292, + 4590, + 2857 + ], + "id": 3293, + "label": "COGS 187A", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 4368, + 3293 + ], + "id": 3294, + "label": "COGS 10", + "title": "" + }, + { + "dept": "BENG", + "description": "Introduction to the nonlinear dynamics of neurons and neural systems using bifurcation theory and chaotic motions, at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells. Laboratory exercises will accompany the lectures. ", + "edges_from": [], + "edges_to": [], + "id": 3295, + "label": "BENG 260/BGGN 260/PHYS 279", + "title": "Neurodynamics (4)" + }, + { + "dept": "EDS", + "description": "(Same as Phys 180) A course on how people learn and understand key concepts in Newtonian mechanics. Reading in physics and cognitive science plus fieldwork teaching and evaluating K\u201312 students. Useful for students interested in teaching. ", + "edges_from": [], + "edges_to": [], + "id": 3296, + "label": "EDS 105", + "title": "Teaching and Learning Physics (4)" + }, + { + "dept": "VIS", + "description": "During the later centuries of the Roman Empire, the ancient world underwent a profound crisis. Beset by barbarian invasions, torn by internal conflict and drastic social change, inflamed with religious passion that was to lead to a transformed vision of the individual, the world, and the divine, this momentous age saw the conversion of the Roman world to Christianity, the transfer of power from Rome to Constantinople, and the creation of a new society and culture. Out of this ferment, during the centuries from Constantine to Justinian, there emerged new art forms fit to represent the new vision of an otherworldly reality: a vaulted architecture of diaphanous space, a new art of mosaic, which dissolved surfaces in light, a figural language both abstractly symbolic and urgently expressive. The great creative epoch transformed the heritage of classical Greco-Roman art and laid the foundations of the art of the Christian West and Muslim East for the next thousand years. Recommended preparation: VIS 20 or 120B. ", + "edges_from": [], + "edges_to": [], + "id": 3297, + "label": "VIS 120C", + "title": "Late Antique Art (4)" + }, + { + "dept": "ETHN", + "description": "This course examines the diversity of today\u2019s immigrants\u2014their social origins and contexts of exit and their adaptation experiences and contexts of incorporation.", + "edges_from": [], + "edges_to": [], + "id": 3298, + "label": "ETHN 118", + "title": "Contemporary Immigration Issues (4)" + }, + { + "dept": "VIS", + "description": "This seminar will address and critique various approaches to studying the art of non-Western societies with respect to their own aesthetic and cultural systems. Students are encouraged to explore comparative philosophies of art and test paradigms of Western aesthetic scholarship. Recommended preparation: VIS 21A or 21B or 112 or two upper-division courses in art history strongly recommended. ", + "edges_from": [], + "edges_to": [], + "id": 3299, + "label": "VIS 117E", + "title": "Problems in Ethnoaesthetics (4)" + }, + { + "dept": "MAE", + "description": "and Photonic Properties of Materials (4)", + "edges_from": [], + "edges_to": [], + "id": 3300, + "label": "MAE 265A", + "title": "Electronic" + }, + { + "dept": "MATH", + "description": "to Numerical Optimization: Linear Programming (4)", + "edges_from": [], + "edges_to": [ + 4512 + ], + "id": 3301, + "label": "MATH 171A", + "title": "Introduction" + }, + { + "dept": "EDS", + "description": "in Science and Math Teaching/Learning (2)", + "edges_from": [], + "edges_to": [], + "id": 3302, + "label": "EDS 39", + "title": "Practicum" + }, + { + "dept": "MATH", + "description": "to Numerical Optimization: Nonlinear Programming (4)", + "edges_from": [], + "edges_to": [], + "id": 3303, + "label": "MATH 171B", + "title": "Introduction" + }, + { + "dept": "PHIL", + "description": "Different perspectives on central issues in contemporary political philosophy, such as the nature of state authority and political obligation, the limits of government and individual liberty, liberalism and its critics, equality and distributive justice. ", + "edges_from": [], + "edges_to": [], + "id": 3304, + "label": "PHIL 167", + "title": "Contemporary Political Philosophy (4)" + }, + { + "dept": "MUS", + "description": "First course in a sequence for music majors and nonmajors pursuing an emphasis in composition. The course examines \u201csound\u201d itself and various ways of building sounds into musical structures and develops skills in music notation. Students compose solo pieces in shorter forms. Students may not receive credit for both MUS 33 and 33A. ", + "edges_from": [ + 1494 + ], + "edges_to": [ + 3306 + ], + "id": 3305, + "label": "MUS 33A", + "title": "Introduction to Composition I (4)" + }, + { + "dept": "MUS", + "description": "Second part of course sequence for students pursuing a composition emphasis. Course continues the building of skills with the organization of basic compositional elements: pitch, rhythm, and timbre. It explores issues of musical texture, expression, and structure in traditional and contemporary repertoire. Writing for two instruments in more extended forms. ", + "edges_from": [ + 3305 + ], + "edges_to": [ + 3307 + ], + "id": 3306, + "label": "MUS 33B", + "title": "Introduction to Composition II (4)" + }, + { + "dept": "MUS", + "description": "Third part of course sequence for students pursuing a composition emphasis. Course continues the development of skills in instrumentation and analysis. It includes a survey of advanced techniques in contemporary composition, with additional focus on notation, part-preparation, and the art of writing for small groups of instruments. ", + "edges_from": [ + 3306 + ], + "edges_to": [ + 3557 + ], + "id": 3307, + "label": "MUS 33C", + "title": "Introduction to Composition III (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SIO 213.) Mixing mechanisms, their identification, description and modeling. Introduction to turbulence, semi-empirical theories, importance of coherent structures, effects of stratification and rotation on turbulent structure, entrainment and mixing. S/U grades permitted.", + "edges_from": [], + "edges_to": [], + "id": 3308, + "label": "MAE 216", + "title": "Turbulence and Mixing (4)" + }, + { + "dept": "MAE", + "description": "Fundamental aspects of flows of reactive gases, with emphasis on processes of combustion, including the relevant thermodynamics, chemical kinetics, fluid mechanics, and transport processes. Topics may include deflagrations, detonations, diffusion flames, ignition, extinction, and propellant combustion. ", + "edges_from": [ + 513, + 676, + 677, + 168, + 169, + 988, + 157 + ], + "edges_to": [], + "id": 3309, + "label": "MAE 211", + "title": "Introduction to Combustion (4)" + }, + { + "dept": "MAE", + "description": "Fluid mechanics, thermodynamics and combustion processes involved in propulsion of aircraft and rockets by air breathing engines, and solid and liquid propellant rocket engines characteristics and matching of engine components; diffusers, compressors, combustors, turbines, pumps, nozzles. ", + "edges_from": [ + 169, + 513, + 988, + 157, + 3311 + ], + "edges_to": [], + "id": 3310, + "label": "MAE 213", + "title": "Mechanics of Propulsion (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3310 + ], + "id": 3311, + "label": "MAE 212", + "title": "" + }, + { + "dept": "LTRU", + "description": "Author in Russian Literature in Translation (4)", + "edges_from": [], + "edges_to": [], + "id": 3312, + "label": "LTRU 123", + "title": "Single" + }, + { + "dept": "CHEM", + "description": "This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science. ", + "edges_from": [ + 960, + 953, + 3314, + 2859 + ], + "edges_to": [], + "id": 3313, + "label": "CHEM 141", + "title": "Organic Nanomaterials (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 3313, + 3835, + 4221, + 5859 + ], + "id": 3314, + "label": "CHEM 140AH", + "title": "" + }, + { + "dept": "DSGN", + "description": "Independent literature or laboratory research by arrangement with and under direction of a design faculty member. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3315, + "label": "DSGN 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "CSE", + "description": "Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Cross-listed with COGS 230. ", + "edges_from": [], + "edges_to": [], + "id": 3316, + "label": "CSE 216", + "title": "Research Topics in Human-Computer Interaction (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design are discussed. P/NP grades only. May be taken for credit four times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3317, + "label": "DSGN 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "RELI", + "description": "Topical studies in the history of religion in American society, ranging from the Puritans to the New Age. ", + "edges_from": [], + "edges_to": [], + "id": 3318, + "label": "RELI 134", + "title": "Topics in American Religion (4)" + }, + { + "dept": "ETHN", + "description": "This discussion-based course will focus on the application of advanced research methods to the design of extensive, independent research-based projects. ", + "edges_from": [ + 3320, + 628 + ], + "edges_to": [ + 4712 + ], + "id": 3319, + "label": "ETHN 100H", + "title": "Honors Research Design (4)" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [ + 628 + ], + "edges_to": [ + 4712, + 5791, + 3319 + ], + "id": 3320, + "label": "ETHN 100B", + "title": "" + }, + { + "dept": "MATH", + "description": "Spline curves, NURBS, knot insertion, spline interpolation, illumination models, radiosity, and ray tracing. ", + "edges_from": [ + 3322 + ], + "edges_to": [], + "id": 3321, + "label": "MATH 155B", + "title": "Topics in Computer Graphics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3321 + ], + "id": 3322, + "label": "MATH 155A", + "title": "" + }, + { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual expression. Students will work on individual projects in lighting, costume, and scenic design. The course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "edges_from": [ + 3324, + 3325, + 3326, + 3327 + ], + "edges_to": [], + "id": 3323, + "label": "TDGR 270C", + "title": "Design Studio I: Lighting Design (4)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3323 + ], + "id": 3324, + "label": "TDGR 270A", + "title": "" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [ + 3326 + ], + "edges_to": [ + 3323 + ], + "id": 3325, + "label": "TDGR 270B", + "title": "" + }, + { + "dept": "THGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3328, + 3323, + 3325 + ], + "id": 3326, + "label": "THGR 270A", + "title": "" + }, + { + "dept": "THGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3328, + 3323 + ], + "id": 3327, + "label": "THGR 270B", + "title": "" + }, + { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual/auditory expression. Students will work on individual projects in sound, lighting, costume, and scenic design. This course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "edges_from": [ + 3326, + 3327 + ], + "edges_to": [], + "id": 3328, + "label": "TDGR 270D", + "title": "Design Studio I: Sound Design (4)" + }, + { + "dept": "PHIL", + "description": "A study of issues in analytical jurisprudence such as the nature of law, the relation between law and morality, and the nature of legal interpretation and issues in normative jurisprudence such as the justification of punishment, paternalism and privacy, freedom of expression, and affirmative action. ", + "edges_from": [], + "edges_to": [], + "id": 3329, + "label": "PHIL 168", + "title": "Philosophy of Law (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 653, + 654 + ], + "edges_to": [ + 2085, + 399 + ], + "id": 3330, + "label": "SE 101B", + "title": "" + }, + { + "dept": "BGGN", + "description": "This course offers training in writing about students\u2019 own research; presenting the background to their thesis, preparing a figure, analyzing, and discussing data in a written form. Using published literature on scientific writing, students will practice revising their own writing and providing constructive feedback to their peers. Letter grades only.\u00a0Enrollment restricted to MS students only in the following major code: BI84.", + "edges_from": [], + "edges_to": [], + "id": 3331, + "label": "BGGN 293", + "title": "Scientific Writing in Biology (2)" + }, + { + "dept": "BGGN", + "description": "Students meet experienced science professionals from a wide variety", + "edges_from": [], + "edges_to": [], + "id": 3332, + "label": "BGGN 292", + "title": "Professional Pathways in Biological Sciences (1)" + }, + { + "dept": "BGGN", + "description": "Group and individual discussion of research activities and of current literature. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3333, + "label": "BGGN 297", + "title": "Research Conference (1\u20133)" + }, + { + "dept": "BGGN", + "description": "Students learn effective ways of presenting their research to biologists and to the general public. Examples of posters and research talks will be analyzed and discussed. Students will practice short and extended oral presentations of their research. As a final project, students will prepare and present a poster of their research in the biological sciences Student Research Showcase. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.", + "edges_from": [], + "edges_to": [], + "id": 3334, + "label": "BGGN 295", + "title": "Scientific Presentation in Biology (2)" + }, + { + "dept": "BGGN", + "description": "Directed research on dissertation topic. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3335, + "label": "BGGN 299", + "title": "Thesis Research in Biology (1\u201312)" + }, + { + "dept": "BGGN", + "description": "An introduction to contemporary laboratory techniques and research interests through independent, original projects under the direction of individual faculty members. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3336, + "label": "BGGN 298", + "title": "Laboratory Projects in Biology (3\u201312)" + }, + { + "dept": "HIEU", + "description": "Topics will vary from year to year. Graduate", + "edges_from": [], + "edges_to": [], + "id": 3337, + "label": "HIEU 178/278", + "title": "Soviet History (4)" + }, + { + "dept": "TDAC", + "description": "Participation in a fully staged season production that is directed by a faculty member or guest for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ", + "edges_from": [], + "edges_to": [], + "id": 3338, + "label": "TDAC 123", + "title": "Advanced Studies in Performance (4)" + }, + { + "dept": "TDAC", + "description": "Participation in a fully staged theatre production directed by an MFA or PhD student for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ", + "edges_from": [], + "edges_to": [], + "id": 3339, + "label": "TDAC 122", + "title": "Ensemble: Undergraduate Production (4)" + }, + { + "dept": "TDAC", + "description": "An intensive theatre practicum designed to generate theatre created by an ensemble with particular emphasis upon the analysis of text. Students will explore and analyze the script and its author. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell\u2019arte. Audition may be required. A maximum of four units may be used for major credit. (Cross-listed with ETHN 146A.) ", + "edges_from": [], + "edges_to": [], + "id": 3340, + "label": "TDAC 120", + "title": "Ensemble (4)" + }, + { + "dept": "BIPN", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 3341, + "label": "BIPN 194", + "title": "Advanced Topics in Modern Biology: Physiology and Neuroscience (2)" + }, + { + "dept": "PHYS", + "description": "Physics of the solid-state. Binding mechanisms, crystal structures and symmetries, diffraction, reciprocal space, phonons, free and nearly free electron models, energy bands, solid-state thermodynamics, kinetic theory and transport, semiconductors. ", + "edges_from": [ + 200, + 199, + 3343 + ], + "edges_to": [ + 3344 + ], + "id": 3342, + "label": "PHYS 152A", + "title": "Condensed Matter Physics (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 33, + 578, + 215, + 30, + 135 + ], + "edges_to": [ + 4724, + 3342, + 4727 + ], + "id": 3343, + "label": "CHEM 130", + "title": "" + }, + { + "dept": "PHYS", + "description": "Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ", + "edges_from": [ + 3342 + ], + "edges_to": [], + "id": 3344, + "label": "PHYS 152B", + "title": "Electronic Materials (4)" + }, + { + "dept": "ENG", + "description": "Offered in the fall quarter, ENG 1 focuses on study skills, academic planning, time management, and the use of campus and community resources to help achieve academic, personal, and professional goals. It also presents engineering both as a field of study and as a profession. Activities include presentations by student organization officers and various UC San Diego organizations. Students may not receive credit for both ENG 1 and ECE 1A.", + "edges_from": [], + "edges_to": [], + "id": 3345, + "label": "ENG 1", + "title": "Orientation to Engineering I (1)" + }, + { + "dept": "ENG", + "description": "Offered in the spring quarter, ENG 3 focuses on leadership, engineering as a profession, personal and professional development, ethics, preparation for graduate school, resume development, and job offer evaluation. Activities include presentations by UC San Diego staff and panel discussions with practicing professionals from industry. Students may not receive credit for both ENG 3 and ECE 1C.", + "edges_from": [], + "edges_to": [], + "id": 3346, + "label": "ENG 3", + "title": "Orientation to Engineering III (1)" + }, + { + "dept": "ENG", + "description": "Academic and personal planning, time management, study skills, and paths to personal growth. Activities include individual and collaborative exercises, self-assessments, maintenance of a personal journal, and a final project.", + "edges_from": [], + "edges_to": [], + "id": 3347, + "label": "ENG 2", + "title": "Orientation to Engineering II (1)" + }, + { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "edges_from": [], + "edges_to": [], + "id": 3348, + "label": "EDS 240B", + "title": "Research" + }, + { + "dept": "MDE", + "description": "This course is a seminar series with invited clinician speakers intended to address needs and opportunities for meaningful application of engineering principles in clinical practice, with emphasis on next generation medical devices. ", + "edges_from": [], + "edges_to": [], + "id": 3349, + "label": "MDE 210", + "title": "Medical Devices: Clinical Perspectives (4)" + }, + { + "dept": "MATS", + "description": "Topics include phase equilibria and crystallography, defects and thermodynamics (Kr\u00f6ger-Vink Notation), glass science, electrical and ionic transport behavior, Brouwer diagrams, powder synthesis and compaction, sintering theory and gain growth, mechanical, optical, magnetic, electrical properties, fuel cells. ", + "edges_from": [], + "edges_to": [], + "id": 3350, + "label": "MATS 236", + "title": "Advanced Ceramic (4)" + }, + { + "dept": "ECE", + "description": "Lab-based course. Students will learn how to prototype a mechatronic solution. Topics include: cheap/accessible materials and parts; suppliers; fast prototyping techniques; useful electronic sketches and system integration shortcuts. Students will learn to materialize their electromechanical ideas and make design decisions to minimize cost, improve functionality/robustness. Labs will culminate toward a fully functional robot prototype for demonstration. ", + "edges_from": [ + 3352 + ], + "edges_to": [], + "id": 3351, + "label": "ECE 115", + "title": "Fast Prototyping (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 393, + 394, + 395, + 221 + ], + "edges_to": [ + 3890, + 3351 + ], + "id": 3352, + "label": "ECE 16", + "title": "" + }, + { + "dept": "PHIL", + "description": "Philosophical problems in the development of modern physics, such as the philosophy of space and time, the epistemology of geometry, the philosophical significance of Einstein\u2019s theory of relativity, the interpretation of quantum mechanics, and the significance of modern cosmology. ", + "edges_from": [], + "edges_to": [], + "id": 3353, + "label": "PHIL 146", + "title": "Philosophy of Physics (4)" + }, + { + "dept": "MATS", + "description": "Main focus is the large deformations and instabilities in soft materials, such as elastomers, gels, and biomaterials. Some contents in thermodynamics and finite deformation theory are reviewed and summarized. Fundamental theories are applied to study the mechanics of gels, electroactive polymers, and biomaterials. This course intends to use soft material as an example to illustrate how to study the interaction between mechanics and other fields in materials (e.g., electric field, chemical field). Students may not receive credit for both MAE 276 and MATS 231. ", + "edges_from": [ + 3355 + ], + "edges_to": [], + "id": 3354, + "label": "MATS 231", + "title": "Mechanics of Soft Materials (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3354 + ], + "id": 3355, + "label": "MAE 276", + "title": "" + }, + { + "dept": "BENG", + "description": "Principles and technologies for using genomic information for biomedical applications. Technologies will be introduced progressively, from DNA to RNA to protein to whole cell systems. The integration of biology, chemistry, engineering, and computation will be stressed. Topics include technology for the genome, DNA chips, RNA technologies, proteomic technologies, aphysiomic and phenomic technologies, and analysis of cell function. ", + "edges_from": [ + 2056, + 411, + 3357 + ], + "edges_to": [], + "id": 3356, + "label": "BENG 183", + "title": "Applied Genomic Technologies (4)" + }, + { + "dept": "BICD", + "description": "", + "edges_from": [ + 1193, + 410 + ], + "edges_to": [ + 3356 + ], + "id": 3357, + "label": "BICD 110", + "title": "" + }, + { + "dept": "POLI", + "description": "Introduction to the study of law and courts as political institutions and judges as political actors, including the role of the judiciary in our constitutional system and decision making both within the Supreme Court and within the judicial hierarchy.", + "edges_from": [], + "edges_to": [], + "id": 3358, + "label": "POLI 104D", + "title": "Judicial Politics (4)" + }, + { + "dept": "SE", + "description": "Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. ", + "edges_from": [ + 1785 + ], + "edges_to": [], + "id": 3359, + "label": "SE 184", + "title": "Ground Improvement (4)" + }, + { + "dept": "POLI", + "description": "to Political Science: International Relations (4)", + "edges_from": [], + "edges_to": [], + "id": 3360, + "label": "POLI 12 or 12D", + "title": "Introduction" + }, + { + "dept": "SOCI", + "description": "Modern Jewish Societies and Israeli Society (4)", + "edges_from": [], + "edges_to": [], + "id": 3361, + "label": "SOCI 188F", + "title": "" + }, + { + "dept": "HIEA", + "description": "This course provides an overview of Southeast Asian culture and history from 800 to the age of imperialism. It addresses regional geography, diversity, religion, political and social structures, mercantile and cultural ties abroad, the arrival of Islam, and the region\u2019s changing relationship with European and Asian power. Students must apply and be accepted into the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 3362, + "label": "HIEA 139GS", + "title": "An Introduction to Southeast Asia (circa 800\u20131900) (4)" + }, + { + "dept": "MAE", + "description": "Linear wave propagation; plane waves; reflection and refraction; dispersion induced by geometry and by material properties. Application of integral transform methods. Selected topics in nonlinear elastic, anelastic, and anisotropic wave propagation. ", + "edges_from": [ + 3364, + 3365, + 3366 + ], + "edges_to": [], + "id": 3363, + "label": "MAE 238", + "title": "Stress Waves in Solids (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 5809, + 3363 + ], + "id": 3364, + "label": "MAE 231C", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 986, + 3366, + 5422 + ], + "edges_to": [ + 5808, + 5809, + 3363 + ], + "id": 3365, + "label": "MAE 231B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 5808, + 5809, + 3363, + 3365 + ], + "id": 3366, + "label": "MAE 231A", + "title": "" + }, + { + "dept": "HILA", + "description": "The course surveys Chile\u2019s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his/her own choosing and develop the topic for class presentation and a final paper. Graduate students are expected to submit a more substantial piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 3367, + "label": "HILA 163/263", + "title": "The History of Chile 1880\u2013Present (4)" + }, + { + "dept": "EDS", + "description": "Directed research on dissertation topic for students who have been admitted to candidacy for the EdD or PhD program. May be taken for credit up to four times for a maximum of forty-eight units. ", + "edges_from": [], + "edges_to": [], + "id": 3368, + "label": "EDS 299", + "title": "Dissertation Research (1\u201312)" + }, + { + "dept": "POLI", + "description": "Course looks at elections in consolidating democracies with an eye to evaluating existing theories of elections with new data. Also explores new empirical patterns in countries around the world, especially Africa, Latin America, Eastern Europe, and the Soviet successor states. ", + "edges_from": [], + "edges_to": [], + "id": 3369, + "label": "POLI 224A", + "title": "Elections in Consolidating Democracies (4)" + }, + { + "dept": "ECE", + "description": "Course participants will explore new methods for robotics, particularly toward enabling robot manipulators in complex environments. This course is structured to rapidly consider the previous techniques in robot manipulation to date and explore methods in reinforcement learning to solve open problems in robot manipulation. Topics will review kinematics, dynamics, low-level control and motion planning, and machine learning approaches. ", + "edges_from": [ + 2905 + ], + "edges_to": [], + "id": 3370, + "label": "ECE 276C", + "title": "Robot Reinforcement Learning (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 115) This course examines how", + "edges_from": [], + "edges_to": [], + "id": 3371, + "label": "POLI 103C", + "title": "Politics and Policymaking in San Diego (4)" + }, + { + "dept": "GPEC", + "description": "This course covers the applied practice of quantitative impact evaluation. The benchmark methodology will be randomized controlled trials. The broader set of nonexperimental tools will be understood through the ways they differ from random assignment. Practical issues in research and survey design will be discussed. Renumbered from IRGN 464. Students may not receive credit for GPEC 464 and IRGN 464. ", + "edges_from": [ + 1840, + 1841, + 1828, + 3373 + ], + "edges_to": [], + "id": 3372, + "label": "GPEC 464", + "title": "Designing Field Experiments (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 3372 + ], + "id": 3373, + "label": "GPCO 468", + "title": "" + }, + { + "dept": "MUS", + "description": "Music of the African Diaspora: Special Topics Seminar (4)", + "edges_from": [], + "edges_to": [], + "id": 3374, + "label": "MUS 150", + "title": "Jazz and the" + }, + { + "dept": "GPEC", + "description": "This course applies theoretical frameworks in microeconomics, international economics, and economic development to study comparative economic development and current issues of economics in Southeast Asia. Topics include economic growth, crises, development mechanisms, households, firms, governments, and institutional foundations. Renumbered from IRGN 462. Students may not receive credit for GPEC 462 and IRGN 462. May be coscheduled with GPEC 262. ", + "edges_from": [ + 2981, + 2983 + ], + "edges_to": [], + "id": 3375, + "label": "GPEC 462", + "title": "Southeast Asian Economies (4)" + }, + { + "dept": "MUS", + "description": "Examination of hip-hop\u2019s music, technology, lyrics, and its influence in graffiti, film, music video, fiction, advertising, gender, corporate investment, government and censorship with a critical focus on race, gender, popular culture, and the politics of creative expression. (Cross-listed with ETHN 128.) ", + "edges_from": [], + "edges_to": [], + "id": 3376, + "label": "MUS 152", + "title": "Hip Hop: The Politics of Culture (4)" + }, + { + "dept": "MUS", + "description": "Examination of media representations of African Americans from slavery to the present focusing on emergence and transmission of enduring stereotypes, their relationship to changing social, political, and economic frameworks, and African Americans\u2019 responses to and interpretations of these mediated images. (Cross-listed with ETHN 164.) ", + "edges_from": [], + "edges_to": [], + "id": 3377, + "label": "MUS 153", + "title": "African Americans and the Mass Media (4)" + }, + { + "dept": "NANO", + "description": "This course illustrates how the ability to tailor the properties of nanomaterials can be used for designing powerful sensing and biosensing devices. Nanosensors based on metal nanoparticles, semiconductor nanowires and nanocrystals, and carbon nanotubes will be covered.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3378, + "label": "NANO 262", + "title": "Nanosensors (4)" + }, + { + "dept": "NANO", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Introduction to thin film and nanomagnetism, including interfacial magnetism, coupling and magneto-transport. Application of nanomagnetism in devices including magnetic recording, MRAM, magnetic processing, and biomedical engineering.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3379, + "label": "NANO 263", + "title": "Magnetic Nanodevices (4)" + }, + { + "dept": "NANO", + "description": "Chemical reaction kinetics coupled with material and energy transport processes for fabrication of nanostructured materials and devices. Chemical vapor deposition, etching, and patterning of films. Nanoparticle, nanofiber, and nanotube growth. Theory, simulation, and reactor design.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3380, + "label": "NANO 260", + "title": "Nanofabrication Reaction Engineering (4)" + }, + { + "dept": "NANO", + "description": "Examines the role nanotechnology will play in addressing the many scientific and engineering challenges for new energy production. Topics include nanotechnology\u2019s role in improving photovoltaics, fuel-cells, batteries, energy transmission, and conversion of renewable (green) and nonrenewable sources.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3381, + "label": "NANO 261", + "title": "Nanoscale Energy Technology (4)" + }, + { + "dept": "NANO", + "description": "Application of quantum mechanical modeling methods (both solid state and computational chemistry) in the study of materials and nanostructures; density functional theory (DFT) and approximations; Hartree-Fock and beyond HF approximations; hybrid density functional theory; beyond DFT (GW, TDDFT); ab initio molecular dynamics; materials properties (mechanical, electrochemical, electronic, transport, nano-scale effects on properties) from quantum mechanical simulations; high-throughput computation.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3382, + "label": "NANO 266", + "title": "Quantum Mechanical Modeling of Materials and Nanostructures (4)" + }, + { + "dept": "SOCI", + "description": "Designed as a broad introduction to medicine as a social institution and its relationship to other institutions as well as its relation to society. It will make use of both micro and macro sociological work in this area and introduce students to sociological perspectives of contemporary health-care issues. Will not receive credit for SOCI 40 and SOCL 40.", + "edges_from": [], + "edges_to": [], + "id": 3383, + "label": "SOCI 40", + "title": "Sociology of Health-Care Issues (4)" + }, + { + "dept": "NANO", + "description": "Course covers concept in nano and solid-state chemistry for graduate students, with the objective of understanding nanomaterials from a chemical perspective. Topics include descriptive crystal chemistry, structure determination, free electron gas and dimensional solids, tight-binding approximation, band structure. Recommended preparation: Background equivalent to NANO 203.", + "edges_from": [], + "edges_to": [], + "id": 3384, + "label": "NANO 264", + "title": "Solid-State and Nanochemistry (4)" + }, + { + "dept": "GPEC", + "description": "Course provides an overview of health economics, focusing on developing countries. We will examine both how standard economics concepts and methods can be used to understand incentives and decision making in health-related transactions and their application to health policy. Renumbered from IRGN 468. Students may not receive credit for GPEC 468, IRGN 468, and IRGN 490, International Health Economics.", + "edges_from": [], + "edges_to": [], + "id": 3385, + "label": "GPEC 468", + "title": "International Health Economics (4)" + }, + { + "dept": "HIEU", + "description": "Greece and the Balkans during the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 3386, + "label": "HIEU 117B", + "title": "" + }, + { + "dept": "HIEU", + "description": "Greece and the Balkans in the Age of Nationalism (4)", + "edges_from": [], + "edges_to": [], + "id": 3387, + "label": "HIEU 117A", + "title": "" + }, + { + "dept": "ANSC", + "description": "A critical introduction to the study of cultural patterns of thought, action, and expression, in relation to language. Topics include semiotics and structuralism, cognition and categorization, universal vs. particulars, and ethnopoetics. ", + "edges_from": [], + "edges_to": [], + "id": 3388, + "label": "ANSC 117GS", + "title": "Language and (Multi)Culture (4)" + }, + { + "dept": "HITO", + "description": "Topics will examine lesbian, gay, bisexual, transgender, and queer identities, communities, culture, and politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 3389, + "label": "HITO 165/265", + "title": "Topics\u2014LGBT History (4)" + }, + { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 3390, + "label": "HILA 132GS", + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + { + "dept": "MATH", + "description": "Techniques in Computational Mathematics III (4)", + "edges_from": [], + "edges_to": [], + "id": 3391, + "label": "MATH 273C", + "title": "Advanced" + }, + { + "dept": "MATH", + "description": "Techniques in Computational Mathematics II (4)", + "edges_from": [], + "edges_to": [], + "id": 3392, + "label": "MATH 273B", + "title": "Advanced" + }, + { + "dept": "MATH", + "description": "Techniques in Computational Mathematics I (4)", + "edges_from": [], + "edges_to": [], + "id": 3393, + "label": "MATH 273A", + "title": "Advanced" + }, + { + "dept": "LTAF", + "description": "Survey of various genres of African and oral literary traditions. Oral narrative genres, investigation of proverb, riddle, praise poetry, and epic. Development and use of a methodology to analyze aspects of performance, composition, and education in oral traditional systems.", + "edges_from": [], + "edges_to": [], + "id": 3394, + "label": "LTAF 110", + "title": "African Oral Literature (4)" + }, + { + "dept": "HIEU", + "description": "This course looks at the European and non-European in the early modern era. Topics will vary year to year. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 3395, + "label": "HIEU 164/264", + "title": "Special Topics in Early Modern Europe (4)" + }, + { + "dept": "MATH", + "description": "Manifolds, differential forms, homology, deRham\u2019s theorem. Riemannian geometry, harmonic forms. Lie groups and algebras, connections in bundles, homotopy sequence of a bundle, Chern classes. Applications selected from Hamiltonian and continuum mechanics, electromagnetism, thermodynamics, special and general relativity, Yang-Mills fields. ", + "edges_from": [], + "edges_to": [], + "id": 3396, + "label": "MATH 259A-B-C", + "title": "Geometrical Physics (4-4-4)" + }, + { + "dept": "LATI", + "description": "The course is designed for teaching assistants to learn effective teaching methods through supervision and mentorship by the faculty. Student will learn handling of discussions; preparation and grading of examinations and other written exercises; and student relations.", + "edges_from": [], + "edges_to": [], + "id": 3397, + "label": "LATI 500", + "title": "Teaching Apprenticeship (1-4)" + }, + { + "dept": "BIEB", + "description": "Laboratory exercises will introduce students to quantitative methods of visual, auditory, and olfactory signal analysis and to lab and field studies of animal signaling. ", + "edges_from": [ + 3400, + 3399 + ], + "edges_to": [], + "id": 3398, + "label": "BIEB 167", + "title": "Animal Communication Lab (4)" + }, + { + "dept": "BIEB", + "description": "", + "edges_from": [ + 1424 + ], + "edges_to": [ + 3398, + 3943 + ], + "id": 3399, + "label": "BIEB 102", + "title": "" + }, + { + "dept": "BIEB", + "description": "", + "edges_from": [], + "edges_to": [ + 3398 + ], + "id": 3400, + "label": "BIEB 166", + "title": "" + }, + { + "dept": "LTWL", + "description": "Studies and Literature: Film History (4)", + "edges_from": [], + "edges_to": [], + "id": 3401, + "label": "LTWL 180", + "title": "Film" + }, + { + "dept": "LTWL", + "description": "Studies and Literature: Film Movement (4)", + "edges_from": [], + "edges_to": [], + "id": 3402, + "label": "LTWL 181", + "title": "Film" + }, + { + "dept": "LTWL", + "description": "Studies and Literature: Director\u2019s Work (4)", + "edges_from": [], + "edges_to": [], + "id": 3403, + "label": "LTWL 183", + "title": "Film" + }, + { + "dept": "LTWL", + "description": "Methods of literary analysis applied to the study of shots, sequences, poetics, and deep structure in filmic discourse. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3404, + "label": "LTWL 184", + "title": "Film Studies and Literature: Close Analysis of Filmic Text (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 3405, + "label": "PSYC 255A", + "title": "Advanced Topics in Biological Psychology I (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 3406, + "label": "PSYC 255B", + "title": "Advanced Topics in Biological Psychology II (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 3407, + "label": "PSYC 255C", + "title": "Advanced Topics in Biological Psychology III (1)" + }, + { + "dept": "ECON", + "description": "Empirical, case-based analysis requiring students to use economic theory from Econ 173A: Financial Markets and data to address real-world issues such as conducting market research, conducting discounted cash flow analyses, and applying the CAPM model to identify issues in investment management, and more. Presentation of student analyses both orally and in writing. Can be used in conjunction with another two-unit upper-division Econ course to meet major elective requirements by petition. ", + "edges_from": [ + 1131 + ], + "edges_to": [], + "id": 3408, + "label": "ECON 173AL", + "title": "Applied Finance Laboratory (2)" + }, + { + "dept": "ANTH", + "description": "Major primate field studies will be studied to illustrate common features of primate behavior and behavioral diversity. Topics will include communication, female hierarchies, protocultural behavior, social learning and tool use, play, cognition, and self-awareness.", + "edges_from": [], + "edges_to": [], + "id": 3409, + "label": "ANTH 42", + "title": "Primates in a Human-Dominated World (4)" + }, + { + "dept": "CSE", + "description": "Survey of testing and analysis methods. Introduction to advanced topics in area as well as traditional production methods. Topics include inspections and reviews, formal analysis, verification and validation standards, nonstatistical testing, statistical-testing and reliability models, coverage methods, testing and analysis tools, and organization management and planning. Methods special to special development approaches such as object-oriented testing will also be described. ", + "edges_from": [], + "edges_to": [], + "id": 3410, + "label": "CSE 211", + "title": "Software Testing and Analysis (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 264A.) General principles in modern software engineering. Both theoretical and practical topics are covered. Theoretical topics include proofs of correctness, programming language semantics, and theory of testing. Practical topics include structured programming, modularization techniques, design of languages for reliable programming, and software tools. ", + "edges_from": [ + 3200, + 17, + 3412 + ], + "edges_to": [], + "id": 3411, + "label": "CSE 210", + "title": "Principles of Software Engineering (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3411 + ], + "id": 3412, + "label": "CSE 131A", + "title": "" + }, + { + "dept": "CHEM", + "description": "Offers less-well prepared science majors the fundamental skills necessary to succeed in CHEM 6. Emphasizes quantitative problems. Topics include nomenclature, stoichiometry, basic reactions, bonding, and the periodic table. May not receive credit for both CHEM 4 and CHEM 11. Includes a laboratory/discussion each week. Recommended: concurrent enrollment in MATH 3C, 4C or 10A or higher.", + "edges_from": [], + "edges_to": [], + "id": 3413, + "label": "CHEM 4", + "title": "Basic Chemistry (4)" + }, + { + "dept": "TDGR", + "description": "An advanced course in the art of movement for the theatre, building on the knowledge gained in Theatre 213. (S/U grades only.) ", + "edges_from": [ + 3415 + ], + "edges_to": [], + "id": 3414, + "label": "TDGR 223A-B", + "title": "Movement for Theatre II (3-3)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3414 + ], + "id": 3415, + "label": "TDGR 223A", + "title": "" + }, + { + "dept": "CSE", + "description": "New societal challenges, cultural values, and technological opportunities are changing design\u2014and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. Cross-listed with COGS 229. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3416, + "label": "CSE 219", + "title": "Design at Large (1)" + }, + { + "dept": "CSE", + "description": "Topics in Software Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 3417, + "label": "CSE 218", + "title": "Advanced" + }, + { + "dept": "PHIL", + "description": "Contemporary debates about the study of the mind-brain as studied in one or more of the empirical cognitive sciences. May include questions about the different strategies of explanation invoked, the conceptions of representation employed, the connections between theoretical models developed. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3418, + "label": "PHIL 250A", + "title": "Philosophy of the Cognitive Sciences (4)" + }, + { + "dept": "LTFR", + "description": "A course on changing topics such as France during the 1960s, contemporary social and cultural structures (the school system, economy, political parties), myths of America in France, etc. May be repeated for credit as topics vary. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 3419, + "label": "LTFR 164", + "title": "Topics in Modern French Culture (4)" + }, + { + "dept": "ECE", + "description": "This seminar class will provide a broad review of current research topics in both electrical engineering and computer engineering. Typical subject areas are signal processing, VLSI design, electronic materials and devices, radio astronomy, communications, and optical computing. ", + "edges_from": [], + "edges_to": [], + "id": 3420, + "label": "ECE 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "MUS", + "description": "Continuation of MUS 160A or VIS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: MUS 160B, VIS 160B, ICAM 160B. ", + "edges_from": [ + 1910, + 3422 + ], + "edges_to": [], + "id": 3421, + "label": "MUS 160B", + "title": "Senior Project in Computing Arts II (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 1912, + 733, + 1222, + 1911 + ], + "edges_to": [ + 3421, + 5661 + ], + "id": 3422, + "label": "MUS 160A", + "title": "" + }, + { + "dept": "VIS", + "description": "European and American Art, ca. 1850 to 1960. Questions in Impressionism and Postimpressionism; The Cubist Revolution: Marcel Duchamp and the Anti-Formalist Tradition; American Modernism; Reckoning with Abstract Art; Issues of Dada and Surrealism; Soviet Avant-Gardes. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3423, + "label": "VIS 254", + "title": "Seminar in Modern Art (4)" + }, + { + "dept": "USP", + "description": "This course is designed to provide an introduction to the fundamentals of urban planning. It surveys important topics in urban planning, including economic development, urban design, transportation, environmental planning, housing, and the history of urban planning. ", + "edges_from": [], + "edges_to": [], + "id": 3424, + "label": "USP 100", + "title": "Introduction to Urban Planning (4)" + }, + { + "dept": "USP", + "description": "(Same as HIUS 129.) This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation. ", + "edges_from": [], + "edges_to": [], + "id": 3425, + "label": "USP 106", + "title": "The History of Race and Ethnicity in American Cities (4)" + }, + { + "dept": "USP", + "description": "(Same as POLI 102E.) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the \u201cnew\u201d politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race. ", + "edges_from": [], + "edges_to": [], + "id": 3426, + "label": "USP 107", + "title": "Urban Politics (4)" + }, + { + "dept": "USP", + "description": "(Same as ETHN 105.) This course will examine the city as a crucible of ethnic identity exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present. ", + "edges_from": [], + "edges_to": [], + "id": 3427, + "label": "USP 104", + "title": "Ethnic Diversity and the City (4)" + }, + { + "dept": "USP", + "description": "(Same as Sociology 153.) Introduces students", + "edges_from": [], + "edges_to": [], + "id": 3428, + "label": "USP 105", + "title": "Urban Sociology (4)" + }, + { + "dept": "BGRD", + "description": "Presentation of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3429, + "label": "BGRD 234", + "title": "Research Discussion in Cell Signaling in Drosophila (3)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 3430, + "label": "Linguistics/Portuguese (LIPO) 1CX", + "title": "Analysis of Portuguese (2.5)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3431, + "label": "BGRD 230", + "title": "Research Discussion in Cell Signaling Pathways (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3432, + "label": "BGRD 231", + "title": "Research Discussion in Nuclear Transport and Function (1)" + }, + { + "dept": "VIS", + "description": "Topics relating to the art and civilizations of Pre-Columbian Mexico and Central America, either specifically art historical (such as iconographic, formal, and stylistic analysis) or encompassing a spectrum of interdisciplinary and cultural/historical problems. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3433, + "label": "VIS 257", + "title": "Seminar in Meso-American Art (4)" + }, + { + "dept": "MUS", + "description": "Theoretical bases for analyzing musical sound. Approaches to perception and cognition, including psychoacoustics and information processing, both ecological and computational. Models of audition including Helmholtz\u2019s consonance/dissonance theory and Bregman\u2019s streaming model. Musical cognition theories of Lerdahl and Narmour. Neural network models of music perception and cognition. Models of rhythm. The problem of timbre and timbre perception. ", + "edges_from": [], + "edges_to": [ + 3439 + ], + "id": 3434, + "label": "MUS 270B", + "title": "Musical Cognitive Science (4)" + }, + { + "dept": "MUS", + "description": "Transformations in musical composition; series and intervallic structures; serial approaches to rhythm and dynamic. The stochastic music of Xenakis and Cage. Hiller\u2019s automatic composition. Improvisational models. Computer analysis of musical style. Neurally inspired and other quasiparallel algorithms. ", + "edges_from": [], + "edges_to": [ + 3439 + ], + "id": 3435, + "label": "MUS 270C", + "title": "Compositional Algorithms (4)" + }, + { + "dept": "MUS", + "description": "Digital techniques for analysis, synthesis, and processing of musical sounds. Sampling theory. Software synthesis techniques. Digital filter design. The short-time Fourier transform. Numerical accuracy considerations. ", + "edges_from": [], + "edges_to": [ + 3439 + ], + "id": 3436, + "label": "MUS 270A", + "title": "Digital Audio Processing (4)" + }, + { + "dept": "MATH", + "description": "Introduction to the mathematics of financial models. Basic probabilistic models and associated mathematical machinery will be discussed, with emphasis on discrete time models. Concepts covered will include conditional expectation, martingales, optimal stopping, arbitrage pricing, hedging, European and American options. ", + "edges_from": [ + 1995, + 135, + 1994, + 139, + 140, + 141 + ], + "edges_to": [], + "id": 3437, + "label": "MATH 194", + "title": "The Mathematics of Finance (4)" + }, + { + "dept": "MATH", + "description": "Students will be responsible for and teach a class section of a lower-division mathematics course. They will also attend a weekly meeting on teaching methods. (Does not count toward a minor or major.) ", + "edges_from": [], + "edges_to": [], + "id": 3438, + "label": "MATH 195", + "title": "Introduction to Teaching in Mathematics (4)" + }, + { + "dept": "MUS", + "description": "Meetings on group basis with computer music faculty in support of individual student research projects. ", + "edges_from": [ + 3434, + 3435, + 3436 + ], + "edges_to": [], + "id": 3439, + "label": "MUS 270D", + "title": "Advanced Projects in Computer Music (4)" + }, + { + "dept": "MATH", + "description": "An enrichment program which provides work", + "edges_from": [], + "edges_to": [], + "id": 3440, + "label": "MATH 197", + "title": "Mathematics Internship (2 or 4)" + }, + { + "dept": "MATH", + "description": "Independent reading in advanced mathematics by individual students. Three periods. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3441, + "label": "MATH 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "HIEU", + "description": "A lecture-discussion course that examines the origins and evolution of religious freedom from the age of Tudors to the adoption of the Bill of Rights in the United States in 1791. Course materials fee may be required. Students must apply and be accepted into the Global Seminar Program.", + "edges_from": [], + "edges_to": [], + "id": 3442, + "label": "HIEU 123GS", + "title": "Origins of Law and Religious Freedom in England and America, 1530\u20131971 (4)" + }, + { + "dept": "Soc/G", + "description": "Analysis of enduring topics in the study of race and ethnicity, including stratification, discrimination conflict, immigration, assimilation, and politics. Other topics include racial and ethnic identity and the social construction of race and ethnic categories. A special focus is on the role of \u2018culture\u2019 and \u2018structure\u2019 for explaining race/ethnic differentiation. ", + "edges_from": [], + "edges_to": [], + "id": 3443, + "label": "Soc/G 244", + "title": "Sociology of Race and Ethnicity (4)" + }, + { + "dept": "Soc/G", + "description": "This course studies social constructions of gender within economic opportunities and constraints. We read classical sociological theory on this topic; feminist critiques; and newer research on careers, organizations, and markets. ", + "edges_from": [], + "edges_to": [], + "id": 3444, + "label": "Soc/G 245", + "title": "Gender, Work, and the Economy (4)" + }, + { + "dept": "Soc/G", + "description": "Surveys major theories of the development and functioning of the welfare state, addressing the roles of economic development, political institutions, stratification, and culture. The course focuses on the development of the US social provision in comparison with other advanced industrial societies.", + "edges_from": [], + "edges_to": [], + "id": 3445, + "label": "Soc/G 246", + "title": "The Welfare State (4)" + }, + { + "dept": "Soc/G", + "description": "An examination of changing Western responses from the age of Bedlam to the age of Prozac. Topics include: the rise and decline of the total institution; the emergence of psychiatry; changing cultural meanings of madness; and the therapeutics of mental disorder. ", + "edges_from": [], + "edges_to": [], + "id": 3446, + "label": "Soc/G 247", + "title": "Madness and Society (4)" + }, + { + "dept": "Soc/G", + "description": "An examination of the sociological literature on social control, looking at theoretical developments over time and examining the contemporary literature dealing with social control in historical and comparative perspective. ", + "edges_from": [], + "edges_to": [], + "id": 3447, + "label": "Soc/G 243", + "title": "Sociology of Social Control (4)" + }, + { + "dept": "MATH", + "description": "First course in graduate-level number theory. Local fields: valuations and metrics on fields; discrete valuation rings and Dedekind domains; completions; ramification theory; main statements of local class field theory. ", + "edges_from": [ + 2872 + ], + "edges_to": [ + 3450 + ], + "id": 3448, + "label": "MATH 204A", + "title": "Number Theory I (4)" + }, + { + "dept": "MATH", + "description": "Third course in graduate-level number theory. Zeta and L-functions; Dedekind zeta functions; Artin L-functions; the class-number formula and generalizations; density theorems. ", + "edges_from": [ + 3450 + ], + "edges_to": [], + "id": 3449, + "label": "MATH 204C", + "title": "Number Theory III (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 3448 + ], + "edges_to": [ + 3449 + ], + "id": 3450, + "label": "MATH 204B", + "title": "" + }, + { + "dept": "SIO", + "description": "295LS. Introduction to Marine Biodiversity and Conservation\u2014Lab (8)", + "edges_from": [], + "edges_to": [], + "id": 3451, + "label": "SIO", + "title": "" + }, + { + "dept": "MGT", + "description": "This course is taken by students actively working on their dissertation", + "edges_from": [], + "edges_to": [], + "id": 3452, + "label": "MGT 296", + "title": "Dissertation (4\u201312)" + }, + { + "dept": "SOCI", + "description": "An examination of how the understanding of language can guide and inform sociological inquiries and a critical evaluation of key sociological approaches to language, including ethnomethodology, frame analysis, sociolinguistics, structuralism and poststructuralism, and others. ", + "edges_from": [ + 3453, + 3454 + ], + "edges_to": [ + 3453 + ], + "id": 3453, + "label": "SOCI 118E", + "title": "Sociology of Language (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3453 + ], + "id": 3454, + "label": "SOCB 118L", + "title": "" + }, + { + "dept": "MGT", + "description": "Each student who has not advanced to candidacy by June of the third year must enroll in and complete MGT 299 during the fall, winter, and spring quarters of the fourth year. ", + "edges_from": [], + "edges_to": [], + "id": 3455, + "label": "MGT 299", + "title": "Advanced Field Advising (4)" + }, + { + "dept": "LHCO", + "description": "The Independent Study Project (ISP) is the cornerstone of the MAS Program. Students will be involved in a high-level applied research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee consisting of faculty and, when appropriate, industry advisers.\t\t", + "edges_from": [ + 3457 + ], + "edges_to": [], + "id": 3456, + "label": "LHCO 298", + "title": "Independent Study Project in the Management of Health Care (4)" + }, + { + "dept": "LHCO", + "description": "", + "edges_from": [], + "edges_to": [ + 3456 + ], + "id": 3457, + "label": "LHCO 218", + "title": "" + }, + { + "dept": "ECE", + "description": "This course will introduce basic concepts", + "edges_from": [], + "edges_to": [], + "id": 3458, + "label": "ECE 172A", + "title": "Introduction to Intelligent Systems: Robotics and Machine Intelligence (4)" + }, + { + "dept": "LTWL", + "description": "Literary and socio-historical considerations of the diverse writings that developed into the New Testament. Topics include Jewish origins of the \u201cJesus movement\u201d within Greco-Roman culture; varying patterns of belief/practice among earliest communities; oral tradition and development of canon.", + "edges_from": [], + "edges_to": [], + "id": 3459, + "label": "LTWL 158A", + "title": "Topics in the New Testament (4)" + }, + { + "dept": "LTWL", + "description": "Topics in Early Christian Texts and Cultures (4)", + "edges_from": [], + "edges_to": [], + "id": 3460, + "label": "LTWL 158B", + "title": "" + }, + { + "dept": "LTWL", + "description": "A survey of the Christian texts that comprise the fatalities of the battles defining Christian canon: e.g., apocryphal acts, noncanonical gospels, and \u201cGnostic\u201d texts. Considers the social communities, theological views, religious identities, and practices reflected in largely forgotten texts.", + "edges_from": [], + "edges_to": [], + "id": 3461, + "label": "LTWL 158C", + "title": "Topics in Other Christianities (4)" + }, + { + "dept": "COGR", + "description": "In this course language is broadly conceived as a medium of communication, expressed multimodally. Among the topics of this course are: origins of speech and gesture, culture and language, language and social practice, and language in performance. ", + "edges_from": [], + "edges_to": [], + "id": 3462, + "label": "COGR 258", + "title": "Language in Human Communication (4)" + }, + { + "dept": "FPM", + "description": "Clinical nutrition is the study of nutrition and diet as related to the prevention and treatment of human disease. Nutrition is an interdisciplinary field of study, built on a foundation of biomedical and behavioral sciences. This course emphasizes class discussion of clinical topics and assigned readings in current areas of research and practice (i.e., diet and cancer, vitamin and other diet supplements), with case studies and illustrative class exercises.", + "edges_from": [], + "edges_to": [], + "id": 3463, + "label": "FPM 233", + "title": "Clinical Nutrition (2)" + }, + { + "dept": "FPM", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3464, + "label": "FPM 231", + "title": "Exposure Assessment and Biomarkers in Epidemiology (2)" + }, + { + "dept": "COGR", + "description": "Course examines the historical impetus, development, and construction of \u201cThird Cinema\u201d\u2014a particular style of media making in Africa, Latin America, and Asia. An interdisciplinary approach interrogates how Third Cinema influences world cinema of today. Additional screening session required. ", + "edges_from": [], + "edges_to": [], + "id": 3465, + "label": "COGR 250", + "title": "Third World Cinema Screening (4)" + }, + { + "dept": "COGR", + "description": "Theories of the media considered in a historical and comparative context from the rise of preprint reproduction technologies to the digital age. Focuses on communication processes and practices in terms of formality, technology, the politics of subjectivity, and institutions. ", + "edges_from": [], + "edges_to": [], + "id": 3466, + "label": "COGR 251", + "title": "Media Theory (4)" + }, + { + "dept": "COGR", + "description": "Seminar focuses on race as a social, phenomenal, historical, and political formation. The seminar will address the historical emergence and theorization of race and the contemporary ways in which race/racism is a modern principle of social division, exclusion, and political mobilization. ", + "edges_from": [], + "edges_to": [], + "id": 3467, + "label": "COGR 252", + "title": "Race and Racism (4)" + }, + { + "dept": "COGR", + "description": "Seminar will focus on music and sound as social, aesthetic, historical, can political formations and phenomena. The relationship between musical and extramusical forces will be examined. This course intensively addresses cultural politics of sound/music making, hearing and performance. ", + "edges_from": [], + "edges_to": [], + "id": 3468, + "label": "COGR 253", + "title": "Cultural Study of Music and Sound (4)" + }, + { + "dept": "COGR", + "description": "The conceptual and regulatory boundaries of intellectual property law are increasingly challenged by technological change and by ownership claims over non-Western forms of creativity. Course focuses on those challenges from three interrelated perspectives: historical, philosophical, and political. ", + "edges_from": [], + "edges_to": [], + "id": 3469, + "label": "COGR 254", + "title": "Intellectual Property (4)" + }, + { + "dept": "COGR", + "description": "Considers classical and contemporary texts in primarily western political thought with an eye toward understanding how such theory is and/or might be brought to bear in grounding different approaches and agendas in the study of communication. ", + "edges_from": [], + "edges_to": [], + "id": 3470, + "label": "COGR 255", + "title": "Studies in Political Theory (4)" + }, + { + "dept": "COGR", + "description": "This course provides an overview of intellectual and political thought developed through decolonization struggles in Africa and the Caribbean, and the subsequent emergence of postcoloniality from subaltern studies in the 1980s to contemporary work shaped by globalization and neoliberal philosophies. ", + "edges_from": [], + "edges_to": [], + "id": 3471, + "label": "COGR 256", + "title": "Postcolonial Theory (4)" + }, + { + "dept": "COGR", + "description": "Social theory forms the theoretical foundation for much work in communication, including political communication, questions of the public and public opinion, propaganda and ideology. The course will consider Marx, Weber, Durkheim, Simmel, Dewey, Habermas, the Frankfurt School and its critics. ", + "edges_from": [], + "edges_to": [], + "id": 3472, + "label": "COGR 257", + "title": "Communication and Social Theory (4)" + }, + { + "dept": "TDHD", + "description": "The study of dance forms from a global perspective. An analysis and understanding of international dance traditions and their connections to religion, ritual, folklore, custom, festive celebration, popular culture, art, and political movements. ", + "edges_from": [ + 3474 + ], + "edges_to": [], + "id": 3473, + "label": "TDHD 175", + "title": "Cultural Perspectives on Dance (4)" + }, + { + "dept": "TDTR", + "description": "", + "edges_from": [], + "edges_to": [ + 4424, + 4425, + 3473, + 3475, + 5751, + 3707 + ], + "id": 3474, + "label": "TDTR 10", + "title": "" + }, + { + "dept": "TDHD", + "description": "An in-depth exposure to an important topic in dance history, theory, aesthetics, and criticism. Topics vary from quarter to quarter. ", + "edges_from": [ + 3474 + ], + "edges_to": [], + "id": 3475, + "label": "TDHD 176", + "title": "Dance History\u2014Special Topics (4)" + }, + { + "dept": "CHEM", + "description": "Seminar series on the current topics in the field of environmental chemistry. Emphasis is on current research topics in atmospheric, oceanic, and geological environments. ", + "edges_from": [], + "edges_to": [], + "id": 3476, + "label": "CHEM 270A-B-C", + "title": "Current Topics in Environmental Chemistry (2-2-2)" + }, + { + "dept": "MUS", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in music (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 3477, + "label": "MUS 192", + "title": "Senior Seminar in Music (1)" + }, + { + "dept": "TDPF", + "description": "(2\u20134)", + "edges_from": [], + "edges_to": [ + 5774 + ], + "id": 3478, + "label": "TDPF 162", + "title": "Studies in Performance Spring Production" + }, + { + "dept": "MUS", + "description": "Assisting in the instruction of an undergraduate music class under the direct and constant supervision of a faculty member. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3479, + "label": "MUS 195", + "title": "Instructional Assistance (2)" + }, + { + "dept": "MAE", + "description": "Astrodynamics, orbital motion, perturbations, coordinate systems and frames of reference. Geosynchronous orbits, stationkeeping. Orbital maneuvers, fuel consumption, guidance systems. Observation instrument point, tracking, control. Basic rocket dynamics. Navigation, telemetry, re-entry, and aero-assisted maneuvers. Mission design. Students perform analyses based on mission requirements. ", + "edges_from": [], + "edges_to": [], + "id": 3480, + "label": "MAE 180A", + "title": "Spacecraft Guidance I (4)" + }, + { + "dept": "HUM", + "description": "Individually guided readings or projects in area of humanities not normally covered in standard curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 3481, + "label": "HUM 199", + "title": "Special Studies (2\u20134)" + }, + { + "dept": "TDDE", + "description": "A hands-on course on the process of sound design from conception to planning and implementation. The course will concentrate equally on the technical and artistic aspects of the sound design process and will include a survey of modern audio technologies. ", + "edges_from": [ + 128, + 3483, + 3484, + 3485 + ], + "edges_to": [ + 3486 + ], + "id": 3482, + "label": "TDDE 141", + "title": "Theatre Process\u2014Sound Design (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 3482, + 4351 + ], + "id": 3483, + "label": "TDPR 5", + "title": "" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 3482 + ], + "id": 3484, + "label": "TDPR 6", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 3482, + 5549 + ], + "id": 3485, + "label": "MUS 173", + "title": "" + }, + { + "dept": "TDDE", + "description": "This course focuses on advancing students in their artistic and technical skills in sound design. A large-scale project will be identified with special attention given to text analysis and technical specification of the sound design. ", + "edges_from": [ + 128, + 3482 + ], + "edges_to": [], + "id": 3486, + "label": "TDDE 142", + "title": "Advanced Sound Design (4)" + }, + { + "dept": "LIGN", + "description": "How can we explain the difference between what is literally said versus what is actually conveyed in the language of law, politics, and advertising? How people\u2019s ordinary command of language and their reasoning skills are used to manipulate them. ", + "edges_from": [], + "edges_to": [], + "id": 3487, + "label": "LIGN 176", + "title": "Language of Politics and Advertising (4)" + }, + { + "dept": "TDGE", + "description": "Students explore a variety of issues: screenwriting, directing, cinematography, and editing; the intersection of comedy and tragedy in Allen\u2019s works; recurring themes; and critical responses. Students view thirteen films and write two three-page essays and one ten-page research paper. ", + "edges_from": [], + "edges_to": [], + "id": 3488, + "label": "TDGE 122", + "title": "The Films of Woody Allen (4)" + }, + { + "dept": "LIGN", + "description": "(Same as SOCI 116.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span, within ethnolinguistic minority communities in the United States, across sexual orientations and cultures. Recommended preparation: LIGN", + "edges_from": [], + "edges_to": [], + "id": 3489, + "label": "LIGN 174", + "title": "Gender and Language in Society (4)" + }, + { + "dept": "LIGN", + "description": "The study of language in its social context, with emphasis on the different types of linguistic variation and the principles underlying them. Dialects, registers, gender-based linguistic differences, multilingualism, pidginization and creolization, factors influencing linguistic choice, formal models of variation; emphasis is given both to socially determined differences within the United States and US ethnic groups and to cross-cultural differences in language use and variation. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 3490, + "label": "LIGN 175", + "title": "Sociolinguistics (4)" + }, + { + "dept": "TDGE", + "description": "This course will use a broad range of animation styles and genres to examine larger issues in art practice, focusing closely on the relationship between form and content, and how sound/set/costume/character design impacts narrative. ", + "edges_from": [], + "edges_to": [], + "id": 3491, + "label": "TDGE 126", + "title": "Storytelling and Design in Animation (4)" + }, + { + "dept": "TDGE", + "description": "Great films and the performance of the actors in them are analyzed in their historical, cinematic, or theatrical contexts. This course examines the actor\u2019s contribution to classic cinema and the social and aesthetic forces at work in film. ", + "edges_from": [], + "edges_to": [], + "id": 3492, + "label": "TDGE 125", + "title": "Topics in Theatre and Film (4)" + }, + { + "dept": "TDGE", + "description": "A select survey of eight to ten exceptional offbeat, frequently low-budget films from the last sixty years that have attained cult status. The mix includes Tod Browning\u2019s Freaks (1932) to John Water\u2019s Pink Flamingos (1973). Aspects of bad taste, cinematic irony, and theatrical invention will be highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 3493, + "label": "TDGE 124", + "title": "Cult Films: Weirdly Dramatic (4)" + }, + { + "dept": "COGS", + "description": "A comprehensive survey of theory, method and research findings", + "edges_from": [], + "edges_to": [], + "id": 3494, + "label": "COGS 156", + "title": "Language Development (4)" + }, + { + "dept": "COGS", + "description": "Explores how humans (and other species) process music, including pitch, meter, emotion, motor aspects, links to language, brain activity. Students should have experience reading musical notation. ", + "edges_from": [ + 3164, + 3166, + 3079 + ], + "edges_to": [], + "id": 3495, + "label": "COGS 157", + "title": "Music and the Mind (4)" + }, + { + "dept": "COGS", + "description": "Neural bases of language use in normal adults, and neural bases of language and communication development in normal children. Evidence on the language and communication deficits in adults (especially aphasia and dementia) and children (specific language impairment, focal brain injury, retardation, and autism). ", + "edges_from": [], + "edges_to": [], + "id": 3496, + "label": "COGS 154", + "title": "Communication Disorders in Children and Adults (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3497, + "label": "LTEN 169", + "title": "Topics in Latino/a Literature (4)" + }, + { + "dept": "COGS", + "description": "How the human mind/brain creates mathematics: embodiment, innovation, and creativity. The emergence and power of abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero. Cognitive approaches that connect mathematics to human thought in general. ", + "edges_from": [ + 3499, + 3500, + 238 + ], + "edges_to": [], + "id": 3498, + "label": "COGS 152", + "title": "Cognitive Foundations of Mathematics (4)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 3498 + ], + "id": 3499, + "label": "PHIL 1", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 3498 + ], + "id": 3500, + "label": "PSYC 1", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3501, + "label": "COGS 153", + "title": "Language Comprehension (4)" + }, + { + "dept": "LIGN", + "description": "This course will investigate topics in second language acquisition including the critical period, the processing and neural representation of language in bilinguals, theories of second language acquisition and creolization, exceptional language learners, and parallels with first language acquisition. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 3502, + "label": "LIGN 179", + "title": "Second Language Acquisition Research (4)" + }, + { + "dept": "EDS", + "description": "to Academic Tutoring at Charter Schools (4)", + "edges_from": [], + "edges_to": [ + 4939, + 4012, + 4013 + ], + "id": 3503, + "label": "EDS 138", + "title": "Introduction" + }, + { + "dept": "ETHN", + "description": "This seminar examines critical engagements between scholarship from postcolonial, feminist and other radical Marxist traditions. We focus on philosophical and political debates stemming from issues of race and gender, tracing them in Marx\u2019s texts and their historical contexts. ", + "edges_from": [], + "edges_to": [], + "id": 3504, + "label": "ETHN 275", + "title": "Marxist Thought (4)" + }, + { + "dept": "ETHN", + "description": "This seminar will explore indigenous epistemologies, their ontological dimensions, the methodological issues surrounding related research, and their significance in relation to the production of knowledge and the histories, presents, and futures of Native American and Indigenous people. ", + "edges_from": [], + "edges_to": [], + "id": 3505, + "label": "ETHN 270", + "title": "Indigenous Epistemologies and their Disruptions (4)" + }, + { + "dept": "LTLA", + "description": "Study of Latin, including grammar and reading. ", + "edges_from": [ + 3507 + ], + "edges_to": [ + 4134 + ], + "id": 3506, + "label": "LTLA 3", + "title": "Intermediate Latin (II) (4)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [ + 3508 + ], + "edges_to": [ + 3506 + ], + "id": 3507, + "label": "LTLA 2", + "title": "" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [ + 3507 + ], + "id": 3508, + "label": "LTLA 1", + "title": "" + }, + { + "dept": "EDS", + "description": "The \u201cHands-On Lab\u201d enables UC San Diego students to practice inquiry-based instructional strategies with elementary or high school students in authentic laboratory situations supervised be EDS faculty members. The hands-on lessons provide early teaching experience in science for undergraduates exploring teaching as a career. All lessons are based on the California content standards in science. Recommended preparation: knowledge of STEM field subject matter. ", + "edges_from": [], + "edges_to": [], + "id": 3509, + "label": "EDS 132", + "title": "Hands-On Seminar (4)" + }, + { + "dept": "EDS", + "description": "to Discipline-Specific Teaching and Learning (4)", + "edges_from": [], + "edges_to": [ + 4012, + 4013 + ], + "id": 3510, + "label": "EDS 137", + "title": "Introduction" + }, + { + "dept": "ECE", + "description": "Congestion control, convex programming and dual controller, fair end-end rate allocation, max-min fair vs. proportional fairness. Markov Chains and recurrence, Lyapunov-Foster theorem, rate stable switch scheduling, stable (back-pressure) routing versus minimum delay routing versus shortest path routing. ", + "edges_from": [], + "edges_to": [ + 3513 + ], + "id": 3511, + "label": "ECE 257A", + "title": "Multiuser Communication Systems (4)" + }, + { + "dept": "ECE", + "description": "Elements of spatial point processes. Spatial", + "edges_from": [], + "edges_to": [], + "id": 3512, + "label": "ECE 257C", + "title": "Stochastic Wireless Networks Models (4)" + }, + { + "dept": "ECE", + "description": "This course will focus on the principles, architectures, and analytical methodologies for design of multiuser wireless networks. Topics to be covered include cellular approaches, call processing, digital modulation, MIMO technology, broadband networks, ad-hoc networks, and wireless packet access. (Recommended prerequisites: ECE 159A and 154B, or equivalent.) ", + "edges_from": [ + 3511 + ], + "edges_to": [], + "id": 3513, + "label": "ECE 257B", + "title": "Principles of Wireless Networks (4)" + }, + { + "dept": "LIGN", + "description": "An overview of sign language research in terms of how it informs language theory. Topics include the structure of ASL, acquisition, psycholinguistic and neurolinguistic processing of sign language in comparison to spoken language, critical period effects, and language evolution. ", + "edges_from": [], + "edges_to": [], + "id": 3514, + "label": "LIGN 280", + "title": "Sign Language Research (4)" + }, + { + "dept": "LIGN", + "description": "Children\u2019s first language acquisition and how it illuminates linguistic, cognitive, and neurolingusitic theory. Topics include past and current research with a focus on design, methodology, and data analysis in child language.", + "edges_from": [], + "edges_to": [], + "id": 3515, + "label": "LIGN 281", + "title": "Language Acquisition Theory and Research (4)" + }, + { + "dept": "LIGN", + "description": "How the environment and the biology of language, including sensory motor modality and neural development, affect language development. Topics include the paradigms used to study the critical period for language.", + "edges_from": [], + "edges_to": [], + "id": 3516, + "label": "LIGN 282", + "title": "Biology and Environment in Language Acquisition (4)" + }, + { + "dept": "LIGN", + "description": "(Same as Psychology 260.) This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language.", + "edges_from": [], + "edges_to": [], + "id": 3517, + "label": "LIGN 283", + "title": "Language and Conceptual Development (4)" + }, + { + "dept": "HILA", + "description": "Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptation, late colonial growth, and the onset of independence.", + "edges_from": [], + "edges_to": [], + "id": 3518, + "label": "HILA 100D", + "title": "Latin America: Colonial Transformation (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 132.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived.", + "edges_from": [], + "edges_to": [], + "id": 3519, + "label": "ETHN 188", + "title": "African Americans, Religion, and the City (4)" + }, + { + "dept": "ETHN", + "description": "A reading and discussion course that explores special topics in ethnic studies. Themes will vary from quarter to quarter; therefore, course may be repeated three times as long as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3520, + "label": "ETHN 189", + "title": "Special Topics in Ethnic Studies (4)" + }, + { + "dept": "ETHN", + "description": "An analysis of black cultural and intellectual", + "edges_from": [], + "edges_to": [], + "id": 3521, + "label": "ETHN 184", + "title": "Black Intellectuals in the Twentieth Century (4)" + }, + { + "dept": "ETHN", + "description": "While discourse analysis has transformed numerous disciplines, a gap separates perspectives that envision discourse as practices that construct inequality from approaches that treat discourse as everyday language. This course engages both perspectives critically in analyzing law, medicine, and popular culture.", + "edges_from": [], + "edges_to": [], + "id": 3522, + "label": "ETHN 185", + "title": "Discourse, Power, and Inequality (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 187.) The construction and articulation of Latinx sexualities will be explored in this course through interdisciplinary and comparative perspectives. We will discuss how immigration, class, and norms of ethnicity, race, and gender determine the construction, expression, and reframing of Latinx sexualities.", + "edges_from": [], + "edges_to": [], + "id": 3523, + "label": "ETHN 187", + "title": "Latinx Sexualities\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 167.) This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences.", + "edges_from": [], + "edges_to": [], + "id": 3524, + "label": "ETHN 180", + "title": "Topics in Mexican American History (4)" + }, + { + "dept": "ETHN", + "description": "This course focuses on race, gender, and sexuality in twentieth- and twenty-first-century fantasy and science fiction. We will study literature, film, music, television, video games, and the Internet in order to situate such speculative visions in historical and transmedia contexts.", + "edges_from": [], + "edges_to": [], + "id": 3525, + "label": "ETHN 182", + "title": "Race, Gender, and Sexuality in Fantasy and Science Fiction\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 114.) Gender is often neglected in studies of ethnic/racial politics. This seminar explores the relationship of race, ethnicity, class, and gender by examining the participation of working class women of color in community politics and how they challenge mainstream political theory.", + "edges_from": [], + "edges_to": [], + "id": 3526, + "label": "ETHN 183", + "title": "Gender, Race, Ethnicity, and Class (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in energy conservation, heat conduction, convection, radiation, heat transfer in ducts, external boundary layer, and heat exchangers. ", + "edges_from": [], + "edges_to": [], + "id": 3527, + "label": "MAE 202", + "title": "Thermal Processes (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in kinematics, conservation laws, constitutive equation of linear elastic solids, plasticity, and viscoelasticity. ", + "edges_from": [], + "edges_to": [], + "id": 3528, + "label": "MAE 203", + "title": "Solid Mechanics and Materials (4)" + }, + { + "dept": "BENG", + "description": "This lab course provides hands-on experience with MR physics, data acquisition, image formation, and data analysis, using a human MRI scanner. It will cover basic principles of MRI and key applications, including scanner hardware, spin echoes, gradient echoes, echo-planar imaging, MR angiography, fMRI, and perfusion imaging. This will be accomplished through one hour of formal instruction and four hours of scanner time per week. Each week will cover one topic, and grading will be based on lab reports. The last two weeks are reserved for a final project, which can be student initiated. ", + "edges_from": [ + 3530 + ], + "edges_to": [], + "id": 3529, + "label": "BENG 278/RAD 278", + "title": "Magnetic Resonance Imaging (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 3529 + ], + "id": 3530, + "label": "BENG 280A", + "title": "" + }, + { + "dept": "MAE", + "description": "This course covers topics in kinematics, equations of motion, dimensional analysis, laminar and irrotational flow, vorticity dynamics, and boundary layers. ", + "edges_from": [], + "edges_to": [], + "id": 3531, + "label": "MAE 201", + "title": "Mechanics of Fluids (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in primary energy sources, availability and variability, fossil fuels, renewables and nuclear, energy dependent energy sources, heat engine, energy conservation, exergy, transportation, air pollution, and climate change. ", + "edges_from": [], + "edges_to": [], + "id": 3532, + "label": "MAE 206", + "title": "Energy Systems (4)" + }, + { + "dept": "MAE", + "description": "A course to be given at the discretion of the faculty in which topics of current interest in engineering will be presented. ", + "edges_from": [], + "edges_to": [], + "id": 3533, + "label": "MAE 207", + "title": "Topics in Engineering Science (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in robotics, dynamics, kinematics, mechatronics, control, locomotion, and manipulation. ", + "edges_from": [], + "edges_to": [], + "id": 3534, + "label": "MAE 204", + "title": "Robotics (4)" + }, + { + "dept": "MAE", + "description": "Each graduate student in MAE is expected to attend one seminar per quarter, of his or her choice, dealing with current topics in fluid mechanics, solid mechanics, applied plasma physics and fusion, chemical engineering, applied ocean sciences, energy and combustion, environmental engineering, or materials science, and dynamics and controls. Topics will vary. (S/U grades only)", + "edges_from": [], + "edges_to": [], + "id": 3535, + "label": "MAE 205", + "title": "Graduate Seminar (1)" + }, + { + "dept": "EDS", + "description": "This first course in a three-course series", + "edges_from": [], + "edges_to": [], + "id": 3536, + "label": "EDS 288A", + "title": "Advanced Research and Evaluation Methods A\u2014Quantitative Methods (4)" + }, + { + "dept": "ANSC", + "description": "In this course, we will examine the dominant human rights framework to think about one issue that has escaped its purview: environmental justice. If we all share a common planet, is there a universal right to a clean environment? Why are the effects of pollution and climate change unequally distributed among the world\u2019s peoples? Can human rights norms serve as effective tools to fight the unequal effects of climate change and contamination? Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 3537, + "label": "ANSC 193GS", + "title": "Human Rights and Environmental Justice (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods C\u2014Quantitative Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 3538, + "label": "EDS 288C", + "title": "Advanced" + }, + { + "dept": "ECE", + "description": "An introduction to electrical and computer engineering. Topics include circuit theory, assembly, and testing, embedded systems programming and debugging, transducer mechanisms and interfacing transducers, signals and systems theory, digital signal processing, and modular design techniques. ", + "edges_from": [], + "edges_to": [], + "id": 3539, + "label": "ECE 5", + "title": "Introduction to Electrical and Computer Engineering (4)" + }, + { + "dept": "CENG", + "description": "Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3540, + "label": "CENG 296", + "title": "Independent Study in Chemical Engineering (4)" + }, + { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced I (4)", + "edges_from": [], + "edges_to": [], + "id": 3541, + "label": "CHIN 182A", + "title": "Introduction" + }, + { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced II (4)", + "edges_from": [], + "edges_to": [], + "id": 3542, + "label": "CHIN 182B", + "title": "Introduction" + }, + { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced III (4)", + "edges_from": [], + "edges_to": [], + "id": 3543, + "label": "CHIN 182C", + "title": "Introduction" + }, + { + "dept": "ANAR", + "description": "Introduction to the archaeology, history, art, architecture, and hieroglyphs of ancient Egypt. Taught in the field through visits to important temples, pyramids, palaces, and museums in Egypt. Complementary to ANAR 144.\u00a0Course/program fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 3544, + "label": "ANAR 145S", + "title": "Study Abroad: Egypt of the Pharaohs (4)" + }, + { + "dept": "ANBI", + "description": "132. Conservation and the Human Predicament (4)", + "edges_from": [], + "edges_to": [], + "id": 3545, + "label": "ANBI", + "title": "" + }, + { + "dept": "TDAC", + "description": "An exploration of the wide array of physical skills necessary for the actor. Using techniques derived from mime, clowning, sports, acrobatics, and improvisation, students will investigate their individual physical potential as well as their sense of creativity and imagination. ", + "edges_from": [ + 3547 + ], + "edges_to": [], + "id": 3546, + "label": "TDAC 115", + "title": "Movement for Actors (4)" + }, + { + "dept": "TDAC", + "description": "", + "edges_from": [ + 1105 + ], + "edges_to": [ + 3546, + 452, + 3550 + ], + "id": 3547, + "label": "TDAC 101", + "title": "" + }, + { + "dept": "TDAC", + "description": "An in-depth study seminar focused on special issues in acting as they relate to contemporary theatre. Of particular interest to students who plan to pursue a career in this area of theatre. ", + "edges_from": [ + 452 + ], + "edges_to": [], + "id": 3548, + "label": "TDAC 112", + "title": "Senior Seminar in Acting (4)" + }, + { + "dept": "TDAC", + "description": "This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will perform in simulated studio setting on camera. ", + "edges_from": [ + 452 + ], + "edges_to": [], + "id": 3549, + "label": "TDAC 110", + "title": "Acting for the Camera (4)" + }, + { + "dept": "TDAC", + "description": "Intensive workshop for actors and directors designed to \u201cfree the voice,\u201d with special emphasis on characteristics and vocal flexibility in a wide range of dramatic texts. This proven method combines experimental and didactic learning with selected exercises, texts, tapes, films, and total time commitment. ", + "edges_from": [ + 3547 + ], + "edges_to": [], + "id": 3550, + "label": "TDAC 111", + "title": "Freeing the Voice (4)" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1914\u20132001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD, or HIEU 116CD and HIEU 117B.", + "edges_from": [], + "edges_to": [], + "id": 3551, + "label": "HIEU 116CD", + "title": "Greece and the Balkans during the Twentieth Century (4)" + }, + { + "dept": "TDGR", + "description": "Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ", + "edges_from": [], + "edges_to": [], + "id": 3552, + "label": "TDGR 225A-B", + "title": "Singing for the Actor II (1-1)" + }, + { + "dept": "HIAF", + "description": "West Africa from the nineteenth century onwards and examines the broad outlines of historical developments in the sub-region through the twentieth century, including such themes as religious, political, and social changes.", + "edges_from": [], + "edges_to": [], + "id": 3553, + "label": "HIAF 112", + "title": "West Africa since 1880 (4)" + }, + { + "dept": "HIAF", + "description": "Wars and the Global Order: Africa and Asia (4)", + "edges_from": [], + "edges_to": [], + "id": 3554, + "label": "HIAF 113", + "title": "Small" + }, + { + "dept": "HIAF", + "description": "A survey of African history dealing with the European scramble for territory, primary resistance movements, the rise of nationalism and the response of metropolitan powers, the transfer of power, self-rule and military coups, and the quest for identity and unity.", + "edges_from": [], + "edges_to": [], + "id": 3555, + "label": "HIAF 111", + "title": "Modern Africa since 1880 (4)" + }, + { + "dept": "ETHN", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations.", + "edges_from": [], + "edges_to": [], + "id": 3556, + "label": "ETHN 500", + "title": "Apprentice Teaching in Ethnic Studies (4)" + }, + { + "dept": "MUS", + "description": "First part in composition course sequence. Individual projects will be reviewed in seminar. Techniques of instrumentation will be developed through examination of scores and creative application. Assignments will include short exercises and analysis, and final project for standard ensemble. ", + "edges_from": [ + 3307 + ], + "edges_to": [ + 3560 + ], + "id": 3557, + "label": "MUS 103A", + "title": "Seminar in Composition I (4)" + }, + { + "dept": "VIS", + "description": "A critical survey outlining the major avant-gardes after 1900: fauvism, cubism, metaphysical painting, futurism, Dadaism, surrealism, neoplasticism, purism, the Soviet avant-garde, socialist realism, and American art before abstract expressionism. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 3558, + "label": "VIS 125A", + "title": "Twentieth-Century Art (4)" + }, + { + "dept": "MUS", + "description": "Third part in composition course sequence. A mixture of individual lessons as well as group meetings, with discussion of topics germane to the development of composers, including musical aesthetics and contemporary orchestration techniques. Final performance of students\u2019 work will take place at the end of the quarter. ", + "edges_from": [ + 3560 + ], + "edges_to": [], + "id": 3559, + "label": "MUS 103C", + "title": "Seminar in Composition III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 3557 + ], + "edges_to": [ + 3559 + ], + "id": 3560, + "label": "MUS 103B", + "title": "" + }, + { + "dept": "PHIL", + "description": "Introduction to Mexican philosophy with discussion of the work of such figures as Las Casas, Sor Juana Ines de la Cruz, Vasconcelos, Uranga, Zea, Villoro, Dussel, Hierro, Lara, and Hurtado. Topics may include historical movements, such as scholasticism, positivism, Mexican existentialism, and indigenous thought, as well as contemporary developments and the relationship to philosophy in the United States, Europe, and elsewhere.", + "edges_from": [], + "edges_to": [], + "id": 3561, + "label": "PHIL 155", + "title": "Mexican Philosophy (4)" + }, + { + "dept": "ECE", + "description": "General introduction to planetary bodies,", + "edges_from": [], + "edges_to": [], + "id": 3562, + "label": "ECE 120", + "title": "Solar System Physics (4)" + }, + { + "dept": "ECE", + "description": "The electromagnetic and systems engineering of radio antennas for terrestrial wireless and satellite communications. Antenna impedance, beam pattern, gain, and polarization. Dipoles, monopoles, paraboloids, phased arrays. Power and noise budgets for communication links. Atmospheric propagation and multipath. ", + "edges_from": [ + 296 + ], + "edges_to": [], + "id": 3563, + "label": "ECE 123", + "title": "Antenna Systems Engineering (4)" + }, + { + "dept": "MATH", + "description": "Calculus of functions of several variables,", + "edges_from": [], + "edges_to": [], + "id": 3564, + "label": "MATH 150B", + "title": "Calculus on Manifolds (4)" + }, + { + "dept": "CENG", + "description": "Principles of analysis and design of systems", + "edges_from": [], + "edges_to": [], + "id": 3565, + "label": "CENG 122", + "title": "Separation Processes (4)" + }, + { + "dept": "PHIL", + "description": "Theoretical, empirical, methodological, and", + "edges_from": [], + "edges_to": [], + "id": 3566, + "label": "PHIL 150", + "title": "Philosophy of the Cognitive Sciences (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical issues of method and substance in the social sciences, such as causal and interpretive models of explanation, structuralism and methodological individualism, value neutrality, and relativism. ", + "edges_from": [], + "edges_to": [], + "id": 3567, + "label": "PHIL 152", + "title": "Philosophy of Social Science (4)" + }, + { + "dept": "HIUS", + "description": "This course reconsiders US history from a Pacific world perspective, from the eighteenth century to the present. Themes include comparative colonialism and empire; race, gender, and indigeneity; militarism and tourism; labor migration and resistance.", + "edges_from": [], + "edges_to": [], + "id": 3568, + "label": "HIUS 103", + "title": "The United States and the Pacific World (4)" + }, + { + "dept": "MGT", + "description": "Information Systems, and Data Analysis (4)", + "edges_from": [], + "edges_to": [], + "id": 3569, + "label": "MGT 413", + "title": "Operations," + }, + { + "dept": "NEU", + "description": "These courses are designed for graduate students in the neurosciences and other departments that are part of the interdisciplinary program (i.e., Biology, Cog Sci, Psychology). These courses have been designed to cover as much basic neuroscience as possible in three quarters of study. It will combine two three-hour meetings each week with a 1.5 hour lecture and a 1.5 hour discussion of papers. These will be required courses for all first-year neurosciences graduate students. Biology will cross-list courses under Biology headings, making it a requirement of first-year Biology graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 3570, + "label": "NEU 200A-B-C", + "title": "Basic Neuroscience (4-4-4)" + }, + { + "dept": "CHEM", + "description": "Students will review basic principles of light and electron", + "edges_from": [], + "edges_to": [], + "id": 3571, + "label": "CHEM 260", + "title": "Light and Electron Microscopy of Cells and Tissue (4)" + }, + { + "dept": "ECE", + "description": "Linear least Squares (batch, recursive, total, sparse, pseudoinverse, QR, SVD); Statistical figures of merit (bias, consistency, Cramer-Rao lower-bound, efficiency); Maximum likelihood estimation (MLE); Sufficient statistics; Algorithms for computing the MLE including the Expectation Maximation (EM) algorithm. The problem of missing information; the problem of outliers. (Recommended prerequisites: ECE 109 and ECE 153.) ", + "edges_from": [], + "edges_to": [], + "id": 3572, + "label": "ECE 275A", + "title": "Parameter Estimation I (4)" + }, + { + "dept": "ECE", + "description": "The Bayesian statistical framework; Parameter and state estimation of", + "edges_from": [], + "edges_to": [], + "id": 3573, + "label": "ECE 275B", + "title": "Parameter Estimation II (4)" + }, + { + "dept": "BENG", + "description": "An enrichment program available to a limited number of lower-division undergraduate students, which provides work experience with industry, government offices, and hospitals. The internship is coordinated through UC San Diego\u2019s Academic Internship Program under the supervision of a faculty member and an industrial, government, or hospital employee. ", + "edges_from": [], + "edges_to": [], + "id": 3574, + "label": "BENG 97", + "title": "Internship/Field Studies (1\u20134)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BGGN", + "edges_from": [], + "edges_to": [], + "id": 3575, + "label": "CHEM 265", + "title": "3D Electron Microscopy of Macromolecules (4)" + }, + { + "dept": "ANAR", + "description": "The archaeological field school will take place in the eastern Mediterranean region. It is an introduction to the design of research projects, the techniques of data collection, and the methods of excavation. Includes post-excavation lab work, study trips, and field journal. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 3576, + "label": "ANAR 190", + "title": "Eastern Mediterranean Archaeological Field School (12)" + }, + { + "dept": "ANAR", + "description": "Students learn advanced field methods in cyber-archaeology and excavation. Includes 3-D data capture tools and processing, digital photography, construction of research designs, cyber-infrastructure. Takes place in the eastern Mediterranean region. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 3577, + "label": "ANAR 191", + "title": "Advanced Cyber-Archaeology Field School (12)" + }, + { + "dept": "MAE", + "description": "Design and analysis of original experiments in mechanical engineering. Students research projects using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine and control systems. Students propose and design experiments, obtain data, complete engineering analysis and write a major report. ", + "edges_from": [ + 3579 + ], + "edges_to": [], + "id": 3578, + "label": "MAE 171B", + "title": "Mechanical Engineering Laboratory II (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 2819, + 676, + 2085, + 2086, + 1127, + 1308, + 5004, + 821, + 2820, + 922, + 988 + ], + "edges_to": [ + 3578 + ], + "id": 3579, + "label": "MAE 171A", + "title": "" + }, + { + "dept": "GPPA", + "description": "This course examines the human dimension of environmental change, focusing on topics such as biodiversity conservation, climate change, land use systems, deforestation, and the institutions of regulation. The course uses Latin America as its central focus but, for comparative perspective, uses cases from Asia and Africa. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 472. Students may not receive credit for GPPA 472 and IRGN 472.", + "edges_from": [], + "edges_to": [], + "id": 3580, + "label": "GPPA 472", + "title": "Latin American Environmental and Energy Policy (4)" + }, + { + "dept": "HIUS", + "description": "The United States as modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism.", + "edges_from": [], + "edges_to": [], + "id": 3581, + "label": "HIUS 141/ECON 159", + "title": "Economic History of the United States II (4)" + }, + { + "dept": "BENG", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3582, + "label": "BENG 98", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "BENG", + "description": "Independent reading or research by arrangement with a bioengineering faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3583, + "label": "BENG 99", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "PHYS", + "description": "An introduction to galaxies and cosmology. Topics include the Milky Way, galaxy types and distances, dark matter, large scale structure, the expansion of the Universe, dark energy, and the early Universe. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 3584, + "label": "PHYS 7", + "title": "Galaxies and Cosmology (4)" + }, + { + "dept": "PHYS", + "description": "An introduction to the evolution of stars, including their birth and death. Topics include constellations, the atom and light, telescopes, stellar birth, stellar evolution, white dwarfs, neutron stars, black holes, and general relativity. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 3585, + "label": "PHYS 5", + "title": "Stars and Black Holes (4)" + }, + { + "dept": "CSE", + "description": "Connectionist models and a sampling of other cognitive modeling techniques. Models of language processing, memory, sequential processes, and vision. Areas covered may vary depending on student and faculty interests. Can be repeated for credit. CSE 151 or CSE 250B or CSE 253 or CSE 254, or equivalent experience recommended. ", + "edges_from": [], + "edges_to": [], + "id": 3586, + "label": "CSE 258A", + "title": "Cognitive Modeling (4)" + }, + { + "dept": "PHYS", + "description": "Examines phenomena and technology encountered in daily life from a physics perspective. Topics include waves, musical instruments, telecommunication, sports, appliances, transportation, computers, and energy sources. Physics concepts will be introduced and discussed as needed employing some algebra. No prior physics knowledge is required.", + "edges_from": [], + "edges_to": [], + "id": 3587, + "label": "PHYS 8", + "title": "Physics of Everyday Life (4)" + }, + { + "dept": "NANO", + "description": "This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nano materials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nano composites, and applications in biomedicine and food science. Cross-listed with Chem 241.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3588, + "label": "NANO 241", + "title": "Organic Nanomaterials (4)" + }, + { + "dept": "GPEC", + "description": "This course analyzes multilateral environmental agreements and negotiating positions of key countries on climate change, biodiversity conservation, sustainable development, and other subjects. It explores the challenges countries face to balance economic development objectives with global environmental concerns. Renumbered from IRGN 458. Students may not receive credit for GPEC 458 and IRGN 458.", + "edges_from": [], + "edges_to": [], + "id": 3589, + "label": "GPEC 458", + "title": "International Environmental Policy and Politics (4)" + }, + { + "dept": "LTAM", + "description": "Study of the relationships between cultural production (literature, film, popular culture), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, and revolution. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3590, + "label": "LTAM 140", + "title": "Topics in Culture and Politics (4)" + }, + { + "dept": "HIUS", + "description": "181/281. Topics in Twentieth Century United States History (4)", + "edges_from": [], + "edges_to": [], + "id": 3591, + "label": "HIUS", + "title": "" + }, + { + "dept": "GPEC", + "description": "The course will cover the various aspects of the concept and application of sustainable development: the ways in which sustainable development can be measured, methods for the evaluation of environmental damages and benefits, and the role of discounting. We will analyze several cases demonstrating failure of the market. Renumbered from IRGN 453. Students may not receive credit for GPEC 453 and IRGN 453.", + "edges_from": [], + "edges_to": [], + "id": 3592, + "label": "GPEC 453", + "title": "Sustainable Development (4)" + }, + { + "dept": "GPEC", + "description": "This course will cover topics such as: economic growth in the long run; cross-country differences in income, labor supply, human capital, investment, and welfare; development accounting; technology adoption; misallocation and total-factor productivity; rural-urban income gaps and migration; structural transformation; and competition and productivity. Student may not receive credit for GPEC 450 and IRGN 490, Macroeconomics of Development. GPCO 401 and GPCO 403 are recommended.", + "edges_from": [], + "edges_to": [], + "id": 3593, + "label": "GPEC 450", + "title": "Macroeconomics of Development (4)" + }, + { + "dept": "GPEC", + "description": "This course examines comparative patterns of industrialization and agricultural modernization with a focus on certain common features of the modernization process and widely varying endowments, policies, and experiences, of different countries. Renumbered from IRGN 451. Students may not receive credit for GPEC 451 and IRGN 451. ", + "edges_from": [ + 2981, + 2983 + ], + "edges_to": [], + "id": 3594, + "label": "GPEC 451", + "title": "Economic Development (4)" + }, + { + "dept": "GPEC", + "description": "This course introduces students to the basic competencies and practical skills of a development practitioner. Lectures will be grounded in a practical, multi-sectorial approach that focuses on the interrelationship of the social sciences, health sciences, and natural sciences. It emphasizes a \u201cdifferential diagnosis for development\u201d through case studies of developing countries. Students will be asked to use both STATA and GIS to analyze household survey data to identify poverty hot spots. May not receive credit for GPEC 455 and the IRGN 490 course of the same title. Assumes competence in both STATA and GIS.", + "edges_from": [], + "edges_to": [], + "id": 3595, + "label": "GPEC 455", + "title": "Integrated Development Practice (4)" + }, + { + "dept": "HITO", + "description": "An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.", + "edges_from": [], + "edges_to": [], + "id": 3596, + "label": "HITO 133D", + "title": "War and Society: The Second World War (4)" + }, + { + "dept": "LTEA", + "description": "The course will focus on a few representative masterpieces of Chinese literature in its classical age, with emphasis on the formal conventions and the social or intellectual presuppositions that are indispensable to their understanding. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3597, + "label": "LTEA 110A", + "title": "Classical Chinese Fiction in Translation (4)" + }, + { + "dept": "LTEA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3598, + "label": "LTEA 110C", + "title": "Contemporary Chinese Fiction in Translation (4)" + }, + { + "dept": "LTEA", + "description": "A survey of representative works of the modern period from 1919 to 1949. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3599, + "label": "LTEA 110B", + "title": "Modern Chinese Fiction in Translation (4)" + }, + { + "dept": "NANO", + "description": "Overview of of graphene and other 2-D materials fundamental properties, applications, and experimental practice. Theory covers band structure, Dirac cone, mobility, and Fermi level tuning. Applications cover electronics and optoelectronics. Lab sessions include graphene and other 2-D materials manipulation and measurement.", + "edges_from": [], + "edges_to": [], + "id": 3600, + "label": "NANO 275", + "title": "Two-Dimensional Materials: Properties, Applications, and Practice (4)" + }, + { + "dept": "SOCI", + "description": "Interrelationships between law and society, in the U.S. and other parts of the world. We examine law\u2019s norms, customs, culture, and institutions, and explain the proliferation of lawyers in the U.S. and the expansion of legal \u201crights\u201d worldwide. Will not receive credit for SOCI 50 and SOCL 50.", + "edges_from": [], + "edges_to": [], + "id": 3601, + "label": "SOCI 50", + "title": "Introduction to Law and Society (4)" + }, + { + "dept": "NANO", + "description": "This course will introduce a background in optics and photonics for nanoscale materials and devices and explore light-matter interactions on the nanoscale. Fundamentals of light absorption, emission, lasing, and waveguiding in nanoscale structures, optical resonances in metallic (plasmonic) and semiconductor (excitonic) nanomaterials.", + "edges_from": [], + "edges_to": [], + "id": 3602, + "label": "NANO 271", + "title": "Nanophotonics (4)" + }, + { + "dept": "FMPH", + "description": "This is the first of a three-part honors series that serves as the culminating experience for the BS in public health (BSPH) majors. Students review, reinforce, and complement skills and knowledge gained throughout the BSPH program, and prepare a proposal integrating critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1024, + 1026, + 1027, + 1028, + 1029 + ], + "edges_to": [ + 1530 + ], + "id": 3603, + "label": "FMPH 196A", + "title": "Public Health Honors Practicum I (4)" + }, + { + "dept": "NANO", + "description": "General overview of flexible/stretchable electronic devices, with a focus on the enabling nanomaterials and structures that lead to the tolerance to extreme physical deformations. Relevant nanofabrication techniques and manufacturing approaches will also be included.", + "edges_from": [], + "edges_to": [], + "id": 3604, + "label": "NANO 272", + "title": "Soft Electronics (4)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 3605, + "label": "Linguistics/Hindi (LIHI) 1D", + "title": "Hindi Conversation (2.5)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 3606, + "label": "Linguistics/Hindi (LIHI) 1A", + "title": "Hindi Conversation (2.5)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 3607, + "label": "Linguistics/Hindi (LIHI) 1B", + "title": "Hindi Conversation (2.5)" + }, + { + "dept": "COGS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 3608, + "label": "COGS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "SE", + "description": "The course deals with cable structures from a structural mechanics point of view. The theoretical and practical aspects of the application of cables to moorings, guyed structures, suspension bridges, cable-stayed bridges, and suspended membranes are discussed. ", + "edges_from": [], + "edges_to": [], + "id": 3609, + "label": "SE 215", + "title": "Cable Structures (4)" + }, + { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1A. ", + "edges_from": [], + "edges_to": [], + "id": 3610, + "label": "Linguistics/German (LIGM) 1AX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "SE", + "description": "Analysis and design of unreinforcced and reinforced masonry structure using advanced analytical techniques and design philosophies. Material properties, stability, and buckling of unreinforced masonry. Flexural strength, shear strength, stiffness, and ductility of reinforced masonry elements. Design for seismic loads. ", + "edges_from": [ + 2880 + ], + "edges_to": [], + "id": 3611, + "label": "SE 214", + "title": "Masonry Structures (4)" + }, + { + "dept": "VIS", + "description": "of Criticism II: Early Twentieth Century (1900\u20131950) (4)", + "edges_from": [], + "edges_to": [], + "id": 3612, + "label": "VIS 113BN", + "title": "History" + }, + { + "dept": "SE", + "description": "Load and Resistance Factor Design (LRFD) philosophy. Behavior and design of steel elements for global and local buckling. Background of seismic codes. Ductility requirements and capability design concept. Seismic design of steel moment frames and braced frames. ", + "edges_from": [ + 3614, + 2878 + ], + "edges_to": [], + "id": 3613, + "label": "SE 212", + "title": "Advanced Structural Steel Design (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 3613 + ], + "id": 3614, + "label": "SE 201", + "title": "" + }, + { + "dept": "MGT", + "description": "Covers the principles, methods and applications of general accounting, cost accounting and investment ROI.\u00a0Development of the three key financial reports and their interrelations, cost identification, product costing, inventory control, operational performance, and investment return calculations are also covered. This course is designed for nonaccounting minors.", + "edges_from": [], + "edges_to": [ + 686 + ], + "id": 3615, + "label": "MGT 45", + "title": "Principles of Accounting (4)" + }, + { + "dept": "LTWL", + "description": "Seminar in Literatures of the World (1)", + "edges_from": [], + "edges_to": [], + "id": 3616, + "label": "LTWL 192", + "title": "Senior" + }, + { + "dept": "LTWL", + "description": "Explorations in critical theory and method. This course, designed to prepare students to write an honors thesis, is open only to literature majors invited into the department\u2019s Honors Program.", + "edges_from": [], + "edges_to": [], + "id": 3617, + "label": "LTWL 191", + "title": "Honors Seminar (4)" + }, + { + "dept": "LTWL", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "edges_from": [], + "edges_to": [], + "id": 3618, + "label": "LTWL 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "LTWL", + "description": "An advanced seminar open to all literature majors in their senior year. Required for those interested in the Honors Program. It offers an integrative experience by considering key facets of the discipline, including literary theory/historiography, knowledge of neighboring disciplines, and relevance of literature/culture studies in various professions outside of academia. ", + "edges_from": [], + "edges_to": [ + 4135 + ], + "id": 3619, + "label": "LTWL 194", + "title": "Capstone Course for Literature Majors (4)" + }, + { + "dept": "LTWL", + "description": "Tutorial; individual guided reading in areas of literature (in translation) not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3620, + "label": "LTWL 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTWL", + "description": "Research seminars and research, under the direction of faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3621, + "label": "LTWL 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "Jewish", + "description": "Study of a particular period, theme, or literature in Jewish civilization. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3622, + "label": "Jewish Studies 111", + "title": "Topics in Judaic Studies (4)" + }, + { + "dept": "CSE", + "description": "Zero-knowledge, secure computation, session-key distribution, protocols, electronic payment, one-way functions, trapdoor permutations, pseudorandom bit generators, hardcore bits. ", + "edges_from": [ + 782, + 1742, + 1743 + ], + "edges_to": [], + "id": 3623, + "label": "CSE 208", + "title": "Advanced Cryptography (4)" + }, + { + "dept": "BIEB", + "description": "An interactive introduction to estimation, hypothesis testing, and statistical reasoning. Emphasis on the conceptual and logical basis of statistical ideas. Focus on randomization rather than parametric techniques. Topics include describing data, sampling, bootstrapping, and significance. Mandatory one-hour weekly section. Students may not receive credit for both BIEB 100 and SIO 187. ", + "edges_from": [ + 129, + 130, + 133, + 3624, + 3625, + 1424, + 1061 + ], + "edges_to": [ + 4325, + 4327, + 3624, + 3943, + 4151, + 4765 + ], + "id": 3624, + "label": "BIEB 100", + "title": "Biostatistics (4)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 3624, + 4327 + ], + "id": 3625, + "label": "SIO 187", + "title": "" + }, + { + "dept": "MGT", + "description": "A small group undertaking, on a topic or in a field not included in the regular curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3626, + "label": "MGT 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "ECE", + "description": "Topics include how devices such as iPods and iPhones generate, transmit, receive and process information (music, images, video, etc.), the relationship between technology and issues such as privacy and \u201cnet-neutrality,\u201d and current topics related to information technology. ", + "edges_from": [], + "edges_to": [], + "id": 3627, + "label": "ECE 85", + "title": "iTunes 101: A Survey of Information Technology (4)" + }, + { + "dept": "LTGM", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3628, + "label": "LTGM 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTGM", + "description": "Tutorial; individual guided reading in areas of German literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3629, + "label": "LTGM 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTGM", + "description": "These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3630, + "label": "LTGM 190", + "title": "Seminars in German Culture (4)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3631, + "label": "BGRD 222", + "title": "Research Discussion in Evolutionary Molecular Ecology (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3632, + "label": "BGRD 221", + "title": "Research Discussion in Behavioral Ecology (1)" + }, + { + "dept": "ECON", + "description": "Applied theory and case-based class requiring students to develop hypothesis-driven, problem-solving skills. Students will work in teams and will develop management consultant skills by applying microeconomic theory, marketing, accounting, and econometric analyses to real-world business problems. Presentation of student analyses both orally and in writing. ", + "edges_from": [ + 1979, + 1132, + 797 + ], + "edges_to": [], + "id": 3633, + "label": "ECON 177L", + "title": "Applied Management Laboratory (4)" + }, + { + "dept": "SOCI", + "description": "This course examines how the US legal system has responded to workplace inequality and demands for employee rights. Particular attention is given to racial, gender, religious, and disability discrimination, as well as the law\u2019s role in regulating unions, the global economy, and sweatshop labor. ", + "edges_from": [ + 3634, + 3635 + ], + "edges_to": [ + 3634 + ], + "id": 3634, + "label": "SOCI 140F", + "title": "Law and the Workplace (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3634 + ], + "id": 3635, + "label": "SOCC 140F", + "title": "" + }, + { + "dept": "MATH", + "description": "Statistical analysis of data by means of package programs. Regression, analysis of variance, discriminant analysis, principal components, Monte Carlo simulation, and graphical methods. Emphasis will be on understanding the connections between statistical theory, numerical results, and analysis of real data. Recommended preparation: exposure to computer programming (such as CSE 5A, CSE 7, or ECE 15) highly recommended. ", + "edges_from": [ + 134, + 1992, + 1993, + 1994, + 139, + 140, + 1389, + 141, + 3637, + 3638, + 1996 + ], + "edges_to": [], + "id": 3636, + "label": "MATH 185", + "title": "Introduction to Computational Statistics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3642, + 3636, + 4327 + ], + "id": 3637, + "label": "MAE 108", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1995, + 140, + 139, + 134, + 141 + ], + "edges_to": [ + 3636, + 4327 + ], + "id": 3638, + "label": "MATH 181A", + "title": "" + }, + { + "dept": "LTCS", + "description": "(Cross-listed with CGS 119.) The course explores the politics of pleasure in relation to the production, reception, and performance of Asian American identities in the mass media of film, video, and the Internet. The course considers how the \u201cdeviant\u201d sexuality of Asian Americans (e.g., hypersexual women and emasculated men) does more than uniformly harm and subjugate Asian American subjects. The texts explored alternate between those produced by majoritarian culture and the interventions made by Asian American filmmakers. Students may not receive credit for LTCS 119 and CGS 119.", + "edges_from": [], + "edges_to": [], + "id": 3639, + "label": "LTCS 119", + "title": "Asian American Film and Media (4)" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 5503, + 3015 + ], + "id": 3640, + "label": "LIIT 1C", + "title": "" + }, + { + "dept": "LTIT", + "description": "", + "edges_from": [], + "edges_to": [ + 3015 + ], + "id": 3641, + "label": "LTIT 1C", + "title": "" + }, + { + "dept": "MATH", + "description": "An introduction to various quantitative methods and statistical techniques for analyzing data\u2014in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. ", + "edges_from": [ + 1995, + 1669, + 134, + 1992, + 1996, + 1994, + 139, + 140, + 141, + 18, + 3637, + 1993, + 3643 + ], + "edges_to": [], + "id": 3642, + "label": "MATH 189", + "title": "Exploratory Data Analysis and Inference (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 3642 + ], + "id": 3643, + "label": "SE 125", + "title": "" + }, + { + "dept": "VIS", + "description": "Art of Ancient Mexico and Central America (4)", + "edges_from": [], + "edges_to": [], + "id": 3644, + "label": "VIS 126AN", + "title": "Pre-Columbian" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1350\u20131683). Topics covered: the rise of the Ottoman Empire, conquest of the Balkans, the Ottoman system of rule, religious life, rural and urban society, law and order, and material culture.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 3645, + "label": "HIEU 116A", + "title": "Greece and the Balkans in the Age of Ottoman Expansion (4)" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1683\u20131914). Topics covered: social and economic development in the eighteenth century, nationalism, independence wars, state-nation formation, interstate relations, the Eastern Question, rural society, urbanization, emigration, and the Balkan Wars. Students may not get credit for both HIEU 116B and HIEU 117A.", + "edges_from": [], + "edges_to": [], + "id": 3646, + "label": "HIEU 116B", + "title": "Greece and the Balkans in the Age of Nationalism (4)" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1914\u20132001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD.", + "edges_from": [], + "edges_to": [], + "id": 3647, + "label": "HIEU 116C", + "title": "Greece and the Balkans during the Twentieth Century (4)" + }, + { + "dept": "PHIL", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 3648, + "label": "PHIL 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MATH", + "description": "Survey of discretization techniques for elliptic partial differential equations, including finite difference, finite element and finite volume methods. Lax-Milgram Theorem and LBB stability. A priori error estimates. Mixed methods. Convection-diffusion equations. Systems of elliptic PDEs. ", + "edges_from": [], + "edges_to": [ + 3650 + ], + "id": 3649, + "label": "MATH 272A", + "title": "Numerical Partial Differential Equations I (4)" + }, + { + "dept": "MATH", + "description": "Survey of solution techniques for partial differential equations. Basic iterative methods. Preconditioned conjugate gradients. Multigrid methods. Hierarchical basis methods. Domain decomposition. Nonlinear PDEs. Sparse direct methods. ", + "edges_from": [ + 3649 + ], + "edges_to": [ + 3651 + ], + "id": 3650, + "label": "MATH 272B", + "title": "Numerical Partial Differential Equations II (4)" + }, + { + "dept": "MATH", + "description": "Time dependent (parabolic and hyperbolic) PDEs. Method of lines. Stiff systems of ODEs. Space-time finite element methods. Adaptive meshing algorithms. A posteriori error estimates. ", + "edges_from": [ + 3650 + ], + "edges_to": [], + "id": 3651, + "label": "MATH 272C", + "title": "Numerical Partial Differential Equations III (4)" + }, + { + "dept": "CSE", + "description": "260B. VLSI Integration of Computing Circuitry (4)", + "edges_from": [], + "edges_to": [], + "id": 3652, + "label": "CSE 241A/ECE", + "title": "" + }, + { + "dept": "HINE", + "description": "Great Stories from the Hebrew Bible/Foreign Language (1)", + "edges_from": [], + "edges_to": [], + "id": 3653, + "label": "HINE 112AL", + "title": "" + }, + { + "dept": "POLI", + "description": "Power, a crucial part of politics, can be, and often is, abused. This course discusses the nature of power and surveys a variety of abuses, including agenda manipulation, rent extraction, fraud, extortion, corruption, exploitation, and gross political oppression. ", + "edges_from": [], + "edges_to": [], + "id": 3654, + "label": "POLI 122D", + "title": "Abuse of Power (4)" + }, + { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the twentieth century: agrarian reforms, unionization, industrialization by import substitution, the political left, social development, and international relations. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ", + "edges_from": [], + "edges_to": [], + "id": 3655, + "label": "HILA 169/269", + "title": "Scholarship on Latin American History in the Twentieth Century (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Conducted entirely in Spanish. Course aims to improve oral language skills through discussions of social science topics, with emphasis on political events and current affairs. Course materials encompass televised news broadcasts, newspapers and periodicals. LISP 15 is offered fall quarter only, LISP 16 is offered winter quarter only, and LISP 17 is offered spring quarter only. Each course may be taken one time and need not be taken in sequence. ", + "edges_from": [ + 2420, + 2422 + ], + "edges_to": [], + "id": 3656, + "label": "Linguistics/Spanish (LISP) 15, 16, 17", + "title": "Intermediate Spanish for the Social Sciences (2)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3657, + "label": "LTLA 104", + "title": "Latin Prose (4)" + }, + { + "dept": "LTCO", + "description": "This interdisciplinary course looks at performativity as a social process of cultural significance. It examines the works of John Searle, Jacques Derrida, Judith Butler, and Jose Esteban Munoz and underlines the role of performative action in linguistic, literary, cinematic, theatrical, political, and other forms of human interactivity. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3658, + "label": "LTCO 284", + "title": "Performativity (4)" + }, + { + "dept": "LTCO", + "description": "Research in literary theory and aesthetic philosophies. Single and multiple authors and topics; Plato and Aristotle, Renaissance treatises, Winckleman, Kant and Hegel in the Enlightenment, Warburg, Heidegger and Panofsky, contemporary art theory, et al. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3659, + "label": "LTCO 285", + "title": "Literature and Aesthetics (4)" + }, + { + "dept": "LTCO", + "description": "A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3660, + "label": "LTCO 287", + "title": "Culture and Political Theory (4)" + }, + { + "dept": "LTCO", + "description": "A study of literature and film in relation to one another, to critical and aesthetic theories, and to historical context. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3661, + "label": "LTCO 281", + "title": "Literature and Film (4)" + }, + { + "dept": "LTCO", + "description": "Questions and problems from the history of philosophy or from the various fields of philosophy (e.g., epistemology, ethics, logic) in their interaction with intellectual issues and questions addressed by literary criticism and theory. May be taken for credit up to three times. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3662, + "label": "LTCO 282", + "title": "Literature and Philosophy (4)" + }, + { + "dept": "COGR", + "description": "Media technologies from books to electronic media. Consideration of both technological design processes and shifting uses of media. Reflection on media and broader patterns of technological innovation. Attention to the distinctive role of media in technological change. ", + "edges_from": [], + "edges_to": [], + "id": 3663, + "label": "COGR 243", + "title": "Media Technologies (4)" + }, + { + "dept": "COGR", + "description": "Examination of historical and contemporary reorderings of space, time, and experience through culture and commerce, social movements, war and trade, communication institutions and practices. Considers various disciplinary modes of analyzing the forms of life produced by these processes as well as the possibilities for intervention and transformation. ", + "edges_from": [], + "edges_to": [], + "id": 3664, + "label": "COGR 242", + "title": "Globalization (4)" + }, + { + "dept": "COGR", + "description": "Geographies as media of political cultural communication. Not simply mapping but also territorial engineering as a way of constituting geographical significance. Cross-mapping practices\u2014intersecting representational practices\u2014as political forms of communication. Geographies as visual practices of power. ", + "edges_from": [], + "edges_to": [], + "id": 3665, + "label": "COGR 241", + "title": "Geography and Communication (4)" + }, + { + "dept": "COGR", + "description": "(Cross-listed with HIGR 273.) This course will explore the development and cultural manifestations of consumerism in the nineteenth and twentieth centuries. Topics will include the rise of museums, the development of mass market journalism and literature, advertising, and the growth of commercial amusements. Readings will focus primarily, but not exclusively, on the United States. Students will be encouraged to think comparatively. ", + "edges_from": [], + "edges_to": [], + "id": 3666, + "label": "COGR 240", + "title": "The Culture of Consumption (4)" + }, + { + "dept": "COGR", + "description": "Course explores the potential and constraints specific to writing for one or more media forms. Approaches include writing exercises, studying media, reading theoretical and historical texts, and project work. ", + "edges_from": [], + "edges_to": [], + "id": 3667, + "label": "COGR 247", + "title": "Writing for Media (4)" + }, + { + "dept": "COGR", + "description": "Course provides an introduction to the design, evaluation, and development of media that invite and structure play. This includes digital and nondigital games, as well as related forms. Exercises, readings, and projects are required. ", + "edges_from": [], + "edges_to": [], + "id": 3668, + "label": "COGR 246", + "title": "Playable Media (4)" + }, + { + "dept": "COGR", + "description": "Course explores human-technology interaction, social constructivism, actor-network theory, gender and technology, critical and cultural studies of science and technology, and public understandings of science and technology. Emphasis on what STS can contribute to the study of media and communication. ", + "edges_from": [], + "edges_to": [], + "id": 3669, + "label": "COGR 245", + "title": "Science and Technology Studies and Communication (4)" + }, + { + "dept": "COGR", + "description": "Course traces theoretical approaches to the study of culture from the Birmingham School to poststructuralist critiques of power, resistance, consumption, and pleasure. Students combine critical theory and empirical research in order to interpret the cultural politics of everyday life. ", + "edges_from": [], + "edges_to": [], + "id": 3670, + "label": "COGR 244", + "title": "Cultural Studies (4)" + }, + { + "dept": "HIUS", + "description": "This seminar will explore the histories of sexual relations, politics, and cultures that both cross and define racial boundaries in the nineteenth and twentieth centuries. Reading will focus on the United States as well as take up studies sited in Canada and Latin America. Graduate students are expected to submit a more substantial piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 3671, + "label": "HIUS 176/276", + "title": "Race and Sexual Politics (4)" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third in a four-course series. ", + "edges_from": [ + 3673 + ], + "edges_to": [ + 3675 + ], + "id": 3672, + "label": "EDS 289C", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [ + 3674 + ], + "edges_to": [ + 3672 + ], + "id": 3673, + "label": "EDS 289B", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 3673 + ], + "id": 3674, + "label": "EDS 289A", + "title": "" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the fourth course in a four-course series. ", + "edges_from": [ + 3672 + ], + "edges_to": [], + "id": 3675, + "label": "EDS 289D", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "LTFR", + "description": "A study in depth of the works of a major French writer. Recommended for students whose primary literature is French. May be repeated for credit as topics vary. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 3676, + "label": "LTFR 143", + "title": "Topics in Major Authors in French (4)" + }, + { + "dept": "LTWR", + "description": "A close look at sentence-level features of written discourse\u2013stylistics and sentence grammars. Students will review recent research on these topics and experiment in their own writing with various stylistic and syntactic options. ", + "edges_from": [], + "edges_to": [], + "id": 3677, + "label": "LTWR 143", + "title": "Stylistics and Grammar (4)" + }, + { + "dept": "POLI", + "description": "This course is concerned with the interaction between representative democracy and capitalism in American political history. The key to understanding this interaction is the role of the entrepreneur in the economy and how unexpected economic change shapes politics. ", + "edges_from": [], + "edges_to": [], + "id": 3678, + "label": "POLI 100P", + "title": "Economic Entrepreneurs and American Politics (4)" + }, + { + "dept": "MDE", + "description": "A general survey of modern high-throughput instruments used for imaging and analyzing structure-function relationships at the molecular and cellular levels. An overview of potential human genomic and systems approaches for designing and validating medical device safety and performance. ", + "edges_from": [], + "edges_to": [], + "id": 3679, + "label": "MDE 230", + "title": "Life Sciences and Technologies (4)" + }, + { + "dept": "MUS", + "description": "A hands-on encounter with several important works from the classic electronic repertory, showing a representative subset of the electronic techniques available to musicians. Students who have taken MUS 271 for credit may not take MUS 271A for credit. ", + "edges_from": [], + "edges_to": [ + 5337, + 3683 + ], + "id": 3680, + "label": "MUS 271A", + "title": "Survey of Electronic Music Techniques I (4)" + }, + { + "dept": "POLI", + "description": "This course provides an introduction to game theory with an emphasis on applications in economics, political science, and business. Game theory uses simple mathematical models to understand social phenomena. The required mathematical background is minimal (high school algebra).", + "edges_from": [], + "edges_to": [], + "id": 3681, + "label": "POLI 100U", + "title": "Games, Strategy, and Politics (4)" + }, + { + "dept": "MUS", + "description": "A continuation of 271A and B, with emphasis on compositional techniques (e.g., computer-aided composition, production, spatialization). ", + "edges_from": [ + 3683 + ], + "edges_to": [ + 5337 + ], + "id": 3682, + "label": "MUS 271C", + "title": "Survey of Electronic Music Techniques III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 3680 + ], + "edges_to": [ + 5337, + 3682 + ], + "id": 3683, + "label": "MUS 271B", + "title": "" + }, + { + "dept": "LIGN", + "description": "An introduction to the context-dependent aspects of language meaning. Topics include given versus new information, Gricean maxims and rules of conversation, presupposition, implicature, reference and cognitive status, discourse coherence and structure, and speech acts. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 3684, + "label": "LIGN 160", + "title": "Pragmatics (4)" + }, + { + "dept": "LIGN", + "description": "An introduction to the fundamental concepts of computational linguistics, in which we study natural language syntax and semantics from an interpretation perspective, describe methods for programming computer systems to perform such interpretation, and survey applications of computational linguistics technology. ", + "edges_from": [], + "edges_to": [], + "id": 3685, + "label": "LIGN 165", + "title": "Computational Linguistics (4)" + }, + { + "dept": "TDDE", + "description": "This course will examine the field of projection design for theatre and dance performance. Students will study and produce original works based on the theoretical and aesthetic approaches of animation, film, performance, and installation art that influence contemporary projection design. ", + "edges_from": [], + "edges_to": [], + "id": 3686, + "label": "TDDE 151", + "title": "Digital Video Design (4)" + }, + { + "dept": "LTEN", + "description": "Fiction II\u2014Since Middle James (4)", + "edges_from": [], + "edges_to": [], + "id": 3687, + "label": "LTEN 174", + "title": "American" + }, + { + "dept": "POLI", + "description": "This course will examine the nomination and election of congressmen, constituent relationships, the development of the institution, formal and informal structures, leadership, comparisons of House with Senate, lobbying, and relationship with the executive branch.", + "edges_from": [], + "edges_to": [], + "id": 3688, + "label": "POLI 100B", + "title": "The US Congress (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1B/1BX, 5BS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1C/1CX. ", + "edges_from": [ + 312 + ], + "edges_to": [], + "id": 3689, + "label": "Linguistics/Italian (LIIT) 5CS", + "title": "Fundamentals of Italian III (5)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3690, + "label": "LTEN 171", + "title": "Comparative Issues in Latino/a Immigration in US Literature (4)" + }, + { + "dept": "COGS", + "description": "This course presents the building blocks of social cognition from a developmental and evolutionary perspective and focuses on how and when children develop these abilities and how humans compare to other species such as great apes, birds, and dogs. ", + "edges_from": [ + 3165, + 2333 + ], + "edges_to": [], + "id": 3691, + "label": "COGS 144", + "title": "Social Cognition: A Developmental and Evolutionary Perspective (4)" + }, + { + "dept": "POLI", + "description": "This class explores the many ways in which face-to-face social networks have a powerful effect on a wide range of human behaviors. With a foundation in understanding real-world networks, we can then consider how these networks function online.", + "edges_from": [], + "edges_to": [], + "id": 3692, + "label": "POLI 100F", + "title": "Social Networks (4)" + }, + { + "dept": "LTEN", + "description": "Poetry II\u2014Whitman through the Modernists (4)", + "edges_from": [], + "edges_to": [], + "id": 3693, + "label": "LTEN 172", + "title": "American" + }, + { + "dept": "ETHN", + "description": "and Borderlands: The Local and Global (4)", + "edges_from": [], + "edges_to": [], + "id": 3694, + "label": "ETHN 260", + "title": "Transnationalism" + }, + { + "dept": "POLI", + "description": "Readings examine how the multiracial character of the United States has shaped the broad outlines of American politics. Cases include the founding/the Constitution, southern politics, social organization in formerly Mexican regions, the New Deal, consequences of limited suffrage. ", + "edges_from": [], + "edges_to": [], + "id": 3695, + "label": "POLI 100J", + "title": "Race in American Political Development (4)" + }, + { + "dept": "LTSP", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 3696, + "label": "LTSP 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ETHN", + "description": "This course surveys the field of immigration and refugee studies and introduces students to recent theories and cutting-edge research in the field. Key topics: gender and migration; diaspora and transnationalism; immigration, race, and citizenship; and globalization and immigrant labor. ", + "edges_from": [], + "edges_to": [], + "id": 3697, + "label": "ETHN 265", + "title": "Critical Immigration and Refugee Studies (4)" + }, + { + "dept": "LTEN", + "description": "A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 3698, + "label": "LTEN 178", + "title": "Comparative Ethnic Literature (4)" + }, + { + "dept": "POLI", + "description": "Examines Washington as a political community, its institutions, culture, and history. In addition to its elected officeholders and senior government officials, it examines Washington\u2019s subcommunities: the national news industry, diplomatic service, the representation of interests. ", + "edges_from": [], + "edges_to": [], + "id": 3699, + "label": "POLI 100N", + "title": "Politics in Washington (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, this course will introduce students to the tools and concepts of microeconomics to analyze decision problems within technology driven firms through the coverage of microeconomic concepts relevant to managerial decision making. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3700, + "label": "MGT 405", + "title": "Managerial Economics (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, students will be introduced to the basic concepts and methods used in financial statements. The course highlights the linkages between accounting information and management planning, decision making, and control. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3701, + "label": "MGT 404", + "title": "Accounting (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, students will be introduced to key techniques for using data to make informed management decisions. Covers probability, statistics, decision analysis, and optimization techniques. Emphasizes managerial applications in such areas as operations management, marketing, and finance. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3702, + "label": "MGT 403", + "title": "Quantitative Analysis (4)" + }, + { + "dept": "MGT", + "description": "Course focuses on various management communications platforms. Students will learn strategies to establish competence, build trust, motivate and inspire, and achieve commitment to action. Participants will develop, present, and receive intensive peer feedback for both written communications and presentations. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3703, + "label": "MGT 402", + "title": "Management Communications (1)" + }, + { + "dept": "MGT", + "description": "The Professional Seminar presents up-to-date research, professional skills development, and experts and business leaders as speakers. Topics may vary by term. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 3704, + "label": "MGT 401", + "title": "Professional Seminar (1)" + }, + { + "dept": "MGT", + "description": "Strategy (4)", + "edges_from": [], + "edges_to": [], + "id": 3705, + "label": "MGT 409", + "title": "Organizational" + }, + { + "dept": "COGR", + "description": "A doctoral student in communication is required to assist in teaching undergraduate Department of Communication courses for a total of six quarters. One meeting per week with the instructor, one meeting per week with the assigned sections, and attendance at the lecture of the undergraduate course in which he or she is participating are part of this requirement.", + "edges_from": [], + "edges_to": [], + "id": 3706, + "label": "COGR 500", + "title": "Practice Teaching in Communication (4)" + }, + { + "dept": "TDTR", + "description": "The study of dance on film and video, the evolution of the creation, filming, editing, and production of dance for the camera. Major dance film works will be analyzed and discussed from choreography in the movies to dances made for film. ", + "edges_from": [ + 3474 + ], + "edges_to": [], + "id": 3707, + "label": "TDTR 20", + "title": "Dance on Film (4)" + }, + { + "dept": "LIGN", + "description": "Directed research on dissertation topic for students who have been admitted to candidacy for the PhD degree. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3708, + "label": "LIGN 299", + "title": "Doctoral Research (1\u201312)" + }, + { + "dept": "LIGN", + "description": "Individual research. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 3709, + "label": "LIGN 296", + "title": "Directed Research (1\u20138)" + }, + { + "dept": "ETHN", + "description": "This course introduces students to key issues in Asian American lives, with emphasis on the global historical context of migration; changing ethnic and racial consciousness; economic, social, and political status; cultural production; and family and gender relations.", + "edges_from": [], + "edges_to": [], + "id": 3710, + "label": "ETHN 20", + "title": "Introduction to Asian American Studies (4)" + }, + { + "dept": "LIGN", + "description": "Gathering and interpreting data, formulating research questions and hypotheses, making the predictions of hypotheses explicit, finding relevant evidence, and organizing research results into suitable form for presentation in abstracts, talks, and research papers. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 3711, + "label": "LIGN 293", + "title": "Research Practicum (0\u20134)" + }, + { + "dept": "AUD", + "description": "Applications of clinical procedures to patient assessment. Includes clinical observation, interaction with otologists, and supervised patient care involving diagnostics and hearing-aid evaluations in the UC San Diego audiology clinics. This course may be taken more than once. ", + "edges_from": [ + 3713 + ], + "edges_to": [], + "id": 3712, + "label": "AUD 284", + "title": "Clinical Practice in Audiology II (1-4)" + }, + { + "dept": "AUD", + "description": "", + "edges_from": [], + "edges_to": [ + 3712 + ], + "id": 3713, + "label": "AUD 291", + "title": "" + }, + { + "dept": "ETHN", + "description": "Individual research on a topic that leads to the writing of a major paper. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 3714, + "label": "ETHN 199", + "title": "Supervised Independent Study and Research (4)" + }, + { + "dept": "ETHN", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 3715, + "label": "ETHN 198", + "title": "Directed Group Studies (4)" + }, + { + "dept": "ETHN", + "description": "This course comprises supervised community fieldwork on topics of importance to racial and ethnic communities in the greater San Diego area. Regular individual meetings with faculty sponsor and written reports are required. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 3716, + "label": "ETHN 197", + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + { + "dept": "ETHN", + "description": "Methods: Studying Racial and Ethnic Communities (4)", + "edges_from": [], + "edges_to": [], + "id": 3717, + "label": "ETHN 190", + "title": "Research" + }, + { + "dept": "PSYC", + "description": "This seminar examines issues in the psychology of judgment and decision making. Topics include the heuristics and biases approach, overconfidence, framing effects, intertemporal choice, and rationality. ", + "edges_from": [], + "edges_to": [], + "id": 3718, + "label": "PSYC 209", + "title": "Judgment and Decision Making (4)" + }, + { + "dept": "MUS", + "description": "How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both MUS 20 and COGS 20. (Cross-listed with COGS 20.) ", + "edges_from": [], + "edges_to": [], + "id": 3719, + "label": "MUS 20", + "title": "Exploring the Musical Mind (4)" + }, + { + "dept": "TDAC", + "description": "This course introduces basic skills of breathing, placement, diction, musicianship, harmony, interpretation, and presentation needed by actors for roles requiring singing. Through a combination of group and individual coaching in class, students will prepare a program of short solo and ensemble pieces for a finals-week presentation. ", + "edges_from": [ + 1105 + ], + "edges_to": [], + "id": 3720, + "label": "TDAC 109", + "title": "Singing for Actors (4)" + }, + { + "dept": "TDAC", + "description": "Advanced topics in acting, such as avant-garde drama, commedia, or Beckett, for students who possess basic acting techniques. May be taken for credit four times. ", + "edges_from": [ + 452 + ], + "edges_to": [], + "id": 3721, + "label": "TDAC 108", + "title": "Advanced Topics (4)" + }, + { + "dept": "TDAC", + "description": "Advanced exploration of Shakespeare\u2019s language through examining and performing scenes from the plays. Admission by audition/interview. May be taken for credit two times. ", + "edges_from": [ + 452 + ], + "edges_to": [], + "id": 3722, + "label": "TDAC 105", + "title": "Rehearing Shakespeare (4)" + }, + { + "dept": "TDAC", + "description": "Studies in the heightened realities of poetic drama. Verse analysis, research, methods and how to approach a classical dialogue. ", + "edges_from": [ + 452 + ], + "edges_to": [], + "id": 3723, + "label": "TDAC 104", + "title": "Classical Text (4)" + }, + { + "dept": "TDAC", + "description": "Practical exercises, discussion, text analysis, and scene work on the writings of Anton Chekhov. Admission by audition/interview. ", + "edges_from": [ + 452 + ], + "edges_to": [], + "id": 3724, + "label": "TDAC 106", + "title": "Chekhov Acting (4)" + }, + { + "dept": "ECE", + "description": "Materials Science of Integrated Circuits (4)", + "edges_from": [], + "edges_to": [], + "id": 3725, + "label": "ECE 134", + "title": "Electronic" + }, + { + "dept": "ANSC", + "description": "Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Students must apply to the Study Abroad UC San Diego program online at", + "edges_from": [], + "edges_to": [], + "id": 3726, + "label": "ANSC 106S", + "title": "Global Health: Indigenous Medicines in Latin America\u2014Study Abroad (4)" + }, + { + "dept": "MATS", + "description": "Fabrication of Micro-Electro-Mechanical Systems (MEMS) by bulk and surface micromachining of single crystal, polycrystal, and amorphous silicon and other materials. Performance issues including electrostatic, magnetic, piezoelectric actuations, residual stresses, deformation. Novel device applications, future trends in smart materials and nano-electro-mechanical (NEMS) systems. ", + "edges_from": [ + 3728 + ], + "edges_to": [], + "id": 3727, + "label": "MATS 254", + "title": "Frontier Micro-Electro-Mechanical Systems (MEMS) Materials and Devices (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3727 + ], + "id": 3728, + "label": "MAE 268", + "title": "" + }, + { + "dept": "MATS", + "description": "Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Students may not receive credit for CENG 256 and NANO 252 and MATS 255.", + "edges_from": [], + "edges_to": [], + "id": 3729, + "label": "MATS 255", + "title": "Biomaterials and Biomimetics (4)" + }, + { + "dept": "MATS", + "description": "This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor; and chemical structures and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. (Cross-listed with MAE 278.) ", + "edges_from": [], + "edges_to": [], + "id": 3730, + "label": "MATS 256", + "title": "Energy Materials and Applications (4)" + }, + { + "dept": "MATS", + "description": "Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. (Cross-listed with BENG 242.) ", + "edges_from": [ + 3732, + 3733 + ], + "edges_to": [], + "id": 3731, + "label": "MATS 257", + "title": "Polymer Science and Engineering (4)" + }, + { + "dept": "MS", + "description": "", + "edges_from": [], + "edges_to": [ + 3731 + ], + "id": 3732, + "label": "MS 76", + "title": "" + }, + { + "dept": "BE", + "description": "", + "edges_from": [], + "edges_to": [ + 3731 + ], + "id": 3733, + "label": "BE 75", + "title": "" + }, + { + "dept": "CENG", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine.\u00a0Cross-listed with\u00a0NANO\u00a0134. Students may not receive credit for both\u00a0CENG\u00a0134 and\u00a0NANO\u00a0134. ", + "edges_from": [ + 215 + ], + "edges_to": [], + "id": 3734, + "label": "CENG 134", + "title": "Polymeric Materials (4)." + }, + { + "dept": "MATS", + "description": "This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "edges_from": [ + 2222 + ], + "edges_to": [], + "id": 3735, + "label": "MATS 252", + "title": "Biomaterials and Medical Devices (4)" + }, + { + "dept": "MATS", + "description": "This course discusses synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. ", + "edges_from": [ + 3737 + ], + "edges_to": [], + "id": 3736, + "label": "MATS 253", + "title": "Nanomaterials and Properties (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3736 + ], + "id": 3737, + "label": "MAE 267", + "title": "" + }, + { + "dept": "MATS", + "description": "Nanotechnology has made a tremendous impact on drug and diagnostic delivery technology. This seminar series will expose PharmD students to the most cutting edge research on using nanotechnology for the delivery of agents to detect, treat, and prevent disease. ", + "edges_from": [], + "edges_to": [], + "id": 3738, + "label": "MATS 259", + "title": "Frontiers in Therapeutic and Diagnostic Delivery (1)" + }, + { + "dept": "PSYC", + "description": "Instruction on organizing, writing, and presenting empirical research papers. Students will learn fundamentals of writing style, data presentation, and time management. This course is intended for psychology graduate students in service of preparation of their first-year papers and talks. ", + "edges_from": [], + "edges_to": [], + "id": 3739, + "label": "PSYC 202", + "title": "Writing and Presenting Academic Research Papers (4)" + }, + { + "dept": "LTEU", + "description": "Author in Russian Literature in Translation (4)", + "edges_from": [], + "edges_to": [], + "id": 3740, + "label": "LTEU 158", + "title": "Single" + }, + { + "dept": "PSYC", + "description": "This course provides training in applying advanced statistical methods to experimental design. Emphasis will be placed on the developing skills in statistical problem-solving, using computer applications, and writing scientific reports. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [], + "edges_to": [ + 5475, + 3742 + ], + "id": 3741, + "label": "PSYC 111A", + "title": "Research Methods I (6)" + }, + { + "dept": "PSYC", + "description": "This course builds upon the material of PSYC 111A. Students will participate in data collection, data organization, statistical analysis and graphical analysis, with emphasis placed on developing scientific report writing, presentations, and critical thinking about experimental methods. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [ + 3741 + ], + "edges_to": [ + 5475 + ], + "id": 3742, + "label": "PSYC 111B", + "title": "Research Methods II (6)" + }, + { + "dept": "PSYC", + "description": "This course is designed to teach the basics of mathematical modeling. Topics include when, why, and how to use signal detection theory (an essential theory for anyone interested in attention, perception, memory, or decision making), how to analyze reaction time distributions (instead of simply measuring mean RT), how to engage in the fine art of model comparison, and how to avoid creating models that are more complex than the data they seek to explain.", + "edges_from": [], + "edges_to": [], + "id": 3743, + "label": "PSYC 206", + "title": "Mathematical Modeling (4)" + }, + { + "dept": "HIEU", + "description": "Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy. It will also include excursions to various sites of historical significance in and around Madrid. Program or materials fees may apply. Students may not receive credit for HIEU 151 and HIEU 151GS. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 3744, + "label": "HIEU 151GS", + "title": "History of Modern Spain, 1808\u2013Present (4)" + }, + { + "dept": "SE", + "description": "Introduction to structural design approaches for civil structures. Structural materials. Loads and load paths. Gravity and lateral load elements and systems. Code design fundamentals. Construction methods. Structural idealization. Hand and computer methods of analysis. Experimental methods applied through team-based projects. Program or materials fees may apply. ", + "edges_from": [ + 2083, + 78, + 653, + 654, + 79 + ], + "edges_to": [ + 3809, + 3971 + ], + "id": 3745, + "label": "SE 103", + "title": "Conceptual Structural Design (4)" + }, + { + "dept": "MAE", + "description": "Principles of Mechanical Design II (4)", + "edges_from": [], + "edges_to": [], + "id": 3746, + "label": "MAE 156B", + "title": "Fundamental" + }, + { + "dept": "LTEA", + "description": "A survey of \u201cNew Taiwan Cinema\u201d of the eighties and nineties. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3747, + "label": "LTEA 120B", + "title": "Taiwan Films (4)" + }, + { + "dept": "ETHN", + "description": "Implementing interdisciplinary research methods, students produce independent, generative research germane to the study of race and ethnicity. Students write a twenty- to twenty-five-page critical paper that poses an appropriate research question; engages relevant literature to provide a conceptual framework; develops and incorporates appropriate research methodologies; and constructs a critical, thorough, and cohesive argument based on the collection, organization, interpretation, and analysis of evidence. ", + "edges_from": [ + 2816 + ], + "edges_to": [], + "id": 3748, + "label": "ETHN 291B", + "title": "Comprehensive Research Preparation: The Methodologies Paper (4)" + }, + { + "dept": "COMM", + "description": "This course examines forms of communication that affect people\u2019s everyday lives. Focusing on ways that ethnic communities transmit and acquire information and interact with mainstream institutions, we examine a variety of alternative local media, including murals, graffiti, newsletters, and community radio. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3749, + "label": "COMM 110M", + "title": "LLC: Communication and Community (4)" + }, + { + "dept": "BENG", + "description": "Application of biomedical imaging to the measurement of structure, function, and dynamics of organ systems from the microscopic to the organ level. Emphasis on detailed evaluation and comparison of specific imaging modalities. ", + "edges_from": [], + "edges_to": [], + "id": 3750, + "label": "BENG 280B", + "title": "Comparative Biomedical Imaging (4)" + }, + { + "dept": "VIS", + "description": "These seminar courses provide the opportunity for in-depth study of a particular work, artist, subject, period, or issue. Courses offered under this heading may reflect the current research interests of the instructor or treat a controversial theme in the field of art history and criticism. Active student research and classroom participation are expected. Enrollment is limited and preference will be given to majors. The letters following 129 in the course number designate the particular area of art history or theory concerned. Students may take courses with the same number but of different content more than once for credit, with consent of the instructor and/or the program adviser. May be taken three times for credit. ", + "edges_from": [ + 680 + ], + "edges_to": [], + "id": 3751, + "label": "VIS 129A\u2013F", + "title": "Seminar in Art Criticism and Theory (4)" + }, + { + "dept": "GPEC", + "description": "The goal of this course is to better understand corruption in developing countries today: why it occurs, the consequences, and what can or should be done about it. Topics include: the conceptual and historical background of corruption; different views on how corruption affects regulatory processes; how the organization of a bureaucracy may affect the amount of corruption; effects on redistribution; methods for reducing corruption; and the role of information and elections as limits. Student may not get credit for GPEC 449 and IRGN 490, Corruption and Development.", + "edges_from": [], + "edges_to": [], + "id": 3752, + "label": "GPEC 449", + "title": "Corruption and Development (4)" + }, + { + "dept": "GPEC", + "description": "Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the Network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. May not receive credit for GPEC 444 and IRGN 490 with the subtitles: \u201cAdvanced GIS Spatial Analysis\u201d or \u201cAdvanced GIS and Remote Sensing.\u201d May be co-scheduled with GPEC 244. GPEC 443 or the equivalent training in GIS is recommended.", + "edges_from": [], + "edges_to": [], + "id": 3753, + "label": "GPEC 444", + "title": "Advanced GIS and Remote Sensing (4)" + }, + { + "dept": "GPEC", + "description": "This course introduces GIS and spatial data analysis for social science research. We use ArcGIS to manipulate and visualize georeferenced data and learn various spatial analysis tools. We emphasize geography as an important lens through which to study society. Renumbered from IRGN 443. Students may not receive credit for GPEC 443 and IRGN 443. Basic knowledge of statistics and STATA is assumed.", + "edges_from": [], + "edges_to": [], + "id": 3754, + "label": "GPEC 443", + "title": "GIS and Spatial Data Analysis (4)" + }, + { + "dept": "NANO", + "description": "This course will cover fundamental concepts and laboratory techniques to study the chemical and physical properties of colloids and nanoparticles. Topics covered include: colloid and surface forces, Brownian motion, aggregation, steric stabilization, optical characterization techniques, and self-assembly. Recent developments in colloids and nanotechnology will be discussed throughout the course.", + "edges_from": [], + "edges_to": [], + "id": 3755, + "label": "NANO 280", + "title": "Colloids and Nanoparticles (4)" + }, + { + "dept": "VIS", + "description": "Considers nineteenth-century European painting and printmaking in relation to the construction of nature and the historically specific ways of seeing that emerge from it. Key artists and groups of artists include: John Constable, J.M.W. Turner, Caspar David Friedrich, Camille Corot, the Barbizon School, J.-J. Grandville, the Pre-Raphaelites, and the Impressionists. ", + "edges_from": [], + "edges_to": [], + "id": 3756, + "label": "VIS 124E", + "title": "The Production of Nature (4)" + }, + { + "dept": "VIS", + "description": "A cultural history of nineteenth-century Paris. Addresses how and why the cultural formations and developments of the period, and their inseparability from the city, have led so many to consider Paris the capital of modernity. ", + "edges_from": [], + "edges_to": [], + "id": 3757, + "label": "VIS 124D", + "title": "Paris, Capital of the Nineteenth Century (4)" + }, + { + "dept": "MUS", + "description": "(Formerly MUS 163.) Selected topics in music", + "edges_from": [], + "edges_to": [], + "id": 3758, + "label": "MUS 176", + "title": "Music Technology Seminar (4)" + }, + { + "dept": "BENG", + "description": "Engineering analysis of physico-chemical rate processes that affect, limit, and govern the function of cells and tissues. Cell migration, mitosis, apoptosis, and differentiation. Dynamic and structural interactions between mesenchyme and parenchyme. The role of the tissue microenvironment including cell-cell interactions, extracellular matrix, and growth factor communication. The design of functional tissue substitutes including cell and material sourcing, scale-up and manufacturability, efficacy and safety, regulatory, and ethical topics. Clinical applications. ", + "edges_from": [ + 2667, + 596 + ], + "edges_to": [], + "id": 3759, + "label": "BENG 166A", + "title": "Cell and Tissue Engineering (4)" + }, + { + "dept": "MUS", + "description": "Survey of psychoacoustical", + "edges_from": [], + "edges_to": [], + "id": 3760, + "label": "MUS 175", + "title": "Musical Psychoacoustics (4)" + }, + { + "dept": "MUS", + "description": "(Formerly MUS 160C.) A practical introduction to computer techniques for desktop audio editing, MIDI control, and real-time music algorithms using the MAX programming environment. Recommended preparation: completion of MUS 170. ", + "edges_from": [], + "edges_to": [], + "id": 3761, + "label": "MUS 171", + "title": "Computer Music I (4)" + }, + { + "dept": "COGS", + "description": "Independent literature or laboratory research by arrangement with and under direction of a Department of Cognitive Science faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3762, + "label": "COGS 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "MUS", + "description": "Primarily intended for music majors. Development of basic skills: perception and notation of pitch and temporal relationships. Introduction to functional harmony. Studies in melodic writing. Drills in sight singing, rhythmic reading, and dictation. ", + "edges_from": [ + 3764, + 1492, + 1493 + ], + "edges_to": [], + "id": 3763, + "label": "MUS 2A-B-C", + "title": "Basic Musicianship (4-4-4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 3763, + 3927 + ], + "id": 3764, + "label": "MUS 2CK", + "title": "" + }, + { + "dept": "BICD", + "description": "Plant immunity protects against pathogens and enables symbioses. This course explores the agents of plant disease, the genetics of inherited immunity, mechanisms of pathogenesis and defense, the coordination of plant immunity by plant hormones, and the regulation of symbioses. ", + "edges_from": [ + 412 + ], + "edges_to": [], + "id": 3765, + "label": "BICD 124", + "title": "Plant Innate Immunity (4)" + }, + { + "dept": "COGS", + "description": "Special topics in cognitive science are discussed. P/NP grades only. (May be repeated when topics vary.)", + "edges_from": [], + "edges_to": [], + "id": 3766, + "label": "COGS 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "COGS", + "description": "The department faculty and the Students for Cognitive and Neurosciences (SCANS) offer this seminar exploring issues in cognitive science. It includes informal faculty research presentations, investigations of topics not covered in the curriculum, and discussions on graduate school and careers. (May be repeated when topics vary.) (Will not be offered in 2017\u201318.)", + "edges_from": [], + "edges_to": [], + "id": 3767, + "label": "COGS 91", + "title": "SCANS Presents (1)" + }, + { + "dept": "COGS", + "description": "Psychological resiliency will be addressed both scientifically and pragmatically. Students will explore the way cognitive and behavioral factors contribute to one\u2019s ability to cope with the stresses of life and emerge from them stronger than before. P/NP only. (Will not be offered in 2017\u201318.)", + "edges_from": [], + "edges_to": [], + "id": 3768, + "label": "COGS 92", + "title": "Resiliency in the Face of Adversity (2)" + }, + { + "dept": "ANTH", + "description": "This seminar compares the distinct urban and expansive state phenomena of the highland Wari and Tiwanaku cultures (AD 500\u20131000) with emphasis on their formative origins and the ideological, agrarian, and technological foundations of Middle Horizon political development. ", + "edges_from": [], + "edges_to": [], + "id": 3769, + "label": "ANTH 245", + "title": "The Middle Horizon (4)" + }, + { + "dept": "ANTH", + "description": "Why is mental health a global concern? This anthropological course reviews globalization, culture, and mental health. We examine issues of social suffering, stigma, and economic burden associated with mental illness, gender inequality, political violence, \u201cglobal security,\u201d pharmaceutical and illegal drugs. ", + "edges_from": [], + "edges_to": [], + "id": 3770, + "label": "ANTH 243", + "title": "Mental Health as Global Health Priority (4)" + }, + { + "dept": "COGS", + "description": "This course is an advanced seminar and project course that follows the Natural Computation courses. Advanced and new machine learning methods will be discussed and used. ", + "edges_from": [ + 2336, + 2337 + ], + "edges_to": [], + "id": 3771, + "label": "COGS 185", + "title": "Advanced Machine Learning Methods (4)" + }, + { + "dept": "ANTH", + "description": "This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens\u2019 efforts to promote social change in contemporary democracies. ", + "edges_from": [], + "edges_to": [], + "id": 3772, + "label": "ANTH 242", + "title": "Anthropology of Latin America (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 3774 + ], + "id": 3773, + "label": "PSYC 115A", + "title": "Laboratory in Cognitive Psychology I (4)" + }, + { + "dept": "PSYC", + "description": "This course is designed to extend the training of PSYC 115A in the design, execution, and analysis of cognitive psychology experiments. Students may not receive credit for both PSYC 115 and PSYC 115B. ", + "edges_from": [ + 3773 + ], + "edges_to": [], + "id": 3774, + "label": "PSYC 115B", + "title": "Laboratory in Cognitive Psychology II (4)" + }, + { + "dept": "MGT", + "description": "This course introduces students to the psychometric, legal, ethical, and practical considerations of using tests and measurements for evidence-based decision-making in the workplace. Emphasis is given to selection and performance measurements for individual, team, business unit and organization-wide use in marketing, STEM, and operations. Student teams will develop managerial recommendations following company specific research and analysis.", + "edges_from": [], + "edges_to": [], + "id": 3775, + "label": "MGT 52", + "title": "Test and Measurement in the Workplace (4)" + }, + { + "dept": "ANAR", + "description": "Archaeology of Hunters-Gatherers (4)", + "edges_from": [], + "edges_to": [], + "id": 3776, + "label": "ANAR 181", + "title": "The" + }, + { + "dept": "ANAR", + "description": "This course examines the ways in which archaeologists study ancient artifacts, contexts, and their distribution in time and space to interpret ancient cultures. It will cover basic techniques of collections and field research with particular concentration on the quantitative contextual, spatial, stylistic, and technological analyses of artifacts and ecofacts from ongoing UC San Diego field projects in archaeology.", + "edges_from": [], + "edges_to": [], + "id": 3777, + "label": "ANAR 180", + "title": "Archaeology Workshop: Advanced Lab Work in Archaeology (4)" + }, + { + "dept": "ANAR", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3778, + "label": "ANAR 183", + "title": "Chiefdoms, States, and the Emergence of Civilizations (4)" + }, + { + "dept": "ANAR", + "description": "Varying theoretical models and available archaeological evidence are examined to illuminate the socio-evolutionary transition from nomadic hunter-gathering groups to fully sedentary agricultural societies in the Old and New Worlds. Archaeology concentration course. Recommended preparation: ANTH 3. ", + "edges_from": [], + "edges_to": [], + "id": 3779, + "label": "ANAR 182", + "title": "Origins of Agriculture and Sedentism (4)" + }, + { + "dept": "ANAR", + "description": "Field study in Jordan. Examines how cultural systems interact with deserts by examining technology, economic organization, kinship and religion in relation to environmental variables through time. Program fees may apply.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3780, + "label": "ANAR 185", + "title": "Middle East Desert Cultural Ecology (4)" + }, + { + "dept": "ANAR", + "description": "In what ways were ancient empires different from modern ones? We discuss theories of imperialism and examine cross-cultural similarities and differences in the strategies ancient empires used to expand and explore how they produced, acquired, and distributed wealth. ", + "edges_from": [], + "edges_to": [], + "id": 3781, + "label": "ANAR 184", + "title": "Empires in Archaeological Perspective (4)" + }, + { + "dept": "MATH", + "description": "A variety of topics and current research results in mathematics will be presented by guest lecturers and students under faculty direction. May be taken for P/NP grade only. ", + "edges_from": [], + "edges_to": [], + "id": 3782, + "label": "MATH 196", + "title": "Student Colloquium (1)" + }, + { + "dept": "POLI", + "description": "This course explores emerging issues in production and consumption of food in a global economy. On production side, we discuss issues such as famine, overproduction of commercial crops, and sustainability. On consumption side, we explore issues such as fair trade, ethical consumption, and public health consequences (such as obesity).\u00a0Then we discuss the roles of governments, international organizations, and communities to address these issues.", + "edges_from": [], + "edges_to": [], + "id": 3783, + "label": "POLI 125B", + "title": "The Politics of Food in a Global Economy (4)" + }, + { + "dept": "MGT", + "description": "Examines financial theory and empirical evidence useful for making investment decisions. Portfolio theory, equilibrium models, and market efficiency are examined for stock securities and fixed income instruments. Risk adjusted ROIs for capital investments\u2019 impact on stock prices and free options will also be studied. ", + "edges_from": [ + 1130, + 3118, + 686 + ], + "edges_to": [], + "id": 3784, + "label": "MGT 183", + "title": "Financial Investments (4)" + }, + { + "dept": "ANTH", + "description": "This course examines gender and mental health by considering social, cultural, and biological explanations for problems such as depression, trauma, anxiety, drugs/alcohol use. Cross-cultural similarities and differences of gender are considered with respect to etiology, epidemiology, symptomatology, treatment, and recovery. ", + "edges_from": [], + "edges_to": [], + "id": 3785, + "label": "ANTH 249", + "title": "Gender and Mental Health (4)" + }, + { + "dept": "MGT", + "description": "Focuses on role of financial institutions, implications for firm financing and valuation as well as the Federal Reserve, financial regulation, the money supply process, and monetary policy. Mechanisms through which monetary policy affects businesses and credit channels will be covered. ", + "edges_from": [ + 1130, + 3118, + 686 + ], + "edges_to": [], + "id": 3786, + "label": "MGT 184", + "title": "Money and Banking (4)" + }, + { + "dept": "MGT", + "description": "This course provides students with an overview of the investment banking industry, including IPOs, equity offerings, debt offerings, valuation, mergers and acquisition, private equity, asset securitization, prime brokerage, sales and trading, and market making. Emphasis of the class will be on traditional corporate finance, which includes equity and debt offerings as well as mergers and acquisitions. ", + "edges_from": [ + 3118, + 686 + ], + "edges_to": [], + "id": 3787, + "label": "MGT 185", + "title": "Investment Banking (4)" + }, + { + "dept": "CSE", + "description": "Computer graphics techniques for creating realistic images. Topics include ray tracing, global illumination, subsurface scattering, and participating media. CSE 168 or equivalent recommended.", + "edges_from": [], + "edges_to": [], + "id": 3788, + "label": "CSE 272", + "title": "Advanced Image Synthesis (4)" + }, + { + "dept": "BIEB", + "description": "Course provides overview of physical, chemical, and biological processes that characterize inland waters (lakes and rivers), estuaries, and near-shore environments. Dominant biota of lakes, rivers, and streams, and how they are related to physical and chemical processes of the systems in which they reside will be covered. Methods will be introduced for assessing the chemical composition of water and detecting organisms that affect drinking water quality and coastal water quality management. Course requires field studies. Students should expect to fully participate in field trips; transportation not provided by the university. Students must comply with all risk management policies/procedures. Material lab fees will apply. ", + "edges_from": [ + 1424 + ], + "edges_to": [], + "id": 3789, + "label": "BIEB 135", + "title": "Aquatic Ecology Lab (4)" + }, + { + "dept": "LTFR", + "description": "Examines one or more periods, themes, authors, and approaches in French literature. Topics will vary with instructor. May be repeated for credit. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 3790, + "label": "LTFR 141", + "title": "Topics in Literatures in French (4)" + }, + { + "dept": "COGS", + "description": "Cognitive processes extend beyond the boundaries of the person to include the environment, artifacts, social interactions, and culture. Major themes include the philosophy and history of cognitive science, the role of artifacts in human cognition, and theories of socially distributed, embodied, and extended cognition. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ", + "edges_from": [ + 3165, + 238 + ], + "edges_to": [], + "id": 3791, + "label": "COGS 102A", + "title": "Distributed Cognition (4)" + }, + { + "dept": "BIEB", + "description": "Course integrates principles of ecology and marine biology to examine marine biodiversity loss resulting from overexploitation, habitat loss, invasion, climate change, and pollution. Course examines consequences of biodiversity loss to marine ecosystems and discusses the efficacy of various management regimes. Conservation problems facing the world\u2019s oceans with an emphasis on issues important for coastal California will be discussed. ", + "edges_from": [ + 1424 + ], + "edges_to": [], + "id": 3792, + "label": "BIEB 130", + "title": "Marine Conservation Biology (4)" + }, + { + "dept": "LTFR", + "description": "An examination of one or more major or minor genres of French literature: for example, drama, novel, poetry, satire, prose poem, essay. ", + "edges_from": [ + 1433, + 1434 + ], + "edges_to": [], + "id": 3793, + "label": "LTFR 142", + "title": "Topics in Literary Genres in French (4)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3794, + "label": "BGRD 218", + "title": "Research Discussion in Plant Molecular Genetics (1)" + }, + { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. Third course of a yearlong sequence; continuation of 137E. ", + "edges_from": [ + 3796 + ], + "edges_to": [], + "id": 3795, + "label": "MUS 137F", + "title": "Seminar in Jazz Studies III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 3798 + ], + "edges_to": [ + 3795 + ], + "id": 3796, + "label": "MUS 137E", + "title": "" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3797, + "label": "BGRD 213", + "title": "Research Discussion in Golgi Structure and Function (1)" + }, + { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. First course of a yearlong sequence. ", + "edges_from": [ + 3800, + 3801, + 3799 + ], + "edges_to": [ + 3796 + ], + "id": 3798, + "label": "MUS 137D", + "title": "Seminar in Jazz Studies I (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 3801 + ], + "edges_to": [ + 3800, + 3798 + ], + "id": 3799, + "label": "MUS 137B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 3799 + ], + "edges_to": [ + 3798 + ], + "id": 3800, + "label": "MUS 137C", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 3802, + 3803, + 1494 + ], + "edges_to": [ + 3798, + 3799 + ], + "id": 3801, + "label": "MUS 137A", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 3801, + 4298 + ], + "id": 3802, + "label": "MUS 2B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 3801, + 4298, + 4302 + ], + "id": 3803, + "label": "MUS 2A", + "title": "" + }, + { + "dept": "LTEN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 3804, + "label": "LTEN 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "HITO", + "description": "172/272. War in the Twentieth Century: A Psychological Approach (4)", + "edges_from": [], + "edges_to": [], + "id": 3805, + "label": "HITO", + "title": "" + }, + { + "dept": "MMW", + "description": "MMW 121, the first of two required courses for ERC transfer students, addresses\u00a0themes and topics from the premodern world (from antiquity to the eighteenth century) and strengthens students\u2019 analytical, research, and writing skills. Students may not receive credit for MMW 21 and 121. Students who previously took MMW 21 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ", + "edges_from": [], + "edges_to": [], + "id": 3806, + "label": "MMW 121", + "title": "Exploring the Premodern World (4)" + }, + { + "dept": "SE", + "description": "Seismic design philosophy. Ductility concepts.", + "edges_from": [], + "edges_to": [], + "id": 3807, + "label": "SE 152", + "title": "Seismic Design of Structures (4)" + }, + { + "dept": "MMW", + "description": "MMW 122, the second of two required courses for ERC transfer students, addresses specific themes and topics from the modern world (from the eighteenth century to the present) and strengthens transfer students\u2019 analytical, research, and writing skills. Students may not receive credit for MMW 22 and 122. Students who previously took MMW 22 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ", + "edges_from": [], + "edges_to": [], + "id": 3808, + "label": "MMW 122", + "title": "Exploring the Modern World (4)" + }, + { + "dept": "SE", + "description": "Properties of wood and lumber grades. Beam design. Design of axially loaded members. Design of beam-column. Properties of plywood and structural-use panels. Design of horizontal diaphragms. Design of shear walls. Design of nailed and bolted connections. ", + "edges_from": [ + 3745, + 2661 + ], + "edges_to": [], + "id": 3809, + "label": "SE 154", + "title": "Design of Timber Structures (4)" + }, + { + "dept": "LTEN", + "description": "Physicists have spoken of the beauty of equations. The poet John Keats wrote, \u201cBeauty is truth, truth beauty . . .\u201d What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Students may not receive credit for both LTEN 30 and PHYS 30. ", + "edges_from": [ + 75, + 54, + 262, + 263, + 264, + 265, + 266, + 267, + 76, + 269, + 270, + 271, + 53, + 268 + ], + "edges_to": [], + "id": 3810, + "label": "LTEN 30", + "title": "Poetry for Physicists (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3811, + "label": "LTGK 105", + "title": "Topics in Greek Literature (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3812, + "label": "LTGK 104", + "title": "Greek Prose (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3813, + "label": "LTGK 103", + "title": "Greek Drama (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3814, + "label": "LTGK 102", + "title": "Greek Poetry (4)" + }, + { + "dept": "LTGK", + "description": "Greek prose composition. Corequisites: student must be concurrently enrolled in upper-division Literature/Greek course numbered 102 or above.", + "edges_from": [], + "edges_to": [], + "id": 3815, + "label": "LTGK 101", + "title": "Greek Composition (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in algebraic geometry. Topics will be drawn from current research and may include Hodge theory, higher dimensional geometry, moduli of vector bundles, abelian varieties, deformation theory, intersection theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 3817 + ], + "edges_to": [], + "id": 3816, + "label": "MATH 206B", + "title": "Further Topics in Algebraic Geometry (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3816 + ], + "id": 3817, + "label": "MATH 206A", + "title": "" + }, + { + "dept": "MATH", + "description": "Second course in linear algebra from a computational yet geometric point", + "edges_from": [], + "edges_to": [], + "id": 3818, + "label": "MATH 102", + "title": "Applied Linear Algebra (4)" + }, + { + "dept": "CHEM", + "description": "Selected topics in RNA structure and function, such as the ribosome, ribozyme, antibiotics, splicing and RNA interference, as they relate to the RNA role in gene expression and regulation. Emphasis on techniques to study the dynamics of macromolecular complexes and the mechanism of RNA catalysis. ", + "edges_from": [], + "edges_to": [], + "id": 3819, + "label": "CHEM 217", + "title": "RNA Structure, Function, and Biology (4)" + }, + { + "dept": "TDGE", + "description": "An introductory course on acting fundamentals for students without an acting background. Through analysis of acting on film, students will explore the actor\u2019s craft and practice these skills in studio exercises to better understand how an actor approaches a text.\u00a0", + "edges_from": [], + "edges_to": [ + 3844 + ], + "id": 3820, + "label": "TDGE 5", + "title": "A Glimpse into Acting (4)" + }, + { + "dept": "MAE", + "description": "Materials: Principles and Applications (4)", + "edges_from": [], + "edges_to": [], + "id": 3821, + "label": "MAE 265B", + "title": "Magnetic" + }, + { + "dept": "EDS", + "description": "In the lecture and observation format, students", + "edges_from": [], + "edges_to": [], + "id": 3822, + "label": "EDS 123/Chem 188", + "title": "Capstone Seminar in Science Education (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1A/1AX, 5AS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1B/1BX. ", + "edges_from": [ + 309 + ], + "edges_to": [], + "id": 3823, + "label": "Linguistics/Italian (LIIT) 5BS", + "title": "Fundamentals of Italian II (5)" + }, + { + "dept": "POLI", + "description": "This course covers advanced topics in game theory. Covered topics will include incomplete information in static and dynamic games, infinitely repeated games, and bargaining games. Emphasis will be placed on advanced equilibrium concepts, and applications of interest to political scientists. ", + "edges_from": [], + "edges_to": [], + "id": 3824, + "label": "POLI 205", + "title": "Game Theory II (4)" + }, + { + "dept": "TDGE", + "description": "An introduction to fundamental concepts in drama and performance. Students will attend performances and learn about how the theatre functions as an art and as an industry in today\u2019s world. ", + "edges_from": [], + "edges_to": [], + "id": 3825, + "label": "TDGE 1", + "title": "Introduction to Theatre (4)" + }, + { + "dept": "ANTH", + "description": "Anthropology graduate students participate in the undergraduate teaching program during one quarter anytime in the first four years of residence. Teaching may be in the anthropology department or other departments or programs on campus. Equivalent to duties expected of a 50 percent TA. Enrollment in four units documents the PhD requirement. S/U grades only. ", + "edges_from": [ + 3827 + ], + "edges_to": [], + "id": 3826, + "label": "ANTH 500", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3826 + ], + "id": 3827, + "label": "ANGR 500", + "title": "" + }, + { + "dept": "MATH", + "description": "Independent study and research for the doctoral dissertation. One to three credits will be given for independent study (reading) and one to nine for research. ", + "edges_from": [], + "edges_to": [], + "id": 3828, + "label": "MATH 299", + "title": "Reading and Research (1 to 12)" + }, + { + "dept": "LTCO", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 3829, + "label": "LTCO 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "EDS", + "description": "Universities are exploring new ways to convey the relevance of research directly to interested stakeholders beyond the academy. In this course, students will learn and practice a variety of strategies and tools for communicating their scholarship to a range of audiences, actively participate in discussion of education equity and access, and co-construct meaningful partnerships with education stakeholders. S/U grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 3830, + "label": "EDS 259", + "title": "Communicating Research (2)" + }, + { + "dept": "COGR", + "description": "(Cross listed with EDS 278). This course explores the discourse of culture in American society and the problem of silenced or unheard voices. The interaction of individual and collective voice, language, and identity are discussed as they bear on the ways that culture moves through important social institutions such as schools. Of particular interest are issues of teaching, learning, displacement, inclusion, marginality, and the speaking center. ", + "edges_from": [], + "edges_to": [], + "id": 3831, + "label": "COGR 278", + "title": "Talking Culture, Culture Talking: Voices of Diversity (4)" + }, + { + "dept": "COGR", + "description": "Specialized study in communication, with topics to be determined by the instructor for any given quarter.", + "edges_from": [], + "edges_to": [], + "id": 3832, + "label": "COGR 275", + "title": "Topics in Communication (4)" + }, + { + "dept": "LTCO", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 3833, + "label": "LTCO 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "LTCO", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 3834, + "label": "LTCO 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "CHEM", + "description": "Renumbered from CHEM 143A. Introduction to organic laboratory techniques. Separation, purification, spectroscopy, product analysis, and effects of reaction conditions. A materials fee is required. Students must pass a safety exam. Students may only receive credit for one of the following: CHEM 43A, 43AM, 143A, or 143AM. ", + "edges_from": [ + 960, + 2859, + 1196, + 1198, + 3314, + 953 + ], + "edges_to": [ + 4545, + 5134, + 5135 + ], + "id": 3835, + "label": "CHEM 43A", + "title": "Organic Chemistry Laboratory (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 179.) This class explores (self) representations of Muslim and Arab Americans in US popular culture with a focus on the twentieth and twenty-first centuries. Topics include the racing of religion, \u201cthe war on terror\u201d in the media, feminism and Islam, immigration, race, and citizenship. May be repeated for credit three times when content varies.", + "edges_from": [], + "edges_to": [], + "id": 3836, + "label": "ETHN 166", + "title": "Arab/Muslim American Identity and Culture (4)" + }, + { + "dept": "MDE", + "description": "This course gives an introduction to digital signal processing (DSP) techniques and data-based parameter estimation (DBPE) techniques for the measurement, filtering, and analysis of experimental data obtained with embedded systems in medical devices. ", + "edges_from": [], + "edges_to": [], + "id": 3837, + "label": "MDE 240", + "title": "Embedded System Design (4)" + }, + { + "dept": "BENG", + "description": "Commercial production of biochemical commodity products. Application of genetic control systems and mutant populations. Recombinant DNA and eucaryotic proteins in E. coli and other host organisms. Product recovery operations, including the design of bioseparation processes of filtration, adsorption, chromatography, and crystallization. Bioprocess economics. Human recombinant erythropoietin as an example, from genomic cloning to CHO cell expression, to bioreactor manufacturing and purification of medical products for clinical application. ", + "edges_from": [ + 3839 + ], + "edges_to": [], + "id": 3838, + "label": "BENG 161B", + "title": "Biochemical Engineering (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 2882, + 1942 + ], + "edges_to": [ + 3838 + ], + "id": 3839, + "label": "BENG 161A", + "title": "" + }, + { + "dept": "MATS", + "description": "Materials: Principles and Applications (4)", + "edges_from": [], + "edges_to": [], + "id": 3840, + "label": "MATS 251B", + "title": "Magnetic" + }, + { + "dept": "MATS", + "description": "and Photonic Properties of Materials (4)", + "edges_from": [], + "edges_to": [], + "id": 3841, + "label": "MATS 251A", + "title": "Electronic" + }, + { + "dept": "LIGN", + "description": "(Same as EDS 119) An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ", + "edges_from": [], + "edges_to": [], + "id": 3842, + "label": "LIGN 119", + "title": "First and Second Language Learning: From Childhood through Adolescence (4)" + }, + { + "dept": "TDGE", + "description": "Acting and leadership require \u201cchoices\u201d to play a role. The role of leader requires authenticity, collaboration, listening, presence, vision, and influence. Students will explore characteristics of strong leaders, and utilizing traditional acting techniques build powerful capabilities of leadership. No prior theatre/acting experience needed. ", + "edges_from": [], + "edges_to": [], + "id": 3843, + "label": "TDGE 100", + "title": "Creating the Role of \u201cLeader\u201d (4)" + }, + { + "dept": "TDGE", + "description": "An acting course for nonmajors, building on the acting fundamentals developed in TDGE 5. Using analysis of film acting to practice in studio exercises and scene work, student actors learn to approach a text using imagination as their primary tool. ", + "edges_from": [ + 3820 + ], + "edges_to": [], + "id": 3844, + "label": "TDGE 105", + "title": "Exploring Acting (4)" + }, + { + "dept": "LIGN", + "description": "Why does one language sound different from another? This course analyzes how languages organize sounds into different patterns, how those sounds interact, and how they fit into larger units, such as syllables. Focus on a wide variety of languages and problem solving. ", + "edges_from": [ + 754 + ], + "edges_to": [], + "id": 3845, + "label": "LIGN 111", + "title": "Phonology I (4)" + }, + { + "dept": "LIGN", + "description": "How do we measure differences in the way sounds are produced and perceived? This course focuses on measuring and analyzing the acoustic and auditory properties of sounds as they occur in nonpathological and pathological speech. ", + "edges_from": [ + 754 + ], + "edges_to": [], + "id": 3846, + "label": "LIGN 112", + "title": "Speech Sounds and Speech Disorders (4)" + }, + { + "dept": "LTGK", + "description": "Tutorial; individual guided reading in an area not normally covered in courses. May be taken up to three times for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3847, + "label": "LTGK 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "EDS", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3848, + "label": "EDS 150", + "title": "Chancellor\u2019s Associates Scholars Program Transfer Introductory Course (2)" + }, + { + "dept": "COGS", + "description": "Data science is multidisciplinary, covering computer science, statistics, cognitive science and psychology, data visualization, artificial intelligence, and machine learning, among others. This course teaches critical skills needed to pursue a data science career using hands-on programming and experimental challenges. ", + "edges_from": [ + 233, + 2333, + 2670 + ], + "edges_to": [], + "id": 3849, + "label": "COGS 133", + "title": "Data Science in Practice (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversion sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIPO 1DX. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 1724, + 1725 + ], + "edges_to": [], + "id": 3850, + "label": "Linguistics/Portuguese (LIPO) 1D", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "MATH", + "description": "Differential geometry of curves and surfaces.", + "edges_from": [], + "edges_to": [], + "id": 3851, + "label": "MATH 150A", + "title": "Differential Geometry (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 3852, + "label": "Linguistics/Portuguese (LIPO) 1A", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 3853, + "label": "Linguistics/Portuguese (LIPO) 1B", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 3854, + "label": "Linguistics/Portuguese (LIPO) 1C", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "MGT", + "description": "Review and discussion of current research and literature on selected topics in business and management. Research paper and presentation required. May be taken for credit three times. Students may not earn credit for both MGT 416 and MGT 252 if the courses have the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 3855, + "label": "MGT 416", + "title": "Readings in Management (1 or 2)" + }, + { + "dept": "MGT", + "description": "Explores current issues in business law, emphasizing concerns faced by new companies. Students learn how the law regulates and shapes businesses; examine the legal role in business formations, operations, and dissolutions; and gain knowledge of contract and intellectual property law. Letter grades only. Students may not earn credit for both MGT 417 and MGT 212. Also, students may not receive credit for both MGT 417 and MGT 219 with the course subtitle Current Business Law Issues. ", + "edges_from": [], + "edges_to": [], + "id": 3856, + "label": "MGT 417", + "title": "Current Business Law Issues (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, this course explores the strategic management of technology-driven firms focusing on the analytical tools and techniques that support strategy formulation and the related managerial skills and decision processes that foster strategy implementation. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3857, + "label": "MGT 410", + "title": "Strategy (4)" + }, + { + "dept": "MGT", + "description": "Market: Opportunity and Business Model Analysis (4)", + "edges_from": [], + "edges_to": [], + "id": 3858, + "label": "MGT 412", + "title": "Lab to" + }, + { + "dept": "ECE", + "description": "Introduction to pattern recognition and machine", + "edges_from": [], + "edges_to": [ + 3861 + ], + "id": 3859, + "label": "ECE 175A", + "title": "Elements of Machine Intelligence: Pattern Recognition and Machine Learning (4)" + }, + { + "dept": "ENG", + "description": "Application-oriented, hands-on introduction to engineering mathematics and design processes.\u00a0 Key mathematical concepts as they apply to engineering, including solving systems of equations and least-squares regression. In-class activities using Python and Arduino will complement the lectures and provide students hands-on experience with solving real-world engineering problems related to design, manufacturing and prototyping, electronics, and data analysis.", + "edges_from": [], + "edges_to": [], + "id": 3860, + "label": "ENG 10", + "title": "Fundamentals of Engineering Applications (2)" + }, + { + "dept": "ECE", + "description": "Bayes\u2019 rule as a probabilistic reasoning engine; graphical models as knowledge encoders; conditional independence and D-Separation; Markov random fields; inference in graphical models; sampling methods and Markov Chain Monte Carlo (MCMC); sequential data and the Viterbi and BCJR algorithms; The Baum-Welsh algorithm for Markov Chain parameter estimation. ", + "edges_from": [ + 3859 + ], + "edges_to": [], + "id": 3861, + "label": "ECE 175B", + "title": "Elements of Machine Intelligence: Probabilistic Reasoning and Graphical Models (4)" + }, + { + "dept": "POLI", + "description": "Political Thought from Revolution to Civil War (4)", + "edges_from": [], + "edges_to": [], + "id": 3862, + "label": "POLI 110EA", + "title": "American" + }, + { + "dept": "ECE", + "description": "The coherent processing of data collected from sensors distributed in space for signal enhancement and noise rejection purposes or wavefield directionality estimation. Conventional and adaptive beamforming. Matched field processing. Sparse array design and processing techniques. Applications to acoustics, geophysics, and electromagnetics. Cross-listed with SIO 207D. (Recommended prerequisites: ECE 251A.) ", + "edges_from": [ + 3864, + 3865, + 3866, + 3863 + ], + "edges_to": [ + 3863 + ], + "id": 3863, + "label": "ECE 251D", + "title": "Array Processing (4)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 3863 + ], + "id": 3864, + "label": "SIO 207D", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 3867 + ], + "edges_to": [ + 3863 + ], + "id": 3865, + "label": "ECE 251C", + "title": "" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 3863 + ], + "id": 3866, + "label": "SIO 207C", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3865 + ], + "id": 3867, + "label": "ECE 251B", + "title": "" + }, + { + "dept": "ECE", + "description": "Discrete random signals; conventional (FFT based) spectral estimation. Coherence and transfer function estimation; model-based spectral estimation; linear prediction and AR modeling. Levinson-Durbin algorithm and lattice filters, minimum variance spectrum estimation. Cross-listed with SIO 207B. SIO 207A is intended for graduate students who have not had an undergraduate course in DSP. (Recommended prerequisites: ECE 153 in addition to either ECE 161 or 161A and SIO 207A or equivalent background.) ", + "edges_from": [], + "edges_to": [], + "id": 3868, + "label": "ECE 251A", + "title": "Digital Signal Processing I (4)" + }, + { + "dept": "AUD", + "description": "Independent research on topics relevant to audiology, consisting of literature review, data collection. Faculty supervision and mentoring on practical elements of research design and methodology. The course will consist of laboratory experience, focused on practical elements of research and design and methodology. ", + "edges_from": [], + "edges_to": [], + "id": 3869, + "label": "AUD 298", + "title": "Independent Research (3)" + }, + { + "dept": "AUD", + "description": "Individual investigation and preparation of the doctoral project for the AuD degree will be performed under the supervision of an experienced research mentor. ", + "edges_from": [], + "edges_to": [], + "id": 3870, + "label": "AUD 299", + "title": "Doctoral Project (3)" + }, + { + "dept": "LHCO", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3871, + "label": "LHCO 206", + "title": "Topics in Financial Management and Decision Making (2)" + }, + { + "dept": "PHIL", + "description": "A survey of philosophical issues concerning law and society, such as the rule of law, the moral limits of the law, individual rights, judicial review in a constitutional democracy, the justification of punishment, and responsibility.", + "edges_from": [], + "edges_to": [], + "id": 3872, + "label": "PHIL 50", + "title": "Law and Society (4)" + }, + { + "dept": "MATH", + "description": "Lie groups, Lie algebras, exponential map, subgroup subalgebra correspondence, adjoint group, universal enveloping algebra. Structure theory of semi-simple Lie groups, global decompositions, Weyl group. Geometry and analysis on symmetric spaces. ", + "edges_from": [ + 3874, + 3875 + ], + "edges_to": [], + "id": 3873, + "label": "MATH 251A-B-C", + "title": "Lie Groups (4-4-4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3873 + ], + "id": 3874, + "label": "MATH 200", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3873 + ], + "id": 3875, + "label": "MATH 250", + "title": "" + }, + { + "dept": "AUD", + "description": "Participation in specific faculty research activities. Become familiar with research methods and objectives of a faculty\u2019s research project. Participate in data collection and analysis at the discretion of the faculty investigator. ", + "edges_from": [], + "edges_to": [], + "id": 3876, + "label": "AUD 296", + "title": "Research Practicum (3)" + }, + { + "dept": "POLI", + "description": "An interdisciplinary study of Israel as both a unique and yet a common example of a modern democratic nation-state. We will examine Israel\u2019s history, its political, economic, and legal systems, social structure and multicultural tensions, the relation between state and religion, national security, and international relations.", + "edges_from": [], + "edges_to": [], + "id": 3877, + "label": "POLI 121B", + "title": "Politics in Israel (4)" + }, + { + "dept": "SOCI", + "description": "Develop skills in computer management and analysis of sociological data. Practical experience with data produced by sociological research. Students will develop competency in the analysis of sociological data, by extensive acquaintance with computer software used for data analysis and management (e.g., SPSS). ", + "edges_from": [ + 2979, + 3878, + 3879 + ], + "edges_to": [ + 3878 + ], + "id": 3878, + "label": "SOCI 103M", + "title": "Computer Applications to Data Management in Sociology (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3878 + ], + "id": 3879, + "label": "SOCA 103M", + "title": "" + }, + { + "dept": "HILA", + "description": "This course surveys the history of the region by focusing on two interrelated phenomena\u2014the absence of democracy in most nations and the region\u2019s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.", + "edges_from": [], + "edges_to": [], + "id": 3880, + "label": "HILA 102D", + "title": "Latin America in the Twentieth Century (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "for the Social Sciences: Social Movements (2.0)", + "edges_from": [], + "edges_to": [], + "id": 3881, + "label": "Linguistics/Portuguese (LIPO) 15", + "title": "Intermediate Brazilian Portuguese" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Portuguese for the Social Sciences: Ethnicity (2.0)", + "edges_from": [], + "edges_to": [], + "id": 3882, + "label": "Linguistics/Portuguese (LIPO) 17", + "title": "Intermediate Brazilian" + }, + { + "dept": "MGTA", + "description": "Discussion series where domain experts and business leaders present up-to-date research, discuss legal, privacy, and ethical issues, and provide professional skills development. S/U grades only. May be taken for credit two times. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 3883, + "label": "MGTA 401", + "title": "Professional Seminar (1)" + }, + { + "dept": "Classics", + "description": "Subject matter variable; mainly but not exclusively major literary topics.", + "edges_from": [], + "edges_to": [], + "id": 3884, + "label": "Classics 220", + "title": "Classics Graduate Seminar (4)" + }, + { + "dept": "Classics", + "description": "Covers various technical skills essential for research and pedagogy in classics, including use of digital resources (e.g., bibliographical databases). Provides an introduction to important disciplinary subfields, such as textual criticism and epigraphy. Selection of topics will be at instructor\u2019s discretion.", + "edges_from": [], + "edges_to": [], + "id": 3885, + "label": "Classics 201", + "title": "Research and Pedagogical Tools for Classicists (4)" + }, + { + "dept": "TDMV", + "description": "The study of theatrical tap dance. Various styles of tap\u2014 such as classical, rhythm, and musical theatre\u2014will be introduced. Emphasis on rhythm, coordination, timing, and theatrical style. Includes basic through intermediate tap movement. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3886, + "label": "TDMV 11", + "title": "Theatrical Tap (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal spoken Arabic but who have little or no reading and writing skills. Topics include the Arabic alphabet, basic reading and writing, and differences between colloquial and written Arabic. ", + "edges_from": [], + "edges_to": [], + "id": 3887, + "label": "Linguistics/Heritage Languages (LIHL) 16", + "title": "Arabic Literacy for Arabic Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal spoken Persian but who have little or no reading and writing skills. Topics include the Persian alphabet, basic reading and writing, and differences between colloquial and written Persian. ", + "edges_from": [], + "edges_to": [], + "id": 3888, + "label": "Linguistics/Heritage Languages (LIHL) 17", + "title": "Persian Literacy for Persian Speakers (4)" + }, + { + "dept": "CSE", + "description": "Design and implementation of interactive World Wide Web clients using helper applications and plug-ins.\u00a0The main language covered will be Java. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [], + "id": 3889, + "label": "CSE 134B", + "title": "Web Client Languages (4)" + }, + { + "dept": "ECE", + "description": "This course covers the fundamentals of using the Python language effectively for data analysis. Students learn the underlying mechanics and implementation specifics of Python and how to effectively utilize the many built-in data structures and algorithms. The course introduces key modules for data analysis such as Numpy, Pandas, and Matplotlib. Participants learn to leverage and navigate the vast Python ecosystem to find codes and communities of individual interest. ", + "edges_from": [ + 3352 + ], + "edges_to": [], + "id": 3890, + "label": "ECE 143", + "title": "Programming for Data Analysis (4)" + }, + { + "dept": "ECE", + "description": "Develop, debug, and test LabVIEW VIs, solve problems using LabVIEW, use data acquisition, and perform signal processing and instrument control in LabVIEW applications. Groups of students will build an elevator system from laser-cut and 3-D printed parts; integrate sensors, motors, and servos; and program using state-machine architecture in LabVIEW. Students will have the opportunity to take the National Instruments Certified LabVIEW Associate Developer (CLAD) exam at the end of the quarter. Program or materials fees may apply. ", + "edges_from": [ + 393, + 394, + 395 + ], + "edges_to": [], + "id": 3891, + "label": "ECE 144", + "title": "LabVIEW Programming: Design and Applications (4)" + }, + { + "dept": "CHEM", + "description": "Derivation of thermodynamics", + "edges_from": [], + "edges_to": [], + "id": 3892, + "label": "CHEM 232A", + "title": "Statistical Mechanics I (4)" + }, + { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1A. ", + "edges_from": [], + "edges_to": [], + "id": 3893, + "label": "Linguistics/French (LIFR) 1AX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "ECE", + "description": "Fundamentals of autonomous vehicles. Working in small teams, students will develop 1:8 scale autonomous cars that must perform on a simulated city track. Topics include: robotics system integration, computer vision, algorithms for navigation, on-vehicle vs. off-vehicle computation, computer learning systems such as neural networks, locomotion systems, vehicle steering, dead reckoning, odometry, sensor fusion, GPS auto-pilot limitations, wiring, and power distribution and management. Cross-listed with MAE 148. Students may not receive credit for ECE 148 and MAE 148. Program or materials fees may apply. ", + "edges_from": [ + 2233, + 394, + 258, + 1150 + ], + "edges_to": [], + "id": 3894, + "label": "ECE 148", + "title": "Introduction to Autonomous Vehicles (4)" + }, + { + "dept": "MATS", + "description": "Analysis of the near surface of materials via ion, electron, and X-ray spectroscopes. Topics to be covered include particle solid interactions. Rutherford Backscattering, secondary ion mass spectroscopy, electron energy loss spectroscopy, particle induced X-ray emission, Auger electron spectroscopy, extended X-ray absorption fine structure and channeling. ", + "edges_from": [ + 3896 + ], + "edges_to": [], + "id": 3895, + "label": "MATS 243", + "title": "Modern Materials Analysis (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3895 + ], + "id": 3896, + "label": "ECE 237", + "title": "" + }, + { + "dept": "EDS", + "description": "The course introduces prospective secondary teachers to principles and strategies of teaching English language arts. Topics include: writing processes, reading processes, integrated language arts, assessment, the second language learner, the classroom community, the California English Language Arts Framework. ", + "edges_from": [], + "edges_to": [], + "id": 3897, + "label": "EDS 373", + "title": "Secondary English Teaching Practices (4)" + }, + { + "dept": "EDS", + "description": "Proficiency-oriented language teaching techniques, including project-based and communicative approaches, developing student knowledge and appreciation of the cultures and societies in which the target language is spoken, the use of technology to support instruction aligned to the California academic content standards.", + "edges_from": [], + "edges_to": [], + "id": 3898, + "label": "EDS 372", + "title": "World Language Teaching Practices (4)" + }, + { + "dept": "EDS", + "description": "This course satisfies the California Commission on Teacher Credentialing requirement for preparation in reading theory and methods for all credential candidates. Theories of reading development, integration of the language arts, reading and writing in the content areas, teaching methods, and literature. ", + "edges_from": [], + "edges_to": [], + "id": 3899, + "label": "EDS 376", + "title": "Language and Learning Instruction (4)" + }, + { + "dept": "EDS", + "description": "Science teaching techniques, including science curriculum design, California Model Curriculum Standards, instructional methods, computer applications, selection and use of textbooks, student assessment, lesson planning, and classroom organization. Professional matters including curriculum planning, professional organizations, paraprofessionals, professional ethics, education law, and parent involvement are addressed. ", + "edges_from": [], + "edges_to": [], + "id": 3900, + "label": "EDS 375", + "title": "Secondary Science Teaching Practices (4)" + }, + { + "dept": "POLI", + "description": "A survey of the academic literature on parliamentary studies, comparing the research on legislative elections, behavior, and organization in American, European, and Asian democracies. The course will also compare various approaches to studying legislative activity. ", + "edges_from": [], + "edges_to": [], + "id": 3901, + "label": "POLI 223A", + "title": "Comparative Parliamentary Studies (4)" + }, + { + "dept": "TDGE", + "description": "Seminar on a topic in theatre or dance on a level appropriate for first-year students, conducted in an informal, small group setting limited to ten to twenty students. Topics will vary. ", + "edges_from": [], + "edges_to": [], + "id": 3902, + "label": "TDGE 87", + "title": "Freshman Seminar in Theatre and Dance (1)" + }, + { + "dept": "TDGE", + "description": "An introduction to dance movement and understanding your body. A contemporary approach to dancing and its many genres as an expressive medium and form of communication. A movement course but no dance training or background in dance needed. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3903, + "label": "TDGE 89", + "title": "Dance Movement Exploration (4)" + }, + { + "dept": "LTTH", + "description": "A critical and interpretive review of some of the major documents in criticism from the classical period to the present time.", + "edges_from": [], + "edges_to": [], + "id": 3904, + "label": "LTTH 110", + "title": "History of Criticism (4)" + }, + { + "dept": "VIS", + "description": "This course will explore design strategies that engage peoples\u2019 shifting geopolitical boundaries, bioregional and ecosystems, urban structures and landscapes, and recontextualize the city as a site of investigation by developing new ways of intervening into expanded notions of urban space, including virtual communities and new speculations of urbanity. ", + "edges_from": [ + 932 + ], + "edges_to": [], + "id": 3905, + "label": "VIS 101A", + "title": "Designing Urban Ecologies (4)" + }, + { + "dept": "FPM", + "description": "This second quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or III). ", + "edges_from": [ + 3907 + ], + "edges_to": [ + 4749 + ], + "id": 3906, + "label": "FPM 258B", + "title": "Public Health Doctoral Lecture Series II (2)" + }, + { + "dept": "FPM", + "description": "", + "edges_from": [], + "edges_to": [ + 3906 + ], + "id": 3907, + "label": "FPM 258A", + "title": "" + }, + { + "dept": "ESYS", + "description": "The seminar provides a venue for the development, presentation, and evaluation of the Environmental Systems Integrative Project. The seminar will include work on research methods as well as paper presentation skills. ", + "edges_from": [ + 3909 + ], + "edges_to": [], + "id": 3908, + "label": "ESYS 190B", + "title": "Environmental Systems Senior Seminar (4)" + }, + { + "dept": "ESYS", + "description": "", + "edges_from": [ + 549 + ], + "edges_to": [ + 3908 + ], + "id": 3909, + "label": "ESYS 190A", + "title": "" + }, + { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3910, + "label": "MAE 298", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "MAE", + "description": "Engineering Design (4)", + "edges_from": [], + "edges_to": [], + "id": 3911, + "label": "MAE 126B", + "title": "Environmental" + }, + { + "dept": "HIEU", + "description": "European Society and Social Thought, 1870\u20131989 (4)", + "edges_from": [], + "edges_to": [], + "id": 3912, + "label": "HIEU 136B", + "title": "" + }, + { + "dept": "LTWL", + "description": "This class investigates yoga as a practice aimed at integrating the body, intellect, and spirit. It considers a range of sources and representations, from foundational works in classical Sanskrit through the sometimes kitschy, sometimes serious, spirituality of contemporary pop culture.", + "edges_from": [], + "edges_to": [], + "id": 3913, + "label": "LTWL 169", + "title": "Yoga, Body, and Transformation (4)" + }, + { + "dept": "LTIT", + "description": "Politics, literature, and cultural issues of twentieth-century Italy. May be repeated for credit when topics vary. ", + "edges_from": [ + 3014 + ], + "edges_to": [], + "id": 3914, + "label": "LTIT 122", + "title": "Studies in Modern Italian Culture (4)" + }, + { + "dept": "TDDR", + "description": "A studio class that investigates the fundamental", + "edges_from": [], + "edges_to": [ + 5345 + ], + "id": 3915, + "label": "TDDR 111", + "title": "Directing-Acting Process (4)" + }, + { + "dept": "EDS", + "description": "Performance Assessment Portfolio (4)", + "edges_from": [], + "edges_to": [], + "id": 3916, + "label": "EDS 206", + "title": "Teaching" + }, + { + "dept": "MAE", + "description": "and Mechanics in Computer Technology (4)", + "edges_from": [], + "edges_to": [], + "id": 3917, + "label": "MAE 291", + "title": "Design" + }, + { + "dept": "HITO", + "description": "An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.", + "edges_from": [], + "edges_to": [], + "id": 3918, + "label": "HITO 133", + "title": "War and Society: The Second World War (4)" + }, + { + "dept": "HIEU", + "description": "This course is a survey of the political, social, and cultural history of the ancient Mediterranean. It focuses on the ancient empires in the Near East (Sumer, Babylon, Assyria, Persia), Egypt, Greece, and Rome. +", + "edges_from": [], + "edges_to": [], + "id": 3919, + "label": "HIEU 106", + "title": "Egypt, Greece, and Rome (4)" + }, + { + "dept": "NANO", + "description": "Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3920, + "label": "NANO 296", + "title": "Independent Study in NanoEngineering (4)" + }, + { + "dept": "MUS", + "description": "Selected topics in music theory. Covers Western classical repertoire from 1850 to the present. Includes chromatic and post-tonal harmony, formal analysis. May be taken for credit up to two times. ", + "edges_from": [ + 1559 + ], + "edges_to": [], + "id": 3921, + "label": "MUS 102", + "title": "Topics in Music Theory (4)" + }, + { + "dept": "NANO", + "description": "Graduate research in NanoEngineering. S/U grades only. May be taken for credit four times for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 3922, + "label": "NANO 299", + "title": "Graduate Research in NanoEngineering (1\u201312)" + }, + { + "dept": "MAE", + "description": "Introduction to 2-D and 3-D computer-aided design. Design problems may include: ball bearing kinematics, Weibull statistics, nonrepeatable spindle run-out, four bar linkages, beam deflection and vibration, design of magnetic head suspension, hydrodynamic theory of lubrication, air bearings, heat transfer, optical servo, design of ink jet print head. ", + "edges_from": [], + "edges_to": [], + "id": 3923, + "label": "MAE 292", + "title": "Computer-Aided Design and Analysis (4)" + }, + { + "dept": "MUS", + "description": "This seminar explores the history of music in relation to critical issues, such as race, gender, sexuality, the environment, and politics. Readings include recent literature in cultural studies, musicology, and sociology. Topics vary. May be taken three times for credit. ", + "edges_from": [ + 1561 + ], + "edges_to": [], + "id": 3924, + "label": "MUS 107", + "title": "Critical Studies Seminar (4)" + }, + { + "dept": "MUS", + "description": "Topics in musical analysis. Covers full range of musical repertoire 1900 to present, including music that does not depend on notation. May be taken for credit up to two times. ", + "edges_from": [ + 1494 + ], + "edges_to": [], + "id": 3925, + "label": "MUS 106", + "title": "Topics in Musical Analysis (4)" + }, + { + "dept": "MUS", + "description": "This course will explore a range of compositional possibilities from song forms to modal and more extended forms. May be taken for credit two times. ", + "edges_from": [ + 3927, + 1559 + ], + "edges_to": [], + "id": 3926, + "label": "MUS 105", + "title": "Jazz Composition (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 3764, + 1494 + ], + "edges_to": [ + 1560, + 4298, + 3926 + ], + "id": 3927, + "label": "MUS 101A", + "title": "" + }, + { + "dept": "VIS", + "description": "Covering the evolution of architecture and urban developments in South and North Korea since 1953. The course will examine how both states have shaped the political, economic, and cultural conditions. In particular, we will compare the apartment block communities, national identity architecture, and thematic architecture for entertainment and political propaganda. Looking at how traditional Korean architecture and urban structures were modified for modern life and political economy. ", + "edges_from": [], + "edges_to": [], + "id": 3928, + "label": "VIS 127I", + "title": "Architecture and Urbanism of Korea (4)" + }, + { + "dept": "VIS", + "description": "Surveys the key works and developments in the modern art and visual culture of Japan from Edo and Meiji to the present and of China from the early-twentieth century to contemporary video, performance, and installation art. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 3929, + "label": "VIS 127N", + "title": "Twentieth-Century Art in China and Japan (4)" + }, + { + "dept": "MAE", + "description": "This course will introduce the advanced graduate student to the topics of mechanical and thermodynamic analyses of cellular membranes, lipid bilayers, and the study of synthetic vesicles. ", + "edges_from": [ + 986 + ], + "edges_to": [], + "id": 3930, + "label": "MAE 264", + "title": "Mechanics and Thermodynamics of Biological Membranes (4)" + }, + { + "dept": "VIS", + "description": "Course will survey major trends in the arts of China from a thematic point of view, explore factors behind the making of works of art, including political and religious meanings, and examine contexts for art in contemporary cultural phenomena. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 3931, + "label": "VIS 127B", + "title": "Arts of China (4)" + }, + { + "dept": "VIS", + "description": "Course will explore Chinese art of the twentieth century. By examining artworks in different media, we will investigate the most compelling of the multiple realities that Chinese artists have constructed for themselves. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 3932, + "label": "VIS 127C", + "title": "Arts of Modern China (4)" + }, + { + "dept": "VIS", + "description": "The course will examine the theories and practices of contemporary art in South Korea, and its systems of cultural productions and disseminations. Highlighting the work of representative artists, institutions, and events, focuses will be on the predominance of governmental and corporate sponsorships, and how its cultural system is positioned for national and global presence, as well as the emergence alternative art spaces that promote the decentralization of cultural programs. Course is part of Korean studies minor program. ", + "edges_from": [], + "edges_to": [], + "id": 3933, + "label": "VIS 127A", + "title": "Contemporary Arts in South Korea (4)" + }, + { + "dept": "VIS", + "description": "Explore the development of Buddhist art and architecture in Japan. Focus on the role of art in Buddhist practice and philosophy and the function of syncretic elements in Japanese Buddhist art. ", + "edges_from": [], + "edges_to": [], + "id": 3934, + "label": "VIS 127F", + "title": "Japanese Buddhist Art (4)" + }, + { + "dept": "VIS", + "description": "Explore representations of figures and landscapes from the dawn of Chinese painting through the Yuan dynasty, with stress on developments in style and subject matter and relationships to contemporary issues in philosophy, religion, government, society, and culture. ", + "edges_from": [], + "edges_to": [], + "id": 3935, + "label": "VIS 127D", + "title": "Early Chinese Painting (4)" + }, + { + "dept": "VIS", + "description": "Explores major schools and artists of the Ming and Qing periods, including issues surrounding court patronage of professional painters, revitalization of art through reviving ancient styles, commercialization\u2019s challenges to scholar-amateur art, and the influences of the West. ", + "edges_from": [], + "edges_to": [], + "id": 3936, + "label": "VIS 127E", + "title": "Later Chinese Painting (4)" + }, + { + "dept": "HINE", + "description": "The study of a single book, period, or issue on the Bible, in the context of the ancient Near Eastern world. Requirements will vary for undergraduate, master\u2019s, and doctoral students. Graduate students may be required to submit a more substantial piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 3937, + "label": "HINE 160/260", + "title": "Special Topics in the Bible and Ancient Near East (4)" + }, + { + "dept": "VIS", + "description": "Course is a survey of the visual arts of Japan, considering how the arts developed in the context of Japan\u2019s history and discussing how art and architecture were used for philosophical, religious, and material ends. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 3938, + "label": "VIS 127P", + "title": "Arts of Japan (4)" + }, + { + "dept": "VIS", + "description": "Explore major trends in Japanese pictorial art from the seventh century to the nineteenth century, with focus on function, style, and subject matter, and with particular emphasis on the relationship between Japanese art and that of continental Asia. ", + "edges_from": [], + "edges_to": [], + "id": 3939, + "label": "VIS 127Q", + "title": "Japanese Painting and Prints (4)" + }, + { + "dept": "CHEM", + "description": "Fundamental theoretical principles, capabilities, applications, and limitations of modern analytical instrumentation used for qualitative and quantitative analysis. Students will learn how to define the nature of an analytical problem and how to select an appropriate analytical method. Letter grades only. Recommended preparation: background equivalent to CHEM 100A and introductory optics and electricity from physics. (W)", + "edges_from": [], + "edges_to": [], + "id": 3940, + "label": "CHEM 200B", + "title": "Fundamentals of Instrumental Analysis (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 273.) Functional versus imperative programming. Type systems and polymorphism; the ML language. Higher order functions, lazy evaluation. Abstract versus concrete syntax, structural and well-founded induction. The lambda calculus, reduction strategies, combinators. Denotational semantics, elementary domain theory. ", + "edges_from": [ + 3942 + ], + "edges_to": [], + "id": 3941, + "label": "CSE 230", + "title": "Principles of Programming Languages (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3941 + ], + "id": 3942, + "label": "CSE 130", + "title": "" + }, + { + "dept": "BIEB", + "description": "A laboratory course to familiarize students with ecological problem solving and methods. Students will perform outdoor fieldwork and use a computer for data exploration and analysis. Fieldwork can be expected in this course. Associated travel may be required, and students are responsible for their own transportation. Students may need to provide and use their own laptop. Material lab fees will apply. ", + "edges_from": [ + 3624, + 1389, + 3399 + ], + "edges_to": [], + "id": 3943, + "label": "BIEB 121", + "title": "Ecology Laboratory (4)" + }, + { + "dept": "BIEB", + "description": "Theory and practice of molecular biology techniques used in evolutionary and ecological research. Includes isolation and genotyping of DNA, PCR, and its applications. Phylogenetics, biodiversity, bioinformatics, and evolutionary and ecological analysis of molecular data. Material lab fees will apply. Students may not enroll in and receive credit for both BIMM 101 and BIEB 123. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. ", + "edges_from": [ + 1424, + 954 + ], + "edges_to": [ + 5951 + ], + "id": 3944, + "label": "BIEB 123", + "title": "Molecular Methods in Evolution and Ecology Lab (4)" + }, + { + "dept": "MAE", + "description": "Engineering Laboratory (4)", + "edges_from": [], + "edges_to": [], + "id": 3945, + "label": "MAE 126A", + "title": "Environmental" + }, + { + "dept": "BIEB", + "description": "This course begins with an introduction to plant population biology including whole-plant growth and physiology. We then focus on three classes of ecological interactions: plant-plant competition, plant-herbivore coevolution, and plant reproductive ecology including animal pollination and seed dispersal. ", + "edges_from": [ + 1424 + ], + "edges_to": [], + "id": 3946, + "label": "BIEB 126", + "title": "Plant Ecology (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 274A.) This course provides an overview of parallel hardware, algorithms, models, and software. Topics include Flynn\u2019s taxonomy, interconnection networks, memory organization, a survey of commercially available multiprocessors, parallel algorithm paradigms and complexity criteria, parallel programming environments and tools for parallel debugging, language specification, mapping, performance, etc. ", + "edges_from": [], + "edges_to": [], + "id": 3947, + "label": "CSE 260", + "title": "Parallel Computation (4)" + }, + { + "dept": "BIEB", + "description": "Course begins with a survey of insect diversity and phylogenetic relationships. Course then addresses issues such as population dynamics (including outbreaks), movement and migration, competition, predation, herbivory, parasitism, insect defense, mimicry complexes, and sociality. Course also includes discussions of pest management, evolution of insecticide resistance, insect-borne diseases, and how insects are responding to global change. ", + "edges_from": [ + 1424 + ], + "edges_to": [], + "id": 3948, + "label": "BIEB 128", + "title": "Insect Diversity (4)" + }, + { + "dept": "MGT", + "description": "Supply chain management involves the flows of materials and information that contribute value to a product, from the source of raw materials to end customers. This course explains how supply chains work and describes the major challenges in managing an efficient supply chain. Covers various strategic and tactical supply chain issues such as distribution strategy, information sharing strategy, outsourcing, procurement (including e-markets), product design, virtual integration, and risk management. Credit is not allowed for both MGT 174 and MGT 175. ", + "edges_from": [], + "edges_to": [], + "id": 3949, + "label": "MGT 175", + "title": "Supply Chain Management (4)" + }, + { + "dept": "SOCI", + "description": "A survey of theoretical and empirical studies concerning the workings of the scientific community and its relations with the wider society. Special attention will be given to the institutionalization of the scientific role and to the social constitution of scientific knowledge. ", + "edges_from": [ + 3950, + 3951 + ], + "edges_to": [ + 3950 + ], + "id": 3950, + "label": "SOCI 168E", + "title": "Sociology of Science (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3950 + ], + "id": 3951, + "label": "SOCC 168E", + "title": "" + }, + { + "dept": "MGT", + "description": "This course covers efficient techniques for managing health services projects, including both the technical aspects of project management as well as the human-capital management issues associated with blending administrative and technical staff with health-care professionals. Topics include scheduling methods, milestone setting, governmental regulations, resource allocation, interpersonal skills, and performing research and development projects\u2014all with a health services focus. ", + "edges_from": [], + "edges_to": [], + "id": 3952, + "label": "MGT 173", + "title": "Project Management: Health Services (4)" + }, + { + "dept": "MGT", + "description": "Addresses effective practices for management of business projects. Includes both project management processes\u2014scheduling, milestone setting, resource allocation, budgeting, risk mitigation\u2014and human capital management\u2014communication, teamwork, leadership. Also considers requirements for effectively working across functional and organizational boundaries. ", + "edges_from": [], + "edges_to": [], + "id": 3953, + "label": "MGT 172", + "title": "Business Project Management (4)" + }, + { + "dept": "MGT", + "description": "Operations management (OM) involves the systematic design, execution, and improvement of business processes, projects, and partner relationships. This course goes beyond cost minimization and addresses issues that firms large and small must confront in their journey toward sustained scalability, growth, and profitability. Also examines human factors such as psychological contract, team management, empowerment, employee-initiated process improvements, morale, motivation, rewards, and incentives. ", + "edges_from": [], + "edges_to": [], + "id": 3954, + "label": "MGT 171", + "title": "Operations Management (4)" + }, + { + "dept": "LTCH", + "description": "in Contemporary Chinese Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 3955, + "label": "LTCH 101", + "title": "Readings" + }, + { + "dept": "POLI", + "description": "to Political Science: American Politics (4)", + "edges_from": [], + "edges_to": [], + "id": 3956, + "label": "POLI 10 or 10D", + "title": "Introduction" + }, + { + "dept": "SOCI", + "description": "Special Topics in Culture, Language, and Social Interaction (4)", + "edges_from": [], + "edges_to": [], + "id": 3957, + "label": "SOCI 120T", + "title": "" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3958, + "label": "BGRD 205", + "title": "Research Discussion in Plant Membrane Biology (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 3959, + "label": "BGRD 207", + "title": "Research Discussion in Neuronal Pattern Generation (1)" + }, + { + "dept": "LTTH", + "description": "A critical review of major contemporary theories of the nature of literature, its sociocultural function, and appropriate modes of evaluation.", + "edges_from": [], + "edges_to": [], + "id": 3960, + "label": "LTTH 115", + "title": "Introduction to Critical Theory (4)" + }, + { + "dept": "RELI", + "description": "Second quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196BH. ", + "edges_from": [ + 3962 + ], + "edges_to": [], + "id": 3961, + "label": "RELI 196BH", + "title": "Honors Thesis in Religion (4)" + }, + { + "dept": "RELI", + "description": "", + "edges_from": [], + "edges_to": [ + 3961 + ], + "id": 3962, + "label": "RELI 196A", + "title": "" + }, + { + "dept": "AESE", + "description": "Focuses on analytic techniques supporting rational business decision making, providing systematic approaches to complex decision situations. Addresses analysis of conflicting objectives and use of tools such as value trees, decision trees, influence diagrams, and value hierarchies, Bayesian networks, and data mining. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 3963, + 3964 + ], + "edges_to": [ + 3963 + ], + "id": 3963, + "label": "AESE 241", + "title": "Decision and Risk Analysis (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 3963 + ], + "id": 3964, + "label": "MGT 241", + "title": "" + }, + { + "dept": "HDP", + "description": "Study in Human Development (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 3965, + "label": "HDP 99", + "title": "Independent" + }, + { + "dept": "PHYS", + "description": "An introduction to the modern theory of dynamical systems and applications thereof. Topics include maps and flows, bifurcation theory and normal form analysis, chaotic attractors in dissipative systems, Hamiltonian dynamics and the KAM theorem, and time series analysis. Examples from real physical systems will be stressed throughout. ", + "edges_from": [ + 2657 + ], + "edges_to": [], + "id": 3966, + "label": "PHYS 221A", + "title": "Nonlinear and Nonequilibrium Dynamics of Physical Systems (4)" + }, + { + "dept": "ECE", + "description": "An advanced reading or research project performed under the direction of an ECE faculty member. Must contain enough design to satisfy the ECE program\u2019s four-unit design requirement. Must be taken for a letter grade. May extend over two quarters with a grade assigned at completion for both quarters. ", + "edges_from": [], + "edges_to": [], + "id": 3967, + "label": "ECE 193H", + "title": "Honors Project (4\u20138)" + }, + { + "dept": "LTKO", + "description": "This course is designed to develop cultural understanding and professional/academic level reading skill for students with coverage of materials on Korean language history from the fifteenth century to the present, previous and current writing systems, and Korean language structure. May be taken for credit three times as topics vary. ", + "edges_from": [ + 1913 + ], + "edges_to": [], + "id": 3968, + "label": "LTKO 149", + "title": "Readings in Korean Language History and Structure (4)" + }, + { + "dept": "CHEM", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 3969, + "label": "CHEM 113", + "title": "Physical Chemistry of Biological Macromolecules" + }, + { + "dept": "SE", + "description": "Introduction to advanced composite materials and their applications. Fiber and matrix properties, micromechanics, stiffness, ply-by-ply stress, hygrothermal behavior, and failure prediction. Lab activity will involve design, analysis, fabrication, and testing of composite structure. Program or materials fees may apply. ", + "edges_from": [ + 1308, + 652, + 1129, + 399 + ], + "edges_to": [ + 4075 + ], + "id": 3970, + "label": "SE 142", + "title": "Design of Composite Structures (4)" + }, + { + "dept": "SE", + "description": "Introduction to concepts, procedures, and key issues of engineering design. Problem formulation, concept design, configuration design, parametric design, and documentation. Project management, team working, ethics, and human factors. Term project in model structure design. Program or materials fees may apply. ", + "edges_from": [ + 3745, + 2660 + ], + "edges_to": [], + "id": 3971, + "label": "SE 140", + "title": "Structures and Materials Laboratory (4)" + }, + { + "dept": "ERC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3972, + "label": "ERC 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "MAE", + "description": "Topics in the mechanics of blood flow including analytical solutions for flow in deformable vessels, one-dimensional equations, cardiovascular anatomy, lumped parameter models, vascular trees, scaling laws, and an introduction to the biomechanics and treatment of adult and congenital cardiovascular diseases. ", + "edges_from": [ + 1537, + 1535 + ], + "edges_to": [], + "id": 3973, + "label": "MAE 261", + "title": "Cardiovascular Fluid Mechanics (4)" + }, + { + "dept": "POLI", + "description": "(Same as LTCO 287.) A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. ", + "edges_from": [], + "edges_to": [], + "id": 3974, + "label": "POLI 213", + "title": "Culture and Political Theory (4)" + }, + { + "dept": "POLI", + "description": "(Same as Soc/G 202.) Themes important for social theory at the turn of the twenty-first century: Marxism, Gramsci, Althusser, critical theory (Adorno, Habermas), interpretation (Geertz), social systems (Parson), poststructuralism (Foucault), postmodernism, and social constructivism (Bourdieu). ", + "edges_from": [], + "edges_to": [], + "id": 3975, + "label": "POLI 212", + "title": "Contemporary Sociological Theory (4)" + }, + { + "dept": "POLI", + "description": "Normative approaches to liberty, equality, justice, and democracy, mostly Anglo-American and empirical approaches to justice. Thinkers such as Rawls, Habermas, Nozick, Dworkin, Raz, Roemer, Elster, Ostrom, Bowles, and Gintis may be considered. ", + "edges_from": [], + "edges_to": [], + "id": 3976, + "label": "POLI 216", + "title": "Contemporary Liberal and Democratic Theory (4)" + }, + { + "dept": "POLI", + "description": "An examination of selected texts in Marxist and post-Marxist political philosophy, with a focus on the theme of individual and collective identity including issues concerning alienation, consciousness, and ideology. ", + "edges_from": [], + "edges_to": [], + "id": 3977, + "label": "POLI 214", + "title": "Marxist and Post-Marxist Political Philosophy (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to behavioral psychology. Topics include classical conditioning, operant conditioning, animal learning, and motivation and behavior modification.", + "edges_from": [], + "edges_to": [], + "id": 3978, + "label": "PSYC 4", + "title": "General Psychology: Behavioral Foundations (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to theories and research results in developmental psychology, covering infancy through adulthood.", + "edges_from": [], + "edges_to": [], + "id": 3979, + "label": "PSYC 7", + "title": "General Psychology: Developmental Foundations (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to social psychology. Topics may include emotion, aesthetics, behavioral medicine, person perception, attitudes and attitude change, and behavior in social organizations.", + "edges_from": [], + "edges_to": [], + "id": 3980, + "label": "PSYC 6", + "title": "General Psychology: Social Foundations (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the basic concepts of cognitive psychology. Topics include perception, attention, memory, language, and thought. The relation of cognitive psychology to cognitive science and to neuropsychology is also covered.", + "edges_from": [], + "edges_to": [], + "id": 3981, + "label": "PSYC 3", + "title": "General Psychology: Cognitive Foundations (4)" + }, + { + "dept": "ECON", + "description": "In this course, students are guided toward the formulation of an original research idea and the writing of an original paper. Students receive support and input through group discussion and also through interaction with the instructor. ", + "edges_from": [], + "edges_to": [], + "id": 3982, + "label": "ECON 296", + "title": "Original Research Paper (1\u201312)" + }, + { + "dept": "HUM", + "description": "An introduction to teaching humanities. Students are required to attend weekly discussions on methods of teaching humanities and will teach discussion sections of one of the humanities courses. Attendance at lecture of the course in which the student is participating is required. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3983, + "label": "HUM 195", + "title": "Methods of Teaching Humanities (4)" + }, + { + "dept": "MGT", + "description": "Sequence introduces students to various", + "edges_from": [], + "edges_to": [], + "id": 3984, + "label": "MGT 208B", + "title": "Introduction to Management Research B (4)" + }, + { + "dept": "TWS", + "description": "21-22-23-24-25-26. Third World Literatures (4-4-4-4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 3985, + "label": "TWS", + "title": "" + }, + { + "dept": "COGR", + "description": "This course is an introduction to the art of writing a research proposal. We will concentrate on proposals for ethnographic fieldwork, although the skills learned will be useful for many other purposes. The proposal writing process will be broken into component parts. Class time will be spent discussing these parts in greater detail and commenting on one another\u2019s work. By the end of the quarter students will have produced a research proposal of their own. ", + "edges_from": [], + "edges_to": [], + "id": 3986, + "label": "COGR 263", + "title": "Writing Research Proposals (4)" + }, + { + "dept": "MGT", + "description": "This is the first course in a three-course sequence that introduces", + "edges_from": [], + "edges_to": [], + "id": 3987, + "label": "MGT 208A", + "title": "Introduction to Management Research A (4)" + }, + { + "dept": "LTIT", + "description": "Senior thesis research and writing for students who have been accepted for the literature honors program and who have completed LTWL 191. Oral examination. ", + "edges_from": [], + "edges_to": [], + "id": 3988, + "label": "LTIT 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "COMM", + "description": "This course concentrates on one area of law specific to the concerns of communication: the relationship between privacy, personhood, and bodily autonomy. Using a combination of legal texts, court cases, and theoretical literature, we will consider the changing nature of each dimension of this relationship as the courts have been called upon to adjudicate conflicting claims and visions in matters of reproduction, sexual identity, genetic engineering, and the commodification of body parts. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3989, + "label": "COMM 114N", + "title": "CSI: Communication and the Law: The Body in Law (4)" + }, + { + "dept": "COMM", + "description": "Specialized study in community-based and/or participatory design research with topics to be determined by the instructor, for any given quarter. Students who choose the option to do fieldwork for any given course, need to register for COMM 114K. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3990, + "label": "COMM 114K", + "title": "CSI: Community Fieldwork (2)" + }, + { + "dept": "COMM", + "description": "Examine food justice from multiple analytical and theoretical perspectives: race, class, diversity, equity, legal-institutional, business, ethical, ecological, scientific, cultural, and socio-technical. Compare political strategies of food justice organizations/movements aimed at creating healthy and sustainable food systems locally and globally.\u00a0", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3991, + "label": "COMM 114J", + "title": "CSI: Food Justice (4)" + }, + { + "dept": "COMM", + "description": "Course explores the roles of media technologies in activist campaigns, social movements. Blending theory, historical case studies, and project-based group work, students will investigate possibilities and limitations of attempts to enroll new and old media technologies in collective efforts to make social change. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3992, + "label": "COMM 114I", + "title": "CSI: Media Technologies and Social Movements (4)" + }, + { + "dept": "COMM", + "description": "This course will focus on arguments about cognitive differences between men and women in science. We will review current arguments about essential differences, historical beliefs about gender attributes and cognitive ability, and gender socialization into patterns of learning in school. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3993, + "label": "COMM 114G", + "title": "CSI: Gender and Science (4)" + }, + { + "dept": "LTEU", + "description": "This course focuses on nineteenth-century European realism in historical and cultural context. Topics include definitions of realism, the impact of urbanization and industrialization on literary forms and themes, and relations between realism in literature and the visual arts. May be repeated up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3994, + "label": "LTEU 111", + "title": "European Realism (4)" + }, + { + "dept": "COMM", + "description": "This course introduces students to different theories of globalization and of gender. Against this theoretical background, students critically examine the gendered (and racialized) nature of labor in the production of material, social, and cultural goods in the global economy. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 3995, + "label": "COMM 114E", + "title": "CSI: Gender, Labor, and Culture in the Global Economy (4)" + }, + { + "dept": "PHIL", + "description": "Continuation of 191A: independent study by special arrangement with and under the supervision of a faculty member, leading to the completion of the honors essay. A letter grade for both 191A and 191B will be given at the end of this quarter. ", + "edges_from": [], + "edges_to": [], + "id": 3996, + "label": "PHIL 191B", + "title": "The Honors Essay (4)" + }, + { + "dept": "COMM", + "description": "Consider \u201cconstitutions\u201d as meaning-making, world-building mechanisms and practices. Explore how constitutions work: as interpretive instruments designed to frame, organize, guide human thought, action, and systems (according to certain rules or principles often represented as divine in origin and universal in effect) and; as ongoing, dynamic interpretative processes that nevertheless congeal in objects, bodies, and social arrangements and are thus considered binding or unalterable. ", + "edges_from": [ + 540, + 3998 + ], + "edges_to": [], + "id": 3997, + "label": "COMM 114C", + "title": "CSI: On Constitutions (4)" + }, + { + "dept": "COGN", + "description": "", + "edges_from": [], + "edges_to": [ + 3997 + ], + "id": 3998, + "label": "COGN 20", + "title": "" + }, + { + "dept": "LTEN", + "description": "to the Literature of the United States, 1865 to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 3999, + "label": "LTEN 26", + "title": "Introduction" + }, + { + "dept": "RELI", + "description": "The course is an introductory study of cinema and religion. It explores how cinema depicts religion and spiritual experience. A number of films will be studied to understand how cinematic and religious narratives and practices overlap and, at times, diverge in complex ways. ", + "edges_from": [], + "edges_to": [], + "id": 4000, + "label": "RELI 150", + "title": "Religion and Cinema (4)" + }, + { + "dept": "LTEN", + "description": "to the Literature of the United States, Beginnings to 1865 (4)", + "edges_from": [], + "edges_to": [], + "id": 4001, + "label": "LTEN 25", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to the Literature of the British Isles: 1660\u20131832 (4)", + "edges_from": [], + "edges_to": [], + "id": 4002, + "label": "LTEN 22", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to the Literature of the British Isles: 1832\u2013Present (4)", + "edges_from": [], + "edges_to": [], + "id": 4003, + "label": "LTEN 23", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to the Literature of the British Isles: Pre-1660 (4)", + "edges_from": [], + "edges_to": [], + "id": 4004, + "label": "LTEN 21", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to Asian American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 4005, + "label": "LTEN 28", + "title": "Introduction" + }, + { + "dept": "COMM", + "description": "This course will explore the role that \u201cpublic history\u201d\u2014history as created for general audiences\u2014plays in communicating cultural and national identities by examining museum exhibitions, their controversies, and how material objects mediate interpretations of the past. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4006, + "label": "COMM 114P", + "title": "CSI: Public History and Museum Studies (4)" + }, + { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among Hispanic-Americans. The course examines changing religious traditions and ritual practices among Hispanic-Americans with a focus on Catholicism and (evangelical) Protestantism. ", + "edges_from": [], + "edges_to": [], + "id": 4007, + "label": "RELI 153", + "title": "Hispanic-American Religions (4)" + }, + { + "dept": "LIGN", + "description": "Africa is home to an astonishing variety of languages. This course investigates the characteristics of the major language families as well as population movements and language contact, and how governments attempt to regulate language use. ", + "edges_from": [], + "edges_to": [], + "id": 4008, + "label": "LIGN 108", + "title": "Languages of Africa (4)" + }, + { + "dept": "ECE", + "description": "Students complete a project comprising at least 50 percent or more engineering design to satisfy the following features: student creativity, open-ended formulation of a problem statement/specifications, consideration of alternative solutions/realistic constraints. Written final report required. ", + "edges_from": [ + 4009 + ], + "edges_to": [ + 4009 + ], + "id": 4009, + "label": "ECE 190", + "title": "Engineering Design (4)" + }, + { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among Asian-Americans. Tracing back to the mid-nineteenth century, the course examines changing religious traditions and ritual practices among Asian-American communities. ", + "edges_from": [], + "edges_to": [], + "id": 4010, + "label": "RELI 154", + "title": "Asian-American Religions (4)" + }, + { + "dept": "LIGN", + "description": "The interpretation of language in understanding the law: 1) the language of courtroom interaction (hearsay, jury instructions); 2) written legal language (contracts, ambiguity, legal fictions); 3) language-based issues in the law (First Amendment, libel and slander). ", + "edges_from": [], + "edges_to": [], + "id": 4011, + "label": "LIGN 105", + "title": "Law and Language (4)" + }, + { + "dept": "EDS", + "description": "EDS 140 builds on the students\u2019 foundational knowledge about pre-K\u201312 public education obtained in introductory PAL courses. This course is conducted as a seminar, where students shape their research questions, theoretical frameworks, and data collection methods for the action research projects. In conjunction to their action research projects, EDS 140 students serve as mentors, tutors, and/or interns at local low-income, underserved pre-K\u201312 public schools and/or community centers. If students wish to continue their service-learning practicum at their host school, they can take EDS 139. ", + "edges_from": [ + 2245, + 809, + 810, + 4012, + 813, + 3503, + 3510, + 1822 + ], + "edges_to": [ + 4012, + 4013 + ], + "id": 4012, + "label": "EDS 140", + "title": "Introduction to Action Research in Pre-K\u201312 Education (4)" + }, + { + "dept": "EDS", + "description": "Course builds on students\u2019 prior knowledge, experiences, and work from PAL foundations and intermediate courses to prepare them to conduct action research on relevant P\u201312 education issues. Students in the course will continue serving as tutors/mentors/interns in schools and communities. Students will also learn how to design educational research, carry out research in ethical ways, and analyze data for themes that the schools and communities find important. ", + "edges_from": [ + 2245, + 809, + 810, + 4012, + 813, + 3503, + 3510, + 1822 + ], + "edges_to": [], + "id": 4013, + "label": "EDS 141", + "title": "Action Research in Pre-K\u201312 Education: Advanced Practicum in Pre-K\u201312 Schools and Communities (4)" + }, + { + "dept": "COGS", + "description": "This is a studio class for students who are passionate about diving deep into interaction design and honing their design skills. Introduces social computing, input and interaction techniques, and information design. Students will regularly present work in a studio format. ", + "edges_from": [ + 393, + 395, + 2857, + 4015 + ], + "edges_to": [], + "id": 4014, + "label": "COGS 125", + "title": "Advanced Interaction Design (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 393, + 2670, + 3293, + 238, + 2647 + ], + "edges_to": [ + 4590, + 4014, + 5823 + ], + "id": 4015, + "label": "CSE 170", + "title": "" + }, + { + "dept": "COGS", + "description": "In this advanced project-based course, we study the state-of-the-art in research on technical systems for human-computer interaction (HCI). Students will deconstruct the systems described in top-tier HCI papers and work in teams to create novel technical systems of their own. ", + "edges_from": [ + 2857, + 1573 + ], + "edges_to": [], + "id": 4016, + "label": "COGS 124", + "title": "HCI Technical Systems Research (4)" + }, + { + "dept": "COGS", + "description": "This course explores the intersection of social behavior and computational systems. Students will examine a range of organizational, technical, and business challenges related to social computing, and learn how to use tools to analyze, design, and build online communities. ", + "edges_from": [ + 1576, + 2857, + 3292, + 3293, + 2647 + ], + "edges_to": [], + "id": 4017, + "label": "COGS 123", + "title": "Social Computing (4)" + }, + { + "dept": "LTSP", + "description": "Early Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)", + "edges_from": [], + "edges_to": [], + "id": 4018, + "label": "LTSP 150A", + "title": "" + }, + { + "dept": "HIUS", + "description": "112B. History of Native Americans in the United States II (4)", + "edges_from": [], + "edges_to": [], + "id": 4019, + "label": "HIUS 108B/ETHN", + "title": "" + }, + { + "dept": "ANTH", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in anthropology (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and consent of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 4020, + "label": "ANTH 192", + "title": "Senior Seminar in Anthropology (1)" + }, + { + "dept": "ETHN", + "description": "This course will train students in approaches to interdisciplinary research concerned with power and the production of knowledge, with a focus on conducting multimedia field research, applying discourse analysis, and recognizing forms of data across disciplinary divides. Students may not receive credit for both ETHN 241 and ETHN 203. ", + "edges_from": [], + "edges_to": [], + "id": 4021, + "label": "ETHN 203", + "title": "Cultural Studies and Cultural Production (4)" + }, + { + "dept": "ETHN", + "description": "This course focuses on conceptual and methodological frameworks of ethnography and qualitative inquiry, including research design, grounded theory, the field note journal, participant observation, and interviewing; major themes include the role of indigenous/insider researchers, ethics of involvement, and community collaboration. Students may not receive credit for both ETHN 242 and ETHN 202. ", + "edges_from": [], + "edges_to": [], + "id": 4022, + "label": "ETHN 202", + "title": "Qualitative Methods/Ethnography (4)" + }, + { + "dept": "ANTH", + "description": "Course gives students experience in teaching of anthropology at the lower-division level. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Course not counted toward minor or major.\u00a0P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4023, + "label": "ANTH 195", + "title": "Instructional Apprenticeship in Anthropology (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 3 + ], + "id": 4024, + "label": "COGS 7", + "title": "" + }, + { + "dept": "MGT", + "description": "Provides an understanding of relationships among shareholders, managers, and boards. Focuses on the office of the chief executive officer and on the board of directors, including the roles and responsibilities of directors, and the legal, economic, managerial, and psychological issues they confront. Students may not earn credit for both MGT 421 and MGT 211. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4025, + "label": "MGT 421", + "title": "CEO, the Board of Directors, and Corporate Governance (4)" + }, + { + "dept": "MGT", + "description": "Examines methods of conflict resolution needed for effective management in a constantly changing business environment. Applies these tools to the broad spectrum of negotiation problems faced by the manager and professional. Includes simulations, role playing, and cases. Students may not earn credit for both MGT 420 and MGT 260. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4026, + "label": "MGT 420", + "title": "Negotiation (4)" + }, + { + "dept": "MGT", + "description": "This course focuses on fostering and maintaining creativity in entrepreneurial ventures and in general management more broadly. Reading materials, cases, classroom, and home exercises will help students understand and be able to use creativity in their own working lives. Students may not earn credit for both MGT 422 and MGT 222. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4027, + "label": "MGT 422", + "title": "Creativity and Innovation (4)" + }, + { + "dept": "MGT", + "description": "Builds on core management courses and deals with identifying and assessing new technological and product opportunities. Assessment methods and frameworks will be introduced for technologies and opportunities. Various business models to profitably address the market opportunities will also be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 4028, + "label": "MGT 425", + "title": "Opportunity and Business Model Analysis (2)" + }, + { + "dept": "LATI", + "description": "Guided and supervised reading of the literature of the several areas included in the interdisciplinary fields of anthropology, communications, economics, history, literature, political science, and sociology. ", + "edges_from": [], + "edges_to": [], + "id": 4029, + "label": "LATI 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "MGT", + "description": "Provides practical techniques to help structure decision problems and analyze them quantitatively. Techniques help thinking clearly about objectives, alternatives, consequences, and uncertainties, and enable logical judgments with other types of information. Letter grades only. Students may not earn credit for both MGT 427 and MGT 240. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4030, + "label": "MGT 427", + "title": "Decision Analysis (4)" + }, + { + "dept": "LTWR", + "description": "This seminar will be organized around any of various topic areas relating to writing (fiction, poetry, cross-genre, theory). Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). S/U grades only. May be taken for credit three times as content varies. ", + "edges_from": [], + "edges_to": [], + "id": 4031, + "label": "LTWR 220", + "title": "Topics in Writing (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in corporate governance. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 429 and MGT 219 if courses have same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4032, + "label": "MGT 429", + "title": "Topics in Corporate Governance (2 or 4)" + }, + { + "dept": "LTCS", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 4033, + "label": "LTCS 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "HIEA", + "description": "This colloquium will examine selected topics in modern Korean", + "edges_from": [], + "edges_to": [], + "id": 4034, + "label": "HIEA 180", + "title": "Topics in Modern Korean History (4)" + }, + { + "dept": "BGGN", + "description": "Through analysis of issues related to student learning, teaching practices, and equity and inclusion in the classroom, students will develop philosophies and scholarship of teaching as they advance in apprentice teaching under mentorship of faculty. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4035, + "label": "BGGN 504", + "title": "Scholarship of Teaching and Learning in Biological Sciences (1)" + }, + { + "dept": "TDGR", + "description": "Advanced work in phonetics and articulation. Intensive study of stage dialects to prepare actor for variety of roles. ", + "edges_from": [ + 4037, + 4038 + ], + "edges_to": [], + "id": 4036, + "label": "TDGR 221A-B", + "title": "Speech for the Actor II (3-3)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4036 + ], + "id": 4037, + "label": "TDGR 221B", + "title": "" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4036 + ], + "id": 4038, + "label": "TDGR 221A", + "title": "" + }, + { + "dept": "HIEU", + "description": "Intensive study of special problems or periods in the history of medieval Europe. Topics vary from year to year, and students may therefore repeat the course for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4039, + "label": "HIEU 163/263", + "title": "Special Topics in Medieval History (4)" + }, + { + "dept": "BGGN", + "description": "Through interactive discussions, students will explore topics such as how people learn, evidence-based teaching practices, professional ethics, and equity and inclusion in the classroom. Students will also participate in apprentice teaching under mentorship of faculty. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4040, + "label": "BGGN 500", + "title": "Introduction to College Biology Education (4)" + }, + { + "dept": "HIUS", + "description": "Study in United States History (4)", + "edges_from": [], + "edges_to": [], + "id": 4041, + "label": "HIUS 199", + "title": "Independent" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 279.) Mathematical models of physical systems arising in science and engineering, good models and well-posedness, numerical and other approximation techniques, solution algorithms for linear and nonlinear approximation problems, scientific visualizations, scientific software design and engineering, project-oriented. Graduate students will do an extra paper, project, or presentation per instructor. ", + "edges_from": [ + 3026, + 1814 + ], + "edges_to": [], + "id": 4042, + "label": "MATH 179", + "title": "Projects in Computational and Applied Mathematics (4)" + }, + { + "dept": "NEUG", + "description": "This course teaches mathematical concepts in neuroscience to students inexperienced in computation and mathematics. Topics from linear algebra, calculus, information theory, digital signal processing, graph theory, and machine learning will be covered. An optional weekly tutorial will teach computing basics. Priority enrollment is given to PhD students. MS students may enroll with instructor approval. Calculus AB is recommended but not required.", + "edges_from": [], + "edges_to": [], + "id": 4043, + "label": "NEUG 240", + "title": "Mathematical Foundations for Computational Neuroscience (3)" + }, + { + "dept": "NANO", + "description": "Principles of product quality assurance in design and production. Professional ethics. Safety and design for the environment. Culmination of team design projects initiated in NANO 120A with a working prototype designed for a real engineering application. ", + "edges_from": [ + 4045 + ], + "edges_to": [], + "id": 4044, + "label": "NANO 120B", + "title": "NanoEngineering System Design II (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 4047 + ], + "edges_to": [ + 4044 + ], + "id": 4045, + "label": "NANO 120A", + "title": "" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 110B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110B or after successful completion of Econ 110B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 4046, + "label": "ECON 110BH", + "title": "Honors Macroeconomics B (1)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 139, + 146, + 212, + 219, + 221, + 126 + ], + "edges_to": [ + 4045 + ], + "id": 4047, + "label": "NANO 110", + "title": "" + }, + { + "dept": "HISC", + "description": "Science and law are two of the most powerful establishments of modern Western culture. Science organizes our knowledge of the world; law directs our action in it. Will explore the historical roots of the interplay between them.", + "edges_from": [], + "edges_to": [], + "id": 4048, + "label": "HISC 131", + "title": "Science, Technology, and Law (4)" + }, + { + "dept": "CHIN", + "description": "Course designed to improve conversational Chinese for students interested in medicine and health care. Course aims for stronger Chinese proficiency within a medical environment. ", + "edges_from": [ + 4050 + ], + "edges_to": [], + "id": 4049, + "label": "CHIN 169B", + "title": "Medical Chinese II (4)" + }, + { + "dept": "CHIN", + "description": "", + "edges_from": [], + "edges_to": [ + 4049 + ], + "id": 4050, + "label": "CHIN 169A", + "title": "" + }, + { + "dept": "HISC", + "description": "Major technological developments in the twentieth century, including the rise and decline of technologies, unexpected hazards and unanticipated consequences, and why some technologies fail.", + "edges_from": [], + "edges_to": [], + "id": 4051, + "label": "HISC 130", + "title": "Technology in the Twentieth Century (4)" + }, + { + "dept": "LTWR", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. May be applied toward the guided research or graduate seminar in literature requirement of the MFA program. Repeatable for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4052, + "label": "LTWR 298", + "title": "Directed Studies: Writing Course (1\u201312)" + }, + { + "dept": "NEU", + "description": "An examination of the molecular and biochemical bases of drug and transmitter action. The course is devoted to receptor mechanisms, neuropharmacology, and drug action on excitable tissues. ", + "edges_from": [], + "edges_to": [], + "id": 4053, + "label": "NEU 277", + "title": "Neuropsychopharmacology (4)" + }, + { + "dept": "PHIL", + "description": "A course designed to satisfy the requirement that graduate students should serve as teaching assistants, either in the Department of Philosophy or in one of the writing programs offered by the various colleges. Each PhD candidate must teach the equivalent of quarter time for three academic quarters. Students are permitted to sign up as TAs for a maximum of eighteen quarters.", + "edges_from": [], + "edges_to": [], + "id": 4054, + "label": "PHIL 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "MATH", + "description": "Methods for Partial Differential Equations (4)", + "edges_from": [], + "edges_to": [], + "id": 4055, + "label": "MATH 175", + "title": "Numerical" + }, + { + "dept": "BENG", + "description": "Senior Seminar I: Professional Issues in Bioengineering (2)", + "edges_from": [], + "edges_to": [], + "id": 4056, + "label": "BENG 191/291", + "title": "" + }, + { + "dept": "Linguistics/German", + "description": "(LIGM) 5A, 5B, 5C, 5D. Fundamentals of German (5)", + "edges_from": [], + "edges_to": [], + "id": 4057, + "label": "Linguistics/German", + "title": "" + }, + { + "dept": "ECE", + "description": "Characteristics of chemical, biological, seismic, and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust sensor fabrics; current experience with low power, low cost sensor deployments. Undergraduate students must take a final exam; graduate students must write a term paper or complete a final project. Cross-listed with MAE 149 and SIO 238. ", + "edges_from": [], + "edges_to": [], + "id": 4058, + "label": "ECE 156", + "title": "Sensor Networks (4)" + }, + { + "dept": "LTSP", + "description": "Latin American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 4059, + "label": "LTSP 133", + "title": "Contemporary" + }, + { + "dept": "CENG", + "description": "Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching).\u00a0", + "edges_from": [ + 677 + ], + "edges_to": [], + "id": 4060, + "label": "CENG 157", + "title": "Process Technology in the Semiconductor Industry (4)" + }, + { + "dept": "PHIL", + "description": "A general introduction to the philosophy of religion through the study of classical and/or contemporary texts. Among the issues to be discussed are the existence and nature of God, the problem of evil, the existence of miracles, the relation between reason and revelation, and the nature of religious language. ", + "edges_from": [], + "edges_to": [], + "id": 4061, + "label": "PHIL 185", + "title": "Philosophy of Religion (4)" + }, + { + "dept": "EDS/LIGN", + "description": "An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ", + "edges_from": [], + "edges_to": [], + "id": 4062, + "label": "EDS/LIGN 119", + "title": "First and Second Language Learning: From Childhood through Adolescence (4)" + }, + { + "dept": "PHIL", + "description": "The focus will be on a leading movement in continental philosophy (e.g., the critical theory of the Frankfurt school, structuralism and deconstruction, postmodernism) or some particular issue that has figured in these traditions (e.g., freedom, subjectivity, historicity, authenticity). May be repeated for credit with change in content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 4063, + "label": "PHIL 183", + "title": "Topics in Continental Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "An examination of the phenomenological tradition through the works of its major classical and/or contemporary representatives. Authors studied will vary and may include Brentano, Husserl, Heidegger, Merleau-Ponty, Levinas, Bourdieu. ", + "edges_from": [], + "edges_to": [], + "id": 4064, + "label": "PHIL 180", + "title": "Phenomenology (4)" + }, + { + "dept": "PHIL", + "description": "Classical texts and issues of existentialism. Authors studied will vary and may include Nietzsche, Kierkegaard, Sartre, and Heidegger. ", + "edges_from": [], + "edges_to": [], + "id": 4065, + "label": "PHIL 181", + "title": "Existentialism (4)" + }, + { + "dept": "TDGR", + "description": "Advanced Photoshop techniques will be explored and applied to the creation of multimedia projects. ", + "edges_from": [], + "edges_to": [], + "id": 4066, + "label": "TDGR 269B", + "title": "Photoshop II (4)" + }, + { + "dept": "TDGR", + "description": "Course will introduce the basic functions and applications of Photoshop as they may be applied to theatrical design. Emphasis on using Photoshop as an artistic tool. ", + "edges_from": [], + "edges_to": [], + "id": 4067, + "label": "TDGR 269A", + "title": "Photoshop I (4)" + }, + { + "dept": "VIS", + "description": "Examines the history, art, and architecture of Navajo, Hopi, Zuni, and other Native American communities of New Mexico and Arizona; the origins of their civilization; and how their arts survived, adapted, and changed in response to Euro-American influences. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126D and VIS 126I. ", + "edges_from": [], + "edges_to": [], + "id": 4068, + "label": "VIS 126I", + "title": "Southwest American Indian Art (4)" + }, + { + "dept": "HIGR", + "description": "Introduction to the bibliography, methodology, and ancillary disciplines for the study of medieval history together with readings and discussion on selected topics within the field. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 4069, + "label": "HIGR 258", + "title": "Historical Scholarship in Medieval History (4)" + }, + { + "dept": "VIS", + "description": "An examination of the relation of art to ritual life, mythology, and social organization in the native Polynesian and Melanesian cultures of Hawaii, New Guinea, the Solomon Islands, and Australia. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126E and VIS 126K. ", + "edges_from": [], + "edges_to": [], + "id": 4070, + "label": "VIS 126K", + "title": "Oceanic Art (4)" + }, + { + "dept": "VIS", + "description": "The dynamic, expressive arts of selected West African societies and their subsequent survival and transformation in the New World will be studied. Emphasis will be placed on Afro-American modes of art and ceremony in the United States, Haiti, Brazil, and Suriname. ", + "edges_from": [], + "edges_to": [], + "id": 4071, + "label": "VIS 126J", + "title": "African and Afro-American Art (4)" + }, + { + "dept": "VIS", + "description": "in Ancient Maya Iconography and Inscriptions (4)", + "edges_from": [], + "edges_to": [], + "id": 4072, + "label": "VIS 126D", + "title": "Problems" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Peruvian, Ecuadorian, and Bolivian literatures, such as indigenismo, urban narrative, and the works of authors such as Vallejo, Icaza, Arguedas, Vargas Llosa. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 4073, + "label": "LTSP 136", + "title": "Andean Literatures (4)" + }, + { + "dept": "VIS", + "description": "Topics of this seminar will address special problems or areas of research related to the major civilizations of ancient Mexico and Central America. Course offerings will vary to focus upon particular themes, subjects, or interpretive problems. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126B-C. ", + "edges_from": [], + "edges_to": [], + "id": 4074, + "label": "VIS 126C", + "title": "Problems in Mesoamerican Art History (4)" + }, + { + "dept": "SE", + "description": "Conceptual and preliminary structural design of aircraft and space vehicles. Minimum-weight design of primary structures based upon mission requirements and configuration constraints. Multicriteria decision making. Team projects include layout, material selection, component sizing, fabrication, and cost. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 3970, + 4076, + 2231 + ], + "edges_to": [ + 4079 + ], + "id": 4075, + "label": "SE 143A", + "title": "Aerospace Structural Design I (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 2082 + ], + "edges_to": [ + 4075 + ], + "id": 4076, + "label": "SE 3", + "title": "" + }, + { + "dept": "VIS", + "description": "Art: Modern to Postmodern, 1950\u2013Present (4)", + "edges_from": [], + "edges_to": [], + "id": 4077, + "label": "VIS 126Q", + "title": "Latin American" + }, + { + "dept": "VIS", + "description": "Art: Modern to Postmodern, 1890\u20131950 (4)", + "edges_from": [], + "edges_to": [], + "id": 4078, + "label": "VIS 126P", + "title": "Latin American" + }, + { + "dept": "SE", + "description": "Detailed structural design of aircraft and space vehicles. Composite material design considerations. Multidisciplinary design optimization. Introduction to aerospace computer-aided design and analysis tools. Team projects include the analysis, fabrication, and testing of a flight vehicle component. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 4075 + ], + "edges_to": [], + "id": 4079, + "label": "SE 143B", + "title": "Aerospace Structural Design II (4)" + }, + { + "dept": "SE", + "description": "Analysis of aerospace structures via work-energy principles and finite element analysis. Bending of metallic and laminated composite plates and shells. Static vibration, and buckling analysis of simple and built-up aircraft structures. Introduction to wing divergence and flutter, fastener analysis. ", + "edges_from": [ + 4081 + ], + "edges_to": [], + "id": 4080, + "label": "SE 260B", + "title": "Aerospace Structural Mechanics II (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 4080 + ], + "id": 4081, + "label": "SE 260A", + "title": "" + }, + { + "dept": "POLI", + "description": "(Same as USP 116) This course surveys public finance and administration. It focuses upon California local governments\u2014cities, counties, and special districts\u2014and also examines state and federal relationships. Topics explored include revenue, expenditure, indebtedness, policy responsibilities, and administrative organization and processes. ", + "edges_from": [], + "edges_to": [], + "id": 4082, + "label": "POLI 103D", + "title": "California Local Government: Finance and Administration (4)" + }, + { + "dept": "NANO", + "description": "Fundamentals and practice of methods to image, measure, and analyze materials and devices that are structured at the nanometer scale. Optical and electron microscopy; scanning probe methods; photon-, ion-, electron-probe methods, spectroscopic, magnetic, electrochemical, and thermal methods. ", + "edges_from": [ + 212 + ], + "edges_to": [ + 4084 + ], + "id": 4083, + "label": "NANO 111", + "title": "Characterization of NanoEngineering Systems (4)" + }, + { + "dept": "NANO", + "description": "Introduction to methods for fabricating materials and devices in NanoEngineering. Nano-particle, -vesicle, -tube, and -wire synthesis. Top-down methods including chemical vapor deposition, conventional and advanced lithography, doping, and etching. Bottom-up methods including self-assembly. Integration of heterogeneous structures into functioning devices. ", + "edges_from": [ + 146, + 4083, + 212 + ], + "edges_to": [], + "id": 4084, + "label": "NANO 112", + "title": "Synthesis and Fabrication of NanoEngineering Systems (4)" + }, + { + "dept": "NANO", + "description": "Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with CENG 114. Students may not receive credit for both NANO 114 and CENG 114. ", + "edges_from": [ + 219, + 139, + 221, + 126 + ], + "edges_to": [], + "id": 4085, + "label": "NANO 114", + "title": "Probability and Statistical Methods for Engineers (4)" + }, + { + "dept": "CHIN", + "description": "Graduate thesis research under the guidance of a faculty member affiliated with the Program in Chinese Studies.", + "edges_from": [], + "edges_to": [], + "id": 4086, + "label": "CHIN 296", + "title": "Directed Thesis Research (2\u201312)" + }, + { + "dept": "VIS", + "description": "This course will explore design strategies that engage today\u2019s shifting public domain structures, situating the problematic of \u201cthe public\u201d and the politics of public sphere as sites of investigation, and speculating new interfaces between individuals, collectives, and institutions in coproducing more critical and inclusive forms of public space and culture. ", + "edges_from": [ + 931 + ], + "edges_to": [], + "id": 4087, + "label": "VIS 100A", + "title": "Design of Public Culture (4)" + }, + { + "dept": "CHIN", + "description": "Independent graduate research under the guidance", + "edges_from": [], + "edges_to": [], + "id": 4088, + "label": "CHIN 299", + "title": "Independent Study in Chinese Studies (2\u201312)" + }, + { + "dept": "HIUS", + "description": "In this seminar, we will examine the shifting boundary between what constitutes a public and a private concern in twentieth-century US history. We will consider issues such as civil rights, immigration, health care, and the regulation of financial institutions. ", + "edges_from": [ + 4090, + 4091 + ], + "edges_to": [], + "id": 4089, + "label": "HIUS 185/285", + "title": "In the Public Interest (4)" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 4089 + ], + "id": 4090, + "label": "HIUS 185", + "title": "" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 4089 + ], + "id": 4091, + "label": "HIUS 285", + "title": "" + }, + { + "dept": "LTEN", + "description": "A study in depth of the works of major American writers. May be repeated up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4092, + "label": "LTEN 176", + "title": "Major American Writers (4)" + }, + { + "dept": "LTAM", + "description": "Reading of representative works in Latin American literature with a view to literary analysis (form, theme, meaning), the developmental processes of the literature, and the many contexts: historical, social, cultural. Texts may be read in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4093, + "label": "LTAM 110", + "title": "Latin American Literature in Translation (4)" + }, + { + "dept": "LTAM", + "description": "Comparative survey of Caribbean literatures from the Spanish, French, English, and Dutch Caribbean. Literary texts trace historical paradigms including the development of plantation slavery, emancipation, the quest for nationhood, migration, and transnational identities. Films and music may complement discussion.", + "edges_from": [], + "edges_to": [], + "id": 4094, + "label": "LTAM 111", + "title": "Comparative Caribbean Discourse (4)" + }, + { + "dept": "HIEU", + "description": "The social, political, and cultural transformation of late-medieval Italy from the heyday of mercantile expansion before the plague to the dissolution of the Italian state system with the French invasions of 1494. Special focus upon family, associational life and factionalism in the city, the development of the techniques of capitalist accumulation, and the spread of humanism.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4095, + "label": "HIEU 120", + "title": "The Renaissance in Italy (4)" + }, + { + "dept": "HIEU", + "description": "This course treats the history of the Greek world from the Mycenaeans to the aftermath of the Peloponnesian War. It focuses on the rise of the polis, the development of the Athenian democracy and imperialism, and the Peloponnesian War. +", + "edges_from": [], + "edges_to": [], + "id": 4096, + "label": "HIEU 122", + "title": "Ancient Greece from the Bronze Age to the Peloponnesian War (4)" + }, + { + "dept": "HIEU", + "description": "This course explores the dramatic political, social, and cultural changes in the Greek world and the Eastern Mediterranean from the fourth century BCE and the rise of Alexander the Great to the death of Cleopatra. +", + "edges_from": [], + "edges_to": [], + "id": 4097, + "label": "HIEU 123", + "title": "Ancient Greece from Classical Athens to Cleopatra (4)" + }, + { + "dept": "HIEU", + "description": "The intellectual and social history of the Reformation and Counter-Reformation from the French invasions to the Edict of Nantes. Emphasis is upon reform from below and above, the transformation of grass-roots spirituality into institutional control.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4098, + "label": "HIEU 125", + "title": "Reformation Europe (4)" + }, + { + "dept": "TDDR", + "description": "Discussion and research into the duties, responsibilities, and roles of a stage manager. Work to include studies in script analysis, communication, rehearsal procedures, performance skills, and style and conceptual approach to theatre. THGE or TDGE 1, THAC or TDAC 1, and THDE or TDDE 1 recommended.", + "edges_from": [], + "edges_to": [ + 5346 + ], + "id": 4099, + "label": "TDDR 101", + "title": "Stage Management (4)" + }, + { + "dept": "HIEU", + "description": "This course looks at the phenomenon of sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries.", + "edges_from": [], + "edges_to": [], + "id": 4100, + "label": "HIEU 127", + "title": "Sport in the Modern World (4)" + }, + { + "dept": "ECE", + "description": "Physics of solid-state electronic devices, including p-n diodes, Schottky diodes, field-effect transistors, bipolar transistors, pnpn structures. Computer simulation of devices, scaling characteristics, high frequency performance, and circuit models. ", + "edges_from": [ + 2966 + ], + "edges_to": [ + 5099 + ], + "id": 4101, + "label": "ECE 230B", + "title": "Solid State Electronics II (4)" + }, + { + "dept": "ECE", + "description": "Introduction to noise and linearity concepts. System budgeting for optimum dynamic range. Frequency plan tradeoffs. Linearity analysis techniques. Down-conversion and up-conversion techniques. Modulation and demodulation. Microwave and RF system design communications. Current research topics in the field. ", + "edges_from": [ + 4103 + ], + "edges_to": [ + 4104, + 5105 + ], + "id": 4102, + "label": "ECE 265A", + "title": "Communication Circuit Design I (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 4104, + 4102 + ], + "id": 4103, + "label": "ECE 166", + "title": "" + }, + { + "dept": "ECE", + "description": "Radio frequency integrated circuits: low-noise amplifiers, AGCs, mixers, filters, voltage-controlled oscillators. BJT and CMOS technologies for radio frequency and microwave applications. Device modeling for radio frequency applications. Design and device tradeoffs of linearity, noise, power dissipation, and dynamic range. Current research topics in the field. ", + "edges_from": [ + 4102, + 4103 + ], + "edges_to": [], + "id": 4104, + "label": "ECE 265B", + "title": "Communication Circuit Design II (4)" + }, + { + "dept": "TDDR", + "description": "This is an introductory class in the process of understanding the play script. The class will focus on analyzing the story and the underlying dramatic structure in terms of dramatic action. Objectives, actions, choices, given circumstances, and character will be examined. ", + "edges_from": [], + "edges_to": [ + 5345 + ], + "id": 4105, + "label": "TDDR 108", + "title": "Text Analysis for Actors and Directors (4)" + }, + { + "dept": "POLI", + "description": "Survey of theories, with empirical cases explaining origins of the modern state. ", + "edges_from": [], + "edges_to": [], + "id": 4106, + "label": "POLI 220C", + "title": "Origins of the State (4)" + }, + { + "dept": "POLI", + "description": "This is a second course in comparative politics designed as a preparation for the field examination. It will focus on the comparative study of political institutions. ", + "edges_from": [], + "edges_to": [], + "id": 4107, + "label": "POLI 220B", + "title": "Comparative Politics: Institutions (4)" + }, + { + "dept": "POLI", + "description": "This course will provide a general literature review in comparative politics to serve as preparation for the field examination. ", + "edges_from": [], + "edges_to": [], + "id": 4108, + "label": "POLI 220A", + "title": "Comparative Politics: State and Society (4)" + }, + { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1B. ", + "edges_from": [ + 2537, + 2538 + ], + "edges_to": [], + "id": 4109, + "label": "Linguistics/French (LIFR) 1BX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "MUS", + "description": "This seminar introduces the central theories, methods, and approaches used to study the music of contemporary cultures, in their local contexts. In addition to surveying key writings, students will document music from their local environment. ", + "edges_from": [], + "edges_to": [], + "id": 4110, + "label": "MUS 110", + "title": "Introduction to Ethnomusicology Seminar (4)" + }, + { + "dept": "MUS", + "description": "A study of particular regional music in their repertory, cultural context, and interaction with other traditions. Topics vary. May be taken for credit up to three times. ", + "edges_from": [], + "edges_to": [], + "id": 4111, + "label": "MUS 111", + "title": "Topics/World Music Traditions (4)" + }, + { + "dept": "MUS", + "description": "This course will address topics in medieval, Renaissance, and Baroque music; topics will vary from year to year. May be repeated five times for credit. ", + "edges_from": [ + 4113, + 4114 + ], + "edges_to": [], + "id": 4112, + "label": "MUS 112", + "title": "Topics in European Music Before 1750 (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 4112, + 4115 + ], + "id": 4113, + "label": "MUS 8", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 4112, + 4115 + ], + "id": 4114, + "label": "MUS 4", + "title": "" + }, + { + "dept": "MUS", + "description": "This course will focus on Western music between 1750 and the early twentieth century; topics will vary from year to year. May be repeated five times for credit. ", + "edges_from": [ + 4113, + 4114 + ], + "edges_to": [], + "id": 4115, + "label": "MUS 113", + "title": "Topics in Classic, Romantic, and Modern Music (4)" + }, + { + "dept": "MUS", + "description": "An exploration of materials and methods used in the music of our time. There will be an extra discussion group for music majors. May be repeated once for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4116, + "label": "MUS 114", + "title": "Music of the Twentieth Century (4)" + }, + { + "dept": "MUS", + "description": "A survey of the biographical, historical, sociological, and political issues affecting woman musicians, their creativity, their opportunities, and their perception by others. It compares and contrasts the work of women composers, performers, patrons, teachers, and writers on music from the Middle Ages through the present. ", + "edges_from": [], + "edges_to": [], + "id": 4117, + "label": "MUS 115", + "title": "Women in Music (4)" + }, + { + "dept": "MUS", + "description": "This course examines special topics in popular music from various sociopolitical, aesthetic, and performance perspectives. Readings include recent literature in cultural studies, musicology, and/or performance practice. Topics vary. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4118, + "label": "MUS 116", + "title": "Popular Music Studies Seminar (4)" + }, + { + "dept": "MGT", + "description": "Project-based course, requiring identification and completion of major project assessing potential business value of emerging or potential technology or science. Students work individually or in teams. Periodic class meetings include presentation of interim and final reports. Letter grades only. ", + "edges_from": [ + 4120 + ], + "edges_to": [], + "id": 4119, + "label": "MGT 414B", + "title": "Lab to Market Workshop II (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4119 + ], + "id": 4120, + "label": "MGT 414A", + "title": "" + }, + { + "dept": "SOCI", + "description": "An inquiry into the roles of culture and social structure in mediating the health and illness experiences of individuals and groups. Topics include the social construction of illness, the relationships between patients and health professionals, and the organization of medical work. ", + "edges_from": [ + 4121, + 4122 + ], + "edges_to": [ + 4121 + ], + "id": 4121, + "label": "SOCI 135", + "title": "Medical Sociology (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 4121 + ], + "id": 4122, + "label": "SOCC 135", + "title": "" + }, + { + "dept": "SOCI", + "description": "Examination and analysis of empirical research and theoretical perspectives on gender and work. Special attention to occupational segregation. Other topics include: the interplay between work and family; gender, work and poverty; gender and work in the Third World. ", + "edges_from": [ + 4123, + 4124 + ], + "edges_to": [ + 4123 + ], + "id": 4123, + "label": "SOCI 132", + "title": "Gender and Work (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 4123 + ], + "id": 4124, + "label": "SOCC 132", + "title": "" + }, + { + "dept": "COMM", + "description": "Historical and cultural aspects of media, information, imaging technology use in biomedical research, clinical care, health communication to constructions of gender and identity. We approach the subject through audiovisual texts and writings from fields including science and technology studies and cultural studies. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4125, + "label": "COMM 108G", + "title": "POB: Gender and Biomedicine (4)" + }, + { + "dept": "VIS", + "description": "Art and Civilization of the Ancient Maya (4)", + "edges_from": [], + "edges_to": [], + "id": 4126, + "label": "VIS 126BN", + "title": "The" + }, + { + "dept": "CENG", + "description": "Hands-on, team-based laboratory activities to demonstrate modern applications of chemical engineering, and the role of the chemical engineer in academia and industry. Emphasis on teamwork, safe laboratory practices, and student-directed problem solving. ", + "edges_from": [ + 4127 + ], + "edges_to": [ + 4127 + ], + "id": 4127, + "label": "CENG 4", + "title": "Experience Chemical Engineering (1)" + }, + { + "dept": "SOCI", + "description": "This course offers insight into why and how", + "edges_from": [], + "edges_to": [], + "id": 4128, + "label": "SOCI 130", + "title": "Population and Society (4)" + }, + { + "dept": "SOCI", + "description": "Chronological age and social status; analysis of social processes bearing upon the socialization of children and adolescents. The emergence of \u201cyouth cultures,\u201d generational succession as a cultural problem. ", + "edges_from": [ + 4129, + 4130 + ], + "edges_to": [ + 4129 + ], + "id": 4129, + "label": "SOCI 131", + "title": "Sociology of Youth (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 4129 + ], + "id": 4130, + "label": "SOCB 131", + "title": "" + }, + { + "dept": "BILD", + "description": "The workshops will be restricted to lower-division undergraduates. The course will introduce students to the methods of scientific research and to a variety of research topics in the biological/biomedical sciences. Examples of topics are: Introduction to Scientific Research, AIDS, Medical and Social Aspects, Is the Mind the Same as the Brain, Wildlife Conservation.", + "edges_from": [], + "edges_to": [], + "id": 4131, + "label": "BILD 95", + "title": "Undergraduate Workshops (1)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4132, + "label": "LTLA 105", + "title": "Topics in Latin Literature (4)" + }, + { + "dept": "BILD", + "description": "Weekly seminar providing Biological Sciences Scholars Program students with the opportunity to learn more about research and scholarly activities available to them and acquaints them with UC San Diego faculty members. The course will promote student\u2019s participation in research and other scholarly activities on campus. ", + "edges_from": [], + "edges_to": [], + "id": 4133, + "label": "BILD 96", + "title": "Biology: Honors Seminar (2)" + }, + { + "dept": "LTLA", + "description": "Reading and discussion of selections from representative authors of one or more periods. Review of grammar as needed. ", + "edges_from": [ + 3506 + ], + "edges_to": [], + "id": 4134, + "label": "LTLA 100", + "title": "Introduction to Latin Literature (4)" + }, + { + "dept": "LTWL", + "description": "Honors practicum for those students in the literature department Honors Program. This is a one-unit course for which students in the Honors Program will present their work as part of organized panels at an Honors Program conference (within the department). Students will receive a P/NP grade for LTWL 194A for completing the presentation. ", + "edges_from": [ + 4136, + 3619 + ], + "edges_to": [], + "id": 4135, + "label": "LTWL 194A", + "title": "Honors Practicum (1)" + }, + { + "dept": "LTWR", + "description": "", + "edges_from": [], + "edges_to": [ + 4135 + ], + "id": 4136, + "label": "LTWR 194", + "title": "" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4137, + "label": "LTLA 102", + "title": "Latin Poetry (4)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4138, + "label": "LTLA 103", + "title": "Latin Drama (4)" + }, + { + "dept": "BILD", + "description": "Independent research by special arrangement with a faculty member. (P/NP grades only.) Students must have an overall UC San Diego GPA of at least 3.0 and a minimum of thirty units complete. Students must complete a Special Studies form and a Division of Biological Sciences Research Plan. Credit may not be received for a course numbered 99 subsequent to receiving credit for a course numbered 199. ", + "edges_from": [], + "edges_to": [], + "id": 4139, + "label": "BILD 99", + "title": "Independent Research (2 or 4)" + }, + { + "dept": "BILD", + "description": "Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. Students must complete a special studies application. Paperwork for a BILD 98 must be submitted to SIS by Friday of the eighth week of the quarter preceding the quarter in which the 98 will be completed. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 4140, + "label": "BILD 98", + "title": "Directed Group Study (1 to 4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural system that controls them, emphasizing broad fundamental relationships between brain and behavior across species. Cross-listed with BIPN 189. Students may not receive credit for PSYC 189 and BIPN 189. ", + "edges_from": [ + 369, + 858, + 1013 + ], + "edges_to": [], + "id": 4141, + "label": "PSYC 189", + "title": "Brain, Behavior, and Evolution (4)" + }, + { + "dept": "POLI", + "description": "Surveys the theory and function", + "edges_from": [], + "edges_to": [], + "id": 4142, + "label": "POLI 151", + "title": "International Organizations (4)" + }, + { + "dept": "CSE", + "description": "Learning methods for applications. Content may include data preparation, regression and classification algorithms, support vector machines, random forests, class imbalance, overfitting, decision theory, recommender systems and collaborative filtering, text mining, analyzing social networks and social media, protecting privacy, A/B testing. Recommended preparation: CSE 103 or similar. ", + "edges_from": [], + "edges_to": [], + "id": 4143, + "label": "CSE 255", + "title": "Data Mining and Predictive Analytics (4)" + }, + { + "dept": "CSE", + "description": "Learning algorithms based on statistics. Possible topics include minimum-variance unbiased estimators, maximum likelihood estimation, likelihood ratio tests, resampling methods, linear logistic regression, feature selection, regularization, dimensionality reduction, manifold detection. An upper-division undergraduate course on probability and statistics such as Math 183 or 186, or any graduate course on statistics, pattern recognition, or machine learning is recommended. ", + "edges_from": [], + "edges_to": [], + "id": 4144, + "label": "CSE 254", + "title": "Statistical Learning (4)" + }, + { + "dept": "CSE", + "description": "Probability density estimation, perceptrons, multilayer neural networks, radial basis function networks, support vector machines, error functions, data preprocessing. Possible topics include unsupervised learning methods, recurrent networks, and mathematical learning theory. Recommended preparation: CSE 250B or equivalent. ", + "edges_from": [], + "edges_to": [], + "id": 4145, + "label": "CSE 253", + "title": "Neural Networks for Pattern Recognition (4)" + }, + { + "dept": "POLI", + "description": "This course introduces students to the role of the EU as a foreign policy actor. Topics include the development of the EU\u2019s trade policy, foreign aid policy, security policy, as well as case studies of EU foreign policy.", + "edges_from": [], + "edges_to": [], + "id": 4146, + "label": "POLI 153", + "title": "The European Union in World Politics (4)" + }, + { + "dept": "CSE", + "description": "A weekly meeting featuring local (and occasional external) speakers discussing their current research in Artificial Intelligence Neural Networks, and Genetic Algorithms. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4147, + "label": "CSE 259", + "title": "Seminar in Artificial Intelligence (1)" + }, + { + "dept": "CSE", + "description": "Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. Recommended preparation: No previous background in machine learning is required, but students should be comfortable with programming (all example code will be in Python), and with basic optimization and linear algebra. ", + "edges_from": [], + "edges_to": [], + "id": 4148, + "label": "CSE 258", + "title": "Recommender Systems and Web Mining (4)" + }, + { + "dept": "BIEB", + "description": "Students will investigate selected in-depth topics in evolutionary biology through reading and writing. Students will read books and articles written for a general audience as well as primary literature. Example topics include the origins of novel features, the impact of human activity and environmental changes on evolutionary processes, the rate and intensity of natural selection, and how our own evolutionary history affects human health. ", + "edges_from": [ + 1424, + 954 + ], + "edges_to": [], + "id": 4149, + "label": "BIEB 154", + "title": "Evolutionary Inquiry (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an examination of visual, auditory, and tactile illusions and examines how they arise from interactions between perceptual and cognitive systems. ", + "edges_from": [], + "edges_to": [], + "id": 4150, + "label": "PSYC 182", + "title": "Illusions and the Brain (4)" + }, + { + "dept": "BIEB", + "description": "The goal of the course is to learn about the population-level processes that govern evolution. Mathematical foundations of population genetics are laid out and applications are discussed. Topics include: evolution of drug resistance, origin of species, evolution of engineered organisms. ", + "edges_from": [ + 3624, + 1993, + 412, + 1389 + ], + "edges_to": [], + "id": 4151, + "label": "BIEB 156", + "title": "Population Genetics (4)" + }, + { + "dept": "BIEB", + "description": "Evolutionary processes are discussed in their genetic, historical, and", + "edges_from": [], + "edges_to": [ + 4325 + ], + "id": 4152, + "label": "BIEB 150", + "title": "Evolution (4)" + }, + { + "dept": "BIEB", + "description": "Treating infectious diseases is a uniquely difficult problem since pathogens often evolve, rendering today\u2019s therapies useless tomorrow. This course will provide a review of concepts and methods in evolutionary medicine, with an emphasis on microbial genomics and molecular evolution. ", + "edges_from": [ + 1424 + ], + "edges_to": [], + "id": 4153, + "label": "BIEB 152", + "title": "Evolution of Infectious Diseases (4)" + }, + { + "dept": "MGT", + "description": "Students will study alternative organizational structures, their stakeholders and corporate cultures, and their use in meeting strategic enterprise priorities facing a company. This course provides students with insights into motivational factors, communications networks, organizational cultures, and alternative leadership styles. The concept of change management and its challenges is also studied along with power and influence. Course previously listed as: Organizational Leadership. ", + "edges_from": [], + "edges_to": [], + "id": 4154, + "label": "MGT 164", + "title": "Business and Organizational Leadership (4)" + }, + { + "dept": "MGT", + "description": "Ethics and Corporate Responsibility (4)", + "edges_from": [], + "edges_to": [], + "id": 4155, + "label": "MGT 166", + "title": "Business" + }, + { + "dept": "MGT", + "description": "Social entrepreneurs create innovative solutions to solve challenging social and environmental issues affecting the world around them. In this course, students will learn how to apply entrepreneurial business and innovative skills to effectively tackle global issues impacting society such as environmental degradation, rural health care availability, educational improvements in economically disadvantaged regions of the world, famine in an era of obesity, and clean water development. ", + "edges_from": [], + "edges_to": [], + "id": 4156, + "label": "MGT 167", + "title": "Social Entrepreneurship (4)" + }, + { + "dept": "LIGN", + "description": "Surveys aspects of Spanish phonetics, phonology, morphology, and syntax. Topics include dialect differences between Latin American and Peninsular Spanish (both from a historical and contemporary viewpoint), gender classes, verbal morphology, and clause structure. ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 4157, + "label": "LIGN 143", + "title": "The Structure of Spanish (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the period of human adolescence, including the physical, cognitive, social, and emotional changes that take place during this developmental transition. ", + "edges_from": [], + "edges_to": [], + "id": 4158, + "label": "PSYC 180", + "title": "Adolescence (4)" + }, + { + "dept": "MGT", + "description": "The ability to negotiate effectively is a critical skill for business professionals. Students will develop a systematic and insightful approach to negotiation. The course provides an introduction to strategic thinking and the basic concepts, tactics, and cognitive aspects of negotiation. Interactive negotiation exercises are used to isolate and emphasize specific analytic points and essential skills. ", + "edges_from": [], + "edges_to": [], + "id": 4159, + "label": "MGT 162", + "title": "Negotiation (2)" + }, + { + "dept": "HIEA", + "description": "171/271. Society and Culture in Premodern China (4)", + "edges_from": [], + "edges_to": [], + "id": 4160, + "label": "HIEA", + "title": "" + }, + { + "dept": "GPPS", + "description": "This course will examine characteristics and distinctive aspects of contemporary Korean society and politics. Emphasis will be placed on continuity and change in social values, political culture and leadership, economic growth and its impact, and democratization and its future prospects. Renumbered from IRGN 484. Students may not receive credit for GPPS 484 and IRGN 484.", + "edges_from": [], + "edges_to": [], + "id": 4161, + "label": "GPPS 484", + "title": "Korean Politics (4)" + }, + { + "dept": "HIUS", + "description": "This course surveys the history of California from the period just before Spanish contact in 1542 through California\u2019s admission to the Union in 1850. +", + "edges_from": [], + "edges_to": [], + "id": 4162, + "label": "HIUS 114A", + "title": "California History 1542\u20131850 (4)" + }, + { + "dept": "HIUS", + "description": "This course surveys the history of California from 1850 to the present.", + "edges_from": [], + "edges_to": [], + "id": 4163, + "label": "HIUS 114B", + "title": "California History, 1850\u2013Present (4)" + }, + { + "dept": "HIEU", + "description": "Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism\u2019s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity. Program or materials fees may apply. Students may not receive credit for HIEU 135 and HIEU 135GS. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 4164, + "label": "HIEU 135GS", + "title": "Sun, Sea, Sand, and Sex: Tourism and Tourists in the Contemporary World (4)" + }, + { + "dept": "AAS", + "description": "This course will explore specialized, relevant topics in the field of African American studies.\u00a0Course topics will vary from quarter to quarter, so it may be repeated up to three times as long as the quarterly topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4165, + "label": "AAS 190", + "title": "Special Topics in African American Studies (1\u20134)" + }, + { + "dept": "AAS", + "description": "Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 4166, + "label": "AAS 198", + "title": "Directed Group Study in African American Studies (2 or 4)" + }, + { + "dept": "SE", + "description": "Development of finite element models based upon the Galerkin method. Application to static and dynamic heat conduction and stress analysis. Formulation of initial boundary value problem models, development of finite element formulas, solution methods, and error analysis and interpretation of results. ", + "edges_from": [ + 2084, + 2660, + 2085, + 2086 + ], + "edges_to": [], + "id": 4167, + "label": "SE 131", + "title": "Finite Element Analysis (4)" + }, + { + "dept": "ECON", + "description": "Analyzes exchange rates and the current account. Relates their joint determination to financial markets and the real-side macroeconomy using international macroeconomic models and presents empirical regularities. Discusses macroeconomic policies under different exchange rate regimes and implications for financial stability and current account sustainability. ", + "edges_from": [ + 800, + 1290, + 1131 + ], + "edges_to": [], + "id": 4168, + "label": "ECON 103", + "title": "International Monetary Relations (4)" + }, + { + "dept": "EDS", + "description": "Third course in the series. The secondary credential candidate teaches approximately one academic quarter for each course in this series (one public school academic year) under the guidance of a university supervisor with additional support provided by an on-site teacher. The internship offers extensive professional preparation and diversified teaching experience under actual classroom conditions for post-baccalaureate students pursuing the California Single Subject Teaching Credential. ", + "edges_from": [ + 4170 + ], + "edges_to": [], + "id": 4169, + "label": "EDS 379C", + "title": "Single Subject (Secondary) Internship Practicum III (8)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [ + 4171 + ], + "edges_to": [ + 4169 + ], + "id": 4170, + "label": "EDS 379B", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4170 + ], + "id": 4171, + "label": "EDS 379A", + "title": "" + }, + { + "dept": "CONT", + "description": "A workshop for potential discussion leaders", + "edges_from": [], + "edges_to": [], + "id": 4172, + "label": "CONT 196", + "title": "Contemporary Issues Workshop (2)" + }, + { + "dept": "NANO", + "description": "Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. Cross-listed with BENG 247A and ECE 247A.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4173, + "label": "NANO 247A", + "title": "Advanced BioPhotonics (4)" + }, + { + "dept": "NANO", + "description": "Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.) Form heterogeneous materials and components. Cross-listed with BENG 247B and ECE 247B.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4174, + "label": "NANO 247B", + "title": "BioElectronics (4)" + }, + { + "dept": "NANO", + "description": "Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices, nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles, nanostructures with biological molecules; nanostructural aspects of fuel cells; biofuel cells; potential use of DNA, other biomolecules. Cross-listed with BENG 247C and ECE 247C.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4175, + "label": "NANO 247C", + "title": "BioNanotechnology (4)" + }, + { + "dept": "MAE", + "description": "Flow instabilities, linear stability theory;", + "edges_from": [], + "edges_to": [], + "id": 4176, + "label": "MAE 210C", + "title": "Fluid Mechanics III (4)" + }, + { + "dept": "CONT", + "description": "Group studies, readings, projects, and discussions in areas of contemporary concern. Course is set up so that students may work together as a group in an area of contemporary concern whereby the group emphasis would be more beneficial and constructive than individual studies. May be taken for credit three times for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 4177, + "label": "CONT 198", + "title": "Group Studies in Contemporary Issues (2 or 4)" + }, + { + "dept": "POLI", + "description": "An introduction to seminal and current research in comparative political economy. Course explores how various political institutions and processes affect economic outcomes (e.g. growth, inequality, and redistribution) and how the economy influences politics (e.g. democratization, electoral institutions, and welfare states). ", + "edges_from": [ + 4179 + ], + "edges_to": [], + "id": 4178, + "label": "POLI 227", + "title": "Comparative Political Economy (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 4178 + ], + "id": 4179, + "label": "POLI 200C", + "title": "" + }, + { + "dept": "POLI", + "description": "A survey of theories explaining the processes of democratization and democratic stability. ", + "edges_from": [], + "edges_to": [], + "id": 4180, + "label": "POLI 224", + "title": "The Politics of Democratization (4)" + }, + { + "dept": "POLI", + "description": "Contending analysis of the types, strategies, causes, processes, and consequences of political violence such as revolutions, insurgencies, and ethnic conflict. ", + "edges_from": [], + "edges_to": [], + "id": 4181, + "label": "POLI 225", + "title": "Political Violence (4)" + }, + { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of comparative politics. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 4182, + "label": "POLI 229", + "title": "Special Topics in Comparative Politics (4)" + }, + { + "dept": "HIUS", + "description": "This seminar will trace major themes in the history of the American West. Topics will include ethnicity, the environment, urbanization, demographics, and shifting concepts surrounding the significance of the West. Graduate students will be required to submit additional work in order to receive graduate credit for the course. ", + "edges_from": [], + "edges_to": [], + "id": 4183, + "label": "HIUS 162/262", + "title": "The American West (4)" + }, + { + "dept": "COGR", + "description": "The course will look at the history of, and rationales for, the regulation of mass communications in the United States. The course will cover both broadcasting and common carrier regulation. We will analyze telecommunications regulatory structures as they were constituted historically with the 1934 Communications Act and examine their breakdown in the late 1970s. In a larger vein, the course will examine the rise and functions of regulatory agencies in modern American history. ", + "edges_from": [], + "edges_to": [], + "id": 4184, + "label": "COGR 215", + "title": "Regulation of Telecommunications (4)" + }, + { + "dept": "FPM", + "description": "Course will present theory and methods for developing scales to assess health behavior constructs (e.g., self-efficacy, social support). ", + "edges_from": [], + "edges_to": [], + "id": 4185, + "label": "FPM 278", + "title": "Scale Development for Behavioral Health Measurement (4)" + }, + { + "dept": "COGR", + "description": "The social, legal, and economic forces affecting the evolution of mass communication institutions and structure in the industrialized world. Differential impacts of the free flow of information and unequal roles and needs of developed and developing economies. ", + "edges_from": [], + "edges_to": [], + "id": 4186, + "label": "COGR 210", + "title": "Information and Society (4)" + }, + { + "dept": "COGR", + "description": "Examines theories of social and distributed memory\u2014Maurice Halwachs to Ed Hutchins, John Sutton, and nature of the archive (Foucault and Derrida), reading databases (as memory prostheses), beginning with Manovich\u2019s work. Enquiry into mediated nature of memory practices. ", + "edges_from": [], + "edges_to": [], + "id": 4187, + "label": "COGR 211", + "title": "Memory Practices (4)" + }, + { + "dept": "FPM", + "description": "To improve knowledge about health and illness within cultural contexts, including review and discussions of epidemiologic studies describing health indicators/beliefs/practices. Students interact with experts in cross-cultural health research to explore ethnicity/culture in health care delivery and utilization, and disease risk. ", + "edges_from": [], + "edges_to": [], + "id": 4188, + "label": "FPM 270", + "title": "Cultural Perceptions of Health and Disease (4)" + }, + { + "dept": "FPM", + "description": "This course focuses on critical analyses of success and failure of behavior theories as applied to interventions in multiple fields (e.g. smoking, dietary behavior, and physical activity). It covers individual and population approaches to behavior change. ", + "edges_from": [ + 4190, + 4191 + ], + "edges_to": [], + "id": 4189, + "label": "FPM 277", + "title": "Health Behavior Interventions II (4)" + }, + { + "dept": "PU", + "description": "", + "edges_from": [], + "edges_to": [ + 4189 + ], + "id": 4190, + "label": "PU 76", + "title": "" + }, + { + "dept": "PU", + "description": "", + "edges_from": [], + "edges_to": [ + 4189 + ], + "id": 4191, + "label": "PU 75", + "title": "" + }, + { + "dept": "COGR", + "description": "A central part of organizational life is talk: interaction both in formal and informal meetings and social situations. In this course we will examine the discourse of organizations, drawing on conversational analysis, discourse analysis, and the sociology of organizations. ", + "edges_from": [], + "edges_to": [], + "id": 4192, + "label": "COGR 219", + "title": "Discourse and Organizations (4)" + }, + { + "dept": "ANAR", + "description": "Study Abroad program that examines the origins and history of ancient Mediterranean civilizations from the late Neolithic period through the Classical era. During the course, students will visit some of the most important archaeological sites in the world, from the ancient megalithic temples of Malta, to Phoenician colonies of the early Iron Age, to the Carthaginian and Greek cities of Sicily, and ending with Roman Pompeii and Herculaneum, destroyed by the eruption of Vesuvius in AD 79. Students are required to apply for this Study Abroad course. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4193, + "label": "ANAR 135S", + "title": "Ancient Mediterranean Civilization (8)" + }, + { + "dept": "HIUS", + "description": "131. Social and Economic History of the Southwest II (4)", + "edges_from": [], + "edges_to": [], + "id": 4194, + "label": "HIUS 159/ETHN", + "title": "" + }, + { + "dept": "LTEU", + "description": "in Eighteenth-Century European Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 4195, + "label": "LTEU 109", + "title": "Studies" + }, + { + "dept": "LTEU", + "description": "Studies in medieval culture and thought with focus on one of the \u201cthree crowns\u201d of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.", + "edges_from": [], + "edges_to": [], + "id": 4196, + "label": "LTEU 105", + "title": "Medieval Studies (4)" + }, + { + "dept": "PSYC", + "description": "This course will cover a set of general data analysis methods that are broadly applicable in many different subdisciplines of psychology/neuroscience. Topics include model fitting, information theory, Fourier analysis, and machine learning. Recommended preparation: Matlab, C, Java, R, or any related language. ", + "edges_from": [], + "edges_to": [], + "id": 4197, + "label": "PSYC 231", + "title": "Data Analysis in Matlab (4)" + }, + { + "dept": "PSYC", + "description": "Computational theories of human cognition, particularly Bayesian approaches. Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision-making; perception; causal reasoning; categorization; language. Cross-listed with LIGN 228. Recommended preparation: Previous experience with statistics, machine learning, and/or functional programming helpful. ", + "edges_from": [], + "edges_to": [], + "id": 4198, + "label": "PSYC 232", + "title": "Probabilistic Models of Cognition (4)" + }, + { + "dept": "PSYC", + "description": "Advanced topics in learning and motivation, with special emphasis on current research. May be taken for credit eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 4199, + "label": "PSYC 233", + "title": "Learning and Motivation (4)" + }, + { + "dept": "PSYC", + "description": "This seminar will explore issues related to the evolution of human language, and critically evaluate evidence for the diversity of theories about the topic. Discussions will include the comparative communication and cognition, manual communication, factors surrounding the initial emergence of language, among others. ", + "edges_from": [], + "edges_to": [], + "id": 4200, + "label": "PSYC 234", + "title": "Evolution of Language (4)" + }, + { + "dept": "PSYC", + "description": "This course will explore the nature of human thought and its relationship to language taking a primarily developmental approach but drawing on contributions from the philosophy of mind and language, linguistics, and anthropology. Each year a different case study will be explored.\u00a0Past case studies have included concepts, theory of mind, counting, and the logic of thought. Cross-listed with LIGN 232. ", + "edges_from": [], + "edges_to": [], + "id": 4201, + "label": "PSYC 235", + "title": "Thought and Language (4)" + }, + { + "dept": "PSYC", + "description": "Theory and research on the development, progression, and resolution of substance use and abuse will be reviewed and evaluated. Normal and abnormal patterns of substance involvement will be contrasted across the life span. ", + "edges_from": [], + "edges_to": [], + "id": 4202, + "label": "PSYC 236", + "title": "Substance Abuse (4)" + }, + { + "dept": "PSYC", + "description": "The traditional view of rationality is based upon abstract, content-independent rules for behavior. People sometimes violate these rules in a laboratory setting, but the violations are often systematic and appear to reflect adaptation to the environment outside the laboratory. Such findings raise questions about what it means to be rational. Readings will be empirically oriented and cover the areas of deductive reasoning, inductive reasoning, and choice. ", + "edges_from": [], + "edges_to": [], + "id": 4203, + "label": "PSYC 237", + "title": "Human Rationality (4)" + }, + { + "dept": "LIGN", + "description": "Introduction to the formal study of meaning. What is the meaning of a word? What is the meaning of a sentence? Which role does the context play in determining linguistic meaning? ", + "edges_from": [ + 752 + ], + "edges_to": [], + "id": 4204, + "label": "LIGN 130", + "title": "Semantics (4)" + }, + { + "dept": "COGS", + "description": "This course will help students in the behavioral sciences (cognitive science, psychology, linguistics, neuroscience, and related fields) learn how to program experiments and analyze and present data. ", + "edges_from": [ + 682, + 139, + 2333 + ], + "edges_to": [], + "id": 4205, + "label": "COGS 119", + "title": "Programming for Experimental Research (4)" + }, + { + "dept": "NANO", + "description": "Introduction to mechanics of rigid and deformable bodies. Continuum and atomistic models, interatomic forces and intermolecular interactions. Nanomechanics, material defects, elasticity, plasticity, creep, and fracture. Composite materials, nanomaterials, biological materials. ", + "edges_from": [ + 4207 + ], + "edges_to": [], + "id": 4206, + "label": "NANO 150", + "title": "Mechanics of Nanomaterials (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [], + "edges_to": [ + 5131, + 5336, + 2707, + 1171, + 4206 + ], + "id": 4207, + "label": "NANO 108", + "title": "" + }, + { + "dept": "COGS", + "description": "(Cross-listed with HDP 121.)", + "edges_from": [], + "edges_to": [], + "id": 4208, + "label": "COGS 110", + "title": "The Developing Mind (4)" + }, + { + "dept": "COGS", + "description": "This course provides an overview of neurological", + "edges_from": [], + "edges_to": [], + "id": 4209, + "label": "COGS 115", + "title": "Neurological Development and Cognitive Change (4)" + }, + { + "dept": "ETHN", + "description": "This course is a forum for the presentation of recent research by guests, faculty, and students. This course may be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 4210, + "label": "ETHN 230", + "title": "Departmental Colloquium (1)" + }, + { + "dept": "TDGR", + "description": "An intensive studio examination of problems and potentials", + "edges_from": [], + "edges_to": [], + "id": 4211, + "label": "TDGR 220A", + "title": "Process II: Classical Text I (4)" + }, + { + "dept": "TDGR", + "description": "An intensive studio examination of problems and potentials", + "edges_from": [], + "edges_to": [], + "id": 4212, + "label": "TDGR 220C", + "title": "Process II: Classical Text III (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 146.) An introductory course to HIV taught through a medical student format, with emphasis on research and experiential learning, including observation of physicians providing care for patients from diverse socioeconomic and cultural backgrounds, and who may be underinsured or uninsured, homeless, and/or immigrants. Students may not receive credit for ANSC 146 and GLBH 146.", + "edges_from": [], + "edges_to": [], + "id": 4213, + "label": "GLBH 146", + "title": "A Global Health Perspective on HIV (4)" + }, + { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, and human trafficking, etc. Students must apply to the Study Abroad Program online at", + "edges_from": [], + "edges_to": [], + "id": 4214, + "label": "ANSC 105S", + "title": "Global Health and Inequality\u2014Study Abroad (4)" + }, + { + "dept": "HIEA", + "description": "Study in East Asian History (4)", + "edges_from": [], + "edges_to": [], + "id": 4215, + "label": "HIEA 199", + "title": "Independent" + }, + { + "dept": "HIEA", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. May be taken for credit up to three times. Department approval required.", + "edges_from": [], + "edges_to": [], + "id": 4216, + "label": "HIEA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in management and organizational behavior. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 439 and MGT 269 when they have the same subtitles. ", + "edges_from": [], + "edges_to": [], + "id": 4217, + "label": "MGT 439", + "title": "Topics in Organizational Behavior (2 or 4)" + }, + { + "dept": "MGT", + "description": "Provides a business overview of the life science industry, its major market segments, financial structure, and financing strategies. Develops an understanding of major industry issues and strategies, including business development, financing, partnering and alliances, emerging trends, ethical and policy issues. Students may not earn credit for both MGT 430 and MGT 250. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4218, + "label": "MGT 430", + "title": "Biotechnology Industry, Structure, and Strategy (4)" + }, + { + "dept": "ANTH", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4219, + "label": "ANTH 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ANSC", + "description": "Gesture, Communication, and the Body (4)", + "edges_from": [], + "edges_to": [], + "id": 4220, + "label": "ANSC 119GS", + "title": "" + }, + { + "dept": "CHEM", + "description": "Organic chemistry laboratory for chemistry majors; non-majors with strong background in CHEM 40A or 140A may also enroll, though preference will be given to majors. Similar to CHEM 43A, but emphasizes instrumental methods of product identification, separation, and analysis. A materials fee is required. Students must pass a safety exam. CHEM 43AM is renumbered from CHEM 143AH. Students may only receive credit for one of the following: CHEM 43AM, 143AM, 43A, or 143A. ", + "edges_from": [ + 960, + 2859, + 1196, + 1198, + 3314, + 953 + ], + "edges_to": [ + 4545, + 5134, + 5135 + ], + "id": 4221, + "label": "CHEM 43AM", + "title": "Organic Chemistry Laboratory for Majors (4)" + }, + { + "dept": "CHEM", + "description": "This laboratory will introduce students to the tools of molecular biology", + "edges_from": [], + "edges_to": [], + "id": 4222, + "label": "CHEM 109", + "title": "Recombinant DNA Laboratory (6)" + }, + { + "dept": "HIGR", + "description": "One or two topics in colonial history will be analyzed in depth; reading knowledge of Spanish is expected.", + "edges_from": [], + "edges_to": [], + "id": 4223, + "label": "HIGR 249", + "title": "Topics in Colonial Latin America (4)" + }, + { + "dept": "EDS", + "description": "in Education Research and Design (2)", + "edges_from": [], + "edges_to": [], + "id": 4224, + "label": "EDS 233B", + "title": "Topics" + }, + { + "dept": "EDS", + "description": "Current topics and issues in education and educational research methodology, including action research, participant observation, ethnography, and survey research. This is the first in a two-course series. ", + "edges_from": [], + "edges_to": [], + "id": 4225, + "label": "EDS 233A", + "title": "Topics in Education Research and Design (2)" + }, + { + "dept": "HIGR", + "description": "Approaches to Science Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 4226, + "label": "HIGR 241", + "title": "Advanced" + }, + { + "dept": "PHYS", + "description": "Modern applications of the renormalization", + "edges_from": [], + "edges_to": [], + "id": 4227, + "label": "PHYS 215C", + "title": "Particles and Fields III (4)" + }, + { + "dept": "PHYS", + "description": "Gauge theory quantization by means of path integrals, SU(3) symmetry and the quark model, spontaneous symmetry breakdown, introduction to QCD and the Glashow-Weinberg-Salam model of weak interactions, basic issues of renormalization. ", + "edges_from": [ + 2972 + ], + "edges_to": [], + "id": 4228, + "label": "PHYS 215B", + "title": "Particles and Fields II (4)" + }, + { + "dept": "HIGR", + "description": "Study and discussion of classic and recent scholarship on sound production and cultures of listening. Emphasizes historical literature but also includes works in literary studies, art history, music, and other fields. ", + "edges_from": [], + "edges_to": [], + "id": 4229, + "label": "HIGR 244", + "title": "Introduction to Sound Studies (4)" + }, + { + "dept": "HIGR", + "description": "This seminar traces the history of revolution and repression in modern Latin America and the Caribbean. We will spend one to two weeks on each of the following revolutions: Haiti (1791), Mexico (1910), Cuba (1959), and Central America (1970s\u201380s).", + "edges_from": [], + "edges_to": [], + "id": 4230, + "label": "HIGR 245", + "title": "Revolution, Empire, and State Violence in Latin America and the Caribbean (4)" + }, + { + "dept": "HILD", + "description": "Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration.", + "edges_from": [], + "edges_to": [], + "id": 4231, + "label": "HILD 7A-B-C", + "title": "Race and Ethnicity in the United States (4-4-4)" + }, + { + "dept": "MUS", + "description": "Meetings on group basis with faculty composer in sessions devoted to the study of composition. ", + "edges_from": [], + "edges_to": [], + "id": 4232, + "label": "MUS 203D", + "title": "Advanced Projects in Composition (1\u20134)" + }, + { + "dept": "ENG", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4233, + "label": "ENG 100L", + "title": "Design for Development Lab (2)" + }, + { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "edges_from": [], + "edges_to": [], + "id": 4234, + "label": "MUS 203A", + "title": "Advanced Projects in Composition (6)" + }, + { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "edges_from": [], + "edges_to": [], + "id": 4235, + "label": "MUS 203B", + "title": "Advanced Projects in Composition (6)" + }, + { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "edges_from": [], + "edges_to": [], + "id": 4236, + "label": "MUS 203C", + "title": "Advanced Projects in Composition (6)" + }, + { + "dept": "AWP", + "description": "Under the supervision of an instructor, students will serve as peer mentors in analytical writing courses. Students will gain a fundamental understanding of the writing process and will develop the necessary skills to serve as productive writing mentors for their peers. ", + "edges_from": [], + "edges_to": [], + "id": 4237, + "label": "AWP 195", + "title": "Academic Mentoring in Writing (2)" + }, + { + "dept": "ENG", + "description": "An introduction to the practice of human-centered design and team engineering within a humanitarian context. Includes a group project designing a solution for a local or global nonprofit organization. Topics include: design process, contextual listening, project management, needs and capacity assessment, stakeholder analysis, ethical issues, models of leadership, gender and cultural issues, sustainable community development, and social entrepreneurship. ENG 100D is the gateway course for the Global TIES program, but it is open to all undergraduate students. Please go to", + "edges_from": [], + "edges_to": [], + "id": 4238, + "label": "ENG 100D", + "title": "Design for Development (4)" + }, + { + "dept": "ENG", + "description": "Principles and procedures of technical writing and professional communication. The course is ideal for students pursuing careers in science and/or engineering and covers organizing information, writing for technical forms such as proposals and abstracts, and designing visual aids.", + "edges_from": [], + "edges_to": [], + "id": 4239, + "label": "ENG 100C", + "title": "Technical Writing/Communication for Engineers and Scientist (2)" + }, + { + "dept": "ENG", + "description": "Engineering leadership attitudes,", + "edges_from": [], + "edges_to": [], + "id": 4240, + "label": "ENG 100B", + "title": "Engineering Leadership (2)" + }, + { + "dept": "ENG", + "description": "Introduction to theory and practice of team", + "edges_from": [], + "edges_to": [], + "id": 4241, + "label": "ENG 100A", + "title": "Team Engineering (2)" + }, + { + "dept": "Classics", + "description": "Concurrent enrollment with advanced undergraduate courses (either Greek 105 or Latin 105) with enhanced readings and separate examinations. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4242, + "label": "Classics 205", + "title": "Concurrent Readings (2)" + }, + { + "dept": "MAE", + "description": "Energy conversion and coupled transport processes; electron and phonons, equilibrium and non-equilibrium energy transfer in nanostructures. Ballistic-diffusive treatment, thermal radiation issues in nanomaterials, near-field energy transfer, molecular dynamics, and experimental methods. ", + "edges_from": [ + 2032, + 169, + 4244, + 988, + 513 + ], + "edges_to": [], + "id": 4243, + "label": "MAE 225B", + "title": "Nanoscale and Microscale Heat Transfer for Energy Conversion Applications II (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4243 + ], + "id": 4244, + "label": "MAE 225A", + "title": "" + }, + { + "dept": "MATH", + "description": "Existence and uniqueness of solutions to differential equations. Local and global theorems of continuity and differentiability. ", + "edges_from": [ + 4246 + ], + "edges_to": [], + "id": 4245, + "label": "MATH 130B", + "title": "Ordinary Differential Equations II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 139, + 140, + 141, + 135 + ], + "edges_to": [ + 4245 + ], + "id": 4246, + "label": "MATH 130A", + "title": "" + }, + { + "dept": "VIS", + "description": "A studio course focusing on the problems involved in transferring ideas and information into three-dimensions. Course will explore materials and construction as dictated by the intended object. Specific problems to be investigated will be determined by the individual professor. ", + "edges_from": [ + 730 + ], + "edges_to": [ + 4248 + ], + "id": 4247, + "label": "VIS 107A", + "title": "Sculpture: Making the Object (4)" + }, + { + "dept": "VIS", + "description": "A studio course in which the student will investigate a wider variety of technical and conceptual issues as well as materials involved in contemporary art practice related to sculpture. ", + "edges_from": [ + 4247 + ], + "edges_to": [ + 4249 + ], + "id": 4248, + "label": "VIS 107B", + "title": "Sculpture: Practices and Genre (4)" + }, + { + "dept": "VIS", + "description": "A studio course in sculpture emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. Students may not receive credit for both VIS 107C and VIS 107CN. ", + "edges_from": [ + 4248 + ], + "edges_to": [], + "id": 4249, + "label": "VIS 107C", + "title": "Sculpture: Portfolio Projects (4)" + }, + { + "dept": "Jewish", + "description": "Acquisition of basic vocabulary, fundamentals of Hebrew grammar, conversation, and reading.", + "edges_from": [], + "edges_to": [], + "id": 4250, + "label": "Jewish Studies 1", + "title": "Beginning Hebrew (5)" + }, + { + "dept": "Jewish", + "description": "Vocabulary, grammar, conversation, introduction to literary and nonliterary texts.", + "edges_from": [], + "edges_to": [], + "id": 4251, + "label": "Jewish Studies 3", + "title": "Intermediate Hebrew, Continued (5)" + }, + { + "dept": "Jewish", + "description": "Continued study of vocabulary and grammar, emphasis on fluency in conversation, and reading.", + "edges_from": [], + "edges_to": [], + "id": 4252, + "label": "Jewish Studies 2", + "title": "Intermediate Hebrew (5)" + }, + { + "dept": "USP", + "description": "This course introduces students to the challenges of developing and financing real property. Students work in teams to prepare a proposal for a complete site-specific project that incorporates real estate finance, development, and design. ", + "edges_from": [], + "edges_to": [ + 4255 + ], + "id": 4253, + "label": "USP 185A", + "title": "Real Estate Finance and Development Studio I (4)" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 4254, + "label": "EDS 374", + "title": "Secondary" + }, + { + "dept": "USP", + "description": "An intensive studio-based experience that culminates in a completed group project that analyzes, evaluates, and presents a site-specific real estate finance and development proposal. The final project includes market analysis, pro forma financial analysis, site analysis, and site design. ", + "edges_from": [ + 4253 + ], + "edges_to": [], + "id": 4255, + "label": "USP 185B", + "title": "Real Estate Finance and Development Studio II (4)" + }, + { + "dept": "CSE", + "description": "Basic concepts of databases, including data modeling, relational databases, query languages, optimization, dependencies, schema design, and concurrency control. Exposure to one or several commercial database systems. Advanced topics such as deductive and object-oriented databases, time allowing. ", + "edges_from": [ + 17 + ], + "edges_to": [ + 1575 + ], + "id": 4256, + "label": "CSE 132A", + "title": "Database System Principles (4)" + }, + { + "dept": "PHIL", + "description": "Directed individual study by special arrangement with and under the supervision of a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4257, + "label": "PHIL 199", + "title": "Directed Individual Study (4)" + }, + { + "dept": "EDS", + "description": "Students will examine the principles of second language acquisition and approaches to bilingual education. They will develop a repertoire of strategies for teaching in elementary or secondary content areas. ", + "edges_from": [], + "edges_to": [], + "id": 4258, + "label": "EDS 351", + "title": "Teaching the English Language Learner (4)" + }, + { + "dept": "ECE", + "description": "VLSI digital systems. Circuit characterization, performance estimation, and optimization. Circuits for alternative logic styles and clocking schemes. Subsystems include ALUs, memory, processor arrays, and PLAs. Techniques for gate arrays, standard cell, and custom design. Design and simulation using CAD tools. ", + "edges_from": [ + 3143 + ], + "edges_to": [], + "id": 4259, + "label": "ECE 165", + "title": "Digital Integrated Circuit Design (4)" + }, + { + "dept": "ECE", + "description": "Design of linear and nonlinear analog integrated circuits including operational amplifiers, voltage regulators, drivers, power stages, oscillators, and multipliers. Use of feedback and evaluation of noise performance. Parasitic effects of integrated circuit technology. Laboratory simulation and testing of circuits. ", + "edges_from": [ + 4261, + 3143 + ], + "edges_to": [], + "id": 4260, + "label": "ECE 164", + "title": "Analog Integrated Circuit Design (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 73, + 3143 + ], + "edges_to": [ + 4260 + ], + "id": 4261, + "label": "ECE 163", + "title": "" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems I (4)", + "edges_from": [], + "edges_to": [], + "id": 4262, + "label": "ECE 264A", + "title": "CMOS Analog" + }, + { + "dept": "PHIL", + "description": "Under the supervision of the instructor, student will lead one discussion section of a lower-division philosophy class. The student must attend the lecture for the class and meet regularly with the instructor. Applications are available in the Department of Philosophy. ", + "edges_from": [], + "edges_to": [], + "id": 4263, + "label": "PHIL 195", + "title": "Introduction to Teaching Philosophy (4)" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems IV (4)", + "edges_from": [], + "edges_to": [], + "id": 4264, + "label": "ECE 264D", + "title": "CMOS Analog" + }, + { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1C. ", + "edges_from": [ + 2540, + 2541 + ], + "edges_to": [], + "id": 4265, + "label": "Linguistics/French (LIFR) 1CX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "MGTF", + "description": "The Capstone project is one of the primary measures of student learning. Evaluation is based on students\u2019 ability to apply course material to the Capstone project. Satisfactory completion of the project is required for award of the degree. Letter grades only. ", + "edges_from": [ + 3224, + 4267, + 4268, + 4269 + ], + "edges_to": [], + "id": 4266, + "label": "MGTF 490", + "title": "Capstone: Applied Finance Project (4)" + }, + { + "dept": "MGTF", + "description": "", + "edges_from": [], + "edges_to": [ + 4266 + ], + "id": 4267, + "label": "MGTF 404", + "title": "" + }, + { + "dept": "MGTF", + "description": "", + "edges_from": [], + "edges_to": [ + 5536, + 4266, + 5541, + 5535 + ], + "id": 4268, + "label": "MGTF 402", + "title": "" + }, + { + "dept": "MGTF", + "description": "", + "edges_from": [], + "edges_to": [ + 4266 + ], + "id": 4269, + "label": "MGTF 401", + "title": "" + }, + { + "dept": "MGTF", + "description": "Introduces advanced topics of special interest in finance. Instructional methods can include face-to-face lecture, case presentations, assigned teaching, and/or online group discussions. May be taken for credit up to four times. Students may not earn credit when course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 4270, + "label": "MGTF 495", + "title": "Special Topics in Finance (2\u20134)" + }, + { + "dept": "POLI", + "description": "(Same as USP 101) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ", + "edges_from": [ + 3041, + 1260 + ], + "edges_to": [ + 4272 + ], + "id": 4271, + "label": "POLI 160AA", + "title": "Introduction to Policy Analysis (4)" + }, + { + "dept": "POLI", + "description": "In this course, students will use their knowledge of the political and economic foundations of public policy making to conduct research in a wide variety of public policy problems. ", + "edges_from": [ + 4271 + ], + "edges_to": [], + "id": 4272, + "label": "POLI 160AB", + "title": "Introduction to Policy Analysis (4)" + }, + { + "dept": "HITO", + "description": "Taught in conjunction with the San Diego Maritime Museum, this course investigates life at sea from the age of discovery to the advent of the steamship. We will investigate discovery, technology, piracy, fisheries, commerce, naval conflict, sea-board life, and seaport activity. ", + "edges_from": [], + "edges_to": [], + "id": 4273, + "label": "HITO 178/278", + "title": "A History of Seafaring in the Age of Sail (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4274, + "label": "PSYC 267A", + "title": "Advanced Topics in Behavior Medicine I (1)" + }, + { + "dept": "MUS", + "description": "Projects and Independent Study (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 4275, + "label": "MUS 299", + "title": "Advanced Research" + }, + { + "dept": "MUS", + "description": "Individual research. (S/U grades permitted.) May be repeated for credit. Enrollment by consent of instructor only.", + "edges_from": [], + "edges_to": [], + "id": 4276, + "label": "MUS 298", + "title": "Directed Research (1\u20134)" + }, + { + "dept": "NANO", + "description": "Overview of electrical devices and CMOS integrated circuits emphasizing fabrication processes, and scaling behavior. Design, and simulation of submicron CMOS circuits including amplifiers active filters digital logic, and memory circuits. Limitations of current technologies and possible impact of nanoelectronic technologies.\u00a0", + "edges_from": [ + 133, + 31, + 213, + 126, + 135 + ], + "edges_to": [], + "id": 4277, + "label": "NANO 107", + "title": "Electronic Devices and Circuits for Nanoengineers (4)" + }, + { + "dept": "MUS", + "description": "This group research seminar involves the investigation and exploration of new and experimental performance concerns. Areas could include: improvisation, graphic notation, performance electronics, and working with combined media (such as dance, poetry, and theatre). ", + "edges_from": [], + "edges_to": [], + "id": 4278, + "label": "MUS 296", + "title": "Directed Group Research in Performance (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4279, + "label": "PSYC 267B", + "title": "Advanced Topics in Behavior Medicine II (1)" + }, + { + "dept": "HIEU", + "description": "Topics will vary and may include political, socio-economic, and cultural developments in the era from 1650 to 1850. Some years the emphasis will be on the theory and practice of revolutions and their impact on Europe and the world. Graduate students will be required to submit an additional piece of work.", + "edges_from": [], + "edges_to": [], + "id": 4280, + "label": "HIEU 167/267", + "title": "Special Topics in the Social History of Early Modern Europe (4)" + }, + { + "dept": "LTAM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4281, + "label": "LTAM 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "PHYS", + "description": "This course covers topics not traditionally taught as part of a normal physics curriculum, but nonetheless useful extensions to the classic pedagogy. Example topics may include estimation, nuclear physics, fluid mechanics, and scaling relationships.", + "edges_from": [], + "edges_to": [], + "id": 4282, + "label": "PHYS 281", + "title": "Extensions in Physics (1\u20133)" + }, + { + "dept": "LTAM", + "description": "Production of the Latino/a Diasporas (4)", + "edges_from": [], + "edges_to": [], + "id": 4283, + "label": "LTAM 109", + "title": "Cultural" + }, + { + "dept": "LTAM", + "description": "The course will center on Chicano/a-Latino/a writers and movements of literary, intellectual, cultural, or political significance. Texts may be read in the original language or in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4284, + "label": "LTAM 108", + "title": "Chicano/a and Latino/a Cultures: Intellectual and Political Traditions (4)" + }, + { + "dept": "LTAM", + "description": "Latino/a and US Ethnic Cultures (4)", + "edges_from": [], + "edges_to": [], + "id": 4285, + "label": "LTAM 107", + "title": "Comparative" + }, + { + "dept": "LTAM", + "description": "Chicana and Mexican Women Writings (4)", + "edges_from": [], + "edges_to": [], + "id": 4286, + "label": "LTAM 106", + "title": "Modern" + }, + { + "dept": "LTAM", + "description": "and Sexuality in Latino/a Cultural Production (4)", + "edges_from": [], + "edges_to": [], + "id": 4287, + "label": "LTAM 105", + "title": "Gender" + }, + { + "dept": "MAE", + "description": "Parameterization of all stabilizing output feedback controllers, covariance controllers, H-infinity controllers, and L-2 to L-infinity controllers. Continuous and discrete-time treatment. Alternating projection algorithms for solving output feedback problems. Model reduction. All control design problems reduced to one critical theorem in linear algebra. ", + "edges_from": [ + 2748 + ], + "edges_to": [], + "id": 4288, + "label": "MAE 280B", + "title": "Linear Control Design (4)" + }, + { + "dept": "LTIT", + "description": "Reading and discussion of selections from representative authors. Review of grammar as needed. May be repeated for credit three times when topics vary. ", + "edges_from": [ + 3014 + ], + "edges_to": [ + 4631 + ], + "id": 4289, + "label": "LTIT 100", + "title": "Introduction to Literatures in Italian (4)" + }, + { + "dept": "LTAM", + "description": "An introductory historical and cultural overview of the various Latino/a populations in the United States with a study of representative cultural texts.", + "edges_from": [], + "edges_to": [], + "id": 4290, + "label": "LTAM 100", + "title": "Latino/a Cultures in the United States (4)" + }, + { + "dept": "HIEU", + "description": "How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D. +", + "edges_from": [], + "edges_to": [], + "id": 4291, + "label": "HIEU 132", + "title": "Germany from Luther to Bismarck (4)" + }, + { + "dept": "HIEU", + "description": "This course examines the Revolution in France and its impact in Europe and the Caribbean. Special emphasis will be given to the origins of the Revolution, the development of political and popular radicalism and symbolism from 1789 to 1794, the role of political participants (e.g., women, sans-culottes, Robespierre), and the legacy of revolutionary wars and the Napoleonic system on Europe.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4292, + "label": "HIEU 131", + "title": "The French Revolution: 1789\u20131814 (4)" + }, + { + "dept": "HIEU", + "description": "A lecture-discussion course focusing on Europe", + "edges_from": [], + "edges_to": [], + "id": 4293, + "label": "HIEU 130", + "title": "Europe in the Eighteenth Century (4)" + }, + { + "dept": "HIEU", + "description": "This course surveys the age of colonialism in the nineteenth and twentieth century. The course will focus on the debates on colonialism in the metropolis as well as on the conflicts inside the colonies. Considerable emphasis will be placed on colonialism in Africa.", + "edges_from": [], + "edges_to": [], + "id": 4294, + "label": "HIEU 137", + "title": "History of Colonialism: From New Imperialism to Decolonization (4)" + }, + { + "dept": "HIEU", + "description": "Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism\u2019s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity.", + "edges_from": [], + "edges_to": [], + "id": 4295, + "label": "HIEU 135", + "title": "Sun, Sea, Sand, and Sex:\u00a0Tourism and Tourists in the Contemporary World (4)" + }, + { + "dept": "HIEU", + "description": "Formation of the Russian Empire, 800\u20131855 (4)", + "edges_from": [], + "edges_to": [], + "id": 4296, + "label": "HIEU 134", + "title": "The" + }, + { + "dept": "HIEU", + "description": "This course places gender and sexuality at the center of European history from the Renaissance to the French Revolution. We examine the distinct roles that men and women played in the period\u2019s major events. We track how practices and understandings of gender and sexuality shifted during the four centuries between 1500 and 1800. +", + "edges_from": [], + "edges_to": [], + "id": 4297, + "label": "HIEU 139", + "title": "Sex and Gender from the Renaissance to the French Revolution (4)" + }, + { + "dept": "MUS", + "description": "The theory and practice of instrumental and/or choral conducting as they have to do with basic baton techniques, score reading, interpretation, orchestration, program building, and functional analysis. Members of the class will be expected to demonstrate their knowledge in the conducting of a small ensemble performing literature from the eighteenth, nineteenth, and twentieth centuries. ", + "edges_from": [ + 3142, + 1559, + 1494, + 3927, + 3802, + 3803 + ], + "edges_to": [], + "id": 4298, + "label": "MUS 128", + "title": "Principles and Practice of Conducting (4)" + }, + { + "dept": "Jewish", + "description": "Further reading and analysis of Hebrew literature from a range of periods. Advanced grammar and vocabulary. Course taught in Hebrew and in English.", + "edges_from": [], + "edges_to": [], + "id": 4299, + "label": "Jewish Studies 102", + "title": "Intermediate Hebrew Texts (4)" + }, + { + "dept": "Jewish", + "description": "Synthesis of fluency, reading, and grammatical skills. Reading of texts from a range of periods.", + "edges_from": [], + "edges_to": [], + "id": 4300, + "label": "Jewish Studies 103", + "title": "Advanced Hebrew Texts (4)" + }, + { + "dept": "Jewish", + "description": "Reading and analysis of texts from Biblical through modern authors, study of advanced vocabulary and grammar. Course taught in Hebrew and in English.", + "edges_from": [], + "edges_to": [], + "id": 4301, + "label": "Jewish Studies 101", + "title": "Introduction to Hebrew Texts (4)" + }, + { + "dept": "MUS", + "description": "Scales, chords, harmonic progressions, transposition, and simple pieces. ", + "edges_from": [ + 3803 + ], + "edges_to": [], + "id": 4302, + "label": "MUS 2AK-BK-CK", + "title": "Basic Keyboard (2-2-2)" + }, + { + "dept": "VIS", + "description": "This research seminar, centered on a series of critical, thematic, theoretical, and/or historical issues that cut across subdisciplinary specializations, provides outstanding advanced students with the opportunity to undertake graduate-level research. The first part of a two-part sequence completed by Art History Honors Directed Group Study (VIS 129H). ", + "edges_from": [], + "edges_to": [], + "id": 4303, + "label": "VIS 129G", + "title": "Art History Honors Seminar (4)" + }, + { + "dept": "VIS", + "description": "The second part of the honors program sequence, this course provides a forum for students engaged in research and writing to develop their ideas with the help of a faculty adviser and in conjunction with similarly engaged students. ", + "edges_from": [], + "edges_to": [], + "id": 4304, + "label": "VIS 129H", + "title": "Art History Honors Directed Group Study (4)" + }, + { + "dept": "POLI", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4305, + "label": "POLI 504", + "title": "Seminar on Teaching Development\u2014Political Theory" + }, + { + "dept": "POLI", + "description": "A seminar designed for graduate students serving as teaching assistants in international relations, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations under the supervision of the instructor in charge of the course. ", + "edges_from": [], + "edges_to": [], + "id": 4306, + "label": "POLI 503", + "title": "Seminar on Teaching Development\u2014International Relations (1\u20134)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 400A-B-C. Students may not get credit for any IRLA 400 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 4307, + "label": "GPLA 400A-B-C", + "title": "Low Intermediate Chinese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "POLI", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4308, + "label": "POLI 501", + "title": "Seminar on Teaching Development\u2014American Politics" + }, + { + "dept": "POLI", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation, and grading of examinations and other written exercises, and student relations. Twenty-four units of teaching apprenticeship meet the department teaching requirement for the PhD.", + "edges_from": [], + "edges_to": [], + "id": 4309, + "label": "POLI 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "COGS", + "description": "Evidence for genetic mediation of behavioral and neural differences, mechanisms that may mediate these effects, and the roles of the environment and experience are discussed. ", + "edges_from": [ + 3080, + 4311 + ], + "edges_to": [], + "id": 4310, + "label": "COGS 178", + "title": "Genes, Brains, and Behavior (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 4833, + 1571, + 4310, + 5903 + ], + "id": 4311, + "label": "COGS 107B", + "title": "" + }, + { + "dept": "BILD", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4312, + "label": "BILD 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MATH", + "description": "Supervised teaching as part of the mathematics instructional program on campus (or, in special cases such as the CTF program, off campus). ", + "edges_from": [], + "edges_to": [], + "id": 4313, + "label": "MATH 500", + "title": "Apprentice Teaching (1 to 4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4314, + "label": "LTEN 149", + "title": "Topics: English-Language Literature (4)" + }, + { + "dept": "COMM", + "description": "Examines the complex relationship between mass media and the consumers and viewers they target. This course covers theories about audiences, reading practices of audiences, the economics of audiences, and the role of audiences in the digital era. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 4315, + "label": "COMM 134", + "title": "Media Audiences (4)" + }, + { + "dept": "BIOM", + "description": "Informal presentations on topics of current interest in glycobiology as represented in the current scientific literature. ", + "edges_from": [], + "edges_to": [], + "id": 4316, + "label": "BIOM 246", + "title": "Current Literature in Glycobiology (1)" + }, + { + "dept": "CSE", + "description": "Aided Circuit Simulation and Verification (4)", + "edges_from": [], + "edges_to": [], + "id": 4317, + "label": "CSE 245", + "title": "Computer" + }, + { + "dept": "CSE", + "description": "Algorithmic techniques and optimization frameworks for large-scale, difficult optimizations. Primal-dual multicommodity flow approximations, approximations for geometric and graph Steiner formulations, continuous placement optimization, heuristics for Boolean satisfiability, multilevel methods, semidefinite programming, and application to other formulations (e.g., scheduling). ", + "edges_from": [ + 4320, + 4319 + ], + "edges_to": [], + "id": 4318, + "label": "CSE 248", + "title": "Algorithmic and Optimization Foundations for VLSI CAD (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 4318 + ], + "id": 4319, + "label": "CSE 242A", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 4318 + ], + "id": 4320, + "label": "CSE 241A", + "title": "" + }, + { + "dept": "TDDE", + "description": "One of three classes in theatre process. The course aims to develop basic skills in lighting design through practical projects, lab work and lecture. These emphasize collaborating, manipulating light and color, and developing craft skills. ", + "edges_from": [ + 128, + 4322 + ], + "edges_to": [], + "id": 4321, + "label": "TDDE 121", + "title": "Theatre Process\u2014Lighting Design (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 4321, + 4351 + ], + "id": 4322, + "label": "TDPR 3", + "title": "" + }, + { + "dept": "BENG", + "description": "An overview of heart, vascular development and associated diseases from a molecular biological perspective. Current approaches for generating mouse models of cardiovascular disease and recently developed technologies for physiological assessment in small animal models will be presented. (W)", + "edges_from": [], + "edges_to": [], + "id": 4323, + "label": "BENG 238/MED 238", + "title": "Molecular Biology of the Cardiovascular System (4)" + }, + { + "dept": "BIEB", + "description": "Modern sequencing technology has revolutionized our ability to detect how genomes vary in space among individuals, populations, and communities, and over time. This course will review methods and concepts in ecological and evolutionary genomics that help us understand these differences, including their relevance to health (human microbiome, cancer evolution), evolutionary history (ancestor reconstruction, human evolution), and the environment (effect of climate change). ", + "edges_from": [ + 1424, + 954 + ], + "edges_to": [], + "id": 4324, + "label": "BIEB 146", + "title": "Genome Diversity and Dynamics (4)" + }, + { + "dept": "BIEB", + "description": "An introduction to computer modeling in evolution and ecology. Students will use the computer language \u201cR\u201d to write code to analyze ecological and evolutionary processes. Topics include natural selection, genetic drift, community ecology, game theory, and chaos. Students will use their own laptop computers. ", + "edges_from": [ + 3624, + 4152 + ], + "edges_to": [], + "id": 4325, + "label": "BIEB 143", + "title": "Computer Modeling in Evolution and Ecology (4)" + }, + { + "dept": "BIEB", + "description": "An introduction to the patterns of geographic distribution and natural history of plants and animals living in terrestrial and marine ecosystems. We will explore: ecological and evolutionary processes responsible for generating and maintaining biological diversity; and the nature of extinction both in past and present ecosystem. ", + "edges_from": [ + 1424 + ], + "edges_to": [], + "id": 4326, + "label": "BIEB 140", + "title": "Biodiversity (4)" + }, + { + "dept": "MGT", + "description": "This course is designed to help a business manager use data to make good decisions in complex decision-making situations. Students will gain foundation knowledge of several analytical and econometric methods including decision analysis, probability theory, statistical inference, regression analysis, and hypothesis testing. Students will also learn how to use available computing technology to arrive at optimal solutions. ", + "edges_from": [ + 129, + 130, + 862, + 1992, + 3625, + 1994, + 1995, + 140, + 1389, + 141, + 3624, + 2333, + 3637, + 3638, + 1993, + 1882, + 477, + 1996 + ], + "edges_to": [], + "id": 4327, + "label": "MGT 153", + "title": "Business Analytics (4)" + }, + { + "dept": "COGS", + "description": "A review of the patterns of impaired and intact cognitive abilities present in brain-damaged patients in terms of damage to one or more components of a model of normal cognitive functioning. ", + "edges_from": [ + 3080 + ], + "edges_to": [], + "id": 4328, + "label": "COGS 172", + "title": "Brain Disorders and Cognition (4)" + }, + { + "dept": "LTFR", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4329, + "label": "LTFR 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTFR", + "description": "Tutorial; individual guided reading in areas of French literature not normally covered in courses. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4330, + "label": "LTFR 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4331, + "label": "LTEN 140", + "title": "The British Novel: 1790\u20131830 (4)" + }, + { + "dept": "ECON", + "description": "The Freshman Seminar Program is designed to", + "edges_from": [], + "edges_to": [], + "id": 4332, + "label": "ECON 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "VIS", + "description": "Critical and historical analysis of the institutions, social networks, and communicative media through which art is presented to its audiences. May also address theories of vision and visuality, spectatorship, public space, originality and reproduction, and public space.", + "edges_from": [], + "edges_to": [], + "id": 4333, + "label": "VIS 234N", + "title": "Frames of View (4)" + }, + { + "dept": "COGS", + "description": "This course will combine an examination of the neural character of quiet and active sleep states and their potential functions with an examination of the different mechanisms by which the brain mediates attention to specific features of the world. ", + "edges_from": [], + "edges_to": [], + "id": 4334, + "label": "COGS 176", + "title": "From Sleep to Attention (4)" + }, + { + "dept": "AESE", + "description": "Addresses critical processes and frameworks required to build effective business relationships internally and externally. Focuses on the skills required by functional or technical leaders to envision strategic value and create business development strategies aligned with organizational needs. This workshop meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ", + "edges_from": [ + 2424, + 4336, + 4335 + ], + "edges_to": [ + 4335 + ], + "id": 4335, + "label": "AESE 261", + "title": "Managing Stakeholder Relationships (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4335 + ], + "id": 4336, + "label": "MGT 261", + "title": "" + }, + { + "dept": "CSE", + "description": "A hands-on approach to the principles of databases implementation. Algebraic rewriters/optimizers, query processors, triggers. Beyond centralized relational databases. ", + "edges_from": [ + 3004 + ], + "edges_to": [], + "id": 4337, + "label": "CSE 232B", + "title": "Database System Implementation (4)" + }, + { + "dept": "CAT", + "description": "Seminars are hands-on arts experiences (performances, exhibits, site visits, etc.). Students and faculty attend events together and have discussions before or after, often with guest speakers such as the artists, curators, and/or faculty/graduate students from UC San Diego arts departments. Successful completion of this seminar series satisfies one of the eight Sixth College general education requirements for Art Making. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 4338, + "label": "CAT 75", + "title": "Experience Art!\u2014Sixth College Seminar Series (1)" + }, + { + "dept": "Soc/G", + "description": "A discussion of major themes in the work of Tocqueville and Marx. ", + "edges_from": [], + "edges_to": [], + "id": 4339, + "label": "Soc/G 201A", + "title": "Classical Sociological Theory I (4)" + }, + { + "dept": "SE", + "description": "Aided Structural Design (4)", + "edges_from": [], + "edges_to": [], + "id": 4340, + "label": "SE 120", + "title": "Engineering Graphics & Computer" + }, + { + "dept": "Jewish", + "description": "This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Topics include: prophecy, social justice, monotheism, suffering, humor, and love. ", + "edges_from": [ + 4342 + ], + "edges_to": [], + "id": 4341, + "label": "Jewish Studies 131", + "title": "Introduction to the Old Testament: The Poetic Books (4)" + }, + { + "dept": "JUDA", + "description": "", + "edges_from": [], + "edges_to": [ + 4341 + ], + "id": 4342, + "label": "JUDA 100A", + "title": "" + }, + { + "dept": "POLI", + "description": "This course will study various theories purporting to explain why states succeed or fall at creating institutions by international governance and what effects, if any, those institutions have. ", + "edges_from": [], + "edges_to": [], + "id": 4343, + "label": "POLI 232", + "title": "International Organization (4)" + }, + { + "dept": "POLI", + "description": "An interdisciplinary seminar covering origins, consequences, and characteristics of worker migration from Third World countries (especially Mexico, Central America, and the Caribbean basin) to the United States, from the nineteenth century to the present. ", + "edges_from": [], + "edges_to": [], + "id": 4344, + "label": "POLI 236", + "title": "Immigration Policy and Politics (4)" + }, + { + "dept": "GPEC", + "description": "This course provides an introduction to GIS and spatial data analysis for applied social science research. Students will work in ArcGIS to manipulate different types of georeferenced data, visualize data, import/export data from Excel and STATA, and conduct spatial analysis. Course looks to motivate geography as an important lens through which to study society. Recommended preparation: Basic knowledge of statistics and regression (ordinary least squares) is assumed, as is familiarity with STATA. Students may not receive credit for GPEC 243 and IRGN 443. May be coscheduled with GPEC 443.", + "edges_from": [], + "edges_to": [], + "id": 4345, + "label": "GPEC 243", + "title": "GIS and Spatial Data Analysis (4)" + }, + { + "dept": "CSE", + "description": "and Logic (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4346, + "label": "CSE 209A", + "title": "Topics/Seminar in Algorithms, Complexity," + }, + { + "dept": "CSE", + "description": "Topics of special interest in cryptography to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4347, + "label": "CSE 209B", + "title": "Topics/Seminar in Cryptography (1\u20134)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 4348, + "label": "Linguistics/Spanish (LISP) 1A", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with TDAC 120.) An intensive theatre practicum designed to generate theatre created by an ensemble, with particular emphasis upon the analysis of text. Students will explore and analyze scripts and authors. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell\u2019arte. May be taken for credit two times.", + "edges_from": [], + "edges_to": [], + "id": 4349, + "label": "ETHN 146A", + "title": "Ensemble (4)" + }, + { + "dept": "GPEC", + "description": "The goal of the course is to teach how to evaluate quantitative information in business and economics contexts, and to make sound managerial decisions in complex situations. Most of the problems and the course work will involve statistical software and spreadsheet analysis of data. The course covers various applied multivariate statistical methods beyond the basics. Renumbered from IRGN 240. Students may not receive credit for GPEC 246 and IRGN 240. May be coscheduled with GPEC 446.", + "edges_from": [], + "edges_to": [], + "id": 4350, + "label": "GPEC 246", + "title": "Applied Data Analysis and Statistical Decision Making (4)" + }, + { + "dept": "TDPR", + "description": "A production performance-oriented course that continues the development of costume, lighting, scenery, or sound production and introduces greater responsibilities in the laboratory format. Students serve as crew heads on major departmental productions or creative projects. May be taken for credit two times. ", + "edges_from": [ + 4352, + 4322, + 3483, + 2695 + ], + "edges_to": [], + "id": 4351, + "label": "TDPR 102", + "title": "Advanced Theatre Practicum (4\u20136)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 4351 + ], + "id": 4352, + "label": "TDPR 2", + "title": "" + }, + { + "dept": "TDPR", + "description": "Practicum in Stage Management (4\u20136)", + "edges_from": [], + "edges_to": [ + 5346 + ], + "id": 4353, + "label": "TDPR 104", + "title": "Advanced" + }, + { + "dept": "COMM", + "description": "The interaction of language and culture in human communication. New and old languages, standard and dialect, dominant and endangered are the special focus. Selected languages as examples of how languages exist in contemporary contexts. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4354, + "label": "COMM 112G", + "title": "IM: Language and Globalization (4)" + }, + { + "dept": "COMM", + "description": "Our understanding of childhood as a stage of innocence is a modern idea. The idea of childhood has not been constant; different cultures, communities, and classes have shaped the integration of children according to their own standards. We examine the different ways that attitudes toward children have changed, how these attitudes have been connected to an understanding of the human being, and how the desires of society and parents are manifested in what they think the child should be. ", + "edges_from": [ + 540, + 871 + ], + "edges_to": [], + "id": 4355, + "label": "COMM 112C", + "title": "IM: The Idea of Childhood (4)" + }, + { + "dept": "LTEU", + "description": "Intensive examination of the major ideas of all three writers, with special attention to the literary styles and problematic aspects of their work.", + "edges_from": [], + "edges_to": [], + "id": 4356, + "label": "LTEU 139", + "title": "Marx/Nietzsche/Freud (4)" + }, + { + "dept": "LTEU", + "description": "These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like.", + "edges_from": [], + "edges_to": [], + "id": 4357, + "label": "LTEU 137", + "title": "Seminars in German Culture (4)" + }, + { + "dept": "LTEU", + "description": "One or more aspects of German literature, such as major authors, the contemporary novel, nineteenth-century poetry, German expressionism. Texts may be read in English or the original language. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4358, + "label": "LTEU 130", + "title": "German Literature in Translation (4)" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of empirical and theoretical issues in a specialized area of vision or visual perception. Emphasis most likely will be on a topic of ongoing vision research at UC San Diego. S/U grades only. May be taken for credit eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 4359, + "label": "PSYC 223", + "title": "Current Directions in Vision (1)" + }, + { + "dept": "PSYC", + "description": "A survey of the functional neuroanatomical, neurodevelopmental, neurophysiological, and pharmacological correlates of psychological phenomena. ", + "edges_from": [], + "edges_to": [], + "id": 4360, + "label": "PSYC 222", + "title": "Proseminar in Biological Psychology (5)" + }, + { + "dept": "PSYC", + "description": "Fundamentals of vision, audition, and other senses. Emphasis will be upon psychophysical approaches to the study of these sensory modalities, as well as some essential aspects of their neurophysiological bases. ", + "edges_from": [], + "edges_to": [], + "id": 4361, + "label": "PSYC 221", + "title": "Proseminar in Sensation and Perception (5)" + }, + { + "dept": "PSYC", + "description": "An introduction to social psychology. Psychology and the law, health psychology, attitudes, emotions, person perception and aggression are some of the topics to be covered. ", + "edges_from": [], + "edges_to": [], + "id": 4362, + "label": "PSYC 220", + "title": "Proseminar in Social Psychology (5)" + }, + { + "dept": "HIUS", + "description": "The upheavals that transformed the early modern Atlantic emphasizing the United States, Caribbean, and Great Britain. Topics: struggles to define democracy, the reorganization of the Atlantic state system, the Enlightenment, and international responses to the American and French Revolutions.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4363, + "label": "HIUS 104", + "title": "The Revolutionary Atlantic (4)" + }, + { + "dept": "PSYC", + "description": "A weekly seminar series focused on understanding recent advances in the relationship between neural systems and behavior using a variety of experimental approaches (single unit recording, comp neuro, evolutionary bio, psychophysics, comparative anatomy, lesion work, psychopharm, fMRI, EEG, TMS, etc.). May be taken for credit twenty-four times. ", + "edges_from": [], + "edges_to": [], + "id": 4364, + "label": "PSYC 224", + "title": "Current Directions in Cognitive Neural Systems (CNS) (1)" + }, + { + "dept": "PSYC", + "description": "This course will address the psychology of happiness. The discussions and readings, consisting largely of original research articles, will explore such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy\u2014youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless?", + "edges_from": [], + "edges_to": [], + "id": 4365, + "label": "PSYC 229", + "title": "Happiness (4)" + }, + { + "dept": "CAT", + "description": "Students initiate, plan, and carry out community-based and/or research-based projects that connect classroom-based experiences and knowledge to the outlying community, and that explicitly explore the interplay of culture, art, and technology. ", + "edges_from": [], + "edges_to": [], + "id": 4366, + "label": "CAT 124", + "title": "Sixth College Practicum (4)" + }, + { + "dept": "CAT", + "description": "Upper-division composition course in public rhetoric and practical communication, including oral presentation, writing in print formats, and digital content creation. This course also focuses on how writing can support and extend experiential learning before, during or after students do their practicum project. ", + "edges_from": [ + 52, + 53, + 54 + ], + "edges_to": [], + "id": 4367, + "label": "CAT 125", + "title": "Public Rhetoric and Practical Communication (4)" + }, + { + "dept": "COGS", + "description": "Covers the theories of situated, distributed, enactive, and embodied cognition. Explains how cyborgs are a natural consequence of our current understanding of embodied minds embedded in culturally shaped niches; how mental systems can be distributed over other people and things. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ", + "edges_from": [ + 238, + 3294 + ], + "edges_to": [], + "id": 4368, + "label": "COGS 100", + "title": "Cyborgs Now and in the Future (4)" + }, + { + "dept": "CHIN", + "description": "Introductory course of basic Chinese", + "edges_from": [], + "edges_to": [], + "id": 4369, + "label": "CHIN 10AN", + "title": "First Year Chinese\u2014Non-native speakers I (5)" + }, + { + "dept": "ENG", + "description": "This course is designed to teach leadership in teaching and learning at the college/university level. Students will learn through readings on engineering leadership, proposal development, ethics, and cognitive science, and thorough practical experience writing and developing course and project development plans. ", + "edges_from": [], + "edges_to": [], + "id": 4370, + "label": "ENG 211", + "title": "Engineering Leadership in Academia (4)" + }, + { + "dept": "HITO", + "description": "Course attached to six-unit internship taken by student participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial historical research paper. ", + "edges_from": [], + "edges_to": [], + "id": 4371, + "label": "HITO 193/POLI 194/COM GEN 194/USP 194", + "title": "Research Seminar in Washington, DC (6)" + }, + { + "dept": "POLI", + "description": "We will discuss modern theories of the origins of law and legal behavior.", + "edges_from": [], + "edges_to": [], + "id": 4372, + "label": "POLI 104L", + "title": "Positive Political Theory of Law (4)" + }, + { + "dept": "POLI", + "description": "How law regulates and impacts sexuality and orientation with focus on constitutional law in areas of privacy, free speech, association, regulation of sexual conduct under criminal law pornography, procreation, reproductive rights, and regulation of family status. ", + "edges_from": [], + "edges_to": [], + "id": 4373, + "label": "POLI 104M", + "title": "Law and Sex (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in operations. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 449 and MGT 279 when the course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 4374, + "label": "MGT 449", + "title": "Topics in Operations and Technology (2 or 4)" + }, + { + "dept": "POLI", + "description": "Politics\u2014Courts and Political Controversy (4)", + "edges_from": [], + "edges_to": [], + "id": 4375, + "label": "POLI 104I", + "title": "Law and" + }, + { + "dept": "POLI", + "description": "The ability to write and argue is one of the noted benefits of a legal education. Students will learn the basics of legal research and reasoning by learning to read and brief case law and write persuasive and objective memorandums. ", + "edges_from": [ + 4377, + 1206 + ], + "edges_to": [], + "id": 4376, + "label": "POLI 104J", + "title": "Introduction to Legal Reasoning (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 4376, + 4380 + ], + "id": 4377, + "label": "POLI 104A", + "title": "" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in international business. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 443 and MGT 229 when the course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 4378, + "label": "MGT 443", + "title": "Topics in International Business (2 or 4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in management and decision sciences. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 442 and MGT 249 with same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4379, + "label": "MGT 442", + "title": "Topics in Decision Sciences (2 or 4)" + }, + { + "dept": "POLI", + "description": "This seminar will provide an intensive examination of a major issue in constitutional law, with topics varying from year to year. Recent topics have included equal protection law and the rights of civilians in wartime. Students will be required to do legal research on a topic, write a legal brief, and argue a case to the seminar. ", + "edges_from": [ + 4377 + ], + "edges_to": [], + "id": 4380, + "label": "POLI 104F", + "title": "Seminar in Constitutional Law (4)" + }, + { + "dept": "MGT", + "description": "(Cross-listed with SPPS 273, PHAR 210, and BIOM 267). This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ", + "edges_from": [], + "edges_to": [], + "id": 4381, + "label": "MGT 447", + "title": "Drug Discovery, Development, and Commercialization (3)" + }, + { + "dept": "MGT", + "description": "Addresses the complex role of regulation in business innovation. Includes legal issues such as how to structure a business, whether to seek intellectual property protection, when and how to raise capital or formulate exit strategies, how to make employment decisions. ", + "edges_from": [], + "edges_to": [], + "id": 4382, + "label": "MGT 445", + "title": "Regulation and Innovation (4)" + }, + { + "dept": "MGT", + "description": "Advanced topics of special interest in business strategy. Instructional methods include face-to-face lecture sessions and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 444 and MGT 251 when the subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 4383, + "label": "MGT 444", + "title": "Topics in Business Strategy (2 or 4)" + }, + { + "dept": "POLI", + "description": "Science advances exponentially. The law is slower to follow. This course examines legal issues created by today\u2019s scientific breakthroughs and explores what future legal challenges might await tomorrow\u2019s scientific discoveries, from privacy on the Internet to the meaning of life. ", + "edges_from": [], + "edges_to": [], + "id": 4384, + "label": "POLI 104P", + "title": "Science, Technology, and the Law (4)" + }, + { + "dept": "MDE", + "description": "Introduction to the basic definitions of continuum mechanics and their mathematical formulation at the graduate level with applications to problems in medicine and biology. ", + "edges_from": [], + "edges_to": [], + "id": 4385, + "label": "MDE 209", + "title": "Mechanics and Transport Phenomena for Biomedical Device Design (4)" + }, + { + "dept": "PHIL", + "description": "S/U grades permitted.", + "edges_from": [], + "edges_to": [], + "id": 4386, + "label": "PHIL 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "AWP", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching of analytical writing, especially with regards to courses that fulfill the UC Entry Level Writing Requirement (ELWR). The course is required of all graduate teaching assistants who are engaged in or supporting instruction in the Analytical Writing Program. The course is potentially open to other graduate students seeking expertise in writing pedagogy, contingent upon the approval of the director. May be taken for credit up to eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 4387, + "label": "AWP 500", + "title": "Apprentice Teaching in the Analytical Writing Program (1\u20134)" + }, + { + "dept": "PHIL", + "description": "Each enrolled student produces a research essay ready for publication, presents it to students and faculty, and offers critiques of other students\u2019 presentations. Units will vary according to enrollment in course. To be taken in fall quarter of third year of philosophy graduate study.", + "edges_from": [], + "edges_to": [], + "id": 4388, + "label": "PHIL 292", + "title": "Writing Workshop (1\u20133)" + }, + { + "dept": "PHIL", + "description": "Supervised study of individually selected philosophical topics. S/U grades permitted.", + "edges_from": [], + "edges_to": [], + "id": 4389, + "label": "PHIL 290", + "title": "Directed Independent Study (4)" + }, + { + "dept": "PHIL", + "description": "Advanced individual research studies under", + "edges_from": [], + "edges_to": [], + "id": 4390, + "label": "PHIL 295", + "title": "Research Topics (1\u201312)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with POLI 5D.) Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: Econ 5, POLI 5, or POLI 5D.", + "edges_from": [], + "edges_to": [], + "id": 4391, + "label": "ECON 5", + "title": "Data Analytics for the Social Sciences (4)" + }, + { + "dept": "PHIL", + "description": "An in-depth exploration of an issue in bioethics. Topics will vary, and may include the ethics of genetic engineering, mental capacity and genuinely informed consent, the just distribution of health care, the ethics of geo-engineering, and the ethics of climate change and health. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 4392, + "label": "PHIL 173", + "title": "Topics in Bioethics (4)" + }, + { + "dept": "HIEU", + "description": "This course surveys the historical and cultural significance of Paris from about 1500 to the present. The focus is on interactions between political, architectural, and urban evolutions, and the changing populations of Paris in times of war, revolutions, and peace.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4393, + "label": "HIEU 129", + "title": "Paris, Past and Present (4)" + }, + { + "dept": "Linguistics/French", + "description": "This course concentrates on those language skills essential for communication: listening comprehension, conversation, reading, writing, and grammar analysis. UC San Diego students: LIFR 5A is equivalent to LIFR 1A/1AX, LIFR 5B to LIFR 1B/1BX, LIFR 5C to LIFR 1C/1CX, and LIFR 5D to LIFR 1D/1DX. Enrollment is limited. ", + "edges_from": [], + "edges_to": [], + "id": 4394, + "label": "Linguistics/French (LIFR) 5B, 5C, 5D", + "title": "Fundamentals of French (5)" + }, + { + "dept": "HIGR", + "description": "Readings in modern scholarship concerning ancient Greek or Roman history. Topics will vary. May be taken for credit six times.", + "edges_from": [], + "edges_to": [], + "id": 4395, + "label": "HIGR 259", + "title": "Special Topics in Ancient History (4)" + }, + { + "dept": "MGTA", + "description": "Decision making is difficult with scarce resources, inexact information, and conflicting stakeholder agendas (i.e., most of the time). Students will use advanced behavioral research to gain a competitive advantage, by improving their decisions and their understanding of how others decide. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 4396, + "label": "MGTA 459", + "title": "Managerial Judgment and Decision-Making (4)" + }, + { + "dept": "RELI", + "description": "Research Study for Undergraduates (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4397, + "label": "RELI 199", + "title": "Independent" + }, + { + "dept": "CLRE", + "description": "This course provides skills in designing and carrying out a qualitative study useful for program management (planning, monitoring, and evaluation) and ensuring quality in health-care delivery. The methods included in the course are a sample of commonly used qualitative methods: structured and unstructured interviews, participatory learning methods, group and individual methods. ", + "edges_from": [], + "edges_to": [], + "id": 4398, + "label": "CLRE 232", + "title": "Qualitative Research (2)" + }, + { + "dept": "MGTA", + "description": "This course focuses on improving the performance of production and service operations, as well as supply chains, through the combination of data and analytical tools including statistics, forecasting, and optimization. Students will learn to employ analytics in capacity and distribution facility planning and contracting; how to determine data collection requirements for dynamic management of inventory levels; and how to improve revenue management under demand learning. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 4399, + "label": "MGTA 456", + "title": "Supply Chain Analytics (4)" + }, + { + "dept": "HIGR", + "description": "An in-depth examination of original readings written in the Roman period. Topics will vary. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 4400, + "label": "HIGR 256", + "title": "Readings in Ancient Roman History (4)" + }, + { + "dept": "HIGR", + "description": "An in-depth examination of selected topics in ancient Greek history. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 4401, + "label": "HIGR 255", + "title": "Readings in Ancient Greek History (4)" + }, + { + "dept": "MGTA", + "description": "Many firms have extensive information about customers\u2019 choices and how they react to marketing campaigns, but few have the expertise to efficiently act on such information. In this course, students will learn a scientific approach to marketing with hands-on use of technologies such as databases, analytics, and computing systems to collect, analyze, and act on customer information. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 4402, + "label": "MGTA 455", + "title": "Customer Analytics (4)" + }, + { + "dept": "PSYC", + "description": "Weekly research seminar, three quarter research project under faculty guidance which culminates in a thesis. Must be taken for a letter grade to satisfy major requirements for Department of Psychology majors. ", + "edges_from": [], + "edges_to": [], + "id": 4403, + "label": "PSYC 196A-B-C", + "title": "Research Seminar (4-4-4)" + }, + { + "dept": "ECON", + "description": "Overview of the public sector in the United States and the justifications for government intervention in economic life. Theory of income redistribution and social insurance. Applications to current policy in such areas as health insurance, welfare, unemployment insurance, and Social Security. ", + "edges_from": [ + 797 + ], + "edges_to": [], + "id": 4404, + "label": "ECON 152", + "title": "Public Economics: Expenditures II (4)" + }, + { + "dept": "LTSP", + "description": "Development of Latin American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 4405, + "label": "LTSP 130B", + "title": "" + }, + { + "dept": "LTSP", + "description": "An introduction to the major movements and periods of Spanish literary history, centered on close readings of representative texts, but aimed at providing a sense of the scope of Spanish literature and its relation to the course of Spain\u2019s cultural and social history. This course fulfills the pre-1900 requirement for Spanish literature majors. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 4406, + "label": "LTSP 130A", + "title": "Development of Spanish Literature (4)" + }, + { + "dept": "BENG/BIMM/CSE", + "description": "(Cross-listed as BIMM 181 and CSE 181.) This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNA sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. ", + "edges_from": [ + 11, + 17, + 411, + 2056 + ], + "edges_to": [], + "id": 4407, + "label": "BENG/BIMM/CSE 181", + "title": "Molecular Sequence Analysis (4)" + }, + { + "dept": "TDMV", + "description": "This creative laboratory course facilitates group and individual experimentation through the study of somatic movement processes and methodologies. Students explore approaches to movement vocabulary that offer them insights into investigating their own movement generation and dance making material. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 4408, + "label": "TDMV 20", + "title": "Movement Laboratory (4)" + }, + { + "dept": "BGGN", + "description": "Research papers from all aspects of stem cell biology will be read, presented, and discussed. Papers will range from landmark to current studies, spanning many developmental organisms and cell types. Students will present one paper, provide relevant background, and lead discussions. ", + "edges_from": [], + "edges_to": [], + "id": 4409, + "label": "BGGN 231", + "title": "Current Concepts in Stem Cell Biology (4)" + }, + { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of political theory. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 4410, + "label": "POLI 219", + "title": "Special Topics in Political Theory (4)" + }, + { + "dept": "POLI", + "description": "Directed group study in an area not presently covered by the departmental curriculum. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4411, + "label": "POLI 198", + "title": "Directed Group Study (2-4)" + }, + { + "dept": "CLRE", + "description": "The goal of implementation science is to ensure that the knowledge and materials produced by health research actually leads to improved population health by: 1) reaching the people for whom they are intended; 2) being adapted to local circumstances; and 3) being implemented effectively, safely, equitably, and in a timely and patient-centered manner. ", + "edges_from": [], + "edges_to": [], + "id": 4412, + "label": "CLRE 231", + "title": "Implementation Science (2)" + }, + { + "dept": "DSGN", + "description": "Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 4413, + "label": "DSGN 195", + "title": "Instructional Apprenticeship in Design (4)" + }, + { + "dept": "MATS", + "description": "Group discussion of research activities and progress of group members. ", + "edges_from": [], + "edges_to": [], + "id": 4414, + "label": "MATS 295", + "title": "Research Conference (2)" + }, + { + "dept": "MATS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4415, + "label": "MATS 296", + "title": "Independent Study (4)" + }, + { + "dept": "MUS", + "description": "Introduces the network of concepts and approaches that comprise systems inquiry and explores the theoretical, philosophical, and methodological implications of systems thinking for musical research and practice. Students who have taken MUS 208B for credit may not take MUS 212 for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4416, + "label": "MUS 212", + "title": "Introduction to System Inquiry (2)" + }, + { + "dept": "MATS", + "description": "Subject to the approval of a faculty adviser, students may choose courses offered by departments participating in the Materials Science and Engineering Program. Please see the graduate coordinator for more information.\t\t(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4417, + "label": "MATS 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "EDS", + "description": "Education specialist credential candidate performs student teaching in participating schools for a minimum of seven weeks full-time under the supervision of a cooperating teacher and university supervisor. The field experience provides professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Deaf and Hard of Hearing Specialist and BCLAD Credential. ", + "edges_from": [], + "edges_to": [], + "id": 4418, + "label": "EDS 349", + "title": "Deaf Education Specialist Student Teaching Practicum (9)" + }, + { + "dept": "CLRE", + "description": "This course provides students with a strong foundation in regulatory science and drug device development and a hands-on introduction to current good manufacturing, laboratory and clinical practices, as well as product development. It offers graduates unique instruction for the specialized jobs in regulatory science in federal, academic, and industry work settings. ", + "edges_from": [], + "edges_to": [], + "id": 4419, + "label": "CLRE 233", + "title": "Regulatory Science (2)" + }, + { + "dept": "ECE", + "description": "The linear least squares problem, including constrained and unconstrained quadratic optimization and the relationship to the geometry of linear transformations. Introduction to nonlinear optimization. Applications to signal processing, system identification, robotics, and circuit design. Recommended preparation: ECE 100. ", + "edges_from": [ + 394, + 139, + 1996, + 141 + ], + "edges_to": [], + "id": 4420, + "label": "ECE 174", + "title": "Introduction to Linear and Nonlinear Optimization with Applications (4)" + }, + { + "dept": "DSGN", + "description": "This independent project course is for individual, advanced students who wish to complete a design project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4421, + "label": "DSGN 199", + "title": "Independent Project (2 or 4)" + }, + { + "dept": "MAE", + "description": "Space mission concepts, architectures, and analysis. Mission geometry. Astrodynamics. Orbit and constellation design. Space environment. Payload and spacecraft design and sizing. Power sources and distribution. Thermal management. Structural design. Guidance and navigation. Space propulsion. Orbital debris and survivability. Cost modeling and risk analysis. ", + "edges_from": [], + "edges_to": [], + "id": 4422, + "label": "MAE 181", + "title": "Space Mission Analysis and Design (4)" + }, + { + "dept": "EDS", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. ", + "edges_from": [], + "edges_to": [], + "id": 4423, + "label": "EDS 50", + "title": "Chancellor\u2019s Associates Scholars Program Freshman Introductory Course (1)" + }, + { + "dept": "TDHD", + "description": "An historical overview of the most influential international dance pioneers in recent history, the cultural, political, and artistic contexts that informed the development of their work and the impact that their achievements have on the evolution of dance worldwide. ", + "edges_from": [ + 3474 + ], + "edges_to": [], + "id": 4424, + "label": "TDHD 21", + "title": "Dance Pioneers of the Twentieth and Twenty-First Centuries (4)" + }, + { + "dept": "TDHD", + "description": "Focuses on the foundational aesthetic concepts of dance creation and performance within a diverse range of cultural contexts. Students develop descriptive, perceptual, and analytical skills. ", + "edges_from": [ + 3474 + ], + "edges_to": [], + "id": 4425, + "label": "TDHD 20", + "title": "Looking at Dance (4)" + }, + { + "dept": "POLI", + "description": "A comparative survey of the major dimensions of the electoral systems used in contemporary democracies (including plurality and majority systems, proportional representation, and districting methods) and of their effects on party competition.", + "edges_from": [], + "edges_to": [], + "id": 4426, + "label": "POLI 124A", + "title": "Political Consequences of Electoral Systems (4)" + }, + { + "dept": "TDDM", + "description": "The study of dance and performance creation in relation to the environment, political activism, happenings, and ritual. Students explore ideas within the unique attributes of architecture, natural landscapes, public spaces, visual art, historic landmarks, and cultural contexts. Recommended preparation: No prior dance experience needed. Open to all levels. ", + "edges_from": [], + "edges_to": [], + "id": 4427, + "label": "TDDM 5", + "title": "Site Specific Dance and Performance (4)" + }, + { + "dept": "TDPF", + "description": "Students develop skills in directing and producing an independent staged dance concert/production in various settings. May be taken for credit two times.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4428, + "label": "TDPF 190", + "title": "Major Project/Dance Production (4)" + }, + { + "dept": "CHIN", + "description": "A course in which graduate teaching assistants", + "edges_from": [], + "edges_to": [], + "id": 4429, + "label": "CHIN 500", + "title": "Apprentice Teaching (2\u20134)" + }, + { + "dept": "TMC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4430, + "label": "TMC 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "MUS", + "description": "Surveys the terrain of contemporary creative music and investigates the social, cultural, historical, and technological dimensions of its manifestations and practice. Students who have taken MUS 208D for credit may not take MUS 214 for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4431, + "label": "MUS 214", + "title": "Introduction to Creative Practices (2)" + }, + { + "dept": "POLI", + "description": "Topics in International Political Economy (4)", + "edges_from": [], + "edges_to": [], + "id": 4432, + "label": "POLI 144AB", + "title": "Selected" + }, + { + "dept": "HIGR", + "description": "Guided and supervised reading in the literature of the several fields of history. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course. (S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 4433, + "label": "HIGR 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "NANO", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers,\u00a0photoresists, and polymers for medicine. Cross-listed with CENG 134.\u00a0Students may not receive credit for both\u00a0CENG\u00a0134 and\u00a0NANO\u00a0134. ", + "edges_from": [ + 215 + ], + "edges_to": [], + "id": 4434, + "label": "NANO 134", + "title": "Polymeric Materials (4)" + }, + { + "dept": "BENG", + "description": "Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. ", + "edges_from": [], + "edges_to": [], + "id": 4435, + "label": "BENG 247A/ECE 247A/NANO 247A", + "title": "Advanced Biophotonics (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 4436, + "label": "DSGN 260", + "title": "Advanced Topics in Design (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ", + "edges_from": [], + "edges_to": [], + "id": 4437, + "label": "DSGN 261", + "title": "Advanced Design Project (4)" + }, + { + "dept": "Revelle", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and cocurricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4438, + "label": "Revelle 1", + "title": "First Year Experience (2)" + }, + { + "dept": "Revelle", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4439, + "label": "Revelle 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "VIS", + "description": "A studio course in painting emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ", + "edges_from": [ + 4441 + ], + "edges_to": [], + "id": 4440, + "label": "VIS 106C", + "title": "Painting: Portfolio Projects (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 4442 + ], + "edges_to": [ + 4440 + ], + "id": 4441, + "label": "VIS 106B", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 730 + ], + "edges_to": [ + 4441 + ], + "id": 4442, + "label": "VIS 106A", + "title": "" + }, + { + "dept": "GPEC", + "description": "Government policies with respect to cultural amenities, the environment, health, and transportation generate benefits and costs not directly priced by the market. This course covers the range of techniques economists utilize to place a monetary value on nonmarket outputs. Course renumbered from IRGN 489. Student may not receive credit for GPEC 489 and IRGN 489. ", + "edges_from": [ + 1841, + 2983 + ], + "edges_to": [], + "id": 4443, + "label": "GPEC 489", + "title": "The Economics of Nonmarket Valuation (4)" + }, + { + "dept": "GPEC", + "description": "This course provides a broad overview of environmental and regulatory economics and its interface with public policy. This course will be grounded in micro-economic theory with applications to specific cases. Renumbered from IRGN 488. Student may not receive credit for GPEC 488 and IRGN 488. ", + "edges_from": [ + 1841, + 2983 + ], + "edges_to": [], + "id": 4444, + "label": "GPEC 488", + "title": "Environmental and Regulatory Economics (4)" + }, + { + "dept": "LTAM", + "description": "An analysis of the readings and appropriations of European and US traditions by Latin American, Caribbean, and Filipino writers. The course addresses philosophies, ideologies, and cultural movements and explores the specific literary strategies used by authors in constructing their particular \u201ccosmovisi\u00f3n.\u201d", + "edges_from": [], + "edges_to": [], + "id": 4445, + "label": "LTAM 130", + "title": "Reading North by South (4)" + }, + { + "dept": "LTIT", + "description": "Studies in medieval culture and thought with focus on one of the \u201cthree crowns\u201d of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.", + "edges_from": [], + "edges_to": [], + "id": 4446, + "label": "LTIT 115", + "title": "Medieval Studies (4)" + }, + { + "dept": "GPEC", + "description": "This course studies the development, current economic issues, and future prospects and challenges of Latin America, broadly defined to include Mexico and Central and South America. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies of the region. Renumbered from IRGN 480. Student may not receive credit for GPEC 480 and IRGN 480.", + "edges_from": [], + "edges_to": [], + "id": 4447, + "label": "GPEC 480", + "title": "Comparative Development of the Latin American Economies (4)" + }, + { + "dept": "PHYS", + "description": "Directed research on dissertation topic.", + "edges_from": [], + "edges_to": [], + "id": 4448, + "label": "PHYS 299", + "title": "Thesis Research in Physics (1\u201312)" + }, + { + "dept": "PHYS", + "description": "Research studies under the direction of a faculty member. (S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 4449, + "label": "PHYS 298", + "title": "Directed Study in Physics (1\u201312)" + }, + { + "dept": "GPEC", + "description": "This course examines China\u2019s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949 and contemporary problems and options. Renumbered from IRGN 486. Student may not receive credit for GPEC 486 and IRGN 486.", + "edges_from": [], + "edges_to": [], + "id": 4450, + "label": "GPEC 486", + "title": "Economic and Social Development of China (4)" + }, + { + "dept": "MUS", + "description": "Individual or master class instruction in advanced instrumental performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [ + 4647 + ], + "id": 4451, + "label": "MUS 132", + "title": "Proseminar in Music Performance (4)" + }, + { + "dept": "MUS", + "description": "Performance of new music of the twentieth century. Normally offered winter quarter only. Required a minimum of one time for all music majors. May be taken two times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4452, + "label": "MUS 133", + "title": "Projects in New Music Performance (4)" + }, + { + "dept": "MUS", + "description": "Instruction in the preparation of small group performances of representative instrumental and vocal chamber music literature. May be taken for credit six times, after which students must enroll for zero units. ", + "edges_from": [], + "edges_to": [], + "id": 4453, + "label": "MUS 130", + "title": "Chamber Music Performance (2\u20134/0)" + }, + { + "dept": "HIEU", + "description": "A study of the origin and development of early Christian thought, literature, and institution from the New Testament period to the Council of Chalcedon.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4454, + "label": "HIEU 105", + "title": "The Early Christian Church (4)" + }, + { + "dept": "HIEU", + "description": "This course treats the history of Rome from the foundation of the city in the eighth century BC until the end of the Flavian dynasty in 96 AD. It focuses particularly on the political, social, and cultural elements that fueled Roman development and expansion.", + "edges_from": [], + "edges_to": [], + "id": 4455, + "label": "HIEU 102", + "title": "Roman History (4)" + }, + { + "dept": "HIEU", + "description": "This course discusses the history of imperial Rome and its successor states between the second and seventh centuries AD. It considers whether the Roman Empire fell or if one should instead speak of Roman continuity amidst political and religious change.", + "edges_from": [], + "edges_to": [], + "id": 4456, + "label": "HIEU 103", + "title": "Decline and Fall of the Roman Empire (4)" + }, + { + "dept": "MUS", + "description": "Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4457, + "label": "MUS 134", + "title": "Symphonic Orchestra (4)" + }, + { + "dept": "MGT", + "description": "Sequence introduces students to various", + "edges_from": [], + "edges_to": [], + "id": 4458, + "label": "MGT 208C", + "title": "Introduction to Management Research C (4)" + }, + { + "dept": "HINE", + "description": "Middle East in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 4459, + "label": "HINE 118", + "title": "The" + }, + { + "dept": "HINE", + "description": "Mid-East Policy Post-WWII (4)", + "edges_from": [], + "edges_to": [], + "id": 4460, + "label": "HINE 119", + "title": "US" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with PATH 234, MED 234, BIOM 238.) This course is designed to train those who need to analyze mouse models of human disease that are an essential part of their research. Sessions will include hematology, chemistry, histology, and immunohistochemistry methods used in the phenotyping assays. (Quarter offered varies and course is not offered every year.) ", + "edges_from": [], + "edges_to": [], + "id": 4461, + "label": "BGGN 234", + "title": "Practical Histopathology and Mouse Models of Human Disease (2)" + }, + { + "dept": "EDS", + "description": "This course prepares K\u201312 teacher-researchers", + "edges_from": [], + "edges_to": [], + "id": 4462, + "label": "EDS 229", + "title": "Introduction to Educational Resources (4)" + }, + { + "dept": "HIEU", + "description": "This course will explore the history of nationalism as idea and political movement in European history, from the French Revolution to the present.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4463, + "label": "HIEU 109", + "title": "Blood, Soil, Boundaries: Nationalism in Europe (4)" + }, + { + "dept": "ECE", + "description": "A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BNFO 285 and ECE 204 and BENG 285. Cross-listed with BNFO 285 and BENG 285. ", + "edges_from": [ + 2524, + 2525, + 2526 + ], + "edges_to": [], + "id": 4464, + "label": "ECE 204", + "title": "Statistical Learning in Bioinformatics (4)" + }, + { + "dept": "Jewish", + "description": "An introductory survey of Jewish history, literature, and culture from antiquity to contemporary times. Topics include sacred texts; the variety of groups and views of Judaism; the historical and geographical movements of the Jewish people; and the intersection of religion, ethnicity, and culture.", + "edges_from": [], + "edges_to": [], + "id": 4465, + "label": "Jewish Studies 110", + "title": "Introduction to Judaism (4)" + }, + { + "dept": "COGR", + "description": "This seminar focuses on how differences between groups of people, and the patterns of power, exclusion and conflict resulting from such differences, become embedded in geographical landscapes. The course examines place-based sites of difference, power, and conflict beginning with the map, and moving through such spatial environments as the body, the city, the nation, the landscape, the reservation, culminating in borderland conflict here in our own backyard. ", + "edges_from": [], + "edges_to": [], + "id": 4466, + "label": "COGR 262", + "title": "Geographies of Difference, Exclusion and Conflict (4)" + }, + { + "dept": "ECE", + "description": "Group discussion of research activities and progress of group members. (Consent of instructor is strongly recommended.) (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4467, + "label": "ECE 200", + "title": "Research Conference (2)" + }, + { + "dept": "ECE", + "description": "The class will cover fundamental physical principles of biological processes at the molecular, cellular, tissue and organ levels that are related to human physiology and diseases. Topics include energetics and dynamics of biological systems, physical factors of environment, and the kinetics of biological systems. ", + "edges_from": [], + "edges_to": [], + "id": 4468, + "label": "ECE 201", + "title": "Introduction to Biophysics (4)" + }, + { + "dept": "ECE", + "description": "This course will cover basic cellular and electrochemical processes, membrane potentials, ionic currents, nerve cell conductance, extracellular and intracellular stimulation, neural probe technology materials and devices, diagnostic and drug delivery devices, material/physiological considerations, biosensors, microfluids, optical, magnetic and electrical screening. ", + "edges_from": [], + "edges_to": [], + "id": 4469, + "label": "ECE 202", + "title": "Medical Devices and Interfaces (4)" + }, + { + "dept": "ECE", + "description": "Integrated circuit analysis and design for medical devices. Introduction to subthreshold conduction in MOS transistor and its similarities to biomolecular transport. Design of instrumentation amplifiers, sensors, and electrical stimulation interfaces. Transcutaneous wireless power transfer and electromagnetic effects on tissue. Recommended preparation: ECE 164 or BENG 186B or equivalent. ", + "edges_from": [], + "edges_to": [], + "id": 4470, + "label": "ECE 203", + "title": "Biomedical Integrated Circuits and Systems (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics in global business, with a regional emphasis. Instructional methods include lectures, case presentations, readings, and discussions. A substantial portion of learning outcomes will be met by visiting businesses in another world region, observing operations, and interviewing executives. The visit to the foreign region will typically be one to two weeks and may occur outside the normal academic quarter. S/U grades only. May be taken for credit two times. Students may not earn credit for both MGT 419 and MGT 259 if the courses have the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4471, + "label": "MGT 419", + "title": "Global Business Immersion (2)" + }, + { + "dept": "ECE", + "description": "Evolutionary biology (e.g., the study of the tree of life) uses computational methods from statistics and machine learning. We cover methods of broad use in many fields and apply them to biology, focusing on scalability to big genomic data. Topics include dynamic programming, continuous time Markov models, hidden Markov models, statistical inference of phylogenies, sequence alignment, uncertainty (e.g., bootstrapping), and heterogeneity (e.g., phylogenetic mixture models). ", + "edges_from": [], + "edges_to": [], + "id": 4472, + "label": "ECE 208", + "title": "Computational Evolutionary Biology (4)" + }, + { + "dept": "CSE", + "description": "This course covers advanced topics in computer architecture. It incorporates the latest research and development on topics such as branch prediction, instruction-level parallelism, cache hierarchy design, speculative multithreading, reliable architectures, and power-management techniques. CSE 240A recommended. ", + "edges_from": [], + "edges_to": [], + "id": 4473, + "label": "CSE 240C", + "title": "Advanced Microarchitecture (4)" + }, + { + "dept": "CSE", + "description": "This course covers advanced topics in parallel computer architecture, including on-chip and off-chip interconnection networks, cache coherence, cache consistency, hardware multithreading, multi-core and tiled architectures. It incorporates the latest research and development on parallel architectures and compilation techniques for those architectures. CSE 240A recommended. ", + "edges_from": [], + "edges_to": [], + "id": 4474, + "label": "CSE 240B", + "title": "Parallel Computer Architecture (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 240.) This course will cover fundamental concepts in computer architecture. Topics include instruction set architecture, pipelining, pipeline hazards, bypassing, dynamic scheduling, branch prediction, superscalar issue, memory-hierarchy design, advanced cache architectures, and multiprocessor architecture issues. ", + "edges_from": [ + 1180 + ], + "edges_to": [], + "id": 4475, + "label": "CSE 240A", + "title": "Principles of Computer Architecture (4)" + }, + { + "dept": "COGR", + "description": "Different approaches to conducting historical research in communication. Such approaches may include the social history of communication technology; structuralist and poststructuralist accounts of language, media, and collective memory; and new historicist treatments of cultural history. Sources, documentation, and the nature of argument from historical evidence are emphasized. ", + "edges_from": [], + "edges_to": [], + "id": 4476, + "label": "COGR 201D", + "title": "Historical Methods for Communication Research (4)" + }, + { + "dept": "GPCO", + "description": "Capstone class: Students collaborate on long-term projects analyzing important political, economic, and business issues in the Pacific regions using the tools acquired through other courses at GPS. Renumbered from IRCO 483. Students may not receive credit for GPCO 483 and IRCO 483. ", + "edges_from": [ + 4478, + 4479 + ], + "edges_to": [], + "id": 4477, + "label": "GPCO 483", + "title": "Workshop on Policy Issues in the Pacific Rim (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 4477 + ], + "id": 4478, + "label": "GPCO 482", + "title": "" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 4477 + ], + "id": 4479, + "label": "GPCO 481", + "title": "" + }, + { + "dept": "SXTH", + "description": "Weekly seminars with faculty members from a variety of disciplines (chosen by the provost to match the interests of participating students). This seminar provides students with opportunities to learn more about research and scholarly activities being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4480, + "label": "SXTH 20", + "title": "Freshmen Honors Seminar (1)" + }, + { + "dept": "BENG", + "description": "Oral presentations of design projects, including design, development, and implementation strategies and results of prototype testing. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ", + "edges_from": [ + 68 + ], + "edges_to": [], + "id": 4481, + "label": "BENG 187D", + "title": "Bioengineering Design Project: Presentation (1)" + }, + { + "dept": "BILD", + "description": "Students will isolate bacterial viruses or other organisms from the environment and characterize them by methods including electron microscopy and nucleic acid analysis. The genomic DNA will be purified and sent for sequencing. Restricted to student participants in the Phage Genomics Research program. Renumbered from BIMM 171A. Students may not receive credit for BILD 70 and BIMM 171A. Material lab fees will apply. ", + "edges_from": [], + "edges_to": [], + "id": 4482, + "label": "BILD 70", + "title": "Genomics Research Initiative Lab I (4)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4483, + "label": "CSE 291", + "title": "Topics" + }, + { + "dept": "COGR", + "description": "History uses methodology of quantitative analysis of media content. Includes conceptual issues concerning the quantification of meaning and practical procedures for coding and data analysis. Students read examples of studies using content analysis and carry out their own pilot analyses. ", + "edges_from": [], + "edges_to": [], + "id": 4484, + "label": "COGR 201M", + "title": "Content Analysis (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in entrepreneurship. Examples of course topics include (but are not limited to): venture capital funding process, entrepreneurial business development and marketing, workplace climate and morale, and developing a capable workforce. Instructional methods include face-to-face lecture, case presentation, assigned reading and group discussion. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4485, + "label": "MGT 129", + "title": "Topics in Entrepreneurship (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112W. Courses may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 4486, + "label": "Linguistics/Heritage Languages (LIHL) 112W", + "title": "Filipino for Filipino Speakers (4)" + }, + { + "dept": "MGT", + "description": "Course examines management of personal financial assets: savings and checking accounts, fixed assets, and credit cards. Budgeting, loan applications, payment terms, and statement reconciliation will be covered as will credit ratings, cash management, compound interest, bank operations, and contract obligations.", + "edges_from": [], + "edges_to": [], + "id": 4487, + "label": "MGT 12", + "title": "Personal Financial Management (4)" + }, + { + "dept": "MGT", + "description": "Course examines the ethical foundation for choices individuals make every day both in the workplace and in their private lives, the connection between economic and ethical obligations with examples related to privacy, reporting, whistle-blowing, workplace relationships, confidentiality, and intellectual property.", + "edges_from": [], + "edges_to": [], + "id": 4488, + "label": "MGT 16", + "title": "Personal Ethics at Work (4)" + }, + { + "dept": "MGT", + "description": "This course will focus on three major components: 1) what matters (the purpose of ethics in the accounting profession); 2) why ethics matter (the reasons, skills, and abilities that make a difference); and 3) how a professional \u201cwalks the walk.\u201d The course provides students with the opportunity to gain knowledge, awareness, and recognition of ethical terms, theories, codes, etc. Students will be given the opportunity to practice making choices and exercise professional judgment. ", + "edges_from": [ + 4490 + ], + "edges_to": [], + "id": 4489, + "label": "MGT 146", + "title": "Ethics in Accounting (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4489 + ], + "id": 4490, + "label": "MGT 132", + "title": "" + }, + { + "dept": "CSE", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. May be used to meet teaching experience requirement for candidates for the PhD degree. Number of units for credit depends on number of hours devoted to class or section assistance. ", + "edges_from": [], + "edges_to": [], + "id": 4491, + "label": "CSE 500", + "title": "Teaching Assistantship (2\u20134)" + }, + { + "dept": "MGT", + "description": "Course covers key forensic accounting concepts including fraudulent financial reporting, money laundering, business valuation, and litigation support. Learning objectives are the application of analytical accounting and communication skills in identifying and presenting financial issues in both criminal or civil litigation. ", + "edges_from": [ + 2061 + ], + "edges_to": [], + "id": 4492, + "label": "MGT 143", + "title": "Forensic Accounting (4)" + }, + { + "dept": "BIEB", + "description": "and the Human Predicament (4)", + "edges_from": [], + "edges_to": [], + "id": 4493, + "label": "BIEB 176", + "title": "Biology of Conservation" + }, + { + "dept": "BIEB", + "description": "This course will teach the principles of ecosystem ecology in terrestrial and marine systems and will use examples from recent research to help students understand how global environmental changes are altering processes from leaf-level ecophysiology to global cycling of carbon, water, and nutrients. Fieldwork may be required. ", + "edges_from": [ + 1424 + ], + "edges_to": [], + "id": 4494, + "label": "BIEB 174", + "title": "Ecosystems and Global Change (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in accounting. Examples of course topics include (but are not limited to): corporate valuation and forecasting, global taxation and business strategy, current issues in the practice and regulation of auditing. May be taken for credit two times for a maximum of eight credits if the topics are substantially different. ", + "edges_from": [ + 2061 + ], + "edges_to": [], + "id": 4495, + "label": "MGT 149", + "title": "Topics in Accounting (4)" + }, + { + "dept": "MAE", + "description": "Identification and Control (4)", + "edges_from": [], + "edges_to": [], + "id": 4496, + "label": "MAE 283B", + "title": "Approximate" + }, + { + "dept": "MAE", + "description": "Identification: Theory and Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 4497, + "label": "MAE 283A", + "title": "Parametric" + }, + { + "dept": "HIEU", + "description": "Examines existentialism as a way of thinking from the late nineteenth to mid-twentieth century. Explores the historical context of existentialism in Germany and France, e.g., World War II, the Holocaust, fascism, and communism. Selections from Heidegger, Sartre, Camus, and de Beauvoir.", + "edges_from": [], + "edges_to": [], + "id": 4498, + "label": "HIEU 146S", + "title": "The Meaning of Life in the Modern World: Existentialism, Fascism, and Genocide (4)" + }, + { + "dept": "ANSC", + "description": "The course considers how social life is constituted and negotiated through language and interaction. How do people establish, maintain, and alter social relationships through face-to-face talk, and how do different modalities of interaction (including discourse and gesture) affect social life? ", + "edges_from": [], + "edges_to": [], + "id": 4499, + "label": "ANSC 127", + "title": "Discourse, Interaction, and Social Life (4)" + }, + { + "dept": "COGS", + "description": "This course will allow cognitive science honors", + "edges_from": [], + "edges_to": [], + "id": 4500, + "label": "COGS 190B", + "title": "Honors Studies in Cognitive Science (4)" + }, + { + "dept": "POLI", + "description": "An introduction to the theoretical concepts in the discipline of political science that are commonly used across various subfields. Each week will introduce the core concept(s) and discuss applications from several, if not all subfields in the department. ", + "edges_from": [], + "edges_to": [], + "id": 4501, + "label": "POLI 200A", + "title": "Foundations of Political Science (4)" + }, + { + "dept": "POLI", + "description": "An overview of the normative and positive issues associated with modern democracies. The appeal and the social, political, and economic arrangements of democracies will be explored. ", + "edges_from": [], + "edges_to": [], + "id": 4502, + "label": "POLI 200B", + "title": "Democracy (4)" + }, + { + "dept": "GPPS", + "description": "Analyzes the particular environment in which nonprofit organizations define and achieve their objectives. Management tools are applied to existing nonprofits and to student projects. Renumbered from IRGN 465. Students may not receive credit for GPPS 465 and IRGN 465.", + "edges_from": [], + "edges_to": [], + "id": 4503, + "label": "GPPS 465", + "title": "Management of Nonprofit Organizations (4)" + }, + { + "dept": "HIEU", + "description": "Ancient Mediterranean conceptions of emotional and physical love through analysis of ancient romantic poetry, love letters, and romance novels. Students learn to interpret primary sources and to conduct independent critical assessment of documents and ideas.", + "edges_from": [], + "edges_to": [], + "id": 4504, + "label": "HIEU 108S", + "title": "Sex and Romance in the Ancient World (4)" + }, + { + "dept": "GPPS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4505, + "label": "GPPS 469", + "title": "Comparative Grand Strategy and Defense Policy (4)" + }, + { + "dept": "PHIL", + "description": "Independent study by special arrangement with and under the supervision of a faculty member, including a proposal for the honors essay. An IP grade will be awarded at the end of this quarter; a final grade will be given for both quarters at the end of 191B. ", + "edges_from": [], + "edges_to": [], + "id": 4506, + "label": "PHIL 191A", + "title": "Philosophy Honors (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "A communicative introduction to Italian for students with no prior exposure, with attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1A/1AX. ", + "edges_from": [], + "edges_to": [], + "id": 4507, + "label": "Linguistics/Italian (LIIT) 5AS", + "title": "Fundamentals of Italian I (5)" + }, + { + "dept": "COMM", + "description": "Examination of the legal framework of freedom of expression in the United States. Covers fundamentals of First Amendment law studying key cases in historical content. Prior restraint, incitement, obscenity, libel, fighting words, public forum, campaign finance, commercial speech, and hate speech are covered. ", + "edges_from": [ + 76, + 2666, + 540 + ], + "edges_to": [], + "id": 4508, + "label": "COMM 114F", + "title": "CSI: Law, Communication, and Freedom of Expression (4)" + }, + { + "dept": "EDS", + "description": "Second course in a two-course sequence. Provides a theoretical and practical grounding in various pedagogical techniques for teaching in bilingual settings. Course covers principles of bilingualism and bilingual pedagogy; transfer between primary and target languages as appropriate to the language(s) of emphasis. Candidates study methods for teaching primary and target languages in a variety of program models; curriculum/assessment practices; and approaches for interacting with families/communities.\u00a0", + "edges_from": [ + 4510 + ], + "edges_to": [], + "id": 4509, + "label": "EDS 352B", + "title": "Bilingual Instructional Practices II (2)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4509 + ], + "id": 4510, + "label": "EDS 352A", + "title": "" + }, + { + "dept": "COMM", + "description": "Does \u201cnew media\u201d deliver on its promise to expand access to public participation? We will analyze, produce, and counter narratives about media, youth, and democracy. The course should interest students who care about politics, human development, community engagement, or human computer interaction. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4511, + "label": "COMM 114D", + "title": "CSI: New Media, Youth, and Democracy (4)" + }, + { + "dept": "ECON", + "description": "Nonlinear programming, deterministic and stochastic dynamic programming, queuing theory, search models, and inventory models. Credit not allowed for both Econ 172B and Math 171B. ", + "edges_from": [ + 4513, + 3301 + ], + "edges_to": [], + "id": 4512, + "label": "ECON 172B", + "title": "Operations Research B (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 547, + 1992, + 1993, + 1994, + 1995, + 140, + 141, + 1996 + ], + "edges_to": [ + 4512 + ], + "id": 4513, + "label": "ECON 172A", + "title": "" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4514, + "label": "LTEN 159", + "title": "Contemporary American Literature (4)" + }, + { + "dept": "POLI", + "description": "(Same as IRGN 290) This seminar is an examination of the different approaches to the study of international relations. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 4515, + "label": "POLI 248", + "title": "Special Topics in International Relations (4)" + }, + { + "dept": "LTEN", + "description": "to African American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 4516, + "label": "LTEN 27", + "title": "Introduction" + }, + { + "dept": "POLI", + "description": "This course exposes students to contemporary research on international institutions. What leads nations to cede sovereignty? How do international institutions obtain a measure of authority in world affairs? What makes an institution \u201csuccessful\u201d? We\u2019ll also examine institutional design. ", + "edges_from": [], + "edges_to": [], + "id": 4517, + "label": "POLI 244", + "title": "International Institutions (4)" + }, + { + "dept": "POLI", + "description": "A seminar surveying the major theoretical controversies in the study of international political economy. ", + "edges_from": [], + "edges_to": [], + "id": 4518, + "label": "POLI 245", + "title": "International Political Economy (4)" + }, + { + "dept": "POLI", + "description": "A survey of the principal theories and approaches to the study of international relations. ", + "edges_from": [], + "edges_to": [], + "id": 4519, + "label": "POLI 240", + "title": "International Relations Theory (4)" + }, + { + "dept": "POLI", + "description": "This course explores contemporary research on European Union politics from a comparative and international relations perspective, and links this research to broader questions of global governance. ", + "edges_from": [], + "edges_to": [], + "id": 4520, + "label": "POLI 242", + "title": "The European Union and Global Governance (4)" + }, + { + "dept": "POLI", + "description": "A colloquium surveying the major theoretical controversies in the study of international and national security. ", + "edges_from": [], + "edges_to": [], + "id": 4521, + "label": "POLI 243", + "title": "International Security (4)" + }, + { + "dept": "SIOC", + "description": "Building on the knowledge and experience gained from the entire curriculum of the Master\u2019s in Climate Science and Policy (MAS-CSP) program, students will design and present a specific climate science and policy project. May be taken for credit one time for a maximum of ten units. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4522, + "label": "SIOC 299", + "title": "Climate Science and Policy Capstone Project (6\u201310)" + }, + { + "dept": "POLI", + "description": "and Discipline: Political Thought in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 4523, + "label": "POLI 110DA", + "title": "Freedom" + }, + { + "dept": "SIOC", + "description": "Required course for MAS-CSP students will focus on development of MAS Capstone Projects and discussions covering climate science and policy issues, including informal student presentations on political, economic, historical, educational, and natural science issues related to climate science and policy. Letter grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4524, + "label": "SIOC 296", + "title": "Climate Science and Policy Forum (2)" + }, + { + "dept": "CENG", + "description": "299. Graduate Research in Chemical Engineering (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 4525, + "label": "CENG", + "title": "" + }, + { + "dept": "COGR", + "description": "This reading seminar will consider works by Frankfurt School theorists (Horkheimer, Adorno, Pollock, Lowenthal, Marcuse, Benjamin, Habermas) on mass media, mass culture, idology, art, authority and the individual, and their relevance in the analysis of contemporary capitalism. ", + "edges_from": [], + "edges_to": [], + "id": 4526, + "label": "COGR 238", + "title": "The Frankfurt School on Mass Culture Social Theory (4)" + }, + { + "dept": "COGR", + "description": "Course considers computer games as media, rule systems, technology, and sites of communication. Approaches include hands-on play and reading material from a variety of disciplinary perspectives. Course encompasses both commercial games and the longer, more diverse academic and independent traditions. ", + "edges_from": [], + "edges_to": [], + "id": 4527, + "label": "COGR 239", + "title": "Computer Game Studies (4)" + }, + { + "dept": "COGR", + "description": "Course is designed to introduce graduate students to the disciplinary, intellectual, and artistic genealogies of performance studies that bring together critical work from the fields of anthropology, art history, communication, critical gender studies, ethnic studies, film studies, literature, and theatre studies. ", + "edges_from": [], + "edges_to": [], + "id": 4528, + "label": "COGR 237", + "title": "Performance Theory (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4529, + "label": "PSYC 264A", + "title": "Advanced Topics in Language Processes I (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4530, + "label": "PSYC 264B", + "title": "Advanced Topics in Language Processes II (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4531, + "label": "PSYC 264C", + "title": "Advanced Topics in Language Processes III (1)" + }, + { + "dept": "LTEU", + "description": "This course focuses on the theme of Faust in European literature from the Renaissance to the present, including works by Marlowe, Goethe, Bulgakov, and Thomas Mann. Concentration on how authors adapted the theme to differing national and historical contexts.", + "edges_from": [], + "edges_to": [], + "id": 4532, + "label": "LTEU 125", + "title": "Faust in European Literature (4)" + }, + { + "dept": "PSYC", + "description": "The course examines cognitive development through the school-age period and social and personality development from infancy through early adolescence. It begins with an examination of early neurological, sensory, motor, and perceptual functions and then focuses on issues in linguistic and cognitive development. The class will first discuss general developmental theory and methods and then topics such as attachment, temperament, self-concept, aggression, family relations, play, and peers. Students cannot get credit for PSYC 217 if they have already taken PSYC 217A or 217B. ", + "edges_from": [], + "edges_to": [], + "id": 4533, + "label": "PSYC 217", + "title": "Proseminar in Developmental Psychology (5)" + }, + { + "dept": "HIUS", + "description": "A lecture course that explores the evolution of the interaction between the United States and the world from 1914 to the present, with special attention to the era of the Great Depression, the Cold War, Vietnam, and the post 9/11 war on terror.", + "edges_from": [], + "edges_to": [], + "id": 4534, + "label": "HIUS 111", + "title": "America and the World: World War I to the Present (4)" + }, + { + "dept": "HIUS", + "description": "A lecture course that explores the evolution of the interaction between the United States and the world from the American Revolution to the First World War, with particular emphasis upon the role of diplomacy, war, and economic change.", + "edges_from": [], + "edges_to": [], + "id": 4535, + "label": "HIUS 110", + "title": "America and the World: Revolution to World War I (4)" + }, + { + "dept": "PSYC", + "description": "Each year a different topic in visual science is selected for in-depth review and discussion based on current readings. ", + "edges_from": [], + "edges_to": [], + "id": 4536, + "label": "PSYC 212", + "title": "Visual Science (4)" + }, + { + "dept": "PSYC", + "description": "Procedures and Survival in Psychology (4)", + "edges_from": [], + "edges_to": [], + "id": 4537, + "label": "PSYC 213", + "title": "Professional" + }, + { + "dept": "PSYC", + "description": "Covers many of the neuroscience methods available to study human cognition, with emphasis on concepts of data analysis, and comparative assessment of the different methods (along with alternative nonhuman animal approaches), with an eye to pitfalls and interpretational limitations. ", + "edges_from": [], + "edges_to": [], + "id": 4538, + "label": "PSYC 210", + "title": "The Methods of Human Cognitive Neuroscience (5)" + }, + { + "dept": "HIUS", + "description": "112A. History of Native Americans in the United States I (4)", + "edges_from": [], + "edges_to": [], + "id": 4539, + "label": "HIUS 108A/ETHN", + "title": "" + }, + { + "dept": "HIUS", + "description": "This course explores the history of Jews in America from the colonial period to the present, focusing on both the development of Jewish communities primarily as a result of immigration and evolving relations between Jews and the larger American society.", + "edges_from": [], + "edges_to": [], + "id": 4540, + "label": "HIUS 118", + "title": "How Jews Became American (4)" + }, + { + "dept": "PSYC", + "description": "A survey of basic principles and concepts of cognitive psychology. This course is intended to serve as the basic introduction for first-year students. Basic areas include knowledge, memory, thought, perception, and performance.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4541, + "label": "PSYC 218", + "title": "Proseminar in Cognitive Psychology (5)" + }, + { + "dept": "MATH", + "description": "Analysis of trends and seasonal effects, autoregressive and moving averages", + "edges_from": [], + "edges_to": [], + "id": 4542, + "label": "MATH 181E", + "title": "Mathematical Statistics\u2014Time Series (4)" + }, + { + "dept": "POLI", + "description": "Individual placements for field learning integrated with political science. A written contract involving all parties with learning objectives, a project outline, and a means of supervision and progress evaluation must be filed with the faculty adviser and department undergraduate coordinator prior to the beginning of the internship. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 4544, + 106 + ], + "edges_to": [ + 4544 + ], + "id": 4543, + "label": "POLI 197SD", + "title": "Local Internship in Political Science (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [ + 4543 + ], + "edges_to": [ + 4543 + ], + "id": 4544, + "label": "POLI 194SD", + "title": "" + }, + { + "dept": "CHEM", + "description": "Synthesis, analysis, and physical characterization of inorganic chemical compounds. Program or materials fees may apply. Recommended preparation: concurrent or prior enrollment in CHEM 120B. ", + "edges_from": [ + 4546, + 1786, + 4547, + 4221, + 3835 + ], + "edges_to": [], + "id": 4545, + "label": "CHEM 123", + "title": "Advanced Inorganic Chemistry Laboratory (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 4545, + 5134, + 5135 + ], + "id": 4546, + "label": "CHEM 143AM", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 4545, + 5134, + 5135 + ], + "id": 4547, + "label": "CHEM 143A", + "title": "" + }, + { + "dept": "CHEM", + "description": "The roles of metal ions in biological systems, with emphasis on transition metal ions in enzymes that transfer electrons, bind oxygen, and fix nitrogen. Also included are metal complexes in medicine, toxicity, and metal ion storage and transport. May be coscheduled with CHEM 225. ", + "edges_from": [ + 1786, + 458 + ], + "edges_to": [], + "id": 4548, + "label": "CHEM 125", + "title": "Bioinorganic Chemistry (4)" + }, + { + "dept": "MATH", + "description": "Various topics in probability and statistics. ", + "edges_from": [], + "edges_to": [], + "id": 4549, + "label": "MATH 288", + "title": "Seminar in Probability and Statistics (1)" + }, + { + "dept": "MGT", + "description": "Advanced topics in business innovation, delivered by lecture, case presentation, and group discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 459 and MGT 221 if the course has the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4550, + "label": "MGT 459", + "title": "Topics in Innovation (2 or 4)" + }, + { + "dept": "HIEA", + "description": "Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China\u2019s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 270. +", + "edges_from": [], + "edges_to": [], + "id": 4551, + "label": "HIEA 170", + "title": "Love and Marriage in Chinese History (4)" + }, + { + "dept": "MGT", + "description": "Provides management concepts and tools to enable the more effective design, planning, and control of projects. Includes both the qualitative and quantitative aspects of project management. Students may not earn credit for both MGT 450 and MGT 270. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4552, + "label": "MGT 450", + "title": "Project Management (4)" + }, + { + "dept": "MGT", + "description": "Outlines tools for formulating and evaluating technology strategy, including an introduction to the economics of technical change, models of technological evolution, and models of organizational dynamics and innovation. Provides an understanding of how technology firms gain and sustain competitive advantage. Students may not earn credit for both MGT 451 and MGT 271. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4553, + "label": "MGT 451", + "title": "Technology and Innovation Strategy (4)" + }, + { + "dept": "MGT", + "description": "Provides comprehensive analytical coverage of the new product development process, focusing on the basic tools, methods, and organizational structures used in new product development and management. Students may not earn credit for both MGT 452 and MGT 272. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4554, + "label": "MGT 452", + "title": "New Product Development (4)" + }, + { + "dept": "MGT", + "description": "Describes the systems approach to managing the entire flow of information, materials, and services from raw materials suppliers through factories and warehouses to the end customer, which is the key to productivity and competitiveness of manufacturing and service enterprises. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4555, + "label": "MGT 453", + "title": "Supply Chain Management (4)" + }, + { + "dept": "MATH", + "description": "Survival analysis is an important tool in many areas of applications including biomedicine, economics, engineering. It deals with the analysis of time to events data with censoring. This course discusses the concepts and theories associated with survival data and censoring, comparing survival distributions, proportional hazards regression, nonparametric tests, competing risk models, and frailty models. The emphasis is on semiparametric inference, and material is drawn from recent literature. ", + "edges_from": [ + 482 + ], + "edges_to": [], + "id": 4556, + "label": "MATH 284", + "title": "Survival Analysis (4)" + }, + { + "dept": "MATH", + "description": "Elements of stochastic processes, Markov chains, hidden Markov models, martingales, Brownian motion, Gaussian processes. Recommended preparation: completion of undergraduate probability theory (equivalent to Math 180A) highly recommended. ", + "edges_from": [], + "edges_to": [], + "id": 4557, + "label": "MATH 285", + "title": "Stochastic Processes (4)" + }, + { + "dept": "MATH", + "description": "Review of continuous martingale theory. Stochastic integration for continuous semimartingales. Existence and uniqueness theory for stochastic differential equations. Strong Markov property. Selected applications. ", + "edges_from": [ + 4560, + 4559 + ], + "edges_to": [], + "id": 4558, + "label": "MATH 286", + "title": "Stochastic Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 4560, + 4558 + ], + "id": 4559, + "label": "MATH 280A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 4559 + ], + "edges_to": [ + 4972, + 4558 + ], + "id": 4560, + "label": "MATH 280B", + "title": "" + }, + { + "dept": "GPPA", + "description": "The course will introduce students to the world food economy and its drivers. The first part of the course will consider the forces governing food prices and supply. The second part uses quantitative assessment of policy changes. The third part frames future constraints to food security. Renumbered from IRGN 483. Students may not receive credit for GPPA 483 and IRGN 483. Recommended preparation: GPCO 454, knowledge of regression analysis, and STATA.", + "edges_from": [], + "edges_to": [], + "id": 4561, + "label": "GPPA 483", + "title": "Food Security (4)" + }, + { + "dept": "PSYC", + "description": "This is a series of weekly seminars on current trends in neuropsychology. The seminars will deal with the concept of \u201clocalization\u201d of function in different parts of the brain and the effects of damage to these parts on cognitive functions such as perception, memory and language. Active student participation will be encouraged in preparing these seminars. ", + "edges_from": [], + "edges_to": [], + "id": 4562, + "label": "PSYC 252", + "title": "Cognitive Neuroscience (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4563, + "label": "LTEN 153", + "title": "The Revolutionary War and the Early National Period in US Literature (4)" + }, + { + "dept": "PHIL", + "description": "This group provides training in reading and translating philosophical Latin by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for departmental Latin exam.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4564, + "label": "PHIL 288", + "title": "Latin Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "Focused examination of specific problems or themes in some area of philosophy. May be taken for credit nine times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 4565, + "label": "PHIL 285", + "title": "Seminar on Special Topics (4)" + }, + { + "dept": "ANTH", + "description": "This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the \u201cfoundational\u201d culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207. ", + "edges_from": [], + "edges_to": [], + "id": 4566, + "label": "ANTH 207", + "title": "Eastern Mediterranean Archaeology\u2014New Perspectives (4)" + }, + { + "dept": "PHIL", + "description": "This group provides training in reading and translating philosophical Greek by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for Departmental Greek Exam. Can be taken nine times for credit with change of content. ", + "edges_from": [], + "edges_to": [], + "id": 4567, + "label": "PHIL 287", + "title": "Greek Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "A research group for graduate students engaged in philosophy or history of the physical sciences. The group discusses physical, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ", + "edges_from": [], + "edges_to": [], + "id": 4568, + "label": "PHIL 286", + "title": "Philosophy of Physics Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "of Philosophy Research and Methods (1\u20132)", + "edges_from": [], + "edges_to": [], + "id": 4569, + "label": "PHIL 281", + "title": "History" + }, + { + "dept": "PHIL", + "description": "This course meets weekly to discuss recent books or articles in philosophy of science. The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 4570, + "label": "PHIL 280", + "title": "Philosophy of Science Topics and Methods (1\u20132)" + }, + { + "dept": "ANTH", + "description": "This graduate seminar examines how racial and ethnic categories are constructed, how contemporary societies manage difference through multicultural policies, and how discourses and institutions of citizenship can act as sites of contestation over inclusion and exclusion. ", + "edges_from": [], + "edges_to": [], + "id": 4571, + "label": "ANTH 206", + "title": "Race, Ethnicity, and Citizenship (4)" + }, + { + "dept": "TMC", + "description": "Individual, independent research, or creative work intended to satisfy Marshall College graduation requirement. Designated for Marshall College students, topics are supervised by Marshall faculty in association with the honors seminar and honors projects. A written application describing the project is required. See Office of the Provost. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4572, + "label": "TMC 199", + "title": "Marshall College Special Project (1\u20134)" + }, + { + "dept": "TMC", + "description": "College Directed Group Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 4573, + "label": "TMC 198", + "title": "Thurgood Marshall" + }, + { + "dept": "CSE", + "description": "This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, Hidden Markov models/support victor machines/neural network/profiles. Protein structure prediction, functional characterization or proteins, functional genomics/proteomics, metabolic pathways/gene networks. Cross-listed with BIMM 184/BENG 184/Chem 184. ", + "edges_from": [ + 4576, + 2053, + 582, + 2055, + 2057, + 2059, + 4575 + ], + "edges_to": [], + "id": 4574, + "label": "CSE 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 5873, + 4574 + ], + "id": 4575, + "label": "BIMM 182", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 5873, + 4574 + ], + "id": 4576, + "label": "BENG 182", + "title": "" + }, + { + "dept": "ANTH", + "description": "This course, intended for first-year anthropology graduate students, examines the contemporary practice of anthropology. We discuss the construction of a multiple-year research project including how to differentiate theory and evidence, the contours of anthropological interest, the question of audience, and rhetorical style. We analyze nine recent ethnographies as possible models for our own practice. ", + "edges_from": [], + "edges_to": [], + "id": 4577, + "label": "ANTH 204", + "title": "Contemporary Anthropology (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4578, + "label": "LTEN 152", + "title": "The Origins of American Literature (4)" + }, + { + "dept": "RELI", + "description": "This seminar requires the intensive analysis of critical problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ", + "edges_from": [ + 2567 + ], + "edges_to": [], + "id": 4579, + "label": "RELI 189", + "title": "Seminar in Religion (4)" + }, + { + "dept": "RELI", + "description": "Students in this lecture will investigate important problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 4580, + "label": "RELI 188", + "title": "Special Topics in Religion (4)" + }, + { + "dept": "HIGR", + "description": "An in-depth examination of selected topics in the history of Jewish people and Jewish civilizations in pre-Islamic times.", + "edges_from": [], + "edges_to": [], + "id": 4581, + "label": "HIGR 264", + "title": "Topics in Pre-Islamic Jewish History (4)" + }, + { + "dept": "ANTH", + "description": "Independent study and research under the direction of a member of the faculty. Student may take this course twice for credit. Please note: majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "edges_from": [ + 4583 + ], + "edges_to": [], + "id": 4582, + "label": "ANTH 199", + "title": "Independent Study (2\u20134)" + }, + { + "dept": "ANPR", + "description": "", + "edges_from": [], + "edges_to": [ + 4582 + ], + "id": 4583, + "label": "ANPR 199", + "title": "" + }, + { + "dept": "ECE", + "description": "Weekly discussion of current research topics in nanoscience and nanotechnology. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4584, + "label": "ECE 297", + "title": "Graduate Seminar in Nanoscience/Nanotechnology (2)" + }, + { + "dept": "COMM", + "description": "Specialized study of communication topics, to be determined by the instructor, for any given quarter. May be taken for credit three times. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4585, + "label": "COMM 113T", + "title": "Intermediate Topics in Communication (4)" + }, + { + "dept": "ANTH", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "edges_from": [ + 4587 + ], + "edges_to": [], + "id": 4586, + "label": "ANTH 198", + "title": "Directed Group Study (2\u20134)" + }, + { + "dept": "ANPR", + "description": "", + "edges_from": [], + "edges_to": [ + 4586 + ], + "id": 4587, + "label": "ANPR 198", + "title": "" + }, + { + "dept": "TDGR", + "description": "Faculty directed production, from the rehearsal process through public performance. All participants will enroll in the same section, the number of units depending upon degree of involvement. ", + "edges_from": [], + "edges_to": [], + "id": 4588, + "label": "TDGR 206", + "title": "Faculty Directed Production (4)" + }, + { + "dept": "ECE", + "description": "Advanced projects in communication systems. Students will plan and implement design projects in the laboratory, updating progress weekly and making plan/design adjustments based upon feedback. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 1473 + ], + "edges_to": [], + "id": 4589, + "label": "ECE 157B", + "title": "Communications Systems Laboratory II (4)" + }, + { + "dept": "COGS", + "description": "Explores tools and processes for innovating novel business concepts to solve problems involving the interaction between humans and technology. Students will work with an interdisciplinary team to understand unmet user needs and to create a value proposition that balances technical feasibility, financial viability, and desirability. ", + "edges_from": [ + 2857, + 3131, + 3292, + 3293, + 4015 + ], + "edges_to": [], + "id": 4590, + "label": "COGS 122", + "title": "Startup Studio (4)" + }, + { + "dept": "VIS", + "description": "A continuation of VIS 105A. A studio course in which the student will investigate a wider variety of technical and conceptual issues involved in contemporary art practice related to drawing. ", + "edges_from": [ + 4592 + ], + "edges_to": [ + 4593 + ], + "id": 4591, + "label": "VIS 105B", + "title": "Drawing: Practices and Genre (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 730 + ], + "edges_to": [ + 4591 + ], + "id": 4592, + "label": "VIS 105A", + "title": "" + }, + { + "dept": "VIS", + "description": "A studio course in drawing, emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ", + "edges_from": [ + 4591 + ], + "edges_to": [], + "id": 4593, + "label": "VIS 105C", + "title": "Drawing: Portfolio Projects (4)" + }, + { + "dept": "LTSP", + "description": "Cross-disciplinary study of late twentieth-century Latino/a-Chicano/a literature, the visual and performing arts, film, or other cultural practices. Specific periods covered will fall between the Kennedy years to the era of neoliberalism and the creation of \u201cHispanic\u201d or Latino identities. May be taken for credit no more than two times. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 4594, + "label": "LTSP 150B", + "title": "Contemporary Chicano/a-Latino/a Cultural Production: 1960 to Present (4)" + }, + { + "dept": "VIS", + "description": "This course treats Chinese calligraphy as a multidimensional point of departure for aesthetic, cultural, and political concerns. This conceptually based course combines fundamental studio exercises with unconventional explorations. Students are exposed to both traditional and experimental forms of this unique art and encouraged to learn basic aesthetic grammars. There are no Chinese language requirements for this course. ", + "edges_from": [ + 730 + ], + "edges_to": [ + 4596 + ], + "id": 4595, + "label": "VIS 105D", + "title": "Art Forms and Chinese Calligraphy (4)" + }, + { + "dept": "VIS", + "description": "This course concerns East\u2013West aesthetic interactions. What are the conceptual possibilities when calligraphy, an ancient form of Chinese art, is combined with installation, a contemporary artistic Western practice? Emphasis is placed on such issues as cultural hybridity, globalization, multiculturalism, and commercialization. ", + "edges_from": [ + 4595 + ], + "edges_to": [], + "id": 4596, + "label": "VIS 105E", + "title": "Chinese Calligraphy as Installation (4)" + }, + { + "dept": "COMM", + "description": "Examine science communication as a profession and unique form of storytelling. Identify who does science communication, how, why, and with what impacts. Highlight science communication\u2019s role in democracy, power, public reason, technological trajectories, the sustainability transition, and shifting university-community relations. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4597, + "label": "COMM 114T CSI: Science Communication (4)", + "title": "" + }, + { + "dept": "ECE", + "description": "Engineering Design Project (4)", + "edges_from": [], + "edges_to": [], + "id": 4598, + "label": "ECE 291", + "title": "Industry Sponsored" + }, + { + "dept": "MAE", + "description": "Each student builds, models, programs, and controls an unstable robotic system built around a small Linux computer. Review/synthesis of: A) modern physical and electrical CAD. B) dynamics, signals and systems, linear circuits; PWMs, H-bridges, quadrature encoders. C) embedded Linux, C, graphical programming; multithreaded applications; bus communication to supporting ICs. D) classical control theory in both continuous-time (CT) and discrete-time (DT); interconnection of CT and DT elements. Program or materials fees may apply. ", + "edges_from": [ + 2824, + 1944, + 2819 + ], + "edges_to": [], + "id": 4599, + "label": "MAE 144", + "title": "Embedded Control and Robotics (4)" + }, + { + "dept": "MAE", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 4600, + "label": "MAE 99H", + "title": "Independent Study (1)" + }, + { + "dept": "ANTH", + "description": "Individually arranged field studies giving practical experience outside the university. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "edges_from": [ + 4602 + ], + "edges_to": [], + "id": 4601, + "label": "ANTH 197", + "title": "Field Studies (4)" + }, + { + "dept": "ANPR", + "description": "", + "edges_from": [], + "edges_to": [ + 4601 + ], + "id": 4602, + "label": "ANPR 197", + "title": "" + }, + { + "dept": "MUS", + "description": "The symphonic masterworks course will consist of lectures and listening sessions devoted to a detailed discussion of a small number of recognized masterworks (e.g., Mozart, Beethoven, Berlioz, Stravinsky, Ligeti, etc.). ", + "edges_from": [], + "edges_to": [], + "id": 4603, + "label": "MUS 9", + "title": "Symphony (4)" + }, + { + "dept": "ETHN", + "description": "This course seeks to develop research skills in historical methods; to understand techniques and tools historians use to create historical narratives using archival and historical sources; and to compare and relate the value of these to ethnic studies research. Students may not receive credit for both ETHN 240 and ETHN 201. ", + "edges_from": [], + "edges_to": [], + "id": 4604, + "label": "ETHN 201", + "title": "Historical Methods and Archives (4)" + }, + { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. May be taken P/NP only. ", + "edges_from": [], + "edges_to": [], + "id": 4605, + "label": "MAE 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "MAE", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4606, + "label": "MAE 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "AUD", + "description": "Detailed anatomy of the auditory and vestibular systems, including the ultra-structure, histology, and neuronal connections of the systems. In addition, physiological responses that underlie the actions of each system are described, from the cellular to the systems levels. ", + "edges_from": [], + "edges_to": [ + 4608 + ], + "id": 4607, + "label": "AUD 255", + "title": "Anatomy and Physiology of the Auditory and Vestibular Systems (4)" + }, + { + "dept": "AUD", + "description": "Physiological and anatomical substrates of auditory and vestibular disorders including influences of neurological disorders. Topics include peripheral and central disorders, congenital disorders due to infections, as well as acquired ototoxic, noise-induced, infective, autoimmune, age-associated disorders, and traumatic disorders. ", + "edges_from": [ + 4607 + ], + "edges_to": [], + "id": 4608, + "label": "AUD 256", + "title": "Pathophysiology of the Auditory and Vestibular Systems (4)" + }, + { + "dept": "AUD", + "description": "Differential diagnosis and treatment of auditory and vestibular disorders, audiological components of neuro-otology, as well as interactions between the audiologist and neuro-otologist in a clinical setting. ", + "edges_from": [], + "edges_to": [], + "id": 4609, + "label": "AUD 257", + "title": "Ear Diseases and Treatment (3)" + }, + { + "dept": "MUS", + "description": "An examination and exploration of the art and science of music making. Topics include acoustics, improvisation, composition, and electronic and popular forms. There will be required listening, reading, and creative assignments. No previous musical background required. ", + "edges_from": [], + "edges_to": [], + "id": 4610, + "label": "MUS 5", + "title": "Sound in Time (4)" + }, + { + "dept": "MUS", + "description": "Lectures and listening sessions devoted to the most significant works of music realized through the use of computers and other electronic devices from the middle of this century through the present. ", + "edges_from": [], + "edges_to": [], + "id": 4611, + "label": "MUS 6", + "title": "Electronic Music (4)" + }, + { + "dept": "MUS", + "description": "Exploration of the interactions among music, science, and technology, including the history and current development of science and technology from the perspective of music. ", + "edges_from": [], + "edges_to": [], + "id": 4612, + "label": "MUS 7", + "title": "Music, Science, and Computers (4)" + }, + { + "dept": "SXTH", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4613, + "label": "SXTH 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "SXTH", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4614, + "label": "SXTH 1", + "title": "First Year Experience (2)" + }, + { + "dept": "MAE", + "description": "Thermodynamics of gases for use in gas dynamics.", + "edges_from": [], + "edges_to": [ + 5812 + ], + "id": 4615, + "label": "MAE 220A", + "title": "Physics of Gases (4)" + }, + { + "dept": "MATS", + "description": "The thermodynamics and statistical mechanics of solids. Basic concepts; equilibrium properties of alloy systems; thermodynamic information from phase diagrams, surfaces, and interfaces; crystalline defects. ", + "edges_from": [], + "edges_to": [], + "id": 4616, + "label": "MATS 201A", + "title": "Thermodynamics of Solids (4)" + }, + { + "dept": "LATI", + "description": "Independent work by graduate students engaged in thesis research and writing under the direct supervision of a faculty adviser.", + "edges_from": [], + "edges_to": [], + "id": 4617, + "label": "LATI 299", + "title": "Independent Research (1\u201312)" + }, + { + "dept": "MGT", + "description": "Students will learn to develop a workforce that performs at the highest level through strategies and practices that recruit productive people, build commitment, foster innovation, and inspire and empower motivated employees to deliver results. Letter grades only. Students may not earn credit for both MGT 426 and MGT 262. Students may not receive credit for both MGT 426 and MGT 269 with the course subtitle Creating a High-Performing Workplace. ", + "edges_from": [], + "edges_to": [], + "id": 4618, + "label": "MGT 426", + "title": "Creating a High-Performing Workplace (2)" + }, + { + "dept": "VIS", + "description": "Workshop for PhD in Art Practice concentration students cotaught by PhD and MFA faculty offering extensive evaluation and critique of work. Intended to explore issues associated with artistic practice as a form of research in a university setting. Course is only applicable to VA76 and VA77 PhD programs. PhD students with a concentration in Art Practice my take VIS 207 each year until they qualify for candidacy.", + "edges_from": [], + "edges_to": [], + "id": 4619, + "label": "VIS 207", + "title": "Working Practice for Art Practice PhDs (4)" + }, + { + "dept": "VIS", + "description": "Seminar examines the interrelationship between theory and practice and the nature of artistic production as a form of research. ", + "edges_from": [], + "edges_to": [], + "id": 4620, + "label": "VIS 206", + "title": "Seminar in Art Practice Research (4)" + }, + { + "dept": "VIS", + "description": "to Graduate Studies in Art Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 4621, + "label": "VIS 205", + "title": "Introduction" + }, + { + "dept": "VIS", + "description": "Critical evaluation of the methods, practices, and disciplinary commitments of art history, encompassing both revisionist interventions of the late-twentieth century and earlier paradigms, in order to envision new discipline-specific and interdisciplinary directions for the future of art history and visual culture. (Required, PhD)", + "edges_from": [], + "edges_to": [], + "id": 4622, + "label": "VIS 204", + "title": "Rethinking Art History (4)" + }, + { + "dept": "VIS", + "description": "Workshop in which students engage in an extensive evaluation of one another\u2019s ongoing work in preparation for either the First Year Review or MFA Review. Offered every winter. May be taken for credit two times (Required, MFA)", + "edges_from": [], + "edges_to": [], + "id": 4623, + "label": "VIS 203", + "title": "Working Critique (4)" + }, + { + "dept": "VIS", + "description": "A workshop/seminar devoted to a particular materials practice (e.g., media, painting, digital media, etc.) that engages with critical questions arising within that discipline. Content will vary from quarter to quarter. May be taken for credit two times. (Required, MFA)", + "edges_from": [], + "edges_to": [], + "id": 4624, + "label": "VIS 202", + "title": "Art Practice (4)" + }, + { + "dept": "VIS", + "description": "An exploration of a range of issues important on the contemporary critical scene through readings and writing assignments. Topics will vary from year to year. (Required, MFA)", + "edges_from": [], + "edges_to": [], + "id": 4625, + "label": "VIS 201", + "title": "Contemporary Critical Issues (4)" + }, + { + "dept": "VIS", + "description": "This course includes research and discussion of the required thesis for MFA candidates in visual arts. Advancement to candidacy required. A draft of the MFA thesis paper is required to complete this course. (Required, MFA).", + "edges_from": [], + "edges_to": [], + "id": 4626, + "label": "VIS 209", + "title": "Thesis Writing (4)" + }, + { + "dept": "LTFR", + "description": "First course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. Basic techniques of literary analysis. ", + "edges_from": [ + 2544, + 2543 + ], + "edges_to": [ + 4629 + ], + "id": 4627, + "label": "LTFR 2A", + "title": "Intermediate French I (5)" + }, + { + "dept": "LTFR", + "description": "French III: Composition and Cultural Contexts (4)", + "edges_from": [], + "edges_to": [], + "id": 4628, + "label": "LTFR 2C", + "title": "Intermediate" + }, + { + "dept": "LTFR", + "description": "Second course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. Basic techniques of literary analysis. ", + "edges_from": [ + 4627 + ], + "edges_to": [ + 5173 + ], + "id": 4629, + "label": "LTFR 2B", + "title": "Intermediate French II (5)" + }, + { + "dept": "HIEU", + "description": "Examines problems surrounding the transfer of American culture, values, and styles to Europe in the twentieth and twenty-first centuries. Topics may include: consumer society, popular culture, commercial and business practices, \u201cMcDonaldization,\u201d political and military influence, democratization, and resistance to Americanization. Students may not receive credit for both HIEU 117S and HIEU 118.", + "edges_from": [], + "edges_to": [], + "id": 4630, + "label": "HIEU 118", + "title": "Americanization in Europe (4)" + }, + { + "dept": "LTIT", + "description": "Analysis of Italian essays, journalism, literature. Intensive practice in writing and Italian conversation. ", + "edges_from": [ + 4289 + ], + "edges_to": [], + "id": 4631, + "label": "LTIT 161", + "title": "Advanced Stylistics and Conversation (4)" + }, + { + "dept": "HIEU", + "description": "The development of European society and culture from 1050 to 1400. +", + "edges_from": [], + "edges_to": [], + "id": 4632, + "label": "HIEU 111", + "title": "Europe in the Middle Ages (4)" + }, + { + "dept": "HIEU", + "description": "The development of European society and culture", + "edges_from": [], + "edges_to": [], + "id": 4633, + "label": "HIEU 110", + "title": "The Rise of Europe (4)" + }, + { + "dept": "EDS", + "description": "A yearlong course sequence, which provides an extensive overview of curriculum, design principles appropriate for K\u201312 instruction. Consensus and model building methods will be discussed using case studies of curriculum research and development projects appropriate for various subject areas and grade levels. Participants will design, implement, and evaluate a curriculum project in their own classrooms. ", + "edges_from": [], + "edges_to": [], + "id": 4634, + "label": "EDS 230A-B-C", + "title": "Research in Curriculum Design (4-4-4)" + }, + { + "dept": "HIEU", + "description": "The year 2000 provokes questions about the transformation of time, culture, and society. Taking the year 1000 as a touchstone, this class examines the history of apocalyptic expectations in the Middle Ages through a close scrutiny of both texts and art.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4635, + "label": "HIEU 115", + "title": "The Pursuit of the Millennium (4)" + }, + { + "dept": "HINE", + "description": "The Jews outside their homeland and in pre-Islamic times, concentrating on the Greco-Roman West and the Parthian-Sasanian East. Topics include assimilation and survival; anti-Semitism and missionizing; patterns of organization and autonomy; cultural and religious developments.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4636, + "label": "HINE 103", + "title": "The Jewish Diaspora in Antiquity (4)" + }, + { + "dept": "HINE", + "description": "Jews in Their Homeland in Antiquity (4)", + "edges_from": [], + "edges_to": [], + "id": 4637, + "label": "HINE 102", + "title": "The" + }, + { + "dept": "HINE", + "description": "Based on biblical and nonbiblical sources, a reconstruction of Israelite institutions, beliefs, and practices and their evolution over time.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4638, + "label": "HINE 101", + "title": "The Religion of Ancient Israel (4)" + }, + { + "dept": "HINE", + "description": "The history and literature of ancient Israel c. 1300 to 300 BCE. Reading from the Bible, historical and archaeological surveys, and studies of authorship.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4639, + "label": "HINE 100", + "title": "The Hebrew Bible and History (4)" + }, + { + "dept": "HINE", + "description": "Cross-listed with JUDA 136. This course examines biblical attitudes toward hetero- and homosexuality, rape, incest, bestiality, prostitution, marriage, and adultery in a variety of texts drawn from the Old Testament.", + "edges_from": [], + "edges_to": [], + "id": 4640, + "label": "HINE 104", + "title": "Sex in the Bible (4)" + }, + { + "dept": "BGGN", + "description": "To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. Second course in series. ", + "edges_from": [], + "edges_to": [], + "id": 4641, + "label": "BGGN 238B", + "title": "Integrative Microbiology II (4)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Portuguese, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 4642, + "label": "LIGN 511", + "title": "Apprentice Teaching of Portuguese (1\u20134)" + }, + { + "dept": "HINE", + "description": "A survey of the history of the Middle East, in particular, the Ottoman Empire, from 1200\u20131800. The course examines the emergence of a new political and religious order following the Mongol conquests and its long-lasting effect on the region. +", + "edges_from": [], + "edges_to": [], + "id": 4643, + "label": "HINE 109", + "title": "History of the Middle East (1200\u20131800): The Ottoman Empire (4)" + }, + { + "dept": "HINE", + "description": "The peoples, politics, and cultures of Southwest Asia and Egypt from the sixth century BCE to the seventh century CE. The Achemenid Empire, the Ptolemaic and Seleucid kingdoms, the Roman Orient, the Parthian and Sasanian states.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4644, + "label": "HINE 108", + "title": "The Middle East before Islam (4)" + }, + { + "dept": "LIGN", + "description": "Persian (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4645, + "label": "LIGN 514", + "title": "Apprentice Teaching of Heritage" + }, + { + "dept": "LIGN", + "description": "Filipino (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4646, + "label": "LIGN 515", + "title": "Apprentice Teaching of Heritage" + }, + { + "dept": "MUS", + "description": "Advanced instrumental/vocal preparation for senior music majors pursuing honors in performance. Repertoire for a solo recital will be developed under the direction of the appropriate instrumental/vocal faculty member. Special audition required during Welcome Week preceding fall quarter. ", + "edges_from": [ + 4451 + ], + "edges_to": [], + "id": 4647, + "label": "MUS 132R", + "title": "Recital Preparation (4)" + }, + { + "dept": "ECE", + "description": "This course covers modern research topics in sub-100 nm scale, state-of-the-art silicon VLSI devices. Starting with the fundamentals of CMOS scaling to nanometer dimensions, various advanced device and circuit concepts, including RF CMOS, low power CMOS, silicon memory, silicon-on-insulator, SiGe bipolar, strained silicon MOSFET\u2019s, etc. will be taught. The physics of nearballistic transport in an ultimately scaled 10 nm MOSFET will be discussed in light of the recently developed scattering theory. ", + "edges_from": [], + "edges_to": [], + "id": 4648, + "label": "ECE 235", + "title": "Nanometer-Scale VLSI Devices (4)" + }, + { + "dept": "MUS", + "description": "Individual instruction on intermediate level in vocal technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in MUS 32VM. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4649, + "label": "MUS 32V", + "title": "Vocal Instruction (1)" + }, + { + "dept": "COMM", + "description": "This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 4650, + "label": "COMM 183", + "title": "Global Economy and Consumer Culture (4)" + }, + { + "dept": "MUS", + "description": "Individual instruction in advanced vocal coaching. Emphasis placed on diction and musical issues. For declared music majors and minors. Students must be simultaneously enrolled in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ", + "edges_from": [ + 3191 + ], + "edges_to": [], + "id": 4651, + "label": "MUS 132C", + "title": "Vocal Coaching (4)" + }, + { + "dept": "PHYS", + "description": "An advanced survey of topics in physical cosmology. The Friedmann models and the large-scale structure of the universe, including the observational determination of Ho (the Hubble constant) and qo (the deceleration parameter). Galaxy number counts. A systematic exposition of the physics of the early universe, including vacuum phase transitions; inflation; the generation of net baryon number, fluctuations, topological defects and textures. Primordial nucleosynthesis, both standard and nonstandard models. Growth and decay of adiabatic and isocurvature density fluctuations. Discussion of dark matter candidates and constraints from observation and experiment. Nucleocosmo-chronology and the determination of the age of the universe.", + "edges_from": [], + "edges_to": [], + "id": 4652, + "label": "PHYS 227", + "title": "Cosmology (4)" + }, + { + "dept": "HIUS", + "description": "Colloquium on select topics in culture and politics in the United States. Topics will vary from quarter to quarter. Graduate students will be required to submit an additional piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 4653, + "label": "HIUS 188/288", + "title": "Topics in Culture and Politics (4)" + }, + { + "dept": "FMPH", + "description": "This course covers the rationale for and effectiveness of policies to influence nutrition, physical activity, and substance use behavior. Policies include legalization, taxation, labeling, produce manufacturing, warning labels, licensing, marketing, and counter-marketing practices and restrictions on use. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 120. Students may not receive credit for FPMU 120 and FMPH 120. ", + "edges_from": [ + 1024 + ], + "edges_to": [ + 5108 + ], + "id": 4654, + "label": "FMPH 120", + "title": "Health Policies for Healthy Lifestyles (4)" + }, + { + "dept": "BENG", + "description": "Laboratory research rotation for first-year BENG PhD students. Students will write a final paper. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4655, + "label": "BENG 298L", + "title": "Laboratory Research Rotation (4)" + }, + { + "dept": "COMM", + "description": "Considers globalization\u2019s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 4656, + "label": "COMM 184", + "title": "Global Nature/Global Culture (4)" + }, + { + "dept": "VIS", + "description": "This course investigates the multiple realities of art and visual culture in twentieth-century China and explores the ways in which Chinese artists have defined modernity and their tradition against the complex background of China\u2019s history. ", + "edges_from": [], + "edges_to": [], + "id": 4657, + "label": "VIS 127GS", + "title": "Issues in Modern and Contemporary Chinese Art (4)" + }, + { + "dept": "ANSC", + "description": "This course introduces students to the medical anthropology of South Asia. This course will be divided into two parts. First, we will analyze how religious, cultural, political, and economic structures impact health and well-being. Second, we will look at ethnomedicine, that is, how local systems of healing provide alternative ideas of illness and health. Program or materials fees may apply. ", + "edges_from": [ + 160, + 161, + 162, + 164, + 165, + 1928, + 4659, + 4660, + 1210 + ], + "edges_to": [], + "id": 4658, + "label": "ANSC 190GS", + "title": "Medicine and Healing in South Asia (4)" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 4658 + ], + "id": 4659, + "label": "ANSC 146", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 4658 + ], + "id": 4660, + "label": "ANSC 147", + "title": "" + }, + { + "dept": "BILD", + "description": "This course will examine diversity, equity, and inclusion beginning with a biological framework. Focus will be on how underlying biological differences have been used to support bias and prejudice against particular groups such as women, African Americans, and Latinos. This course is approved to meet the campus Diversity, Equity, and Inclusion (DEI) requirement. ", + "edges_from": [ + 1424, + 954, + 1013 + ], + "edges_to": [], + "id": 4661, + "label": "BILD 60", + "title": "Exploring Issues of Diversity, Equity, and Inclusion in Relation to Human Biology (4)" + }, + { + "dept": "MATH", + "description": "Fourier series, orthogonal expansions, and eigenvalue problems.", + "edges_from": [], + "edges_to": [], + "id": 4662, + "label": "MATH 110A", + "title": "Introduction to Partial Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "Equations (4)", + "edges_from": [], + "edges_to": [], + "id": 4663, + "label": "MATH 110B", + "title": "Elements of Partial Differential Equations and Integral" + }, + { + "dept": "LTEA", + "description": "Research seminars and research, under the direction of a faculty member. May be taken up to three times for credit. (P/NP grades only)", + "edges_from": [], + "edges_to": [], + "id": 4664, + "label": "LTEA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTEA", + "description": "Tutorial; individual guided reading in areas not normally covered in courses. (P/NP grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4665, + "label": "LTEA 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "MGT", + "description": "Covers cost accumulation and analysis, for both manufacturing", + "edges_from": [], + "edges_to": [], + "id": 4666, + "label": "MGT 133", + "title": "Advanced Cost Accounting (4)" + }, + { + "dept": "MGT", + "description": "Covers the theory and practical", + "edges_from": [], + "edges_to": [], + "id": 4667, + "label": "MGT 135", + "title": "Federal Taxation\u2014Companies (4)" + }, + { + "dept": "MGT", + "description": "Covers theory and practical application of federal income", + "edges_from": [], + "edges_to": [], + "id": 4668, + "label": "MGT 134", + "title": "Federal Taxation\u2014Individuals (4)" + }, + { + "dept": "MGT", + "description": "Develop an understanding of transaction cycles (e.g., sales order and purchase order processing) with a focus on processing steps, internal controls, and data used. Gain hands-on experience developing flowcharts, processing transactions in a manual accounting information system, and analyzing transaction data using Microsoft Excel and other tools. ", + "edges_from": [ + 2061 + ], + "edges_to": [], + "id": 4669, + "label": "MGT 139", + "title": "Accounting Information Systems (4)" + }, + { + "dept": "LTGM", + "description": "The development of major forms and modes of German literary prose. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4670, + "label": "LTGM 130", + "title": "German Literary Prose (4)" + }, + { + "dept": "LTGM", + "description": "The development of major forms and modes of German verse. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4671, + "label": "LTGM 132", + "title": "German Poetry (4)" + }, + { + "dept": "LTGM", + "description": "A survey of German cinema from the late 1960s to the early 1980s. Focus on films by such directors as Fassbinder, Herzog, Kluge, Schl\u04e7ndorff, von Trotta, and Wenders viewed in historical and cultural context. May be taken credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4672, + "label": "LTGM 134", + "title": "New German Cinema (4)" + }, + { + "dept": "TDHT", + "description": "Experience firsthand New York history as a performing arts cultural capital. In addition to studying New York performance history and literature, attend performances accompanied by lecture/discussion. Get backstage tours, meet important players, and learn how productions go from vision to reality. Program or materials fees may apply. Contact the Department of Theatre and Dance for application for TDHT 190. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4673, + "label": "TDHT 190", + "title": "The New York Theatre and Dance Scene (4)" + }, + { + "dept": "GPPS", + "description": "This course examines the political economy of energy in Asia across a number of key themes, including the interaction between the economics and politics of energy markets, the search for energy security through cooperation and competition, the challenges of managing difficult energy policy choices and trade-offs, and the challenges of sustainable energy development. Emphasis will be placed on the oil industry and its pivotal role in global energy use, pricing, and geopolitics. Renumbered from IRGN 473. Students may not receive credit for GPPS 473 and IRGN 473.", + "edges_from": [], + "edges_to": [], + "id": 4674, + "label": "GPPS 473", + "title": "Political Economy of Energy in Asia (4)" + }, + { + "dept": "GPPS", + "description": "This course involves intense engagement with original Chinese sources as a way to explore the evolution of the Chinese Communist Party and the contemporary Chinese economy. Students will be exposed to government, media, and statistical sources. Recommended preparation: At least second-year, college-level proficiency in Mandarin Chinese is expected. Renumbered from IRGN 476. Students may not receive credit for GPPS 476 and IRGN 476.", + "edges_from": [], + "edges_to": [], + "id": 4675, + "label": "GPPS 476", + "title": "Chinese Sources and Methods (4)" + }, + { + "dept": "GPPS", + "description": "Overview of Latin American politics and the \u201crules of the game,\u201d both formal and informal. Key topics include military rule, presidentialism, and clientelism in the region as a whole, with special emphasis on Argentina, Brazil, Chile, and Mexico. Renumbered from IRGN 479. Students may not receive credit for GPPS 479 and IRGN 479.", + "edges_from": [], + "edges_to": [], + "id": 4676, + "label": "GPPS 479", + "title": "Politics and Institutions in Latin America (4)" + }, + { + "dept": "GPPS", + "description": "Examines the domestic and strategic sources of Japan\u2019s foreign policy in the postwar era. Unlike IRGN 460, this course emphasizes Japan\u2019s foreign economic policy in regional and global multilateral organizations, and the major security issues it confronts with its Asian neighbors. Renumbered from IRGN 478. Students may not receive credit for GPPS 478 and IRGN 478.", + "edges_from": [], + "edges_to": [], + "id": 4677, + "label": "GPPS 478", + "title": "Japanese Foreign Policy (4)" + }, + { + "dept": "LTEN", + "description": "New American Fiction\u2014Post-World War II to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 4678, + "label": "LTEN 175A", + "title": "" + }, + { + "dept": "LTEN", + "description": "New American Poetry\u2014Post-World War II to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 4679, + "label": "LTEN 175B", + "title": "" + }, + { + "dept": "CHEM", + "description": "Classical kinetics, transition state theory, unimolecular decomposition,", + "edges_from": [], + "edges_to": [], + "id": 4680, + "label": "CHEM 231", + "title": "Chemical Kinetics and Molecular Reaction Dynamics (4)" + }, + { + "dept": "VIS", + "description": "This course will explore the path of the deliberately \u201cunreal\u201d in movies. Fantasy in film will be considered both in terms of its psychological manifestations and also in terms of imaginary worlds created in such willfully antirealistic genres as science fiction, horror, and musical films. Offered in Summer Session only. Program or materials fees may apply. May be taken for credit three times. ", + "edges_from": [ + 1657 + ], + "edges_to": [], + "id": 4681, + "label": "VIS 194S", + "title": "Fantasy in Film (4)" + }, + { + "dept": "CSE", + "description": "to Synthesis Methodologies in VLSI CAD (4)", + "edges_from": [], + "edges_to": [], + "id": 4682, + "label": "CSE 243A", + "title": "Introduction" + }, + { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of American politics. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 4683, + "label": "POLI 259", + "title": "Special Topics in American Politics (4)" + }, + { + "dept": "POLI", + "description": "This course is designed to acquaint graduate students with the central themes and issues in the study of voting in national elections. ", + "edges_from": [], + "edges_to": [], + "id": 4684, + "label": "POLI 257", + "title": "Voting and Elections (4)" + }, + { + "dept": "MATH", + "description": "Group actions, factor groups, polynomial rings, linear algebra, rational and Jordan canonical forms, unitary and Hermitian matrices, Sylow theorems, finitely generated abelian groups, unique factorization, Galois theory, solvability by radicals, Hilbert Basis Theorem, Hilbert Nullstellensatz, Jacobson radical, semisimple Artinian rings. ", + "edges_from": [], + "edges_to": [], + "id": 4685, + "label": "MATH 200A-B-C", + "title": "Algebra (4-4-4)" + }, + { + "dept": "POLI", + "description": "Examines central works on the development of political institutions in US cities; analyses of community power structures; who governs, why, and to what ends; processes and prospects for minority empowerment; the prominence of \u201cgrowth machines\u201d; the political economy of contemporary cities. ", + "edges_from": [], + "edges_to": [], + "id": 4686, + "label": "POLI 255", + "title": "Urban Politics (4)" + }, + { + "dept": "POLI", + "description": "This course examines the historical evolution of the American state with particular attention to theories of political development. Special topics include the development of the party system, electoral and policy realignments, and the evolution of national political institutions. ", + "edges_from": [], + "edges_to": [], + "id": 4687, + "label": "POLI 254", + "title": "American Political Development (4)" + }, + { + "dept": "POLI", + "description": "This seminar will survey the existing literature in state politics with an eye toward proposing new research designs. Topics will include the variation across states in electoral systems, campaign finance laws, political culture, legislative institutions, judicial arrangements, and policy outcomes. ", + "edges_from": [], + "edges_to": [], + "id": 4688, + "label": "POLI 253", + "title": "Research in State Politics (4)" + }, + { + "dept": "POLI", + "description": "Theoretical and empirical perspectives on voting and other forms of political participation, parties, interest groups, and public opinion in the United States. ", + "edges_from": [], + "edges_to": [], + "id": 4689, + "label": "POLI 252", + "title": "American Politics: Behavior (4)" + }, + { + "dept": "POLI", + "description": "A critical examination of major contributions to the theoretical and empirical literature on the US Congress, presidency, and federal bureaucracy. ", + "edges_from": [], + "edges_to": [], + "id": 4690, + "label": "POLI 251", + "title": "American Political Institutions (4)" + }, + { + "dept": "FPM", + "description": "An introduction to the history and epidemiology of work-related disease. A review of occupational-related health problems, i.e., heart disease, pneumoconiosis, peripheral neuropathy, sterility, birth defects, psychiatric problems. Emphasis on the occupational history in the diagnosis of job-related disease and disability. Major modalities of prevention and control will be presented and the role of health practitioners, government, management and labor will be reviewed. The course will include guest lecturers, films, videotapes and field visits to local industries and/or clinicians treating occupational diseases. ", + "edges_from": [ + 4692 + ], + "edges_to": [], + "id": 4691, + "label": "FPM 246", + "title": "Occupational/Environmental Health (2)" + }, + { + "dept": "SM", + "description": "", + "edges_from": [], + "edges_to": [ + 4691 + ], + "id": 4692, + "label": "SM 208", + "title": "" + }, + { + "dept": "FPM", + "description": "This seminar is designed to expand the student\u2019s understanding of clinical epidemiology by investigating several major controversial issues, such as treatment of breast cancer, oral hypoglycemic in diabetes, and dietary habits as a risk factor for coronary artery disease. The seminar will address clinical and methodological issues in the epidemiology of various chronic diseases.", + "edges_from": [], + "edges_to": [], + "id": 4693, + "label": "FPM 247", + "title": "Clinical Epidemiology Seminar (2)" + }, + { + "dept": "FPM", + "description": "(Cross-listed with MED 248) Integrated clinical and public health experience with US and Mexican graduate student and faculty teams over three to four days in Baja California, Mexico; emphasis on common clinical and public health problems in underserved populations. Minimal working knowledge of Spanish recommended. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4694, + "label": "FPM 244", + "title": "Clinical and Public Health Elective, Baja California, Mexico (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 4695, + "label": "Linguistics/Heritage Languages (LIHL) 139W", + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 4696, + "label": "Linguistics/Heritage Languages (LIHL) 139P", + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + { + "dept": "COGR", + "description": "History, politics, social organization, and ideology of the American news media. Special attention will be paid to: historical origins of journalism as a profession and \u201cobjective reporting\u201d as ideology; empirical studies of print and TV journalism as social institutions; and news coverage of Vietnam and its implications for theories of the news media.", + "edges_from": [], + "edges_to": [], + "id": 4697, + "label": "COGR 220", + "title": "The News Media (4)" + }, + { + "dept": "COGR", + "description": "This course examines the legal and policy framework for free speech in the United States. We cover First Amendment case law, free speech theory, copyright, and the different legal and regulatory treatment historically accorded print, broadcasting, cable television, telephone, and Internet. ", + "edges_from": [], + "edges_to": [], + "id": 4698, + "label": "COGR 223", + "title": "Communication Law and Policy (4)" + }, + { + "dept": "Soc/G", + "description": "Advanced Approaches to Science Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 4699, + "label": "Soc/G 255D", + "title": "" + }, + { + "dept": "Soc/G", + "description": "(Same as Phil 209C, HIGR 240, and COGR 225C.) A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required of all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 4700, + "label": "Soc/G 255C", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "Soc/G", + "description": "(Same as Phil 209B, HIGR 239, and COGR 225B.) Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 4701, + "label": "Soc/G 255B", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "Soc/G", + "description": "(Same as Phil 209A, HIGR 238, and COGR 225A.) Study and discussion of classic work in history of science, sociology of science, and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 4702, + "label": "Soc/G 255A", + "title": "Introduction to Science Studies (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 4703, + "label": "Linguistics/Heritage Languages (LIHL) 139F", + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + { + "dept": "LTEU", + "description": "An introduction to Russia\u2019s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present.", + "edges_from": [], + "edges_to": [], + "id": 4704, + "label": "LTEU 154", + "title": "Russian Culture (4)" + }, + { + "dept": "MATS", + "description": "Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment, material-processing-microstructure interaction, materials selection, form and quality control. Extrusion, injection molding, blow molding, compression molding, thermoforming, casting, foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. (Cross-listed with SE 251A.)\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4705, + "label": "MATS 261A", + "title": "Processing of Polymers and Composites (4)" + }, + { + "dept": "MATS", + "description": "Material-science oriented course on polymers and composites. Mechanical properties of polymers; micromechanisms of elastic and plastic deformations, fracture, and fatigue of polymers and composites. (Cross-listed with SE 251B.)\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4706, + "label": "MATS 261B", + "title": "Mechanical Behavior of Polymers and Composites (4)" + }, + { + "dept": "SOCI", + "description": "Methods for interpreting diaries, letters, and testaments written by victims and perpetrators of the Holocaust. Students use these sources for original research about life in hiding, ghettos, and death camps. Includes techniques for making comparisons and for generalizing from evidence. ", + "edges_from": [ + 2979, + 4708, + 4707, + 591 + ], + "edges_to": [ + 4707 + ], + "id": 4707, + "label": "SOCI 106M", + "title": "Holocaust Diaries (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 4707 + ], + "id": 4708, + "label": "SOCA 106M", + "title": "" + }, + { + "dept": "PSYC", + "description": "This seminar provides a selective overview of the scientific study of emotion. We will discuss various theoretical perspectives on emotion and will focus on specific topics such as emotion regulation, affect in social interactions, individual differences, and particular emotions (e.g., embarrassment, envy, and jealousy). ", + "edges_from": [], + "edges_to": [], + "id": 4709, + "label": "PSYC 205", + "title": "Emotion (4)" + }, + { + "dept": "COMM", + "description": "This course examines the ways in which various communicative channels mediate human action and thought. A basic premise of the course is that human thought is shaped in important ways by the communicative devices used to communicate. There is a particular emphasis on how thought develops, both historically and in the individual. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4710, + "label": "COMM 110T", + "title": "LLC: Language, Thought, and Media (4)" + }, + { + "dept": "HIUS", + "description": "Examines key periods, events, and processes throughout the twentieth century that shaped the way Americans thought about race. Also examines the historical development of the category of race and racism, as well as how it is lived in everyday life.", + "edges_from": [], + "edges_to": [], + "id": 4711, + "label": "HIUS 126", + "title": "The History of Race in the United States (4)" + }, + { + "dept": "ETHN", + "description": "Independent study to complete an honors thesis under the supervision of a faculty member who serves as thesis adviser. ", + "edges_from": [ + 3320, + 628, + 3319 + ], + "edges_to": [], + "id": 4712, + "label": "ETHN 196H", + "title": "Honors Thesis\u00a0(4)" + }, + { + "dept": "LATI", + "description": "Introductory survey of methods used by social and health scientists to gather primary research data on international migrant and refugee populations, including sample surveys, unstructured interviewing, and ethnographic observation. Basic fieldwork practices, ethics, and problem-solving techniques will also be covered. Students may not receive credit for both SOCI 122A and LATI 122A. Recommended: advanced competency in conversational Spanish. ", + "edges_from": [], + "edges_to": [ + 5789 + ], + "id": 4713, + "label": "LATI 122A", + "title": "Field Research Methods for Migration Studies: Seminar (4)" + }, + { + "dept": "HIUS", + "description": "A lecture-discussion course utilizing written texts and films to explore major themes in American politics and culture from the Great Depression through the 1990s. Topics will include the wars of America, McCarthyism, the counter-culture of the 1960s, and the transformation of race and gender relations.", + "edges_from": [], + "edges_to": [], + "id": 4714, + "label": "HIUS 122", + "title": "History and Hollywood: America and the Movies since the Great Depression (4)" + }, + { + "dept": "HIUS", + "description": "Topics will include Quaker origins of the American peace movements and examples of opposition to wars in the twentieth century from World Wars I and II, Vietnam, anti-nuclear movements, and intervention in Central America to Iraq.", + "edges_from": [], + "edges_to": [], + "id": 4715, + "label": "HIUS 120", + "title": "Peace Movements in America (4)" + }, + { + "dept": "LTWR", + "description": "Hybrid workshop offering writing students a working knowledge of literary theory while exposing literature students to practical techniques from poetry, fiction, and nonfiction to refresh their writing of theoretical nonfiction texts. Discussion of student work and published work. ", + "edges_from": [], + "edges_to": [], + "id": 4716, + "label": "LTWR 148", + "title": "Theory for Writers/Writing for Theory (4)" + }, + { + "dept": "HIUS", + "description": "This course sketches the shifting experience persons of African descent have had with the law in the United States. Films, cases, articles, and book excerpts are used to convey the complex nature of this four-hundred-year journey.", + "edges_from": [], + "edges_to": [], + "id": 4717, + "label": "HIUS 128", + "title": "African American Legal History (4)" + }, + { + "dept": "LTKO", + "description": "in Korean Literature and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 4718, + "label": "LTKO 100", + "title": "Readings" + }, + { + "dept": "CHIN", + "description": "Further continuation course of basic", + "edges_from": [], + "edges_to": [], + "id": 4719, + "label": "CHIN 10CD", + "title": "First Year Chinese\u2014Dialect speakers III (5)" + }, + { + "dept": "CHIN", + "description": "Continuation course of basic Chinese", + "edges_from": [], + "edges_to": [], + "id": 4720, + "label": "CHIN 10CN", + "title": "First Year Chinese\u2014Non-native speakers III (5)" + }, + { + "dept": "CHIN", + "description": "Further continuation course of basic", + "edges_from": [], + "edges_to": [], + "id": 4721, + "label": "CHIN 10CM", + "title": "First Year Chinese\u2014Mandarin speakers III (5)" + }, + { + "dept": "MGT", + "description": "Students will use latest research in management, marketing, finance, strategy, and operations to analyze current business problems posed by real companies and will recommend to senior management strategies that resolve the problem(s) presented in the project. Students may not earn credit for both MGT464 and MGT224. Students may not receive credit for both MGT 224 and MGT 221 Topics in Innovation with the course subtitle Projects in Business Innovation. ", + "edges_from": [], + "edges_to": [], + "id": 4722, + "label": "MGT 464", + "title": "Projects in Business Innovation (4)" + }, + { + "dept": "MGT", + "description": "This elective engages students in the process of commercializing technology through experiential learning. Students will gain an increased understanding of commercialization, including introducing a new product into the market, customer development, and market selection. Students will be required to incorporate the latest research methods for identifying customers, analyzing markets, and developing strategies for market entry and growth. Lectures and a student group project will be conducted. Students may not earn credit for both MGT 463 and MGT 223. Also, students may not receive credit for both MGT 463 and MGT 221 Topics in Innovation course with the subtitle Projects in Technology Commercialization. ", + "edges_from": [], + "edges_to": [], + "id": 4723, + "label": "MGT 463", + "title": "Projects in Technology Commercialization (4)" + }, + { + "dept": "CHEM", + "description": "With CHEM 130 and 131, CHEM 132 is part of the Physical Chemistry sequence taught over three quarters. Recommended as the third course of the sequence. Key topics covered in this course include chemical statistics, kinetic theory, and reaction kinetics. ", + "edges_from": [ + 444, + 445, + 3343 + ], + "edges_to": [ + 5819 + ], + "id": 4724, + "label": "CHEM 132", + "title": "Chemical Physics: Stat Thermo II (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in accounting. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not receive credit for both MGT 239 and MGT 469. ", + "edges_from": [], + "edges_to": [], + "id": 4725, + "label": "MGT 469", + "title": "Topics in Accounting (2 or 4)" + }, + { + "dept": "TDGE", + "description": "This course will use the theatrical context to integrate scientific research about creativity, group dynamics, and related topics. Through a mix of theoretical and experiential classes and assignments, we will explore the intersection of theatre and neuroscience, investigating and expanding the creative mind. ", + "edges_from": [], + "edges_to": [], + "id": 4726, + "label": "TDGE 3", + "title": "Cultivating the Creative Mind (4)" + }, + { + "dept": "CHEM", + "description": "Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena, and the density matrices. Instrumentation, measurement, and interpretation. May be coscheduled with CHEM 235. Prior or concurrent enrollment in CHEM 105A recommended. ", + "edges_from": [ + 135, + 444, + 447, + 3343 + ], + "edges_to": [], + "id": 4727, + "label": "CHEM 135", + "title": "Molecular Spectroscopy (4)" + }, + { + "dept": "CHEM", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine. Students may not receive credit for both CENG 134, CHEM 134, or NANO 134. ", + "edges_from": [ + 30, + 215 + ], + "edges_to": [], + "id": 4728, + "label": "CHEM 134", + "title": "Polymeric Materials (4)" + }, + { + "dept": "AWP", + "description": "This course will introduce critical thinking, reading, writing, speaking, and listening practices appropriate to college-level work. It will prepare students who may not be familiar with the learning expectations of American universities to fully join the academic conversation. Students may not receive credit for AWP 10 and LTWR 4.", + "edges_from": [], + "edges_to": [], + "id": 4729, + "label": "AWP 10", + "title": "Language and Learning in the American Academy (4)" + }, + { + "dept": "HIEA", + "description": "Selected topics in East Asian History. Course may be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4730, + "label": "HIEA 144", + "title": "Topics in East Asian History (4)" + }, + { + "dept": "HIEA", + "description": "Examines China\u2019s attempts to manage the movements of people, ideas, and trade across its borders since 1900. How much control do individual countries such as China have over global processes? Special emphasis will be placed on global contexts and the impacts of China\u2019s decision to reintegrate its society and economy with capitalist countries since 1978. Recommended preparation: previous course work on China helpful but not required.", + "edges_from": [], + "edges_to": [], + "id": 4731, + "label": "HIEA 140", + "title": "China since 1978 (4)" + }, + { + "dept": "MATH", + "description": "Various topics in topology. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 4732, + "label": "MATH 292", + "title": "Seminar in Topology (1)" + }, + { + "dept": "MATH", + "description": "An enrichment program that provides work experience with public/private sector employers and researchers. Under supervision of a faculty adviser, students provide mathematical consultation services. ", + "edges_from": [], + "edges_to": [], + "id": 4733, + "label": "MATH 297", + "title": "Mathematics Graduate Research Internship (2\u20134)" + }, + { + "dept": "MATH", + "description": "A variety of advanced topics and current research in mathematics will be presented by department faculty. (S/U grades only.) May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 4734, + "label": "MATH 296", + "title": "Graduate Student Colloquium (1)" + }, + { + "dept": "MATH", + "description": "A variety of topics and current research results in mathematics will be presented by staff members and students under faculty direction.", + "edges_from": [], + "edges_to": [], + "id": 4735, + "label": "MATH 295", + "title": "Special Topics in Mathematics (1 to 4)" + }, + { + "dept": "MATH", + "description": "Introduction to the mathematics of financial models. Hedging, pricing by arbitrage. Discrete and continuous stochastic models. Martingales. Brownian motion, stochastic calculus. Black-Scholes model, adaptations to dividend paying equities, currencies and coupon-paying bonds, interest rate market, foreign exchange models. ", + "edges_from": [ + 1995 + ], + "edges_to": [], + "id": 4736, + "label": "MATH 294", + "title": "The Mathematics of Finance (4)" + }, + { + "dept": "POLI", + "description": "This seminar explores debates over ideals, institutions, and identities in American political thought. Themes and topics will vary. Readings will include political pamphlets, philosophical treatises, court decisions, and works of literature. ", + "edges_from": [], + "edges_to": [], + "id": 4737, + "label": "POLI 110ED", + "title": "Seminar in American Political Thought (4)" + }, + { + "dept": "LHCO", + "description": "This course examines principles and applications of strategic management and the change management concepts necessary to effectively apply these principles in healthcare organizations. The course provides a structured, stepwise approach to the strategic management process and includes methods for assessing key features of organizational environments and competitive situations, approaches for developing strategic plans, and processes for insuring the successful implementation of strategy. ", + "edges_from": [], + "edges_to": [], + "id": 4738, + "label": "LHCO 202", + "title": "Strategic Management and Organizational Change (4)" + }, + { + "dept": "LHCO", + "description": "and Managing Information and Information Technologies (4)", + "edges_from": [], + "edges_to": [], + "id": 4739, + "label": "LHCO 203", + "title": "Using" + }, + { + "dept": "LHCO", + "description": "This course studies key management concepts and roles of management and how they apply in successful, dynamic organizations. The course examines competencies of effective managers in developing customer focus, planning, selecting and developing individuals and teams, communicating, managing resources, using technology and being adaptable. Students will be exposed to the theory and process of effective negotiation as well as various teambuilding and conflict resolution strategies in a variety of contexts. ", + "edges_from": [], + "edges_to": [], + "id": 4740, + "label": "LHCO 204", + "title": "Conflict Resolution, Negotiation, and Team Building (2)" + }, + { + "dept": "POLI", + "description": "Political Thought: Contemporary Debates (4)", + "edges_from": [], + "edges_to": [], + "id": 4741, + "label": "POLI 110EC", + "title": "American" + }, + { + "dept": "POLI", + "description": "Political Thought from Civil War to Civil Rights (4)", + "edges_from": [], + "edges_to": [], + "id": 4742, + "label": "POLI 110EB", + "title": "American" + }, + { + "dept": "LHCO", + "description": "A critical overview of the tools used to measure outcomes and quality of care, development and use of practical guidelines, advantages and disadvantages of various methods, and the use of such analysis in administrative decision making.\t\t\t\t", + "edges_from": [], + "edges_to": [], + "id": 4743, + "label": "LHCO 209", + "title": "Outcomes and Quality Improvement (4)" + }, + { + "dept": "PHIL", + "description": "This course meets regularly to discuss primary or secondary literature in the area of German philosophy (including Kant, Fichte, Hegel, etc.). The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Nongraduate students may enroll with consent of instructor. S/U grades only. May be taken for credit nine times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 4744, + "label": "PHIL 275", + "title": "German Philosophy Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "This course meets weekly to provide training in reading and translating philosophical German. Students prepare in advance written translations of assigned passages. The course helps train graduate students preparing to take the Departmental German Exam. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 4745, + "label": "PHIL 276", + "title": "German Translation Workshop (1\u20132)" + }, + { + "dept": "PHIL", + "description": "This course meets biweekly with students reading and presenting material from the phenomenological literature. The course is designed both for students doing active research in phenomenology and for those seeking to gain some familiarity with that tradition. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 4746, + "label": "PHIL 277", + "title": "Phenomenology Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "Methods in Contemporary Philosophy (1\u20132)", + "edges_from": [], + "edges_to": [], + "id": 4747, + "label": "PHIL 278", + "title": "Topics and" + }, + { + "dept": "POLI", + "description": "An examination of some of the ideas and values", + "edges_from": [], + "edges_to": [], + "id": 4748, + "label": "POLI 110T", + "title": "Modern Political Ideologies (4)" + }, + { + "dept": "FPM", + "description": "This third quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or II). ", + "edges_from": [ + 3906 + ], + "edges_to": [], + "id": 4749, + "label": "FPM 258C", + "title": "Public Health Doctoral Lecture Series III (2)" + }, + { + "dept": "MAE", + "description": "Provides field study in industry with faculty supervision. Analysis and problem solving using real world applications. ", + "edges_from": [], + "edges_to": [], + "id": 4750, + "label": "MAE 295", + "title": "Field Study (1\u201312)" + }, + { + "dept": "CHEM", + "description": "This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 214. ", + "edges_from": [ + 2056, + 1865, + 458 + ], + "edges_to": [], + "id": 4751, + "label": "CHEM 114D", + "title": "Molecular and Cellular Biochemistry (4)" + }, + { + "dept": "MAE", + "description": "Independent reading or research on a problem as arranged by a designated faculty member. Must be taken for a letter grade only. ", + "edges_from": [], + "edges_to": [], + "id": 4752, + "label": "MAE 296", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "MAE", + "description": "Intersection of control theory and fluid mechanics. Applications: transition delay, turbulence mitigation, noise reduction, weather forecasting, shape optimization, and UAV\u2019s (perching). Tractable feedback (Riccati-based) formulations via parallel and parabolic flow assumptions. Regularization of variational (adjoint-based) formulations for MPC and MHE. EnKF and EnVE approaches for forecasting. ", + "edges_from": [ + 1535 + ], + "edges_to": [], + "id": 4753, + "label": "MAE 293", + "title": "Flow Control (4)" + }, + { + "dept": "ECE", + "description": "Basic physics and chemistry for the interaction of photons with matter, including both biological and synthetic materials; use of photonic radiation pressure for manipulation of objects and materials; advanced optoelectronic detection systems, devices and methods, including time resolved fluorescent and chemiluminescent methods, fluorescent energy transfer (FRET) techniques, quantum dots, and near-field optical techniques; underlying mechanisms of the light sensitive biological systems, including chloroplasts for photosynthetic energy conversion and the basis of vision processes. Cross-listed with BENG 247A and NANO 247A. ", + "edges_from": [], + "edges_to": [], + "id": 4754, + "label": "ECE 247A", + "title": "Advanced BioPhotonics (4)" + }, + { + "dept": "ECE", + "description": "Topics to be covered will include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology used in microarrays and biosensor devices, and focus on problems related to making highly integrated devices (lab-on-a-chip, in-vivo biosensors, etc.) from heterogeneous materials and components. Cross-listed with BENG 247B and NANO 247B. ", + "edges_from": [], + "edges_to": [], + "id": 4755, + "label": "ECE 247B", + "title": "BioElectronics (4)" + }, + { + "dept": "ECE", + "description": "Topics include: nanosensors and nanodevices for both clinical diagnostics and biowarfare (bioterror) agent detection; nanostructures for drug delivery; nanoarrays and nanodevices; use of nanoanalytical devices and systems; methods and techniques for modification or functionalization of nanoparticles and nanostructures with biological molecules; nanostructural aspects of fuel cells and bio-fuel cells; potential use of DNA and other biomolecules for computing and ultra-high-density data storage. Cross-listed with BENG 247C and NANO 247C. ", + "edges_from": [], + "edges_to": [], + "id": 4756, + "label": "ECE 247C", + "title": "BioNanotechnology (4)" + }, + { + "dept": "Revelle", + "description": "Weekly seminars with a faculty member for Revelle undergraduates interested in the science of mindfulness and how to use it for stress management, interpersonal skills, performance improvement, and to increase the sense of well-being. ", + "edges_from": [], + "edges_to": [], + "id": 4757, + "label": "Revelle 12", + "title": "Practicing the Science of Mindfulness (1)" + }, + { + "dept": "MGT", + "description": "Provides hands-on experience in venture investing. Direct involvement in all stages of managing the Rady Venture Fund, including sourcing applicants, performing initial analysis, due diligence, investment negotiation, monitoring of the portfolio. Students have substantial input into fund investment decisions. Students may not earn credit for both MGT 496B and MGT 289B. They are course equivalents. S/U grades only. ", + "edges_from": [ + 972 + ], + "edges_to": [], + "id": 4758, + "label": "MGT 496B", + "title": "Venture Capital Management II (2)" + }, + { + "dept": "CHIN", + "description": "Continuation of CHIN 165B. Basic training in oral and written communication skills for business, including introduction to modern business terminology and social conventions. ", + "edges_from": [ + 4760 + ], + "edges_to": [], + "id": 4759, + "label": "CHIN 165C", + "title": "Business Chinese (4)" + }, + { + "dept": "CHIN", + "description": "", + "edges_from": [ + 4761 + ], + "edges_to": [ + 4759 + ], + "id": 4760, + "label": "CHIN 165B", + "title": "" + }, + { + "dept": "CHIN", + "description": "", + "edges_from": [], + "edges_to": [ + 4760 + ], + "id": 4761, + "label": "CHIN 165A", + "title": "" + }, + { + "dept": "HINE", + "description": "Explore the ancient sources for the life of Jesus. Students will learn about various modern approaches to reconstructing the historical Jesus and will examine the difficulties inherent in such a task.", + "edges_from": [], + "edges_to": [], + "id": 4762, + "label": "HINE 110", + "title": "Jesus, the Gospels, and History (4)" + }, + { + "dept": "BENG", + "description": "Design Implementation in Biomechanics (3)", + "edges_from": [], + "edges_to": [ + 68 + ], + "id": 4763, + "label": "BENG 119B", + "title": "" + }, + { + "dept": "BENG", + "description": "Development of design project in biomechanics. ", + "edges_from": [ + 66 + ], + "edges_to": [], + "id": 4764, + "label": "BENG 119A", + "title": "Design Development in Biomechanics (3)" + }, + { + "dept": "BIEB", + "description": "A laboratory course introducing students to coastal marine ecology. Students will participate in outdoor fieldwork and work in the laboratory gathering and analyzing ecological data. We will focus on ecological communities from a variety of coastal habitats and use them to learn about basic ecological processes as well as issues related to sustainability and conservation of biodiversity. Fieldwork is expected in this course. Associated travel in the San Diego area is required and students are responsible for their own transportation. Material lab fees will apply. ", + "edges_from": [ + 1424, + 3624, + 1389 + ], + "edges_to": [], + "id": 4765, + "label": "BIEB 131", + "title": "Marine Invertebrate Ecology Lab (4)" + }, + { + "dept": "HIEU", + "description": "This seminar addresses Jewish civic autonomy in the late medieval era, the terms of emancipation in the European states, the politics of Jewish socialists, the costs of assimilation, and the consequences of a successful Zionist state in 1948. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 4766, + "label": "HIEU 176/276", + "title": "Politics in the Jewish Past (4)" + }, + { + "dept": "ECE", + "description": "Automated laboratory based on H-P GPIB controlled", + "edges_from": [], + "edges_to": [], + "id": 4767, + "label": "ECE 145AL-BL-CL", + "title": "Acoustics Laboratory (4-4-4)" + }, + { + "dept": "MATH", + "description": "Random vectors, multivariate densities, covariance matrix, multivariate", + "edges_from": [], + "edges_to": [], + "id": 4768, + "label": "MATH 180B", + "title": "Introduction to Stochastic Processes I (4)" + }, + { + "dept": "MATH", + "description": "Markov chains in discrete and continuous time, random walk, recurrent events. If time permits, topics chosen from stationary normal processes, branching processes, queuing theory. ", + "edges_from": [], + "edges_to": [], + "id": 4769, + "label": "MATH 180C", + "title": "Introduction to Stochastic Processes II (4)" + }, + { + "dept": "PSYC", + "description": "A biweekly seminar series focusing on recent advances in both basic and applied research in social psychology including topics such as interpersonal relationships, emotion, health, social cognition, judgment, and decision making. May be taken for credit twenty-four times. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4770, + "label": "PSYC 274", + "title": "Current Directions in Social Psychology (1)" + }, + { + "dept": "PSYC", + "description": "A weekly seminar series focused on understanding recent advances in any area of cognitive psychology. May be taken for credit twenty-four times. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4771, + "label": "PSYC 275", + "title": "Current Directions in Cognitive Psychology (1)" + }, + { + "dept": "AUD", + "description": "Clinical evaluation of vestibular function, using techniques such as caloric and rotational electronystagmography and posturography. The interpretation of clinical findings and implications for rehabilitative strategies will be covered. The course will include observation of testing in otology clinic settings. ", + "edges_from": [], + "edges_to": [], + "id": 4772, + "label": "AUD 263", + "title": "Physiological and Behavioral Tests of Vestibular Function (4)" + }, + { + "dept": "AUD", + "description": "Embryology and functional development of the auditory and vestibular systems, from their initial appearance to adult function. Inherited disorders of these two sensory systems are also addressed, including phenotypic description and genetic basis. Genetic counseling and the potential for gene therapy are also discussed. ", + "edges_from": [], + "edges_to": [], + "id": 4773, + "label": "AUD 264", + "title": "Auditory and Vestibular Development and Genetics (3)" + }, + { + "dept": "SE", + "description": "253C. Mechanics of Laminated Anisotropy Plates and Shells (4)", + "edges_from": [], + "edges_to": [], + "id": 4774, + "label": "SE", + "title": "" + }, + { + "dept": "HINE", + "description": "This course introduces the students to contemporary Israeli society. Among the topics explored: Israeli-Arab conflict; relations between European, Arab, Russian, and Ethiopian Jews; between secular and religious Jews; between Jews and Arabs; and between Israel and World Jewry.", + "edges_from": [], + "edges_to": [], + "id": 4775, + "label": "HINE 135GS", + "title": "Introduction to Contemporary Israeli Society and Culture (4)" + }, + { + "dept": "ECON", + "description": "An examination of recent research in economic theory, including topics in general equilibrium, welfare economics, duality, and social choice; development of related research topics by both graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ", + "edges_from": [ + 1795 + ], + "edges_to": [], + "id": 4776, + "label": "ECON 202A-B-C", + "title": "Workshop in Economic Theory (0\u20134/0\u20134/0\u20134)" + }, + { + "dept": "PSYC", + "description": "This seminar will span the study of learning and memory from an interdisciplinary neuroscience perspective: the goal will be to gain a broad perspective on memory. The course will also touch on dysfunctions of learning and memory such as in amnesia, mental retardation, aging, and Alzheimer\u2019s disease. The course will end with exciting developments in the field, including the possibility of genetic and pharmacological enhancement of memory and intelligence. ", + "edges_from": [], + "edges_to": [], + "id": 4777, + "label": "PSYC 271", + "title": "Neurobiology of Learning and Memory (4)" + }, + { + "dept": "LATI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4778, + "label": "LATI 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "PHYS", + "description": "This course, designed for graduate students, includes discussion of teaching, techniques and materials necessary to teach physics courses. One meeting per week with course instructors, one meeting per week in an assigned recitation section, problem session, or laboratory section. Students are required to take a total of two units of Physics 500.", + "edges_from": [], + "edges_to": [], + "id": 4779, + "label": "PHYS 500", + "title": "Instruction in Physics Teaching (1\u20134)" + }, + { + "dept": "HITO", + "description": "The Cold War is often understood as a superpower rivalry between the U.S. and the Soviet Union. Yet, the second half of the twentieth century witnessed civil wars, revolutions, decolonization movements, and state violence throughout the world that do not fit in this bipolar framework. Focusing on these other events, this course reexamines the Cold War in global and comparative perspective, with a particular focus on political developments in Asia, Africa, and Latin America.", + "edges_from": [], + "edges_to": [], + "id": 4780, + "label": "HITO 115/115GS", + "title": "The Global Cold War (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4781, + "label": "BENG 296", + "title": "Independent Study (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [], + "edges_to": [ + 2707, + 5335 + ], + "id": 4782, + "label": "NANO 148", + "title": "" + }, + { + "dept": "CSE", + "description": "Introduction to algorithms and top-down problem solving. Introduction to the C language, including functions, arrays, and standard libraries. Basic skills for using a PC graphical user interface operating system environment. File maintenance utilities are covered. A student may not receive credit for CSE 5A after receiving credit for CSE 11 or CSE 8B. Recommended preparation: A familiarity with high school-level algebra is expected, but this course assumes no prior programming knowledge. ", + "edges_from": [], + "edges_to": [], + "id": 4783, + "label": "CSE 5A", + "title": "Introduction to Programming I (4)" + }, + { + "dept": "NANO", + "description": "Basic principles of synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 166. ", + "edges_from": [], + "edges_to": [], + "id": 4784, + "label": "NANO 156", + "title": "Nanomaterials (4)" + }, + { + "dept": "JAPN", + "description": "Training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ", + "edges_from": [ + 4786 + ], + "edges_to": [ + 4788 + ], + "id": 4785, + "label": "JAPN 135A", + "title": "Japanese for Professional Purposes (4)" + }, + { + "dept": "JAPN", + "description": "", + "edges_from": [], + "edges_to": [ + 4785 + ], + "id": 4786, + "label": "JAPN 20C", + "title": "" + }, + { + "dept": "JAPN", + "description": "Continuation of training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ", + "edges_from": [ + 4788 + ], + "edges_to": [], + "id": 4787, + "label": "JAPN 135C", + "title": "Japanese for Professional Purposes III (4)" + }, + { + "dept": "JAPN", + "description": "", + "edges_from": [ + 4785 + ], + "edges_to": [ + 4787 + ], + "id": 4788, + "label": "JAPN 135B", + "title": "" + }, + { + "dept": "VIS", + "description": "Examines human interface as it informs or transforms how we read and participate in culture at large. Concepts such as subject/author/object relationships, abstraction, metaphor, analogy, visualization, and complexity are discussed to establish context.", + "edges_from": [], + "edges_to": [], + "id": 4789, + "label": "VIS 215", + "title": "Human Interface (4)" + }, + { + "dept": "VIS", + "description": "An investigation of the world of artifacts (\u201cworks of art\u201d and others) and how they function as agents of communication and modifiers of consciousness. Contemporary perspectives drawn from the fields of art theory, anthropology, contemporary art, and semiotics will be utilized.", + "edges_from": [], + "edges_to": [], + "id": 4790, + "label": "VIS 216", + "title": "The Object (4)" + }, + { + "dept": "VIS", + "description": "A critical examination of the practices of self-defined communities (e.g., Bauhaus, Shaker, surrealists), which have attempted to change the social and spiritual quality of life by aesthetic means and of communities and subcultures defined by other means.", + "edges_from": [], + "edges_to": [], + "id": 4791, + "label": "VIS 217", + "title": "Communities and Subcultures (4)" + }, + { + "dept": "VIS", + "description": "This seminar addresses the space between narrative work generated from a factual base and that generated from a fictional one. Special attention will be given to discussing work that confounds the assumed gap between the two.", + "edges_from": [], + "edges_to": [], + "id": 4792, + "label": "VIS 211", + "title": "Fact and Fiction (4)" + }, + { + "dept": "VIS", + "description": "This seminar will engage the space between personal and larger histories. How is one\u2019s own past both intertwined with and determined by larger social histories?", + "edges_from": [], + "edges_to": [], + "id": 4793, + "label": "VIS 212", + "title": "History and Memory (4)" + }, + { + "dept": "VIS", + "description": "An exploration of what public space is and how it operates, with a view toward an expanded context for considering how public artwork can operate within it. Included are areas such as mass media, activism, community action, computer networks, ecology, and alternative forums.", + "edges_from": [], + "edges_to": [], + "id": 4794, + "label": "VIS 213", + "title": "Public Space (4)" + }, + { + "dept": "MATH", + "description": "Continued study on mathematical modeling in the physical and social sciences, using advanced techniques that will expand upon the topics selected and further the mathematical theory presented in Math 111A. ", + "edges_from": [ + 4796 + ], + "edges_to": [], + "id": 4795, + "label": "MATH 111B", + "title": "Mathematical Modeling II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 4795 + ], + "id": 4796, + "label": "MATH 111A", + "title": "" + }, + { + "dept": "TDGR", + "description": "Seminar will deal with dramatization and adaptation of literary texts for the purpose of theatrical production. The class will study some significant examples of such practice from the past and, subsequently, students will develop their own projects of dramatization, adaptation, or modernization of texts. ", + "edges_from": [], + "edges_to": [], + "id": 4797, + "label": "TDGR 258A", + "title": "Dramatization and Adaptation (4)" + }, + { + "dept": "VIS", + "description": "to the Art of the Americas or Africa and Oceania (4)", + "edges_from": [], + "edges_to": [], + "id": 4798, + "label": "VIS 21A", + "title": "Introduction" + }, + { + "dept": "VIS", + "description": "Survey of the major artistic trends of India, China, and Japan, taking a topical approach to important developments in artistic style and subject matter to highlight the art of specific cultures and religions. Students may not receive credit for VIS 21 and VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 4799, + "label": "VIS 21B", + "title": "Introduction to Asian Art (4)" + }, + { + "dept": "COGR", + "description": "Introduction to Science Studies: Part 1 (4)", + "edges_from": [], + "edges_to": [], + "id": 4800, + "label": "COGR 225A", + "title": "" + }, + { + "dept": "COGR", + "description": "A forum for the presentation and discussion of research in progress in science studies by graduate students, faculty, and visitors. Students must attend the colloquium series for their entire first and second years. They receive course credit in one quarter each year. ", + "edges_from": [], + "edges_to": [], + "id": 4801, + "label": "COGR 225C", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "COGR", + "description": "Study and discussion of a selected topic in the science studies field with an emphasis on the development of research and writing skills. The topic varies from year to year. ", + "edges_from": [], + "edges_to": [], + "id": 4802, + "label": "COGR 225B", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "COGR", + "description": "Introduction to Science Studies Part II (4)", + "edges_from": [], + "edges_to": [], + "id": 4803, + "label": "COGR 225D", + "title": "" + }, + { + "dept": "HIEU", + "description": "Selected topics in ancient Greek history. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4804, + "label": "HIEU 160", + "title": "Topics in Ancient Greek History (4)" + }, + { + "dept": "LIGN", + "description": "Teaching, Head Teaching Assistant (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4805, + "label": "LIGN 509", + "title": "Apprentice" + }, + { + "dept": "LIGN", + "description": "Teaching of Language/Directed Study (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4806, + "label": "LIGN 508", + "title": "Apprentice" + }, + { + "dept": "HINE", + "description": "Cross-listed with JUDA 130. This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. Students may not receive credit for both HINE 130 and JUDA 130. (Formerly known as JUDA 100A.) ", + "edges_from": [], + "edges_to": [], + "id": 4807, + "label": "HINE 130", + "title": "Introduction to the Old Testament: The Historical Books (4)" + }, + { + "dept": "HINE", + "description": "Cross-listed with JUDA 131. This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Students may not receive credit for both HINE 131 and JUDA 131. (Formerly known as JUDA 100B.) ", + "edges_from": [], + "edges_to": [], + "id": 4808, + "label": "HINE 131", + "title": "Introduction to the Old Testament: The Poetic Books (4)" + }, + { + "dept": "LIGN", + "description": "Teaching of American Sign Language (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4809, + "label": "LIGN 503", + "title": "Apprentice" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in the department\u2019s linguistics courses, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. The student must be serving as a teaching assistant in a LIGN course to receive credit.", + "edges_from": [], + "edges_to": [], + "id": 4810, + "label": "LIGN 502", + "title": "Apprentice Teaching of Linguistics (1\u20134)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Spanish, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 4811, + "label": "LIGN 507", + "title": "Apprentice Teaching of Spanish (1\u20134)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Italian, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 4812, + "label": "LIGN 506", + "title": "Apprentice Teaching of Italian (1\u20134)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in German, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 4813, + "label": "LIGN 505", + "title": "Apprentice Teaching of German (1\u20134)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in French, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 4814, + "label": "LIGN 504", + "title": "Apprentice Teaching of French (1\u20134)" + }, + { + "dept": "SOCI", + "description": "This course studies the major forms of behavior seen as rule violations by large segments of our society and analyzes the major theories trying to explain them, as well as processes of rule making, rule enforcing, techniques of neutralization, stigmatization and status degradation, and rule change. ", + "edges_from": [ + 4816, + 4815 + ], + "edges_to": [ + 4815 + ], + "id": 4815, + "label": "SOCI 142", + "title": "Social Deviance (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 4815 + ], + "id": 4816, + "label": "SOCB 142", + "title": "" + }, + { + "dept": "ETHN", + "description": "Decolonial Theory will focus on historical and contemporary intellectual work produced by activists from colonized regions of the world. This course will be international in scope, but attentive to local struggles.", + "edges_from": [], + "edges_to": [], + "id": 4817, + "label": "ETHN 163E", + "title": "Decolonial Theory (4)" + }, + { + "dept": "ECE", + "description": "Machine learning has received enormous interest. To learn from data we use probability theory, which has been a mainstay of statistics and engineering for centuries. The class will focus on implementations for physical problems. Topics: Gaussian probabilities, linear models for regression, linear models for classification, neural networks, kernel methods, support vector machines, graphical models, mixture models, sampling methods, and sequential estimation.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4818, + "label": "ECE 228", + "title": "Machine Learning for Physical Applications (4)" + }, + { + "dept": "ECE", + "description": "This course aims to present the mathematical and computational challenges for holistic content/algorithm/hardware codesign of an efficient deep learning framework. Participants will discuss selected topics including DNNs, CNNs, and RNNs in both supervised and unsupervised settings. Special emphasis will be on optimizing DL physical performance on different hardware platforms. The hardware platforms include CPU-CPU and CPU-GPU architectures. ", + "edges_from": [ + 1443, + 2524, + 3159 + ], + "edges_to": [], + "id": 4819, + "label": "ECE 226", + "title": "Optimization and Acceleration of Deep Learning on Various Hardware Platforms (4)" + }, + { + "dept": "ECE", + "description": "A course on network science driven by data analysis. The class will focus on both theoretical and empirical analysis performed on real data, including technological networks, social networks, information networks, biological networks, economic networks, and financial networks. Students will be exposed to a number of state-of-the-art software libraries for network data analysis and visualization via the Python notebook environment. Previous Python programming experience recommended. ", + "edges_from": [], + "edges_to": [], + "id": 4820, + "label": "ECE 227", + "title": "Big Network Data (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in Spanish. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LISP 1DX. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 2421, + 3133 + ], + "edges_to": [], + "id": 4821, + "label": "Linguistics/Spanish (LISP) 1D", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "Jewish", + "description": "This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. ", + "edges_from": [], + "edges_to": [], + "id": 4822, + "label": "Jewish Studies 130", + "title": "Introduction to the Old Testament: The Historical Books (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1BX. ", + "edges_from": [ + 1746, + 1747 + ], + "edges_to": [], + "id": 4823, + "label": "Linguistics/Spanish (LISP) 1B", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1CX. ", + "edges_from": [ + 1592, + 1591 + ], + "edges_to": [], + "id": 4824, + "label": "Linguistics/Spanish (LISP) 1C", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "ECE", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. ", + "edges_from": [], + "edges_to": [], + "id": 4825, + "label": "ECE 221", + "title": "Magnetic Materials: Principles and Applications (4)" + }, + { + "dept": "FMPH", + "description": "This core public health course addresses the fundamentals of environmental and occupational health, including identification of hazards, basic toxicology, risk assessment, prevention/protection, and regulatory/control policies. Specific environmental and occupational hazards and relevant case studies will be presented. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 130. Students may not receive credit for FPMU 130 and FMPH 130. ", + "edges_from": [ + 1027, + 1029 + ], + "edges_to": [], + "id": 4826, + "label": "FMPH 130", + "title": "Environmental and Occupational Health (4)" + }, + { + "dept": "ANSC", + "description": "What is love? This course explores evolutionary, historical, philosophical, physiological, psychological, sociological, political-economic, and anthropological perspectives on love. We examine how love has evolved, study various aspects considered biological or cultural, and address contemporary debates around the nature and uses of love, including topics such as monogamy, arranged marriage, companionship, interracial relationships, and online dating. ", + "edges_from": [], + "edges_to": [], + "id": 4827, + "label": "ANSC 132", + "title": "Sex and Love (4)" + }, + { + "dept": "SIOB", + "description": "This course investigates global issues in marine conservation and potential policy solutions. The approach is interdisciplinary, fast-paced, and discussion-oriented. Students will become acquainted with sufficient background in marine biology, ecology, marine and conservation economics, international law and policy as preparation for participation in discussion on real-world issues in marine conservation. Topics and instructors change each quarter. ", + "edges_from": [], + "edges_to": [ + 5443 + ], + "id": 4828, + "label": "SIOB 286", + "title": "Marine Science, Economics, and Policy (4)" + }, + { + "dept": "BILD", + "description": "Course covers two important aspects: (1) interdisciplinary and research-based education and (2) teaching fundamental experimental and computational skills in quantitative studies of living systems. Participation by application only. Material lab fees will apply. ", + "edges_from": [], + "edges_to": [], + "id": 4829, + "label": "BILD 51", + "title": "Quantitative Biology Project Lab (4)" + }, + { + "dept": "ANSC", + "description": "The religious world of ordinary precommunist times, with some reference to major Chinese religious traditions. Recommended preparation: background in premodern Chinese history. ", + "edges_from": [], + "edges_to": [], + "id": 4830, + "label": "ANSC 137", + "title": "Chinese Popular Religion (4)" + }, + { + "dept": "MATS", + "description": "Thermally activated processes, Boltzmann factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick\u2019s laws, diffusion mechanisms, Kirkendall effect, Boltzman-Matano analysis, high diffusivity paths. ", + "edges_from": [], + "edges_to": [], + "id": 4831, + "label": "MATS 201B", + "title": "Solid State Diffusion and Reaction Kinetics (4)" + }, + { + "dept": "ANSC", + "description": "Indigenous peoples in the Americas have long been dominated and exploited. They have also resisted and reworked the powerful forces affecting them. This course will trace this centuries-long contestation, focusing on ways anthropological representations have affected those struggles. ", + "edges_from": [], + "edges_to": [], + "id": 4832, + "label": "ANSC 135", + "title": "Indigenous Peoples of Latin America (4)" + }, + { + "dept": "COGS", + "description": "This course reviews research investigating the neural bases for human mental processes, including processing of affective, social, linguistic, and visuospatial information, as well as memory, attention, and executive functions. Also discussed are brain development and brain aging, and the nature of intelligence and creativity. ", + "edges_from": [ + 4311 + ], + "edges_to": [ + 1571 + ], + "id": 4833, + "label": "COGS 107C", + "title": "Cognitive Neuroscience (4)" + }, + { + "dept": "TDPW", + "description": "Basic principles of screenwriting using scenario composition, plot points, character study, story conflict, with emphasis on visual action and strong dramatic movement. May be taken for credit two times. ", + "edges_from": [ + 1179 + ], + "edges_to": [], + "id": 4834, + "label": "TDPW 104", + "title": "Screenwriting (4)" + }, + { + "dept": "TDPW", + "description": "Advanced workshop where students study the full-length play structure and begin work on a long play. Students present their work at various stags of development for group discussion and analysis. May be taken for credit two times. ", + "edges_from": [ + 4836 + ], + "edges_to": [], + "id": 4835, + "label": "TDPW 102", + "title": "Advanced Playwriting (4)" + }, + { + "dept": "TDPW", + "description": "", + "edges_from": [ + 1179 + ], + "edges_to": [ + 4835 + ], + "id": 4836, + "label": "TDPW 101", + "title": "" + }, + { + "dept": "CSE", + "description": "Research. ", + "edges_from": [], + "edges_to": [], + "id": 4837, + "label": "CSE 299", + "title": "Research (1\u201316)" + }, + { + "dept": "CSE", + "description": "Open to properly qualified graduate students who wish to pursue a problem through advanced study under the direction of a member of the staff. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4838, + "label": "CSE 298", + "title": "Independent Study (1\u201316)" + }, + { + "dept": "BIEB", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 4839, + "label": "BIEB 194", + "title": "Advanced Topics in Modern Biology: Ecology, Behavior, Evolution (2)" + }, + { + "dept": "HITO", + "description": "A seminar intended for exposing undergraduate students, especially freshmen, to exciting research programs conducted by department faculty. Enrollment is limited. Topic will vary quarter by quarter.", + "edges_from": [], + "edges_to": [], + "id": 4840, + "label": "HITO 87", + "title": "Special Freshman Seminar (1)" + }, + { + "dept": "MGT", + "description": "Outlines frameworks and tools for formulating strategy to manage technology and think strategically in fast-moving industries (e.g., high tech, biotech, and clean tech). Students will gain insights into technology, strategy, and markets, especially how disruptive technologies create opportunities for startups and transform established firms, and how technology firms achieve competitive advantage through tech-enabled innovations. Illustrated by case studies on cutting-edge startups industry leaders. ", + "edges_from": [], + "edges_to": [], + "id": 4841, + "label": "MGT 127", + "title": "Innovation and Technology Strategy (4)" + }, + { + "dept": "MGT", + "description": "The service sector is the fastest-growing sector of the economy. This course will help students prepare for the transition to a service economy and identify career and entrepreneurial opportunities in the service industry. Students will learn how services differ from goods and gain understanding of the innovation process in the service industry. The course will also address trends of services getting systematized, industrialized, and professionalized for greater productivity and scalability. ", + "edges_from": [], + "edges_to": [], + "id": 4842, + "label": "MGT 128", + "title": "Innovation in Service Enterprises (4)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4843, + "label": "CSE 290", + "title": "Seminar" + }, + { + "dept": "CSE", + "description": "Project in Computer Science and Engineering (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 4844, + "label": "CSE 293", + "title": "Special" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 282.) Computer science and engineering faculty will present one-hour seminars of the current research work in their areas of interest. ", + "edges_from": [], + "edges_to": [], + "id": 4845, + "label": "CSE 292", + "title": "Faculty Research Seminar (1)" + }, + { + "dept": "CSE", + "description": "Advanced study and analysis of active research in computer science and computer engineering. Discussion of current research and literature in the research specialty of the staff member teaching the course. ", + "edges_from": [], + "edges_to": [], + "id": 4846, + "label": "CSE 294", + "title": "Research Meeting in CSE (2)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 401A-B-C. Students may not get credit for any IRLA 401 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 4847, + "label": "GPLA 401A-B-C", + "title": "Intermediate Chinese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "GPPS", + "description": "This course examines the interplay between structural factors, institutions, and key actors in politics and society in order to understand the democratization of and contemporary democratic politics in Latin America. May not receive credit for GPPS 446 and the IRGN 490 course with the same title.", + "edges_from": [], + "edges_to": [], + "id": 4848, + "label": "GPPS 446", + "title": "Democratization in Latin America (4)" + }, + { + "dept": "20A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4849, + "label": "20A-B-C", + "title": "Second-Year Japanese" + }, + { + "dept": "GPPS", + "description": "This course focuses on contemporary Cuba, its politics, economics, and foreign policy, and assesses the social gains of the revolution and the challenges of reforming socialism. The course also takes a brief look at the origins of the revolution and the role of Castro, explores Cuba-related social media, and examines current US-Cuba relations. Recommended preparation: Spanish proficiency is recommended. Renumbered from IRGN 445. Students may not receive credit for GPPS 445 and IRGN 445.", + "edges_from": [], + "edges_to": [], + "id": 4850, + "label": "GPPS 445", + "title": "Cuba: Revolution and Reform (4)" + }, + { + "dept": "GPPS", + "description": "This course surveys the major contours of intellectual debates and conceptual frameworks that structure the field of international security studies. It introduces students to important strategic thinkers in order to analyze issues in the use of force. Topics include the development of strategic thought, theories on the course of war, the organizational and political nature of militaries, assessment of military effectiveness, and the peculiar problems of nuclear and unconventional warfare. Renumbered from IRGN 442. Students may not receive credit for GPPS 442 and IRGN 442.", + "edges_from": [], + "edges_to": [], + "id": 4851, + "label": "GPPS 442", + "title": "Foundations of Strategic Studies (4)" + }, + { + "dept": "HIAF", + "description": "This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 261.", + "edges_from": [], + "edges_to": [], + "id": 4852, + "label": "HIAF 161", + "title": "Special Topics in African History (4)" + }, + { + "dept": "GPPS", + "description": "This course goes beyond the debates of the role of the market and the state in the process of economic growth and political development, seeking to provide an understanding of the complex interaction between political incentives, regulatory decisions, and their implementation. Non-GPS graduate students may enroll with consent of instructor.\u00a0Students may not receive credit for both renumbered from IRGN 441. Students may not receive credit for GPPS 441 and IRGN 441.", + "edges_from": [], + "edges_to": [], + "id": 4853, + "label": "GPPS 441", + "title": "Government and Regulation (4)" + }, + { + "dept": "GPPS", + "description": "To explore the roles that civil society/NGOs/the third sector can play in advancing political, social, and economic progress in developing countries. To consider the strengths and weaknesses, capacities, and limitations of NGOs in developing countries. To provide students with experience in evaluating NGOs and in making professional recommendations to enhance their ability to make a difference. To prepare students to take leadership roles\u2014whether in government, the private sector, or NGOs\u2014in promoting civil-society participation in development. Renumbered from IRGN 448. Students may not receive credit for GPPS 448 and IRGN 448.", + "edges_from": [], + "edges_to": [], + "id": 4854, + "label": "GPPS 448", + "title": "Civil Society and Development (4)" + }, + { + "dept": "GPPS", + "description": "Analysis of the interests, structure, and procedures of the main executive branch agencies involved in the formulation of foreign policy, and of the roles of Congress, the media, public opinion, and nongovernmental actors. Case studies and \u201cdaily briefings\u201d to prepare students to perform professionally in the foreign policy arena. Renumbered from IRGN 449. Students may not receive credit for GPPS 449 and IRGN 449.", + "edges_from": [], + "edges_to": [], + "id": 4855, + "label": "GPPS 449", + "title": "The Making of US Foreign Policy (4)" + }, + { + "dept": "LTGM", + "description": "LTGM 2A follows the basic language sequence of the Department of Linguistics and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. The course includes grammar review and class discussion of reading and audio-visual materials. Specifically, the course prepares students for LIGM 2B and 2C. ", + "edges_from": [ + 4857 + ], + "edges_to": [ + 4859 + ], + "id": 4856, + "label": "LTGM 2A", + "title": "Intermediate German I (5)" + }, + { + "dept": "LTGM", + "description": "", + "edges_from": [], + "edges_to": [ + 4856 + ], + "id": 4857, + "label": "LTGM 1C", + "title": "" + }, + { + "dept": "LTGM", + "description": "A course designed for students who wish to improve their ability to speak and write German. Students will read and discuss a variety of texts and films, and complete the grammar review begun in 2A. 2C emphasizes speaking, writing, and critical thinking, and prepares students for upper-division course work in German. ", + "edges_from": [ + 4859 + ], + "edges_to": [], + "id": 4858, + "label": "LTGM 2C", + "title": "Intermediate German III (4)" + }, + { + "dept": "LTGM", + "description": "", + "edges_from": [ + 4856 + ], + "edges_to": [ + 4858 + ], + "id": 4859, + "label": "LTGM 2B", + "title": "" + }, + { + "dept": "HIEA", + "description": "This course examines Korea\u2019s entrance into the modern world. It", + "edges_from": [], + "edges_to": [], + "id": 4860, + "label": "HIEA 150", + "title": "Modern Korea, 1800\u20131945 (4)" + }, + { + "dept": "CSE", + "description": "Representation and manipulation of pictorial data. Two-dimensional and three-dimensional transformations, curves, surfaces. Projection, illumination, and shading models. Raster and vector graphic I/O devices; retained-mode and immediate-mode graphics software systems and applications. Students may not receive credit for both Math 155A and CSE 167. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 4864, + 4865, + 4871, + 4872, + 4863 + ], + "id": 4861, + "label": "CSE 167", + "title": "Computer Graphics (4)" + }, + { + "dept": "CSE", + "description": "Principles of image formation, analysis, and representation. Image enhancement, restoration, and segmentation; stochastic image models. Filter design, sampling, Fourier and wavelet transforms. Selected applications in computer graphics and machine vision. ", + "edges_from": [ + 16, + 17, + 139 + ], + "edges_to": [], + "id": 4862, + "label": "CSE 166", + "title": "Image Processing (4)" + }, + { + "dept": "CSE", + "description": "This course focuses on design and evaluation of three-dimensional (3D) user interfaces, devices, and interaction techniques. The course consists of lectures, literature reviews, and programming assignments. Students will be expected to create interaction techniques for several different 3D interaction devices. Program or materials fees may apply. ", + "edges_from": [ + 4861 + ], + "edges_to": [], + "id": 4863, + "label": "CSE 165", + "title": "3D User Interaction (4)" + }, + { + "dept": "CSE", + "description": "Principles and practices of programming graphics processing units (GPUs). GPU architecture and hardware concepts, including memory and threading models. Modern hardware-accelerated graphics pipeline programming. Application of GPU programming to rendering of game graphics, including physical, deferring, and global lighting models. Recommended preparation: Practical Rendering and Computation with Direct3D 11 by Jason Zink, Matt Pettineo, and Jack Hoxley. ", + "edges_from": [ + 4861 + ], + "edges_to": [], + "id": 4864, + "label": "CSE 164", + "title": "GPU Programming (4)" + }, + { + "dept": "CSE", + "description": "Topics include an overview of many aspects of computer graphics, including the four main computer graphics areas of animation, modeling, rendering, and imaging. Programming projects in image and signal processing, geometric modeling, and real-time rendering. ", + "edges_from": [ + 4861 + ], + "edges_to": [], + "id": 4865, + "label": "CSE 163", + "title": "Advanced Computer Graphics (4)" + }, + { + "dept": "CHIN", + "description": "Continuation introduction of basic", + "edges_from": [], + "edges_to": [], + "id": 4866, + "label": "CHIN 10BM", + "title": "First Year Chinese\u2014Mandarin speakers II (5)" + }, + { + "dept": "CHIN", + "description": "Continuation of basic Chinese for students", + "edges_from": [], + "edges_to": [], + "id": 4867, + "label": "CHIN 10BN", + "title": "First Year Chinese\u2014Non-native speakers II (5)" + }, + { + "dept": "CSE", + "description": "Introduction to high performance parallel computing: parallel architecture, algorithms, software, and problem-solving techniques. Areas covered: Flynns\u2019 taxonomy, processor-memory organizations, shared and nonshared memory models: message passing and multithreading, data parallelism; speedup, efficiency and Amdahl\u2019s law, communication and synchronization, isoefficiency and scalability. Assignments given to provide practical experience. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [], + "id": 4868, + "label": "CSE 160", + "title": "Introduction to Parallel Computing (4)" + }, + { + "dept": "CHIN", + "description": "Continuation introduction of basic", + "edges_from": [], + "edges_to": [], + "id": 4869, + "label": "CHIN 10BD", + "title": "First Year Chinese\u2014Dialect speakers II (5)" + }, + { + "dept": "HIEA", + "description": "This course explores the cultural and social structures that dominated twentieth-century Korea: imperialism, ethnonationalism, heteropatriarchy, capitalism, socialism, and militarism. It also uses individual and collective engagements with these hegemonic structures to demonstrate contentious interactions between individuals and society.", + "edges_from": [], + "edges_to": [], + "id": 4870, + "label": "HIEA 153", + "title": "Social and Cultural History of Twentieth-Century Korea (4)" + }, + { + "dept": "CSE", + "description": "Advanced graphics focusing on the programming techniques involved in computer animation. Algorithms and approaches for both character animation and physically based animation. Particular subjects may include skeletons, skinning, key framing, facial animation, inverse kinematics, locomotion, motion capture, video game animation, particle systems, rigid bodies, clothing, and hair. Recommended preparation: An understanding of linear algebra. ", + "edges_from": [ + 4861 + ], + "edges_to": [], + "id": 4871, + "label": "CSE 169", + "title": "Computer Animation (4)" + }, + { + "dept": "CSE", + "description": "Weekly programming assignments that will cover graphics rendering algorithms. During the course the students will learn about ray tracing, geometry, tessellation, acceleration structures, sampling, filtering, shading models, and advanced topics such as global illumination and programmable graphics hardware. ", + "edges_from": [ + 4861 + ], + "edges_to": [], + "id": 4872, + "label": "CSE 168", + "title": "Computer Graphics II: Rendering (4)" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1BX. ", + "edges_from": [ + 4874, + 4875 + ], + "edges_to": [], + "id": 4873, + "label": "Linguistics/German (LIGM) 1B", + "title": "German Conversation (2.5)" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 4873, + 5965 + ], + "id": 4874, + "label": "LIGM 1A", + "title": "" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 4873, + 5965 + ], + "id": 4875, + "label": "LIGM 1AX", + "title": "" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1CX. ", + "edges_from": [ + 173, + 174 + ], + "edges_to": [], + "id": 4876, + "label": "Linguistics/German (LIGM) 1C", + "title": "German Conversation (2.5)" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 4877, + "label": "Linguistics/German (LIGM) 1A", + "title": "German Conversation (2.5)" + }, + { + "dept": "ENVR", + "description": "Examines global and regional environmental issues. The approach is to consider the scientific basis for policy options. Simple principles of chemistry and biology are introduced. The scope of problems includes: air and water pollution, climate modification, solid waste disposal, hazardous waste treatment, and environmental impact assessment. ", + "edges_from": [], + "edges_to": [], + "id": 4878, + "label": "ENVR 30", + "title": "Environmental Issues: Natural Sciences (4)" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in German. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIGM 1DX. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 4880, + 4881 + ], + "edges_to": [], + "id": 4879, + "label": "Linguistics/German (LIGM) 1D", + "title": "German Conversation (2.5)" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5572, + 4879 + ], + "id": 4880, + "label": "LIGM 1C", + "title": "" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5572, + 4879 + ], + "id": 4881, + "label": "LIGM 1CX", + "title": "" + }, + { + "dept": "ECE", + "description": "Speech signals, production and perception,", + "edges_from": [], + "edges_to": [], + "id": 4882, + "label": "ECE 252A", + "title": "Speech Compression (4)" + }, + { + "dept": "LTAF", + "description": "This course traces the rise of modern literature in traditional African societies disrupted by the colonial and neocolonial experience. Contemporary films by African and Western artists will provide an additional insight into the complex social self-images of the continent.", + "edges_from": [], + "edges_to": [], + "id": 4883, + "label": "LTAF 120", + "title": "Literature and Film of Modern Africa (4)" + }, + { + "dept": "MAE", + "description": "to Turbulence and Turbulent Mixing (4)", + "edges_from": [], + "edges_to": [], + "id": 4884, + "label": "MAE 214A", + "title": "Introduction" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4885, + "label": "LTRU 104C", + "title": "Advanced Practicum in Russian (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4886, + "label": "LTRU 104B", + "title": "Advanced Practicum in Russian: Analysis of Text and Film (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4887, + "label": "LTRU 104A", + "title": "Advanced Practicum in Russian (4)" + }, + { + "dept": "Linguistics/German", + "description": "(2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4888, + "label": "Linguistics/German (LIGM) 11", + "title": "Elementary German Reading" + }, + { + "dept": "HMNR", + "description": "Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections\u2014against genocide, torture, enslavement, political persecution, etc.\u2014and their violation, from early Cold War to the present.", + "edges_from": [], + "edges_to": [], + "id": 4889, + "label": "HMNR 101/ANSC 140", + "title": "Human Rights II: Contemporary Issues (4)" + }, + { + "dept": "MGT", + "description": "In this course, the student will continue work on the original research", + "edges_from": [], + "edges_to": [], + "id": 4890, + "label": "MGT 293D", + "title": "Original Research Presentation (4)" + }, + { + "dept": "MGT", + "description": "In this course, the student will continue work on the literature review", + "edges_from": [], + "edges_to": [], + "id": 4891, + "label": "MGT 293B", + "title": "Literature Review and Critique Presentation (4)" + }, + { + "dept": "MGT", + "description": "In this course, the student will work on identifying and developing", + "edges_from": [], + "edges_to": [], + "id": 4892, + "label": "MGT 293C", + "title": "Original Research Paper (4)" + }, + { + "dept": "MGT", + "description": "This course will require the student to identify and critique the", + "edges_from": [], + "edges_to": [], + "id": 4893, + "label": "MGT 293A", + "title": "Literature Review and Critique Paper (4)" + }, + { + "dept": "LTEU", + "description": "A study of the chief modern Italian prosatori, including D\u2019Annunzio, Calvino, Pavese, and Pasolini. May be taken up to three times for credit as topic vary.", + "edges_from": [], + "edges_to": [], + "id": 4894, + "label": "LTEU 146", + "title": "Studies in Modern Italian Prose (4)" + }, + { + "dept": "LTEU", + "description": "Study of the chief modern Italian poets, including Montale, Ungaretti, and Quasimodo, with attention to long, poetic form and contemporary Italian culture. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4895, + "label": "LTEU 145", + "title": "Studies in Modern Italian Poetry (4)" + }, + { + "dept": "LTEU", + "description": "One or more periods and authors in Italian literature. Texts will be read in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4896, + "label": "LTEU 140", + "title": "Italian Literature in Translation (4)" + }, + { + "dept": "HIUS", + "description": "History from 1865 to 1917 (4)", + "edges_from": [], + "edges_to": [], + "id": 4897, + "label": "HIUS 131", + "title": "Cultural" + }, + { + "dept": "HIUS", + "description": "History from 1607 to 1865 (4)", + "edges_from": [], + "edges_to": [], + "id": 4898, + "label": "HIUS 130", + "title": "Cultural" + }, + { + "dept": "HIUS", + "description": "This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries.\u00a0Students may not receive credit for HIUS 133 and HIUS 133GS.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4899, + "label": "HIUS 133", + "title": "The Golden Age of Piracy (4)" + }, + { + "dept": "HIUS", + "description": "This course focuses on the role the Atlantic played in bringing together in both volatile and beneficial ways the remarkably different cultures of four continents from the Columbian Exchange to the Haitian Revolution. Students may not receive credit for HIUS 135 and 135A or 135B.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4900, + "label": "HIUS 135", + "title": "The Atlantic World, 1492\u20131803 (4)" + }, + { + "dept": "HIUS", + "description": "Bebop to Hip-Hop: African American Cultural History since 1945 (4)", + "edges_from": [], + "edges_to": [], + "id": 4901, + "label": "HIUS 134", + "title": "From" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of selected empirical and theoretical topics in cognitive psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. ", + "edges_from": [], + "edges_to": [], + "id": 4902, + "label": "PSYC 272", + "title": "Selected Topics in Cognitive Psychology (4)" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis and discussion of selected advanced topics", + "edges_from": [], + "edges_to": [], + "id": 4903, + "label": "PSYC 273", + "title": "Selected Topics in Quantitative Methods in Psychology (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language functions required for advanced oral communication, reading, writing, and cultural understanding in professional contexts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Arabic. ", + "edges_from": [], + "edges_to": [], + "id": 4904, + "label": "Linguistics/Heritage Languages (LIHL) 136", + "title": "Advanced Arabic for Arabic Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language functions required", + "edges_from": [], + "edges_to": [], + "id": 4905, + "label": "Linguistics/Heritage Languages (LIHL) 138", + "title": "Advanced Cantonese for Cantonese Speakers (4)" + }, + { + "dept": "MAE", + "description": "Competition\u2014Design, Build, and Fly Aircraft (1)", + "edges_from": [], + "edges_to": [], + "id": 4906, + "label": "MAE 92A", + "title": "Design" + }, + { + "dept": "MGT", + "description": "Addresses formulation and implementation of marketing strategy, based on an integrative view of competitive brand strategy over the product life cycle. Provides a framework for developing marketing strategies yielding sustainable competitive advantage based on customer, competitor, industry, and environmental analysis. Students may not earn credit for both MGT 476 and MGT 201. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4907, + "label": "MGT 476", + "title": "Marketing Strategy (4)" + }, + { + "dept": "MGT", + "description": "The course identifies the factors that influence the selection and usage of products and services. Students will be introduced to problems/decisions that include evaluating behavior; understanding the consumers\u2019 decision process, and strategies to create desirable consumer behavior. Students may not earn credit for both MGT 477 and MGT 203. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4908, + "label": "MGT 477", + "title": "Consumer Behavior (4)" + }, + { + "dept": "CHEM", + "description": "The application of techniques to study protein", + "edges_from": [], + "edges_to": [], + "id": 4909, + "label": "CHEM 108", + "title": "Protein Biochemistry Laboratory (6)" + }, + { + "dept": "MGT", + "description": "Methods and applications of qualitative and quantitative marketing research to solve substantive marketing problems. Emphasis on integrating problem formulation, research design, questionnaire construction, and sampling to yield the most valuable information, and on the proper use of statistical methods. Students may not earn credit for both MGT 475 and MGT 202. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4910, + "label": "MGT 475", + "title": "Research for Marketing Decisions (4)" + }, + { + "dept": "HIEA", + "description": "This course traces the peninsula\u2019s division into two rival", + "edges_from": [], + "edges_to": [], + "id": 4911, + "label": "HIEA 151", + "title": "The Two Koreas, 1945\u2013Present (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in differential equations. Topics include: Riemannian geometry, Ricci flow, and geometric evolution. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 4913 + ], + "edges_to": [], + "id": 4912, + "label": "MATH 237B", + "title": "Further Topics in Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 4912 + ], + "id": 4913, + "label": "MATH 237A", + "title": "" + }, + { + "dept": "MGT", + "description": "This course differentiates decisions/principles considered when developing an overall communications and promotions strategy. Key decisions include the promotional mix, the design, implementation and evaluation of communications strategies and the thinking required to develop a creative strategy. Students may not earn credit for both MGT 478 and MGT 204. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4914, + "label": "MGT 478", + "title": "Marketing Communications (4)" + }, + { + "dept": "HIEA", + "description": "This course places the Korean diaspora in national, regional, and global frames from the imperial age to our globalized present. It traces migrant experiences and community formations on the peninsula and in Japan, the United States, China, and the former USSR.", + "edges_from": [], + "edges_to": [], + "id": 4915, + "label": "HIEA 152", + "title": "History and Cultures of the Korean Diaspora (4)" + }, + { + "dept": "LTSP", + "description": "Explores the relationships among cultural production, politics, and societal changes in Mexico before the 1910 Revolution, specifically the roles of intellectuals and popular culture in nation-building and modernization. Readings may include didactic literature and historiographic writings, forms of popular discourse, as well as novels and poetry. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 4916, + "label": "LTSP 135A", + "title": "Mexican Literature before 1910 (4)" + }, + { + "dept": "LTSP", + "description": "Study of popular novels, movements, traditions, key authors, or major trends in modern Mexican literature. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 4917, + "label": "LTSP 135B", + "title": "Modern Mexican Literature (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "(LIIT) 1A. Italian Conversation (2.5)", + "edges_from": [], + "edges_to": [], + "id": 4918, + "label": "Linguistics/Italian", + "title": "" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 213A.) Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves, Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ", + "edges_from": [], + "edges_to": [ + 4979 + ], + "id": 4919, + "label": "MAE 273A", + "title": "Dynamic Behavior of Materials (4)" + }, + { + "dept": "ECE", + "description": "Laboratory fabrication of diodes and field effect transistors covering photolithography, oxidation, diffusion, thin film deposition, etching and evaluation of devices. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 1231 + ], + "edges_to": [], + "id": 4920, + "label": "ECE 136L", + "title": "Microelectronics Laboratory (4)" + }, + { + "dept": "HIUS", + "description": "This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation.", + "edges_from": [], + "edges_to": [], + "id": 4921, + "label": "HIUS 129/USP 106", + "title": "The History of Race and Ethnicity in American Cities (4)" + }, + { + "dept": "MATH", + "description": "An introduction to the basic concepts and techniques of modern cryptography. Classical cryptanalysis. Probabilistic models of plaintext. Monalphabetic and polyalphabetic substitution. The one-time system. Caesar-Vigenere-Playfair-Hill substitutions. The Enigma. Modern-day developments. The Data Encryption Standard. Public key systems. Security aspects of computer networks. Data protection. Electronic mail. Recommended preparation: programming experience. Renumbered from Math 187. Students may not receive credit for both Math 187A and 187. ", + "edges_from": [], + "edges_to": [ + 4923 + ], + "id": 4922, + "label": "MATH 187A", + "title": "Introduction to Cryptography (4)" + }, + { + "dept": "MATH", + "description": "The object of this course is to study modern public key cryptographic systems and cryptanalysis (e.g., RSA, Diffie-Hellman, elliptic curve cryptography, lattice-based cryptography, homomorphic encryption) and the mathematics behind them. We also explore other applications of these computational techniques (e.g., integer factorization and attacks on RSA). Recommended preparation: Familiarity with Python and/or mathematical software (especially SAGE) would be helpful, but it is not required. ", + "edges_from": [ + 4924, + 4922, + 139, + 140, + 141 + ], + "edges_to": [], + "id": 4923, + "label": "MATH 187B", + "title": "Mathematics of Modern Cryptography (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 4923 + ], + "id": 4924, + "label": "MATH 187", + "title": "" + }, + { + "dept": "LHCO", + "description": "Students will learn the use of financial information within a healthcare organization. Topics covered will include capital structure, working capital and cash management, the time value of money, and capital budgeting. ", + "edges_from": [], + "edges_to": [], + "id": 4925, + "label": "LHCO 213", + "title": "Financial Accounting and Analysis (2)" + }, + { + "dept": "LHCO", + "description": "Students will learn statistical methods and their most common applications in healthcare management. Topics covered include data presentation, sampling, the development and use of confidence intervals, hypothesis testing, analysis of variance and simple regression. We will also explore elementary probability theory and decision making under uncertainty. Students who have taken LHCO 208 may not receive credit for LHCO 212. ", + "edges_from": [], + "edges_to": [], + "id": 4926, + "label": "LHCO 212", + "title": "Statistics and Applied Decision Making (2)" + }, + { + "dept": "LHCO", + "description": "Covers core body of knowledge and skills of project management specific to the healthcare industry. Students learn how to define, plan, and execute a project on time, on budget and within performance specifications. Topics include project life cycle, definition, and charter creation; assembling high performance teams; risk analysis; and project closure. ", + "edges_from": [], + "edges_to": [], + "id": 4927, + "label": "LHCO 217", + "title": "Project Management for Healthcare Professionals (2)" + }, + { + "dept": "LHCO", + "description": "Describes the critical knowledge and skills needed to be effective leaders in today\u2019s complex healthcare environment. Sessions cover conflict resolution, leadership and negotiation skills, strategic planning, and ethics. Guest speakers include business leaders and entrepreneurs from the local healthcare industry. ", + "edges_from": [], + "edges_to": [], + "id": 4928, + "label": "LHCO 216", + "title": "Healthcare Leadership (4)" + }, + { + "dept": "LHCO", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4929, + "label": "LHCO 215", + "title": "Modern Health Care (2)" + }, + { + "dept": "LHCO", + "description": "This course focuses on developing effective business communication skills for professionals in managerial/senior roles in health care. Writing scenarios include: preparing briefings and updates using presentation software and/or briefing packets; organizing data; constructing proposals and reports; solicitations; coordinating projects via e-mail; and drafting and editing group documents. On-the-job examples from the student\u2019s workplace are used throughout the course. ", + "edges_from": [], + "edges_to": [], + "id": 4930, + "label": "LHCO 214", + "title": "Practical Business Communication Skills for Healthcare Professionals (2)" + }, + { + "dept": "LHCO", + "description": "Students learn and apply concepts and techniques of business process analysis and improvements as building blocks for operations improvement strategies in health care. Students will analyze and improve processes in various contexts using different process improvement tools from simple process-mapping to computer-based process-modeling. Use of fundamental and sophisticated analytical techniques to design and manage efficient and effective operations and processes will be covered. The importance of balancing technical/analytical and organizational/behavioral aspects of business process improvements will be highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 4931, + "label": "LHCO 219", + "title": "Process Improvement in Health Care (4)" + }, + { + "dept": "LTCO", + "description": "A consideration of a representative selection of works relating to a theme, form, or literary genre. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4932, + "label": "LTCO 274", + "title": "Genre Studies (4)" + }, + { + "dept": "POLI", + "description": "(Same as SIO 109.) Climate change is an urgent global problem affecting the lives of hundreds of millions of people, now and for the foreseeable future. This course will empower students to confront climate change as critical actors to innovate creative cross-disciplinary solutions. Students may not receive credit for POLI 117 and SIO 109. ", + "edges_from": [], + "edges_to": [], + "id": 4933, + "label": "POLI 117", + "title": "Bending the Curve: Solutions to Climate Change (4)" + }, + { + "dept": "PHIL", + "description": "Topics may include metaethics (e.g., the semantics, metaphysics, epistemology, and normativity of ethics), consequentialism and deontology, moral psychology (e.g., freedom, responsibility, and weaknesses of will), or substantive moral problems. The approach may be systematic, historical, or both. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 4934, + "label": "PHIL 260", + "title": "Ethics (4)" + }, + { + "dept": "ECE", + "description": "Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ", + "edges_from": [ + 1996 + ], + "edges_to": [ + 4936 + ], + "id": 4935, + "label": "ECE 158A", + "title": "Data Networks I (4)" + }, + { + "dept": "ECE", + "description": "Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ", + "edges_from": [ + 4935 + ], + "edges_to": [], + "id": 4936, + "label": "ECE 158B", + "title": "Data Networks II (4)" + }, + { + "dept": "SOCI", + "description": "U.S. (4)", + "edges_from": [], + "edges_to": [], + "id": 4937, + "label": "SOCI 10", + "title": "American Society: Social Structure and Culture in the" + }, + { + "dept": "POLI", + "description": "An examination of nationalist politics as practiced by opposition movements and governments in power. Appropriate case studies from around the world will be selected. ", + "edges_from": [], + "edges_to": [], + "id": 4938, + "label": "POLI 136A", + "title": "Nationalism and Politics (4)" + }, + { + "dept": "EDS", + "description": "This course series is for undergraduates who are exploring a career in teaching secondary school. Topics addressed include: theories of teaching and learning processes and motivation for science, mathematics, and English instruction. EDS 129A focuses on the analysis of the needs of individual learners and small group instruction techniques; EDS 129B emphasizes the various roles of the classroom teacher and planning individual lessons; and EDS 129C emphasizes the assessment of student work and longer-range curriculum planning. ", + "edges_from": [ + 2245, + 810, + 4940, + 4941, + 4942, + 3503 + ], + "edges_to": [], + "id": 4939, + "label": "EDS 129 A-B-C", + "title": "Introduction to Teaching and Learning (Secondary) (4-4-4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4939 + ], + "id": 4940, + "label": "EDS 129B", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4939 + ], + "id": 4941, + "label": "EDS 129C", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4939 + ], + "id": 4942, + "label": "EDS 129A", + "title": "" + }, + { + "dept": "MAE", + "description": "Definition of hybrid system. Examples in mechanics, vision, and multi-agent systems. Trajectories of hybrid systems. Chattering, Zeno phenomena. Stability analysis. Arbitrary switching: common Lyapunov functions. Slow switching: dwell time. State-dependent switching: multiple Lyapunov functions, Invariance Principle. Hybrid control design. Applications. ", + "edges_from": [ + 4944 + ], + "edges_to": [], + "id": 4943, + "label": "MAE 286", + "title": "Hybrid Systems (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 2748 + ], + "edges_to": [ + 5323, + 4943 + ], + "id": 4944, + "label": "MAE 281A", + "title": "" + }, + { + "dept": "AWP", + "description": "AWP 2A is the first of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. Students who enroll in AWP 2A are required to enroll in AWP 2B in the subsequent term. Renumbered from ELWR 2A. Students may not receive credit for AWP 2A and ELWR 2A. Students must earn a C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a grade of C or better is not earned, students are placed in AWP 1.", + "edges_from": [], + "edges_to": [ + 4946 + ], + "id": 4945, + "label": "AWP 2A", + "title": "Analytical Writing and Academic English A (4)" + }, + { + "dept": "AWP", + "description": "AWP 2B is the second of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. At the end of AWP 2B, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 2B. Students may not receive credit for AWP 2B and ELWR 2B. Students must earn a grade of C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a C or better is not earned, students are placed in AWP 1. ", + "edges_from": [ + 4945, + 4947 + ], + "edges_to": [], + "id": 4946, + "label": "AWP 2B", + "title": "Analytical Writing and Academic English B (4)" + }, + { + "dept": "ELWR", + "description": "", + "edges_from": [], + "edges_to": [ + 4946 + ], + "id": 4947, + "label": "ELWR 2A", + "title": "" + }, + { + "dept": "MAE", + "description": "Acoustofluidics is a burgeoning field reliant on high frequency acoustics and underpinning many new developments and devices at micro to nano scales. First the basics, piezoelectricity, microfluidics, acoustics, and device metrology. Then, new physics arising from the unusually large accelerations (10^7 to 10^9 m/s^2) induced by acoustic waves. Finally, how various phenomena of acoustofluidics at small scales can be used in designing practical devices. ", + "edges_from": [ + 512, + 1536, + 1537 + ], + "edges_to": [], + "id": 4948, + "label": "MAE 285", + "title": "Design of Micro/Nanoacoustofluidic Devices (4)" + }, + { + "dept": "CENG", + "description": "Understanding nanotechnology,", + "edges_from": [], + "edges_to": [], + "id": 4949, + "label": "CENG 211", + "title": "Introduction to NanoEngineering (4)" + }, + { + "dept": "HIGR", + "description": "Historical topics related to the human body, as a target of regulation, a site for the production of knowledge, the locus of an identity shaped by race, gender, and sexuality, and/or in terms of movement across geopolitical boundaries.", + "edges_from": [], + "edges_to": [], + "id": 4950, + "label": "HIGR 206", + "title": "Histories of the Body (4)" + }, + { + "dept": "CENG", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 4951, + "label": "CENG 213", + "title": "Nanoscale Synthesis and Characterization" + }, + { + "dept": "CENG", + "description": "and Modeling (4)", + "edges_from": [], + "edges_to": [], + "id": 4952, + "label": "CENG 214", + "title": "Nanoscale Physics" + }, + { + "dept": "CENG", + "description": "Integration\u00a0(4)", + "edges_from": [], + "edges_to": [], + "id": 4953, + "label": "CENG 215", + "title": "Nanosystems" + }, + { + "dept": "COMM", + "description": "Examine sports as play, performance, competition, an arena where there are politics, culture, power, identity struggles. Establishing the social meanings of sport, we address ethics, race, class, nation, gender, body, science, technology, entertainment industries, commerce, spectatorship, consumption, amateurism, professionalism. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4954, + "label": "COMM 111T", + "title": "CCP: Cultural Politics of Sport (4)" + }, + { + "dept": "COMM", + "description": "Explores performance as a range of aesthetic conventions (theatre, film, performance art) and as a mode of experiencing and conveying cultural identity. Texts include critical writing from anthropology, psychology, linguistics, media studies, as well as film/video, play scripts, live performance. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4955, + "label": "COMM 111P", + "title": "CCP: Performance and Cultural Studies (4)" + }, + { + "dept": "HIGR", + "description": "An introductory graduate course for students in all field groups. The seminar introduces students to useful skills, methods, and techniques for teaching history. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 4956, + "label": "HIGR 209", + "title": "Historical Pedagogy (4)" + }, + { + "dept": "COMM", + "description": "Folklore is characterized by particular styles, forms, and settings. Course introduces a range of folklore genres from different cultures, historical periods, oral narrative, material folk arts, dramas, rituals. Study of the relationship between expressive form and social context. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4957, + "label": "COMM 111F", + "title": "CCP: Folklore and Communication (4)" + }, + { + "dept": "COMM", + "description": "An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4958, + "label": "COMM 111G", + "title": "CCP: Popular Culture (4)" + }, + { + "dept": "COMM", + "description": "This course examines the products of culture industries (e.g., music, television, fashion, food, landscape, architectural design) to analyze, specifically, how culture is consumed and by whom. How are spectators hailed and audiences fostered and shaped? And what is the role of audiences in fostering and shaping cultural forms and products? ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4959, + "label": "COMM 111A", + "title": "CCP: Communication and Cultural Production: Introduction (4)" + }, + { + "dept": "COMM", + "description": "This course offers an introduction to the production of urban space. Cities are produced by sociocultural shifts wrought by migration, technological changes, new forms of production, globalization, and climate change. How is the landscape or built environment of the city shaped by the combined and often contradictory forces of capital, expert knowledge, social movements, and urban dwellers? ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 4960, + "label": "COMM 111C", + "title": "CCP: Cities and Space (4)" + }, + { + "dept": "ANSC", + "description": "Why are so many people poor? What does poverty mean for those who live it and for those who try to help them? This course examines the field of international development, to understand the discourses and practices that governments, aid agencies, and communities have tried. To what extent are these practices linked to colonial legacies, race, and class? Looking to new innovations in participatory and compassionate development, this will prepare students for critical engagement with development. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4961, + "label": "ANSC 192GS", + "title": "Rethinking Poverty and Development (4)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 4962, + "label": "Linguistics/Hindi (LIHI) 1DX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "PHIL", + "description": "Topics may include the nature and limits of state authority, liberty and equality, distributive justice, liberalism and its critics (e.g., feminists, libertarians, and others), or issues in jurisprudence. The focus may be on classic texts or contemporary authors. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 4963, + "label": "PHIL 267", + "title": "Political Philosophy (4)" + }, + { + "dept": "HIAF", + "description": "Directed readings for undergraduates. ", + "edges_from": [], + "edges_to": [], + "id": 4964, + "label": "HIAF 199", + "title": "Independent Study in African History (4)" + }, + { + "dept": "AUD", + "description": "Theory and practice of cochlear implantation with focus on audiological management of patients after implantation. Current concepts regarding the activation of primary auditory neurons by electrical stimulation and indications for cochlear implantation and surgical procedures are described. ", + "edges_from": [], + "edges_to": [], + "id": 4965, + "label": "AUD 276", + "title": "Cochlear Implants and Other Implantable Sensory Aids (3)" + }, + { + "dept": "AUD", + "description": "Advanced technical aspects of assessing and fitting amplification devices for the hearing impaired. Intensive hands-on training to develop skills necessary for audiology clinical placement. ", + "edges_from": [], + "edges_to": [], + "id": 4966, + "label": "AUD 274", + "title": "Advanced Technical Aspects of Hearing Amplification (4)" + }, + { + "dept": "AUD", + "description": "Methods and procedures required for monitoring of evoked auditory responses in the operating room. The indications for the use of intraoperative monitoring and difficulties unique to this setting. The course will include the opportunity to observe auditory potential monitoring in the operating room. ", + "edges_from": [], + "edges_to": [], + "id": 4967, + "label": "AUD 275", + "title": "Intraoperative Monitoring (3)" + }, + { + "dept": "AUD", + "description": "Central auditory processing assessment and management for pediatrics and adults. Focus on behavioral tests assessing dichotic listening, temporal processes, pattern recognition, performance with competing and degraded signals. ", + "edges_from": [], + "edges_to": [], + "id": 4968, + "label": "AUD 272", + "title": "Central Auditory Processing Assessment and Management (4)" + }, + { + "dept": "ECE", + "description": "VLSI implementation methodology across block, circuit, and layout levels of abstraction. Circuit building blocks including embedded memory and clock distribution. Computer-aided design (synthesis, place-and-route, verification) and performance analyses, and small-group block implementation projects spanning RTL to tape-out using leading-edge EDA tools. Cross-listed with CSE 241A. (Recommended prerequisites: ECE 165.) ", + "edges_from": [], + "edges_to": [ + 5122 + ], + "id": 4969, + "label": "ECE 260B", + "title": "VLSI Integrated Circuits and Systems Design (4)" + }, + { + "dept": "ECE", + "description": "System Algorithms and Architectures (4)", + "edges_from": [], + "edges_to": [], + "id": 4970, + "label": "ECE 260A", + "title": "VLSI Digital" + }, + { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation.", + "edges_from": [], + "edges_to": [], + "id": 4971, + "label": "HILA 132D", + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + { + "dept": "MATH", + "description": "This is the third course in a three-course sequence in probability theory. Topics covered in the sequence include the measure-theoretic foundations of probability theory, independence, the Law of Large Numbers, convergence in distribution, the Central Limit Theorem, conditional expectation, martingales, Markov processes, and Brownian motion. ", + "edges_from": [ + 4560 + ], + "edges_to": [], + "id": 4972, + "label": "MATH 280C", + "title": "Probability Theory III (4)" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with no background.", + "edges_from": [], + "edges_to": [], + "id": 4973, + "label": "CHIN 100CN", + "title": "Third Year Chinese\u2014Non-native speakers III (4)" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "edges_from": [], + "edges_to": [], + "id": 4974, + "label": "CHIN 100CM", + "title": "Third Year Chinese\u2014Mandarin speakers III (4)" + }, + { + "dept": "VIS", + "description": "This advanced course provides students with a unique immersive learning experience, based on design studio/atelier methods. This course develops students\u2019 skills in the ideation, planning, and execution of complex individual and collaborative projects, including historical and contextual research, project ideation, planning and management, coordination of skills and responsibilities, iterative execution, and effective presentation. ", + "edges_from": [ + 1155, + 932, + 1224, + 947, + 931, + 2399 + ], + "edges_to": [], + "id": 4975, + "label": "VIS 190", + "title": "Design Master Studio (8)" + }, + { + "dept": "VIS", + "description": "Independent reading, research, or creative work under direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 4976, + "label": "VIS 199", + "title": "Special Studies in the Visual Arts (4)" + }, + { + "dept": "EDS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Topics vary from quarter to quarter. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4977, + "label": "EDS 87", + "title": "Freshman Seminar in Education Studies (1)" + }, + { + "dept": "HINE", + "description": "A colloquium focusing on the problems and patterns in the emergence of modern Middle Eastern states since 1920. ", + "edges_from": [], + "edges_to": [], + "id": 4978, + "label": "HINE 165/265", + "title": "The Colonial Mandates in the Middle East (4)" + }, + { + "dept": "MATS", + "description": "Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves; Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ", + "edges_from": [ + 4919 + ], + "edges_to": [], + "id": 4979, + "label": "MATS 213A", + "title": "Dynamic Behavior of Materials I (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit three times when topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 4980, + "label": "DSGN 160", + "title": "Special Topics in Design (4)" + }, + { + "dept": "SIOG", + "description": "Chemical description of the sea; the distribution of chemical species in the world oceans, and their relationships to physical, biological, and geological processes. Renumbered from SIO 260. Students may not receive credit for both SIOG 260 and SIO 260. ", + "edges_from": [], + "edges_to": [], + "id": 4981, + "label": "SIOG 260", + "title": "Marine Chemistry (4)" + }, + { + "dept": "HIGR", + "description": "Research seminar in medieval history with selected topics in medieval history.", + "edges_from": [], + "edges_to": [], + "id": 4982, + "label": "HIGR 223A", + "title": "Research Seminar in Medieval History (4)" + }, + { + "dept": "FPM", + "description": "Students will explore an epidemiologic research question by reviewing relevant published literature, and then design and conduct appropriate data analysis using a pre-existing dataset. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [ + 4986 + ], + "id": 4983, + "label": "FPM 259A", + "title": "Applied Epidemiology\u2014Scientific Analysis (4)" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the first of a three-course series. ", + "edges_from": [], + "edges_to": [ + 4985 + ], + "id": 4984, + "label": "EDS 262A", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the second of a three-course series. ", + "edges_from": [ + 4984 + ], + "edges_to": [ + 5256 + ], + "id": 4985, + "label": "EDS 262B", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "FPM", + "description": "Students will learn the principles of scientific writing, review examples of scientific literature, and then complete a manuscript suitable for publication based on their project from FPM 259A. May be taken for credit two times. ", + "edges_from": [ + 4983 + ], + "edges_to": [ + 5254 + ], + "id": 4986, + "label": "FPM 259B", + "title": "Applied Epidemiology\u2014Scientific Writing (4)" + }, + { + "dept": "MUS", + "description": "Studies Seminar in Critical Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 4987, + "label": "MUS 253", + "title": "Integrative" + }, + { + "dept": "MUS", + "description": "Traces the development of systems thinking and encourages work of a transdisciplinary nature, integrating models, strategies, methods, and tools from natural, human, social, and technological realms. ", + "edges_from": [], + "edges_to": [], + "id": 4988, + "label": "MUS 252", + "title": "Integrative Studies Seminar in Systems Inquiry (4)" + }, + { + "dept": "MUS", + "description": "Studies Seminar in Ethnomusicology (4)", + "edges_from": [], + "edges_to": [], + "id": 4989, + "label": "MUS 251", + "title": "Integrative" + }, + { + "dept": "POLI", + "description": "Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: ECON 5, POLI 5, or POLI 5D.", + "edges_from": [], + "edges_to": [], + "id": 4990, + "label": "POLI 5 or 5D", + "title": "Data Analytics for the Social Sciences (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4991, + "label": "LIGN 252", + "title": "Advanced Probabilistic Models of Language (4)" + }, + { + "dept": "BIOM", + "description": "An introduction to basic techniques used in biomedical literature: t tests, ANOVA, chi-square, linear and nonlinear regression. Emphasis will be on understanding the appropriate use and interpretation of the tests, rather than on the calculations.", + "edges_from": [], + "edges_to": [], + "id": 4992, + "label": "BIOM 285", + "title": "Statistical Inference in the Medical Sciences (2)" + }, + { + "dept": "Jewish", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. P/NP grades only. May be taken for credit four times. Seminars are open to sophomores, juniors, and seniors on a space available basis.", + "edges_from": [], + "edges_to": [], + "id": 4993, + "label": "Jewish Studies 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "BENG", + "description": "Course given at the discretion of the faculty", + "edges_from": [], + "edges_to": [], + "id": 4994, + "label": "BENG 208", + "title": "Topics in Bioengineering with Lab (4)" + }, + { + "dept": "CSE", + "description": "This course allows students to use what they learned in introductory programming courses to make things happen in the real world. Working in teams, students will first learn to program Arduino-based devices. Teams of students will design a custom device and program it to do their bidding. This course is targeted to freshmen and sophomores in engineering and science disciplines who want to practice applying what they have learned in a programming class and to have the chance to program things other than computers. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4995, + "label": "CSE 42", + "title": "Building and Programming Electronic Devices (2)" + }, + { + "dept": "MGT", + "description": "Build a business plan. Establish intellectual property rights. Provide financial projections and determine financing needs. Explore investment sourcing, business valuation, and harvesting opportunities. Determine operational plans and key employee requirements. ", + "edges_from": [ + 3118, + 4998, + 4997, + 686 + ], + "edges_to": [], + "id": 4996, + "label": "MGT 121B", + "title": "Innovation to Market B (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4996 + ], + "id": 4997, + "label": "MGT 121A", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4996 + ], + "id": 4998, + "label": "MGT 111", + "title": "" + }, + { + "dept": "HINE", + "description": "An examination of the conflicts, changes, and continuities in the Middle East since 2000. The course includes inspection of the US role in Iraq and the region generally.", + "edges_from": [], + "edges_to": [], + "id": 4999, + "label": "HINE 120", + "title": "The Middle East in the New Century (4)" + }, + { + "dept": "HINE", + "description": "Eastern problems on the example of Turkey and with special attention to collective identities, state-society dynamics, foreign and regional policies, and varieties of modernity.", + "edges_from": [], + "edges_to": [], + "id": 5000, + "label": "HINE 127", + "title": "History of Modern Turkey (4)" + }, + { + "dept": "BENG", + "description": "Course given at the discretion of the faculty on current topics of interest in bioengineering. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 5001, + "label": "BENG 207", + "title": "Topics in Bioengineering (4)" + }, + { + "dept": "COMM", + "description": "An advanced television course that examines the history, form, and function of the television documentary in American society. Experimentation with documentary techniques and styles requires prior knowledge of television or film production. Laboratory sessions apply theory and methods in the documentary genre via technological process. Integrates research, studio, and field experience of various media components. May be taken for credit three times. ", + "edges_from": [ + 540, + 731, + 1412, + 1413 + ], + "edges_to": [], + "id": 5002, + "label": "COMM 102T", + "title": "MMPP: Television Documentary (6)" + }, + { + "dept": "MAE", + "description": "of Distributed Parameter Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 5003, + "label": "MAE 287", + "title": "Control" + }, + { + "dept": "MAE", + "description": "Continuous mechanics of solids and its application", + "edges_from": [], + "edges_to": [ + 3579 + ], + "id": 5004, + "label": "MAE 131B", + "title": "Fundamentals of Solid Mechanics II (4)" + }, + { + "dept": "MAE", + "description": "Multivariable feedback systems: transfer function matrices, Smith-McMillan form, poles, zeros, principal gains, operator norms, limits on performance. Model uncertainties, stability and performance robustness. Design of robust controllers, H_inf and mu synthesis. Controller reduction. ", + "edges_from": [ + 2748 + ], + "edges_to": [], + "id": 5005, + "label": "MAE 284", + "title": "Robust and Multivariable Control (4)" + }, + { + "dept": "ECE", + "description": "Image quantization and sampling, image transforms,", + "edges_from": [], + "edges_to": [], + "id": 5006, + "label": "ECE 253", + "title": "Fundamentals of Digital Image Processing (4)" + }, + { + "dept": "HIGR", + "description": "An introduction to historical scholarship on women and gender, this cross-field course is designed for graduate students from all fields in history as well as from other related disciplines. The course will introduce major themes, debates, and theoretical approaches to women\u2019s and gender history. The content of the course will change from year to year, but will include theoretical texts, historical case studies from different times and places, and primary sources. May be taken for credit two times.", + "edges_from": [], + "edges_to": [], + "id": 5007, + "label": "HIGR 205", + "title": "Historical Scholarship on Women and Gender (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 410A-B-C. Students may not get credit for any IRLA 410 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 5008, + "label": "GPLA 410A-B-C", + "title": "Low Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "CENG", + "description": "Development of quantitative understanding of the different", + "edges_from": [], + "edges_to": [], + "id": 5009, + "label": "CENG 212", + "title": "Intermolecular and Surface Forces (4)" + }, + { + "dept": "HIGR", + "description": "A transdisciplinary and comparative course on the interplay of nationalism, colonialism, and race (as well as class and gender/sexuality) in the nineteenth and twentieth centuries.", + "edges_from": [], + "edges_to": [], + "id": 5010, + "label": "HIGR 207", + "title": "Nationalism, Colonialism, and Race (4)" + }, + { + "dept": "BILD", + "description": "Course introduces students to some of the research approaches employed by physicians and scientists at the UC San Diego School of Medicine to investigate the etiology, biology, prevention and treatment of human diseases, including cancer, diabetes, and others. P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 5011, + "label": "BILD 40", + "title": "Introduction to Biomedical Research (2)" + }, + { + "dept": "HIGR", + "description": "An introductory graduate course for students in all fields. Themes include cross-field historiography and theory, interdisciplinary approaches to history and historical method. (May be taken twice for credit, if the reading list is significantly different.)", + "edges_from": [], + "edges_to": [], + "id": 5012, + "label": "HIGR 200", + "title": "History and Theory (4)" + }, + { + "dept": "LTWL", + "description": "Studies in specialized literary, philosophic, and artistic movements, approaches to literature, literary ideas, historical moments, etc. LTWL 172 and LTWL 172GS may be taken for credit for a combined total of three times.", + "edges_from": [], + "edges_to": [], + "id": 5013, + "label": "LTWL 172", + "title": "Special Topics in Literature (4)" + }, + { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 5014, + "label": "BGJC 208", + "title": "Journal Club in Plant Molecular Biology (1)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1E. ", + "edges_from": [ + 3246, + 3247 + ], + "edges_to": [], + "id": 5015, + "label": "Linguistics/Arabic (LIAB) 1EX", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 150.) Examines the role of the visual in power relations; the production of what we \u201csee\u201d regarding race and sexuality; the interconnected history of the casta system, plantation slavery, visuality, and contemporary society; decolonial and queer counternarratives to visuality.", + "edges_from": [], + "edges_to": [], + "id": 5016, + "label": "ETHN 150", + "title": "Visuality, Sexuality, and Race (4)" + }, + { + "dept": "HISC", + "description": "This course will explore the evolution of the institutions, ideologies, procedures, standards, and expertise that modern democratic societies have used in applying science to generate and legitimate public policy.", + "edges_from": [], + "edges_to": [], + "id": 5017, + "label": "HISC 180/280", + "title": "Science and Public Policy (4)" + }, + { + "dept": "TDMV", + "description": "Ballet for Contemporary Dance (4)", + "edges_from": [], + "edges_to": [], + "id": 5018, + "label": "TDMV 112", + "title": "Advanced" + }, + { + "dept": "TDMV", + "description": "A contemporary approach to ballet technique, terminology, and performance at the advanced level. Introduces more complex choreographic variations and skills. Individual and group composition will be examined and aesthetic criticism applied. May be taken for credit six times. ", + "edges_from": [ + 5020 + ], + "edges_to": [], + "id": 5019, + "label": "TDMV 111", + "title": "Advanced Ballet (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [ + 2492 + ], + "edges_to": [ + 5019 + ], + "id": 5020, + "label": "TDMV 110", + "title": "" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in business and addresses the new frontiers in the industry. Topics may include intellectual property, consumer behavior, market research, analytics, and spreadsheet modeling, etc. May be taken for credit three times. Instructional methods include face-to-face lecture, case presentation, assigned reading, and group discussion. ", + "edges_from": [], + "edges_to": [], + "id": 5021, + "label": "MGT 119", + "title": "Topics in Business (4)" + }, + { + "dept": "HILA", + "description": "Selected topics in Latin American history. Course may be taken for credit up to three times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in HILA 144 will have the duplicate credit removed from their academic record.", + "edges_from": [], + "edges_to": [], + "id": 5022, + "label": "HILA 144", + "title": "Topics in Latin American History (4)" + }, + { + "dept": "Jewish", + "description": "199. Independent Study in Jewish Studies (1-4)", + "edges_from": [], + "edges_to": [], + "id": 5023, + "label": "Jewish Studies", + "title": "" + }, + { + "dept": "HIGR", + "description": "Provides instruction in academic professionalization, including qualifying exams; prospectus/grant writing; conference presentations; publishing articles/books; job market; and tenure review. Weekly readings, writing assignments, discussion, and peer review develop skills necessary for success as graduate students and future faculty.", + "edges_from": [], + "edges_to": [], + "id": 5024, + "label": "HIGR 208", + "title": "Graduate Professional Development (4)" + }, + { + "dept": "MGT", + "description": "Focuses on elements of business law that are essential for the basic management of business operations. Topics include the law of contracts, sales, partnership, corporations, bankruptcy, and securities. Students will also gain knowledge of intellectual property law and dispute resolution. ", + "edges_from": [], + "edges_to": [], + "id": 5025, + "label": "MGT 117", + "title": "Business Law (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with Physics 151.) Particle", + "edges_from": [], + "edges_to": [], + "id": 5026, + "label": "MAE 117A", + "title": "Elementary Plasma Physics (4)" + }, + { + "dept": "HIGR", + "description": "Readings and critical analysis of selected topics and important works in the history of Spain. May be repeated as content changes. Proficiency in Spanish required to repeat course, but not for first time taken. An IP grade will be awarded at the end of the first quarter. Final grade will not be given until the end of the second quarter.", + "edges_from": [], + "edges_to": [], + "id": 5027, + "label": "HIGR 227A-B", + "title": "Seminar in Spanish History (4-4)" + }, + { + "dept": "MGT", + "description": "Will examine the advantages and complications of the multinational organization with emphasis on translating marketing, financing, and operating plans in light of geographical, cultural, and legal differences across the globe. Will also cover organizational considerations for transglobal management. ", + "edges_from": [ + 1004, + 3118, + 686 + ], + "edges_to": [], + "id": 5028, + "label": "MGT 112", + "title": "Global Business Strategy (4)" + }, + { + "dept": "ESYS", + "description": "Individually guided readings or projects in the area of environmental systems. #EndEditable", + "edges_from": [], + "edges_to": [], + "id": 5029, + "label": "ESYS 199", + "title": "Independent Study (2-4)" + }, + { + "dept": "EDS", + "description": "Talking Culture, Culture Talking: Voices of Diversity (4)", + "edges_from": [], + "edges_to": [], + "id": 5030, + "label": "EDS 278/COGR 278", + "title": "" + }, + { + "dept": "GPPS", + "description": "This course investigates how the public forms opinions about foreign policy and the various means, both direct and indirect, through which public opinion can influence the policy-making process. We consider such issues as: How does the public learn about foreign policy? Do they care about it? If so, under what circumstances will political leaders be responsive to the public\u2019s preferences? Do politics really stop at the water\u2019s edge? Should public opinion have a role in foreign policy? May not receive credit for GPPS 451 and the IRGN 490 with the same course title.", + "edges_from": [], + "edges_to": [], + "id": 5031, + "label": "GPPS 451", + "title": "Public Opinion and Foreign Policy (4)" + }, + { + "dept": "GPPS", + "description": "The course is designed to develop the analytical tools to assess how foreign aid is allocated and whether it is effective. We will ask the following key questions: (1) Why do states give foreign aid?; (2) Is foreign aid effective?; (3) How do donors allocate foreign aid?; (4) What are the differences between bilateral and multilateral aid?; and, (5) Are there unintended consequences of foreign aid? The readings will consist of both seminal and recent works in political science and economics. May not receive credit for GPPS 450 and the IRGN 490 with the same course title.", + "edges_from": [], + "edges_to": [], + "id": 5032, + "label": "GPPS 450", + "title": "The Political Economy of Foreign Aid (4)" + }, + { + "dept": "GPPS", + "description": "This course investigates both the risks and the institutional and political underpinnings of financial deepening and financial repression in China. Students will keep track of the latest financial developments in China and learn to predict which will have consequences for the future evolution of the Chinese financial system. Renumbered from IRGN 455. Students may not receive credit for GPPS 455 and IRGN 455.", + "edges_from": [], + "edges_to": [], + "id": 5033, + "label": "GPPS 455", + "title": "Financing the Chinese Miracle (4)" + }, + { + "dept": "GPPS", + "description": "Issues to be actively debated include the collective defense of democracy, coping with revolutionary change, counter-narcotics, anti-corruption, international finance, trade, and US-Mexican and US-Brazilian relations. In each case, students analyze the strengths and weaknesses of current US policy and advocate alternative options. Renumbered from IRGN 454. Students may not receive credit for GPPS 454 and IRGN 454.", + "edges_from": [], + "edges_to": [], + "id": 5034, + "label": "GPPS 454", + "title": "Current Issues in US-Latin American Relations (4)" + }, + { + "dept": "GPPS", + "description": "Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 456. Students may not receive credit for GPPS 456 and IRGN 456.", + "edges_from": [], + "edges_to": [], + "id": 5035, + "label": "GPPS 456", + "title": "Program Design and Evaluation (4)" + }, + { + "dept": "HITO", + "description": "Sources for reconstructing ancient history present special challenges. Introduce and examine critically some basic myths and chronicles of the eastern Mediterranean and ancient Near East and assess the challenges to today\u2019s historian in reconstructing these histories.", + "edges_from": [], + "edges_to": [], + "id": 5036, + "label": "HITO 115S", + "title": "Myth, History, and Archaeology (4)" + }, + { + "dept": "ESYS", + "description": "Earth\u2019s dynamic physical systems interact in complex ways with profound impact on our environment. Processes such as volcanism and weathering enable geochemical exchange between solid and fluid (ocean and atmosphere) systems. Sea level and climate changes interface with tectonic processes. ", + "edges_from": [ + 129, + 130, + 1059, + 29, + 1318 + ], + "edges_to": [], + "id": 5037, + "label": "ESYS 102", + "title": "The Solid and Fluid Earth (4)" + }, + { + "dept": "HIUS", + "description": "United States in the Twentieth Century, 1945 to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 5038, + "label": "HIUS 142B", + "title": "" + }, + { + "dept": "HIUS", + "description": "United States in the Twentieth Century, 1900\u20131945 (4)", + "edges_from": [], + "edges_to": [], + "id": 5039, + "label": "HIUS 142A", + "title": "" + }, + { + "dept": "HINE", + "description": "Examines the contacts of the late Ottoman", + "edges_from": [], + "edges_to": [], + "id": 5040, + "label": "HINE 116", + "title": "The Middle East in the Age of European Empires (1798\u20131914) (4)" + }, + { + "dept": "PSYC", + "description": "This course takes a critical approach to the scientific evidence regarding the role of parents in child development. Topics may include behavior genetics, discipline, diet, sleep, the nature of learning, screen time, impulse control, and vaccination. ", + "edges_from": [], + "edges_to": [], + "id": 5041, + "label": "PSYC 190", + "title": "Science of Parenting (4)" + }, + { + "dept": "ANTH", + "description": "This seminar studies the dynamics of climate change and human responses through time. Topics include research methods in socioecodynamics, human responses to change in different sociopolitical and economic contexts, and lessons from the past that can inform the present. Students may not receive credit for ANTH 270 and SIOG 270. ", + "edges_from": [], + "edges_to": [], + "id": 5042, + "label": "ANTH 270", + "title": "The Archaeology of Climate Change\u2014Social Adaptation and Vulnerability in Temporal Perspective (4)" + }, + { + "dept": "POLI", + "description": "This course covers advanced topics in the design and implementation of field surveys and interviews. Questionnaire design and survey techniques for sensitive topics such as list experiments will be developed, as well as sampling methodologies to achieve representivity.", + "edges_from": [], + "edges_to": [], + "id": 5043, + "label": "POLI 275", + "title": "Interviews, Survey Design, and Sampling (4)" + }, + { + "dept": "COGR", + "description": "The visual is an increasingly important component of communication in everyday life. This course covers post-1968 theories of visual culture in domains such as art, film, news, the media, popular culture, medicine, sciences, and many other aspects of everyday life. ", + "edges_from": [], + "edges_to": [], + "id": 5044, + "label": "COGR 248", + "title": "Visual Culture (4)" + }, + { + "dept": "POLI", + "description": "Use of advanced quantitative techniques in political science. Students will use political science data to complete small exercises and a major project. Students may not receive credit for both 271B and 271. ", + "edges_from": [], + "edges_to": [], + "id": 5045, + "label": "POLI 271", + "title": "Advanced Statistical Applications (4)" + }, + { + "dept": "POLI", + "description": "This course reviews essential calculus and linear algebra and introduces probability theory (probability rules, random variables, univariate and multivariate distributions) and mathematical statistics (sampling distributions, estimation and inference frameworks). ", + "edges_from": [], + "edges_to": [], + "id": 5046, + "label": "POLI 270", + "title": "Mathematical and Statistical Foundations (4)" + }, + { + "dept": "POLI", + "description": "This course covers designs and methods of causal inference, including randomized experiments, cross-sectional and longitudinal designs, and other tools such as sensitivity analysis and randomization inference. These methods are illustrated with examples in political science and positive political economy. ", + "edges_from": [], + "edges_to": [], + "id": 5047, + "label": "POLI 273", + "title": "Causal Inference (4)" + }, + { + "dept": "POLI", + "description": "Provides students a solid understanding of Bayesian inference and Markov chain Monte Carlo methods. Topics covered include Bayesian treatment of the linear model, Markov chain Monte Carlo methods, assessing model adequacy, and hierarchical models. ", + "edges_from": [], + "edges_to": [], + "id": 5048, + "label": "POLI 272", + "title": "Bayesian Methods (4)" + }, + { + "dept": "MUS", + "description": "Concentrated inquiry into various problems not covered in the usual undergraduate courses. ", + "edges_from": [], + "edges_to": [], + "id": 5049, + "label": "MUS 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "POLI", + "description": "This course offers selected topics in quantitative methodology. Content may vary each time the course is offered. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5050, + "label": "POLI 279", + "title": "Special Topics in Methodology (4)" + }, + { + "dept": "POLI", + "description": "This course introduces the formal literature on economic models of voting and electoral politics. It reviews models that look at elections as I) mechanisms for preference aggregation, II) mechanisms for information aggregation, and III) mechanisms for selecting and incentivizing politicians. ", + "edges_from": [], + "edges_to": [], + "id": 5051, + "label": "POLI 278", + "title": "Political Economy Models of Elections (4)" + }, + { + "dept": "PHYS", + "description": "From time to time a member of the regular faculty or a resident visitor will give a self-contained short course on a topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. Course may be taken for credit up to two times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in Physics 139 will have the duplicate credit removed from their academic record. ", + "edges_from": [ + 129, + 36, + 133, + 134, + 33, + 40, + 41, + 138, + 139, + 140, + 141, + 37, + 38, + 29, + 30, + 31 + ], + "edges_to": [], + "id": 5052, + "label": "PHYS 139", + "title": "Physics Special Topics (4)" + }, + { + "dept": "CSE", + "description": "This course provides an introduction to bioinformatics techniques for analyzing and interpreting human genomes. Topics covered include an introduction to medical and population genetics, ancestry, finding and interpreting disease-causing variants, genome-wide association studies, genetic risk prediction, analyzing next-generation sequencing data, how to scale current genomics techniques to analyze hundreds of thousands of genomes, and the social impact of the personal genomics revolution. Programming experience, familiarity with the UNIX command line, and a basic course in probability and statistics are strongly recommended. Students may not receive credit for CSE 284 and CSE 291 (E00) taught winter 2017 with the same subtitle. ", + "edges_from": [], + "edges_to": [], + "id": 5053, + "label": "CSE 284", + "title": "Personal Genomics for Bioinformaticians (4)" + }, + { + "dept": "ANTH", + "description": "This seminar will review a series of current or recent significant debates in anthropology. The debates will be examined in the light of their substantive, theoretical, and epistemological implications, with some attention to the rhetorical elements of the arguments themselves. ", + "edges_from": [ + 5055 + ], + "edges_to": [], + "id": 5054, + "label": "ANTH 274", + "title": "Debates in Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 5054 + ], + "id": 5055, + "label": "ANGR 274", + "title": "" + }, + { + "dept": "ETHN", + "description": "This course provides an introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization. In addition to a wide-ranging look at the complex foundations of systems of representing Indians and Indianness, the course includes a study of a specific art form and history of a specific Native American community that will allow the class to create new approaches to designing a museum exhibition. May be coscheduled with ETHN 114A.", + "edges_from": [], + "edges_to": [ + 5816 + ], + "id": 5056, + "label": "ETHN 214A", + "title": "Representing Native America (4)" + }, + { + "dept": "PHYS", + "description": "A project-oriented laboratory course utilizing state-of-the-art experimental techniques in materials science. The course prepares students for research in a modern condensed matter-materials science laboratory. Under supervision, the students develop their own experimental ideas after investigating current research literature. With the use of sophisticated state-of-the-art instrumentation students conduct research, write a research paper, and make verbal presentations. Program or materials fees may apply. ", + "edges_from": [ + 443, + 446 + ], + "edges_to": [], + "id": 5057, + "label": "PHYS 133", + "title": "Condensed Matter/Materials Science Laboratory (4)" + }, + { + "dept": "PHYS", + "description": "Quantum mechanics and gravity. Electromagnetism from gravity and extra dimensions. Unification of forces. Quantum black holes. Properties of strings and branes. ", + "edges_from": [ + 200, + 5059, + 5060 + ], + "edges_to": [], + "id": 5058, + "label": "PHYS 137", + "title": "String Theory (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 129, + 36, + 133, + 134, + 135, + 136, + 41, + 138, + 139, + 140, + 141, + 385, + 37, + 38, + 29, + 30, + 31 + ], + "edges_to": [ + 200, + 5058, + 5115, + 5819 + ], + "id": 5059, + "label": "PHYS 110A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 129, + 36, + 133, + 134, + 135, + 136, + 41, + 138, + 139, + 140, + 141, + 385, + 37, + 38, + 29, + 30, + 31 + ], + "edges_to": [ + 200, + 5233, + 5058, + 5819, + 294 + ], + "id": 5060, + "label": "PHYS 100A", + "title": "" + }, + { + "dept": "HILD", + "description": "Explores the history of public health, from the plague hospitals of Renaissance Italy to the current and future prospects for global health initiatives, emphasizing the complex biological, cultural, and social dimensions of health, sickness, and medicine across time and space.", + "edges_from": [], + "edges_to": [], + "id": 5061, + "label": "HILD 30", + "title": "History of Public Health (4)" + }, + { + "dept": "COMM", + "description": "Using classic and modern texts, the course explores fundamental questions of law and political theory: What are rights and where do they come from? What is the balance between freedom and equality, between individual and common goods? These theoretical explorations are then oriented to specifically communication concerns: What is the relationship between privacy and personhood? Between free speech and democracy? Between intellectual property and efficient markets? ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 5062, + "label": "COMM 114M CSI: Communication and the Law (4)", + "title": "" + }, + { + "dept": "EDS", + "description": "Reading, writing, and speaking exercises will introduce students to the teaching conventions and learning expectations of American universities. Students will use writing as a means of academic inquiry to explore the culture of higher education in the United States and will gain practice with appropriate style, structure, and mechanics. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5063, + "label": "EDS 21S", + "title": "Writing and Learning\u2014Triton Transition (4)" + }, + { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "edges_from": [], + "edges_to": [ + 5794 + ], + "id": 5064, + "label": "MATH 210A", + "title": "Mathematical" + }, + { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "edges_from": [], + "edges_to": [ + 5794 + ], + "id": 5065, + "label": "MATH 210B", + "title": "Mathematical" + }, + { + "dept": "POLI", + "description": "Political Parties and Interest Groups (4)", + "edges_from": [], + "edges_to": [], + "id": 5066, + "label": "POLI 137A", + "title": "Comparative" + }, + { + "dept": "PHYS", + "description": "Transport phenomena; kinetic theory and the Chapman-Enskog method; hydrodynamic theory; nonlinear effects and the mode coupling method. Stochastic processes; Langevin and Fokker-Planck equation; fluctuation-dissipation relation; multiplicative processes; dynamic field theory; Martin-Siggia-Rose formalism; dynamical scaling theory. ", + "edges_from": [ + 2974 + ], + "edges_to": [], + "id": 5067, + "label": "PHYS 210B", + "title": "Nonequilibrium Statistical Mechanics (4)" + }, + { + "dept": "HIUS", + "description": "An overview of the social and political developments that polarized American society in the tumultuous decade of the 1960s. Themes include the social impact of the postwar baby boom, the domestic and foreign policy implications of the Cold War; the evolution of the civil rights and women\u2019s movements; and the transformation of American popular culture.", + "edges_from": [], + "edges_to": [], + "id": 5068, + "label": "HIUS 149", + "title": "The United States in the 1960s (4)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1D. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 3249, + 3250 + ], + "edges_to": [], + "id": 5069, + "label": "Linguistics/Arabic (LIAB) 1DX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "PSYC", + "description": "This seminar provides an overview of the past and current research on the neurobiology of actions in normal and diseased states such as addiction, Parkinson\u2019s, and other psychiatric disorders. ", + "edges_from": [], + "edges_to": [], + "id": 5070, + "label": "PSYC 268", + "title": "Neurobiology of Action (4)" + }, + { + "dept": "HIUS", + "description": "Selected topics in US history. Course may be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5071, + "label": "HIUS 144", + "title": "Topics in US History (4)" + }, + { + "dept": "HIUS", + "description": "This course will examine the economic, social, and political changes underway in the United States from 1917 to 1945. Topics will include the 1920s, the Great Depression, the New Deal and the consequences of two World Wars.", + "edges_from": [], + "edges_to": [], + "id": 5072, + "label": "HIUS 145", + "title": "From New Era to New Deal (4)" + }, + { + "dept": "PSYC", + "description": "Concentrates on what psychology has to contribute to the understanding of illness, its treatment, and the social context in which these processes occur. Topics: psychological factors in the etiology and treatment of illness, doctor-patient roles, and communication. ", + "edges_from": [], + "edges_to": [], + "id": 5073, + "label": "PSYC 265", + "title": "Social Psychology and Medicine (4)" + }, + { + "dept": "PSYC", + "description": "This graduate seminar addresses the science behind mindfulness. Topics include the effects of mindfulness practice on neural processing, psychological well-being, and prosocial behavior. A particular emphasis will be placed on the implications of mindfulness practices/effects on society and education. ", + "edges_from": [], + "edges_to": [], + "id": 5074, + "label": "PSYC 263", + "title": "Science of Mindfulness (4)" + }, + { + "dept": "PSYC", + "description": "The vertebrate brain contains a network of strongly interconnected structures that play essential roles in the regulation of social behavior. In this seminar we will read and discuss primary literature that details the structure and behavioral functions of this network.", + "edges_from": [], + "edges_to": [], + "id": 5075, + "label": "PSYC 262", + "title": "Functional Construction of the Vertebrate Brain\u2019s Social Behavior Network (4)" + }, + { + "dept": "PSYC", + "description": "This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language. Cross-listed with LIGN 283. ", + "edges_from": [], + "edges_to": [], + "id": 5076, + "label": "PSYC 260", + "title": "Language and Conceptual Development (4)" + }, + { + "dept": "ANSC", + "description": "This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens\u2019 efforts to promote social change in contemporary democracies. ", + "edges_from": [], + "edges_to": [], + "id": 5077, + "label": "ANSC 142", + "title": "Anthropology of Latin America (4)" + }, + { + "dept": "EDS", + "description": "Advanced EDS students are prepared in effective methods of supervising the preparation of UC San Diego students serving as paraprofessionals in K\u201312 classrooms. Topics covered include: classroom management, interpersonal relations, supervision techniques, multicultural and multilingual education, politics in the school, and curriculum development. Each student serves as a discussion leader and conducts at least two workshops. ", + "edges_from": [], + "edges_to": [], + "id": 5078, + "label": "EDS 195", + "title": "Apprentice Teaching (2\u20134)" + }, + { + "dept": "ANSC", + "description": "Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections\u2014against genocide, torture, enslavement, political persecution, etc.\u2014and their violation, from the early Cold War to the present. Students may not receive credit for both ANSC 140 and HMNR 101. ", + "edges_from": [], + "edges_to": [], + "id": 5079, + "label": "ANSC 140", + "title": "Human Rights II: Contemporary Issues (4)" + }, + { + "dept": "NEU", + "description": "Issues and Dilemmas in Clinical Trials (2)", + "edges_from": [], + "edges_to": [], + "id": 5080, + "label": "NEU 285", + "title": "Clinical Trails:" + }, + { + "dept": "NEU", + "description": "This intensive writing course offers graduate students in the neurosciences the opportunity to propose and defend an original research project. Students are required to select a research problem in the neurosciences and propose and experimental approach for solving it. ", + "edges_from": [], + "edges_to": [], + "id": 5081, + "label": "NEU 280", + "title": "Minor Proposition (4)" + }, + { + "dept": "CHEM", + "description": "A chemical perspective of the origin and evolution of the biogeochemical systems of stars, elements, and planets through time. The chemical evolution of the earth, its atmosphere, and oceans, and their historical records leading to early life are discussed. The content includes search techniques for chemical traces of life on other planets. ", + "edges_from": [ + 578, + 215 + ], + "edges_to": [], + "id": 5082, + "label": "CHEM 111", + "title": "Origins of Life and the Universe (4)" + }, + { + "dept": "COMM", + "description": "Specialized advanced study in cultural production with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 5083, + "label": "COMM 146", + "title": "Advanced Topics in Cultural Production (4)" + }, + { + "dept": "HIEA", + "description": "Introduction to material culture in China from a historical perspective. Consider Chinese primary sources (including both historical texts and objects) from the point of view of the new interdisciplinary field of material culture studies.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5084, + "label": "HIEA 128", + "title": "History of Material Culture in China (4)" + }, + { + "dept": "RELI", + "description": "This course will look at the relationship between information communication technologies (ICTs) and religion and how they have intersected or diverged in the course of history. We will look at both older and newer media, such as telegraph, radio, television, cassette tapes, Internet and satellite, and how they have been used by groups like Evangelical, Catholic, or Islamist movements in proliferation and transformation of ideas, rituals, ideologies, values, and diverse forms of sociability. ", + "edges_from": [], + "edges_to": [], + "id": 5085, + "label": "RELI 145", + "title": "Communication, Technology, and Religion (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in marketing. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 489 and MGT 209 if the course has the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5086, + "label": "MGT 489", + "title": "Topics in Marketing (2 or 4)" + }, + { + "dept": "CHEM", + "description": "A discussion of the chemistry of representative enzyme catalyzed reactions", + "edges_from": [], + "edges_to": [], + "id": 5087, + "label": "CHEM 116", + "title": "Chemistry of Enzyme Catalyzed Reactions (4)" + }, + { + "dept": "HIEA", + "description": "We read primary and secondary sources to explore the experiences, worldview, and relationships of Ming men and women, variously including emperors and empresses, scholar-officials, upper-class wives, merchants, weavers, painters, eunuchs, Daoists, fighting monks, farmers, actors, gardeners, courtesans, soldiers, and pirates. +", + "edges_from": [], + "edges_to": [], + "id": 5088, + "label": "HIEA 124", + "title": "Life in Ming China (1369\u20131644) (4)" + }, + { + "dept": "CHEM", + "description": "A survey of the biochemical action of drugs and toxins as well as their", + "edges_from": [], + "edges_to": [], + "id": 5089, + "label": "CHEM 118", + "title": "Pharmacology and Toxicology (4)" + }, + { + "dept": "HIEA", + "description": "Silk Road in Chinese and Japanese History (4)", + "edges_from": [], + "edges_to": [], + "id": 5090, + "label": "HIEA 126", + "title": "The" + }, + { + "dept": "ANSC", + "description": "This course addresses: 1) Diversity among traditional Native American cultures with respect to social organization, religion, environmental adaptation, subsistence, and reaction to colonial conquest and domination; and, 2) Contemporary social issues including tribal sovereignty, religious freedom, health, education, gambling, and repatriation of artifacts/remains. ", + "edges_from": [], + "edges_to": [], + "id": 5091, + "label": "ANSC 145", + "title": "Indigenous Peoples of North America (4)" + }, + { + "dept": "HIEA", + "description": "Chinese Philosophy and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 5092, + "label": "HIEA 120", + "title": "Classical" + }, + { + "dept": "HIEA", + "description": "This course covers the period from the sixth century to the thirteenth century, the time of the glorious T\u2019angand Sung dynasties. We focus on the \u201cmedieval revolution\u201d that changed the political, economic, and social life of the empire. As much as possible, we study these changes from the eyes of the people who lived throughout them\u2014aristocrats, peasants, soldiers, merchants, women.", + "edges_from": [], + "edges_to": [], + "id": 5093, + "label": "HIEA 121", + "title": "Medieval Chinese Culture and Society (4)" + }, + { + "dept": "HIEA", + "description": "Imperial Chinese Culture and Society (4)", + "edges_from": [], + "edges_to": [], + "id": 5094, + "label": "HIEA 122", + "title": "Late" + }, + { + "dept": "HIEA", + "description": "Ming history from its beginnings under Mongol rule until its fall to rebels and the Manchus. We study government and society under each of the sixteen emperors, and major events like the Zheng He voyages and the first Sino-Japanese War. Recommended preparation: HILD 11.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5095, + "label": "HIEA 123", + "title": "China under the Ming Dynasty (1368\u20131644) (4)" + }, + { + "dept": "HIEU", + "description": "This course examines Constantinople in its imperial period (Byzantine and Ottoman) when it served as the political, cultural, economic, and religious center of empire. We examine continuity and change in areas such as urban space, demography, institutions, and art and architecture. Students must apply and be accepted into the Global Seminar Program.", + "edges_from": [], + "edges_to": [], + "id": 5096, + "label": "HIEU 106GS", + "title": "Constantinople: Imperial Capital (4)" + }, + { + "dept": "HIEU", + "description": "An analysis of European history since the end of the Second World War. Focus is on political, social, economic, and cultural developments within European societies as well as on Europe\u2019s relationship with the wider world (the Cold War, decolonization).", + "edges_from": [], + "edges_to": [], + "id": 5097, + "label": "HIEU 128", + "title": "Europe since 1945 (4)" + }, + { + "dept": "LHCO", + "description": "The survey course introduces students to the relationship of law to health care, including liability, government regulation, financial and ethical issues, contracting, and negotiation and dispute resolution. The course will incorporate the most current trends related to health law and feature guest speakers on relevant topics. ", + "edges_from": [], + "edges_to": [], + "id": 5098, + "label": "LHCO 220", + "title": "Topics in Health Law (2)" + }, + { + "dept": "ECE", + "description": "This course is designed to provide a treatise of semiconductor devices based on solid state phenomena. Band structures carrier scattering and recombination processes and their influence on transport properties will be emphasized. (Recommended prerequisites: ECE 230A or equivalent.) ", + "edges_from": [ + 4101 + ], + "edges_to": [], + "id": 5099, + "label": "ECE 230C", + "title": "Solid State Electronics III (4)" + }, + { + "dept": "HISC", + "description": "A cultural history of the formation of early modern science in the sixteenth and seventeenth centuries: the social forms of scientific life; the construction and meaning of the new cosmologies from Copernicus to Newton; the science of politics and the politics of science; the origins of experimental practice; how Sir Isaac Newton restored law and order to the West.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5100, + "label": "HISC 106", + "title": "The Scientific Revolution (4)" + }, + { + "dept": "LTCO", + "description": "Contemporary theories of the significance of literary form. The seminar will concentrate on major interpretive approaches drawn from several areas of literary, cultural, and political analysis, including Marxist theory, feminism, psychoanalytic theory, postcolonial studies, LGBT studies, diaspora studies, and others. The particular focus and approach may vary. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 5101, + "label": "LTCO 201", + "title": "Theories and Methods of Literary Analysis (4)" + }, + { + "dept": "SE", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 5102, + "label": "SE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ECE", + "description": "Convolutional codes, maximum-likelihood (ML) decoding, maximum a-posteriori (MAP) decoding, parallel and serial concatenation architectures, turbo codes, repeat-accumulate (RA) codes, the turbo principle, turbo decoding, graph-based codes, message-passing decoding, low-density parity check codes, threshold analysis, applications. Students who have taken ECE 259BN may not receive credit for ECE 259B. (Recommended prerequisites: ECE 154A-B-C.) ", + "edges_from": [ + 2173 + ], + "edges_to": [], + "id": 5103, + "label": "ECE 259B", + "title": "Probabilistic Coding (4)" + }, + { + "dept": "LIGN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5104, + "label": "LIGN 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ECE", + "description": "Design of power amplifiers for mobile terminals and base-stations, with emphasis on high linearity and efficiency. After a discussion of classical designs (Class A, AB, B, C, D, E, F, and S), linearization procedures are presented and composite architectures (envelope tracking, EER, and Doherty) are covered. Familiarity with basic microwave design and communication system architecture is assumed. (Recommended prerequisites: ECE 166.) ", + "edges_from": [ + 4102 + ], + "edges_to": [], + "id": 5105, + "label": "ECE 265C", + "title": "Power Amplifiers for Wireless Communications (4)" + }, + { + "dept": "CAT", + "description": "to Special Projects/Topics (2 or 4)", + "edges_from": [], + "edges_to": [], + "id": 5106, + "label": "CAT 24", + "title": "Introduction" + }, + { + "dept": "TDGR", + "description": "This seminar focuses on the specific considerations that support and sustain a professional career as a contemporary dance maker and performer. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5107, + "label": "TDGR 218A", + "title": "Professional Practices (4)" + }, + { + "dept": "FMPH", + "description": "This is the second of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will interpret and contextualize findings from their projects completed in the first part of the series. Oral and written presentations will focus on disseminating public health information in diverse formats.Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 4654 + ], + "edges_to": [], + "id": 5108, + "label": "FMPH 194", + "title": "Public Capstone II (4)" + }, + { + "dept": "HIGR", + "description": "This course will introduce students to the monographic literature and the main historiographic controversies of modern Korean history.", + "edges_from": [], + "edges_to": [], + "id": 5109, + "label": "HIGR 214", + "title": "Historical Scholarship on Modern Korean History (4)" + }, + { + "dept": "CENG", + "description": "Introduction to nanomedicine; diffusion and", + "edges_from": [], + "edges_to": [], + "id": 5110, + "label": "CENG 207", + "title": "Nanomedicine (4)" + }, + { + "dept": "HIGR", + "description": "Scholarship on Modern East Asian History (4)", + "edges_from": [], + "edges_to": [], + "id": 5111, + "label": "HIGR 212", + "title": "Historical" + }, + { + "dept": "HIGR", + "description": "Scholarship on Modern Japanese History (4)", + "edges_from": [], + "edges_to": [], + "id": 5112, + "label": "HIGR 211", + "title": "Historical" + }, + { + "dept": "HIGR", + "description": "Scholarship on Modern Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 5113, + "label": "HIGR 210", + "title": "Historical" + }, + { + "dept": "GLBH", + "description": "Course will be a workshop with critical input from all participants focused on preparing a senior thesis. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ", + "edges_from": [ + 345 + ], + "edges_to": [], + "id": 5114, + "label": "GLBH 150B", + "title": "Global Health Capstone Seminar II (4)" + }, + { + "dept": "PHYS", + "description": "Noninertial reference systems, dynamics of rigid bodies, Hamilton\u2019s equations, Liouville\u2019s theorem, chaos, continuum mechanics, special relativity. ", + "edges_from": [ + 385, + 5059, + 133, + 134, + 129, + 136, + 138, + 135, + 140, + 141, + 139 + ], + "edges_to": [ + 5436 + ], + "id": 5115, + "label": "PHYS 110B", + "title": "Mechanics II (4)" + }, + { + "dept": "CENG", + "description": "Basic engineering principles of nanofabrication.", + "edges_from": [], + "edges_to": [], + "id": 5116, + "label": "CENG 208", + "title": "Nanofabrication (4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 255.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper/exam. (May not be offered every year.) ", + "edges_from": [ + 2067, + 2068 + ], + "edges_to": [], + "id": 5117, + "label": "CHEM 155", + "title": "Synthesis of Complex Molecules (4)" + }, + { + "dept": "CHEM", + "description": "A comprehensive survey of modern bioorganic and natural products chemistry. Topics will include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 257. ", + "edges_from": [ + 1552, + 1553, + 1554, + 1555 + ], + "edges_to": [], + "id": 5118, + "label": "CHEM 157", + "title": "Bioorganic and Natural Products Chemistry (4)" + }, + { + "dept": "EDS", + "description": "Examines the underlying mathematical concepts of the elementary school mathematics curriculum and related pedagogical implications for teaching. Topics include number concepts, algebraic thinking, geometry, and data collection and analysis. ", + "edges_from": [], + "edges_to": [], + "id": 5119, + "label": "EDS 385", + "title": "Elementary School Mathematics Content and Pedagogy (4)" + }, + { + "dept": "EDS", + "description": "This course satisfies the Commission on Teacher Credentialing requirements for Special Education. Topics include: teaching methods for accommodating special-needs students in the regular classroom, developing an Individual Education Plan, characteristics of special-needs students, lesson planning to accommodate individual differences, and legislated mandates. ", + "edges_from": [], + "edges_to": [], + "id": 5120, + "label": "EDS 382", + "title": "Inclusive Educational Practices (4)" + }, + { + "dept": "EDS", + "description": "This course satisfies the Commission on Teacher Credentialing requirement for Health Education. Topics include: physical education, substance abuse, sex education, cardio-pulmonary resuscitation, nutrition, and first aid. ", + "edges_from": [], + "edges_to": [], + "id": 5121, + "label": "EDS 381", + "title": "Health Education (4)" + }, + { + "dept": "ECE", + "description": "Advanced topics in design practices and methodologies for modern system-on-chip design. Different design alternatives are introduced and analyzed. Advanced design tools are used to design a hardware-software system. Class discussion, participation, and presentations of projects and special topics assignments are emphasized. ", + "edges_from": [ + 4969 + ], + "edges_to": [], + "id": 5122, + "label": "ECE 260C", + "title": "VLSI Advanced Topics (4)" + }, + { + "dept": "CSE", + "description": "Companion course to CSE 4GS where theory is applied and lab experiments", + "edges_from": [], + "edges_to": [], + "id": 5123, + "label": "CSE 6GS", + "title": "Mathematical Beauty in Rome Lab (4)" + }, + { + "dept": "CENG", + "description": "Principles of chemical process design and", + "edges_from": [], + "edges_to": [], + "id": 5124, + "label": "CENG 124A", + "title": "Chemical Plant and Process Design I (4)" + }, + { + "dept": "MGTF", + "description": "This course is aimed at developing analytical and transferable skills in the area of management of monetary policy and banking and nonbanking financial institutions, issues of credit and financial regulation. Making the connection with real life is the primary focus of this course. ", + "edges_from": [], + "edges_to": [], + "id": 5125, + "label": "MGTF 420", + "title": "Money and Banking (4)" + }, + { + "dept": "SE", + "description": "This course will treat quantitative aspects of the flow of uncontaminated groundwater as it influences the practice of geotechnical engineering. We will cover flow through porous media, generalized Darcy\u2019s law, groundwater modeling, confined and unconfined systems, well hydraulics, land subsidence, and construction dewatering.\u00a0", + "edges_from": [ + 2614 + ], + "edges_to": [], + "id": 5126, + "label": "SE 226", + "title": "Geotechnical Groundwater Engineering (4)" + }, + { + "dept": "AUD", + "description": "This course describes procedures and requirements for newborn hearing screening, and the detection and clinical management of congenital auditory disorders. Observations of newborn screening in a neonatal ICU environment. ", + "edges_from": [], + "edges_to": [], + "id": 5127, + "label": "AUD 270", + "title": "Newborn Hearing Screening and Management (3)" + }, + { + "dept": "AUD", + "description": "Detailed anatomy of the temporal bone, cranial nerves and basic neurophysiology for audiologists. Radiographic and magnetic resonance imaging of the temporal bone will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 5128, + "label": "AUD 271", + "title": "Temporal Bone Anatomy (3)" + }, + { + "dept": "VIS", + "description": "Film/video production will be framed through the script writing process, focusing on the problems of longer duration, density, and adaptation from other media. Students will both read and analyze both historical and contemporary scripts and produce a thirty- to sixty-minute script. Recommended preparation: VIS 177 Scripting Strategies. Two production-course limitation. ", + "edges_from": [ + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568 + ], + "edges_to": [], + "id": 5129, + "label": "VIS 184", + "title": "Advanced Scripting (4)" + }, + { + "dept": "VIS", + "description": "Through instruction and discussion, the class will focus on guiding students through advanced production on a senior project. Students will be expected to initiate and complete production on at least one portfolio-level project. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [ + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568 + ], + "edges_to": [], + "id": 5130, + "label": "VIS 185", + "title": "Senior Media Projects (4)" + }, + { + "dept": "NANO", + "description": "Experimental investigation of physical properties of materials such as: thermal expansion coefficient, thermal conductivity, glass transitions in polymers, resonant vibrational response, longitudinal and shear acoustic wave speeds, Curie temperatures, UV-VIS absorption and reflection. ", + "edges_from": [ + 4207 + ], + "edges_to": [], + "id": 5131, + "label": "NANO 100L", + "title": "Physical Properties of Materials Lab (4)" + }, + { + "dept": "VIS", + "description": "Advanced course to gain sophisticated control of lighting and sound recording techniques with understanding of theoretical implications and interrelation between production values and subject matter. Interactions between sound and image in various works in film, video, or installation. Two production-course limitation. ", + "edges_from": [ + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568 + ], + "edges_to": [], + "id": 5132, + "label": "VIS 181", + "title": "Sound and Lighting (4)" + }, + { + "dept": "VIS", + "description": "Film/video editing and problems of editing from theoretical and practical points-of-view. Films and tapes analyzed on a frame-by-frame, shot-by-shot basis. Edit stock material and generate own materials for editing final project. Aesthetic and technical similarities/differences of film/video. Recommended preparation: VIS 175 Editing-Theory and Production strongly recommended. Two production-course limitation. ", + "edges_from": [ + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568 + ], + "edges_to": [], + "id": 5133, + "label": "VIS 182", + "title": "Advanced Editing (4)" + }, + { + "dept": "CHEM", + "description": "Continuation of CHEM 43A, 143A, 43AM, and 143AM, emphasizing synthetic methods of organic chemistry. Enrollment is limited to majors in the Department of Chemistry and Biochemistry unless space is available. A materials fee is required. ", + "edges_from": [ + 1761, + 4546, + 4547, + 4221, + 3835 + ], + "edges_to": [ + 5136 + ], + "id": 5134, + "label": "CHEM 143B", + "title": "Organic Chemistry Laboratory (4)" + }, + { + "dept": "CHEM", + "description": "Identification of unknown organic compounds by a combination of chemical and physical techniques. This course is intended for chemistry majors only (CH25, CH28, CH31, CH32, CH33, CH34, CH35, CH36, CH37). Program or materials fees may apply. ", + "edges_from": [ + 1761, + 4546, + 4547, + 4221, + 3835 + ], + "edges_to": [], + "id": 5135, + "label": "CHEM 143C", + "title": "Organic Chemistry Laboratory (5)" + }, + { + "dept": "CHEM", + "description": "Advanced organic synthesis. Relationships between molecular structure and reactivity using modern synthetic methods and advanced instrumentation. Stresses importance of molecular design, optimized reaction conditions for development of practically useful synthesis, and problem-solving skills. A materials fee is required. ", + "edges_from": [ + 1552, + 1553, + 1554, + 1555, + 5134 + ], + "edges_to": [], + "id": 5136, + "label": "CHEM 143D", + "title": "Molecular Design and Synthesis (4)" + }, + { + "dept": "BENG", + "description": "282. Bioinformatics II: Introduction to Bioinformatics Algorithms (4)", + "edges_from": [], + "edges_to": [], + "id": 5137, + "label": "BENG 202/CSE", + "title": "" + }, + { + "dept": "MUS", + "description": "The purpose of this seminar is to bring together performance students, faculty, and guests for discussion, presentation of student and faculty projects, performances by guest artists, and master classes with different members of the performance faculty. ", + "edges_from": [], + "edges_to": [], + "id": 5138, + "label": "MUS 245", + "title": "Focus on Performance (2)" + }, + { + "dept": "PSYC", + "description": "This course will review the research on delay of gratification. We will cover what makes it in general so tough, what situations make it possible, who can do it, and what the implications of this ability are. We will draw from research in social, personality, and animal psychology as well as economics. ", + "edges_from": [], + "edges_to": [], + "id": 5139, + "label": "PSYC 258", + "title": "Delay of Gratification (4)" + }, + { + "dept": "MATH", + "description": "A continuation of recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ", + "edges_from": [ + 679 + ], + "edges_to": [], + "id": 5140, + "label": "MATH 160B", + "title": "Elementary Mathematical Logic II (4)" + }, + { + "dept": "ANAR", + "description": "The archaeological field and laboratory class will take place at Moquegua, Peru. It is an introduction to the research design of interdisciplinary projects, the technique of data collections, the methods of excavation and postexcavation lab work. Course materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 5141, + "label": "ANAR 119S", + "title": "Archaeological Field and Lab Class (8)" + }, + { + "dept": "HIEU", + "description": "Intellectual History, 1780\u20131870 (4)", + "edges_from": [], + "edges_to": [], + "id": 5142, + "label": "HIEU 142", + "title": "European" + }, + { + "dept": "HIEU", + "description": "Intellectual History, 1870\u20131945 (4)", + "edges_from": [], + "edges_to": [], + "id": 5143, + "label": "HIEU 143", + "title": "European" + }, + { + "dept": "HIEU", + "description": "This course explores the diverse history of women from the French Revolution to the present, with an emphasis on the variety of women\u2019s experience, the formation of gender identities, and the shifting relationship between gender and power over the course of the modern period. Topics include women and citizenship, science and gender, feminist movements, and the evolution of women\u2019s work.", + "edges_from": [], + "edges_to": [], + "id": 5144, + "label": "HIEU 140", + "title": "History of Women and Gender in Europe: From the French Revolution to the Present (4)" + }, + { + "dept": "HIEU", + "description": "European imperialism, alliances, and the outbreak of the First World War. The postwar settlement and its breakdown. The advent of Hitler and the disarray of the western democracies. The Second World War and the emergence of the super powers.", + "edges_from": [], + "edges_to": [], + "id": 5145, + "label": "HIEU 141", + "title": "European Diplomatic History, 1870\u20131945 (4)" + }, + { + "dept": "HIEU", + "description": "A consideration of the political, social, and cultural crisis that faced Western liberal democracies in the interwar period, with emphasis on the mass movements that opposed bourgeois liberalism from both the left and the right.", + "edges_from": [], + "edges_to": [], + "id": 5146, + "label": "HIEU 146", + "title": "Fascism, Communism, and the Crisis of Liberal Democracy: Europe 1919\u20131945 (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in European history. Course may be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5147, + "label": "HIEU 144", + "title": "Topics in European History (4)" + }, + { + "dept": "BENG", + "description": "Mathematical models of reconstructed reaction networks and simulation of their emergent properties. Classical kinetic theory, stochastic simulation methods and constraints-based models. Methods that are scalable and integrate multiple cellular processes will be emphasized. Existing genome-scale models will be described and computations performed. Emphasis will be on studying the genotype-phenotype relationship in an in silico model driven fashion. Comparisons with phenotypic data will be emphasized. ", + "edges_from": [ + 5149 + ], + "edges_to": [], + "id": 5148, + "label": "BENG 213", + "title": "Systems Biology and Bioengineering III: Building and Simulating Large-Scale In Silico Models (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 5150 + ], + "edges_to": [ + 5148 + ], + "id": 5149, + "label": "BENG 212", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 411, + 2725 + ], + "edges_to": [ + 5149 + ], + "id": 5150, + "label": "BENG 211", + "title": "" + }, + { + "dept": "POLI", + "description": "Students conduct directed research as part of a principal investigator\u2019s project and under the supervision of a department mentor. Students may conduct research with a department mentor for up to two quarters. This course is part of the Research Apprenticeship program in political science. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 106 + ], + "edges_to": [], + "id": 5151, + "label": "POLI 198RA", + "title": "Research Apprenticeship (4)" + }, + { + "dept": "BIMM", + "description": "This advanced course covers the application", + "edges_from": [], + "edges_to": [], + "id": 5152, + "label": "BIMM 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "BIMM", + "description": "This course emphasizes the hands-on application", + "edges_from": [], + "edges_to": [], + "id": 5153, + "label": "BIMM 185", + "title": "Bioinformatics Laboratory (Advanced) (4)" + }, + { + "dept": "MATH", + "description": "Nonparametrics: tests, regression, density estimation, bootstrap and jackknife. Introduction to statistical computing using S plus. ", + "edges_from": [], + "edges_to": [], + "id": 5154, + "label": "MATH 281C", + "title": "Mathematical Statistics (4)" + }, + { + "dept": "HITO", + "description": "The course analyzes mutual influences and exchanges between the United States and Germany from the late nineteenth to the mid-twentieth century. Topics include imperialism and racism, social thought and intellectual migration, economic relations, feminism, and youth cultures, war, and occupation. Graduate students must complete an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 5155, + "label": "HITO 168/268", + "title": "The U.S. and Germany from the 1890s to the 1960s: Transitional Relations and Competing Modernities (4)" + }, + { + "dept": "MDE", + "description": "Second in a two-quarter series focusing on finalizing and completing a business plan. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of the biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies to finalize your business plan. Students may not receive credit for both MDE 225 and MDE 225B. ", + "edges_from": [ + 5157 + ], + "edges_to": [], + "id": 5156, + "label": "MDE 225B", + "title": "Biobusiness: Small to Large II (2)" + }, + { + "dept": "MDE", + "description": "", + "edges_from": [], + "edges_to": [ + 5156 + ], + "id": 5157, + "label": "MDE 225A", + "title": "" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with no background.", + "edges_from": [], + "edges_to": [], + "id": 5158, + "label": "CHIN 100BN", + "title": "Third Year Chinese\u2014Non-native speakers II (4)" + }, + { + "dept": "HILA", + "description": "This course surveys guerrilla movements in Latin America from the Cuban Revolution through the Zapatista movement in Mexico, comparing and contrasting the origins, trajectories, and legacies of armed insurgencies, and focusing on the politics of defining \u201cinsurgents,\u201d \u201crevolutionaries,\u201d and \u201cterrorists.\u201d", + "edges_from": [], + "edges_to": [], + "id": 5159, + "label": "HILA 133S", + "title": "Guerrillas and Revolution in Latin America (4)" + }, + { + "dept": "VIS", + "description": "Directed group study on a topic or in a group field not included in regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5160, + "label": "VIS 198", + "title": "Directed Group Study (2\u20134)" + }, + { + "dept": "USP", + "description": "In this course, students deepen and apply their knowledge of policy, research, practice, and diverse perspectives on aging. Students participate in collaborative learning and research with local elders, and develop and implement a capstone \"healthy aging project\" in the community. ", + "edges_from": [ + 3231 + ], + "edges_to": [], + "id": 5161, + "label": "USP 141B", + "title": "Life Course Scholars Capstone Project" + }, + { + "dept": "POLI", + "description": "This course will provide a comparative perspective on the development and functioning of the Italian political system. It includes analysis of political institutions, ideological traditions, parties and elections, political elites in the policy process, and the evolving importance of Italy within European integration.", + "edges_from": [], + "edges_to": [], + "id": 5162, + "label": "POLI 120I", + "title": "Politics in Italy (4)" + }, + { + "dept": "POLI", + "description": "This course offers a systematic study of civil wars, electoral violence, anti-immigrant violence, genocides, coups, riots, and rebel groups in sub-Saharan Africa. It will explore why some regions experience certain types of violence and others do not.", + "edges_from": [], + "edges_to": [], + "id": 5163, + "label": "POLI 120N", + "title": "Contention and Conflict in Africa (4)" + }, + { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the nineteenth century: world economy, nation-state building, agrarian processes, incipient industrialization, political and cultural thought, and social structure. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ", + "edges_from": [], + "edges_to": [], + "id": 5164, + "label": "HILA 168/268", + "title": "Scholarship on Latin American History in the Nineteenth Century (4)" + }, + { + "dept": "BILD", + "description": "An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection; HIV testing; education and approaches to therapy; and the social, political, and legal impacts of AIDS on the individual and society. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 36 after receiving credit for BICD 136.", + "edges_from": [], + "edges_to": [], + "id": 5165, + "label": "BILD 36", + "title": "AIDS Science and Society (4)" + }, + { + "dept": "BILD", + "description": "Introduction to basic human neuroscience leading to a discussion of brain diseases classified under the rubric Dementia. Topics include basic brain structure and function, diseases of the aging brain and their economic, social, political and ethical impacts on society.", + "edges_from": [], + "edges_to": [], + "id": 5166, + "label": "BILD 38", + "title": "Dementia, Science, and Society (4)" + }, + { + "dept": "VIS", + "description": "Explores the art and expressive culture of American Indians of far western United States, including California and Pacific Northwest. Social and cultural contexts of artistic traditions and their relations to the lifeways, ceremonialism, beliefs, and creative visions of their makers. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126CN and VIS 126HN. ", + "edges_from": [], + "edges_to": [], + "id": 5167, + "label": "VIS 126HN", + "title": "Pacific Coast American Indian Art (4)" + }, + { + "dept": "HIGR", + "description": "Readings in the historiographical literature on the late Ottoman Empire (eighteenth to twentieth century). ", + "edges_from": [], + "edges_to": [], + "id": 5168, + "label": "HIGR 257A", + "title": "Historical Scholarship on Modern Middle East, Eighteenth to Twentieth Century (4)" + }, + { + "dept": "HIGR", + "description": "Readings in the historiographical literature on the Middle East in the national/postcolonial eras. ", + "edges_from": [], + "edges_to": [], + "id": 5169, + "label": "HIGR 257C", + "title": "Historical Scholarship on Modern Middle East, Postcolonial Eras (4)" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Modern Middle East, Colonial Period (4)", + "edges_from": [], + "edges_to": [], + "id": 5170, + "label": "HIGR 257B", + "title": "" + }, + { + "dept": "POLI", + "description": "This course introduces students to the comparative study of ethnic politics. It examines the relationships between ethnicity on one hand, and mobilization, political contestation, violence, trust, and pork on the other. It draws from analysis from a variety of contexts and regions, such as sub-Saharan Africa, Eastern Europe, North America, South Asia, and Western Europe. ", + "edges_from": [], + "edges_to": [], + "id": 5171, + "label": "POLI 120Q", + "title": "Ethnic Politics (4)" + }, + { + "dept": "PHIL", + "description": "Central problems in epistemology such as skepticism; a priori knowledge; knowledge of other minds; self-knowledge; the problem of induction; foundationalist, coherence, and causal theories of knowledge. ", + "edges_from": [], + "edges_to": [], + "id": 5172, + "label": "PHIL 132", + "title": "Epistemology (4)" + }, + { + "dept": "LTFR", + "description": "Third course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. It also introduces the student to basic techniques of literary analysis. ", + "edges_from": [ + 4629 + ], + "edges_to": [], + "id": 5173, + "label": "LTFR 50", + "title": "Intermediate French III: Textual Analysis (4)" + }, + { + "dept": "SOCI", + "description": "Course focuses on the different types of social structures and political systems in Latin America. Topics include positions in the world economy, varieties of class structure and ethnic cleavages, political regimes, mobilization and legitimacy, class alignments, reform and revolution. ", + "edges_from": [ + 5174, + 5175 + ], + "edges_to": [ + 5174 + ], + "id": 5174, + "label": "SOCI 188D", + "title": "Latin America: Society and Politics (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 5174 + ], + "id": 5175, + "label": "SOCD 188D", + "title": "" + }, + { + "dept": "TDMV", + "description": "The development of contemporary somatic approaches to dance as an expressive medium, emphasizing advanced technical skills, efficient athleticism, kinesthetic refinement, individual creative voice, and performance elements. Choreography and aesthetic concepts will be explored. Incorporates various principles of human movement research. May be taken for credit six times. ", + "edges_from": [ + 5177 + ], + "edges_to": [], + "id": 5176, + "label": "TDMV 122", + "title": "Advanced Contemporary Dance (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [ + 171 + ], + "edges_to": [ + 5176 + ], + "id": 5177, + "label": "TDMV 120", + "title": "" + }, + { + "dept": "TDMV", + "description": "Students will study the practice of improvisational dancing with a partner. Students will develop skills in giving and supporting body weight, lifting, balancing, falling, rolling, and recovering fluidly together. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5178, + "label": "TDMV 123", + "title": "Contact Improvisation (4)" + }, + { + "dept": "PSYC", + "description": "Group study under the direction of a faculty member in the Department of Psychology. ", + "edges_from": [], + "edges_to": [], + "id": 5179, + "label": "PSYC 198", + "title": "Directed Group Study in Psychology (2 or 4)" + }, + { + "dept": "HILA", + "description": "This course surveys the history of the native peoples of Mexico and the Andes from Iberian contact to the late colonial period (1492\u20131800). It focuses on changes and continuities in postconquest society, exploring topics such as gender, sexuality, and resistance.", + "edges_from": [], + "edges_to": [], + "id": 5180, + "label": "HILA 134", + "title": "Indians of Colonial Latin America (4)" + }, + { + "dept": "HITO", + "description": "A lecture-discussion course on the philosophical, political, and economic ideas that shaped the Scottish Enlightenment in the eighteenth century, especially the ideas of David Hume, Adam Smith, and John Witherspoon, and their impact upon the American Revolution and the Constitution of the United States.", + "edges_from": [], + "edges_to": [], + "id": 5181, + "label": "HITO 150GS", + "title": "The Scottish Enlightenment and the Founding of the United States (4)" + }, + { + "dept": "VIS", + "description": "Topics for this seminar concern Native American art history from ancient to contemporary times. Seminars may focus on archaeological and art historical approaches, philosophy and aesthetics, archaeoastronomy, and cultural contexts. Issues of globalization and transculturation may be examined as well. May be taken up to three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5182, + "label": "VIS 260", + "title": "Seminar in North American Indian Art (4)" + }, + { + "dept": "HILA", + "description": "A century of Mexican history, 1821\u20131924: the", + "edges_from": [], + "edges_to": [], + "id": 5183, + "label": "HILA 131", + "title": "A History of Mexico (4)" + }, + { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS.", + "edges_from": [], + "edges_to": [], + "id": 5184, + "label": "HILA 132", + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + { + "dept": "LTGM", + "description": "This course offers an overview of German aesthetic culture in its various forms (literature, film, art, music, and architecture) and methods of analysis. Materials will explore the diversity of aesthetic production from the eighteenth century to the present.", + "edges_from": [], + "edges_to": [], + "id": 5185, + "label": "LTGM 100", + "title": "German Studies I: Aesthetic Cultures (4)" + }, + { + "dept": "ECON", + "description": "This course focuses on the application of econometric techniques to issues in microeconomics and macroeconomics. The major emphasis in the class is on the completion of an empirical project. ", + "edges_from": [ + 1311 + ], + "edges_to": [], + "id": 5186, + "label": "ECON 220F", + "title": "Econometrics F (4)" + }, + { + "dept": "MGT", + "description": "Examines the sales function from strategic competitive importance to the firm to required direct sales skills of individual salespersons. Major subject areas covered are: the sales process, recruitment and training, organization and focus, \u201cterritories,\u201d evaluation and compensation. ", + "edges_from": [ + 1004 + ], + "edges_to": [], + "id": 5187, + "label": "MGT 106", + "title": "Sales and Sales Management (4)" + }, + { + "dept": "HIGR", + "description": "Research Seminar in Middle Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 5188, + "label": "HIGR 275B", + "title": "" + }, + { + "dept": "TWS", + "description": "In an attempt to explore and study some unique processes and aspects of community life, students will engage in research in field settings. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies.", + "edges_from": [], + "edges_to": [], + "id": 5189, + "label": "TWS 197", + "title": "Fieldwork (4)" + }, + { + "dept": "ECON", + "description": "Examines time series methods for data analysis with an emphasis on macroeconomic applications. Students are provided with an overview of fundamental time series techniques, hands-on experience in applying them to real-world macroeconomic data, and expertise in performing empirical tests of policy-relevant macroeconomic theories, such as the permanent income hypothesis, the Keynesian fiscal multiplier, and the Phillips curve. ", + "edges_from": [ + 1290, + 291, + 292 + ], + "edges_to": [], + "id": 5190, + "label": "ECON 112", + "title": "Macroeconomic Data Analysis (4)" + }, + { + "dept": "GPPS", + "description": "This course acquaints students with the leading theories on the causes and consequences of civil war since 1945 and the challenges associated with rebuilding social structures after catastrophic collapse. It will also provide a number of hands-on examples of how \u201cnew media\u201d work to speed the process of political mobilization, coalition formation, the persistence of clandestine networks, and issues of transparency and translation, with particular implications for urban warfare and insurgency. Renumbered from IRGN 429. Students may not receive credit for GPPS 42 and IRGN 429.", + "edges_from": [], + "edges_to": [], + "id": 5191, + "label": "GPPS 429", + "title": "Geopolitics, Insurgency, and Weak States (4)" + }, + { + "dept": "TWS", + "description": "Seminars will be organized on the basis of topics with readings, discussions, and papers. Specific subjects to be covered will change each quarter depending on particular interest of instructors or students. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5192, + "label": "TWS 190", + "title": "Undergraduate Seminars (4)" + }, + { + "dept": "BILD", + "description": "Course is designed to assist new freshmen in making a smooth and informed transition from high school. Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problems solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5193, + "label": "BILD 91", + "title": "Biology Freshmen: Strategies for Success (1)" + }, + { + "dept": "GPPS", + "description": "This course will introduce students to the major techniques for managing international problems through legal and administrative regulation. The class will offer an overview of the main theories relevant to policy, such as the choice and design of treaties and other legal instruments. Cases will be drawn from economics, finance, development, security, human rights, and environment. Renumbered from IRGN 427. Students may not receive credit for IRGN 427 and GPPS 427.", + "edges_from": [], + "edges_to": [], + "id": 5194, + "label": "GPPS 427", + "title": "International Law and Regulation (4)" + }, + { + "dept": "GPPS", + "description": "This course focuses on the relationships between workers, employers, and governments in global supply chains. How is work and labor regulated in various industries and parts of the world? How has this changed over time? When have workers become important political forces and how have governments and capital owners responded? How and why? What will the future of work look like? May not receive credit for GPPS 420 and the IRGN 490 course with the same title.", + "edges_from": [], + "edges_to": [], + "id": 5195, + "label": "GPPS 420", + "title": "Workers and Labor in Global Markets (4)" + }, + { + "dept": "GPPS", + "description": "The importance of inequality in income, wealth, and access to resources and opportunities can hardly be overstated. This course has several objectives: (1) to understand the measurement of inequality; (2) to understand the level of inequality in the United States versus other industrialized nations; (3) to see how political scientists and economists understand its causes and effects; (4) to understand why some think inequality is to their advantage; (5) to develop the tools and data for normative evaluations. May not receive credit for GPPS 421 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 5196, + "label": "GPPS 421", + "title": "The Politics of Economic Inequality (4)" + }, + { + "dept": "TWS", + "description": "Tutorial, individual guided reading and research projects (to be arranged between student and instructor) in an area not normally covered in courses currently being offered in the department. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5197, + "label": "TWS 199", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "GPPS", + "description": "Nongovernmental organizations monitor compliance with norms through shareholder activism, consumer pressures, political protest, creating \u201cbrands,\u201d and legal action. Course examines these strategies to determine what works best, and how organizations and individuals can influence corporations to \u201cdo the right thing.\u201d Renumbered from IRGN 423. Students may not receive credit for IRGN 423 and GPPS 423.", + "edges_from": [], + "edges_to": [], + "id": 5198, + "label": "GPPS 423", + "title": "Corporate Social Responsibility (4)" + }, + { + "dept": "PSYC", + "description": "This seminar introduces the various subdisciplines in psychology and their research methods, and also explores career and graduate school opportunities. This includes informal presentations by faculty, graduate students, and other professionals.", + "edges_from": [], + "edges_to": [], + "id": 5199, + "label": "PSYC 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "COGS", + "description": "Do people who speak different languages think differently? Does learning new languages change the way you think? Are some thoughts unthinkable without language? Course will bring together ideas and findings from psychology, linguistics, anthropology, neuroscience, and philosophy.", + "edges_from": [], + "edges_to": [], + "id": 5200, + "label": "COGS 12", + "title": "Language, Culture, and Cognition (4)" + }, + { + "dept": "COGR", + "description": "This seminar will introduce key issues and readings in our understanding of time. Time is historical, not natural. We will examine ways that modern time structures and orders human interaction. ", + "edges_from": [], + "edges_to": [], + "id": 5201, + "label": "COGR 284", + "title": "Time (4)" + }, + { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "edges_from": [], + "edges_to": [], + "id": 5202, + "label": "CHIN 20BM", + "title": "Second Year Chinese\u2014Mandarin speakers II (4)" + }, + { + "dept": "COGS", + "description": "This course uses the study of swearing to introduce topics in language: how children learn it, why it changes over time, and how people pronounce and understand it. Students who believe they could be offended by the study of swearing and other taboo language might not find this course appropriate for them.", + "edges_from": [], + "edges_to": [], + "id": 5203, + "label": "COGS 15", + "title": "What the *#!?: An Uncensored Introduction to Language (4)" + }, + { + "dept": "HIEU", + "description": "For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?", + "edges_from": [], + "edges_to": [], + "id": 5204, + "label": "HIEU 159S", + "title": "Three Centuries of Zionism 1648\u20131948 (4)" + }, + { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "edges_from": [], + "edges_to": [], + "id": 5205, + "label": "CHIN 20BN", + "title": "Second Year Chinese\u2014Non-native speakers II (4)" + }, + { + "dept": "PSYC", + "description": "Independent study or research under direction of a member of the faculty. May be taken up to three times for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 5206, + "label": "PSYC 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the psychology of sleep, including sleep stages and their functions, neurological aspects of sleep, sleep across species and development, dreams and their interpretation, sleep disorders, and the role of sleep in learning and memory. ", + "edges_from": [], + "edges_to": [], + "id": 5207, + "label": "PSYC 191", + "title": "Psychology of Sleep (4)" + }, + { + "dept": "BILD", + "description": "Seminars will introduce students to various professional development topics in the biological sciences. Emphasis may include current research in academe and industry, using campus and community resources to help achieve academic, personal and professional goals, and career exploration. Activities may include presentations by faculty, alumni, and practicing professional biologists, as well as panel discussions with professionals from industry.", + "edges_from": [], + "edges_to": [], + "id": 5208, + "label": "BILD 92", + "title": "Professional Development Topics in the Biological Sciences (1)" + }, + { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "edges_from": [], + "edges_to": [], + "id": 5209, + "label": "CHIN 20BD", + "title": "Second Year Chinese\u2014Dialect speakers II (4)" + }, + { + "dept": "COGR", + "description": "Approaching reading from a historical perspective, the course concentrates on two analytic frames to connect memory to texts: ideas about \u201cthe memory palace,\u201d locating memories in things, and figured worlds theory, treating objects as forms of intellectual scaffolding and memory. ", + "edges_from": [], + "edges_to": [], + "id": 5210, + "label": "COGR 282", + "title": "Reading and Memory (4)" + }, + { + "dept": "VIS", + "description": "This course studies important developments in the arts of China in the context of contemporary cultural phenomena. The factors behind the making of art will be brought to bear on selected objects or monuments from China\u2019s great artistic eras. ", + "edges_from": [], + "edges_to": [], + "id": 5211, + "label": "VIS 114GS", + "title": "Arts and Visual Culture in China (4)" + }, + { + "dept": "HIEU", + "description": "This course covers the Later Byzantine Empire from the eleventh through the fifteenth century, examining the eleventh century crisis; the rise of the West and the Crusades; the Komnenian revolution; Slavic empires; the Palaiologan Renaissance; Mongols and Ottomans; the Byzantine diaspora. Students cannot receive credit for both HIEU 104 and HIEU 104C. Recommended preparation: HIEU 104A and/or HIEU 104B.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5212, + "label": "HIEU 104C", + "title": "The Byzantine Empire, 11th\u201315th centuries (4)" + }, + { + "dept": "HIEU", + "description": "This course covers the Middle Byzantine Empire from the seventh to the eleventh century, examining the impact of Islam; Iconoclasm; the conversion of the Slavs and the rise of Bulgaria and Russia; religious and intellectual developments; court culture and ceremonial. Students cannot receive credit for both HIEU 104 and HIEU 104B. Recommended preparation: HIEU 104A.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5213, + "label": "HIEU 104B", + "title": "The Byzantine Empire, 7th\u201311th centuries (4)" + }, + { + "dept": "HIEU", + "description": "This course is devoted to the Early Byzantine Empire from Constantine through the challenges and transformations of the seventh century, examining the rise and triumph of Christianity, war, diplomacy, the rise of Islam, climate change, epidemic and natural disasters. Students cannot receive credit for both HIEU 104 and HIEU 104A. Recommended preparation: HIEU 105.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5214, + "label": "HIEU 104A", + "title": "The Byzantine Empire, 3rd\u20137th centuries (4)" + }, + { + "dept": "COGR", + "description": "This course is a project course in which students prepare a production or experiment using one of the forms of media. The course is designed to allow students to experiment in a communication form other than the usual oral presentation in class or a term paper. Students can do a video production, a coordinated photographic essay or exhibit, a computer instructional game, a published newspaper or magazine article directed at a special audience, a theatrical presentation, or some form other than those listed. ", + "edges_from": [], + "edges_to": [], + "id": 5215, + "label": "COGR 280", + "title": "Advanced Workshop in Communication Media (4)" + }, + { + "dept": "POLI", + "description": "This course will study various approaches to knowledge accumulation in social science. A basic outline of scientific method will be used to examine the difference between theories as assumptions and axioms and hypotheses as \u201cif-then\u201d statements derived from theory. Experimental, quasi-experimental, and qualitative designs will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 5216, + "label": "POLI 204A", + "title": "Research Design (4)" + }, + { + "dept": "POLI", + "description": "This course introduces students to the rudiments of decision theory and game theory. Emphasis will be placed on modeling and solving games. ", + "edges_from": [], + "edges_to": [], + "id": 5217, + "label": "POLI 204C", + "title": "Game Theory 1 (4)" + }, + { + "dept": "POLI", + "description": "The use of quantitative methods (particularly multiple regression and its extensions) in political science. Emphasis on understanding the methods and using them in political science applications. ", + "edges_from": [], + "edges_to": [], + "id": 5218, + "label": "POLI 204B", + "title": "Quantitative Methods I (4)" + }, + { + "dept": "CSE", + "description": "Automation and Prototyping for Embedded Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 5219, + "label": "CSE 237D", + "title": "Design" + }, + { + "dept": "CSE", + "description": "Embedded system technologies including processors, DSP, memory, and software. System interfacing basics, communication strategies, sensors, and actuators. Mobile and wireless technology in embedded systems. Using predesigned hardware and software components. Design case studies in wireless, multimedia, and/or networking domains. ", + "edges_from": [], + "edges_to": [], + "id": 5220, + "label": "CSE 237A", + "title": "Introduction to Embedded Computing (4)" + }, + { + "dept": "CSE", + "description": "and Testing of Embedded Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 5221, + "label": "CSE 237C", + "title": "Validation" + }, + { + "dept": "CSE", + "description": "Embedded computing elements, device interfaces,", + "edges_from": [], + "edges_to": [], + "id": 5222, + "label": "CSE 237B", + "title": "Software for Embedded Systems (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "(LIPO) 16. Intermediate", + "edges_from": [], + "edges_to": [], + "id": 5223, + "label": "Linguistics/Portuguese", + "title": "" + }, + { + "dept": "CSE", + "description": "VSLI process technologies; circuit characterization; logic design styles; clocking strategies; computer-aided design tools; subsystem design; design case studies. System design project from hardware description, logic synthesis, physical layout to design verification. ", + "edges_from": [ + 5225, + 5226, + 1181 + ], + "edges_to": [], + "id": 5224, + "label": "CSE 143", + "title": "Microelectronic System Design (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 5224 + ], + "id": 5225, + "label": "CSE 170A", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 5224 + ], + "id": 5226, + "label": "ECE 81", + "title": "" + }, + { + "dept": "CSE", + "description": "Project class building an embedded computing system. Learn fundamental knowledge of microcontrollers, sensors, and actuators. Introduction to the hardware and software tools to build project in a team environment and end-to-end system building. ", + "edges_from": [ + 1183 + ], + "edges_to": [], + "id": 5227, + "label": "CSE 145", + "title": "Embedded System Design Project (4)" + }, + { + "dept": "CSE", + "description": "Processor Architecture Design Project (4)", + "edges_from": [], + "edges_to": [], + "id": 5228, + "label": "CSE 148", + "title": "Advanced" + }, + { + "dept": "BIBC", + "description": "Elaborates the relationship between diet and human metabolism, physiology, health, and disease. Covers the functions of carbohydrates, lipids, proteins, vitamins, and minerals, and discusses dietary influences on cardiovascular disease, diabetes, obesity, and cancer. ", + "edges_from": [ + 1193 + ], + "edges_to": [], + "id": 5229, + "label": "BIBC 120", + "title": "Nutrition (4)" + }, + { + "dept": "SOCI", + "description": "The environment as a socially and technically shaped milieu in which competing values and interests play out. Relation of humanity to nature, conflicts between preservation and development, environmental pollution and contested illnesses. Will not receive credit for SOCI 149 and SOCC 149.", + "edges_from": [], + "edges_to": [], + "id": 5230, + "label": "SOCI 149", + "title": "Sociology of the Environment (4)" + }, + { + "dept": "COGS", + "description": "This practicum for graduate students provides experience in teaching undergraduate cognitive science courses. S/U only.", + "edges_from": [], + "edges_to": [], + "id": 5231, + "label": "COGS 500", + "title": "Teaching Apprenticeship (1\u20134)" + }, + { + "dept": "PHYS", + "description": "Laboratory-lecture course covering practical techniques used in research laboratories. Possible topics include: computer interfacing of\u00a0instruments, sensors, and actuators; programming for data acquisition/analysis; electronics; measurement techniques; mechanical\u00a0design/machining; mechanics of materials; thermal design/control; vacuum/cryogenic techniques; optics; particle detection. Physics 122 was formerly numbered Physics 121. Program or materials fees may apply.\u00a0", + "edges_from": [ + 5233 + ], + "edges_to": [], + "id": 5232, + "label": "PHYS 122", + "title": "Experimental Techniques (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 36, + 37, + 38, + 446, + 5060, + 29, + 30, + 31 + ], + "edges_to": [ + 5232, + 5234 + ], + "id": 5233, + "label": "PHYS 120", + "title": "" + }, + { + "dept": "PHYS", + "description": "A laboratory-lecture-project course featuring creation of an experimental apparatus in teams of about two. Emphasis is on electronic\u00a0sensing of the physical environment and actuating physical responses. The course will use a computer interface such as the Arduino. Physics 124 was formerly numbered Physics 120B. Program or materials fees may apply.\u00a0", + "edges_from": [ + 5233 + ], + "edges_to": [], + "id": 5234, + "label": "PHYS 124", + "title": "Laboratory Projects (4)" + }, + { + "dept": "MATH", + "description": "Convex sets and functions, convex and affine hulls, relative", + "edges_from": [], + "edges_to": [], + "id": 5235, + "label": "MATH 245A", + "title": "Convex Analysis and Optimization I (4)" + }, + { + "dept": "FPM", + "description": "Focus on disseminating and scaling up health interventions in real-world settings. Interactive didactic sessions and guest lectures on implementation of research principles, approaches, and methods. Will design a proposal to implement or scale-up a clinical or public health intervention.", + "edges_from": [], + "edges_to": [], + "id": 5236, + "label": "FPM 291", + "title": "Dissemination and Implementation Science in Health: An Introduction (4)" + }, + { + "dept": "EDS", + "description": "This seminar integrates a range of perspectives to understand the contexts of teaching and change. There are three main foci: 1) how the profession of teaching in PK-16 is shaped by factors in the broader policy, political, and social context; 2) change, change agentry, and obstacles to change in educational institutions; 3) design-based research models to effect changes in the context of teaching. An international comparative approach is critical to consider levers for educational improvement. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5237, + "label": "EDS 267", + "title": "Contexts for Teaching and Change (4)" + }, + { + "dept": "ETHN", + "description": "Latina Immigrant Workers in the Global Economy (4)", + "edges_from": [], + "edges_to": [], + "id": 5238, + "label": "ETHN 129", + "title": "Asian and" + }, + { + "dept": "BILD", + "description": "An introduction to the basic principles of plant and animal development, emphasizing the similar strategies by which diverse organisms develop. Practical applications of developmental principles as well as ethical considerations arising from these technologies will be discussed.", + "edges_from": [], + "edges_to": [], + "id": 5239, + "label": "BILD 7", + "title": "The Beginning of Life (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal", + "edges_from": [], + "edges_to": [], + "id": 5240, + "label": "Linguistics/Heritage Languages (LIHL) 118", + "title": "Cantonese for Cantonese Speakers (4)" + }, + { + "dept": "PSYC", + "description": "Weekly meetings for graduate students actively engaged in research on conditioning. May be taken for credit multiple times. ", + "edges_from": [], + "edges_to": [], + "id": 5241, + "label": "PSYC 251", + "title": "Advanced Topics in Learning and Motivation (1)" + }, + { + "dept": "PSYC", + "description": "Surveys research on people\u2019s everyday attribution of mental states to predict/explain actions, their na\u00efve theory of mind, from developmental and neurocognitive perspectives. Topics include social cognition in infancy and childhood, in autism, and in nonhuman primates, and the brain underpinnings. ", + "edges_from": [], + "edges_to": [], + "id": 5242, + "label": "PSYC 257", + "title": "Development and Neurobiology of Theory of Mind (4)" + }, + { + "dept": "HIUS", + "description": "Women, American Womanhood 1870 to Present (4)", + "edges_from": [], + "edges_to": [], + "id": 5243, + "label": "HIUS 157", + "title": "American" + }, + { + "dept": "HIUS", + "description": "Women, American Womanhood (4)", + "edges_from": [], + "edges_to": [], + "id": 5244, + "label": "HIUS 156", + "title": "American" + }, + { + "dept": "HIUS", + "description": "Zoot Suits to Hip-Hop: Race and Popular Culture since World War II (4)", + "edges_from": [], + "edges_to": [], + "id": 5245, + "label": "HIUS 155", + "title": "From" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal", + "edges_from": [], + "edges_to": [], + "id": 5246, + "label": "Linguistics/Heritage Languages (LIHL) 113", + "title": "Armenian for Armenian Speakers (4)" + }, + { + "dept": "HIUS", + "description": "Survey of politicized criminal trials and", + "edges_from": [], + "edges_to": [], + "id": 5247, + "label": "HIUS 153", + "title": "American Political Trials (4)" + }, + { + "dept": "HIUS", + "description": "The history of American law and legal institutions. This course examines race relations and law, the rise of big business, the origins of the modern welfare state during the Great Depression, the crisis of civil liberties produced by two world wars and McCarthyism, and the Constitutional revolution wrought by the Warren Court. HIUS 150 is not a prerequisite for HIUS 151.", + "edges_from": [], + "edges_to": [], + "id": 5248, + "label": "HIUS 151", + "title": "American Legal History since 1865 (4)" + }, + { + "dept": "HIUS", + "description": "The history of American law and legal institutions. This quarter focuses on crime and punishment in the colonial era, the emergence of theories of popular sovereignty, the forging of the Constitution and American federalism, the relationship between law and economic change, and the crisis of slavery and Union.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5249, + "label": "HIUS 150", + "title": "American Legal History to 1865 (4)" + }, + { + "dept": "HIEU", + "description": "This course examines how Athenians during different epochs have dealt and still deal with the realities of everyday life and death. The topics covered by the course include work, war, religion, politics, and death. Students must apply and be accepted into the Global Seminar Program. +", + "edges_from": [], + "edges_to": [], + "id": 5250, + "label": "HIEU 114GS", + "title": "Athens: A City in History (4)" + }, + { + "dept": "ANTH", + "description": "A weekly research seminar where students share, read, and discuss in-depth research findings resulting from ANTH 196A and 196B along with selected background literature used in each individual thesis. Students are also taught how to turn their theses into brief presentations for both specialized and broader audiences. Students will be offered opportunities to present their findings at campus events and outreach events during the quarter. ", + "edges_from": [ + 1123, + 2580 + ], + "edges_to": [], + "id": 5251, + "label": "ANTH 196C", + "title": "Honors Studies in Anthropology (4)" + }, + { + "dept": "INTL", + "description": "Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 5252, + "label": "INTL 97", + "title": "Internship (1)" + }, + { + "dept": "HIAF", + "description": "This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 161.", + "edges_from": [], + "edges_to": [], + "id": 5253, + "label": "HIAF 261", + "title": "Special Topics in African History (4)" + }, + { + "dept": "FPM", + "description": "Students will learn the principles of scientific presentations, for the classroom, and for scientific meetings (both oral and poster presentations). Students will then prepare and deliver presentations based on their project from FPM 259A. May be taken for credit two times. ", + "edges_from": [ + 4986 + ], + "edges_to": [], + "id": 5254, + "label": "FPM 259C", + "title": "Applied Epidemiology\u2014Scientific Presentations (4)" + }, + { + "dept": "ANTH", + "description": "This class examines humans from a comparative perspective; if we ignore culture, what\u2019s left? How do culture and biology interact? And how does biology inform cultural debates over race, sex, marriage, war, peace, etc.? ", + "edges_from": [], + "edges_to": [], + "id": 5255, + "label": "ANTH 102", + "title": "Humans Are Cultural Animals (4)" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third of a three-course series. ", + "edges_from": [ + 4985 + ], + "edges_to": [], + "id": 5256, + "label": "EDS 262C", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "NEU", + "description": "Independent study. (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 5257, + "label": "NEU 296", + "title": "Neurosciences Research Rotation (1\u201312)" + }, + { + "dept": "GPEC", + "description": "This course examines China\u2019s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949, and contemporary problems and options. Renumbered from IRGN 260. Students may not receive credit for GPEC 286 and IRGN 260. May be coscheduled with GPEC 486.", + "edges_from": [], + "edges_to": [], + "id": 5258, + "label": "GPEC 286", + "title": "Economic and Social Development of China (4)" + }, + { + "dept": "NEU", + "description": "Independent Study Project (ISP) (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 5259, + "label": "NEU 298", + "title": "Neurosciences" + }, + { + "dept": "NEU", + "description": "Independent study. (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 5260, + "label": "NEU 299", + "title": "Neurosciences Research (1\u201312)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 112.) This course explores the nexus of sex, race, ethnicity, gender, and nation and considers their influence on identity, sexuality, migration, movement, and borders and other social, cultural, and political issues that these constructs affect.", + "edges_from": [], + "edges_to": [], + "id": 5261, + "label": "ETHN 127", + "title": "Sexuality and Nation (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 164.)", + "edges_from": [], + "edges_to": [], + "id": 5262, + "label": "CHEM 164", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 265; cross-listed with BIMM 162/BGGN 262.) Biological macromolecules and supramolecular complexes as well as organelles, and small cells are being examined in three dimensions by modern electron cryomicroscopy and image reconstruction techniques. The basic principles of transmission electron microscopy and 3D image reconstruction are discussed. CHEM 265/BGGN 262 students will be required to complete an additional assignment/exam beyond that expected of students in CHEM 165/BIMM 162. ", + "edges_from": [ + 33, + 458, + 1391, + 5264, + 410, + 30 + ], + "edges_to": [], + "id": 5263, + "label": "CHEM 165", + "title": "3D Electron Microscopy of Macromolecules (4)" + }, + { + "dept": "BIBC", + "description": "", + "edges_from": [], + "edges_to": [ + 5263 + ], + "id": 5264, + "label": "BIBC 110", + "title": "" + }, + { + "dept": "LATI", + "description": "A team-taught course wherein members of the faculty group in Latin American Studies present diverse disciplinary and thematic approaches to the region. Topics vary from year to year. Grades are based on discussions and on a series of analytical papers. ", + "edges_from": [], + "edges_to": [], + "id": 5265, + "label": "LATI 200", + "title": "Core Seminar on Interdisciplinary Research and Methodology in Latin American Studies (4)" + }, + { + "dept": "CHEM", + "description": "Basics of medicinal chemistry, emphasizing rigorous descriptions of receptor-protein structure, interactions, and dynamics; their implications for drug development; and an integrated treatment of pharmacodynamic and pharmacokinetic considerations in drug design. Treats computational approaches as well as practical experimental approaches. ", + "edges_from": [ + 1552, + 1553, + 1554, + 1555, + 458 + ], + "edges_to": [], + "id": 5266, + "label": "CHEM 167", + "title": "Medicinal Chemistry (4)" + }, + { + "dept": "MGT", + "description": "Individual study or research under the direction of a selected faculty member. May be taken for credit twelve times. Students may earn credit for a total of twelve units in MGT 299 and/or MGT 499. ", + "edges_from": [], + "edges_to": [], + "id": 5267, + "label": "MGT 499", + "title": "Individual Directed Study (1\u20134)" + }, + { + "dept": "HIEA", + "description": "Examines women\u2019s roles and experiences in the twentieth-century Chinese revolution, the ways in which women participated in the process of historical change, the question of to what extent the revolution \u201cliberated\u201d women from \u201cConfucian tradition.\u201d", + "edges_from": [], + "edges_to": [], + "id": 5268, + "label": "HIEA 138", + "title": "Women and the Chinese Revolution (4)" + }, + { + "dept": "HIEA", + "description": "and the Family in Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 5269, + "label": "HIEA 137", + "title": "Women" + }, + { + "dept": "MGT", + "description": "Advanced topics in finance. Instructional methods include face-to-face lecture and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 495 and MGT 282 when the course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 5270, + "label": "MGT 495", + "title": "Topics in Finance (2 or 4)" + }, + { + "dept": "HIEA", + "description": "of Thought and Religion in China: Buddhism (4)", + "edges_from": [], + "edges_to": [], + "id": 5271, + "label": "HIEA 135", + "title": "History" + }, + { + "dept": "HIEA", + "description": "of Thought and Religion in China: Confucianism (4)", + "edges_from": [], + "edges_to": [], + "id": 5272, + "label": "HIEA 134", + "title": "History" + }, + { + "dept": "HIEA", + "description": "China: Cultural History (4)", + "edges_from": [], + "edges_to": [], + "id": 5273, + "label": "HIEA 133", + "title": "Twentieth-Century" + }, + { + "dept": "HIEA", + "description": "This course analyzes the history of the PRC from 1949 to the present. Special emphasis is placed on the problem of post-revolutionary institutionalization, the role of ideology, the tension between city and countryside, Maoism, the Great Leap Forward, the Cultural Revolution.", + "edges_from": [], + "edges_to": [], + "id": 5274, + "label": "HIEA 132", + "title": "Mao\u2019s China, 1949\u20131976 (4)" + }, + { + "dept": "HIEA", + "description": "An exploration of the formative period of the twentieth-century Chinese Revolution: the New Culture Movement, modern urban culture, the nature of Nationalist (Guomindang) rule, war with Japan, revolutionary nationalism, and the Chinese Communist rise to power.", + "edges_from": [], + "edges_to": [], + "id": 5275, + "label": "HIEA 131", + "title": "China in War and Revolution, 1911\u20131949 (4)" + }, + { + "dept": "HIEA", + "description": "From the Opium War to the 1911 Revolution. Key topics include ethnic identity under Manchu rule, the impact of Western imperialism, the Taiping and other rebellions, overseas Chinese, social change and currents of reform, and the rise of Chinese nationalism.", + "edges_from": [], + "edges_to": [], + "id": 5276, + "label": "HIEA 130", + "title": "End of the Chinese Empire, 1800\u20131911 (4)" + }, + { + "dept": "SOCI", + "description": "An analysis of the social, biological, and", + "edges_from": [], + "edges_to": [], + "id": 5277, + "label": "SOCI 118", + "title": "Sociology of Gender (4)" + }, + { + "dept": "SOCI", + "description": "of Sexuality and Sexual Identities (4)", + "edges_from": [], + "edges_to": [], + "id": 5278, + "label": "SOCI 119", + "title": "Sociology" + }, + { + "dept": "SOCI", + "description": "Research in Educational Settings (4)", + "edges_from": [], + "edges_to": [], + "id": 5279, + "label": "SOCI 110", + "title": "Qualitative" + }, + { + "dept": "SOCI", + "description": "This course will deal with human behavior and personality development as affected by social group life. Major theories will be compared. The interaction dynamics of such substantive areas as socialization, normative and deviant behavior, learning and achievement, the social construction of the self, and the social identities will be considered. ", + "edges_from": [ + 5280, + 5281 + ], + "edges_to": [ + 5280 + ], + "id": 5280, + "label": "SOCI 112", + "title": "Social Psychology (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5280 + ], + "id": 5281, + "label": "SOCB 112", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course considers the social, cultural, political, and economic aspects of HIV/AIDS. Topics include the social context of transmission; the experiences of women living with HIV; AIDS activism; representations of AIDS; and the impact of race and class differences. ", + "edges_from": [ + 5282, + 5283 + ], + "edges_to": [ + 5282 + ], + "id": 5282, + "label": "SOCI 113", + "title": "Sociology of the AIDS Epidemic (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5282 + ], + "id": 5283, + "label": "SOCB 113", + "title": "" + }, + { + "dept": "SOCI", + "description": "Analyzes selected social problems in the United States, such as those regarding education, race relations, and wealth inequality from various sociological perspectives. The course also examines the various sites of debate discussion, like political institutions, TV and other media, and religious institutions. ", + "edges_from": [ + 5284, + 5285 + ], + "edges_to": [ + 5284 + ], + "id": 5284, + "label": "SOCI 115", + "title": "Social Problems (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5284 + ], + "id": 5285, + "label": "SOCB 115", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Same as LIGN 174.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span (especially childhood and adolescence); within ethnolinguistic minority communities; and across cultures. ", + "edges_from": [ + 5286, + 5287 + ], + "edges_to": [ + 5286 + ], + "id": 5286, + "label": "SOCI 116", + "title": "Gender and Language in Society (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5286 + ], + "id": 5287, + "label": "SOCB 118A", + "title": "" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 2239 + ], + "id": 5288, + "label": "SOCB 117", + "title": "" + }, + { + "dept": "AESE", + "description": "Students will work collaboratively on a team project, mostly in a lab setting, to demonstrate their grasp of the material in the entire project sequence. ", + "edges_from": [ + 2221 + ], + "edges_to": [], + "id": 5289, + "label": "AESE 279B", + "title": "Architecture-based Enterprise Systems Engineering Capstone Team Project (3)" + }, + { + "dept": "POLI", + "description": "The political impact of major religious traditions\u2014including Christianity, Islam, Hinduism, and Confucianism\u2014around the world. ", + "edges_from": [], + "edges_to": [], + "id": 5290, + "label": "POLI 136", + "title": "Religion and Politics (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 260.) Computational methods for MatSci will be discussed, dealing with atomic scale empirical or semiempirical potentials. How and why to develop such potentials for metallic materials will be a focus of the course. Molecular dynamics and Monte Carlo methods will be covered in detail. Applications of these techniques to some example problems in materials science, mechanical deformation, dislocation interactions, nucleation/growth of phases, melting solidification structures, and point defects are presented.", + "edges_from": [], + "edges_to": [], + "id": 5291, + "label": "MAE 260", + "title": "Fundamentals and Applications of Computational Materials Science (4)" + }, + { + "dept": "POLI", + "description": "Political development has dominated the study of comparative politics among US academicians since the revival of the Cold War in 1947. This course examines critically this paradigm and its Western philosophical roots in the context of the experience of modern China.", + "edges_from": [], + "edges_to": [], + "id": 5292, + "label": "POLI 132", + "title": "Political Development and Modern China (4)" + }, + { + "dept": "ECE", + "description": "Processing Technology Laboratory (4)", + "edges_from": [], + "edges_to": [], + "id": 5293, + "label": "ECE 138L", + "title": "Microstructuring" + }, + { + "dept": "HIGR", + "description": "Critical evaluation of selected topics on Greece and the Balkans during the late Ottoman period (1768\u20131923). Attention will be paid to both classic and revisionist works. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 5294, + "label": "HIGR 228", + "title": "Historical Scholarship on Greece and the Balkans, 1768\u20131923 (4)" + }, + { + "dept": "HIGR", + "description": "Critical evaluation of selected topics on Greece and the Balkans during the twentieth century. Attention will be paid to both classic and revisionist works. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 5295, + "label": "HIGR 229", + "title": "Historical Scholarship on Greece and the Balkans, 1923\u20132000 (4)" + }, + { + "dept": "POLI", + "description": "in the Southern Cone of Latin America (4)", + "edges_from": [], + "edges_to": [], + "id": 5296, + "label": "POLI 134I", + "title": "Politics" + }, + { + "dept": "HIGR", + "description": "Scholarship on European History, since 1850 (4)", + "edges_from": [], + "edges_to": [], + "id": 5297, + "label": "HIGR 222", + "title": "Historical" + }, + { + "dept": "HIGR", + "description": "Scholarship on European History, 1500\u20131715 (4)", + "edges_from": [], + "edges_to": [], + "id": 5298, + "label": "HIGR 220", + "title": "Historical" + }, + { + "dept": "POLI", + "description": "A comparative analysis of contemporary political issues in Latin America. Material to be drawn from two or three countries. Among the topics: development, nationalism, neoimperialism, political change. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5299, + "label": "POLI 134D", + "title": "Selected Topics in Latin American Politics (4)" + }, + { + "dept": "HIGR", + "description": "An introduction to the historiography and major debates in modern Spanish history, nineteenth and twentieth centuries. Readings and discussion of both English and Spanish language scholarship will explore different aspects of Spain\u2019s political, economic, social, and cultural transformation in the modern period.", + "edges_from": [], + "edges_to": [], + "id": 5300, + "label": "HIGR 226", + "title": "Readings in Modern Spanish History (4)" + }, + { + "dept": "POLI", + "description": "General survey of the Mexican political system as it operates today. Emphasis on factors promoting the breakdown of Mexico\u2019s authoritarian regime and the transition to a more democratic political system. Changing relationship between the state and various segments of Mexico society (economic elites, peasants, urban labor, and the Church). New patterns of civil-military relations.", + "edges_from": [], + "edges_to": [], + "id": 5301, + "label": "POLI 134B", + "title": "Politics in Mexico (4)" + }, + { + "dept": "HIGR", + "description": "An introduction to the historiography and major debates in modern German history from the Wilhelmine period to the present. Readings and discussion focus on the critical evaluation of sources, methodologies, and shifting interpretations of Germany\u2019s volatile transition to modernity.", + "edges_from": [], + "edges_to": [], + "id": 5302, + "label": "HIGR 224", + "title": "Readings in Twentieth-Century German History (4)" + }, + { + "dept": "HIGR", + "description": "Students will read major works on revolutionary Russian and Soviet history. Attention will be paid to both classic and revisionist works.", + "edges_from": [], + "edges_to": [], + "id": 5303, + "label": "HIGR 225", + "title": "Readings in Modern Russian History (4)" + }, + { + "dept": "CENG", + "description": "Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with NANO 230. Students may not receive credit for both CENG 230 and NANO 230. ", + "edges_from": [], + "edges_to": [], + "id": 5304, + "label": "CENG 230", + "title": "Synchrotron Characterization of Nanomaterials (4)" + }, + { + "dept": "HIUS", + "description": "Explore how Asian Americans were involved in the political, economic, and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.", + "edges_from": [], + "edges_to": [], + "id": 5305, + "label": "HIUS 124/ETHN 125", + "title": "Asian American History (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 505, + 138, + 550, + 302, + 134 + ], + "edges_to": [ + 1290 + ], + "id": 5306, + "label": "ECON 110A", + "title": "" + }, + { + "dept": "LTSP", + "description": "Special topics in practical criticism involving social and economic historical perspectives. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 5307, + "label": "LTSP 272", + "title": "Literature and Society Studies (4)" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "edges_from": [], + "edges_to": [], + "id": 5308, + "label": "EDS 355A", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "edges_from": [], + "edges_to": [], + "id": 5309, + "label": "EDS 355C", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "edges_from": [], + "edges_to": [], + "id": 5310, + "label": "EDS 355B", + "title": "Advanced" + }, + { + "dept": "POLI", + "description": "This class explores statistical and computational methods to enable students to use text as a data source in the social sciences. Hands-on examples and a final project will equip students to work with text data in their own research. ", + "edges_from": [], + "edges_to": [], + "id": 5311, + "label": "POLI 274", + "title": "Text as Data (4)" + }, + { + "dept": "MAE", + "description": "The principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. Program or materials fees may apply. ", + "edges_from": [ + 1147, + 924, + 821, + 2230, + 1429 + ], + "edges_to": [], + "id": 5312, + "label": "MAE 155B", + "title": "Aerospace Engineering Design II (4)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 5313, + "label": "Linguistics/Hindi (LIHI) 1BX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "BICD", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 5314, + "label": "BICD 194", + "title": "Advanced Topics in Modern Biology: Cellular Development (2)" + }, + { + "dept": "MGTF", + "description": "Provides students with a deeper and broader understanding of risk-return analysis (especially, but not exclusively, mean-variance analysis) than is common among users. Surveys how risk-return analysis is used in practice and examines the modern portfolio theory industry and its entrepreneurs. Letter grades only. Students may not receive credit for MGT 432, MGT 232, and MGT 282 Topics in Finance course with same course subtitle: Portfolio Theory in Practice. They are course equivalents. ", + "edges_from": [ + 5316, + 2702 + ], + "edges_to": [], + "id": 5315, + "label": "MGTF 432", + "title": "Portfolio Theory in Practice (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 5315 + ], + "id": 5316, + "label": "MGT 281", + "title": "" + }, + { + "dept": "MGTF", + "description": "Students will investigate the reasons behind resource expenditure related to Modern Portfolio Theory (MPT). They will examine ways in which an investor can aim to outperform the predictions of MPT, either by reducing risk without impacting return negatively, or increasing returns without increasing risk. The concepts of this course will be demonstrated through a combination of classroom lectures and case discussions. ", + "edges_from": [], + "edges_to": [], + "id": 5317, + "label": "MGTF 430", + "title": "Asset Management (4)" + }, + { + "dept": "MSED", + "description": "The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three-quarter sequence. ", + "edges_from": [], + "edges_to": [ + 5320 + ], + "id": 5318, + "label": "MSED 296A", + "title": "Theories and Applications of Mathematics and Science Education (4)" + }, + { + "dept": "MSED", + "description": "The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three quarter sequence. ", + "edges_from": [ + 5320, + 5319 + ], + "edges_to": [ + 5319 + ], + "id": 5319, + "label": "MSED 296C", + "title": "Theories and Applications of Mathematics and Science Education (4)" + }, + { + "dept": "MSED", + "description": "", + "edges_from": [ + 5320, + 5318 + ], + "edges_to": [ + 5320, + 5319 + ], + "id": 5320, + "label": "MSED 296B", + "title": "" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "edges_from": [], + "edges_to": [], + "id": 5321, + "label": "CHIN 100AM", + "title": "Third Year Chinese\u2014Mandarin speakers I (4)" + }, + { + "dept": "CHIN", + "description": "Intermediate", + "edges_from": [], + "edges_to": [], + "id": 5322, + "label": "CHIN 100AN", + "title": "Third Year Chinese\u2014Non-native speakers I (4)" + }, + { + "dept": "MAE", + "description": "Small gain theorem, passivity. Describing functions. Nonlinear controllability, feedback linearization, input-state and input-output linearization, zero dynamics. Stabilization, Brockett\u2019s necessary conditions (local), control Lyapunov functions, Sontag\u2019s formula (global). Integrator back stepping, forwarding. Inverse optimality, stability margins. Disturbance attenuation, deterministic and stochastic, nonlinear H-infinity. Nonlinear observers. ", + "edges_from": [ + 4944 + ], + "edges_to": [], + "id": 5323, + "label": "MAE 281B", + "title": "Nonlinear Control (4)" + }, + { + "dept": "SE", + "description": "The course emphasizes the principles behind modern nonlinear structural analysis software. It deals with the theory, computer implementation, and applications of methods of material and geometric nonlinear analysis. Emphasis is on 2D and 3D frame structures modeled using 1D (beam-column) elements. Use of computer resources. ", + "edges_from": [ + 1837 + ], + "edges_to": [], + "id": 5324, + "label": "SE 201B", + "title": "Nonlinear Structural Analysis (4)" + }, + { + "dept": "COGS", + "description": "This course will cover the basics about neural networks, as well as recent developments in deep learning including deep belief nets, convolutional neural networks, recurrent neural networks, long-short term memory, and reinforcement learning. We will study details of the deep learning architectures with a focus on learning end-to-end models for these tasks, particularly image classification. ", + "edges_from": [ + 393, + 1995, + 140, + 141, + 1996, + 2334, + 2335 + ], + "edges_to": [], + "id": 5325, + "label": "COGS 181", + "title": "Neural Networks and Deep Learning (4)" + }, + { + "dept": "PHIL", + "description": "This seminar will cover current books and theoretical issues in the philosophy of science. May be taken for credit seven times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5326, + "label": "PHIL 245", + "title": "Philosophy of Science (4)" + }, + { + "dept": "BENG", + "description": "Directed group study, on a topic or in a field", + "edges_from": [], + "edges_to": [], + "id": 5327, + "label": "BENG 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "BENG", + "description": "Independent reading or research by arrangement with a bioengineering faculty member. May be taken for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5328, + "label": "BENG 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "BENG", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 5329, + "label": "BENG 99H", + "title": "Independent Study (1)" + }, + { + "dept": "HISC", + "description": "This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.", + "edges_from": [], + "edges_to": [], + "id": 5330, + "label": "HISC 276", + "title": "History of Medicine in East and Southeast Asia (4)" + }, + { + "dept": "HISC", + "description": "\u201cWas ist Aufklarung?,\u201d asked Kant in 1748 and the question remains hotly debated ever since. In this course we will pursue this question in tandem with another: \u201cWhat is Enlightenment science?\u201d The answer to which is equally debated. +", + "edges_from": [], + "edges_to": [], + "id": 5331, + "label": "HISC 277", + "title": "Science and the Enlightenment (4)" + }, + { + "dept": "BENG", + "description": "Teaching and tutorial assistance in a bioengineering course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5332, + "label": "BENG 195", + "title": "Teaching (2\u20134)" + }, + { + "dept": "BENG", + "description": "Under the joint supervision of a faculty adviser and industry mentor, the student will work at a bioengineering industrial site to gain practical bioengineering experience, summarized in a technical report. With departmental approval, four units of credit may substitute for a technical elective. (P/NP grades only.) Course may be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5333, + "label": "BENG 196", + "title": "Bioengineering Industrial Internship (1\u20134)" + }, + { + "dept": "BENG", + "description": "An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, hospitals, and their practices. Subject to the availability of positions, students will work in a local industry or hospital (on a salaried or unsalaried basis) under the supervision of a faculty member and industrial, government, or hospital employee. Coordination of the Engineering Internship is conducted through UC San Diego\u2019s Academic Internship Program. Time and effort to be arranged. Units may not be applied toward major graduation requirements unless prior approval of a faculty adviser is obtained and internship is an unsalaried position. ", + "edges_from": [], + "edges_to": [], + "id": 5334, + "label": "BENG 197", + "title": "Engineering Internship (1\u20134)" + }, + { + "dept": "NANO", + "description": "Materials for energy storage and conversion in existing and future power systems, including fuel cells and batteries, photovoltaic cells, thermoelectric cells, and hybrids. ", + "edges_from": [ + 212, + 213, + 4782 + ], + "edges_to": [], + "id": 5335, + "label": "NANO 164", + "title": "Advanced Micro- and Nano-materials for Energy Storage and Conversion (4)" + }, + { + "dept": "NANO", + "description": "Selection of materials for engineering systems, based on constitutive analyses of functional requirements and material properties. The role and implications of processing on material selection. Optimizing material selection in a quantitative methodology. NanoEngineering majors receive priority enrollment. ", + "edges_from": [ + 4207 + ], + "edges_to": [], + "id": 5336, + "label": "NANO 161", + "title": "Material Selection in Engineering (4)" + }, + { + "dept": "MUS", + "description": "Group projects to create new pieces of live electronic music involving research in electronic music and/or instrumental techniques. May be repeated for credit. ", + "edges_from": [ + 3680, + 3682, + 3683 + ], + "edges_to": [], + "id": 5337, + "label": "MUS 272", + "title": "Seminar in Live Computer Music (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "edges_from": [], + "edges_to": [], + "id": 5338, + "label": "EDS 260B", + "title": "Educational" + }, + { + "dept": "NANO", + "description": "Introduction to physical principles of electrical, dielectric, and magnetic properties. Semiconductors, control of defects, thin film, and nanocrystal growth, electronic and optoelectronic devices. Processing-microstructure-property relations of dielectric materials, including piezoelectric, pyroelectric and ferroelectric, and magnetic materials. ", + "edges_from": [ + 146, + 212 + ], + "edges_to": [], + "id": 5339, + "label": "NANO 168", + "title": "Electrical, Dielectric, and Magnetic Properties of Engineering Materials (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "edges_from": [], + "edges_to": [], + "id": 5340, + "label": "EDS 260A", + "title": "Educational" + }, + { + "dept": "ECE", + "description": "Introduction to statistical phenomena in optics", + "edges_from": [], + "edges_to": [], + "id": 5341, + "label": "ECE 244A", + "title": "Statistical Optics (4)" + }, + { + "dept": "VIS", + "description": "Critical study of the ways in which media (film, video, photography) and new media have been theorized. May be taught from a historical or comparative perspective or focus on a single topic or theorist.", + "edges_from": [], + "edges_to": [], + "id": 5342, + "label": "VIS 242", + "title": "Theories of Media and New Media (4)" + }, + { + "dept": "VIS", + "description": "the Relationship of Theory and Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 5343, + "label": "VIS 244", + "title": "Studies in" + }, + { + "dept": "AAS/ANSC", + "description": "(Cross-listed with ANSC 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for AAS 185 and ANSC 185.", + "edges_from": [], + "edges_to": [], + "id": 5344, + "label": "AAS/ANSC 185", + "title": "#BlackLivesMatter (4)" + }, + { + "dept": "TDDR", + "description": "For the advanced student in directing. Intensive concentration on the full realization of a dramatic text from research and analysis through rehearsal and into performance. A maximum of eight units of major project study, regardless of area (design, directing, or stage management) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ", + "edges_from": [ + 4105, + 3915 + ], + "edges_to": [], + "id": 5345, + "label": "TDDR 190", + "title": "Major Project in Directing (4)" + }, + { + "dept": "TDDR", + "description": "For the advanced student in stage management. Intensive concentration on the full realization of a dramatic text, from research and analysis through rehearsal and final performance. A maximum of eight units of major project study regardless of area (design, directing, stage management, or playwriting) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ", + "edges_from": [ + 4099, + 4353, + 5347 + ], + "edges_to": [], + "id": 5346, + "label": "TDDR 191", + "title": "Major Project in Stage Management (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 5346 + ], + "id": 5347, + "label": "TDPR 4", + "title": "" + }, + { + "dept": "HIEU", + "description": "German History: From Bismarck to Hitler (4)", + "edges_from": [], + "edges_to": [], + "id": 5348, + "label": "HIEU 154", + "title": "Modern" + }, + { + "dept": "HIEU", + "description": "and the Law in Modern European History (4)", + "edges_from": [], + "edges_to": [], + "id": 5349, + "label": "HIEU 157", + "title": "Religion" + }, + { + "dept": "HIEU", + "description": "This course explores war, revolution, development, and terror in the Soviet Union from 1905\u20131991.", + "edges_from": [], + "edges_to": [], + "id": 5350, + "label": "HIEU 156", + "title": "History of the Soviet Union, 1905\u20131991 (4)" + }, + { + "dept": "HIEU", + "description": "Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy.", + "edges_from": [], + "edges_to": [], + "id": 5351, + "label": "HIEU 151", + "title": "Spain since 1808 (4)" + }, + { + "dept": "HIEU", + "description": "Emphasis on changes in social structure and corresponding shifts in political power. The expansion and the end of empire. Two World Wars and the erosion of economic leadership.", + "edges_from": [], + "edges_to": [], + "id": 5352, + "label": "HIEU 150", + "title": "Modern British History (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in modern European history. Course may be taken for credit up to three times as topic vary.", + "edges_from": [], + "edges_to": [], + "id": 5353, + "label": "HIEU 153", + "title": "Topics in Modern European History (4)" + }, + { + "dept": "HIEU", + "description": "Examines how ordinary citizens coped with the problems of life under Europe\u2019s authoritarian regimes. Topics may include Nazism, fascism, and quasi-fascist societies (e.g., Franco\u2019s Spain, Salazar\u2019s Portugal), and communist practice from Leninism to Stalinism to the milder Titoism of Yugoslavia.", + "edges_from": [], + "edges_to": [], + "id": 5354, + "label": "HIEU 152", + "title": "The Worst of Times: Everyday Life in Authoritarian and Dictatorial Societies (4)" + }, + { + "dept": "BENG", + "description": "Modern development of biomechanics at an advanced mathematical level. Description of internal stresses and deformation in living tissues and fluids, thermodynamics. Mechanics of soft connective tissue, extracellular matrix, cells, membranes, and cytoskeleton. Mechanotransduction, migration, adhesion. Blood flow in microvessels. Biomechanical analysis of tissue injury. Students that have taken BENG 222 cannot take BENG 226 for credit. Recommended preparation: A previous background in biomechanics is strongly recommended prior to taking this course. ", + "edges_from": [], + "edges_to": [], + "id": 5355, + "label": "BENG 226", + "title": "Foundations of Bioengineering I: Tissue and Cell Properties (4)" + }, + { + "dept": "BENG", + "description": "This course describes the movement of heat and chemical mass in biological systems. Diffusion, convection and biochemical reactions in a variety of biological and engineering examples are analyzed and modeled. Students that have taken BENG 222 cannot take BENG 227 for credit. ", + "edges_from": [ + 5357 + ], + "edges_to": [], + "id": 5356, + "label": "BENG 227", + "title": "Transport Phenomena in Living Systems (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 5356 + ], + "id": 5357, + "label": "BENG 221", + "title": "" + }, + { + "dept": "HINE", + "description": "A survey of the history of science in the Middle East from 600 to the present day. The course examines the relationship between science, learning, and religion in Islamic societies and its connections to other regions of the globe. +", + "edges_from": [], + "edges_to": [], + "id": 5358, + "label": "HINE 145", + "title": "Islam and Science: The History of Science in the Middle East (600\u20131950) (4)" + }, + { + "dept": "HINE", + "description": "Selected topics in the history of the Middle East. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 5359, + "label": "HINE 144", + "title": "Topics in Middle Eastern History (4)" + }, + { + "dept": "HIEU", + "description": "For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?", + "edges_from": [], + "edges_to": [], + "id": 5360, + "label": "HIEU 159", + "title": "Three Centuries of Zionism, 1648\u20131948 (4)" + }, + { + "dept": "BENG", + "description": "Thermodynamics, statistical mechanics, and interfacial phenomena that emphasize the chemical natures of living systems. Topics include intermolecular and surface forces, calculation of energetic processes, computation of electrical forces and fields, and principles of physics in multiscale engineering and design. ", + "edges_from": [], + "edges_to": [], + "id": 5361, + "label": "BENG 223", + "title": "Thermodynamics, Statistical Mechanics, Interfacial Phenomena in Living Systems (4)" + }, + { + "dept": "BIMM", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 5362, + "label": "BIMM 194", + "title": "Advanced Topics in Modern Biology: Molecular Biology (2)" + }, + { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with no background.", + "edges_from": [], + "edges_to": [], + "id": 5363, + "label": "CHIN 20CN", + "title": "Second Year Chinese\u2014Non-native speakers III (4)" + }, + { + "dept": "ECE", + "description": "This course covers some convex optimization", + "edges_from": [], + "edges_to": [], + "id": 5364, + "label": "ECE 273", + "title": "Convex Optimization and Applications (4)" + }, + { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with background", + "edges_from": [], + "edges_to": [], + "id": 5365, + "label": "CHIN 20CM", + "title": "Second Year Chinese\u2014Mandarin speakers III (4)" + }, + { + "dept": "ECE", + "description": "A seminar course in which topics of special interest for electrical and computer engineering students will be presented. S/U grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5366, + "label": "ECE 279", + "title": "Special Seminar (2)" + }, + { + "dept": "ECE", + "description": "Mathematical topics covered in the ECE master\u2019s comprehensive exam including calculus, linear algebra and linear systems, and statistics and probability theory. ", + "edges_from": [], + "edges_to": [], + "id": 5367, + "label": "ECE 278", + "title": "Mathematical Topics for the Master\u2019s Comprehensive Exam (2)" + }, + { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with background", + "edges_from": [], + "edges_to": [], + "id": 5368, + "label": "CHIN 20CD", + "title": "Second Year Chinese\u2014Dialect speakers III (4)" + }, + { + "dept": "SE", + "description": "Fluid statics, hydrostatic forces; integral and differential forms of conservation equations for mass, momentum, and energy; Bernoulli equation; dimensional analysis; viscous pipe flow; external flow, boundary layers; open channel flow. ", + "edges_from": [ + 29, + 135 + ], + "edges_to": [], + "id": 5369, + "label": "SE 115", + "title": "Fluid Mechanics for Structural Engineering (4)" + }, + { + "dept": "HINE", + "description": "Revolution in Historical Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 5370, + "label": "HINE 126", + "title": "Iranian" + }, + { + "dept": "EDS", + "description": "Develop educators\u2019 knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124A and EDS 124AR. ", + "edges_from": [], + "edges_to": [], + "id": 5371, + "label": "EDS 124A", + "title": "Teaching Computation in the Digital World (4)" + }, + { + "dept": "HDP", + "description": "Directed group study, on a topic or in a field not included in the department curriculum, by arrangement with a faculty member. Pass/Not Pass grades only. May be taken for credit three times for a maximum of six units. Cannot be used toward HDP major credit. ", + "edges_from": [ + 5373, + 5374, + 5375 + ], + "edges_to": [], + "id": 5372, + "label": "HDP 98", + "title": "Directed Group Study (1\u20132)" + }, + { + "dept": "SSC", + "description": "", + "edges_from": [], + "edges_to": [ + 5372 + ], + "id": 5373, + "label": "SSC 98", + "title": "" + }, + { + "dept": "SSC", + "description": "", + "edges_from": [], + "edges_to": [ + 5372 + ], + "id": 5374, + "label": "SSC 99", + "title": "" + }, + { + "dept": "SSC", + "description": "", + "edges_from": [], + "edges_to": [ + 5372 + ], + "id": 5375, + "label": "SSC 97", + "title": "" + }, + { + "dept": "BILD", + "description": "Fundamentals of human genetics and introduction to modern genetic technology", + "edges_from": [], + "edges_to": [], + "id": 5376, + "label": "BILD 20", + "title": "Human Genetics in Modern Society (4)" + }, + { + "dept": "PHIL", + "description": "Contemporary themes and problems in science studies. Focus on recent literature in the history, philosophy, and sociology of science, technology, and medicine.", + "edges_from": [], + "edges_to": [], + "id": 5377, + "label": "PHIL 209D", + "title": "Advanced Approaches to Science Studies (4)" + }, + { + "dept": "BILD", + "description": "A survey of our understanding of the basic", + "edges_from": [], + "edges_to": [], + "id": 5378, + "label": "BILD 22", + "title": "Human Nutrition (4)" + }, + { + "dept": "PHIL", + "description": "Study and discussion of classic work in history of science, philosophy of science, and of work that attempts to develop a unified science studies approach. Required of all students in the Science Studies Program.", + "edges_from": [], + "edges_to": [], + "id": 5379, + "label": "PHIL 209A", + "title": "Introduction to Science Studies (4)" + }, + { + "dept": "PHIL", + "description": "A forum for the presentation and discussion", + "edges_from": [], + "edges_to": [], + "id": 5380, + "label": "PHIL 209C", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "PHIL", + "description": "Study and discussion of selected topics in the science studies field. Required of all students in the Science Studies Program. The topic varies from year to year and students may, therefore, repeat the course for credit. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5381, + "label": "PHIL 209B", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "USP", + "description": "This course explores how economics contributes to understanding and solving urban problems using a \u201clearn by doing\u201d approach. Economic analysis will be applied to several important issues that planners and developers must deal with, such as land markets, housing, and zoning.", + "edges_from": [], + "edges_to": [], + "id": 5382, + "label": "USP 15", + "title": "Applied Urban Economics for Planning and Development (4)" + }, + { + "dept": "BENG", + "description": "Development, morphogenesis, growth, and remodeling of tissues and organs in health and disease. Integrative metabolism and biomechanics of cells and extracellular matrix at tissue, organ, and organism scales. Bioengineering restoration of tissues and organs. Industry applications and regulations. ", + "edges_from": [ + 2377 + ], + "edges_to": [], + "id": 5383, + "label": "BENG 241C", + "title": "Tissue Engineering and Regenerative Medicine: Development and Growth (4)" + }, + { + "dept": "LTEA", + "description": "in Tagalog Literature and Culture I (4)", + "edges_from": [], + "edges_to": [], + "id": 5384, + "label": "LTEA 151", + "title": "Readings" + }, + { + "dept": "Soc/G", + "description": "Research will be conducted in field settings. The primary focus will be on mastering the problems and technical skills associated with the conduct of ethnographic and participant observational studies. ", + "edges_from": [], + "edges_to": [], + "id": 5385, + "label": "Soc/G 203", + "title": "Field Methods (4)" + }, + { + "dept": "TDGE", + "description": "This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America\u2019s First Peoples in Hollywood cinema. Carving spaces of \u201cvisual sovereignty\u201d (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for both TDGE 131 and ETHN 163F. ", + "edges_from": [], + "edges_to": [], + "id": 5386, + "label": "TDGE 131", + "title": "Playing Indian: Native American and First Nations Cinema (4)" + }, + { + "dept": "TDMV", + "description": "Designed to provide training in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an intermediate technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ", + "edges_from": [ + 2490, + 5388 + ], + "edges_to": [ + 5389 + ], + "id": 5387, + "label": "TDMV 130", + "title": "Intermediate Jazz (4)" + }, + { + "dept": "THDA", + "description": "", + "edges_from": [], + "edges_to": [ + 5387 + ], + "id": 5388, + "label": "THDA 3", + "title": "" + }, + { + "dept": "TDMV", + "description": "Further development in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an advanced technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ", + "edges_from": [ + 5387 + ], + "edges_to": [], + "id": 5389, + "label": "TDMV 133", + "title": "Advanced Jazz Dance (4)" + }, + { + "dept": "DSC", + "description": "The marriage of data, computation, and inferential thinking, or \u201cdata science,\u201d is redefining how people and organizations solve challenging problems and understand the world. This course bridges lower- and upper-division data science courses as well as methods courses in other fields. Students master the data science life-cycle and learn many of the fundamental principles and techniques of data science spanning algorithms, statistics, machine learning, visualization, and data systems. ", + "edges_from": [ + 993, + 178 + ], + "edges_to": [], + "id": 5390, + "label": "DSC 80", + "title": "The Practice and Application of Data Science (4)" + }, + { + "dept": "VIS", + "description": "Research seminar in film history, theory, and/or criticism. Potential topics: film aesthetics, film criticism, film sound, and film in the digital era, with a focus on a specific period, theme, or context. Class will be devoted to discussion of readings in connection with a film or related art, fiction, or other media. Students will gain advanced knowledge of a specialized aspect of film history, theory, or criticism in a setting that promotes research, reports, and writing. ", + "edges_from": [ + 1664, + 1657, + 2844 + ], + "edges_to": [], + "id": 5391, + "label": "VIS 150A", + "title": "Seminar in Film History and Theory (4)" + }, + { + "dept": "TDMV", + "description": "An introduction to the basic technique of hip-hop, studied to enhance an understanding of the historical cultural content of the American form hip-hop and street dances in current choreography. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [ + 5610, + 5611 + ], + "id": 5392, + "label": "TDMV 138", + "title": "Beginning Hip-Hop (2)" + }, + { + "dept": "MUS", + "description": "Consideration and development of pedagogical methods appropriate to undergraduate teaching. ", + "edges_from": [], + "edges_to": [], + "id": 5393, + "label": "MUS 501", + "title": "Apprentice Teaching\u2014Nondepartmental (4)" + }, + { + "dept": "MUS", + "description": "Participation in the undergraduate teaching program is required of all graduate students at the equivalent of 25 percent time for three quarters (six units is required for all graduate students). ", + "edges_from": [], + "edges_to": [], + "id": 5394, + "label": "MUS 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "HILA", + "description": "Exploration of the relationships between socioeconomic and cultural development in Caribbean history; slavery and empire; nationalism and migration; vodun and Rastafarianism, and the literary arts.", + "edges_from": [], + "edges_to": [], + "id": 5395, + "label": "HILA 126", + "title": "From Columbus to Castro: Caribbean Culture and Society (4)" + }, + { + "dept": "CHEM", + "description": "Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5396, + "label": "CHEM 219B", + "title": "Special Topics in Biochemistry (4)" + }, + { + "dept": "HILA", + "description": "The course surveys Chile\u2019s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his or her own choosing and develop the topic for class presentation and a final paper. The course will cover politics, cultural changes, class struggles, Allende\u2019s revolutionary movement, and Pinochet\u2019s dictatorship to the present.", + "edges_from": [], + "edges_to": [], + "id": 5397, + "label": "HILA 124", + "title": "The History of Chile 1880\u2013Present (4)" + }, + { + "dept": "HILA", + "description": "The Incas called their realm Tahuantinsuyu (Land of the Four Quarters). But the Incas were only one of the many ethnic groups in the Andean region. Many different other groups became a part of the Tahuantinsuyu in the wake of Inca expansion. Over the past decade, new and fascinating information on these processes have been published, and allow for a rereading of Inca history between 900 and 1535. +", + "edges_from": [], + "edges_to": [], + "id": 5398, + "label": "HILA 123", + "title": "The Incas and Their Ancestors (4)" + }, + { + "dept": "HILA", + "description": "A lecture-discussion course on the historical roots of revolutionary Cuba, with special emphasis on the impact of the United States on the island\u2019s development and society.", + "edges_from": [], + "edges_to": [], + "id": 5399, + "label": "HILA 122", + "title": "Cuba: From Colony to Socialist Republic (4)" + }, + { + "dept": "HILA", + "description": "A survey from the colonial period to the present, with an emphasis on the nineteenth and twentieth centuries. Among the topics covered: the expansion of the frontier, the creation of a cosmopolitan, predominately European culture, and the failure of industrialization to provide an economic basis for democracy.", + "edges_from": [], + "edges_to": [], + "id": 5400, + "label": "HILA 120", + "title": "History of Argentina (4)" + }, + { + "dept": "LIGN", + "description": "A discourse-centered examination of ASL verbal arts: rhyme, meter, rhythm, handedness, nonmanual signals, and spatial mapping; creation of scene and mood; properties of character, dialogue, narration, and voice; cultural tropes; poetic constructions in everyday genres; transcription, body memory and performance. ", + "edges_from": [ + 3280 + ], + "edges_to": [], + "id": 5401, + "label": "LIGN 144", + "title": "Discourse Analysis: American Sign Language and Performing Arts (4)" + }, + { + "dept": "POLI", + "description": "This internship is attached to the UCDC Program. Students participating in the UCDC Program are placed in an internship in the Washington, DC, area requiring approximately seventeen to twenty-three hours per week. ", + "edges_from": [], + "edges_to": [], + "id": 5402, + "label": "POLI 197I", + "title": "Political Science Washington Internship (6, 8)" + }, + { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the colonial period from Spanish and Portuguese conquests to the Wars of Independence. Requirements will vary for undergraduate, MS, and PhD students. Graduate students are required to submit an additional research paper. ", + "edges_from": [], + "edges_to": [], + "id": 5403, + "label": "HILA 167/267", + "title": "Scholarship on Latin American History in the Colonial Period (4)" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 1688 + ], + "id": 5404, + "label": "MMW 5", + "title": "" + }, + { + "dept": "COGS", + "description": "Research is showing that cellular metabolic processes are mediating normal and abnormal brain function. For example, neurocognitive disorders often co-occur with metabolic disturbances, such as insulin resistance, diabetes, and obesity. An understanding of these mechanisms will provide insight to new treatments for cognitive and neurological disorders. The course will cover topics on the role of abnormal cellular structure, genetic, epigenetic and pathogenic influences on synaptic signaling. ", + "edges_from": [], + "edges_to": [], + "id": 5405, + "label": "COGS 163", + "title": "Metabolic Disorders of the Brain (4)" + }, + { + "dept": "LTIT", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5406, + "label": "LTIT 137", + "title": "Studies in Modern Italian Prose (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5407, + "label": "LTEN 156", + "title": "American Literature from the Civil War to World War I (4)" + }, + { + "dept": "GPPS", + "description": "This course encourages sustained debate about US interventions into conflict and post-conflict settings abroad since the end of the Cold War. We will consider the broad trends in international politics, with particular focus on the nature of\u00a0\u201cunipolarity,\u201d\u00a0\u201cresponsibility to protect,\u201d and the politics of border regions. We will look at both governmental and nongovernmental actors. Renumbered from IRGN 434. Students may not receive credit for GPPS 434 and IRGN 434.", + "edges_from": [], + "edges_to": [], + "id": 5408, + "label": "GPPS 434", + "title": "Humanitarian Interventions (4)" + }, + { + "dept": "GPPS", + "description": "Course engages central debates regarding US grand strategy and encourages analysis of regional crisis-spots using replicable open-source data. Emphasis is on deploying theoretical arguments in the service of a policy agenda and tensions between rival schools of theory in the context of contemporary politics. Topics include nuclear nonproliferation, humanitarian military interventions, democracy promotion, \u201cWar on Terror,\u201d and policy toward \u201crogue\u201d and unrecognized states. Renumbered from IRGN 433. Students may not receive credit for GPPS 433 and IRGN 433.", + "edges_from": [], + "edges_to": [], + "id": 5409, + "label": "GPPS 433", + "title": "Debating US Security Policy\u00a0(4)" + }, + { + "dept": "MATH", + "description": "Second course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology. May be taken for credit up to three times. ", + "edges_from": [ + 3054 + ], + "edges_to": [ + 5419 + ], + "id": 5410, + "label": "MATH 203B", + "title": "Algebraic Geometry II (4)" + }, + { + "dept": "GPPS", + "description": "Prepares students to analyze the causes of repression and the effectiveness of political intervention. Attention will focus on the evaluation of the design, implementation, and effectiveness of human rights policy, including international organizations, democracy, trade, and social movement advocacy. Renumbered from IRGN 430. Students may not receive credit for GPPS 430 and IRGN 430.", + "edges_from": [], + "edges_to": [], + "id": 5411, + "label": "GPPS 430", + "title": "Human Rights, Public Policy, and International Relations (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5412, + "label": "LTEN 154", + "title": "The American Renaissance (4)" + }, + { + "dept": "CHIN", + "description": "(4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 5413, + "label": "CHIN 185A-B-C", + "title": "Readings in Chinese Culture and Society" + }, + { + "dept": "SOCG", + "description": "A consideration of the major theories of schooling and society, including functionalist, conflict, critical, and interactional; selected topics in the sociology of education will be addressed in a given quarter, including: the debate over inequality, social selection, cultural reproduction and the transition of knowledge, the cognitive and economic consequences of education. Major research methods will be discussed and critiqued.", + "edges_from": [], + "edges_to": [], + "id": 5414, + "label": "SOCG 270", + "title": "The Sociology of Education (4)" + }, + { + "dept": "PSYC", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5415, + "label": "PSYC 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "COGS", + "description": "(Cross-listed with MUS 20.) How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both Cognitive Science 20 and MUS 20.", + "edges_from": [], + "edges_to": [], + "id": 5416, + "label": "COGS 20", + "title": "Exploring the Musical Mind (4)" + }, + { + "dept": "PSYC", + "description": "This course provides students the opportunity to learn about the intricate relationship that exists between brain and behavior, as well as the evolutionary forces that shape this interaction. Lectures for this course aim to introduce students to some of the best examples in the literature that highlight these issues, while a parallel component of the course aims to introduce students to performing research on the topic. ", + "edges_from": [ + 2333, + 862, + 1389 + ], + "edges_to": [], + "id": 5417, + "label": "PSYC 81", + "title": "Laboratory in Brain, Behavior, and Evolution (4)" + }, + { + "dept": "HILA", + "description": "Inside or outside the household, women have always worked. Where do we find Latin American women? How has the labor market changed? How was and is women\u2019s work perceived? What were the consequences of changing work patterns on family life? ", + "edges_from": [], + "edges_to": [], + "id": 5418, + "label": "HILA 164/264", + "title": "Women\u2019s Work and Family Life in Latin America (4)" + }, + { + "dept": "MATH", + "description": "Third course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology, curves, and surfaces. May be taken for credit up to three times. ", + "edges_from": [ + 5410 + ], + "edges_to": [], + "id": 5419, + "label": "MATH 203C", + "title": "Algebraic Geometry III (4)" + }, + { + "dept": "AAS", + "description": "Individual research and study on a particular subject related to African American studies by special arrangement with and under the direction of a faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5420, + "label": "AAS 199", + "title": "Independent Study in African American Studies (2 or 4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5421, + "label": "LTEN 150", + "title": "Gender, Text, and Culture (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3365 + ], + "id": 5422, + "label": "MAE 209BENG", + "title": "" + }, + { + "dept": "CSE", + "description": "Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. ", + "edges_from": [ + 17 + ], + "edges_to": [], + "id": 5423, + "label": "CSE 158", + "title": "Recommender Systems and Web Mining (4)" + }, + { + "dept": "HIEU", + "description": "Multiple reformations of the European Christian Church confronted with the rise of universities, colonial exploration, absolutism, scientific revolutions, and the Enlightenment. Focused attention will be given to early modern Europe (Muslims, Jews, and Protestant sects).", + "edges_from": [], + "edges_to": [], + "id": 5424, + "label": "HIEU 105S", + "title": "Devotions, Doctrines, and Divisions: Religion in Early Modern European Society (4)" + }, + { + "dept": "CSE", + "description": "The goal of computer vision is to compute scene and object properties from images and video. This introductory course includes feature detection, image segmentation, motion estimation, object recognition, and 3-D shape reconstruction through stereo, photometric stereo, and structure from motion. ", + "edges_from": [ + 17, + 11, + 139, + 2054 + ], + "edges_to": [], + "id": 5425, + "label": "CSE 152", + "title": "Introduction to Computer Vision (4)" + }, + { + "dept": "CSE", + "description": "Construction of computational models that \u201cdo the same things people do,\u201d in terms of perception, categorization, memory, language, action, etc. and typically in a fashion that is plausibly carried out by the neural networks in our brains. The model must fit behavioral, neurophysiological, and/or neuropsychological data. Recommended preparation: background knowledge in computer science, cognitive science, psychology, or neuroscience, and a basic understanding of the most fundamental concepts of differential calculus, linear algebra, and statistics. Computer programming skills may be useful to some students as they conduct their term projects, but such skills are not required. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [], + "id": 5426, + "label": "CSE 153", + "title": "Cognitive Modeling (4)" + }, + { + "dept": "CSE", + "description": "to Artificial Intelligence: Search and Reasoning (4)", + "edges_from": [], + "edges_to": [], + "id": 5427, + "label": "CSE 150", + "title": "Introduction" + }, + { + "dept": "CSE", + "description": "to Artificial Intelligence: Statistical Approaches (4)", + "edges_from": [], + "edges_to": [], + "id": 5428, + "label": "CSE 151", + "title": "Introduction" + }, + { + "dept": "HIEA", + "description": "This colloquium will explore the relationship between cinema and society in twentieth-century China. The emphasis will be on the social, political, and cultural impact of filmmaking. The specific period under examination (1930s, 1940s, post-1949) may vary each quarter. Graduate students will be expected to submit an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 5429, + "label": "HIEA 163/263", + "title": "Cinema and Society in Twentieth-Century China (4)" + }, + { + "dept": "HLAW", + "description": "Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will emphasize that global health policy challenges require a multidisciplinary approach involving a broad set of stakeholders and that local, national, and global health policy are all intertwined. ", + "edges_from": [], + "edges_to": [], + "id": 5430, + "label": "HLAW 219A", + "title": "Global Health Policy A: Foundations (3)" + }, + { + "dept": "SOCI", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in sociology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5431, + "label": "SOCI 192", + "title": "Senior Seminar in Sociology (1)" + }, + { + "dept": "HLAW", + "description": "This course examines advanced current topics in global health policy using a combination of instruction, student participation, and policy simulation. Topics examined are cross-cutting across local, national, regional, and international health policy-making with practical examples of why more coordinated global health governance is needed. ", + "edges_from": [], + "edges_to": [], + "id": 5432, + "label": "HLAW 219B", + "title": "Global Health Policy B: Advanced Topics (3)" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 1689 + ], + "id": 5433, + "label": "MMW 6", + "title": "" + }, + { + "dept": "LTEA", + "description": "Topics in Filipino Literature and Culture (World War II\u2013Present) (4)", + "edges_from": [], + "edges_to": [], + "id": 5434, + "label": "LTEA 152B", + "title": "" + }, + { + "dept": "LTEA", + "description": "Topics in Filipino Literature and Culture (Nineteenth Century\u2013World War", + "edges_from": [], + "edges_to": [], + "id": 5435, + "label": "LTEA 152A", + "title": "" + }, + { + "dept": "PHYS", + "description": "This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 216. ", + "edges_from": [ + 5115, + 295 + ], + "edges_to": [], + "id": 5436, + "label": "PHYS 116", + "title": "Fluid Dynamics for Physicists (4)" + }, + { + "dept": "PHYS", + "description": "The linear theory of ocean surface waves, including group velocity, wave dispersion, ray theory, wave measurement and prediction, shoaling waves, giant waves, ship wakes, tsunamis, and the physics of the surf zone. Cross-listed with SIO 111. Students cannot earn credit for both Physics 111 and SIO 111. ", + "edges_from": [ + 385, + 36, + 133, + 134, + 129, + 136, + 138, + 135, + 37, + 38, + 29, + 30, + 31 + ], + "edges_to": [], + "id": 5437, + "label": "PHYS 111", + "title": "Introduction to Ocean Waves (4)" + }, + { + "dept": "RELI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic related to the study of religion with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5438, + "label": "RELI 87", + "title": "Freshman Seminar in Religion (1)" + }, + { + "dept": "HILD", + "description": "A survey of contemporary issues concerning law and society, with emphasis on historical analysis and context. Satisfies the lower-division requirement for the law and society minor.", + "edges_from": [], + "edges_to": [], + "id": 5439, + "label": "HILD 50", + "title": "Introduction to Law and Society (4)" + }, + { + "dept": "LTSP", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5440, + "label": "LTSP 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "LTSP", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 5441, + "label": "LTSP 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "SOCI", + "description": "Tutorial: individual study under the direction of an interested faculty member in an area not covered by the present course offerings. Approval must be secured from the departmental committee on independent studies. ", + "edges_from": [], + "edges_to": [], + "id": 5442, + "label": "SOCI 199", + "title": "Independent Study (4)" + }, + { + "dept": "MBC", + "description": "Building on the knowledge and experience gained from the entire curriculum of the master\u2019s in Marine Biodiversity and Conservation (MAS-MBC) program, students will design and present a specific marine conservation project. ", + "edges_from": [ + 5443, + 4828 + ], + "edges_to": [ + 5443 + ], + "id": 5443, + "label": "MBC 296", + "title": "Capstone Independent Study Project (6)" + }, + { + "dept": "LTSP", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5444, + "label": "LTSP 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "PSYC", + "description": "Discussion of theories and experiments investigating language production, comprehension, or acquisition.", + "edges_from": [], + "edges_to": [], + "id": 5445, + "label": "PSYC 244", + "title": "Special Topics in Psycholinguistics (4)" + }, + { + "dept": "PSYC", + "description": "We often learn through observations or from testimony from others. Occasionally, we learn simply by thinking. How do we generate insights in the absence of new information from the external world? This course examines the cognitive capacities involved in learning by thinking, including thought experiments, deduction, analogy, imagination, and learning by explaining. This discussion-based seminar will take a cognitive science approach, emphasizing cognitive development. ", + "edges_from": [], + "edges_to": [], + "id": 5446, + "label": "PSYC 247", + "title": "Learning by Thinking in Children (and Adults) (4)" + }, + { + "dept": "PSYC", + "description": "This seminar focuses on the interplay between emotion and cognition. We will consider how emotion influences perception, reasoning, memory, and judgment, and how cognitive processes can have emotional consequences. We will also discuss physiological and neural underpinnings of affective influence and debate more general issues such as emotion and rationality. ", + "edges_from": [], + "edges_to": [], + "id": 5447, + "label": "PSYC 246", + "title": "Emotion and Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This hands-on programming course focuses on the design, implementation, and analysis of online experiments, particularly using Amazon\u2019s Mechanical Turk. Topics include experimental design and counterbalancing, stimulus presentation and timing, response collection using the mouse and keyboard, and debugging experiments written in JavaScript and HTML/CSS. Course work will include individual projects. Recommended preparation: Graduate students who have not programmed at all should speak with the professor beforehand. ", + "edges_from": [], + "edges_to": [], + "id": 5448, + "label": "PSYC 241", + "title": "Programming Web-Based Experiments for Psychology Research (4)" + }, + { + "dept": "PSYC", + "description": "This course will explore", + "edges_from": [], + "edges_to": [], + "id": 5449, + "label": "PSYC 240", + "title": "The Primate Brain (4)" + }, + { + "dept": "PSYC", + "description": "This course deals with perception of sound, particularly music, and focuses on unusual aspects of music perception, including musical illusions and absolute pitch. Relationships between music and language will be explored, and there will be discussions concerning the evolutionary origins of these two forms of communication. ", + "edges_from": [], + "edges_to": [], + "id": 5450, + "label": "PSYC 243", + "title": "Sound and Music Perception (4)" + }, + { + "dept": "PSYC", + "description": "Current Directions in Developmental Psychology (1)", + "edges_from": [], + "edges_to": [], + "id": 5451, + "label": "PSYC 242", + "title": "" + }, + { + "dept": "PSYC", + "description": "The first part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology.", + "edges_from": [], + "edges_to": [ + 5454 + ], + "id": 5452, + "label": "PSYC 201A", + "title": "Quantitative Methods in Psychology I (6)" + }, + { + "dept": "PSYC", + "description": "The third part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology. ", + "edges_from": [ + 5454 + ], + "edges_to": [], + "id": 5453, + "label": "PSYC 201C", + "title": "Quantitative Methods in Psychology III (6)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 5452 + ], + "edges_to": [ + 5453 + ], + "id": 5454, + "label": "PSYC 201B", + "title": "" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics from the history of Greek philosophy. Usually centers on works by Plato or Aristotle. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5455, + "label": "PHIL 210", + "title": "Greek Philosophy (4)" + }, + { + "dept": "VIS", + "description": "Explores various strategies exhibited in a wide range of contemporary art practices engaging in the representation of personality, spirituality, and the physical self.", + "edges_from": [], + "edges_to": [], + "id": 5456, + "label": "VIS 218N", + "title": "Imaging Selves and Others (4)" + }, + { + "dept": "PHYS", + "description": "Quantum principles of state (pure, composite, entangled, mixed), observables, time evolution, and measurement postulate. Simple soluble systems: two-state, harmonic oscillator, and spherical potentials. Angular momentum and spin. Time-independent approximations.", + "edges_from": [], + "edges_to": [ + 5458 + ], + "id": 5457, + "label": "PHYS 212A", + "title": "Quantum Mechanics I (4)" + }, + { + "dept": "PHYS", + "description": "Symmetry theory and conservation laws: time reversal, discrete, translation and rotational groups. Potential scattering. Time-dependent perturbation theory. Quantization of Electromagnetic fields and transition rates. Identical particles. Open systems: mixed states, dissipation, decoherence. ", + "edges_from": [ + 5457 + ], + "edges_to": [], + "id": 5458, + "label": "PHYS 212B", + "title": "Quantum Mechanics II (4)" + }, + { + "dept": "SIOC", + "description": "Radiative, physical, and dynamical processes that govern the mean state, variability, and change of the atmosphere and climate including greenhouse gases, clouds and aerosols, convection and precipitation, general circulation, and coupled atmosphere-ocean interactions. Renumbered from SIO 217C. ", + "edges_from": [ + 5460, + 2899, + 2900, + 2901 + ], + "edges_to": [ + 5462 + ], + "id": 5459, + "label": "SIOC 217C", + "title": "Atmospheric and Climate Sciences III (4)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 5459, + 5462 + ], + "id": 5460, + "label": "SIO 217B", + "title": "" + }, + { + "dept": "130A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5461, + "label": "130A-B-C", + "title": "Third-Year Japanese" + }, + { + "dept": "SIOC", + "description": "Atmospheric chemistry that impacts climate change, including photochemical reactions, ozone chemistry, and aerosol evolution in the troposphere and stratosphere. Atmospheric applications of catalytic cycles, heterogeneous chemistry, and microphysical processes will include the ozone hole, urban smog, and aerosol-cloud interactions. Renumbered from SIO 217D. Students may not receive credit for both SIOC 217D and SIO 217D. ", + "edges_from": [ + 5459, + 2899, + 5460, + 2901, + 5463, + 2900 + ], + "edges_to": [], + "id": 5462, + "label": "SIOC 217D", + "title": "Atmospheric and Climate Sciences IV (4)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 5462 + ], + "id": 5463, + "label": "SIO 217C", + "title": "" + }, + { + "dept": "NEU", + "description": "Molecular and cellular approaches to the study of the nervous system are advancing neurobiology at an increasingly rapid pace. This graduate-level course will address the latest molecular advances in the areas of: 1) synapse formation, neurotransmitter release, and neurotransmitter receptors; 2) nerve growth factors, their receptors, and neuronal apoptosis; 3) transcriptional regulation in the brain and peripheral nervous system; 4) cell culture, transgenic, and knock-out mouse model systems; 5) the molecular bases of genetic, psychiatric, and degenerative diseases of the nervous system; and 6) the current molecular knowledge of vision, sensory transduction, circadian rhythms, learning, memory, and behavior.", + "edges_from": [], + "edges_to": [], + "id": 5464, + "label": "NEU 268", + "title": "Molecular and Cellular Neurobiology (4)" + }, + { + "dept": "NEU", + "description": "Course focuses on developmental processes during formation of neural circuits. Molecular, genetic, cellular mechanisms controlling neurogenesis, neuronal differentiation, positioning (migration), axon/dendrite patterning, and synapse formation will be discussed. Role of neural activity shaping circuit formation will be explored. ", + "edges_from": [], + "edges_to": [], + "id": 5465, + "label": "NEU 266", + "title": "Development of Neural Circuits (4)" + }, + { + "dept": "NEU", + "description": "Anatomical and pharmacological substrates activated following tissue or nerve injury will be discussed. Changes in afferents and spinal cord, including increased expressions of channels and receptors, during chronic pain states will be emphasized. Clinical relevance and treatment will be included. (S/U grades only.) (F)", + "edges_from": [], + "edges_to": [], + "id": 5466, + "label": "NEU 265", + "title": "Mechanisms of Pain (2)" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics from philosophers of the eighteenth century: for example, Kant or Hume. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5467, + "label": "PHIL 215", + "title": "Eighteenth-Century Philosophy (4)" + }, + { + "dept": "NEU", + "description": "Students will review basic principles of light and electron microscopy and learn a variety of basic and advanced microscopy methods through lecture and hands-on training. Each student will have his or her own project. Additional supervised instrument time is available. ", + "edges_from": [], + "edges_to": [], + "id": 5468, + "label": "NEU 260", + "title": "Light and Electron Microscopy of Cells and Tissue (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with SIO 141.) Introduction to the chemistry and distribution of the elements in seawater, emphasizing basic chemical principles such as electron structure, chemical bonding, and group and periodic properties and showing how these affect basic aqueous chemistry in marine systems. ", + "edges_from": [ + 215 + ], + "edges_to": [], + "id": 5469, + "label": "CHEM 174", + "title": "Chemical Principles of Marine Systems (4)" + }, + { + "dept": "CHEM", + "description": "Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 273. ", + "edges_from": [ + 578, + 215 + ], + "edges_to": [], + "id": 5470, + "label": "CHEM 173", + "title": "Atmospheric Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "An introduction to chemical concerns in nature with emphasis on soil and water issues like agricultural productivity, biological impacts in the environment, deforestation, ocean desserts, natural and manmade disasters (fires, nuclear winter, volcanoes), and waste handling. Recommended preparation: CHEM 171 (formerly 149A). Students may only receive credit for one of the following: CHEM 172 or 149B. ", + "edges_from": [ + 578, + 215 + ], + "edges_to": [], + "id": 5471, + "label": "CHEM 172", + "title": "Environmental Chemistry II (4)" + }, + { + "dept": "CHEM", + "description": "An introduction to chemical concerns in nature with emphasis on atmospheric issues like air pollution, chlorofluorocarbons and the ozone hole, greenhouse effects and climate change, impacts of radioactive waste, sustainable resource usage, and risks and benefits of energy sources. Students may only receive credit for one of the following: CHEM 149A or 171. ", + "edges_from": [ + 578, + 215 + ], + "edges_to": [], + "id": 5472, + "label": "CHEM 171", + "title": "Environmental Chemistry I (4)" + }, + { + "dept": "LTSP", + "description": "Analysis and discussion of literary production during and after the Franco dictatorship. May focus on specific genres, sub-period, or issues. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 5473, + "label": "LTSP 129", + "title": "Spanish Writing after 1939 (4)" + }, + { + "dept": "PSYC", + "description": "This course provides the opportunity for students to continue to carry out their research projects. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [ + 5475 + ], + "edges_to": [ + 5476 + ], + "id": 5474, + "label": "PSYC 194B", + "title": "Honors Thesis II (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 3741, + 3742, + 1839 + ], + "edges_to": [ + 5474 + ], + "id": 5475, + "label": "PSYC 194A", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides the opportunity for students to complete their research, write their honors thesis, and present their results at the Honors Poster Session. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [ + 5474 + ], + "edges_to": [], + "id": 5476, + "label": "PSYC 194C", + "title": "Honors Thesis III (4)" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5477, + "label": "LTSP 122", + "title": "The Romantic Movement in Spain (4)" + }, + { + "dept": "LTSP", + "description": "Investigation of selected topics concerning Spanish cultural production after 1800. Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 5478, + "label": "LTSP 123", + "title": "Topics in Modern Spanish Culture (4)" + }, + { + "dept": "SOCI", + "description": "Students test their own sociological research hypotheses using data from recent American and international social surveys and state-of-the-art computer software. Application of classical scientific method, interpretation of statistical results, and clear presentation of research findings. ", + "edges_from": [ + 5480, + 2979, + 5479 + ], + "edges_to": [ + 5479 + ], + "id": 5479, + "label": "SOCI 109", + "title": "Analysis of Sociological Data (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5479 + ], + "id": 5480, + "label": "SOCA 109", + "title": "" + }, + { + "dept": "SOCI", + "description": "Translation of research goals into a research design, including probability sampling, questionnaire construction, data collection (including interviewing techniques), data processing, coding, and preliminary tabulation of data. Statistical methods of analysis will be limited primarily to percentaging. ", + "edges_from": [ + 5481, + 5482, + 2979 + ], + "edges_to": [ + 5481 + ], + "id": 5481, + "label": "SOCI 108", + "title": "Survey Research Design (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5481 + ], + "id": 5482, + "label": "SOCA 108", + "title": "" + }, + { + "dept": "SOCI", + "description": "Social network analysts view society as a web of relationships rather than a mere aggregation of individuals. In this course, students will learn how to collect, analyze, and visualize social network data, as well as utilize these techniques to answer an original sociological research question. ", + "edges_from": [ + 2979 + ], + "edges_to": [], + "id": 5483, + "label": "SOCI 102", + "title": "Network Data and Methods (4)" + }, + { + "dept": "SOCI", + "description": "Major figures and schools in sociology from the early nineteenth century onwards, including Marx, Tocqueville, Durkheim, and Weber. The objective of the course is to provide students with a background in classical social theory, and to show its relevance to contemporary sociology. ", + "edges_from": [ + 5484, + 5485 + ], + "edges_to": [ + 5484 + ], + "id": 5484, + "label": "SOCI 100", + "title": "Classical Sociological Theory (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5484 + ], + "id": 5485, + "label": "SOCA 100", + "title": "" + }, + { + "dept": "SOCI", + "description": "Epidemiology is the statistical study of disease, and epidemiological methods are a powerful tool for understanding the causes of certain diseases, e.g., AIDS, scurvy, cholera, and lung cancer. These fundamental epidemiological methods will be taught. ", + "edges_from": [ + 2979, + 5486, + 5487 + ], + "edges_to": [ + 5486 + ], + "id": 5486, + "label": "SOCI 107", + "title": "Epidemiological Methods: Statistical Study of Disease (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5486 + ], + "id": 5487, + "label": "SOCA 107", + "title": "" + }, + { + "dept": "SOCI", + "description": "A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time, and their application in student research projects. ", + "edges_from": [ + 5488, + 5489, + 2979 + ], + "edges_to": [ + 5488 + ], + "id": 5488, + "label": "SOCI 106", + "title": "Comparative and Historical Methods (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5488 + ], + "id": 5489, + "label": "SOCA 106", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Conjoined with Soc/G 227.) Ethnographic recording of field data in written and audiovisual formats including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual ethnographic videotape. ", + "edges_from": [ + 5490, + 5491, + 5492 + ], + "edges_to": [ + 5490 + ], + "id": 5490, + "label": "SOCI 105", + "title": "Ethnographic Film: Media Methods (6)" + }, + { + "dept": "G", + "description": "", + "edges_from": [], + "edges_to": [ + 5490 + ], + "id": 5491, + "label": "G ??? 227", + "title": "" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5490 + ], + "id": 5492, + "label": "SOCA 105", + "title": "" + }, + { + "dept": "SOCI", + "description": "Research: Methods of Participant Observation (4)", + "edges_from": [], + "edges_to": [], + "id": 5493, + "label": "SOCI 104", + "title": "Field" + }, + { + "dept": "POLI", + "description": "This course examines general themes affecting the region (social structure and regime type, religion and modernization, bonds and tensions), the character of major states, and efforts to resolve the conflict between Israel and its Arab and Islamic neighbors. ", + "edges_from": [], + "edges_to": [], + "id": 5494, + "label": "POLI 121", + "title": "Government and Politics of the Middle East (4)" + }, + { + "dept": "CSE", + "description": "Exploration of topics in mathematics and engineering", + "edges_from": [], + "edges_to": [], + "id": 5495, + "label": "CSE 4GS", + "title": "Mathematical Beauty in Rome (4)" + }, + { + "dept": "POLI", + "description": "What do we mean by \u201cinternational", + "edges_from": [], + "edges_to": [], + "id": 5496, + "label": "POLI 122", + "title": "Politics of Human Rights (4)" + }, + { + "dept": "POLI", + "description": "What have been the effects of globalization on gender, and how has gender shaped conceptions and processes of globalization? Through case studies drawn from the global north and south, this course critically assesses contemporary theoretical debates on global gender justice.", + "edges_from": [], + "edges_to": [], + "id": 5497, + "label": "POLI 125", + "title": "Gender, Politics, and Globalization (4)" + }, + { + "dept": "POLI", + "description": "(Same as SOCI 188I.) In this course, we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war.", + "edges_from": [], + "edges_to": [], + "id": 5498, + "label": "POLI 124", + "title": "Israeli-Palestinian Conflict (4)" + }, + { + "dept": "POLI", + "description": "This course critically examines central concepts and theories of development, and assesses their utility in understanding political, economic, and social change in the developing world. Central case studies are drawn from three regions: Latin America, Sub-Saharan Africa, and Southeast Asia. ", + "edges_from": [], + "edges_to": [], + "id": 5499, + "label": "POLI 127", + "title": "Politics of Developing Countries (4)" + }, + { + "dept": "POLI", + "description": "Why are some countries rich and others poor? This course examines how political and economic factors shape development trajectories, focusing on Africa, Asia, and Latin America. Topics include the impact of democracy, corruption, oil, and foreign aid on economic development. ", + "edges_from": [], + "edges_to": [], + "id": 5500, + "label": "POLI 126", + "title": "Political Economy of Development (4)" + }, + { + "dept": "POLI", + "description": "Examine the role of elections in new and fragile democracies, explore how politicians construct elections to suppress increased levels of democracy, the techniques used to undermine free and fair elections, and the strategic responses to these actions by domestic/international actors. ", + "edges_from": [], + "edges_to": [], + "id": 5501, + "label": "POLI 129", + "title": "How to Steal an Election (4)" + }, + { + "dept": "POLI", + "description": "This course considers the interplay between factor endowments, political institutions, and economic performance. It focuses on the connection between representative political institutions and the emergence and expansion of markets.", + "edges_from": [], + "edges_to": [], + "id": 5502, + "label": "POLI 128", + "title": "Autocracy, Democracy, and Prosperity (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1C/1CX, 5CS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT1D/1DX. ", + "edges_from": [ + 3640 + ], + "edges_to": [], + "id": 5503, + "label": "Linguistics/Italian (LIIT) 5DS", + "title": "Fundamentals of Italian IV (5)" + }, + { + "dept": "FPM", + "description": "Focus on qualitative methods addressing both theoretical and practical dimensions of conducting qualitative research. Identify research questions for which qualitative methods are appropriate, and to critique qualitative research in terms of design, interview techniques, analysis, and interpretation.", + "edges_from": [], + "edges_to": [], + "id": 5504, + "label": "FPM 288", + "title": "Introduction to Qualitative Research Methods (4)" + }, + { + "dept": "HDP", + "description": "Apprentice in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 5505, + "label": "HDP 195", + "title": "Instructional" + }, + { + "dept": "HDP", + "description": "This course combines lectures on research methodology (three hours/week) with an applied field research experience (four hours/week) conducted at a preapproved study site. Required: completion of a field notebook, review paper, oral presentation, and final paper. Students must submit the pre-enrollment questionnaire one academic year prior to enrollment. See", + "edges_from": [], + "edges_to": [], + "id": 5506, + "label": "HDP 191", + "title": "Field Research in Human Development (6)" + }, + { + "dept": "ECE", + "description": "of Nanoscience and Nanotechnology (4)", + "edges_from": [], + "edges_to": [], + "id": 5507, + "label": "ECE 212AN", + "title": "Principles" + }, + { + "dept": "HDP", + "description": "Research in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 5508, + "label": "HDP 193", + "title": "Advanced" + }, + { + "dept": "NEU", + "description": "General Clinical Selective Clerkship (7)", + "edges_from": [], + "edges_to": [ + 5920, + 5921 + ], + "id": 5509, + "label": "NEU 401", + "title": "Neurology" + }, + { + "dept": "HDP", + "description": "Study in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 5510, + "label": "HDP 199", + "title": "Independent" + }, + { + "dept": "COGS", + "description": "Students engage in discussions of reading of recent research in an area designated and directed by the instructor and also participate in the design and execution of original research. Students are expected to demonstrate oral and written competence in presenting original research. ", + "edges_from": [], + "edges_to": [], + "id": 5511, + "label": "COGS 291", + "title": "Laboratory Research (1\u20134)" + }, + { + "dept": "COGS", + "description": "Laboratory rotations provide students with experience in the various experimental methods used in cognitive science. ", + "edges_from": [], + "edges_to": [], + "id": 5512, + "label": "COGS 290", + "title": "Cognitive Science Laboratory Rotation (2)" + }, + { + "dept": "HIGR", + "description": "Cross-listed as Communication 225B, Philosophy 209B, and Sociology 255B. Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ", + "edges_from": [], + "edges_to": [], + "id": 5513, + "label": "HIGR 239", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "HIGR", + "description": "Cross-listed as Communication 225A, Philosophy 209A, and Sociology 255A. Study and discussion of classic work in history of science, sociology of science and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 5514, + "label": "HIGR 238", + "title": "Introduction to Science Studies (4)" + }, + { + "dept": "COGS", + "description": "Students are provided directed research on their dissertation topic by faculty advisers.", + "edges_from": [], + "edges_to": [], + "id": 5515, + "label": "COGS 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "HIGR", + "description": "This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the \u201cfoundational\u201d culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207.", + "edges_from": [], + "edges_to": [], + "id": 5516, + "label": "HIGR 234", + "title": "Eastern Mediterranean Archaeology: New Perspectives (4)" + }, + { + "dept": "HIGR", + "description": "Cross-listed with SIO 201. Intensive study of specific problems in the history of the ocean sciences, and of related earth and atmospheric sciences, in the modern period. Topics vary from year to year, and students may therefore repeat the course for credit.", + "edges_from": [], + "edges_to": [], + "id": 5517, + "label": "HIGR 237", + "title": "Topics in the History of Ocean Sciences (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an understanding of how the frontal lobes allow us to engage in complex mental processes. Topics may include anatomy and theory of prefrontal function, frontal lobe clinical syndromes, pharmacology and genetics, emotion control, and cognitive training. ", + "edges_from": [], + "edges_to": [], + "id": 5518, + "label": "PSYC 123", + "title": "Cognitive Control and Frontal Lobe Function (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 5519, + "label": "EDS 261A", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 5520, + "label": "EDS 261C", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 5521, + "label": "EDS 261B", + "title": "Advanced" + }, + { + "dept": "LTWR", + "description": "Undergraduate instruction assistance. A student will 1) assist TA in editing students\u2019 writing for LTWR 8A-B-C during class and outside of class; and 2) prepare a paper and report for the professor at the end of the quarter. May be taken for credit up to two times. ", + "edges_from": [], + "edges_to": [], + "id": 5522, + "label": "LTWR 195", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "LTWR", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "edges_from": [], + "edges_to": [], + "id": 5523, + "label": "LTWR 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "LTWR", + "description": "Tutorial; individual guidance in areas of writing not normally covered in courses. (P/NP grades only.) May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5524, + "label": "LTWR 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTWR", + "description": "Directed group study in areas of writing not normally covered in courses. (P/NP grades only.) Repeatable for credit when areas of study vary.", + "edges_from": [], + "edges_to": [], + "id": 5525, + "label": "LTWR 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "COMM", + "description": "Analysis of the changing content and sociopolitical role in Latin America of contemporary media, including the \u201cnew cinema\u201d movement, recent developments in film, and popular television programming, including the telenovela. Examples drawn from Mexico, Brazil, Cuba, and other countries. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 5526, + "label": "COMM 140", + "title": "Cinema in Latin America (4)" + }, + { + "dept": "ECE", + "description": "Optical fibers, waveguides, laser communication", + "edges_from": [], + "edges_to": [], + "id": 5527, + "label": "ECE 243B", + "title": "Optical Fiber Communication (4)" + }, + { + "dept": "CSE", + "description": "Discussion on problems of current research interest in computer security. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5528, + "label": "CSE 229C", + "title": "Topics/Seminar in Computer Security (1\u20134)" + }, + { + "dept": "BENG", + "description": "Teaching experience in an appropriate bioengineering undergraduate course under direction of the faculty member in charge of the course. Lecturing one to two hours per week in either a problem-solving section or regular lecture. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5529, + "label": "BENG 501", + "title": "Teaching Experience (2, 4)" + }, + { + "dept": "BENG", + "description": "Teaching experience in one of the six bioengineering lab courses designated as a part of the BENG PhD Specialization in Multi-Scale Biology. Student is under the direction of the faculty member in charge of the course. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5530, + "label": "BENG 500", + "title": "Apprentice Teaching for Specialization in Multi-Scale Biology (2, 4)" + }, + { + "dept": "POLI", + "description": "Preparation of a major paper from research conducted while participating in the Research Apprenticeship (POLI 198RA). Presentations to and participation in weekly seminar meetings also required. Students can enroll in POLI 194RA only if they have previously taken or are simultaneously enrolled in 198RA. ", + "edges_from": [ + 106 + ], + "edges_to": [], + "id": 5531, + "label": "POLI 194RA", + "title": "Research Apprenticeship Seminar (4)" + }, + { + "dept": "MDE", + "description": "Introduction of project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. ", + "edges_from": [], + "edges_to": [ + 5533 + ], + "id": 5532, + "label": "MDE 260A", + "title": "Design and Implementation of Medical Device Technology I (1)" + }, + { + "dept": "MDE", + "description": "Second of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will begin to design a medical device and an engineering strategy. ", + "edges_from": [ + 5532 + ], + "edges_to": [ + 5534 + ], + "id": 5533, + "label": "MDE 260B", + "title": "Design and Implementation of Medical Device Technology II (2)" + }, + { + "dept": "MDE", + "description": "Third of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will complete and implement their medical device design and engineering strategy. ", + "edges_from": [ + 5533 + ], + "edges_to": [], + "id": 5534, + "label": "MDE 260C", + "title": "Design and Implementation of Medical Device Technology III (1)" + }, + { + "dept": "MGTF", + "description": "Develop theories of behavior motivated by psychology to describe various features of financial markets. Examine how the insights from behavioral finance complement the traditional paradigm and shed light on investors\u2019 trading patterns, the behavior of asset prices, and corporate finance. Letter grades only. ", + "edges_from": [ + 4268 + ], + "edges_to": [], + "id": 5535, + "label": "MGTF 406", + "title": "Behavioral Finance (4)" + }, + { + "dept": "MGTF", + "description": "Covering the fundamentals of corporate finance and their application to valuation (including the WACC approach, APV approach, multiples, and real option valuation). We focus on important areas of corporate finance, including capital structure, real options, and financial distress and bankruptcy. Letter grades only. ", + "edges_from": [ + 4268 + ], + "edges_to": [], + "id": 5536, + "label": "MGTF 407", + "title": "Valuation in Corporate Finance (4)" + }, + { + "dept": "MGTF", + "description": "Introduction to state-of-the-art forecasting methods in finance. Students will learn to estimate forecasting models based on past values of the predicted variable(s), surveys, market information, and other economic data. Participants will become critical consumers of forecasts reported in the media. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5537, + "label": "MGTF 405", + "title": "Business Forecasting (4)" + }, + { + "dept": "HMNR", + "description": "Explores where human rights come from and what they mean by integrating them into a history of modern society, from the Conquest of the Americas and the origins of the Enlightenment, to the Holocaust and the contemporary human rights regime.", + "edges_from": [], + "edges_to": [], + "id": 5538, + "label": "HMNR 100/HITO 119", + "title": "Introduction to Human Rights and Global Justice (4)" + }, + { + "dept": "COMM", + "description": "The social, legal, and economic forces affecting the evolution of mass communications institutions and structure in the industrialized world. The character and the dynamics of mass communications in the United States today. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 5539, + "label": "COMM 109E", + "title": "MC: Mass Communication: Political Economy of Mass Communication (4)" + }, + { + "dept": "COMM", + "description": "Advertising in historical and cross-cultural perspectives. Ideology and organization of the advertising industry; meaning of material goods; gifts in capitalist, socialist, and nonindustrial societies; natures of needs, desires, and whether advertising creates needs, desires; and approaches to decoding the advertising messages. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 5540, + "label": "COMM 109D", + "title": "MC: Advertising and Society (4)" + }, + { + "dept": "MGTF", + "description": "Examination of real estate capital markets, both debt and equity. Covered topics include real estate valuation, real options applied to real estate, real estate equity markets, and the place of real estate within a diversified investor\u2019s portfolio. Letter grades only. ", + "edges_from": [ + 4268 + ], + "edges_to": [], + "id": 5541, + "label": "MGTF 408", + "title": "Real Estate Finance (4)" + }, + { + "dept": "MGTF", + "description": "Explains the mergers and acquisitions process. Topics include history, motivation, valuation, legal framework and tax issues of mergers and acquisitions, antitakeover strategies, takeover tactics, leveraged buyouts, joint venture, and strategic alliances. Students may not earn credit for both MGTF 409 and MGT 284. ", + "edges_from": [], + "edges_to": [], + "id": 5542, + "label": "MGTF 409", + "title": "Mergers, Acquisitions, and Corporate Restructuring (4)" + }, + { + "dept": "PHIL", + "description": "Central issues in contemporary philosophy of language, such as the nature of linguistic meaning, truth, content, reference, the syntax and semantics of various linguistic constructions, presupposition, speech acts, the epistemology of language understanding and language learning, the mental/psychological basis of linguistic understanding and use. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5543, + "label": "PHIL 234", + "title": "Philosophy of Language (4)" + }, + { + "dept": "COMM", + "description": "Propaganda, in political-economic, national settings; Soviet Union; Nazi Germany; US World War I and II. Propaganda films, contribution of filmmakers to propaganda campaign. Explore issues in propaganda; persuasive communication; political propaganda; persuasive advertising; public relations; practical, ethical perspectives. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 5544, + "label": "COMM 109P", + "title": "MC: Propaganda and Persuasion (4)" + }, + { + "dept": "PHIL", + "description": "Contemporary debates on the nature, function, and operation of the mental. May include questions about the mind-body relation, mental causation, perception, consciousness, and mental representation. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5545, + "label": "PHIL 236", + "title": "Philosophy of Mind (4)" + }, + { + "dept": "SE", + "description": "Introduction to plate tectonics and seismology. Rupture mechanism, measures of magnitude and intensity, earthquake occurrence and relation to geologic, tectonic processes. Probabilistic seismic hazard analysis. Strong earthquake ground motion; site effects on ground motion; structural response; soil-structure interaction; design criteria; code requirements. Use of computer resources. ", + "edges_from": [ + 1621 + ], + "edges_to": [], + "id": 5546, + "label": "SE 221", + "title": "Earthquake Engineering (4)" + }, + { + "dept": "PHIL", + "description": "Topics may include identity, personal identity, universals and particulars, modality and possible worlds, causation, reduction, supervenience, freedom and determinism, space and time, and realism versus antirealism. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5547, + "label": "PHIL 230", + "title": "Metaphysics (4)" + }, + { + "dept": "PHIL", + "description": "This seminar will cover issues such as rival accounts of knowledge, justification, and warrant, traditional and contemporary perspectives on empiricism, rationalism, and pragmatism, and skepticism. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5548, + "label": "PHIL 232", + "title": "Epistemology (4)" + }, + { + "dept": "MUS", + "description": "Advanced topics in music technology and its application to composition and/or performance. Offerings vary according to faculty availability and interest. May be repeated for credit. ", + "edges_from": [ + 3485 + ], + "edges_to": [], + "id": 5549, + "label": "MUS 267", + "title": "Advanced Music Technology Seminar (4)" + }, + { + "dept": "BENG", + "description": "Quantitative description of physiological systems, e.g., electrical and mechanical properties of muscle (skeletal and cardiac). Modeling and simulation of properties. Kidney, transport, and models. Neural circuits and models. ", + "edges_from": [ + 1672, + 2025, + 2026, + 1669, + 1670 + ], + "edges_to": [], + "id": 5550, + "label": "BENG 189", + "title": "Physiological Systems Engineering (4)" + }, + { + "dept": "PHYS", + "description": "Quantized electromagnetic fields and introductory quantum optics. Symmetry and conservation laws. Introductory many-body physics. Density matrix, quantum coherence and dissipation. The relativistic electron. Three-hour lecture, one-hour discussion session. ", + "edges_from": [ + 198 + ], + "edges_to": [], + "id": 5551, + "label": "PHYS 130C", + "title": "Quantum Physics III (4)" + }, + { + "dept": "VIS", + "description": "Advanced studies in the secular and religious art traditions of China. From year to year, the seminar may focus on early China (Neolithic to the end of the T\u2019ang dynasty), on later dynasties (Sung, Yuan, Ming) or on art of the People\u2019s Republic. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5552, + "label": "VIS 258", + "title": "Seminar in Chinese Art (4)" + }, + { + "dept": "VIS", + "description": "Historical and theoretical problems in the art of Mexico, Central, and South America art from the colonial period to today, as well as from the Hispanic traditions of the American Southwest. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5553, + "label": "VIS 259", + "title": "Seminar in Latin American Art (4)" + }, + { + "dept": "VIS", + "description": "Research seminar in media history, theory, and/or criticism. Potential topics: digital media aesthetics, television or radio, new media, theory of photography and/or other image forms in digital era. Focus on a specific period, theme, or context. Class devoted to discussion of readings in connection with viewing of media and related forms. Students will gain advanced knowledge of a specialized aspect of media history, theory, or criticism in a setting that promotes research, reports, and writing. ", + "edges_from": [ + 1664, + 731, + 2844 + ], + "edges_to": [], + "id": 5554, + "label": "VIS 151A", + "title": "Seminar in Media History and Theory (4)" + }, + { + "dept": "VIS", + "description": "European art from late antiquity through the fourteenth century and the historical processes by which \u201cmedieval\u201d art has been constructed as a category. Topics may include devotional vision and the sacred image; medieval comic genres; neo-medievalism, fifteenth century to today. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5555, + "label": "VIS 251", + "title": "Seminar in Medieval Art (4)" + }, + { + "dept": "VIS", + "description": "Concentrates on the art of the Renaissance in Italy and the North through a changing series of topics, e.g., Vision and Composition in Perspective; The Sistine Chapel; Envisioning Jan Van Eyck; Renaissance Print Making; Leonardo da Vinci\u2019s La Gioconda. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5556, + "label": "VIS 252", + "title": "Seminar in Renaissance Art (4)" + }, + { + "dept": "POLI", + "description": "This course explores the interrelationship of politics and economics in Eastern Europe, analyzing the historic evolution of the area, the socialist period, and contemporary political and economic change there. ", + "edges_from": [], + "edges_to": [], + "id": 5557, + "label": "POLI 126AB", + "title": "Politics and Economics in Eastern Europe (4)" + }, + { + "dept": "VIS", + "description": "Thematic and critical discussions of recent US and international art, 1960s to the present. Art/Text; Mixed Media Practices; Conceptual Art; Art After Appropriation; Global Art at the Millennium; New Genres of Public Art; Mike Kelly and the Conceptual Vernacular: Art and Activism. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5558, + "label": "VIS 255", + "title": "Seminar in Contemporary Art (4)" + }, + { + "dept": "VIS", + "description": "Topics in media (photography, film, video) and new media, contemporary or historical. Coverage may be broad or addressed to a particular topic such as Film Remakes; Silent Cinema; Photography and Social Movements; The Language of New Media. ", + "edges_from": [], + "edges_to": [], + "id": 5559, + "label": "VIS 256", + "title": "Seminar in Media and New Media (4)" + }, + { + "dept": "POLI", + "description": "of Political Economy: Modern Capitalism (4)", + "edges_from": [], + "edges_to": [], + "id": 5560, + "label": "POLI 126AA", + "title": "Fundamentals" + }, + { + "dept": "CSE", + "description": "Study in Computer Science and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 5561, + "label": "CSE 99", + "title": "Independent" + }, + { + "dept": "BENG", + "description": "Mechanical properties of structures involved in movement (muscles, tendons, bones). Models of neuromuscular adaptation to chronic electrical stimulation, voluntary exercise, surgical overload, spinal cord injury, denervation, limb immobilization, exercise-induced injury and muscle regeneration. Stem cells in muscle function and plasticity. ", + "edges_from": [], + "edges_to": [], + "id": 5562, + "label": "BENG 233", + "title": "Neuromuscular Physiology and Biomechanics (4)" + }, + { + "dept": "BENG", + "description": "An overview of the musculoskeletal system from a bioengineering perspective. Health, injury, disease of bone, cartilage, tendon, ligament, meniscus, synovium, intervertebral disc, skeletal muscle, peripheral nerve. Mechanisms and models underlying current and future therapies. ", + "edges_from": [], + "edges_to": [], + "id": 5563, + "label": "BENG 232", + "title": "Musculoskeletal Health, Injury, and Disease (4)" + }, + { + "dept": "BENG", + "description": "This course will introduce quantitative fluorescence microscopy techniques for imaging, manipulating, and quantifying the spatiotemporal characteristics of molecular events in live cells. A laboratory component will be integrated with students organized into small teams for projects. Recommended preparation: basic optics at the level of ECE 181, introductory molecular and cellular biology at the level of BIMM 100 and BICD 110, respectively. ", + "edges_from": [], + "edges_to": [], + "id": 5564, + "label": "BENG 235", + "title": "Molecular Imaging and Quantitation in Living Cells (4)" + }, + { + "dept": "BENG", + "description": "Introduction to molecular and cellular neurobiology and their integration with systems neurophysiology. Homeostasis will be an organizing theme. The material will be presented both qualitatively and quantitatively, emphasizing the mathematical, physical, and chemical foundations and dynamics that underlie neurophysiological functions. ", + "edges_from": [], + "edges_to": [], + "id": 5565, + "label": "BENG 234", + "title": "Intro to Neurophysiology: Molecules to Systems (4)" + }, + { + "dept": "CSE", + "description": "A seminar providing an overview of a topic of current research interest to the instructor. The goal is to present a specialized topic in computer science and engineering students. May be taken for credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5566, + "label": "CSE 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (2)", + "edges_from": [], + "edges_to": [], + "id": 5567, + "label": "CSE 91", + "title": "Perspectives" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 5568, + "label": "Linguistics/Hindi (LIHI) 1AX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120B or after successful completion of Econ 120B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 5569, + "label": "ECON 120BH", + "title": "Honors Econometrics B (1)" + }, + { + "dept": "ECE", + "description": "Study of wireless networked systems from a system design perspective, covering the protocol stack from physical to network layer with a focus on energy. Topics include digital communications, networking and programming, and a basic knowledge of these is recommended. ", + "edges_from": [], + "edges_to": [], + "id": 5570, + "label": "ECE 267", + "title": "Wireless Embedded and Networked Systems (4)" + }, + { + "dept": "ECE", + "description": "The course gives an overview of areas of security and protection of modern hardware, embedded systems, and IoTs. Covers essential cryptographic methodologies and blocks required for building a secure system. Topics include low overhead security, physical and side-channel attacks, physical security primitives, physical security and proofs of presence, hardware-based secure program execution, scalable implementation of secure functions, emerging technologies, and rising threats. Recommended preparation: Programming in a standard programming language. Undergraduate level knowledge of the IC design flow and digital designs.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5571, + "label": "ECE 268", + "title": "Security of Hardware Embedded Systems (4)" + }, + { + "dept": "Linguistics/German", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in German. Must be taken in conjunction with LIGM 1D. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 4880, + 4881 + ], + "edges_to": [], + "id": 5572, + "label": "Linguistics/German (LIGM) 1DX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "ECE", + "description": "Thermally activated processes. Boltzman factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick\u2019s law, diffusion mechanisms, Kirkendall effects, Boltzmann-Manato analysis, high diffusivity paths. Cross-listed with Materials Science 201B and MAE 271B. ", + "edges_from": [ + 5574 + ], + "edges_to": [], + "id": 5573, + "label": "ECE 238B", + "title": "Solid State Diffusion and Reaction Kinetics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 5573 + ], + "id": 5574, + "label": "ECE 238A", + "title": "" + }, + { + "dept": "TDGE", + "description": "Theatre and Film analyzes the essential differences between theatrical and cinematic approaches to drama. Through selected play/film combinations, the course looks at how the director uses actors and the visual languages of the stage and screen to guide and stimulate the audience\u2019s responses. ", + "edges_from": [], + "edges_to": [], + "id": 5575, + "label": "TDGE 10", + "title": "Theatre and Film (4)" + }, + { + "dept": "TDGE", + "description": "Course examines major accomplishments in screen acting from the work of actors in films or in film genres. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5576, + "label": "TDGE 11", + "title": "Great Performances on Film (4)" + }, + { + "dept": "TDGE", + "description": "This course explores filmed representations of race and diversity and examines works by underrepresented filmmakers. Course topics vary; they include African American film, Latino/a film, Asian American film, films by Spike Lee, stereotypes on film, and other such topics. Students may not enroll in the same topic of TDGE 12 that they have already taken in TDGE 11, Great Performances on Film. This will count as a duplicate of credit for repeating the same film topic. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5577, + "label": "TDGE 12", + "title": "Topics in Cinema and Race (4)" + }, + { + "dept": "MGT", + "description": "Principles and decisions to be considered in overall communications and promotion strategy for traditional channels and emerging social networks. Decisions on promotional mix, ad design, implementation and evaluation for establishing brand equity, measure brand performance and sustaining brand equity. ", + "edges_from": [ + 1004 + ], + "edges_to": [], + "id": 5578, + "label": "MGT 105", + "title": "Product Promotion and Brand Management (4)" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of selected empirical and theoretical topics in social psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5579, + "label": "PSYC 276", + "title": "Selected Topics in Social Psychology (4)" + }, + { + "dept": "HIEU", + "description": "The political, economic, and intellectual history of the Roman world from the foundation of Rome to the disintegration of the Western empire. This course will emphasize the importance of the political and cultural contributions of Rome to modern society. +", + "edges_from": [], + "edges_to": [], + "id": 5580, + "label": "HIEU 102A", + "title": "Ancient Roman Civilization (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in bioinstrumentation. ", + "edges_from": [ + 66 + ], + "edges_to": [ + 5582 + ], + "id": 5581, + "label": "BENG 179A", + "title": "Design Development in Bioinstrumentation (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in bioinstrumentation. ", + "edges_from": [ + 68, + 5581 + ], + "edges_to": [ + 68 + ], + "id": 5582, + "label": "BENG 179B", + "title": "Design Implementation in Bioinstrumentation (3)" + }, + { + "dept": "BILD", + "description": "Course will focus on issues such as global warming, species extinction, and human impact on the oceans and forests. History and scientific projections will be examined in relation to these events. Possible solutions to these worldwide processes and a critical assessment of their causes and consequences will be covered.", + "edges_from": [], + "edges_to": [], + "id": 5583, + "label": "BILD 18", + "title": "Human Impact on the Environment (4)" + }, + { + "dept": "LTCS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 5584, + "label": "LTCS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "HILA", + "description": "Recordings of Amazonia\u2019s past before Iberian adventurers searched for El Dorado are scarce. Environmental significance and the continued existence of large fluvial societies, read through the lenses of chroniclers, scientists, missionaries, and colonizers, allows a reconstruction of humankind\u2019s relationship to nature.", + "edges_from": [], + "edges_to": [], + "id": 5585, + "label": "HILA 145", + "title": "People and Nature in Amazonia: An Unwritten History (4)" + }, + { + "dept": "POLI", + "description": "A consideration of the nature of public opinion and voting in American government. Studies of voting behavior are examined from the viewpoints of both citizens and candidates, and attention is devoted to recent efforts to develop models of electoral behavior for the study of campaigns. The role of mass media and money also will be examined.", + "edges_from": [], + "edges_to": [], + "id": 5586, + "label": "POLI 100DA", + "title": "Voting, Campaigning, and Elections (4)" + }, + { + "dept": "BILD", + "description": "Concepts of Modern Biology (4)", + "edges_from": [], + "edges_to": [], + "id": 5587, + "label": "BILD 10", + "title": "Fundamental" + }, + { + "dept": "RELI", + "description": "This course explores intersections between religious discourse and ecological discourse by considering texts from both that treat the human world as irreducibly interconnected with more-than-human worlds of nature and \"spirit.\" Themes include the ambivalence of wildness; the critique of anthropocentrism (human-centeredness); and the question of how religious emphasis on \"knowing (one\u2019s) place\" can create a sense of either human exceptionality, above nature, or embeddedness, within nature. ", + "edges_from": [], + "edges_to": [], + "id": 5588, + "label": "RELI 151", + "title": "Deep Ecology: Knowing Place (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in Byzantine history. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 5589, + "label": "HIEU 162/262", + "title": "Topics in Byzantine History (4)" + }, + { + "dept": "LTEA", + "description": "and Sexuality in Korean Literature and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 5590, + "label": "LTEA 143", + "title": "Gender" + }, + { + "dept": "LTEA", + "description": "Film, Literature, and Popular Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 5591, + "label": "LTEA 142", + "title": "Korean" + }, + { + "dept": "LTEA", + "description": "A survey of modern Korean prose fiction and poetry from 1945 to the 1990s. Examination of literary representations of national division, the Korean War, accelerated industrialization, authoritarian rule, and the labor/agrarian movements.", + "edges_from": [], + "edges_to": [], + "id": 5592, + "label": "LTEA 141", + "title": "Modern Korean Literature in Translation from 1945 to Present (4)" + }, + { + "dept": "LTEA", + "description": "Korean Literature in Translation from Colonial Period (4)", + "edges_from": [], + "edges_to": [], + "id": 5593, + "label": "LTEA 140", + "title": "Modern" + }, + { + "dept": "HISC", + "description": "Why have women been traditionally excluded from science? How has this affected scientific knowledge? How have scientists constructed gendered representations not only of women, but also of science and nature? We will address these questions from perspectives including history, philosophy, and psychoanalytic theory. ", + "edges_from": [], + "edges_to": [], + "id": 5594, + "label": "HISC 167/267", + "title": "Gender and Science (4)" + }, + { + "dept": "LTEA", + "description": "American Literature and Other Literatures of Korean Diaspora (4)", + "edges_from": [], + "edges_to": [], + "id": 5595, + "label": "LTEA 144", + "title": "Korean" + }, + { + "dept": "LTCS", + "description": "A reading of recent theory on popular culture and a study of particular texts dealing with popular cultural practices, both contemporary and noncontemporary, as sites of conflict and struggle. LTCS 110 and LTCS 110GS may be taken for credit for a combined total of three times.", + "edges_from": [], + "edges_to": [], + "id": 5596, + "label": "LTCS 110", + "title": "Popular Culture (4)" + }, + { + "dept": "LTCS", + "description": "Topics in Popular Culture in Historical Context (4)", + "edges_from": [], + "edges_to": [], + "id": 5597, + "label": "LTCS 111", + "title": "Special" + }, + { + "dept": "HITO", + "description": "Study on History Topics (1, 2, 3, 4)", + "edges_from": [], + "edges_to": [], + "id": 5598, + "label": "HITO 99", + "title": "Independent" + }, + { + "dept": "FPM", + "description": "Course will include a discussion of intervention goals suggested by major theories of health behavior change.\u00a0Common communication modes and messages will be studied, including examples using small group settings, mass media, legislation, and telephone counseling. ", + "edges_from": [], + "edges_to": [], + "id": 5599, + "label": "FPM 276", + "title": "Health Behavior Interventions I (4)" + }, + { + "dept": "TDMV", + "description": "To develop an appreciation and understanding of the dances from various Asian cultures. Emphasis on learning the basic forms and movement vocabularies, their historical context, and the use of each dance as a means of cultural and artistic expression. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [ + 5604 + ], + "id": 5600, + "label": "TDMV 144", + "title": "Asian Dance (4)" + }, + { + "dept": "TDMV", + "description": "To develop an appreciation and understanding of the various Latin dances. Emphasis on learning intermediate social dance movement vocabulary, history of Latin cultures, and use of each dance as a means of social and economic expression. May be taken for credit two times. ", + "edges_from": [ + 5602 + ], + "edges_to": [], + "id": 5601, + "label": "TDMV 146", + "title": "Intermediate Latin Dances of the World (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 5601, + 5604 + ], + "id": 5602, + "label": "TDMV 142", + "title": "" + }, + { + "dept": "TDMV", + "description": "Courses designed for the in-depth study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5603, + "label": "TDMV 140", + "title": "Beginning Dances of the World (4)" + }, + { + "dept": "TDMV", + "description": "Courses designed for the advanced continuing study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. ", + "edges_from": [ + 5600, + 5602, + 5605, + 5606, + 5607 + ], + "edges_to": [], + "id": 5604, + "label": "TDMV 141", + "title": "Advanced Dances of the World (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 5604 + ], + "id": 5605, + "label": "TDMV 143", + "title": "" + }, + { + "dept": "THDA", + "description": "", + "edges_from": [], + "edges_to": [ + 5604 + ], + "id": 5606, + "label": "THDA 132", + "title": "" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 5604 + ], + "id": 5607, + "label": "TDMV 136", + "title": "" + }, + { + "dept": "MGTA", + "description": "Project-based course, in which students apply knowledge and methods acquired in their course work to a specific business analytics problem faced by a company. This is a continuation of MGTA 454A. Class meetings will be scheduled where teams will present their interim and final analysis results and outline how the partner company could use the project outcomes (e.g., a decision support tool) in decision-making. This course is part of a course series. Final grade will apply after the completion of MGTA 454B. Students may not receive credit for both MGTA454 and MGTA 454A or MGTA 454B. ", + "edges_from": [ + 5609 + ], + "edges_to": [], + "id": 5608, + "label": "MGTA 454B", + "title": "Business Analytics Capstone Project II (2)" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [ + 5608 + ], + "id": 5609, + "label": "MGTA 454A", + "title": "" + }, + { + "dept": "TDMV", + "description": "This course is designed to build on the skills developed in TDMV 138, Hip-Hop, also deepening students\u2019 understanding of the social, political, and economic forces at work within hip-hop culture. More complex rhythms and sequencing will be introduced, and musicality will be honed through an added emphasis on freestyle expression. May be taken for credit four times. ", + "edges_from": [ + 5392 + ], + "edges_to": [], + "id": 5610, + "label": "TDMV 148", + "title": "Intermediate Hip-Hop (4)" + }, + { + "dept": "TDMV", + "description": "Develops hip-hop skills at the advanced level with further studies of the social, political, and economic forces at work within hip-hop culture. Emphasis is on complex rhythms and sequencing, freestyle expression, choreography, and performance. May be taken for credit six times. ", + "edges_from": [ + 5392 + ], + "edges_to": [], + "id": 5611, + "label": "TDMV 149", + "title": "Advanced Hip-Hop (4)" + }, + { + "dept": "GPPS", + "description": "This course uses major banking, debt, and currency crises as lenses for focusing on the governance of international monetary and financial relations. It traces regional and global exchange regimes and cross-border financial flows beginning with the gold standard and Great Depression through the rise of regional currency blocs, the Euro, and the role of \"reserve currencies.\" The course concludes by investigating the politics and distributional consequences of banking and financial regulation. Renumbered from IRGN 402. Students may not receive credit for IRGN 402 and GPPS 402.", + "edges_from": [], + "edges_to": [], + "id": 5612, + "label": "GPPS 402", + "title": "International Political Economy: Money and Finance (4)" + }, + { + "dept": "GPPS", + "description": "This course examines China\u2019s efforts to become a world-class technological and military power, focusing on the technological foundations of its security as it relates to long-term economic and strategic competitiveness and the sources of its growing technological innovation. Topics will include: Imperial and Maoist legacies; political economy of security and technology; ideologies and organizing strategies that China employs in moving up the innovation ladder; and others. Renumbered from IRGN 403. Students may not receive credit for IRGN 403 and GPPS 403.", + "edges_from": [], + "edges_to": [], + "id": 5613, + "label": "GPPS 403", + "title": "Chinese Security, Technology, and Innovation (4)" + }, + { + "dept": "GPPS", + "description": "International relations and developing international political economies of nations bordering the Pacific. Topics include: the \u201cPacific Basin\u201d concept; the United States and \u201chegemonic-stability\u201d theory; legacies of the Korean War and Sino-Soviet dispute; immigration patterns and their consequences; and Japan\u2019s foreign policy. Renumbered from IRGN 400. Students may not receive credit for GPPS 400 and IRGN 400.", + "edges_from": [], + "edges_to": [], + "id": 5614, + "label": "GPPS 400", + "title": "International Relations of Asia-Pacific (4)" + }, + { + "dept": "GPPS", + "description": "Post-2003 civil wars are different from previous ones in striking ways. First, the majority are situated in Muslim-majority countries. Second, most of the rebel groups espouse radical Islamist ideas. Third, of these groups, most are pursuing transnational rather than national goals. Current theory explains a great deal, but not everything. For example, it does not account for information and communication technology. These innovations are critical to understanding the new civil wars. Renumbered from IRGN 401. Students may not receive credit for GPPS 401 and IRGN 401.", + "edges_from": [], + "edges_to": [], + "id": 5615, + "label": "GPPS 401", + "title": "The New \u201cNew\u201d Civil Wars (4)" + }, + { + "dept": "GPPS", + "description": "China\u2019s role in the global economy and its implications for regimes of global governance. Topics include trade, lending, investments, the globalization of state-owned enterprises, currency internationalization, participation in regional and international organizations, and China\u2019s economic diplomacy and foreign policy. We will ask whether China contributes to or threatens the liberal economic order; what governments and policy actors can do to engage China in a productive and peaceful fashion. Students may not receive credit for GPPS 406 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 5616, + "label": "GPPS 406", + "title": "China in the Global Economic Order (4)" + }, + { + "dept": "GPPS", + "description": "This course examines the nature, evolution, dynamics, and key elements of China\u2019s approach and engagement with the international system, especially in the twenty-first century, with a focus on national security and defense. Topics include: understanding the structure and process of Chinese decision making; the nature of Chinese policies and strategies; the evolution of Chinese military power; the rise of the Chinese national security state; Chinese grand strategy, and US-China relations. May not receive credit for GPPS 407 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 5617, + "label": "GPPS 407", + "title": "The International Relations and National Security of China (4)" + }, + { + "dept": "GPPS", + "description": "This course will analyze post-1949 Chinese politics, including political institutions, the policy making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 404. Students may not receive credit for IRGN 404 and GPPS 404.", + "edges_from": [], + "edges_to": [], + "id": 5618, + "label": "GPPS 404", + "title": "Chinese Politics (4)" + }, + { + "dept": "GPPS", + "description": "Can the United States and China manage to develop a constructive relationship or are they headed toward a hostile relationship? This course addresses this question by examining the domestic and international influences on the foreign policies of both countries and key issues in the bilateral relationship. Students also do policy projects. Renumbered from IRGN 405. Students may not receive credit for IRGN 405 and GPPS 405.", + "edges_from": [], + "edges_to": [], + "id": 5619, + "label": "GPPS 405", + "title": "US-China Relations (4)" + }, + { + "dept": "GPPS", + "description": "This course will consider major security issues on the Korean peninsula, including the evolution of the US-South Korea alliance and the management of the current nuclear crisis. A distinctive feature of the course will be a consideration of the political economy of recent developments on the peninsula, particularly with respect to North Korea, and an extended discussion of the logic and strategy of engagement. Renumbered from IRGN 408. Students may not receive credit for IRGN 408 and GPPS 408.", + "edges_from": [], + "edges_to": [], + "id": 5620, + "label": "GPPS 408", + "title": "Korean Security (4)" + }, + { + "dept": "TDGR", + "description": "A daily program of physical, vocal, and speech exercises designed to prepare the student to move in a focused way into specific class areas with minimum amount of warm-up time. The exercises work on development of flexibility, strength, and coordination throughout the body. Strong emphasis is placed on physical and mental centering within a structured and disciplined approach to preparation. ", + "edges_from": [], + "edges_to": [], + "id": 5621, + "label": "TDGR 200", + "title": "Dynamics (1)" + }, + { + "dept": "LTEA", + "description": "An examination of representative works of different film genres from Hong Kong. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5622, + "label": "LTEA 120C", + "title": "Hong Kong Films (4)" + }, + { + "dept": "LTEA", + "description": "A survey of representative films from different periods of Chinese cinematic development. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5623, + "label": "LTEA 120A", + "title": "Chinese Films (4)" + }, + { + "dept": "HIEU", + "description": "A lecture-discussion course that examines the role of Scotland in the English Civil War during the first half of the seventeenth century, 1601\u20131689.", + "edges_from": [], + "edges_to": [], + "id": 5624, + "label": "HIEU 121GS", + "title": "Scotland and the English Civil War, 1601\u20131689 (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5625, + "label": "LTEN 158", + "title": "Modern American Literature (4)" + }, + { + "dept": "CSE", + "description": "Discussion on problems of current research", + "edges_from": [], + "edges_to": [], + "id": 5626, + "label": "CSE 239A", + "title": "Topics/Seminar in Databases (1\u20134)" + }, + { + "dept": "POLI", + "description": "Introduction to the logic of inference in social science and to quantitative analysis in political science and public policy including research design, data collection, data description and computer graphics, and the logic of statistical inference (including linear regression). POLI 30 is Lecture only, and POLI 30D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 30 and 30D.", + "edges_from": [], + "edges_to": [], + "id": 5627, + "label": "POLI 30 or 30D", + "title": "Political Inquiry (4)" + }, + { + "dept": "CSE", + "description": "Introduction to concepts, principles, and practice of computer communication networks with examples from existing architectures, protocols, and standards with special emphasis on the Internet protocols. Layering and the OSI model; physical and data link layers; local and wide area networks; datagrams and virtual circuits; routing and congestion control; internetworking. Transport protocols. Credit may not be received for both CSE 123 and ECE 158A. ", + "edges_from": [ + 280, + 11, + 1183 + ], + "edges_to": [ + 5629 + ], + "id": 5628, + "label": "CSE 123", + "title": "Computer Networks (4)" + }, + { + "dept": "CSE", + "description": "Topics include basic cryptography, security/threat analysis, access control, auditing, security models, distributed systems security, and theory behind common attack and defense techniques. The class will go over formal models as well as the bits and bytes of security exploits. ", + "edges_from": [ + 3200, + 2, + 12, + 15, + 5628, + 5630 + ], + "edges_to": [], + "id": 5629, + "label": "CSE 127", + "title": "Introduction to Computer Security (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 280, + 11, + 1183 + ], + "edges_to": [ + 5629 + ], + "id": 5630, + "label": "CSE 124", + "title": "" + }, + { + "dept": "CSE", + "description": "System Design and Implementation (4)", + "edges_from": [], + "edges_to": [], + "id": 5631, + "label": "CSE 125", + "title": "Software" + }, + { + "dept": "NANO", + "description": "Introduction to NanoEngineering lab-based skills. Hands-on training and experimentation with nanofabrication techniques, integration, and analytical tools. This class is for NANO majors who are incoming freshmen, to be taken their first year.\u00a0This class is for NanoEngineering majors who are incoming freshmen, to be taken their first year. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5632, + "label": "NANO 4", + "title": "Experience\u00a0NanoEngineering\u00a0(1)" + }, + { + "dept": "PHYS", + "description": "Weak interactions; neutrino physics; C,P,", + "edges_from": [], + "edges_to": [], + "id": 5633, + "label": "PHYS 222A", + "title": "Elementary Particle Physics (4)" + }, + { + "dept": "HILA", + "description": "This course will focus on several instances of US aggression in Latin America since 1898, covering military invasions, covert actions, and economic forms of coercion. Specific case studies will include events in Mexico in 1914, Cuba in 1933 and 1959\u20131962, Guatemala in 1954, and Chile in 1973.", + "edges_from": [], + "edges_to": [], + "id": 5634, + "label": "HILA 118", + "title": "Subverting Sovereignty: US Aggression in Latin America, 1898\u2013Present (4)" + }, + { + "dept": "MAE", + "description": "Propagation and absorption of laser beam in plasma, ablation pressure. Laser scattering and laser-plasma instabilities (stimulated Raman and Brillouin scattering, filamentation and decay instabilities). Electron heat transport, mechanisms of magnetic field generation. ", + "edges_from": [ + 3116 + ], + "edges_to": [], + "id": 5635, + "label": "MAE 218B", + "title": "Introduction to High Energy Density Physics (Laser-Plasma Interactions) (4)" + }, + { + "dept": "MAE", + "description": "to High Energy Density Physics (MHD and Pinches) (4)", + "edges_from": [], + "edges_to": [], + "id": 5636, + "label": "MAE 218A", + "title": "Introduction" + }, + { + "dept": "HILA", + "description": "Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.", + "edges_from": [], + "edges_to": [], + "id": 5637, + "label": "HILA 110", + "title": "Lord and Peasant in Latin America (4)" + }, + { + "dept": "HILA", + "description": "The development of family structures and relations among different ethnic groups. State and economy define and are defined by family relations. Thus this family approach also provides an understanding to broader socioeconomic processes and cultural issues.", + "edges_from": [], + "edges_to": [], + "id": 5638, + "label": "HILA 117", + "title": "Indians, Blacks, and Whites: Family Relations in Latin America (4)" + }, + { + "dept": "HILA", + "description": "How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.", + "edges_from": [], + "edges_to": [], + "id": 5639, + "label": "HILA 114", + "title": "Dictatorships in Latin America (4)" + }, + { + "dept": "HILA", + "description": "A survey of the development of urban forms of Latin America and of the role that cities played in the region as administrative and economic centers. After a brief survey of pre-Columbian centers, the lectures will trace the development of cities as outposts of the Iberian empires and as \u201ccity-states\u201d that formed the nuclei of new nations after 1810. The course concentrates primarily on the cities of South America, but some references will be made to Mexico City. It ends with a discussion of modern social ills and Third World urbanization. Lima, Santiago de Chile, Buenos Aires, Rio de Janeiro, and Sao Paulo are its principal examples.", + "edges_from": [], + "edges_to": [], + "id": 5640, + "label": "HILA 115", + "title": "The Latin American City, a History (4)" + }, + { + "dept": "SE", + "description": "Techniques of computation with the finite element method. Preprocessing (geometry, mesh generation, boundary conditions), solution methods (statics including contact, dynamics, buckling), and postprocessing (visualization, error estimation, interpretation of results). Hands-on exercises with commercial and open-source software. Use of computer resources. ", + "edges_from": [ + 2344, + 2210, + 2347, + 2348 + ], + "edges_to": [], + "id": 5641, + "label": "SE 280", + "title": "Finite Element Computations in Solid Mechanics (4)" + }, + { + "dept": "GPGN", + "description": "Independent research that draws on an internship with an organization relevant to career track and/or regional specialization. Nature of the required product to be determined by professor supervising the course. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5642, + "label": "GPGN 497", + "title": "Internship (2)" + }, + { + "dept": "GPGN", + "description": "Independent research that draws on a substantive internship with an organization relevant to a student\u2019s career interests. The nature of the final project will be determined prior to assuming the internship and in consultation with the supervising professor. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5643, + "label": "GPGN 496", + "title": "Washington Quarter Internship (4)" + }, + { + "dept": "GPGN", + "description": "A seminar course at an advanced level on a special topic. These seminars are intended to cross disciplines and to be co-taught by GPS faculty and faculty from other departments or programs.", + "edges_from": [], + "edges_to": [], + "id": 5644, + "label": "GPGN 491", + "title": "Cross-Disciplinary Special Topics (4)" + }, + { + "dept": "GPGN", + "description": "A seminar course at an advanced level on a special topic in Pacific international affairs. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5645, + "label": "GPGN 490", + "title": "Special Topics in Pacific International Affairs (4)" + }, + { + "dept": "GPGN", + "description": "An Excel skills course tailored specifically to GPS classes and applicable to accounting, QM, finance, and second-year courses such as corporate finance, investments, applied financial management, and strategy and negotiation, among others. The course is also designed to help prepare students for the professional world by training in critical job skills competencies in Excel. (S/U grades only.) Department approval required. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 493. Students may not get credit for GPGN 493 and IRGN 493.", + "edges_from": [], + "edges_to": [], + "id": 5646, + "label": "GPGN 493", + "title": "Excel Skills for Professional Proficiency (2)" + }, + { + "dept": "GPGN", + "description": "Independent research under the guidance of a faculty member of GPS. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5647, + "label": "GPGN 499", + "title": "Independent Research (2\u201312)" + }, + { + "dept": "GPGN", + "description": "Directed reading in a selected area. The content of each course is to be decided by the professor directing the course with the approval of the student\u2019s faculty adviser. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5648, + "label": "GPGN 498", + "title": "Directed Group Study (2)" + }, + { + "dept": "WCWP", + "description": "An upper-division workshop course in argumentation and research with particular attention to analyzing and constructing academic arguments. A course specially designed for and required of transfer students who enter Warren College through the TAG, IGETC, or another articulation agreement. The course must be taken for a letter grade to fulfill this requirement. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5649, + "label": "WCWP 100", + "title": "Academic Writing (4)" + }, + { + "dept": "ERC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5650, + "label": "ERC 1", + "title": "First Year Experience (2)" + }, + { + "dept": "HIUS", + "description": "This seminar will examine racial formation in relation to US wars in American history. Topics include \u201cmanifest destiny\u201d and the frontier; radicalism and the \u201cRed Scare\u201d; the border patrol; civil rights movements; the \u201cwar on drugs\u201d and mass incarceration. ", + "edges_from": [], + "edges_to": [], + "id": 5651, + "label": "HIUS 174", + "title": "Race Wars in American Culture (4)" + }, + { + "dept": "HIUS", + "description": "This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.", + "edges_from": [], + "edges_to": [], + "id": 5652, + "label": "HIUS 177", + "title": "Asian American Historiography (4)" + }, + { + "dept": "ECON", + "description": "(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5653, + "label": "ECON 299", + "title": "Research in Economics for Dissertation (1\u20139)" + }, + { + "dept": "PSYC", + "description": "Teaching practicum for students enrolled in graduate program in psychology. Students who hold appointments as teaching assistants must enroll in this course. Minimum program requirement is for one four-unit course per year for four years. S/U grades only.", + "edges_from": [], + "edges_to": [], + "id": 5654, + "label": "PSYC 500", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "ECON", + "description": "Controlled reading and discussion with adviser; literature survey. May be repeated for credit. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5655, + "label": "ECON 291", + "title": "Advanced Field Advising (4)" + }, + { + "dept": "POLI", + "description": "This course provides an overview of previous and current efforts to explain political and economic development in non-Western settings.", + "edges_from": [], + "edges_to": [], + "id": 5656, + "label": "POLI 231E", + "title": "Politics of Development (4)" + }, + { + "dept": "ECON", + "description": "(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5657, + "label": "ECON 297", + "title": "Independent Study (1\u20135)" + }, + { + "dept": "MAE", + "description": "Element Methods in Solid Mechanics III (4)", + "edges_from": [], + "edges_to": [], + "id": 5658, + "label": "MAE 232C", + "title": "Finite" + }, + { + "dept": "LTCS", + "description": "Research toward the dissertation. Open only to PhD students who have advanced to candidacy. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5659, + "label": "LTCS 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "LTCS", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5660, + "label": "LTCS 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "VIS", + "description": "Continuation of VIS 160A or MUS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: VIS 160B, MUS 160B, or ICAM 160B. ", + "edges_from": [ + 1910, + 3422 + ], + "edges_to": [], + "id": 5661, + "label": "VIS 160B", + "title": "Senior Project in Computing Arts II (4)" + }, + { + "dept": "POLI", + "description": "Comparative analysis of attempts by the United States and other industrialized countries to initiate, regulate and reduce immigration from Third World countries. Social and economic factors shaping outcomes of immigration policies, public opinion toward immigrants, anti-immigration movements, and immigration policy reform options in industrialized countries. ", + "edges_from": [], + "edges_to": [], + "id": 5662, + "label": "POLI 150A", + "title": "Politics of Immigration (4)" + }, + { + "dept": "LTWR", + "description": "Research for master\u2019s thesis. Offered for repeated registration. Open only to MFA students. ", + "edges_from": [], + "edges_to": [], + "id": 5663, + "label": "LTWR 295", + "title": "MFA Thesis (1\u201312)" + }, + { + "dept": "CHEM", + "description": "The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field, starting from basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. May be coscheduled with CHEM 242. CHEM 40C and at least one course in either general biology, molecular biology, or cell biology is strongly encouraged. ", + "edges_from": [ + 1761, + 2562, + 458, + 952, + 954, + 410, + 959 + ], + "edges_to": [], + "id": 5664, + "label": "CHEM 142", + "title": "Introduction to Glycosciences (4)" + }, + { + "dept": "NEU", + "description": "Neurosciences group faculty members and graduate students will present and discuss ongoing research. Attendance will be mandatory for first- and second-year graduate students. Faculty, advanced graduate students, medical students, postdoctoral trainees, and other interested parties are encouraged to attend. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 5665, + "label": "NEU 276", + "title": "Neuroscience Research Rounds (1)" + }, + { + "dept": "CHEM", + "description": "Methodology of mechanistic organic chemistry; integration of rate expression, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. May be coscheduled with CHEM 246. ", + "edges_from": [ + 1552, + 1553, + 1554, + 1555 + ], + "edges_to": [], + "id": 5666, + "label": "CHEM 146", + "title": "Kinetics and Mechanism of Organic Reactions (4)" + }, + { + "dept": "CHEM", + "description": "Fundamentals of the chemistry and biochemistry of petroleum and biofuel technologies. This course explores chemical identity and properties, metabolic pathways and engineering, refining processes, and analytical techniques related to current and future biofuels. ", + "edges_from": [ + 1552, + 1553, + 1554, + 1555 + ], + "edges_to": [], + "id": 5667, + "label": "CHEM 145", + "title": "Chemistry and Biochemistry of Biofuels (4)" + }, + { + "dept": "HIEA", + "description": "and Cultural History of Twentieth-Century Japan (4)", + "edges_from": [], + "edges_to": [], + "id": 5668, + "label": "HIEA 115", + "title": "Social" + }, + { + "dept": "HIEA", + "description": "Examines social, cultural, political, and economic transformations and continuities in Japan since World War II. Emphases will differ by instructor.", + "edges_from": [], + "edges_to": [], + "id": 5669, + "label": "HIEA 114", + "title": "Postwar Japan (4)" + }, + { + "dept": "HIEA", + "description": "By examining the roles of ghosts in Japanese belief systems in a nonscientific age, this course addresses topics including folk beliefs and ghost stories, religiosity, early science, tools of amelioration and authoritative knowledge, and the relationship between myth and history.", + "edges_from": [], + "edges_to": [], + "id": 5670, + "label": "HIEA 117", + "title": "Ghosts in Japan (4)" + }, + { + "dept": "HIEA", + "description": "Survey of relations between Japan and the United States in the nineteenth and twentieth centuries. Although the focus will be on these nation-states, the course will be framed within the global transformation of societies. Topics include cultural frameworks, political and economic changes, colonialism and imperialism, and migration.", + "edges_from": [], + "edges_to": [], + "id": 5671, + "label": "HIEA 116", + "title": "Japan-U.S. Relations (4)" + }, + { + "dept": "HIEA", + "description": "Twelfth to Mid-Nineteenth Centuries (4)", + "edges_from": [], + "edges_to": [], + "id": 5672, + "label": "HIEA 111", + "title": "Japan:" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Argentine, Paraguayan, Uruguayan, and Chilean literatures, such as gaucho poetry, the realist novel, modern urban narratives, and the Borges School, etc. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 5673, + "label": "LTSP 134", + "title": "Literature of the Southern Cone (4)" + }, + { + "dept": "HIEA", + "description": "Fifteen-Year War in Asia and the Pacific (4)", + "edges_from": [], + "edges_to": [], + "id": 5674, + "label": "HIEA 113", + "title": "The" + }, + { + "dept": "HIEA", + "description": "From the Mid-Nineteenth Century through the US Occupation (4)", + "edges_from": [], + "edges_to": [], + "id": 5675, + "label": "HIEA 112", + "title": "Japan:" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in the literatures of Guatemala, El Salvador, Nicaragua, Honduras, Costa Rica, and Panama, such as the anti-imperialist novel, indigenismo, guerrilla poetry, and testimonio. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 5676, + "label": "LTSP 138", + "title": "Central American Literature (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2310 + ], + "id": 5677, + "label": "EDS 361A", + "title": "" + }, + { + "dept": "SOCI", + "description": "The class will first examine the direct social effects of the \u201cgenetic revolution\u201d: eugenics, genetic discrimination, and stratification. Second, the implications of thinking of society in terms of genetics, specifically\u2014sociobiology, social Darwinism, evolutionary psychology, and biology. ", + "edges_from": [ + 5678, + 5679 + ], + "edges_to": [ + 5678 + ], + "id": 5678, + "label": "SOCI 138", + "title": "Genetics and Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5678 + ], + "id": 5679, + "label": "SOCC 138", + "title": "" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 2240 + ], + "id": 5680, + "label": "SOCC 139", + "title": "" + }, + { + "dept": "SOCI", + "description": "Topics include food as a marker of social", + "edges_from": [], + "edges_to": [], + "id": 5681, + "label": "SOCI 137", + "title": "Sociology of Food (4)" + }, + { + "dept": "SOCI", + "description": "A study of the social, intellectual, and institutional aspects of the nineteenth-century transformation of clinical medicine, examining both the changing content of medical knowledge and therapeutics, and the organization of the medical profession. ", + "edges_from": [ + 5682, + 5683 + ], + "edges_to": [ + 5682 + ], + "id": 5682, + "label": "SOCI 134", + "title": "The Making of Modern Medicine (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5682 + ], + "id": 5683, + "label": "SOCC 134A", + "title": "" + }, + { + "dept": "COMM", + "description": "How do political contests and debates come to be organized on and around bodies? In what sense is the natural body a sign system and how does its organization represent and reproduce cultural values, moral assumptions, social relations, and economic rationales? This course examines these and other questions through political, historical, and media analysis. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 5684, + "label": "COMM 108A", + "title": "POB: Introduction (4)" + }, + { + "dept": "SOCI", + "description": "Sociology of Mental Illness: A Historical Approach (4)", + "edges_from": [], + "edges_to": [], + "id": 5685, + "label": "SOCI 136E", + "title": "" + }, + { + "dept": "SOCI", + "description": "in Comparative Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 5686, + "label": "SOCI 133", + "title": "Immigration" + }, + { + "dept": "COMM", + "description": "Cultural and historical ways of defining and understanding disability relative to communication and assistive technologies, including the impact of digital technologies and the Americans with Disabilities Act. Course use of audiovisual texts and writings from fields including science and technology studies, and cultural studies. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 5687, + "label": "COMM 108D", + "title": "POB: Disability (4)" + }, + { + "dept": "SOCI", + "description": "This course will focus on recent developments in the mental illness sector and on the contemporary sociological literature on mental illness. Developments in England as well as the United States will be examined. ", + "edges_from": [ + 5688, + 5689 + ], + "edges_to": [ + 5688 + ], + "id": 5688, + "label": "SOCI 136F", + "title": "Sociology of Mental Illness in Contemporary Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5688 + ], + "id": 5689, + "label": "SOCC 136B", + "title": "" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of international relations. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 5690, + "label": "POLI 154", + "title": "Special Topics in International Relations (4)" + }, + { + "dept": "LTWL", + "description": "A study of folk and fairy tales from various cultures, from the point of view of literary form, psychological meaning, and cultural function. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5691, + "label": "LTWL 110B", + "title": "Folk and Fairy Tales (4)" + }, + { + "dept": "COGR", + "description": "The study and analysis of specific topics to be developed by a small group of graduate students under the guidance of an interested faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5692, + "label": "COGR 298", + "title": "Directed Group Study (1\u201312)" + }, + { + "dept": "COGR", + "description": "Advanced independent study in communication under the guidance of Department of Communication faculty.", + "edges_from": [], + "edges_to": [], + "id": 5693, + "label": "COGR 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "LIGN", + "description": "Probabilistic approaches to language knowledge, acquisition, and use. Quantitative analysis of linguistic data. Quantitative models in linguistic theory. Covers basic probability theory and tools of statistical analysis for language, including linear regression, ANOVA, generalized linear models (e.g., logistic regression), data visualization. Familiarity with probability theory highly encouraged.", + "edges_from": [], + "edges_to": [], + "id": 5694, + "label": "LIGN 251", + "title": "Probabilistic Methods in Linguistics (4)" + }, + { + "dept": "COGR", + "description": "History of Communication Research (4)", + "edges_from": [], + "edges_to": [], + "id": 5695, + "label": "COGR 294", + "title": "The" + }, + { + "dept": "COGR", + "description": "A course that introduces students to the interdisciplinary nature of the field of communication research as represented by the work of faculty in the Department of Communication. Through faculty research, students are presented with concrete examples of communication research theory and practice that can provide them with insights for conducting their own research projects. ", + "edges_from": [], + "edges_to": [], + "id": 5696, + "label": "COGR 296", + "title": "Communication Research as an Interdisciplinary Activity (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how children learn to reason about the social world. Topics may include theory of mind, social categorization and stereotyping, moral reasoning, and cultural learning. Recommended preparation: PSYC 101. ", + "edges_from": [], + "edges_to": [], + "id": 5697, + "label": "PSYC 187", + "title": "Development of Social Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the experimental analysis of choice behavior, with an emphasis on the types of choice involved in self-control. A central interest will be the conditions under which decision-making is optimal. ", + "edges_from": [], + "edges_to": [], + "id": 5698, + "label": "PSYC 184", + "title": "Choice and Self-Control (4)" + }, + { + "dept": "HLAW", + "description": "The course focuses on legal issues from the viewpoint of the administrator or chief clinical officer, including the patient record/HIT/HIPAA. The course gives emphasis to practical application and knowledge/skills to prepare the students for job search or career transition. ", + "edges_from": [], + "edges_to": [], + "id": 5699, + "label": "HLAW 210", + "title": "Applied Health Law and Policy (3)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in combinatorial mathematics. In recent years topics have included problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [ + 5701 + ], + "id": 5700, + "label": "MATH 262A", + "title": "Topics in Combinatorial Mathematics (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in combinatorial mathematics. Topics include: problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 5700 + ], + "edges_to": [], + "id": 5701, + "label": "MATH 262B", + "title": "Further Topics in Combinatorial Mathematics (4)" + }, + { + "dept": "BICD", + "description": "Stem cells maintain homeostasis of nearly all organ systems and the regenerative capacity of certain organisms. Course explores the paradigm of the tissue-specific stem cell, the cellular mechanisms of tissue regeneration, the evolution of stem cells and regenerative capacity over time, the basis of induced pluripotency, and how these basic processes can inform new approaches to human health. ", + "edges_from": [ + 411 + ], + "edges_to": [], + "id": 5702, + "label": "BICD 112", + "title": "Stem Cells and Regeneration (4)" + }, + { + "dept": "CENG", + "description": "Introduction to microbiology as relevant to the main topic, biological reactor analysis. Fermentation and enzyme technology. ", + "edges_from": [], + "edges_to": [], + "id": 5703, + "label": "CENG 254", + "title": "Biochemical Engineering Fundamentals (4)" + }, + { + "dept": "CENG", + "description": "Fundamentals of electrochemistry and electrochemical engineering. Structure of the double layer, cell potential and electrochemical thermodynamics, charge transfer kinetics, electrochemical transport phenomena, and introduction to colloidal chemistry. Applications such as corrosion prevention, electroplating, reactor design, batteries, and fuel cells. ", + "edges_from": [], + "edges_to": [], + "id": 5704, + "label": "CENG 255", + "title": "Electrochemical Engineering (4)" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5705, + "label": "CENG 256", + "title": "Biomaterials and Biomimetics (4)" + }, + { + "dept": "CENG", + "description": "Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid-state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching).\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5706, + "label": "CENG 257", + "title": "Process Technology in the Semiconductor Industry (4)" + }, + { + "dept": "HIUS", + "description": "This course introduces students to the history of Asian American social movements from the late nineteenth century to the present, with an emphasis on interethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anti-colonial movements, redress, hate crimes, and police brutality.", + "edges_from": [], + "edges_to": [], + "id": 5707, + "label": "HIUS 125/ETHN 163J", + "title": "Asian American Social Movements (4)" + }, + { + "dept": "CENG", + "description": "Analysis of chemical rate processes; complex kinetic systems. Chemical reactor properties in steady state and transient operations; optimal design policies. The interaction of chemical and physical transport processes in affecting reactor design and operating characteristics. Uniqueness/multiplicity and stability in reactor systems. Applications of the heterogeneous reactor systems. ", + "edges_from": [], + "edges_to": [], + "id": 5708, + "label": "CENG 252", + "title": "Chemical Reaction Engineering (4)" + }, + { + "dept": "CENG", + "description": "Physics and chemistry of heterogeneous catalysis. Adsorption/desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with NANO 259. Students may not receive credit for both CENG 253 and NANO 259. ", + "edges_from": [], + "edges_to": [], + "id": 5709, + "label": "CENG 253", + "title": "Heterogeneous Catalysis (4)" + }, + { + "dept": "SE", + "description": "Element Methods in Solid Mechanics III (4)", + "edges_from": [], + "edges_to": [], + "id": 5710, + "label": "SE 276C", + "title": "Finite" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1A. ", + "edges_from": [], + "edges_to": [], + "id": 5711, + "label": "Linguistics/Arabic (LIAB) 1AX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "GPEC", + "description": "This course helps students master analytical tools used by international economists. Topics covered include the causes of international trade, how trade agreements affect global commerce, and the labor-market consequences of globalization. The course is intensive in the use of data. Students produce an original econometrics project that demonstrates their quantitative aptitude in economics. Renumbered from IRGN 435. Students may not receive credit for GPEC 435 and IRGN 435.", + "edges_from": [], + "edges_to": [], + "id": 5712, + "label": "GPEC 435", + "title": "Topics in International Trade (4)" + }, + { + "dept": "HIAF", + "description": "Plant and animal domestication, ironworking and the distribution of ethnic/language groups, urbanization, regional and long-distance commerce, and the rise of medieval kingdoms.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5713, + "label": "HIAF 123", + "title": "West Africa from Earliest Times to 1800 (4)" + }, + { + "dept": "COGS", + "description": "Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. Applications must be submitted to and approved by the department. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5714, + "label": "COGS 195", + "title": "Instructional Apprenticeship in Cognitive Science (4)" + }, + { + "dept": "COGS", + "description": "This independent study course is for small groups of advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5715, + "label": "COGS 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "COGS", + "description": "This independent study course is for individual, advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5716, + "label": "COGS 199", + "title": "Special Project (2 or 4)" + }, + { + "dept": "HIAF", + "description": "The origins and the interaction between the peoples of South Africa. Special attention will be devoted to industrial development, urbanization, African and Afrikaner nationalism, and the origin and development of apartheid and its consequences.", + "edges_from": [], + "edges_to": [], + "id": 5717, + "label": "HIAF 120", + "title": "History of South Africa (4)" + }, + { + "dept": "MGTF", + "description": "The Chartered Financial Analyst (CFA) designation is the industry-accepted gold standard for financial analysts. To earn the CFA charter, students must pass three very challenging exams. Students will look at each of the ten major topic areas and explore the level of understanding that is required to pass the first-level exam. Students will do applied valuation work as well as highlight study habits of successful past candidates. ", + "edges_from": [], + "edges_to": [], + "id": 5718, + "label": "MGTF 418", + "title": "Preparing for the CFA Exam (2)" + }, + { + "dept": "MGTF", + "description": "Many closed-form analytic results in finance are obtained in the continuous-time setting. This course covers portfolio choice, derivative pricing, and term structure modeling in continuous time setting. The objective is to understand important topics and master techniques of continuous-time models. Letter grades only. Students may not receive credit for both MGTF411 and MGT286. These are course duplicates. ", + "edges_from": [], + "edges_to": [], + "id": 5719, + "label": "MGTF 411", + "title": "Stochastic Calculus and Continuous Time Finance (4)" + }, + { + "dept": "HISC", + "description": "Galileo\u2019s condemnation by the Catholic Church in 1633 is a well-known but misunderstood episode. Was Galileo punished for holding dangerous scientific views? Personal arrogance? Disobedience? Religious transgressions? Readings in original sources, recent historical interpretations. Graduate students will be expected to submit a more substantial piece of work.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5720, + "label": "HISC 166/266", + "title": "The Galileo Affair (4)" + }, + { + "dept": "MGTF", + "description": "This course introduces students to a variety of mathematical methods as applied in finance, including Monte Carlo simulation, optimization methods, and numerical solution to PDEs. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5721, + "label": "MGTF 413", + "title": "Computational Finance Methods (4)" + }, + { + "dept": "MGTF", + "description": "Develop a deeper familiarity with financial accounting and assumptions underlying measurements reported in financial statements. Understanding of economic and regulatory forces underlying corporate disclosure of financial statements. Knowledge of data sources and analytical tools to extract and evaluate this data. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5722, + "label": "MGTF 412", + "title": "Financial Statement Analysis (4)" + }, + { + "dept": "MGTF", + "description": "Teaches students how to obtain and process data in order to answer empirical questions in finance. The data can be numerical or textual, and structured or unstructured. Specific data sources may include CRSP, Compustat, Thomson Reuters, and Bloomberg. Some programming. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5723, + "label": "MGTF 415", + "title": "Collecting and Analyzing Financial Data (4)" + }, + { + "dept": "MGTF", + "description": "Introduction to both structured and unstructured data analysis. Methods for \u201charvesting\u201d Internet data and putting it into suitable format will be covered. Other topics include large market microstructure data (tick-by-tick data, high-frequency data), data with missing observations, and Kalman filtering. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5724, + "label": "MGTF 414", + "title": "Analyzing Large Data (4)" + }, + { + "dept": "MGTF", + "description": "Focuses on communications skills and abilities required for effective professionals in the financial services sector.\u00a0Addresses oral and written communications, including presentations, informational and job interviewing, resume writing, cross-cultural communication, and report writing. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 402, which is a comparable course offered in the MBA program. ", + "edges_from": [], + "edges_to": [], + "id": 5725, + "label": "MGTF 417", + "title": "Professional Communications in Finance (1)" + }, + { + "dept": "MGTF", + "description": "Discussion series involving industry experts, alumni, and executives on current issues in financial services.\u00a0Educates students on industry trends. Prepares students to be effective users of the financial press and to be effective in discussion and interaction with financial professionals. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 401, which is a comparable course offered in the MBA program. ", + "edges_from": [], + "edges_to": [], + "id": 5726, + "label": "MGTF 416", + "title": "Professional Seminars in Finance (1)" + }, + { + "dept": "COGS", + "description": "Special topics in cognitive science are discussed. (May be repeated when topics vary.) ", + "edges_from": [], + "edges_to": [], + "id": 5727, + "label": "COGS 160", + "title": "Upper-Division Seminar on Special Topics (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120C or after successful completion of Econ 120C with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 5728, + "label": "ECON 120CH", + "title": "Honors Econometrics C (1)" + }, + { + "dept": "AUD", + "description": "Observations in UC San Diego Otology clinic. Learn about procedures for taking histories and performing clinical examinations, patient treatment, and patient education from otologists. ", + "edges_from": [], + "edges_to": [], + "id": 5729, + "label": "AUD 236", + "title": "Preceptorship in Neuro-Otology (2)" + }, + { + "dept": "PHIL", + "description": "Investigation of ethical and epistemological questions concerning our relationship to the environment. Topics may include the value of nature, biodiversity, policy and science, and responsibility to future generations. ", + "edges_from": [], + "edges_to": [], + "id": 5730, + "label": "PHIL 148", + "title": "Philosophy and the Environment (4)" + }, + { + "dept": "MAE", + "description": "Element Methods in Mechanical and Aerospace Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 5731, + "label": "MAE 133", + "title": "Finite" + }, + { + "dept": "PHIL", + "description": "Philosophical issues raised by psychology, including the nature of psychological explanation, the role of nature versus nurture, free will and determinism, and the unity of the person. ", + "edges_from": [], + "edges_to": [], + "id": 5732, + "label": "PHIL 149", + "title": "Philosophy of Psychology (4)" + }, + { + "dept": "HILA", + "description": "A broad historical overview of Hispanic American women\u2019s history of focusing on the issues of gender, sexuality, and the family as they relate to women, as well as the historiographical issues in Latin American and Chicana women\u2019s history.", + "edges_from": [], + "edges_to": [], + "id": 5733, + "label": "HILA 161/261", + "title": "History of Women in Latin America (4)" + }, + { + "dept": "LTWR", + "description": "In the generative workshop, writers create intergenre works and practice unconventional workshopping techniques that function less as editorial roundtables and more as discussions of the relationships between aesthetics and culture. ", + "edges_from": [], + "edges_to": [], + "id": 5734, + "label": "LTWR 215", + "title": "Cross-Genre Workshop (4)" + }, + { + "dept": "CONT", + "description": "This course will examine disability in the case of individuals with an intellectual or physical disability. Faced with ableism, intentional or unintentional, people with disabilities often experience difficulties in society. Using ableism provides an effective way of addressing ableist discrimination. The course will develop students\u2019 awareness of the challenges of disability in current society. Winter quarter only.", + "edges_from": [], + "edges_to": [], + "id": 5735, + "label": "CONT 68", + "title": "Disability, Race, and Diversity (4)" + }, + { + "dept": "Classics", + "description": "F,W,S. Required of and limited to teaching", + "edges_from": [], + "edges_to": [], + "id": 5736, + "label": "Classics 399", + "title": "University Teaching (4-4-4)" + }, + { + "dept": "MUS", + "description": "Introduces important themes and thinkers from the fields of critical theory and cultural studies and explores how musical behaviors and phenomena relate to matters of ideology, nationality, ethnicity, social class, race, and gender. Students who have taken MUS 208C for credit may not take MUS 213 for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5737, + "label": "MUS 213", + "title": "Introduction to Critical Studies (2)" + }, + { + "dept": "CLRE", + "description": "This course covers how to develop and implement a digital strategy to drive a health research organization\u2019s online presence, specifically the processes for selecting, using, managing, and evaluating the effectiveness of web, social media, and mobile technologies. ", + "edges_from": [], + "edges_to": [], + "id": 5738, + "label": "CLRE 230", + "title": "Digital Health (2)" + }, + { + "dept": "MUS", + "description": "Introduces the field of ethnomusicology by highlighting important thinkers, concepts, and issues and by orienting students toward work of an anthropological, ethnographic, or comparative nature. Students who have taken and passed MUS 208A may not get credit for MUS 211. ", + "edges_from": [], + "edges_to": [], + "id": 5739, + "label": "MUS 211", + "title": "Introduction to Ethnomusicology (2)" + }, + { + "dept": "MUS", + "description": "The analysis of complex music. The course will assume that the student has a background in traditional music analysis. The goal of the course is to investigate and develop analytical procedures that yield significant information about specific works of music, old and new. Reading, projects, and analytical papers. ", + "edges_from": [], + "edges_to": [], + "id": 5740, + "label": "MUS 210", + "title": "Musical Analysis (4)" + }, + { + "dept": "CLRE", + "description": "This course offers practical guidance about how best to engage in interdisciplinary and multidisciplinary team science: to pursue complex science questions, to work effectively with team members, and to produce high impact research outcomes that help meet society\u2019s needs. ", + "edges_from": [], + "edges_to": [], + "id": 5741, + "label": "CLRE 235", + "title": "Team Science (2)" + }, + { + "dept": "CLRE", + "description": "This course will provide an overview of Institutional Review Board (IRB) considerations of social media in research, including those major ethical challenges and data security issues that may arise with the use of social media for recruitment, consent processes, data collection, and data dissemination. ", + "edges_from": [], + "edges_to": [], + "id": 5742, + "label": "CLRE 234", + "title": "Social Media Research (2)" + }, + { + "dept": "CLRE", + "description": "This course focuses on practical applications of the principles of translating stem cell based therapies, especially those in early development and phase 1 studies. Students will acquire skills to translate these interventions from the bench to the bedside by designing a trial. Differences between drug development and stem cell based therapies will be highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 5743, + "label": "CLRE 237", + "title": "Stem Cell Translation (2)" + }, + { + "dept": "CLRE", + "description": "Students learn principles and practices of translational medicine as they apply to the development of new drugs, device, or diagnostic. Students receive training in the development of novel targets and leads, clinical pharmacology, regulatory process, and design of clinical trials. ", + "edges_from": [], + "edges_to": [ + 5745 + ], + "id": 5744, + "label": "CLRE 236", + "title": "Translational Research (2)" + }, + { + "dept": "CLRE", + "description": "Students will understand the drug discovery process through case studies in mentored teams. Each team is assigned a pharmacotherapeutic modality and will use publicly disclosed information to reconstruct the entire translational chain of events from new drug idea to market. ", + "edges_from": [ + 5744 + ], + "edges_to": [], + "id": 5745, + "label": "CLRE 238", + "title": "Applied Drug Discovery and Development (2)" + }, + { + "dept": "BENG", + "description": "(Conjoined with BENG 191.) Instills skills", + "edges_from": [], + "edges_to": [], + "id": 5746, + "label": "BENG 291/191", + "title": "Senior Seminar I: Professional Issues in Bioengineering (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112F. Courses may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 5747, + "label": "Linguistics/Heritage Languages (LIHL) 112F", + "title": "Filipino for Filipino Speakers (4)" + }, + { + "dept": "POLI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. May not be used to fulfill any major or minor requirements in political science.", + "edges_from": [], + "edges_to": [], + "id": 5748, + "label": "POLI 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "HIUS", + "description": "This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences. ", + "edges_from": [], + "edges_to": [], + "id": 5749, + "label": "HIUS 167/267/ETHN 180", + "title": "Topics in Mexican American History (4)" + }, + { + "dept": "CSE", + "description": "Modern advances in design and analysis of algorithms. Exact syllabus varies. Topics include approximation, randomized algorithms, probabilistic analysis, heuristics, online algorithms, competitive analysis, models of memory hierarchy, parallel algorithms, number-theoretic algorithms, cryptanalysis, computational geometry, computational biology, network algorithms, VLSI CAD algorithms. ", + "edges_from": [ + 1743 + ], + "edges_to": [], + "id": 5750, + "label": "CSE 203A", + "title": "Advanced Algorithms (4)" + }, + { + "dept": "TDTR", + "description": "An overview and analysis of movement theory systems that offer approaches that improve movement quality, prevent injuries, aid in habilitation, develop mental focus and kinesthetic control, establish a positive body language, and develop vocabulary for creative research. ", + "edges_from": [ + 3474 + ], + "edges_to": [], + "id": 5751, + "label": "TDTR 15", + "title": "Dance Movement and Analysis (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical problems in the biological sciences, such as the relation between biology and the physical sciences, the status and structure of evolutionary theory, and the role of biology in the social sciences. ", + "edges_from": [], + "edges_to": [], + "id": 5752, + "label": "PHIL 147", + "title": "Philosophy of Biology (4)" + }, + { + "dept": "VIS", + "description": "Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 5753, + "label": "VIS 131", + "title": "Special Projects in Media (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112P. Courses may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 5754, + "label": "Linguistics/Heritage Languages (LIHL) 112P", + "title": "Filipino for Filipino Speakers (4)" + }, + { + "dept": "BENG", + "description": "General engineering design topics including project planning and design objectives, background research, engineering needs assessment, technical design specifications, engineering standards, and design requirements and constraints. Introduction to biomedical and biotechnology design projects. Career and professional advising. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ", + "edges_from": [ + 2192, + 597, + 2885 + ], + "edges_to": [], + "id": 5755, + "label": "BENG 187A", + "title": "Bioengineering Design Project: Planning (1)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 68, + 5805 + ], + "edges_to": [ + 68 + ], + "id": 5756, + "label": "BENG 127B", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 68, + 5780 + ], + "edges_to": [ + 68 + ], + "id": 5757, + "label": "BENG 149B", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 68, + 5990 + ], + "edges_to": [ + 68 + ], + "id": 5758, + "label": "BENG 148B", + "title": "" + }, + { + "dept": "PHIL", + "description": "Central problems in philosophy of science, such as the nature of confirmation and explanation, the nature of scientific revolutions and progress, the unity of science, and realism and antirealism. ", + "edges_from": [], + "edges_to": [], + "id": 5759, + "label": "PHIL 145", + "title": "Philosophy of Science (4)" + }, + { + "dept": "HITO", + "description": "This course will examine what has been called the Cultural Cold Wars. Sports were the most visible form of popular culture during the era (1945\u201391). It will make use of reports and essays produced for an international, multiyear research project. It will combine written and visual sources. Matters of class, race, gender, and nationality will be discussed. May be coscheduled with HITO 267. ", + "edges_from": [], + "edges_to": [], + "id": 5760, + "label": "HITO 167/267", + "title": "Global History of Sports in the Cold War (4)" + }, + { + "dept": "CSE", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 5761, + "label": "CSE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "CSE", + "description": "Helps the Java programmer to be productive in the C++ programming environment. Topics include the similarities and differences between Java and C++ with special attention to pointers, operator overloading, templates, the STL, the preprocessor, and the C++ Runtime Environment. ", + "edges_from": [ + 1 + ], + "edges_to": [], + "id": 5762, + "label": "CSE 86", + "title": "C++ for Java Programmers (2)" + }, + { + "dept": "CSE", + "description": "Discussion on problems of current research interest in computer systems. Possible areas of focus include: distributed computing, computational grid, operating systems, fault-tolerant computing, storage systems, system services for the World Wide Web. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5763, + "label": "CSE 229A", + "title": "Topics/Seminar in Computer Systems (1\u20134)" + }, + { + "dept": "ETHN", + "description": "Latino/a-Chicano/a Cultural Production: 1960 to Present (4)", + "edges_from": [], + "edges_to": [], + "id": 5764, + "label": "ETHN 135B", + "title": "Contemporary" + }, + { + "dept": "CSE", + "description": "The objective of the course is to help the programmer create a productive UNIX environment. Topics include customizing the shell, file system, shell programming, process management, and UNIX tools. ", + "edges_from": [ + 393, + 395 + ], + "edges_to": [], + "id": 5765, + "label": "CSE 80", + "title": "UNIX Lab (2)" + }, + { + "dept": "VIS", + "description": "Transnational Cinemas examine how US identities and film cultures have been forged through stories of exile, diaspora, and racial and sexual discrimination as well as cultural conflicts that have resonated here and abroad in the global film and media culture of the last century. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 5766, + "label": "VIS 152D", + "title": "Identity through Transnational Cinemas (4)" + }, + { + "dept": "SE", + "description": "Elements of seismicity and seismology. Seismic hazards. Dynamic analysis of structures underground motion. Elastic and inelastic response spectra. Modal analysis, nonlinear time-history analysis. Earthquake resistant design. Seismic detailing. ", + "edges_from": [ + 652, + 2661 + ], + "edges_to": [], + "id": 5767, + "label": "SE 180", + "title": "Earthquake Engineering (4)" + }, + { + "dept": "COGS", + "description": "This course will address principles of motivation, valuation, and reward, spanning a large territory of topics, from rules of synaptic learning to classroom learning. Recommended preparation: courses in basic biology, physiology, Cognitive Science 107A or 107B or 107C, or courses in education. ", + "edges_from": [], + "edges_to": [], + "id": 5768, + "label": "COGS 164", + "title": "Neurobiology of Motivation (4)" + }, + { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with background in a", + "edges_from": [], + "edges_to": [], + "id": 5769, + "label": "CHIN 20AD", + "title": "Second Year Chinese\u2014Dialect speakers I (4)" + }, + { + "dept": "ECE", + "description": "(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5770, + "label": "ECE 299", + "title": "Research (1\u201316)" + }, + { + "dept": "ECE", + "description": "Open to properly qualified graduate students", + "edges_from": [], + "edges_to": [], + "id": 5771, + "label": "ECE 298", + "title": "Independent Study (1\u201316)" + }, + { + "dept": "TDPF", + "description": "in Performance\u2014Winter Production (2\u20134)", + "edges_from": [], + "edges_to": [ + 5774 + ], + "id": 5772, + "label": "TDPF 161", + "title": "Studies" + }, + { + "dept": "TDPF", + "description": "in Performance\u2014Fall Production (2\u20134)", + "edges_from": [], + "edges_to": [ + 5774 + ], + "id": 5773, + "label": "TDPF 160", + "title": "Studies" + }, + { + "dept": "TDPF", + "description": "The study and aesthetic examination of major choreographic works by dance faculty or distinguished guest artists. Students will experience the creative process, staging, production, and performance of a complete dance work in conjunction with a conceptual study of its form and content. Audition is required. May be taken for credit four times. ", + "edges_from": [ + 5772, + 5773, + 3478 + ], + "edges_to": [], + "id": 5774, + "label": "TDPF 163", + "title": "Dance Repertory (1\u20134)" + }, + { + "dept": "ECE", + "description": "in Electronic Devices and Materials/Applied Physics (2)", + "edges_from": [], + "edges_to": [], + "id": 5775, + "label": "ECE 294", + "title": "Graduate Seminar" + }, + { + "dept": "ECE", + "description": "in Communication Theory and Systems (2)", + "edges_from": [], + "edges_to": [], + "id": 5776, + "label": "ECE 293", + "title": "Graduate Seminar" + }, + { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with background in Mandarin.", + "edges_from": [], + "edges_to": [], + "id": 5777, + "label": "CHIN 20AM", + "title": "Second Year Chinese\u2014Mandarin speakers I (4)" + }, + { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with no background. First", + "edges_from": [], + "edges_to": [], + "id": 5778, + "label": "CHIN 20AN", + "title": "Second Year Chinese\u2014Non-native speakers I (4)" + }, + { + "dept": "ECE", + "description": "Weekly discussion of current research conducted", + "edges_from": [], + "edges_to": [], + "id": 5779, + "label": "ECE 290", + "title": "Graduate Seminar on Current ECE Research (2)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 66 + ], + "edges_to": [ + 5757 + ], + "id": 5780, + "label": "BENG 149A", + "title": "" + }, + { + "dept": "TDGE", + "description": "This course is designed to establish a clear understanding of the fundamentals of effective oral communication. The methodologies explore the integration of relaxation, concentration, organization, and clear voice and diction as applied to various public speaking modes. ", + "edges_from": [], + "edges_to": [], + "id": 5781, + "label": "TDGE 25", + "title": "Public Speaking (4)" + }, + { + "dept": "LTLA", + "description": "Tutorial; individual guided reading in areas of Latin literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5782, + "label": "LTLA 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTLA", + "description": "Directed group study in areas of Latin literature not normally covered in courses. May be repeated three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5783, + "label": "LTLA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 206B.) The course focuses on algorithmic aspects of modern bioinformatics and covers the following topics: computational gene hunting, sequencing, DNA arrays, sequence comparison, pattern discovery in DNA, genome rearrangements, molecular evolution, computational proteomics, and others. ", + "edges_from": [ + 1743 + ], + "edges_to": [], + "id": 5784, + "label": "CSE 280A", + "title": "Algorithms in Computational Biology (4)" + }, + { + "dept": "SE", + "description": "Finite Element Methods for Solid Mechanics (4)", + "edges_from": [], + "edges_to": [], + "id": 5785, + "label": "SE 274", + "title": "Nonlinear" + }, + { + "dept": "LTCS", + "description": "This course explores the idea of artificial intelligence in both art and science, its relation to the quest to identify what makes us human, and the roles gender and race have played in both. Students may not receive credit for CGS 108 and LTCS 108.", + "edges_from": [], + "edges_to": [], + "id": 5786, + "label": "LTCS 108", + "title": "Gender, Race, and Artificial Intelligence (4)" + }, + { + "dept": "LTCS", + "description": "Survey and application of methods central to cultural studies as a critical social practice, examining the relationship between cultural studies and social transformation. Students will study varieties of material culture, and experiment with techniques of reading, interpretation, and intervention.", + "edges_from": [], + "edges_to": [], + "id": 5787, + "label": "LTCS 102", + "title": "Practicing Cultural Studies (4)" + }, + { + "dept": "LTCS", + "description": "and Methods in Cultural Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 5788, + "label": "LTCS 100", + "title": "Theories" + }, + { + "dept": "LATI", + "description": "Students will collect survey and qualitative data among Mexican migrants to the United States and potential migrants, participate in team research, organize data collected for analysis, and submit a detailed outline of an article to be based on field data. Students may not receive credit for both SOCI 122B and LATI 122B. Recommended: advanced competency in conversational Spanish. ", + "edges_from": [ + 4713 + ], + "edges_to": [ + 5790 + ], + "id": 5789, + "label": "LATI 122B", + "title": "Field Research Methods for Migration Studies: Practicum (12)" + }, + { + "dept": "LATI", + "description": "Continuation of SOCI 122B. Students analyze primary data they have collected in field research sites and coauthor an article for publication. Methods for organizing and processing field data, techniques of quantitative data analysis, and report preparation conventions will be covered. Students may not receive credit for both SOCI 122C and LATI 122C. ", + "edges_from": [ + 5789 + ], + "edges_to": [], + "id": 5790, + "label": "LATI 122C", + "title": "Field Research Methods for Migration Studies: Data Analysis (4)" + }, + { + "dept": "ETHN", + "description": "An intensive capstone experience for ethnic studies majors, this course combines an advanced exploration of praxis-based approaches to social justice with practicum-based independent campus, community, creative, or research projects. ", + "edges_from": [ + 3320, + 628 + ], + "edges_to": [], + "id": 5791, + "label": "ETHN 100C", + "title": "Social Justice Praxis\u00a0(4)" + }, + { + "dept": "CSE", + "description": "Polynomial-time hierarchy (PH), BPP in second level of PH, Savitch\u2019s theorem, NL=coNL, nonuniform and circuit complexity, some circuit lower bounds, IP=PSPACE, probabilistic proof checking (PCP), application of PCP to approximation hardness, complexity of proof systems, parallel complexity classes NC and AC, P-completeness. Recommended preparation: CSE 200. ", + "edges_from": [], + "edges_to": [], + "id": 5792, + "label": "CSE 201A", + "title": "Advanced Complexity (4)" + }, + { + "dept": "LIGN", + "description": "Vietnamese (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5793, + "label": "LIGN 513", + "title": "Apprentice Teaching of Heritage" + }, + { + "dept": "MATH", + "description": "Existence and uniqueness theorems. Cauchy-Kowalewski theorem, first order systems. Hamilton-Jacobi theory, initial value problems for hyperbolic and parabolic systems, boundary value problems for elliptic systems. Green\u2019s function, eigenvalue problems, perturbation theory. ", + "edges_from": [ + 5064, + 5065, + 5795, + 5796, + 1083 + ], + "edges_to": [], + "id": 5794, + "label": "MATH 231A-B-C", + "title": "Partial Differential Equations (4-4-4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5794 + ], + "id": 5795, + "label": "MATH 240A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5794 + ], + "id": 5796, + "label": "MATH 240B", + "title": "" + }, + { + "dept": "GPPS", + "description": "Examination of the effects of national governments and international collaboration on global trade and investments, with a focus on the roles of national trade policies, international institutions such as the WTO, free trade areas, bilateral investment treaties, and multinational corporations. Implications of trade and investment are also considered for international development and emerging economic powers.", + "edges_from": [], + "edges_to": [], + "id": 5797, + "label": "GPPS 417", + "title": "International Political Economy: Trade and Investments (4)" + }, + { + "dept": "GPPS", + "description": "Overview of postwar politics in Japan, including American Occupation reforms, political institutions, major political factors, mass and elite, and political behavior. Special attention will be paid to the issue of Japan\u2019s changing democracy. Renumbered from IRGN 416. Students may not receive credit for IRGN 416 and GPPS 416.", + "edges_from": [], + "edges_to": [], + "id": 5798, + "label": "GPPS 416", + "title": "Postwar Politics in Japan (4)" + }, + { + "dept": "GPPS", + "description": "Why do corporate governance systems\u2014the way firms are run, the relationships among managers, stockholders, and workers\u2014differ widely around the world? This course examines the various explanations for these striking differences and the consequences. Renumbered from IRGN 410. Students may not receive credit for IRGN 410 and GPPS 410.", + "edges_from": [], + "edges_to": [], + "id": 5799, + "label": "GPPS 410", + "title": "Corporate Governance (4)" + }, + { + "dept": "VIS", + "description": "Looks at the way that self-identity is reflected and produced through various media practices. Focus is on rhetorical strategies of biography and autobiography in media, comparing and contrasting these strategies with those drawn from related cultural forms. Two production-course limitation. ", + "edges_from": [ + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568 + ], + "edges_to": [], + "id": 5800, + "label": "VIS 183A", + "title": "Strategies of Self (4)" + }, + { + "dept": "VIS", + "description": "Looks at difference as it is reflected and constructed in various media practices. Course will examine a wide range of forms and genres such as ethnography, science fiction, crime narratives, documentary film, political drama, and animated shorts. Two production-course limitation. ", + "edges_from": [ + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568 + ], + "edges_to": [], + "id": 5801, + "label": "VIS 183B", + "title": "Strategies of Alterity (4)" + }, + { + "dept": "POLI", + "description": "This course explores the way in which the international rivalry between the Soviet Union and the United States affected relationships between the two powers, their allies, the Third World, and above all, their internal domestic affairs and development.", + "edges_from": [], + "edges_to": [], + "id": 5802, + "label": "POLI 142Q", + "title": "Cold War (4)" + }, + { + "dept": "POLI", + "description": "An introduction to analytic techniques for assessing policy options in the field of national security. ", + "edges_from": [], + "edges_to": [], + "id": 5803, + "label": "POLI 142N", + "title": "American Defense Policy (4)" + }, + { + "dept": "MUS", + "description": "This course, third in a three-quarter sequence, offers solid foundation in musical literacy through exercises such as harmonic and melodic dictation, sight singing exercises and rhythm in various meters. Topics include complex rhythm, harmony, and basic keyboard skills. ", + "edges_from": [ + 2352 + ], + "edges_to": [ + 1560 + ], + "id": 5804, + "label": "MUS 1C", + "title": "Fundamentals of Music C (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 66 + ], + "edges_to": [ + 5756 + ], + "id": 5805, + "label": "BENG 127A", + "title": "" + }, + { + "dept": "MBC", + "description": "Topics/Marine Biology\u2013MAS-MBC Forum (1)", + "edges_from": [], + "edges_to": [], + "id": 5806, + "label": "MBC 258", + "title": "Special" + }, + { + "dept": "POLI", + "description": "Lectures and readings examine US foreign policy in Europe, Latin America, and East Asia with attention to current problems with specific nations (e.g., Bosnia) and issues (e.g., terrorism). This course integrates historical, comparative, and foreign perspectives on regional security dynamics.", + "edges_from": [], + "edges_to": [], + "id": 5807, + "label": "POLI 142M", + "title": "US Foreign Policy/Regional Security (4)" + }, + { + "dept": "MAE", + "description": "Theoretical strength; stress concentration. Linear and nonlinear fracture mechanics: stress singularity, fracture modes, crack tip plastic zone, dugdale model, the R-curve; power-law materials, the J-integral; fatigue; special topics. ", + "edges_from": [ + 3365, + 3366 + ], + "edges_to": [], + "id": 5808, + "label": "MAE 233A", + "title": "Fracture Mechanics (4)" + }, + { + "dept": "MAE", + "description": "General theory of transformation strains and corresponding elastic fields; Green\u2019s functions and other solution methods; dislocations; inclusions and inhomogeneities; micromechanics of plastic flow, microcracking, cavitation, and damage in crystalline and other solids. ", + "edges_from": [ + 3364, + 3365, + 3366 + ], + "edges_to": [], + "id": 5809, + "label": "MAE 233B", + "title": "Micromechanics (4)" + }, + { + "dept": "POLI", + "description": "A survey of American strategies for national defense. Topics may include deterrence, coercive diplomacy, limited war, and unconventional warfare.", + "edges_from": [], + "edges_to": [], + "id": 5810, + "label": "POLI 142J", + "title": "National Security Strategy (4)" + }, + { + "dept": "CLRE", + "description": "The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty, and may also include industry advisors when appropriate. ", + "edges_from": [], + "edges_to": [], + "id": 5811, + "label": "CLRE 298", + "title": "Independent Study Project (4)" + }, + { + "dept": "MAE", + "description": "Velocity distribution functions, the Boltzmann equation, moment equations and the Navier-Stokes equations. The dynamics of molecular collisions. The Chapman-Enskog expansion and transport coefficients: shear and bulk viscosity, heat conduction, molecular and thermal diffusion. Linearizations about equilibrium: applications to acoustics and supersonic flows with relaxation. ", + "edges_from": [ + 513, + 676, + 677, + 4615, + 168, + 169, + 988 + ], + "edges_to": [], + "id": 5812, + "label": "MAE 220B", + "title": "Physical Gas Dynamics (4)" + }, + { + "dept": "MGTF", + "description": "Focuses on the financing of new ventures and technological innovation. Includes perspectives of both the entrepreneur and the investor, investigating the venture capital process, and methods of financial valuation useful in the venture capital industry and for other technology investments. Letter grades only. Students may not receive credit for both MGTF 410 and MGT 280. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5813, + "label": "MGTF 410", + "title": "New Venture Finance (4)" + }, + { + "dept": "CSE", + "description": "Database, data warehouse, and data cube design; SQL programming and querying with emphasis on analytics; online analytics applications, visualizations, and data exploration; performance tuning. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 5815 + ], + "id": 5814, + "label": "CSE 135", + "title": "Online Database Analytics Applications (4)" + }, + { + "dept": "CSE", + "description": "Design and implementation of very large-scale, web-based applications. Topics covered typically include modeling organizational needs, design and revision management, J2EE or similar software platforms, web server and application server functionality, reuse of object-oriented components, model-view-controller and other design patterns, clustering, load-balancing, fault-tolerance, authentication, and usage accounting. ", + "edges_from": [ + 5814 + ], + "edges_to": [], + "id": 5815, + "label": "CSE 136", + "title": "Enterprise-Class Web Applications (4)" + }, + { + "dept": "ETHN", + "description": "This course follows the introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization (part one). Students will develop the proposals they completed in part one of the course, finishing with curatorial briefs for an exhibition of Native American art with a partner museum incorporating new and decolonizing approaches to representation. May be coscheduled with ETHN 114B. ", + "edges_from": [ + 5056 + ], + "edges_to": [], + "id": 5816, + "label": "ETHN 214B", + "title": "Representing Native America: Exhibition Design (4)" + }, + { + "dept": "CSE", + "description": "in Computer Architecture (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5817, + "label": "CSE 249A", + "title": "Topics/Seminar" + }, + { + "dept": "CSE", + "description": "Topics of special interest in VLSI to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5818, + "label": "CSE 249B", + "title": "Topics/Seminar in VLSI (1\u20134)" + }, + { + "dept": "PHYS", + "description": "This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. ", + "edges_from": [ + 5060, + 5059, + 4724, + 199 + ], + "edges_to": [], + "id": 5819, + "label": "PHYS 175", + "title": "Biological Physics (4)" + }, + { + "dept": "PHYS", + "description": "A quantitative approach to gene regulation including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. ", + "edges_from": [ + 199 + ], + "edges_to": [], + "id": 5820, + "label": "PHYS 176", + "title": "Quantitative Molecular Biology (4)" + }, + { + "dept": "PHYS", + "description": "The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from: chemotaxis as a model system; signal transduction networks and cellular information processing; mechanics of the membrane; cytoskeletal dynamics; nonlinear Calcium waves. May be scheduled with Physics 277. ", + "edges_from": [], + "edges_to": [], + "id": 5821, + "label": "PHYS 177", + "title": "Physics of the Cell (4)" + }, + { + "dept": "PHYS", + "description": "The principles and clinical applications of medical diagnostic instruments, including electromagnetic measurements, spectroscopy, microscopy; ultrasounds, X-rays, MRI, tomography, lasers in surgery, fiber optics in diagnostics. ", + "edges_from": [ + 36, + 37, + 1388, + 1391, + 30, + 31 + ], + "edges_to": [], + "id": 5822, + "label": "PHYS 170", + "title": "Medical Instruments: Principles and Practice (4)" + }, + { + "dept": "CSE", + "description": "Robotics has the potential to improve well-being for millions of people and support caregivers and to aid the clinical workforce. We bring together engineers, clinicians, and end-users to explore this exciting new field. The course is project-based, interactive, and hands-on, and involves working closely with stakeholders to develop prototypes that solve real-world problems. Students will explore the latest research in health care robotics, human-robot teaming, and health design. Program or materials fees may apply. ", + "edges_from": [ + 280, + 2857, + 4015 + ], + "edges_to": [], + "id": 5823, + "label": "CSE 176A", + "title": "Maker Topics: Health Care Robotics (4)" + }, + { + "dept": "PHYS", + "description": "A selection of experiments in contemporary", + "edges_from": [], + "edges_to": [], + "id": 5824, + "label": "PHYS 173", + "title": "Modern Physics Laboratory: Biological and Quantum Physics (4)" + }, + { + "dept": "HIGR", + "description": "Research seminar in medieval history with selected topics in medieval history.", + "edges_from": [], + "edges_to": [], + "id": 5825, + "label": "HIGR 223B", + "title": "Research Seminar in Medieval History (4)" + }, + { + "dept": "HILA", + "description": "Reviews the historical processes Latin American countries underwent after political independence from Spain/Portugal in the nineteenth century. Each country built its future, but there also were continuities. Assessing changes and continuities and their present-day consequences will be our goal.", + "edges_from": [], + "edges_to": [], + "id": 5826, + "label": "HILA 106", + "title": "Changes and Continuities in Latin American History (4)" + }, + { + "dept": "PHYS", + "description": "Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. ", + "edges_from": [], + "edges_to": [], + "id": 5827, + "label": "PHYS 178", + "title": "Biophysics of Neurons and Networks (4)" + }, + { + "dept": "HILA", + "description": "Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptations, late colonial growth and the onset of independence. Students may not receive credit for both HILA 100 and HILA 100D.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5828, + "label": "HILA 100", + "title": "Conquest and Empire: The Americas (4)" + }, + { + "dept": "HILA", + "description": "A political, economic, and social examination of the causes and consequences of the Mexican, Cuban, and Nicaraguan revolutions. Also examine guerrilla movements that failed to gain power in their respective countries, namely the Shining Path in Peru, FARC in Colombia, and the Zapatistas in Mexico.", + "edges_from": [], + "edges_to": [], + "id": 5829, + "label": "HILA 103", + "title": "Revolution in Modern Latin America (4)" + }, + { + "dept": "HILA", + "description": "This course surveys the history of the region by focusing on two interrelated phenomena\u2014the absence of democracy in most nations and the region\u2019s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.", + "edges_from": [], + "edges_to": [], + "id": 5830, + "label": "HILA 102", + "title": "Latin America in the Twentieth Century (4)" + }, + { + "dept": "MGT", + "description": "This course addresses classical operations management models in inventory", + "edges_from": [], + "edges_to": [], + "id": 5831, + "label": "MGT 245", + "title": "Theory of Technology and Operations Management (4)" + }, + { + "dept": "HIUS", + "description": "130. Social and Economic History of the Southwest I (4)", + "edges_from": [], + "edges_to": [], + "id": 5832, + "label": "HIUS 158/ETHN", + "title": "" + }, + { + "dept": "SE", + "description": "(S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 5833, + "label": "SE 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "SE", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5834, + "label": "SE 298", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5835, + "label": "SE 296", + "title": "Independent Study (4)" + }, + { + "dept": "COGR", + "description": "This course will draw on theorists who examine human nature as constituted by social, material, and historical circumstances. This course considers the media in relation to the ontogenetic and historical development of the human being and an examination of the individual as socially constituted in a language-using medium. The role of new communication technologies as part of research methodologies is explored in lecture-seminar. ", + "edges_from": [], + "edges_to": [], + "id": 5836, + "label": "COGR 200C", + "title": "Introduction to the Study of Communication: Communication and the Individual (4)" + }, + { + "dept": "SE", + "description": "Weekly seminar and discussion by faculty, visitors, postdoctoral research fellows and graduate students concerning research topics in earthquake engineering and related subjects. May be repeated for credit. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5837, + "label": "SE 290", + "title": "Seminar in Earthquake Engineering (2)" + }, + { + "dept": "POLI", + "description": "The relationship between the United States and Japan has been described as \u201cthe most important in the world, bar none.\u201d This course will examine US-Japan security and economic relations in the postwar period from the Occupation and Cold War alliance through the severe bilateral trade friction of the 1980s and 1990s to the present relationship and how it is being transformed by the forces of globalization, regionalization, and multilateralism.", + "edges_from": [], + "edges_to": [], + "id": 5838, + "label": "POLI 133G", + "title": "Postwar US-Japan Relations (4)" + }, + { + "dept": "POLI", + "description": "This course discusses the following major topics in three East Asian countries (Japan, South Korea, and the Philippines) from a comparative perspective: (a) economic and political development; (b) political institutions; and (c) policies.", + "edges_from": [], + "edges_to": [], + "id": 5839, + "label": "POLI 133D", + "title": "Political Institutions of East Asian Countries (4)" + }, + { + "dept": "POLI", + "description": "Guided and supervised reading in the literature of the several fields of political science.", + "edges_from": [], + "edges_to": [], + "id": 5840, + "label": "POLI 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "POLI", + "description": "Politics: A Developmental Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 5841, + "label": "POLI 133A", + "title": "Japanese" + }, + { + "dept": "LTKO", + "description": "Students develop beginning-level skills in the Korean language, with an introduction to the writing and sound system. The remainder of the course will focus on basic sentence structures and expressions. ", + "edges_from": [ + 5843 + ], + "edges_to": [ + 2124 + ], + "id": 5842, + "label": "LTKO 1B", + "title": "Beginning Korean: First Year II (5)" + }, + { + "dept": "LTKO", + "description": "", + "edges_from": [], + "edges_to": [ + 5842 + ], + "id": 5843, + "label": "LTKO 1A", + "title": "" + }, + { + "dept": "POLI", + "description": "This course is primarily about the politics and political economy of South Korea, but will also briefly look at politics and political economy of North Korea as well as foreign and unification policies of the two Koreas. ", + "edges_from": [], + "edges_to": [], + "id": 5844, + "label": "POLI 133J", + "title": "Korean Politics (4)" + }, + { + "dept": "CENG", + "description": "Introduction to solution of engineering problems using computational methods. Formulating problem statements, selecting algorithms, writing computer programs, and analyzing output using Matlab. Computational problems from NanoEngineering, chemical engineering, and materials science are introduced. The course requires no prior programming skills. Cross-listed with NANO 15. Students may not receive credit for both CENG 15 and NANO 15. ", + "edges_from": [], + "edges_to": [], + "id": 5845, + "label": "CENG 15: Engineering Computation Using Matlab (4)", + "title": "" + }, + { + "dept": "POLI", + "description": "Is there a Muslim challenge to immigrant integration in Christian-heritage societies? This course asks if and why Muslim immigrants integrate into their host societies, and evaluates the various solutions put forth by politicians and scholars.", + "edges_from": [], + "edges_to": [], + "id": 5846, + "label": "POLI 131", + "title": "Muslim Integration and Exclusion (4)" + }, + { + "dept": "GPEC", + "description": "The goals of the course are to help students acquire analytic skills used in the study of labor economics and international migration. We examine the causes of immigration, the consequences of immigration for wages and employment in sending and receiving countries, and policies governing high-skilled immigration, undocumented immigration, and refugees. Students produce an original project that demonstrates their master of quantitative tools used in economics. Renumbered from IRGN 432. Students may not receive credit for GPEC 432 and IRGN 432.", + "edges_from": [], + "edges_to": [], + "id": 5847, + "label": "GPEC 432", + "title": "Immigration and Immigration Policy (4)" + }, + { + "dept": "ECON", + "description": "This course is a workshop in which students make formal presentations on the literature and on their own projects and receive input from other students and the instructor. ", + "edges_from": [], + "edges_to": [], + "id": 5848, + "label": "ECON 285", + "title": "Precandidacy Presentation (2)" + }, + { + "dept": "ECON", + "description": "The aim of the course is", + "edges_from": [], + "edges_to": [], + "id": 5849, + "label": "ECON 286", + "title": "Graduate Research Presentation Workshop (3)" + }, + { + "dept": "ECON", + "description": "Lecture course at an advanced level on a special topic. May be repeated for credit if topic differs. (Previously numbered Econ 267.) ", + "edges_from": [], + "edges_to": [], + "id": 5850, + "label": "ECON 281", + "title": "Special Topics in Economics (4)" + }, + { + "dept": "ECON", + "description": "Introduction to computing for economists. ", + "edges_from": [], + "edges_to": [], + "id": 5851, + "label": "ECON 280", + "title": "Computation (2)" + }, + { + "dept": "MUS", + "description": "Projects in New Music Performance (1\u20134, 1\u20134, 1\u20134, 1\u20134, 1\u20134, 1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5852, + "label": "MUS 201A-B-C-D-E-F", + "title": "" + }, + { + "dept": "CHEM", + "description": "Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be emphasized. May be coscheduled with CHEM 258. ", + "edges_from": [ + 1552, + 1553, + 1554, + 1555 + ], + "edges_to": [], + "id": 5853, + "label": "CHEM 158", + "title": "Applied Spectroscopy (4)" + }, + { + "dept": "NEU", + "description": "This course will cover \u201cethical\u201d issues in academia, including dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss \u201csurvival\u201d issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. (W)", + "edges_from": [], + "edges_to": [], + "id": 5854, + "label": "NEU 241", + "title": "Ethics and Survival Skills in Academia (3)" + }, + { + "dept": "CHEM", + "description": "A qualitative approach", + "edges_from": [], + "edges_to": [], + "id": 5855, + "label": "CHEM 154", + "title": "Mechanisms of Organic Reactions (4)" + }, + { + "dept": "NEU", + "description": "Psychological processes including attention, perception, and memory will be studied in connection with event-related potentials of the human brain. The interrelations among psychological and physiological events will be explored in order to arrive at unified concepts of human information processing. ", + "edges_from": [ + 5857 + ], + "edges_to": [], + "id": 5856, + "label": "NEU 243", + "title": "Physiological Basis of Human Information (2)" + }, + { + "dept": "NEU", + "description": "", + "edges_from": [], + "edges_to": [ + 5856 + ], + "id": 5857, + "label": "NEU 238", + "title": "" + }, + { + "dept": "CHEM", + "description": "and Properties of Organic Molecules (4)", + "edges_from": [], + "edges_to": [], + "id": 5858, + "label": "CHEM 156", + "title": "Structure" + }, + { + "dept": "CHEM", + "description": "A look at some of nature\u2019s most intriguing molecules and the ability to discover, synthesize, modify, and use them. The role of chemistry in society, and how chemical synthesis\u2014the art and science of constructing molecules\u2014shapes our world. ", + "edges_from": [ + 960, + 953, + 3314, + 2859 + ], + "edges_to": [], + "id": 5859, + "label": "CHEM 151", + "title": "Molecules that Changed the World (4)" + }, + { + "dept": "LTSP", + "description": "A study in depth of selected novelists of Latin America. May be organized around a specific theme or idea that is traced in its development through the narratives. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 5860, + "label": "LTSP 140", + "title": "Latin American Novel (4)" + }, + { + "dept": "LTSP", + "description": "A critical study of some of the major poets of Latin America, focusing on the poet\u2019s central themes, the evolution of poetic style, and the significance of the poetry to the historical context. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 5861, + "label": "LTSP 141", + "title": "Latin American Poetry (4)" + }, + { + "dept": "LTSP", + "description": "Readings and interpretation of the Latin American short story. Focus is primarily nineteenth and/or twentieth century. May be taken for credit two times as topics vary. ", + "edges_from": [ + 82, + 83, + 84 + ], + "edges_to": [], + "id": 5862, + "label": "LTSP 142", + "title": "Latin American Short Story (4)" + }, + { + "dept": "CONT", + "description": "Overview of the history and role of higher education in American society, including a focus on the relationship between society and institutions of higher learning. The course utilizes an interdisciplinary, multicultural perspective reflecting the diversity of the university. Summer Session only.", + "edges_from": [], + "edges_to": [], + "id": 5863, + "label": "CONT 1", + "title": "CI: The University in Society (4)" + }, + { + "dept": "SOCI", + "description": "An examination of a central concern of classical social theory: the relationship between economy and society, with special attention (theoretically and empirically) on the problem of the origins of modern capitalism. The course will investigate the role of technology and economic institutions in society; the influence of culture and politics on economic exchange, production, and consumption; the process of rationalization and the social division of labor; contemporary economic problems and the welfare state. ", + "edges_from": [ + 5864, + 5865 + ], + "edges_to": [ + 5864 + ], + "id": 5864, + "label": "SOCI 121", + "title": "Economy and Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5864 + ], + "id": 5865, + "label": "SOCC 121", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course takes a social network approach to the study of society, examining the complex web of relationships\u2014 platonic, familial, professional, romantic\u2014in which individual behavior is embedded. Special emphasis is placed on the unprecedented opportunities created by contemporary social media (e.g. Facebook, mobile phones, online dating websites) for answering fundamental sociological questions. ", + "edges_from": [], + "edges_to": [], + "id": 5866, + "label": "SOCI 122", + "title": "Social Networks (4)" + }, + { + "dept": "SOCI", + "description": "Immigration from a comparative, historical, and cultural perspective. Topics include: factors influencing amount of immigration and destination of immigrants; varying modes of incorporation of immigrants; immigration policies and rights; the impact of immigration on host economies; refugees; assimilation; and return migration. ", + "edges_from": [ + 5867, + 5868 + ], + "edges_to": [ + 5867 + ], + "id": 5867, + "label": "SOCI 125", + "title": "Sociology of Immigration (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5867 + ], + "id": 5868, + "label": "SOCB 125", + "title": "" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 2253 + ], + "id": 5869, + "label": "SOCB 127", + "title": "" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 2254 + ], + "id": 5870, + "label": "SOCC 126", + "title": "" + }, + { + "dept": "SOCI", + "description": "An examination of historical and social influences on family life. Analyzes contemporary families in the United States, the influences of gender, class, and race, and current issues such as divorce, domestic violence, and the feminization of poverty. ", + "edges_from": [ + 5872, + 5871 + ], + "edges_to": [ + 5871 + ], + "id": 5871, + "label": "SOCI 129", + "title": "The Family (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5871 + ], + "id": 5872, + "label": "SOCC 129", + "title": "" + }, + { + "dept": "BENG/BIMM/CSE/Chem", + "description": "(Cross-listed as BIMM 184, CSE 184, and Chem 184.) This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, hidden Markov models/support vector machines/neural network/profiles, protein structure prediction, functional characterization of proteins, functional genomics/proteomics, metabolic pathways/gene networks. ", + "edges_from": [ + 4576, + 2053, + 582, + 2055, + 2057, + 2059, + 4575 + ], + "edges_to": [], + "id": 5873, + "label": "BENG/BIMM/CSE/Chem 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "BENG/BIMM/CSE/Chem", + "description": "(Cross-listed as BIMM 182, CSE 182, and Chem 182.) This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object-oriented databases, data modeling, and data description. Survey of current biological database with respect to above; implementation of database focused on a biological topic. ", + "edges_from": [ + 17 + ], + "edges_to": [], + "id": 5874, + "label": "BENG/BIMM/CSE/Chem 182", + "title": "Biological Databases (4)" + }, + { + "dept": "HIGR", + "description": "Cross-listed as Communication 225C, Philosophy 209C, and Sociology 255C. A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ", + "edges_from": [], + "edges_to": [], + "id": 5875, + "label": "HIGR 240", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "POLI", + "description": "This course serves as an introduction to the study of international political economy. We will examine the evolution of international economic relations in trade, finance, and economic development and discuss different explanations for its likely causes and consequences.", + "edges_from": [], + "edges_to": [], + "id": 5876, + "label": "POLI 144", + "title": "International Political Economy (4)" + }, + { + "dept": "SOCI", + "description": "Community and Social Change in Africa (4)", + "edges_from": [], + "edges_to": [], + "id": 5877, + "label": "SOCI 188E", + "title": "" + }, + { + "dept": "COMM", + "description": "This course examines the interaction of language and culture in human communication. Beginning with language evolution, the course then discusses a broad range of human languages, including indigenous languages, sign languages, and hybrid languages spoken in urban centers. ", + "edges_from": [ + 540 + ], + "edges_to": [], + "id": 5878, + "label": "COMM 110P", + "title": "LLC: Language and Human Communication (4)" + }, + { + "dept": "SOCI", + "description": "The social structure of the People\u2019s Republic of China since 1949, including a consideration of social organization at various levels: the economy, the policy, the community, and kinship institutions. ", + "edges_from": [ + 5880, + 5879 + ], + "edges_to": [ + 5879 + ], + "id": 5879, + "label": "SOCI 188G", + "title": "Chinese Society (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 5879 + ], + "id": 5880, + "label": "SOCD 188B", + "title": "" + }, + { + "dept": "PSYC", + "description": "Introduction to teaching a psychology course. As an undergraduate instructional apprentice, students will attend the lectures of the course, hold weekly meetings with students of the course, hold weekly meetings with course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. P/NP grades only. May be taken for credit two times. Only four units can be applied toward the psychology minor or major as upper-division psychology elective credit. ", + "edges_from": [], + "edges_to": [], + "id": 5881, + "label": "PSYC 195", + "title": "Instruction in Psychology (4)" + }, + { + "dept": "SOCI", + "description": "In this course we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war. ", + "edges_from": [], + "edges_to": [], + "id": 5882, + "label": "SOCI 188I", + "title": "The Israeli-Palestinian Conflict (4)" + }, + { + "dept": "SOCI", + "description": "Using sociological and historical perspectives, this course examines the origins and demise of apartheid and assesses the progress that has been made since 1994, when apartheid was officially ended. Contrasts of racism in South Africa and the United States. ", + "edges_from": [ + 5883, + 5884 + ], + "edges_to": [ + 5883 + ], + "id": 5883, + "label": "SOCI 188J", + "title": "Change in Modern South Africa (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 5883 + ], + "id": 5884, + "label": "SOCD 188J", + "title": "" + }, + { + "dept": "SOCI", + "description": "Comparative and historical perspectives on", + "edges_from": [], + "edges_to": [], + "id": 5885, + "label": "SOCI 188K", + "title": "American Society (4)" + }, + { + "dept": "COGR", + "description": "Political economy is an older interdisciplinary approach explaining how the state, political environment, law, and economic system influence one another. The course engages classic texts, with attention to issues in the political economy of communication toward the end. ", + "edges_from": [], + "edges_to": [], + "id": 5886, + "label": "COGR 283", + "title": "Political Economy (4)" + }, + { + "dept": "SOCI", + "description": "Course examines theories of social movements and changing patterns of popular protest and contentious mobilization in Latin America since the mid-twentieth century. Case studies include populism, guerrillas, liberation theology and movements of workers, peasants, women, and indigenous groups. ", + "edges_from": [], + "edges_to": [], + "id": 5887, + "label": "SOCI 188M", + "title": "Social Movements in Latin America (4)" + }, + { + "dept": "COGR", + "description": "In this course we review how we might go about studying and thinking about the everyday life both as a concept and as a domain of study. The course will have a balance of both theoretical and empirical work. ", + "edges_from": [], + "edges_to": [], + "id": 5888, + "label": "COGR 281", + "title": "Understanding Everyday Life (4)" + }, + { + "dept": "SOCI", + "description": "We will examine the social, political, and religious factors that affect the nexus of Israeli settlements and Israeli-Arab and Israeli-Palestinian peace making. Special attention will be paid to the period after the 1967 War when these processes begun as well as to alternative resolutions to the conflict. ", + "edges_from": [], + "edges_to": [], + "id": 5889, + "label": "SOCI 188O", + "title": "Settlements and Peacemaking in Israel (4)" + }, + { + "dept": "MATH", + "description": "Optimality conditions, strong duality and the primal function,", + "edges_from": [], + "edges_to": [], + "id": 5890, + "label": "MATH 245B", + "title": "Convex Analysis and Optimization II (4)" + }, + { + "dept": "MATH", + "description": "Convex optimization problems, linear matrix inequalities,", + "edges_from": [], + "edges_to": [], + "id": 5891, + "label": "MATH 245C", + "title": "Convex Analysis and Optimization III (4)" + }, + { + "dept": "LTEN", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5892, + "label": "LTEN 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "HDP", + "description": "HDP 171 provides an introduction to the scholarship and practice in the field of cultural competency. Through relevant readings, associated assignments, and guest speakers from the community, students will acquire the knowledge and skills necessary for doing substantive research in diverse cultural contexts. ", + "edges_from": [], + "edges_to": [], + "id": 5893, + "label": "HDP 171", + "title": "Diverse Communities in a Life-span Approach to Human Development (4)" + }, + { + "dept": "SE", + "description": "Concrete (4)", + "edges_from": [], + "edges_to": [], + "id": 5894, + "label": "SE 151B", + "title": "Design of Prestressed" + }, + { + "dept": "LTEN", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 5895, + "label": "LTEN 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "MATH", + "description": "Second course in an introductory two-quarter sequence on analysis. Topics include: differentiation, the Riemann integral, sequences and series of functions, uniform convergence, Taylor and Fourier series, special functions. (Students may not receive credit for both Math 140B and Math 142B.) ", + "edges_from": [ + 384, + 1046 + ], + "edges_to": [], + "id": 5896, + "label": "MATH 142B", + "title": "Introduction to Analysis II (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 5897, + "label": "Linguistics/Heritage Languages (LIHL) 115F", + "title": "Korean for Korean Speakers (4)" + }, + { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 5898, + "label": "MATH 210C", + "title": "Mathematical" + }, + { + "dept": "ECE", + "description": "Integrated photonic devices and components made using silicon, compound semiconductors, thin-film crystals, and dielectric materials. Design, analysis, and applications of components (e.g., waveguides, micro-resonators, couplers, modulators, lasers, and detectors) for use in communications, sensing, metrology, and other areas. ", + "edges_from": [ + 5900 + ], + "edges_to": [ + 5901 + ], + "id": 5899, + "label": "ECE 241B", + "title": "Integrated Photonics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 5899 + ], + "id": 5900, + "label": "ECE 241A", + "title": "" + }, + { + "dept": "ECE", + "description": "Fresnel, Fraunhofer, and Fourier holography. Analysis of thin and volume holograms, reflection and transmission holograms, color and polarization holograms. Optically recorded and computer-generated holography. Applications to information storage, optical interconnects, 2-D and 3-D display, pattern recognition, and image processing. (Recommended prerequisites: ECE 182 or equivalent.) ", + "edges_from": [ + 5899 + ], + "edges_to": [], + "id": 5901, + "label": "ECE 241C", + "title": "Holographic Optical Elements (4)" + }, + { + "dept": "BENG", + "description": "Biophysical phenomena, transducers, and electronics as related to the design of biomedical instrumentation. Potentiometric and amperometric signals and amplifiers. Biopotentials, membrane potentials, chemical sensors. Electrical safety. Mechanical transducers for displacement, force, and pressure. Temperature sensors. Flow sensors. Light-based instrumentation. ", + "edges_from": [ + 258, + 821, + 922, + 1671 + ], + "edges_to": [], + "id": 5902, + "label": "BENG 186B", + "title": "Principles of Bioinstrumentation Design (4)" + }, + { + "dept": "COGS", + "description": "This course covers recent advances in the understanding of neural mechanisms and computational principles underlying the brain\u2019s ability to make decisions. The role of various factors, as well as their neural encoding, will be considered, e.g., observation noise, reward, risk, internal uncertainty, emotional state, external incentives. ", + "edges_from": [ + 133, + 393, + 682, + 139, + 140, + 141, + 2670, + 369, + 4311, + 2271, + 2334, + 2335 + ], + "edges_to": [], + "id": 5903, + "label": "COGS 180", + "title": "Decision Making in the Brain (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 5904, + "label": "Linguistics/Heritage Languages (LIHL) 115P", + "title": "Korean for Korean Speakers (4)" + }, + { + "dept": "BENG", + "description": "Fundamentals of materials science as applied to bioengineering design. Natural and synthetic polymeric materials. Materials characterization and design. Wound repair, blood clotting, foreign body response, transplantation biology, biocompatibility of materials, tissue engineering. Artificial organs and medical devices. Government regulations. Patenting. Economic impact. Ethical issues. A term project and oral presentation are required. ", + "edges_from": [ + 596, + 1942 + ], + "edges_to": [], + "id": 5905, + "label": "BENG 186A", + "title": "Principles of Biomaterials Design (4)" + }, + { + "dept": "COMM", + "description": "Considers globalization\u2019s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ", + "edges_from": [ + 537, + 538, + 539, + 540 + ], + "edges_to": [], + "id": 5906, + "label": "COMM 179", + "title": "Global Nature/Global Culture (4)" + }, + { + "dept": "COGS", + "description": "This course will provide an interactive and hands-on introduction to rhythms and large-scale electrical potentials of the brain. Topics will include the resonance properties of neurons, rhythmic interactions between neurons, the coordination of activity across large populations of neurons that is measurable in the local field potential (LFP) and electroencephalogram (EEG), the advantages of temporally coordinated neural activity, and relevant insights about the brain and cognitive disorders. ", + "edges_from": [ + 1072, + 2271 + ], + "edges_to": [], + "id": 5907, + "label": "COGS 170", + "title": "Brain Waves Across Scales (4)" + }, + { + "dept": "COGS", + "description": "This course will discuss signal processing, pattern recognition algorithms, and human-computer interaction issues in EEG-based brain-computer interfaces. Other types of brain-computer interfaces will also be discussed. ", + "edges_from": [ + 2336, + 2337, + 2334, + 2335 + ], + "edges_to": [], + "id": 5908, + "label": "COGS 189", + "title": "Brain Computer Interfaces (4)" + }, + { + "dept": "COGS", + "description": "This class will cover a broad spectrum of machine learning algorithms. It builds on students\u2019 previous exposure to machine learning. It covers new artificial intelligence algorithms ranging from topic models as used in the text data analysis to genetic algorithms. ", + "edges_from": [ + 2336, + 2337, + 2334 + ], + "edges_to": [], + "id": 5909, + "label": "COGS 188", + "title": "AI Algorithm and Social Language (4)" + }, + { + "dept": "MGTA", + "description": "Many projects fail to produce valuable results, are over budget, or not finished on time. This course will teach students how to set and manage goals and expectations of the team and of the executive sponsors for business analytics projects. ", + "edges_from": [ + 1328, + 1329, + 1327 + ], + "edges_to": [], + "id": 5910, + "label": "MGTA 460", + "title": "Business Analytics Project Management (2)" + }, + { + "dept": "SE", + "description": "Spatial visualization is the ability to manipulate 2D and 3D shapes in one\u2019s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ", + "edges_from": [], + "edges_to": [], + "id": 5911, + "label": "SE 7", + "title": "Spatial Visualization (1)" + }, + { + "dept": "PHYS", + "description": "Directed research on MS dissertation topic.", + "edges_from": [], + "edges_to": [], + "id": 5912, + "label": "PHYS 295", + "title": "MS Thesis Research in Materials Physics (1\u201312)" + }, + { + "dept": "ERC", + "description": "This is the first course of a two-course elective sequence (ERC 192A and ERC 192B) entitled ERC Global Service and Research. ERC 192A provides an academic introduction to the culture and history of the nation and region selected for this undergraduate academic, practicum, and research experience to prepare students for the subsequent service and research portion (ERC 192B). Note: The course is open to all students. Students must have completed course work in relevant topics, such as regional history, economics, culture. ", + "edges_from": [], + "edges_to": [ + 5914 + ], + "id": 5913, + "label": "ERC 192A", + "title": "Global Service Research Seminar (2)" + }, + { + "dept": "ERC", + "description": "ERC 192B begins with the service learning practicum component over spring break where students dedicate twenty hours to an on-site service project abroad. Returning to UC San Diego, students begin their research seminar pursuing the project they proposed in MMW 192A. The project culminates with a research paper and presentation. ", + "edges_from": [ + 5913 + ], + "edges_to": [], + "id": 5914, + "label": "ERC 192B", + "title": "Global Service Research Seminar (2)" + }, + { + "dept": "GPIM", + "description": "Traders in financial markets can have very different motivations. Some trade for personal reasons, perhaps to invest savings, to buy a house, to pay tuition for a child, or to provide recreational enjoyment. Some might possess value relevant private information about a security, or think they do. Some professional traders serve as counterparties for these other trader types. One of the central themes in this course is that institutions and experience matter, even when no trader possesses value relevant prior information. Students may not receive credit for GPIM 482 and IRGN 490, Governance, Public Administration, and Development.", + "edges_from": [], + "edges_to": [], + "id": 5915, + "label": "GPIM 482", + "title": "Market Microstructure (4)" + }, + { + "dept": "GPIM", + "description": "Game theory in economics is a very serious business. A game is defined by a complete set of rules that govern who plays the game, the decisions they confront, their state of knowledge at decision points, and the outcomes resulting from their decisions. It is a sometimes-maddening field in which intuitively obvious strategies can be inferior, credible threats have no credibility, and flipping a coin might be the best decision. This course offers a careful study of game theory basics with the intention of leading to a coherent set of insights into real-world strategic concerns. Students may not receive credit for GPIM 481 and IRGN 490, Game Theory and Strategy via Economics Experiments.", + "edges_from": [], + "edges_to": [], + "id": 5916, + "label": "GPIM 481", + "title": "Game Theory and Strategy via Economics Experiments (4)" + }, + { + "dept": "GPIM", + "description": "Markets that function well have five features: well defined and protected property rights; trust among market participants; adequate information flows; limited spillover effects from other market participants and stakeholders; and viable competition. These properties will be illustrated with economic experiments and through class discussion. Students may not receive credit for GPIM 480 and IRGN 480.", + "edges_from": [], + "edges_to": [], + "id": 5917, + "label": "GPIM 480", + "title": "Comparative Market Institutions (4)" + }, + { + "dept": "USP", + "description": "This course will explore the different factors and processes that shape a sustainable city. Contemporary green planning techniques and values will be evaluated. The course will also discuss planning, designing, and implementation of sustainable facilities that will reduce sprawl. ", + "edges_from": [], + "edges_to": [], + "id": 5918, + "label": "USP 170", + "title": "Sustainable Planning (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1148 + ], + "id": 5919, + "label": "MAE 9", + "title": "" + }, + { + "dept": "NEU", + "description": "The student will rotate through the general and subspecialty (stroke, epilepsy, headache, nerve, and muscle) neurology clinics based at UC San Diego Medical Center, Perlman, VAMC, and Children\u2019s Hospital. There are lectures and clinical conferences. ", + "edges_from": [ + 5509 + ], + "edges_to": [], + "id": 5920, + "label": "NEU 427", + "title": "Neurology Outpatient (7)" + }, + { + "dept": "NEU", + "description": "Subinterns are responsible for the primary care of hospitalized pediatric neurology patients under direct resident and attending physician supervision. Students will perform procedures such as lumbar puncture and participate in night call, daily teaching round, neurology grand rounds, and journal clubs. ", + "edges_from": [ + 5509 + ], + "edges_to": [], + "id": 5921, + "label": "NEU 426", + "title": "Subintern Pediatric Neurology (7)" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics from philosophers of the sixteenth and seventeenth centuries: Descartes, Spinoza, Leibniz, or Locke. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5922, + "label": "PHIL 214", + "title": "Early Modern Philosophy (4)" + }, + { + "dept": "PSYC", + "description": "This seminar will cover", + "edges_from": [], + "edges_to": [], + "id": 5923, + "label": "PSYC 266", + "title": "Psychology of Reading (4)" + }, + { + "dept": "PHIL", + "description": "A study of the historical development of the analytical movement, with emphasis on major texts. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5924, + "label": "PHIL 218", + "title": "Contemporary Analytical Philosophy (4)" + }, + { + "dept": "HIUS", + "description": "Examining the history of urban riots in the United States since the late nineteenth century. Exploring how different groups of Americans have constructed competing notions of race, gender, labor, and national belonging by participating in street violence.", + "edges_from": [], + "edges_to": [], + "id": 5925, + "label": "HIUS 146", + "title": "Race, Riots, and Violence in the U.S. (4)" + }, + { + "dept": "SE", + "description": "Behaviors of Polymers and Composites (4)", + "edges_from": [], + "edges_to": [], + "id": 5926, + "label": "SE 251B", + "title": "Mechanical" + }, + { + "dept": "SE", + "description": "Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment; material-processing-microstructure interaction; materials selection; form and quality control. Extrusion; injection molding; blow molding; compression molding; thermoforming; casting; foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. Cross-listed with MATS 261A. ", + "edges_from": [], + "edges_to": [], + "id": 5927, + "label": "SE 251A", + "title": "Processing of Polymers and Composites (4)" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems III (4)", + "edges_from": [], + "edges_to": [], + "id": 5928, + "label": "ECE 264C", + "title": "CMOS Analog" + }, + { + "dept": "SOCI", + "description": "This course provides students with tools to conduct original research using qualitative interviews. Students will learn how to prepare, conduct, and analyze qualitative interviews. Special emphasis will be placed on the presentation of research in written form. ", + "edges_from": [ + 5929, + 5930 + ], + "edges_to": [ + 5929 + ], + "id": 5929, + "label": "SOCI 104Q", + "title": "Qualitative Interviewing (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5929 + ], + "id": 5930, + "label": "SOCA 104Q", + "title": "" + }, + { + "dept": "MUS", + "description": "Students will collaborate with faculty and guest artists in", + "edges_from": [], + "edges_to": [], + "id": 5931, + "label": "MUS 200", + "title": "Contemporary Chamber Opera Performance (4)" + }, + { + "dept": "CENG", + "description": "Principles of chemical reactor analysis and", + "edges_from": [], + "edges_to": [], + "id": 5932, + "label": "CENG 113", + "title": "Chemical Reaction Engineering (4)" + }, + { + "dept": "MUS", + "description": "Advanced performance of new music with members of the performance faculty (SONOR). Students taking this course do not need to take MUS 201 that quarter. Enrollment by consent of instructor/director of SONOR. ", + "edges_from": [], + "edges_to": [], + "id": 5933, + "label": "MUS 202", + "title": "Advanced Projects in Performance (1\u20134)" + }, + { + "dept": "MUS", + "description": "The purpose of this seminar is to bring in the entire population of the graduate composition program (all students and faculty) for in-depth discussion of critical issues in music theory and composition. Each meeting will feature a formal presentation by either a student, faculty member, or visitor, followed by lively and challenging debate on relevant issues. ", + "edges_from": [], + "edges_to": [], + "id": 5934, + "label": "MUS 204", + "title": "Focus on Composition (2)" + }, + { + "dept": "MUS", + "description": "Meets on a biweekly basis to facilitate presentations by advanced students and invited guests and to encourage in-depth discussion between students, faculty, and visitors about theoretical and artistic issues of interest. Participation is required of all enrolled IS students until advanced to candidacy. Others are welcome to participate. ", + "edges_from": [], + "edges_to": [], + "id": 5935, + "label": "MUS 205", + "title": "Focus on Integrative Studies (2)" + }, + { + "dept": "MUS", + "description": "Seminars growing out of current faculty interests. The approach tends to be speculative and includes individual projects or papers as well as assigned readings. In the past, such areas as new instrumental and vocal resources, mixed media, and compositional linguistics have been offered. ", + "edges_from": [], + "edges_to": [], + "id": 5936, + "label": "MUS 206", + "title": "Experimental Studies Seminar (4)" + }, + { + "dept": "MUS", + "description": "Seminars on subject areas relating to the established dimensions of music and in which theoreticians have produced a substantial body of work. These include studies in analysis, timbre, rhythm, notation, and psychoacoustics. Offerings vary depending on faculty availability and interest. Analytical paper required. ", + "edges_from": [], + "edges_to": [], + "id": 5937, + "label": "MUS 207", + "title": "Theoretical Studies Seminar (4)" + }, + { + "dept": "MUS", + "description": "Advanced integrated studies in music theory; composition and styles study through analysis and performance. This course is intended primarily for doctoral students and may be taken by MA students only with special approval of MA adviser and course instructor. A major research or analytical publishable paper required. ", + "edges_from": [], + "edges_to": [], + "id": 5938, + "label": "MUS 209", + "title": "Advanced Music Theory and Practice (4)" + }, + { + "dept": "HIUS", + "description": "An examination of urban and regional planning as well as piecemeal change in the built environment. Topics include urban and suburban housing, work environments, public spaces, transportation and utility infrastructures, utopianism.", + "edges_from": [], + "edges_to": [], + "id": 5939, + "label": "HIUS 143", + "title": "The Built Environment in the Twentieth Century (4)" + }, + { + "dept": "HIUS", + "description": "This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.", + "edges_from": [], + "edges_to": [], + "id": 5940, + "label": "HIUS 277", + "title": "Asian American Historiography (4)" + }, + { + "dept": "POLI", + "description": "Selected topics to introduce students to current issues and trends in political science. May not be used to fulfill any major or minor requirements in political science. P/NP grades only. May be taken for credit four times.", + "edges_from": [], + "edges_to": [], + "id": 5941, + "label": "POLI 90", + "title": "Undergraduate Seminar (4)" + }, + { + "dept": "FMPH", + "description": "Biostatistics elective courses will be taught under this course heading. Courses will have a varying focus each year/quarter. Topics will include random field theory and image analysis, advanced statistical computing, Bayesian methods, and others. May be taken for credit up to three times. ", + "edges_from": [ + 2533, + 2534 + ], + "edges_to": [], + "id": 5942, + "label": "FMPH 242", + "title": "Advanced Topics in Biostatistics (4)" + }, + { + "dept": "LATI", + "description": "Serving as team leaders, students design and execute analysis of data they have collected in Mexican and US field research sites, and coauthor a publishable article. Methods for organizing field data, advanced techniques of quantitative and qualitative data analysis, and report preparation conventions are covered. ", + "edges_from": [ + 977 + ], + "edges_to": [], + "id": 5943, + "label": "LATI 222C", + "title": "Field Research Methods for Migration Studies: Data Analysis (4)" + }, + { + "dept": "NANO", + "description": "Physics and chemistry of heterogeneous catalysis; adsorption-desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with CENG 253. Students may not receive credit for both NANO 259 and CENG 253. ", + "edges_from": [], + "edges_to": [], + "id": 5944, + "label": "NANO 259", + "title": "Heterogeneous Catalysis (4)" + }, + { + "dept": "BENG", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 5945, + "label": "BENG 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "BIMM", + "description": "(Cross-listed with Psych 133; however, biology majors must take the course as BIMM 116.) This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. ", + "edges_from": [ + 369, + 954, + 370 + ], + "edges_to": [], + "id": 5946, + "label": "BIMM 116", + "title": "Circadian Rhythms\u2014Biological Clocks (4)" + }, + { + "dept": "Jewish", + "description": "Directed group study on a topic not generally included in the regular curriculum. Student must make arrangements with individual faculty members. (P/NP only)", + "edges_from": [], + "edges_to": [], + "id": 5947, + "label": "Jewish Studies 198", + "title": "Directed Group Study in Jewish Studies (1-4)" + }, + { + "dept": "MATH", + "description": "(Cross-listed with EDS 30.) Revisit students\u2019 learning", + "edges_from": [], + "edges_to": [], + "id": 5948, + "label": "MATH 95", + "title": "Introduction to Teaching Math (2)" + }, + { + "dept": "ANTH", + "description": "Graduate students will visit key sites representing the three major approaches to studying human origins: fossils evidence, comparison with nonhumans, and study of human foragers. Visits will be combined with lectures, discussion, and brief training in conducting relevant field research. ", + "edges_from": [], + "edges_to": [], + "id": 5949, + "label": "ANTH 289S", + "title": "Tanzania Anthropogeny Study Tour (1\u20134)" + }, + { + "dept": "BIMM", + "description": "Course considers problems in biology that were solved using quantitative biology approaches. Problems will range from the molecular to the population level. Students will learn about the scientific method and process, and how to apply it. ", + "edges_from": [ + 954 + ], + "edges_to": [], + "id": 5950, + "label": "BIMM 140", + "title": "Quantitative Principles in Biology (4)" + }, + { + "dept": "BIMM", + "description": "Bioinformatics is the analysis of big data in the biosciences. This course provides a hands-on introduction to the computer-based analysis of biomolecular and genomic data. Major topic areas include advances in sequencing technologies, genome resequencing and variation analysis, transcriptomics, structural bioinformatics, and personal genomics. This course will utilize free, web-based bioinformatics tools and no programming skills are required. ", + "edges_from": [ + 3944, + 954, + 956, + 957 + ], + "edges_to": [], + "id": 5951, + "label": "BIMM 143", + "title": "Bioinformatics Laboratory (4)" + }, + { + "dept": "BIMM", + "description": "Course will provide students with the computational tools and problem-solving skills that are increasingly important to the biosciences. Students learn to program in a modern general-purpose programming language and write their own programs to explore a variety of applications in biology including simulations, sequence analysis, phylogenetics, among others. Students will use their own laptop computers. ", + "edges_from": [ + 954, + 1013 + ], + "edges_to": [], + "id": 5952, + "label": "BIMM 149", + "title": "Computation for Biologists (4)" + }, + { + "dept": "INTL", + "description": "Open only to seniors who have completed INTL 190H. Completion of an honors thesis under the supervision of a member of the International Studies faculty. ", + "edges_from": [ + 1464 + ], + "edges_to": [], + "id": 5953, + "label": "INTL 196H", + "title": "International Studies Honors Program (4)" + }, + { + "dept": "TWS", + "description": "Third World Literatures (4-4-4-4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 5954, + "label": "TWS 21-22-23-24-25-26", + "title": "" + }, + { + "dept": "MATH", + "description": "Complex numbers and functions. Cauchy theorem and its applications, calculus of residues, expansions of analytic functions, analytic continuation, conformal mapping and Riemann mapping theorem, harmonic functions. Dirichlet principle, Riemann surfaces. ", + "edges_from": [ + 384, + 386 + ], + "edges_to": [], + "id": 5955, + "label": "MATH 220A-B-C", + "title": "Complex Analysis (4-4-4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which general topics of interest in electrical and computer engineering will be presented by visiting or resident faculty members. May be taken for credit six times provided each course is a different topic. ", + "edges_from": [], + "edges_to": [], + "id": 5956, + "label": "ECE 289", + "title": "Special Topics in Electrical and Computer Engineering (4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in computer engineering will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 5957, + "label": "ECE 284", + "title": "Special Topics in Computer Engineering (4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in signal and image processing or robotics and control systems will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 5958, + "label": "ECE 285", + "title": "Special Topics in Signal and Image Processing/Robotics and Control Systems (4)" + }, + { + "dept": "ECE", + "description": "Class discusses both fundamental and state-of-the-art research topics in computational statistics and machine learning. Topics vary based upon current research and have included: nonparametric Bayesian models; sampling methods for inference in graphical models; Markov Chain Monte Carlo (MCMC) methods. ", + "edges_from": [], + "edges_to": [], + "id": 5959, + "label": "ECE 286", + "title": "State-of-the-Art Topics in Computational Statistics and Machine Learning (4)" + }, + { + "dept": "ECE", + "description": "in Communication Theory and Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 5960, + "label": "ECE 287", + "title": "Special Topics" + }, + { + "dept": "ECE", + "description": "in Electronic Devices and Materials/Applied Physics (4)", + "edges_from": [], + "edges_to": [], + "id": 5961, + "label": "ECE 280", + "title": "Special Topics" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in nanoscience and nanotechnology will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 5962, + "label": "ECE 281", + "title": "Special Topics in Nanoscience/Nanotechnology (4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in photonics, optoelectronic materials, devices, systems, and applications will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 5963, + "label": "ECE 282", + "title": "Special Topics in Photonics/Applied Optics (4)" + }, + { + "dept": "ECE", + "description": "in Electronic Circuits and Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 5964, + "label": "ECE 283", + "title": "Special Topics" + }, + { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1B. ", + "edges_from": [ + 4874, + 4875 + ], + "edges_to": [], + "id": 5965, + "label": "Linguistics/German (LIGM) 1BX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 135, + 136, + 139, + 140, + 141, + 2546, + 923 + ], + "edges_to": [ + 2819 + ], + "id": 5966, + "label": "MAE 143A", + "title": "" + }, + { + "dept": "HILD", + "description": "A year-long lower-division course that will provide students with a background in United States history from colonial times to the present, concentrating on social, economic, and political developments. (Satisfies Muir College humanities requirement and American History and Institutions requirement.)", + "edges_from": [], + "edges_to": [], + "id": 5967, + "label": "HILD 2A-B-C", + "title": "United States (4-4-4)" + }, + { + "dept": "TDGR", + "description": "This course, designed to meet the needs of", + "edges_from": [], + "edges_to": [], + "id": 5968, + "label": "TDGR 500", + "title": "Introduction to Apprentice Teaching (4)" + }, + { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. ", + "edges_from": [], + "edges_to": [], + "id": 5969, + "label": "ANSC 105", + "title": "Global Health and Inequality (4)" + }, + { + "dept": "LTCS", + "description": "This course examines the cultural practices of revolutionary societies from the French Revolution to present time. It focuses on China, Cuba, Russia, and Iran and explores how various cultural practices are produced in the course of building revolutionary societies.", + "edges_from": [], + "edges_to": [], + "id": 5970, + "label": "LTCS 134", + "title": "Culture and Revolution (4)" + }, + { + "dept": "LTCS", + "description": "Topics in Social Identities and the Media (4)", + "edges_from": [], + "edges_to": [], + "id": 5971, + "label": "LTCS 132", + "title": "Special" + }, + { + "dept": "LTCS", + "description": "Studies of cultural dimensions of immigration and citizenship. This course examines the diverse cultural texts\u2014literature, law, film, music, the televisual images, etc., that both shape and are shaped by immigration and the idea of citizenship in different national and historical contexts.", + "edges_from": [], + "edges_to": [], + "id": 5972, + "label": "LTCS 133", + "title": "Globalization and Culture (4)" + }, + { + "dept": "LTIT", + "description": "Tutorial; individual guided reading in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5973, + "label": "LTIT 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTIT", + "description": "Directed group study in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5974, + "label": "LTIT 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "NANO", + "description": "Fundamentals of photovoltaic energy conversion; limiting efficiencies, loss mechanisms. Nanoscale effects in semiconductor, thin film, and organic photovoltaics. Emphasis on emerging nanotechnologies including nanowires, heterostructures, hybrid materials, quantum dots, transparent conducting materials, and plasmonics.", + "edges_from": [], + "edges_to": [], + "id": 5975, + "label": "NANO 269", + "title": "Engineering Solar Cells at the Nanoscale (4)" + }, + { + "dept": "NANO", + "description": "The structure and operational principles of different nature biomotors will be discussed. Related bio-inspired efforts aimed at developing artificial nanomotors will also be covered, along with the prospects of using biomotors and synthetic nanomotors in engineering environments.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5976, + "label": "NANO 244", + "title": "Nanomachines and Nanorobots (4)" + }, + { + "dept": "LTIT", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 5977, + "label": "LTIT 192", + "title": "Senior Seminar in Literatures in Italian (1)" + }, + { + "dept": "MUS", + "description": "Aggrieved groups generate distinctive cultural expressions by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States. (Cross-listed with ETHN 108.) ", + "edges_from": [], + "edges_to": [], + "id": 5978, + "label": "MUS 151", + "title": "Race, Culture, and Social Change (4)" + }, + { + "dept": "CHEM", + "description": "This seminar connects first-year students with the chemistry community (peers, staff, faculty, and other researchers) as they explore learning resources, study strategies, professional development, and current areas of active research. With an emphasis on academic and career planning, the series will feature guest lectures by UC San Diego faculty and staff, as well as industrial scientists and representatives from professional organizations such as the American Chemical Society (ACS). P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 5979, + "label": "CHEM 1", + "title": "The Scope of Chemistry and Biochemistry (1)" + }, + { + "dept": "GPIM", + "description": "An analysis of the risk/return characteristics of different assets as perceived by different investors and their implications for security price behavior, emphasizing real world capital market behavior. International aspects include the role of exchange rate risk and international diversification. Renumbered from IRGN 422. Students may not receive credit for GPIM 422 and IRGN 422.", + "edges_from": [], + "edges_to": [], + "id": 5980, + "label": "GPIM 422", + "title": "Investments (4)" + }, + { + "dept": "VIS", + "description": "A critical, art historical look at the world\u2019s", + "edges_from": [], + "edges_to": [], + "id": 5981, + "label": "VIS 122F", + "title": "Leonardo\u2019s La Gioconda (4)" + }, + { + "dept": "TDHT", + "description": "This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip-hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for both TDHT 120 and ETHN 163G. ", + "edges_from": [], + "edges_to": [], + "id": 5982, + "label": "TDHT 120", + "title": "Indigenous Theatre and Performance (4)" + }, + { + "dept": "AWP", + "description": "AWP 1 provides underprepared writers the opportunity to develop their critical thinking and writing abilities. At the end of AWP 1, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 1. Students may take AWP 1 and ELWR 1 a combined total of three times to earn a passing grade of C or better to satisfy the UC Entry Level Writing Requirement.", + "edges_from": [], + "edges_to": [], + "id": 5983, + "label": "AWP 1", + "title": "Analytical Writing (4)" + }, + { + "dept": "MATH", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 5984, + "label": "MATH 99R", + "title": "Independent Study (1)" + }, + { + "dept": "CENG", + "description": "Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with\u00a0NANO\u00a0114. Students may not receive credit for both CENG 114 and NANO 114. ", + "edges_from": [ + 219, + 139, + 221, + 126 + ], + "edges_to": [], + "id": 5985, + "label": "CENG 114", + "title": "Probability and Statistical Methods for Engineers (4)" + }, + { + "dept": "VIS", + "description": "This course will explore photography as art and its long and complicated relationship with painting. Students will learn and be encouraged to experiment with the medium formally and conceptually. From studio and lighting techniques to collage, montage, constructed realities, installations, and projections. Program or materials fees may apply. Two production-course limitation. ", + "edges_from": [ + 568, + 567 + ], + "edges_to": [], + "id": 5986, + "label": "VIS 168", + "title": "Pictorialism and Constructed Reality (4)" + }, + { + "dept": "FMPH", + "description": "Practicum participants will interpret and contextualize findings from the experiential learning program planned in 180A and completed during 180B. Oral and written presentations will focus on disseminating public health information in diverse formats. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180C. Students may not receive credit for FPMU 180C and FMPH 180C. ", + "edges_from": [ + 5988 + ], + "edges_to": [], + "id": 5987, + "label": "FMPH 180C", + "title": "Public Health Advanced Practicum III (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [ + 5987 + ], + "id": 5988, + "label": "FMPH 180B", + "title": "" + }, + { + "dept": "FMPH", + "description": "Emphasizes key public health concepts including program planning, research design, and written/oral communication skills. Practicum done in combination with research, internship, or overseas experiences, completed after FMPH 180A. Open to public health majors with upper-division standing.Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180A. Students may not receive credit for FPMU 180A and FMPH 180A. ", + "edges_from": [ + 1024, + 1026, + 1027, + 1028, + 1029 + ], + "edges_to": [], + "id": 5989, + "label": "FMPH 180A", + "title": "Public Health Advanced Practicum I (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in cardiac bioengineering. ", + "edges_from": [ + 66 + ], + "edges_to": [ + 5758 + ], + "id": 5990, + "label": "BENG 148A", + "title": "Design Development in Cardiac Bioengineering (3)" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems II (4)", + "edges_from": [], + "edges_to": [], + "id": 5991, + "label": "ECE 264B", + "title": "CMOS Analog" + }, + { + "dept": "NANO", + "description": "The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. Cross-listed with MATS 201A, MAE 271A and ECE 238A.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5992, + "label": "NANO 265", + "title": "Thermodynamics of Solids (4)" + }, + { + "dept": "HIEA", + "description": "Through primary and secondary readings on the lives of individual prominent and ordinary men and women from China\u2019s past, we explore the relation of the individual to social structures and accepted norms; personal relationships; and the creation of historical sources. +", + "edges_from": [], + "edges_to": [], + "id": 5993, + "label": "HIEA 129", + "title": "Faces of the Chinese Past (4)" + } + ] + } + } + } +} \ No newline at end of file diff --git a/data/ucsd_graph_data.json b/data/ucsd_graph_data.json index d39aed5..02b6e1c 100644 --- a/data/ucsd_graph_data.json +++ b/data/ucsd_graph_data.json @@ -1,25038 +1 @@ -[ - { - "id": 0, - "label": "CSE 105" - }, - { - "id": 1, - "label": "CSE 12" - }, - { - "id": 2, - "label": "CSE 21" - }, - { - "id": 3, - "label": "CSE 20" - }, - { - "id": 4, - "label": "Math 184" - }, - { - "id": 5, - "label": "SENIOR_STANDING" - }, - { - "id": 6, - "label": "CSE 15L" - }, - { - "id": 7, - "label": "Math 100A" - }, - { - "id": 8, - "label": "Math 109" - }, - { - "id": 9, - "label": "Math 103A" - }, - { - "id": 10, - "label": "Math 15A" - }, - { - "id": 11, - "label": "CSE 107" - }, - { - "id": 12, - "label": "OTHER_STUDENTS_ALLOWABLE_AS_SPACE_PERMITS" - }, - { - "id": 13, - "label": "CSE 101" - }, - { - "id": 14, - "label": "Math 184A" - }, - { - "id": 15, - "label": "Math 15B" - }, - { - "id": 16, - "label": "Math 166" - }, - { - "id": 17, - "label": "Math 154" - }, - { - "id": 18, - "label": "GRADUATE_STANDING" - }, - { - "id": 19, - "label": "Math 176" - }, - { - "id": 20, - "label": "CSE 100" - }, - { - "id": 21, - "label": "CSE 103" - }, - { - "id": 22, - "label": "GLBH 20" - }, - { - "id": 23, - "label": "POLI 244" - }, - { - "id": 24, - "label": "PHIL 33" - }, - { - "id": 25, - "label": "PHIL 32" - }, - { - "id": 26, - "label": "PHIL 31" - }, - { - "id": 27, - "label": "HIEU 172/272" - }, - { - "id": 28, - "label": "DEPARTMENT_APPROVAL" - }, - { - "id": 29, - "label": "PHIL 35" - }, - { - "id": 30, - "label": "PHYS 164" - }, - { - "id": 31, - "label": "Physics 160" - }, - { - "id": 32, - "label": "Physics 2A" - }, - { - "id": 33, - "label": "Physics 162" - }, - { - "id": 34, - "label": "Physics 2C" - }, - { - "id": 35, - "label": "Physics 2B" - }, - { - "id": 36, - "label": "Physics 2D" - }, - { - "id": 37, - "label": "Physics 161" - }, - { - "id": 38, - "label": "Physics 163" - }, - { - "id": 39, - "label": "Physics 4E" - }, - { - "id": 40, - "label": "Physics 4D" - }, - { - "id": 41, - "label": "Physics 4C" - }, - { - "id": 42, - "label": "Physics 4B" - }, - { - "id": 43, - "label": "Physics 4A" - }, - { - "id": 44, - "label": "PHYS 163" - }, - { - "id": 45, - "label": "PHYS 162" - }, - { - "id": 46, - "label": "PHYS 161" - }, - { - "id": 47, - "label": "PHYS 160" - }, - { - "id": 48, - "label": "CSE 222B" - }, - { - "id": 49, - "label": "CSE 222A" - }, - { - "id": 50, - "label": "CSE 123A" - }, - { - "id": 51, - "label": "INSTRUCTOR_APPROVAL" - }, - { - "id": 52, - "label": "CAT 199" - }, - { - "id": 53, - "label": "CAT 1" - }, - { - "id": 54, - "label": "FOR_TRANSFER_STUDENTS" - }, - { - "id": 55, - "label": "CAT 3" - }, - { - "id": 56, - "label": "CAT 2" - }, - { - "id": 57, - "label": "UPPER_DIVISION_STANDING" - }, - { - "id": 58, - "label": "CAT 198" - }, - { - "id": 59, - "label": "CAT 195" - }, - { - "id": 60, - "label": "CAT 197" - }, - { - "id": 61, - "label": "CAT 192" - }, - { - "id": 62, - "label": "SE 198" - }, - { - "id": 63, - "label": "SE 199" - }, - { - "id": 64, - "label": "SE 195" - }, - { - "id": 65, - "label": "SE 197" - }, - { - "id": 66, - "label": "BENG 126A" - }, - { - "id": 67, - "label": "BIOENGINEERING_OR_BIOTECH_MAJORS_ONLY" - }, - { - "id": 68, - "label": "BENG 187B" - }, - { - "id": 69, - "label": "BENG 126B" - }, - { - "id": 70, - "label": "BENG 187C" - }, - { - "id": 71, - "label": "ANTH 23" - }, - { - "id": 72, - "label": "ANTH 21" - }, - { - "id": 73, - "label": "SOCI 154" - }, - { - "id": 74, - "label": "SOCC 154" - }, - { - "id": 75, - "label": "SOCI 155" - }, - { - "id": 76, - "label": "SOCC 155" - }, - { - "id": 77, - "label": "SOCI 156" - }, - { - "id": 78, - "label": "SOCC 156" - }, - { - "id": 79, - "label": "SOCI 157" - }, - { - "id": 80, - "label": "SOCC 157" - }, - { - "id": 81, - "label": "SOCI 150" - }, - { - "id": 82, - "label": "SOCC 150" - }, - { - "id": 83, - "label": "GPPA 405" - }, - { - "id": 84, - "label": "SOCI 152" - }, - { - "id": 85, - "label": "SOCC 152" - }, - { - "id": 86, - "label": "Linguistics/Heritage Languages (LIHL) 132F" - }, - { - "id": 87, - "label": "SOCI 158" - }, - { - "id": 88, - "label": "SOCD 158" - }, - { - "id": 89, - "label": "SOCI 159" - }, - { - "id": 90, - "label": "Linguistics/Heritage Languages (LIHL) 132P" - }, - { - "id": 91, - "label": "Linguistics/Heritage Languages (LIHL) 132W" - }, - { - "id": 92, - "label": "HDP 160" - }, - { - "id": 93, - "label": "MATH 260B" - }, - { - "id": 94, - "label": "Math 260A" - }, - { - "id": 95, - "label": "MATH 260A" - }, - { - "id": 96, - "label": "POLI 130B" - }, - { - "id": 97, - "label": "SE 99H" - }, - { - "id": 98, - "label": "REQUIRES_FIRST_YEAR_STUDENT" - }, - { - "id": 99, - "label": "ANTH 147" - }, - { - "id": 100, - "label": "HITO 103S" - }, - { - "id": 101, - "label": "HIUS 156D" - }, - { - "id": 102, - "label": "MAE 110" - }, - { - "id": 103, - "label": "MAE 110A" - }, - { - "id": 104, - "label": "MAE 11" - }, - { - "id": 105, - "label": "ANSC 191GS" - }, - { - "id": 106, - "label": "ANSC 148" - }, - { - "id": 107, - "label": "ANTH 103" - }, - { - "id": 108, - "label": "ANSC 155" - }, - { - "id": 109, - "label": "ANTH 1" - }, - { - "id": 110, - "label": "ANSC 164" - }, - { - "id": 111, - "label": "ANSC 121" - }, - { - "id": 112, - "label": "MAE 118" - }, - { - "id": 113, - "label": "CENG 101A" - }, - { - "id": 114, - "label": "MAE 101A" - }, - { - "id": 115, - "label": "MAE 119" - }, - { - "id": 116, - "label": "PHIL 207" - }, - { - "id": 117, - "label": "PHIL 200" - }, - { - "id": 118, - "label": "PHIL 202" - }, - { - "id": 119, - "label": "PHIL 208" - }, - { - "id": 120, - "label": "CLRE 257" - }, - { - "id": 121, - "label": "CLRE 251" - }, - { - "id": 122, - "label": "CLRE 256" - }, - { - "id": 123, - "label": "CLRE 250" - }, - { - "id": 124, - "label": "CLRE 255" - }, - { - "id": 125, - "label": "CLRE 254" - }, - { - "id": 126, - "label": "CLRE 253" - }, - { - "id": 127, - "label": "CLRE 252" - }, - { - "id": 128, - "label": "MUS 234" - }, - { - "id": 129, - "label": "REQUIRES_AUDITION" - }, - { - "id": 130, - "label": "MUS 230" - }, - { - "id": 131, - "label": "CLRE 259" - }, - { - "id": 132, - "label": "ADMITTED_MAS_CLINICAL_RESEARCH_PROGRAM" - }, - { - "id": 133, - "label": "CLRE 258" - }, - { - "id": 134, - "label": "Linguistics/Heritage Languages (LIHL) 114F" - }, - { - "id": 135, - "label": "VIS 281" - }, - { - "id": 136, - "label": "VIS 280" - }, - { - "id": 137, - "label": "Linguistics/Heritage Languages (LIHL) 114W" - }, - { - "id": 138, - "label": "ECE 240A" - }, - { - "id": 139, - "label": "ECE 240C" - }, - { - "id": 140, - "label": "ECE 240B" - }, - { - "id": 141, - "label": "HIUS 180/ETHN" - }, - { - "id": 142, - "label": "BIMM 116B" - }, - { - "id": 143, - "label": "BENG 267" - }, - { - "id": 144, - "label": "NANO 102" - }, - { - "id": 145, - "label": "Math 20D" - }, - { - "id": 146, - "label": "Chem 6C" - }, - { - "id": 147, - "label": "NANO 101" - }, - { - "id": 148, - "label": "NANO 106" - }, - { - "id": 149, - "label": "PHYS 2D" - }, - { - "id": 150, - "label": "TDDM 100" - }, - { - "id": 151, - "label": "TDDM 1" - }, - { - "id": 152, - "label": "TDDM 101" - }, - { - "id": 153, - "label": "CENG 15" - }, - { - "id": 154, - "label": "Math 20C" - }, - { - "id": 155, - "label": "Chem 6B" - }, - { - "id": 156, - "label": "MAE 8" - }, - { - "id": 157, - "label": "Phys 2B" - }, - { - "id": 158, - "label": "NANO 15" - }, - { - "id": 159, - "label": "LTCS 120" - }, - { - "id": 160, - "label": "LTCS 125" - }, - { - "id": 161, - "label": "ECON 222A-B-C" - }, - { - "id": 162, - "label": "ANSC 125GS" - }, - { - "id": 163, - "label": "HIEU 154XL" - }, - { - "id": 164, - "label": "CSE 203A" - }, - { - "id": 165, - "label": "CSE 202" - }, - { - "id": 166, - "label": "LTWR 8B" - }, - { - "id": 167, - "label": "MCWP 40" - }, - { - "id": 168, - "label": "MCWP 50" - }, - { - "id": 169, - "label": "WARR 11B" - }, - { - "id": 170, - "label": "WCWP 10A" - }, - { - "id": 171, - "label": "WARR 11A" - }, - { - "id": 172, - "label": "WCWP 10B" - }, - { - "id": 173, - "label": "DOC 3" - }, - { - "id": 174, - "label": "DOC 2" - }, - { - "id": 175, - "label": "HUM 1" - }, - { - "id": 176, - "label": "HUM 2" - }, - { - "id": 177, - "label": "MMW 12" - }, - { - "id": 178, - "label": "MMW 13" - }, - { - "id": 179, - "label": "LTWR 8C" - }, - { - "id": 180, - "label": "LTWR 8A" - }, - { - "id": 181, - "label": "BIOM 231" - }, - { - "id": 182, - "label": "BIOM 232" - }, - { - "id": 183, - "label": "BIOM 233" - }, - { - "id": 184, - "label": "BIOM 234" - }, - { - "id": 185, - "label": "BICD 1" - }, - { - "id": 186, - "label": "BICD 2" - }, - { - "id": 187, - "label": "BICD 3" - }, - { - "id": 188, - "label": "BICD 4" - }, - { - "id": 189, - "label": "BIOM 235" - }, - { - "id": 190, - "label": "HIGR" - }, - { - "id": 191, - "label": "ENVR 87" - }, - { - "id": 192, - "label": "ECON 121" - }, - { - "id": 193, - "label": "Econ 120C" - }, - { - "id": 194, - "label": "ECON 122" - }, - { - "id": 195, - "label": "Econ 120B" - }, - { - "id": 196, - "label": "Math 31AH" - }, - { - "id": 197, - "label": "Math 181B" - }, - { - "id": 198, - "label": "Math 18" - }, - { - "id": 199, - "label": "ECON 125" - }, - { - "id": 200, - "label": "CSE 599" - }, - { - "id": 201, - "label": "HIEU 260" - }, - { - "id": 202, - "label": "SE 192" - }, - { - "id": 203, - "label": "ANSC 158" - }, - { - "id": 204, - "label": "ECON 263" - }, - { - "id": 205, - "label": "Econ 200B" - }, - { - "id": 206, - "label": "Econ 200C" - }, - { - "id": 207, - "label": "Econ 200A" - }, - { - "id": 208, - "label": "ECON 262" - }, - { - "id": 209, - "label": "ECON 261" - }, - { - "id": 210, - "label": "Econ 220C" - }, - { - "id": 211, - "label": "ECON 260" - }, - { - "id": 212, - "label": "ECON 267" - }, - { - "id": 213, - "label": "ECON 266" - }, - { - "id": 214, - "label": "ECON 265" - }, - { - "id": 215, - "label": "ECON 264" - }, - { - "id": 216, - "label": "EDS 369B" - }, - { - "id": 217, - "label": "EDS 369A" - }, - { - "id": 218, - "label": "MUS 95" - }, - { - "id": 219, - "label": "Linguistics/Arabic (LIAB) 1BX" - }, - { - "id": 220, - "label": "LIAB 1A" - }, - { - "id": 221, - "label": "LIAB 1AX" - }, - { - "id": 222, - "label": "HIEU 176/276" - }, - { - "id": 223, - "label": "ANSC 156" - }, - { - "id": 224, - "label": "LTSP 162" - }, - { - "id": 225, - "label": "LTSP 50A" - }, - { - "id": 226, - "label": "LTSP 50B" - }, - { - "id": 227, - "label": "LTSP 50C" - }, - { - "id": 228, - "label": "LTSP 160" - }, - { - "id": 229, - "label": "LTSP 166" - }, - { - "id": 230, - "label": "MUS 127" - }, - { - "id": 231, - "label": "MUS 126" - }, - { - "id": 232, - "label": "MATH 217" - }, - { - "id": 233, - "label": "MATH 218" - }, - { - "id": 234, - "label": "POLI 168" - }, - { - "id": 235, - "label": "POLI 165" - }, - { - "id": 236, - "label": "POLI 163" - }, - { - "id": 237, - "label": "POLI 162" - }, - { - "id": 238, - "label": "PSYC 173" - }, - { - "id": 239, - "label": "PSYC 172" - }, - { - "id": 240, - "label": "PSYC 171" - }, - { - "id": 241, - "label": "PSYC 181" - }, - { - "id": 242, - "label": "PSYC 106" - }, - { - "id": 243, - "label": "PSYC 2" - }, - { - "id": 244, - "label": "PSYC 170" - }, - { - "id": 245, - "label": "PSYC 176" - }, - { - "id": 246, - "label": "SE 501" - }, - { - "id": 247, - "label": "PSYC 174" - }, - { - "id": 248, - "label": "PSYC 179" - }, - { - "id": 249, - "label": "PSYC 178" - }, - { - "id": 250, - "label": "MATH 247A" - }, - { - "id": 251, - "label": "MATH 247B" - }, - { - "id": 252, - "label": "Math 247A" - }, - { - "id": 253, - "label": "MAE 87" - }, - { - "id": 254, - "label": "MATH 140A" - }, - { - "id": 255, - "label": "Math 31CH" - }, - { - "id": 256, - "label": "MATH 140B" - }, - { - "id": 257, - "label": "Math 140A" - }, - { - "id": 258, - "label": "MATH 140C" - }, - { - "id": 259, - "label": "Math 140B" - }, - { - "id": 260, - "label": "MAE 271C" - }, - { - "id": 261, - "label": "MAE 271B" - }, - { - "id": 262, - "label": "MAE 271A" - }, - { - "id": 263, - "label": "NEU 221" - }, - { - "id": 264, - "label": "NEU 225" - }, - { - "id": 265, - "label": "HILA 171/271" - }, - { - "id": 266, - "label": "EDS 287A" - }, - { - "id": 267, - "label": "EDS 287C" - }, - { - "id": 268, - "label": "EDS 287B" - }, - { - "id": 269, - "label": "BICD 140" - }, - { - "id": 270, - "label": "BIBC 100" - }, - { - "id": 271, - "label": "BIMM 100" - }, - { - "id": 272, - "label": "BICD 100" - }, - { - "id": 273, - "label": "ESYS 87" - }, - { - "id": 274, - "label": "BICD 145" - }, - { - "id": 275, - "label": "HINE 170/270" - }, - { - "id": 276, - "label": "SE 253A" - }, - { - "id": 277, - "label": "SE 253B" - }, - { - "id": 278, - "label": "ANSC" - }, - { - "id": 279, - "label": "PHIL 204A" - }, - { - "id": 280, - "label": "HILA 124A" - }, - { - "id": 281, - "label": "MUIR 1" - }, - { - "id": 282, - "label": "TDGR 299" - }, - { - "id": 283, - "label": "ADMITTED_MFA_THEATRE_PROGRAM" - }, - { - "id": 284, - "label": "TDGR 292" - }, - { - "id": 285, - "label": "PHD_STANDING" - }, - { - "id": 286, - "label": "GPPA 404" - }, - { - "id": 287, - "label": "TDGR 290" - }, - { - "id": 288, - "label": "TDGR 291" - }, - { - "id": 289, - "label": "TDGR 296" - }, - { - "id": 290, - "label": "TDGR 297" - }, - { - "id": 291, - "label": "TDGR 294" - }, - { - "id": 292, - "label": "TDGR 295" - }, - { - "id": 293, - "label": "TDGE 50" - }, - { - "id": 294, - "label": "HISC 199" - }, - { - "id": 295, - "label": "HISC 198" - }, - { - "id": 296, - "label": "SOCI 153" - }, - { - "id": 297, - "label": "SOCC 153" - }, - { - "id": 298, - "label": "HITO 180/280" - }, - { - "id": 299, - "label": "LTEN 199" - }, - { - "id": 300, - "label": "LTEN 198" - }, - { - "id": 301, - "label": "BENG 141" - }, - { - "id": 302, - "label": "BENG 100" - }, - { - "id": 303, - "label": "LTEN 192" - }, - { - "id": 304, - "label": "LTEN 196" - }, - { - "id": 305, - "label": "ENVR 120" - }, - { - "id": 306, - "label": "Linguistics/French (LIFR) 11" - }, - { - "id": 307, - "label": "TDHT 105" - }, - { - "id": 308, - "label": "TDHT 104" - }, - { - "id": 309, - "label": "TDHT 107" - }, - { - "id": 310, - "label": "TDHT 101" - }, - { - "id": 311, - "label": "TDHT 103" - }, - { - "id": 312, - "label": "TDHT 109" - }, - { - "id": 313, - "label": "TDHT 108" - }, - { - "id": 314, - "label": "Soc/G 500" - }, - { - "id": 315, - "label": "ANAR 157S" - }, - { - "id": 316, - "label": "PHIL 15" - }, - { - "id": 317, - "label": "PHIL 14" - }, - { - "id": 318, - "label": "PHIL 16" - }, - { - "id": 319, - "label": "PHIL 10" - }, - { - "id": 320, - "label": "PHIL 13" - }, - { - "id": 321, - "label": "PHIL 12" - }, - { - "id": 322, - "label": "LAWS 101" - }, - { - "id": 323, - "label": "COMM 138" - }, - { - "id": 324, - "label": "COMM 100B" - }, - { - "id": 325, - "label": "COMM 100C" - }, - { - "id": 326, - "label": "COMM 100A" - }, - { - "id": 327, - "label": "COMM 10" - }, - { - "id": 328, - "label": "PSYC 193L" - }, - { - "id": 329, - "label": "COMM 131" - }, - { - "id": 330, - "label": "HUM 5" - }, - { - "id": 331, - "label": "HUM 4" - }, - { - "id": 332, - "label": "COMM 134" - }, - { - "id": 333, - "label": "COMM 137" - }, - { - "id": 334, - "label": "BENG 128B" - }, - { - "id": 335, - "label": "BENG 128A" - }, - { - "id": 336, - "label": "ANTH 42" - }, - { - "id": 337, - "label": "SOCI 179" - }, - { - "id": 338, - "label": "SOCD 179" - }, - { - "id": 339, - "label": "HILD 7GS" - }, - { - "id": 340, - "label": "SOCI 172" - }, - { - "id": 341, - "label": "SOCB 172" - }, - { - "id": 342, - "label": "SOCI 170" - }, - { - "id": 343, - "label": "SOCI 171" - }, - { - "id": 344, - "label": "SOCI 168T" - }, - { - "id": 345, - "label": "SOCI 177" - }, - { - "id": 346, - "label": "SOCD 177" - }, - { - "id": 347, - "label": "SOCI 175" - }, - { - "id": 348, - "label": "SOCD 175" - }, - { - "id": 349, - "label": "GPPA 420" - }, - { - "id": 350, - "label": "LTRU 1A" - }, - { - "id": 351, - "label": "LTRU 1C" - }, - { - "id": 352, - "label": "LTRU 1B" - }, - { - "id": 353, - "label": "ETHN 100H" - }, - { - "id": 354, - "label": "ETHN 100A" - }, - { - "id": 355, - "label": "ETHN 100B" - }, - { - "id": 356, - "label": "ETHN 3" - }, - { - "id": 357, - "label": "ETHN 2" - }, - { - "id": 358, - "label": "ETHN 1" - }, - { - "id": 359, - "label": "EDS 240A" - }, - { - "id": 360, - "label": "EDS 240B" - }, - { - "id": 361, - "label": "COGS 220" - }, - { - "id": 362, - "label": "COGS 225" - }, - { - "id": 363, - "label": "COGS 229" - }, - { - "id": 364, - "label": "HIGR 280" - }, - { - "id": 365, - "label": "HIGR 281" - }, - { - "id": 366, - "label": "LTWR 120" - }, - { - "id": 367, - "label": "LTWR 121" - }, - { - "id": 368, - "label": "LTWR 122" - }, - { - "id": 369, - "label": "CHEM 509" - }, - { - "id": 370, - "label": "LTWR 124" - }, - { - "id": 371, - "label": "LTWR 126" - }, - { - "id": 372, - "label": "LTWR 129" - }, - { - "id": 373, - "label": "LTWR 102" - }, - { - "id": 374, - "label": "LTWR 100" - }, - { - "id": 375, - "label": "CHEM 500" - }, - { - "id": 376, - "label": "MATH 2" - }, - { - "id": 377, - "label": "MAE 170" - }, - { - "id": 378, - "label": "Phys 2CL" - }, - { - "id": 379, - "label": "HIEU 182/282" - }, - { - "id": 380, - "label": "MGTF 458" - }, - { - "id": 381, - "label": "VIS 112" - }, - { - "id": 382, - "label": "VIS 23" - }, - { - "id": 383, - "label": "Soc/G 282" - }, - { - "id": 384, - "label": "Soc/G 284" - }, - { - "id": 385, - "label": "MGT 157" - }, - { - "id": 386, - "label": "MGT 181" - }, - { - "id": 387, - "label": "Soc/G 288" - }, - { - "id": 388, - "label": "POLI 13 or 13D" - }, - { - "id": 389, - "label": "CLRE 270" - }, - { - "id": 390, - "label": "Linguistics/Heritage Languages (LIHL) 116W" - }, - { - "id": 391, - "label": "Linguistics/Heritage Languages (LIHL) 116P" - }, - { - "id": 392, - "label": "Linguistics/Heritage Languages (LIHL) 116F" - }, - { - "id": 393, - "label": "GPLA 460A-B-C" - }, - { - "id": 394, - "label": "BENG 281" - }, - { - "id": 395, - "label": "BENG 282" - }, - { - "id": 396, - "label": "BIMM 170" - }, - { - "id": 397, - "label": "EDS 20S" - }, - { - "id": 398, - "label": "HINE 166/266" - }, - { - "id": 399, - "label": "ERC 196" - }, - { - "id": 400, - "label": "ERC 199" - }, - { - "id": 401, - "label": "SIOC 290S" - }, - { - "id": 402, - "label": "MATH 121A" - }, - { - "id": 403, - "label": "MATH 121B" - }, - { - "id": 404, - "label": "LTEA 132" - }, - { - "id": 405, - "label": "LTEA 138" - }, - { - "id": 406, - "label": "HIUS 140/ECON 158" - }, - { - "id": 407, - "label": "LTCS 141" - }, - { - "id": 408, - "label": "ETHN 149" - }, - { - "id": 409, - "label": "EDS 204" - }, - { - "id": 410, - "label": "EDS 203" - }, - { - "id": 411, - "label": "ED 79" - }, - { - "id": 412, - "label": "ED 78" - }, - { - "id": 413, - "label": "ED 80" - }, - { - "id": 414, - "label": "ED 77" - }, - { - "id": 415, - "label": "ED 76" - }, - { - "id": 416, - "label": "EDS 201" - }, - { - "id": 417, - "label": "ETHN 140" - }, - { - "id": 418, - "label": "ETHN 141" - }, - { - "id": 419, - "label": "ETHN 142" - }, - { - "id": 420, - "label": "ETHN 143" - }, - { - "id": 421, - "label": "MAE 113" - }, - { - "id": 422, - "label": "CHEM 213B" - }, - { - "id": 423, - "label": "CHEM 213A" - }, - { - "id": 424, - "label": "CSE 205A" - }, - { - "id": 425, - "label": "CSE 200" - }, - { - "id": 426, - "label": "BIOM 218" - }, - { - "id": 427, - "label": "BIOM 219" - }, - { - "id": 428, - "label": "SOCI 98" - }, - { - "id": 429, - "label": "LOWER_DIVISION_STANDING" - }, - { - "id": 430, - "label": "SOCI 99" - }, - { - "id": 431, - "label": "ECON 109" - }, - { - "id": 432, - "label": "Econ 100C" - }, - { - "id": 433, - "label": "Math 20" - }, - { - "id": 434, - "label": "ECON 106" - }, - { - "id": 435, - "label": "Econ 100B" - }, - { - "id": 436, - "label": "Econ 102" - }, - { - "id": 437, - "label": "ECON 107" - }, - { - "id": 438, - "label": "Math 10C" - }, - { - "id": 439, - "label": "Econ 2" - }, - { - "id": 440, - "label": "Math 31BH" - }, - { - "id": 441, - "label": "ECON 104" - }, - { - "id": 442, - "label": "ECON 105" - }, - { - "id": 443, - "label": "ECON 102" - }, - { - "id": 444, - "label": "Econ 1" - }, - { - "id": 445, - "label": "Econ 3" - }, - { - "id": 446, - "label": "ECON 103" - }, - { - "id": 447, - "label": "Econ 110B" - }, - { - "id": 448, - "label": "Econ 173A" - }, - { - "id": 449, - "label": "ECON 101" - }, - { - "id": 450, - "label": "VIS 124BN" - }, - { - "id": 451, - "label": "HIEU" - }, - { - "id": 452, - "label": "ERC 89" - }, - { - "id": 453, - "label": "Math 20A" - }, - { - "id": 454, - "label": "Math 10A" - }, - { - "id": 455, - "label": "ECON 241" - }, - { - "id": 456, - "label": "ECON 243" - }, - { - "id": 457, - "label": "ECON 242" - }, - { - "id": 458, - "label": "ECON 245" - }, - { - "id": 459, - "label": "ECON 247" - }, - { - "id": 460, - "label": "ECON 246" - }, - { - "id": 461, - "label": "CHIN 269" - }, - { - "id": 462, - "label": "NANO 251A" - }, - { - "id": 463, - "label": "MUS 198" - }, - { - "id": 464, - "label": "MUS 199" - }, - { - "id": 465, - "label": "PSYC 159" - }, - { - "id": 466, - "label": "PSYC 102" - }, - { - "id": 467, - "label": "PSYC 158" - }, - { - "id": 468, - "label": "CHEM 99R" - }, - { - "id": 469, - "label": "PSYC 151" - }, - { - "id": 470, - "label": "PSYC 60" - }, - { - "id": 471, - "label": "PSYC 150" - }, - { - "id": 472, - "label": "PSYC 108" - }, - { - "id": 473, - "label": "PSYC 153" - }, - { - "id": 474, - "label": "PSYC 152" - }, - { - "id": 475, - "label": "PSYC 155" - }, - { - "id": 476, - "label": "PSYC 154" - }, - { - "id": 477, - "label": "PSYC 157" - }, - { - "id": 478, - "label": "PSYC 156" - }, - { - "id": 479, - "label": "HDP 1" - }, - { - "id": 480, - "label": "PSYC 101" - }, - { - "id": 481, - "label": "MAE 273A" - }, - { - "id": 482, - "label": "MGT 226" - }, - { - "id": 483, - "label": "MGT 225" - }, - { - "id": 484, - "label": "POLI 111B" - }, - { - "id": 485, - "label": "GPPA 407" - }, - { - "id": 486, - "label": "POLI 111D" - }, - { - "id": 487, - "label": "HIEU 161/261" - }, - { - "id": 488, - "label": "CHEM 199" - }, - { - "id": 489, - "label": "CHEM 198" - }, - { - "id": 490, - "label": "Enrollment Special Studies Courses 198" - }, - { - "id": 491, - "label": "Enrollment Special Studies Courses 199" - }, - { - "id": 492, - "label": "Enrollment Special Studies Courses 197" - }, - { - "id": 493, - "label": "CHEM 192" - }, - { - "id": 494, - "label": "CHEM 195" - }, - { - "id": 495, - "label": "CHEM 194" - }, - { - "id": 496, - "label": "CHEM 197" - }, - { - "id": 497, - "label": "CHEM 196" - }, - { - "id": 498, - "label": "CHEM 6BH" - }, - { - "id": 499, - "label": "ANTH 202" - }, - { - "id": 500, - "label": "ANTH 201" - }, - { - "id": 501, - "label": "PHYS 218B" - }, - { - "id": 502, - "label": "Physics 218A" - }, - { - "id": 503, - "label": "PHYS 218C" - }, - { - "id": 504, - "label": "Physics 218B" - }, - { - "id": 505, - "label": "PHYS 218A" - }, - { - "id": 506, - "label": "FILM 87" - }, - { - "id": 507, - "label": "LATI 180" - }, - { - "id": 508, - "label": "LATI 50" - }, - { - "id": 509, - "label": "PHIL 206A" - }, - { - "id": 510, - "label": "MUS 232" - }, - { - "id": 511, - "label": "HIEA 292" - }, - { - "id": 512, - "label": "MATH 87" - }, - { - "id": 513, - "label": "TDGR 258A" - }, - { - "id": 514, - "label": "ETHN 163F" - }, - { - "id": 515, - "label": "TDGR 271" - }, - { - "id": 516, - "label": "TDGR 273" - }, - { - "id": 517, - "label": "TDGR 274" - }, - { - "id": 518, - "label": "TDGR 275" - }, - { - "id": 519, - "label": "REQUIRES_THIRD_YEAR_STUDENT" - }, - { - "id": 520, - "label": "DESIGN_MAJOR" - }, - { - "id": 521, - "label": "TDGR 276" - }, - { - "id": 522, - "label": "TDGR 278" - }, - { - "id": 523, - "label": "TDGR 279" - }, - { - "id": 524, - "label": "ANSC 131" - }, - { - "id": 525, - "label": "MATS 201C" - }, - { - "id": 526, - "label": "ANSC 136" - }, - { - "id": 527, - "label": "ANSC 135" - }, - { - "id": 528, - "label": "ETHN 163I" - }, - { - "id": 529, - "label": "HISC 177" - }, - { - "id": 530, - "label": "HISC 176" - }, - { - "id": 531, - "label": "SIOG 252A" - }, - { - "id": 532, - "label": "MATH 168A" - }, - { - "id": 533, - "label": "GPLA 412A-B-C" - }, - { - "id": 534, - "label": "DSC 30" - }, - { - "id": 535, - "label": "DSC 20" - }, - { - "id": 536, - "label": "LIGN 252" - }, - { - "id": 537, - "label": "LTGK 2" - }, - { - "id": 538, - "label": "LTGK 1" - }, - { - "id": 539, - "label": "LTGK 3" - }, - { - "id": 540, - "label": "LIGN 256" - }, - { - "id": 541, - "label": "LIGN 255" - }, - { - "id": 542, - "label": "BGJC 207" - }, - { - "id": 543, - "label": "BGJC 208" - }, - { - "id": 544, - "label": "BISP 199" - }, - { - "id": 545, - "label": "GLBH 181" - }, - { - "id": 546, - "label": "VIS 60" - }, - { - "id": 547, - "label": "GPPS 256" - }, - { - "id": 548, - "label": "HDP 194A-B-C" - }, - { - "id": 549, - "label": "POLI 147B" - }, - { - "id": 550, - "label": "MAE 225B" - }, - { - "id": 551, - "label": "MAE 101C" - }, - { - "id": 552, - "label": "MAE 101B" - }, - { - "id": 553, - "label": "MAE 225A" - }, - { - "id": 554, - "label": "MAE 221A" - }, - { - "id": 555, - "label": "LTTH 255" - }, - { - "id": 556, - "label": "LTTH 250" - }, - { - "id": 557, - "label": "CHEM 298" - }, - { - "id": 558, - "label": "CHEM 299" - }, - { - "id": 559, - "label": "SOCI 194" - }, - { - "id": 560, - "label": "SOCE 194" - }, - { - "id": 561, - "label": "MMW 2" - }, - { - "id": 562, - "label": "MMW 3" - }, - { - "id": 563, - "label": "MMW 11" - }, - { - "id": 564, - "label": "SOCI 198" - }, - { - "id": 565, - "label": "SOCI 199" - }, - { - "id": 566, - "label": "CHEM 296" - }, - { - "id": 567, - "label": "CHEM 297" - }, - { - "id": 568, - "label": "CHEM 294" - }, - { - "id": 569, - "label": "CHIN 10AD" - }, - { - "id": 570, - "label": "TDAC 1" - }, - { - "id": 571, - "label": "EDS 293A" - }, - { - "id": 572, - "label": "EDS 293B" - }, - { - "id": 573, - "label": "ECE 125A" - }, - { - "id": 574, - "label": "ECE 121A" - }, - { - "id": 575, - "label": "ECE 125B" - }, - { - "id": 576, - "label": "ANTH 196C" - }, - { - "id": 577, - "label": "ANTH 196B" - }, - { - "id": 578, - "label": "ANTH 196A" - }, - { - "id": 579, - "label": "COGS 205" - }, - { - "id": 580, - "label": "COGS 202" - }, - { - "id": 581, - "label": "COGS 203" - }, - { - "id": 582, - "label": "COGS 200" - }, - { - "id": 583, - "label": "COGS 201" - }, - { - "id": 584, - "label": "LTWR 106" - }, - { - "id": 585, - "label": "LTWR 103" - }, - { - "id": 586, - "label": "LTWR 101" - }, - { - "id": 587, - "label": "LTEN 222" - }, - { - "id": 588, - "label": "HIUS 265" - }, - { - "id": 589, - "label": "HLAW 215" - }, - { - "id": 590, - "label": "HLAW 216" - }, - { - "id": 591, - "label": "HLAW 210" - }, - { - "id": 592, - "label": "HLAW 213" - }, - { - "id": 593, - "label": "HLAW 212" - }, - { - "id": 594, - "label": "MAE 150" - }, - { - "id": 595, - "label": "BENG 110" - }, - { - "id": 596, - "label": "MAE 130A" - }, - { - "id": 597, - "label": "MAE 107" - }, - { - "id": 598, - "label": "SE 121" - }, - { - "id": 599, - "label": "MAE 3" - }, - { - "id": 600, - "label": "SE 101A" - }, - { - "id": 601, - "label": "MAE 154" - }, - { - "id": 602, - "label": "VIS 131" - }, - { - "id": 603, - "label": "VIS 130" - }, - { - "id": 604, - "label": "VIS 132" - }, - { - "id": 605, - "label": "VIS 135" - }, - { - "id": 606, - "label": "VIS 30" - }, - { - "id": 607, - "label": "VIS 41" - }, - { - "id": 608, - "label": "HDP 120" - }, - { - "id": 609, - "label": "LIGN 4" - }, - { - "id": 610, - "label": "HDP 121" - }, - { - "id": 611, - "label": "COGS 1" - }, - { - "id": 612, - "label": "HDP 122" - }, - { - "id": 613, - "label": "BENG 139B" - }, - { - "id": 614, - "label": "BENG 139A" - }, - { - "id": 615, - "label": "Math 20E" - }, - { - "id": 616, - "label": "Math 20F" - }, - { - "id": 617, - "label": "Phys 2C" - }, - { - "id": 618, - "label": "CLRE 297" - }, - { - "id": 619, - "label": "CLRE 295A" - }, - { - "id": 620, - "label": "CLRE 296" - }, - { - "id": 621, - "label": "CLRE 299" - }, - { - "id": 622, - "label": "CLRE 298" - }, - { - "id": 623, - "label": "NANO 174L" - }, - { - "id": 624, - "label": "NANO 174" - }, - { - "id": 625, - "label": "COGR 200A" - }, - { - "id": 626, - "label": "COGR 200B" - }, - { - "id": 627, - "label": "POLI 28" - }, - { - "id": 628, - "label": "POLI 27" - }, - { - "id": 629, - "label": "TDGR" - }, - { - "id": 630, - "label": "TDGR 211B" - }, - { - "id": 631, - "label": "BIMM 118" - }, - { - "id": 632, - "label": "BIPN 100" - }, - { - "id": 633, - "label": "BIBC 102" - }, - { - "id": 634, - "label": "LATI 222C" - }, - { - "id": 635, - "label": "LATI 222B" - }, - { - "id": 636, - "label": "LATI 222A" - }, - { - "id": 637, - "label": "BIMM 114" - }, - { - "id": 638, - "label": "BIMM 112" - }, - { - "id": 639, - "label": "BIMM 110" - }, - { - "id": 640, - "label": "EDS 22S" - }, - { - "id": 641, - "label": "EDS 22" - }, - { - "id": 642, - "label": "EDS 195" - }, - { - "id": 643, - "label": "EDS 190" - }, - { - "id": 644, - "label": "EDS 199" - }, - { - "id": 645, - "label": "EDS 198" - }, - { - "id": 646, - "label": "ECE 187" - }, - { - "id": 647, - "label": "ECE 185" - }, - { - "id": 648, - "label": "ECE 184" - }, - { - "id": 649, - "label": "ECE 183" - }, - { - "id": 650, - "label": "ECE 107" - }, - { - "id": 651, - "label": "ECE 103" - }, - { - "id": 652, - "label": "ECE 182" - }, - { - "id": 653, - "label": "ECE 181" - }, - { - "id": 654, - "label": "ECE 180" - }, - { - "id": 655, - "label": "ECE 189" - }, - { - "id": 656, - "label": "ECE 188" - }, - { - "id": 657, - "label": "LTCS 165" - }, - { - "id": 658, - "label": "ETHN 99" - }, - { - "id": 659, - "label": "ETHN 98" - }, - { - "id": 660, - "label": "ETHN 97" - }, - { - "id": 661, - "label": "ETHN 168" - }, - { - "id": 662, - "label": "ETHN 169" - }, - { - "id": 663, - "label": "ETHN 166" - }, - { - "id": 664, - "label": "ETHN 164" - }, - { - "id": 665, - "label": "ETHN 165" - }, - { - "id": 666, - "label": "ETHN 162" - }, - { - "id": 667, - "label": "ETHN 160" - }, - { - "id": 668, - "label": "ECON 249A" - }, - { - "id": 669, - "label": "ECON 249C" - }, - { - "id": 670, - "label": "ANBI 148" - }, - { - "id": 671, - "label": "ANBI 143" - }, - { - "id": 672, - "label": "ANBI 141" - }, - { - "id": 673, - "label": "ANBI 140" - }, - { - "id": 674, - "label": "ANBI 146" - }, - { - "id": 675, - "label": "ANBI 145" - }, - { - "id": 676, - "label": "ANBI 144" - }, - { - "id": 677, - "label": "BIOM 274" - }, - { - "id": 678, - "label": "BMS_STUDENTS_ONLY" - }, - { - "id": 679, - "label": "BIOM 275" - }, - { - "id": 680, - "label": "MUS 103D-E-F" - }, - { - "id": 681, - "label": "BIOM 277" - }, - { - "id": 682, - "label": "BIOM 272" - }, - { - "id": 683, - "label": "BIOM 273" - }, - { - "id": 684, - "label": "ECON 164" - }, - { - "id": 685, - "label": "ECON 165" - }, - { - "id": 686, - "label": "ECON 166" - }, - { - "id": 687, - "label": "ECON 167" - }, - { - "id": 688, - "label": "ECON 161" - }, - { - "id": 689, - "label": "ECON 162" - }, - { - "id": 690, - "label": "ECON 163" - }, - { - "id": 691, - "label": "ECON 168" - }, - { - "id": 692, - "label": "ECON 169" - }, - { - "id": 693, - "label": "Econ 100A" - }, - { - "id": 694, - "label": "ECON 228" - }, - { - "id": 695, - "label": "Econ 220D" - }, - { - "id": 696, - "label": "Econ 220E" - }, - { - "id": 697, - "label": "Econ 220A" - }, - { - "id": 698, - "label": "Econ 220B" - }, - { - "id": 699, - "label": "ECON 227" - }, - { - "id": 700, - "label": "ECON 226" - }, - { - "id": 701, - "label": "ECON 225" - }, - { - "id": 702, - "label": "ECON 221" - }, - { - "id": 703, - "label": "SE 2L" - }, - { - "id": 704, - "label": "Phys 2A" - }, - { - "id": 705, - "label": "SE 2" - }, - { - "id": 706, - "label": "Chem 6A" - }, - { - "id": 707, - "label": "TMC 20" - }, - { - "id": 708, - "label": "PHYS 260" - }, - { - "id": 709, - "label": "PHYS 261" - }, - { - "id": 710, - "label": "PHYS 264" - }, - { - "id": 711, - "label": "PSYC 188" - }, - { - "id": 712, - "label": "MATH 258" - }, - { - "id": 713, - "label": "MATH 256" - }, - { - "id": 714, - "label": "MGTA 458" - }, - { - "id": 715, - "label": "MGTA 452" - }, - { - "id": 716, - "label": "MGTA 453" - }, - { - "id": 717, - "label": "MGTA 451" - }, - { - "id": 718, - "label": "HIGR 258" - }, - { - "id": 719, - "label": "PSYC 139" - }, - { - "id": 720, - "label": "PSYC 138" - }, - { - "id": 721, - "label": "PSYC 137" - }, - { - "id": 722, - "label": "PSYC 136" - }, - { - "id": 723, - "label": "PSYC 105" - }, - { - "id": 724, - "label": "PSYC 134" - }, - { - "id": 725, - "label": "PSYC 133" - }, - { - "id": 726, - "label": "BILD 1" - }, - { - "id": 727, - "label": "BENG 247C/ECE 247C/NANO 247C" - }, - { - "id": 728, - "label": "PSYC 130" - }, - { - "id": 729, - "label": "HIGR 252" - }, - { - "id": 730, - "label": "SE 235" - }, - { - "id": 731, - "label": "SE 236" - }, - { - "id": 732, - "label": "SE 233" - }, - { - "id": 733, - "label": "MGTA 457" - }, - { - "id": 734, - "label": "POLI 113A" - }, - { - "id": 735, - "label": "POLI 113B" - }, - { - "id": 736, - "label": "POLI 113C" - }, - { - "id": 737, - "label": "RELI 192" - }, - { - "id": 738, - "label": "HIGR 254" - }, - { - "id": 739, - "label": "USP 195" - }, - { - "id": 740, - "label": "USP 194" - }, - { - "id": 741, - "label": "USP 191" - }, - { - "id": 742, - "label": "PHYS 1A" - }, - { - "id": 743, - "label": "Math 20B" - }, - { - "id": 744, - "label": "Physics 1AL" - }, - { - "id": 745, - "label": "Math 10B" - }, - { - "id": 746, - "label": "USP 193" - }, - { - "id": 747, - "label": "PHYS 1C" - }, - { - "id": 748, - "label": "Physics 2CL" - }, - { - "id": 749, - "label": "Math 11" - }, - { - "id": 750, - "label": "Physics 1BL" - }, - { - "id": 751, - "label": "Physics 1B" - }, - { - "id": 752, - "label": "Physics 1CL" - }, - { - "id": 753, - "label": "USP 199" - }, - { - "id": 754, - "label": "USP 198" - }, - { - "id": 755, - "label": "MUIR 199" - }, - { - "id": 756, - "label": "ANTH 220" - }, - { - "id": 757, - "label": "ANTH 223" - }, - { - "id": 758, - "label": "ANGR 223" - }, - { - "id": 759, - "label": "ANTH 222" - }, - { - "id": 760, - "label": "PHYS 10" - }, - { - "id": 761, - "label": "PHYS 11" - }, - { - "id": 762, - "label": "PHYS 12" - }, - { - "id": 763, - "label": "ANTH 226" - }, - { - "id": 764, - "label": "ANTH 229" - }, - { - "id": 765, - "label": "BICD 101" - }, - { - "id": 766, - "label": "FPM 280C" - }, - { - "id": 767, - "label": "FPM 280B" - }, - { - "id": 768, - "label": "FPM 280A" - }, - { - "id": 769, - "label": "COMM 101T" - }, - { - "id": 770, - "label": "COMM 101" - }, - { - "id": 771, - "label": "VIS 70N" - }, - { - "id": 772, - "label": "COGN 22" - }, - { - "id": 773, - "label": "COMM 101E" - }, - { - "id": 774, - "label": "COMM 101D" - }, - { - "id": 775, - "label": "COMM 101K" - }, - { - "id": 776, - "label": "COMM 101M" - }, - { - "id": 777, - "label": "COMM 101N" - }, - { - "id": 778, - "label": "CSE 283/BENG 203" - }, - { - "id": 779, - "label": "MUS 210" - }, - { - "id": 780, - "label": "NEU 270A" - }, - { - "id": 781, - "label": "NEU 270B" - }, - { - "id": 782, - "label": "ECE 225A" - }, - { - "id": 783, - "label": "ECE 225B" - }, - { - "id": 784, - "label": "ECE 250" - }, - { - "id": 785, - "label": "ANSC 111" - }, - { - "id": 786, - "label": "ANSC 110" - }, - { - "id": 787, - "label": "ANSC 113" - }, - { - "id": 788, - "label": "TDGR 255" - }, - { - "id": 789, - "label": "TDGR 252" - }, - { - "id": 790, - "label": "TDGR 253" - }, - { - "id": 791, - "label": "ANSC 117" - }, - { - "id": 792, - "label": "TDGR 251" - }, - { - "id": 793, - "label": "ANSC 119" - }, - { - "id": 794, - "label": "ANSC 118" - }, - { - "id": 795, - "label": "HILA 114D" - }, - { - "id": 796, - "label": "ECE 258A\u2013B" - }, - { - "id": 797, - "label": "ECE 154A" - }, - { - "id": 798, - "label": "ECE 154C" - }, - { - "id": 799, - "label": "ECE 154B" - }, - { - "id": 800, - "label": "ECE 254" - }, - { - "id": 801, - "label": "PHYS 2DL" - }, - { - "id": 802, - "label": "Physics 2BL" - }, - { - "id": 803, - "label": "MSED 298" - }, - { - "id": 804, - "label": "LIGN 272" - }, - { - "id": 805, - "label": "LIGN 274" - }, - { - "id": 806, - "label": "BENG 276/Chem 276/Math 276/Pharm 276" - }, - { - "id": 807, - "label": "LIGN 279" - }, - { - "id": 808, - "label": "MUS 2JK" - }, - { - "id": 809, - "label": "MUS 2AK" - }, - { - "id": 810, - "label": "MUS 2BK" - }, - { - "id": 811, - "label": "MUS 2C" - }, - { - "id": 812, - "label": "MSED 290" - }, - { - "id": 813, - "label": "DSC 10" - }, - { - "id": 814, - "label": "MSED 297" - }, - { - "id": 815, - "label": "MSED 294" - }, - { - "id": 816, - "label": "MSED 295" - }, - { - "id": 817, - "label": "GLBH 160" - }, - { - "id": 818, - "label": "MATS 295" - }, - { - "id": 819, - "label": "MATH 154" - }, - { - "id": 820, - "label": "ECE 135B" - }, - { - "id": 821, - "label": "ECE 135A" - }, - { - "id": 822, - "label": "BGGN 213" - }, - { - "id": 823, - "label": "BGGN 212" - }, - { - "id": 824, - "label": "BGGN 211" - }, - { - "id": 825, - "label": "BGGN 210" - }, - { - "id": 826, - "label": "BGGN 216" - }, - { - "id": 827, - "label": "SOCI 2" - }, - { - "id": 828, - "label": "BGGN 214" - }, - { - "id": 829, - "label": "MATH 100A" - }, - { - "id": 830, - "label": "MATH 100B" - }, - { - "id": 831, - "label": "MATH 100C" - }, - { - "id": 832, - "label": "Math 100B" - }, - { - "id": 833, - "label": "LTFR 297" - }, - { - "id": 834, - "label": "DSGN 1" - }, - { - "id": 835, - "label": "LTFR 299" - }, - { - "id": 836, - "label": "LTFR 298" - }, - { - "id": 837, - "label": "ECE 174" - }, - { - "id": 838, - "label": "ECE 15" - }, - { - "id": 839, - "label": "ECE 109" - }, - { - "id": 840, - "label": "COMM 174" - }, - { - "id": 841, - "label": "COMM 175" - }, - { - "id": 842, - "label": "COMM 176" - }, - { - "id": 843, - "label": "COMM 177" - }, - { - "id": 844, - "label": "POLI 145C" - }, - { - "id": 845, - "label": "COMM 171" - }, - { - "id": 846, - "label": "COMM 172" - }, - { - "id": 847, - "label": "COMM 173" - }, - { - "id": 848, - "label": "COMM 179" - }, - { - "id": 849, - "label": "VIS 122AN" - }, - { - "id": 850, - "label": "GLBH 150A" - }, - { - "id": 851, - "label": "HIEU 140GS" - }, - { - "id": 852, - "label": "ECON 100CH" - }, - { - "id": 853, - "label": "ANAR 121" - }, - { - "id": 854, - "label": "LTKO 2A-B-C" - }, - { - "id": 855, - "label": "LTKO 1C" - }, - { - "id": 856, - "label": "ANAR 124" - }, - { - "id": 857, - "label": "140A-B-C" - }, - { - "id": 858, - "label": "CHEM 271" - }, - { - "id": 859, - "label": "CHEM 273" - }, - { - "id": 860, - "label": "GPPA 467" - }, - { - "id": 861, - "label": "CHEM 276" - }, - { - "id": 862, - "label": "TMC 1" - }, - { - "id": 863, - "label": "WCWP 500" - }, - { - "id": 864, - "label": "Linguistics/Heritage Languages (LIHL) 134W" - }, - { - "id": 865, - "label": "ECON 165T" - }, - { - "id": 866, - "label": "Econ 165" - }, - { - "id": 867, - "label": "Linguistics/Heritage Languages (LIHL) 134P" - }, - { - "id": 868, - "label": "Linguistics/Heritage Languages (LIHL) 134F" - }, - { - "id": 869, - "label": "EDS 291B" - }, - { - "id": 870, - "label": "EDS 291A" - }, - { - "id": 871, - "label": "CHEM 230A" - }, - { - "id": 872, - "label": "CHEM 230B" - }, - { - "id": 873, - "label": "WARR 2" - }, - { - "id": 874, - "label": "WARR 1" - }, - { - "id": 875, - "label": "LTEN 246" - }, - { - "id": 876, - "label": "LTEN 245" - }, - { - "id": 877, - "label": "HIUS 286" - }, - { - "id": 878, - "label": "GPIM 410" - }, - { - "id": 879, - "label": "VIS 152" - }, - { - "id": 880, - "label": "VIS 84" - }, - { - "id": 881, - "label": "VIS 151" - }, - { - "id": 882, - "label": "GPIM 413" - }, - { - "id": 883, - "label": "VIS 156" - }, - { - "id": 884, - "label": "VIS 155" - }, - { - "id": 885, - "label": "VIS 154" - }, - { - "id": 886, - "label": "GPIM 419" - }, - { - "id": 887, - "label": "VIS 159" - }, - { - "id": 888, - "label": "VIS 158" - }, - { - "id": 889, - "label": "COGS 260" - }, - { - "id": 890, - "label": "BENG 134" - }, - { - "id": 891, - "label": "BENG 135" - }, - { - "id": 892, - "label": "ECE 45" - }, - { - "id": 893, - "label": "BENG 133" - }, - { - "id": 894, - "label": "BENG 130" - }, - { - "id": 895, - "label": "HITO 101" - }, - { - "id": 896, - "label": "DSGN 299" - }, - { - "id": 897, - "label": "HITO 106" - }, - { - "id": 898, - "label": "HILD 14" - }, - { - "id": 899, - "label": "HILD 7A" - }, - { - "id": 900, - "label": "HILD 12" - }, - { - "id": 901, - "label": "HILD 7C" - }, - { - "id": 902, - "label": "HILD 7B" - }, - { - "id": 903, - "label": "HUM 3" - }, - { - "id": 904, - "label": "DOC 1" - }, - { - "id": 905, - "label": "MMW 14" - }, - { - "id": 906, - "label": "MMW 15" - }, - { - "id": 907, - "label": "HILD 11" - }, - { - "id": 908, - "label": "HILD 10" - }, - { - "id": 909, - "label": "HILD 2B" - }, - { - "id": 910, - "label": "HILD 2C" - }, - { - "id": 911, - "label": "HILD 2A" - }, - { - "id": 912, - "label": "MCWP 41" - }, - { - "id": 913, - "label": "MMW 22" - }, - { - "id": 914, - "label": "MMW 21" - }, - { - "id": 915, - "label": "MCWP 125" - }, - { - "id": 916, - "label": "HITO 105" - }, - { - "id": 917, - "label": "HITO 104" - }, - { - "id": 918, - "label": "GPPS 481: The Political Economy of Authoritarian Regimes (4)" - }, - { - "id": 919, - "label": "BIOM 254" - }, - { - "id": 920, - "label": "BIOM 200B" - }, - { - "id": 921, - "label": "BIOM 200A" - }, - { - "id": 922, - "label": "BIOM 201" - }, - { - "id": 923, - "label": "BIMM 134" - }, - { - "id": 924, - "label": "BIMM 130" - }, - { - "id": 925, - "label": "MAE 08" - }, - { - "id": 926, - "label": "COMM 114F" - }, - { - "id": 927, - "label": "POLI 40" - }, - { - "id": 928, - "label": "LTCS 180" - }, - { - "id": 929, - "label": "TDHT 119" - }, - { - "id": 930, - "label": "ETHN 104" - }, - { - "id": 931, - "label": "ETHN 105" - }, - { - "id": 932, - "label": "ETHN 106" - }, - { - "id": 933, - "label": "ETHN 107" - }, - { - "id": 934, - "label": "ETHN 101" - }, - { - "id": 935, - "label": "ETHN 102" - }, - { - "id": 936, - "label": "ETHN 103" - }, - { - "id": 937, - "label": "ETHN 108" - }, - { - "id": 938, - "label": "ETHN 109" - }, - { - "id": 939, - "label": "Linguistics/Spanish (LISP) 1BX" - }, - { - "id": 940, - "label": "LISP 1A" - }, - { - "id": 941, - "label": "LISP 1AX" - }, - { - "id": 942, - "label": "BIOM 252" - }, - { - "id": 943, - "label": "BIOM 253" - }, - { - "id": 944, - "label": "BIOM 256" - }, - { - "id": 945, - "label": "BENG 260/BGGN 260/PHYS 279" - }, - { - "id": 946, - "label": "BIOM 255" - }, - { - "id": 947, - "label": "ENG 201" - }, - { - "id": 948, - "label": "ENG 203" - }, - { - "id": 949, - "label": "ENG 202" - }, - { - "id": 950, - "label": "ENG 207" - }, - { - "id": 951, - "label": "ENG 208" - }, - { - "id": 952, - "label": "ECON 142" - }, - { - "id": 953, - "label": "Econ 109" - }, - { - "id": 954, - "label": "ECON 140" - }, - { - "id": 955, - "label": "ECON 141" - }, - { - "id": 956, - "label": "ECON 146" - }, - { - "id": 957, - "label": "ECON 147" - }, - { - "id": 958, - "label": "ECON 144" - }, - { - "id": 959, - "label": "ECON 145" - }, - { - "id": 960, - "label": "GPEC 489" - }, - { - "id": 961, - "label": "GPCO 454" - }, - { - "id": 962, - "label": "GPCO 401" - }, - { - "id": 963, - "label": "PHIL 145" - }, - { - "id": 964, - "label": "HIEU 178/278" - }, - { - "id": 965, - "label": "MATH 261A" - }, - { - "id": 966, - "label": "MATH 261B" - }, - { - "id": 967, - "label": "MATH 261C" - }, - { - "id": 968, - "label": "ECON 205" - }, - { - "id": 969, - "label": "RADY_MAJOR" - }, - { - "id": 970, - "label": "ECONOMICS_MAJOR" - }, - { - "id": 971, - "label": "ECON 204" - }, - { - "id": 972, - "label": "ECON 206" - }, - { - "id": 973, - "label": "ECON 201" - }, - { - "id": 974, - "label": "Econ 213" - }, - { - "id": 975, - "label": "Econ 207" - }, - { - "id": 976, - "label": "POLI 131C" - }, - { - "id": 977, - "label": "ECON 208" - }, - { - "id": 978, - "label": "GPEC 485" - }, - { - "id": 979, - "label": "SOCI 148E" - }, - { - "id": 980, - "label": "SOCC 148L" - }, - { - "id": 981, - "label": "PHYS 244" - }, - { - "id": 982, - "label": "PHYS 242" - }, - { - "id": 983, - "label": "PHYS 243" - }, - { - "id": 984, - "label": "PHYS 241" - }, - { - "id": 985, - "label": "MATH 275" - }, - { - "id": 986, - "label": "MATH 274" - }, - { - "id": 987, - "label": "MATH 276" - }, - { - "id": 988, - "label": "MUS 133" - }, - { - "id": 989, - "label": "MATH 279" - }, - { - "id": 990, - "label": "MUS 130" - }, - { - "id": 991, - "label": "HINE 113" - }, - { - "id": 992, - "label": "GPCO 468: Evaluating Technological Innovation (4)" - }, - { - "id": 993, - "label": "GPEC 446" - }, - { - "id": 994, - "label": "HIEU 102" - }, - { - "id": 995, - "label": "PSYC 114" - }, - { - "id": 996, - "label": "SE 215" - }, - { - "id": 997, - "label": "SE 214" - }, - { - "id": 998, - "label": "SE 151A" - }, - { - "id": 999, - "label": "SE 213" - }, - { - "id": 1000, - "label": "SE 201A" - }, - { - "id": 1001, - "label": "SE 211" - }, - { - "id": 1002, - "label": "SE 212" - }, - { - "id": 1003, - "label": "SE 150" - }, - { - "id": 1004, - "label": "SE 201" - }, - { - "id": 1005, - "label": "MAE 21" - }, - { - "id": 1006, - "label": "Chem 6AH" - }, - { - "id": 1007, - "label": "MC 25" - }, - { - "id": 1008, - "label": "Phys 4A" - }, - { - "id": 1009, - "label": "MAE 20" - }, - { - "id": 1010, - "label": "POLI 115A" - }, - { - "id": 1011, - "label": "LTWL 111" - }, - { - "id": 1012, - "label": "LTWL 116" - }, - { - "id": 1013, - "label": "LTWL 114" - }, - { - "id": 1014, - "label": "MAE 277A" - }, - { - "id": 1015, - "label": "USP 179" - }, - { - "id": 1016, - "label": "ESYS 103/MAE 124" - }, - { - "id": 1017, - "label": "USP 177" - }, - { - "id": 1018, - "label": "USP 176" - }, - { - "id": 1019, - "label": "USP 175" - }, - { - "id": 1020, - "label": "USP 174" - }, - { - "id": 1021, - "label": "USP 173" - }, - { - "id": 1022, - "label": "USP 172" - }, - { - "id": 1023, - "label": "USP 171" - }, - { - "id": 1024, - "label": "USP 170" - }, - { - "id": 1025, - "label": "ANTH 247" - }, - { - "id": 1026, - "label": "BICD 124" - }, - { - "id": 1027, - "label": "ANTH 245" - }, - { - "id": 1028, - "label": "ANTH 244" - }, - { - "id": 1029, - "label": "ANTH 243" - }, - { - "id": 1030, - "label": "BICD 120" - }, - { - "id": 1031, - "label": "BICD 123" - }, - { - "id": 1032, - "label": "ANTH 240" - }, - { - "id": 1033, - "label": "ANTH 249" - }, - { - "id": 1034, - "label": "ANTH 248" - }, - { - "id": 1035, - "label": "LTEN 87" - }, - { - "id": 1036, - "label": "PHYS 1CL" - }, - { - "id": 1037, - "label": "LTGK 198" - }, - { - "id": 1038, - "label": "HIUS 131D" - }, - { - "id": 1039, - "label": "COMM 103F" - }, - { - "id": 1040, - "label": "COMM 103E" - }, - { - "id": 1041, - "label": "COMM 103D" - }, - { - "id": 1042, - "label": "BIBC 140" - }, - { - "id": 1043, - "label": "CHEM 87" - }, - { - "id": 1044, - "label": "MAE 501" - }, - { - "id": 1045, - "label": "HIUS 113/ETHN 154" - }, - { - "id": 1046, - "label": "TDGR 239" - }, - { - "id": 1047, - "label": "RELI 150" - }, - { - "id": 1048, - "label": "RELI 151" - }, - { - "id": 1049, - "label": "RELI 153" - }, - { - "id": 1050, - "label": "TDGR 230" - }, - { - "id": 1051, - "label": "RELI 155" - }, - { - "id": 1052, - "label": "TDGR 233" - }, - { - "id": 1053, - "label": "ANSC 177" - }, - { - "id": 1054, - "label": "ANSC 176" - }, - { - "id": 1055, - "label": "ANSC 175" - }, - { - "id": 1056, - "label": "ANSC 174" - }, - { - "id": 1057, - "label": "ANSC 173" - }, - { - "id": 1058, - "label": "ANSC 171" - }, - { - "id": 1059, - "label": "ANSC 170" - }, - { - "id": 1060, - "label": "EDS 115GS" - }, - { - "id": 1061, - "label": "HISC 131" - }, - { - "id": 1062, - "label": "HISC 130" - }, - { - "id": 1063, - "label": "TDGE 198" - }, - { - "id": 1064, - "label": "TDGE 199" - }, - { - "id": 1065, - "label": "ECE 157A" - }, - { - "id": 1066, - "label": "ECE 157B" - }, - { - "id": 1067, - "label": "TDGE 192" - }, - { - "id": 1068, - "label": "ENVR 102" - }, - { - "id": 1069, - "label": "TDTR 104" - }, - { - "id": 1070, - "label": "HIUS 155A" - }, - { - "id": 1071, - "label": "PHYS 2BL" - }, - { - "id": 1072, - "label": "MATH 241A-B" - }, - { - "id": 1073, - "label": "LIGN 215" - }, - { - "id": 1074, - "label": "LIGN 214" - }, - { - "id": 1075, - "label": "LIGN 211" - }, - { - "id": 1076, - "label": "LIGN 210" - }, - { - "id": 1077, - "label": "GLBH 146" - }, - { - "id": 1078, - "label": "GLBH 147" - }, - { - "id": 1079, - "label": "HILD 7A-B-C" - }, - { - "id": 1080, - "label": "GLBH 148" - }, - { - "id": 1081, - "label": "USP 1" - }, - { - "id": 1082, - "label": "BGGN 230" - }, - { - "id": 1083, - "label": "USP 3" - }, - { - "id": 1084, - "label": "USP 2" - }, - { - "id": 1085, - "label": "USP 5" - }, - { - "id": 1086, - "label": "BGGN 234" - }, - { - "id": 1087, - "label": "BGGN 237" - }, - { - "id": 1088, - "label": "BGGN 223" - }, - { - "id": 1089, - "label": "BGGN 236" - }, - { - "id": 1090, - "label": "BIPN 134" - }, - { - "id": 1091, - "label": "NANO 208" - }, - { - "id": 1092, - "label": "NANO 200" - }, - { - "id": 1093, - "label": "NANO 201" - }, - { - "id": 1094, - "label": "NANO 202" - }, - { - "id": 1095, - "label": "NANO 203" - }, - { - "id": 1096, - "label": "NANO 204" - }, - { - "id": 1097, - "label": "NANO 205" - }, - { - "id": 1098, - "label": "COMM 158" - }, - { - "id": 1099, - "label": "COMM 159" - }, - { - "id": 1100, - "label": "COMM 152" - }, - { - "id": 1101, - "label": "COMM 153" - }, - { - "id": 1102, - "label": "COMM 151" - }, - { - "id": 1103, - "label": "COMM 155" - }, - { - "id": 1104, - "label": "LTTH 298" - }, - { - "id": 1105, - "label": "POLI 244A" - }, - { - "id": 1106, - "label": "VIS 122CN" - }, - { - "id": 1107, - "label": "MAE 221B" - }, - { - "id": 1108, - "label": "CENG 101B" - }, - { - "id": 1109, - "label": "CENG 101C" - }, - { - "id": 1110, - "label": "HIEA 168/268" - }, - { - "id": 1111, - "label": "TDHT 10" - }, - { - "id": 1112, - "label": "POLI 143A" - }, - { - "id": 1113, - "label": "HISC 173/273" - }, - { - "id": 1114, - "label": "ANAR 100" - }, - { - "id": 1115, - "label": "ECON 100AH" - }, - { - "id": 1116, - "label": "CENG 221A" - }, - { - "id": 1117, - "label": "CSE 184" - }, - { - "id": 1118, - "label": "CHEM 182" - }, - { - "id": 1119, - "label": "BIMM 181" - }, - { - "id": 1120, - "label": "BIMM 182" - }, - { - "id": 1121, - "label": "BENG 182" - }, - { - "id": 1122, - "label": "BENG 181" - }, - { - "id": 1123, - "label": "CSE 181" - }, - { - "id": 1124, - "label": "CSE 182" - }, - { - "id": 1125, - "label": "CENG 221B" - }, - { - "id": 1126, - "label": "Math 188" - }, - { - "id": 1127, - "label": "Chem 114C" - }, - { - "id": 1128, - "label": "CSE 180" - }, - { - "id": 1129, - "label": "CSE 500" - }, - { - "id": 1130, - "label": "CHEM 256" - }, - { - "id": 1131, - "label": "CHEM 257" - }, - { - "id": 1132, - "label": "CHEM 254" - }, - { - "id": 1133, - "label": "CHEM 255" - }, - { - "id": 1134, - "label": "CHEM 252" - }, - { - "id": 1135, - "label": "CHEM 152" - }, - { - "id": 1136, - "label": "CHEM 253" - }, - { - "id": 1137, - "label": "CHEM 250" - }, - { - "id": 1138, - "label": "CHEM 251" - }, - { - "id": 1139, - "label": "CHEM 258" - }, - { - "id": 1140, - "label": "CHEM 259" - }, - { - "id": 1141, - "label": "SE 121A" - }, - { - "id": 1142, - "label": "SE 1" - }, - { - "id": 1143, - "label": "SE 9" - }, - { - "id": 1144, - "label": "SE 121B" - }, - { - "id": 1145, - "label": "SE 101C" - }, - { - "id": 1146, - "label": "MAE 130C" - }, - { - "id": 1147, - "label": "ECE 35" - }, - { - "id": 1148, - "label": "ECE 121B" - }, - { - "id": 1149, - "label": "LTWR 143" - }, - { - "id": 1150, - "label": "LTWR 140" - }, - { - "id": 1151, - "label": "HLAW 207B" - }, - { - "id": 1152, - "label": "LTWR 144" - }, - { - "id": 1153, - "label": "HLAW 207A" - }, - { - "id": 1154, - "label": "LTWR 148" - }, - { - "id": 1155, - "label": "SOCI 187E" - }, - { - "id": 1156, - "label": "SOCD 187S" - }, - { - "id": 1157, - "label": "CHEM 232B" - }, - { - "id": 1158, - "label": "CHEM 232A" - }, - { - "id": 1159, - "label": "POLI 138D" - }, - { - "id": 1160, - "label": "MATH 257A" - }, - { - "id": 1161, - "label": "MATH 257B" - }, - { - "id": 1162, - "label": "Math 257A" - }, - { - "id": 1163, - "label": "GPIM 436" - }, - { - "id": 1164, - "label": "VIS 178" - }, - { - "id": 1165, - "label": "VIS 174" - }, - { - "id": 1166, - "label": "VIS 175" - }, - { - "id": 1167, - "label": "VIS 177" - }, - { - "id": 1168, - "label": "VIS 176" - }, - { - "id": 1169, - "label": "VIS 171" - }, - { - "id": 1170, - "label": "GPIM 438" - }, - { - "id": 1171, - "label": "GPCO 453" - }, - { - "id": 1172, - "label": "Soc/G 222" - }, - { - "id": 1173, - "label": "PHYS 100C" - }, - { - "id": 1174, - "label": "Physics 100B" - }, - { - "id": 1175, - "label": "PHYS 100A" - }, - { - "id": 1176, - "label": "Soc/G 226" - }, - { - "id": 1177, - "label": "Soc/G 227" - }, - { - "id": 1178, - "label": "SOCI 1" - }, - { - "id": 1179, - "label": "COMM 120I" - }, - { - "id": 1180, - "label": "COMM 120M" - }, - { - "id": 1181, - "label": "COMM 120N" - }, - { - "id": 1182, - "label": "COMM 120P" - }, - { - "id": 1183, - "label": "COGS 243" - }, - { - "id": 1184, - "label": "COGS 241" - }, - { - "id": 1185, - "label": "COMM 120W" - }, - { - "id": 1186, - "label": "ANTH 280C" - }, - { - "id": 1187, - "label": "ANGR 280C" - }, - { - "id": 1188, - "label": "ANTH 280D" - }, - { - "id": 1189, - "label": "ANGR 280D" - }, - { - "id": 1190, - "label": "ANTH 280E" - }, - { - "id": 1191, - "label": "ANGR 280E" - }, - { - "id": 1192, - "label": "ANTH 280F" - }, - { - "id": 1193, - "label": "HITO 124" - }, - { - "id": 1194, - "label": "HITO 126" - }, - { - "id": 1195, - "label": "CSE 199H" - }, - { - "id": 1196, - "label": "TDGR 215A" - }, - { - "id": 1197, - "label": "ECE 259C" - }, - { - "id": 1198, - "label": "ECE 259B" - }, - { - "id": 1199, - "label": "ECE 259A" - }, - { - "id": 1200, - "label": "BISP 170" - }, - { - "id": 1201, - "label": "BILD 2" - }, - { - "id": 1202, - "label": "ECE 212BN" - }, - { - "id": 1203, - "label": "ETHN 298" - }, - { - "id": 1204, - "label": "ETHN 299" - }, - { - "id": 1205, - "label": "BENG 152" - }, - { - "id": 1206, - "label": "BENG 102" - }, - { - "id": 1207, - "label": "PHIL 139" - }, - { - "id": 1208, - "label": "PHIL 138" - }, - { - "id": 1209, - "label": "PHIL 132" - }, - { - "id": 1210, - "label": "PHIL 131" - }, - { - "id": 1211, - "label": "PHIL 130" - }, - { - "id": 1212, - "label": "PHIL 137" - }, - { - "id": 1213, - "label": "PHIL 136" - }, - { - "id": 1214, - "label": "PHIL 134" - }, - { - "id": 1215, - "label": "LTWL" - }, - { - "id": 1216, - "label": "EDS 265" - }, - { - "id": 1217, - "label": "EDS 264" - }, - { - "id": 1218, - "label": "ETHN 128" - }, - { - "id": 1219, - "label": "EDS 266" - }, - { - "id": 1220, - "label": "EDS 263" - }, - { - "id": 1221, - "label": "ETHN 122" - }, - { - "id": 1222, - "label": "ETHN 123" - }, - { - "id": 1223, - "label": "ETHN 120" - }, - { - "id": 1224, - "label": "ETHN 121" - }, - { - "id": 1225, - "label": "ETHN 126" - }, - { - "id": 1226, - "label": "ETHN 127" - }, - { - "id": 1227, - "label": "ETHN 124" - }, - { - "id": 1228, - "label": "ETHN 125" - }, - { - "id": 1229, - "label": "MAE 264" - }, - { - "id": 1230, - "label": "MAE 209" - }, - { - "id": 1231, - "label": "MAE 266" - }, - { - "id": 1232, - "label": "AESE 279B" - }, - { - "id": 1233, - "label": "AESE 279A" - }, - { - "id": 1234, - "label": "MAE 260" - }, - { - "id": 1235, - "label": "MAE 261" - }, - { - "id": 1236, - "label": "MAE 290A" - }, - { - "id": 1237, - "label": "MAE 210A" - }, - { - "id": 1238, - "label": "MAE 262" - }, - { - "id": 1239, - "label": "MAE 263" - }, - { - "id": 1240, - "label": "LTTH 198" - }, - { - "id": 1241, - "label": "LTTH 199" - }, - { - "id": 1242, - "label": "BENG 169A" - }, - { - "id": 1243, - "label": "BENG 169B" - }, - { - "id": 1244, - "label": "ANBI 109" - }, - { - "id": 1245, - "label": "ECON 210D" - }, - { - "id": 1246, - "label": "ECON 210C" - }, - { - "id": 1247, - "label": "Econ 210B" - }, - { - "id": 1248, - "label": "ECON 210B" - }, - { - "id": 1249, - "label": "Econ 210A" - }, - { - "id": 1250, - "label": "ECON 210A" - }, - { - "id": 1251, - "label": "SOCI 30" - }, - { - "id": 1252, - "label": "MUS 12" - }, - { - "id": 1253, - "label": "MUS 13" - }, - { - "id": 1254, - "label": "MUS 11" - }, - { - "id": 1255, - "label": "MUS 16" - }, - { - "id": 1256, - "label": "MUS 17" - }, - { - "id": 1257, - "label": "MUS 14" - }, - { - "id": 1258, - "label": "MUS 15" - }, - { - "id": 1259, - "label": "MUS 18" - }, - { - "id": 1260, - "label": "PHYS 224" - }, - { - "id": 1261, - "label": "EDS 361C" - }, - { - "id": 1262, - "label": "EDS 361B" - }, - { - "id": 1263, - "label": "PHYS 226" - }, - { - "id": 1264, - "label": "EDS 361A" - }, - { - "id": 1265, - "label": "PHYS 220" - }, - { - "id": 1266, - "label": "Physics 212C" - }, - { - "id": 1267, - "label": "PHYS 223" - }, - { - "id": 1268, - "label": "GPEC 431" - }, - { - "id": 1269, - "label": "GPEC 432" - }, - { - "id": 1270, - "label": "PHYS 228" - }, - { - "id": 1271, - "label": "GPEC 435" - }, - { - "id": 1272, - "label": "VIS 113AN" - }, - { - "id": 1273, - "label": "MATH 170B" - }, - { - "id": 1274, - "label": "Math 170A" - }, - { - "id": 1275, - "label": "COGS 118D" - }, - { - "id": 1276, - "label": "Math 180A" - }, - { - "id": 1277, - "label": "COGS 118C" - }, - { - "id": 1278, - "label": "Cognitive Science 14B" - }, - { - "id": 1279, - "label": "Cognitive Science 108" - }, - { - "id": 1280, - "label": "Cognitive Science 109" - }, - { - "id": 1281, - "label": "Psychology 60" - }, - { - "id": 1282, - "label": "COGS 118B" - }, - { - "id": 1283, - "label": "CSE 11" - }, - { - "id": 1284, - "label": "CSE 8B" - }, - { - "id": 1285, - "label": "COGS 118A" - }, - { - "id": 1286, - "label": "SE 271" - }, - { - "id": 1287, - "label": "SE 273" - }, - { - "id": 1288, - "label": "SE 272" - }, - { - "id": 1289, - "label": "SE 274" - }, - { - "id": 1290, - "label": "SE 277" - }, - { - "id": 1291, - "label": "MAE 232B" - }, - { - "id": 1292, - "label": "SE 232B" - }, - { - "id": 1293, - "label": "SE 279" - }, - { - "id": 1294, - "label": "MAE 232A" - }, - { - "id": 1295, - "label": "SE 276A" - }, - { - "id": 1296, - "label": "MUS 1B" - }, - { - "id": 1297, - "label": "MUS 1A" - }, - { - "id": 1298, - "label": "MUS 1C" - }, - { - "id": 1299, - "label": "LTSP 258" - }, - { - "id": 1300, - "label": "Linguistics/Italian (LIIT) 1AX" - }, - { - "id": 1301, - "label": "COMM 105M" - }, - { - "id": 1302, - "label": "POLI 299" - }, - { - "id": 1303, - "label": "POLI 298" - }, - { - "id": 1304, - "label": "MAE 02" - }, - { - "id": 1305, - "label": "COMM 105G" - }, - { - "id": 1306, - "label": "MAE 07" - }, - { - "id": 1307, - "label": "CLRE 268" - }, - { - "id": 1308, - "label": "MAE 05" - }, - { - "id": 1309, - "label": "LTWL 134" - }, - { - "id": 1310, - "label": "LTWL 136" - }, - { - "id": 1311, - "label": "LTWL 138" - }, - { - "id": 1312, - "label": "COMM 105P" - }, - { - "id": 1313, - "label": "CLRE 262" - }, - { - "id": 1314, - "label": "USP 151" - }, - { - "id": 1315, - "label": "USP 150" - }, - { - "id": 1316, - "label": "USP 153" - }, - { - "id": 1317, - "label": "USP 152" - }, - { - "id": 1318, - "label": "USP 155" - }, - { - "id": 1319, - "label": "USP 154" - }, - { - "id": 1320, - "label": "PHYS 1AL" - }, - { - "id": 1321, - "label": "Physics 1A" - }, - { - "id": 1322, - "label": "MATH 221A" - }, - { - "id": 1323, - "label": "Math 200A" - }, - { - "id": 1324, - "label": "Math 220C" - }, - { - "id": 1325, - "label": "MATH 221B" - }, - { - "id": 1326, - "label": "Math 221A" - }, - { - "id": 1327, - "label": "SOCI 160E" - }, - { - "id": 1328, - "label": "SOCB 160L" - }, - { - "id": 1329, - "label": "NEU 199" - }, - { - "id": 1330, - "label": "LTSP 2D" - }, - { - "id": 1331, - "label": "LTSP 2E" - }, - { - "id": 1332, - "label": "LTSP 2B" - }, - { - "id": 1333, - "label": "LTSP 2C" - }, - { - "id": 1334, - "label": "LTSP 2A" - }, - { - "id": 1335, - "label": "LISP 1DX" - }, - { - "id": 1336, - "label": "LISP 1C" - }, - { - "id": 1337, - "label": "LISP 1D" - }, - { - "id": 1338, - "label": "ANTH 265" - }, - { - "id": 1339, - "label": "ANTH 264" - }, - { - "id": 1340, - "label": "ANTH 267" - }, - { - "id": 1341, - "label": "ANTH 266" - }, - { - "id": 1342, - "label": "ANTH 260" - }, - { - "id": 1343, - "label": "ANTH 263" - }, - { - "id": 1344, - "label": "ANTH 262" - }, - { - "id": 1345, - "label": "TDGR 212" - }, - { - "id": 1346, - "label": "ANSC 159" - }, - { - "id": 1347, - "label": "TDGR 217" - }, - { - "id": 1348, - "label": "ETHN 163G" - }, - { - "id": 1349, - "label": "ANTH 101" - }, - { - "id": 1350, - "label": "ANSC 123" - }, - { - "id": 1351, - "label": "ANSC 154" - }, - { - "id": 1352, - "label": "TDGR 219" - }, - { - "id": 1353, - "label": "ANSC 151" - }, - { - "id": 1354, - "label": "ANSC 150" - }, - { - "id": 1355, - "label": "HISC 115" - }, - { - "id": 1356, - "label": "HISC 114" - }, - { - "id": 1357, - "label": "HISC 117" - }, - { - "id": 1358, - "label": "HISC 116" - }, - { - "id": 1359, - "label": "HISC 111" - }, - { - "id": 1360, - "label": "HISC 110" - }, - { - "id": 1361, - "label": "HISC 119" - }, - { - "id": 1362, - "label": "HISC 118" - }, - { - "id": 1363, - "label": "LTEN 113" - }, - { - "id": 1364, - "label": "LTEN 112" - }, - { - "id": 1365, - "label": "LTEN 110" - }, - { - "id": 1366, - "label": "LTEN 117" - }, - { - "id": 1367, - "label": "LIGN 181" - }, - { - "id": 1368, - "label": "LIGN 180" - }, - { - "id": 1369, - "label": "PHYS 203B" - }, - { - "id": 1370, - "label": "Physics 203A" - }, - { - "id": 1371, - "label": "PHYS 203A" - }, - { - "id": 1372, - "label": "ECON 102T" - }, - { - "id": 1373, - "label": "ETHN 163E" - }, - { - "id": 1374, - "label": "MATH 173B" - }, - { - "id": 1375, - "label": "Math 173A" - }, - { - "id": 1376, - "label": "MATH 173A" - }, - { - "id": 1377, - "label": "MATH 104A" - }, - { - "id": 1378, - "label": "MATH 104B" - }, - { - "id": 1379, - "label": "MATH 104C" - }, - { - "id": 1380, - "label": "LIGN 238" - }, - { - "id": 1381, - "label": "LIGN 235" - }, - { - "id": 1382, - "label": "LIGN 230" - }, - { - "id": 1383, - "label": "LIGN 232" - }, - { - "id": 1384, - "label": "GLBH 129" - }, - { - "id": 1385, - "label": "MAE 92A" - }, - { - "id": 1386, - "label": "NANO 199" - }, - { - "id": 1387, - "label": "MATH 31BH" - }, - { - "id": 1388, - "label": "COGS 107C" - }, - { - "id": 1389, - "label": "Cognitive Science 107B" - }, - { - "id": 1390, - "label": "COGS 107B" - }, - { - "id": 1391, - "label": "COGS 107A" - }, - { - "id": 1392, - "label": "POLI 100C" - }, - { - "id": 1393, - "label": "BIPN 152" - }, - { - "id": 1394, - "label": "BIPN 150" - }, - { - "id": 1395, - "label": "FMPH 241" - }, - { - "id": 1396, - "label": "FMPH 222" - }, - { - "id": 1397, - "label": "FMPH 221" - }, - { - "id": 1398, - "label": "FMPH 242" - }, - { - "id": 1399, - "label": "PROGRAM_APPROVAL" - }, - { - "id": 1400, - "label": "NANO 227" - }, - { - "id": 1401, - "label": "PHIL 90" - }, - { - "id": 1402, - "label": "INTL 102" - }, - { - "id": 1403, - "label": "TDGR 224A-B" - }, - { - "id": 1404, - "label": "TDGR 224A" - }, - { - "id": 1405, - "label": "PSYC 217" - }, - { - "id": 1406, - "label": "MUS 132" - }, - { - "id": 1407, - "label": "MAE 289A" - }, - { - "id": 1408, - "label": "MAE 289B" - }, - { - "id": 1409, - "label": "MAE 289C" - }, - { - "id": 1410, - "label": "VIS 80" - }, - { - "id": 1411, - "label": "VIS 87" - }, - { - "id": 1412, - "label": "MAE 101D" - }, - { - "id": 1413, - "label": "Math 21D" - }, - { - "id": 1414, - "label": "PSYC 211" - }, - { - "id": 1415, - "label": "ANAR 167" - }, - { - "id": 1416, - "label": "SIO 50" - }, - { - "id": 1417, - "label": "ANTH 3" - }, - { - "id": 1418, - "label": "ANAR 166" - }, - { - "id": 1419, - "label": "ANAR 165" - }, - { - "id": 1420, - "label": "ANAR 160" - }, - { - "id": 1421, - "label": "ANAR 153" - }, - { - "id": 1422, - "label": "LTCS 256" - }, - { - "id": 1423, - "label": "LTCS 250" - }, - { - "id": 1424, - "label": "MUIR 2" - }, - { - "id": 1425, - "label": "TDDE 169A" - }, - { - "id": 1426, - "label": "TDDE 169B" - }, - { - "id": 1427, - "label": "CHEM 239" - }, - { - "id": 1428, - "label": "CHEM 235" - }, - { - "id": 1429, - "label": "CHEM 236" - }, - { - "id": 1430, - "label": "MUS 131" - }, - { - "id": 1431, - "label": "CHEM 231" - }, - { - "id": 1432, - "label": "ETHN 163J" - }, - { - "id": 1433, - "label": "TDGR 293" - }, - { - "id": 1434, - "label": "Classics 200A" - }, - { - "id": 1435, - "label": "GPCO 463" - }, - { - "id": 1436, - "label": "GPS_MAJOR" - }, - { - "id": 1437, - "label": "GPIM 474" - }, - { - "id": 1438, - "label": "GPCO 462" - }, - { - "id": 1439, - "label": "GPCO 467" - }, - { - "id": 1440, - "label": "GPCO 466" - }, - { - "id": 1441, - "label": "GPPS 428" - }, - { - "id": 1442, - "label": "GPCO 400" - }, - { - "id": 1443, - "label": "VIS 500" - }, - { - "id": 1444, - "label": "VIS 502" - }, - { - "id": 1445, - "label": "POLI 599" - }, - { - "id": 1446, - "label": "SOCI 10" - }, - { - "id": 1447, - "label": "LTEN 281" - }, - { - "id": 1448, - "label": "TDGR 225A-B" - }, - { - "id": 1449, - "label": "LTFR 123" - }, - { - "id": 1450, - "label": "LTFR 116" - }, - { - "id": 1451, - "label": "LTFR 115" - }, - { - "id": 1452, - "label": "LTFR 122" - }, - { - "id": 1453, - "label": "LTFR 121" - }, - { - "id": 1454, - "label": "GLBH 195" - }, - { - "id": 1455, - "label": "LTFR 125" - }, - { - "id": 1456, - "label": "LTFR 124" - }, - { - "id": 1457, - "label": "VIS 113CN" - }, - { - "id": 1458, - "label": "GPIM 457" - }, - { - "id": 1459, - "label": "GPIM 452" - }, - { - "id": 1460, - "label": "Soc/G 208" - }, - { - "id": 1461, - "label": "Soc/G 209" - }, - { - "id": 1462, - "label": "MATH 157" - }, - { - "id": 1463, - "label": "MATH 152" - }, - { - "id": 1464, - "label": "MATH 153" - }, - { - "id": 1465, - "label": "Soc/G 203" - }, - { - "id": 1466, - "label": "Soc/G 204" - }, - { - "id": 1467, - "label": "Soc/G 205" - }, - { - "id": 1468, - "label": "Soc/G 206" - }, - { - "id": 1469, - "label": "Soc/G 207" - }, - { - "id": 1470, - "label": "EDS 124AR" - }, - { - "id": 1471, - "label": "CHEM 228" - }, - { - "id": 1472, - "label": "SIXTH_COLLEGE" - }, - { - "id": 1473, - "label": "BENG 103B" - }, - { - "id": 1474, - "label": "BENG 112A" - }, - { - "id": 1475, - "label": "Linguistics/American Sign Language (LISL) 5A, 5B, 5C" - }, - { - "id": 1476, - "label": "HITO 140" - }, - { - "id": 1477, - "label": "MATH 15A" - }, - { - "id": 1478, - "label": "CSE 8A" - }, - { - "id": 1479, - "label": "NEU 500" - }, - { - "id": 1480, - "label": "Classics 280" - }, - { - "id": 1481, - "label": "TDDE 101" - }, - { - "id": 1482, - "label": "TDPR 1" - }, - { - "id": 1483, - "label": "TDDE 1" - }, - { - "id": 1484, - "label": "TDDE 102" - }, - { - "id": 1485, - "label": "VIS 121AN" - }, - { - "id": 1486, - "label": "BENG 172" - }, - { - "id": 1487, - "label": "PHIL 111" - }, - { - "id": 1488, - "label": "Philosophy 110" - }, - { - "id": 1489, - "label": "PHIL 110" - }, - { - "id": 1490, - "label": "PHIL 112" - }, - { - "id": 1491, - "label": "Philosophy 111" - }, - { - "id": 1492, - "label": "PHIL 115" - }, - { - "id": 1493, - "label": "POLI 247A" - }, - { - "id": 1494, - "label": "CHEM 100B" - }, - { - "id": 1495, - "label": "CHEM 100A" - }, - { - "id": 1496, - "label": "PHYS 2C" - }, - { - "id": 1497, - "label": "PHYS 2CL" - }, - { - "id": 1498, - "label": "EDS 286" - }, - { - "id": 1499, - "label": "EDS 285" - }, - { - "id": 1500, - "label": "EDS 284" - }, - { - "id": 1501, - "label": "EDS 283" - }, - { - "id": 1502, - "label": "EDS 282" - }, - { - "id": 1503, - "label": "EDS 281" - }, - { - "id": 1504, - "label": "EDS 280" - }, - { - "id": 1505, - "label": "MAE 247" - }, - { - "id": 1506, - "label": "MAE 242" - }, - { - "id": 1507, - "label": "ANBI 120" - }, - { - "id": 1508, - "label": "HUM 200" - }, - { - "id": 1509, - "label": "BIOM 296" - }, - { - "id": 1510, - "label": "BIOM 297" - }, - { - "id": 1511, - "label": "REQUIRES_SECOND_YEAR_STUDENT" - }, - { - "id": 1512, - "label": "BIOM 294" - }, - { - "id": 1513, - "label": "BIOM 295" - }, - { - "id": 1514, - "label": "BIOM 298" - }, - { - "id": 1515, - "label": "BIOM 299" - }, - { - "id": 1516, - "label": "VIS 121H" - }, - { - "id": 1517, - "label": "VIS 121B" - }, - { - "id": 1518, - "label": "MAE 288B" - }, - { - "id": 1519, - "label": "MAE 280A" - }, - { - "id": 1520, - "label": "MAE 288A" - }, - { - "id": 1521, - "label": "SE 278B" - }, - { - "id": 1522, - "label": "SE 278A" - }, - { - "id": 1523, - "label": "ECON 182" - }, - { - "id": 1524, - "label": "ECE 271A" - }, - { - "id": 1525, - "label": "ECE 271C" - }, - { - "id": 1526, - "label": "ECE 271B" - }, - { - "id": 1527, - "label": "HIGR 218A" - }, - { - "id": 1528, - "label": "HIGR 218B" - }, - { - "id": 1529, - "label": "Linguistics/Italian (LIIT) 1CX" - }, - { - "id": 1530, - "label": "LIIT 1B" - }, - { - "id": 1531, - "label": "LIIT 1BX" - }, - { - "id": 1532, - "label": "MUS 32" - }, - { - "id": 1533, - "label": "TDGR 257A-B" - }, - { - "id": 1534, - "label": "TDGR 250" - }, - { - "id": 1535, - "label": "HIEU 112S" - }, - { - "id": 1536, - "label": "PHYS 201" - }, - { - "id": 1537, - "label": "Classics 200B" - }, - { - "id": 1538, - "label": "Classics 200C" - }, - { - "id": 1539, - "label": "MUS 254" - }, - { - "id": 1540, - "label": "GPEC 418" - }, - { - "id": 1541, - "label": "GPEC 417" - }, - { - "id": 1542, - "label": "GPEC 414" - }, - { - "id": 1543, - "label": "GPEC 415" - }, - { - "id": 1544, - "label": "GPEC 412" - }, - { - "id": 1545, - "label": "GPEC 411" - }, - { - "id": 1546, - "label": "CSE 141L" - }, - { - "id": 1547, - "label": "CSE 110" - }, - { - "id": 1548, - "label": "CSE 30" - }, - { - "id": 1549, - "label": "CSE 140L" - }, - { - "id": 1550, - "label": "CSE 141" - }, - { - "id": 1551, - "label": "CSE 140" - }, - { - "id": 1552, - "label": "SE 252" - }, - { - "id": 1553, - "label": "SE 250" - }, - { - "id": 1554, - "label": "SE 255" - }, - { - "id": 1555, - "label": "SE 254" - }, - { - "id": 1556, - "label": "LTSP 272" - }, - { - "id": 1557, - "label": "MAE 175A" - }, - { - "id": 1558, - "label": "MAE 143B" - }, - { - "id": 1559, - "label": "CENG 120" - }, - { - "id": 1560, - "label": "LTWL 157" - }, - { - "id": 1561, - "label": "LTWL 155" - }, - { - "id": 1562, - "label": "LTWL 150" - }, - { - "id": 1563, - "label": "LTWL 159" - }, - { - "id": 1564, - "label": "USP 133" - }, - { - "id": 1565, - "label": "USP 132" - }, - { - "id": 1566, - "label": "USP 131" - }, - { - "id": 1567, - "label": "POLI 119A" - }, - { - "id": 1568, - "label": "USP 137" - }, - { - "id": 1569, - "label": "USP 136" - }, - { - "id": 1570, - "label": "USP 135" - }, - { - "id": 1571, - "label": "USP 134" - }, - { - "id": 1572, - "label": "USP 139" - }, - { - "id": 1573, - "label": "USP 138" - }, - { - "id": 1574, - "label": "ETHN 114A" - }, - { - "id": 1575, - "label": "ETHN 114B" - }, - { - "id": 1576, - "label": "USP 130" - }, - { - "id": 1577, - "label": "BIBC 103" - }, - { - "id": 1578, - "label": "Chem 40B" - }, - { - "id": 1579, - "label": "Chem 40A" - }, - { - "id": 1580, - "label": "Chem 140A" - }, - { - "id": 1581, - "label": "Chem 140B" - }, - { - "id": 1582, - "label": "BENG 120" - }, - { - "id": 1583, - "label": "Chem 114B" - }, - { - "id": 1584, - "label": "Linguistics/Portuguese (LIPO) 1AX" - }, - { - "id": 1585, - "label": "Chem 114A" - }, - { - "id": 1586, - "label": "ECON 110AH" - }, - { - "id": 1587, - "label": "HLAW 298A-C" - }, - { - "id": 1588, - "label": "ANTH 287" - }, - { - "id": 1589, - "label": "ANTH 285" - }, - { - "id": 1590, - "label": "ANTH 284" - }, - { - "id": 1591, - "label": "HIUS 133GS" - }, - { - "id": 1592, - "label": "ANTH 288" - }, - { - "id": 1593, - "label": "ANGR 288" - }, - { - "id": 1594, - "label": "LTEN 138" - }, - { - "id": 1595, - "label": "LTEN 130" - }, - { - "id": 1596, - "label": "LTEN 132" - }, - { - "id": 1597, - "label": "SE 140A" - }, - { - "id": 1598, - "label": "SE 130B" - }, - { - "id": 1599, - "label": "SE 140B" - }, - { - "id": 1600, - "label": "SE 181" - }, - { - "id": 1601, - "label": "ECON 100C" - }, - { - "id": 1602, - "label": "ECON 100B" - }, - { - "id": 1603, - "label": "ECON 100A" - }, - { - "id": 1604, - "label": "VIS 117E" - }, - { - "id": 1605, - "label": "MATH 171A" - }, - { - "id": 1606, - "label": "VIS 117G" - }, - { - "id": 1607, - "label": "VIS 117F" - }, - { - "id": 1608, - "label": "VIS 117I" - }, - { - "id": 1609, - "label": "ANAR 155S" - }, - { - "id": 1610, - "label": "ANRG 106" - }, - { - "id": 1611, - "label": "GLBH 100" - }, - { - "id": 1612, - "label": "GLBH 101" - }, - { - "id": 1613, - "label": "GLBH 105" - }, - { - "id": 1614, - "label": "GPIM 444" - }, - { - "id": 1615, - "label": "HUM 199" - }, - { - "id": 1616, - "label": "HUM 195" - }, - { - "id": 1617, - "label": "BGGN 271" - }, - { - "id": 1618, - "label": "BIOM 225" - }, - { - "id": 1619, - "label": "FMPH 227" - }, - { - "id": 1620, - "label": "FMPH 226" - }, - { - "id": 1621, - "label": "FMPH 223" - }, - { - "id": 1622, - "label": "FMPH 225" - }, - { - "id": 1623, - "label": "FMPH 224" - }, - { - "id": 1624, - "label": "MATH 281B" - }, - { - "id": 1625, - "label": "MATH 281A" - }, - { - "id": 1626, - "label": "MATH 282B" - }, - { - "id": 1627, - "label": "MATH 282A" - }, - { - "id": 1628, - "label": "NANO 244" - }, - { - "id": 1629, - "label": "NANO 245" - }, - { - "id": 1630, - "label": "NANO 241" - }, - { - "id": 1631, - "label": "NANO 242" - }, - { - "id": 1632, - "label": "NANO 243" - }, - { - "id": 1633, - "label": "ETHN 200A" - }, - { - "id": 1634, - "label": "ETHN 200B" - }, - { - "id": 1635, - "label": "ETHN 200C" - }, - { - "id": 1636, - "label": "COMM 194" - }, - { - "id": 1637, - "label": "COMM 193" - }, - { - "id": 1638, - "label": "AIP 197" - }, - { - "id": 1639, - "label": "COMM 190" - }, - { - "id": 1640, - "label": "COMM 198" - }, - { - "id": 1641, - "label": "COMM 199" - }, - { - "id": 1642, - "label": "VIS 122GS" - }, - { - "id": 1643, - "label": "ANAR 144" - }, - { - "id": 1644, - "label": "ANAR 146" - }, - { - "id": 1645, - "label": "ANAR 141" - }, - { - "id": 1646, - "label": "ANAR 143" - }, - { - "id": 1647, - "label": "ANAR 142" - }, - { - "id": 1648, - "label": "MAE 156A" - }, - { - "id": 1649, - "label": "ECE 236A" - }, - { - "id": 1650, - "label": "ECE 230A" - }, - { - "id": 1651, - "label": "ECE 236B" - }, - { - "id": 1652, - "label": "MAE 156B" - }, - { - "id": 1653, - "label": "MUS 2A-B-C" - }, - { - "id": 1654, - "label": "MUS 2CK" - }, - { - "id": 1655, - "label": "PSYC 115A" - }, - { - "id": 1656, - "label": "HINE 199" - }, - { - "id": 1657, - "label": "PSYC 115B" - }, - { - "id": 1658, - "label": "CHEM 210" - }, - { - "id": 1659, - "label": "CHEM 216" - }, - { - "id": 1660, - "label": "CHEM 217" - }, - { - "id": 1661, - "label": "CHEM 214" - }, - { - "id": 1662, - "label": "GPCO 407" - }, - { - "id": 1663, - "label": "GPCO 406" - }, - { - "id": 1664, - "label": "GPCO 405" - }, - { - "id": 1665, - "label": "GPCO 404" - }, - { - "id": 1666, - "label": "GPCO 403" - }, - { - "id": 1667, - "label": "ENVR 500" - }, - { - "id": 1668, - "label": "CSE 233" - }, - { - "id": 1669, - "label": "CSE 232" - }, - { - "id": 1670, - "label": "CSE 231" - }, - { - "id": 1671, - "label": "CSE 230" - }, - { - "id": 1672, - "label": "CSE 130" - }, - { - "id": 1673, - "label": "COMM 132" - }, - { - "id": 1674, - "label": "HIUS 199" - }, - { - "id": 1675, - "label": "MATH 179" - }, - { - "id": 1676, - "label": "Math 274" - }, - { - "id": 1677, - "label": "Math 174" - }, - { - "id": 1678, - "label": "MATH 202C" - }, - { - "id": 1679, - "label": "Math 202B" - }, - { - "id": 1680, - "label": "MATH 202B" - }, - { - "id": 1681, - "label": "Math 202A" - }, - { - "id": 1682, - "label": "MATH 202A" - }, - { - "id": 1683, - "label": "PHYS 141" - }, - { - "id": 1684, - "label": "MATH 174" - }, - { - "id": 1685, - "label": "COMM 135" - }, - { - "id": 1686, - "label": "COMM 136" - }, - { - "id": 1687, - "label": "Soc/G 269" - }, - { - "id": 1688, - "label": "POLI 103A" - }, - { - "id": 1689, - "label": "Soc/G 267" - }, - { - "id": 1690, - "label": "POLI 103C" - }, - { - "id": 1691, - "label": "PHYS 142" - }, - { - "id": 1692, - "label": "POLI 103D" - }, - { - "id": 1693, - "label": "CAT 87" - }, - { - "id": 1694, - "label": "COMM 124A" - }, - { - "id": 1695, - "label": "POLI 10" - }, - { - "id": 1696, - "label": "POLI 10D" - }, - { - "id": 1697, - "label": "ESYS 10" - }, - { - "id": 1698, - "label": "COMM 124B" - }, - { - "id": 1699, - "label": "HLAW 299" - }, - { - "id": 1700, - "label": "HLAW 298C" - }, - { - "id": 1701, - "label": "HLAW 298A" - }, - { - "id": 1702, - "label": "HLAW 298" - }, - { - "id": 1703, - "label": "COGS 178" - }, - { - "id": 1704, - "label": "Cognitive Science 107A" - }, - { - "id": 1705, - "label": "COGS 179" - }, - { - "id": 1706, - "label": "TDDE 121" - }, - { - "id": 1707, - "label": "TDPR 3" - }, - { - "id": 1708, - "label": "COGS 170" - }, - { - "id": 1709, - "label": "Cognitive Science 17" - }, - { - "id": 1710, - "label": "BILD 12" - }, - { - "id": 1711, - "label": "COGS 171" - }, - { - "id": 1712, - "label": "COGS 172" - }, - { - "id": 1713, - "label": "COGS 174" - }, - { - "id": 1714, - "label": "COGS 175" - }, - { - "id": 1715, - "label": "Cognitive Science 101A" - }, - { - "id": 1716, - "label": "COGS 176" - }, - { - "id": 1717, - "label": "COGS 177" - }, - { - "id": 1718, - "label": "ECE 255C" - }, - { - "id": 1719, - "label": "ECE 255B" - }, - { - "id": 1720, - "label": "ECE 255A" - }, - { - "id": 1721, - "label": "ETHN 255" - }, - { - "id": 1722, - "label": "ETHN 256" - }, - { - "id": 1723, - "label": "EDS 118" - }, - { - "id": 1724, - "label": "EDS 117" - }, - { - "id": 1725, - "label": "EDS 116" - }, - { - "id": 1726, - "label": "ETHN 146A" - }, - { - "id": 1727, - "label": "EDS 114" - }, - { - "id": 1728, - "label": "EDS 113" - }, - { - "id": 1729, - "label": "EDS 112" - }, - { - "id": 1730, - "label": "EDS 111" - }, - { - "id": 1731, - "label": "MDE 209" - }, - { - "id": 1732, - "label": "MDE_STUDENTS_ONLY" - }, - { - "id": 1733, - "label": "PHIL 175" - }, - { - "id": 1734, - "label": "PHIL 173" - }, - { - "id": 1735, - "label": "EDS 23" - }, - { - "id": 1736, - "label": "PHIL 170" - }, - { - "id": 1737, - "label": "PHIL 179" - }, - { - "id": 1738, - "label": "Philosophy 178" - }, - { - "id": 1739, - "label": "PHIL 178" - }, - { - "id": 1740, - "label": "GPLA 411A-B-C" - }, - { - "id": 1741, - "label": "MAE 228" - }, - { - "id": 1742, - "label": "MAE 217C" - }, - { - "id": 1743, - "label": "MAE 217B" - }, - { - "id": 1744, - "label": "MAE 217A" - }, - { - "id": 1745, - "label": "LTTH 150" - }, - { - "id": 1746, - "label": "WARR 189" - }, - { - "id": 1747, - "label": "DSGN 100" - }, - { - "id": 1748, - "label": "Linguistics/Spanish (LISP) 1DX" - }, - { - "id": 1749, - "label": "LISP 1CX" - }, - { - "id": 1750, - "label": "ECE 108" - }, - { - "id": 1751, - "label": "ECE 25" - }, - { - "id": 1752, - "label": "CSE 65" - }, - { - "id": 1753, - "label": "CSE 45" - }, - { - "id": 1754, - "label": "ECE 30" - }, - { - "id": 1755, - "label": "CENG 102" - }, - { - "id": 1756, - "label": "MATS 200" - }, - { - "id": 1757, - "label": "MUS 101C" - }, - { - "id": 1758, - "label": "MUS 101B" - }, - { - "id": 1759, - "label": "ECE 101" - }, - { - "id": 1760, - "label": "ECE 100" - }, - { - "id": 1761, - "label": "ECE 65" - }, - { - "id": 1762, - "label": "ANSC 144" - }, - { - "id": 1763, - "label": "ANTH 238" - }, - { - "id": 1764, - "label": "MUS 32V" - }, - { - "id": 1765, - "label": "ANTH 5" - }, - { - "id": 1766, - "label": "ANTH 4" - }, - { - "id": 1767, - "label": "ANTH 2" - }, - { - "id": 1768, - "label": "MUS 32G" - }, - { - "id": 1769, - "label": "LTIT 161" - }, - { - "id": 1770, - "label": "LTIT 100" - }, - { - "id": 1771, - "label": "SOCI 70" - }, - { - "id": 1772, - "label": "GPEC 471" - }, - { - "id": 1773, - "label": "CHEM 219A" - }, - { - "id": 1774, - "label": "CHEM 114A" - }, - { - "id": 1775, - "label": "HIEU 132D" - }, - { - "id": 1776, - "label": "HINE 109" - }, - { - "id": 1777, - "label": "MUS 132V" - }, - { - "id": 1778, - "label": "LTWL 176" - }, - { - "id": 1779, - "label": "GPLA 410A-B-C" - }, - { - "id": 1780, - "label": "MGT 287" - }, - { - "id": 1781, - "label": "LTWL 172" - }, - { - "id": 1782, - "label": "USP 115" - }, - { - "id": 1783, - "label": "USP 116" - }, - { - "id": 1784, - "label": "USP 111" - }, - { - "id": 1785, - "label": "Science 102J" - }, - { - "id": 1786, - "label": "USP 110" - }, - { - "id": 1787, - "label": "USP 110P" - }, - { - "id": 1788, - "label": "USP 113" - }, - { - "id": 1789, - "label": "ETHN 112B" - }, - { - "id": 1790, - "label": "ETHN 112A" - }, - { - "id": 1791, - "label": "INTL 197" - }, - { - "id": 1792, - "label": "PSYC 280" - }, - { - "id": 1793, - "label": "PSYC 282" - }, - { - "id": 1794, - "label": "INTL 190" - }, - { - "id": 1795, - "label": "INTL 101" - }, - { - "id": 1796, - "label": "POLI 120B" - }, - { - "id": 1797, - "label": "POLI 120C" - }, - { - "id": 1798, - "label": "POLI 120A" - }, - { - "id": 1799, - "label": "POLI 120G" - }, - { - "id": 1800, - "label": "POLI 120D" - }, - { - "id": 1801, - "label": "POLI 120E" - }, - { - "id": 1802, - "label": "USP 141A" - }, - { - "id": 1803, - "label": "USP 141B" - }, - { - "id": 1804, - "label": "POLI 120I" - }, - { - "id": 1805, - "label": "POLI 120N" - }, - { - "id": 1806, - "label": "SOCI 178" - }, - { - "id": 1807, - "label": "SOCD 178" - }, - { - "id": 1808, - "label": "MATH 270A" - }, - { - "id": 1809, - "label": "POLI 120P" - }, - { - "id": 1810, - "label": "POLI 120Q" - }, - { - "id": 1811, - "label": "CSE 282/BENG 202" - }, - { - "id": 1812, - "label": "Pharm 201" - }, - { - "id": 1813, - "label": "Linguistics/Arabic (LIAB) 1A" - }, - { - "id": 1814, - "label": "ANTH 44" - }, - { - "id": 1815, - "label": "Linguistics/Arabic (LIAB) 1C" - }, - { - "id": 1816, - "label": "LIAB 1BX" - }, - { - "id": 1817, - "label": "LIAB 1B" - }, - { - "id": 1818, - "label": "Linguistics/Arabic (LIAB) 1B" - }, - { - "id": 1819, - "label": "Linguistics/Arabic (LIAB) 1E" - }, - { - "id": 1820, - "label": "LIAB 1D" - }, - { - "id": 1821, - "label": "LIAB 1DX" - }, - { - "id": 1822, - "label": "Linguistics/Arabic (LIAB) 1D" - }, - { - "id": 1823, - "label": "LIAB 1CX" - }, - { - "id": 1824, - "label": "LIAB 1C" - }, - { - "id": 1825, - "label": "Linguistics/Arabic (LIAB) 1F" - }, - { - "id": 1826, - "label": "LIAB 1E" - }, - { - "id": 1827, - "label": "LIAB 1EX" - }, - { - "id": 1828, - "label": "Linguistics/Portuguese (LIPO) 1CX" - }, - { - "id": 1829, - "label": "BIBC 120" - }, - { - "id": 1830, - "label": "HIEA 270" - }, - { - "id": 1831, - "label": "PHYS 98" - }, - { - "id": 1832, - "label": "PHYS 99" - }, - { - "id": 1833, - "label": "LIGN 143" - }, - { - "id": 1834, - "label": "LIGN 101" - }, - { - "id": 1835, - "label": "TDGE 131" - }, - { - "id": 1836, - "label": "TDGE 133" - }, - { - "id": 1837, - "label": "TDGE 134" - }, - { - "id": 1838, - "label": "Linguistics/Italian (LIIT) 5AS" - }, - { - "id": 1839, - "label": "LTEN 159" - }, - { - "id": 1840, - "label": "LIGN 144" - }, - { - "id": 1841, - "label": "LISL 1C" - }, - { - "id": 1842, - "label": "LTEN 157" - }, - { - "id": 1843, - "label": "LTEN 156" - }, - { - "id": 1844, - "label": "LTEN 155" - }, - { - "id": 1845, - "label": "LIGN 148" - }, - { - "id": 1846, - "label": "LTEN 153" - }, - { - "id": 1847, - "label": "LTEN 152" - }, - { - "id": 1848, - "label": "HILA 164/264" - }, - { - "id": 1849, - "label": "LTEN 150" - }, - { - "id": 1850, - "label": "COGS 187B" - }, - { - "id": 1851, - "label": "Cognitive Science 187A" - }, - { - "id": 1852, - "label": "COGS 187A" - }, - { - "id": 1853, - "label": "Cognitive Science 18" - }, - { - "id": 1854, - "label": "Cognitive Science 10" - }, - { - "id": 1855, - "label": "CSE 7" - }, - { - "id": 1856, - "label": "MATH 171B" - }, - { - "id": 1857, - "label": "LTRU 123" - }, - { - "id": 1858, - "label": "DSGN 99" - }, - { - "id": 1859, - "label": "DSGN 90" - }, - { - "id": 1860, - "label": "RELI 134" - }, - { - "id": 1861, - "label": "MATH 155B" - }, - { - "id": 1862, - "label": "Math 155A" - }, - { - "id": 1863, - "label": "MATH 155A" - }, - { - "id": 1864, - "label": "MDE 230" - }, - { - "id": 1865, - "label": "BGGN 293" - }, - { - "id": 1866, - "label": "BGGN 292" - }, - { - "id": 1867, - "label": "BGGN 290" - }, - { - "id": 1868, - "label": "BGGN 297" - }, - { - "id": 1869, - "label": "BGGN 295" - }, - { - "id": 1870, - "label": "BGGN 299" - }, - { - "id": 1871, - "label": "BGGN 298" - }, - { - "id": 1872, - "label": "BIPN 194" - }, - { - "id": 1873, - "label": "HIAF 123" - }, - { - "id": 1874, - "label": "HIAF 120" - }, - { - "id": 1875, - "label": "ENG 1" - }, - { - "id": 1876, - "label": "ENG 3" - }, - { - "id": 1877, - "label": "ENG 2" - }, - { - "id": 1878, - "label": "ETHN 100C" - }, - { - "id": 1879, - "label": "EDS 240C" - }, - { - "id": 1880, - "label": "POLI 12 or 12D" - }, - { - "id": 1881, - "label": "MAE 238" - }, - { - "id": 1882, - "label": "MAE 231C" - }, - { - "id": 1883, - "label": "MAE 231B" - }, - { - "id": 1884, - "label": "MAE 231A" - }, - { - "id": 1885, - "label": "HILA 163/263" - }, - { - "id": 1886, - "label": "ECE 276A" - }, - { - "id": 1887, - "label": "POLI 224A" - }, - { - "id": 1888, - "label": "NANO 268" - }, - { - "id": 1889, - "label": "NANO 269" - }, - { - "id": 1890, - "label": "MUS 150" - }, - { - "id": 1891, - "label": "MUS 151" - }, - { - "id": 1892, - "label": "MUS 152" - }, - { - "id": 1893, - "label": "MUS 153" - }, - { - "id": 1894, - "label": "NANO 262" - }, - { - "id": 1895, - "label": "NANO 263" - }, - { - "id": 1896, - "label": "NANO 260" - }, - { - "id": 1897, - "label": "NANO 261" - }, - { - "id": 1898, - "label": "NANO 266" - }, - { - "id": 1899, - "label": "NANO 264" - }, - { - "id": 1900, - "label": "NANO 265" - }, - { - "id": 1901, - "label": "LTAF 110" - }, - { - "id": 1902, - "label": "MATH 259A-B-C" - }, - { - "id": 1903, - "label": "CSE 223B" - }, - { - "id": 1904, - "label": "CSE 221" - }, - { - "id": 1905, - "label": "CSE 211" - }, - { - "id": 1906, - "label": "CSE 210" - }, - { - "id": 1907, - "label": "CSE 131A" - }, - { - "id": 1908, - "label": "CSE 120" - }, - { - "id": 1909, - "label": "CSE 216" - }, - { - "id": 1910, - "label": "CSE 219" - }, - { - "id": 1911, - "label": "CSE 218" - }, - { - "id": 1912, - "label": "FMPH 50" - }, - { - "id": 1913, - "label": "PHIL 250A" - }, - { - "id": 1914, - "label": "LTFR 164" - }, - { - "id": 1915, - "label": "MUS 160B" - }, - { - "id": 1916, - "label": "MUS 160A" - }, - { - "id": 1917, - "label": "VIS 160A" - }, - { - "id": 1918, - "label": "VIS 141B" - }, - { - "id": 1919, - "label": "MUS 172" - }, - { - "id": 1920, - "label": "VIS 147B" - }, - { - "id": 1921, - "label": "VIS 145B" - }, - { - "id": 1922, - "label": "MAE" - }, - { - "id": 1923, - "label": "MATH 190" - }, - { - "id": 1924, - "label": "MATH 191" - }, - { - "id": 1925, - "label": "Math 190" - }, - { - "id": 1926, - "label": "MATH 194" - }, - { - "id": 1927, - "label": "Econ 120A" - }, - { - "id": 1928, - "label": "MATH 195" - }, - { - "id": 1929, - "label": "MATH 196" - }, - { - "id": 1930, - "label": "MATH 197" - }, - { - "id": 1931, - "label": "MATH 199" - }, - { - "id": 1932, - "label": "Soc/G 244" - }, - { - "id": 1933, - "label": "Soc/G 245" - }, - { - "id": 1934, - "label": "Soc/G 246" - }, - { - "id": 1935, - "label": "Soc/G 247" - }, - { - "id": 1936, - "label": "Soc/G 243" - }, - { - "id": 1937, - "label": "MATH 204A" - }, - { - "id": 1938, - "label": "Math 200C" - }, - { - "id": 1939, - "label": "MATH 204C" - }, - { - "id": 1940, - "label": "Math 204B" - }, - { - "id": 1941, - "label": "MATH 204B" - }, - { - "id": 1942, - "label": "Math 204A" - }, - { - "id": 1943, - "label": "SOCI 118E" - }, - { - "id": 1944, - "label": "SOCB 118L" - }, - { - "id": 1945, - "label": "LHCO 298" - }, - { - "id": 1946, - "label": "LHCO 218" - }, - { - "id": 1947, - "label": "ECE 172A" - }, - { - "id": 1948, - "label": "LTWL 158A" - }, - { - "id": 1949, - "label": "LTWL 158B" - }, - { - "id": 1950, - "label": "LTWL 158C" - }, - { - "id": 1951, - "label": "FPM 237" - }, - { - "id": 1952, - "label": "FPM 233" - }, - { - "id": 1953, - "label": "FPM 231" - }, - { - "id": 1954, - "label": "FPM 238" - }, - { - "id": 1955, - "label": "TDHD 175" - }, - { - "id": 1956, - "label": "TDTR 10" - }, - { - "id": 1957, - "label": "TDHD 176" - }, - { - "id": 1958, - "label": "CHEM 270A-B-C" - }, - { - "id": 1959, - "label": "TDDE 141" - }, - { - "id": 1960, - "label": "TDPR 5" - }, - { - "id": 1961, - "label": "TDPR 6" - }, - { - "id": 1962, - "label": "MUS 173" - }, - { - "id": 1963, - "label": "TDDE 142" - }, - { - "id": 1964, - "label": "COGS 156" - }, - { - "id": 1965, - "label": "COGS 157" - }, - { - "id": 1966, - "label": "Cognitive Science 101B" - }, - { - "id": 1967, - "label": "Cognitive Science 101C" - }, - { - "id": 1968, - "label": "COGS 154" - }, - { - "id": 1969, - "label": "COGS 155" - }, - { - "id": 1970, - "label": "COGS 152" - }, - { - "id": 1971, - "label": "Cognitive Science 1" - }, - { - "id": 1972, - "label": "Psychology 1" - }, - { - "id": 1973, - "label": "Philosophy 1" - }, - { - "id": 1974, - "label": "COGS 153" - }, - { - "id": 1975, - "label": "COGS 151" - }, - { - "id": 1976, - "label": "EDS 139" - }, - { - "id": 1977, - "label": "EDS 138" - }, - { - "id": 1978, - "label": "ETHN 275" - }, - { - "id": 1979, - "label": "ETHN 270" - }, - { - "id": 1980, - "label": "LTLA 3" - }, - { - "id": 1981, - "label": "LTLA 2" - }, - { - "id": 1982, - "label": "LTLA 1" - }, - { - "id": 1983, - "label": "EDS 132" - }, - { - "id": 1984, - "label": "EDS 137" - }, - { - "id": 1985, - "label": "EDS 136" - }, - { - "id": 1986, - "label": "ECE 257A" - }, - { - "id": 1987, - "label": "ECE 257C" - }, - { - "id": 1988, - "label": "ECE 257B" - }, - { - "id": 1989, - "label": "HILA 100D" - }, - { - "id": 1990, - "label": "ETHN 188" - }, - { - "id": 1991, - "label": "ETHN 189" - }, - { - "id": 1992, - "label": "ETHN 184" - }, - { - "id": 1993, - "label": "ETHN 185" - }, - { - "id": 1994, - "label": "ETHN 187" - }, - { - "id": 1995, - "label": "ETHN 180" - }, - { - "id": 1996, - "label": "ETHN 182" - }, - { - "id": 1997, - "label": "ETHN 183" - }, - { - "id": 1998, - "label": "MAE 202" - }, - { - "id": 1999, - "label": "MAE 203" - }, - { - "id": 2000, - "label": "MAE 200" - }, - { - "id": 2001, - "label": "MAE 201" - }, - { - "id": 2002, - "label": "MAE 206" - }, - { - "id": 2003, - "label": "MAE 207" - }, - { - "id": 2004, - "label": "MAE 204" - }, - { - "id": 2005, - "label": "MAE 205" - }, - { - "id": 2006, - "label": "EDS 288A" - }, - { - "id": 2007, - "label": "ANSC 193GS" - }, - { - "id": 2008, - "label": "NANO 141B" - }, - { - "id": 2009, - "label": "NANO 141A" - }, - { - "id": 2010, - "label": "CENG 296" - }, - { - "id": 2011, - "label": "CHIN 182A" - }, - { - "id": 2012, - "label": "CHIN 182B" - }, - { - "id": 2013, - "label": "CHIN 182C" - }, - { - "id": 2014, - "label": "ANAR 145S" - }, - { - "id": 2015, - "label": "ANBI" - }, - { - "id": 2016, - "label": "TDAC 115" - }, - { - "id": 2017, - "label": "TDAC 101" - }, - { - "id": 2018, - "label": "TDAC 112" - }, - { - "id": 2019, - "label": "TDAC 102" - }, - { - "id": 2020, - "label": "TDAC 110" - }, - { - "id": 2021, - "label": "TDAC 111" - }, - { - "id": 2022, - "label": "MUS 103A" - }, - { - "id": 2023, - "label": "MUS 33C" - }, - { - "id": 2024, - "label": "VIS 125A" - }, - { - "id": 2025, - "label": "MATS 227" - }, - { - "id": 2026, - "label": "DSGN 160" - }, - { - "id": 2027, - "label": "PHIL 155" - }, - { - "id": 2028, - "label": "ECE 120" - }, - { - "id": 2029, - "label": "ECE 123" - }, - { - "id": 2030, - "label": "CENG 122" - }, - { - "id": 2031, - "label": "PHIL 150" - }, - { - "id": 2032, - "label": "PHIL 152" - }, - { - "id": 2033, - "label": "ECE 275A" - }, - { - "id": 2034, - "label": "ECE 275B" - }, - { - "id": 2035, - "label": "BENG 97" - }, - { - "id": 2036, - "label": "MAE 171B" - }, - { - "id": 2037, - "label": "MAE 171A" - }, - { - "id": 2038, - "label": "MAE 160" - }, - { - "id": 2039, - "label": "MAE 131B" - }, - { - "id": 2040, - "label": "SE 110B" - }, - { - "id": 2041, - "label": "MAE 140" - }, - { - "id": 2042, - "label": "BENG 98" - }, - { - "id": 2043, - "label": "BENG 99" - }, - { - "id": 2044, - "label": "MGT 131B" - }, - { - "id": 2045, - "label": "GPEC 458" - }, - { - "id": 2046, - "label": "MGT 131A" - }, - { - "id": 2047, - "label": "GPEC 453" - }, - { - "id": 2048, - "label": "GPEC 450" - }, - { - "id": 2049, - "label": "GPEC 451" - }, - { - "id": 2050, - "label": "GPEC 455" - }, - { - "id": 2051, - "label": "HITO 133D" - }, - { - "id": 2052, - "label": "LTEA 110A" - }, - { - "id": 2053, - "label": "LTEA 110C" - }, - { - "id": 2054, - "label": "LTEA 110B" - }, - { - "id": 2055, - "label": "SOCI 50" - }, - { - "id": 2056, - "label": "FMPH 196A" - }, - { - "id": 2057, - "label": "FMPH 110" - }, - { - "id": 2058, - "label": "FMPH 102" - }, - { - "id": 2059, - "label": "FMPH 40" - }, - { - "id": 2060, - "label": "FMPH 101" - }, - { - "id": 2061, - "label": "FMPH 196B" - }, - { - "id": 2062, - "label": "FMPH 196C" - }, - { - "id": 2063, - "label": "Linguistics/Hindi (LIHI) 1D" - }, - { - "id": 2064, - "label": "Linguistics/Hindi (LIHI) 1A" - }, - { - "id": 2065, - "label": "Linguistics/Hindi (LIHI) 1B" - }, - { - "id": 2066, - "label": "LTWL 192" - }, - { - "id": 2067, - "label": "LTWL 191" - }, - { - "id": 2068, - "label": "LTWL 196" - }, - { - "id": 2069, - "label": "LTWL 194" - }, - { - "id": 2070, - "label": "LTWL 199" - }, - { - "id": 2071, - "label": "LTWL 198" - }, - { - "id": 2072, - "label": "BIEB 102" - }, - { - "id": 2073, - "label": "BILD 3" - }, - { - "id": 2074, - "label": "BIEB 100" - }, - { - "id": 2075, - "label": "SIO 187" - }, - { - "id": 2076, - "label": "ECE 85" - }, - { - "id": 2077, - "label": "CHEM 40B" - }, - { - "id": 2078, - "label": "CHEM 40A" - }, - { - "id": 2079, - "label": "CHEM 140A" - }, - { - "id": 2080, - "label": "ECE 87" - }, - { - "id": 2081, - "label": "LTGM 198" - }, - { - "id": 2082, - "label": "LTGM 199" - }, - { - "id": 2083, - "label": "LTGM 190" - }, - { - "id": 2084, - "label": "BGRD 222" - }, - { - "id": 2085, - "label": "BGRD 221" - }, - { - "id": 2086, - "label": "ECON 177L" - }, - { - "id": 2087, - "label": "Econ 176" - }, - { - "id": 2088, - "label": "Econ 4" - }, - { - "id": 2089, - "label": "SE 165" - }, - { - "id": 2090, - "label": "SOCI 140F" - }, - { - "id": 2091, - "label": "SOCC 140F" - }, - { - "id": 2092, - "label": "SE 163" - }, - { - "id": 2093, - "label": "SE 110A" - }, - { - "id": 2094, - "label": "LTIT 2A" - }, - { - "id": 2095, - "label": "LIIT 1C" - }, - { - "id": 2096, - "label": "LTIT 1C" - }, - { - "id": 2097, - "label": "LTIT 2B" - }, - { - "id": 2098, - "label": "HIEU 116A" - }, - { - "id": 2099, - "label": "HIEU 116B" - }, - { - "id": 2100, - "label": "HIEU 116C" - }, - { - "id": 2101, - "label": "MATH 272A" - }, - { - "id": 2102, - "label": "MATH 272B" - }, - { - "id": 2103, - "label": "Math 272A" - }, - { - "id": 2104, - "label": "MATH 272C" - }, - { - "id": 2105, - "label": "Math 272B" - }, - { - "id": 2106, - "label": "HINE 112AL" - }, - { - "id": 2107, - "label": "POLI 122D" - }, - { - "id": 2108, - "label": "HILA 169/269" - }, - { - "id": 2109, - "label": "COGR 248" - }, - { - "id": 2110, - "label": "COGR 243" - }, - { - "id": 2111, - "label": "COGR 242" - }, - { - "id": 2112, - "label": "COGR 241" - }, - { - "id": 2113, - "label": "COGR 240" - }, - { - "id": 2114, - "label": "COGR 247" - }, - { - "id": 2115, - "label": "COGR 246" - }, - { - "id": 2116, - "label": "COGR 245" - }, - { - "id": 2117, - "label": "COGR 244" - }, - { - "id": 2118, - "label": "MUS 271A" - }, - { - "id": 2119, - "label": "MUS 271C" - }, - { - "id": 2120, - "label": "MUS 271B" - }, - { - "id": 2121, - "label": "LIGN 160" - }, - { - "id": 2122, - "label": "LIGN 165" - }, - { - "id": 2123, - "label": "LTEN 174" - }, - { - "id": 2124, - "label": "LTEN 176" - }, - { - "id": 2125, - "label": "LTEN 171" - }, - { - "id": 2126, - "label": "LTEN 172" - }, - { - "id": 2127, - "label": "LTSP 87" - }, - { - "id": 2128, - "label": "LTEN 178" - }, - { - "id": 2129, - "label": "MGT 407" - }, - { - "id": 2130, - "label": "MGT 406" - }, - { - "id": 2131, - "label": "MGT 405" - }, - { - "id": 2132, - "label": "MGT 404" - }, - { - "id": 2133, - "label": "MGT 403" - }, - { - "id": 2134, - "label": "MGT 402" - }, - { - "id": 2135, - "label": "MGT 401" - }, - { - "id": 2136, - "label": "MGT 409" - }, - { - "id": 2137, - "label": "MGT 408" - }, - { - "id": 2138, - "label": "LIGN 299" - }, - { - "id": 2139, - "label": "LIGN 296" - }, - { - "id": 2140, - "label": "LIGN 293" - }, - { - "id": 2141, - "label": "PSYC 209" - }, - { - "id": 2142, - "label": "MATH 4C" - }, - { - "id": 2143, - "label": "Math 3C" - }, - { - "id": 2144, - "label": "ANSC 106S" - }, - { - "id": 2145, - "label": "PSYC 202" - }, - { - "id": 2146, - "label": "PSYC 205" - }, - { - "id": 2147, - "label": "PSYC 111A" - }, - { - "id": 2148, - "label": "PSYC 111B" - }, - { - "id": 2149, - "label": "PSYC 206" - }, - { - "id": 2150, - "label": "ECE 236C" - }, - { - "id": 2151, - "label": "BGGN 220F" - }, - { - "id": 2152, - "label": "BGGN 220E" - }, - { - "id": 2153, - "label": "BGGN 220D" - }, - { - "id": 2154, - "label": "BENG 280A" - }, - { - "id": 2155, - "label": "BENG 280B" - }, - { - "id": 2156, - "label": "VIS 129A\u2013F" - }, - { - "id": 2157, - "label": "NANO 280" - }, - { - "id": 2158, - "label": "MUS 176" - }, - { - "id": 2159, - "label": "MUS 177" - }, - { - "id": 2160, - "label": "MUS 161" - }, - { - "id": 2161, - "label": "CHEM 40BH" - }, - { - "id": 2162, - "label": "MUS 175" - }, - { - "id": 2163, - "label": "MUS 170" - }, - { - "id": 2164, - "label": "MUS 171" - }, - { - "id": 2165, - "label": "COGS 99" - }, - { - "id": 2166, - "label": "COGS 90" - }, - { - "id": 2167, - "label": "COGS 91" - }, - { - "id": 2168, - "label": "COGS 92" - }, - { - "id": 2169, - "label": "HINE 198" - }, - { - "id": 2170, - "label": "TDGR 286" - }, - { - "id": 2171, - "label": "MGT 52" - }, - { - "id": 2172, - "label": "ANAR 181" - }, - { - "id": 2173, - "label": "ANAR 180" - }, - { - "id": 2174, - "label": "ANAR 183" - }, - { - "id": 2175, - "label": "ANAR 182" - }, - { - "id": 2176, - "label": "ANAR 185" - }, - { - "id": 2177, - "label": "ANAR 184" - }, - { - "id": 2178, - "label": "ANAR 186" - }, - { - "id": 2179, - "label": "MGT 183" - }, - { - "id": 2180, - "label": "MGT 187" - }, - { - "id": 2181, - "label": "Econ 173B" - }, - { - "id": 2182, - "label": "MGT 3" - }, - { - "id": 2183, - "label": "MGT 5" - }, - { - "id": 2184, - "label": "MGT 4" - }, - { - "id": 2185, - "label": "MGT 45" - }, - { - "id": 2186, - "label": "MGT 184" - }, - { - "id": 2187, - "label": "MGT 185" - }, - { - "id": 2188, - "label": "CSE 272" - }, - { - "id": 2189, - "label": "LTFR 141" - }, - { - "id": 2190, - "label": "COGS 102A" - }, - { - "id": 2191, - "label": "Cognitive Science 14A" - }, - { - "id": 2192, - "label": "LTFR 143" - }, - { - "id": 2193, - "label": "LTFR 142" - }, - { - "id": 2194, - "label": "MUS 137F" - }, - { - "id": 2195, - "label": "MUS 137E" - }, - { - "id": 2196, - "label": "MUS 137D" - }, - { - "id": 2197, - "label": "MUS 137B" - }, - { - "id": 2198, - "label": "MUS 137C" - }, - { - "id": 2199, - "label": "MUS 137A" - }, - { - "id": 2200, - "label": "MUS 2B" - }, - { - "id": 2201, - "label": "MUS 2A" - }, - { - "id": 2202, - "label": "HITO" - }, - { - "id": 2203, - "label": "MMW 121" - }, - { - "id": 2204, - "label": "MMW 122" - }, - { - "id": 2205, - "label": "MATH 206B" - }, - { - "id": 2206, - "label": "Math 206A" - }, - { - "id": 2207, - "label": "MATH 206A" - }, - { - "id": 2208, - "label": "CHEM 130" - }, - { - "id": 2209, - "label": "CHEM 6CH" - }, - { - "id": 2210, - "label": "MATH 20D" - }, - { - "id": 2211, - "label": "CHEM 6C" - }, - { - "id": 2212, - "label": "MAE 265B" - }, - { - "id": 2213, - "label": "MAE 265A" - }, - { - "id": 2214, - "label": "TDGE 1" - }, - { - "id": 2215, - "label": "ANTH 500" - }, - { - "id": 2216, - "label": "ANGR 500" - }, - { - "id": 2217, - "label": "HIEA 144" - }, - { - "id": 2218, - "label": "LTCO 297" - }, - { - "id": 2219, - "label": "EDS 259" - }, - { - "id": 2220, - "label": "LTCO 299" - }, - { - "id": 2221, - "label": "LTCO 298" - }, - { - "id": 2222, - "label": "HIEA 140" - }, - { - "id": 2223, - "label": "EDS 150" - }, - { - "id": 2224, - "label": "COGS 133" - }, - { - "id": 2225, - "label": "Cognitive Science 9" - }, - { - "id": 2226, - "label": "Linguistics/Portuguese (LIPO) 1D" - }, - { - "id": 2227, - "label": "LIPO 1C" - }, - { - "id": 2228, - "label": "LIPO 1CX" - }, - { - "id": 2229, - "label": "HIEU 116CD" - }, - { - "id": 2230, - "label": "Linguistics/Portuguese (LIPO) 1A" - }, - { - "id": 2231, - "label": "Linguistics/Portuguese (LIPO) 1B" - }, - { - "id": 2232, - "label": "Linguistics/Portuguese (LIPO) 1C" - }, - { - "id": 2233, - "label": "ECE 251D" - }, - { - "id": 2234, - "label": "SIO 207D" - }, - { - "id": 2235, - "label": "ECE 251C" - }, - { - "id": 2236, - "label": "SIO 207C" - }, - { - "id": 2237, - "label": "ECE 251B" - }, - { - "id": 2238, - "label": "ECE 251A" - }, - { - "id": 2239, - "label": "AUD 298" - }, - { - "id": 2240, - "label": "AUD 299" - }, - { - "id": 2241, - "label": "AUD 291" - }, - { - "id": 2242, - "label": "AUD_MAJOR" - }, - { - "id": 2243, - "label": "AUD 296" - }, - { - "id": 2244, - "label": "HILA 102D" - }, - { - "id": 2245, - "label": "Linguistics/Portuguese (LIPO) 15" - }, - { - "id": 2246, - "label": "Linguistics/Portuguese (LIPO) 17" - }, - { - "id": 2247, - "label": "Classics 220" - }, - { - "id": 2248, - "label": "TDMV 11" - }, - { - "id": 2249, - "label": "CSE 134B" - }, - { - "id": 2250, - "label": "ECE 143" - }, - { - "id": 2251, - "label": "ECE 16" - }, - { - "id": 2252, - "label": "ECE 144" - }, - { - "id": 2253, - "label": "Linguistics/French (LIFR) 1AX" - }, - { - "id": 2254, - "label": "ECE 148" - }, - { - "id": 2255, - "label": "MAE 2" - }, - { - "id": 2256, - "label": "MATS 243" - }, - { - "id": 2257, - "label": "ECE 237" - }, - { - "id": 2258, - "label": "BENG 161A" - }, - { - "id": 2259, - "label": "BENG 123" - }, - { - "id": 2260, - "label": "BENG 160" - }, - { - "id": 2261, - "label": "MDE 240" - }, - { - "id": 2262, - "label": "BENG 161B" - }, - { - "id": 2263, - "label": "TDGE 87" - }, - { - "id": 2264, - "label": "TDGE 89" - }, - { - "id": 2265, - "label": "LTTH 110" - }, - { - "id": 2266, - "label": "HIEU 104B" - }, - { - "id": 2267, - "label": "LTTH 115" - }, - { - "id": 2268, - "label": "ESYS 190B" - }, - { - "id": 2269, - "label": "ESYS 190A" - }, - { - "id": 2270, - "label": "ESYS 103" - }, - { - "id": 2271, - "label": "MAE 126B" - }, - { - "id": 2272, - "label": "HIEU 136B" - }, - { - "id": 2273, - "label": "LTWL 169" - }, - { - "id": 2274, - "label": "LTIT 122" - }, - { - "id": 2275, - "label": "LTIT 50" - }, - { - "id": 2276, - "label": "EDS 206" - }, - { - "id": 2277, - "label": "VIS 127I" - }, - { - "id": 2278, - "label": "VIS 127N" - }, - { - "id": 2279, - "label": "VIS 127B" - }, - { - "id": 2280, - "label": "VIS 127C" - }, - { - "id": 2281, - "label": "VIS 127A" - }, - { - "id": 2282, - "label": "VIS 127F" - }, - { - "id": 2283, - "label": "VIS 127D" - }, - { - "id": 2284, - "label": "VIS 127E" - }, - { - "id": 2285, - "label": "VIS 127P" - }, - { - "id": 2286, - "label": "VIS 127Q" - }, - { - "id": 2287, - "label": "ETHN 147" - }, - { - "id": 2288, - "label": "BIEB 121" - }, - { - "id": 2289, - "label": "BIEB 123" - }, - { - "id": 2290, - "label": "BIEB 126" - }, - { - "id": 2291, - "label": "BIEB 128" - }, - { - "id": 2292, - "label": "SOCI 168E" - }, - { - "id": 2293, - "label": "SOCC 168E" - }, - { - "id": 2294, - "label": "POLI 10 or 10D" - }, - { - "id": 2295, - "label": "PSYC 267A" - }, - { - "id": 2296, - "label": "PSYC 267C" - }, - { - "id": 2297, - "label": "PSYC 267B" - }, - { - "id": 2298, - "label": "RELI 196BH" - }, - { - "id": 2299, - "label": "RELI 196A" - }, - { - "id": 2300, - "label": "AESE 241" - }, - { - "id": 2301, - "label": "MGT 241" - }, - { - "id": 2302, - "label": "PHYS 221A" - }, - { - "id": 2303, - "label": "Physics 200B" - }, - { - "id": 2304, - "label": "ECE 193H" - }, - { - "id": 2305, - "label": "LTKO 149" - }, - { - "id": 2306, - "label": "LTKO 3" - }, - { - "id": 2307, - "label": "SE 142" - }, - { - "id": 2308, - "label": "SE 160A" - }, - { - "id": 2309, - "label": "MAE 131A" - }, - { - "id": 2310, - "label": "SE 140" - }, - { - "id": 2311, - "label": "SE 103" - }, - { - "id": 2312, - "label": "SE 101B" - }, - { - "id": 2313, - "label": "MAE 130B" - }, - { - "id": 2314, - "label": "POLI 213" - }, - { - "id": 2315, - "label": "POLI 212" - }, - { - "id": 2316, - "label": "POLI 216" - }, - { - "id": 2317, - "label": "POLI 214" - }, - { - "id": 2318, - "label": "PSYC 4" - }, - { - "id": 2319, - "label": "PSYC 7" - }, - { - "id": 2320, - "label": "PSYC 6" - }, - { - "id": 2321, - "label": "PSYC 1" - }, - { - "id": 2322, - "label": "PSYC 3" - }, - { - "id": 2323, - "label": "COGR 261" - }, - { - "id": 2324, - "label": "TWS" - }, - { - "id": 2325, - "label": "COGR 263" - }, - { - "id": 2326, - "label": "COGR 262" - }, - { - "id": 2327, - "label": "COMM 114N" - }, - { - "id": 2328, - "label": "COMM 114K" - }, - { - "id": 2329, - "label": "COMM 114J" - }, - { - "id": 2330, - "label": "COMM 114I" - }, - { - "id": 2331, - "label": "LTEU 110" - }, - { - "id": 2332, - "label": "LTEU 111" - }, - { - "id": 2333, - "label": "COMM 114E" - }, - { - "id": 2334, - "label": "COMM 114D" - }, - { - "id": 2335, - "label": "COMM 114C" - }, - { - "id": 2336, - "label": "COGN 20" - }, - { - "id": 2337, - "label": "LTEN 26" - }, - { - "id": 2338, - "label": "LTEN 27" - }, - { - "id": 2339, - "label": "LTEN 25" - }, - { - "id": 2340, - "label": "LTEN 22" - }, - { - "id": 2341, - "label": "LTEN 23" - }, - { - "id": 2342, - "label": "LTEN 21" - }, - { - "id": 2343, - "label": "LTEN 28" - }, - { - "id": 2344, - "label": "LTEN 29" - }, - { - "id": 2345, - "label": "LIGN 108" - }, - { - "id": 2346, - "label": "LIGN 105" - }, - { - "id": 2347, - "label": "ANTH 199" - }, - { - "id": 2348, - "label": "ANPR 199" - }, - { - "id": 2349, - "label": "ANTH 198" - }, - { - "id": 2350, - "label": "ANPR 198" - }, - { - "id": 2351, - "label": "HIUS 108B/ETHN" - }, - { - "id": 2352, - "label": "ANTH 192" - }, - { - "id": 2353, - "label": "ANTH 197" - }, - { - "id": 2354, - "label": "ANPR 197" - }, - { - "id": 2355, - "label": "ANTH 195" - }, - { - "id": 2356, - "label": "MGT 421" - }, - { - "id": 2357, - "label": "MGT 420" - }, - { - "id": 2358, - "label": "MGT 422" - }, - { - "id": 2359, - "label": "MGT 425" - }, - { - "id": 2360, - "label": "MGT 427" - }, - { - "id": 2361, - "label": "MGT 426" - }, - { - "id": 2362, - "label": "MGT 429" - }, - { - "id": 2363, - "label": "TDGR 221A-B" - }, - { - "id": 2364, - "label": "TDGR 221B" - }, - { - "id": 2365, - "label": "TDGR 221A" - }, - { - "id": 2366, - "label": "GPIM 470" - }, - { - "id": 2367, - "label": "HIUS 198" - }, - { - "id": 2368, - "label": "NANO 120B" - }, - { - "id": 2369, - "label": "NANO 120A" - }, - { - "id": 2370, - "label": "NANO 110" - }, - { - "id": 2371, - "label": "CHIN 169B" - }, - { - "id": 2372, - "label": "CHIN 169A" - }, - { - "id": 2373, - "label": "PHIL 500" - }, - { - "id": 2374, - "label": "MATH 175" - }, - { - "id": 2375, - "label": "BENG 191/291" - }, - { - "id": 2376, - "label": "HIAF 161" - }, - { - "id": 2377, - "label": "TDGR 269B" - }, - { - "id": 2378, - "label": "TDGR 269A" - }, - { - "id": 2379, - "label": "Soc/G 264" - }, - { - "id": 2380, - "label": "POLI 103B" - }, - { - "id": 2381, - "label": "Soc/G 263" - }, - { - "id": 2382, - "label": "NANO 104" - }, - { - "id": 2383, - "label": "NANO 111" - }, - { - "id": 2384, - "label": "NANO 112" - }, - { - "id": 2385, - "label": "NANO 114" - }, - { - "id": 2386, - "label": "HIUS 185/285" - }, - { - "id": 2387, - "label": "HIUS 185" - }, - { - "id": 2388, - "label": "HIUS 285" - }, - { - "id": 2389, - "label": "LTAM 110" - }, - { - "id": 2390, - "label": "LTAM 111" - }, - { - "id": 2391, - "label": "HIEU 120" - }, - { - "id": 2392, - "label": "HIEU 122" - }, - { - "id": 2393, - "label": "HIEU 123" - }, - { - "id": 2394, - "label": "HIEU 125" - }, - { - "id": 2395, - "label": "TDDR 101" - }, - { - "id": 2396, - "label": "HIEU 127" - }, - { - "id": 2397, - "label": "ECE 230B" - }, - { - "id": 2398, - "label": "HIEU 129" - }, - { - "id": 2399, - "label": "ECE 265B" - }, - { - "id": 2400, - "label": "ECE 265A" - }, - { - "id": 2401, - "label": "ECE 166" - }, - { - "id": 2402, - "label": "TDDR 108" - }, - { - "id": 2403, - "label": "POLI 220C" - }, - { - "id": 2404, - "label": "POLI 220B" - }, - { - "id": 2405, - "label": "POLI 220A" - }, - { - "id": 2406, - "label": "MUS 110" - }, - { - "id": 2407, - "label": "MUS 111" - }, - { - "id": 2408, - "label": "MUS 112" - }, - { - "id": 2409, - "label": "MUS 8" - }, - { - "id": 2410, - "label": "MUS 4" - }, - { - "id": 2411, - "label": "MUS 113" - }, - { - "id": 2412, - "label": "MGT 414A" - }, - { - "id": 2413, - "label": "MUS 115" - }, - { - "id": 2414, - "label": "MUS 116" - }, - { - "id": 2415, - "label": "MGT 414B" - }, - { - "id": 2416, - "label": "VIS 126BN" - }, - { - "id": 2417, - "label": "HITO 150GS" - }, - { - "id": 2418, - "label": "LTLA 105" - }, - { - "id": 2419, - "label": "LTLA 100" - }, - { - "id": 2420, - "label": "LTLA 102" - }, - { - "id": 2421, - "label": "LTLA 103" - }, - { - "id": 2422, - "label": "CSE 255" - }, - { - "id": 2423, - "label": "CSE 254" - }, - { - "id": 2424, - "label": "CSE 253" - }, - { - "id": 2425, - "label": "CSE 259" - }, - { - "id": 2426, - "label": "CSE 258" - }, - { - "id": 2427, - "label": "MGT 164" - }, - { - "id": 2428, - "label": "MGT 166" - }, - { - "id": 2429, - "label": "MGT 167" - }, - { - "id": 2430, - "label": "MAE 281A" - }, - { - "id": 2431, - "label": "MGT 162" - }, - { - "id": 2432, - "label": "HIEA" - }, - { - "id": 2433, - "label": "GPPS 484" - }, - { - "id": 2434, - "label": "CONT 196" - }, - { - "id": 2435, - "label": "POLI 105A" - }, - { - "id": 2436, - "label": "MAE 210B" - }, - { - "id": 2437, - "label": "MAE 210C" - }, - { - "id": 2438, - "label": "CONT 198" - }, - { - "id": 2439, - "label": "FPM 278" - }, - { - "id": 2440, - "label": "FPM 272" - }, - { - "id": 2441, - "label": "FPM 270" - }, - { - "id": 2442, - "label": "FPM 277" - }, - { - "id": 2443, - "label": "PU 76" - }, - { - "id": 2444, - "label": "PU 75" - }, - { - "id": 2445, - "label": "FPM 276" - }, - { - "id": 2446, - "label": "ANAR 135S" - }, - { - "id": 2447, - "label": "HIUS 159/ETHN" - }, - { - "id": 2448, - "label": "LIGN 146" - }, - { - "id": 2449, - "label": "COGS 119" - }, - { - "id": 2450, - "label": "COGS 110" - }, - { - "id": 2451, - "label": "COGS 115" - }, - { - "id": 2452, - "label": "ETHN 230" - }, - { - "id": 2453, - "label": "TDGR 220A" - }, - { - "id": 2454, - "label": "TDGR 220C" - }, - { - "id": 2455, - "label": "HIEA 199" - }, - { - "id": 2456, - "label": "HIEA 198" - }, - { - "id": 2457, - "label": "TDTR 15" - }, - { - "id": 2458, - "label": "ANSC 119GS" - }, - { - "id": 2459, - "label": "CHEM 43AM" - }, - { - "id": 2460, - "label": "CHEM 7LM" - }, - { - "id": 2461, - "label": "CHEM 7L" - }, - { - "id": 2462, - "label": "CHEM 140AH" - }, - { - "id": 2463, - "label": "CHEM 40AH" - }, - { - "id": 2464, - "label": "EDS 233B" - }, - { - "id": 2465, - "label": "EDS 233A" - }, - { - "id": 2466, - "label": "PHYS 215A" - }, - { - "id": 2467, - "label": "PHYS 215C" - }, - { - "id": 2468, - "label": "PHYS 215B" - }, - { - "id": 2469, - "label": "Physics 215A" - }, - { - "id": 2470, - "label": "Classics 201" - }, - { - "id": 2471, - "label": "HIEU 154GS" - }, - { - "id": 2472, - "label": "MUS 203D" - }, - { - "id": 2473, - "label": "ENG 100L" - }, - { - "id": 2474, - "label": "MUS 203A" - }, - { - "id": 2475, - "label": "MUS 203B" - }, - { - "id": 2476, - "label": "MUS 203C" - }, - { - "id": 2477, - "label": "AWP 195" - }, - { - "id": 2478, - "label": "ENG 100D" - }, - { - "id": 2479, - "label": "ENG 100C" - }, - { - "id": 2480, - "label": "ENG 100B" - }, - { - "id": 2481, - "label": "ENG 100A" - }, - { - "id": 2482, - "label": "MATH 130B" - }, - { - "id": 2483, - "label": "Math 130A" - }, - { - "id": 2484, - "label": "MATH 130A" - }, - { - "id": 2485, - "label": "VIS 107A" - }, - { - "id": 2486, - "label": "VIS 107B" - }, - { - "id": 2487, - "label": "VIS 107C" - }, - { - "id": 2488, - "label": "Jewish Studies 1" - }, - { - "id": 2489, - "label": "Jewish Studies 3" - }, - { - "id": 2490, - "label": "Jewish Studies 2" - }, - { - "id": 2491, - "label": "CSE 132B" - }, - { - "id": 2492, - "label": "CSE 132A" - }, - { - "id": 2493, - "label": "PHIL 199" - }, - { - "id": 2494, - "label": "ECE 165" - }, - { - "id": 2495, - "label": "ECE 102" - }, - { - "id": 2496, - "label": "ECE 164" - }, - { - "id": 2497, - "label": "ECE 163" - }, - { - "id": 2498, - "label": "PHIL 195" - }, - { - "id": 2499, - "label": "Linguistics/French (LIFR) 1CX" - }, - { - "id": 2500, - "label": "LIFR 1B" - }, - { - "id": 2501, - "label": "LIFR 1BX" - }, - { - "id": 2502, - "label": "POLI 160AA" - }, - { - "id": 2503, - "label": "POLI 11" - }, - { - "id": 2504, - "label": "POLI 160AB" - }, - { - "id": 2505, - "label": "PHYS 281" - }, - { - "id": 2506, - "label": "MUS 32VM" - }, - { - "id": 2507, - "label": "ETHN 173GS" - }, - { - "id": 2508, - "label": "RELI 101" - }, - { - "id": 2509, - "label": "ECON 200B" - }, - { - "id": 2510, - "label": "Jewish Studies 102" - }, - { - "id": 2511, - "label": "Jewish Studies 103" - }, - { - "id": 2512, - "label": "Jewish Studies 101" - }, - { - "id": 2513, - "label": "MUS 2AK-BK-CK" - }, - { - "id": 2514, - "label": "VIS 129G" - }, - { - "id": 2515, - "label": "VIS 129H" - }, - { - "id": 2516, - "label": "GPLA 400A-B-C" - }, - { - "id": 2517, - "label": "BILD 87" - }, - { - "id": 2518, - "label": "LTEN 149" - }, - { - "id": 2519, - "label": "LIGN 506" - }, - { - "id": 2520, - "label": "BIEB 146" - }, - { - "id": 2521, - "label": "BIEB 143" - }, - { - "id": 2522, - "label": "BIEB 150" - }, - { - "id": 2523, - "label": "BIEB 140" - }, - { - "id": 2524, - "label": "AESE 261" - }, - { - "id": 2525, - "label": "MGT 261" - }, - { - "id": 2526, - "label": "SE 120" - }, - { - "id": 2527, - "label": "SE 125" - }, - { - "id": 2528, - "label": "ETHN 252" - }, - { - "id": 2529, - "label": "POLI 232" - }, - { - "id": 2530, - "label": "POLI 236" - }, - { - "id": 2531, - "label": "Linguistics/Spanish (LISP) 1A" - }, - { - "id": 2532, - "label": "EDS 115" - }, - { - "id": 2533, - "label": "COMM 112G" - }, - { - "id": 2534, - "label": "COMM 112C" - }, - { - "id": 2535, - "label": "LTEU 139" - }, - { - "id": 2536, - "label": "LTEU 137" - }, - { - "id": 2537, - "label": "LTEU 130" - }, - { - "id": 2538, - "label": "PSYC 223" - }, - { - "id": 2539, - "label": "PSYC 222" - }, - { - "id": 2540, - "label": "PSYC 221" - }, - { - "id": 2541, - "label": "PSYC 220" - }, - { - "id": 2542, - "label": "PSYC 224" - }, - { - "id": 2543, - "label": "PSYC 229" - }, - { - "id": 2544, - "label": "CAT 124" - }, - { - "id": 2545, - "label": "CAT 125" - }, - { - "id": 2546, - "label": "LIGN 121" - }, - { - "id": 2547, - "label": "LIGN 120" - }, - { - "id": 2548, - "label": "ECON 173A" - }, - { - "id": 2549, - "label": "ECON 173B" - }, - { - "id": 2550, - "label": "HITO 193/POLI 194/COM GEN 194/USP 194" - }, - { - "id": 2551, - "label": "MGT 449" - }, - { - "id": 2552, - "label": "MGT 443" - }, - { - "id": 2553, - "label": "MGT 442" - }, - { - "id": 2554, - "label": "MGT 447" - }, - { - "id": 2555, - "label": "MGT 445" - }, - { - "id": 2556, - "label": "MGT 444" - }, - { - "id": 2557, - "label": "PHIL 177" - }, - { - "id": 2558, - "label": "PHIL 299" - }, - { - "id": 2559, - "label": "AWP 500" - }, - { - "id": 2560, - "label": "PHIL 292" - }, - { - "id": 2561, - "label": "PHIL 290" - }, - { - "id": 2562, - "label": "PHIL 295" - }, - { - "id": 2563, - "label": "Linguistics/French (LIFR) 5B, 5C, 5D" - }, - { - "id": 2564, - "label": "HIGR 259" - }, - { - "id": 2565, - "label": "MGTA 459" - }, - { - "id": 2566, - "label": "RELI 199" - }, - { - "id": 2567, - "label": "RELI 197" - }, - { - "id": 2568, - "label": "RELI 110A" - }, - { - "id": 2569, - "label": "RELI 110B" - }, - { - "id": 2570, - "label": "MGTA 456" - }, - { - "id": 2571, - "label": "HIGR 256" - }, - { - "id": 2572, - "label": "HIGR 255" - }, - { - "id": 2573, - "label": "MGTA 455" - }, - { - "id": 2574, - "label": "LTSP 130B" - }, - { - "id": 2575, - "label": "LTSP 130A" - }, - { - "id": 2576, - "label": "EDS 349" - }, - { - "id": 2577, - "label": "MAE 181" - }, - { - "id": 2578, - "label": "TDDM 5" - }, - { - "id": 2579, - "label": "COGS 234" - }, - { - "id": 2580, - "label": "NANO 134" - }, - { - "id": 2581, - "label": "BENG 247A/ECE 247A/NANO 247A" - }, - { - "id": 2582, - "label": "DSGN 260" - }, - { - "id": 2583, - "label": "DSGN 261" - }, - { - "id": 2584, - "label": "HIUS 108A/ETHN" - }, - { - "id": 2585, - "label": "LTAM 130" - }, - { - "id": 2586, - "label": "TDPW 104" - }, - { - "id": 2587, - "label": "TDPW 1" - }, - { - "id": 2588, - "label": "HIEU 106" - }, - { - "id": 2589, - "label": "HIEU 107" - }, - { - "id": 2590, - "label": "HIEU 104" - }, - { - "id": 2591, - "label": "HIEU 105" - }, - { - "id": 2592, - "label": "HINE 114" - }, - { - "id": 2593, - "label": "HIEU 103" - }, - { - "id": 2594, - "label": "MUS 134" - }, - { - "id": 2595, - "label": "HINE 118" - }, - { - "id": 2596, - "label": "HINE 119" - }, - { - "id": 2597, - "label": "HIEU 109" - }, - { - "id": 2598, - "label": "ECE 204" - }, - { - "id": 2599, - "label": "Math 283" - }, - { - "id": 2600, - "label": "ECE 207" - }, - { - "id": 2601, - "label": "ECE 200" - }, - { - "id": 2602, - "label": "ECE 201" - }, - { - "id": 2603, - "label": "ECE 202" - }, - { - "id": 2604, - "label": "ECE 203" - }, - { - "id": 2605, - "label": "ECE 208" - }, - { - "id": 2606, - "label": "ECON 500A-B-C" - }, - { - "id": 2607, - "label": "GPCO 483" - }, - { - "id": 2608, - "label": "GPCO 482" - }, - { - "id": 2609, - "label": "GPCO 481" - }, - { - "id": 2610, - "label": "SXTH 20" - }, - { - "id": 2611, - "label": "BY_INVITATION_ONLY" - }, - { - "id": 2612, - "label": "MGT 18" - }, - { - "id": 2613, - "label": "MGT 129" - }, - { - "id": 2614, - "label": "MGT 12" - }, - { - "id": 2615, - "label": "MGT 16" - }, - { - "id": 2616, - "label": "MGT 146" - }, - { - "id": 2617, - "label": "MGT 132" - }, - { - "id": 2618, - "label": "MGT 147" - }, - { - "id": 2619, - "label": "MGT 143" - }, - { - "id": 2620, - "label": "MGT 148" - }, - { - "id": 2621, - "label": "MGT 137" - }, - { - "id": 2622, - "label": "MGT 136" - }, - { - "id": 2623, - "label": "MGT 149" - }, - { - "id": 2624, - "label": "MAE 283B" - }, - { - "id": 2625, - "label": "MAE 283A" - }, - { - "id": 2626, - "label": "HIEU 146S" - }, - { - "id": 2627, - "label": "COGS 190B" - }, - { - "id": 2628, - "label": "GPPS 460" - }, - { - "id": 2629, - "label": "GPPS 463" - }, - { - "id": 2630, - "label": "GPPS 465" - }, - { - "id": 2631, - "label": "HIEU 108S" - }, - { - "id": 2632, - "label": "GPPS 469" - }, - { - "id": 2633, - "label": "BENG 140A" - }, - { - "id": 2634, - "label": "BENG 140B" - }, - { - "id": 2635, - "label": "EDS 500" - }, - { - "id": 2636, - "label": "POLI 170A" - }, - { - "id": 2637, - "label": "EDS 122/Chem 187" - }, - { - "id": 2638, - "label": "CENG" - }, - { - "id": 2639, - "label": "FPM 257" - }, - { - "id": 2640, - "label": "HIUS 112" - }, - { - "id": 2641, - "label": "HIUS 111" - }, - { - "id": 2642, - "label": "HIUS 110" - }, - { - "id": 2643, - "label": "HIUS 117" - }, - { - "id": 2644, - "label": "HIUS 115" - }, - { - "id": 2645, - "label": "HIUS 118" - }, - { - "id": 2646, - "label": "POLI 197SD" - }, - { - "id": 2647, - "label": "POLI 194SD" - }, - { - "id": 2648, - "label": "POLI 30" - }, - { - "id": 2649, - "label": "CHEM 123" - }, - { - "id": 2650, - "label": "CHEM 120A" - }, - { - "id": 2651, - "label": "CHEM 143AM" - }, - { - "id": 2652, - "label": "CHEM 143A" - }, - { - "id": 2653, - "label": "CHEM 43A" - }, - { - "id": 2654, - "label": "CHEM 125" - }, - { - "id": 2655, - "label": "CHEM 126" - }, - { - "id": 2656, - "label": "CHEM 6AH" - }, - { - "id": 2657, - "label": "CHEM 6B" - }, - { - "id": 2658, - "label": "CHEM 127" - }, - { - "id": 2659, - "label": "MATH 20C" - }, - { - "id": 2660, - "label": "MATH 288" - }, - { - "id": 2661, - "label": "HIEA 170" - }, - { - "id": 2662, - "label": "LTEN 154" - }, - { - "id": 2663, - "label": "MATH 283" - }, - { - "id": 2664, - "label": "MATH 284" - }, - { - "id": 2665, - "label": "Math 282A" - }, - { - "id": 2666, - "label": "MATH 285" - }, - { - "id": 2667, - "label": "MATH 286" - }, - { - "id": 2668, - "label": "Math 280A" - }, - { - "id": 2669, - "label": "Math 280B" - }, - { - "id": 2670, - "label": "ANTH 207" - }, - { - "id": 2671, - "label": "ANTH 206" - }, - { - "id": 2672, - "label": "TMC 199" - }, - { - "id": 2673, - "label": "TMC 198" - }, - { - "id": 2674, - "label": "ANTH 204" - }, - { - "id": 2675, - "label": "VIS 105B" - }, - { - "id": 2676, - "label": "VIS 105A" - }, - { - "id": 2677, - "label": "VIS 105C" - }, - { - "id": 2678, - "label": "VIS 105D" - }, - { - "id": 2679, - "label": "VIS 105E" - }, - { - "id": 2680, - "label": "COMM 114T CSI: Science Communication (4)" - }, - { - "id": 2681, - "label": "AUD 255" - }, - { - "id": 2682, - "label": "AUD 256" - }, - { - "id": 2683, - "label": "AUD 257" - }, - { - "id": 2684, - "label": "SXTH 2" - }, - { - "id": 2685, - "label": "SXTH 1" - }, - { - "id": 2686, - "label": "Phys 4E" - }, - { - "id": 2687, - "label": "Phys 2D" - }, - { - "id": 2688, - "label": "Phys 4D" - }, - { - "id": 2689, - "label": "MUS 101A" - }, - { - "id": 2690, - "label": "Linguistics/Heritage Languages (LIHL) 137P" - }, - { - "id": 2691, - "label": "BGGN 238B" - }, - { - "id": 2692, - "label": "BGGN 238A" - }, - { - "id": 2693, - "label": "HIUS 188/288" - }, - { - "id": 2694, - "label": "Linguistics/German (LIGM) 1C" - }, - { - "id": 2695, - "label": "LIGM 1B" - }, - { - "id": 2696, - "label": "LIGM 1BX" - }, - { - "id": 2697, - "label": "BENG 298L" - }, - { - "id": 2698, - "label": "BIOENGINEERING_MAJOR" - }, - { - "id": 2699, - "label": "BILD 60" - }, - { - "id": 2700, - "label": "HIEA 124" - }, - { - "id": 2701, - "label": "BIEB 167" - }, - { - "id": 2702, - "label": "BIEB 166" - }, - { - "id": 2703, - "label": "LTGM 130" - }, - { - "id": 2704, - "label": "LTGM 132" - }, - { - "id": 2705, - "label": "LTGM 134" - }, - { - "id": 2706, - "label": "TDHT 190" - }, - { - "id": 2707, - "label": "MAE 180A" - }, - { - "id": 2708, - "label": "VIS 194S" - }, - { - "id": 2709, - "label": "CSE 243A" - }, - { - "id": 2710, - "label": "POLI 259" - }, - { - "id": 2711, - "label": "POLI 257" - }, - { - "id": 2712, - "label": "MATH 200A-B-C" - }, - { - "id": 2713, - "label": "POLI 255" - }, - { - "id": 2714, - "label": "POLI 254" - }, - { - "id": 2715, - "label": "POLI 253" - }, - { - "id": 2716, - "label": "POLI 252" - }, - { - "id": 2717, - "label": "POLI 251" - }, - { - "id": 2718, - "label": "Linguistics/Heritage Languages (LIHL) 139W" - }, - { - "id": 2719, - "label": "Linguistics/Heritage Languages (LIHL) 139P" - }, - { - "id": 2720, - "label": "COGR 220" - }, - { - "id": 2721, - "label": "COGR 223" - }, - { - "id": 2722, - "label": "Soc/G 255D" - }, - { - "id": 2723, - "label": "Soc/G 255C" - }, - { - "id": 2724, - "label": "Soc/G 255B" - }, - { - "id": 2725, - "label": "ENROLLED_IN_SCIENCES_STUDY_PROGRAM" - }, - { - "id": 2726, - "label": "Soc/G 255A" - }, - { - "id": 2727, - "label": "Linguistics/Heritage Languages (LIHL) 139F" - }, - { - "id": 2728, - "label": "LTEU 154" - }, - { - "id": 2729, - "label": "SOCI 106M" - }, - { - "id": 2730, - "label": "SOCA 106M" - }, - { - "id": 2731, - "label": "SOCI 60" - }, - { - "id": 2732, - "label": "LTEU 158" - }, - { - "id": 2733, - "label": "COMM 110T" - }, - { - "id": 2734, - "label": "SE 104L" - }, - { - "id": 2735, - "label": "SE 104" - }, - { - "id": 2736, - "label": "COMM 110M" - }, - { - "id": 2737, - "label": "LTKO 100" - }, - { - "id": 2738, - "label": "MGT 464" - }, - { - "id": 2739, - "label": "MGT 463" - }, - { - "id": 2740, - "label": "MGT 469" - }, - { - "id": 2741, - "label": "AWP 10" - }, - { - "id": 2742, - "label": "POLI 110ED" - }, - { - "id": 2743, - "label": "POLI 110EA" - }, - { - "id": 2744, - "label": "POLI 110EC" - }, - { - "id": 2745, - "label": "POLI 110EB" - }, - { - "id": 2746, - "label": "PHIL 275" - }, - { - "id": 2747, - "label": "PHIL 276" - }, - { - "id": 2748, - "label": "PHIL 277" - }, - { - "id": 2749, - "label": "PHIL 278" - }, - { - "id": 2750, - "label": "FPM 258B" - }, - { - "id": 2751, - "label": "FPM 258A" - }, - { - "id": 2752, - "label": "FPM 258C" - }, - { - "id": 2753, - "label": "CHEM 114D" - }, - { - "id": 2754, - "label": "CHEM 114B" - }, - { - "id": 2755, - "label": "CHEM 114C" - }, - { - "id": 2756, - "label": "CHEM 140B" - }, - { - "id": 2757, - "label": "CHEM 140BH" - }, - { - "id": 2758, - "label": "ECE 247A" - }, - { - "id": 2759, - "label": "ECE 247B" - }, - { - "id": 2760, - "label": "ECE 247C" - }, - { - "id": 2761, - "label": "Revelle 12" - }, - { - "id": 2762, - "label": "CHIN 165C" - }, - { - "id": 2763, - "label": "CHIN 165B" - }, - { - "id": 2764, - "label": "CHIN 165A" - }, - { - "id": 2765, - "label": "MATH 180A" - }, - { - "id": 2766, - "label": "MATH 180B" - }, - { - "id": 2767, - "label": "MATH 180C" - }, - { - "id": 2768, - "label": "SE" - }, - { - "id": 2769, - "label": "HINE 135GS" - }, - { - "id": 2770, - "label": "ECON 202A-B-C" - }, - { - "id": 2771, - "label": "HITO 115/115GS" - }, - { - "id": 2772, - "label": "BENG 296" - }, - { - "id": 2773, - "label": "NANO 158" - }, - { - "id": 2774, - "label": "NANO 108" - }, - { - "id": 2775, - "label": "NANO 148" - }, - { - "id": 2776, - "label": "CSE 5A" - }, - { - "id": 2777, - "label": "NANO 156" - }, - { - "id": 2778, - "label": "NANO 150" - }, - { - "id": 2779, - "label": "VIS 215" - }, - { - "id": 2780, - "label": "VIS 216" - }, - { - "id": 2781, - "label": "VIS 217" - }, - { - "id": 2782, - "label": "VIS 211" - }, - { - "id": 2783, - "label": "VIS 212" - }, - { - "id": 2784, - "label": "VIS 213" - }, - { - "id": 2785, - "label": "MATH 111B" - }, - { - "id": 2786, - "label": "Math 111A" - }, - { - "id": 2787, - "label": "MATH 111A" - }, - { - "id": 2788, - "label": "VIS 219" - }, - { - "id": 2789, - "label": "VIS 21A" - }, - { - "id": 2790, - "label": "VIS 21B" - }, - { - "id": 2791, - "label": "COGR 225A" - }, - { - "id": 2792, - "label": "COGR 225C" - }, - { - "id": 2793, - "label": "COGR 225B" - }, - { - "id": 2794, - "label": "COGR 225D" - }, - { - "id": 2795, - "label": "HIEU 160" - }, - { - "id": 2796, - "label": "ECON 200C" - }, - { - "id": 2797, - "label": "ECON 200A" - }, - { - "id": 2798, - "label": "LIGN 509" - }, - { - "id": 2799, - "label": "LIGN 508" - }, - { - "id": 2800, - "label": "HINE 130" - }, - { - "id": 2801, - "label": "HINE 131" - }, - { - "id": 2802, - "label": "LIGN 503" - }, - { - "id": 2803, - "label": "LIGN 502" - }, - { - "id": 2804, - "label": "LIGN 507" - }, - { - "id": 2805, - "label": "BENG 238/MED 238" - }, - { - "id": 2806, - "label": "LIGN 505" - }, - { - "id": 2807, - "label": "LIGN 504" - }, - { - "id": 2808, - "label": "ANSC 138" - }, - { - "id": 2809, - "label": "ECE 228" - }, - { - "id": 2810, - "label": "ECE 226" - }, - { - "id": 2811, - "label": "ECE 269" - }, - { - "id": 2812, - "label": "ECE 227" - }, - { - "id": 2813, - "label": "Linguistics/Spanish (LISP) 1D" - }, - { - "id": 2814, - "label": "Linguistics/Spanish (LISP) 1B" - }, - { - "id": 2815, - "label": "Linguistics/Spanish (LISP) 1C" - }, - { - "id": 2816, - "label": "LISP 1B" - }, - { - "id": 2817, - "label": "LISP 1BX" - }, - { - "id": 2818, - "label": "ECE 221" - }, - { - "id": 2819, - "label": "FMPH 130" - }, - { - "id": 2820, - "label": "ANSC 132" - }, - { - "id": 2821, - "label": "ANSC 137" - }, - { - "id": 2822, - "label": "MATS 201B" - }, - { - "id": 2823, - "label": "MATS 201A" - }, - { - "id": 2824, - "label": "CSE 299" - }, - { - "id": 2825, - "label": "CSE 298" - }, - { - "id": 2826, - "label": "MGT 127" - }, - { - "id": 2827, - "label": "MGT 128" - }, - { - "id": 2828, - "label": "CSE 290" - }, - { - "id": 2829, - "label": "CSE 293" - }, - { - "id": 2830, - "label": "CSE 292" - }, - { - "id": 2831, - "label": "CSE 294" - }, - { - "id": 2832, - "label": "GPPS 446" - }, - { - "id": 2833, - "label": "20A-B-C" - }, - { - "id": 2834, - "label": "GPPS 445" - }, - { - "id": 2835, - "label": "GPPS 442" - }, - { - "id": 2836, - "label": "GPPS 441" - }, - { - "id": 2837, - "label": "GPPS 448" - }, - { - "id": 2838, - "label": "GPPS 449" - }, - { - "id": 2839, - "label": "CAT 24" - }, - { - "id": 2840, - "label": "CHIN 10BM" - }, - { - "id": 2841, - "label": "CHIN 10BN" - }, - { - "id": 2842, - "label": "CHIN 10BD" - }, - { - "id": 2843, - "label": "MATH 237A" - }, - { - "id": 2844, - "label": "ENVR 30" - }, - { - "id": 2845, - "label": "LTAF 120" - }, - { - "id": 2846, - "label": "MAE 214A" - }, - { - "id": 2847, - "label": "LTRU 104C" - }, - { - "id": 2848, - "label": "LTRU 104B" - }, - { - "id": 2849, - "label": "LTRU 104A" - }, - { - "id": 2850, - "label": "HMNR 101/ANSC 140" - }, - { - "id": 2851, - "label": "MGT 293D" - }, - { - "id": 2852, - "label": "MGT 293B" - }, - { - "id": 2853, - "label": "MGT 293C" - }, - { - "id": 2854, - "label": "MGT 293A" - }, - { - "id": 2855, - "label": "HIUS 131" - }, - { - "id": 2856, - "label": "HIUS 130" - }, - { - "id": 2857, - "label": "HIUS 133" - }, - { - "id": 2858, - "label": "HIUS 135" - }, - { - "id": 2859, - "label": "HIUS 134" - }, - { - "id": 2860, - "label": "CHEM 108" - }, - { - "id": 2861, - "label": "CHEM 109" - }, - { - "id": 2862, - "label": "HIEA 151" - }, - { - "id": 2863, - "label": "HIEA 150" - }, - { - "id": 2864, - "label": "HIEA 153" - }, - { - "id": 2865, - "label": "HIEA 152" - }, - { - "id": 2866, - "label": "LHCO 212" - }, - { - "id": 2867, - "label": "HIUS 129/USP 106" - }, - { - "id": 2868, - "label": "LHCO 213" - }, - { - "id": 2869, - "label": "ECE 136L" - }, - { - "id": 2870, - "label": "LHCO 217" - }, - { - "id": 2871, - "label": "LHCO 216" - }, - { - "id": 2872, - "label": "LHCO 215" - }, - { - "id": 2873, - "label": "LHCO 214" - }, - { - "id": 2874, - "label": "LHCO 219" - }, - { - "id": 2875, - "label": "LTCO 274" - }, - { - "id": 2876, - "label": "POLI 117" - }, - { - "id": 2877, - "label": "EDS 129 A-B-C" - }, - { - "id": 2878, - "label": "EDS 129B" - }, - { - "id": 2879, - "label": "EDS 129C" - }, - { - "id": 2880, - "label": "EDS 129A" - }, - { - "id": 2881, - "label": "MAE 286" - }, - { - "id": 2882, - "label": "MAE 287" - }, - { - "id": 2883, - "label": "MAE 284" - }, - { - "id": 2884, - "label": "MAE 285" - }, - { - "id": 2885, - "label": "CENG 210A" - }, - { - "id": 2886, - "label": "CENG 211" - }, - { - "id": 2887, - "label": "CENG 212" - }, - { - "id": 2888, - "label": "CENG 213" - }, - { - "id": 2889, - "label": "CENG 214" - }, - { - "id": 2890, - "label": "CENG 215" - }, - { - "id": 2891, - "label": "PHYS 211B" - }, - { - "id": 2892, - "label": "Physics 211A" - }, - { - "id": 2893, - "label": "Physics 210A" - }, - { - "id": 2894, - "label": "SOCI 192" - }, - { - "id": 2895, - "label": "ANSC 192GS" - }, - { - "id": 2896, - "label": "PHIL 267" - }, - { - "id": 2897, - "label": "AUD 276" - }, - { - "id": 2898, - "label": "AUD 274" - }, - { - "id": 2899, - "label": "AUD 275" - }, - { - "id": 2900, - "label": "AUD 272" - }, - { - "id": 2901, - "label": "AUD 270" - }, - { - "id": 2902, - "label": "AUD 271" - }, - { - "id": 2903, - "label": "CHIN 100CN" - }, - { - "id": 2904, - "label": "CHIN 100CM" - }, - { - "id": 2905, - "label": "EDS 87" - }, - { - "id": 2906, - "label": "HIAF 261" - }, - { - "id": 2907, - "label": "LIGN 251" - }, - { - "id": 2908, - "label": "MGT 121B" - }, - { - "id": 2909, - "label": "MGT 121A" - }, - { - "id": 2910, - "label": "MGT 111" - }, - { - "id": 2911, - "label": "MGT 285" - }, - { - "id": 2912, - "label": "BILD 40" - }, - { - "id": 2913, - "label": "PHYS 211A" - }, - { - "id": 2914, - "label": "MGT 286" - }, - { - "id": 2915, - "label": "Linguistics/Arabic (LIAB) 1EX" - }, - { - "id": 2916, - "label": "TDMV 112" - }, - { - "id": 2917, - "label": "TDMV 111" - }, - { - "id": 2918, - "label": "TDMV 110" - }, - { - "id": 2919, - "label": "TDMV 1" - }, - { - "id": 2920, - "label": "HIEU 162/262" - }, - { - "id": 2921, - "label": "HITO 99" - }, - { - "id": 2922, - "label": "COMM 111P" - }, - { - "id": 2923, - "label": "HIGR 227A-B" - }, - { - "id": 2924, - "label": "EDS 278/COGR 278" - }, - { - "id": 2925, - "label": "CSE 170" - }, - { - "id": 2926, - "label": "POLI 275" - }, - { - "id": 2927, - "label": "POLI 274" - }, - { - "id": 2928, - "label": "POLI 271" - }, - { - "id": 2929, - "label": "POLI 270" - }, - { - "id": 2930, - "label": "POLI 273" - }, - { - "id": 2931, - "label": "POLI 272" - }, - { - "id": 2932, - "label": "POLI 279" - }, - { - "id": 2933, - "label": "POLI 278" - }, - { - "id": 2934, - "label": "PHYS 139" - }, - { - "id": 2935, - "label": "PHYS 133" - }, - { - "id": 2936, - "label": "Physics 2DL" - }, - { - "id": 2937, - "label": "PHYS 137" - }, - { - "id": 2938, - "label": "Physics 130A" - }, - { - "id": 2939, - "label": "Physics 110A" - }, - { - "id": 2940, - "label": "Physics 100A" - }, - { - "id": 2941, - "label": "HILD 30" - }, - { - "id": 2942, - "label": "MATH 210A" - }, - { - "id": 2943, - "label": "MATH 210B" - }, - { - "id": 2944, - "label": "POLI 137A" - }, - { - "id": 2945, - "label": "PSYC 268" - }, - { - "id": 2946, - "label": "PSYC 266" - }, - { - "id": 2947, - "label": "PSYC 265" - }, - { - "id": 2948, - "label": "PSYC 263" - }, - { - "id": 2949, - "label": "PSYC 262" - }, - { - "id": 2950, - "label": "PSYC 260" - }, - { - "id": 2951, - "label": "MGT 489" - }, - { - "id": 2952, - "label": "MGT 480" - }, - { - "id": 2953, - "label": "TDGR 218A" - }, - { - "id": 2954, - "label": "HIGR 214" - }, - { - "id": 2955, - "label": "HIGR 212" - }, - { - "id": 2956, - "label": "HIGR 211" - }, - { - "id": 2957, - "label": "HIGR 210" - }, - { - "id": 2958, - "label": "EDS 385" - }, - { - "id": 2959, - "label": "EDS 382" - }, - { - "id": 2960, - "label": "EDS 381" - }, - { - "id": 2961, - "label": "CENG 124A" - }, - { - "id": 2962, - "label": "MGTF 420" - }, - { - "id": 2963, - "label": "VIS 184" - }, - { - "id": 2964, - "label": "VIS 164" - }, - { - "id": 2965, - "label": "VIS 165" - }, - { - "id": 2966, - "label": "VIS 185" - }, - { - "id": 2967, - "label": "NANO 100L" - }, - { - "id": 2968, - "label": "VIS 181" - }, - { - "id": 2969, - "label": "VIS 182" - }, - { - "id": 2970, - "label": "BENG 202/CSE" - }, - { - "id": 2971, - "label": "MUS 245" - }, - { - "id": 2972, - "label": "ANTH 43" - }, - { - "id": 2973, - "label": "Linguistics/Hindi (LIHI) 1CX" - }, - { - "id": 2974, - "label": "HIEU 143" - }, - { - "id": 2975, - "label": "HIEU 140" - }, - { - "id": 2976, - "label": "HIEU 141" - }, - { - "id": 2977, - "label": "HIEU 146" - }, - { - "id": 2978, - "label": "HIEU 144" - }, - { - "id": 2979, - "label": "BENG 213" - }, - { - "id": 2980, - "label": "BENG 212" - }, - { - "id": 2981, - "label": "BENG 211" - }, - { - "id": 2982, - "label": "BENG 230A" - }, - { - "id": 2983, - "label": "POLI 198RA" - }, - { - "id": 2984, - "label": "BIMM 184" - }, - { - "id": 2985, - "label": "BIMM 185" - }, - { - "id": 2986, - "label": "MATH 281C" - }, - { - "id": 2987, - "label": "MDE 225B" - }, - { - "id": 2988, - "label": "MDE 225A" - }, - { - "id": 2989, - "label": "HILA 133S" - }, - { - "id": 2990, - "label": "POLI 120H" - }, - { - "id": 2991, - "label": "MATH 270B" - }, - { - "id": 2992, - "label": "MATH 270C" - }, - { - "id": 2993, - "label": "Math 270B" - }, - { - "id": 2994, - "label": "VIS 126HN" - }, - { - "id": 2995, - "label": "LTFR 50" - }, - { - "id": 2996, - "label": "LTFR 2B" - }, - { - "id": 2997, - "label": "HILA 134" - }, - { - "id": 2998, - "label": "VIS 260" - }, - { - "id": 2999, - "label": "HILA 131" - }, - { - "id": 3000, - "label": "HILA 132" - }, - { - "id": 3001, - "label": "MGT 103" - }, - { - "id": 3002, - "label": "HIGR 275A" - }, - { - "id": 3003, - "label": "MGT 105" - }, - { - "id": 3004, - "label": "TWS 197" - }, - { - "id": 3005, - "label": "GPPS 429" - }, - { - "id": 3006, - "label": "TWS 190" - }, - { - "id": 3007, - "label": "HIUS 152B" - }, - { - "id": 3008, - "label": "GPPS 427" - }, - { - "id": 3009, - "label": "GPPS 420" - }, - { - "id": 3010, - "label": "GPPS 421" - }, - { - "id": 3011, - "label": "TWS 199" - }, - { - "id": 3012, - "label": "GPPS 423" - }, - { - "id": 3013, - "label": "COGS 10" - }, - { - "id": 3014, - "label": "COGS 11" - }, - { - "id": 3015, - "label": "PSYC 93" - }, - { - "id": 3016, - "label": "COGS 13" - }, - { - "id": 3017, - "label": "CHIN 20BM" - }, - { - "id": 3018, - "label": "COGS 15" - }, - { - "id": 3019, - "label": "HIEU 159S" - }, - { - "id": 3020, - "label": "CHIN 20BN" - }, - { - "id": 3021, - "label": "PSYC 99" - }, - { - "id": 3022, - "label": "HIUS 152A" - }, - { - "id": 3023, - "label": "CHIN 20BD" - }, - { - "id": 3024, - "label": "HIEU 104C" - }, - { - "id": 3025, - "label": "HINE 112B" - }, - { - "id": 3026, - "label": "HIEU 104A" - }, - { - "id": 3027, - "label": "CSE 237D" - }, - { - "id": 3028, - "label": "CSE 237A" - }, - { - "id": 3029, - "label": "CSE 237C" - }, - { - "id": 3030, - "label": "CSE 237B" - }, - { - "id": 3031, - "label": "FPM 291" - }, - { - "id": 3032, - "label": "HIUS 157" - }, - { - "id": 3033, - "label": "HIUS 156" - }, - { - "id": 3034, - "label": "HIUS 155" - }, - { - "id": 3035, - "label": "HIUS 153" - }, - { - "id": 3036, - "label": "HIUS 151" - }, - { - "id": 3037, - "label": "HIUS 150" - }, - { - "id": 3038, - "label": "HIEU 114GS" - }, - { - "id": 3039, - "label": "INTL 97" - }, - { - "id": 3040, - "label": "EDS 262A" - }, - { - "id": 3041, - "label": "FPM 259C" - }, - { - "id": 3042, - "label": "FPM 259B" - }, - { - "id": 3043, - "label": "EDS 262C" - }, - { - "id": 3044, - "label": "EDS 262B" - }, - { - "id": 3045, - "label": "HITO 164/264" - }, - { - "id": 3046, - "label": "NEU 298" - }, - { - "id": 3047, - "label": "NEU 299" - }, - { - "id": 3048, - "label": "CHEM 164" - }, - { - "id": 3049, - "label": "CHEM 165" - }, - { - "id": 3050, - "label": "BIBC 110" - }, - { - "id": 3051, - "label": "LATI 200" - }, - { - "id": 3052, - "label": "CHEM 167" - }, - { - "id": 3053, - "label": "CHEM 40C" - }, - { - "id": 3054, - "label": "CHEM 40CH" - }, - { - "id": 3055, - "label": "CHEM 140C" - }, - { - "id": 3056, - "label": "CHEM 140CH" - }, - { - "id": 3057, - "label": "HIEA 138" - }, - { - "id": 3058, - "label": "HIEA 137" - }, - { - "id": 3059, - "label": "HIEA 136" - }, - { - "id": 3060, - "label": "HIEA 135" - }, - { - "id": 3061, - "label": "HIEA 134" - }, - { - "id": 3062, - "label": "CHEM 168" - }, - { - "id": 3063, - "label": "LTSP 116" - }, - { - "id": 3064, - "label": "HIEA 131" - }, - { - "id": 3065, - "label": "HIEA 130" - }, - { - "id": 3066, - "label": "POLI 136" - }, - { - "id": 3067, - "label": "POLI 132" - }, - { - "id": 3068, - "label": "ECE 138L" - }, - { - "id": 3069, - "label": "CENG 230" - }, - { - "id": 3070, - "label": "HIUS 124/ETHN 125" - }, - { - "id": 3071, - "label": "ECON 110B" - }, - { - "id": 3072, - "label": "Econ 110A" - }, - { - "id": 3073, - "label": "ECON 110A" - }, - { - "id": 3074, - "label": "BICD 194" - }, - { - "id": 3075, - "label": "MSED 296A" - }, - { - "id": 3076, - "label": "MSED 296C" - }, - { - "id": 3077, - "label": "MSED 296B" - }, - { - "id": 3078, - "label": "CHIN 100AM" - }, - { - "id": 3079, - "label": "CHIN 100AN" - }, - { - "id": 3080, - "label": "SE 201B" - }, - { - "id": 3081, - "label": "MUS 103C" - }, - { - "id": 3082, - "label": "MUS 103B" - }, - { - "id": 3083, - "label": "BENG 207" - }, - { - "id": 3084, - "label": "BILD 20" - }, - { - "id": 3085, - "label": "PHIL 209D" - }, - { - "id": 3086, - "label": "BILD 22" - }, - { - "id": 3087, - "label": "PHIL 209A" - }, - { - "id": 3088, - "label": "PHIL 209C" - }, - { - "id": 3089, - "label": "PHIL 209B" - }, - { - "id": 3090, - "label": "USP 15" - }, - { - "id": 3091, - "label": "BENG 241C" - }, - { - "id": 3092, - "label": "BENG 241A" - }, - { - "id": 3093, - "label": "TDMV 130" - }, - { - "id": 3094, - "label": "TDMV 3" - }, - { - "id": 3095, - "label": "THDA 3" - }, - { - "id": 3096, - "label": "TDMV 133" - }, - { - "id": 3097, - "label": "DSC 80" - }, - { - "id": 3098, - "label": "DSC 40A" - }, - { - "id": 3099, - "label": "TDMV 138" - }, - { - "id": 3100, - "label": "MUS 501" - }, - { - "id": 3101, - "label": "MUS 500" - }, - { - "id": 3102, - "label": "LTEN 158" - }, - { - "id": 3103, - "label": "POLI 197I" - }, - { - "id": 3104, - "label": "MATH 203A" - }, - { - "id": 3105, - "label": "COGS 160" - }, - { - "id": 3106, - "label": "COGS 164" - }, - { - "id": 3107, - "label": "CSE 158" - }, - { - "id": 3108, - "label": "CSE 152" - }, - { - "id": 3109, - "label": "CSE 153" - }, - { - "id": 3110, - "label": "CSE 150" - }, - { - "id": 3111, - "label": "CSE 151" - }, - { - "id": 3112, - "label": "HLAW 219A" - }, - { - "id": 3113, - "label": "MMW 5" - }, - { - "id": 3114, - "label": "HLAW 219B" - }, - { - "id": 3115, - "label": "MMW 6" - }, - { - "id": 3116, - "label": "PHYS 116" - }, - { - "id": 3117, - "label": "Physics 100C" - }, - { - "id": 3118, - "label": "Physics 110B" - }, - { - "id": 3119, - "label": "PHYS 111" - }, - { - "id": 3120, - "label": "HILD 50" - }, - { - "id": 3121, - "label": "MBC 296" - }, - { - "id": 3122, - "label": "SIOB 286" - }, - { - "id": 3123, - "label": "PSYC 244" - }, - { - "id": 3124, - "label": "PSYC 247" - }, - { - "id": 3125, - "label": "PSYC 246" - }, - { - "id": 3126, - "label": "PSYC 241" - }, - { - "id": 3127, - "label": "PSYC 240" - }, - { - "id": 3128, - "label": "PSYC 243" - }, - { - "id": 3129, - "label": "PSYC 242" - }, - { - "id": 3130, - "label": "VIS 218N" - }, - { - "id": 3131, - "label": "CHEM 295" - }, - { - "id": 3132, - "label": "SIOC 217A" - }, - { - "id": 3133, - "label": "SIOC 217C" - }, - { - "id": 3134, - "label": "SIOC 217B" - }, - { - "id": 3135, - "label": "SIO 217B" - }, - { - "id": 3136, - "label": "SIO 217A" - }, - { - "id": 3137, - "label": "130A-B-C" - }, - { - "id": 3138, - "label": "SIOC 217D" - }, - { - "id": 3139, - "label": "SIO 217C" - }, - { - "id": 3140, - "label": "PSYC 194B" - }, - { - "id": 3141, - "label": "PSYCHOLOGY_MAJOR" - }, - { - "id": 3142, - "label": "PSYC 194A" - }, - { - "id": 3143, - "label": "PSYC 194C" - }, - { - "id": 3144, - "label": "PSYC 110" - }, - { - "id": 3145, - "label": "SOCI 109" - }, - { - "id": 3146, - "label": "SOCA 109" - }, - { - "id": 3147, - "label": "SOCI 108" - }, - { - "id": 3148, - "label": "SOCA 108" - }, - { - "id": 3149, - "label": "SOCI 102" - }, - { - "id": 3150, - "label": "SOCI 100" - }, - { - "id": 3151, - "label": "SOCA 100" - }, - { - "id": 3152, - "label": "SOCI 107" - }, - { - "id": 3153, - "label": "SOCA 107" - }, - { - "id": 3154, - "label": "SOCI 106" - }, - { - "id": 3155, - "label": "SOCA 106" - }, - { - "id": 3156, - "label": "SOCI 105" - }, - { - "id": 3157, - "label": "G 227" - }, - { - "id": 3158, - "label": "SOCA 105" - }, - { - "id": 3159, - "label": "SOCI 104" - }, - { - "id": 3160, - "label": "CSE 4GS" - }, - { - "id": 3161, - "label": "HDP 195" - }, - { - "id": 3162, - "label": "HDP 191" - }, - { - "id": 3163, - "label": "ECE 212AN" - }, - { - "id": 3164, - "label": "HDP 193" - }, - { - "id": 3165, - "label": "HDP 199" - }, - { - "id": 3166, - "label": "COGS 291" - }, - { - "id": 3167, - "label": "COGS 290" - }, - { - "id": 3168, - "label": "HIGR 239" - }, - { - "id": 3169, - "label": "HIGR 238" - }, - { - "id": 3170, - "label": "COGS 299" - }, - { - "id": 3171, - "label": "COGS 298" - }, - { - "id": 3172, - "label": "HIGR 237" - }, - { - "id": 3173, - "label": "EDS 261A" - }, - { - "id": 3174, - "label": "EDS 261C" - }, - { - "id": 3175, - "label": "EDS 261B" - }, - { - "id": 3176, - "label": "LTWR 195" - }, - { - "id": 3177, - "label": "LTWR 194" - }, - { - "id": 3178, - "label": "LTWR 196" - }, - { - "id": 3179, - "label": "LTWR 199" - }, - { - "id": 3180, - "label": "LTWR 198" - }, - { - "id": 3181, - "label": "ECE 243B" - }, - { - "id": 3182, - "label": "POLI 194RA" - }, - { - "id": 3183, - "label": "SE 226" - }, - { - "id": 3184, - "label": "SE 241" - }, - { - "id": 3185, - "label": "MDE 260A" - }, - { - "id": 3186, - "label": "MDE 260B" - }, - { - "id": 3187, - "label": "MDE 260C" - }, - { - "id": 3188, - "label": "MGTF 406" - }, - { - "id": 3189, - "label": "MGTF 402" - }, - { - "id": 3190, - "label": "MGTF 407" - }, - { - "id": 3191, - "label": "MGTF 404" - }, - { - "id": 3192, - "label": "MGTF 405" - }, - { - "id": 3193, - "label": "MATH 184A" - }, - { - "id": 3194, - "label": "MGTF 401" - }, - { - "id": 3195, - "label": "MAE 124" - }, - { - "id": 3196, - "label": "MAE 123" - }, - { - "id": 3197, - "label": "MAE 105" - }, - { - "id": 3198, - "label": "MAE 122" - }, - { - "id": 3199, - "label": "MGTF 408" - }, - { - "id": 3200, - "label": "MGTF 409" - }, - { - "id": 3201, - "label": "PHIL 234" - }, - { - "id": 3202, - "label": "PHIL 236" - }, - { - "id": 3203, - "label": "PHIL 230" - }, - { - "id": 3204, - "label": "PHIL 232" - }, - { - "id": 3205, - "label": "MUS 267" - }, - { - "id": 3206, - "label": "BENG 189" - }, - { - "id": 3207, - "label": "PHYS 130A" - }, - { - "id": 3208, - "label": "PHYS 130C" - }, - { - "id": 3209, - "label": "Physics 130B" - }, - { - "id": 3210, - "label": "PHYS 130B" - }, - { - "id": 3211, - "label": "VIS 258" - }, - { - "id": 3212, - "label": "VIS 259" - }, - { - "id": 3213, - "label": "VIS 151A" - }, - { - "id": 3214, - "label": "VIS 22" - }, - { - "id": 3215, - "label": "VIS 251" - }, - { - "id": 3216, - "label": "VIS 252" - }, - { - "id": 3217, - "label": "VIS 254" - }, - { - "id": 3218, - "label": "VIS 255" - }, - { - "id": 3219, - "label": "VIS 256" - }, - { - "id": 3220, - "label": "VIS 257" - }, - { - "id": 3221, - "label": "CSE 99" - }, - { - "id": 3222, - "label": "MUS 192" - }, - { - "id": 3223, - "label": "BENG 232" - }, - { - "id": 3224, - "label": "BENG 235" - }, - { - "id": 3225, - "label": "MUS 195" - }, - { - "id": 3226, - "label": "CSE 90" - }, - { - "id": 3227, - "label": "CSE 91" - }, - { - "id": 3228, - "label": "Linguistics/Hindi (LIHI) 1AX" - }, - { - "id": 3229, - "label": "ECON 120BH" - }, - { - "id": 3230, - "label": "ECE 267" - }, - { - "id": 3231, - "label": "ECE 268" - }, - { - "id": 3232, - "label": "ECE 238B" - }, - { - "id": 3233, - "label": "ECE 238A" - }, - { - "id": 3234, - "label": "HIEU 102A" - }, - { - "id": 3235, - "label": "HILA 145" - }, - { - "id": 3236, - "label": "LTEA 143" - }, - { - "id": 3237, - "label": "LTEA 142" - }, - { - "id": 3238, - "label": "LTEA 141" - }, - { - "id": 3239, - "label": "LTEA 140" - }, - { - "id": 3240, - "label": "LTEA 144" - }, - { - "id": 3241, - "label": "LTCS 110" - }, - { - "id": 3242, - "label": "LTCS 111" - }, - { - "id": 3243, - "label": "GPPS 402" - }, - { - "id": 3244, - "label": "GPPS 403" - }, - { - "id": 3245, - "label": "GPPS 400" - }, - { - "id": 3246, - "label": "GPPS 401" - }, - { - "id": 3247, - "label": "GPPS 406" - }, - { - "id": 3248, - "label": "GPPS 407" - }, - { - "id": 3249, - "label": "GPPS 404" - }, - { - "id": 3250, - "label": "GPPS 405" - }, - { - "id": 3251, - "label": "GPPS 408" - }, - { - "id": 3252, - "label": "CSE 239A" - }, - { - "id": 3253, - "label": "GPPS 450" - }, - { - "id": 3254, - "label": "HILA 118" - }, - { - "id": 3255, - "label": "MAE 218B" - }, - { - "id": 3256, - "label": "MAE 218A" - }, - { - "id": 3257, - "label": "HILA 110" - }, - { - "id": 3258, - "label": "HILA 117" - }, - { - "id": 3259, - "label": "HILA 114" - }, - { - "id": 3260, - "label": "HILA 115" - }, - { - "id": 3261, - "label": "SE 280" - }, - { - "id": 3262, - "label": "SE 276B" - }, - { - "id": 3263, - "label": "WCWP 100" - }, - { - "id": 3264, - "label": "ERC 1" - }, - { - "id": 3265, - "label": "HIUS 174" - }, - { - "id": 3266, - "label": "HIUS 177" - }, - { - "id": 3267, - "label": "ECON 299" - }, - { - "id": 3268, - "label": "ECON 291" - }, - { - "id": 3269, - "label": "ECON 296" - }, - { - "id": 3270, - "label": "ECON 297" - }, - { - "id": 3271, - "label": "MAE 232C" - }, - { - "id": 3272, - "label": "POLI 150A" - }, - { - "id": 3273, - "label": "LTWR 295" - }, - { - "id": 3274, - "label": "CHEM 142" - }, - { - "id": 3275, - "label": "LTWR 298" - }, - { - "id": 3276, - "label": "CHEM 141" - }, - { - "id": 3277, - "label": "CHEM 146" - }, - { - "id": 3278, - "label": "CHEM 145" - }, - { - "id": 3279, - "label": "HINE 165/265" - }, - { - "id": 3280, - "label": "HIEA 114" - }, - { - "id": 3281, - "label": "LTSP 133" - }, - { - "id": 3282, - "label": "HIEA 116" - }, - { - "id": 3283, - "label": "HIEA 111" - }, - { - "id": 3284, - "label": "LTSP 134" - }, - { - "id": 3285, - "label": "LTSP 137" - }, - { - "id": 3286, - "label": "LTSP 136" - }, - { - "id": 3287, - "label": "LTSP 138" - }, - { - "id": 3288, - "label": "COMM 108A" - }, - { - "id": 3289, - "label": "SOCI 136E" - }, - { - "id": 3290, - "label": "COMM 108G" - }, - { - "id": 3291, - "label": "COMM 108D" - }, - { - "id": 3292, - "label": "SOCI 136F" - }, - { - "id": 3293, - "label": "SOCC 136B" - }, - { - "id": 3294, - "label": "POLI 154" - }, - { - "id": 3295, - "label": "LTWL 110B" - }, - { - "id": 3296, - "label": "PSYC 189" - }, - { - "id": 3297, - "label": "POLI 151" - }, - { - "id": 3298, - "label": "POLI 153" - }, - { - "id": 3299, - "label": "PSYC 182" - }, - { - "id": 3300, - "label": "PSYC 180" - }, - { - "id": 3301, - "label": "PSYC 187" - }, - { - "id": 3302, - "label": "PSYC 184" - }, - { - "id": 3303, - "label": "BICD 110" - }, - { - "id": 3304, - "label": "ANTH 230" - }, - { - "id": 3305, - "label": "ANGR 230" - }, - { - "id": 3306, - "label": "CENG 254" - }, - { - "id": 3307, - "label": "CENG 255" - }, - { - "id": 3308, - "label": "CENG 256" - }, - { - "id": 3309, - "label": "CENG 257" - }, - { - "id": 3310, - "label": "HIUS 125/ETHN 163J" - }, - { - "id": 3311, - "label": "CENG 252" - }, - { - "id": 3312, - "label": "CENG 253" - }, - { - "id": 3313, - "label": "Linguistics/Arabic (LIAB) 1AX" - }, - { - "id": 3314, - "label": "PHYS 152A" - }, - { - "id": 3315, - "label": "Chemistry 130" - }, - { - "id": 3316, - "label": "Physics 140A" - }, - { - "id": 3317, - "label": "COGS 195" - }, - { - "id": 3318, - "label": "COGS 198" - }, - { - "id": 3319, - "label": "COGS 199" - }, - { - "id": 3320, - "label": "PHYS 152B" - }, - { - "id": 3321, - "label": "Physics 152A" - }, - { - "id": 3322, - "label": "AUD 236" - }, - { - "id": 3323, - "label": "HILA 161/261" - }, - { - "id": 3324, - "label": "CONT 68" - }, - { - "id": 3325, - "label": "Classics 399" - }, - { - "id": 3326, - "label": "CENG 113" - }, - { - "id": 3327, - "label": "BENG 291/191" - }, - { - "id": 3328, - "label": "CHEM 11" - }, - { - "id": 3329, - "label": "CHEM 13" - }, - { - "id": 3330, - "label": "CHEM 12" - }, - { - "id": 3331, - "label": "ECE 111" - }, - { - "id": 3332, - "label": "CENG 114" - }, - { - "id": 3333, - "label": "TDPF 161" - }, - { - "id": 3334, - "label": "TDPF 160" - }, - { - "id": 3335, - "label": "TDPF 163" - }, - { - "id": 3336, - "label": "TDPF 162" - }, - { - "id": 3337, - "label": "TDGE 25" - }, - { - "id": 3338, - "label": "CSE 280A" - }, - { - "id": 3339, - "label": "LATI 122B" - }, - { - "id": 3340, - "label": "LATI 122A" - }, - { - "id": 3341, - "label": "LATI 122C" - }, - { - "id": 3342, - "label": "BENG 127B" - }, - { - "id": 3343, - "label": "BENG 127A" - }, - { - "id": 3344, - "label": "CSE 131" - }, - { - "id": 3345, - "label": "CSE 135" - }, - { - "id": 3346, - "label": "CSE 136" - }, - { - "id": 3347, - "label": "CSE 249A" - }, - { - "id": 3348, - "label": "CSE 249B" - }, - { - "id": 3349, - "label": "PHYS 175" - }, - { - "id": 3350, - "label": "Chemistry 132" - }, - { - "id": 3351, - "label": "PHYS 176" - }, - { - "id": 3352, - "label": "PHYS 177" - }, - { - "id": 3353, - "label": "PHYS 170" - }, - { - "id": 3354, - "label": "Physics 1C" - }, - { - "id": 3355, - "label": "CSE 176A" - }, - { - "id": 3356, - "label": "COGS 120" - }, - { - "id": 3357, - "label": "PHYS 173" - }, - { - "id": 3358, - "label": "HIGR 223B" - }, - { - "id": 3359, - "label": "HIGR 223A" - }, - { - "id": 3360, - "label": "PHYS 178" - }, - { - "id": 3361, - "label": "COGR 200C" - }, - { - "id": 3362, - "label": "POLI 133G" - }, - { - "id": 3363, - "label": "POLI 133D" - }, - { - "id": 3364, - "label": "POLI 133A" - }, - { - "id": 3365, - "label": "POLI 133J" - }, - { - "id": 3366, - "label": "SOCI 121" - }, - { - "id": 3367, - "label": "SOCC 121" - }, - { - "id": 3368, - "label": "SOCI 122" - }, - { - "id": 3369, - "label": "SOCI 125" - }, - { - "id": 3370, - "label": "SOCB 125" - }, - { - "id": 3371, - "label": "SOCI 127" - }, - { - "id": 3372, - "label": "SOCB 127" - }, - { - "id": 3373, - "label": "SOCI 126" - }, - { - "id": 3374, - "label": "SOCC 126" - }, - { - "id": 3375, - "label": "SOCI 129" - }, - { - "id": 3376, - "label": "SOCC 129" - }, - { - "id": 3377, - "label": "SOCI 188D" - }, - { - "id": 3378, - "label": "SOCD 188D" - }, - { - "id": 3379, - "label": "SOCI 188E" - }, - { - "id": 3380, - "label": "SOCI 188F" - }, - { - "id": 3381, - "label": "SOCI 188G" - }, - { - "id": 3382, - "label": "SOCD 188B" - }, - { - "id": 3383, - "label": "SOCI 188I" - }, - { - "id": 3384, - "label": "SOCI 188J" - }, - { - "id": 3385, - "label": "SOCD 188J" - }, - { - "id": 3386, - "label": "COGR 284" - }, - { - "id": 3387, - "label": "COGR 283" - }, - { - "id": 3388, - "label": "COGR 282" - }, - { - "id": 3389, - "label": "COGR 281" - }, - { - "id": 3390, - "label": "COGR 280" - }, - { - "id": 3391, - "label": "COGS 500" - }, - { - "id": 3392, - "label": "BILD 4" - }, - { - "id": 3393, - "label": "HDP 171" - }, - { - "id": 3394, - "label": "SE 151B" - }, - { - "id": 3395, - "label": "Linguistics/Heritage Languages (LIHL) 115F" - }, - { - "id": 3396, - "label": "MATH 210C" - }, - { - "id": 3397, - "label": "ECE 241B" - }, - { - "id": 3398, - "label": "ECE 241A" - }, - { - "id": 3399, - "label": "ECE 241C" - }, - { - "id": 3400, - "label": "BENG 186B" - }, - { - "id": 3401, - "label": "Linguistics/Heritage Languages (LIHL) 115P" - }, - { - "id": 3402, - "label": "BENG 186A" - }, - { - "id": 3403, - "label": "BENG 112B" - }, - { - "id": 3404, - "label": "SE 3" - }, - { - "id": 3405, - "label": "SE 7" - }, - { - "id": 3406, - "label": "MAE 108" - }, - { - "id": 3407, - "label": "GPIM 482" - }, - { - "id": 3408, - "label": "GPIM 481" - }, - { - "id": 3409, - "label": "GPIM 480" - }, - { - "id": 3410, - "label": "MAE 104" - }, - { - "id": 3411, - "label": "MAE 9" - }, - { - "id": 3412, - "label": "PHIL 210" - }, - { - "id": 3413, - "label": "PHIL 214" - }, - { - "id": 3414, - "label": "PHIL 215" - }, - { - "id": 3415, - "label": "PHIL 218" - }, - { - "id": 3416, - "label": "SOCI 104Q" - }, - { - "id": 3417, - "label": "SOCA 104Q" - }, - { - "id": 3418, - "label": "MUS 200" - }, - { - "id": 3419, - "label": "MUS 202" - }, - { - "id": 3420, - "label": "MUS 204" - }, - { - "id": 3421, - "label": "MUS 205" - }, - { - "id": 3422, - "label": "MUS 206" - }, - { - "id": 3423, - "label": "MUS 207" - }, - { - "id": 3424, - "label": "MUS 209" - }, - { - "id": 3425, - "label": "POLI 90" - }, - { - "id": 3426, - "label": "BIMM 116" - }, - { - "id": 3427, - "label": "Psyc 106" - }, - { - "id": 3428, - "label": "Psyc 2" - }, - { - "id": 3429, - "label": "CHEM 6BL" - }, - { - "id": 3430, - "label": "ANTH 289S" - }, - { - "id": 3431, - "label": "BIMM 140" - }, - { - "id": 3432, - "label": "BIMM 143" - }, - { - "id": 3433, - "label": "BIMM 101" - }, - { - "id": 3434, - "label": "BIMM 149" - }, - { - "id": 3435, - "label": "INTL 196H" - }, - { - "id": 3436, - "label": "INTL 190H" - }, - { - "id": 3437, - "label": "MATH 220A-B-C" - }, - { - "id": 3438, - "label": "ECE 289" - }, - { - "id": 3439, - "label": "ECE 284" - }, - { - "id": 3440, - "label": "ECE 285" - }, - { - "id": 3441, - "label": "ECE 286" - }, - { - "id": 3442, - "label": "ECE 287" - }, - { - "id": 3443, - "label": "ECE 280" - }, - { - "id": 3444, - "label": "ECE 281" - }, - { - "id": 3445, - "label": "ECE 282" - }, - { - "id": 3446, - "label": "ECE 283" - }, - { - "id": 3447, - "label": "MAE 143A" - }, - { - "id": 3448, - "label": "ANTH 242" - }, - { - "id": 3449, - "label": "TDGR 268" - }, - { - "id": 3450, - "label": "LTCS 134" - }, - { - "id": 3451, - "label": "LTCS 132" - }, - { - "id": 3452, - "label": "LTCS 133" - }, - { - "id": 3453, - "label": "LTCS 130" - }, - { - "id": 3454, - "label": "LTCS 131" - }, - { - "id": 3455, - "label": "GPEC 462" - }, - { - "id": 3456, - "label": "CHEM 1" - }, - { - "id": 3457, - "label": "CHEM 4" - }, - { - "id": 3458, - "label": "AWP 1" - }, - { - "id": 3459, - "label": "FMPH 180C" - }, - { - "id": 3460, - "label": "FMPH 180B" - }, - { - "id": 3461, - "label": "FMPH 180A" - }, - { - "id": 3462, - "label": "BENG 148A" - }, - { - "id": 3463, - "label": "BENG 148B" - }, - { - "id": 3464, - "label": "SOCI 196B" - }, - { - "id": 3465, - "label": "SOCI 196A" - }, - { - "id": 3466, - "label": "CHEM 118" - }, - { - "id": 3467, - "label": "HIEA 122" - }, - { - "id": 3468, - "label": "LTEA 100A" - }, - { - "id": 3469, - "label": "LTEA 100B" - }, - { - "id": 3470, - "label": "LTEA 100C" - }, - { - "id": 3471, - "label": "ECON 270" - }, - { - "id": 3472, - "label": "ECON 272" - }, - { - "id": 3473, - "label": "MATH 264A-B-C" - }, - { - "id": 3474, - "label": "ECE 161A" - }, - { - "id": 3475, - "label": "ECE 161B" - }, - { - "id": 3476, - "label": "HITO 165/265" - }, - { - "id": 3477, - "label": "ETHN 257A-B" - }, - { - "id": 3478, - "label": "LTSP 154" - }, - { - "id": 3479, - "label": "MATH 205" - }, - { - "id": 3480, - "label": "LTSP 151" - }, - { - "id": 3481, - "label": "MATH 208" - }, - { - "id": 3482, - "label": "MATH 209" - }, - { - "id": 3483, - "label": "LTSP 159" - }, - { - "id": 3484, - "label": "POLI 172" - }, - { - "id": 3485, - "label": "POLI 30D" - }, - { - "id": 3486, - "label": "ECON 212A-B-C" - }, - { - "id": 3487, - "label": "Econ 210C" - }, - { - "id": 3488, - "label": "POLI 171" - }, - { - "id": 3489, - "label": "PSYC 161" - }, - { - "id": 3490, - "label": "PSYC 162" - }, - { - "id": 3491, - "label": "PSYC 164" - }, - { - "id": 3492, - "label": "PSYC 166" - }, - { - "id": 3493, - "label": "PSYC 167" - }, - { - "id": 3494, - "label": "PSYC 168" - }, - { - "id": 3495, - "label": "PSYC 169" - }, - { - "id": 3496, - "label": "MAE 93" - }, - { - "id": 3497, - "label": "MAE 98" - }, - { - "id": 3498, - "label": "MATH 20A" - }, - { - "id": 3499, - "label": "Math 2C" - }, - { - "id": 3500, - "label": "Math 4C" - }, - { - "id": 3501, - "label": "MATH 20B" - }, - { - "id": 3502, - "label": "MATH 20E" - }, - { - "id": 3503, - "label": "Math 21C" - }, - { - "id": 3504, - "label": "Linguistics/Arabic (LIAB) 1CX" - }, - { - "id": 3505, - "label": "NEU 259" - }, - { - "id": 3506, - "label": "LTSP 119C" - }, - { - "id": 3507, - "label": "HILA 113D" - }, - { - "id": 3508, - "label": "POLI 130AD" - }, - { - "id": 3509, - "label": "Linguistics/German (LIGM) 1CX" - }, - { - "id": 3510, - "label": "TDGR 280B" - }, - { - "id": 3511, - "label": "TDGR 280A" - }, - { - "id": 3512, - "label": "TDGR 280C" - }, - { - "id": 3513, - "label": "REQUIRES_DS25_MAJOR" - }, - { - "id": 3514, - "label": "DSC 40B" - }, - { - "id": 3515, - "label": "PHYS 140B" - }, - { - "id": 3516, - "label": "PHYS 140A" - }, - { - "id": 3517, - "label": "LTEN 188" - }, - { - "id": 3518, - "label": "LTEN 189" - }, - { - "id": 3519, - "label": "LTEN 180" - }, - { - "id": 3520, - "label": "LTEN 181" - }, - { - "id": 3521, - "label": "LTEN 183" - }, - { - "id": 3522, - "label": "LTEN 185" - }, - { - "id": 3523, - "label": "LTEN 186" - }, - { - "id": 3524, - "label": "ECE 222A" - }, - { - "id": 3525, - "label": "COGS 8" - }, - { - "id": 3526, - "label": "COGS 9" - }, - { - "id": 3527, - "label": "ANTH" - }, - { - "id": 3528, - "label": "BENG 283/Chem 283/BIOM 283" - }, - { - "id": 3529, - "label": "COGS 2" - }, - { - "id": 3530, - "label": "COGS 3" - }, - { - "id": 3531, - "label": "GLBH 197" - }, - { - "id": 3532, - "label": "PHIL 205A" - }, - { - "id": 3533, - "label": "ENVR 195" - }, - { - "id": 3534, - "label": "ECE 222B" - }, - { - "id": 3535, - "label": "ENVR 199" - }, - { - "id": 3536, - "label": "ENVR 198" - }, - { - "id": 3537, - "label": "GLBH 150B" - }, - { - "id": 3538, - "label": "TDHT 110" - }, - { - "id": 3539, - "label": "TDHT 111" - }, - { - "id": 3540, - "label": "TDHT 114" - }, - { - "id": 3541, - "label": "TDHT 115" - }, - { - "id": 3542, - "label": "TDGR 223A-B" - }, - { - "id": 3543, - "label": "TDGR 223A" - }, - { - "id": 3544, - "label": "BENG 129A" - }, - { - "id": 3545, - "label": "BENG 129B" - }, - { - "id": 3546, - "label": "CSE 112" - }, - { - "id": 3547, - "label": "CSE 118" - }, - { - "id": 3548, - "label": "ECE 191" - }, - { - "id": 3549, - "label": "ECE 192" - }, - { - "id": 3550, - "label": "COMT 111B" - }, - { - "id": 3551, - "label": "COMT 115" - }, - { - "id": 3552, - "label": "ICAM 160B" - }, - { - "id": 3553, - "label": "Cog Sci 102C" - }, - { - "id": 3554, - "label": "ECE 118" - }, - { - "id": 3555, - "label": "Cog Sci 121" - }, - { - "id": 3556, - "label": "Cog Sci 184" - }, - { - "id": 3557, - "label": "ECON 235A-B-C" - }, - { - "id": 3558, - "label": "PHIL 28" - }, - { - "id": 3559, - "label": "Philosophy 27" - }, - { - "id": 3560, - "label": "Poli Sci 27" - }, - { - "id": 3561, - "label": "PHYS 151" - }, - { - "id": 3562, - "label": "PHIL 25" - }, - { - "id": 3563, - "label": "PHYS 154" - }, - { - "id": 3564, - "label": "PHIL 27" - }, - { - "id": 3565, - "label": "Hum 1" - }, - { - "id": 3566, - "label": "Hum 2" - }, - { - "id": 3567, - "label": "Linguistics/Italian (LIIT) 1B" - }, - { - "id": 3568, - "label": "LIIT 1A" - }, - { - "id": 3569, - "label": "LIIT 1AX" - }, - { - "id": 3570, - "label": "Linguistics/Italian (LIIT) 1C" - }, - { - "id": 3571, - "label": "Linguistics/Italian (LIIT) 1D" - }, - { - "id": 3572, - "label": "SE 182" - }, - { - "id": 3573, - "label": "SE 180" - }, - { - "id": 3574, - "label": "SE 130A" - }, - { - "id": 3575, - "label": "SE 184" - }, - { - "id": 3576, - "label": "HIUS 168/268" - }, - { - "id": 3577, - "label": "LTKO 2C" - }, - { - "id": 3578, - "label": "SOCI 147" - }, - { - "id": 3579, - "label": "SOCI 145" - }, - { - "id": 3580, - "label": "SOCB 145" - }, - { - "id": 3581, - "label": "SOCI 144" - }, - { - "id": 3582, - "label": "SOCC 144" - }, - { - "id": 3583, - "label": "SOCI 143" - }, - { - "id": 3584, - "label": "SOCB 143" - }, - { - "id": 3585, - "label": "SOCI 142" - }, - { - "id": 3586, - "label": "SOCB 142" - }, - { - "id": 3587, - "label": "SOCI 141" - }, - { - "id": 3588, - "label": "SOCC 141" - }, - { - "id": 3589, - "label": "SOCI 140" - }, - { - "id": 3590, - "label": "SOCC 140" - }, - { - "id": 3591, - "label": "HIUS 155B" - }, - { - "id": 3592, - "label": "SOCI 149" - }, - { - "id": 3593, - "label": "SOCI 148" - }, - { - "id": 3594, - "label": "SOCC 148" - }, - { - "id": 3595, - "label": "HDP 150" - }, - { - "id": 3596, - "label": "HDP 181" - }, - { - "id": 3597, - "label": "ECE 140A" - }, - { - "id": 3598, - "label": "ECE 140B" - }, - { - "id": 3599, - "label": "Linguistics/Heritage Languages (LIHL) 117P" - }, - { - "id": 3600, - "label": "BIOM 276" - }, - { - "id": 3601, - "label": "Linguistics/Heritage Languages (LIHL) 117W" - }, - { - "id": 3602, - "label": "Linguistics/Heritage Languages (LIHL) 117F" - }, - { - "id": 3603, - "label": "MAE 167" - }, - { - "id": 3604, - "label": "MAE 166" - }, - { - "id": 3605, - "label": "MAE 165" - }, - { - "id": 3606, - "label": "HIUS 178/278 The Atlantic World, 1400\u20131800 (4)" - }, - { - "id": 3607, - "label": "LTRU 2A" - }, - { - "id": 3608, - "label": "LTRU 2B" - }, - { - "id": 3609, - "label": "VIS 125DN" - }, - { - "id": 3610, - "label": "Soc/G 299" - }, - { - "id": 3611, - "label": "Soc/G 298" - }, - { - "id": 3612, - "label": "Soc/G 290" - }, - { - "id": 3613, - "label": "MATH 199H" - }, - { - "id": 3614, - "label": "EDS 30/Math 95" - }, - { - "id": 3615, - "label": "CLRE 263" - }, - { - "id": 3616, - "label": "CLRE 260" - }, - { - "id": 3617, - "label": "CLRE 264" - }, - { - "id": 3618, - "label": "CLRE 265" - }, - { - "id": 3619, - "label": "MUS 228" - }, - { - "id": 3620, - "label": "MUS 229" - }, - { - "id": 3621, - "label": "VIS 298" - }, - { - "id": 3622, - "label": "VIS 299" - }, - { - "id": 3623, - "label": "VIS 295" - }, - { - "id": 3624, - "label": "CHEM 105A" - }, - { - "id": 3625, - "label": "CHEM 133" - }, - { - "id": 3626, - "label": "CHEM 131" - }, - { - "id": 3627, - "label": "CHEM 105B" - }, - { - "id": 3628, - "label": "TDAC 103B" - }, - { - "id": 3629, - "label": "TDAC 103A" - }, - { - "id": 3630, - "label": "LTTH 210B" - }, - { - "id": 3631, - "label": "LTTH 210C" - }, - { - "id": 3632, - "label": "BIMM 164" - }, - { - "id": 3633, - "label": "LTTH 210A" - }, - { - "id": 3634, - "label": "BIMM 162" - }, - { - "id": 3635, - "label": "MATH 287D" - }, - { - "id": 3636, - "label": "MATH 287A" - }, - { - "id": 3637, - "label": "MATH 287B" - }, - { - "id": 3638, - "label": "MATH 287C" - }, - { - "id": 3639, - "label": "LTCS 155" - }, - { - "id": 3640, - "label": "LTCS 150" - }, - { - "id": 3641, - "label": "150A-B-C" - }, - { - "id": 3642, - "label": "VIS 124CN" - }, - { - "id": 3643, - "label": "NANO 4" - }, - { - "id": 3644, - "label": "NANO 1" - }, - { - "id": 3645, - "label": "BIOM 229" - }, - { - "id": 3646, - "label": "BIOM 228" - }, - { - "id": 3647, - "label": "BENG 1" - }, - { - "id": 3648, - "label": "BENG 2" - }, - { - "id": 3649, - "label": "SIOC 291S" - }, - { - "id": 3650, - "label": "BIOM 222" - }, - { - "id": 3651, - "label": "BIOM 227" - }, - { - "id": 3652, - "label": "BIOM 226" - }, - { - "id": 3653, - "label": "ANTH 224" - }, - { - "id": 3654, - "label": "BIOM 224" - }, - { - "id": 3655, - "label": "MEDICAL_STUDENT" - }, - { - "id": 3656, - "label": "LTGM 298" - }, - { - "id": 3657, - "label": "SOCI 87" - }, - { - "id": 3658, - "label": "LTGM 297" - }, - { - "id": 3659, - "label": "ECON 139" - }, - { - "id": 3660, - "label": "ECON 138" - }, - { - "id": 3661, - "label": "ECON 133" - }, - { - "id": 3662, - "label": "ECON 132" - }, - { - "id": 3663, - "label": "Econ 131" - }, - { - "id": 3664, - "label": "ECON 131" - }, - { - "id": 3665, - "label": "ECON 130" - }, - { - "id": 3666, - "label": "ECON 136" - }, - { - "id": 3667, - "label": "ECON 135" - }, - { - "id": 3668, - "label": "RELI 1" - }, - { - "id": 3669, - "label": "RELI 2" - }, - { - "id": 3670, - "label": "LTWL 500" - }, - { - "id": 3671, - "label": "VIS 180A" - }, - { - "id": 3672, - "label": "VIS 180B" - }, - { - "id": 3673, - "label": "POLI 235A" - }, - { - "id": 3674, - "label": "ECON 250" - }, - { - "id": 3675, - "label": "MUS 80" - }, - { - "id": 3676, - "label": "MUS 87" - }, - { - "id": 3677, - "label": "CHEM 187" - }, - { - "id": 3678, - "label": "CHEM 184" - }, - { - "id": 3679, - "label": "CHEM 185" - }, - { - "id": 3680, - "label": "MATH 21C" - }, - { - "id": 3681, - "label": "MATH 176" - }, - { - "id": 3682, - "label": "LTSP 175" - }, - { - "id": 3683, - "label": "LTSP 174" - }, - { - "id": 3684, - "label": "LTSP 177" - }, - { - "id": 3685, - "label": "LTSP 176" - }, - { - "id": 3686, - "label": "LTSP 171" - }, - { - "id": 3687, - "label": "LTSP 170" - }, - { - "id": 3688, - "label": "CHEM 188" - }, - { - "id": 3689, - "label": "LTSP 172" - }, - { - "id": 3690, - "label": "POLI 99H" - }, - { - "id": 3691, - "label": "POLI 192" - }, - { - "id": 3692, - "label": "POLI 194" - }, - { - "id": 3693, - "label": "POLI 195" - }, - { - "id": 3694, - "label": "POLI 198" - }, - { - "id": 3695, - "label": "POLI 199" - }, - { - "id": 3696, - "label": "PSYC 146" - }, - { - "id": 3697, - "label": "PSYC 147" - }, - { - "id": 3698, - "label": "PSYC 144" - }, - { - "id": 3699, - "label": "PSYC 145" - }, - { - "id": 3700, - "label": "PSYC 142" - }, - { - "id": 3701, - "label": "PSYC 143" - }, - { - "id": 3702, - "label": "PSYC 140" - }, - { - "id": 3703, - "label": "PSYC 120" - }, - { - "id": 3704, - "label": "PSYC 141" - }, - { - "id": 3705, - "label": "PSYC 148" - }, - { - "id": 3706, - "label": "LIGN 8" - }, - { - "id": 3707, - "label": "LIGN 3" - }, - { - "id": 3708, - "label": "LIGN 5" - }, - { - "id": 3709, - "label": "LIGN 7" - }, - { - "id": 3710, - "label": "PHYS 225A-B" - }, - { - "id": 3711, - "label": "AAS 10" - }, - { - "id": 3712, - "label": "ANTH 218" - }, - { - "id": 3713, - "label": "ANTH 219" - }, - { - "id": 3714, - "label": "ANGR 219" - }, - { - "id": 3715, - "label": "ANTH 210" - }, - { - "id": 3716, - "label": "ANTH 211" - }, - { - "id": 3717, - "label": "ANTH 212" - }, - { - "id": 3718, - "label": "ANTH 213" - }, - { - "id": 3719, - "label": "ANTH 214" - }, - { - "id": 3720, - "label": "ANTH 215" - }, - { - "id": 3721, - "label": "ANTH 216" - }, - { - "id": 3722, - "label": "ANTH 217" - }, - { - "id": 3723, - "label": "ESYS 90" - }, - { - "id": 3724, - "label": "MATH 160A" - }, - { - "id": 3725, - "label": "Linguistics/German (LIGM) 1AX" - }, - { - "id": 3726, - "label": "POLI 110T" - }, - { - "id": 3727, - "label": "POLI 110H" - }, - { - "id": 3728, - "label": "POLI 110K" - }, - { - "id": 3729, - "label": "POLI 110J" - }, - { - "id": 3730, - "label": "POLI 110M" - }, - { - "id": 3731, - "label": "POLI 110N" - }, - { - "id": 3732, - "label": "POLI 110A" - }, - { - "id": 3733, - "label": "POLI 110C" - }, - { - "id": 3734, - "label": "POLI 110B" - }, - { - "id": 3735, - "label": "POLI 110G" - }, - { - "id": 3736, - "label": "BIBC 194" - }, - { - "id": 3737, - "label": "HIEU 142" - }, - { - "id": 3738, - "label": "LATI 199" - }, - { - "id": 3739, - "label": "LATI 190" - }, - { - "id": 3740, - "label": "LATI 191" - }, - { - "id": 3741, - "label": "ANSC 128" - }, - { - "id": 3742, - "label": "ANSC 129" - }, - { - "id": 3743, - "label": "TDGR 289" - }, - { - "id": 3744, - "label": "TDGR 288" - }, - { - "id": 3745, - "label": "ANSC 120" - }, - { - "id": 3746, - "label": "ANSC 122" - }, - { - "id": 3747, - "label": "ANSC 124" - }, - { - "id": 3748, - "label": "ANSC 125" - }, - { - "id": 3749, - "label": "ANSC 126" - }, - { - "id": 3750, - "label": "ANSC 127" - }, - { - "id": 3751, - "label": "HISC 165" - }, - { - "id": 3752, - "label": "HISC 169" - }, - { - "id": 3753, - "label": "MATH 103A" - }, - { - "id": 3754, - "label": "VIS 147A" - }, - { - "id": 3755, - "label": "MATH 103B" - }, - { - "id": 3756, - "label": "MDE 231B" - }, - { - "id": 3757, - "label": "MDE 231A" - }, - { - "id": 3758, - "label": "TDPW 190" - }, - { - "id": 3759, - "label": "LIGN 248" - }, - { - "id": 3760, - "label": "LIGN 220" - }, - { - "id": 3761, - "label": "TDMV 190" - }, - { - "id": 3762, - "label": "LIGN 177" - }, - { - "id": 3763, - "label": "LIGN 240" - }, - { - "id": 3764, - "label": "LIGN 110" - }, - { - "id": 3765, - "label": "LIGN 241" - }, - { - "id": 3766, - "label": "LIGN 245" - }, - { - "id": 3767, - "label": "LIGN 247" - }, - { - "id": 3768, - "label": "TDGE 125" - }, - { - "id": 3769, - "label": "HITO 168/268" - }, - { - "id": 3770, - "label": "LIGN 171" - }, - { - "id": 3771, - "label": "VIS 11" - }, - { - "id": 3772, - "label": "VIS 10" - }, - { - "id": 3773, - "label": "CHIN 196" - }, - { - "id": 3774, - "label": "CHIN 198" - }, - { - "id": 3775, - "label": "CHIN 199" - }, - { - "id": 3776, - "label": "COMM 129" - }, - { - "id": 3777, - "label": "COMM 128" - }, - { - "id": 3778, - "label": "COMM 127" - }, - { - "id": 3779, - "label": "COMM 126" - }, - { - "id": 3780, - "label": "COMM 125" - }, - { - "id": 3781, - "label": "EDS 131" - }, - { - "id": 3782, - "label": "EDS 130" - }, - { - "id": 3783, - "label": "MUS 174C" - }, - { - "id": 3784, - "label": "MUS 174B" - }, - { - "id": 3785, - "label": "MUS 174A" - }, - { - "id": 3786, - "label": "COMM 196A" - }, - { - "id": 3787, - "label": "COMM 196B" - }, - { - "id": 3788, - "label": "MATH 267B" - }, - { - "id": 3789, - "label": "Math 267A" - }, - { - "id": 3790, - "label": "MATH 267A" - }, - { - "id": 3791, - "label": "MATH 500" - }, - { - "id": 3792, - "label": "PSYC 269C" - }, - { - "id": 3793, - "label": "PSYC 269B" - }, - { - "id": 3794, - "label": "PSYC 269A" - }, - { - "id": 3795, - "label": "LTRU 110B" - }, - { - "id": 3796, - "label": "LTRU 110C" - }, - { - "id": 3797, - "label": "LTRU 110A" - }, - { - "id": 3798, - "label": "SOCI 169" - }, - { - "id": 3799, - "label": "SOCD 169" - }, - { - "id": 3800, - "label": "SOCI 167" - }, - { - "id": 3801, - "label": "SOCC 167" - }, - { - "id": 3802, - "label": "SOCI 166" - }, - { - "id": 3803, - "label": "SOCB 166" - }, - { - "id": 3804, - "label": "SOCI 161" - }, - { - "id": 3805, - "label": "SOCB 161" - }, - { - "id": 3806, - "label": "SOCI 160" - }, - { - "id": 3807, - "label": "SOCB 160" - }, - { - "id": 3808, - "label": "SOCI 163" - }, - { - "id": 3809, - "label": "SOCC 163" - }, - { - "id": 3810, - "label": "SOCI 162" - }, - { - "id": 3811, - "label": "COGS 231" - }, - { - "id": 3812, - "label": "COGS 230" - }, - { - "id": 3813, - "label": "HIGR 299" - }, - { - "id": 3814, - "label": "HIGR 298" - }, - { - "id": 3815, - "label": "HIGR 295" - }, - { - "id": 3816, - "label": "COGS 238" - }, - { - "id": 3817, - "label": "PSYC 132" - }, - { - "id": 3818, - "label": "COGR 201C" - }, - { - "id": 3819, - "label": "COGR 201B" - }, - { - "id": 3820, - "label": "TDGR 210C" - }, - { - "id": 3821, - "label": "TDGR 210B" - }, - { - "id": 3822, - "label": "TDGR 210A" - }, - { - "id": 3823, - "label": "COGR 201D" - }, - { - "id": 3824, - "label": "COGR 201J" - }, - { - "id": 3825, - "label": "COGR 201N" - }, - { - "id": 3826, - "label": "COGR 201M" - }, - { - "id": 3827, - "label": "COGR 201L" - }, - { - "id": 3828, - "label": "Linguistics/Heritage Languages (LIHL) 119P" - }, - { - "id": 3829, - "label": "COGS 190D" - }, - { - "id": 3830, - "label": "COGS 190C" - }, - { - "id": 3831, - "label": "Linguistics/Heritage Languages (LIHL) 119W" - }, - { - "id": 3832, - "label": "COGS 190A" - }, - { - "id": 3833, - "label": "HIUS 277" - }, - { - "id": 3834, - "label": "HIUS 274" - }, - { - "id": 3835, - "label": "LTEN 231" - }, - { - "id": 3836, - "label": "Linguistics/Heritage Languages (LIHL) 119F" - }, - { - "id": 3837, - "label": "MAE 149" - }, - { - "id": 3838, - "label": "MAE 145" - }, - { - "id": 3839, - "label": "MAE 144" - }, - { - "id": 3840, - "label": "ECE 171A" - }, - { - "id": 3841, - "label": "BENG 122A" - }, - { - "id": 3842, - "label": "MAE 142" - }, - { - "id": 3843, - "label": "VIS 108" - }, - { - "id": 3844, - "label": "VIS 109" - }, - { - "id": 3845, - "label": "Linguistics/Heritage Languages (LIHL) 137W" - }, - { - "id": 3846, - "label": "VIS 100" - }, - { - "id": 3847, - "label": "VIS 101" - }, - { - "id": 3848, - "label": "VIS 102" - }, - { - "id": 3849, - "label": "HDP 133" - }, - { - "id": 3850, - "label": "Linguistics/Heritage Languages (LIHL) 137F" - }, - { - "id": 3851, - "label": "MATH 120B" - }, - { - "id": 3852, - "label": "MATH 120A" - }, - { - "id": 3853, - "label": "HIUS 139/ETHN" - }, - { - "id": 3854, - "label": "COMM 133" - }, - { - "id": 3855, - "label": "LTWR 104B" - }, - { - "id": 3856, - "label": "LTWR 104A" - }, - { - "id": 3857, - "label": "BENG 295" - }, - { - "id": 3858, - "label": "BENG 299" - }, - { - "id": 3859, - "label": "BENG 298" - }, - { - "id": 3860, - "label": "Chem 40BH" - }, - { - "id": 3861, - "label": "Chem 40AH" - }, - { - "id": 3862, - "label": "MGT 496B" - }, - { - "id": 3863, - "label": "MGT 496A" - }, - { - "id": 3864, - "label": "TDDE 190" - }, - { - "id": 3865, - "label": "MATH 289B" - }, - { - "id": 3866, - "label": "Math 289A" - }, - { - "id": 3867, - "label": "MATH 289C" - }, - { - "id": 3868, - "label": "MATH 289A" - }, - { - "id": 3869, - "label": "ERC 188" - }, - { - "id": 3870, - "label": "EDS 288B" - }, - { - "id": 3871, - "label": "EDS 288C" - }, - { - "id": 3872, - "label": "LTCS 172" - }, - { - "id": 3873, - "label": "LTCS 173" - }, - { - "id": 3874, - "label": "LTCS 170" - }, - { - "id": 3875, - "label": "LTGM 101" - }, - { - "id": 3876, - "label": "ETHN 159" - }, - { - "id": 3877, - "label": "ETHN 158" - }, - { - "id": 3878, - "label": "HIUS 123/USP 167" - }, - { - "id": 3879, - "label": "LTGM 100" - }, - { - "id": 3880, - "label": "ETHN 153" - }, - { - "id": 3881, - "label": "ETHN 152" - }, - { - "id": 3882, - "label": "ETHN 151" - }, - { - "id": 3883, - "label": "ETHN 150" - }, - { - "id": 3884, - "label": "ETHN 157" - }, - { - "id": 3885, - "label": "ETHN 155" - }, - { - "id": 3886, - "label": "ETHN 154" - }, - { - "id": 3887, - "label": "ESYS 101" - }, - { - "id": 3888, - "label": "ESYS 102" - }, - { - "id": 3889, - "label": "MGT 106" - }, - { - "id": 3890, - "label": "ANBI 159" - }, - { - "id": 3891, - "label": "EDS 21S" - }, - { - "id": 3892, - "label": "HIGR 275B" - }, - { - "id": 3893, - "label": "FMPH 199" - }, - { - "id": 3894, - "label": "FMPH 191" - }, - { - "id": 3895, - "label": "FMPH 193" - }, - { - "id": 3896, - "label": "FMPH 195" - }, - { - "id": 3897, - "label": "FMPH 194" - }, - { - "id": 3898, - "label": "FMPH 120" - }, - { - "id": 3899, - "label": "BIOM 202" - }, - { - "id": 3900, - "label": "BIOM 209" - }, - { - "id": 3901, - "label": "MATH 290A-B-C" - }, - { - "id": 3902, - "label": "Math 100C" - }, - { - "id": 3903, - "label": "Math 140C" - }, - { - "id": 3904, - "label": "Linguistics/Spanish (LISP) 5A, 5B, 5C, 5D" - }, - { - "id": 3905, - "label": "LTEN 258" - }, - { - "id": 3906, - "label": "ECON 111" - }, - { - "id": 3907, - "label": "ECON 113" - }, - { - "id": 3908, - "label": "Math 142A" - }, - { - "id": 3909, - "label": "ECON 112" - }, - { - "id": 3910, - "label": "ECON 114" - }, - { - "id": 3911, - "label": "ECON 117" - }, - { - "id": 3912, - "label": "ECON 116" - }, - { - "id": 3913, - "label": "ECON 119" - }, - { - "id": 3914, - "label": "ECON 118" - }, - { - "id": 3915, - "label": "ERC 90" - }, - { - "id": 3916, - "label": "ERC 92" - }, - { - "id": 3917, - "label": "TWS 198" - }, - { - "id": 3918, - "label": "USP 190" - }, - { - "id": 3919, - "label": "GPA 3" - }, - { - "id": 3920, - "label": "USP 186" - }, - { - "id": 3921, - "label": "USP 187" - }, - { - "id": 3922, - "label": "PHYS 1B" - }, - { - "id": 3923, - "label": "PSYC 90" - }, - { - "id": 3924, - "label": "COGS 12" - }, - { - "id": 3925, - "label": "GPLA 441A-B-C" - }, - { - "id": 3926, - "label": "ECON 237" - }, - { - "id": 3927, - "label": "ECON 230" - }, - { - "id": 3928, - "label": "ECON 231" - }, - { - "id": 3929, - "label": "ECON 232" - }, - { - "id": 3930, - "label": "COGS 17" - }, - { - "id": 3931, - "label": "TMC 15" - }, - { - "id": 3932, - "label": "COGS 18" - }, - { - "id": 3933, - "label": "MATH 250A-B-C" - }, - { - "id": 3934, - "label": "ANTH 221" - }, - { - "id": 3935, - "label": "MATH 248" - }, - { - "id": 3936, - "label": "LTSP 196" - }, - { - "id": 3937, - "label": "LTSP 199" - }, - { - "id": 3938, - "label": "LTSP 198" - }, - { - "id": 3939, - "label": "MATH 242" - }, - { - "id": 3940, - "label": "Math 240C" - }, - { - "id": 3941, - "label": "MATH 243" - }, - { - "id": 3942, - "label": "MATH 278B" - }, - { - "id": 3943, - "label": "MATH 278C" - }, - { - "id": 3944, - "label": "PSYC 128" - }, - { - "id": 3945, - "label": "PSYC 129" - }, - { - "id": 3946, - "label": "PSYC 124" - }, - { - "id": 3947, - "label": "PSYC 125" - }, - { - "id": 3948, - "label": "PSYC 126" - }, - { - "id": 3949, - "label": "PSYC 100" - }, - { - "id": 3950, - "label": "PHYS 13" - }, - { - "id": 3951, - "label": "PSYC 121" - }, - { - "id": 3952, - "label": "PSYC 122" - }, - { - "id": 3953, - "label": "PSYC 123" - }, - { - "id": 3954, - "label": "PHYS 199H" - }, - { - "id": 3955, - "label": "SOCI 165A" - }, - { - "id": 3956, - "label": "SOCC 165A" - }, - { - "id": 3957, - "label": "SE 224" - }, - { - "id": 3958, - "label": "SE 222" - }, - { - "id": 3959, - "label": "SE 223" - }, - { - "id": 3960, - "label": "SE 220" - }, - { - "id": 3961, - "label": "SE 221" - }, - { - "id": 3962, - "label": "SE 203" - }, - { - "id": 3963, - "label": "HINE 112A" - }, - { - "id": 3964, - "label": "NEU 210" - }, - { - "id": 3965, - "label": "ANTH 239" - }, - { - "id": 3966, - "label": "ANTH 234" - }, - { - "id": 3967, - "label": "ANGR 234" - }, - { - "id": 3968, - "label": "ANTH 235" - }, - { - "id": 3969, - "label": "ANTH 232" - }, - { - "id": 3970, - "label": "ANTH 233" - }, - { - "id": 3971, - "label": "BICD 112" - }, - { - "id": 3972, - "label": "ETHN 135A" - }, - { - "id": 3973, - "label": "ETHN 135B" - }, - { - "id": 3974, - "label": "LIGN 17" - }, - { - "id": 3975, - "label": "MDE 266" - }, - { - "id": 3976, - "label": "DSGN 161" - }, - { - "id": 3977, - "label": "VIS 125C" - }, - { - "id": 3978, - "label": "AAS/ANSC 185" - }, - { - "id": 3979, - "label": "POLI 112C" - }, - { - "id": 3980, - "label": "POLI 112A" - }, - { - "id": 3981, - "label": "Linguistics/Portuguese" - }, - { - "id": 3982, - "label": "ANSC 105GS" - }, - { - "id": 3983, - "label": "PHIL 151" - }, - { - "id": 3984, - "label": "HIEA 280" - }, - { - "id": 3985, - "label": "BENG 247B/ECE 247B/NANO 247B" - }, - { - "id": 3986, - "label": "MATH 96" - }, - { - "id": 3987, - "label": "MATH 95" - }, - { - "id": 3988, - "label": "TDGR 262" - }, - { - "id": 3989, - "label": "TDGR 260" - }, - { - "id": 3990, - "label": "ANSC 106" - }, - { - "id": 3991, - "label": "ANSC 105" - }, - { - "id": 3992, - "label": "ANSC 100" - }, - { - "id": 3993, - "label": "ANSC 101" - }, - { - "id": 3994, - "label": "HISC 144" - }, - { - "id": 3995, - "label": "VIS 110A" - }, - { - "id": 3996, - "label": "VIS 110B" - }, - { - "id": 3997, - "label": "VIS 110C" - }, - { - "id": 3998, - "label": "VIS 110D" - }, - { - "id": 3999, - "label": "VIS 110E" - }, - { - "id": 4000, - "label": "VIS 110F" - }, - { - "id": 4001, - "label": "VIS 110G" - }, - { - "id": 4002, - "label": "VIS 110H" - }, - { - "id": 4003, - "label": "VIS 110I" - }, - { - "id": 4004, - "label": "VIS 110K" - }, - { - "id": 4005, - "label": "ICAM 102" - }, - { - "id": 4006, - "label": "VIS 145A" - }, - { - "id": 4007, - "label": "VIS 110M" - }, - { - "id": 4008, - "label": "VIS 110N" - }, - { - "id": 4009, - "label": "VIS 142" - }, - { - "id": 4010, - "label": "FMPH 290" - }, - { - "id": 4011, - "label": "FMPH 291" - }, - { - "id": 4012, - "label": "HILA 121B" - }, - { - "id": 4013, - "label": "HILA 121A" - }, - { - "id": 4014, - "label": "GPEC 409" - }, - { - "id": 4015, - "label": "GLBH 199" - }, - { - "id": 4016, - "label": "GLBH 198" - }, - { - "id": 4017, - "label": "BGJC 213" - }, - { - "id": 4018, - "label": "Soc/G 201B" - }, - { - "id": 4019, - "label": "ECE 501" - }, - { - "id": 4020, - "label": "Soc/G 201A" - }, - { - "id": 4021, - "label": "PHIL 201A" - }, - { - "id": 4022, - "label": "ECE 222D" - }, - { - "id": 4023, - "label": "POLI 134AA" - }, - { - "id": 4024, - "label": "ECON 100BH" - }, - { - "id": 4025, - "label": "BGGN 208" - }, - { - "id": 4026, - "label": "BGGN 200" - }, - { - "id": 4027, - "label": "BGGN 201" - }, - { - "id": 4028, - "label": "BGGN 202" - }, - { - "id": 4029, - "label": "BGGN 203" - }, - { - "id": 4030, - "label": "BGGN 204" - }, - { - "id": 4031, - "label": "BGGN 205" - }, - { - "id": 4032, - "label": "BGGN 207" - }, - { - "id": 4033, - "label": "BIPN 108" - }, - { - "id": 4034, - "label": "BIPN 102" - }, - { - "id": 4035, - "label": "BIPN 105" - }, - { - "id": 4036, - "label": "BIPN 106" - }, - { - "id": 4037, - "label": "SOCI 123 Japanese Culture Inside/Out: A Transnational Perspective (4)" - }, - { - "id": 4038, - "label": "PHYS 192" - }, - { - "id": 4039, - "label": "HINE 116" - }, - { - "id": 4040, - "label": "COMM 107" - }, - { - "id": 4041, - "label": "COMM 108" - }, - { - "id": 4042, - "label": "PHYS 191" - }, - { - "id": 4043, - "label": "PHYS 198" - }, - { - "id": 4044, - "label": "PHYS 199" - }, - { - "id": 4045, - "label": "CSE 252A" - }, - { - "id": 4046, - "label": "CSE 252B" - }, - { - "id": 4047, - "label": "CSE 252C" - }, - { - "id": 4048, - "label": "CSE 250B" - }, - { - "id": 4049, - "label": "CSE 252" - }, - { - "id": 4050, - "label": "ANAR 138" - }, - { - "id": 4051, - "label": "SOCI 182" - }, - { - "id": 4052, - "label": "SOCI 181" - }, - { - "id": 4053, - "label": "SOCD 181" - }, - { - "id": 4054, - "label": "SOCI 180" - }, - { - "id": 4055, - "label": "SOCC 180" - }, - { - "id": 4056, - "label": "SOCI 187" - }, - { - "id": 4057, - "label": "SOCD 187" - }, - { - "id": 4058, - "label": "SOCI 185" - }, - { - "id": 4059, - "label": "SOCD 185" - }, - { - "id": 4060, - "label": "SOCI 184" - }, - { - "id": 4061, - "label": "SOCC 184" - }, - { - "id": 4062, - "label": "CHEM 285" - }, - { - "id": 4063, - "label": "SOCI 189" - }, - { - "id": 4064, - "label": "CHEM 280" - }, - { - "id": 4065, - "label": "CHEM 283" - }, - { - "id": 4066, - "label": "GPPA 450" - }, - { - "id": 4067, - "label": "POLI 146A" - }, - { - "id": 4068, - "label": "MAE 224A" - }, - { - "id": 4069, - "label": "MAE 224B" - }, - { - "id": 4070, - "label": "LTWR 119" - }, - { - "id": 4071, - "label": "LTWR 110" - }, - { - "id": 4072, - "label": "LTWR 113" - }, - { - "id": 4073, - "label": "LTWR 115" - }, - { - "id": 4074, - "label": "LTWR 114" - }, - { - "id": 4075, - "label": "LTEN 254" - }, - { - "id": 4076, - "label": "LTEN 256" - }, - { - "id": 4077, - "label": "LTEN 252" - }, - { - "id": 4078, - "label": "TDGR 216A" - }, - { - "id": 4079, - "label": "LTEN 259" - }, - { - "id": 4080, - "label": "PSYC 252" - }, - { - "id": 4081, - "label": "Linguistics/Heritage Languages (LIHL) 135P" - }, - { - "id": 4082, - "label": "Linguistics/Heritage Languages (LIHL) 135W" - }, - { - "id": 4083, - "label": "TDGE 196A" - }, - { - "id": 4084, - "label": "TDGE 196B" - }, - { - "id": 4085, - "label": "COGS 219" - }, - { - "id": 4086, - "label": "Linguistics/Heritage Languages (LIHL) 135F" - }, - { - "id": 4087, - "label": "HDP 111" - }, - { - "id": 4088, - "label": "HDP 110" - }, - { - "id": 4089, - "label": "HIUS 136/ETHN 153" - }, - { - "id": 4090, - "label": "HITO 114" - }, - { - "id": 4091, - "label": "HITO 116" - }, - { - "id": 4092, - "label": "HITO 117" - }, - { - "id": 4093, - "label": "BIMM 122" - }, - { - "id": 4094, - "label": "BIMM 120" - }, - { - "id": 4095, - "label": "BIMM 121" - }, - { - "id": 4096, - "label": "BIMM 124" - }, - { - "id": 4097, - "label": "ANTH 283A" - }, - { - "id": 4098, - "label": "ANGR 283A" - }, - { - "id": 4099, - "label": "TDGR 256" - }, - { - "id": 4100, - "label": "PHYS 270A" - }, - { - "id": 4101, - "label": "TDGR 254" - }, - { - "id": 4102, - "label": "EDS 180" - }, - { - "id": 4103, - "label": "ECE 194" - }, - { - "id": 4104, - "label": "ECE 195" - }, - { - "id": 4105, - "label": "ECE 196" - }, - { - "id": 4106, - "label": "ECE 197" - }, - { - "id": 4107, - "label": "ECE 190" - }, - { - "id": 4108, - "label": "ANSC 116" - }, - { - "id": 4109, - "label": "ECE 198" - }, - { - "id": 4110, - "label": "ECE 199" - }, - { - "id": 4111, - "label": "HIEU 153A" - }, - { - "id": 4112, - "label": "CHIN" - }, - { - "id": 4113, - "label": "LTCS 198" - }, - { - "id": 4114, - "label": "LTCS 199" - }, - { - "id": 4115, - "label": "MDE 292" - }, - { - "id": 4116, - "label": "ETHN 87" - }, - { - "id": 4117, - "label": "ETHN 170" - }, - { - "id": 4118, - "label": "ETHN 172" - }, - { - "id": 4119, - "label": "ETHN 175" - }, - { - "id": 4120, - "label": "ETHN 174" - }, - { - "id": 4121, - "label": "ETHN 177" - }, - { - "id": 4122, - "label": "ETHN 179" - }, - { - "id": 4123, - "label": "ETHN 178" - }, - { - "id": 4124, - "label": "EDS 232" - }, - { - "id": 4125, - "label": "EDS 231" - }, - { - "id": 4126, - "label": "PSYC 71" - }, - { - "id": 4127, - "label": "PSYC 70" - }, - { - "id": 4128, - "label": "TWS 132" - }, - { - "id": 4129, - "label": "ANBI 174" - }, - { - "id": 4130, - "label": "ANBI 175" - }, - { - "id": 4131, - "label": "ANBI 173" - }, - { - "id": 4132, - "label": "BIOM 267" - }, - { - "id": 4133, - "label": "BIOM 264" - }, - { - "id": 4134, - "label": "BIOM 262" - }, - { - "id": 4135, - "label": "MAE 290B" - }, - { - "id": 4136, - "label": "MAE 290C" - }, - { - "id": 4137, - "label": "ECON 176" - }, - { - "id": 4138, - "label": "ECON 174" - }, - { - "id": 4139, - "label": "ECON 171" - }, - { - "id": 4140, - "label": "Math 183" - }, - { - "id": 4141, - "label": "Math 186" - }, - { - "id": 4142, - "label": "HIEA 133" - }, - { - "id": 4143, - "label": "HILA 198" - }, - { - "id": 4144, - "label": "HILA 199" - }, - { - "id": 4145, - "label": "MUS 120B" - }, - { - "id": 4146, - "label": "MUS 120A" - }, - { - "id": 4147, - "label": "MUS 120C" - }, - { - "id": 4148, - "label": "ECON 178" - }, - { - "id": 4149, - "label": "Linguistics/Italian (LIIT) 1DX" - }, - { - "id": 4150, - "label": "SOCI 119" - }, - { - "id": 4151, - "label": "ECON 213" - }, - { - "id": 4152, - "label": "ECON 211" - }, - { - "id": 4153, - "label": "ECON 216" - }, - { - "id": 4154, - "label": "ECON 217" - }, - { - "id": 4155, - "label": "ECON 214" - }, - { - "id": 4156, - "label": "ECON 215" - }, - { - "id": 4157, - "label": "ECON 219" - }, - { - "id": 4158, - "label": "MUS 43" - }, - { - "id": 4159, - "label": "Linguistics/Spanish (LISP) 1CX" - }, - { - "id": 4160, - "label": "PHYS 279" - }, - { - "id": 4161, - "label": "PHYS 278" - }, - { - "id": 4162, - "label": "PHYS 273" - }, - { - "id": 4163, - "label": "Linguistics (LIDS)" - }, - { - "id": 4164, - "label": "PHYS 277" - }, - { - "id": 4165, - "label": "PHYS 276" - }, - { - "id": 4166, - "label": "PHYS 275" - }, - { - "id": 4167, - "label": "PHYS 274" - }, - { - "id": 4168, - "label": "MATH 268" - }, - { - "id": 4169, - "label": "MATH 269" - }, - { - "id": 4170, - "label": "EDS 121B/Math" - }, - { - "id": 4171, - "label": "CLRE 295B" - }, - { - "id": 4172, - "label": "PSYC 104" - }, - { - "id": 4173, - "label": "CONT 150B" - }, - { - "id": 4174, - "label": "CONT 150A" - }, - { - "id": 4175, - "label": "SE 200" - }, - { - "id": 4176, - "label": "SE 202" - }, - { - "id": 4177, - "label": "EDS 342A" - }, - { - "id": 4178, - "label": "SE 205" - }, - { - "id": 4179, - "label": "EDS 342C" - }, - { - "id": 4180, - "label": "EDS 342B" - }, - { - "id": 4181, - "label": "HITO 274" - }, - { - "id": 4182, - "label": "LTWL 100" - }, - { - "id": 4183, - "label": "LTWL 106" - }, - { - "id": 4184, - "label": "USP 183" - }, - { - "id": 4185, - "label": "USP 180" - }, - { - "id": 4186, - "label": "USP 181" - }, - { - "id": 4187, - "label": "USP 189" - }, - { - "id": 4188, - "label": "ANTH 254" - }, - { - "id": 4189, - "label": "ANTH 255" - }, - { - "id": 4190, - "label": "ANTH 256" - }, - { - "id": 4191, - "label": "ANGR 256" - }, - { - "id": 4192, - "label": "ANTH 257" - }, - { - "id": 4193, - "label": "ANTH 250" - }, - { - "id": 4194, - "label": "ANTH 251" - }, - { - "id": 4195, - "label": "ANTH 252" - }, - { - "id": 4196, - "label": "ANTH 253" - }, - { - "id": 4197, - "label": "ANTH 258" - }, - { - "id": 4198, - "label": "ANGR 258" - }, - { - "id": 4199, - "label": "ANTH 259" - }, - { - "id": 4200, - "label": "NEU 496" - }, - { - "id": 4201, - "label": "BIBC 151" - }, - { - "id": 4202, - "label": "MSED 299" - }, - { - "id": 4203, - "label": "CHEM 99" - }, - { - "id": 4204, - "label": "POLI 114B" - }, - { - "id": 4205, - "label": "CHEM 96" - }, - { - "id": 4206, - "label": "PHYS 2A" - }, - { - "id": 4207, - "label": "PHYS 2B" - }, - { - "id": 4208, - "label": "TDGR 240" - }, - { - "id": 4209, - "label": "TDGR 243" - }, - { - "id": 4210, - "label": "TDGR 245" - }, - { - "id": 4211, - "label": "TDGR 244" - }, - { - "id": 4212, - "label": "ANSC 165" - }, - { - "id": 4213, - "label": "ANSC 166" - }, - { - "id": 4214, - "label": "ANSC 162" - }, - { - "id": 4215, - "label": "ANSC 168" - }, - { - "id": 4216, - "label": "ANSC 169" - }, - { - "id": 4217, - "label": "HIGR 221" - }, - { - "id": 4218, - "label": "COGS 283" - }, - { - "id": 4219, - "label": "COGS 280" - }, - { - "id": 4220, - "label": "TDGR 231A" - }, - { - "id": 4221, - "label": "Linguistics/Portuguese (LIPO) 1DX" - }, - { - "id": 4222, - "label": "CSE 291" - }, - { - "id": 4223, - "label": "LIGN 200" - }, - { - "id": 4224, - "label": "MATH 291B" - }, - { - "id": 4225, - "label": "Math 291A" - }, - { - "id": 4226, - "label": "MATH 291A" - }, - { - "id": 4227, - "label": "GPPS 204" - }, - { - "id": 4228, - "label": "BGGN 228" - }, - { - "id": 4229, - "label": "BGGN 226" - }, - { - "id": 4230, - "label": "BGGN 227" - }, - { - "id": 4231, - "label": "BGGN 225" - }, - { - "id": 4232, - "label": "BGGN 222" - }, - { - "id": 4233, - "label": "BGGN 220" - }, - { - "id": 4234, - "label": "CHIN 186A-B-C" - }, - { - "id": 4235, - "label": "BIPN 120" - }, - { - "id": 4236, - "label": "LTEU 150A-B-C" - }, - { - "id": 4237, - "label": "COMM 166" - }, - { - "id": 4238, - "label": "COMM 164" - }, - { - "id": 4239, - "label": "COMM 163" - }, - { - "id": 4240, - "label": "COMM 162" - }, - { - "id": 4241, - "label": "COMM 160" - }, - { - "id": 4242, - "label": "COMM 169" - }, - { - "id": 4243, - "label": "COMM 168" - }, - { - "id": 4244, - "label": "CHEM 120B" - }, - { - "id": 4245, - "label": "CSE 250C" - }, - { - "id": 4246, - "label": "CSE 250A" - }, - { - "id": 4247, - "label": "ANAR 118" - }, - { - "id": 4248, - "label": "ANAR 116" - }, - { - "id": 4249, - "label": "ANAR 117" - }, - { - "id": 4250, - "label": "ANAR 114" - }, - { - "id": 4251, - "label": "ANAR 115" - }, - { - "id": 4252, - "label": "SIO" - }, - { - "id": 4253, - "label": "ANAR 111" - }, - { - "id": 4254, - "label": "LTCS 225" - }, - { - "id": 4255, - "label": "LTCS 222" - }, - { - "id": 4256, - "label": "COGR 285" - }, - { - "id": 4257, - "label": "EDS 128 A-B" - }, - { - "id": 4258, - "label": "EDS 128B" - }, - { - "id": 4259, - "label": "EDS 128A" - }, - { - "id": 4260, - "label": "EDS 134" - }, - { - "id": 4261, - "label": "CHEM 262" - }, - { - "id": 4262, - "label": "GPPA 477" - }, - { - "id": 4263, - "label": "CHEM 260" - }, - { - "id": 4264, - "label": "CHEM 265" - }, - { - "id": 4265, - "label": "CHEM 264" - }, - { - "id": 4266, - "label": "HIUS 106S" - }, - { - "id": 4267, - "label": "HIUS 106B" - }, - { - "id": 4268, - "label": "HIUS 106A" - }, - { - "id": 4269, - "label": "POLI 144D" - }, - { - "id": 4270, - "label": "POLI 144E" - }, - { - "id": 4271, - "label": "POLI 144F" - }, - { - "id": 4272, - "label": "10A-B-C" - }, - { - "id": 4273, - "label": "LTEN 272" - }, - { - "id": 4274, - "label": "LTEN 271" - }, - { - "id": 4275, - "label": "TDGR 214C" - }, - { - "id": 4276, - "label": "TDGR 214B" - }, - { - "id": 4277, - "label": "TDGR 214A" - }, - { - "id": 4278, - "label": "BIOM 266" - }, - { - "id": 4279, - "label": "BIMM 166" - }, - { - "id": 4280, - "label": "Chem 166" - }, - { - "id": 4281, - "label": "MATH 10C" - }, - { - "id": 4282, - "label": "MATH 10B" - }, - { - "id": 4283, - "label": "MATH 10A" - }, - { - "id": 4284, - "label": "Math Level 2" - }, - { - "id": 4285, - "label": "MATH 278A" - }, - { - "id": 4286, - "label": "CSE 3" - }, - { - "id": 4287, - "label": "ECON 120AH" - }, - { - "id": 4288, - "label": "SE 168" - }, - { - "id": 4289, - "label": "VIS 143" - }, - { - "id": 4290, - "label": "VIS 148" - }, - { - "id": 4291, - "label": "VIS 149" - }, - { - "id": 4292, - "label": "Soc/G 232" - }, - { - "id": 4293, - "label": "Soc/G 234" - }, - { - "id": 4294, - "label": "Soc/G 238" - }, - { - "id": 4295, - "label": "ECE 175A" - }, - { - "id": 4296, - "label": "ECE 175B" - }, - { - "id": 4297, - "label": "COGS 279" - }, - { - "id": 4298, - "label": "COGS 278" - }, - { - "id": 4299, - "label": "COGS 277" - }, - { - "id": 4300, - "label": "VIS 125BN" - }, - { - "id": 4301, - "label": "PHYS 270B" - }, - { - "id": 4302, - "label": "Physics 270A" - }, - { - "id": 4303, - "label": "HITO 136" - }, - { - "id": 4304, - "label": "HITO 134" - }, - { - "id": 4305, - "label": "HITO 133" - }, - { - "id": 4306, - "label": "ECON 191A" - }, - { - "id": 4307, - "label": "ECON 191B" - }, - { - "id": 4308, - "label": "BGGN 504" - }, - { - "id": 4309, - "label": "BIOLOGICAL_SCIENCES_MAJOR" - }, - { - "id": 4310, - "label": "BGGN 502" - }, - { - "id": 4311, - "label": "BGGN 500" - }, - { - "id": 4312, - "label": "ANTH 281B" - }, - { - "id": 4313, - "label": "ANTH 281A" - }, - { - "id": 4314, - "label": "BENG 125" - }, - { - "id": 4315, - "label": "PHIL 120" - }, - { - "id": 4316, - "label": "Philosophy 10" - }, - { - "id": 4317, - "label": "PHIL 122" - }, - { - "id": 4318, - "label": "Philosophy 120" - }, - { - "id": 4319, - "label": "PHIL 123" - }, - { - "id": 4320, - "label": "PHIL 124" - }, - { - "id": 4321, - "label": "ECE 272A" - }, - { - "id": 4322, - "label": "ECE 272B" - }, - { - "id": 4323, - "label": "ETHN 117" - }, - { - "id": 4324, - "label": "MAE 276" - }, - { - "id": 4325, - "label": "ETHN 115" - }, - { - "id": 4326, - "label": "ETHN 113" - }, - { - "id": 4327, - "label": "MAE 272" - }, - { - "id": 4328, - "label": "ETHN 111" - }, - { - "id": 4329, - "label": "ETHN 110" - }, - { - "id": 4330, - "label": "EDS 250" - }, - { - "id": 4331, - "label": "EDS 251" - }, - { - "id": 4332, - "label": "EDS 252" - }, - { - "id": 4333, - "label": "EDS 253" - }, - { - "id": 4334, - "label": "EDS 254" - }, - { - "id": 4335, - "label": "EDS 255" - }, - { - "id": 4336, - "label": "EDS 256" - }, - { - "id": 4337, - "label": "EDS 257" - }, - { - "id": 4338, - "label": "MGTA 454" - }, - { - "id": 4339, - "label": "ANBI 114" - }, - { - "id": 4340, - "label": "ANBI 111" - }, - { - "id": 4341, - "label": "ANBI 112" - }, - { - "id": 4342, - "label": "TDGR 282" - }, - { - "id": 4343, - "label": "COMM 170" - }, - { - "id": 4344, - "label": "POLI 145A" - }, - { - "id": 4345, - "label": "LAWS 102S" - }, - { - "id": 4346, - "label": "BIOM 246" - }, - { - "id": 4347, - "label": "BIOM 240" - }, - { - "id": 4348, - "label": "BIOM 242" - }, - { - "id": 4349, - "label": "ENG 210" - }, - { - "id": 4350, - "label": "SOCI 20" - }, - { - "id": 4351, - "label": "ECON 159" - }, - { - "id": 4352, - "label": "ECON 158" - }, - { - "id": 4353, - "label": "ECON 151" - }, - { - "id": 4354, - "label": "ECON 150" - }, - { - "id": 4355, - "label": "ECON 152" - }, - { - "id": 4356, - "label": "BENG 193" - }, - { - "id": 4357, - "label": "MATH 271A-B-C" - }, - { - "id": 4358, - "label": "Linguistics/Spanish (LISP) 1AX" - }, - { - "id": 4359, - "label": "PHYS 251" - }, - { - "id": 4360, - "label": "PHYS 250" - }, - { - "id": 4361, - "label": "PHYS 253" - }, - { - "id": 4362, - "label": "PHYS 252" - }, - { - "id": 4363, - "label": "PHYS 255" - }, - { - "id": 4364, - "label": "PHYS 254" - }, - { - "id": 4365, - "label": "PHYS 257" - }, - { - "id": 4366, - "label": "PHYS 256" - }, - { - "id": 4367, - "label": "PHYS 258" - }, - { - "id": 4368, - "label": "HIGR 260A" - }, - { - "id": 4369, - "label": "NANO 168" - }, - { - "id": 4370, - "label": "PHYS 1BL" - }, - { - "id": 4371, - "label": "SE 262" - }, - { - "id": 4372, - "label": "SE 261" - }, - { - "id": 4373, - "label": "SE 266" - }, - { - "id": 4374, - "label": "MATH 240A-B-C" - }, - { - "id": 4375, - "label": "SE 265" - }, - { - "id": 4376, - "label": "SE 268" - }, - { - "id": 4377, - "label": "POLI 288" - }, - { - "id": 4378, - "label": "POLI 289" - }, - { - "id": 4379, - "label": "POLI 280" - }, - { - "id": 4380, - "label": "POLI 281" - }, - { - "id": 4381, - "label": "POLI 282" - }, - { - "id": 4382, - "label": "POLI 283" - }, - { - "id": 4383, - "label": "POLI 285" - }, - { - "id": 4384, - "label": "POLI 286" - }, - { - "id": 4385, - "label": "POLI 287" - }, - { - "id": 4386, - "label": "ECE 244A" - }, - { - "id": 4387, - "label": "LTWL 128" - }, - { - "id": 4388, - "label": "LTWL 129" - }, - { - "id": 4389, - "label": "LTWL 124" - }, - { - "id": 4390, - "label": "LTWL 123" - }, - { - "id": 4391, - "label": "LTWL 120" - }, - { - "id": 4392, - "label": "USP 168" - }, - { - "id": 4393, - "label": "CSE 206A" - }, - { - "id": 4394, - "label": "VIS 123AN" - }, - { - "id": 4395, - "label": "COMM 102M" - }, - { - "id": 4396, - "label": "COMM 102C" - }, - { - "id": 4397, - "label": "COMM 102D" - }, - { - "id": 4398, - "label": "COMM 102P" - }, - { - "id": 4399, - "label": "COMM 102T" - }, - { - "id": 4400, - "label": "MAE 278A" - }, - { - "id": 4401, - "label": "POLI 116A" - }, - { - "id": 4402, - "label": "PHYS 4C" - }, - { - "id": 4403, - "label": "PHYS 4B" - }, - { - "id": 4404, - "label": "ANTH 270" - }, - { - "id": 4405, - "label": "PHYS 4E" - }, - { - "id": 4406, - "label": "PHYS 4D" - }, - { - "id": 4407, - "label": "RELI 148" - }, - { - "id": 4408, - "label": "TDGR 229" - }, - { - "id": 4409, - "label": "ANSC 142" - }, - { - "id": 4410, - "label": "TDGR 226" - }, - { - "id": 4411, - "label": "RELI 141" - }, - { - "id": 4412, - "label": "ANSC 141" - }, - { - "id": 4413, - "label": "RELI 147" - }, - { - "id": 4414, - "label": "ANSC 147" - }, - { - "id": 4415, - "label": "TDGR 221" - }, - { - "id": 4416, - "label": "RELI 144" - }, - { - "id": 4417, - "label": "HISC 102" - }, - { - "id": 4418, - "label": "HISC 103" - }, - { - "id": 4419, - "label": "HISC 106" - }, - { - "id": 4420, - "label": "HISC 107" - }, - { - "id": 4421, - "label": "HISC 104" - }, - { - "id": 4422, - "label": "HISC 105" - }, - { - "id": 4423, - "label": "HISC 108" - }, - { - "id": 4424, - "label": "HISC 109" - }, - { - "id": 4425, - "label": "LIGN 195" - }, - { - "id": 4426, - "label": "LIGN 197" - }, - { - "id": 4427, - "label": "LIGN 192" - }, - { - "id": 4428, - "label": "LTEN 107" - }, - { - "id": 4429, - "label": "ECE 222C" - }, - { - "id": 4430, - "label": "LIGN 199" - }, - { - "id": 4431, - "label": "BENG 223" - }, - { - "id": 4432, - "label": "BENG 203/CSE" - }, - { - "id": 4433, - "label": "HIEU 164/264" - }, - { - "id": 4434, - "label": "ENVR 110" - }, - { - "id": 4435, - "label": "LIGN 228" - }, - { - "id": 4436, - "label": "VIS 114GS" - }, - { - "id": 4437, - "label": "LIGN 221" - }, - { - "id": 4438, - "label": "LIGN 225" - }, - { - "id": 4439, - "label": "ETHN 268" - }, - { - "id": 4440, - "label": "GLBH 150" - }, - { - "id": 4441, - "label": "SE 276C" - }, - { - "id": 4442, - "label": "POLI 100B" - }, - { - "id": 4443, - "label": "Linguistics/Italian (LIIT) 5CS" - }, - { - "id": 4444, - "label": "LTRU 199" - }, - { - "id": 4445, - "label": "LTRU 198" - }, - { - "id": 4446, - "label": "COGS 144" - }, - { - "id": 4447, - "label": "MAE 155A" - }, - { - "id": 4448, - "label": "SE 160B" - }, - { - "id": 4449, - "label": "MAE 155B" - }, - { - "id": 4450, - "label": "EDS 120" - }, - { - "id": 4451, - "label": "DOC 100D" - }, - { - "id": 4452, - "label": "HITO 156" - }, - { - "id": 4453, - "label": "SOCI 117" - }, - { - "id": 4454, - "label": "SOCI 139" - }, - { - "id": 4455, - "label": "ANTH 131" - }, - { - "id": 4456, - "label": "POLI 100Q" - }, - { - "id": 4457, - "label": "HIUS 180" - }, - { - "id": 4458, - "label": "EDS 126" - }, - { - "id": 4459, - "label": "EDS 125" - }, - { - "id": 4460, - "label": "POLI 100H" - }, - { - "id": 4461, - "label": "POLI 100O" - }, - { - "id": 4462, - "label": "USP 129" - }, - { - "id": 4463, - "label": "HIUS 136" - }, - { - "id": 4464, - "label": "POLI 108" - }, - { - "id": 4465, - "label": "BGGN 245" - }, - { - "id": 4466, - "label": "BGRD 207" - }, - { - "id": 4467, - "label": "BGGN 248" - }, - { - "id": 4468, - "label": "BIPN 144" - }, - { - "id": 4469, - "label": "BIPN 146" - }, - { - "id": 4470, - "label": "Cog Sci 107" - }, - { - "id": 4471, - "label": "Psych 106" - }, - { - "id": 4472, - "label": "BIPN 140" - }, - { - "id": 4473, - "label": "POLI 100N" - }, - { - "id": 4474, - "label": "BIPN 142" - }, - { - "id": 4475, - "label": "BIPN 148" - }, - { - "id": 4476, - "label": "VIS 141A" - }, - { - "id": 4477, - "label": "NANO 212" - }, - { - "id": 4478, - "label": "VIS 114A" - }, - { - "id": 4479, - "label": "VIS 114B" - }, - { - "id": 4480, - "label": "COMM 145" - }, - { - "id": 4481, - "label": "COMM 144" - }, - { - "id": 4482, - "label": "COMM 146" - }, - { - "id": 4483, - "label": "COMM 140" - }, - { - "id": 4484, - "label": "COMM 143" - }, - { - "id": 4485, - "label": "COGS 211A-B-C" - }, - { - "id": 4486, - "label": "TDHT 21" - }, - { - "id": 4487, - "label": "TDHT 23" - }, - { - "id": 4488, - "label": "TDHT 22" - }, - { - "id": 4489, - "label": "EDS 121A/Math 121A" - }, - { - "id": 4490, - "label": "EDS 30M" - }, - { - "id": 4491, - "label": "EDS 30" - }, - { - "id": 4492, - "label": "Calculus 10C" - }, - { - "id": 4493, - "label": "Calculus 20C" - }, - { - "id": 4494, - "label": "CSE 229C" - }, - { - "id": 4495, - "label": "CSE 229A" - }, - { - "id": 4496, - "label": "ANAR 170" - }, - { - "id": 4497, - "label": "LTEU 87" - }, - { - "id": 4498, - "label": "HISC" - }, - { - "id": 4499, - "label": "BGSE 205" - }, - { - "id": 4500, - "label": "BGSE 200" - }, - { - "id": 4501, - "label": "CSE 198" - }, - { - "id": 4502, - "label": "CSE 199" - }, - { - "id": 4503, - "label": "CSE 192" - }, - { - "id": 4504, - "label": "CSE 190" - }, - { - "id": 4505, - "label": "CSE 191" - }, - { - "id": 4506, - "label": "CSE 197" - }, - { - "id": 4507, - "label": "CSE 195" - }, - { - "id": 4508, - "label": "HIEU 127D" - }, - { - "id": 4509, - "label": "CHEM 241" - }, - { - "id": 4510, - "label": "CHEM 240" - }, - { - "id": 4511, - "label": "CHEM 242" - }, - { - "id": 4512, - "label": "CHEM 246" - }, - { - "id": 4513, - "label": "SIO 295S" - }, - { - "id": 4514, - "label": "POLI 245A" - }, - { - "id": 4515, - "label": "GPCO 470" - }, - { - "id": 4516, - "label": "GPCO 471" - }, - { - "id": 4517, - "label": "POLI 142N" - }, - { - "id": 4518, - "label": "POLI 142L" - }, - { - "id": 4519, - "label": "POLI 142M" - }, - { - "id": 4520, - "label": "MAE 220A" - }, - { - "id": 4521, - "label": "POLI 142K" - }, - { - "id": 4522, - "label": "POLI 142I" - }, - { - "id": 4523, - "label": "POLI 142D" - }, - { - "id": 4524, - "label": "POLI 142A" - }, - { - "id": 4525, - "label": "POLI 12" - }, - { - "id": 4526, - "label": "BILD 26" - }, - { - "id": 4527, - "label": "LTEN 297" - }, - { - "id": 4528, - "label": "LTEN 298" - }, - { - "id": 4529, - "label": "LTEN 299" - }, - { - "id": 4530, - "label": "BENG 241B" - }, - { - "id": 4531, - "label": "COGS 210A-B-C" - }, - { - "id": 4532, - "label": "GPIM 429" - }, - { - "id": 4533, - "label": "GPIM 428" - }, - { - "id": 4534, - "label": "EDS 117GS" - }, - { - "id": 4535, - "label": "GPIM 420" - }, - { - "id": 4536, - "label": "GPIM 422" - }, - { - "id": 4537, - "label": "GPIM 424" - }, - { - "id": 4538, - "label": "GPIM 427" - }, - { - "id": 4539, - "label": "GPIM 426" - }, - { - "id": 4540, - "label": "VIS 168" - }, - { - "id": 4541, - "label": "VIS 162" - }, - { - "id": 4542, - "label": "VIS 161" - }, - { - "id": 4543, - "label": "VIS 163" - }, - { - "id": 4544, - "label": "VIS 167" - }, - { - "id": 4545, - "label": "Soc/G 216" - }, - { - "id": 4546, - "label": "Soc/G 212" - }, - { - "id": 4547, - "label": "Soc/G 211" - }, - { - "id": 4548, - "label": "SE 204" - }, - { - "id": 4549, - "label": "SE 206" - }, - { - "id": 4550, - "label": "COGS 252" - }, - { - "id": 4551, - "label": "SE 207" - }, - { - "id": 4552, - "label": "HITO 155" - }, - { - "id": 4553, - "label": "AESE 278B" - }, - { - "id": 4554, - "label": "ECE 205" - }, - { - "id": 4555, - "label": "AESE 278A" - }, - { - "id": 4556, - "label": "CSE 278A" - }, - { - "id": 4557, - "label": "MGT 291" - }, - { - "id": 4558, - "label": "AESE 278C" - }, - { - "id": 4559, - "label": "ECE 206" - }, - { - "id": 4560, - "label": "CSE 278C" - }, - { - "id": 4561, - "label": "ECE 205A" - }, - { - "id": 4562, - "label": "AESE 278D" - }, - { - "id": 4563, - "label": "AESE 278E" - }, - { - "id": 4564, - "label": "Soc/G 214 Urban Sociology (4)" - }, - { - "id": 4565, - "label": "Classics 299" - }, - { - "id": 4566, - "label": "Classics 290" - }, - { - "id": 4567, - "label": "HIGR 502" - }, - { - "id": 4568, - "label": "HIGR 500" - }, - { - "id": 4569, - "label": "HIGR 505" - }, - { - "id": 4570, - "label": "ETHN 287" - }, - { - "id": 4571, - "label": "ETHN 280" - }, - { - "id": 4572, - "label": "ETHN 289" - }, - { - "id": 4573, - "label": "PHIL 108" - }, - { - "id": 4574, - "label": "PHIL 109" - }, - { - "id": 4575, - "label": "PHIL 106" - }, - { - "id": 4576, - "label": "Philosophy 33" - }, - { - "id": 4577, - "label": "Philosophy 32" - }, - { - "id": 4578, - "label": "Philosophy 104" - }, - { - "id": 4579, - "label": "Philosophy 105" - }, - { - "id": 4580, - "label": "Philosophy 112" - }, - { - "id": 4581, - "label": "PHIL 107" - }, - { - "id": 4582, - "label": "PHIL 105" - }, - { - "id": 4583, - "label": "PHIL 102" - }, - { - "id": 4584, - "label": "PHIL 100" - }, - { - "id": 4585, - "label": "PHIL 101" - }, - { - "id": 4586, - "label": "TDMV 5" - }, - { - "id": 4587, - "label": "CHEM 219C" - }, - { - "id": 4588, - "label": "TDMV 2" - }, - { - "id": 4589, - "label": "ERC 20" - }, - { - "id": 4590, - "label": "Linguistics/Hindi" - }, - { - "id": 4591, - "label": "EDS 272" - }, - { - "id": 4592, - "label": "EDS 270" - }, - { - "id": 4593, - "label": "ETHN 139" - }, - { - "id": 4594, - "label": "ETHN 134" - }, - { - "id": 4595, - "label": "ETHN 137" - }, - { - "id": 4596, - "label": "ETHN 136" - }, - { - "id": 4597, - "label": "ETHN 131" - }, - { - "id": 4598, - "label": "ETHN 130" - }, - { - "id": 4599, - "label": "ETHN 132" - }, - { - "id": 4600, - "label": "MAE 251" - }, - { - "id": 4601, - "label": "MAE 253" - }, - { - "id": 4602, - "label": "MAE 255" - }, - { - "id": 4603, - "label": "MAE 254" - }, - { - "id": 4604, - "label": "HINE" - }, - { - "id": 4605, - "label": "MAE 256" - }, - { - "id": 4606, - "label": "HIGR 219B" - }, - { - "id": 4607, - "label": "HIGR 219A" - }, - { - "id": 4608, - "label": "ANBI 139" - }, - { - "id": 4609, - "label": "ANBI 133" - }, - { - "id": 4610, - "label": "ANBI 130" - }, - { - "id": 4611, - "label": "ANBI 131" - }, - { - "id": 4612, - "label": "ANBI 134" - }, - { - "id": 4613, - "label": "ANBI 135" - }, - { - "id": 4614, - "label": "BENG 285/BNFO 285/ECE 204" - }, - { - "id": 4615, - "label": "LTWL 87" - }, - { - "id": 4616, - "label": "ECE 212CN" - }, - { - "id": 4617, - "label": "Linguistics/French (LIFR) 1A" - }, - { - "id": 4618, - "label": "Linguistics/French (LIFR) 1B" - }, - { - "id": 4619, - "label": "LIFR 1AX" - }, - { - "id": 4620, - "label": "LIFR 1A" - }, - { - "id": 4621, - "label": "Linguistics/French (LIFR) 1C" - }, - { - "id": 4622, - "label": "Linguistics/French (LIFR) 1D" - }, - { - "id": 4623, - "label": "LIFR 1CX" - }, - { - "id": 4624, - "label": "LIFR 1C" - }, - { - "id": 4625, - "label": "MAE 294B" - }, - { - "id": 4626, - "label": "MAE 294C" - }, - { - "id": 4627, - "label": "MAE 294A" - }, - { - "id": 4628, - "label": "HIEA 166/266" - }, - { - "id": 4629, - "label": "PHYS 235" - }, - { - "id": 4630, - "label": "Physics 218C" - }, - { - "id": 4631, - "label": "PHYS 232" - }, - { - "id": 4632, - "label": "PHYS 230" - }, - { - "id": 4633, - "label": "Physics 211B" - }, - { - "id": 4634, - "label": "GPEC 422" - }, - { - "id": 4635, - "label": "GPEC 421" - }, - { - "id": 4636, - "label": "PHYS 239" - }, - { - "id": 4637, - "label": "PHYS 238" - }, - { - "id": 4638, - "label": "BICD 130" - }, - { - "id": 4639, - "label": "MATH 277A" - }, - { - "id": 4640, - "label": "BICD 136" - }, - { - "id": 4641, - "label": "SE 248" - }, - { - "id": 4642, - "label": "SE 244" - }, - { - "id": 4643, - "label": "SE 247" - }, - { - "id": 4644, - "label": "SE 242" - }, - { - "id": 4645, - "label": "SE 243" - }, - { - "id": 4646, - "label": "HIUS 132S" - }, - { - "id": 4647, - "label": "MGT 256" - }, - { - "id": 4648, - "label": "MGT 257" - }, - { - "id": 4649, - "label": "MGT 255" - }, - { - "id": 4650, - "label": "LTWL 144" - }, - { - "id": 4651, - "label": "LTWL 140" - }, - { - "id": 4652, - "label": "LTWL 143" - }, - { - "id": 4653, - "label": "USP 146" - }, - { - "id": 4654, - "label": "USP 147" - }, - { - "id": 4655, - "label": "USP 144" - }, - { - "id": 4656, - "label": "USP 145" - }, - { - "id": 4657, - "label": "USP 143" - }, - { - "id": 4658, - "label": "GPIM 411" - }, - { - "id": 4659, - "label": "USP 149" - }, - { - "id": 4660, - "label": "MAE 208" - }, - { - "id": 4661, - "label": "BENG 242/MATS 257/NANO 257" - }, - { - "id": 4662, - "label": "ECE 153" - }, - { - "id": 4663, - "label": "PHYS 200B" - }, - { - "id": 4664, - "label": "Physics 200A" - }, - { - "id": 4665, - "label": "PHYS 200A" - }, - { - "id": 4666, - "label": "SE 130A\u2013B" - }, - { - "id": 4667, - "label": "COMM 104F" - }, - { - "id": 4668, - "label": "COMM 104G" - }, - { - "id": 4669, - "label": "COMM 104D" - }, - { - "id": 4670, - "label": "COMM 104E" - }, - { - "id": 4671, - "label": "COMM 87" - }, - { - "id": 4672, - "label": "ANTH 291" - }, - { - "id": 4673, - "label": "ANGR 291" - }, - { - "id": 4674, - "label": "ANTH 292" - }, - { - "id": 4675, - "label": "ANTH 293" - }, - { - "id": 4676, - "label": "ANGR 293" - }, - { - "id": 4677, - "label": "ANTH 295" - }, - { - "id": 4678, - "label": "ANGR 295" - }, - { - "id": 4679, - "label": "ANTH 296" - }, - { - "id": 4680, - "label": "ANGR 296A" - }, - { - "id": 4681, - "label": "ANTH 297" - }, - { - "id": 4682, - "label": "ANTH 298" - }, - { - "id": 4683, - "label": "ANGR 298" - }, - { - "id": 4684, - "label": "ANTH 299" - }, - { - "id": 4685, - "label": "ANGR 299" - }, - { - "id": 4686, - "label": "TDGR 207" - }, - { - "id": 4687, - "label": "TDGR 206" - }, - { - "id": 4688, - "label": "TDGR 201" - }, - { - "id": 4689, - "label": "TDGR 200" - }, - { - "id": 4690, - "label": "MATH 31CH" - }, - { - "id": 4691, - "label": "TDGR 208" - }, - { - "id": 4692, - "label": "MATH 3C" - }, - { - "id": 4693, - "label": "LTEN 127" - }, - { - "id": 4694, - "label": "LTEN 124" - }, - { - "id": 4695, - "label": "LTEN 125" - }, - { - "id": 4696, - "label": "LTEN 120" - }, - { - "id": 4697, - "label": "NANO 158L" - }, - { - "id": 4698, - "label": "ENVR 130" - }, - { - "id": 4699, - "label": "CSE 262" - }, - { - "id": 4700, - "label": "ECON 110BH" - }, - { - "id": 4701, - "label": "BENG 230B" - }, - { - "id": 4702, - "label": "BENG 230C" - }, - { - "id": 4703, - "label": "BENG 230D" - }, - { - "id": 4704, - "label": "BGGN 262" - }, - { - "id": 4705, - "label": "BGGN 260" - }, - { - "id": 4706, - "label": "BGGN 266" - }, - { - "id": 4707, - "label": "Phys 120A" - }, - { - "id": 4708, - "label": "Chem 6CL" - }, - { - "id": 4709, - "label": "BGGN 264" - }, - { - "id": 4710, - "label": "BIPN 160" - }, - { - "id": 4711, - "label": "LTCS 52" - }, - { - "id": 4712, - "label": "LTCS 50" - }, - { - "id": 4713, - "label": "NANO 230" - }, - { - "id": 4714, - "label": "NANO 234" - }, - { - "id": 4715, - "label": "NANO 239" - }, - { - "id": 4716, - "label": "NANO 238" - }, - { - "id": 4717, - "label": "MATH 170C" - }, - { - "id": 4718, - "label": "Math 170B" - }, - { - "id": 4719, - "label": "PHIL 87" - }, - { - "id": 4720, - "label": "MATH 170A" - }, - { - "id": 4721, - "label": "HIUS 148/USP" - }, - { - "id": 4722, - "label": "ANAR 158" - }, - { - "id": 4723, - "label": "ANAR 156" - }, - { - "id": 4724, - "label": "ANAR 157" - }, - { - "id": 4725, - "label": "ANAR 154" - }, - { - "id": 4726, - "label": "LTCS 260" - }, - { - "id": 4727, - "label": "HITO 107" - }, - { - "id": 4728, - "label": "CSE 276D" - }, - { - "id": 4729, - "label": "CSE 276B" - }, - { - "id": 4730, - "label": "CSE 276C" - }, - { - "id": 4731, - "label": "CHEM 229" - }, - { - "id": 4732, - "label": "CSE 276A" - }, - { - "id": 4733, - "label": "CHEM 227" - }, - { - "id": 4734, - "label": "CHEM 226" - }, - { - "id": 4735, - "label": "CHEM 225" - }, - { - "id": 4736, - "label": "CHEM 224" - }, - { - "id": 4737, - "label": "CHEM 223" - }, - { - "id": 4738, - "label": "CHEM 222" - }, - { - "id": 4739, - "label": "CHEM 221" - }, - { - "id": 4740, - "label": "CHEM 220" - }, - { - "id": 4741, - "label": "VIS 3" - }, - { - "id": 4742, - "label": "VIS 2" - }, - { - "id": 4743, - "label": "VIS 1" - }, - { - "id": 4744, - "label": "GPCO 415" - }, - { - "id": 4745, - "label": "POLI 247B" - }, - { - "id": 4746, - "label": "POLI 247C" - }, - { - "id": 4747, - "label": "GPCO 410" - }, - { - "id": 4748, - "label": "GPCO 412" - }, - { - "id": 4749, - "label": "POLI 140D" - }, - { - "id": 4750, - "label": "POLI 140A" - }, - { - "id": 4751, - "label": "POLI 140B" - }, - { - "id": 4752, - "label": "POLI 140C" - }, - { - "id": 4753, - "label": "EDS 294A" - }, - { - "id": 4754, - "label": "EDS 294B" - }, - { - "id": 4755, - "label": "ECE 171B" - }, - { - "id": 4756, - "label": "GPIM 447" - }, - { - "id": 4757, - "label": "HIUS 182" - }, - { - "id": 4758, - "label": "HIUS 183" - }, - { - "id": 4759, - "label": "HIUS 186" - }, - { - "id": 4760, - "label": "GPIM 440" - }, - { - "id": 4761, - "label": "Soc/G 278" - }, - { - "id": 4762, - "label": "PSYC 270A" - }, - { - "id": 4763, - "label": "PSYC 270C" - }, - { - "id": 4764, - "label": "PSYC 270B" - }, - { - "id": 4765, - "label": "MATH 193A" - }, - { - "id": 4766, - "label": "MATH 193B" - }, - { - "id": 4767, - "label": "Math 193A" - }, - { - "id": 4768, - "label": "MATH 201A" - }, - { - "id": 4769, - "label": "TDDE 112" - }, - { - "id": 4770, - "label": "TDDE 111" - }, - { - "id": 4771, - "label": "HIEU 124GS" - }, - { - "id": 4772, - "label": "HISC 120A" - }, - { - "id": 4773, - "label": "BENG 162" - }, - { - "id": 4774, - "label": "PHYS 105A" - }, - { - "id": 4775, - "label": "BENG 168" - }, - { - "id": 4776, - "label": "PHYS 105B" - }, - { - "id": 4777, - "label": "Physics 105A" - }, - { - "id": 4778, - "label": "PHIL 164" - }, - { - "id": 4779, - "label": "PHIL 165" - }, - { - "id": 4780, - "label": "PHIL 166" - }, - { - "id": 4781, - "label": "PHIL 167" - }, - { - "id": 4782, - "label": "PHIL 160" - }, - { - "id": 4783, - "label": "PHIL 161" - }, - { - "id": 4784, - "label": "PHIL 162" - }, - { - "id": 4785, - "label": "PHIL 163" - }, - { - "id": 4786, - "label": "PHIL 168" - }, - { - "id": 4787, - "label": "PHIL 169" - }, - { - "id": 4788, - "label": "EDS 298" - }, - { - "id": 4789, - "label": "EDS 299" - }, - { - "id": 4790, - "label": "ECE 276B" - }, - { - "id": 4791, - "label": "ECE 276C" - }, - { - "id": 4792, - "label": "EDS 295" - }, - { - "id": 4793, - "label": "EDS 296" - }, - { - "id": 4794, - "label": "EDS 297" - }, - { - "id": 4795, - "label": "EDS 290" - }, - { - "id": 4796, - "label": "EDS 292" - }, - { - "id": 4797, - "label": "HIGR 217A" - }, - { - "id": 4798, - "label": "HIGR 217C" - }, - { - "id": 4799, - "label": "HIGR 217B" - }, - { - "id": 4800, - "label": "BGGN 246A" - }, - { - "id": 4801, - "label": "HILA" - }, - { - "id": 4802, - "label": "MAE 235" - }, - { - "id": 4803, - "label": "TDGR 227A" - }, - { - "id": 4804, - "label": "EDS 205B" - }, - { - "id": 4805, - "label": "EDS 205A" - }, - { - "id": 4806, - "label": "BIOM 283" - }, - { - "id": 4807, - "label": "BIOM 285" - }, - { - "id": 4808, - "label": "BIOM 287" - }, - { - "id": 4809, - "label": "DSGN 119" - }, - { - "id": 4810, - "label": "ECON 199" - }, - { - "id": 4811, - "label": "ECON 198" - }, - { - "id": 4812, - "label": "ECON 195" - }, - { - "id": 4813, - "label": "VIS 113BN" - }, - { - "id": 4814, - "label": "MUS 20" - }, - { - "id": 4815, - "label": "PHYS 219" - }, - { - "id": 4816, - "label": "Linguistics/French (LIFR) 1DX" - }, - { - "id": 4817, - "label": "PHYS 214" - }, - { - "id": 4818, - "label": "PHYS 217" - }, - { - "id": 4819, - "label": "PHYS 216" - }, - { - "id": 4820, - "label": "TMC 90" - }, - { - "id": 4821, - "label": "GPEC 406" - }, - { - "id": 4822, - "label": "VIS 120C" - }, - { - "id": 4823, - "label": "VIS 120B" - }, - { - "id": 4824, - "label": "VIS 120A" - }, - { - "id": 4825, - "label": "POLI 121" - }, - { - "id": 4826, - "label": "POLI 121B" - }, - { - "id": 4827, - "label": "FMPH 277" - }, - { - "id": 4828, - "label": "HINE 112BL" - }, - { - "id": 4829, - "label": "LTWL 168" - }, - { - "id": 4830, - "label": "Linguistics/Italian (LIIT) 1BX" - }, - { - "id": 4831, - "label": "LTWL 160" - }, - { - "id": 4832, - "label": "LTWL 166" - }, - { - "id": 4833, - "label": "LTWL 165" - }, - { - "id": 4834, - "label": "SIOC 210" - }, - { - "id": 4835, - "label": "USP 120" - }, - { - "id": 4836, - "label": "USP 121" - }, - { - "id": 4837, - "label": "USP 122" - }, - { - "id": 4838, - "label": "USP 123" - }, - { - "id": 4839, - "label": "USP 124" - }, - { - "id": 4840, - "label": "USP 125" - }, - { - "id": 4841, - "label": "USP 126" - }, - { - "id": 4842, - "label": "PSYC 299" - }, - { - "id": 4843, - "label": "PSYC 296" - }, - { - "id": 4844, - "label": "TDGR 204B" - }, - { - "id": 4845, - "label": "TDGR 204A" - }, - { - "id": 4846, - "label": "TDGR 204C" - }, - { - "id": 4847, - "label": "SE 143A" - }, - { - "id": 4848, - "label": "SE 143B" - }, - { - "id": 4849, - "label": "COMM 106F" - }, - { - "id": 4850, - "label": "COMM 106G" - }, - { - "id": 4851, - "label": "COMM 106A" - }, - { - "id": 4852, - "label": "COMM 106C" - }, - { - "id": 4853, - "label": "COMM 106I" - }, - { - "id": 4854, - "label": "COMM 106T" - }, - { - "id": 4855, - "label": "COMM 106V" - }, - { - "id": 4856, - "label": "PHYS 87" - }, - { - "id": 4857, - "label": "ANSC 186" - }, - { - "id": 4858, - "label": "ANSC 184" - }, - { - "id": 4859, - "label": "ANSC 185" - }, - { - "id": 4860, - "label": "ANSC 182" - }, - { - "id": 4861, - "label": "ANSC 183" - }, - { - "id": 4862, - "label": "ANSC 180" - }, - { - "id": 4863, - "label": "ANSC 181" - }, - { - "id": 4864, - "label": "MATH 31AH" - }, - { - "id": 4865, - "label": "LIGN 150" - }, - { - "id": 4866, - "label": "LIGN 152" - }, - { - "id": 4867, - "label": "LTEN 148" - }, - { - "id": 4868, - "label": "LIGN 155" - }, - { - "id": 4869, - "label": "HIGR 234" - }, - { - "id": 4870, - "label": "LTEN 144" - }, - { - "id": 4871, - "label": "ECE 230C" - }, - { - "id": 4872, - "label": "LTEN 140" - }, - { - "id": 4873, - "label": "LTEN 142" - }, - { - "id": 4874, - "label": "GPEC 243" - }, - { - "id": 4875, - "label": "GPEC 246" - }, - { - "id": 4876, - "label": "GPEC 244" - }, - { - "id": 4877, - "label": "Linguistics/American Sign Language (LISL) 1E" - }, - { - "id": 4878, - "label": "LISL 1D" - }, - { - "id": 4879, - "label": "LISL 1DX" - }, - { - "id": 4880, - "label": "Linguistics/Portuguese (LIPO) 1BX" - }, - { - "id": 4881, - "label": "GLBH 111" - }, - { - "id": 4882, - "label": "GLBH 110" - }, - { - "id": 4883, - "label": "GLBH 113" - }, - { - "id": 4884, - "label": "MATH 11" - }, - { - "id": 4885, - "label": "LTRU 150" - }, - { - "id": 4886, - "label": "MATH 18" - }, - { - "id": 4887, - "label": "POLI 191A\u2013B" - }, - { - "id": 4888, - "label": "BISP 191" - }, - { - "id": 4889, - "label": "BISP 192" - }, - { - "id": 4890, - "label": "BISP 193" - }, - { - "id": 4891, - "label": "BISP 194" - }, - { - "id": 4892, - "label": "BISP 195" - }, - { - "id": 4893, - "label": "BISP 196" - }, - { - "id": 4894, - "label": "BISP 197" - }, - { - "id": 4895, - "label": "BISP 198" - }, - { - "id": 4896, - "label": "BIPN 189" - }, - { - "id": 4897, - "label": "Psyc 102" - }, - { - "id": 4898, - "label": "COGS 102B" - }, - { - "id": 4899, - "label": "CSE 274" - }, - { - "id": 4900, - "label": "NANO 257" - }, - { - "id": 4901, - "label": "NANO 256" - }, - { - "id": 4902, - "label": "NANO 255" - }, - { - "id": 4903, - "label": "NANO 253" - }, - { - "id": 4904, - "label": "NANO 252" - }, - { - "id": 4905, - "label": "NANO 250" - }, - { - "id": 4906, - "label": "COMM 181" - }, - { - "id": 4907, - "label": "COMM 180" - }, - { - "id": 4908, - "label": "COMM 183" - }, - { - "id": 4909, - "label": "COMM 184" - }, - { - "id": 4910, - "label": "NANO 259" - }, - { - "id": 4911, - "label": "NANO 258" - }, - { - "id": 4912, - "label": "ETHN 116" - }, - { - "id": 4913, - "label": "COGS 101A" - }, - { - "id": 4914, - "label": "COGS 101C" - }, - { - "id": 4915, - "label": "COGS 101B" - }, - { - "id": 4916, - "label": "BENG 147A" - }, - { - "id": 4917, - "label": "BENG 147B" - }, - { - "id": 4918, - "label": "POLI 11 or 11D" - }, - { - "id": 4919, - "label": "PSYC 249A" - }, - { - "id": 4920, - "label": "PSYC 249C" - }, - { - "id": 4921, - "label": "PSYC 249B" - }, - { - "id": 4922, - "label": "MUS 143" - }, - { - "id": 4923, - "label": "HIEU 199" - }, - { - "id": 4924, - "label": "HIEU 198" - }, - { - "id": 4925, - "label": "CHEM 204" - }, - { - "id": 4926, - "label": "CHEM 207" - }, - { - "id": 4927, - "label": "CHEM 209" - }, - { - "id": 4928, - "label": "HINE 136GS" - }, - { - "id": 4929, - "label": "CSE 224" - }, - { - "id": 4930, - "label": "CSE 227" - }, - { - "id": 4931, - "label": "CSE 121" - }, - { - "id": 4932, - "label": "POLI 210AB" - }, - { - "id": 4933, - "label": "POLI 210AA" - }, - { - "id": 4934, - "label": "GPIM 461" - }, - { - "id": 4935, - "label": "MATH 163" - }, - { - "id": 4936, - "label": "Soc/G 253" - }, - { - "id": 4937, - "label": "Soc/G 252" - }, - { - "id": 4938, - "label": "Soc/G 258" - }, - { - "id": 4939, - "label": "MGTF 403" - }, - { - "id": 4940, - "label": "CAT 98" - }, - { - "id": 4941, - "label": "HITO 192" - }, - { - "id": 4942, - "label": "HITO 194" - }, - { - "id": 4943, - "label": "HITO 195" - }, - { - "id": 4944, - "label": "HITO 196" - }, - { - "id": 4945, - "label": "HITO 198" - }, - { - "id": 4946, - "label": "HITO 199" - }, - { - "id": 4947, - "label": "MAE 121" - }, - { - "id": 4948, - "label": "MAE 125A" - }, - { - "id": 4949, - "label": "MAE 120" - }, - { - "id": 4950, - "label": "ETHN 155GS" - }, - { - "id": 4951, - "label": "TDDE 131" - }, - { - "id": 4952, - "label": "TDDE 130" - }, - { - "id": 4953, - "label": "TDDE 132" - }, - { - "id": 4954, - "label": "POLI 102J" - }, - { - "id": 4955, - "label": "POLI 102K" - }, - { - "id": 4956, - "label": "COGS 169" - }, - { - "id": 4957, - "label": "POLI 102L" - }, - { - "id": 4958, - "label": "COGS 163" - }, - { - "id": 4959, - "label": "POLI 102C" - }, - { - "id": 4960, - "label": "MATH 203B" - }, - { - "id": 4961, - "label": "Math 203A" - }, - { - "id": 4962, - "label": "MATH 203C" - }, - { - "id": 4963, - "label": "Math 203B" - }, - { - "id": 4964, - "label": "POLI 102F" - }, - { - "id": 4965, - "label": "POLI 102G" - }, - { - "id": 4966, - "label": "POLI 102D" - }, - { - "id": 4967, - "label": "POLI 102E" - }, - { - "id": 4968, - "label": "EDS 105" - }, - { - "id": 4969, - "label": "EDS 39" - }, - { - "id": 4970, - "label": "ECON 143" - }, - { - "id": 4971, - "label": "MUS 33A" - }, - { - "id": 4972, - "label": "MUS 33B" - }, - { - "id": 4973, - "label": "MAE 216" - }, - { - "id": 4974, - "label": "MAE 211" - }, - { - "id": 4975, - "label": "MAE 213" - }, - { - "id": 4976, - "label": "MAE 212" - }, - { - "id": 4977, - "label": "NEU 296" - }, - { - "id": 4978, - "label": "TDGR 270A" - }, - { - "id": 4979, - "label": "TDGR 270C" - }, - { - "id": 4980, - "label": "TDGR 270B" - }, - { - "id": 4981, - "label": "THGR 270A" - }, - { - "id": 4982, - "label": "THGR 270B" - }, - { - "id": 4983, - "label": "TDGR 270D" - }, - { - "id": 4984, - "label": "TDAC 123" - }, - { - "id": 4985, - "label": "TDAC 122" - }, - { - "id": 4986, - "label": "TDAC 120" - }, - { - "id": 4987, - "label": "ECON 120A" - }, - { - "id": 4988, - "label": "ECON 120C" - }, - { - "id": 4989, - "label": "ECON 120B" - }, - { - "id": 4990, - "label": "PHIL 148" - }, - { - "id": 4991, - "label": "PHIL 149" - }, - { - "id": 4992, - "label": "MDE 210" - }, - { - "id": 4993, - "label": "MATS 236" - }, - { - "id": 4994, - "label": "ECE 115" - }, - { - "id": 4995, - "label": "PHIL 146" - }, - { - "id": 4996, - "label": "PHIL 147" - }, - { - "id": 4997, - "label": "MATS 231" - }, - { - "id": 4998, - "label": "BENG 183" - }, - { - "id": 4999, - "label": "HIEA 139GS" - }, - { - "id": 5000, - "label": "BENG 87" - }, - { - "id": 5001, - "label": "GPEC 464" - }, - { - "id": 5002, - "label": "GPCO 468" - }, - { - "id": 5003, - "label": "VIS 122D" - }, - { - "id": 5004, - "label": "VIS 20" - }, - { - "id": 5005, - "label": "VIS 21" - }, - { - "id": 5006, - "label": "VIS 122F" - }, - { - "id": 5007, - "label": "SOCI 40" - }, - { - "id": 5008, - "label": "GPEC 468" - }, - { - "id": 5009, - "label": "HIEU 117B" - }, - { - "id": 5010, - "label": "HIEU 117A" - }, - { - "id": 5011, - "label": "ANSC 117GS" - }, - { - "id": 5012, - "label": "HILA 132GS" - }, - { - "id": 5013, - "label": "MATH 273C" - }, - { - "id": 5014, - "label": "MATH 273B" - }, - { - "id": 5015, - "label": "MATH 273A" - }, - { - "id": 5016, - "label": "LTWL 180" - }, - { - "id": 5017, - "label": "LTWL 181" - }, - { - "id": 5018, - "label": "LTWL 183" - }, - { - "id": 5019, - "label": "LTWL 184" - }, - { - "id": 5020, - "label": "PSYC 255A" - }, - { - "id": 5021, - "label": "PSYC 255B" - }, - { - "id": 5022, - "label": "PSYC 255C" - }, - { - "id": 5023, - "label": "ECON 173AL" - }, - { - "id": 5024, - "label": "USP 109" - }, - { - "id": 5025, - "label": "ECE 90" - }, - { - "id": 5026, - "label": "USP 102" - }, - { - "id": 5027, - "label": "Economics 1" - }, - { - "id": 5028, - "label": "Economics 1A" - }, - { - "id": 5029, - "label": "Mathematics 10A" - }, - { - "id": 5030, - "label": "Mathematics 20A" - }, - { - "id": 5031, - "label": "Economics 1B" - }, - { - "id": 5032, - "label": "USP 100" - }, - { - "id": 5033, - "label": "USP 101" - }, - { - "id": 5034, - "label": "USP 106" - }, - { - "id": 5035, - "label": "USP 107" - }, - { - "id": 5036, - "label": "USP 104" - }, - { - "id": 5037, - "label": "USP 105" - }, - { - "id": 5038, - "label": "BGRD 234" - }, - { - "id": 5039, - "label": "BGRD 230" - }, - { - "id": 5040, - "label": "BGRD 231" - }, - { - "id": 5041, - "label": "MUS 270B" - }, - { - "id": 5042, - "label": "MUS 270C" - }, - { - "id": 5043, - "label": "MUS 270A" - }, - { - "id": 5044, - "label": "MUS 270D" - }, - { - "id": 5045, - "label": "SE 171" - }, - { - "id": 5046, - "label": "HIEU 123GS" - }, - { - "id": 5047, - "label": "ANAR 112" - }, - { - "id": 5048, - "label": "MGT 296" - }, - { - "id": 5049, - "label": "MGT 299" - }, - { - "id": 5050, - "label": "COGR 258" - }, - { - "id": 5051, - "label": "COGR 250" - }, - { - "id": 5052, - "label": "COGR 251" - }, - { - "id": 5053, - "label": "COGR 252" - }, - { - "id": 5054, - "label": "COGR 253" - }, - { - "id": 5055, - "label": "COGR 254" - }, - { - "id": 5056, - "label": "COGR 255" - }, - { - "id": 5057, - "label": "COGR 256" - }, - { - "id": 5058, - "label": "COGR 257" - }, - { - "id": 5059, - "label": "BENG 233" - }, - { - "id": 5060, - "label": "BENG 234" - }, - { - "id": 5061, - "label": "LIGN 176" - }, - { - "id": 5062, - "label": "TDGE 122" - }, - { - "id": 5063, - "label": "LIGN 174" - }, - { - "id": 5064, - "label": "LIGN 175" - }, - { - "id": 5065, - "label": "TDGE 126" - }, - { - "id": 5066, - "label": "LIGN 170" - }, - { - "id": 5067, - "label": "TDGE 124" - }, - { - "id": 5068, - "label": "LTEN 169" - }, - { - "id": 5069, - "label": "LIGN 179" - }, - { - "id": 5070, - "label": "TDGE 105" - }, - { - "id": 5071, - "label": "TDGE 5" - }, - { - "id": 5072, - "label": "LIGN 280" - }, - { - "id": 5073, - "label": "LIGN 281" - }, - { - "id": 5074, - "label": "LIGN 282" - }, - { - "id": 5075, - "label": "LIGN 283" - }, - { - "id": 5076, - "label": "BENG 278/RAD 278" - }, - { - "id": 5077, - "label": "ECE 5" - }, - { - "id": 5078, - "label": "HIAF 112" - }, - { - "id": 5079, - "label": "HIAF 113" - }, - { - "id": 5080, - "label": "HIAF 111" - }, - { - "id": 5081, - "label": "ETHN 500" - }, - { - "id": 5082, - "label": "POLI 225B" - }, - { - "id": 5083, - "label": "NEU 200A-B-C" - }, - { - "id": 5084, - "label": "ANAR 190" - }, - { - "id": 5085, - "label": "ANAR 191" - }, - { - "id": 5086, - "label": "GPPA 472" - }, - { - "id": 5087, - "label": "HIUS 141/ECON 159" - }, - { - "id": 5088, - "label": "PHYS 7" - }, - { - "id": 5089, - "label": "PHYS 5" - }, - { - "id": 5090, - "label": "CSE 258A" - }, - { - "id": 5091, - "label": "PHYS 8" - }, - { - "id": 5092, - "label": "PHYS 9" - }, - { - "id": 5093, - "label": "LTAM 140" - }, - { - "id": 5094, - "label": "HIUS" - }, - { - "id": 5095, - "label": "NANO 279" - }, - { - "id": 5096, - "label": "NANO 275" - }, - { - "id": 5097, - "label": "NANO 271" - }, - { - "id": 5098, - "label": "NANO 272" - }, - { - "id": 5099, - "label": "COGS 87" - }, - { - "id": 5100, - "label": "PSYC 117" - }, - { - "id": 5101, - "label": "PSYC 116" - }, - { - "id": 5102, - "label": "PSYC 199" - }, - { - "id": 5103, - "label": "CSE 208" - }, - { - "id": 5104, - "label": "CSE 207" - }, - { - "id": 5105, - "label": "MGT 199" - }, - { - "id": 5106, - "label": "MGT 198" - }, - { - "id": 5107, - "label": "MATH 183" - }, - { - "id": 5108, - "label": "MATH 186" - }, - { - "id": 5109, - "label": "MATH 185" - }, - { - "id": 5110, - "label": "Math 181A" - }, - { - "id": 5111, - "label": "LTCS 119" - }, - { - "id": 5112, - "label": "MATH 189" - }, - { - "id": 5113, - "label": "VIS 126AN" - }, - { - "id": 5114, - "label": "CSE 241A/ECE" - }, - { - "id": 5115, - "label": "Linguistics/Spanish (LISP) 15, 16, 17" - }, - { - "id": 5116, - "label": "LTCO 284" - }, - { - "id": 5117, - "label": "LTCO 285" - }, - { - "id": 5118, - "label": "LTCO 287" - }, - { - "id": 5119, - "label": "LTCO 281" - }, - { - "id": 5120, - "label": "LTCO 282" - }, - { - "id": 5121, - "label": "COGS 14A" - }, - { - "id": 5122, - "label": "COGS 14B" - }, - { - "id": 5123, - "label": "HIUS 176/276" - }, - { - "id": 5124, - "label": "EDS 289C" - }, - { - "id": 5125, - "label": "EDS 289B" - }, - { - "id": 5126, - "label": "EDS 289A" - }, - { - "id": 5127, - "label": "EDS 289D" - }, - { - "id": 5128, - "label": "POLI 100P" - }, - { - "id": 5129, - "label": "POLI 100T" - }, - { - "id": 5130, - "label": "POLI 100U" - }, - { - "id": 5131, - "label": "TDDE 151" - }, - { - "id": 5132, - "label": "POLI 100A" - }, - { - "id": 5133, - "label": "COGS 143" - }, - { - "id": 5134, - "label": "POLI 100E" - }, - { - "id": 5135, - "label": "POLI 100F" - }, - { - "id": 5136, - "label": "POLI 100G" - }, - { - "id": 5137, - "label": "ETHN 260" - }, - { - "id": 5138, - "label": "POLI 100J" - }, - { - "id": 5139, - "label": "POLI 100K" - }, - { - "id": 5140, - "label": "ETHN 265" - }, - { - "id": 5141, - "label": "POLI 100M" - }, - { - "id": 5142, - "label": "ETHN 267" - }, - { - "id": 5143, - "label": "ETHN 266" - }, - { - "id": 5144, - "label": "COGR 500" - }, - { - "id": 5145, - "label": "TDTR 20" - }, - { - "id": 5146, - "label": "ETHN 20" - }, - { - "id": 5147, - "label": "AUD 284" - }, - { - "id": 5148, - "label": "ETHN 199" - }, - { - "id": 5149, - "label": "ETHN 198" - }, - { - "id": 5150, - "label": "ETHN 197" - }, - { - "id": 5151, - "label": "ETHN 190" - }, - { - "id": 5152, - "label": "PHIL 1" - }, - { - "id": 5153, - "label": "TDAC 109" - }, - { - "id": 5154, - "label": "TDAC 108" - }, - { - "id": 5155, - "label": "TDAC 105" - }, - { - "id": 5156, - "label": "TDAC 104" - }, - { - "id": 5157, - "label": "TDAC 107" - }, - { - "id": 5158, - "label": "TDAC 106" - }, - { - "id": 5159, - "label": "ECE 134" - }, - { - "id": 5160, - "label": "MATS 254" - }, - { - "id": 5161, - "label": "MAE 268" - }, - { - "id": 5162, - "label": "MATS 255" - }, - { - "id": 5163, - "label": "MATS 256" - }, - { - "id": 5164, - "label": "MATS 257" - }, - { - "id": 5165, - "label": "MS 76" - }, - { - "id": 5166, - "label": "BE 75" - }, - { - "id": 5167, - "label": "CENG 134" - }, - { - "id": 5168, - "label": "MATS 252" - }, - { - "id": 5169, - "label": "MATS 253" - }, - { - "id": 5170, - "label": "MAE 267" - }, - { - "id": 5171, - "label": "MATS 259" - }, - { - "id": 5172, - "label": "HIEU 151GS" - }, - { - "id": 5173, - "label": "ETHN 291B" - }, - { - "id": 5174, - "label": "ETHN 291A" - }, - { - "id": 5175, - "label": "GPEC 449" - }, - { - "id": 5176, - "label": "GPEC 444" - }, - { - "id": 5177, - "label": "GPEC 443" - }, - { - "id": 5178, - "label": "VIS 124E" - }, - { - "id": 5179, - "label": "VIS 124D" - }, - { - "id": 5180, - "label": "BENG 166A" - }, - { - "id": 5181, - "label": "ANTH 246" - }, - { - "id": 5182, - "label": "CSE 244A" - }, - { - "id": 5183, - "label": "POLI 125A" - }, - { - "id": 5184, - "label": "POLI 125B" - }, - { - "id": 5185, - "label": "PHYS 30" - }, - { - "id": 5186, - "label": "BIEB 135" - }, - { - "id": 5187, - "label": "BIEB 130" - }, - { - "id": 5188, - "label": "BIEB 131" - }, - { - "id": 5189, - "label": "BGRD 218" - }, - { - "id": 5190, - "label": "BGRD 212" - }, - { - "id": 5191, - "label": "BGRD 213" - }, - { - "id": 5192, - "label": "BGRD 210" - }, - { - "id": 5193, - "label": "BGRD 211" - }, - { - "id": 5194, - "label": "BGRD 216" - }, - { - "id": 5195, - "label": "MATH 109" - }, - { - "id": 5196, - "label": "SE 152" - }, - { - "id": 5197, - "label": "SE 154" - }, - { - "id": 5198, - "label": "LTEN 30" - }, - { - "id": 5199, - "label": "LTGK 105" - }, - { - "id": 5200, - "label": "LTGK 104" - }, - { - "id": 5201, - "label": "LTGK 103" - }, - { - "id": 5202, - "label": "LTGK 102" - }, - { - "id": 5203, - "label": "LTGK 101" - }, - { - "id": 5204, - "label": "MATH 102" - }, - { - "id": 5205, - "label": "EDS 123/Chem 188" - }, - { - "id": 5206, - "label": "Linguistics/Italian (LIIT) 5BS" - }, - { - "id": 5207, - "label": "POLI 205" - }, - { - "id": 5208, - "label": "COGR 278" - }, - { - "id": 5209, - "label": "COGR 275" - }, - { - "id": 5210, - "label": "EDS 374" - }, - { - "id": 5211, - "label": "MATS 251B" - }, - { - "id": 5212, - "label": "MATS 251A" - }, - { - "id": 5213, - "label": "LIGN 119" - }, - { - "id": 5214, - "label": "TDGE 100" - }, - { - "id": 5215, - "label": "LIGN 111" - }, - { - "id": 5216, - "label": "LIGN 112" - }, - { - "id": 5217, - "label": "LTGK 199" - }, - { - "id": 5218, - "label": "MATH 150A" - }, - { - "id": 5219, - "label": "MATH 150B" - }, - { - "id": 5220, - "label": "MGT 416" - }, - { - "id": 5221, - "label": "MGT 417" - }, - { - "id": 5222, - "label": "MGT 410" - }, - { - "id": 5223, - "label": "MGT 412" - }, - { - "id": 5224, - "label": "MGT 413" - }, - { - "id": 5225, - "label": "ENG 10" - }, - { - "id": 5226, - "label": "MGT 419" - }, - { - "id": 5227, - "label": "MATH 251A-B-C" - }, - { - "id": 5228, - "label": "Math 200" - }, - { - "id": 5229, - "label": "Math 250" - }, - { - "id": 5230, - "label": "SOCI 103M" - }, - { - "id": 5231, - "label": "SOCA 103M" - }, - { - "id": 5232, - "label": "MGTA 401" - }, - { - "id": 5233, - "label": "Linguistics/Heritage Languages (LIHL) 16" - }, - { - "id": 5234, - "label": "Linguistics/Heritage Languages (LIHL) 17" - }, - { - "id": 5235, - "label": "EDS 373" - }, - { - "id": 5236, - "label": "EDS 372" - }, - { - "id": 5237, - "label": "EDS 376" - }, - { - "id": 5238, - "label": "EDS 375" - }, - { - "id": 5239, - "label": "POLI 223A" - }, - { - "id": 5240, - "label": "TDDR 111" - }, - { - "id": 5241, - "label": "VIS 160B" - }, - { - "id": 5242, - "label": "NANO 296" - }, - { - "id": 5243, - "label": "MUS 102" - }, - { - "id": 5244, - "label": "NANO 299" - }, - { - "id": 5245, - "label": "MUS 107" - }, - { - "id": 5246, - "label": "MUS 106" - }, - { - "id": 5247, - "label": "MUS 105" - }, - { - "id": 5248, - "label": "VIS 101A" - }, - { - "id": 5249, - "label": "HINE 160/260" - }, - { - "id": 5250, - "label": "CHEM 200B" - }, - { - "id": 5251, - "label": "MAE 126A" - }, - { - "id": 5252, - "label": "CSE 260" - }, - { - "id": 5253, - "label": "USP 185A" - }, - { - "id": 5254, - "label": "USP 185B" - }, - { - "id": 5255, - "label": "MGT 173" - }, - { - "id": 5256, - "label": "MGT 172" - }, - { - "id": 5257, - "label": "MGT 171" - }, - { - "id": 5258, - "label": "LTCH 101" - }, - { - "id": 5259, - "label": "SOCI 120T" - }, - { - "id": 5260, - "label": "ERC 2" - }, - { - "id": 5261, - "label": "POLI 231E" - }, - { - "id": 5262, - "label": "MGT 208B" - }, - { - "id": 5263, - "label": "MGT 208C" - }, - { - "id": 5264, - "label": "MGT 208A" - }, - { - "id": 5265, - "label": "PHIL 191A" - }, - { - "id": 5266, - "label": "PHIL 191B" - }, - { - "id": 5267, - "label": "TDGR 235" - }, - { - "id": 5268, - "label": "RELI 154" - }, - { - "id": 5269, - "label": "EDS 140" - }, - { - "id": 5270, - "label": "EDS 141" - }, - { - "id": 5271, - "label": "COGS 125" - }, - { - "id": 5272, - "label": "Cognitive Science 120" - }, - { - "id": 5273, - "label": "COGS 124" - }, - { - "id": 5274, - "label": "Cognitive Science 121" - }, - { - "id": 5275, - "label": "COGS 123" - }, - { - "id": 5276, - "label": "Cognitive Science 187B" - }, - { - "id": 5277, - "label": "Cognitive Science 102C" - }, - { - "id": 5278, - "label": "MATH 207A" - }, - { - "id": 5279, - "label": "LTSP 150B" - }, - { - "id": 5280, - "label": "ETHN 203" - }, - { - "id": 5281, - "label": "ETHN 202" - }, - { - "id": 5282, - "label": "ETHN 201" - }, - { - "id": 5283, - "label": "COGS 7" - }, - { - "id": 5284, - "label": "LATI 299" - }, - { - "id": 5285, - "label": "LATI 298" - }, - { - "id": 5286, - "label": "LTWR 220" - }, - { - "id": 5287, - "label": "HIEA 180" - }, - { - "id": 5288, - "label": "HIEU 163/263" - }, - { - "id": 5289, - "label": "NEUG 240" - }, - { - "id": 5290, - "label": "ANSC 179" - }, - { - "id": 5291, - "label": "ANSC 178" - }, - { - "id": 5292, - "label": "NEU 276" - }, - { - "id": 5293, - "label": "NEU 277" - }, - { - "id": 5294, - "label": "HIEA 115" - }, - { - "id": 5295, - "label": "Linguistics/German" - }, - { - "id": 5296, - "label": "ECE 156" - }, - { - "id": 5297, - "label": "HIEA 117" - }, - { - "id": 5298, - "label": "ECE 252B" - }, - { - "id": 5299, - "label": "PHIL 185" - }, - { - "id": 5300, - "label": "EDS/LIGN 119" - }, - { - "id": 5301, - "label": "PHIL 183" - }, - { - "id": 5302, - "label": "PHIL 180" - }, - { - "id": 5303, - "label": "PHIL 181" - }, - { - "id": 5304, - "label": "MATS 205A" - }, - { - "id": 5305, - "label": "VIS 126I" - }, - { - "id": 5306, - "label": "HIEA 113" - }, - { - "id": 5307, - "label": "VIS 126K" - }, - { - "id": 5308, - "label": "VIS 126J" - }, - { - "id": 5309, - "label": "VIS 126D" - }, - { - "id": 5310, - "label": "HIEA 112" - }, - { - "id": 5311, - "label": "VIS 126C" - }, - { - "id": 5312, - "label": "VIS 126Q" - }, - { - "id": 5313, - "label": "VIS 126P" - }, - { - "id": 5314, - "label": "SE 260B" - }, - { - "id": 5315, - "label": "SE 260A" - }, - { - "id": 5316, - "label": "CHIN 296" - }, - { - "id": 5317, - "label": "VIS 100A" - }, - { - "id": 5318, - "label": "CHIN 299" - }, - { - "id": 5319, - "label": "LTIT 137" - }, - { - "id": 5320, - "label": "Linguistics/French (LIFR) 1BX" - }, - { - "id": 5321, - "label": "CENG 4" - }, - { - "id": 5322, - "label": "BILD 95" - }, - { - "id": 5323, - "label": "BILD 96" - }, - { - "id": 5324, - "label": "BILD 91" - }, - { - "id": 5325, - "label": "LTWL 194A" - }, - { - "id": 5326, - "label": "BILD 92" - }, - { - "id": 5327, - "label": "BILD 99" - }, - { - "id": 5328, - "label": "BILD 98" - }, - { - "id": 5329, - "label": "BIEB 154" - }, - { - "id": 5330, - "label": "BIEB 156" - }, - { - "id": 5331, - "label": "BIEB 152" - }, - { - "id": 5332, - "label": "LATI 500" - }, - { - "id": 5333, - "label": "HIUS 114A" - }, - { - "id": 5334, - "label": "HIUS 114B" - }, - { - "id": 5335, - "label": "HIEU 135GS" - }, - { - "id": 5336, - "label": "AAS 190" - }, - { - "id": 5337, - "label": "AAS 198" - }, - { - "id": 5338, - "label": "AAS 199" - }, - { - "id": 5339, - "label": "SE 131" - }, - { - "id": 5340, - "label": "EDS 379C" - }, - { - "id": 5341, - "label": "EDS 379B" - }, - { - "id": 5342, - "label": "EDS 379A" - }, - { - "id": 5343, - "label": "NANO 247A" - }, - { - "id": 5344, - "label": "NANO 247B" - }, - { - "id": 5345, - "label": "NANO 247C" - }, - { - "id": 5346, - "label": "POLI 227" - }, - { - "id": 5347, - "label": "POLI 200C" - }, - { - "id": 5348, - "label": "POLI 224" - }, - { - "id": 5349, - "label": "POLI 225" - }, - { - "id": 5350, - "label": "POLI 229" - }, - { - "id": 5351, - "label": "HIUS 162/262" - }, - { - "id": 5352, - "label": "COGR 215" - }, - { - "id": 5353, - "label": "COGR 210" - }, - { - "id": 5354, - "label": "COGR 211" - }, - { - "id": 5355, - "label": "COGR 219" - }, - { - "id": 5356, - "label": "LTEU 109" - }, - { - "id": 5357, - "label": "LTEU 105" - }, - { - "id": 5358, - "label": "PSYC 231" - }, - { - "id": 5359, - "label": "PSYC 232" - }, - { - "id": 5360, - "label": "PSYC 233" - }, - { - "id": 5361, - "label": "PSYC 234" - }, - { - "id": 5362, - "label": "PSYC 235" - }, - { - "id": 5363, - "label": "PSYC 236" - }, - { - "id": 5364, - "label": "PSYC 237" - }, - { - "id": 5365, - "label": "LIGN 130" - }, - { - "id": 5366, - "label": "ANSC 105S" - }, - { - "id": 5367, - "label": "MGT 439" - }, - { - "id": 5368, - "label": "MGT 430" - }, - { - "id": 5369, - "label": "ANTH 87" - }, - { - "id": 5370, - "label": "HIGR 249" - }, - { - "id": 5371, - "label": "HIGR 240" - }, - { - "id": 5372, - "label": "HIGR 241" - }, - { - "id": 5373, - "label": "HIGR 244" - }, - { - "id": 5374, - "label": "HIGR 245" - }, - { - "id": 5375, - "label": "ETHN 119" - }, - { - "id": 5376, - "label": "MGTA 460" - }, - { - "id": 5377, - "label": "ETHN 118" - }, - { - "id": 5378, - "label": "MGT 175" - }, - { - "id": 5379, - "label": "EDS 351" - }, - { - "id": 5380, - "label": "ECE 264C" - }, - { - "id": 5381, - "label": "ECE 264B" - }, - { - "id": 5382, - "label": "ECE 264A" - }, - { - "id": 5383, - "label": "ECE 264D" - }, - { - "id": 5384, - "label": "MGTF 490" - }, - { - "id": 5385, - "label": "MGTF 495" - }, - { - "id": 5386, - "label": "HITO 178/278" - }, - { - "id": 5387, - "label": "NANO 103" - }, - { - "id": 5388, - "label": "BGRD 205" - }, - { - "id": 5389, - "label": "MUS 299" - }, - { - "id": 5390, - "label": "MUS 298" - }, - { - "id": 5391, - "label": "NANO 107" - }, - { - "id": 5392, - "label": "MUS 296" - }, - { - "id": 5393, - "label": "HIEU 167/267" - }, - { - "id": 5394, - "label": "LTAM 87" - }, - { - "id": 5395, - "label": "LTAM 109" - }, - { - "id": 5396, - "label": "LTAM 108" - }, - { - "id": 5397, - "label": "LTAM 107" - }, - { - "id": 5398, - "label": "LTAM 106" - }, - { - "id": 5399, - "label": "LTAM 105" - }, - { - "id": 5400, - "label": "MAE 280B" - }, - { - "id": 5401, - "label": "LTAM 100" - }, - { - "id": 5402, - "label": "HIEU 132" - }, - { - "id": 5403, - "label": "HIEU 131" - }, - { - "id": 5404, - "label": "HIEU 130" - }, - { - "id": 5405, - "label": "HIEU 137" - }, - { - "id": 5406, - "label": "HIEU 135" - }, - { - "id": 5407, - "label": "HIEU 134" - }, - { - "id": 5408, - "label": "HIEU 139" - }, - { - "id": 5409, - "label": "MUS 128" - }, - { - "id": 5410, - "label": "BGGN 231" - }, - { - "id": 5411, - "label": "POLI 504" - }, - { - "id": 5412, - "label": "POLI 503" - }, - { - "id": 5413, - "label": "POLI 502" - }, - { - "id": 5414, - "label": "POLI 501" - }, - { - "id": 5415, - "label": "POLI 500" - }, - { - "id": 5416, - "label": "CSE 245" - }, - { - "id": 5417, - "label": "CSE 248" - }, - { - "id": 5418, - "label": "CSE 242A" - }, - { - "id": 5419, - "label": "CSE 241A" - }, - { - "id": 5420, - "label": "MGT 158" - }, - { - "id": 5421, - "label": "HISC 166/266" - }, - { - "id": 5422, - "label": "MGT 153" - }, - { - "id": 5423, - "label": "LTFR 198" - }, - { - "id": 5424, - "label": "LTFR 199" - }, - { - "id": 5425, - "label": "ECON 87" - }, - { - "id": 5426, - "label": "VIS 234N" - }, - { - "id": 5427, - "label": "CSE 232B" - }, - { - "id": 5428, - "label": "CAT 75" - }, - { - "id": 5429, - "label": "CSE 209A" - }, - { - "id": 5430, - "label": "CSE 209B" - }, - { - "id": 5431, - "label": "TDPR 102" - }, - { - "id": 5432, - "label": "TDPR 2" - }, - { - "id": 5433, - "label": "TDPR 104" - }, - { - "id": 5434, - "label": "HIUS 103" - }, - { - "id": 5435, - "label": "HIUS 104" - }, - { - "id": 5436, - "label": "COGS 109" - }, - { - "id": 5437, - "label": "COGS 108" - }, - { - "id": 5438, - "label": "COGS 100" - }, - { - "id": 5439, - "label": "CHIN 10AN" - }, - { - "id": 5440, - "label": "ENG 211" - }, - { - "id": 5441, - "label": "POLI 104L" - }, - { - "id": 5442, - "label": "POLI 104M" - }, - { - "id": 5443, - "label": "POLI 104N" - }, - { - "id": 5444, - "label": "POLI 104I" - }, - { - "id": 5445, - "label": "POLI 104J" - }, - { - "id": 5446, - "label": "POLI 104A" - }, - { - "id": 5447, - "label": "POLI 104B" - }, - { - "id": 5448, - "label": "POLI 104D" - }, - { - "id": 5449, - "label": "POLI 104E" - }, - { - "id": 5450, - "label": "POLI 104F" - }, - { - "id": 5451, - "label": "POLI 104C" - }, - { - "id": 5452, - "label": "POLI 104P" - }, - { - "id": 5453, - "label": "ECON 1" - }, - { - "id": 5454, - "label": "ECON 3" - }, - { - "id": 5455, - "label": "ECON 2" - }, - { - "id": 5456, - "label": "ECON 5" - }, - { - "id": 5457, - "label": "ECON 4" - }, - { - "id": 5458, - "label": "PSYC 196A-B-C" - }, - { - "id": 5459, - "label": "BENG/BIMM/CSE 181" - }, - { - "id": 5460, - "label": "TDMV 20" - }, - { - "id": 5461, - "label": "POLI 219" - }, - { - "id": 5462, - "label": "MUS 213" - }, - { - "id": 5463, - "label": "DSGN 195" - }, - { - "id": 5464, - "label": "MATS 296" - }, - { - "id": 5465, - "label": "CLRE 230" - }, - { - "id": 5466, - "label": "MATS 299" - }, - { - "id": 5467, - "label": "CLRE 233" - }, - { - "id": 5468, - "label": "DSGN 198" - }, - { - "id": 5469, - "label": "DSGN 199" - }, - { - "id": 5470, - "label": "EDS 50" - }, - { - "id": 5471, - "label": "TDHD 21" - }, - { - "id": 5472, - "label": "TDHD 20" - }, - { - "id": 5473, - "label": "POLI 124A" - }, - { - "id": 5474, - "label": "TDPF 190" - }, - { - "id": 5475, - "label": "CHIN 500" - }, - { - "id": 5476, - "label": "TMC 2" - }, - { - "id": 5477, - "label": "CLRE 236" - }, - { - "id": 5478, - "label": "POLI 144AB" - }, - { - "id": 5479, - "label": "Revelle 1" - }, - { - "id": 5480, - "label": "REVELLE_COLLEGE" - }, - { - "id": 5481, - "label": "Revelle 2" - }, - { - "id": 5482, - "label": "VIS 106C" - }, - { - "id": 5483, - "label": "VIS 106B" - }, - { - "id": 5484, - "label": "VIS 106A" - }, - { - "id": 5485, - "label": "PHYS 295" - }, - { - "id": 5486, - "label": "GPEC 488" - }, - { - "id": 5487, - "label": "PHYS 297" - }, - { - "id": 5488, - "label": "LTIT 115" - }, - { - "id": 5489, - "label": "GPEC 480" - }, - { - "id": 5490, - "label": "PHYS 299" - }, - { - "id": 5491, - "label": "PHYS 298" - }, - { - "id": 5492, - "label": "GPEC 486" - }, - { - "id": 5493, - "label": "HIUS 167/267/ETHN 180" - }, - { - "id": 5494, - "label": "EDS 229" - }, - { - "id": 5495, - "label": "Jewish Studies 111" - }, - { - "id": 5496, - "label": "Jewish Studies 110" - }, - { - "id": 5497, - "label": "CSE 240C" - }, - { - "id": 5498, - "label": "CSE 240B" - }, - { - "id": 5499, - "label": "CSE 240A" - }, - { - "id": 5500, - "label": "BILD 70" - }, - { - "id": 5501, - "label": "Linguistics/Heritage Languages (LIHL) 112W" - }, - { - "id": 5502, - "label": "BIEB 176" - }, - { - "id": 5503, - "label": "BIEB 174" - }, - { - "id": 5504, - "label": "POLI 200A" - }, - { - "id": 5505, - "label": "POLI 200B" - }, - { - "id": 5506, - "label": "COMM 114G" - }, - { - "id": 5507, - "label": "EDS 352A" - }, - { - "id": 5508, - "label": "EDS 352B" - }, - { - "id": 5509, - "label": "ECON 172B" - }, - { - "id": 5510, - "label": "Math 171A" - }, - { - "id": 5511, - "label": "Econ 172A" - }, - { - "id": 5512, - "label": "ECON 172A" - }, - { - "id": 5513, - "label": "POLI 248" - }, - { - "id": 5514, - "label": "HIEA 132" - }, - { - "id": 5515, - "label": "POLI 245" - }, - { - "id": 5516, - "label": "POLI 240" - }, - { - "id": 5517, - "label": "POLI 242" - }, - { - "id": 5518, - "label": "POLI 243" - }, - { - "id": 5519, - "label": "SIOC 299" - }, - { - "id": 5520, - "label": "POLI 110DA" - }, - { - "id": 5521, - "label": "SIOC 296" - }, - { - "id": 5522, - "label": "SIOC 292" - }, - { - "id": 5523, - "label": "COGR 238" - }, - { - "id": 5524, - "label": "COGR 239" - }, - { - "id": 5525, - "label": "COGR 237" - }, - { - "id": 5526, - "label": "PSYC 264A" - }, - { - "id": 5527, - "label": "PSYC 264B" - }, - { - "id": 5528, - "label": "PSYC 264C" - }, - { - "id": 5529, - "label": "LTEU 125" - }, - { - "id": 5530, - "label": "LIGN 199H" - }, - { - "id": 5531, - "label": "SE 115" - }, - { - "id": 5532, - "label": "PSYC 212" - }, - { - "id": 5533, - "label": "PSYC 213" - }, - { - "id": 5534, - "label": "PSYC 210" - }, - { - "id": 5535, - "label": "RELI 196AH" - }, - { - "id": 5536, - "label": "COMM 114P" - }, - { - "id": 5537, - "label": "PSYC 218" - }, - { - "id": 5538, - "label": "MATH 181E" - }, - { - "id": 5539, - "label": "MATH 181C" - }, - { - "id": 5540, - "label": "MATH 181B" - }, - { - "id": 5541, - "label": "MATH 181A" - }, - { - "id": 5542, - "label": "MGT 459" - }, - { - "id": 5543, - "label": "MGT 450" - }, - { - "id": 5544, - "label": "MGT 451" - }, - { - "id": 5545, - "label": "MGT 452" - }, - { - "id": 5546, - "label": "MGT 453" - }, - { - "id": 5547, - "label": "MGT 454" - }, - { - "id": 5548, - "label": "GPPA 483" - }, - { - "id": 5549, - "label": "PHIL 288" - }, - { - "id": 5550, - "label": "PHIL 285" - }, - { - "id": 5551, - "label": "PHIL 284" - }, - { - "id": 5552, - "label": "PHIL 287" - }, - { - "id": 5553, - "label": "PHIL 286" - }, - { - "id": 5554, - "label": "PHIL 281" - }, - { - "id": 5555, - "label": "PHIL 280" - }, - { - "id": 5556, - "label": "PHIL 282" - }, - { - "id": 5557, - "label": "ECON 109T" - }, - { - "id": 5558, - "label": "HIGR 260B" - }, - { - "id": 5559, - "label": "RELI 189" - }, - { - "id": 5560, - "label": "RELI 188" - }, - { - "id": 5561, - "label": "HIGR 264" - }, - { - "id": 5562, - "label": "COMM 113T" - }, - { - "id": 5563, - "label": "LTSP 150A" - }, - { - "id": 5564, - "label": "COGS 121" - }, - { - "id": 5565, - "label": "ECE 291" - }, - { - "id": 5566, - "label": "MAE 99H" - }, - { - "id": 5567, - "label": "MUS 9" - }, - { - "id": 5568, - "label": "MAE 198" - }, - { - "id": 5569, - "label": "MAE 199" - }, - { - "id": 5570, - "label": "MAE 197" - }, - { - "id": 5571, - "label": "MUS 5" - }, - { - "id": 5572, - "label": "MUS 6" - }, - { - "id": 5573, - "label": "MUS 7" - }, - { - "id": 5574, - "label": "VIS 207" - }, - { - "id": 5575, - "label": "VIS 206" - }, - { - "id": 5576, - "label": "VIS 205" - }, - { - "id": 5577, - "label": "VIS 204" - }, - { - "id": 5578, - "label": "VIS 203" - }, - { - "id": 5579, - "label": "VIS 202" - }, - { - "id": 5580, - "label": "VIS 201" - }, - { - "id": 5581, - "label": "VIS 209" - }, - { - "id": 5582, - "label": "LTFR 2A" - }, - { - "id": 5583, - "label": "LTFR 2C" - }, - { - "id": 5584, - "label": "HIEU 118" - }, - { - "id": 5585, - "label": "LTAM 120" - }, - { - "id": 5586, - "label": "HIEU 111" - }, - { - "id": 5587, - "label": "HIEU 110" - }, - { - "id": 5588, - "label": "EDS 230A-B-C" - }, - { - "id": 5589, - "label": "HIEU 115" - }, - { - "id": 5590, - "label": "HINE 103" - }, - { - "id": 5591, - "label": "HINE 102" - }, - { - "id": 5592, - "label": "HINE 101" - }, - { - "id": 5593, - "label": "HINE 100" - }, - { - "id": 5594, - "label": "HINE 104" - }, - { - "id": 5595, - "label": "LIGN 510" - }, - { - "id": 5596, - "label": "LIGN 511" - }, - { - "id": 5597, - "label": "LIGN 512" - }, - { - "id": 5598, - "label": "HINE 108" - }, - { - "id": 5599, - "label": "LIGN 514" - }, - { - "id": 5600, - "label": "LIGN 515" - }, - { - "id": 5601, - "label": "MUS 132R" - }, - { - "id": 5602, - "label": "ECE 235" - }, - { - "id": 5603, - "label": "MUS 132C" - }, - { - "id": 5604, - "label": "VIS 127GS" - }, - { - "id": 5605, - "label": "ANSC 190GS" - }, - { - "id": 5606, - "label": "ANSC 146" - }, - { - "id": 5607, - "label": "MATH 110A" - }, - { - "id": 5608, - "label": "MATH 110B" - }, - { - "id": 5609, - "label": "LTEA 198" - }, - { - "id": 5610, - "label": "LTEA 199" - }, - { - "id": 5611, - "label": "MGT 133" - }, - { - "id": 5612, - "label": "MGT 135" - }, - { - "id": 5613, - "label": "MGT 134" - }, - { - "id": 5614, - "label": "MGT 139" - }, - { - "id": 5615, - "label": "MGT 138" - }, - { - "id": 5616, - "label": "GPPS 473" - }, - { - "id": 5617, - "label": "GPPS 476" - }, - { - "id": 5618, - "label": "GPPS 479" - }, - { - "id": 5619, - "label": "GPPS 478" - }, - { - "id": 5620, - "label": "LTEN 175A" - }, - { - "id": 5621, - "label": "LTEN 175B" - }, - { - "id": 5622, - "label": "FPM 246" - }, - { - "id": 5623, - "label": "SM 208" - }, - { - "id": 5624, - "label": "FPM 247" - }, - { - "id": 5625, - "label": "FPM 244" - }, - { - "id": 5626, - "label": "MATS 261A" - }, - { - "id": 5627, - "label": "MATS 261B" - }, - { - "id": 5628, - "label": "HIUS 126" - }, - { - "id": 5629, - "label": "ETHN 196H" - }, - { - "id": 5630, - "label": "HIUS 122" - }, - { - "id": 5631, - "label": "HIUS 120" - }, - { - "id": 5632, - "label": "HIUS 128" - }, - { - "id": 5633, - "label": "CHIN 10CD" - }, - { - "id": 5634, - "label": "CHIN 10CN" - }, - { - "id": 5635, - "label": "CHIN 10CM" - }, - { - "id": 5636, - "label": "CHEM 132" - }, - { - "id": 5637, - "label": "TDGE 3" - }, - { - "id": 5638, - "label": "CHEM 135" - }, - { - "id": 5639, - "label": "CHEM 134" - }, - { - "id": 5640, - "label": "MATH 299" - }, - { - "id": 5641, - "label": "MATH 292" - }, - { - "id": 5642, - "label": "MATH 297" - }, - { - "id": 5643, - "label": "MATH 296" - }, - { - "id": 5644, - "label": "MATH 295" - }, - { - "id": 5645, - "label": "MATH 294" - }, - { - "id": 5646, - "label": "LHCO 202" - }, - { - "id": 5647, - "label": "LHCO 203" - }, - { - "id": 5648, - "label": "LHCO 204" - }, - { - "id": 5649, - "label": "LHCO 206" - }, - { - "id": 5650, - "label": "LHCO 209" - }, - { - "id": 5651, - "label": "Linguistics/American" - }, - { - "id": 5652, - "label": "MAE 299" - }, - { - "id": 5653, - "label": "MAE 298" - }, - { - "id": 5654, - "label": "MAE 295" - }, - { - "id": 5655, - "label": "MAE 296" - }, - { - "id": 5656, - "label": "MAE 291" - }, - { - "id": 5657, - "label": "MAE 293" - }, - { - "id": 5658, - "label": "MAE 292" - }, - { - "id": 5659, - "label": "HINE 110" - }, - { - "id": 5660, - "label": "BENG 119B" - }, - { - "id": 5661, - "label": "BENG 119A" - }, - { - "id": 5662, - "label": "ECE 145AL-BL-CL" - }, - { - "id": 5663, - "label": "AUD 263" - }, - { - "id": 5664, - "label": "AUD 264" - }, - { - "id": 5665, - "label": "GPPS 410" - }, - { - "id": 5666, - "label": "LATI 87" - }, - { - "id": 5667, - "label": "PHYS 500" - }, - { - "id": 5668, - "label": "JAPN 135A" - }, - { - "id": 5669, - "label": "JAPN 20C" - }, - { - "id": 5670, - "label": "JAPN 135C" - }, - { - "id": 5671, - "label": "JAPN 135B" - }, - { - "id": 5672, - "label": "CHEM 6A" - }, - { - "id": 5673, - "label": "Jewish Studies 131" - }, - { - "id": 5674, - "label": "JUDA 100A" - }, - { - "id": 5675, - "label": "Jewish Studies 130" - }, - { - "id": 5676, - "label": "BILD 51" - }, - { - "id": 5677, - "label": "COGS 122" - }, - { - "id": 5678, - "label": "TDPW 102" - }, - { - "id": 5679, - "label": "TDPW 101" - }, - { - "id": 5680, - "label": "BIEB 194" - }, - { - "id": 5681, - "label": "HITO 87" - }, - { - "id": 5682, - "label": "GPLA 401A-B-C" - }, - { - "id": 5683, - "label": "LTGM 2A" - }, - { - "id": 5684, - "label": "LTGM 1C" - }, - { - "id": 5685, - "label": "LTGM 2C" - }, - { - "id": 5686, - "label": "LTGM 2B" - }, - { - "id": 5687, - "label": "CSE 167" - }, - { - "id": 5688, - "label": "CSE 166" - }, - { - "id": 5689, - "label": "CSE 165" - }, - { - "id": 5690, - "label": "CSE 164" - }, - { - "id": 5691, - "label": "CSE 163" - }, - { - "id": 5692, - "label": "CSE 160" - }, - { - "id": 5693, - "label": "CSE 169" - }, - { - "id": 5694, - "label": "CSE 168" - }, - { - "id": 5695, - "label": "Linguistics/German (LIGM) 1B" - }, - { - "id": 5696, - "label": "LIGM 1A" - }, - { - "id": 5697, - "label": "LIGM 1AX" - }, - { - "id": 5698, - "label": "CENG 157" - }, - { - "id": 5699, - "label": "Linguistics/German (LIGM) 1A" - }, - { - "id": 5700, - "label": "Linguistics/German (LIGM) 1D" - }, - { - "id": 5701, - "label": "LIGM 1C" - }, - { - "id": 5702, - "label": "LIGM 1CX" - }, - { - "id": 5703, - "label": "ECE 252A" - }, - { - "id": 5704, - "label": "PHYS 100B" - }, - { - "id": 5705, - "label": "Linguistics/German (LIGM) 11" - }, - { - "id": 5706, - "label": "LTEU 146" - }, - { - "id": 5707, - "label": "LTEU 145" - }, - { - "id": 5708, - "label": "LTEU 140" - }, - { - "id": 5709, - "label": "PSYC 274" - }, - { - "id": 5710, - "label": "PSYC 275" - }, - { - "id": 5711, - "label": "PSYC 276" - }, - { - "id": 5712, - "label": "PSYC 271" - }, - { - "id": 5713, - "label": "PSYC 272" - }, - { - "id": 5714, - "label": "PSYC 273" - }, - { - "id": 5715, - "label": "Linguistics/Heritage Languages (LIHL) 136" - }, - { - "id": 5716, - "label": "Linguistics/Heritage Languages (LIHL) 138" - }, - { - "id": 5717, - "label": "MGT 476" - }, - { - "id": 5718, - "label": "MGT 477" - }, - { - "id": 5719, - "label": "MGT 475" - }, - { - "id": 5720, - "label": "MATH 237B" - }, - { - "id": 5721, - "label": "Math 237A" - }, - { - "id": 5722, - "label": "MGT 478" - }, - { - "id": 5723, - "label": "MGT 479" - }, - { - "id": 5724, - "label": "LTSP 135A" - }, - { - "id": 5725, - "label": "LTSP 135B" - }, - { - "id": 5726, - "label": "Linguistics/Italian" - }, - { - "id": 5727, - "label": "MATH 187A" - }, - { - "id": 5728, - "label": "MATH 187B" - }, - { - "id": 5729, - "label": "Math 187" - }, - { - "id": 5730, - "label": "Math 187A" - }, - { - "id": 5731, - "label": "PHIL 260" - }, - { - "id": 5732, - "label": "ECE 158A" - }, - { - "id": 5733, - "label": "ECE 158B" - }, - { - "id": 5734, - "label": "POLI 136A" - }, - { - "id": 5735, - "label": "AWP 2A" - }, - { - "id": 5736, - "label": "AWP 2B" - }, - { - "id": 5737, - "label": "ELWR 2A" - }, - { - "id": 5738, - "label": "HIGR 205" - }, - { - "id": 5739, - "label": "HIGR 206" - }, - { - "id": 5740, - "label": "HIGR 207" - }, - { - "id": 5741, - "label": "HIGR 200" - }, - { - "id": 5742, - "label": "COMM 111T" - }, - { - "id": 5743, - "label": "HIGR 208" - }, - { - "id": 5744, - "label": "HIGR 209" - }, - { - "id": 5745, - "label": "COMM 111F" - }, - { - "id": 5746, - "label": "COMM 111G" - }, - { - "id": 5747, - "label": "COMM 111A" - }, - { - "id": 5748, - "label": "COMM 111C" - }, - { - "id": 5749, - "label": "Linguistics/Hindi (LIHI) 1DX" - }, - { - "id": 5750, - "label": "HIAF 199" - }, - { - "id": 5751, - "label": "ECE 260C" - }, - { - "id": 5752, - "label": "ECE 260B" - }, - { - "id": 5753, - "label": "ECE 260A" - }, - { - "id": 5754, - "label": "HILA 132D" - }, - { - "id": 5755, - "label": "MATH 280A" - }, - { - "id": 5756, - "label": "MATH 280C" - }, - { - "id": 5757, - "label": "MATH 280B" - }, - { - "id": 5758, - "label": "VIS 190" - }, - { - "id": 5759, - "label": "VIS 199" - }, - { - "id": 5760, - "label": "VIS 198" - }, - { - "id": 5761, - "label": "MATS 213A" - }, - { - "id": 5762, - "label": "SIOG 260" - }, - { - "id": 5763, - "label": "FPM 259A" - }, - { - "id": 5764, - "label": "NANO 146" - }, - { - "id": 5765, - "label": "MUS 253" - }, - { - "id": 5766, - "label": "MUS 252" - }, - { - "id": 5767, - "label": "MUS 251" - }, - { - "id": 5768, - "label": "POLI 5 or 5D" - }, - { - "id": 5769, - "label": "Jewish Studies 87" - }, - { - "id": 5770, - "label": "BENG 208" - }, - { - "id": 5771, - "label": "CSE 42" - }, - { - "id": 5772, - "label": "HINE 120" - }, - { - "id": 5773, - "label": "HINE 127" - }, - { - "id": 5774, - "label": "HINE 126" - }, - { - "id": 5775, - "label": "ECE 253" - }, - { - "id": 5776, - "label": "HISC 180/280" - }, - { - "id": 5777, - "label": "MGT 119" - }, - { - "id": 5778, - "label": "HILA 144" - }, - { - "id": 5779, - "label": "Jewish Studies" - }, - { - "id": 5780, - "label": "MGT 117" - }, - { - "id": 5781, - "label": "MAE 117A" - }, - { - "id": 5782, - "label": "MGT 112" - }, - { - "id": 5783, - "label": "ESYS 199" - }, - { - "id": 5784, - "label": "GPPS 451" - }, - { - "id": 5785, - "label": "EDS 31/Chem 96" - }, - { - "id": 5786, - "label": "GPPS 455" - }, - { - "id": 5787, - "label": "GPPS 454" - }, - { - "id": 5788, - "label": "GPPS 456" - }, - { - "id": 5789, - "label": "HITO 115S" - }, - { - "id": 5790, - "label": "HIUS 142B" - }, - { - "id": 5791, - "label": "HIUS 142A" - }, - { - "id": 5792, - "label": "PHYS 4A" - }, - { - "id": 5793, - "label": "CSE 284" - }, - { - "id": 5794, - "label": "ANTH 274" - }, - { - "id": 5795, - "label": "ANGR 274" - }, - { - "id": 5796, - "label": "ETHN 214A" - }, - { - "id": 5797, - "label": "ETHN 214B" - }, - { - "id": 5798, - "label": "COMM 114M CSI: Communication and the Law (4)" - }, - { - "id": 5799, - "label": "RELI 149" - }, - { - "id": 5800, - "label": "PHYS 210B" - }, - { - "id": 5801, - "label": "HIUS 149" - }, - { - "id": 5802, - "label": "Linguistics/Arabic (LIAB) 1DX" - }, - { - "id": 5803, - "label": "PHYS 210A" - }, - { - "id": 5804, - "label": "HIUS 144" - }, - { - "id": 5805, - "label": "HIUS 145" - }, - { - "id": 5806, - "label": "HIUS 146" - }, - { - "id": 5807, - "label": "HIUS 143" - }, - { - "id": 5808, - "label": "RELI 143" - }, - { - "id": 5809, - "label": "ANSC 140" - }, - { - "id": 5810, - "label": "NEU 285" - }, - { - "id": 5811, - "label": "NEU 280" - }, - { - "id": 5812, - "label": "RELI 146" - }, - { - "id": 5813, - "label": "CHEM 111" - }, - { - "id": 5814, - "label": "CHEM 113" - }, - { - "id": 5815, - "label": "HIEA 128" - }, - { - "id": 5816, - "label": "HIEA 129" - }, - { - "id": 5817, - "label": "CHEM 116" - }, - { - "id": 5818, - "label": "LTSP 100" - }, - { - "id": 5819, - "label": "HIEA 125" - }, - { - "id": 5820, - "label": "HIEA 126" - }, - { - "id": 5821, - "label": "ANSC 145" - }, - { - "id": 5822, - "label": "HIEA 120" - }, - { - "id": 5823, - "label": "HIEA 121" - }, - { - "id": 5824, - "label": "AAS 87" - }, - { - "id": 5825, - "label": "HIEA 123" - }, - { - "id": 5826, - "label": "HIEU 106GS" - }, - { - "id": 5827, - "label": "HIEU 128" - }, - { - "id": 5828, - "label": "LHCO 220" - }, - { - "id": 5829, - "label": "LTCO 201" - }, - { - "id": 5830, - "label": "SE 87" - }, - { - "id": 5831, - "label": "LIGN 87" - }, - { - "id": 5832, - "label": "ECE 265C" - }, - { - "id": 5833, - "label": "COMPLETED_COLLEGE_WRITING" - }, - { - "id": 5834, - "label": "CENG 207" - }, - { - "id": 5835, - "label": "VIS 128A\u2013E" - }, - { - "id": 5836, - "label": "PHYS 110B" - }, - { - "id": 5837, - "label": "PHYS 110A" - }, - { - "id": 5838, - "label": "CENG 208" - }, - { - "id": 5839, - "label": "NEU 241" - }, - { - "id": 5840, - "label": "NEU 243" - }, - { - "id": 5841, - "label": "Neurosci 238" - }, - { - "id": 5842, - "label": "CSE 6GS" - }, - { - "id": 5843, - "label": "MUS 114" - }, - { - "id": 5844, - "label": "CHEM 143B" - }, - { - "id": 5845, - "label": "CHEM 143C" - }, - { - "id": 5846, - "label": "CHEM 143D" - }, - { - "id": 5847, - "label": "MATH 160B" - }, - { - "id": 5848, - "label": "Math 160A" - }, - { - "id": 5849, - "label": "ANAR 119S" - }, - { - "id": 5850, - "label": "CHIN 100BM" - }, - { - "id": 5851, - "label": "CHIN 100BN" - }, - { - "id": 5852, - "label": "HILA 168/268" - }, - { - "id": 5853, - "label": "BILD 36" - }, - { - "id": 5854, - "label": "BILD 38" - }, - { - "id": 5855, - "label": "GPLA 461A-B-C" - }, - { - "id": 5856, - "label": "HIGR 257C" - }, - { - "id": 5857, - "label": "HIGR 257B" - }, - { - "id": 5858, - "label": "TDMV 122" - }, - { - "id": 5859, - "label": "TDMV 120" - }, - { - "id": 5860, - "label": "TDMV 123" - }, - { - "id": 5861, - "label": "LTLA 104" - }, - { - "id": 5862, - "label": "ECON 220D" - }, - { - "id": 5863, - "label": "ECON 220E" - }, - { - "id": 5864, - "label": "ECON 220F" - }, - { - "id": 5865, - "label": "ECON 220A" - }, - { - "id": 5866, - "label": "ECON 220B" - }, - { - "id": 5867, - "label": "ECON 220C" - }, - { - "id": 5868, - "label": "SOCI 188K" - }, - { - "id": 5869, - "label": "SOCI 188M" - }, - { - "id": 5870, - "label": "SOCI 188O" - }, - { - "id": 5871, - "label": "POLI 204A" - }, - { - "id": 5872, - "label": "POLI 204C" - }, - { - "id": 5873, - "label": "POLI 204B" - }, - { - "id": 5874, - "label": "CSE 143" - }, - { - "id": 5875, - "label": "CSE 170A" - }, - { - "id": 5876, - "label": "ECE 81" - }, - { - "id": 5877, - "label": "CSE 145" - }, - { - "id": 5878, - "label": "CSE 148" - }, - { - "id": 5879, - "label": "PHYS 122" - }, - { - "id": 5880, - "label": "Physics 120" - }, - { - "id": 5881, - "label": "PHYS 120" - }, - { - "id": 5882, - "label": "PHYS 124" - }, - { - "id": 5883, - "label": "EDS 267" - }, - { - "id": 5884, - "label": "COGS 102C" - }, - { - "id": 5885, - "label": "Cognitive Science 102B" - }, - { - "id": 5886, - "label": "ETHN 129" - }, - { - "id": 5887, - "label": "BILD 7" - }, - { - "id": 5888, - "label": "Linguistics/Heritage Languages (LIHL) 118" - }, - { - "id": 5889, - "label": "PSYC 251" - }, - { - "id": 5890, - "label": "PSYC 257" - }, - { - "id": 5891, - "label": "PSYC 258" - }, - { - "id": 5892, - "label": "Linguistics/Heritage Languages (LIHL) 113" - }, - { - "id": 5893, - "label": "ANTH 102" - }, - { - "id": 5894, - "label": "GPEC 286" - }, - { - "id": 5895, - "label": "MGT 499" - }, - { - "id": 5896, - "label": "MGT 495" - }, - { - "id": 5897, - "label": "MGT 497" - }, - { - "id": 5898, - "label": "MGT 491" - }, - { - "id": 5899, - "label": "MGT 492" - }, - { - "id": 5900, - "label": "SOCI 118" - }, - { - "id": 5901, - "label": "SOCI 110" - }, - { - "id": 5902, - "label": "SOCI 112" - }, - { - "id": 5903, - "label": "SOCB 112" - }, - { - "id": 5904, - "label": "SOCI 113" - }, - { - "id": 5905, - "label": "SOCB 113" - }, - { - "id": 5906, - "label": "SOCI 115" - }, - { - "id": 5907, - "label": "SOCB 115" - }, - { - "id": 5908, - "label": "SOCI 116" - }, - { - "id": 5909, - "label": "SOCB 118A" - }, - { - "id": 5910, - "label": "SOCB 117" - }, - { - "id": 5911, - "label": "HIGR 228" - }, - { - "id": 5912, - "label": "HIGR 229" - }, - { - "id": 5913, - "label": "POLI 134I" - }, - { - "id": 5914, - "label": "HIGR 222" - }, - { - "id": 5915, - "label": "HIGR 220" - }, - { - "id": 5916, - "label": "POLI 134D" - }, - { - "id": 5917, - "label": "HIGR 226" - }, - { - "id": 5918, - "label": "POLI 134B" - }, - { - "id": 5919, - "label": "HIGR 224" - }, - { - "id": 5920, - "label": "HIGR 225" - }, - { - "id": 5921, - "label": "EDS 355A" - }, - { - "id": 5922, - "label": "EDS 355C" - }, - { - "id": 5923, - "label": "EDS 355B" - }, - { - "id": 5924, - "label": "Linguistics/Hindi (LIHI) 1BX" - }, - { - "id": 5925, - "label": "MGTF 432" - }, - { - "id": 5926, - "label": "MGT 281" - }, - { - "id": 5927, - "label": "MGTF 430" - }, - { - "id": 5928, - "label": "Linguistics/Heritage Languages (LIHL) 115W" - }, - { - "id": 5929, - "label": "MAE 281B" - }, - { - "id": 5930, - "label": "PHIL 245" - }, - { - "id": 5931, - "label": "BENG 198" - }, - { - "id": 5932, - "label": "BENG 199" - }, - { - "id": 5933, - "label": "BENG 99H" - }, - { - "id": 5934, - "label": "HISC 276" - }, - { - "id": 5935, - "label": "HISC 277" - }, - { - "id": 5936, - "label": "BENG 195" - }, - { - "id": 5937, - "label": "BENG 196" - }, - { - "id": 5938, - "label": "BENG 197" - }, - { - "id": 5939, - "label": "NANO 164" - }, - { - "id": 5940, - "label": "NANO 161" - }, - { - "id": 5941, - "label": "MUS 272" - }, - { - "id": 5942, - "label": "EDS 260B" - }, - { - "id": 5943, - "label": "EDS 260C" - }, - { - "id": 5944, - "label": "EDS 260A" - }, - { - "id": 5945, - "label": "VIS 243" - }, - { - "id": 5946, - "label": "VIS 242" - }, - { - "id": 5947, - "label": "VIS 244" - }, - { - "id": 5948, - "label": "TDDR 190" - }, - { - "id": 5949, - "label": "TDDR 191" - }, - { - "id": 5950, - "label": "TDPR 4" - }, - { - "id": 5951, - "label": "HIEU 154" - }, - { - "id": 5952, - "label": "HIEU 157" - }, - { - "id": 5953, - "label": "HIEU 156" - }, - { - "id": 5954, - "label": "HIEU 151" - }, - { - "id": 5955, - "label": "HIEU 150" - }, - { - "id": 5956, - "label": "HIEU 153" - }, - { - "id": 5957, - "label": "HIEU 152" - }, - { - "id": 5958, - "label": "BENG 226" - }, - { - "id": 5959, - "label": "BENG 227" - }, - { - "id": 5960, - "label": "BENG 221" - }, - { - "id": 5961, - "label": "HINE 145" - }, - { - "id": 5962, - "label": "BENG 225" - }, - { - "id": 5963, - "label": "HIEU 159" - }, - { - "id": 5964, - "label": "HIEU 158" - }, - { - "id": 5965, - "label": "BIMM 194" - }, - { - "id": 5966, - "label": "CHIN 20CN" - }, - { - "id": 5967, - "label": "ECE 273" - }, - { - "id": 5968, - "label": "CHIN 20CM" - }, - { - "id": 5969, - "label": "ECE 279" - }, - { - "id": 5970, - "label": "ECE 278" - }, - { - "id": 5971, - "label": "CHIN 20CD" - }, - { - "id": 5972, - "label": "EDS 124A" - }, - { - "id": 5973, - "label": "HDP 99" - }, - { - "id": 5974, - "label": "HDP 98" - }, - { - "id": 5975, - "label": "Special Studies Courses 99" - }, - { - "id": 5976, - "label": "Special Studies Courses 98" - }, - { - "id": 5977, - "label": "Special Studies Courses 97" - }, - { - "id": 5978, - "label": "LTEA 151" - }, - { - "id": 5979, - "label": "VIS 150A" - }, - { - "id": 5980, - "label": "HILA 126" - }, - { - "id": 5981, - "label": "CHEM 219B" - }, - { - "id": 5982, - "label": "HILA 124" - }, - { - "id": 5983, - "label": "HILA 123" - }, - { - "id": 5984, - "label": "HILA 122" - }, - { - "id": 5985, - "label": "HILA 120" - }, - { - "id": 5986, - "label": "HILA 167/267" - }, - { - "id": 5987, - "label": "GPPS 434" - }, - { - "id": 5988, - "label": "GPPS 433" - }, - { - "id": 5989, - "label": "GPPS 430" - }, - { - "id": 5990, - "label": "CHIN 185A-B-C" - }, - { - "id": 5991, - "label": "SOCG 270" - }, - { - "id": 5992, - "label": "PSYC 87" - }, - { - "id": 5993, - "label": "COGS 20" - }, - { - "id": 5994, - "label": "PSYC 81" - }, - { - "id": 5995, - "label": "MAE 209BENG" - }, - { - "id": 5996, - "label": "RELI 145" - }, - { - "id": 5997, - "label": "HIEU 105S" - }, - { - "id": 5998, - "label": "HIEA 163/263" - }, - { - "id": 5999, - "label": "LTEA 152B" - }, - { - "id": 6000, - "label": "LTEA 152A" - }, - { - "id": 6001, - "label": "RELI 87" - }, - { - "id": 6002, - "label": "LTSP 298" - }, - { - "id": 6003, - "label": "LTSP 299" - }, - { - "id": 6004, - "label": "Revelle 20" - }, - { - "id": 6005, - "label": "LTSP 297" - }, - { - "id": 6006, - "label": "PSYC 201A" - }, - { - "id": 6007, - "label": "PSYC 201C" - }, - { - "id": 6008, - "label": "PSYC 201B" - }, - { - "id": 6009, - "label": "PHYS 212A" - }, - { - "id": 6010, - "label": "PHYS 212B" - }, - { - "id": 6011, - "label": "Physics 212A" - }, - { - "id": 6012, - "label": "PHYS 212C" - }, - { - "id": 6013, - "label": "NANO 210" - }, - { - "id": 6014, - "label": "NEU 268" - }, - { - "id": 6015, - "label": "NEU 266" - }, - { - "id": 6016, - "label": "NEU 265" - }, - { - "id": 6017, - "label": "NEU 260" - }, - { - "id": 6018, - "label": "CHEM 174" - }, - { - "id": 6019, - "label": "CHEM 173" - }, - { - "id": 6020, - "label": "CHEM 172" - }, - { - "id": 6021, - "label": "CHEM 171" - }, - { - "id": 6022, - "label": "LTSP 129" - }, - { - "id": 6023, - "label": "LTSP 122" - }, - { - "id": 6024, - "label": "LTSP 123" - }, - { - "id": 6025, - "label": "FPM 286" - }, - { - "id": 6026, - "label": "POLI 123" - }, - { - "id": 6027, - "label": "POLI 122" - }, - { - "id": 6028, - "label": "POLI 125" - }, - { - "id": 6029, - "label": "POLI 124" - }, - { - "id": 6030, - "label": "POLI 127" - }, - { - "id": 6031, - "label": "POLI 126" - }, - { - "id": 6032, - "label": "POLI 129" - }, - { - "id": 6033, - "label": "POLI 128" - }, - { - "id": 6034, - "label": "Linguistics/Italian (LIIT) 5DS" - }, - { - "id": 6035, - "label": "FPM 288" - }, - { - "id": 6036, - "label": "NEU 401" - }, - { - "id": 6037, - "label": "BENG 501" - }, - { - "id": 6038, - "label": "BENG 500" - }, - { - "id": 6039, - "label": "COMM 109N" - }, - { - "id": 6040, - "label": "HMNR 100/HITO 119" - }, - { - "id": 6041, - "label": "COMM 109E" - }, - { - "id": 6042, - "label": "COMM 109D" - }, - { - "id": 6043, - "label": "COMM 109P" - }, - { - "id": 6044, - "label": "POLI 126AB" - }, - { - "id": 6045, - "label": "POLI 126AA" - }, - { - "id": 6046, - "label": "Linguistics/German (LIGM) 1DX" - }, - { - "id": 6047, - "label": "HIGR 257A" - }, - { - "id": 6048, - "label": "TDGE 10" - }, - { - "id": 6049, - "label": "TDGE 11" - }, - { - "id": 6050, - "label": "TDGE 12" - }, - { - "id": 6051, - "label": "BENG 179A" - }, - { - "id": 6052, - "label": "BENG 179B" - }, - { - "id": 6053, - "label": "BILD 18" - }, - { - "id": 6054, - "label": "LTCS 87" - }, - { - "id": 6055, - "label": "POLI 100DA" - }, - { - "id": 6056, - "label": "BILD 10" - }, - { - "id": 6057, - "label": "HISC 167/267" - }, - { - "id": 6058, - "label": "TDMV 144" - }, - { - "id": 6059, - "label": "TDMV 146" - }, - { - "id": 6060, - "label": "TDMV 142" - }, - { - "id": 6061, - "label": "TDMV 140" - }, - { - "id": 6062, - "label": "TDMV 141" - }, - { - "id": 6063, - "label": "THDA 132" - }, - { - "id": 6064, - "label": "TDMV 136" - }, - { - "id": 6065, - "label": "TDMV 143" - }, - { - "id": 6066, - "label": "MGTA 454B" - }, - { - "id": 6067, - "label": "MGTA 454A" - }, - { - "id": 6068, - "label": "TDMV 148" - }, - { - "id": 6069, - "label": "TDMV 149" - }, - { - "id": 6070, - "label": "LTEA 120B" - }, - { - "id": 6071, - "label": "LTEA 120C" - }, - { - "id": 6072, - "label": "LTEA 120A" - }, - { - "id": 6073, - "label": "HIEU 121GS" - }, - { - "id": 6074, - "label": "POLI 30 or 30D" - }, - { - "id": 6075, - "label": "CSE 123" - }, - { - "id": 6076, - "label": "CSE 127" - }, - { - "id": 6077, - "label": "CSE 124" - }, - { - "id": 6078, - "label": "CSE 125" - }, - { - "id": 6079, - "label": "PHIL 50" - }, - { - "id": 6080, - "label": "PHYS 222A" - }, - { - "id": 6081, - "label": "GPGN 497" - }, - { - "id": 6082, - "label": "GPGN 496" - }, - { - "id": 6083, - "label": "GPGN 491" - }, - { - "id": 6084, - "label": "GPGN 490" - }, - { - "id": 6085, - "label": "GPGN 493" - }, - { - "id": 6086, - "label": "GPGN 499" - }, - { - "id": 6087, - "label": "GPGN 498" - }, - { - "id": 6088, - "label": "PSYC 500" - }, - { - "id": 6089, - "label": "LTCS 299" - }, - { - "id": 6090, - "label": "LTCS 298" - }, - { - "id": 6091, - "label": "LTCS 297" - }, - { - "id": 6092, - "label": "SOCI 138" - }, - { - "id": 6093, - "label": "SOCC 138" - }, - { - "id": 6094, - "label": "SOCC 139" - }, - { - "id": 6095, - "label": "SOCI 137" - }, - { - "id": 6096, - "label": "SOCI 134" - }, - { - "id": 6097, - "label": "SOCC 134A" - }, - { - "id": 6098, - "label": "SOCI 135" - }, - { - "id": 6099, - "label": "SOCC 135" - }, - { - "id": 6100, - "label": "SOCI 132" - }, - { - "id": 6101, - "label": "SOCC 132" - }, - { - "id": 6102, - "label": "SOCI 133" - }, - { - "id": 6103, - "label": "SOCI 130" - }, - { - "id": 6104, - "label": "SOCI 131" - }, - { - "id": 6105, - "label": "SOCB 131" - }, - { - "id": 6106, - "label": "PHYS 227" - }, - { - "id": 6107, - "label": "COGR 298" - }, - { - "id": 6108, - "label": "COGR 299" - }, - { - "id": 6109, - "label": "COGR 294" - }, - { - "id": 6110, - "label": "COGR 296" - }, - { - "id": 6111, - "label": "MATH 262A" - }, - { - "id": 6112, - "label": "MATH 262B" - }, - { - "id": 6113, - "label": "Math 262A" - }, - { - "id": 6114, - "label": "MGTF 418" - }, - { - "id": 6115, - "label": "MGTF 411" - }, - { - "id": 6116, - "label": "MGTF 410" - }, - { - "id": 6117, - "label": "MGTF 413" - }, - { - "id": 6118, - "label": "MGTF 412" - }, - { - "id": 6119, - "label": "MGTF 415" - }, - { - "id": 6120, - "label": "MGTF 414" - }, - { - "id": 6121, - "label": "MGTF 417" - }, - { - "id": 6122, - "label": "MGTF 416" - }, - { - "id": 6123, - "label": "ECON 120CH" - }, - { - "id": 6124, - "label": "MAE 133" - }, - { - "id": 6125, - "label": "LTWR 215" - }, - { - "id": 6126, - "label": "CLRE 231" - }, - { - "id": 6127, - "label": "MUS 212" - }, - { - "id": 6128, - "label": "MUS 211" - }, - { - "id": 6129, - "label": "CLRE 232" - }, - { - "id": 6130, - "label": "CLRE 235" - }, - { - "id": 6131, - "label": "CLRE 234" - }, - { - "id": 6132, - "label": "CLRE 237" - }, - { - "id": 6133, - "label": "MUS 214" - }, - { - "id": 6134, - "label": "CLRE 238" - }, - { - "id": 6135, - "label": "LTAM 101" - }, - { - "id": 6136, - "label": "Linguistics/Heritage Languages (LIHL) 112F" - }, - { - "id": 6137, - "label": "POLI 87" - }, - { - "id": 6138, - "label": "BENG 187D" - }, - { - "id": 6139, - "label": "Linguistics/Heritage Languages (LIHL) 112P" - }, - { - "id": 6140, - "label": "BENG 187A" - }, - { - "id": 6141, - "label": "BENG 149B" - }, - { - "id": 6142, - "label": "HITO 167/267" - }, - { - "id": 6143, - "label": "CSE 87" - }, - { - "id": 6144, - "label": "CSE 86" - }, - { - "id": 6145, - "label": "CSE 80" - }, - { - "id": 6146, - "label": "VIS 152D" - }, - { - "id": 6147, - "label": "CHIN 20AD" - }, - { - "id": 6148, - "label": "ECE 299" - }, - { - "id": 6149, - "label": "ECE 298" - }, - { - "id": 6150, - "label": "ECE 297" - }, - { - "id": 6151, - "label": "ECE 296" - }, - { - "id": 6152, - "label": "ECE 295" - }, - { - "id": 6153, - "label": "ECE 294" - }, - { - "id": 6154, - "label": "ECE 293" - }, - { - "id": 6155, - "label": "CHIN 20AM" - }, - { - "id": 6156, - "label": "CHIN 20AN" - }, - { - "id": 6157, - "label": "ECE 290" - }, - { - "id": 6158, - "label": "BENG 149A" - }, - { - "id": 6159, - "label": "LTLA 199" - }, - { - "id": 6160, - "label": "LTLA 198" - }, - { - "id": 6161, - "label": "LTCS 108" - }, - { - "id": 6162, - "label": "LTCS 102" - }, - { - "id": 6163, - "label": "LTCS 100" - }, - { - "id": 6164, - "label": "CSE 201A" - }, - { - "id": 6165, - "label": "LIGN 513" - }, - { - "id": 6166, - "label": "MATH 231A-B-C" - }, - { - "id": 6167, - "label": "Math 240A" - }, - { - "id": 6168, - "label": "Math 240B" - }, - { - "id": 6169, - "label": "Math 210A" - }, - { - "id": 6170, - "label": "Math 210B" - }, - { - "id": 6171, - "label": "GPPS 417" - }, - { - "id": 6172, - "label": "GPPS 416" - }, - { - "id": 6173, - "label": "POLI 142P" - }, - { - "id": 6174, - "label": "VIS 183A" - }, - { - "id": 6175, - "label": "VIS 183B" - }, - { - "id": 6176, - "label": "POLI 142Q" - }, - { - "id": 6177, - "label": "MBC 258" - }, - { - "id": 6178, - "label": "MAE 233A" - }, - { - "id": 6179, - "label": "MAE 233B" - }, - { - "id": 6180, - "label": "POLI 142J" - }, - { - "id": 6181, - "label": "MAE 220B" - }, - { - "id": 6182, - "label": "HINE 144" - }, - { - "id": 6183, - "label": "HILA 106" - }, - { - "id": 6184, - "label": "HILA 100" - }, - { - "id": 6185, - "label": "HILA 103" - }, - { - "id": 6186, - "label": "HILA 102" - }, - { - "id": 6187, - "label": "MGT 245" - }, - { - "id": 6188, - "label": "HIUS 158/ETHN" - }, - { - "id": 6189, - "label": "SE 299" - }, - { - "id": 6190, - "label": "SE 298" - }, - { - "id": 6191, - "label": "SE 296" - }, - { - "id": 6192, - "label": "SE 290" - }, - { - "id": 6193, - "label": "MGT 246" - }, - { - "id": 6194, - "label": "LTKO 1B" - }, - { - "id": 6195, - "label": "LTKO 1A" - }, - { - "id": 6196, - "label": "CENG 15: Engineering Computation Using Matlab (4)" - }, - { - "id": 6197, - "label": "POLI 131" - }, - { - "id": 6198, - "label": "ECON 285" - }, - { - "id": 6199, - "label": "ECON 286" - }, - { - "id": 6200, - "label": "ECON 281" - }, - { - "id": 6201, - "label": "ECON 280" - }, - { - "id": 6202, - "label": "MUS 201A-B-C-D-E-F" - }, - { - "id": 6203, - "label": "CHEM 158" - }, - { - "id": 6204, - "label": "CHEM 155" - }, - { - "id": 6205, - "label": "CHEM 154" - }, - { - "id": 6206, - "label": "CHEM 157" - }, - { - "id": 6207, - "label": "CHEM 156" - }, - { - "id": 6208, - "label": "CHEM 151" - }, - { - "id": 6209, - "label": "LTSP 140" - }, - { - "id": 6210, - "label": "LTSP 141" - }, - { - "id": 6211, - "label": "LTSP 142" - }, - { - "id": 6212, - "label": "CONT 1" - }, - { - "id": 6213, - "label": "BENG/BIMM/CSE/Chem 184" - }, - { - "id": 6214, - "label": "Chem 182" - }, - { - "id": 6215, - "label": "BENG/BIMM/CSE/Chem 182" - }, - { - "id": 6216, - "label": "Classics 205" - }, - { - "id": 6217, - "label": "POLI 144" - }, - { - "id": 6218, - "label": "PSYC 198" - }, - { - "id": 6219, - "label": "COMM 110P" - }, - { - "id": 6220, - "label": "PSYC 195" - }, - { - "id": 6221, - "label": "PSYC 191" - }, - { - "id": 6222, - "label": "PSYC 190" - }, - { - "id": 6223, - "label": "PSYC 193" - }, - { - "id": 6224, - "label": "PSYC 192" - }, - { - "id": 6225, - "label": "MATH 245B" - }, - { - "id": 6226, - "label": "MATH 245C" - }, - { - "id": 6227, - "label": "MATH 245A" - }, - { - "id": 6228, - "label": "MATH 142B" - }, - { - "id": 6229, - "label": "MATH 142A" - }, - { - "id": 6230, - "label": "COGS 185" - }, - { - "id": 6231, - "label": "Cognitive Science 118B" - }, - { - "id": 6232, - "label": "Cognitive Science 118A" - }, - { - "id": 6233, - "label": "COGS 184" - }, - { - "id": 6234, - "label": "Cognitive Science 107C" - }, - { - "id": 6235, - "label": "COGS 181" - }, - { - "id": 6236, - "label": "COGS 180" - }, - { - "id": 6237, - "label": "COGS 189" - }, - { - "id": 6238, - "label": "COGS 188" - }, - { - "id": 6239, - "label": "ERC 192A" - }, - { - "id": 6240, - "label": "ERC 192B" - }, - { - "id": 6241, - "label": "NEU 427" - }, - { - "id": 6242, - "label": "Neurosciences 401" - }, - { - "id": 6243, - "label": "NEU 426" - }, - { - "id": 6244, - "label": "Neurology 401" - }, - { - "id": 6245, - "label": "PHIL 26" - }, - { - "id": 6246, - "label": "SE 251B" - }, - { - "id": 6247, - "label": "SE 251A" - }, - { - "id": 6248, - "label": "Jewish Studies 198" - }, - { - "id": 6249, - "label": "TWS 21-22-23-24-25-26" - }, - { - "id": 6250, - "label": "Linguistics/German (LIGM) 1BX" - }, - { - "id": 6251, - "label": "HILD 2A-B-C" - }, - { - "id": 6252, - "label": "TDGR 500" - }, - { - "id": 6253, - "label": "LTIT 199" - }, - { - "id": 6254, - "label": "LTIT 198" - }, - { - "id": 6255, - "label": "LTIT 192" - }, - { - "id": 6256, - "label": "LTIT 196" - }, - { - "id": 6257, - "label": "TDHT 120" - }, - { - "id": 6258, - "label": "MATH 99R" - } -] +{"edges":[{"from":1,"to":0},{"from":2,"to":0},{"from":3,"to":0},{"from":4,"to":0},{"from":5,"to":0},{"from":6,"to":0},{"from":7,"to":0},{"from":8,"to":0},{"from":9,"to":0},{"from":0,"to":10},{"from":11,"to":10},{"from":12,"to":10},{"from":13,"to":10},{"from":14,"to":10},{"from":15,"to":10},{"from":2,"to":10},{"from":16,"to":11},{"from":17,"to":11},{"from":29,"to":28},{"from":30,"to":28},{"from":31,"to":28},{"from":32,"to":28},{"from":33,"to":28},{"from":34,"to":28},{"from":35,"to":28},{"from":36,"to":28},{"from":37,"to":28},{"from":38,"to":28},{"from":39,"to":28},{"from":40,"to":28},{"from":41,"to":28},{"from":29,"to":32},{"from":30,"to":32},{"from":31,"to":32},{"from":33,"to":32},{"from":36,"to":32},{"from":37,"to":32},{"from":38,"to":32},{"from":40,"to":32},{"from":41,"to":32},{"from":29,"to":34},{"from":30,"to":34},{"from":31,"to":34},{"from":33,"to":34},{"from":36,"to":34},{"from":37,"to":34},{"from":38,"to":34},{"from":40,"to":34},{"from":41,"to":34},{"from":29,"to":35},{"from":30,"to":35},{"from":31,"to":35},{"from":33,"to":35},{"from":36,"to":35},{"from":37,"to":35},{"from":38,"to":35},{"from":40,"to":35},{"from":41,"to":35},{"from":44,"to":43},{"from":45,"to":43},{"from":45,"to":44},{"from":52,"to":51},{"from":53,"to":51},{"from":54,"to":51},{"from":52,"to":55},{"from":53,"to":55},{"from":54,"to":55},{"from":52,"to":57},{"from":53,"to":57},{"from":54,"to":57},{"from":66,"to":65},{"from":65,"to":67},{"from":68,"to":67},{"from":73,"to":72},{"from":79,"to":78},{"from":82,"to":81},{"from":83,"to":81},{"from":84,"to":81},{"from":82,"to":86},{"from":83,"to":86},{"from":84,"to":86},{"from":82,"to":90},{"from":83,"to":90},{"from":84,"to":90},{"from":91,"to":91},{"from":92,"to":91},{"from":93,"to":93},{"from":94,"to":93},{"from":95,"to":95},{"from":96,"to":95},{"from":97,"to":97},{"from":98,"to":97},{"from":100,"to":99},{"from":99,"to":99},{"from":103,"to":102},{"from":102,"to":102},{"from":106,"to":105},{"from":107,"to":105},{"from":109,"to":108},{"from":111,"to":111},{"from":112,"to":111},{"from":124,"to":123},{"from":130,"to":129},{"from":131,"to":129},{"from":132,"to":129},{"from":137,"to":136},{"from":134,"to":136},{"from":138,"to":136},{"from":139,"to":136},{"from":140,"to":136},{"from":141,"to":136},{"from":145,"to":144},{"from":146,"to":144},{"from":148,"to":147},{"from":149,"to":147},{"from":82,"to":153},{"from":83,"to":153},{"from":84,"to":153},{"from":157,"to":156},{"from":158,"to":156},{"from":160,"to":159},{"from":161,"to":159},{"from":162,"to":159},{"from":163,"to":159},{"from":164,"to":159},{"from":85,"to":159},{"from":87,"to":159},{"from":165,"to":159},{"from":168,"to":167},{"from":169,"to":167},{"from":173,"to":172},{"from":174,"to":172},{"from":176,"to":175},{"from":175,"to":177},{"from":176,"to":177},{"from":134,"to":178},{"from":138,"to":178},{"from":139,"to":178},{"from":179,"to":178},{"from":140,"to":178},{"from":141,"to":178},{"from":178,"to":181},{"from":185,"to":184},{"from":187,"to":186},{"from":190,"to":189},{"from":198,"to":197},{"from":199,"to":197},{"from":200,"to":199},{"from":207,"to":206},{"from":205,"to":207},{"from":213,"to":212},{"from":214,"to":212},{"from":135,"to":212},{"from":33,"to":212},{"from":215,"to":212},{"from":217,"to":216},{"from":217,"to":218},{"from":219,"to":213},{"from":134,"to":213},{"from":220,"to":213},{"from":221,"to":213},{"from":31,"to":213},{"from":126,"to":213},{"from":230,"to":229},{"from":258,"to":257},{"from":66,"to":259},{"from":259,"to":260},{"from":68,"to":260},{"from":262,"to":261},{"from":263,"to":261},{"from":264,"to":261},{"from":265,"to":261},{"from":266,"to":261},{"from":267,"to":261},{"from":75,"to":261},{"from":76,"to":261},{"from":268,"to":261},{"from":269,"to":261},{"from":270,"to":261},{"from":271,"to":261},{"from":53,"to":261},{"from":54,"to":261},{"from":262,"to":272},{"from":263,"to":272},{"from":264,"to":272},{"from":265,"to":272},{"from":266,"to":272},{"from":267,"to":272},{"from":75,"to":272},{"from":76,"to":272},{"from":268,"to":272},{"from":269,"to":272},{"from":270,"to":272},{"from":271,"to":272},{"from":53,"to":272},{"from":54,"to":272},{"from":262,"to":273},{"from":263,"to":273},{"from":264,"to":273},{"from":265,"to":273},{"from":266,"to":273},{"from":267,"to":273},{"from":75,"to":273},{"from":76,"to":273},{"from":268,"to":273},{"from":269,"to":273},{"from":270,"to":273},{"from":271,"to":273},{"from":53,"to":273},{"from":54,"to":273},{"from":286,"to":285},{"from":287,"to":285},{"from":289,"to":288},{"from":291,"to":290},{"from":140,"to":290},{"from":292,"to":290},{"from":141,"to":290},{"from":294,"to":293},{"from":295,"to":293},{"from":135,"to":293},{"from":296,"to":293},{"from":262,"to":287},{"from":263,"to":287},{"from":299,"to":287},{"from":300,"to":287},{"from":75,"to":287},{"from":76,"to":287},{"from":268,"to":287},{"from":269,"to":287},{"from":53,"to":287},{"from":54,"to":287},{"from":302,"to":301},{"from":129,"to":301},{"from":130,"to":301},{"from":303,"to":301},{"from":304,"to":301},{"from":309,"to":308},{"from":310,"to":308},{"from":312,"to":311},{"from":313,"to":311},{"from":318,"to":317},{"from":319,"to":317},{"from":320,"to":317},{"from":318,"to":321},{"from":319,"to":321},{"from":320,"to":321},{"from":319,"to":322},{"from":323,"to":322},{"from":323,"to":324},{"from":318,"to":327},{"from":319,"to":327},{"from":320,"to":327},{"from":330,"to":329},{"from":336,"to":335},{"from":337,"to":335},{"from":82,"to":341},{"from":83,"to":341},{"from":84,"to":341},{"from":82,"to":342},{"from":83,"to":342},{"from":84,"to":342},{"from":82,"to":343},{"from":83,"to":343},{"from":84,"to":343},{"from":351,"to":350},{"from":350,"to":350},{"from":353,"to":352},{"from":352,"to":352},{"from":354,"to":354},{"from":355,"to":354},{"from":358,"to":357},{"from":357,"to":357},{"from":360,"to":359},{"from":359,"to":359},{"from":368,"to":367},{"from":369,"to":367},{"from":370,"to":367},{"from":379,"to":378},{"from":377,"to":380},{"from":382,"to":381},{"from":7,"to":384},{"from":385,"to":384},{"from":384,"to":386},{"from":386,"to":387},{"from":393,"to":392},{"from":394,"to":392},{"from":395,"to":392},{"from":392,"to":396},{"from":399,"to":398},{"from":410,"to":409},{"from":411,"to":409},{"from":412,"to":409},{"from":411,"to":415},{"from":190,"to":427},{"from":190,"to":428},{"from":189,"to":432},{"from":190,"to":432},{"from":441,"to":440},{"from":442,"to":440},{"from":443,"to":440},{"from":444,"to":440},{"from":445,"to":440},{"from":446,"to":440},{"from":447,"to":440},{"from":448,"to":440},{"from":440,"to":449},{"from":451,"to":450},{"from":452,"to":451},{"from":410,"to":457},{"from":458,"to":457},{"from":472,"to":471},{"from":471,"to":471},{"from":477,"to":476},{"from":482,"to":481},{"from":489,"to":488},{"from":490,"to":488},{"from":23,"to":488},{"from":24,"to":488},{"from":491,"to":488},{"from":492,"to":488},{"from":302,"to":504},{"from":505,"to":504},{"from":302,"to":509},{"from":505,"to":509},{"from":302,"to":510},{"from":505,"to":510},{"from":302,"to":511},{"from":505,"to":511},{"from":157,"to":512},{"from":169,"to":512},{"from":513,"to":512},{"from":82,"to":520},{"from":83,"to":520},{"from":84,"to":520},{"from":523,"to":522},{"from":524,"to":522},{"from":525,"to":522},{"from":537,"to":536},{"from":538,"to":536},{"from":539,"to":536},{"from":540,"to":536},{"from":542,"to":541},{"from":543,"to":541},{"from":302,"to":544},{"from":547,"to":546},{"from":543,"to":546},{"from":134,"to":548},{"from":138,"to":548},{"from":549,"to":548},{"from":550,"to":548},{"from":551,"to":548},{"from":552,"to":548},{"from":302,"to":548},{"from":505,"to":548},{"from":543,"to":548},{"from":547,"to":548},{"from":547,"to":551},{"from":543,"to":551},{"from":547,"to":553},{"from":543,"to":553},{"from":269,"to":554},{"from":268,"to":554},{"from":537,"to":555},{"from":538,"to":555},{"from":539,"to":555},{"from":540,"to":555},{"from":561,"to":560},{"from":562,"to":560},{"from":563,"to":560},{"from":564,"to":560},{"from":565,"to":560},{"from":566,"to":560},{"from":567,"to":560},{"from":568,"to":560},{"from":571,"to":570},{"from":68,"to":570},{"from":66,"to":571},{"from":444,"to":581},{"from":137,"to":581},{"from":134,"to":581},{"from":447,"to":581},{"from":16,"to":582},{"from":17,"to":582},{"from":82,"to":583},{"from":83,"to":583},{"from":84,"to":583},{"from":82,"to":584},{"from":83,"to":584},{"from":84,"to":584},{"from":82,"to":585},{"from":83,"to":585},{"from":84,"to":585},{"from":82,"to":586},{"from":83,"to":586},{"from":84,"to":586},{"from":82,"to":587},{"from":83,"to":587},{"from":84,"to":587},{"from":82,"to":588},{"from":83,"to":588},{"from":84,"to":588},{"from":591,"to":591},{"from":592,"to":591},{"from":593,"to":593},{"from":594,"to":593},{"from":597,"to":596},{"from":598,"to":597},{"from":599,"to":599},{"from":600,"to":599},{"from":603,"to":602},{"from":602,"to":602},{"from":605,"to":604},{"from":604,"to":604},{"from":607,"to":606},{"from":606,"to":606},{"from":625,"to":624},{"from":629,"to":628},{"from":630,"to":628},{"from":631,"to":628},{"from":261,"to":640},{"from":272,"to":640},{"from":273,"to":640},{"from":272,"to":641},{"from":261,"to":644},{"from":272,"to":644},{"from":273,"to":644},{"from":272,"to":645},{"from":640,"to":646},{"from":647,"to":646},{"from":648,"to":646},{"from":653,"to":652},{"from":654,"to":652},{"from":135,"to":652},{"from":665,"to":664},{"from":8,"to":679},{"from":6,"to":679},{"from":384,"to":679},{"from":681,"to":680},{"from":686,"to":685},{"from":185,"to":690},{"from":187,"to":690},{"from":705,"to":704},{"from":705,"to":708},{"from":705,"to":709},{"from":7,"to":8},{"from":385,"to":8},{"from":730,"to":729},{"from":731,"to":729},{"from":732,"to":729},{"from":729,"to":733},{"from":8,"to":734},{"from":6,"to":734},{"from":742,"to":741},{"from":747,"to":746},{"from":179,"to":748},{"from":752,"to":751},{"from":754,"to":753},{"from":753,"to":755},{"from":761,"to":760},{"from":762,"to":760},{"from":763,"to":760},{"from":764,"to":760},{"from":765,"to":760},{"from":752,"to":773},{"from":752,"to":775},{"from":782,"to":781},{"from":168,"to":784},{"from":169,"to":784},{"from":537,"to":794},{"from":538,"to":794},{"from":539,"to":794},{"from":540,"to":794},{"from":537,"to":795},{"from":538,"to":795},{"from":539,"to":795},{"from":540,"to":795},{"from":797,"to":796},{"from":7,"to":796},{"from":3,"to":796},{"from":385,"to":796},{"from":798,"to":796},{"from":542,"to":799},{"from":800,"to":799},{"from":550,"to":801},{"from":542,"to":801},{"from":543,"to":801},{"from":138,"to":801},{"from":134,"to":801},{"from":797,"to":803},{"from":537,"to":804},{"from":538,"to":804},{"from":539,"to":804},{"from":540,"to":804},{"from":537,"to":805},{"from":538,"to":805},{"from":539,"to":805},{"from":540,"to":805},{"from":537,"to":806},{"from":538,"to":806},{"from":539,"to":806},{"from":540,"to":806},{"from":542,"to":807},{"from":800,"to":807},{"from":809,"to":809},{"from":810,"to":809},{"from":82,"to":812},{"from":83,"to":812},{"from":84,"to":812},{"from":810,"to":813},{"from":129,"to":814},{"from":130,"to":814},{"from":816,"to":815},{"from":817,"to":815},{"from":818,"to":816},{"from":817,"to":816},{"from":817,"to":818},{"from":446,"to":821},{"from":831,"to":830},{"from":844,"to":844},{"from":845,"to":844},{"from":847,"to":846},{"from":846,"to":846},{"from":848,"to":848},{"from":849,"to":848},{"from":851,"to":850},{"from":850,"to":850},{"from":853,"to":852},{"from":852,"to":852},{"from":855,"to":854},{"from":854,"to":854},{"from":858,"to":857},{"from":862,"to":861},{"from":858,"to":863},{"from":864,"to":863},{"from":871,"to":870},{"from":872,"to":870},{"from":900,"to":900},{"from":902,"to":901},{"from":903,"to":901},{"from":904,"to":901},{"from":902,"to":909},{"from":903,"to":909},{"from":904,"to":909},{"from":915,"to":914},{"from":914,"to":916},{"from":920,"to":919},{"from":31,"to":922},{"from":135,"to":922},{"from":139,"to":922},{"from":923,"to":922},{"from":253,"to":932},{"from":732,"to":932},{"from":937,"to":936},{"from":537,"to":940},{"from":538,"to":940},{"from":539,"to":940},{"from":540,"to":940},{"from":705,"to":942},{"from":537,"to":943},{"from":538,"to":943},{"from":539,"to":943},{"from":540,"to":943},{"from":949,"to":948},{"from":648,"to":949},{"from":952,"to":411},{"from":953,"to":411},{"from":954,"to":411},{"from":955,"to":411},{"from":956,"to":411},{"from":957,"to":411},{"from":958,"to":411},{"from":959,"to":411},{"from":960,"to":411},{"from":388,"to":970},{"from":978,"to":977},{"from":982,"to":981},{"from":988,"to":987},{"from":748,"to":993},{"from":994,"to":995},{"from":994,"to":996},{"from":995,"to":996},{"from":954,"to":1012},{"from":1013,"to":1012},{"from":1019,"to":1018},{"from":135,"to":1018},{"from":1020,"to":323},{"from":1024,"to":1023},{"from":1026,"to":1025},{"from":1027,"to":1025},{"from":1028,"to":1025},{"from":1024,"to":1025},{"from":1029,"to":1025},{"from":1035,"to":1034},{"from":6,"to":1036},{"from":1037,"to":1036},{"from":1038,"to":1036},{"from":384,"to":1036},{"from":386,"to":1036},{"from":387,"to":1036},{"from":129,"to":1044},{"from":505,"to":1044},{"from":130,"to":1044},{"from":797,"to":1045},{"from":384,"to":1045},{"from":1046,"to":1045},{"from":302,"to":1049},{"from":505,"to":1049},{"from":547,"to":1050},{"from":542,"to":1051},{"from":543,"to":1051},{"from":29,"to":258},{"from":129,"to":258},{"from":129,"to":1059},{"from":130,"to":1059},{"from":1060,"to":1059},{"from":133,"to":1059},{"from":1061,"to":1059},{"from":1069,"to":1068},{"from":1020,"to":1068},{"from":323,"to":1068},{"from":318,"to":1068},{"from":319,"to":1068},{"from":320,"to":1068},{"from":1083,"to":1082},{"from":1088,"to":1087},{"from":1087,"to":1087},{"from":270,"to":271},{"from":271,"to":271},{"from":299,"to":271},{"from":300,"to":271},{"from":752,"to":1091},{"from":1098,"to":1100},{"from":1101,"to":1100},{"from":1103,"to":625},{"from":624,"to":625},{"from":625,"to":1103},{"from":1109,"to":1109},{"from":1110,"to":1109},{"from":1113,"to":1112},{"from":273,"to":1124},{"from":261,"to":647},{"from":261,"to":1125},{"from":273,"to":648},{"from":273,"to":1126},{"from":82,"to":1126},{"from":83,"to":1126},{"from":84,"to":1126},{"from":653,"to":1127},{"from":1128,"to":1127},{"from":654,"to":1127},{"from":1129,"to":1127},{"from":1131,"to":1130},{"from":1132,"to":1130},{"from":1133,"to":1130},{"from":1141,"to":1140},{"from":598,"to":1147},{"from":653,"to":1147},{"from":1148,"to":1147},{"from":1149,"to":1147},{"from":1150,"to":1147},{"from":654,"to":1147},{"from":253,"to":1155},{"from":732,"to":1155},{"from":871,"to":1156},{"from":657,"to":1156},{"from":871,"to":1157},{"from":238,"to":1157},{"from":871,"to":1158},{"from":1161,"to":1160},{"from":68,"to":1160},{"from":135,"to":598},{"from":136,"to":598},{"from":139,"to":598},{"from":140,"to":598},{"from":30,"to":598},{"from":385,"to":598},{"from":1165,"to":1164},{"from":184,"to":1166},{"from":186,"to":1166},{"from":188,"to":1166},{"from":189,"to":1166},{"from":190,"to":1166},{"from":191,"to":1166},{"from":185,"to":1166},{"from":187,"to":1166},{"from":945,"to":1166},{"from":1171,"to":1170},{"from":286,"to":1174},{"from":1181,"to":1180},{"from":1182,"to":1180},{"from":1183,"to":1180},{"from":1184,"to":1180},{"from":1192,"to":1191},{"from":1193,"to":1191},{"from":410,"to":1191},{"from":129,"to":1194},{"from":441,"to":1195},{"from":443,"to":1195},{"from":30,"to":1195},{"from":33,"to":1195},{"from":442,"to":1195},{"from":446,"to":1195},{"from":578,"to":441},{"from":1196,"to":441},{"from":215,"to":441},{"from":1197,"to":441},{"from":1198,"to":441},{"from":442,"to":441},{"from":446,"to":441},{"from":411,"to":1199},{"from":411,"to":1200},{"from":410,"to":1201},{"from":411,"to":1201},{"from":1193,"to":1201},{"from":412,"to":1201},{"from":1204,"to":1203},{"from":1223,"to":1222},{"from":1224,"to":1222},{"from":1225,"to":1226},{"from":947,"to":1224},{"from":296,"to":1230},{"from":1231,"to":1230},{"from":296,"to":1233},{"from":1231,"to":1233},{"from":540,"to":1244},{"from":1260,"to":1259},{"from":954,"to":1192},{"from":1013,"to":1192},{"from":1192,"to":1283},{"from":1192,"to":1284},{"from":302,"to":1287},{"from":505,"to":1287},{"from":302,"to":1288},{"from":505,"to":1288},{"from":1290,"to":1289},{"from":1294,"to":1293},{"from":540,"to":1293},{"from":29,"to":1295},{"from":38,"to":1295},{"from":302,"to":1296},{"from":505,"to":1296},{"from":505,"to":1297},{"from":547,"to":1297},{"from":1305,"to":1304},{"from":1306,"to":1304},{"from":652,"to":1308},{"from":1129,"to":1308},{"from":1310,"to":1309},{"from":1311,"to":1309},{"from":1069,"to":1309},{"from":1020,"to":1309},{"from":323,"to":1309},{"from":1310,"to":1312},{"from":1311,"to":1312},{"from":1069,"to":1312},{"from":1020,"to":1312},{"from":323,"to":1312},{"from":1310,"to":1313},{"from":1311,"to":1313},{"from":1069,"to":1313},{"from":1020,"to":1313},{"from":323,"to":1313},{"from":1310,"to":1314},{"from":1311,"to":1314},{"from":1069,"to":1314},{"from":1020,"to":1314},{"from":323,"to":1314},{"from":1310,"to":1315},{"from":1311,"to":1315},{"from":1069,"to":1315},{"from":1020,"to":1315},{"from":323,"to":1315},{"from":29,"to":1316},{"from":1317,"to":1316},{"from":1318,"to":1316},{"from":1327,"to":1326},{"from":1328,"to":1326},{"from":1329,"to":1326},{"from":1331,"to":1331},{"from":1332,"to":1331},{"from":1334,"to":1333},{"from":1333,"to":1333},{"from":1336,"to":1335},{"from":1335,"to":1335},{"from":1338,"to":1337},{"from":1337,"to":1337},{"from":1340,"to":1339},{"from":1339,"to":1339},{"from":872,"to":1350},{"from":1351,"to":1350},{"from":954,"to":1353},{"from":369,"to":1353},{"from":370,"to":1353},{"from":261,"to":1361},{"from":1361,"to":1361},{"from":273,"to":1361},{"from":1363,"to":1362},{"from":1364,"to":1362},{"from":261,"to":1366},{"from":272,"to":1366},{"from":273,"to":1366},{"from":261,"to":1367},{"from":272,"to":1367},{"from":273,"to":1367},{"from":261,"to":1368},{"from":272,"to":1368},{"from":273,"to":1368},{"from":1327,"to":1369},{"from":1328,"to":1369},{"from":1329,"to":1369},{"from":1385,"to":1384},{"from":1386,"to":1384},{"from":1387,"to":1384},{"from":133,"to":1388},{"from":134,"to":1388},{"from":138,"to":1388},{"from":1389,"to":1388},{"from":550,"to":1388},{"from":1061,"to":1388},{"from":29,"to":1388},{"from":1060,"to":1388},{"from":1059,"to":1388},{"from":1390,"to":1388},{"from":442,"to":1388},{"from":134,"to":1391},{"from":138,"to":1391},{"from":1389,"to":1391},{"from":550,"to":1391},{"from":31,"to":1391},{"from":1392,"to":1391},{"from":1388,"to":1391},{"from":1390,"to":1391},{"from":446,"to":1391},{"from":1398,"to":1397},{"from":1061,"to":1401},{"from":133,"to":1401},{"from":954,"to":1405},{"from":954,"to":412},{"from":82,"to":1409},{"from":83,"to":1409},{"from":84,"to":1409},{"from":1412,"to":1411},{"from":731,"to":1411},{"from":1413,"to":1411},{"from":1415,"to":1417},{"from":1412,"to":1419},{"from":540,"to":1419},{"from":1412,"to":1420},{"from":540,"to":1420},{"from":1412,"to":1422},{"from":540,"to":1422},{"from":871,"to":1423},{"from":1424,"to":1423},{"from":1425,"to":1423},{"from":871,"to":1426},{"from":872,"to":1426},{"from":1412,"to":1427},{"from":540,"to":1427},{"from":958,"to":1428},{"from":140,"to":477},{"from":141,"to":477},{"from":29,"to":477},{"from":30,"to":477},{"from":31,"to":477},{"from":516,"to":477},{"from":1433,"to":1432},{"from":1434,"to":1432},{"from":1443,"to":1442},{"from":1441,"to":1442},{"from":411,"to":1444},{"from":954,"to":1445},{"from":1193,"to":1445},{"from":410,"to":1445},{"from":1460,"to":1459},{"from":1473,"to":1472},{"from":1474,"to":1472},{"from":1475,"to":1472},{"from":1476,"to":1472},{"from":1492,"to":1491},{"from":1493,"to":1491},{"from":1494,"to":1491},{"from":1510,"to":1509},{"from":862,"to":1510},{"from":1231,"to":1515},{"from":1515,"to":1517},{"from":7,"to":6},{"from":385,"to":6},{"from":6,"to":1037},{"from":1037,"to":1038},{"from":1527,"to":1526},{"from":1528,"to":1526},{"from":1281,"to":1526},{"from":1530,"to":1529},{"from":1533,"to":1534},{"from":1535,"to":1534},{"from":1536,"to":1534},{"from":1537,"to":1534},{"from":537,"to":1543},{"from":538,"to":1543},{"from":539,"to":1543},{"from":540,"to":1543},{"from":537,"to":1544},{"from":538,"to":1544},{"from":539,"to":1544},{"from":540,"to":1544},{"from":537,"to":1545},{"from":538,"to":1545},{"from":539,"to":1545},{"from":540,"to":1545},{"from":1131,"to":1546},{"from":537,"to":1548},{"from":538,"to":1548},{"from":539,"to":1548},{"from":540,"to":1548},{"from":537,"to":1549},{"from":538,"to":1549},{"from":539,"to":1549},{"from":540,"to":1549},{"from":537,"to":1550},{"from":538,"to":1550},{"from":539,"to":1550},{"from":540,"to":1550},{"from":1552,"to":1551},{"from":1553,"to":1551},{"from":1554,"to":1551},{"from":1555,"to":1551},{"from":458,"to":1551},{"from":1559,"to":1558},{"from":1560,"to":1558},{"from":289,"to":1562},{"from":1565,"to":1564},{"from":1566,"to":1564},{"from":1567,"to":1564},{"from":1568,"to":1564},{"from":1569,"to":1564},{"from":1570,"to":1564},{"from":1571,"to":1564},{"from":1572,"to":1564},{"from":1573,"to":1564},{"from":1574,"to":1564},{"from":1575,"to":1564},{"from":1576,"to":1564},{"from":109,"to":1579},{"from":1580,"to":1579},{"from":1581,"to":1579},{"from":109,"to":1582},{"from":1580,"to":1582},{"from":1581,"to":1582},{"from":109,"to":1583},{"from":1580,"to":1583},{"from":1581,"to":1583},{"from":109,"to":1584},{"from":1580,"to":1584},{"from":1581,"to":1584},{"from":109,"to":1585},{"from":1580,"to":1585},{"from":1581,"to":1585},{"from":1591,"to":1590},{"from":1592,"to":1590},{"from":1165,"to":1612},{"from":1615,"to":1614},{"from":540,"to":537},{"from":540,"to":539},{"from":1618,"to":1617},{"from":1621,"to":1623},{"from":523,"to":1629},{"from":524,"to":1629},{"from":525,"to":1629},{"from":442,"to":443},{"from":446,"to":443},{"from":33,"to":443},{"from":40,"to":443},{"from":1386,"to":1387},{"from":1645,"to":1644},{"from":1652,"to":1651},{"from":291,"to":1654},{"from":292,"to":1654},{"from":1657,"to":1656},{"from":1657,"to":1658},{"from":1657,"to":1660},{"from":1657,"to":1661},{"from":140,"to":1669},{"from":477,"to":1669},{"from":135,"to":1669},{"from":141,"to":1669},{"from":1671,"to":1670},{"from":1672,"to":1670},{"from":135,"to":1672},{"from":139,"to":1672},{"from":129,"to":1673},{"from":133,"to":1673},{"from":135,"to":1673},{"from":220,"to":1673},{"from":29,"to":1673},{"from":30,"to":1673},{"from":31,"to":1673},{"from":1683,"to":1682},{"from":1684,"to":1682},{"from":1685,"to":1682},{"from":1686,"to":1682},{"from":1687,"to":1682},{"from":554,"to":1682},{"from":75,"to":1682},{"from":76,"to":1682},{"from":77,"to":1682},{"from":1688,"to":1682},{"from":1689,"to":1682},{"from":270,"to":1682},{"from":271,"to":1682},{"from":1089,"to":1682},{"from":1690,"to":1682},{"from":1691,"to":1682},{"from":1692,"to":1682},{"from":267,"to":1682},{"from":269,"to":1682},{"from":268,"to":1682},{"from":265,"to":1682},{"from":1693,"to":1682},{"from":52,"to":1682},{"from":53,"to":1682},{"from":54,"to":1682},{"from":1694,"to":1682},{"from":1695,"to":1682},{"from":1696,"to":1682},{"from":262,"to":1682},{"from":1697,"to":1682},{"from":1698,"to":1682},{"from":1699,"to":1682},{"from":263,"to":1682},{"from":1700,"to":1682},{"from":523,"to":1704},{"from":524,"to":1704},{"from":525,"to":1704},{"from":129,"to":29},{"from":133,"to":29},{"from":129,"to":31},{"from":133,"to":31},{"from":134,"to":31},{"from":138,"to":31},{"from":29,"to":31},{"from":38,"to":31},{"from":135,"to":33},{"from":136,"to":33},{"from":385,"to":33},{"from":29,"to":33},{"from":31,"to":33},{"from":38,"to":33},{"from":954,"to":1705},{"from":1193,"to":1706},{"from":410,"to":1706},{"from":129,"to":1707},{"from":133,"to":1707},{"from":1724,"to":1723},{"from":1725,"to":1723},{"from":1731,"to":1730},{"from":1743,"to":1742},{"from":1746,"to":1745},{"from":1747,"to":1745},{"from":1753,"to":1752},{"from":1754,"to":1752},{"from":1755,"to":1752},{"from":1752,"to":1528},{"from":1753,"to":1528},{"from":1754,"to":1528},{"from":1755,"to":1528},{"from":523,"to":1757},{"from":524,"to":1757},{"from":525,"to":1757},{"from":1192,"to":1759},{"from":952,"to":1552},{"from":1761,"to":1552},{"from":796,"to":1767},{"from":797,"to":1768},{"from":542,"to":1769},{"from":543,"to":1769},{"from":797,"to":1770},{"from":1290,"to":1771},{"from":547,"to":1772},{"from":543,"to":1772},{"from":292,"to":1772},{"from":291,"to":1772},{"from":547,"to":1773},{"from":543,"to":1773},{"from":547,"to":1774},{"from":543,"to":1774},{"from":537,"to":1775},{"from":538,"to":1775},{"from":539,"to":1775},{"from":540,"to":1775},{"from":537,"to":1776},{"from":538,"to":1776},{"from":539,"to":1776},{"from":540,"to":1776},{"from":537,"to":1777},{"from":538,"to":1777},{"from":539,"to":1777},{"from":540,"to":1777},{"from":537,"to":1778},{"from":538,"to":1778},{"from":539,"to":1778},{"from":540,"to":1778},{"from":537,"to":1779},{"from":538,"to":1779},{"from":539,"to":1779},{"from":540,"to":1779},{"from":537,"to":1782},{"from":538,"to":1782},{"from":539,"to":1782},{"from":540,"to":1782},{"from":537,"to":1783},{"from":538,"to":1783},{"from":539,"to":1783},{"from":540,"to":1783},{"from":1785,"to":1784},{"from":1786,"to":1787},{"from":652,"to":1785},{"from":1129,"to":1785},{"from":318,"to":1791},{"from":319,"to":1791},{"from":320,"to":1791},{"from":318,"to":1792},{"from":319,"to":1792},{"from":320,"to":1792},{"from":1794,"to":1793},{"from":1795,"to":1793},{"from":318,"to":1802},{"from":319,"to":1802},{"from":320,"to":1802},{"from":1807,"to":1807},{"from":1808,"to":1807},{"from":810,"to":1820},{"from":813,"to":1820},{"from":1821,"to":1820},{"from":1822,"to":1820},{"from":1823,"to":1820},{"from":1828,"to":1827},{"from":1835,"to":1834},{"from":1837,"to":1836},{"from":1838,"to":1836},{"from":133,"to":1847},{"from":1318,"to":1847},{"from":1079,"to":1847},{"from":29,"to":1847},{"from":1848,"to":1847},{"from":38,"to":1847},{"from":29,"to":1128},{"from":38,"to":1128},{"from":134,"to":1128},{"from":1318,"to":1128},{"from":1079,"to":1128},{"from":652,"to":1861},{"from":1308,"to":1861},{"from":1193,"to":1862},{"from":410,"to":1862},{"from":1863,"to":1862},{"from":1864,"to":1862},{"from":1865,"to":1862},{"from":458,"to":1862},{"from":1061,"to":550},{"from":133,"to":550},{"from":129,"to":1061},{"from":130,"to":1061},{"from":132,"to":130},{"from":1866,"to":130},{"from":1867,"to":130},{"from":262,"to":1887},{"from":263,"to":1887},{"from":264,"to":1887},{"from":266,"to":1887},{"from":267,"to":1887},{"from":75,"to":1887},{"from":76,"to":1887},{"from":268,"to":1887},{"from":265,"to":1887},{"from":269,"to":1887},{"from":270,"to":1887},{"from":271,"to":1887},{"from":53,"to":1887},{"from":54,"to":1887},{"from":134,"to":7},{"from":140,"to":7},{"from":139,"to":7},{"from":141,"to":7},{"from":393,"to":1889},{"from":947,"to":1889},{"from":540,"to":1898},{"from":540,"to":1899},{"from":540,"to":1900},{"from":1463,"to":1905},{"from":954,"to":1906},{"from":1911,"to":1910},{"from":1912,"to":1910},{"from":733,"to":1910},{"from":1222,"to":1910},{"from":1914,"to":1913},{"from":1473,"to":1939},{"from":1318,"to":958},{"from":220,"to":958},{"from":135,"to":1942},{"from":952,"to":1942},{"from":140,"to":1942},{"from":141,"to":1942},{"from":958,"to":1942},{"from":1944,"to":1943},{"from":1942,"to":1943},{"from":1947,"to":1946},{"from":1946,"to":1948},{"from":1946,"to":1949},{"from":1946,"to":1950},{"from":1955,"to":1954},{"from":1954,"to":1954},{"from":1959,"to":1958},{"from":1960,"to":1958},{"from":1961,"to":1962},{"from":1977,"to":1976},{"from":1974,"to":1976},{"from":289,"to":1979},{"from":1327,"to":1980},{"from":1328,"to":1980},{"from":1329,"to":1980},{"from":537,"to":1982},{"from":538,"to":1982},{"from":539,"to":1982},{"from":540,"to":1982},{"from":1265,"to":1984},{"from":537,"to":1985},{"from":538,"to":1985},{"from":539,"to":1985},{"from":540,"to":1985},{"from":1992,"to":1991},{"from":1993,"to":1991},{"from":1994,"to":1991},{"from":1995,"to":1991},{"from":1996,"to":1991},{"from":547,"to":1991},{"from":1527,"to":1997},{"from":1528,"to":1997},{"from":1281,"to":1997},{"from":1192,"to":2003},{"from":2007,"to":2009},{"from":537,"to":2013},{"from":538,"to":2013},{"from":539,"to":2013},{"from":540,"to":2013},{"from":537,"to":2014},{"from":538,"to":2014},{"from":539,"to":2014},{"from":540,"to":2014},{"from":537,"to":2017},{"from":538,"to":2017},{"from":539,"to":2017},{"from":540,"to":2017},{"from":537,"to":2018},{"from":538,"to":2018},{"from":539,"to":2018},{"from":540,"to":2018},{"from":537,"to":2019},{"from":538,"to":2019},{"from":539,"to":2019},{"from":540,"to":2019},{"from":797,"to":2020},{"from":797,"to":2021},{"from":537,"to":2022},{"from":538,"to":2022},{"from":539,"to":2022},{"from":540,"to":2022},{"from":1192,"to":2024},{"from":1283,"to":2024},{"from":2025,"to":2024},{"from":2026,"to":2024},{"from":169,"to":2031},{"from":988,"to":2031},{"from":513,"to":2031},{"from":676,"to":2031},{"from":677,"to":2031},{"from":168,"to":2031},{"from":169,"to":2032},{"from":988,"to":2032},{"from":513,"to":2032},{"from":676,"to":2032},{"from":677,"to":2032},{"from":168,"to":2032},{"from":169,"to":2049},{"from":988,"to":2049},{"from":513,"to":2049},{"from":676,"to":2049},{"from":677,"to":2049},{"from":168,"to":2049},{"from":169,"to":2052},{"from":988,"to":2052},{"from":513,"to":2052},{"from":676,"to":2052},{"from":677,"to":2052},{"from":168,"to":2052},{"from":11,"to":2053},{"from":17,"to":2053},{"from":16,"to":2053},{"from":2054,"to":2053},{"from":411,"to":2053},{"from":2055,"to":2053},{"from":2053,"to":2053},{"from":2056,"to":2053},{"from":2057,"to":2053},{"from":954,"to":2058},{"from":16,"to":2059},{"from":17,"to":2059},{"from":2061,"to":2060},{"from":2067,"to":2066},{"from":2068,"to":2066},{"from":384,"to":2078},{"from":386,"to":2078},{"from":387,"to":2078},{"from":653,"to":2081},{"from":2082,"to":2081},{"from":654,"to":2081},{"from":2083,"to":2081},{"from":2085,"to":2084},{"from":2086,"to":2084},{"from":2081,"to":2084},{"from":258,"to":2087},{"from":2087,"to":2088},{"from":2104,"to":2103},{"from":2105,"to":2103},{"from":2108,"to":2108},{"from":2109,"to":2108},{"from":109,"to":1794},{"from":1580,"to":1794},{"from":1581,"to":1794},{"from":1743,"to":2116},{"from":782,"to":2116},{"from":2117,"to":2118},{"from":563,"to":561},{"from":563,"to":562},{"from":731,"to":563},{"from":563,"to":564},{"from":563,"to":565},{"from":563,"to":566},{"from":1840,"to":2120},{"from":294,"to":295},{"from":2124,"to":2123},{"from":1851,"to":2126},{"from":1523,"to":2126},{"from":537,"to":2127},{"from":538,"to":2127},{"from":539,"to":2127},{"from":540,"to":2127},{"from":537,"to":2128},{"from":538,"to":2128},{"from":539,"to":2128},{"from":540,"to":2128},{"from":537,"to":2129},{"from":538,"to":2129},{"from":539,"to":2129},{"from":540,"to":2129},{"from":537,"to":2130},{"from":538,"to":2130},{"from":539,"to":2130},{"from":540,"to":2130},{"from":2085,"to":2133},{"from":2086,"to":2133},{"from":537,"to":2134},{"from":538,"to":2134},{"from":539,"to":2134},{"from":540,"to":2134},{"from":2136,"to":2135},{"from":2138,"to":2137},{"from":2140,"to":2139},{"from":1412,"to":2145},{"from":1413,"to":2145},{"from":731,"to":2145},{"from":540,"to":2145},{"from":1412,"to":2151},{"from":1413,"to":2151},{"from":731,"to":2151},{"from":540,"to":2151},{"from":129,"to":38},{"from":133,"to":38},{"from":954,"to":2178},{"from":1013,"to":2178},{"from":954,"to":2180},{"from":1428,"to":2192},{"from":44,"to":2195},{"from":2196,"to":2195},{"from":2006,"to":2203},{"from":986,"to":2226},{"from":1537,"to":2226},{"from":2086,"to":2230},{"from":2231,"to":2230},{"from":2232,"to":2230},{"from":1429,"to":2230},{"from":2233,"to":2230},{"from":1147,"to":2230},{"from":1317,"to":2230},{"from":924,"to":2230},{"from":1684,"to":2236},{"from":2237,"to":2236},{"from":1686,"to":2236},{"from":1687,"to":2236},{"from":77,"to":2236},{"from":2238,"to":2236},{"from":85,"to":2236},{"from":87,"to":2236},{"from":1907,"to":2236},{"from":2239,"to":2236},{"from":2240,"to":2236},{"from":2241,"to":2236},{"from":2242,"to":2236},{"from":2243,"to":2236},{"from":2244,"to":2236},{"from":2245,"to":2236},{"from":2246,"to":2236},{"from":2247,"to":2236},{"from":2248,"to":2236},{"from":2249,"to":2236},{"from":2250,"to":2236},{"from":2251,"to":2236},{"from":2252,"to":2236},{"from":2253,"to":2236},{"from":2254,"to":2236},{"from":2255,"to":2236},{"from":2256,"to":2236},{"from":2257,"to":2236},{"from":629,"to":2236},{"from":630,"to":2236},{"from":66,"to":2260},{"from":2260,"to":2261},{"from":68,"to":2261},{"from":369,"to":2268},{"from":2269,"to":2268},{"from":2270,"to":2268},{"from":2271,"to":2268},{"from":954,"to":2270},{"from":1013,"to":2270},{"from":1192,"to":2273},{"from":2270,"to":2273},{"from":1192,"to":2275},{"from":1580,"to":109},{"from":1581,"to":1580},{"from":2277,"to":1911},{"from":537,"to":2283},{"from":538,"to":2283},{"from":539,"to":2283},{"from":540,"to":2283},{"from":537,"to":2284},{"from":538,"to":2284},{"from":539,"to":2284},{"from":540,"to":2284},{"from":29,"to":446},{"from":30,"to":446},{"from":31,"to":446},{"from":36,"to":446},{"from":38,"to":446},{"from":41,"to":446},{"from":537,"to":2286},{"from":538,"to":2286},{"from":539,"to":2286},{"from":540,"to":2286},{"from":550,"to":2291},{"from":2292,"to":2291},{"from":2293,"to":2291},{"from":134,"to":2291},{"from":230,"to":2307},{"from":2310,"to":2309},{"from":2314,"to":2313},{"from":680,"to":2325},{"from":1995,"to":2331},{"from":140,"to":2331},{"from":141,"to":2331},{"from":862,"to":2332},{"from":2333,"to":2332},{"from":2334,"to":2332},{"from":2335,"to":2332},{"from":140,"to":2332},{"from":141,"to":2332},{"from":393,"to":2336},{"from":136,"to":2336},{"from":1995,"to":2336},{"from":140,"to":2336},{"from":141,"to":2336},{"from":395,"to":2336},{"from":393,"to":2337},{"from":136,"to":2337},{"from":1995,"to":2337},{"from":140,"to":2337},{"from":141,"to":2337},{"from":395,"to":2337},{"from":2339,"to":2341},{"from":1288,"to":2342},{"from":2344,"to":2343},{"from":2345,"to":2343},{"from":2347,"to":2346},{"from":2348,"to":2346},{"from":779,"to":2351},{"from":2353,"to":2352},{"from":2361,"to":2360},{"from":540,"to":2362},{"from":540,"to":2367},{"from":540,"to":2375},{"from":540,"to":538},{"from":2377,"to":2376},{"from":129,"to":1060},{"from":130,"to":1060},{"from":1059,"to":1060},{"from":133,"to":1060},{"from":1061,"to":1060},{"from":2395,"to":2394},{"from":2396,"to":2394},{"from":2394,"to":2397},{"from":2399,"to":2398},{"from":2399,"to":2400},{"from":1155,"to":2399},{"from":567,"to":2401},{"from":568,"to":2401},{"from":1016,"to":567},{"from":1016,"to":568},{"from":2408,"to":2407},{"from":2407,"to":2407},{"from":1621,"to":2409},{"from":2420,"to":2419},{"from":2421,"to":2419},{"from":2422,"to":2419},{"from":2424,"to":2423},{"from":1868,"to":2423},{"from":2425,"to":2423},{"from":2426,"to":2423},{"from":2427,"to":2423},{"from":2428,"to":2423},{"from":2154,"to":2429},{"from":2428,"to":2429},{"from":2423,"to":2429},{"from":2429,"to":2429},{"from":2430,"to":2429},{"from":2426,"to":2429},{"from":2431,"to":2429},{"from":2426,"to":2426},{"from":1868,"to":2426},{"from":2427,"to":2426},{"from":2433,"to":2426},{"from":2154,"to":2434},{"from":2433,"to":2434},{"from":1868,"to":2434},{"from":2429,"to":2434},{"from":2430,"to":2434},{"from":2426,"to":2434},{"from":2427,"to":2434},{"from":2431,"to":2434},{"from":2423,"to":2435},{"from":2429,"to":2435},{"from":2434,"to":2435},{"from":2449,"to":162},{"from":160,"to":162},{"from":2450,"to":162},{"from":426,"to":2470},{"from":800,"to":2475},{"from":2482,"to":2481},{"from":134,"to":2482},{"from":140,"to":2482},{"from":138,"to":2482},{"from":139,"to":2482},{"from":140,"to":138},{"from":2524,"to":2523},{"from":2525,"to":2523},{"from":2526,"to":2523},{"from":542,"to":2529},{"from":954,"to":2530},{"from":1013,"to":2530},{"from":1193,"to":2531},{"from":412,"to":2531},{"from":2533,"to":2532},{"from":2534,"to":2532},{"from":2537,"to":2536},{"from":2538,"to":2536},{"from":2540,"to":2539},{"from":2541,"to":2539},{"from":2543,"to":2542},{"from":2544,"to":2542},{"from":676,"to":2545},{"from":2546,"to":2545},{"from":1148,"to":2545},{"from":988,"to":2545},{"from":1181,"to":1182},{"from":7,"to":1182},{"from":3,"to":1182},{"from":1183,"to":1182},{"from":9,"to":1182},{"from":129,"to":2549},{"from":547,"to":2549},{"from":543,"to":2549},{"from":130,"to":2549},{"from":2555,"to":2554},{"from":2557,"to":2558},{"from":2558,"to":2559},{"from":952,"to":1553},{"from":959,"to":1553},{"from":1761,"to":1553},{"from":2562,"to":1553},{"from":29,"to":169},{"from":135,"to":169},{"from":136,"to":169},{"from":923,"to":169},{"from":2565,"to":2564},{"from":2567,"to":2566},{"from":2569,"to":2568},{"from":2570,"to":2568},{"from":2574,"to":2573},{"from":912,"to":2573},{"from":916,"to":2578},{"from":1123,"to":2580},{"from":2582,"to":2581},{"from":2584,"to":2583},{"from":198,"to":2587},{"from":2590,"to":2591},{"from":954,"to":2601},{"from":1013,"to":2601},{"from":2604,"to":2603},{"from":2609,"to":2608},{"from":2610,"to":2608},{"from":1619,"to":2616},{"from":1621,"to":2616},{"from":1105,"to":2618},{"from":1433,"to":2634},{"from":1434,"to":2634},{"from":1433,"to":2635},{"from":1434,"to":2635},{"from":1433,"to":2636},{"from":1434,"to":2636},{"from":1433,"to":2637},{"from":1434,"to":2637},{"from":2653,"to":1473},{"from":73,"to":1473},{"from":1475,"to":1474},{"from":1473,"to":1475},{"from":2658,"to":2657},{"from":54,"to":53},{"from":52,"to":54},{"from":652,"to":2659},{"from":2660,"to":2659},{"from":2661,"to":2659},{"from":1129,"to":2659},{"from":540,"to":2662},{"from":540,"to":2663},{"from":540,"to":2664},{"from":540,"to":2665},{"from":168,"to":2667},{"from":169,"to":2667},{"from":597,"to":2667},{"from":393,"to":9},{"from":395,"to":9},{"from":2670,"to":9},{"from":482,"to":2673},{"from":2676,"to":2675},{"from":2679,"to":2678},{"from":2681,"to":2680},{"from":2683,"to":2682},{"from":2686,"to":2685},{"from":2688,"to":2687},{"from":138,"to":385},{"from":2695,"to":2694},{"from":128,"to":2694},{"from":2694,"to":2696},{"from":128,"to":2696},{"from":2703,"to":2702},{"from":821,"to":2705},{"from":1945,"to":489},{"from":2707,"to":2706},{"from":489,"to":490},{"from":430,"to":2731},{"from":954,"to":2732},{"from":2733,"to":2732},{"from":2734,"to":2732},{"from":954,"to":2740},{"from":1013,"to":2740},{"from":2748,"to":2747},{"from":523,"to":1527},{"from":524,"to":1527},{"from":525,"to":1527},{"from":2347,"to":2753},{"from":2348,"to":2753},{"from":135,"to":2754},{"from":2755,"to":2754},{"from":923,"to":2754},{"from":2756,"to":2755},{"from":797,"to":2757},{"from":796,"to":2759},{"from":2524,"to":2760},{"from":2525,"to":2760},{"from":2524,"to":2525},{"from":1193,"to":2762},{"from":410,"to":2762},{"from":312,"to":2766},{"from":313,"to":2766},{"from":1477,"to":2770},{"from":1180,"to":1184},{"from":1181,"to":1184},{"from":280,"to":1184},{"from":1182,"to":1184},{"from":1183,"to":1184},{"from":752,"to":2817},{"from":676,"to":2818},{"from":2819,"to":2818},{"from":821,"to":2818},{"from":2820,"to":2818},{"from":988,"to":2818},{"from":2821,"to":2822},{"from":2842,"to":2841},{"from":2844,"to":2843},{"from":681,"to":2843},{"from":2845,"to":2843},{"from":2846,"to":2843},{"from":2801,"to":2851},{"from":393,"to":1573},{"from":395,"to":1573},{"from":2857,"to":1573},{"from":952,"to":1193},{"from":953,"to":1193},{"from":1193,"to":1193},{"from":2859,"to":1193},{"from":1761,"to":1193},{"from":958,"to":1193},{"from":1865,"to":1193},{"from":952,"to":410},{"from":953,"to":410},{"from":1761,"to":410},{"from":2859,"to":410},{"from":410,"to":410},{"from":958,"to":410},{"from":458,"to":410},{"from":2861,"to":2862},{"from":2870,"to":2869},{"from":29,"to":39},{"from":30,"to":39},{"from":31,"to":39},{"from":33,"to":39},{"from":36,"to":39},{"from":37,"to":39},{"from":38,"to":39},{"from":40,"to":39},{"from":41,"to":39},{"from":2872,"to":2871},{"from":2874,"to":2873},{"from":128,"to":2873},{"from":128,"to":2874},{"from":2878,"to":2877},{"from":2660,"to":2877},{"from":1785,"to":2879},{"from":2880,"to":2879},{"from":2877,"to":2879},{"from":821,"to":2882},{"from":477,"to":2882},{"from":412,"to":2882},{"from":821,"to":2883},{"from":2882,"to":2883},{"from":542,"to":797},{"from":547,"to":542},{"from":302,"to":547},{"from":550,"to":547},{"from":134,"to":547},{"from":138,"to":547},{"from":136,"to":2884},{"from":129,"to":2884},{"from":133,"to":2884},{"from":134,"to":2884},{"from":135,"to":2884},{"from":138,"to":2884},{"from":385,"to":2884},{"from":140,"to":2884},{"from":141,"to":2884},{"from":30,"to":2884},{"from":31,"to":2884},{"from":33,"to":2884},{"from":139,"to":2884},{"from":36,"to":2884},{"from":37,"to":2884},{"from":40,"to":2884},{"from":41,"to":2884},{"from":954,"to":2885},{"from":477,"to":2885},{"from":129,"to":2886},{"from":133,"to":2886},{"from":134,"to":2886},{"from":135,"to":2886},{"from":138,"to":2886},{"from":385,"to":2886},{"from":140,"to":2886},{"from":141,"to":2886},{"from":139,"to":2886},{"from":2884,"to":2886},{"from":136,"to":2886},{"from":2897,"to":2897},{"from":2898,"to":2897},{"from":2900,"to":2899},{"from":2901,"to":2899},{"from":2905,"to":2906},{"from":2924,"to":2923},{"from":2926,"to":2925},{"from":1912,"to":2925},{"from":2533,"to":2934},{"from":2534,"to":2934},{"from":2936,"to":2935},{"from":2533,"to":2935},{"from":2534,"to":2935},{"from":2936,"to":2937},{"from":2533,"to":2937},{"from":2534,"to":2937},{"from":2533,"to":2938},{"from":2534,"to":2938},{"from":2939,"to":2936},{"from":2940,"to":2936},{"from":2533,"to":2936},{"from":482,"to":2936},{"from":2941,"to":2936},{"from":2940,"to":2533},{"from":482,"to":2533},{"from":2534,"to":2533},{"from":2952,"to":2951},{"from":537,"to":2953},{"from":538,"to":2953},{"from":539,"to":2953},{"from":540,"to":2953},{"from":2966,"to":2965},{"from":2965,"to":2967},{"from":2967,"to":2968},{"from":2543,"to":2970},{"from":2544,"to":2970},{"from":2972,"to":2971},{"from":2974,"to":2973},{"from":2801,"to":2980},{"from":2981,"to":2980},{"from":2981,"to":2982},{"from":2983,"to":2982},{"from":309,"to":2999},{"from":310,"to":2999},{"from":782,"to":3003},{"from":17,"to":3004},{"from":3015,"to":3014},{"from":3016,"to":3014},{"from":537,"to":3017},{"from":538,"to":3017},{"from":539,"to":3017},{"from":540,"to":3017},{"from":3021,"to":3020},{"from":3022,"to":3021},{"from":537,"to":3027},{"from":538,"to":3027},{"from":539,"to":3027},{"from":540,"to":3027},{"from":3029,"to":3028},{"from":3028,"to":3030},{"from":537,"to":3031},{"from":538,"to":3031},{"from":539,"to":3031},{"from":540,"to":3031},{"from":1986,"to":3040},{"from":3041,"to":3040},{"from":3042,"to":3040},{"from":540,"to":3040},{"from":3043,"to":3040},{"from":238,"to":3040},{"from":3040,"to":3044},{"from":540,"to":3045},{"from":540,"to":3046},{"from":540,"to":3047},{"from":540,"to":3048},{"from":540,"to":3049},{"from":540,"to":3050},{"from":540,"to":3051},{"from":2872,"to":3054},{"from":3058,"to":3057},{"from":3059,"to":3057},{"from":3079,"to":3078},{"from":3080,"to":3078},{"from":3084,"to":3083},{"from":1443,"to":3083},{"from":929,"to":3084},{"from":762,"to":3090},{"from":765,"to":3090},{"from":3095,"to":3094},{"from":3096,"to":3094},{"from":3104,"to":3103},{"from":3107,"to":3106},{"from":1061,"to":1389},{"from":133,"to":1389},{"from":129,"to":141},{"from":130,"to":141},{"from":132,"to":141},{"from":1866,"to":141},{"from":1867,"to":141},{"from":3114,"to":3113},{"from":3115,"to":3113},{"from":3116,"to":3113},{"from":3123,"to":3123},{"from":3128,"to":3128},{"from":858,"to":3130},{"from":1013,"to":3130},{"from":369,"to":3130},{"from":2647,"to":3131},{"from":2421,"to":3132},{"from":3133,"to":3132},{"from":3136,"to":3135},{"from":1183,"to":3135},{"from":3137,"to":3135},{"from":1181,"to":3135},{"from":3138,"to":3135},{"from":3139,"to":3135},{"from":1559,"to":3142},{"from":257,"to":3143},{"from":3144,"to":3143},{"from":1671,"to":73},{"from":1671,"to":3144},{"from":257,"to":3144},{"from":1137,"to":3150},{"from":3150,"to":3150},{"from":537,"to":3152},{"from":538,"to":3152},{"from":539,"to":3152},{"from":540,"to":3152},{"from":537,"to":3153},{"from":538,"to":3153},{"from":539,"to":3153},{"from":540,"to":3153},{"from":230,"to":3160},{"from":230,"to":3161},{"from":230,"to":3163},{"from":238,"to":3079},{"from":3165,"to":3164},{"from":238,"to":3164},{"from":238,"to":3166},{"from":3079,"to":3166},{"from":230,"to":3167},{"from":66,"to":3169},{"from":3169,"to":3170},{"from":68,"to":3170},{"from":2981,"to":3178},{"from":2983,"to":3178},{"from":458,"to":3186},{"from":2661,"to":2878},{"from":2196,"to":3198},{"from":3199,"to":2196},{"from":3200,"to":2196},{"from":3206,"to":3205},{"from":3207,"to":3205},{"from":3208,"to":3205},{"from":3218,"to":3217},{"from":3219,"to":3217},{"from":133,"to":3220},{"from":540,"to":3233},{"from":1851,"to":3233},{"from":3234,"to":3235},{"from":3240,"to":3239},{"from":148,"to":3243},{"from":149,"to":3243},{"from":336,"to":3244},{"from":337,"to":3244},{"from":3246,"to":3245},{"from":3247,"to":3245},{"from":3249,"to":3248},{"from":3250,"to":3248},{"from":3252,"to":3251},{"from":3253,"to":3251},{"from":168,"to":3261},{"from":169,"to":3261},{"from":3261,"to":3262},{"from":3263,"to":3262},{"from":168,"to":3264},{"from":169,"to":3264},{"from":128,"to":3270},{"from":302,"to":1994},{"from":550,"to":1994},{"from":134,"to":1994},{"from":138,"to":1994},{"from":238,"to":3276},{"from":3080,"to":3276},{"from":128,"to":3277},{"from":3280,"to":3279},{"from":752,"to":3286},{"from":3280,"to":3286},{"from":3293,"to":3292},{"from":3294,"to":3293},{"from":393,"to":3293},{"from":1074,"to":3293},{"from":682,"to":3293},{"from":2670,"to":3293},{"from":2647,"to":3293},{"from":1494,"to":3305},{"from":3305,"to":3306},{"from":3306,"to":3307},{"from":169,"to":3309},{"from":988,"to":3309},{"from":513,"to":3309},{"from":676,"to":3309},{"from":677,"to":3309},{"from":157,"to":3309},{"from":168,"to":3309},{"from":157,"to":3310},{"from":3311,"to":3310},{"from":169,"to":3310},{"from":988,"to":3310},{"from":513,"to":3310},{"from":953,"to":3313},{"from":3314,"to":3313},{"from":2859,"to":3313},{"from":960,"to":3313},{"from":628,"to":3319},{"from":3320,"to":3319},{"from":3322,"to":3321},{"from":3324,"to":3323},{"from":3325,"to":3323},{"from":3326,"to":3323},{"from":3327,"to":3323},{"from":3326,"to":3328},{"from":3327,"to":3328},{"from":2085,"to":2231},{"from":2086,"to":2231},{"from":399,"to":2231},{"from":1316,"to":399},{"from":1317,"to":399},{"from":920,"to":399},{"from":652,"to":399},{"from":1129,"to":399},{"from":3330,"to":399},{"from":200,"to":3342},{"from":3343,"to":3342},{"from":199,"to":3342},{"from":291,"to":289},{"from":292,"to":289},{"from":3342,"to":3344},{"from":3352,"to":3351},{"from":628,"to":3320},{"from":1181,"to":1569},{"from":3136,"to":1569},{"from":3355,"to":3354},{"from":3357,"to":3356},{"from":411,"to":3356},{"from":2056,"to":3356},{"from":1785,"to":3359},{"from":3364,"to":3363},{"from":3365,"to":3363},{"from":3366,"to":3363},{"from":2905,"to":3370},{"from":3373,"to":3372},{"from":1828,"to":3372},{"from":1840,"to":3372},{"from":1841,"to":3372},{"from":2981,"to":3375},{"from":2983,"to":3375},{"from":3399,"to":3398},{"from":3400,"to":3398},{"from":1131,"to":3408},{"from":3412,"to":3411},{"from":3200,"to":3411},{"from":17,"to":3411},{"from":3415,"to":3414},{"from":1433,"to":3419},{"from":1434,"to":3419},{"from":3422,"to":3421},{"from":1910,"to":3421},{"from":1911,"to":3422},{"from":1912,"to":3422},{"from":733,"to":3422},{"from":1222,"to":3422},{"from":230,"to":3429},{"from":230,"to":3431},{"from":230,"to":3432},{"from":135,"to":3437},{"from":139,"to":3437},{"from":1994,"to":3437},{"from":1995,"to":3437},{"from":140,"to":3437},{"from":141,"to":3437},{"from":3434,"to":3439},{"from":3435,"to":3439},{"from":3436,"to":3439},{"from":1994,"to":291},{"from":1995,"to":291},{"from":1992,"to":291},{"from":1993,"to":291},{"from":1996,"to":291},{"from":2872,"to":3448},{"from":3450,"to":3449},{"from":3448,"to":3450},{"from":3454,"to":3453},{"from":3453,"to":3453},{"from":3457,"to":3456},{"from":3474,"to":3473},{"from":3474,"to":3475},{"from":3483,"to":3482},{"from":3484,"to":3482},{"from":3485,"to":3482},{"from":128,"to":3482},{"from":3482,"to":3486},{"from":128,"to":3486},{"from":752,"to":3490},{"from":3079,"to":3495},{"from":3164,"to":3495},{"from":3166,"to":3495},{"from":3499,"to":3498},{"from":238,"to":3498},{"from":3500,"to":3498},{"from":752,"to":3502},{"from":3507,"to":3506},{"from":3508,"to":3507},{"from":810,"to":2245},{"from":3511,"to":3513},{"from":752,"to":754},{"from":3530,"to":3529},{"from":29,"to":1019},{"from":134,"to":1019},{"from":3547,"to":3546},{"from":452,"to":3548},{"from":452,"to":3549},{"from":3547,"to":3550},{"from":3307,"to":3557},{"from":3560,"to":3559},{"from":3557,"to":3560},{"from":296,"to":3563},{"from":3579,"to":3578},{"from":2981,"to":3594},{"from":2983,"to":3594},{"from":1026,"to":3603},{"from":1027,"to":3603},{"from":1028,"to":3603},{"from":1024,"to":3603},{"from":1029,"to":3603},{"from":3603,"to":1530},{"from":2880,"to":3611},{"from":2878,"to":3613},{"from":3614,"to":3613},{"from":1742,"to":3623},{"from":1743,"to":3623},{"from":782,"to":3623},{"from":1424,"to":3399},{"from":129,"to":3624},{"from":133,"to":3624},{"from":1061,"to":3624},{"from":1424,"to":3624},{"from":3625,"to":3624},{"from":3624,"to":3624},{"from":130,"to":3624},{"from":11,"to":1743},{"from":0,"to":782},{"from":953,"to":952},{"from":2859,"to":952},{"from":911,"to":953},{"from":220,"to":953},{"from":230,"to":3631},{"from":230,"to":3632},{"from":797,"to":3633},{"from":1979,"to":3633},{"from":1132,"to":3633},{"from":134,"to":1992},{"from":138,"to":1992},{"from":3635,"to":3634},{"from":3634,"to":3634},{"from":134,"to":1993},{"from":138,"to":1993},{"from":1992,"to":3636},{"from":3637,"to":3636},{"from":134,"to":3636},{"from":1993,"to":3636},{"from":139,"to":3636},{"from":1389,"to":3636},{"from":1994,"to":3636},{"from":140,"to":3636},{"from":3638,"to":3636},{"from":141,"to":3636},{"from":1996,"to":3636},{"from":3640,"to":3015},{"from":3641,"to":3015},{"from":1992,"to":3642},{"from":3637,"to":3642},{"from":1669,"to":3642},{"from":134,"to":3642},{"from":18,"to":3642},{"from":139,"to":3642},{"from":3643,"to":3642},{"from":1994,"to":3642},{"from":1995,"to":3642},{"from":140,"to":3642},{"from":141,"to":3642},{"from":1996,"to":3642},{"from":1993,"to":3642},{"from":3649,"to":3650},{"from":3650,"to":3651},{"from":2420,"to":3656},{"from":2422,"to":3656},{"from":3165,"to":2333},{"from":3673,"to":3672},{"from":3674,"to":3673},{"from":3672,"to":3675},{"from":1433,"to":3676},{"from":1434,"to":3676},{"from":3683,"to":3682},{"from":3680,"to":3683},{"from":752,"to":3684},{"from":312,"to":3689},{"from":3165,"to":3691},{"from":2333,"to":3691},{"from":3474,"to":3707},{"from":3713,"to":3712},{"from":1105,"to":3720},{"from":452,"to":3721},{"from":1105,"to":3547},{"from":3547,"to":452},{"from":452,"to":3722},{"from":452,"to":3723},{"from":1867,"to":132},{"from":452,"to":3724},{"from":3728,"to":3727},{"from":3732,"to":3731},{"from":3733,"to":3731},{"from":215,"to":3734},{"from":2222,"to":3735},{"from":3737,"to":3736},{"from":3741,"to":3742},{"from":653,"to":3745},{"from":2083,"to":3745},{"from":654,"to":3745},{"from":78,"to":3745},{"from":79,"to":3745},{"from":2816,"to":3748},{"from":540,"to":3749},{"from":680,"to":3751},{"from":1840,"to":1828},{"from":1841,"to":1828},{"from":2667,"to":3759},{"from":596,"to":3759},{"from":953,"to":959},{"from":2859,"to":959},{"from":1492,"to":3763},{"from":1493,"to":3763},{"from":3764,"to":3763},{"from":412,"to":3765},{"from":2336,"to":3771},{"from":2337,"to":3771},{"from":3773,"to":3774},{"from":686,"to":3784},{"from":3118,"to":3784},{"from":1130,"to":3784},{"from":129,"to":686},{"from":1882,"to":686},{"from":1884,"to":686},{"from":1133,"to":686},{"from":130,"to":686},{"from":3615,"to":686},{"from":1132,"to":686},{"from":686,"to":3786},{"from":3118,"to":3786},{"from":1130,"to":3786},{"from":686,"to":3787},{"from":3118,"to":3787},{"from":1424,"to":3789},{"from":1433,"to":3790},{"from":1434,"to":3790},{"from":3165,"to":3791},{"from":238,"to":3791},{"from":1424,"to":3792},{"from":1433,"to":3793},{"from":1434,"to":3793},{"from":230,"to":3794},{"from":3796,"to":3795},{"from":230,"to":3797},{"from":3799,"to":3798},{"from":3800,"to":3798},{"from":3801,"to":3798},{"from":3798,"to":3796},{"from":3801,"to":3799},{"from":3799,"to":3800},{"from":1494,"to":3801},{"from":3802,"to":3801},{"from":3803,"to":3801},{"from":3745,"to":3809},{"from":2661,"to":3809},{"from":262,"to":3810},{"from":263,"to":3810},{"from":264,"to":3810},{"from":265,"to":3810},{"from":266,"to":3810},{"from":267,"to":3810},{"from":75,"to":3810},{"from":76,"to":3810},{"from":268,"to":3810},{"from":269,"to":3810},{"from":270,"to":3810},{"from":271,"to":3810},{"from":53,"to":3810},{"from":54,"to":3810},{"from":3817,"to":3816},{"from":309,"to":3823},{"from":3827,"to":3826},{"from":1196,"to":3835},{"from":953,"to":3835},{"from":1198,"to":3835},{"from":2859,"to":3835},{"from":3314,"to":3835},{"from":960,"to":3835},{"from":3839,"to":3838},{"from":3820,"to":3844},{"from":754,"to":3845},{"from":754,"to":3846},{"from":2333,"to":3849},{"from":233,"to":3849},{"from":2670,"to":3849},{"from":1724,"to":3850},{"from":1725,"to":3850},{"from":3859,"to":3861},{"from":3864,"to":3863},{"from":3863,"to":3863},{"from":3865,"to":3863},{"from":3866,"to":3863},{"from":3867,"to":3865},{"from":3874,"to":3873},{"from":3875,"to":3873},{"from":3879,"to":3878},{"from":2979,"to":3878},{"from":3878,"to":3878},{"from":1327,"to":3883},{"from":1328,"to":3883},{"from":1329,"to":3883},{"from":16,"to":3889},{"from":17,"to":3889},{"from":3352,"to":3890},{"from":393,"to":3891},{"from":394,"to":3891},{"from":395,"to":3891},{"from":2233,"to":3894},{"from":1150,"to":3894},{"from":394,"to":3894},{"from":258,"to":3894},{"from":3896,"to":3895},{"from":1942,"to":3839},{"from":2882,"to":3839},{"from":932,"to":3905},{"from":3907,"to":3906},{"from":3909,"to":3908},{"from":549,"to":3909},{"from":262,"to":263},{"from":3014,"to":3914},{"from":3,"to":2},{"from":9,"to":2},{"from":1559,"to":3921},{"from":1561,"to":3924},{"from":1494,"to":3925},{"from":1559,"to":3926},{"from":3927,"to":3926},{"from":986,"to":3930},{"from":3942,"to":3941},{"from":3399,"to":3943},{"from":3624,"to":3943},{"from":1389,"to":3943},{"from":954,"to":3944},{"from":1424,"to":3944},{"from":1424,"to":3946},{"from":1424,"to":3948},{"from":3951,"to":3950},{"from":3950,"to":3950},{"from":230,"to":3958},{"from":230,"to":3959},{"from":3962,"to":3961},{"from":3963,"to":3963},{"from":3964,"to":3963},{"from":2657,"to":3966},{"from":1913,"to":3968},{"from":652,"to":3970},{"from":399,"to":3970},{"from":1308,"to":3970},{"from":1129,"to":3970},{"from":3745,"to":3971},{"from":2660,"to":3971},{"from":3330,"to":2085},{"from":920,"to":2085},{"from":139,"to":2085},{"from":653,"to":3330},{"from":654,"to":3330},{"from":29,"to":654},{"from":134,"to":654},{"from":1535,"to":3973},{"from":1537,"to":3973},{"from":540,"to":3989},{"from":540,"to":3991},{"from":540,"to":3992},{"from":540,"to":3993},{"from":540,"to":3995},{"from":540,"to":3997},{"from":3998,"to":3997},{"from":540,"to":4006},{"from":4009,"to":4009},{"from":810,"to":4012},{"from":3503,"to":4012},{"from":809,"to":4012},{"from":813,"to":4012},{"from":1822,"to":4012},{"from":3510,"to":4012},{"from":2245,"to":4012},{"from":4012,"to":4012},{"from":810,"to":4013},{"from":3503,"to":4013},{"from":809,"to":4013},{"from":813,"to":4013},{"from":1822,"to":4013},{"from":3510,"to":4013},{"from":2245,"to":4013},{"from":4012,"to":4013},{"from":393,"to":4014},{"from":4015,"to":4014},{"from":395,"to":4014},{"from":2857,"to":4014},{"from":1573,"to":4016},{"from":2857,"to":4016},{"from":2857,"to":4017},{"from":2647,"to":4017},{"from":3292,"to":4017},{"from":3293,"to":4017},{"from":1576,"to":4017},{"from":393,"to":2857},{"from":238,"to":2857},{"from":3293,"to":2857},{"from":2670,"to":2857},{"from":2647,"to":2857},{"from":393,"to":3},{"from":4024,"to":3},{"from":395,"to":3},{"from":4037,"to":4036},{"from":4038,"to":4036},{"from":1814,"to":4042},{"from":3026,"to":4042},{"from":4045,"to":4044},{"from":4047,"to":4045},{"from":4050,"to":4049},{"from":911,"to":1196},{"from":220,"to":1196},{"from":677,"to":4060},{"from":82,"to":4073},{"from":83,"to":4073},{"from":84,"to":4073},{"from":4076,"to":4075},{"from":2231,"to":4075},{"from":3970,"to":4075},{"from":4075,"to":4079},{"from":4081,"to":4080},{"from":219,"to":4047},{"from":139,"to":4047},{"from":212,"to":4047},{"from":221,"to":4047},{"from":146,"to":4047},{"from":126,"to":4047},{"from":212,"to":4083},{"from":4083,"to":4084},{"from":212,"to":4084},{"from":146,"to":4084},{"from":219,"to":4085},{"from":126,"to":4085},{"from":221,"to":4085},{"from":139,"to":4085},{"from":931,"to":4087},{"from":4090,"to":4089},{"from":4091,"to":4089},{"from":2966,"to":4101},{"from":4103,"to":4102},{"from":4102,"to":4104},{"from":4103,"to":4104},{"from":2537,"to":4109},{"from":2538,"to":4109},{"from":4113,"to":4112},{"from":4114,"to":4112},{"from":4113,"to":4115},{"from":4114,"to":4115},{"from":4120,"to":4119},{"from":4121,"to":4121},{"from":4122,"to":4121},{"from":4124,"to":4123},{"from":4123,"to":4123},{"from":540,"to":4125},{"from":4127,"to":4127},{"from":4130,"to":4129},{"from":4129,"to":4129},{"from":3506,"to":4134},{"from":4136,"to":4135},{"from":3619,"to":4135},{"from":858,"to":4141},{"from":1013,"to":4141},{"from":369,"to":4141},{"from":954,"to":4149},{"from":1424,"to":4149},{"from":1389,"to":4151},{"from":3624,"to":4151},{"from":1993,"to":4151},{"from":412,"to":4151},{"from":1424,"to":4153},{"from":752,"to":4157},{"from":302,"to":800},{"from":542,"to":800},{"from":505,"to":800},{"from":543,"to":800},{"from":134,"to":800},{"from":2085,"to":4167},{"from":2660,"to":4167},{"from":2086,"to":4167},{"from":2084,"to":4167},{"from":1290,"to":4168},{"from":1131,"to":4168},{"from":800,"to":4168},{"from":4170,"to":4169},{"from":4171,"to":4170},{"from":4179,"to":4178},{"from":4190,"to":4189},{"from":4191,"to":4189},{"from":752,"to":4204},{"from":682,"to":4205},{"from":2333,"to":4205},{"from":139,"to":4205},{"from":4207,"to":4206},{"from":954,"to":1013},{"from":1196,"to":4221},{"from":953,"to":4221},{"from":1198,"to":4221},{"from":2859,"to":4221},{"from":3314,"to":4221},{"from":960,"to":4221},{"from":2972,"to":4228},{"from":2032,"to":4243},{"from":169,"to":4243},{"from":988,"to":4243},{"from":513,"to":4243},{"from":4244,"to":4243},{"from":4246,"to":4245},{"from":140,"to":4246},{"from":135,"to":4246},{"from":139,"to":4246},{"from":141,"to":4246},{"from":730,"to":4247},{"from":4247,"to":4248},{"from":4248,"to":4249},{"from":4253,"to":4255},{"from":17,"to":4256},{"from":129,"to":220},{"from":133,"to":220},{"from":1318,"to":220},{"from":1079,"to":220},{"from":1061,"to":220},{"from":130,"to":220},{"from":3143,"to":4259},{"from":3143,"to":4260},{"from":4261,"to":4260},{"from":3143,"to":4261},{"from":73,"to":4261},{"from":2540,"to":4265},{"from":2541,"to":4265},{"from":4267,"to":4266},{"from":4268,"to":4266},{"from":3224,"to":4266},{"from":4269,"to":4266},{"from":3041,"to":4271},{"from":1260,"to":4271},{"from":4271,"to":4272},{"from":954,"to":145},{"from":212,"to":145},{"from":213,"to":145},{"from":215,"to":145},{"from":213,"to":4277},{"from":126,"to":4277},{"from":135,"to":4277},{"from":133,"to":4277},{"from":31,"to":4277},{"from":139,"to":214},{"from":213,"to":146},{"from":135,"to":146},{"from":2748,"to":4288},{"from":3014,"to":4289},{"from":320,"to":318},{"from":1494,"to":4298},{"from":3802,"to":4298},{"from":3803,"to":4298},{"from":3142,"to":4298},{"from":1559,"to":4298},{"from":3927,"to":4298},{"from":3803,"to":4302},{"from":4311,"to":4310},{"from":3080,"to":4310},{"from":537,"to":4315},{"from":538,"to":4315},{"from":539,"to":4315},{"from":540,"to":4315},{"from":4319,"to":4318},{"from":4320,"to":4318},{"from":128,"to":4321},{"from":4322,"to":4321},{"from":954,"to":4324},{"from":1424,"to":4324},{"from":3624,"to":4325},{"from":4152,"to":4325},{"from":1424,"to":4326},{"from":1992,"to":4327},{"from":129,"to":4327},{"from":1882,"to":4327},{"from":477,"to":4327},{"from":3638,"to":4327},{"from":3637,"to":4327},{"from":1994,"to":4327},{"from":1995,"to":4327},{"from":130,"to":4327},{"from":1389,"to":4327},{"from":140,"to":4327},{"from":141,"to":4327},{"from":2333,"to":4327},{"from":3625,"to":4327},{"from":1996,"to":4327},{"from":862,"to":4327},{"from":3624,"to":4327},{"from":1993,"to":4327},{"from":3080,"to":4328},{"from":2424,"to":4335},{"from":4336,"to":4335},{"from":4335,"to":4335},{"from":3004,"to":4337},{"from":2416,"to":82},{"from":2418,"to":82},{"from":2416,"to":83},{"from":2418,"to":83},{"from":2416,"to":84},{"from":2418,"to":84},{"from":4342,"to":4341},{"from":3483,"to":4351},{"from":2695,"to":4351},{"from":4352,"to":4351},{"from":4322,"to":4351},{"from":540,"to":4354},{"from":871,"to":4355},{"from":540,"to":4355},{"from":52,"to":4367},{"from":53,"to":4367},{"from":54,"to":4367},{"from":393,"to":2334},{"from":2333,"to":2334},{"from":1074,"to":2334},{"from":140,"to":2334},{"from":141,"to":2334},{"from":682,"to":2334},{"from":2670,"to":2334},{"from":1074,"to":2335},{"from":393,"to":2335},{"from":2670,"to":2335},{"from":682,"to":2335},{"from":3294,"to":4368},{"from":238,"to":4368},{"from":66,"to":1161},{"from":4377,"to":4376},{"from":1206,"to":4376},{"from":4377,"to":4380},{"from":302,"to":505},{"from":302,"to":543},{"from":1327,"to":4396},{"from":1328,"to":4396},{"from":1329,"to":4396},{"from":266,"to":264},{"from":1329,"to":1327},{"from":1329,"to":1328},{"from":1327,"to":4399},{"from":1328,"to":4399},{"from":1329,"to":4399},{"from":1327,"to":4402},{"from":1328,"to":4402},{"from":1329,"to":4402},{"from":797,"to":4404},{"from":82,"to":4406},{"from":83,"to":4406},{"from":84,"to":4406},{"from":411,"to":4407},{"from":11,"to":4407},{"from":17,"to":4407},{"from":2056,"to":4407},{"from":394,"to":4420},{"from":141,"to":4420},{"from":139,"to":4420},{"from":1996,"to":4420},{"from":3474,"to":4424},{"from":3474,"to":4425},{"from":215,"to":4434},{"from":4441,"to":4440},{"from":4442,"to":4441},{"from":730,"to":4442},{"from":1841,"to":4443},{"from":2983,"to":4443},{"from":1841,"to":4444},{"from":2983,"to":4444},{"from":2524,"to":4464},{"from":2525,"to":4464},{"from":2526,"to":4464},{"from":1180,"to":4475},{"from":4478,"to":4477},{"from":4479,"to":4477},{"from":68,"to":4481},{"from":4490,"to":4489},{"from":2061,"to":4492},{"from":1424,"to":4494},{"from":2061,"to":4495},{"from":1428,"to":2025},{"from":1318,"to":2025},{"from":220,"to":2025},{"from":954,"to":2025},{"from":29,"to":2025},{"from":30,"to":2025},{"from":31,"to":2025},{"from":2025,"to":2026},{"from":540,"to":4508},{"from":76,"to":4508},{"from":2666,"to":4508},{"from":4510,"to":4509},{"from":540,"to":4511},{"from":3301,"to":4512},{"from":4513,"to":4512},{"from":1992,"to":4513},{"from":1993,"to":4513},{"from":1994,"to":4513},{"from":1995,"to":4513},{"from":140,"to":4513},{"from":141,"to":4513},{"from":1996,"to":4513},{"from":547,"to":4513},{"from":4544,"to":4543},{"from":106,"to":4543},{"from":1995,"to":3638},{"from":134,"to":3638},{"from":140,"to":3638},{"from":139,"to":3638},{"from":141,"to":3638},{"from":1786,"to":4545},{"from":4221,"to":4545},{"from":4546,"to":4545},{"from":4547,"to":4545},{"from":3835,"to":4545},{"from":1786,"to":4548},{"from":458,"to":4548},{"from":30,"to":447},{"from":135,"to":447},{"from":1079,"to":447},{"from":220,"to":447},{"from":33,"to":447},{"from":30,"to":448},{"from":911,"to":448},{"from":134,"to":448},{"from":33,"to":448},{"from":215,"to":448},{"from":482,"to":4556},{"from":4559,"to":4558},{"from":4560,"to":4558},{"from":582,"to":4574},{"from":2057,"to":4574},{"from":4575,"to":4574},{"from":4576,"to":4574},{"from":2055,"to":4574},{"from":2053,"to":4574},{"from":2059,"to":4574},{"from":2567,"to":4579},{"from":4583,"to":4582},{"from":540,"to":4585},{"from":4587,"to":4586},{"from":1473,"to":4589},{"from":3131,"to":4590},{"from":4015,"to":4590},{"from":3292,"to":4590},{"from":3293,"to":4590},{"from":2857,"to":4590},{"from":4592,"to":4591},{"from":4591,"to":4593},{"from":730,"to":4592},{"from":82,"to":4594},{"from":83,"to":4594},{"from":84,"to":4594},{"from":730,"to":4595},{"from":4595,"to":4596},{"from":540,"to":4597},{"from":2819,"to":4599},{"from":2824,"to":4599},{"from":1944,"to":4599},{"from":4602,"to":4601},{"from":4607,"to":4608},{"from":40,"to":1231},{"from":33,"to":1231},{"from":257,"to":1231},{"from":41,"to":1231},{"from":1494,"to":1559},{"from":2543,"to":4627},{"from":2544,"to":4627},{"from":4627,"to":4629},{"from":133,"to":1390},{"from":134,"to":1390},{"from":138,"to":1390},{"from":1389,"to":1390},{"from":550,"to":1390},{"from":1061,"to":1390},{"from":29,"to":1390},{"from":1060,"to":1390},{"from":1059,"to":1390},{"from":1388,"to":1390},{"from":442,"to":1390},{"from":4289,"to":4631},{"from":4451,"to":4647},{"from":537,"to":4650},{"from":538,"to":4650},{"from":539,"to":4650},{"from":540,"to":4650},{"from":3191,"to":4651},{"from":1024,"to":4654},{"from":537,"to":4656},{"from":538,"to":4656},{"from":539,"to":4656},{"from":540,"to":4656},{"from":160,"to":4658},{"from":161,"to":4658},{"from":162,"to":4658},{"from":4659,"to":4658},{"from":4660,"to":4658},{"from":164,"to":4658},{"from":1928,"to":4658},{"from":165,"to":4658},{"from":1210,"to":4658},{"from":954,"to":4661},{"from":1424,"to":4661},{"from":1013,"to":4661},{"from":1884,"to":2104},{"from":1133,"to":2104},{"from":1132,"to":2104},{"from":2061,"to":4669},{"from":1657,"to":4681},{"from":4692,"to":4691},{"from":4708,"to":4707},{"from":591,"to":4707},{"from":2979,"to":4707},{"from":4707,"to":4707},{"from":540,"to":4710},{"from":628,"to":4712},{"from":3319,"to":4712},{"from":3320,"to":4712},{"from":653,"to":79},{"from":654,"to":79},{"from":1318,"to":79},{"from":30,"to":158},{"from":1318,"to":158},{"from":444,"to":4724},{"from":445,"to":4724},{"from":3343,"to":4724},{"from":578,"to":445},{"from":30,"to":445},{"from":134,"to":445},{"from":33,"to":445},{"from":215,"to":445},{"from":578,"to":3343},{"from":30,"to":3343},{"from":135,"to":3343},{"from":33,"to":3343},{"from":215,"to":3343},{"from":444,"to":4727},{"from":3343,"to":4727},{"from":135,"to":4727},{"from":447,"to":4727},{"from":30,"to":4728},{"from":215,"to":4728},{"from":1995,"to":4736},{"from":3906,"to":4749},{"from":1865,"to":4751},{"from":2056,"to":4751},{"from":458,"to":4751},{"from":952,"to":1865},{"from":959,"to":1865},{"from":1761,"to":1865},{"from":2562,"to":1865},{"from":1535,"to":4753},{"from":972,"to":4758},{"from":4760,"to":4759},{"from":4761,"to":4760},{"from":66,"to":4764},{"from":1424,"to":4765},{"from":3624,"to":4765},{"from":1389,"to":4765},{"from":1795,"to":4776},{"from":4207,"to":2707},{"from":4782,"to":2707},{"from":4786,"to":4785},{"from":4788,"to":4787},{"from":4785,"to":4788},{"from":4796,"to":4795},{"from":1061,"to":215},{"from":133,"to":215},{"from":911,"to":215},{"from":220,"to":215},{"from":318,"to":319},{"from":4815,"to":4815},{"from":4816,"to":4815},{"from":2524,"to":4819},{"from":1443,"to":4819},{"from":3159,"to":4819},{"from":2421,"to":4821},{"from":3133,"to":4821},{"from":1746,"to":4823},{"from":1747,"to":4823},{"from":1591,"to":4824},{"from":1592,"to":4824},{"from":1027,"to":4826},{"from":1029,"to":4826},{"from":4311,"to":4833},{"from":1179,"to":4834},{"from":4836,"to":4835},{"from":1179,"to":4836},{"from":393,"to":3352},{"from":221,"to":3352},{"from":394,"to":3352},{"from":395,"to":3352},{"from":4857,"to":4856},{"from":4859,"to":4858},{"from":4856,"to":4859},{"from":16,"to":4861},{"from":17,"to":4861},{"from":16,"to":4862},{"from":17,"to":4862},{"from":139,"to":4862},{"from":4861,"to":4863},{"from":4861,"to":4864},{"from":4861,"to":4865},{"from":16,"to":4868},{"from":17,"to":4868},{"from":4861,"to":4871},{"from":4861,"to":4872},{"from":4874,"to":4873},{"from":4875,"to":4873},{"from":173,"to":4876},{"from":174,"to":4876},{"from":4880,"to":4879},{"from":4881,"to":4879},{"from":4913,"to":4912},{"from":82,"to":4916},{"from":83,"to":4916},{"from":84,"to":4916},{"from":82,"to":4917},{"from":83,"to":4917},{"from":84,"to":4917},{"from":1231,"to":4920},{"from":4922,"to":4923},{"from":140,"to":4923},{"from":4924,"to":4923},{"from":139,"to":4923},{"from":141,"to":4923},{"from":1996,"to":4935},{"from":4935,"to":4936},{"from":810,"to":4939},{"from":3503,"to":4939},{"from":4940,"to":4939},{"from":4941,"to":4939},{"from":4942,"to":4939},{"from":2245,"to":4939},{"from":4944,"to":4943},{"from":4947,"to":4946},{"from":4945,"to":4946},{"from":512,"to":4948},{"from":1536,"to":4948},{"from":1537,"to":4948},{"from":2582,"to":2584},{"from":2974,"to":2584},{"from":540,"to":4954},{"from":540,"to":4955},{"from":540,"to":4957},{"from":540,"to":4958},{"from":540,"to":4959},{"from":540,"to":4960},{"from":4560,"to":4972},{"from":4559,"to":4560},{"from":1155,"to":4975},{"from":931,"to":4975},{"from":932,"to":4975},{"from":947,"to":4975},{"from":2399,"to":4975},{"from":1224,"to":4975},{"from":4919,"to":4979},{"from":4984,"to":4985},{"from":4983,"to":4986},{"from":4997,"to":4996},{"from":686,"to":4996},{"from":4998,"to":4996},{"from":3118,"to":4996},{"from":1412,"to":5002},{"from":1413,"to":5002},{"from":731,"to":5002},{"from":540,"to":5002},{"from":2748,"to":5005},{"from":653,"to":1129},{"from":654,"to":1129},{"from":135,"to":1129},{"from":862,"to":1028},{"from":2333,"to":1028},{"from":1024,"to":1028},{"from":1389,"to":1028},{"from":862,"to":1029},{"from":2333,"to":1029},{"from":1024,"to":1029},{"from":1389,"to":1029},{"from":230,"to":5014},{"from":3246,"to":5015},{"from":3247,"to":5015},{"from":5020,"to":5019},{"from":2492,"to":5020},{"from":1004,"to":5028},{"from":686,"to":5028},{"from":3118,"to":5028},{"from":29,"to":5037},{"from":129,"to":5037},{"from":130,"to":5037},{"from":1318,"to":5037},{"from":1059,"to":5037},{"from":393,"to":4015},{"from":238,"to":4015},{"from":3293,"to":4015},{"from":2670,"to":4015},{"from":2647,"to":4015},{"from":129,"to":5052},{"from":133,"to":5052},{"from":134,"to":5052},{"from":138,"to":5052},{"from":139,"to":5052},{"from":140,"to":5052},{"from":141,"to":5052},{"from":29,"to":5052},{"from":30,"to":5052},{"from":31,"to":5052},{"from":33,"to":5052},{"from":36,"to":5052},{"from":37,"to":5052},{"from":38,"to":5052},{"from":40,"to":5052},{"from":41,"to":5052},{"from":5055,"to":5054},{"from":443,"to":5057},{"from":446,"to":5057},{"from":200,"to":5058},{"from":5059,"to":5058},{"from":5060,"to":5058},{"from":540,"to":5062},{"from":2974,"to":5067},{"from":3249,"to":5069},{"from":3250,"to":5069},{"from":578,"to":5082},{"from":215,"to":5082},{"from":537,"to":5083},{"from":538,"to":5083},{"from":539,"to":5083},{"from":540,"to":5083},{"from":4101,"to":5099},{"from":2173,"to":5103},{"from":4102,"to":5105},{"from":1026,"to":5108},{"from":1027,"to":5108},{"from":4654,"to":5108},{"from":1025,"to":5108},{"from":1028,"to":5108},{"from":1024,"to":5108},{"from":1029,"to":5108},{"from":345,"to":5114},{"from":129,"to":5115},{"from":133,"to":5115},{"from":134,"to":5115},{"from":135,"to":5115},{"from":138,"to":5115},{"from":385,"to":5115},{"from":5059,"to":5115},{"from":140,"to":5115},{"from":141,"to":5115},{"from":139,"to":5115},{"from":136,"to":5115},{"from":136,"to":5059},{"from":129,"to":5059},{"from":133,"to":5059},{"from":134,"to":5059},{"from":135,"to":5059},{"from":138,"to":5059},{"from":385,"to":5059},{"from":140,"to":5059},{"from":141,"to":5059},{"from":29,"to":5059},{"from":30,"to":5059},{"from":31,"to":5059},{"from":139,"to":5059},{"from":36,"to":5059},{"from":37,"to":5059},{"from":38,"to":5059},{"from":41,"to":5059},{"from":2067,"to":5117},{"from":2068,"to":5117},{"from":1552,"to":5118},{"from":1553,"to":5118},{"from":1554,"to":5118},{"from":1555,"to":5118},{"from":4969,"to":5122},{"from":2614,"to":5126},{"from":561,"to":5129},{"from":562,"to":5129},{"from":563,"to":5129},{"from":564,"to":5129},{"from":565,"to":5129},{"from":566,"to":5129},{"from":567,"to":5129},{"from":568,"to":5129},{"from":561,"to":5130},{"from":562,"to":5130},{"from":563,"to":5130},{"from":564,"to":5130},{"from":565,"to":5130},{"from":566,"to":5130},{"from":567,"to":5130},{"from":568,"to":5130},{"from":4207,"to":5131},{"from":561,"to":5132},{"from":562,"to":5132},{"from":563,"to":5132},{"from":564,"to":5132},{"from":565,"to":5132},{"from":566,"to":5132},{"from":567,"to":5132},{"from":568,"to":5132},{"from":561,"to":5133},{"from":562,"to":5133},{"from":563,"to":5133},{"from":564,"to":5133},{"from":565,"to":5133},{"from":566,"to":5133},{"from":567,"to":5133},{"from":568,"to":5133},{"from":4221,"to":5134},{"from":4546,"to":5134},{"from":4547,"to":5134},{"from":1761,"to":5134},{"from":3835,"to":5134},{"from":4547,"to":5135},{"from":4221,"to":5135},{"from":3835,"to":5135},{"from":1761,"to":5135},{"from":4546,"to":5135},{"from":1552,"to":5136},{"from":1553,"to":5136},{"from":1554,"to":5136},{"from":1555,"to":5136},{"from":5134,"to":5136},{"from":4207,"to":1171},{"from":679,"to":5140},{"from":5149,"to":5148},{"from":5150,"to":5149},{"from":2725,"to":5150},{"from":411,"to":5150},{"from":106,"to":5151},{"from":11,"to":2057},{"from":17,"to":2057},{"from":16,"to":2057},{"from":2054,"to":2057},{"from":411,"to":2057},{"from":2056,"to":2057},{"from":16,"to":4575},{"from":17,"to":4575},{"from":5157,"to":5156},{"from":3231,"to":5161},{"from":1024,"to":1026},{"from":29,"to":653},{"from":654,"to":653},{"from":134,"to":653},{"from":653,"to":920},{"from":654,"to":920},{"from":4629,"to":5173},{"from":5174,"to":5174},{"from":5175,"to":5174},{"from":5177,"to":5176},{"from":171,"to":5177},{"from":323,"to":1310},{"from":1311,"to":5186},{"from":1004,"to":5187},{"from":1069,"to":1020},{"from":1290,"to":5190},{"from":291,"to":5190},{"from":292,"to":5190},{"from":5225,"to":5224},{"from":1181,"to":5224},{"from":5226,"to":5224},{"from":1183,"to":5227},{"from":1193,"to":5229},{"from":5233,"to":5232},{"from":5060,"to":5233},{"from":29,"to":5233},{"from":30,"to":5233},{"from":31,"to":5233},{"from":36,"to":5233},{"from":37,"to":5233},{"from":38,"to":5233},{"from":446,"to":5233},{"from":5233,"to":5234},{"from":3134,"to":1576},{"from":922,"to":1944},{"from":2580,"to":5251},{"from":1123,"to":5251},{"from":4986,"to":5254},{"from":4985,"to":5256},{"from":5264,"to":5263},{"from":410,"to":5263},{"from":30,"to":5263},{"from":33,"to":5263},{"from":1391,"to":5263},{"from":458,"to":5263},{"from":1552,"to":5266},{"from":1553,"to":5266},{"from":1554,"to":5266},{"from":1555,"to":5266},{"from":458,"to":5266},{"from":5281,"to":5280},{"from":5280,"to":5280},{"from":5283,"to":5282},{"from":5282,"to":5282},{"from":5284,"to":5284},{"from":5285,"to":5284},{"from":5287,"to":5286},{"from":5286,"to":5286},{"from":5288,"to":2239},{"from":2239,"to":2239},{"from":2221,"to":5289},{"from":5306,"to":1290},{"from":302,"to":5306},{"from":550,"to":5306},{"from":505,"to":5306},{"from":134,"to":5306},{"from":138,"to":5306},{"from":821,"to":5312},{"from":2230,"to":5312},{"from":1147,"to":5312},{"from":1429,"to":5312},{"from":924,"to":5312},{"from":5316,"to":5315},{"from":2702,"to":5315},{"from":5319,"to":5319},{"from":5320,"to":5319},{"from":5318,"to":5320},{"from":5320,"to":5320},{"from":482,"to":2941},{"from":2748,"to":4944},{"from":4944,"to":5323},{"from":1837,"to":5324},{"from":393,"to":5325},{"from":2334,"to":5325},{"from":2335,"to":5325},{"from":1995,"to":5325},{"from":140,"to":5325},{"from":141,"to":5325},{"from":1996,"to":5325},{"from":212,"to":5335},{"from":213,"to":5335},{"from":4782,"to":5335},{"from":4207,"to":5336},{"from":3680,"to":5337},{"from":3682,"to":5337},{"from":3683,"to":5337},{"from":212,"to":5339},{"from":146,"to":5339},{"from":3915,"to":5345},{"from":4105,"to":5345},{"from":5347,"to":5346},{"from":4099,"to":5346},{"from":4353,"to":5346},{"from":5357,"to":5356},{"from":29,"to":5369},{"from":135,"to":5369},{"from":2082,"to":4076},{"from":3015,"to":3016},{"from":5373,"to":5372},{"from":5374,"to":5372},{"from":5375,"to":5372},{"from":2377,"to":5383},{"from":2490,"to":5387},{"from":5388,"to":5387},{"from":5387,"to":5389},{"from":993,"to":5390},{"from":178,"to":5390},{"from":1657,"to":5391},{"from":1664,"to":5391},{"from":2844,"to":5391},{"from":3280,"to":5401},{"from":5404,"to":1688},{"from":299,"to":1688},{"from":300,"to":1688},{"from":1688,"to":1688},{"from":270,"to":1688},{"from":271,"to":1688},{"from":3054,"to":5410},{"from":862,"to":5417},{"from":2333,"to":5417},{"from":1389,"to":5417},{"from":5410,"to":5419},{"from":986,"to":3365},{"from":5422,"to":3365},{"from":3366,"to":3365},{"from":17,"to":5423},{"from":2054,"to":5425},{"from":11,"to":5425},{"from":17,"to":5425},{"from":139,"to":5425},{"from":16,"to":5426},{"from":17,"to":5426},{"from":5433,"to":1689},{"from":299,"to":1689},{"from":300,"to":1689},{"from":1689,"to":1689},{"from":270,"to":1689},{"from":271,"to":1689},{"from":295,"to":5436},{"from":5115,"to":5436},{"from":270,"to":270},{"from":299,"to":270},{"from":129,"to":5437},{"from":133,"to":5437},{"from":134,"to":5437},{"from":135,"to":5437},{"from":138,"to":5437},{"from":385,"to":5437},{"from":29,"to":5437},{"from":30,"to":5437},{"from":31,"to":5437},{"from":36,"to":5437},{"from":37,"to":5437},{"from":38,"to":5437},{"from":136,"to":5437},{"from":5443,"to":5443},{"from":4828,"to":5443},{"from":5454,"to":5453},{"from":5452,"to":5454},{"from":5457,"to":5458},{"from":2900,"to":5459},{"from":2899,"to":5459},{"from":5460,"to":5459},{"from":2901,"to":5459},{"from":393,"to":2277},{"from":947,"to":2277},{"from":395,"to":2277},{"from":2900,"to":5462},{"from":5459,"to":5462},{"from":2899,"to":5462},{"from":5463,"to":5462},{"from":5460,"to":5462},{"from":2901,"to":5462},{"from":215,"to":5469},{"from":578,"to":5470},{"from":215,"to":5470},{"from":578,"to":5471},{"from":215,"to":5471},{"from":578,"to":5472},{"from":215,"to":5472},{"from":82,"to":5473},{"from":83,"to":5473},{"from":84,"to":5473},{"from":5475,"to":5474},{"from":5474,"to":5476},{"from":3741,"to":5475},{"from":1839,"to":5475},{"from":3742,"to":5475},{"from":82,"to":5478},{"from":83,"to":5478},{"from":84,"to":5478},{"from":5479,"to":5479},{"from":2979,"to":5479},{"from":5480,"to":5479},{"from":2979,"to":5481},{"from":5482,"to":5481},{"from":5481,"to":5481},{"from":2979,"to":5483},{"from":5484,"to":5484},{"from":5485,"to":5484},{"from":5487,"to":5486},{"from":2979,"to":5486},{"from":5486,"to":5486},{"from":2979,"to":5488},{"from":5488,"to":5488},{"from":5489,"to":5488},{"from":5491,"to":5490},{"from":5492,"to":5490},{"from":5490,"to":5490},{"from":3640,"to":5503},{"from":537,"to":5526},{"from":538,"to":5526},{"from":539,"to":5526},{"from":540,"to":5526},{"from":106,"to":5531},{"from":2087,"to":1113},{"from":5532,"to":5533},{"from":5533,"to":5534},{"from":129,"to":294},{"from":133,"to":294},{"from":5060,"to":294},{"from":135,"to":294},{"from":138,"to":294},{"from":385,"to":294},{"from":140,"to":294},{"from":141,"to":294},{"from":134,"to":294},{"from":139,"to":294},{"from":136,"to":294},{"from":4268,"to":5535},{"from":4268,"to":5536},{"from":7,"to":12},{"from":385,"to":12},{"from":540,"to":5539},{"from":540,"to":5540},{"from":4268,"to":5541},{"from":540,"to":5544},{"from":1621,"to":5546},{"from":3485,"to":5549},{"from":1669,"to":5550},{"from":1670,"to":5550},{"from":1672,"to":5550},{"from":2026,"to":5550},{"from":2025,"to":5550},{"from":5059,"to":200},{"from":5060,"to":200},{"from":33,"to":200},{"from":40,"to":200},{"from":198,"to":5551},{"from":294,"to":198},{"from":200,"to":198},{"from":731,"to":5554},{"from":1664,"to":5554},{"from":2844,"to":5554},{"from":4880,"to":5572},{"from":4881,"to":5572},{"from":5574,"to":5573},{"from":1004,"to":5578},{"from":66,"to":5581},{"from":5581,"to":5582},{"from":68,"to":5582},{"from":5602,"to":5601},{"from":5600,"to":5604},{"from":5605,"to":5604},{"from":5606,"to":5604},{"from":5602,"to":5604},{"from":5607,"to":5604},{"from":5609,"to":5608},{"from":1327,"to":5609},{"from":1328,"to":5609},{"from":1329,"to":5609},{"from":5392,"to":5610},{"from":5392,"to":5611},{"from":3326,"to":3325},{"from":280,"to":5628},{"from":11,"to":5628},{"from":1183,"to":5628},{"from":2,"to":5629},{"from":12,"to":5629},{"from":15,"to":5629},{"from":5628,"to":5629},{"from":3200,"to":5629},{"from":5630,"to":5629},{"from":280,"to":5630},{"from":11,"to":5630},{"from":1183,"to":5630},{"from":265,"to":267},{"from":3116,"to":5635},{"from":2344,"to":5641},{"from":2347,"to":5641},{"from":2348,"to":5641},{"from":2210,"to":5641},{"from":3422,"to":5661},{"from":1910,"to":5661},{"from":4833,"to":1571},{"from":4311,"to":1571},{"from":3080,"to":1571},{"from":1072,"to":1571},{"from":952,"to":5664},{"from":954,"to":5664},{"from":1761,"to":5664},{"from":2562,"to":5664},{"from":410,"to":5664},{"from":959,"to":5664},{"from":458,"to":5664},{"from":4543,"to":4544},{"from":1552,"to":5666},{"from":1553,"to":5666},{"from":1554,"to":5666},{"from":1555,"to":5666},{"from":1552,"to":5667},{"from":1553,"to":5667},{"from":1554,"to":5667},{"from":1555,"to":5667},{"from":82,"to":5673},{"from":83,"to":5673},{"from":84,"to":5673},{"from":82,"to":5676},{"from":83,"to":5676},{"from":84,"to":5676},{"from":5677,"to":2310},{"from":5679,"to":5678},{"from":5678,"to":5678},{"from":5680,"to":2240},{"from":2240,"to":2240},{"from":5682,"to":5682},{"from":5683,"to":5682},{"from":540,"to":5684},{"from":540,"to":5687},{"from":5689,"to":5688},{"from":5688,"to":5688},{"from":1193,"to":3357},{"from":410,"to":3357},{"from":5700,"to":5701},{"from":411,"to":5702},{"from":5744,"to":5745},{"from":1743,"to":5750},{"from":3474,"to":5751},{"from":2192,"to":5755},{"from":597,"to":5755},{"from":2885,"to":5755},{"from":570,"to":68},{"from":260,"to":68},{"from":4763,"to":68},{"from":5756,"to":68},{"from":2261,"to":68},{"from":67,"to":68},{"from":5757,"to":68},{"from":5582,"to":68},{"from":5758,"to":68},{"from":66,"to":68},{"from":3170,"to":68},{"from":1160,"to":68},{"from":1,"to":5762},{"from":393,"to":5765},{"from":395,"to":5765},{"from":652,"to":5767},{"from":2661,"to":5767},{"from":5772,"to":5774},{"from":5773,"to":5774},{"from":3478,"to":5774},{"from":5780,"to":5757},{"from":68,"to":5757},{"from":66,"to":5780},{"from":1743,"to":5784},{"from":4713,"to":5789},{"from":5789,"to":5790},{"from":628,"to":5791},{"from":3320,"to":5791},{"from":136,"to":5060},{"from":129,"to":5060},{"from":133,"to":5060},{"from":134,"to":5060},{"from":135,"to":5060},{"from":138,"to":5060},{"from":385,"to":5060},{"from":140,"to":5060},{"from":141,"to":5060},{"from":29,"to":5060},{"from":30,"to":5060},{"from":31,"to":5060},{"from":139,"to":5060},{"from":36,"to":5060},{"from":37,"to":5060},{"from":38,"to":5060},{"from":41,"to":5060},{"from":258,"to":1671},{"from":5064,"to":5794},{"from":5065,"to":5794},{"from":5795,"to":5794},{"from":1083,"to":5794},{"from":5796,"to":5794},{"from":561,"to":5800},{"from":562,"to":5800},{"from":563,"to":5800},{"from":564,"to":5800},{"from":565,"to":5800},{"from":566,"to":5800},{"from":567,"to":5800},{"from":568,"to":5800},{"from":561,"to":5801},{"from":562,"to":5801},{"from":563,"to":5801},{"from":564,"to":5801},{"from":565,"to":5801},{"from":566,"to":5801},{"from":567,"to":5801},{"from":568,"to":5801},{"from":2352,"to":5804},{"from":5805,"to":5756},{"from":68,"to":5756},{"from":66,"to":5805},{"from":3365,"to":5808},{"from":3366,"to":5808},{"from":3364,"to":5809},{"from":3365,"to":5809},{"from":3366,"to":5809},{"from":1494,"to":1560},{"from":5804,"to":1560},{"from":3927,"to":1560},{"from":169,"to":5812},{"from":988,"to":5812},{"from":513,"to":5812},{"from":4615,"to":5812},{"from":676,"to":5812},{"from":677,"to":5812},{"from":168,"to":5812},{"from":16,"to":5814},{"from":17,"to":5814},{"from":5814,"to":5815},{"from":5056,"to":5816},{"from":4724,"to":5819},{"from":5059,"to":5819},{"from":5060,"to":5819},{"from":199,"to":5819},{"from":199,"to":5820},{"from":30,"to":5822},{"from":31,"to":5822},{"from":1388,"to":5822},{"from":1391,"to":5822},{"from":36,"to":5822},{"from":37,"to":5822},{"from":280,"to":5823},{"from":4015,"to":5823},{"from":2857,"to":5823},{"from":5843,"to":5842},{"from":5842,"to":2124},{"from":1494,"to":3927},{"from":3764,"to":3927},{"from":1552,"to":5853},{"from":1553,"to":5853},{"from":1554,"to":5853},{"from":1555,"to":5853},{"from":5857,"to":5856},{"from":953,"to":5859},{"from":3314,"to":5859},{"from":2859,"to":5859},{"from":960,"to":5859},{"from":1552,"to":2068},{"from":1553,"to":2068},{"from":1554,"to":2068},{"from":1555,"to":2068},{"from":82,"to":5860},{"from":83,"to":5860},{"from":84,"to":5860},{"from":82,"to":5861},{"from":83,"to":5861},{"from":84,"to":5861},{"from":82,"to":5862},{"from":83,"to":5862},{"from":84,"to":5862},{"from":5864,"to":5864},{"from":5865,"to":5864},{"from":5868,"to":5867},{"from":5867,"to":5867},{"from":5869,"to":2253},{"from":2253,"to":2253},{"from":5870,"to":2254},{"from":2254,"to":2254},{"from":5871,"to":5871},{"from":5872,"to":5871},{"from":582,"to":5873},{"from":2057,"to":5873},{"from":4575,"to":5873},{"from":4576,"to":5873},{"from":2055,"to":5873},{"from":2053,"to":5873},{"from":2059,"to":5873},{"from":17,"to":5874},{"from":540,"to":5878},{"from":5880,"to":5879},{"from":5879,"to":5879},{"from":5884,"to":5883},{"from":5883,"to":5883},{"from":384,"to":5896},{"from":1046,"to":5896},{"from":5900,"to":5899},{"from":5899,"to":5901},{"from":821,"to":5902},{"from":1671,"to":5902},{"from":258,"to":5902},{"from":922,"to":5902},{"from":393,"to":5903},{"from":133,"to":5903},{"from":369,"to":5903},{"from":2335,"to":5903},{"from":139,"to":5903},{"from":140,"to":5903},{"from":4311,"to":5903},{"from":141,"to":5903},{"from":682,"to":5903},{"from":2670,"to":5903},{"from":2334,"to":5903},{"from":2271,"to":5903},{"from":1942,"to":5905},{"from":596,"to":5905},{"from":537,"to":5906},{"from":538,"to":5906},{"from":539,"to":5906},{"from":540,"to":5906},{"from":2271,"to":5907},{"from":1072,"to":5907},{"from":2334,"to":5908},{"from":2335,"to":5908},{"from":2337,"to":5908},{"from":2336,"to":5908},{"from":2334,"to":5909},{"from":2336,"to":5909},{"from":2337,"to":5909},{"from":135,"to":2083},{"from":141,"to":2083},{"from":29,"to":1317},{"from":1318,"to":1317},{"from":1327,"to":5910},{"from":1328,"to":5910},{"from":1329,"to":5910},{"from":5913,"to":5914},{"from":221,"to":1148},{"from":5919,"to":1148},{"from":140,"to":1148},{"from":139,"to":1148},{"from":141,"to":1148},{"from":5509,"to":5920},{"from":5509,"to":5921},{"from":5929,"to":5929},{"from":5930,"to":5929},{"from":2533,"to":5942},{"from":2534,"to":5942},{"from":977,"to":5943},{"from":954,"to":5946},{"from":369,"to":5946},{"from":370,"to":5946},{"from":1310,"to":1311},{"from":954,"to":5950},{"from":954,"to":5951},{"from":3944,"to":5951},{"from":956,"to":5951},{"from":957,"to":5951},{"from":954,"to":5952},{"from":1013,"to":5952},{"from":1464,"to":5953},{"from":384,"to":5955},{"from":386,"to":5955},{"from":4874,"to":5965},{"from":4875,"to":5965},{"from":5966,"to":2819},{"from":135,"to":5966},{"from":136,"to":5966},{"from":139,"to":5966},{"from":923,"to":5966},{"from":2546,"to":5966},{"from":140,"to":5966},{"from":141,"to":5966},{"from":540,"to":1412},{"from":4256,"to":1575},{"from":219,"to":5985},{"from":126,"to":5985},{"from":221,"to":5985},{"from":139,"to":5985},{"from":2819,"to":3579},{"from":988,"to":3579},{"from":2086,"to":3579},{"from":821,"to":3579},{"from":2085,"to":3579},{"from":1127,"to":3579},{"from":5004,"to":3579},{"from":676,"to":3579},{"from":1308,"to":3579},{"from":922,"to":3579},{"from":2820,"to":3579},{"from":567,"to":5986},{"from":568,"to":5986},{"from":5988,"to":5987},{"from":1026,"to":5989},{"from":1027,"to":5989},{"from":1028,"to":5989},{"from":1024,"to":5989},{"from":1029,"to":5989},{"from":66,"to":5990},{"from":5990,"to":5758},{"from":68,"to":5758}],"nodes":[{"dept":"CSE","description":"An introduction to the mathematical theory of computability. Formal languages. Finite automata and regular expression. Push-down automata and context-free languages. Computable or recursive functions: Turing machines, the halting problem. Undecidability. Credit not offered for both Math 166 and CSE 105. Equivalent to Math 166. ","edges_from":[1,2,3,4,5,6,7,8,9],"edges_to":[10,782],"id":0,"label":"CSE 105","title":"Theory of Computability (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[0,5762],"id":1,"label":"CSE 12","title":""},{"dept":"CSE","description":"","edges_from":[9,3],"edges_to":[0,10,5629],"id":2,"label":"CSE 21","title":""},{"dept":"CSE","description":"","edges_from":[4024,393,395],"edges_to":[0,2,796,1182],"id":3,"label":"CSE 20","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[0],"id":4,"label":"MATH 184","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[0],"id":5,"label":"CSE 15L","title":""},{"dept":"MATH","description":"","edges_from":[385,7],"edges_to":[0,1036,1037,734,679],"id":6,"label":"MATH 100A","title":""},{"dept":"MATH","description":"","edges_from":[139,140,141,134],"edges_to":[0,384,6,8,12,796,1182],"id":7,"label":"MATH 109","title":""},{"dept":"MATH","description":"","edges_from":[385,7],"edges_to":[0,734,679],"id":8,"label":"MATH 103A","title":""},{"dept":"MATH","description":"","edges_from":[393,395,2670],"edges_to":[0,2,1182],"id":9,"label":"MATH 15A","title":""},{"dept":"CSE","description":"Topics include private and public-key cryptography, block ciphers, data encryption, authentication, key distribution and certification, pseudorandom number generators, design and analysis of protocols, zero-knowledge proofs, and advanced protocols. Emphasizes rigorous mathematical approach including formal definitions of security goals and proofs of protocol security. ","edges_from":[0,2,11,12,13,14,15],"edges_to":[],"id":10,"label":"CSE 107","title":"Introduction to Modern Cryptography (4)"},{"dept":"CSE","description":"","edges_from":[16,17],"edges_to":[2053,2057,10,1743,5425,4407,5628,5630],"id":11,"label":"CSE 101","title":""},{"dept":"MATH","description":"","edges_from":[385,7],"edges_to":[10,5629],"id":12,"label":"MATH 184A","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[10],"id":13,"label":"MATH 15B","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[10],"id":14,"label":"MATH 166","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[10,5629],"id":15,"label":"MATH 154","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[11,4868,2053,582,2057,2059,3889,5426,5814,4861,4862,4575],"id":16,"label":"MATH 176","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[4256,11,4868,2053,582,5425,2057,2059,5874,5423,3889,5426,3411,5814,4407,3004,4861,4862,4575],"id":17,"label":"CSE 100","title":""},{"dept":"CSE","description":"Introduction to Probability and Statistics (4)","edges_from":[],"edges_to":[3642],"id":18,"label":"CSE 103","title":"A Practical"},{"dept":"SOCI","description":"Honors Seminar: Supervised Thesis Research (4)","edges_from":[],"edges_to":[],"id":19,"label":"SOCI 196B","title":""},{"dept":"SOCI","description":"Honors Seminar: Advanced Studies in Sociology (4)","edges_from":[],"edges_to":[],"id":20,"label":"SOCI 196A","title":""},{"dept":"HIEA","description":"The impact of modern transformations on female roles and gender relations in China, Japan, and Korea, focusing on the late imperial/early modern periods through the twentieth century.","edges_from":[],"edges_to":[],"id":21,"label":"HIEA 125","title":"Women and Gender in East Asia (4)"},{"dept":"GLBH","description":"Provides a foundational interdisciplinary understanding of complex global health issues and introduces major concepts and principles in global health. The course surveys the range of problems contributing to the global burden of disease and disability including infectious disease, mental illness, refugee and immigrant health, natural disasters, climate change, and food insecurity.","edges_from":[],"edges_to":[],"id":22,"label":"GLBH 20","title":"Introduction to Global Health (4)"},{"dept":"PHIL","description":"Introduction to nineteenth-century philosophy, focusing on skepticism","edges_from":[],"edges_to":[488],"id":23,"label":"PHIL 33","title":"Philosophy between Reason and Despair (4)"},{"dept":"PHIL","description":"Beginning with the contrast between medieval and early modern thought,","edges_from":[],"edges_to":[488],"id":24,"label":"PHIL 32","title":"Philosophy and the Rise of Modern Science (4)"},{"dept":"PHIL","description":"to Ancient Philosophy (4)","edges_from":[],"edges_to":[],"id":25,"label":"PHIL 31","title":"Introduction"},{"dept":"HIEU","description":"This course will be a comparative and thematic examination of the fascist movement and regimes in Europe from the 1920s to the 1940s. In particular, it will focus on the emergence of the two major fascist movements in Italy and Germany. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ","edges_from":[],"edges_to":[],"id":26,"label":"HIEU 172/272","title":"Comparative European Fascism (4)"},{"dept":"PHIL","description":"An exploration of central philosophical issues as they have been taken up in the diverse philosophical traditions of the Americas, such as indigenous philosophy, Latin American philosophy, American Pragmatism, and the Civil Rights movement, among others. Topics may include ethics, social and political philosophy, colonialism, philosophy of race and gender, environmentalism, and issues in philosophy of language.","edges_from":[],"edges_to":[],"id":27,"label":"PHIL 35","title":"Philosophy in the Americas (4)"},{"dept":"PHYS","description":"Project-based course developing tools and techniques of observational astrophysical research: photon counting, imaging, spectroscopy, astrometry; collecting data at the telescope; data reduction and analysis; probability functions; error analysis techniques; and scientific writing. ","edges_from":[32,33,34,35,36,37,38,39,40,41,29,30,31],"edges_to":[],"id":28,"label":"PHYS 164","title":"Observational Astrophysics Research Lab (4)"},{"dept":"PHYS","description":"","edges_from":[129,133],"edges_to":[258,1673,653,654,1295,28,31,32,33,34,35,1316,1317,39,169,5037,1847,5052,5437,446,5059,5060,477,1128,2025,1388,1390,5233,5369,1019],"id":29,"label":"PHYS 2A","title":""},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[1673,5263,5060,28,158,32,34,35,39,1195,5052,445,446,447,448,5059,2884,598,3343,477,2025,5437,5233,5822,4728],"id":30,"label":"PHYS 2C","title":""},{"dept":"PHYS","description":"","edges_from":[129,133,38,138,29,134],"edges_to":[32,33,34,35,2884,5822,39,1673,5052,5437,1391,5233,5059,213,2025,5060,922,28,477,446,4277],"id":31,"label":"PHYS 2B","title":""},{"dept":"PHYS","description":"","edges_from":[33,36,37,38,40,41,29,30,31],"edges_to":[28],"id":32,"label":"PHYS 163","title":""},{"dept":"PHYS","description":"","edges_from":[385,38,135,136,29,31],"edges_to":[32,448,34,35,2884,39,200,5052,1195,5263,1231,3343,212,443,28,445,447],"id":33,"label":"PHYS 2D","title":""},{"dept":"PHYS","description":"","edges_from":[33,36,37,38,40,41,29,30,31],"edges_to":[28],"id":34,"label":"PHYS 161","title":""},{"dept":"PHYS","description":"","edges_from":[33,36,37,38,40,41,29,30,31],"edges_to":[28],"id":35,"label":"PHYS 160","title":""},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[32,34,35,2884,39,5052,5233,5059,5822,5060,28,5437,446],"id":36,"label":"PHYS 4C","title":""},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[32,34,35,2884,39,5052,5233,5059,5060,28,5437,5822],"id":37,"label":"PHYS 4B","title":""},{"dept":"PHYS","description":"","edges_from":[129,133],"edges_to":[32,33,34,35,5060,39,1128,5052,1295,5233,5059,1847,28,5437,446,31],"id":38,"label":"PHYS 4A","title":""},{"dept":"PHYS","description":"","edges_from":[33,36,37,38,40,41,29,30,31],"edges_to":[28],"id":39,"label":"PHYS 162","title":""},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[32,34,35,2884,39,200,5052,1231,443,28],"id":40,"label":"PHYS 4E","title":""},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[32,34,35,2884,39,5052,1231,5059,5060,28,446],"id":41,"label":"PHYS 4D","title":""},{"dept":"AAS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to 15-20 students. Enrollment priority will be given to freshmen. Seminars are open to sophomores, juniors and seniors on a space available basis. P/NP grades only. May be taken for credit four times.","edges_from":[],"edges_to":[],"id":42,"label":"AAS 87","title":"Freshman Seminar (1)"},{"dept":"CSE","description":"(Formerly CSE 228H.) Techniques for speeding up Internet implementations, including system restructuring, new algorithms, and hardware innovations. Topics include: models for protocols, systems and hardware; efficiency principles; applying these principles to deriving techniques for efficient implementation of common endnode and router functions. ","edges_from":[44,45],"edges_to":[],"id":43,"label":"CSE 222B","title":"Internet Algorithmics (4)"},{"dept":"CSE","description":"","edges_from":[45],"edges_to":[43,2195],"id":44,"label":"CSE 222A","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[43,44],"id":45,"label":"CSE 123A","title":""},{"dept":"MGT","description":"Offers a pragmatic view into the world of sales, from its strategic importance to the day-to-day creation and management of a sales organization. Students will also have the opportunity to develop and practice their own sales skills. Letter grades only. Students may not earn credit for both MGT 480 and MGT 206. Also, students may not receive credit for MGT 480 and MGT 209 Topics in Marketing with the course subtitle Sales and Sales Management. ","edges_from":[],"edges_to":[],"id":46,"label":"MGT 480","title":"Sales and Sales Management (4)"},{"dept":"VIS","description":"This course for the advanced visual arts major explores the natural and altered environment as a basis for subject as well as placement of work pertaining to the environment. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":47,"label":"VIS 110G","title":"The Natural and Altered Environment (4)"},{"dept":"LTEA","description":"A survey of different genres of traditional Chinese poetry from various periods.","edges_from":[],"edges_to":[],"id":48,"label":"LTEA 100A","title":"Classical Chinese Poetry in Translation (4)"},{"dept":"LTEA","description":"A survey of Chinese poetry written in the vernacular from 1918 to 1949.","edges_from":[],"edges_to":[],"id":49,"label":"LTEA 100B","title":"Modern Chinese Poetry in Translation (4)"},{"dept":"LTEA","description":"Contemporary Chinese Poetry in Translation (4)","edges_from":[],"edges_to":[],"id":50,"label":"LTEA 100C","title":""},{"dept":"CAT","description":"Individual independent research or creative project. Designated for Sixth College students to have the opportunity to work on a project supervised by a faculty member in a specific department, where the subject or content of the project cannot be represented by the academic department of the faculty member. ","edges_from":[52,53,54],"edges_to":[],"id":51,"label":"CAT 199","title":"Culture, Art, and Technology Independent Studies (4)"},{"dept":"CAT","description":"","edges_from":[],"edges_to":[4367,1682,51,54,55,57],"id":52,"label":"CAT 1","title":""},{"dept":"CAT","description":"","edges_from":[54],"edges_to":[3810,261,4367,272,273,1682,51,55,57,1887,287],"id":53,"label":"CAT 3","title":""},{"dept":"CAT","description":"","edges_from":[52],"edges_to":[3810,261,4367,272,273,1682,51,53,55,57,1887,287],"id":54,"label":"CAT 2","title":""},{"dept":"CAT","description":"Directed group studies or, in group, field studies of a creative project. Designated for Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive than individual special studies. ","edges_from":[52,53,54],"edges_to":[],"id":55,"label":"CAT 198","title":"Culture, Art, and Technology Directed Group Studies (4)"},{"dept":"CAT","description":"Undergraduate instructional assistance. Responsibilities in areas of learning and instruction. May collect course material and assist with course projects, digital workshops, and collection, organization and analysis of formative assessment data. ","edges_from":[],"edges_to":[],"id":56,"label":"CAT 195","title":"Apprentice Teaching (4)"},{"dept":"CAT","description":"Supervised community-based or industry-based fieldwork. Designated for Sixth College students to have the opportunity to work on a community-based or industry-based project supervised by a faculty member and community or industry mentor in which the subject or content of the project cannot be represented by a specific academic department. Students will submit written evaluations each week of their ongoing field study. ","edges_from":[52,53,54],"edges_to":[],"id":57,"label":"CAT 197","title":"Culture, Art, and Technology Field Studies (4)"},{"dept":"CAT","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Culture, Art, and Technology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":58,"label":"CAT 192","title":"Senior Seminar in Culture, Art, and Technology (1)"},{"dept":"ECON","description":"Theoretical and empirical issues in finance. (Previously numbered Econ 214A.)","edges_from":[],"edges_to":[],"id":59,"label":"ECON 270","title":"Finance—Core Asset Pricing (4)"},{"dept":"ECON","description":"Theoretical and empirical issues in finance. (Previously numbered Econ 214C.)","edges_from":[],"edges_to":[],"id":60,"label":"ECON 272","title":"Finance—Theory and Testing of Intertemporal Asset Pricing Models (4)"},{"dept":"SE","description":"Directed group study, on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":61,"label":"SE 198","title":"Directed Study Group (4)"},{"dept":"SE","description":"Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":62,"label":"SE 199","title":"Independent Study (1–4)"},{"dept":"SE","description":"Teaching and tutorial assistance in a SE course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":63,"label":"SE 195","title":"Teaching (2–4)"},{"dept":"SE","description":"An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, etc., under the supervision of a faculty member and industrial supervisor. Coordination of the Engineering Internship is conducted through UC San Diego’s Academic Internship Program. ","edges_from":[],"edges_to":[],"id":64,"label":"SE 197","title":"Engineering Internship (1–4)"},{"dept":"BENG","description":"Development of design project in bioinformatics bioengineering. ","edges_from":[66],"edges_to":[67],"id":65,"label":"BENG 126A","title":"Design Development in Bioinformatics Bioengineering (3)"},{"dept":"BENG","description":"","edges_from":[],"edges_to":[65,259,68,5990,3169,1161,5581,5805,2260,5780,571,4764],"id":66,"label":"BENG 187B","title":""},{"dept":"BENG","description":"Implementation of design project in bioinformatics bioengineering. ","edges_from":[65,68],"edges_to":[68],"id":67,"label":"BENG 126B","title":"Design Implementation in Bioinformatics Bioengineering (3)"},{"dept":"BENG","description":"","edges_from":[66,67,260,1160,3170,5582,2261,570,4763,5756,5757,5758],"edges_to":[4481,3170,67,260,1160,5582,2261,570,5756,5757,5758],"id":68,"label":"BENG 187C","title":""},{"dept":"MATH","description":"Topics from partially ordered sets, Mobius functions, simplicial complexes and shell ability. Enumeration, formal power series and formal languages, generating functions, partitions. Lagrange inversion, exponential structures, combinatorial species. Finite operator methods, q-analogues, Polya theory, Ramsey theory. Representation theory of the symmetric group, symmetric functions and operations with Schur functions.","edges_from":[],"edges_to":[],"id":69,"label":"MATH 264A-B-C","title":"Combinatorics (4-4-4)"},{"dept":"EDS","description":"Individual guided reading and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ","edges_from":[],"edges_to":[],"id":70,"label":"EDS 199","title":"Special Studies (4)"},{"dept":"EDS","description":"Directed group study, guided reading, and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ","edges_from":[],"edges_to":[],"id":71,"label":"EDS 198","title":"Directed Group Study (4–2)"},{"dept":"ECE","description":"Review of discrete-time systems and signals, Discrete-Time Fourier Transform and its properties, the Fast Fourier Transform, design of Finite Impulse Response (FIR) and Infinite Impulse Response (IIR) filters, implementation of digital filters. ","edges_from":[73],"edges_to":[],"id":72,"label":"ECE 161A","title":"Introduction to Digital Signal Processing (4)"},{"dept":"ECE","description":"","edges_from":[1671],"edges_to":[72,1473,4261],"id":73,"label":"ECE 101","title":""},{"dept":"ECE","description":"Sampling and quantization of baseband signals;","edges_from":[],"edges_to":[],"id":74,"label":"ECE 161B","title":"Digital Signal Processing I (4)"},{"dept":"DOC","description":"Using the arts, this course examines the evolution of pluralistic culture to the modern period. There is a special emphasis on the interdisciplinary study of twentieth-century American culture, including music, literature, art, film, and photography. The course offers intensive instruction in writing university-level expository prose. Three hours of lecture, two hours of discussion and writing instruction. Open to Marshall College students only. (Letter grade only.) Prerequisite: completion of UC Entry Level Writing requirement. (S)","edges_from":[],"edges_to":[3810,261,272,273,1682,287,1887],"id":75,"label":"DOC 3","title":"Dimensions of Culture: Imagination (6)"},{"dept":"DOC","description":"This course considers the nature of justice in philosophical, historical, and legal terms. Topics include racial justice, political representation, economic justice, gender and justice, the rights of cultural minorities, and crime and punishment. The course offers intensive instruction in writing university-level expository prose. Three hours of lecture, two hours of discussion and writing instruction. Open to Marshall College students only. (Letter grade only.) Prerequisite: completion of UC Entry Level Writing requirement. (W)","edges_from":[],"edges_to":[3810,261,272,273,1682,287,4508,1887],"id":76,"label":"DOC 2","title":"Dimensions of Culture: Justice (6)"},{"dept":"DOC","description":"This course focuses on sociocultural diversity in examining class, ethnicity, race, gender, and sexuality as significant markers of differences among persons. Emphasizing American society, it explores the cultural understandings of diversity and its economic, moral, and political consequences. Three hours of lecture, one hour of discussion. Open to Marshall College students only. (Letter grade only.) (F)","edges_from":[],"edges_to":[1682,2236],"id":77,"label":"DOC 1","title":"Dimensions of Culture: Diversity (4)"},{"dept":"SE","description":"Materials testing for cement and concrete, metals and alloys, polymers and composites, and wood. Materials selection and structural design to meet functional and cost requirements. Structural construction and testing. Materials measurement techniques. Use of computer resources. ","edges_from":[79],"edges_to":[3745],"id":78,"label":"SE 104L","title":"Structural Materials Lab (1)"},{"dept":"SE","description":"","edges_from":[1318,653,654],"edges_to":[3745,78],"id":79,"label":"SE 104","title":""},{"dept":"ETHN","description":"An intensive survey of social and cultural theory, focusing on how constructions of science, language, politics, and social inequality shaped early modernity, romantic nationalism, Marxism, cultural relativity, psychoanalysis, and fin de siècle social thought. The second quarter surveys poststructuralist, postmodern, feminist, subaltern studies, globalization, and other critiques. ETHN 257A is not a prerequisite for ETHN 257B.","edges_from":[],"edges_to":[],"id":80,"label":"ETHN 257A-B","title":"Social Theory (4-4)"},{"dept":"LTSP","description":"This course will study the representations of a variety of social issues (immigration, racism, class differences, violence, inter/intra-ethnic relations, etc.) in works written in Spanish by Latino/a and Chicano/a writers. May be taken up to two times for credit when topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":81,"label":"LTSP 154","title":"Latino/a and Chicano/a Literature (4)"},{"dept":"LTSP","description":"","edges_from":[2416,2418],"edges_to":[1409,342,520,5676,153,5673,812,5862,4916,4917,4406,583,584,585,586,587,588,81,341,86,343,90,5861,5473,5860,5478,1126,4073,4594],"id":82,"label":"LTSP 50A","title":""},{"dept":"LTSP","description":"","edges_from":[2416,2418],"edges_to":[1409,342,520,5676,153,5673,812,5862,4916,4917,4406,583,584,585,586,587,588,81,341,86,343,90,5861,5473,5860,5478,1126,4073,4594],"id":83,"label":"LTSP 50B","title":""},{"dept":"LTSP","description":"","edges_from":[2416,2418],"edges_to":[1409,342,520,5676,153,5673,812,5862,4916,4917,4406,583,584,585,586,587,588,81,341,86,343,90,5861,5473,5860,5478,1126,4073,4594],"id":84,"label":"LTSP 50C","title":""},{"dept":"ANTH","description":"This course focuses on the debate about multiculturalism in American society. It examines the interaction of race, ethnicity, and class, historically and comparatively, and considers the problem of citizenship in relation to the growing polarization of multiple social identities.","edges_from":[],"edges_to":[2236,159],"id":85,"label":"ANTH 23","title":"Debating Multiculturalism: Race, Ethnicity, and Class in American Societies (4)"},{"dept":"LTSP","description":"Cross-disciplinary study of late twentieth-century Chicano/a-Latino/a literature, the visual and performing arts, film, or other cultural practices. Representative areas of study are social movements, revolution, immigration, globalization, gender and sexuality, cultures of the U.S.-Mexican border, and Chicano/a-Mexicano/a literary relations. May be taken up to two times for credit when topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":86,"label":"LTSP 151","title":"Topics in Chicano/a-Latino/a Cultures (4)"},{"dept":"ANTH","description":"Why does racism still matter? How is racism experienced in the United States and across the globe? With insights from the biology of human variation, archaeology, colonial history, and sociocultural anthropology, we examine how notions of race and ethnicity structure contemporary societies.","edges_from":[],"edges_to":[2236,159],"id":87,"label":"ANTH 21","title":"Race and Racisms (4)"},{"dept":"MATH","description":"Various topics in algebraic geometry. May be taken for credit nine times. ","edges_from":[],"edges_to":[],"id":88,"label":"MATH 208","title":"Seminar in Algebraic Geometry (1)"},{"dept":"MATH","description":"Various topics in number theory. ","edges_from":[],"edges_to":[],"id":89,"label":"MATH 209","title":"Seminar in Number Theory (1)"},{"dept":"LTSP","description":"An introduction to methodological and historical trends in Latin American and Caribbean cultural and literary studies. This course includes cultural representations from Latin America and the Caribbean such as film, literature, art, music, and/or photography. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":90,"label":"LTSP 159","title":"Methodological Approaches to the Study of History and Culture in Latin America and the Caribbean (4)"},{"dept":"SOCI","description":"Examination of sociological theories for why people have religious beliefs. Also examines types of religious organizations, secularization, fundamentalism, religion and immigration, religion and politics, and religiously inspired violence and terrorism. The class will tend to focus on the American context. ","edges_from":[91,92],"edges_to":[91],"id":91,"label":"SOCI 154","title":"Religious Institutions in America (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[91],"id":92,"label":"SOCC 154","title":""},{"dept":"SOCI","description":"A research-oriented course studying a specific city. Students will describe and analyze a local community of San Diego. Additional work on one citywide institution. Guest lecturers from San Diego organizations and government. Readings largely from city reports and news media. ","edges_from":[93,94],"edges_to":[93],"id":93,"label":"SOCI 155","title":"The City of San Diego (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[93],"id":94,"label":"SOCC 155","title":""},{"dept":"SOCI","description":"Diverse sociological explanations of religious ideas and religious behavior. The social consequences of different kinds of religious beliefs and religious organizations. The influence of religion upon concepts of history, the natural world, human nature, and the social order. The significance of such notions as “sacred peoples” and “sacred places.” The religious-like character of certain political movements and certain sociocultural attitudes. ","edges_from":[96,95],"edges_to":[95],"id":95,"label":"SOCI 156","title":"Sociology of Religion (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[95],"id":96,"label":"SOCC 156","title":""},{"dept":"SOCI","description":"Sacred texts, religious experiences, and ritual settings are explored from the perspective of sociological analysis. The types and dynamic of religious sects and institutions are examined. African and contemporary US religious data provide resources for lecture and comparative analysis. ","edges_from":[97,98],"edges_to":[97],"id":97,"label":"SOCI 157","title":"Religion in Contemporary Society (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[97],"id":98,"label":"SOCC 157","title":""},{"dept":"SOCI","description":"Hollywood has had an ongoing obsession with mental illness. This course will examine a number of important or iconic films on this subject. By examining them against a background provided by relevant scholarly materials, we shall develop a critical perspective on these cultural artifacts. ","edges_from":[99,100],"edges_to":[99],"id":99,"label":"SOCI 150","title":"Madness and the Movies (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[99],"id":100,"label":"SOCC 150","title":""},{"dept":"GPPA","description":"Why do public authorities inefficiently distribute scarce economic resources? What are the impacts of such inefficient distribution on welfare and economic development? And how do we design policies to limit inefficiencies in distribution? This course surveys the literature on distributive politics to address these questions. Students may not receive credit for GPPA 405 and the IRGN 490 with the same title.","edges_from":[],"edges_to":[],"id":101,"label":"GPPA 405","title":"Managing the Distributive Politics of Public Policy (4)"},{"dept":"SOCI","description":"(Same as USP 133.) Primary focus on understanding and analyzing poverty and public policy. Analysis of how current debates and public policy initiatives mesh with alternative social scientific explorations of poverty. ","edges_from":[102,103],"edges_to":[102],"id":102,"label":"SOCI 152","title":"Social Inequality and Public Policy (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[102],"id":103,"label":"SOCC 152","title":""},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ","edges_from":[],"edges_to":[],"id":104,"label":"Linguistics/Heritage Languages (LIHL) 132F","title":"Advanced Filipino for Filipino Speakers (4)"},{"dept":"POLI","description":"An accelerated course in computer programming and data analytics for collecting, analyzing, and understanding data in the social world. Students engage in hands-on learning with applied social science problems, developing statistical and computational skills for sophisticated data manipulation, analysis, visualization. ","edges_from":[106,107],"edges_to":[],"id":105,"label":"POLI 172","title":"Advanced Social Data Analytics (4)"},{"dept":"POLI","description":"","edges_from":[],"edges_to":[105,5151,5531,4543],"id":106,"label":"POLI 30","title":""},{"dept":"POLI","description":"","edges_from":[],"edges_to":[105],"id":107,"label":"POLI 30D","title":""},{"dept":"ECON","description":"Examination of recent research in macroeconomics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ","edges_from":[109],"edges_to":[],"id":108,"label":"ECON 212A-B-C","title":"Workshop in Macroeconomics (0–4/0–4/0–4)"},{"dept":"ECON","description":"","edges_from":[1580],"edges_to":[1794,1579,108,1582,1583,1584,1585],"id":109,"label":"ECON 210C","title":""},{"dept":"POLI","description":"This class explores how we can make policy recommendations using data. We attempt to establish causal relationships between policy intervention and outcomes based on statistical evidence. Hands-on examples will be provided throughout the course. ","edges_from":[],"edges_to":[],"id":110,"label":"POLI 171","title":"Making Policy with Data (4)"},{"dept":"SOCI","description":"The role of Islam in the society, culture, and politics of the Muslim people during the nineteenth and twentieth centuries; attempts by Muslim thinkers to accommodate or reject rival ideologies (such as nationalism and socialism); and a critical review of the relationship between Islam and the West. ","edges_from":[112,111],"edges_to":[111],"id":111,"label":"SOCI 158","title":"Islam in the Modern World (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[111],"id":112,"label":"SOCD 158","title":""},{"dept":"SOCI","description":"Topics in Social Organizations and Institutions (4)","edges_from":[],"edges_to":[],"id":113,"label":"SOCI 159","title":"Special"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ","edges_from":[],"edges_to":[],"id":114,"label":"Linguistics/Heritage Languages (LIHL) 132P","title":"Advanced Filipino for Filipino Speakers (4)"},{"dept":"PSYC","description":"This course provides an overview of the intersection between psychology and the legal system, covering a broad range of forensically relevant issues. Topics may include false memories, false confessions, eyewitness reliability, lie detection, DNA exonerations of the wrongfully convicted, jury decision making, and neuroscience and the law Recommended preparation: PSYC 60. ","edges_from":[],"edges_to":[],"id":115,"label":"PSYC 162","title":"Psychology and the Law (4)"},{"dept":"PSYC","description":"This course provides an overview of the scientific study of law making and societal reaction to law breaking activity. Topics include major theories accounting for criminal behavior, the relationship between drugs and crime, the effects of penalties on recidivism, and the psychological effects of incarceration. ","edges_from":[],"edges_to":[],"id":116,"label":"PSYC 164","title":"Criminology (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ","edges_from":[],"edges_to":[],"id":117,"label":"Linguistics/Heritage Languages (LIHL) 132W","title":"Advanced Filipino for Filipino Speakers (4)"},{"dept":"PSYC","description":"This seminar explores how psychologists think about and study the imagination—the capacity to mentally transcend time, place, and circumstance to think about what might have been, plan and anticipate the future, create and become absorbed in fictional worlds, and consider alternatives to actual experiences. You will learn how to evaluate psychological evidence, and how to read, interpret, discuss, present, and write about scientific literature. PC25, PC26, PS28, PC29, PC30, PC31, PC32, PC33, PC34, PC35, HD01, HD02, HD25, HD26, or CG32 major only.","edges_from":[],"edges_to":[],"id":118,"label":"PSYC 167","title":"Science of Imagination (4)"},{"dept":"PSYC","description":"This course provides an overview of psychological disorders in children. Topics may include anxiety disorders, depressive and bipolar disorders, communication and learning disorders, conduct problems, autism, and other conditions. Emphasis is placed on symptomatology, assessment, etiological factors, epidemiology, and treatment. ","edges_from":[],"edges_to":[],"id":119,"label":"PSYC 168","title":"Psychological Disorders of Childhood (4)"},{"dept":"PSYC","description":"This course provides an introduction to the neural mechanisms underlying perception, memory, language, and other mental capacities. Topics include how brain damage affects these capacities and how patients with brain lesions can contribute to our understanding of the normal brain. ","edges_from":[],"edges_to":[],"id":120,"label":"PSYC 169","title":"Brain Damage and Mental Function (4)"},{"dept":"HDP","description":"Topics Seminar in Human Development (4)","edges_from":[],"edges_to":[],"id":121,"label":"HDP 160","title":"Special"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ","edges_from":[],"edges_to":[],"id":122,"label":"Linguistics/Heritage Languages (LIHL) 115W","title":"Korean for Korean Speakers (4)"},{"dept":"MATH","description":"Theory of computation and recursive function theory, Church’s thesis, computability and undecidability. Feasible computability and complexity. Peano arithmetic and the incompleteness theorems, nonstandard models. ","edges_from":[124],"edges_to":[],"id":123,"label":"MATH 260B","title":"Mathematical Logic II (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[123],"id":124,"label":"MATH 260A","title":""},{"dept":"MAE","description":"Build, and Test Race Car (1)","edges_from":[],"edges_to":[],"id":125,"label":"MAE 93","title":"Design Competition—Design,"},{"dept":"NANO","description":"Introduction to the solution of engineering problems using computational methods. Formulating problem statements, selecting algorithms, writing computer programs, and analyzing output using Matlab. Computational problems from NanoEngineering, chemical engineering, and materials science are introduced. The course requires no prior programming skills. Cross-listed with CENG 15. ","edges_from":[],"edges_to":[4277,4085,213,5985,4047],"id":126,"label":"NANO 15","title":"Engineering Computation Using Matlab (4)"},{"dept":"MAE","description":"Directed group study on a topic or in a field not included in the regular departmental curriculum. P/NP grades only. May be taken for credit two times. Credit may not be received for a course numbered 97, 98, or 99 subsequent to receiving credit for a course numbered 197, 198, or 199. ","edges_from":[],"edges_to":[],"id":127,"label":"MAE 98","title":"Directed Group Study (2)"},{"dept":"TDDE","description":"A survey of contemporary and historical concepts and practices in the visual arts of the theatre; studies in text analysis, studio processes and technical production; elementary work in design criticism, scale model making, and costume design. A course serving as an introduction to theatre design and production.","edges_from":[],"edges_to":[4321,2694,3270,2696,3277,2873,2874,3482,3486],"id":128,"label":"TDDE 1","title":"Introduction to Design for the Theatre (4)"},{"dept":"MATH","description":"Foundations of differential and integral calculus of one variable. Functions, graphs, continuity, limits, derivative, tangent line. Applications with algebraic, exponential, logarithmic, and trigonometric functions. Introduction to the integral. (Two credits given if taken after Math 1A/10A and no credit given if taken after Math 1B/10B or Math 1C/10C. Formerly numbered Math 2A.) ","edges_from":[130,131,132],"edges_to":[258,1673,141,5037,1044,686,5060,29,31,1059,1060,1061,38,3624,1194,1707,301,814,5052,5437,5059,2884,2886,220,294,4327,2549,5115],"id":129,"label":"MATH 20A","title":"Calculus for Science and Engineering (4)"},{"dept":"MATH","description":"","edges_from":[1866,1867,132],"edges_to":[129,1059,1060,1061,4327,3624,5037,301,814,141,1044,2549,220,686],"id":130,"label":"MATH 10A","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[129],"id":131,"label":"MATH 2C","title":""},{"dept":"MATH","description":"","edges_from":[1867],"edges_to":[129,130,141],"id":132,"label":"MATH 4C","title":""},{"dept":"MATH","description":"Integral calculus of one variable and its","edges_from":[],"edges_to":[294,1673,5903,3220,5060,29,31,1059,1060,38,3624,1707,4277,1847,5052,5437,5059,2884,2886,215,220,550,1388,1389,1390,1401,5115],"id":133,"label":"MATH 20B","title":"Calculus for Science and Engineering (4)"},{"dept":"MATH","description":"and Analytic Geometry for Science and Engineering (4)","edges_from":[],"edges_to":[7,136,653,654,5060,31,800,801,547,548,294,178,5437,2482,3636,3638,3642,5052,445,448,5059,2884,581,2886,1992,1993,1994,213,5306,5115,1128,1388,1390,1391,2291,1019],"id":134,"label":"MATH 20C","title":"Calculus"},{"dept":"MATH","description":"Ordinary differential equations: exact, separable,","edges_from":[],"edges_to":[4246,1672,1673,652,3343,146,1942,5060,922,1669,33,2083,293,294,169,4277,5437,447,2754,5059,2884,2886,5966,212,598,1129,3437,4727,5369,1018,5115],"id":135,"label":"MATH 20D","title":"Introduction to Differential Equations (4)"},{"dept":"MATH","description":"Change of variable in multiple integrals, Jacobian, Line integrals, Green’s theorem. Vector fields, gradient fields, divergence, curl. Spherical/cylindrical coordinates. Taylor series in several variables. Surface integrals, Stoke’s theorem. Gauss’ theorem. Conservative fields. ","edges_from":[134,137,138,139,140,141],"edges_to":[2336,33,5059,2884,294,2886,2337,169,5966,598,5060,5115,5437],"id":136,"label":"MATH 20E","title":"Vector Calculus (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[136,581],"id":137,"label":"MATH 21C","title":""},{"dept":"MATH","description":"","edges_from":[140],"edges_to":[385,136,5060,31,801,547,548,294,178,2482,5306,5052,5437,5059,2884,2886,1992,1993,1994,1388,1390,1391,5115],"id":138,"label":"MATH 31BH","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[598,7,136,4205,4246,4420,922,5060,2085,294,5425,178,1672,2482,3636,3638,3642,4923,5052,5059,2884,2886,5966,4047,214,5903,5985,3437,4085,5115,1148,4862],"id":139,"label":"MATH 20F","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[1669,7,136,138,5903,1942,5060,2331,2332,2334,2336,2337,290,294,4246,178,2482,3636,3638,3642,4923,5052,5059,2884,2886,4513,5325,5966,598,477,4327,3437,5115,1148],"id":140,"label":"MATH 31AH","title":""},{"dept":"MATH","description":"","edges_from":[129,130,1867,132,1866],"edges_to":[1669,7,136,5903,5060,1942,4420,2331,2332,2334,2336,2337,290,2083,294,4246,178,3636,3638,3642,4923,5052,5059,2884,2886,4513,5325,5966,477,4327,3437,5115,1148],"id":141,"label":"MATH 18","title":""},{"dept":"POLI","description":"This course analyzes the political system of China since 1949, including political institutions, the policy-making process, and the relationship between politics and economics. The main focus is on the post-Mao era of reform beginning in 1978.","edges_from":[],"edges_to":[],"id":142,"label":"POLI 130B","title":"Politics in the People’s Republic of China (4)"},{"dept":"SE","description":"Independent study or research under direction of a faculty member. ","edges_from":[],"edges_to":[],"id":143,"label":"SE 99H","title":"Independent Study (1)"},{"dept":"NANO","description":"Fundamentals in optical imaging and spectroscopy at the nanometer scale. Diffraction-limited techniques, near-field methods, multi-photon imaging and spectroscopy, Raman techniques, Plasmon-enhanced methods, scan-probe techniques, novel sub-diffraction-limit imaging techniques, and energy transfer methods. ","edges_from":[145,146],"edges_to":[],"id":144,"label":"NANO 146","title":"Nanoscale Optical Microscopy and Spectroscopy (4)"},{"dept":"NANO","description":"","edges_from":[954,212,213,215],"edges_to":[144],"id":145,"label":"NANO 103","title":""},{"dept":"NANO","description":"","edges_from":[213,135],"edges_to":[144,5339,4084,4047],"id":146,"label":"NANO 104","title":""},{"dept":"Linguistics/Arabic","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1C. ","edges_from":[148,149],"edges_to":[],"id":147,"label":"Linguistics/Arabic (LIAB) 1CX","title":"Analysis of Arabic (2.5)"},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[147,3243],"id":148,"label":"LIAB 1BX","title":""},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[147,3243],"id":149,"label":"LIAB 1B","title":""},{"dept":"ANTH","description":"This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ","edges_from":[],"edges_to":[],"id":150,"label":"ANTH 147","title":"Understanding the Human Social Order: Anthropology and the Long-Term (4)"},{"dept":"HITO","description":"This course will examine the development of Gnostic Christianity in the first four centuries CE. Students will also explore similar non-Christian religious movements that claimed to have special knowledge (gnosis) of the self, the material world, and the divine.","edges_from":[],"edges_to":[],"id":151,"label":"HITO 103S","title":"Gnosis and Gnosticism (4)"},{"dept":"NEU","description":"This course is to introduce graduate students in the neurosciences to research methods used in electron microscopy (EM) through one hour of formal lecture, one hour of seminar, three hours of demonstration, and three hours of supervised laboratory work per week. Students will become familiar with sectioning EM, scanning EM, and freeze-fracture EM. ","edges_from":[],"edges_to":[],"id":152,"label":"NEU 259","title":"Workshop in Electron Microscopy (4)"},{"dept":"LTSP","description":"Close reading of the 1605 and 1615 texts with special attention to the social and cultural background of the early seventeenth century in Spain. This course fulfills the pre-1900 requirement for Spanish literature majors. ","edges_from":[82,83,84],"edges_to":[],"id":153,"label":"LTSP 119C","title":"Cervantes: Don Quixote (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ","edges_from":[],"edges_to":[],"id":154,"label":"Linguistics/Heritage Languages (LIHL) 134P","title":"Advanced Vietnamese for Vietnamese Speakers (4)"},{"dept":"HIUS","description":"This course explores the emergence of a dominant ideology of womanhood in America in the early nineteenth century and contrasts the ideal with the historically diverse experience of women of different races and classes, from settlement to 1870. Topics include witchcraft, evangelicalism, cult of domesticity, sexuality, rise of industrial capitalism and the transformation of women’s work, the Civil War, and the first feminist movement.","edges_from":[],"edges_to":[],"id":155,"label":"HIUS 156D","title":"American Women, American Womanhood (4)"},{"dept":"MAE","description":"Thermodynamic analysis of power cycles with application to combustion driven engines: internal combustion, diesel, and gas turbines. Thermodynamics of mixtures and chemical and phase equilibrium. Computational methods for calculating chemical equilibrium. Renumbered from MAE 110B. Students may not receive credit for MAE 110 and MAE 110B. ","edges_from":[157,158],"edges_to":[],"id":156,"label":"MAE 110","title":"Thermodynamic Systems (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[512,156,3309,3310],"id":157,"label":"MAE 110A","title":""},{"dept":"MAE","description":"","edges_from":[1318,30],"edges_to":[156],"id":158,"label":"MAE 11","title":""},{"dept":"ANSC","description":"Popular representations of South Asia abound in clichés: poverty and luxury, cities and hamlets, ascetics and call centers. What do these clichés do to our understanding of South Asia? How do we get beneath or beyond these representations? We will respond to these questions by exploring how people in South Asia live on a day-to-day basis, while also attending to how major historical events, such as colonialism and the Partition of India and Pakistan, shape contemporary life and politics. Program or materials fees may apply. ","edges_from":[160,161,162,163,164,165,85,87],"edges_to":[],"id":159,"label":"ANSC 191GS","title":"Everyday Life in South Asia: Beyond the Clichés (4)"},{"dept":"ANSC","description":"","edges_from":[],"edges_to":[162,4658,159],"id":160,"label":"ANSC 148","title":""},{"dept":"ANTH","description":"","edges_from":[],"edges_to":[4658,159],"id":161,"label":"ANTH 103","title":""},{"dept":"ANSC","description":"","edges_from":[160,2449,2450],"edges_to":[4658,159],"id":162,"label":"ANSC 155","title":""},{"dept":"ANTH","description":"","edges_from":[],"edges_to":[159],"id":163,"label":"ANTH 1","title":""},{"dept":"ANSC","description":"","edges_from":[],"edges_to":[4658,159],"id":164,"label":"ANSC 164","title":""},{"dept":"ANSC","description":"","edges_from":[],"edges_to":[4658,159],"id":165,"label":"ANSC 121","title":""},{"dept":"HILA","description":"Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.","edges_from":[],"edges_to":[],"id":166,"label":"HILA 113D","title":"Lord and Peasant in Latin America (4)"},{"dept":"MAE","description":"Basic principles of solar radiation—diffuse and direct radiation; elementary solar energy engineering—solar thermal and solar photovoltaic; basic principles of wind dynamics—hydrodynamic laws, wind intermittency, Betz’s law; elementary wind energy engineering; solar and wind energy perspectives; operating the California power grid with 33 percent renewable energy sources. Students may not receive credit for both MAE 118B and MAE 119. ","edges_from":[168,169],"edges_to":[],"id":167,"label":"MAE 119","title":"Introduction to Renewable Energy: Solar and Wind (4)"},{"dept":"CENG","description":"","edges_from":[],"edges_to":[3264,2032,2667,2052,2049,167,3309,2031,784,5812,3261],"id":168,"label":"CENG 101A","title":""},{"dept":"MAE","description":"","edges_from":[136,923,29,135],"edges_to":[512,2049,2052,2032,167,2667,3264,3309,3310,2031,784,4243,5812,3261],"id":169,"label":"MAE 101A","title":""},{"dept":"POLI","description":"An examination of the dynamics of the Russian Revolution from 1905 through the Stalinist period and recent years in light of theories of revolutionary change. Emphasis is placed on the significance of political thought, socioeconomic stratification, and culturo-historical conditions.","edges_from":[],"edges_to":[],"id":170,"label":"POLI 130AD","title":"The Politics of the Russian Revolution (4)"},{"dept":"TDMV","description":"Introduction to contemporary somatic approaches to dance, building fundamental technical skills, kinetic and perceptual awareness, efficiency, and artistic expression. Choreographic sequences are analyzed through time space coordination and dynamics. Movement exploration includes improvisation and composition. May be taken for credit six times. ","edges_from":[],"edges_to":[5177],"id":171,"label":"TDMV 2","title":"Beginning Contemporary Dance (2)"},{"dept":"Linguistics/German","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1C. ","edges_from":[173,174],"edges_to":[],"id":172,"label":"Linguistics/German (LIGM) 1CX","title":"Analysis of German (2.5)"},{"dept":"LIGM","description":"","edges_from":[],"edges_to":[4876,172],"id":173,"label":"LIGM 1B","title":""},{"dept":"LIGM","description":"","edges_from":[],"edges_to":[4876,172],"id":174,"label":"LIGM 1BX","title":""},{"dept":"TDGR","description":"The second of the three-part introductory stage management series, this course further explores the stage manager’s process, focusing on the technical rehearsal period through the opening of a production. ","edges_from":[176],"edges_to":[177],"id":175,"label":"TDGR 280B","title":"Stage Management 2 (4)"},{"dept":"TDGR","description":"","edges_from":[],"edges_to":[177,175],"id":176,"label":"TDGR 280A","title":""},{"dept":"TDGR","description":"The final course in the three-part introductory stage management series focuses on the stage manager’s role once a production has opened. The course will also address topics such as new plays, touring, dance, multimedia productions, and music. ","edges_from":[176,175],"edges_to":[],"id":177,"label":"TDGR 280C","title":"Stage Management 3 (4)"},{"dept":"DSC","description":"This course, the first of a two-course sequence (DSC 40A-B), will introduce the theoretical foundations of data science. Students will become familiar with mathematical language for expressing data analysis problems and solution strategies, and will receive training in probabilistic reasoning, mathematical modeling of data, and algorithmic problem solving. DSC 40A will introduce fundamental topics in machine learning, statistics, and linear algebra with applications to data analysis. DSC 40A-B connect to DSC 10, 20, and 30 by providing the theoretical foundation for the methods that underlie data science. ","edges_from":[134,138,139,140,141,179],"edges_to":[181,5390],"id":178,"label":"DSC 40A","title":"Theoretical Foundations of Data Science I (4)"},{"dept":"DSC","description":"","edges_from":[],"edges_to":[178,748],"id":179,"label":"DSC 10","title":""},{"dept":"PHIL","description":"An introduction to central topics in philosophy of language with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content. ","edges_from":[],"edges_to":[],"id":180,"label":"PHIL 208","title":"Core Course in Philosophy of Language (4)"},{"dept":"DSC","description":"This course will introduce the theoretical foundations of data science. Students will become familiar with mathematical language for expressing data analysis problems and solution strategies, and will receive training in probabilistic reasoning, mathematical modeling of data, and algorithmic problem-solving. DSC 40B introduces fundamental topics in combinatorics, graph theory, probability, and continuous and discrete algorithms with applications to data analysis. DSC 40A-B connect to DSC 10, 20, and 30 by providing the theoretical foundation for the methods that underlie data science. ","edges_from":[178],"edges_to":[],"id":181,"label":"DSC 40B","title":"Theoretical Foundations of Data Science II (4)"},{"dept":"ECE","description":"Teaching and tutorial activities associated with courses and seminars. Number of units for credit depends on number of hours devoted to class or section assistance. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":182,"label":"ECE 501","title":"Teaching (1–4)"},{"dept":"ETHN","description":"Directed study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":183,"label":"ETHN 99","title":"Independent Study (1–4)"},{"dept":"CLRE","description":"Scholars will select the appropriate sampling method and determine the sample size necessary for specific projects and adjust for confounding. Participants will be familiar with several specialized analytic techniques, including matched, cluster, and meta-analyses. They will also be familiar with methodological issues, unique to ecological, behavioral, and genetic studies. Class sessions may also be offered live via distance learning with established remote site. ","edges_from":[185],"edges_to":[1166],"id":184,"label":"CLRE 257","title":"Epidemiology II (2)"},{"dept":"CLRE","description":"","edges_from":[],"edges_to":[184,690,1166],"id":185,"label":"CLRE 251","title":""},{"dept":"CLRE","description":"This course will review the ethics and basic regulatory issues for research involving human subjects, including access and confidentiality. Scholars will prepare a mock submission to an IRB for peer review and practice and will also review their peers’ proposals. Class sessions may also be offered live via distance learning with established remote site. ","edges_from":[187],"edges_to":[1166],"id":186,"label":"CLRE 256","title":"Patient-Oriented Research II (2)"},{"dept":"CLRE","description":"","edges_from":[],"edges_to":[186,690,1166],"id":187,"label":"CLRE 250","title":""},{"dept":"CLRE","description":"This course provides an orientation to database design and management and covers key issues regarding data handling for clinical research and clinical trials. Scholars will also become familiar with technology assessment and decision-making methods and analysis. Class sessions may also be offered live via distance learning with established remote site.","edges_from":[],"edges_to":[1166],"id":188,"label":"CLRE 255","title":"Data Management and Informatics (2)"},{"dept":"CLRE","description":"Scholars will understand and conduct advanced biostatistical analyses including: multiple linear and logistic regression, survival analysis, and Cox and extended Cox regression. The scholar will also be familiar with person-time rate analysis with Poisson regression and longitudinal data analysis in the presence of missing values and varying measurement times. Class sessions may also be offered live via distance learning with established remote site. ","edges_from":[190],"edges_to":[432,1166],"id":189,"label":"CLRE 254","title":"Biostatistics II (2)"},{"dept":"CLRE","description":"","edges_from":[],"edges_to":[432,427,428,189,1166],"id":190,"label":"CLRE 253","title":""},{"dept":"CLRE","description":"Scholars will evaluate relevant outcomes in patient-oriented research from the patient (quality of life) and societal (economic) perspectives and locate potential resources for assessing the relevant outcomes in a wide variety of study designs. They will also be able to describe the relative strengths of different health services research approaches to a clinical problem. Finally, they will understand the components of clinical practice guidelines, including patient preferences, and how these guidelines both depend upon as well as inform patient-oriented research. Class sessions may also be offered live via distance learning with established remote site.","edges_from":[],"edges_to":[1166],"id":191,"label":"CLRE 252","title":"Health Services Research (2)"},{"dept":"MUS","description":"Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ","edges_from":[],"edges_to":[],"id":192,"label":"MUS 234","title":"Symphonic Orchestra (4)"},{"dept":"MUS","description":"Performance of representative chamber music literature, instrumental and/or vocal, through coached rehearsal and seminar studies. Course may be repeated for credit since the literature studied varies from quarter to quarter. ","edges_from":[],"edges_to":[],"id":193,"label":"MUS 230","title":"Chamber Music Performance (4)"},{"dept":"CLRE","description":"This course covers the key elements of scientific communication skills that are designed to enhance the clinical research’s ability to be successful. Topics include secrets of making good oral presentations and engaging the audience, how to write and prepare abstracts, basics of grant writing and submission, and how grants are reviewed. Course includes mock grant study section. ","edges_from":[],"edges_to":[],"id":194,"label":"CLRE 259","title":"Scientific Communication Skills (2)"},{"dept":"MUS","description":"Individual or master class instruction in advanced instrumental/vocal performance. ","edges_from":[],"edges_to":[],"id":195,"label":"MUS 232","title":"Proseminar in Music Performance (1–4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ","edges_from":[],"edges_to":[],"id":196,"label":"Linguistics/Heritage Languages (LIHL) 114F","title":"Vietnamese for Vietnamese Speakers (4)"},{"dept":"PHYS","description":"Applications of the theory of ideal quantum gases in condensed matter physics, nuclear physics and astrophysics; advanced thermodynamics, the third law, chemical equilibrium, low temperature physics; kinetic theory and transport in nonequilibrium systems; introduction to critical phenomena including mean field theory. ","edges_from":[198,199],"edges_to":[],"id":197,"label":"PHYS 140B","title":"Statistical and Thermal Physics II (4)"},{"dept":"PHYS","description":"","edges_from":[200,294],"edges_to":[2587,197,5551],"id":198,"label":"PHYS 130B","title":""},{"dept":"PHYS","description":"","edges_from":[200],"edges_to":[5819,5820,197,3342],"id":199,"label":"PHYS 140A","title":""},{"dept":"PHYS","description":"","edges_from":[40,33,5059,5060],"edges_to":[5058,198,3342,199],"id":200,"label":"PHYS 130A","title":""},{"dept":"PSYC","description":"Computational models of perception, cognition, behavior, and social interaction formalize psychological theories, and can offer insights into both how people solve challenging everyday problems and how to improve machine performance on these problems. We will consider formalisms for sensory processing, knowledge representation, learning, planning, and decisions, with an emphasis on modeling common problem structures such as statistical learning and probabilistic inference. ","edges_from":[],"edges_to":[],"id":201,"label":"PSYC 211","title":"Proseminar in Computational Models of Mind (5)"},{"dept":"VIS","description":"Methodological investigation of and training in the practices of art museums, galleries, film and digital environments, public arts organizations, and the like. Instruction by museum and gallery curators and opportunities for participation in ongoing programs at local art institutions.","edges_from":[],"edges_to":[],"id":202,"label":"VIS 281","title":"Curatorial Practice (4)"},{"dept":"VIS","description":"Practice in writing about art (both one’s own and others) accompanied by analysis of selected contemporary critical writings.","edges_from":[],"edges_to":[],"id":203,"label":"VIS 280","title":"Workshop in Critical Writing (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ","edges_from":[],"edges_to":[],"id":204,"label":"Linguistics/Heritage Languages (LIHL) 114W","title":"Vietnamese for Vietnamese Speakers (4)"},{"dept":"ECE","description":"Fresnel and Fraunhofer diffraction theory. Optical resonators, interferometry. Gaussian beam propagation and transformation. Laser oscillation and amplification, Q-switching and mode locking of lasers, some specific laser systems. (Recommended prerequisites: ECE 107 and ECE 182 or equivalent, introductory quantum mechanics or ECE 183.) ","edges_from":[],"edges_to":[207],"id":205,"label":"ECE 240A","title":"Lasers and Optics (4)"},{"dept":"ECE","description":"Propagation of waves and rays in anisotropic media. Electro-optical switching and modulation. Acousto-optical deflection and modulation. Detection theory. Heterodyne detection, incoherent and coherent detection. (Recommended prerequisites: ECE 181, ECE 183 or equivalent.) ","edges_from":[207],"edges_to":[],"id":206,"label":"ECE 240C","title":"Optical Modulation and Detection (4)"},{"dept":"ECE","description":"","edges_from":[205],"edges_to":[206],"id":207,"label":"ECE 240B","title":""},{"dept":"HIUS","description":"134. Immigration and Ethnicity in Modern American Society (4)","edges_from":[],"edges_to":[],"id":208,"label":"HIUS 180/ETHN","title":""},{"dept":"BIMM","description":"The BioClock Studio is an innovative course in which a team of undergraduate students, drawn from diverse disciplines, will work collaboratively to develop their scientific and communicative skills to produce creative educational materials that will enhance understanding of circadian biology. Students are expected to attend the annual Circadian Biology Symposium held each winter, to the extent course schedules allow, to conduct interviews with prominent scientists. BIMM 116 is not a prerequisite to enroll in BIMM 116B. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":209,"label":"BIMM 116B","title":"BioClock Studio (4)"},{"dept":"BENG","description":"Structural and functional aspects of transport and blood-tissue exchange in key organs during circulatory shock, bacterial toxemia, hypertension. Physical and ultrastructural techniques used to analyze small-vessel dynamics. ","edges_from":[],"edges_to":[],"id":210,"label":"BENG 267","title":"Microcirculation in Health and Disease (4)"},{"dept":"EDS","description":"Introduction to Teaching Science (2)","edges_from":[],"edges_to":[],"id":211,"label":"EDS 31/Chem 96","title":""},{"dept":"NANO","description":"Chemical principles involved in synthesis, assembly, and performance of nanostructured materials and devices. Chemical interactions, classical and statistical thermodynamics of small systems, diffusion, carbon-based nanomaterials, supramolecular chemistry, liquid crystals, colloid and polymer chemistry, lipid vesicles, surface modification, surface functionalization, catalysis. Priority enrollment given to NanoEngineering majors. ","edges_from":[33,215,213,214,135],"edges_to":[4047,145,4083,4084,5335,5339],"id":212,"label":"NANO 102","title":"Foundations in NanoEngineering: Chemical Principles (4)"},{"dept":"NANO","description":"","edges_from":[134,219,220,221,126,31],"edges_to":[145,146,212,4277,5335],"id":213,"label":"NANO 101","title":""},{"dept":"NANO","description":"","edges_from":[139],"edges_to":[212],"id":214,"label":"NANO 106","title":""},{"dept":"CHEM","description":"","edges_from":[911,220,1061,133],"edges_to":[448,5472,5469,3343,145,4434,212,3734,4728,441,5082,445,5470,5471],"id":215,"label":"CHEM 6C","title":""},{"dept":"TDDM","description":"Practical and conceptual studies of approaches to dance making. Compositional projects enable students to create short works for solo, duet, and small group situations with options to explore interdisciplinary collaboration, specific sites, text, political and societal issues, and advanced partner work. ","edges_from":[217],"edges_to":[],"id":216,"label":"TDDM 100","title":"Dance Making 1 (4)"},{"dept":"TDDM","description":"","edges_from":[],"edges_to":[216,218],"id":217,"label":"TDDM 1","title":""},{"dept":"TDDM","description":"The study of compositional, ensemble, collaborative, and improvisational approaches to dance making. Structures, scores, tasks, imagination, timing, spontaneity, partnering skills, composing in the moment, shared authorship, and experimentation facilitate the development of movement vocabulary. ","edges_from":[217],"edges_to":[],"id":218,"label":"TDDM 101","title":"Dance Making 2 (4)"},{"dept":"CENG","description":"","edges_from":[],"edges_to":[5985,4085,213,4047],"id":219,"label":"CENG 15","title":""},{"dept":"CHEM","description":"","edges_from":[129,130,1061,1318,1079,133],"edges_to":[1673,215,1196,213,2025,953,958,447],"id":220,"label":"CHEM 6B","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[5985,4047,4085,3352,1148,213],"id":221,"label":"MAE 8","title":""},{"dept":"LTEN","description":"This course will focus on contemporary literature of the English-speaking Caribbean. The parallels and contrasts of this Third World literature with those of the Spanish- and French-speaking Caribbean will also be explored.","edges_from":[],"edges_to":[],"id":222,"label":"LTEN 188","title":"Contemporary Caribbean Literature (4)"},{"dept":"LTEN","description":"Postcolonial Literatures (4)","edges_from":[],"edges_to":[],"id":223,"label":"LTEN 189","title":"Twentieth-Century"},{"dept":"LTEN","description":"Introduction to the literature in English by the Chicano population, the men and women of Mexican descent who live and write in the United States. Primary focus on the contemporary period.","edges_from":[],"edges_to":[],"id":224,"label":"LTEN 180","title":"Chicano Literature in English (4)"},{"dept":"LTEN","description":"Selected topics in the literature by men and women of Asian descent who live and write in the United States. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":225,"label":"LTEN 181","title":"Asian American Literature (4)"},{"dept":"LTEN","description":"Analysis and discussion of the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characteristics of African American narrative and the cultural and social circumstances that influence their development.","edges_from":[],"edges_to":[],"id":226,"label":"LTEN 183","title":"African American Prose (4)"},{"dept":"LTEN","description":"An intensive examination of a characteristic theme, special issue, or period in African American literature. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":227,"label":"LTEN 185","title":"Themes in African American Literature (4)"},{"dept":"LTEN","description":"The Harlem Renaissance (1917–39) focuses on the emergence of the “New Negro” and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.","edges_from":[],"edges_to":[],"id":228,"label":"LTEN 186","title":"Literature of the Harlem Renaissance (4)"},{"dept":"BGJC","description":"Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":229,"label":"BGJC 213","title":"Journal Club in Computational Neurobiology (1)"},{"dept":"BISP","description":"","edges_from":[],"edges_to":[2307,229,3429,3432,3431,3631,3632,3794,5014,3797,3958,3959,3160,3161,3163,3167],"id":230,"label":"BISP 199","title":""},{"dept":"Soc/G","description":"A discussion of major themes in the work of Weber and Durkheim. ","edges_from":[],"edges_to":[],"id":231,"label":"Soc/G 201B","title":"Classical Sociological Theory II (4)"},{"dept":"COGS","description":"Introductory-level course that will give students insight into the fundamental concepts of algorithmic thinking and design. The course will provide the students with first-person, hands-on experience programming a web crawler and simple physical robots.","edges_from":[],"edges_to":[],"id":232,"label":"COGS 8","title":"Hands-on Computing (4)"},{"dept":"COGS","description":"Concepts of data and its role in science will be introduced, as well as the ideas behind data-mining, text-mining, machine learning, and graph theory, and how scientists and companies are leveraging those methods to uncover new insights into human cognition.","edges_from":[],"edges_to":[3849],"id":233,"label":"COGS 9","title":"Introduction to Data Science (4)"},{"dept":"ANTH","description":"286. Topics in Anthropological Archaeology (4)","edges_from":[],"edges_to":[],"id":234,"label":"ANTH","title":""},{"dept":"BENG","description":"A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ","edges_from":[],"edges_to":[],"id":235,"label":"BENG 283/Chem 283/BIOM 283","title":"Supramolecular Structure Determination Laboratory (4)"},{"dept":"COGS","description":"This course is an introduction to the neuroscience behind the principles of economic decision-making. The topics in this course are aimed at exploring the underlying cognitive and neural mechanisms that drive the decisions behind traditional economic models.","edges_from":[],"edges_to":[],"id":236,"label":"COGS 2","title":"Cognitive NeuroEconomics (4)"},{"dept":"COGS","description":"Covers the fundamental concepts that underlie all programming languages and provides an introduction to the essential information about algorithms and data structures. Students design and implement web applications using HTML5, CSS3, JavaScript, and Photoshop. No previous programming experience is required.","edges_from":[],"edges_to":[],"id":237,"label":"COGS 3","title":"Introduction to Computing (4)"},{"dept":"COGS","description":"A team-taught course highlighting development of the field and the broad range of topics covered in the major. Example topics include addiction, analogy, animal cognition, human-computer interaction, language, neuroimaging, neural networks, reasoning, robots, and real-world applications.","edges_from":[],"edges_to":[3040,1157,3079,2857,3498,3276,3791,4368,4015,3164,3166],"id":238,"label":"COGS 1","title":"Introduction to Cognitive Science (4)"},{"dept":"ETHN","description":"(Cross-listed with MUS 153.) This course will examine the media representations of African Americans from slavery through the twentieth century. Attention will be paid to the emergence and transmission of enduring stereotypes, and their relationship to changing social, political, and economic frameworks in the United States. The course will also consider African Americans’ responses to and interpretations of these mediated images.","edges_from":[],"edges_to":[],"id":239,"label":"ETHN 164","title":"African Americans and the Mass Media (4)"},{"dept":"PHIL","description":"An introduction to central topics in metaphysics with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.","edges_from":[],"edges_to":[],"id":240,"label":"PHIL 205A","title":"Core Course in Metaphysics (4)"},{"dept":"LTCS","description":"The course will explore the relation among cultural production, institutions, history, and ideology during selected historical periods. In considering different kinds of texts, relations of power and knowledge at different historical moments will be discussed. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":241,"label":"LTCS 120","title":"Historical Perspectives on Culture (4)"},{"dept":"ENVR","description":"Instructor will define assistant’s responsibilities in preparing class presentations, leading students’ discussions, and evaluating students’ work. May be taken two times for credit.","edges_from":[],"edges_to":[],"id":242,"label":"ENVR 195","title":"Apprentice Teaching (0-4)"},{"dept":"ECE","description":"Electromagnetic Theory—Electromagnetics (4)","edges_from":[],"edges_to":[],"id":243,"label":"ECE 222B","title":"Applied"},{"dept":"LTCS","description":"Perspectives on Immigration and Citizenship (4)","edges_from":[],"edges_to":[],"id":244,"label":"LTCS 125","title":"Cultural"},{"dept":"ECON","description":"Examination of recent econometric research; development of own research by students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)","edges_from":[],"edges_to":[],"id":245,"label":"ECON 222A-B-C","title":"Workshop in Econometrics (4-4-4)"},{"dept":"PHIL","description":"A study of selected texts or topics in the history of philosophy. Usually the focus will be on a single major text. May be taken for credit nine times with changed content.","edges_from":[],"edges_to":[],"id":246,"label":"PHIL 201A","title":"Core Course in History (4)"},{"dept":"ENVR","description":"Independent study in a topic not generally covered in the regular curriculum. ","edges_from":[],"edges_to":[],"id":247,"label":"ENVR 199","title":"Independent Study (4)"},{"dept":"ENVR","description":"Directed group research and study, normally with a focus on areas not otherwise covered in the curriculum. ","edges_from":[],"edges_to":[],"id":248,"label":"ENVR 198","title":"Directed Group Study (4)"},{"dept":"ANSC","description":"How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125GS and ANSC 125. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":249,"label":"ANSC 125GS","title":"Gender, Sexuality, and Society (4)"},{"dept":"HIEU","description":"Students will exercise advanced German language skills to read and discuss materials in HIEU 154. Must be enrolled in HIEU 154.","edges_from":[],"edges_to":[],"id":250,"label":"HIEU 154XL","title":"HIEU 154 Foreign Language Section (4)"},{"dept":"TDHT","description":"Focusing on the contemporary evolution of Chicano dramatic literature, this course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant “actors,” plays, and documentaries for their contributions to the developing Chicano theatre movement. (Cross-listed with Ethnic Studies 132.) No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":251,"label":"TDHT 110","title":"Chicano Dramatic Literature (4)"},{"dept":"TDHT","description":"Course examines the plays of leading Cuban American, Puerto Rican, and Chicano playwrights in an effort to understand the experience of these Hispanic American groups in the United States. (Cross-listed with Ethnic Studies 133.) No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":252,"label":"TDHT 111","title":"Hispanic American Dramatic Literature (4)"},{"dept":"VIS","description":"Speculative design uses design methods to question and investigate material culture with critical creative purpose. This course provides a historical, theoretical, and methodological introduction to speculative design as a distinct program. Emphasis is tracing the integration of interdisciplinary intellectual and technical problems toward creative, unexpected propositions and prototypes. ","edges_from":[],"edges_to":[1155,932],"id":253,"label":"VIS 30","title":"Introduction to Speculative Design (4)"},{"dept":"TDHT","description":"The class will explore the musical’s origins, evolution, components, and innovators, with emphasis on adaptation and the roles of the director and choreographer. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":254,"label":"TDHT 114","title":"American Musical Theatre (4)"},{"dept":"TDHT","description":"Evolution of directing theory from 1850 to the present with reference to the work of internationally influential directors such as Saxe-Meiningen, Antoine, Stanislavski, Meyerhold, Brecht, and Brook, among others. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":255,"label":"TDHT 115","title":"History and Theory of Directing (4)"},{"dept":"TDHT","description":"Introduces theatre and dance students to the practice of contemporary production dramaturgy. Students learn strategies for applying the results of textual analysis and cultural research to the production process. ","edges_from":[],"edges_to":[],"id":256,"label":"TDHT 119","title":"Production Dramaturgy (4)"},{"dept":"ECE","description":"Introduction to linear and nonlinear components and circuits. Topics will include: two terminal devices, bipolar and field-effect transistors, and large and small signal analysis of diode and transistor circuits. (Program or materials fees may apply.) ","edges_from":[258],"edges_to":[3144,1231,3143],"id":257,"label":"ECE 65","title":"Components and Circuits Laboratory (4)"},{"dept":"ECE","description":"","edges_from":[129,29],"edges_to":[257,1671,5902,3894,2087],"id":258,"label":"ECE 35","title":""},{"dept":"BENG","description":"Development of design project in cell systems bioengineering. ","edges_from":[66],"edges_to":[260],"id":259,"label":"BENG 129A","title":"Design Development in Cell Systems Bioengineering (3)"},{"dept":"BENG","description":"Implementation of design project in cell systems bioengineering. ","edges_from":[259,68],"edges_to":[68],"id":260,"label":"BENG 129B","title":"Design Implementation in Cell Systems Bioengineering (3)"},{"dept":"LTWR","description":"Study and practice of poetry as artistic and communal expression. Techniques of composition (traditional forms, avant garde techniques, dramatic monologue, performance poetry, and new genre) studied through written and spoken examples of poetry. Students are required to attend at least three New Writing Series readings during the quarter. ","edges_from":[75,54,262,263,264,265,266,267,76,269,270,271,53,268],"edges_to":[640,644,1125,647,1361,1366,1367,1368],"id":261,"label":"LTWR 8B","title":"Writing Poetry (4)"},{"dept":"MCWP","description":"","edges_from":[],"edges_to":[3810,261,263,272,273,1682,287,1887],"id":262,"label":"MCWP 40","title":""},{"dept":"MCWP","description":"","edges_from":[262],"edges_to":[3810,261,272,273,1682,287,1887],"id":263,"label":"MCWP 50","title":""},{"dept":"WARR","description":"","edges_from":[266],"edges_to":[272,273,3810,261,1887],"id":264,"label":"WARR 11B","title":""},{"dept":"WCWP","description":"","edges_from":[],"edges_to":[3810,261,267,272,273,1682,1887],"id":265,"label":"WCWP 10A","title":""},{"dept":"WARR","description":"","edges_from":[],"edges_to":[3810,261,264,272,273,1887],"id":266,"label":"WARR 11A","title":""},{"dept":"WCWP","description":"","edges_from":[265],"edges_to":[3810,261,272,273,1682,1887],"id":267,"label":"WCWP 10B","title":""},{"dept":"HUM","description":"","edges_from":[],"edges_to":[3810,261,554,272,273,1682,1887,287],"id":268,"label":"HUM 1","title":""},{"dept":"HUM","description":"","edges_from":[],"edges_to":[3810,261,554,272,273,1682,1887,287],"id":269,"label":"HUM 2","title":""},{"dept":"MMW","description":"","edges_from":[299,270],"edges_to":[3810,261,270,271,272,273,1682,1688,1689,1887],"id":270,"label":"MMW 12","title":""},{"dept":"MMW","description":"","edges_from":[299,300,270,271],"edges_to":[3810,261,271,272,273,1682,1688,1689,1887],"id":271,"label":"MMW 13","title":""},{"dept":"LTWR","description":"Study of nonfictional prose in terms of genre and craft. Techniques of composition (journalism, essay, letters, reviews) will be studied through written examples of the genre. ","edges_from":[75,54,262,263,264,265,266,267,76,269,270,271,53,268],"edges_to":[640,641,644,645,1366,1367,1368],"id":272,"label":"LTWR 8C","title":"Writing Nonfiction (4)"},{"dept":"LTWR","description":"Study of fiction in both theory and practice. Narrative technique studied in terms of subjectivity and atmosphere, description, dialogue, and the editing process will be introduced through readings from the history of the novel and short story. Students are required to attend at least three New Writing Series readings during the quarter. ","edges_from":[75,54,262,263,264,265,266,267,76,269,270,271,53,268],"edges_to":[640,1124,1126,648,1361,1366,1367,1368,644],"id":273,"label":"LTWR 8A","title":"Writing Fiction (4)"},{"dept":"BIOM","description":"A selection of short courses in the biomedical and pharmacological sciences offered by resident experts. Topics will vary annually. Each short course will last one to two weeks, meeting five hours a week. ","edges_from":[],"edges_to":[],"id":274,"label":"BIOM 231","title":"Contemporary Topics in Pharmacology (2)"},{"dept":"BIOM","description":"Strategies such as positron emission tomography, magnetic resonance imaging, and ultrasound for nondestructively imaging molecular and cell biological events inside living animals and eventually human patients. Emphasis on detecting angiogenesis, apoptosis, and expression of tumor-specific genes. ","edges_from":[],"edges_to":[],"id":275,"label":"BIOM 232","title":"In vivo Cellular and Molecular Imaging (1)"},{"dept":"BIOM","description":"This class is taught by SBMRI program faculty, whose laboratories are actively involved in determining the three-dimensional structure of complex biological entities. The course covers basic principles of crystallization, cryo-electron microscopy, and NMR, and modern techniques for Ab-initio-structural analysis. ","edges_from":[],"edges_to":[],"id":276,"label":"BIOM 233","title":"Structural Biology in Cell Signaling and Drug Discovery (2)"},{"dept":"BIOM","description":"The course is designed to introduce or reintroduce histology and histopathology of the various organ systems to those who need to analyze mouse tissues as an essential part of their research. ","edges_from":[],"edges_to":[],"id":277,"label":"BIOM 234","title":"Practical Histopathology and Mouse Models of Human Diseases (2)"},{"dept":"BIOM","description":"This course provides an understanding of the evolving area of human genomics and correlation between an individual’s or subpopulation’s genetic makeup and their response to drugs. The information provides the student the basis for select prescribing and/or targeting drug development to improve drug therapy outcomes and reduce adverse drug responses. ","edges_from":[],"edges_to":[],"id":278,"label":"BIOM 235","title":"Pharmacogenomics (3)"},{"dept":"CSE","description":"This course will cover software engineering","edges_from":[],"edges_to":[],"id":279,"label":"CSE 112","title":"Advanced Software Engineering (4)"},{"dept":"CSE","description":"Engineering (4)","edges_from":[],"edges_to":[1184,5628,5630,5823],"id":280,"label":"CSE 110","title":"Software"},{"dept":"HIGR","description":"267A-B. Research Seminar in United States History (4-4)","edges_from":[],"edges_to":[],"id":281,"label":"HIGR","title":""},{"dept":"ECON","description":"Examination of recent research in applied economics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)","edges_from":[],"edges_to":[],"id":282,"label":"ECON 235A-B-C","title":"Workshop in Applied Economics (0–4/0–4/0–4)"},{"dept":"USP","description":"(Same as POLI 103A.) This survey course explores six topics: 1) the state’s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California’s role in national politics. ","edges_from":[],"edges_to":[],"id":283,"label":"USP 109","title":"California Government and Politics (4)"},{"dept":"ENVR","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":284,"label":"ENVR 87","title":"Environmental Studies Freshman Seminar (1)"},{"dept":"PHIL","description":"An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ","edges_from":[286,287],"edges_to":[],"id":285,"label":"PHIL 28","title":"Ethics and Society II (4)"},{"dept":"POLI","description":"","edges_from":[],"edges_to":[285,1174],"id":286,"label":"POLI 27","title":""},{"dept":"PHIL","description":"","edges_from":[299,54,262,263,300,75,76,269,53,268],"edges_to":[285],"id":287,"label":"PHIL 27","title":""},{"dept":"ECON","description":"Application of econometric methods to such areas as labor supply, human capital, and financial time series. Concurrent enrollment in Econ 120C is permitted. ","edges_from":[289],"edges_to":[],"id":288,"label":"ECON 121","title":"Applied Econometrics (4)"},{"dept":"ECON","description":"","edges_from":[291,292],"edges_to":[288,1562,1979],"id":289,"label":"ECON 120C","title":""},{"dept":"ECON","description":"Detailed study of the small sample and asymptotic properties of estimators commonly used in applied econometric work: multiple linear regression, instrumental variables, generalized method of moments, and maximum likelihood. Econometric computation using MATLAB. Recommended preparation: Econ 120C. ","edges_from":[292,291,140,141],"edges_to":[],"id":290,"label":"ECON 122","title":"Econometric Theory (4)"},{"dept":"ECON","description":"","edges_from":[1992,1993,1994,1995,1996],"edges_to":[289,290,1772,5190,1654],"id":291,"label":"ECON 120B","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[289,290,1772,5190,1654],"id":292,"label":"MATH 181B","title":""},{"dept":"PHYS","description":"Particle motions, plasmas as fluids, waves, diffusion, equilibrium and stability, nonlinear effects, controlled fusion. Cross-listed with MAE 117A. Students cannot earn credit for both Physics 151 and MAE 117A. ","edges_from":[296,135,294,295],"edges_to":[],"id":293,"label":"PHYS 151","title":"Elementary Plasma Physics (4)"},{"dept":"PHYS","description":"","edges_from":[385,139,5060,133,134,129,136,138,135,140,141],"edges_to":[293,198,295],"id":294,"label":"PHYS 100B","title":""},{"dept":"PHYS","description":"","edges_from":[294],"edges_to":[5436,293],"id":295,"label":"PHYS 100C","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1233,3563,293,1230],"id":296,"label":"ECE 107","title":""},{"dept":"PHIL","description":"An inquiry into fundamental questions at the intersection","edges_from":[],"edges_to":[],"id":297,"label":"PHIL 25","title":"Science, Philosophy, and the Big Questions (4)"},{"dept":"PHIL","description":"An exploration of the interaction between scientific theory","edges_from":[],"edges_to":[],"id":298,"label":"PHIL 26","title":"Science, Society, and Values (4)"},{"dept":"MMW","description":"","edges_from":[],"edges_to":[1688,1689,271,270,287],"id":299,"label":"MMW 2","title":""},{"dept":"MMW","description":"","edges_from":[],"edges_to":[1688,1689,271,287],"id":300,"label":"MMW 3","title":""},{"dept":"USP","description":"(Same as Economics 135.) Economic analysis of why and where cities develop, problems they cause, and public policies to deal with these problems. Determination of urban land rent/use, reasons for suburbanization. Transportation and congestion in cities, zoning, poverty and housing, urban local government. ","edges_from":[304,129,130,302,303],"edges_to":[],"id":301,"label":"USP 102","title":"Urban Economics (4)"},{"dept":"ECON","description":"","edges_from":[],"edges_to":[544,800,547,548,1287,1288,1994,301,1296,505,504,1049,5306,543,509,510,511],"id":302,"label":"ECON 1","title":""},{"dept":"ECON","description":"","edges_from":[],"edges_to":[301],"id":303,"label":"ECON 1A","title":""},{"dept":"ECON","description":"","edges_from":[],"edges_to":[301],"id":304,"label":"ECON 1B","title":""},{"dept":"HINE","description":"A close reading of select prose narratives from the Hebrew Bible/Old Testament. +","edges_from":[],"edges_to":[],"id":305,"label":"HINE 112A","title":"Great Stories from the Hebrew Bible (4)"},{"dept":"HIEU","description":"Selected topics in ancient Greek history. May be coscheduled with HIEU 160. May be taken for credit up to three times. Department approval required.","edges_from":[],"edges_to":[],"id":306,"label":"HIEU 260","title":"Topics in Ancient Greek History (4)"},{"dept":"USP","description":"(Same as Political Science 160AA.) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ","edges_from":[],"edges_to":[],"id":307,"label":"USP 101","title":"Introduction to Policy Analysis (4)"},{"dept":"Linguistics/Italian","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1BX. ","edges_from":[309,310],"edges_to":[],"id":308,"label":"Linguistics/Italian (LIIT) 1B","title":"Italian Conversation (2.5)"},{"dept":"LIIT","description":"","edges_from":[],"edges_to":[3823,308,2999],"id":309,"label":"LIIT 1A","title":""},{"dept":"LIIT","description":"","edges_from":[],"edges_to":[308,2999],"id":310,"label":"LIIT 1AX","title":""},{"dept":"Linguistics/Italian","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1CX. ","edges_from":[312,313],"edges_to":[],"id":311,"label":"Linguistics/Italian (LIIT) 1C","title":"Italian Conversation (2.5)"},{"dept":"LIIT","description":"","edges_from":[],"edges_to":[3689,2766,311],"id":312,"label":"LIIT 1B","title":""},{"dept":"LIIT","description":"","edges_from":[],"edges_to":[2766,311],"id":313,"label":"LIIT 1BX","title":""},{"dept":"Linguistics/Italian","description":"Small conversation sections taught","edges_from":[],"edges_to":[],"id":314,"label":"Linguistics/Italian (LIIT) 1D","title":"Italian Conversation (2.5)"},{"dept":"SE","description":"The Senior Seminar is designed to allow senior undergraduates to meet with faculty members to explore an intellectual topic in structural engineering. Topics will vary from quarter to quarter. Enrollment is limited to twenty students with preference given to seniors. ","edges_from":[],"edges_to":[],"id":315,"label":"SE 192","title":"Senior Seminar (1)"},{"dept":"TDGR","description":"This seminar explores the interaction of new media and technologies for collaboration, research, and creation in dance making and performance. ","edges_from":[],"edges_to":[],"id":316,"label":"TDGR 217","title":"New Media and Technology (4)"},{"dept":"ECON","description":"Covers various models in behavioral economics including self-control, bounded memory, belief manipulation, framing effects, and behavioral game theory. The course will also discuss their role in industrial organization, finance, and political economy, and their implications for welfare. ","edges_from":[320,318,319],"edges_to":[],"id":317,"label":"ECON 263","title":"Modeling Behavioral Economics (4)"},{"dept":"ECON","description":"","edges_from":[320],"edges_to":[1792,321,327,1802,1068,319,317,1791],"id":318,"label":"ECON 200B","title":""},{"dept":"ECON","description":"","edges_from":[318],"edges_to":[1792,321,322,327,1802,1068,317,1791],"id":319,"label":"ECON 200C","title":""},{"dept":"ECON","description":"","edges_from":[],"edges_to":[1792,321,327,1802,1068,317,318,1791],"id":320,"label":"ECON 200A","title":""},{"dept":"ECON","description":"This course is intended to give students an introduction to the study of strategic interaction through a behavioral lens. We will review game theory experiments and analyze which theoretical predictions are validated and which are violated in practice. We will characterize the systematic violations of the theory that come from experiments and study how these behavioral regularities can be incorporated into new equilibrium concepts. ","edges_from":[320,318,319],"edges_to":[],"id":321,"label":"ECON 262","title":"Behavioral Game Theory (4)"},{"dept":"ECON","description":"This course covers theory and empirical applications in the following areas of industrial organization: mergers, vertical integration, and innovation. Optional topics include network effects, technology adoption, and regulation. ","edges_from":[323,319],"edges_to":[],"id":322,"label":"ECON 261","title":"Industrial Organization: Markets (4)"},{"dept":"ECON","description":"","edges_from":[1020],"edges_to":[1312,1313,322,1315,324,1068,1314,1309,1310],"id":323,"label":"ECON 220C","title":""},{"dept":"ECON","description":"This course covers theory and empirical applications in the following areas of industrial organization: dynamic pricing, price discrimination, collusion, market power, discrete choice demand modeling, entry, asymmetric information, and search. ","edges_from":[323],"edges_to":[],"id":324,"label":"ECON 260","title":"Industrial Organization: Firms (4)"},{"dept":"ECON","description":"The course will cover any of a variety of topics in environmental","edges_from":[],"edges_to":[],"id":325,"label":"ECON 267","title":"Topics in Environmental and Resource Economics (4)"},{"dept":"ECON","description":"Theoretical and empirical issues in natural resource economics. (Previously numbered Econ 242.) ","edges_from":[],"edges_to":[],"id":326,"label":"ECON 266","title":"Economics of Natural Resources (4)"},{"dept":"ECON","description":"Experimental findings by economists and psychologists of systematic departures from the classical model of decision making under risk and uncertainty. Issues of dynamic consistency in choice. Development, formal analysis and application of alternative models of risk preferences and beliefs. ","edges_from":[320,318,319],"edges_to":[],"id":327,"label":"ECON 265","title":"Alternative Choice Theory (4)"},{"dept":"ECON","description":"Design and interpretation of controlled experiments using human subjects. (Previously numbered Econ 207.) ","edges_from":[],"edges_to":[],"id":328,"label":"ECON 264","title":"Experimental Economics (4)"},{"dept":"EDS","description":"Second course in a two-course series. The elementary credential candidate performs student teaching in participating schools for seven to eight weeks full-time for each course (fifteen weeks total) under the supervision of a cooperating teacher and university supervisor. The student teaching experience offers professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Multiple Subject Teaching Credential. ","edges_from":[330],"edges_to":[],"id":329,"label":"EDS 369B","title":"Multiple Subject (Elementary) Student Teaching Practicum-II (9)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[329],"id":330,"label":"EDS 369A","title":""},{"dept":"MATH","description":"Introduction to the probabilistic method. Combinatorial applications of the linearity of expectation, second moment method, Markov, Chebyschev, and Azuma inequalities, and the local limit lemma. Introduction to the theory of random graphs. ","edges_from":[],"edges_to":[],"id":331,"label":"MATH 261A","title":"Probabilistic Combinatorics and Algorithms (4)"},{"dept":"MATH","description":"Combinatorics and Algorithms II (4)","edges_from":[],"edges_to":[],"id":332,"label":"MATH 261B","title":"Probabilistic"},{"dept":"MATH","description":"Combinatorics and Algorithms III (4)","edges_from":[],"edges_to":[],"id":333,"label":"MATH 261C","title":"Probabilistic"},{"dept":"MUS","description":"Performance in an ensemble appropriate to student abilities and interests. Normally each section requires student participation for the whole academic year, with credit for participation each quarter. Sections of MUS 95W have included: African drumming, Korean percussion, Indian sitar and tabla, koto, and Indonesian flute. Not all sections will be offered every year. May be repeated for credit. Grading on participation level, individual testing, comparative papers on repertoire covered, etc. ","edges_from":[],"edges_to":[],"id":334,"label":"MUS 95","title":"Ensemble Performance (2)"},{"dept":"Linguistics/Arabic","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1B. ","edges_from":[336,337],"edges_to":[],"id":335,"label":"Linguistics/Arabic (LIAB) 1BX","title":"Analysis of Arabic (2.5)"},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3244,335],"id":336,"label":"LIAB 1A","title":""},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3244,335],"id":337,"label":"LIAB 1AX","title":""},{"dept":"LTAM","description":"Latino/a-Chicano/a Cultures: 1848–1960 (4)","edges_from":[],"edges_to":[],"id":338,"label":"LTAM 101","title":"Early"},{"dept":"MAE","description":"03. Introduction to Engineering Graphics and Design (4)","edges_from":[],"edges_to":[],"id":339,"label":"MAE","title":""},{"dept":"TDGR","description":"Preparation, presentation, and discussion","edges_from":[],"edges_to":[],"id":340,"label":"TDGR 219","title":"Directing Process Studio (4)"},{"dept":"LTSP","description":"A sociolinguistic study of the popular dialects in the United States of America and their relation to other Latin American dialects. The course will cover phonological and syntactic differences between the dialects as well as the influences of English on the Southwest dialects. ","edges_from":[82,83,84],"edges_to":[],"id":341,"label":"LTSP 162","title":"Spanish Language in the United States (4)"},{"dept":"LTSP","description":"A comparative study of the English and Spanish phonetic systems. Includes a study of the organs of articulation, manner of articulation stress and intonation patterns, as well as dialectal variations of Spanish. ","edges_from":[82,83,84],"edges_to":[],"id":342,"label":"LTSP 160","title":"Spanish Phonetics (4)"},{"dept":"LTSP","description":"A workshop designed to foster and encourage writing in Spanish of students working on short forms of fiction. The workshop will include discussions of techniques and intensive writing. ","edges_from":[82,83,84],"edges_to":[],"id":343,"label":"LTSP 166","title":"Creative Writing (4)"},{"dept":"MUS","description":"Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often-provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year. (Cross-listed with ETHN 179.) ","edges_from":[],"edges_to":[],"id":344,"label":"MUS 127","title":"Discover Jazz (4)"},{"dept":"GLBH","description":"Course will consist of intensive reading and discussion in fields related to each student’s primary interest and building on their Global Health Field Experience. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ","edges_from":[],"edges_to":[5114],"id":345,"label":"GLBH 150A","title":"Global Health Capstone Seminar I (4)"},{"dept":"HIUS","description":"The course investigates race, resistance, and culture in the United States since the late nineteenth century. It interrogates how working-class whites, African Americans, Latinos, Asian Americans, and others have simultaneously challenged, shaped, and assimilated into US society. May be coscheduled with HIUS 268. ","edges_from":[],"edges_to":[],"id":346,"label":"HIUS 168/268","title":"Race, Resistance, and Cultural Politics (4)"},{"dept":"MATH","description":"In recent years, topics have included applied complex analysis, special functions, and asymptotic methods. May be repeated for credit with consent of adviser as topics vary. ","edges_from":[],"edges_to":[],"id":347,"label":"MATH 217","title":"Topics in Applied Mathematics (4)"},{"dept":"MATH","description":"Various topics in the mathematics of biological systems. May be taken for credit nine times. ","edges_from":[],"edges_to":[],"id":348,"label":"MATH 218","title":"Seminar in Mathematics of Biological Systems (1)"},{"dept":"SOCI","description":"Society, and Social Justice (4)","edges_from":[],"edges_to":[],"id":349,"label":"SOCI 147","title":"Organizations,"},{"dept":"SOCI","description":"Focusing on American history, this course explores violence in the light of three major themes: struggles over citizenship and nationhood; the drawing and maintenance of racial, ethnic, and gender boundaries; and the persistence of notions of “masculinity” and its relation to violence. ","edges_from":[350,351],"edges_to":[350],"id":350,"label":"SOCI 145","title":"Violence and Society (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[350],"id":351,"label":"SOCB 145","title":""},{"dept":"SOCI","description":"The organization, development, and mission of social control agencies in the nineteenth and twentieth centuries, with emphasis on crime and madness; agency occupations (police, psychiatrists, correctional work, etc.); theories of control movements. ","edges_from":[352,353],"edges_to":[352],"id":352,"label":"SOCI 144","title":"Forms of Social Control (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[352],"id":353,"label":"SOCC 144","title":""},{"dept":"SOCI","description":"Traditional and modern theories of suicide will be reviewed and tested. The study of suicide will be treated as one method for investigating the influence of society on the individual. ","edges_from":[354,355],"edges_to":[354],"id":354,"label":"SOCI 143","title":"Suicide (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[354],"id":355,"label":"SOCB 143","title":""},{"dept":"POLI","description":"The use of real data to assess policy alternatives. Introduction to benefit/cost analysis, decision theory, and the valuation of public goods. Applications to health, environmental, and regulatory economic policy making.","edges_from":[],"edges_to":[],"id":356,"label":"POLI 168","title":"Policy Assessment (4)"},{"dept":"SOCI","description":"A study of the social origins of criminal law, the administration of justice, causes, and patterns of criminal behavior, and the prevention and control of crime, including individual rehabilitation and institutional change, and the politics of legal, police, and correctional reform. ","edges_from":[357,358],"edges_to":[357],"id":357,"label":"SOCI 141","title":"Crime and Society (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[357],"id":358,"label":"SOCC 141","title":""},{"dept":"SOCI","description":"This course analyzes the functions of law in society, the social sources of legal change, social conditions affecting the administration of justice, and the role of social science in jurisprudence. ","edges_from":[360,359],"edges_to":[359],"id":359,"label":"SOCI 140","title":"Sociology of Law (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[359],"id":360,"label":"SOCC 140","title":""},{"dept":"POLI","description":"An undergraduate course designed to cover various aspects of policy analysis. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.","edges_from":[],"edges_to":[],"id":361,"label":"POLI 165","title":"Special Topic: Policy Analysis (4)"},{"dept":"HIUS","description":"Religion and Law in American History: Civil War to the Present (4)","edges_from":[],"edges_to":[],"id":362,"label":"HIUS 155B","title":""},{"dept":"HIUS","description":"Selected problems in the history of the relationship between religious beliefs and practice and legal institutions in the Anglo American world. Topics include the English background, religion in the age of the American Revolution and the antebellum period. +","edges_from":[],"edges_to":[],"id":363,"label":"HIUS 155A","title":"Religion and Law in American History: Foundations to the Civil War (4)"},{"dept":"POLI","description":"This course will explore contemporary environmental issues such as global warming, endangered species, and land use. Students will be asked to analyze various policy options and to write case analyses. Policies may be debated in class.","edges_from":[],"edges_to":[],"id":364,"label":"POLI 162","title":"Environmental Policy (4)"},{"dept":"PSYC","description":"This course provides an overview of the biological, psychological, and social influences on the psychology of food and behavior. Topics may include taste preferences and aversions and how they are learned, how culture influences food selection, and food-related behaviors across the lifespan. ","edges_from":[],"edges_to":[],"id":365,"label":"PSYC 173","title":"Psychology of Food and Behavior (4)"},{"dept":"PSYC","description":"This course provides an overview of human sexuality research including diversity of sexual behavior and identities, sex and gender development, intimate relationships, and sexual dysfunction. Recommended preparation: completion of PSYC 1, 2, or 106. ","edges_from":[],"edges_to":[],"id":366,"label":"PSYC 172","title":"Psychology of Human Sexuality (4)"},{"dept":"PSYC","description":"This course provides an overview of the neurobiology of learning and memory, from cognitive to molecular neuroscience, including human, animal, cellular, and molecular studies of memory. Topics include amnesia, intellectual disability, exceptional intelligence, aging, and Alzheimer’s disease. ","edges_from":[368,369,370],"edges_to":[],"id":367,"label":"PSYC 171","title":"Neurobiology of Learning and Memory (4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[367],"id":368,"label":"PSYC 181","title":""},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[1353,4141,5903,3130,367,2268,5946],"id":369,"label":"PSYC 106","title":""},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[1353,5946,367],"id":370,"label":"PSYC 2","title":""},{"dept":"PSYC","description":"This course provides a journey to the interface between neurophysiology and psychology. Topics include neuroimaging and neuroplasticity. ","edges_from":[],"edges_to":[],"id":371,"label":"PSYC 170","title":"Cognitive Neuropsychology (4)"},{"dept":"PSYC","description":"This course provides an overview of how to foster creativity in individuals, groups, and organizations. Themes that cut across all three levels are highlighted. ","edges_from":[],"edges_to":[],"id":372,"label":"PSYC 176","title":"Creativity (4)"},{"dept":"SE","description":"Teaching experience in an appropriate SE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. ","edges_from":[],"edges_to":[],"id":373,"label":"SE 501","title":"Teaching Experience (2)"},{"dept":"PSYC","description":"This course provides an overview of high-level visual perception, and of how visual perception intersects with attention, memory, and concepts. Topics may include an introduction to the visual system with an emphasis on high-level visual regions; object recognition, face recognition, scene recognition and reading; visual attention, including eye movements during scene perception and during reading; and visual working memory. ","edges_from":[],"edges_to":[],"id":374,"label":"PSYC 174","title":"Visual Cognition (4)"},{"dept":"PSYC","description":"This course provides an overview of the use, abuse, liability, and psychotherapeutic effects of drugs on humans. ","edges_from":[],"edges_to":[],"id":375,"label":"PSYC 179","title":"Drugs, Addiction, and Mental Disorders (4)"},{"dept":"PSYC","description":"This course provides an examination of human behavior in industrial, business, and organizational settings. Topics include psychological principles applied to selection, placement, management, and training; the effectiveness of individuals and groups within organizations, including leadership and control; conflict and cooperation; motivation; and organizational structure and design. ","edges_from":[],"edges_to":[],"id":376,"label":"PSYC 178","title":"Industrial Organizational Psychology (4)"},{"dept":"MATH","description":"Topological spaces, subspaces, products, sums","edges_from":[],"edges_to":[380],"id":377,"label":"MATH 190","title":"Introduction to Topology (4)"},{"dept":"MATH","description":"Continued development of a topic in real analysis. Topics include: Fourier analysis, distribution theory, martingale theory, operator theory. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[379],"edges_to":[],"id":378,"label":"MATH 247B","title":"Further Topics in Real Analysis (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[378],"id":379,"label":"MATH 247A","title":""},{"dept":"MATH","description":"Topics to be chosen by the instructor from the fields of differential algebraic, geometric, and general topology. ","edges_from":[377],"edges_to":[],"id":380,"label":"MATH 191","title":"Topics in Topology (4)"},{"dept":"HDP","description":"Seminar for graduating HDP seniors. Readings and discussion of special topics in human development. Provides advanced-level study on subfields of human development. Topics vary quarterly. (May repeat when topics vary.) ","edges_from":[382],"edges_to":[],"id":381,"label":"HDP 150","title":"Senior Seminar (4)"},{"dept":"HDP","description":"","edges_from":[],"edges_to":[381],"id":382,"label":"HDP 181","title":""},{"dept":"MAE","description":"The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":383,"label":"MAE 87","title":"Freshman Seminar (1)"},{"dept":"MATH","description":"First course in a rigorous three-quarter sequence on real analysis. Topics include: the real number system, basic topology, numerical sequences and series, continuity. (Students may not receive credit for both Math 140A and Math 142A.) ","edges_from":[385,7],"edges_to":[386,5955,679,5896,1036,1045,2078],"id":384,"label":"MATH 140A","title":"Foundations of Real Analysis I (4)"},{"dept":"MATH","description":"","edges_from":[138],"edges_to":[384,33,5059,2884,2886,6,8,12,294,598,5060,5115,796,5437],"id":385,"label":"MATH 31CH","title":""},{"dept":"MATH","description":"Second course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation, the Riemann-Stieltjes integral, sequences and series of functions, power series, Fourier series, and special functions. (Students may not receive credit for both Math 140B and Math 142B.) ","edges_from":[384],"edges_to":[5955,387,1036,2078],"id":386,"label":"MATH 140B","title":"Foundations of Real Analysis II (4)"},{"dept":"MATH","description":"Third course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation of functions of several real variables, the implicit and inverse function theorems, the Lebesgue integral, infinite-dimensional normed spaces. ","edges_from":[386],"edges_to":[1036,2078],"id":387,"label":"MATH 140C","title":"Foundations of Real Analysis III (4)"},{"dept":"MAE","description":"(Cross-listed with MATS 201C and ECE 238C.) Classification of phase transformations; displacive and reconstructive transformations; classical and nonclassical theories of nucleation; Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories; interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ","edges_from":[],"edges_to":[970],"id":388,"label":"MAE 271C","title":"Phase Transformations (4)"},{"dept":"MAE","description":"State Diffusion and Reaction Kinetics (4)","edges_from":[],"edges_to":[],"id":389,"label":"MAE 271B","title":"Solid"},{"dept":"MAE","description":"(Cross-listed with MATS 201A and ECE 238A.) The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. ","edges_from":[],"edges_to":[],"id":390,"label":"MAE 271A","title":"Thermodynamics of Solids (4)"},{"dept":"BIOM","description":"This course includes attendance at seminars in molecular and cell biology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ","edges_from":[],"edges_to":[],"id":391,"label":"BIOM 274","title":"Seminars in Molecular and Cell Biology (2)"},{"dept":"ECE","description":"Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ","edges_from":[393,394,395],"edges_to":[396],"id":392,"label":"ECE 140A","title":"The Art of Product Engineering I (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[2336,1889,3,1573,2337,392,9,5325,4014,4015,5765,2277,3891,2857,3352,5903,3293,2334,2335],"id":393,"label":"CSE 11","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[392,3352,3891,4420,3894],"id":394,"label":"ECE 15","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[2336,2337,3,1573,392,9,4014,5765,3891,3352,2277],"id":395,"label":"CSE 8B","title":""},{"dept":"ECE","description":"Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ","edges_from":[392],"edges_to":[],"id":396,"label":"ECE 140B","title":"The Art of Product Engineering II (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ","edges_from":[],"edges_to":[],"id":397,"label":"Linguistics/Heritage Languages (LIHL) 117P","title":"Persian for Persian Speakers (4)"},{"dept":"SE","description":"Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ","edges_from":[399],"edges_to":[],"id":398,"label":"SE 171","title":"Aerospace Structures Repair (4)"},{"dept":"SE","description":"","edges_from":[3330,1316,1317,1129,652,920],"edges_to":[3970,398,2231],"id":399,"label":"SE 160A","title":""},{"dept":"BIOM","description":"This course includes attendance at seminars in physiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ","edges_from":[],"edges_to":[],"id":400,"label":"BIOM 276","title":"Seminars in Physiology (2)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ","edges_from":[],"edges_to":[],"id":401,"label":"Linguistics/Heritage Languages (LIHL) 117W","title":"Persian for Persian Speakers (4)"},{"dept":"NEU","description":"Specialized advanced topic areas in neurosciences will be addressed in an interactive seminar course format. A different specific topic will be considered each quarter as announced in advance. Students will each present an aspect of the topic area and participate in discussions. ","edges_from":[],"edges_to":[],"id":402,"label":"NEU 221","title":"Advanced Topics in Neurosciences (2)"},{"dept":"NEU","description":"This is a practical course designed to emphasize the relationships between experimental design, statistical methods, and biomedical research. The assumptions behind the statistical tests, their appropriate use, and examples of misuse will be discussed. ","edges_from":[],"edges_to":[],"id":403,"label":"NEU 225","title":"Statistical Methods and Experimental Design (2)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ","edges_from":[],"edges_to":[],"id":404,"label":"Linguistics/Heritage Languages (LIHL) 117F","title":"Persian for Persian Speakers (4)"},{"dept":"HILA","description":"Topics may vary from year to year. May be repeated for credit. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.","edges_from":[],"edges_to":[],"id":405,"label":"HILA 171/271","title":"Topics in Latin American History Since 1910 (4)"},{"dept":"EDS","description":"Research and Evaluation Design A (4)","edges_from":[],"edges_to":[],"id":406,"label":"EDS 287A","title":"Educational"},{"dept":"EDS","description":"Research and Evaluation Design C—Qualitative Methods (4)","edges_from":[],"edges_to":[],"id":407,"label":"EDS 287C","title":"Educational"},{"dept":"EDS","description":"Research and Evaluation Design B (4)","edges_from":[],"edges_to":[],"id":408,"label":"EDS 287B","title":"Educational"},{"dept":"BICD","description":"Formation and function of the mammalian immune system, molecular and cellular basis of the immune response, infectious diseases and autoimmunity. ","edges_from":[410,411,412],"edges_to":[],"id":409,"label":"BICD 140","title":"Immunology (4)"},{"dept":"BIBC","description":"","edges_from":[1761,458,2859,952,953,410,958],"edges_to":[5664,1445,1862,1191,457,1706,5263,1201,3357,409,410,2762],"id":410,"label":"BIBC 100","title":""},{"dept":"BIMM","description":"","edges_from":[960,952,953,954,955,956,957,958,959],"edges_to":[1444,2053,5702,2057,1199,1200,1201,4407,409,3356,5150,415],"id":411,"label":"BIMM 100","title":""},{"dept":"BICD","description":"","edges_from":[954],"edges_to":[2882,2531,1201,3765,4151,409],"id":412,"label":"BICD 100","title":""},{"dept":"ESYS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate college, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":413,"label":"ESYS 87","title":"Freshman Seminar (1)"},{"dept":"MAE","description":"Basic principles of synthesis techniques, processing, microstructural control and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. ","edges_from":[],"edges_to":[],"id":414,"label":"MAE 166","title":"Nanomaterials (4)"},{"dept":"BICD","description":"This course focuses upon a molecular and immunological approach to study problems in modern medical research. The emphasis will be on novel approaches in medicine, including lymphocyte biology, cancer biology, and gene transfer. Material lab fees will apply. ","edges_from":[411],"edges_to":[],"id":415,"label":"BICD 145","title":"Laboratory in Molecular Medicine (4)"},{"dept":"HIUS","description":"This course explains the origin of the Atlantic as a zone of interaction for Europeans, indigenous Americans, and Africans, and evaluates the consequences of the interaction over several centuries by exploring contests over political power and economic/demographic change. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ","edges_from":[],"edges_to":[],"id":416,"label":"HIUS 178/278 The Atlantic World, 1400–1800 (4)","title":""},{"dept":"LTRU","description":"Second-year Russian grammar, with attention to reading, writing, and speaking.","edges_from":[],"edges_to":[],"id":417,"label":"LTRU 2A","title":"Second-Year Russian (5)"},{"dept":"LTRU","description":"Second-year Russian grammar, with attention to reading, writing, and speaking.","edges_from":[],"edges_to":[],"id":418,"label":"LTRU 2B","title":"Second-Year Russian (5)"},{"dept":"VIS","description":"A critical examination of the work of one of the most radical twentieth-century artists. In Duchamp’s four-dimensional perspective, the ideas of art-object, artist, and art itself are deconstructed. The Large Glass and Etant Données are the twin foci of an oeuvre without boundaries in which many twentieth-century avant-garde devices such as chance techniques, conceptual art, and the fashioning of fictive identities, are invented. ","edges_from":[],"edges_to":[],"id":419,"label":"VIS 125DN","title":"Marcel Duchamp (4)"},{"dept":"HINE","description":"This course studies a period or theme in Jewish history. Topics will vary from year to year. ","edges_from":[],"edges_to":[],"id":420,"label":"HINE 170/270","title":"Special Topics in Jewish History (4)"},{"dept":"Soc/G","description":"Open to graduate students engaged in thesis research. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":421,"label":"Soc/G 299","title":"Thesis Research (1–12)"},{"dept":"Soc/G","description":"Tutorial individual guides study and/or independent research in an area not covered by present course offerings. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":422,"label":"Soc/G 298","title":"Independent Study (1–8)"},{"dept":"Soc/G","description":"A research seminar in special topics of interest to available staff, provides majors and minors in sociology with research experience in close cooperation with faculty. (S/U grades permitted.) ","edges_from":[],"edges_to":[],"id":423,"label":"Soc/G 290","title":"Graduate Seminar (4)"},{"dept":"MATH","description":"Topics in algebraic and analytic number theory, such as: L-functions, sieve methods, modular forms, class field theory, p-adic L-functions and Iwasawa theory, elliptic curves and higher dimensional abelian varieties, Galois representations and the Langlands program, p-adic cohomology theories, Berkovich spaces, etc. May be taken for credit nine times. ","edges_from":[],"edges_to":[],"id":424,"label":"MATH 205","title":"Topics in Number Theory (4)"},{"dept":"CLRE","description":"The objective of the course is to provide students instruction in contemporary methods and statistical analyses in behavioral science research. Will teach hands-on practical skills in developing and validating assessment measures, designing clinical trials in behavioral sciences, dissemination and implementation methods, and meta-analysis. ","edges_from":[],"edges_to":[],"id":425,"label":"CLRE 268","title":"Behavioral Science Research Methods (2)"},{"dept":"PHYS","description":"Electrostatics, symmetries of Laplace’s equation and methods for solution, boundary value problems, electrostatics in macroscopic media, magnetostatics, Maxwell’s equations, Green functions for Maxwell’s equations, plane wave solutions, plane waves in macroscopic media.","edges_from":[],"edges_to":[2470],"id":426,"label":"PHYS 203A","title":"Advanced Classical Electrodynamics I (5)"},{"dept":"CLRE","description":"Course will introduce the R Statistical Platform and help to build proficiency for data analysis. Students will perform their own analysis of the data, using linear regression methods, ANOVA, logistic regression, and regression methods for survival data. They will understand the assumptions, areas of applicability, and limitations of these statistical methods. ","edges_from":[190],"edges_to":[],"id":427,"label":"CLRE 262","title":"Analyzing Medical Data Using “R” (2)"},{"dept":"CLRE","description":"The class will introduce statistical methods and techniques for analyzing medical data from longitudinal studies using PASW/SPSS software. Students will understand the challenges and statistical issues for designing and analyzing longitudinal studies, recognize and use longitudinal data analysis methods and perform analysis. ","edges_from":[190],"edges_to":[],"id":428,"label":"CLRE 263","title":"Longitudinal Data Analysis (2)"},{"dept":"CLRE","description":"Faculty member will direct a student’s study in selected professional development topics in clinical research. Specific content will be tailored to the student’s particular needs and interests. Students must make arrangements with the program and individual faculty member prior to enrolling in the course. ","edges_from":[],"edges_to":[],"id":429,"label":"CLRE 260","title":"Directed Studies in Clinical Research (2)"},{"dept":"SE","description":"of Laminated Composite Structures I (4)","edges_from":[],"edges_to":[2731],"id":430,"label":"SE 253A","title":"Mechanics"},{"dept":"CLRE","description":"The course provides an introduction to the use of decision sciences in health care. Student will be able to construct and evaluate an appropriate decision analysis probability tree, value health outcomes, use sensitivity analysis and understand how to conduct a cost-effectiveness analysis. ","edges_from":[],"edges_to":[],"id":431,"label":"CLRE 264","title":"Clinical Decision Analysis (2)"},{"dept":"CLRE","description":"This course will expose and familiarize students with important advanced statistical methods such as methods for numeric outcomes (Linear regression), nonlinear regression, methods for binary outcomes (Logistic regression), methods for counts (Poisson regression) and categorical outcomes (Log-linear models). ","edges_from":[189,190],"edges_to":[],"id":432,"label":"CLRE 265","title":"Advanced Regression Methods (2)"},{"dept":"MUS","description":"This course will give practical experience in conducting a variety of works from various eras of instrumental and/or vocal music. Students will study problems of instrumental or vocal techniques, formal and expressive analysis of the music, and manners of rehearsal. Required of all graduate students. ","edges_from":[],"edges_to":[],"id":433,"label":"MUS 228","title":"Conducting (4)"},{"dept":"MUS","description":"A seminar to give practical experience in orchestration. Students will study works from various eras of instrumental music and will demonstrate their knowledge by orchestrating works in the styles of these various eras, learning the capabilities, timbre, and articulation of all the instruments in the orchestra. ","edges_from":[],"edges_to":[],"id":434,"label":"MUS 229","title":"Seminar in Orchestration (4)"},{"dept":"ANSC","description":"160. Nature, Culture, and Environmentalism (4)","edges_from":[],"edges_to":[],"id":435,"label":"ANSC","title":""},{"dept":"PHIL","description":"An introduction to one or more central problems in the philosophy of science, or in the philosophy of one of the particular sciences, such as the nature of confirmation and explanation, the nature of scientific knowledge, reductionism, the unity of science, or realism and antirealism. May be taken for credit three times with changed content.","edges_from":[],"edges_to":[],"id":436,"label":"PHIL 204A","title":"Core Course in Philosophy of Science (4)"},{"dept":"VIS","description":"Directed group study on specific topics not covered at present in the normal curriculum. Used as an experimental testing of courses that may be given regular course numbers if proved successful. Special arrangement with faculty member. ","edges_from":[],"edges_to":[],"id":437,"label":"VIS 298","title":"Directed Group Study (1–12)"},{"dept":"VIS","description":"Graduate-level research under the direct guidance of a faculty member. ","edges_from":[],"edges_to":[],"id":438,"label":"VIS 299","title":"Graduate Research (1–4)"},{"dept":"VIS","description":"Individual research with the student’s individual faculty adviser in preparation for their comprehensive exhibitions for the MFA degree or qualifying exam for the PhD. These units are intended to be with the chair of the student’s review committee. For the MFA degree, these units can only be taken after completing the First Year Review. (Required, MFA, PhD)","edges_from":[],"edges_to":[],"id":439,"label":"VIS 295","title":"Individual Studies for Graduate Students (1–12)"},{"dept":"CHEM","description":"Laboratory course in experimental physical chemistry. Program or materials fees may apply. ","edges_from":[448,441,442,443,444,445,446,447],"edges_to":[449],"id":440,"label":"CHEM 105A","title":"Physical Chemistry Laboratory (4)"},{"dept":"CHEM","description":"","edges_from":[578,1196,1197,1198,215,442,446],"edges_to":[440,1195],"id":441,"label":"CHEM 100A","title":""},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[1195,1388,1390,440,441,443],"id":442,"label":"PHYS 2BL","title":""},{"dept":"PHYS","description":"","edges_from":[40,33,442,446],"edges_to":[440,5057,1195],"id":443,"label":"PHYS 2DL","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[440,4724,581,4727],"id":444,"label":"CHEM 133","title":""},{"dept":"CHEM","description":"","edges_from":[33,578,134,30,215],"edges_to":[440,4724],"id":445,"label":"CHEM 131","title":""},{"dept":"PHYS","description":"","edges_from":[36,38,41,29,30,31],"edges_to":[5057,1195,1391,5233,821,440,441,443],"id":446,"label":"PHYS 2CL","title":""},{"dept":"CHEM","description":"","edges_from":[33,1079,220,30,135],"edges_to":[440,581,4727],"id":447,"label":"CHEM 126","title":""},{"dept":"CHEM","description":"","edges_from":[33,215,134,30,911],"edges_to":[440],"id":448,"label":"CHEM 127","title":""},{"dept":"CHEM","description":"Laboratory course in experimental physical chemistry. Program or materials fees may apply. ","edges_from":[440],"edges_to":[],"id":449,"label":"CHEM 105B","title":"Physical Chemistry Laboratory (4)"},{"dept":"TDAC","description":"A continuation of TDAC 103A. Working from Meisner technique, students will learn to deepen and detail their objectives, spontaneous response, and deep listening skills. Focus on the process that will lead to scene work using this technique. ","edges_from":[451],"edges_to":[],"id":450,"label":"TDAC 103B","title":"Acting Intensive II (4)"},{"dept":"TDAC","description":"","edges_from":[452],"edges_to":[450],"id":451,"label":"TDAC 103A","title":""},{"dept":"TDAC","description":"","edges_from":[3547],"edges_to":[451,3721,3722,3723,3724,3548,3549],"id":452,"label":"TDAC 102","title":""},{"dept":"LTTH","description":"This seminar, regularly offered in the winter quarter, introduces various literary theories that are essential for graduate studies in the field of literature and other related fields. The list of readings is decided by the course instructor in consultation with the department. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":453,"label":"LTTH 210B","title":"Introduction to Literary Theory (4)"},{"dept":"LTTH","description":"This course, regularly offered in the spring quarter, prepares students for dissertation research, publication, conference presentation, and job search. The course is required in one of the first three years of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":454,"label":"LTTH 210C","title":"Practicum in Literary Professionalization (4)"},{"dept":"BIMM","description":"An introduction to virus structures, how they are determined,","edges_from":[],"edges_to":[],"id":455,"label":"BIMM 164","title":"Structural Biology of Viruses (4)"},{"dept":"TDGR","description":"Specific projects in theatre individually determined to meet the developing needs, interests, and abilities of MFA candidates. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":456,"label":"TDGR 299","title":"Thesis Project (2–12)"},{"dept":"BIMM","description":"The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells. The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed. Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BGGN 262/Chem 265. Note: Students may not receive credit for both BIMM 162 and Chem 165. Recommended preparation: Phys 1C or 2C. ","edges_from":[410,458],"edges_to":[],"id":457,"label":"BIMM 162","title":"3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[5664,4548,1862,457,5263,5266,1551,3186,410,4751],"id":458,"label":"CHEM 114A","title":""},{"dept":"TDGR","description":"Selected material from following topics: Performance Theory, Dramatic Theory, Critical Theory, Cultural Studies. May be taken eight times as content varies. ","edges_from":[],"edges_to":[],"id":459,"label":"TDGR 292","title":"Cultural and Critical Theory (4)"},{"dept":"GPPA","description":"Good governance and public administration underpin the effective implementation of almost the entire development agenda. This course examines rigorous evidence on both the drivers and impact of (mis)governance in developing countries. Students may not receive credit for GPPA 404 and IRGN 490, Governance, Public Administration, and Development.","edges_from":[],"edges_to":[],"id":460,"label":"GPPA 404","title":"Governance, Public Administration, and Development (4)"},{"dept":"TDGR","description":"Literature and Theatre History Prior to 1900 (4)","edges_from":[],"edges_to":[],"id":461,"label":"TDGR 290","title":"Dramatic"},{"dept":"TDGR","description":"Literature and Theatre History 1900 to the Present (4)","edges_from":[],"edges_to":[],"id":462,"label":"TDGR 291","title":"Dramatic"},{"dept":"TDGR","description":"Taken each term by all graduate stage management students. The class focuses on the development of knowledge and skills necessary for the contemporary stage manager. Seminar format is augmented by lab work that may include departmental productions. ","edges_from":[],"edges_to":[],"id":463,"label":"TDGR 296","title":"Stage Management Practicum (4)"},{"dept":"TDGR","description":"Thesis research for MFA. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":464,"label":"TDGR 297","title":"Thesis Research (2–12)"},{"dept":"TDGR","description":"Research and preparation of doctoral dissertation.","edges_from":[],"edges_to":[],"id":465,"label":"TDGR 294","title":"Dissertation Research (4–12)"},{"dept":"TDGR","description":"This course covers the artistic, aesthetic, and practical aspects of the actors’ work as they develop and execute the character/role toward a fully realized production. ","edges_from":[],"edges_to":[],"id":466,"label":"TDGR 295","title":"Acting Practicum (2)"},{"dept":"TDGE","description":"Study and perform selected songs from American musical theatre. Open to all students. No audition required. Attendance at rehearsals and performance are mandatory. P/NP grades only. May be taken for credit six times. ","edges_from":[],"edges_to":[],"id":467,"label":"TDGE 50","title":"Musical Theatre Chorus (2)"},{"dept":"HISC","description":"Study in the History of Science (4)","edges_from":[],"edges_to":[],"id":468,"label":"HISC 199","title":"Independent"},{"dept":"HISC","description":"Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.","edges_from":[],"edges_to":[],"id":469,"label":"HISC 198","title":"Directed Group Study (4)"},{"dept":"MAE","description":"Independent work by graduate students engaged in research and writing theses. MAE graduate students only. (S/U grades only.)","edges_from":[],"edges_to":[],"id":470,"label":"MAE 299","title":"Graduate Research (1–12)"},{"dept":"SOCI","description":"(Same as USP 105.) Introduces students to the major approaches in the sociological study of cities and to what a sociological analysis can add to our understanding of urban processes. ","edges_from":[472,471],"edges_to":[471],"id":471,"label":"SOCI 153","title":"Urban Sociology (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[471],"id":472,"label":"SOCC 153","title":""},{"dept":"HITO","description":"The majority of the world’s citizens now live in cities; this course examines the evolution of housing architecture and finance in the twentieth-century context of rapid urbanization, dissolving empire, industrialization, and globalization. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ","edges_from":[],"edges_to":[],"id":473,"label":"HITO 180/280","title":"Housing in the Developing World (4)"},{"dept":"LTEN","description":"Tutorial; individual guided reading in an area not normally covered in courses. May be repeated for credit three times.(P/NP grades only.) ","edges_from":[],"edges_to":[],"id":474,"label":"LTEN 199","title":"Special Studies (2 or 4)"},{"dept":"LTEN","description":"Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":475,"label":"LTEN 198","title":"Directed Group Study (4)"},{"dept":"BENG","description":"Introduction to optics. Light propagation in tissue. Propagation modeling. Optical components. Laser concepts. Optical coherence tomography. Microscopic scattering. Tissue optics. Microscopy. Confocal microscopy. Polarization in tissue. Absorption, diffuse reflection, light scattering spectroscopy. Raman, fluorescence lifetime imaging. Photo-acoustic imaging. ","edges_from":[477],"edges_to":[],"id":476,"label":"BENG 141","title":"Biomedical Optics and Imaging (4)"},{"dept":"BENG","description":"","edges_from":[516,140,141,29,30,31],"edges_to":[2882,4327,476,1669,2885],"id":477,"label":"BENG 100","title":""},{"dept":"MATH","description":"Topics include regression methods: (penalized) linear regression","edges_from":[],"edges_to":[],"id":478,"label":"MATH 287D","title":"Statistical Learning (4)"},{"dept":"LTEN","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":479,"label":"LTEN 192","title":"Senior Seminar in Literatures in English (1)"},{"dept":"LTEN","description":"Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ","edges_from":[],"edges_to":[],"id":480,"label":"LTEN 196","title":"Honors Thesis (4)"},{"dept":"MATH","description":"Bivariate and more general multivariate normal distribution. Study of tests based on Hotelling’s T2. Principal components, canonical correlations, and factor analysis will be discussed as well as some competing nonparametric methods, such as cluster analysis. Students who have not taken Math 282A may enroll with consent of instructor. ","edges_from":[482],"edges_to":[],"id":481,"label":"MATH 287B","title":"Multivariate Analysis (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[481,2533,4556,2673,2936,2941],"id":482,"label":"MATH 282A","title":""},{"dept":"MATH","description":"Nonparametric function (spectrum, density,","edges_from":[],"edges_to":[],"id":483,"label":"MATH 287C","title":"Advanced Time Series Analysis (4)"},{"dept":"LTCS","description":"A medical humanities course that examines compelling written and cinematic accounts of health issues confronting contemporary societies such as environmental pollution, contaminated food supply, recreational drug use, HIV/AIDS, cancer, chronic conditions (allergies, diabetes, obesity, arthritis), famine, natural disasters, and war. May be taken for credit two times when topics vary.","edges_from":[],"edges_to":[],"id":484,"label":"LTCS 155","title":"Health, Illness, and Global Culture (4)"},{"dept":"LTCS","description":"The course will examine one or more forms of cultural production or cultural practice from a variety of theoretical and historical perspectives. Topics may include: contemporary debates on culture, genres of popular music/fiction/film, AIDS and culture, the history of sexuality, subcultural styles, etc. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":485,"label":"LTCS 150","title":"Topics in Cultural Studies (4)"},{"dept":"PSYC","description":"This course provides a survey of psychological findings relevant to designing “user-friendly” computers and devices and improving aviation and traffic safety. Topics include human perception as it pertains to displays and image compression, human memory limitations relevant to usability, and nature of human errors. ","edges_from":[],"edges_to":[],"id":486,"label":"PSYC 161","title":"Engineering Psychology (4)"},{"dept":"POLI","description":"(1–4)","edges_from":[],"edges_to":[],"id":487,"label":"POLI 502","title":"Seminar on Teaching Development—Comparative Politics"},{"dept":"PHIL","description":"A study of selected portions of The Critique of Pure Reason and other theoretical writings and/or his major works in moral theory. May be repeated for credit with change in content and approval of the instructor. ","edges_from":[489,490,491,492,23,24],"edges_to":[],"id":488,"label":"PHIL 106","title":"Kant (4)"},{"dept":"PHIL","description":"","edges_from":[1945],"edges_to":[488,490],"id":489,"label":"PHIL 111","title":""},{"dept":"PHIL","description":"","edges_from":[489],"edges_to":[488],"id":490,"label":"PHIL 112","title":""},{"dept":"PHIL","description":"","edges_from":[],"edges_to":[488],"id":491,"label":"PHIL 104","title":""},{"dept":"PHIL","description":"","edges_from":[],"edges_to":[488],"id":492,"label":"PHIL 105","title":""},{"dept":"150A-B-C","description":"","edges_from":[],"edges_to":[],"id":493,"label":"150A-B-C","title":"Advanced Japanese"},{"dept":"VIS","description":"A critical survey discussing the crisis of the Enlightenment, romanticism, realism and naturalism, academic art and history painting, representations of the New World, the Pre-Raphaelites, impressionism, international symbolism, postimpressionism, and the beginnings of modernism. Recommended preparation: VIS 20 or 22 recommended. ","edges_from":[],"edges_to":[],"id":494,"label":"VIS 124CN","title":"Nineteenth-Century Art (4)"},{"dept":"PHIL","description":"A study of one or more of Hegel’s major works, in particular, The Phenomenology of Spirit and The Philosophy of Right. Readings and discussion may also include other figures in the Idealist tradition—such as Fichte, Hölderlin, and Schelling—and critics of the Idealist tradition—such as Marx and Kierkegaard. ","edges_from":[],"edges_to":[],"id":495,"label":"PHIL 107","title":"Hegel (4)"},{"dept":"TDHT","description":"Masterpieces of French farce and comedy from the seventeenth century to the twentieth century studied French theatrical and cultural contexts. Readings include plays by Moliere, Marivauz, Beaumarchais, and Feydeau. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":496,"label":"TDHT 105","title":"French Comedy (4)"},{"dept":"TDHT","description":"Continuities and changes in Italian comedy from the Romans through the Renaissance and commedia dell’arte to modern comedy. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":497,"label":"TDHT 104","title":"Italian Comedy (4)"},{"dept":"TDHT","description":"In this course we will examine representative plays and playwrights who write about the “American” experience from a variety of historical periods and diverse cultural communities. Playwrights will include Glaspell, O’Neill, Williams, Hansberry, Valdez, Yamauchi, Parks, Kushner, Mamet, Greenberg, Hwang, Letts, and Cruz. Theatre companies will include The Group, Provincetown Players, San Francisco Mime Troupe, East/West Players, Teatro Campesino, Spiderwoman, and Cornerstone. TDHT 107 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":498,"label":"TDHT 107","title":"American Theatre (4)"},{"dept":"TDHT","description":"in Dramatic Literature and Theatre History (4)","edges_from":[],"edges_to":[],"id":499,"label":"TDHT 101","title":"Topics"},{"dept":"PSYC","description":"This course provides a survey of the major trends and figures in the development of psychology as a field. Topics may include the mind-body problem, nativism vs. empiricism, and the genesis of behaviorism. ","edges_from":[],"edges_to":[],"id":500,"label":"PSYC 166","title":"History of Psychology (4)"},{"dept":"TDHT","description":"This course examines pivotal dramatic works in the history of professional Asian American theatre in the United States (1960s to the present). Issues include interculturalism, the crossover between minority theatres and mainstream venues, and the performance of identity. TDHT 103 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":501,"label":"TDHT 103","title":"Asian American Theatre (4)"},{"dept":"TDHT","description":"This course provides a survey of the contributions to the theatre arts made by African Americans. Analytic criteria will include the historical context in which the piece was crafted; thematic and stylistic issues; aesthetic theories and reception. TDHT 109 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":502,"label":"TDHT 109","title":"African American Theatre (4)"},{"dept":"TDHT","description":"This course examines the works of Luis Valdez, playwright, director, screenwriter, film director, and founder of the Teatro Campesino. Readings include plays and essays by Valdez and critical books and articles about this important American theatre artist. No prior knowledge in theatre history is needed. ","edges_from":[],"edges_to":[],"id":503,"label":"TDHT 108","title":"Luis Valdez (4)"},{"dept":"ECON","description":"Survey of the Chinese economy. Topics such as economic growth, China’s transition to a market economy, international trade, financial markets, labor markets, and industrial structure. ","edges_from":[505,302],"edges_to":[],"id":504,"label":"ECON 167","title":"Economics of China (4)"},{"dept":"ECON","description":"","edges_from":[302],"edges_to":[800,548,1287,1288,1296,1297,1044,504,1049,5306,509,510,511],"id":505,"label":"ECON 3","title":""},{"dept":"PHIL","description":"A study of Socrates and/or Plato through major dialogues of Plato. Possible topics include the virtues and happiness; weakness of the will; political authority and democracy; the theory of Forms and sensible flux; immortality; relativism, skepticism, and knowledge. May be repeated for credit with change of content and approval of instructor. ","edges_from":[],"edges_to":[],"id":506,"label":"PHIL 100","title":"Plato (4)"},{"dept":"Soc/G","description":"Supervised teaching in lower-division contact classes, supplemented by seminar on methods in teaching sociology. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":507,"label":"Soc/G 500","title":"Apprentice Teaching (2–4)"},{"dept":"PHIL","description":"A study of major issues in Aristotle’s works, such as the categories; form and matter; substance, essence, and accident; the soul; virtue, happiness, and politics. ","edges_from":[],"edges_to":[],"id":508,"label":"PHIL 101","title":"Aristotle (4)"},{"dept":"ECON","description":"Examines the integration of Latin American and Caribbean countries into the global economy. Topics include trade in agricultural and manufactured goods, regional trade agreements, international capital flows to Latin America, financial vulnerabilities, and policy responses. ","edges_from":[505,302],"edges_to":[],"id":509,"label":"ECON 161","title":"Global Integration of Latin America (4)"},{"dept":"ECON","description":"Survey of the Mexican economy. Topics such as economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ","edges_from":[505,302],"edges_to":[],"id":510,"label":"ECON 162","title":"Economics of Mexico (4)"},{"dept":"ECON","description":"Survey of the Japanese economy. Economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ","edges_from":[505,302],"edges_to":[],"id":511,"label":"ECON 163","title":"Japanese Economy (4)"},{"dept":"CENG","description":"Basic conservation laws, flow kinematics. The Navier-Stokes equations and some of its exact solutions, nondimensional parameters and different flow regimes, vorticity dynamics. Cross-listed with MAE 210A. ","edges_from":[169,157,513],"edges_to":[4948],"id":512,"label":"CENG 210A","title":"Fluid Mechanics I (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[512,2049,2052,3309,3310,2031,2032,4243,5812],"id":513,"label":"MAE 101B","title":""},{"dept":"BIOM","description":"Advanced discussions following on “Introduction to Anthropogeny.” Online “Museum of Comparative Anthropogeny (MOCA)” will serve as major scaffold for this in-depth course. MOCA (","edges_from":[],"edges_to":[],"id":514,"label":"BIOM 229","title":"Advanced Anthropogeny (2)"},{"dept":"BIOM","description":"Drug discovery is an emerging science available to academic investigators. This course provides an overview of these drug discovery techniques, including high through-put screening, cell-based screening, computational methods of lead compound discovery, and chemical methods of optimization. ","edges_from":[],"edges_to":[],"id":515,"label":"BIOM 228","title":"Modern Drug Discovery Technologies (2)"},{"dept":"BENG","description":"An introduction to bioengineering that includes lectures and hands-on laboratory for design projects. The principles of problem definition, engineering inventiveness, team design, prototyping, and testing, as well as information access, engineering standards, communication, ethics, and social responsibility will be emphasized. P/NP grades only. ","edges_from":[],"edges_to":[477],"id":516,"label":"BENG 1","title":"Introduction to Bioengineering (2)"},{"dept":"BENG","description":"Introduction to Matlab is designed to give students fluency in Matlab, including popular toolboxes. Consists of interactive lectures with a computer running Matlab for each student. Topics: variables, operations, and plotting; visualization and programming; and solving equations and curve fitting. ","edges_from":[],"edges_to":[],"id":517,"label":"BENG 2","title":"Introductory Computer Programming and Matlab (2)"},{"dept":"SIOC","description":"This is a course in social media for the climate sciences. Students will develop a broad understanding of how to use social media to listen to, respond to, and engage in online climate science discussions. Students will learn to use digital technology to actively engage with constituents. Students will learn how social media can be used effectively for communications. Letter grades only. ","edges_from":[],"edges_to":[],"id":518,"label":"SIOC 291S","title":"@Climate (6)"},{"dept":"BIOM","description":"Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.","edges_from":[],"edges_to":[],"id":519,"label":"BIOM 222","title":"Essentials of Glycobiology (2)"},{"dept":"LTSP","description":"Study of movements, traditions, key authors, or major trends in Caribbean literature in Spanish, such as the romantic movement, the literature of independence, the essay tradition, Afro-Antillean literature, the historical novel. May be taken for credit four times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":520,"label":"LTSP 137","title":"Caribbean Literature (4)"},{"dept":"BIOM","description":"This course provides an overview of the use of mouse models in biomedical research. Sessions will cover general mouse biology, genetics, technologies for generating mutant mice and will focus on model selection, methodological approaches, data interpretation, experimental design, and ethics of animal research. Student participation and discussion will be encouraged. ","edges_from":[],"edges_to":[],"id":521,"label":"BIOM 227","title":"Mouse Models of Human Disease (2)"},{"dept":"BIOM","description":"The course covers recent advances in research into hormone action, molecular endocrinology, lipid, lipoprotein, and carbohydrate metabolism, and reproductive medicine. ","edges_from":[523,524,525],"edges_to":[],"id":522,"label":"BIOM 226","title":"Hormone Action (3)"},{"dept":"BIOM","description":"","edges_from":[],"edges_to":[1704,522,1527,1629,1757],"id":523,"label":"BIOM 200B","title":""},{"dept":"BIOM","description":"","edges_from":[],"edges_to":[1704,522,1527,1629,1757],"id":524,"label":"BIOM 201","title":""},{"dept":"BIOM","description":"","edges_from":[],"edges_to":[1704,522,1527,1629,1757],"id":525,"label":"BIOM 200A","title":""},{"dept":"ANTH","description":"A critical analysis of ethnographic and theoretical texts focusing on the sociocultural study of gender. We will also draw on studies of gender and feminist theory from other disciplines (e.g., history, philosophy) to illuminate issues relevant to anthropology. ","edges_from":[],"edges_to":[],"id":526,"label":"ANTH 224","title":"The Anthropology of Gender and Sexuality (4)"},{"dept":"LIGN","description":"(Same as Cognitive Science 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. As topics vary, may be repeated for credit.","edges_from":[],"edges_to":[],"id":527,"label":"LIGN 238","title":"Topics in Cognitive Linguistics (0–4)"},{"dept":"PHIL","description":"to Philosophy: Knowledge and Its Limits (4)","edges_from":[],"edges_to":[],"id":528,"label":"PHIL 15","title":"Introduction"},{"dept":"PHIL","description":"to Philosophy: The Nature of Reality (4)","edges_from":[],"edges_to":[],"id":529,"label":"PHIL 14","title":"Introduction"},{"dept":"PHIL","description":"An introduction to philosophy which uses science fiction to make abstract philosophical problems vivid. Science fiction themes may include time travel, teleportation, virtual reality, super-intelligent robots, futuristic utopias, and parallel universes. These scenarios raise philosophical questions about knowledge, reality, ethics, and the mind.","edges_from":[],"edges_to":[],"id":530,"label":"PHIL 16","title":"Science Fiction and Philosophy (4)"},{"dept":"LTGM","description":"Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.","edges_from":[],"edges_to":[],"id":531,"label":"LTGM 298","title":"Special Projects: Writing Course (1–12)"},{"dept":"PHIL","description":"An inquiry into the nature of morality and its role in personal or social life by way of classical and/or contemporary works in ethics. May be used to fulfill general-education requirements for Muir and Marshall Colleges.","edges_from":[],"edges_to":[],"id":532,"label":"PHIL 13","title":"Introduction to Philosophy: Ethics (4)"},{"dept":"PHIL","description":"Strategies of scientific inquiry: how elementary logic, statistical inference, and experimental design are integrated to evaluate hypotheses in the natural and social sciences. May be used to fulfill general-education requirements for Marshall, Warren, and Eleanor Roosevelt Colleges.","edges_from":[],"edges_to":[],"id":533,"label":"PHIL 12","title":"Scientific Reasoning (4)"},{"dept":"LTGM","description":"This course may be designed according to an individual student’s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.","edges_from":[],"edges_to":[],"id":534,"label":"LTGM 297","title":"Directed Studies: Reading Course (1–12)"},{"dept":"LAWS","description":"This course will deal in depth each year with a different legal issue of contemporary significance, viewed from the perspectives of political science, history, sociology, and philosophy. Required for students completing the Law and Society minor. May be repeated for credit once, for a maximum total of eight units. ","edges_from":[],"edges_to":[],"id":535,"label":"LAWS 101","title":"Contemporary Legal Issues (4)"},{"dept":"COMM","description":"This course examines the challenges that arise in using feminist theory to understand black women’s experience in Africa and the United States. It also looks at the mass media and popular culture as arenas of black feminist struggle. ","edges_from":[537,538,539,540],"edges_to":[],"id":536,"label":"COMM 138","title":"Black Women, Feminism, and Media (4)"},{"dept":"COMM","description":"","edges_from":[540],"edges_to":[1543,1544,1545,1548,1549,1550,5906,5526,536,794,795,5083,804,805,806,4650,555,940,943,4656,2953,1982,1985,3152,3017,2127,2128,2129,2130,3027,2134,3031,4315,2013,2014,2017,2018,2019,2022,3153,2283,2284,2286,1775,1776,1777,1778,1779,1782,1783],"id":537,"label":"COMM 100B","title":""},{"dept":"COMM","description":"","edges_from":[540],"edges_to":[1543,1544,1545,1548,1549,1550,5906,5526,536,794,795,5083,804,805,806,4650,555,940,943,4656,2953,1982,1985,3152,3017,2127,2128,2129,2130,3027,2134,3031,4315,2013,2014,2017,2018,2019,2022,3153,2283,2284,2286,1775,1776,1777,1778,1779,1782,1783],"id":538,"label":"COMM 100C","title":""},{"dept":"COMM","description":"","edges_from":[540],"edges_to":[1543,1544,1545,1548,1549,1550,5906,5526,536,794,795,5083,804,805,806,4650,555,940,943,4656,2953,1982,1985,3152,3017,2127,2128,2129,2130,3027,2134,3031,4315,2013,2014,2017,2018,2019,2022,3153,2283,2284,2286,1775,1776,1777,1778,1779,1782,1783],"id":539,"label":"COMM 100A","title":""},{"dept":"COMM","description":"","edges_from":[],"edges_to":[1543,1544,1545,1548,1549,1550,536,537,538,539,4125,4650,555,4656,5684,5687,2127,3152,3153,2130,2134,2145,4710,2662,2663,2664,2665,2151,3233,2017,3749,4315,1244,2283,2284,2286,1775,1776,1777,1778,1779,1782,1783,4354,4355,1293,5906,794,795,804,805,806,2362,2367,2375,4954,4955,4957,4958,4959,4960,2022,1898,1899,1900,4585,1412,2953,5002,1419,1420,1422,1427,3989,5526,3991,3992,3993,3995,4508,3997,4511,5539,5540,4006,5544,940,943,1982,1985,5878,2129,3017,3027,3031,5062,5083,2013,2014,3040,2128,2018,2019,3045,3046,3047,3048,3049,3050,3051,4597],"id":540,"label":"COMM 10","title":""},{"dept":"ECON","description":"Theoretical and empirical analysis of labor markets. Topics include: labor supply, labor demand, human capital investment, wage inequality, labor mobility, immigration, labor market discrimination, labor unions and unemployment. ","edges_from":[542,543],"edges_to":[],"id":541,"label":"ECON 139","title":"Labor Economics (4)"},{"dept":"ECON","description":"","edges_from":[547],"edges_to":[800,801,807,1769,797,2529,1051,541,799],"id":542,"label":"ECON 100B","title":""},{"dept":"ECON","description":"","edges_from":[302],"edges_to":[800,801,546,548,551,553,1772,1773,1774,2549,1769,1051,541],"id":543,"label":"ECON 2","title":""},{"dept":"ECON","description":"This course will investigate differences in economic outcomes on the basis of race, gender, ethnicity, religion, and sexual orientation. We will study economic theories of discrimination, empirical work testing those theories, and policies aimed at alleviating group-level differences in economic outcomes. ","edges_from":[302],"edges_to":[],"id":544,"label":"ECON 138","title":"Economics of Discrimination (4)"},{"dept":"PSYC","description":"Selected laboratory topics in the field of psychology. May be taken for credit two times as topics vary. ","edges_from":[],"edges_to":[],"id":545,"label":"PSYC 193L","title":"Psychology Laboratory Topics (4)"},{"dept":"ECON","description":"Addresses environmental issues that transcend national boundaries, such as climate change, biodiversity loss, over-fishing. Examines why international agreements are required, how they are negotiated and implemented, and studies their effectiveness. Explores whether more effective environmental treaties could be designed. ","edges_from":[547,543],"edges_to":[],"id":546,"label":"ECON 133","title":"International Environmental Agreements (4)"},{"dept":"ECON","description":"","edges_from":[138,550,302,134],"edges_to":[4513,546,548,551,553,1991,1772,1773,1774,1297,2549,1050,542],"id":547,"label":"ECON 100A","title":""},{"dept":"ECON","description":"Energy from an economic perspective. Fuel cycles for coal, hydro, nuclear, oil, and solar energy. Emphasis on efficiency and control of pollution. Comparison of energy use across sectors and across countries. Global warming. Role of energy in the international economy. ","edges_from":[547,549,550,551,552,138,302,505,134,543],"edges_to":[],"id":548,"label":"ECON 132","title":"Energy Economics (4)"},{"dept":"ESYS","description":"","edges_from":[],"edges_to":[548,3909],"id":549,"label":"ESYS 103","title":""},{"dept":"MATH","description":"","edges_from":[1061,133],"edges_to":[801,547,548,1994,1388,1390,1391,2291,5306],"id":550,"label":"MATH 10C","title":""},{"dept":"ECON","description":"","edges_from":[547,543],"edges_to":[548],"id":551,"label":"ECON 131","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[548],"id":552,"label":"MAE 124","title":""},{"dept":"ECON","description":"Course uses basic microeconomic tools to discuss a wide variety of public issues, including the war on drugs, global warming, natural resources, health care and safety regulation. Appropriate for majors who have not completed Econ 100A-B-C and students from other departments. ","edges_from":[547,543],"edges_to":[],"id":553,"label":"ECON 130","title":"Public Policy (4)"},{"dept":"HUM","description":"The revival of classical culture and values and the reaction against medieval ideas concerning the place of human beings in the world. The Protestant Reformation and its intellectual and political consequences. The philosophical background to the scientific revolution. Revelle students must take the course for a letter grade. Students may not receive credit for HUM 3 and HUM 3GS. ","edges_from":[268,269],"edges_to":[1682],"id":554,"label":"HUM 3","title":"Renaissance, Reformation, and Early Modern Europe (4)"},{"dept":"COMM","description":"Students examine film and video media produced by black women filmmakers worldwide. This course will use readings from the writings of the filmmakers themselves as well as from film studies, women’s studies, literature, sociology, and history. ","edges_from":[537,538,539,540],"edges_to":[],"id":555,"label":"COMM 137","title":"Black Women Filmmakers (4)"},{"dept":"RELI","description":"An introduction to key topics in the study of religion through the analysis of religious texts, artifacts, and/or practices. The intent is to develop basic strategies of interpretation for undertaking a critical, disciplined study of religion.","edges_from":[],"edges_to":[],"id":556,"label":"RELI 1","title":"Introduction to Religion (4)"},{"dept":"RELI","description":"An introduction to the comparative study of religion, focusing on religious traditions of global significance. Although historical aspects of these traditions will be studied, emphasis will be placed on religious beliefs and practices as manifested in the contemporary world.","edges_from":[],"edges_to":[],"id":557,"label":"RELI 2","title":"Comparative World Religions (4)"},{"dept":"ANTH","description":"Directed to graduate students planning ethnographic work in Christian societies, this course explore","edges_from":[],"edges_to":[],"id":558,"label":"ANTH 226","title":"Ethnography of Christianity (4)"},{"dept":"LTWL","description":"Consideration of pedagogical methods appropriate to undergraduate teaching in literature courses under the supervision of instructor of course. Doctoral students in literature are required to participate in undergraduate teaching for a minimum of twelve units (two to four units per quarter) prior to completion of the PhD degree.","edges_from":[],"edges_to":[],"id":559,"label":"LTWL 500","title":"Apprentice Teaching in Literature (2 or 4)"},{"dept":"VIS","description":"Exploration of concepts in representational artworks by critically examining “found” vs. “made” recorded material. Advanced film/video, photography, computing work. Issues of narrative and structure; attention to formal aspects of media work emphasized. Two production-course limitation. ","edges_from":[561,562,563,564,565,566,567,568],"edges_to":[],"id":560,"label":"VIS 180A","title":"Documentary Evidence and the Construction of Authenticity in Current Media Practices (4)"},{"dept":"VIS","description":"","edges_from":[563],"edges_to":[5800,5129,5130,5132,5133,560,5801],"id":561,"label":"VIS 178","title":""},{"dept":"VIS","description":"","edges_from":[563],"edges_to":[5800,5129,5130,5132,5133,560,5801],"id":562,"label":"VIS 175","title":""},{"dept":"VIS","description":"","edges_from":[731],"edges_to":[5800,5129,5130,5132,5133,560,561,562,564,565,566,5801],"id":563,"label":"VIS 174","title":""},{"dept":"VIS","description":"","edges_from":[563],"edges_to":[5800,5129,5130,5132,5133,560,5801],"id":564,"label":"VIS 177","title":""},{"dept":"VIS","description":"","edges_from":[563],"edges_to":[5800,5129,5130,5132,5133,560,5801],"id":565,"label":"VIS 176","title":""},{"dept":"VIS","description":"","edges_from":[563],"edges_to":[5800,5129,5130,5132,5133,560,5801],"id":566,"label":"VIS 171","title":""},{"dept":"VIS","description":"","edges_from":[1016],"edges_to":[2401,5986,5800,5129,5130,5132,5133,560,5801],"id":567,"label":"VIS 164","title":""},{"dept":"VIS","description":"","edges_from":[1016],"edges_to":[2401,5986,5800,5129,5130,5132,5133,560,5801],"id":568,"label":"VIS 165","title":""},{"dept":"VIS","description":"and Allegory in Current Media Practices (4)","edges_from":[],"edges_to":[],"id":569,"label":"VIS 180B","title":"Fiction"},{"dept":"BENG","description":"Implementation of design project in genetic circuits bioengineering. ","edges_from":[571,68],"edges_to":[68],"id":570,"label":"BENG 128B","title":"Design Implementation in Genetic Circuits Bioengineering (3)"},{"dept":"BENG","description":"","edges_from":[66],"edges_to":[570],"id":571,"label":"BENG 128A","title":""},{"dept":"FPM","description":"This course is an introduction to microarray technology and analysis of gene expression data. This ten-lecture course will cover a range of microarray topics including platform types. Image processing, experimental design, and statistical analysis and application in medicine and health sciences.","edges_from":[],"edges_to":[],"id":572,"label":"FPM 237","title":"Microarray Technology and Informatics (2)"},{"dept":"POLI","description":"Introductory reading seminar on Latin American politics to acquaint students with leading schools of thought, provide critical perspective on premises and methodology, and identify themes for further inquiry. Themes include authoritarianism, revolution, democratization, regional conflict, and emergence of middle-level powers. ","edges_from":[],"edges_to":[],"id":573,"label":"POLI 235A","title":"Latin American Politics (4)"},{"dept":"ECON","description":"Theoretical and empirical issues in labor economics. (Previously numbered Econ 236A-B.) ","edges_from":[],"edges_to":[],"id":574,"label":"ECON 250","title":"Labor Economics (4)"},{"dept":"MUS","description":"This course presents selected topics in music and consists of lecture and listening sessions. No prior technical knowledge is necessary. The course will be offered during summer session.","edges_from":[],"edges_to":[],"id":575,"label":"MUS 80","title":"Special Topics in Music (1–4 )"},{"dept":"MUS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":576,"label":"MUS 87","title":"Freshman Seminar (1)"},{"dept":"POLI","description":"This course provides an overview of the challenges posed by chemical, biological, radiological, and nuclear weapons. Students will learn about how these weapons work, why states seek them, and attempts to prevent proliferation. We will delve into technical and policy challenges related to these weapons, and address how CBRN weapons shape national and regional security dynamics. Efforts to restrict the proliferation of these weapons will be discussed. We will also analyze CBRN terrorism.","edges_from":[],"edges_to":[],"id":577,"label":"POLI 142D","title":"Weapons of Mass Destruction (4)"},{"dept":"CHEM","description":"Third quarter of a three-quarter honors sequence intended for well-prepared","edges_from":[],"edges_to":[5472,3343,441,5082,445,5470,5471],"id":578,"label":"CHEM 6CH","title":"Honors General Chemistry III (4)"},{"dept":"CHEM","description":"of Teaching and Learning Science (4)","edges_from":[],"edges_to":[],"id":579,"label":"CHEM 187","title":"Foundations"},{"dept":"CHEM","description":"(Cross-listed with BIMM 184/BENG 184/CSE 184.)","edges_from":[],"edges_to":[],"id":580,"label":"CHEM 184","title":"Computational Molecular Biology (4)"},{"dept":"CHEM","description":"Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. ","edges_from":[137,444,134,447],"edges_to":[],"id":581,"label":"CHEM 185","title":"Introduction to Computational Chemistry (4)"},{"dept":"CHEM","description":"(Cross-listed with BIMM 182/BENG 182/CSE 182.) This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object oriented databases, data modeling, and description. Survey of current biological database with respect to above, implementation of database on a biological topic. Bioinformatics majors only. ","edges_from":[16,17],"edges_to":[5873,4574],"id":582,"label":"CHEM 182","title":"Biological Databases (4)"},{"dept":"LTSP","description":"This course will examine issues of gender, sexuality, and culture in Spanish, Latin American, and/or Chicana/o literatures. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":583,"label":"LTSP 175","title":"Gender, Sexuality, and Culture (4)"},{"dept":"LTSP","description":"Study of the relationships between cultural production (literature, film, popular cultures), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, revolution. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":584,"label":"LTSP 174","title":"Topics in Culture and Politics (4)"},{"dept":"LTSP","description":"This course will focus on a variety of Latin American and/or Spanish intra- and international migrations throughout the world and on the literature produced by these exiles or immigrants. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":585,"label":"LTSP 177","title":"Literary and Historical Migrations (4)"},{"dept":"LTSP","description":"Study of literature as a means through which the nation has been imagined and as a site of debates over national identity and citizenship. Course materials may focus on Spain and/or Latin America. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":586,"label":"LTSP 176","title":"Literature and Nation (4)"},{"dept":"LTSP","description":"Focus on the interaction between literary expression and the study of society, covering issues such as the sociology of literature, the historical novel, literature and social change, the writer as the intellectual. May be taken for credit three times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":587,"label":"LTSP 171","title":"Studies in Peninsular and/or Latin American Literature and Society (4)"},{"dept":"LTSP","description":"Selected readings in recent cultural and literary theory. Students will be exposed to a variety of methodologies drawn from the Latin American, European, and US traditions. May be taken up to two times for credit when topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":588,"label":"LTSP 170","title":"Contemporary Theories of Cultural Production (4)"},{"dept":"CHEM","description":"(Cross-listed with EDS 123.) In the lecture","edges_from":[],"edges_to":[],"id":589,"label":"CHEM 188","title":"Capstone Seminar in Science Education (4)"},{"dept":"LTSP","description":"Themes in Latin American Literature (4)","edges_from":[],"edges_to":[],"id":590,"label":"LTSP 172","title":"Indigenista"},{"dept":"SOCI","description":"The study of the unique and universal aspects of the Holocaust. Special attention will be paid to the nature of discrimination and racism, those aspects of modernity that make genocide possible, the relationship among the perpetrators, the victims and the bystanders, and the teaching, memory, and denial of the Holocaust. ","edges_from":[592,591],"edges_to":[4707,591],"id":591,"label":"SOCI 178","title":"The Holocaust (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[591],"id":592,"label":"SOCD 178","title":""},{"dept":"SOCI","description":"Course focuses on the development of capitalism as a worldwide process, with emphasis on its social and political consequences. Topics include: precapitalist societies, the rise of capitalism in the West, and the social and political responses to its expansion elsewhere. ","edges_from":[593,594],"edges_to":[593],"id":593,"label":"SOCI 179","title":"Social Change (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[593],"id":594,"label":"SOCD 179","title":""},{"dept":"HILD","description":"Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, and rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration. Program or materials fees may apply. May be taken for credit up to three times. Students must apply and be accepted into the Global Seminars Program.","edges_from":[],"edges_to":[],"id":595,"label":"HILD 7GS","title":"Race and Ethnicity in the Global World (4)"},{"dept":"BENG","description":"Foundations of membrane mechanics. Micro- and nano-mechanics of cells and their constituent protein networks. Biomechanics of the circulation, properties of blood, non-Newtonian behavior, dimensionless flow analysis. Applications to cardiovascular diseases. Polymer and statistical mechanics. Engineering design and problem solving. ","edges_from":[597],"edges_to":[5905,3759],"id":596,"label":"BENG 112B","title":"Fluid and Cell Biomechanics (4)"},{"dept":"BENG","description":"","edges_from":[598],"edges_to":[2667,596,5755],"id":597,"label":"BENG 112A","title":""},{"dept":"BENG","description":"","edges_from":[385,135,136,139,140,30],"edges_to":[1147,597],"id":598,"label":"BENG 110","title":""},{"dept":"SOCI","description":"An analysis of films and how they portray various aspects of American society and culture. ","edges_from":[600,599],"edges_to":[599],"id":599,"label":"SOCI 172","title":"Films and Society (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[599],"id":600,"label":"SOCB 172","title":""},{"dept":"SOCI","description":"Scientific practices have had a tremendous impact on our understandings of gender. Gender relations have also significantly influenced the character of scientific inquiry. The course will consider how and why these two processes intertwine. ","edges_from":[],"edges_to":[],"id":601,"label":"SOCI 170","title":"Gender and Science (4)"},{"dept":"SOCI","description":"Does improved technology mean progress? Or, are environmental pollution and social alienation signs that technology is out of control? This class uncovers the social problems of key modern technologies such as automobile transport, factory farming, biotechnology, and nuclear power. ","edges_from":[602,603],"edges_to":[602],"id":602,"label":"SOCI 171","title":"Technology and Science (4)"},{"dept":"SOCI","description":"","edges_from":[],"edges_to":[602],"id":603,"label":"SOCI 168T","title":""},{"dept":"SOCI","description":"(Same as POLI 1420.) This course covers the definitions, history, and internationalization of terrorism; the interrelation of religion, politics and terror; and the representation of terrorism in the media. A number of organizations and their activities in Europe and the Middle East are examined. ","edges_from":[604,605],"edges_to":[604],"id":604,"label":"SOCI 177","title":"International Terrorism (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[604],"id":605,"label":"SOCD 177","title":""},{"dept":"SOCI","description":"Surveys the development of nationality and citizenship law in historical and comparative perspective with an emphasis on the United States, Latin America, and Europe. Examines competing sociological accounts for national variation and convergence; consequences of the law; and local, transnational, and extraterritorial forms of citizenship. ","edges_from":[606,607],"edges_to":[606],"id":606,"label":"SOCI 175","title":"Nationality and Citizenship (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[606],"id":607,"label":"SOCD 175","title":""},{"dept":"POLI","description":"Independent study or research under direction of a member of the faculty. ","edges_from":[],"edges_to":[],"id":608,"label":"POLI 99H","title":"Independent Study (1)"},{"dept":"ANTH","description":"The Iron Age (ca. 1200–586 BCE) represents","edges_from":[],"edges_to":[],"id":609,"label":"ANTH 292","title":"Social Evolution/Iron Age Levant (4)"},{"dept":"POLI","description":"The Senior Seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in political science at the upper-division level. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":610,"label":"POLI 192","title":"Senior Seminar in Political Science (1)"},{"dept":"POLI","description":"(Same as Com/Gen 194; USP 194, HITO 193, SocE 194, COGS 194) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ","edges_from":[],"edges_to":[],"id":611,"label":"POLI 194","title":"Research Seminar in Washington, DC (4)"},{"dept":"POLI","description":"Teaching and tutorial activities associated with courses and seminars. Limited to advanced political science majors with at least a 3.5 GPA in upper-division political science courses. P/NP grades only. May be taken for credit two times, but only four units may be used for major credit. ","edges_from":[],"edges_to":[],"id":612,"label":"POLI 195","title":"Apprentice Teaching (4)"},{"dept":"GPPA","description":"The health care sector is one of the largest, and continues to grow in most countries. However, it has major quality, safety, and efficiency problems. This course shows how to improve health care delivery. Topics include tools such as checklists, Six Sigma, lean processes, and design of experiments. Some discussion of pharmaceutical development and clinical trials. Students may not receive credit for GPPA 420 and IRGN 490, Innovation in Healthcare Operations.","edges_from":[],"edges_to":[],"id":613,"label":"GPPA 420","title":"Innovation in Healthcare Operations (4)"},{"dept":"LTRU","description":"First-year Russian, with attention to reading, writing, and speaking.","edges_from":[],"edges_to":[],"id":614,"label":"LTRU 1A","title":"First-Year Russian (5)"},{"dept":"POLI","description":"Independent reading in advanced political science by individual students. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":615,"label":"POLI 199","title":"Independent Study for Undergraduates (2 or 4)"},{"dept":"LTRU","description":"First-year Russian, with attention to reading, writing, and speaking.","edges_from":[],"edges_to":[],"id":616,"label":"LTRU 1C","title":"First-Year Russian (5)"},{"dept":"LTRU","description":"First-year Russian, with attention to reading, writing, and speaking.","edges_from":[],"edges_to":[],"id":617,"label":"LTRU 1B","title":"First-Year Russian (5)"},{"dept":"PSYC","description":"This course provides an introduction to research on language acquisition and its relationship to conceptual development. Topics include theoretical foundations (e.g., learning mechanisms, theories of concepts) and empirical case studies, including word learning, syntax and semantics, and language and thought. Recommended preparation: completion of a course in language/linguistics, cognition, or cognitive development. ","edges_from":[],"edges_to":[],"id":618,"label":"PSYC 146","title":"Language and Conceptual Development (4)"},{"dept":"PSYC","description":"(4)","edges_from":[],"edges_to":[],"id":619,"label":"PSYC 147","title":"Gender"},{"dept":"PSYC","description":"This course will provide a survey of current research and theory concerning human memory and amnesia from both cognitive and neuropsychological perspectives. Topics may include short-term (working) memory, encoding and retrieval, episodic and semantic memory, interference and forgetting, false memory, eyewitness memory, emotion and memory, famous case studies of amnesia, and the effects of aging and dementia on memory. ","edges_from":[],"edges_to":[],"id":620,"label":"PSYC 144","title":"Memory and Amnesia (4)"},{"dept":"PSYC","description":"This course provides an overview of language comprehension and production. Topics include animal communication, language development, and language disorders. Recommended preparation: completion of a course in language, cognition, or philosophy of the mind. ","edges_from":[],"edges_to":[],"id":621,"label":"PSYC 145","title":"Psychology of Language (4)"},{"dept":"PSYC","description":"This course provides a survey of research on consciousness from an experimental psychology perspective. Special emphasis will be placed on cognitive, neuro-imaging, and clinical/psychiatric investigative techniques, and on the scientific assessment of the mind-body problem. ","edges_from":[],"edges_to":[],"id":622,"label":"PSYC 142","title":"Psychology of Consciousness (4)"},{"dept":"PSYC","description":"This course provides an overview of the behavioral approach, including basic principles, self-control, clinical applications, and the design of cultures. ","edges_from":[],"edges_to":[],"id":623,"label":"PSYC 143","title":"Control and Analysis of Human Behavior (4)"},{"dept":"PSYC","description":"This course provides training in applying the principles of human behavior, including choice behavior, self-control, and reasoning. ","edges_from":[625],"edges_to":[625],"id":624,"label":"PSYC 140","title":"Human Behavior Laboratory (4)"},{"dept":"PSYC","description":"","edges_from":[624,1103],"edges_to":[624,1103],"id":625,"label":"PSYC 120","title":""},{"dept":"PSYC","description":"This course provides insight into the question of whether important aspects of human behavior can be explained as resulting from natural selection. Topics include sex differences, selfishness and altruism, homicide and violence, and context effects of human reasoning. ","edges_from":[],"edges_to":[],"id":626,"label":"PSYC 141","title":"Evolution and Human Nature (4)"},{"dept":"FPM","description":"Introduction to clinical ambulatory medicine where students spend one afternoon per week in a physician’s practice participating in patient care commensurate with their training. Students may opt to continue the course over successive quarters or enroll full time during the summer for up to four weeks. S/U grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":627,"label":"FPM 238","title":"Introduction to Clinical Family Medicine (1-7)"},{"dept":"ETHN","description":"An advanced survey of key issues, themes, and debates in the field of critical ethnic studies focusing on the connection between race and social structures. Students will use diverse theoretical frameworks to identify and interpret contemporary and historical social problems. ","edges_from":[629,630,631],"edges_to":[3320,4712,5791,3319],"id":628,"label":"ETHN 100A","title":"Ethnic Studies: Theoretical Approaches (4)"},{"dept":"ETHN","description":"","edges_from":[],"edges_to":[2236,628],"id":629,"label":"ETHN 3","title":""},{"dept":"ETHN","description":"","edges_from":[],"edges_to":[2236,628],"id":630,"label":"ETHN 2","title":""},{"dept":"ETHN","description":"","edges_from":[],"edges_to":[628],"id":631,"label":"ETHN 1","title":""},{"dept":"EDS","description":"in ASL-English Bilingual Education (4)","edges_from":[],"edges_to":[],"id":632,"label":"EDS 240A","title":"Research"},{"dept":"PSYC","description":"This course provides an overview of judgment and decision making, which is broadly concerned with preferences, subjective probability, and how they are combined to arrive at decisions. History and current topics will be covered. ","edges_from":[],"edges_to":[],"id":633,"label":"PSYC 148","title":"Psychology of Judgment and Decision (4)"},{"dept":"EDS","description":"in ASL-English Bilingual Education (4)","edges_from":[],"edges_to":[],"id":634,"label":"EDS 240C","title":"Research"},{"dept":"COGS","description":"This seminar surveys current research in information visualization with the goal of preparing students to do original research. The focus is on the cognitive aspects of information design, dynamic representations, and computational techniques. Topics vary each time course is offered.","edges_from":[],"edges_to":[],"id":635,"label":"COGS 220","title":"Information Visualization (4)"},{"dept":"COGS","description":"This course is designed to open the doors for students who are interested in learning about the fundamental principles of visual perception and important applications of computer vision.","edges_from":[],"edges_to":[],"id":636,"label":"COGS 225","title":"Visual Computing (4)"},{"dept":"COGS","description":"(Cross-listed with CSE 219.) New societal challenges, cultural values, and technological opportunities are changing design—and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. S/U grades only. May be taken for credit ninety-nine times.","edges_from":[],"edges_to":[],"id":637,"label":"COGS 229","title":"Design at Large (1)"},{"dept":"HIGR","description":"Introduction to methods, theories, and critiques of writing early modern global/world history. It seeks to familiarize students with the main historiographical debates and defining narratives about the first phase of intensifying global connectivity that commenced in the fifteenth century. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":638,"label":"HIGR 280","title":"Global History: Approaches to the Early Modern Era (4)"},{"dept":"HIGR","description":"Introduction to methods, theories, and critiques of writing global/world history in the modern era. Will survey how scholars of diverse disciplinary backgrounds have analyzed global change since the nineteenth century. It assesses the methodological and theoretical contributions of several analysts, the concepts through which they have explained and typified modes of interaction across global space, and the problems posed by studying connectivity. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":639,"label":"HIGR 281","title":"Global History: Approaches to the Modern Era (4)"},{"dept":"LTWR","description":"A workshop designed to encourage regular writing of all forms of personal experience narrative, including journals, autobiography, firsthand biography, and firsthand chronicle. Instructor and students will discuss student work as well as published personal narratives. May be taken for credit three times. ","edges_from":[272,273,261],"edges_to":[646],"id":640,"label":"LTWR 120","title":"Personal Narrative Workshop (4)"},{"dept":"LTWR","description":"Workshop focusing on the review, the op-ed piece, the column, the blurb, the profile, the interview, and “content-providing” for websites. We’ll examine current examples of media writing; students will produce a body of work and critique one another’s productions. May be taken for credit three times. ","edges_from":[272],"edges_to":[],"id":641,"label":"LTWR 121","title":"Media Writing Workshop (4)"},{"dept":"LTWR","description":"A workshop in writing about science for the public. Students will study and then construct metaphors or analogues that introduce readers to scientific perplexities. Completion of LTWR 8A, 8B, or 8C highly recommended. May be repeated for credit three times. ","edges_from":[],"edges_to":[],"id":642,"label":"LTWR 122","title":"Writing for the Sciences Workshop (4)"},{"dept":"CHEM","description":"This course explores teaching strategies specific to chemistry at the college level, and promotes the development of skills for facilitating active, student-centered learning in both lecture and laboratory settings. It is required for first-time teaching assistants. S/U grades only. ","edges_from":[],"edges_to":[],"id":643,"label":"CHEM 509","title":"Teaching Methods in Chemistry and Biochemistry (2)"},{"dept":"LTWR","description":"A writing workshop on the theory and practice of literary translation. Students will translate literary texts and workshop with the instructor and other course members. Selected readings in translation theory. May be taken for credit three times. ","edges_from":[272,273,261],"edges_to":[],"id":644,"label":"LTWR 124","title":"Translation of Literary Texts Workshop (4)"},{"dept":"LTWR","description":"A writing, reading, and critical-thinking workshop designed to produce nonfiction pieces that fall outside the limits of the essay form. Included are travel narratives, memoir, and information-based writing that transform their own materials into compelling literature. May be repeated for credit three times. ","edges_from":[272],"edges_to":[],"id":645,"label":"LTWR 126","title":"Creative Nonfiction Workshop (4)"},{"dept":"LTWR","description":"Workshop designed to critique and engage the means of distributing literature within culture. Publishing from “zine” through mainstream publication; web publishings; readings and “slams”; publicity and funding; colloquia with writers; politics and literature; and the uses of performance and media. May be taken for credit three times. ","edges_from":[640,648,647],"edges_to":[],"id":646,"label":"LTWR 129","title":"Distributing Literature Workshop (4)"},{"dept":"LTWR","description":"","edges_from":[261],"edges_to":[646],"id":647,"label":"LTWR 102","title":""},{"dept":"LTWR","description":"","edges_from":[273],"edges_to":[949,646],"id":648,"label":"LTWR 100","title":""},{"dept":"CHEM","description":"Under the supervision and mentorship of a course instructor, MS and PhD students serve as teaching assistants to undergraduate laboratory and lecture courses. To support teaching competency, regular meetings with the instructor and attendance at lectures are required. S/U grades only. May be taken for credit twelve times. ","edges_from":[],"edges_to":[],"id":649,"label":"CHEM 500","title":"Apprentice Teaching (4)"},{"dept":"MATH","description":"A highly adaptive course designed to build on students’ strengths while increasing overall mathematical understanding and skill. This multimodality course will focus on several topics of study designed to develop conceptual understanding and mathematical relevance: linear relationships; exponents and polynomials; rational expressions and equations; models of quadratic and polynomial functions and radical equations; exponential and logarithmic functions; and geometry and trigonometry. Workload credit only—not for baccalaureate credit. ","edges_from":[],"edges_to":[],"id":650,"label":"MATH 2","title":"Introduction to College Mathematics (4)"},{"dept":"LIGN","description":"Language in American culture and society.","edges_from":[],"edges_to":[],"id":651,"label":"LIGN 8","title":"Languages and Cultures in America (4)"},{"dept":"SE","description":"Concepts of stress and strain. Hooke’s law. Stress transformation. Axial loading of bars. Torsion of circular shafts. Torsion of thin-walled members. Pure bending of beams. Unsymmetric bending of beams. Shear stresses in beams. Shear stresses in thin-walled beams. Shear center. Differential equation of the deflection curve. Deflections and slopes of beams from integration methods. Statically determinate and indeterminate problems. ","edges_from":[653,654,135],"edges_to":[3970,2659,1861,5767,399,1785,1308],"id":652,"label":"SE 110A","title":"Solid Mechanics I (4)"},{"dept":"MAE","description":"","edges_from":[29,654,134],"edges_to":[2081,3330,3745,1129,1127,652,79,920,1147],"id":653,"label":"MAE 130A","title":""},{"dept":"SE","description":"","edges_from":[29,134],"edges_to":[2081,3330,3745,1129,1127,652,653,79,920,1147],"id":654,"label":"SE 101A","title":""},{"dept":"MGT","description":"Introduction to the emerging real estate tech sector; newly available datasets and technologies are transforming the real estate sector; introduction of quantitative methods for analyzing real estate and urban trends; utilizing large datasets and software in making optimal decisions from the perspective of buyers, sellers, real estate agents and brokers, developers, and regulators. ","edges_from":[],"edges_to":[],"id":655,"label":"MGT 158","title":"Real Estate and the Tech Sector (4)"},{"dept":"LIGN","description":"The role of language in thought, myth, ritual, advertising, politics, and the law. Language variation, change, and loss; multilingualism, pidginization and creolization; language planning, standardization, and prescriptivism; writing systems. ","edges_from":[],"edges_to":[],"id":656,"label":"LIGN 3","title":"Language as a Social and Cultural Phenomenon (4)"},{"dept":"LIGN","description":"Fundamental issues in language and cognition. Differences between animal communication, sign systems, and human language; origins and evolution of language; neural basis of language; language acquisition in children and adults. ","edges_from":[],"edges_to":[1156],"id":657,"label":"LIGN 4","title":"Language as a Cognitive System (4)"},{"dept":"LIGN","description":"Introduction to the study of language through the investigation of invented languages, whether conscious (Elvish, Klingon, Esperanto) or unconscious (creoles, twin/sibling languages). Students will participate in the invention of a language fragment. Topics discussed include language structure, history, culture, and writing systems. ","edges_from":[],"edges_to":[],"id":658,"label":"LIGN 5","title":"The Linguistics of Invented Languages (4)"},{"dept":"LIGN","description":"Deaf history since the eighteenth century. The structure of American Sign Language and comparison with oral languages. ASL poetry and narrative and Deaf people’s system of cultural knowledge. Basic questions concerning the nature of language and its relation to culture. ","edges_from":[],"edges_to":[],"id":659,"label":"LIGN 7","title":"Sign Language and Its Culture (4)"},{"dept":"PHYS","description":"This is a two-quarter course on gravitation and the general theory of relativity. The first quarter is intended to be offered every year and may be taken independently of the second quarter. The second quarter will be offered in alternate years. Topics covered in the first quarter include special relativity, differential geometry, the equivalence principle, the Einstein field equations, and experimental and observational tests of gravitation theories. The second quarter will focus on more advanced topics, including gravitational collapse, Schwarzschild and Kerr geometries, black holes, gravitational radiation, cosmology, and quantum gravitation.","edges_from":[],"edges_to":[],"id":660,"label":"PHYS 225A-B","title":"General Relativity (4-4)"},{"dept":"AAS","description":"This course will cover the experiences of peoples of African descent in the U.S. and broader African Diaspora from the vantage points of cultural production, political practice, socioeconomic conditions, and the overall struggle for social justice along intersecting lines of race, gender, and class. Topics reviewed include slavery (and slave rebellion), Reconstruction, Jim Crow apartheid, the Great Migration and Harlem Renaissance, and the Civil Rights and Black Power Movements.","edges_from":[],"edges_to":[],"id":661,"label":"AAS 10","title":"Introduction to African American Studies (4)"},{"dept":"POLI","description":"Examines the legal issues surrounding the rights of criminal suspects, as well as the rights of “marginal” groups such as aliens, illegal immigrants, and the mentally ill. Also includes a discussion of the nature of discrimination in American society. ","edges_from":[],"edges_to":[],"id":662,"label":"POLI 104C","title":"Civil Liberties—The Rights of the Accused and Minorities (4)"},{"dept":"ANTH","description":"This seminar deals with recent developments in the anthropology of the political: contemporary forms of power and governance; the formation of the subject; imperial regimes and colonial/postcolonial orders; “governmentality”; global process and the contemporary transformations of the state and governance. ","edges_from":[],"edges_to":[],"id":663,"label":"ANTH 218","title":"Anthropology of the State and Governance (4)"},{"dept":"ANTH","description":"The focus here is “politics,” broadly constructed, in various societies. Analysis is from the perspective of the recourses deployed by all involved, including but not limited to power, with emphasis on the role of culture and social structure. ","edges_from":[665],"edges_to":[],"id":664,"label":"ANTH 219","title":"Seminar in Political Anthropology (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[664],"id":665,"label":"ANGR 219","title":""},{"dept":"ANTH","description":"Examines the worldwide resurgence of religion in the context of migration, missionization, the media, postcolonialism, and personal mobility in contemporary global culture. ","edges_from":[],"edges_to":[],"id":666,"label":"ANTH 210","title":"Religion and Globalization (4)"},{"dept":"ANTH","description":"With special attention to the relationship between theory and data, this course deals with psychoanalytic approaches to the study of religion through a close examination of key ethnographic and historical studies of religious systems and experience. ","edges_from":[],"edges_to":[],"id":667,"label":"ANTH 211","title":"Psychoanalysis and Religion (4)"},{"dept":"ANTH","description":"A critical exploration of timely and/or controversial topics in biological anthropology. Course will vary in title and content. ","edges_from":[],"edges_to":[],"id":668,"label":"ANTH 212","title":"Advanced Topics in Biological Anthropology (4)"},{"dept":"ANTH","description":"This seminar examines intersection of anthropology and psychiatry. Topics include cultural conceptions and social determinants of anxiety, depression, trauma, and psychosis, corporeal experience and manifestation of illness, transnational variation in course and outcome, global circulation of psychiatric knowledge/practice and pharmaceuticals. ","edges_from":[],"edges_to":[],"id":669,"label":"ANTH 213","title":"Anthropology and Mental Health (4)"},{"dept":"ANTH","description":"This seminar considers three major tropes for cultivating human relations—being together, living together, and working together. In examining recent inquiries into kinship, environment, and labor, we explore each of these tropes as concrete channels of human relation along which such qualities as love, attachment, stigma, and threat might travel. How do people consider themselves related, and what are the potentials of those relations? ","edges_from":[],"edges_to":[],"id":670,"label":"ANTH 214","title":"Kin, Land, and Labor-Cultivating Relations (4)"},{"dept":"ANTH","description":"A critical exploration of timely and/or controversial topics in sociocultural anthropology. Course will vary in title and content. ","edges_from":[],"edges_to":[],"id":671,"label":"ANTH 215","title":"Advanced Topics in Sociocultural Anthropology (4)"},{"dept":"ANTH","description":"Pentecostal and charismatic Christianity have recently expanded around the globe. This course explores the cultural and social processes facilitating their spread and examines how these kinds of Christianity shape social life, politics, gender relations, and economic practices in convert societies. ","edges_from":[],"edges_to":[],"id":672,"label":"ANTH 216","title":"Global Pentecostalism (4)"},{"dept":"ANTH","description":"The opposition between materiality and ideology structures our practice as social scientists and as neoliberal citizens. This course explores the underpinnings of this division, its current manifestations, and attempts to trouble it analytically, methodologically, and politically. ","edges_from":[],"edges_to":[],"id":673,"label":"ANTH 217","title":"Materiality (4)"},{"dept":"ESYS","description":"Provides an introduction to environmental systems. Faculty members from departments in the natural sciences, geosciences, and social sciences will offer perspectives in these areas. (F)","edges_from":[],"edges_to":[],"id":674,"label":"ESYS 90","title":"Perspectives on Environmental Issues (1)"},{"dept":"HIEU","description":"Comparative study of Islam in Europe since 1945. Topics include indigenous populations; immigration; Islamic law/church-state questions; EU expansion/integration; gender issues; terrorism; Islamophobia; “Europeanizing” Islam; the historical tradition of European-Muslim encounter and its present political/cultural issues. Graduate students will be required to do an additional paper. ","edges_from":[],"edges_to":[],"id":675,"label":"HIEU 182/282","title":"The Muslim Experience in Contemporary European Society (4)"},{"dept":"CENG","description":"Conduction, convection, radiation heat transfer;","edges_from":[],"edges_to":[2049,2818,2052,3309,2031,2032,2545,5812,3579],"id":676,"label":"CENG 101B","title":"Heat Transfer (4)"},{"dept":"CENG","description":"Diffusive and convective mass transfer in","edges_from":[],"edges_to":[2049,2052,3309,2031,2032,5812,4060],"id":677,"label":"CENG 101C","title":"Mass Transfer (4)"},{"dept":"MGTF","description":"This course focuses on the means and methods of finance applied to social, economic, and environmental challenges of development. Financial innovations give rise to new intermediaries, new types of instruments, and new services or techniques to create jobs, build communities, and enable capital formation and economic growth. Students will discover why capital structure matters in aligning diverse interests into new business models to finance social and economic change. ","edges_from":[],"edges_to":[],"id":678,"label":"MGTF 458","title":"Financial Innovations for Economic Development (4)"},{"dept":"MATH","description":"An introduction to recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ","edges_from":[8,384,6],"edges_to":[5140],"id":679,"label":"MATH 160A","title":"Elementary Mathematical Logic I (4)"},{"dept":"VIS","description":"A critical review of the principal strategies of investigation in past and present art-historical practice, a scrutiny of their contexts and underlying assumptions, and a look at alternative possibilities. The various traditions for formal and iconographic analysis as well as the categories of historical description will be studied. Required for all art history and criticism majors. ","edges_from":[681],"edges_to":[2325,3751],"id":680,"label":"VIS 112","title":"Art Historical Methods (4)"},{"dept":"VIS","description":"","edges_from":[],"edges_to":[680,2843],"id":681,"label":"VIS 23","title":""},{"dept":"CSE","description":"Fundamentals of computer programming and basic software design covering topics related to variables, functions, and control structures; writing, testing, and debugging programs in Matlab. Examples focus on scientific applications. Recommended preparation: high school algebra and familiarity with the computing milieu. Students with limited computing experience may take CSE 3 for preparation. Program or materials fees may apply. ","edges_from":[],"edges_to":[5903,2335,3293,2334,4205],"id":682,"label":"CSE 7","title":"Introduction to Programming with Matlab (4)"},{"dept":"Soc/G","description":"Alternative theories of the relations of immigrants and host societies, and an examination on the debates on, and dynamic of, immigration expansion and restriction. Comparison of the bearing of liberal, communitarian, and ethnic citizenship discourses on the inclusion and exclusion of immigrants and their descendants. ","edges_from":[],"edges_to":[],"id":683,"label":"Soc/G 282","title":"Immigration and Citizen (4)"},{"dept":"Soc/G","description":"Develops central themes in medical sociology in order to understand twentieth- and twenty-first century medical practice and research. Topics include authority and expertise; health inequalities; managed care; health activism; biomedical knowledge production; and the construction of medical objects and subjects. ","edges_from":[],"edges_to":[],"id":684,"label":"Soc/G 284","title":"Contemporary Biomedicine (4)"},{"dept":"MGT","description":"Residential and commercial mortgage-backed securities markets and the market for structured real estate debt; the estimation of prices, yields, and various measures of investment performance; creating and structuring security issues; legal, regulatory, and institutional issues; derivative products (CDOs, CDSs, options, futures, etc.); and current political, economic, and policy issues. ","edges_from":[686],"edges_to":[],"id":685,"label":"MGT 157","title":"Real Estate Securitization (4)"},{"dept":"MGT","description":"","edges_from":[129,130,1132,1133,1882,1884,3615],"edges_to":[5028,3784,3786,3787,685,4996],"id":686,"label":"MGT 181","title":""},{"dept":"Soc/G","description":"This seminar examines the place of scientific knowledge and information and communication technology in the transformation of capitalist economy and society. The class explores new interactions between science studies and social theory of advanced capitalism. ","edges_from":[],"edges_to":[],"id":687,"label":"Soc/G 288","title":"Knowledge Capitalism (4)"},{"dept":"VIS","description":"Examines a topic of special interest to permanent and visiting faculty that is not addressed in the regular curriculum. As in other Art Practice/Theory seminars, students will both produce work and read and write critically about the topic. Topics will vary.","edges_from":[],"edges_to":[],"id":688,"label":"VIS 219","title":"Special Topics in Art Practice/Theory (4)"},{"dept":"POLI","description":"An exploration of the relationship between power and justice in modern society. Materials include classic and contemporary texts, films, and literature. POLI 13 is Lecture only, and POLI 13D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 13 and 13D.","edges_from":[],"edges_to":[],"id":689,"label":"POLI 13 or 13D","title":"Power and Justice (4)"},{"dept":"CLRE","description":"This experiential course builds on the knowledge gained in the core curriculum through hands-on lab and simulation-based exercises. Students will learn basic lab methods and communication skills pertinent to engaging subjects in clinical research. May be taken for credit four times. While students are required to take the course two times, the course would apply toward general elective requirements when taken a third and fourth time. ","edges_from":[185,187],"edges_to":[],"id":690,"label":"CLRE 270","title":"Experiential Learning in Clinical Research (2)"},{"dept":"POLI","description":"This course will examine the historical development of the ideal of democracy from Periclean Athens to the present in the light of criticism by such thinkers as Plato, Tocqueville, and Mosca and difficulties encountered in efforts to realize the ideal.","edges_from":[],"edges_to":[],"id":691,"label":"POLI 110H","title":"Democracy and Its Critics (4)"},{"dept":"POLI","description":"Leading political theories of liberal democracy since 1950. What is the meaning of political liberty? Political equality is the equality of what? Course will consider thinkers such as J.S. Mill, Berlin, Rawls, Dworkin, Taylor, Sen, Nussbaum, G. Cohen, Petit.","edges_from":[],"edges_to":[],"id":692,"label":"POLI 110K","title":"Liberty and Equality (4)"},{"dept":"POLI","description":"This course examines how power has been conceived and contested during the course of American history. The course explores the changes that have occurred in political rhetoric and strategies as America has moved from a relatively isolated agrarian and commercial republic to a military and industrial empire.","edges_from":[],"edges_to":[],"id":693,"label":"POLI 110J","title":"Power in American Society (4)"},{"dept":"POLI","description":"Leading theories of environmental justice, ethics, and politics since 1960. Thinkers such as Dauvergne, Dobson, Dryzek, Eckersley, Latour, Plumwood, and Simon on ecosystems, climate change, sustainability, preservation, human welfare, nonhuman animals, place, feminism, state, market, and green political movements. ","edges_from":[],"edges_to":[],"id":694,"label":"POLI 110M","title":"Green Political Thought (4)"},{"dept":"POLI","description":"Nationalist ideologies. Examination of the rhetoric of nationalist mobilization. Theories about the relationship between nationalist movements and democracy, capitalism, warfare, and the state. ","edges_from":[],"edges_to":[],"id":695,"label":"POLI 110N","title":"Theories of Nationalism (4)"},{"dept":"POLI","description":"and Saints: Political Thought from Plato to Augustine (4)","edges_from":[],"edges_to":[],"id":696,"label":"POLI 110A","title":"Citizens"},{"dept":"POLI","description":"and Reaction: Political Thought from Kant to Nietzsche (4)","edges_from":[],"edges_to":[],"id":697,"label":"POLI 110C","title":"Revolution"},{"dept":"POLI","description":"The course deals with the period that marks the rise and triumph of the modern state. Central topics include the gradual emergence of human rights and the belief in individual autonomy. Readings from Machiavelli, Hobbes, Locke, Rousseau, and others.","edges_from":[],"edges_to":[],"id":698,"label":"POLI 110B","title":"Sovereigns, Subjects, and the Modern State: Political Thought from Machiavelli to Rousseau (4)"},{"dept":"POLI","description":"This course explores theories of politics that are oriented beyond state borders. Key topics include international order, cosmopolitanism, human rights, just war, global justice, mitigation, citizenship, identity, and commercial society. The course examines thinkers from classical antiquity to contemporary times.","edges_from":[],"edges_to":[],"id":699,"label":"POLI 110G","title":"International Political Thought (4)"},{"dept":"BIBC","description":"Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the","edges_from":[],"edges_to":[],"id":700,"label":"BIBC 194","title":"Advanced Topics in Modern Biology: Biochemistry (2)"},{"dept":"Linguistics/Hindi","description":"Presentation and practice of the basic grammatical","edges_from":[],"edges_to":[],"id":701,"label":"Linguistics/Hindi (LIHI) 1CX","title":"Analysis of Hindi (2.5)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ","edges_from":[],"edges_to":[],"id":702,"label":"Linguistics/Heritage Languages (LIHL) 116W","title":"Arabic for Arabic Speakers (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ","edges_from":[],"edges_to":[],"id":703,"label":"Linguistics/Heritage Languages (LIHL) 116P","title":"Arabic for Arabic Speakers (4)"},{"dept":"LATI","description":"Guided and supervised reading of the literature on Latin America in the interdisciplinary areas of anthropology, communications, economics, history, literature, political science, and sociology. For students majoring in Latin American Studies, reading will focus around potential topics for senior papers; for honors students in Latin American Studies, reading will culminate in formulation of a prospectus for the research thesis. ","edges_from":[705],"edges_to":[],"id":704,"label":"LATI 199","title":"Individual Study (4)"},{"dept":"LATI","description":"","edges_from":[],"edges_to":[704,708,709,942],"id":705,"label":"LATI 50","title":""},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ","edges_from":[],"edges_to":[],"id":706,"label":"Linguistics/Heritage Languages (LIHL) 116F","title":"Arabic for Arabic Speakers (4)"},{"dept":"GPLA","description":"This course is designed to enable students with basic knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 460A-B-C. Students may not get credit for any IRLA 460 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":707,"label":"GPLA 460A-B-C","title":"Basic Bahasa Indonesia for Professional Proficiency (4-4-4)"},{"dept":"LATI","description":"Research seminar on selected topics in the study of Latin America; all students will be required to prepare and present independent research papers. (Honors students will present drafts of senior research theses, of no less than fifty pages in length; non-honors students will present final versions of analytical papers of approximately twenty-five to forty pages in length.) ","edges_from":[705],"edges_to":[],"id":708,"label":"LATI 190","title":"Senior Seminar (4)"},{"dept":"LATI","description":"Independent reading and research under direction of a member of the faculty group in Latin American Studies; goal is to provide honors students with an opportunity to complete senior research thesis (to be defended before three-person interdisciplinary faculty committee). ","edges_from":[705],"edges_to":[],"id":709,"label":"LATI 191","title":"Honors Seminar (4)"},{"dept":"BENG","description":"Weekly seminars by faculty, visitors, postdoctoral","edges_from":[],"edges_to":[],"id":710,"label":"BENG 281","title":"Seminar in Bioengineering (1)"},{"dept":"BENG","description":"Weekly seminars by bioengineering faculty presenting their research. May be repeated for credit. Course does not apply toward MS or PhD graduation requirements. (S/U grades only.) (F)","edges_from":[],"edges_to":[],"id":711,"label":"BENG 282","title":"Seminar: Faculty Research (1)"},{"dept":"BIMM","description":"Genomics Research Initiative Laboratory II (4)","edges_from":[],"edges_to":[],"id":712,"label":"BIMM 170","title":""},{"dept":"ANSC","description":"This course examines the diversity of emotional experience in human societies and the contribution of the study of emotion to understanding culture and human nature. ","edges_from":[],"edges_to":[],"id":713,"label":"ANSC 128","title":"Culture and Emotion (4)"},{"dept":"ANSC","description":"This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. ","edges_from":[],"edges_to":[],"id":714,"label":"ANSC 129","title":"Meaning and Healing (4)"},{"dept":"EDS","description":"Students will study discipline-specific principles of effective learning, including critical thinking, problem solving, collaboration, and group communication. Laboratory and hypothesis testing, library research and writing skills, and self-assessment. Students will explore concepts and procedures in mathematics, science, and economics. ","edges_from":[],"edges_to":[],"id":715,"label":"EDS 20S","title":"Introduction to Principles of Learning (4)"},{"dept":"TDGR","description":"A weekly seminar in which all graduate stage managers participate. Includes discussions of problems encountered on current productions, paperwork, methodology, and production approaches. ","edges_from":[],"edges_to":[],"id":716,"label":"TDGR 288","title":"Stage Management Seminar (4)"},{"dept":"PHIL","description":"Central issues about the justification, proper functions, and limits of the state through classic texts in the history of political philosophy by figures such as Plato, Aristotle, Hobbes, Locke, Rousseau, Mill, and Marx. ","edges_from":[],"edges_to":[],"id":717,"label":"PHIL 166","title":"Classics in Political Philosophy (4)"},{"dept":"ANSC","description":"Explores religious life in various cultures. Topics addressed include the problem of religious meaning, psychocultural aspects of religious experience, religious conversion and revitalization, contrasts between traditional and world religions, religion and social change. ","edges_from":[],"edges_to":[],"id":718,"label":"ANSC 120","title":"Anthropology of Religion (4)"},{"dept":"ANSC","description":"This course examines the role of communicative practices and language differences in organizing social life. Topics include social action through language; child language socialization; language and social identity (ethnicity, gender, class); interethnic communication; language ideologies; and language and power in social institutions and everyday life. ","edges_from":[],"edges_to":[],"id":719,"label":"ANSC 122","title":"Language in Society (4)"},{"dept":"TDGR","description":"A course for MFA students in stage management. Topics will focus on various aspects of theatre administration, and advanced stage management, including nonprofit theatre, commercial theatre, advanced problems, venues, musicals/dance, production management, theatre development, business problems, and theatre marketing. ","edges_from":[],"edges_to":[],"id":720,"label":"TDGR 286","title":"Special Topics in Stage Management (1–6)"},{"dept":"ANSC","description":"This course introduces the concept of culture and the debates surrounding it. Cultural anthropology asks how people create meaning and order in society, how culture intersects with power, and how national and global forces impact local meanings and practices. ","edges_from":[],"edges_to":[],"id":721,"label":"ANSC 124","title":"Cultural Anthropology (4)"},{"dept":"ANSC","description":"How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125 and ANSC 125GS. ","edges_from":[],"edges_to":[],"id":722,"label":"ANSC 125","title":"Gender, Sexuality, and Society (4)"},{"dept":"ANSC","description":"This course examines the diversity of practices of child-rearing, socialization, and enculturation across cultures, and the role of culture in the development of personality, morality, spirituality, sexuality, emotion, and cognition. ","edges_from":[],"edges_to":[],"id":723,"label":"ANSC 126","title":"Childhood and Adolescence (4)"},{"dept":"TDGR","description":"Creative projects to develop student’s techniques and professional","edges_from":[],"edges_to":[],"id":724,"label":"TDGR 282","title":"Advanced Sound Design (4)"},{"dept":"HISC","description":"in Twentieth-Century Science and Culture (4)","edges_from":[],"edges_to":[],"id":725,"label":"HISC 165","title":"Topics"},{"dept":"HISC","description":"A selection of topics from physical, biological, or medical writings up to 1500. Emphasis on analysis of primary sources and contexts. Topics vary from year to year. Graduate students will be expected to submit a more substantial piece of work.","edges_from":[],"edges_to":[],"id":726,"label":"HISC 169","title":"Topics in Pre-Renaissance Science (4)"},{"dept":"HINE","description":"Growth of nationalism in relation to imperialism,","edges_from":[],"edges_to":[],"id":727,"label":"HINE 166/266","title":"Nationalism in the Middle East (4)"},{"dept":"ERC","description":"Senior thesis research project for students who have been accepted into the Eleanor Roosevelt College Individual Studies major. Project will be carried out under supervision of one or more faculty members. Depending on scope of the project, may be taken for four or eight units of credit in a single quarter, or eight units distributed over two quarters. ","edges_from":[],"edges_to":[],"id":728,"label":"ERC 196","title":"Honors Project (4)"},{"dept":"VIS","description":"Develop artworks and installations that utilize digital electronics. Techniques in digital electronic construction and computer interfacing for interactive control of sound, lighting, and electromechanics. Construction of devices that responsively adapt artworks to conditions involving viewer participation, space activation, machine intelligence. Recommended preparation: CSE 8A strongly recommended. Program or materials fees may apply. Purchase of components kit required. Two production-course limitation. ","edges_from":[730,731,732],"edges_to":[733],"id":729,"label":"VIS 147A","title":"Electronic Technologies for Art I (4)"},{"dept":"VIS","description":"","edges_from":[],"edges_to":[4592,729,4442,4595,4247],"id":730,"label":"VIS 80","title":""},{"dept":"VIS","description":"","edges_from":[],"edges_to":[2145,1411,2151,5002,5554,563,729],"id":731,"label":"VIS 70N","title":""},{"dept":"VIS","description":"","edges_from":[],"edges_to":[729,1155,932],"id":732,"label":"VIS 41","title":""},{"dept":"VIS","description":"Continuation of the electronics curriculum. Design of programmable microcontroller systems for creating artworks that are able to respond to complex sets of input conditions, perform algorithmic and procedural processing, and generate real time output. Program or materials fees may apply. Purchase of components kit required. Two production-course limitation. ","edges_from":[729],"edges_to":[3422,1910],"id":733,"label":"VIS 147B","title":"Electronic Technologies for Art II (4)"},{"dept":"MATH","description":"Second course in a two-quarter introduction to abstract algebra with some applications. Emphasis on rings and fields. Topics include: definitions and basic properties of rings, fields, and ideals, homomorphisms, irreducibility of polynomials. (Students may not receive credit for both Math 100B and Math 103B.) ","edges_from":[8,6],"edges_to":[],"id":734,"label":"MATH 103B","title":"Modern Algebra II (4)"},{"dept":"ERC","description":"The content of this independent study course, which may not duplicate any existing course on campus, will be determined by a supervising faculty member and tailored to fit specific content needs of students pursuing the Eleanor Roosevelt College Individual Studies major. ","edges_from":[],"edges_to":[],"id":735,"label":"ERC 199","title":"ERC Independent Studies (4)"},{"dept":"SIOC","description":"This is a preparatory mathematics class for climate sciences, specifically designed to review math concepts vital to understanding climate science in preparation for SIOC 210 and SIOC 217A. The course will use statistical methods to understand the observed climate records, calculus to investigate Earth’s radiation budget, and vector rotation to introduce the dynamics and transport of the atmosphere and ocean. Letter grades only. ","edges_from":[],"edges_to":[],"id":736,"label":"SIOC 290S","title":"Climate Math (6)"},{"dept":"MATH","description":"of Teaching and Learning Mathematics I (4)","edges_from":[],"edges_to":[],"id":737,"label":"MATH 121A","title":"Foundations"},{"dept":"MATH","description":"of Teaching and Learning Math II (4)","edges_from":[],"edges_to":[],"id":738,"label":"MATH 121B","title":"Foundations"},{"dept":"HLAW","description":"Course examines bioethics from a clinical perspective using medical literature and case law to cover a range of topics such as the principles and theories of bioethics, truth telling and confidentiality, informed consent, research on animals and human subjects, technology and reproduction, surrogacy, abortion and fetal rights, maternal/fetal conflict, the right to die, physician-assisted suicide and euthanasia, medical decision making for incompetent patients, and the changing nature of the doctor-patient relationship. Medical ethical issues in health-care policy at the national and global level are also discussed including allocation of scarce medical resources, compulsory public health measures, clinical research in the developing world, and cross-cultural medical practice. ","edges_from":[],"edges_to":[],"id":739,"label":"HLAW 216","title":"Bioethics and Medical Practice (3)"},{"dept":"LTEA","description":"An introduction to later Japanese (kogo) literature in translation. Will focus on several “modern” works, placing their form in the historical context. No knowledge of Japanese required. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":740,"label":"LTEA 132","title":"Later Japanese Literature in Translation (4)"},{"dept":"MDE","description":"Case studies of integrative physiology to understand how this information is used in designing combination medical devices and instruments for diagnosis or research. Students may not receive credit for both MDE 231A and MDE 231. ","edges_from":[742],"edges_to":[],"id":741,"label":"MDE 231B","title":"Fundamentals of Physiology and Anatomy II (2)"},{"dept":"MDE","description":"","edges_from":[],"edges_to":[741],"id":742,"label":"MDE 231A","title":""},{"dept":"TDPW","description":"Project in Playwriting/Screenwriting (4)","edges_from":[],"edges_to":[],"id":743,"label":"TDPW 190","title":"Major"},{"dept":"LTEA","description":"An introduction to Japanese films. Attention given to representative Japanese directors (e.g., Ozu), form (e.g., anime), genre (e.g. feminist revenge horror), or historical context in which films are produced. Priority may be given to Japanese studies majors and literature majors.","edges_from":[],"edges_to":[],"id":744,"label":"LTEA 138","title":"Japanese Films (4)"},{"dept":"HIUS","description":"The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism.","edges_from":[],"edges_to":[],"id":745,"label":"HIUS 140/ECON 158","title":"Economic History of the United States I (4)"},{"dept":"LIGN","description":"Descriptive and theoretical problems in morphology. Theoretical and empirical consequences of alternative analyses. May be taken for credit three times. ","edges_from":[747],"edges_to":[],"id":746,"label":"LIGN 248","title":"Topics in Morphology (4)"},{"dept":"LIGN","description":"","edges_from":[],"edges_to":[746],"id":747,"label":"LIGN 220","title":""},{"dept":"DSC","description":"Provides an understanding of the structures that underlie the programs, algorithms, and languages used in data science by expanding the repertoire of computational concepts introduced in DSC 10 and exposing students to techniques of abstraction. Course will be taught in Python and will cover topics including recursion, higher-order functions, function composition, object-oriented programming, interpreters, classes, and simple data structures such as arrays, lists, and linked lists. ","edges_from":[179],"edges_to":[993],"id":748,"label":"DSC 20","title":"Programming and Basic Data Structures for Data Science (4)"},{"dept":"TDMV","description":"An in-depth investigation of the role and aesthetics of performer/dancer in a fully staged independent project resulting in a dance performance choreographed by faculty or students. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":749,"label":"TDMV 190","title":"Major Project as Performer (4)"},{"dept":"LTCS","description":"The role of race and culture within the history of empires; may select a single empire for consideration, such as France, Britain, United States, or Japan, or choose to examine the role of race and culture in comparative histories of colonialism. Repeatable for credit when readings and focus vary.","edges_from":[],"edges_to":[],"id":750,"label":"LTCS 141","title":"Special Topics in Race and Empire (4)"},{"dept":"LIGN","description":"Official and minority languages, pidgins and Creoles, language planning, bilingual education and literacy, code switching, and language attrition. ","edges_from":[752],"edges_to":[],"id":751,"label":"LIGN 177","title":"Multilingualism (4)"},{"dept":"LIGN","description":"","edges_from":[],"edges_to":[2817,3490,1091,3684,773,775,4204,3502,751,754,3286,4157],"id":752,"label":"LIGN 101","title":""},{"dept":"LIGN","description":"Techniques of discovering the structure of a language through elicitation of data from native speaker consultants. Phonemic, morphemic, and syntactic analysis. ","edges_from":[754],"edges_to":[755],"id":753,"label":"LIGN 240","title":"Field Methods (4)"},{"dept":"LIGN","description":"","edges_from":[752],"edges_to":[753,3845,3846],"id":754,"label":"LIGN 110","title":""},{"dept":"LIGN","description":"Fieldwork continuing the research of the previous quarter; student-directed elicitations on topics of interest. ","edges_from":[753],"edges_to":[],"id":755,"label":"LIGN 241","title":"Fieldwork (4)"},{"dept":"LIGN","description":"Introduction to computational corpus tools for performing empirically grounded linguistic investigations. Annotated and unannotated corpora; annotation schemes. Searching using regular expressions. UNIX tools. The PERL programming language. Publically available language processing systems.","edges_from":[],"edges_to":[],"id":756,"label":"LIGN 245","title":"Computational Corpus Linguistics (4)"},{"dept":"LIGN","description":"Advanced material covering particular topics relating to the theoretical analysis of the pragmatics of natural languages. May be taken for credit three times as topics vary. ","edges_from":[],"edges_to":[],"id":757,"label":"LIGN 247","title":"Topics in Pragmatics (2–4)"},{"dept":"ETHN","description":"American History in the Twentieth Century (4)","edges_from":[],"edges_to":[],"id":758,"label":"ETHN 149","title":"African"},{"dept":"EDS","description":"and Professional Assessment (4)","edges_from":[],"edges_to":[],"id":759,"label":"EDS 204","title":"Technology"},{"dept":"EDS","description":"This course will review current literature on effective applications of technology in the classroom. Students will also become fluent in the use of productivity tools, presentation software, and web development for teaching and learning; critique software relevant to their area of teaching; and develop an educational activity based on their review of the literature that harnesses the power of technology. ","edges_from":[761,762,763,764,765],"edges_to":[],"id":760,"label":"EDS 203","title":"Technology, Teaching, and Learning (4)"},{"dept":"ED","description":"","edges_from":[],"edges_to":[760],"id":761,"label":"ED 79","title":""},{"dept":"ED","description":"","edges_from":[],"edges_to":[760,3090],"id":762,"label":"ED 78","title":""},{"dept":"ED","description":"","edges_from":[],"edges_to":[760],"id":763,"label":"ED 80","title":""},{"dept":"ED","description":"","edges_from":[],"edges_to":[760],"id":764,"label":"ED 77","title":""},{"dept":"ED","description":"","edges_from":[],"edges_to":[760,3090],"id":765,"label":"ED 76","title":""},{"dept":"EDS","description":"to Resources for Teaching and Learning (4)","edges_from":[],"edges_to":[],"id":766,"label":"EDS 201","title":"Introduction"},{"dept":"ETHN","description":"This course critically examines the impact of the Vietnam War on refugees from Vietnam, Laos, and Cambodia. Focusing on everyday refugee life, it pays particular attention to how the refugees have created alternative memories, epistemologies, and lifeworlds.","edges_from":[],"edges_to":[],"id":767,"label":"ETHN 140","title":"Comparative Refugee Communities from Vietnam, Laos, and Cambodia (4)"},{"dept":"ETHN","description":"Martin Luther King was inspired by Gandhi, but in his own time, Gandhi was as controversial as he was revered. Nonviolence was not widely accepted as a form of political protest. This course explores Gandhi’s complex legacy of nonviolence for places and peoples embroiled in conflict.","edges_from":[],"edges_to":[],"id":768,"label":"ETHN 141","title":"Gandhi in the Modern World: From Civil Rights to the Arab Spring (4)"},{"dept":"ETHN","description":"Race, and the Global Politics of Inequality (4)","edges_from":[],"edges_to":[],"id":769,"label":"ETHN 142","title":"Medicine,"},{"dept":"ETHN","description":"This course is a historical survey of Chicana and Chicano media from roughly 1950 to the present. The goals of the course include learning about Chicana/o history, politics, and culture through different media and gaining the critical tools to analyze Chicana/o media and media more broadly.","edges_from":[],"edges_to":[],"id":770,"label":"ETHN 143","title":"Chicana/o Film and Media Studies (4)"},{"dept":"BENG","description":"Training (4)","edges_from":[],"edges_to":[],"id":771,"label":"BENG 295","title":"Bioengineering Design Project and Industrial"},{"dept":"ETHN","description":"(Cross-listed with CGS 147.) An advanced introduction to historical and contemporary black feminisms in the United States and transnationally. Students will explore the theory and practice of black feminists/womanists and analyze the significance of black feminism to contemporary understandings of race, class, gender, and sexuality.","edges_from":[],"edges_to":[],"id":772,"label":"ETHN 147","title":"Black Feminisms, Past and Present (4)"},{"dept":"LIGN","description":"The study of how humans learn, represent, comprehend, and produce language. Topics include visual and auditory recognition of words, sentence comprehension, reading, sentence production, language acquisition, neural representation of language, bilingualism, and language disorders. ","edges_from":[752],"edges_to":[],"id":773,"label":"LIGN 170","title":"Psycholinguistics (4)"},{"dept":"CHIN","description":"Intermediate course of Chinese for students with background in","edges_from":[],"edges_to":[],"id":774,"label":"CHIN 100BM","title":"Third Year Chinese—Mandarin speakers II (4)"},{"dept":"LIGN","description":"A central cognitive, developmental mystery is how children learn their first language. Overview of research in the learning of sound systems, word forms and word meanings, and word combinations. Exploration of the relation between cognitive and language development. ","edges_from":[752],"edges_to":[],"id":775,"label":"LIGN 171","title":"Child Language Acquisition (4)"},{"dept":"VIS","description":"This course examines the significant topics in art practice, theory, and history that are shaping contemporary art thinking. A wide range of media extending across studio art practice, digital media, performative practices, and public culture will be considered as interrelated components. This course is required for visual arts transfer students. Students may not receive credit for both VIS 11 and VIS 111. This course is offered only one time each year during winter quarter. ","edges_from":[],"edges_to":[],"id":776,"label":"VIS 11","title":"Introduction to Visual Arts (4)"},{"dept":"VIS","description":"Designed around presentations by visiting artists, critics, and scientists involved with contemporary issues related to computer arts and design. Lectures by the instructor and contextual readings provide background material for the visitor presentations. Program or materials fees may apply. Students may not receive credit for both VIS 10 and ICAM 110. This course is offered only one time each year. ","edges_from":[],"edges_to":[],"id":777,"label":"VIS 10","title":"Computing in the Arts Lecture Series (4)"},{"dept":"CHEM","description":"Renumbered from CHEM 213. A discussion of the physical principles governing biomolecular structure and function. Experimental and theoretical approaches to understand protein dynamics, enzyme kinetics, and mechanisms will be covered. Students may only receive credit for one of the following: CHEM 213 or 213B. May be coscheduled with CHEM 113.","edges_from":[],"edges_to":[],"id":778,"label":"CHEM 213B","title":"Biophysical Chemistry of Macromolecules (4)"},{"dept":"GPCO","description":"This is the first quarter of a two-quarter requirement. The capstone paper must demonstrate: mastery of the development of the methodologies for rigorous data collection and analysis; an in-depth understanding of the historical regulatory, political and/or economic processes surrounding the chosen “problem” for analysis; mastery of the working details of the “problem” at the center of the research; and a requisite level of research proficiency in Mandarin Chinese. Topic to be approved. ","edges_from":[],"edges_to":[2351],"id":779,"label":"GPCO 470","title":"Master of Chinese Economics and Political Affairs Capstone (4)"},{"dept":"CHEM","description":"A discussion of structures of nucleic acids and proteins and their larger assemblies. The theoretical basis for nucleic acid and protein structure, as well as methods of structure determination including X-ray crystallography, cryoEM, and computational modeling approaches will be covered. Letter grades only. ","edges_from":[],"edges_to":[],"id":780,"label":"CHEM 213A","title":"Structure of Biomolecules and Biomolecular Assemblies (4)"},{"dept":"CSE","description":"(Formerly CSE 208D) Mathematical logic as a tool in computer science. Propositional logic, resolution, first-order logic, completeness and incompleteness theorems with computational viewpoint, finite model theory, descriptive complexity, logic programming, nonmonotonic reasoning, temporal logic. Applications to databases, automatic theorem proving, program verification, and distributed systems. ","edges_from":[782],"edges_to":[],"id":781,"label":"CSE 205A","title":"Logic in Computer Science (4)"},{"dept":"CSE","description":"","edges_from":[0],"edges_to":[3003,2116,781,3623],"id":782,"label":"CSE 200","title":""},{"dept":"COGS","description":"Spontaneous gestures and their relationship","edges_from":[],"edges_to":[],"id":783,"label":"COGS 155","title":"Gesture and Cognition (4)"},{"dept":"MAE","description":"Overview of present day primary energy sources and availability; fossil fuel, renewable, and nuclear; heat engines; energy conservation, transportation, air pollution, and climate change. Students may not receive credit for both MAE 118 and MAE 118A. ","edges_from":[168,169],"edges_to":[],"id":784,"label":"MAE 118","title":"Introduction to Energy Systems (4)"},{"dept":"BIOM","description":"Participation in the symposia held by CARTA three times a year. Students shadow one of the speakers during public and private symposia. Students meet after each symposium and each writes a summary of the speaker’s presentation and ensuring discussion. ","edges_from":[],"edges_to":[],"id":785,"label":"BIOM 218","title":"Current Topics in Anthropogeny (1)"},{"dept":"BIOM","description":"Overview of ethical issues in scientific research, conflicts of interest; national, statewide and campus issues and requirement; ethical issues in publications; authorship; retention of research records; tracing of research records; attribution; plagiarism; copyright considerations; primary, archival and meeting summary publications; ethical procedures and policies; NIH, NSF, California and UC San Diego; case studies and precedents in ethics. ","edges_from":[],"edges_to":[],"id":786,"label":"BIOM 219","title":"Ethics in Scientific Research (1)"},{"dept":"COGS","description":"Human thought and meaning are deeply tied to the capacity for mapping conceptual domains onto each other, inducing common schemas and performing mental simulation. This course examines major aspects of this cognitive activity including metaphor, conceptual blending, and embodied cognition. ","edges_from":[],"edges_to":[],"id":787,"label":"COGS 151","title":"Analogy and Conceptual Systems (4)"},{"dept":"CHIN","description":"Bachelor’s thesis, under the direction","edges_from":[],"edges_to":[],"id":788,"label":"CHIN 196","title":"Directed Thesis Research (4)"},{"dept":"ECE","description":"Photonic properties of artificially engineered","edges_from":[],"edges_to":[],"id":789,"label":"ECE 212CN","title":"Nanophotonics (4)"},{"dept":"SOCI","description":"Small group study and research under the direction of an interested faculty member in an area not covered in regular sociology courses. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":790,"label":"SOCI 98","title":"Directed Group Study (4)"},{"dept":"SOCI","description":"Individual study and research under the direction of an interested faculty member. P/NP grades only. ","edges_from":[],"edges_to":[],"id":791,"label":"SOCI 99","title":"Independent Study (4)"},{"dept":"CHIN","description":"Group Study in Chinese Studies (2 or 4)","edges_from":[],"edges_to":[],"id":792,"label":"CHIN 198","title":"Directed"},{"dept":"CHIN","description":"or 4)","edges_from":[],"edges_to":[],"id":793,"label":"CHIN 199","title":"Independent Study in Chinese Studies (2"},{"dept":"COMM","description":"How does media representation of race, nation, and violence work? Taking multicultural California as our site, we will explore how social power is embedded in a variety of visual texts, and how media not only represents but also reproduces conflict. ","edges_from":[537,538,539,540],"edges_to":[],"id":794,"label":"COMM 129","title":"Race, Nation, and Violence in Multicultural California (4)"},{"dept":"COMM","description":"Concepts, possibilities, and dilemmas inherent in the notion of global citizenship. Formulate goals and instructional strategies for global education, expected competence of individuals within society. Examine roles that communication and curriculum play in the formation of identity, language use, and civic responsibility of global citizens. ","edges_from":[537,538,539,540],"edges_to":[],"id":795,"label":"COMM 128","title":"Education and Global Citizenship (4)"},{"dept":"ECON","description":"Introduction to game theory. Analysis of people’s decisions when the consequences of the decisions depend on what other people do. This course features applications in economics, political science, and law. ","edges_from":[385,3,797,798,7],"edges_to":[2759,1767],"id":796,"label":"ECON 109","title":"Game Theory (4)"},{"dept":"ECON","description":"","edges_from":[542],"edges_to":[803,2020,2021,1768,1770,3633,4404,1045,796,2757],"id":797,"label":"ECON 100C","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[796],"id":798,"label":"MATH 20","title":""},{"dept":"ECON","description":"Examines reasons for international economic agreements, their design, the strategic interactions that determine how the agreements are implemented and sustained, and consequences for global welfare and inequality. Draws on international economics, game theory, law and economics, and political economy to understand international economic agreements. These tools are used to understand multilateral trade and investment agreements, such as NAFTA, and international organizations, such as the WTO. ","edges_from":[800,542],"edges_to":[],"id":799,"label":"ECON 106","title":"International Economic Agreements (4)"},{"dept":"ECON","description":"","edges_from":[505,134,542,302,543],"edges_to":[4168,807,2475,799],"id":800,"label":"ECON 102","title":""},{"dept":"ECON","description":"Detailed treatment of antitrust policy: Sherman Act, price fixing, collusive practices, predatory pricing, price discrimination, double marginalization, exclusive territories, resale price maintenance, refusal to deal, and foreclosure. Theory of regulation and regulatory experience in electrical utilities, oil, telecommunications, broadcasting, etc. ","edges_from":[138,134,542,550,543],"edges_to":[],"id":801,"label":"ECON 107","title":"Economic Regulation and Antitrust Policy (4)"},{"dept":"ECON","description":"Economics of industries with network effects","edges_from":[],"edges_to":[],"id":802,"label":"ECON 104","title":"Economics of Network Industries (4)"},{"dept":"ECON","description":"Theory of monopoly and oligopoly pricing, price discrimination, durable goods pricing, cartel behavior, price wars, strategic entry barriers, mergers, pro- and anti-competitive restraints on business. ","edges_from":[797],"edges_to":[],"id":803,"label":"ECON 105","title":"Industrial Organization and Firm Strategy (4)"},{"dept":"COMM","description":"This course will explore the problem of self-expression for members of various ethnic and cultural groups. Of special interest is how writers find ways of describing themselves in the face of others’ sometimes overwhelming predilection to describe them. ","edges_from":[537,538,539,540],"edges_to":[],"id":804,"label":"COMM 127","title":"Problem of Voice (4)"},{"dept":"COMM","description":"A course that analyzes the influence of media on children’s behavior and thought processes. The course takes a historical perspective, beginning with children’s print literature, encompassing movies, music, television, and computers. Students will study specific examples of media products intended for children and apply various analytic techniques, including content analysis and experimentation to these materials. ","edges_from":[537,538,539,540],"edges_to":[],"id":805,"label":"COMM 126","title":"Children and Media (4)"},{"dept":"COMM","description":"How have politics, media, and society made visible features of life that were once hidden? From the women’s health movement to gay liberation to laws requiring public disclosure, frankness challenges civility, privacy, and taste. How can this be understood? ","edges_from":[537,538,539,540],"edges_to":[],"id":806,"label":"COMM 125","title":"Transparent Society (4)"},{"dept":"ECON","description":"Examines theories of international trade in goods and services and relates the insights to empirical evidence. Explains international trade at the level of industries and firms and analyzes the consequences of trade for resource allocation, welfare, and the income distribution. Discusses sources of comparative advantage, motives for trade policies, and the effects of trade barriers and trading blocs on welfare and incomes. ","edges_from":[800,542],"edges_to":[],"id":807,"label":"ECON 101","title":"International Trade (4)"},{"dept":"VIS","description":"Eighteenth-century artists and critics were convinced that art could be a force to improve society. This course places Rococo and neoclassical artists such as Watteau, Fragonard, Tiepolo, Hogarth, Reynolds, Vigée Le Brun, Blake, and David, within the context of art academies, colonialism, the Grand Tour, Enlightenment conceptualizations of history and nature, and the American and French Revolutions. Recommended preparation: VIS 20 or 22 recommended. ","edges_from":[],"edges_to":[],"id":808,"label":"VIS 124BN","title":"Art and the Enlightenment (4)"},{"dept":"EDS","description":"This course investigates early child development (birth through eight years) and education and the role of high quality early education on reducing inequities among diverse populations. Field experience and seminar focus on applying research and theory to experiences in early childhood classrooms (P–3). ","edges_from":[809,810],"edges_to":[809,4012,4013],"id":809,"label":"EDS 131","title":"Early Childhood Development and Education (4)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2245,809,4939,4012,813,4013,1820],"id":810,"label":"EDS 139","title":""},{"dept":"HIEU","description":"184/284. Yugoslavia: Before, During, and After (4)","edges_from":[],"edges_to":[],"id":811,"label":"HIEU","title":""},{"dept":"LTSP","description":"Analysis of selected materials that represent the cultural and political relationship between Spain and its colonies. Close reading of literary texts and historical documents. Specific periods covered will fall between the origins of empire in the early sixteenth century to the demise of imperial Spain in 1898; topics may include cultural exchanges between Spain and Latin America, the Philippines, or the US Southwest. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":812,"label":"LTSP 116","title":"Representations of Spanish Colonialism (4)"},{"dept":"EDS","description":"This course focuses on the role of undergraduate mentors in raising academic expectations for students and families traditionally underrepresented at the university. The relationship between the school and community, the social and political organization of elementary schools, and the academic achievement of elementary children are examined. ","edges_from":[810],"edges_to":[4012,1820,4013],"id":813,"label":"EDS 130","title":"Introduction to Academic Mentoring of Elementary/School Students (4)"},{"dept":"ERC","description":"Undergraduate students will be provided with one hour of instruction on pedagogy of tutoring math in a public high school setting and placement in regional public high schools to provide five hours of one-on-one tutoring of math students under supervision of high school math teachers. P/NP grades only. May be taken for credit three times. ","edges_from":[129,130],"edges_to":[],"id":814,"label":"ERC 89","title":"Practicum in Math Tutoring (2)"},{"dept":"MUS","description":"Third class in a yearlong sequence. Surveys hardware and software resources in an advanced analog/digital and media studio. Required course for use of the studio. Topics include: electronic and computer music, digital and analog audio signal mixing and manipulation, studio devices, interfacing, compositional applications, MIDI synchronization, performance and studio techniques, and student projects. 174C focuses on MIDI, synchronization, and sound-for-picture. ","edges_from":[816,817],"edges_to":[],"id":815,"label":"MUS 174C","title":"Audio/MlDI Studio Techniques III (4)"},{"dept":"MUS","description":"","edges_from":[817,818],"edges_to":[815],"id":816,"label":"MUS 174B","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[816,818,815],"id":817,"label":"MUS 170","title":""},{"dept":"MUS","description":"","edges_from":[817],"edges_to":[816],"id":818,"label":"MUS 174A","title":""},{"dept":"COMM","description":"Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ","edges_from":[],"edges_to":[],"id":819,"label":"COMM 196A","title":"Honors Seminar in Communication (4)"},{"dept":"COMM","description":"Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ","edges_from":[],"edges_to":[],"id":820,"label":"COMM 196B","title":"Honors Seminar in Communication (4)"},{"dept":"MAE","description":"Principles and practice of measurement and control and the design and conduct of experiments. Technical report writing. Lectures relate to dimensional analysis, error analysis, signal-to-noise problems, filtering, data acquisition and data reduction, as well as background of experiments and statistical analysis. Experiments relate to the use of electronic devices and sensors. ","edges_from":[446],"edges_to":[5312,2818,2883,2882,5902,2705,3579],"id":821,"label":"MAE 170","title":"Experimental Techniques (4)"},{"dept":"ECON","description":"Course introduces the household as a decision-making unit, and the contracts and institutions that emerge to compensate for imperfect markets. Emphasis is placed on data and identification strategies that can be used to measure the impact of policy interventions. ","edges_from":[],"edges_to":[],"id":822,"label":"ECON 241","title":"Microeconomics of Development (4)"},{"dept":"ECON","description":"The study of organizational effectiveness, in both the private and public sectors, bridges the gap between microeconomic analysis of individual and household behavior and macroeconomic analysis of economic aggregates such as capital and output. Topics covered include organizational capacity, leadership and management, staffing, incentives, contracting, finance, learning, market structure, regulations, and politics. ","edges_from":[],"edges_to":[],"id":823,"label":"ECON 243","title":"Organizational Economics of Development (4)"},{"dept":"ECON","description":"This course covers development accounting, growth accounting, human capital accumulation, skill-biased technological change, multisector growth models, structural transformation, urban-rural migration, misallocation, informality, technology adoption and diffusion, and other related topics. ","edges_from":[],"edges_to":[],"id":824,"label":"ECON 242","title":"Macroeconomics of Development (4)"},{"dept":"ECON","description":"This course covers the determinants of the pattern and volume of trade in goods and services, the interaction of international trade with income distribution and economic growth, and commercial policy. The emphasis is on theory, with some empirical illustration and motivation. ","edges_from":[],"edges_to":[],"id":825,"label":"ECON 245","title":"International Trade (4)"},{"dept":"ECON","description":"This course examines the empirical work in international trade or international macroeconomics. International trade topics include empirical tests of theories of international trade and international capital movements. International macroeconomic topics include empirical studies of exchange rate and relative price adjustments. ","edges_from":[],"edges_to":[],"id":826,"label":"ECON 247","title":"Empirical Topics in International Economics (4)"},{"dept":"ECON","description":"This course presents open-economy macroeconomics and international finance. Topics include theories of the exchange rate, foreign-exchange regimes, current account adjustments, and international portfolio investments. The course examines real and monetary explanations, and implications of international capital market integration. ","edges_from":[],"edges_to":[],"id":827,"label":"ECON 246","title":"International Macroeconomics (4)"},{"dept":"CHIN","description":"(2)","edges_from":[],"edges_to":[],"id":828,"label":"CHIN 269","title":"Conversational Mandarin for Medical Students—Beginning"},{"dept":"NANO","description":"The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research, including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. Cross-listed with ECE 221, MAE 265B, and MATS 251B. Students may not receive credit for ECE 221 and MAE 265B and MATS 251B and NANO 251A. ","edges_from":[],"edges_to":[],"id":829,"label":"NANO 251A","title":"Magnetic Materials: Principles and Applications (4)"},{"dept":"MATH","description":"Continued development of a topic in mathematical logic. Topics chosen from recursion theory, model theory, and set theory. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[831],"edges_to":[],"id":830,"label":"MATH 267B","title":"Further Topics in Mathematical Logic (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[830],"id":831,"label":"MATH 267A","title":""},{"dept":"PHIL","description":"An introduction to central topics in philosophy of mind with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content. ","edges_from":[],"edges_to":[],"id":832,"label":"PHIL 207","title":"Core Course in Philosophy of Mind (4)"},{"dept":"MUS","description":"All students enrolled in voice lessons (32V,","edges_from":[],"edges_to":[],"id":833,"label":"MUS 32VM","title":"Vocal Master Class (1)"},{"dept":"PSYC","description":"Selected topics in the field of psychology. May be taken for credit three times as topics vary. ","edges_from":[],"edges_to":[],"id":834,"label":"PSYC 193","title":"Topics in Psychology (4)"},{"dept":"PHIL","description":"Introduction to philosophical methods of analysis through study of classic historical or contemporary texts. Writing intensive. Enrollment limited to entering graduate students.","edges_from":[],"edges_to":[],"id":835,"label":"PHIL 200","title":"Proseminar (4)"},{"dept":"PSYC","description":"Research and discussion on selected topics in sound and music perception. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":836,"label":"PSYC 269C","title":"Advanced Topics in Sound and Music Perception III (1)"},{"dept":"PSYC","description":"Research and discussion on selected topics in sound and music perception. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":837,"label":"PSYC 269B","title":"Advanced Topics in Sound and Music Perception II (1)"},{"dept":"PSYC","description":"Research and discussion on selected topics in sound and music perception. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":838,"label":"PSYC 269A","title":"Advanced Topics in Sound and Music Perception I (1)"},{"dept":"MUS","description":"Independent reading, research, or creative work under the direction of a faculty member, provided no course covering the material to be studied already exists, and the study area derives from previous course work. ","edges_from":[],"edges_to":[],"id":839,"label":"MUS 199","title":"Independent Study (1–4)"},{"dept":"PHIL","description":"An introduction to some central issues in ethical theory with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.","edges_from":[],"edges_to":[],"id":840,"label":"PHIL 202","title":"Core Course in Ethics (4)"},{"dept":"LTRU","description":"","edges_from":[],"edges_to":[],"id":841,"label":"LTRU 110B","title":"Survey of Russian and Soviet Literature in Translation, 1860–1917 (4)"},{"dept":"LTRU","description":"","edges_from":[],"edges_to":[],"id":842,"label":"LTRU 110C","title":"Survey of Russian and Soviet Literature in Translation, 1917–present (4)"},{"dept":"LTRU","description":"","edges_from":[],"edges_to":[],"id":843,"label":"LTRU 110A","title":"Survey of Russian and Soviet Literature in Translation, 1800–1860 (4)"},{"dept":"SOCI","description":"Will survey the liberal, communitarian, social-democratic, nationalist, feminist, post-nationalist, and multicultural views on the construction of the modern citizen and good society. ","edges_from":[844,845],"edges_to":[844],"id":844,"label":"SOCI 169","title":"Citizenship, Community, and Culture (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[844],"id":845,"label":"SOCD 169","title":""},{"dept":"SOCI","description":"This class examines how science has been mobilized in the development of nuclear weapons and other weapons of mass destruction. The class applies sociological concepts to the analysis of modern technological violence. ","edges_from":[846,847],"edges_to":[846],"id":846,"label":"SOCI 167","title":"Science and War (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[846],"id":847,"label":"SOCC 167","title":""},{"dept":"SOCI","description":"This course provides a general introduction to the development of the sociology of knowledge, and will explore questions concerning social determination of consciousness as well as theoretical ways to articulate a critique of ideology. ","edges_from":[848,849],"edges_to":[848],"id":848,"label":"SOCI 166","title":"Sociology of Knowledge (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[848],"id":849,"label":"SOCB 166","title":""},{"dept":"SOCI","description":"This course explores concepts, theory and empirical research related to demographic, sociopsychological, and institutional aspects of the different stages of human development. It considers social influences on opportunities and constraints by gender, class, race/ethnicity, and historical period. ","edges_from":[850,851],"edges_to":[850],"id":850,"label":"SOCI 161","title":"Sociology of the Life Course (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[850],"id":851,"label":"SOCB 161","title":""},{"dept":"SOCI","description":"This course will examine the concept of culture, its “disintegration” in the twentieth century, and the repercussions on the integration of the individual. We will look at this process from a variety of perspectives, each focusing on one cultural fragment (e.g., knowledge, literature, religion) and all suggesting various means to reunify culture and consequently the individual. ","edges_from":[852,853],"edges_to":[852],"id":852,"label":"SOCI 160","title":"Sociology of Culture (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[852],"id":853,"label":"SOCB 160","title":""},{"dept":"SOCI","description":"Provides a global sociological perspective on the development and consequences of laws regulating migration within and across nation-state borders. The ability of the nation-state to control migration using law and its policy instruments. The effects of different legal statuses on political and socioeconomic outcomes. ","edges_from":[854,855],"edges_to":[854],"id":854,"label":"SOCI 163","title":"Migration and the Law (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[854],"id":855,"label":"SOCC 163","title":""},{"dept":"SOCI","description":"An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. Students may not receive credit for both SOCI 162 and SOCB 162. ","edges_from":[],"edges_to":[],"id":856,"label":"SOCI 162","title":"Popular Culture (4)"},{"dept":"PSYC","description":"This course provides a survey of sensory and perceptual phenomena with an emphasis on their underlying physiological mechanisms. ","edges_from":[858],"edges_to":[],"id":857,"label":"PSYC 159","title":"Physiological Basis of Perception (4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[857,3130,4141,863],"id":858,"label":"PSYC 102","title":""},{"dept":"PSYC","description":"This course provides an examination of theories and empirical work pertaining to interpersonal relationships. Topics include attraction, jealousy, attachments, and love. ","edges_from":[],"edges_to":[],"id":859,"label":"PSYC 158","title":"Interpersonal Relationships (4)"},{"dept":"CHEM","description":"Independent study or research under the direction of a member","edges_from":[],"edges_to":[],"id":860,"label":"CHEM 99R","title":"Independent Study (1)"},{"dept":"PSYC","description":"This course provides an introduction to psychology testing. Topics include psychometrics and statistical methods of test construction; application of psychological tests in industry, clinical practice, and applied settings; and controversies in the application of psychological tests. ","edges_from":[862],"edges_to":[],"id":861,"label":"PSYC 151","title":"Tests and Measurement (4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[1028,1029,1510,4327,5417,2332,861],"id":862,"label":"PSYC 60","title":""},{"dept":"PSYC","description":"This course provides an overview of the neural basis of visual experience, or how our brain creates what we see in the world around us. ","edges_from":[864,858],"edges_to":[],"id":863,"label":"PSYC 150","title":"Cognitive Neuroscience of Vision (4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[863],"id":864,"label":"PSYC 108","title":""},{"dept":"PSYC","description":"This course provides an overview of past and current theories of emotion. Topics include facial expressions associated with emotion, psychophysiology, evolutionary perspectives, and specific emotions such as anger, fear, and jealousy. ","edges_from":[],"edges_to":[],"id":865,"label":"PSYC 153","title":"Psychology of Emotion (4)"},{"dept":"PSYC","description":"This course provides an overview of the concept of intelligence from multiple perspectives. Topics include how intelligence is measured and the role of this measurement on practical matters, the role of intelligence in comparative psychology, and attempts to analyze intelligence in terms of more fundamental cognitive processes. ","edges_from":[],"edges_to":[],"id":866,"label":"PSYC 152","title":"Conceptions of Intelligence (4)"},{"dept":"PSYC","description":"This course provides an exploration of health, illness, treatment, and delivery of treatment as they relate to psychological concepts and research and considers how the social psychological perspective might be extended into medical fields. ","edges_from":[],"edges_to":[],"id":867,"label":"PSYC 155","title":"Social Psychology and Medicine (4)"},{"dept":"PSYC","description":"The course provides an extension of learning principles to human behavior. Topics include broad implications of a behavioral perspective, applied behavior analysis, and applications of behavioral principles to clinical disorders and to normal behavior in varied settings. ","edges_from":[],"edges_to":[],"id":868,"label":"PSYC 154","title":"Behavior Modification (4)"},{"dept":"PSYC","description":"This course provides an overview of the psychology of happiness. Topics may include such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy—youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless? ","edges_from":[],"edges_to":[],"id":869,"label":"PSYC 157","title":"Happiness (4)"},{"dept":"PSYC","description":"This course provides an overview of infant development. Students will critically evaluate scientific theories regarding infant cognitive, linguistic, and social behavior. Recommended preparation: PSYC 60. ","edges_from":[872,871],"edges_to":[],"id":870,"label":"PSYC 156","title":"Cognitive Development in Infancy (4)"},{"dept":"HDP","description":"","edges_from":[],"edges_to":[4355,1156,1157,1158,1423,1426,870],"id":871,"label":"HDP 1","title":""},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[1426,1350,870],"id":872,"label":"PSYC 101","title":""},{"dept":"COGS","description":"Graduate-level seminar studying the design of programming tools from a human-centered perspective, relying primarily on the latest research literature combined with classical theory in cognitive science and human-computer interaction. Course work involves critical reading, discussion, and programming projects. Letter grades only. Recommended preparation: Cognitive Science 120 or CSE 170.","edges_from":[],"edges_to":[],"id":873,"label":"COGS 231","title":"Design Seminar on Human-Centered Programming (4)"},{"dept":"COGS","description":"(Cross-listed with CSE 216.) Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Letter grades only.","edges_from":[],"edges_to":[],"id":874,"label":"COGS 230","title":"Topics in Human-Computer Interaction (4)"},{"dept":"HIGR","description":"Independent work by graduate students engaged in research and writing of doctoral theses. This course may be repeated for an indefinite number of times due to the independent nature of thesis writing and research. (S/U grades only.)","edges_from":[],"edges_to":[],"id":875,"label":"HIGR 299","title":"PhD Thesis Direction (1–12)"},{"dept":"COGS","description":"This course focuses on aspects of individual and socially distributed cognition. Empirical examples are drawn from natural and experimental settings that presuppose, tacitly or explicitly, socially distributed knowledge among participants. The class examines the way locally managed, pragmatic conditions influence how decisions are framed.","edges_from":[],"edges_to":[],"id":876,"label":"COGS 234","title":"Distributed Cognition (4)"},{"dept":"HIGR","description":"For students advanced to candidacy to the doctorate. Discussion, criticism, and revision of drafts of chapters of theses and of work to be submitted for publication.","edges_from":[],"edges_to":[],"id":877,"label":"HIGR 295","title":"Thesis Seminar (4)"},{"dept":"COGS","description":"(Same as Linguistics 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. (As topics vary, may be repeated for credit.)","edges_from":[],"edges_to":[],"id":878,"label":"COGS 238","title":"Topics in Cognitive Linguistics (1–4)"},{"dept":"BENG","description":"Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices; nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles; nanostructures with biological molecules; nanostructural aspects of fuel cells, biofuel cells; potential use of DNA, other biomolecules. ","edges_from":[],"edges_to":[],"id":879,"label":"BENG 247C/ECE 247C/NANO 247C","title":"Bionanotechnology (4)"},{"dept":"COGR","description":"Review and critique of studies employing discourse analysis, focusing on the ways that “discourse” is identified, recorded, and reported. A working notion of discourse will develop from works representing diverse disciplinary approaches. Students will record, transcribe, and report on segments of talk in an everyday setting. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ","edges_from":[],"edges_to":[],"id":880,"label":"COGR 201C","title":"Discourse Analysis (4)"},{"dept":"COGR","description":"A supervised and coordinated group project will allow students to develop competence in a variety of ethnographic approaches to communication. Subjects covered include choosing a fieldwork site, setting or process for participation; entry and development of relationships; techniques of observation, interviewing, note taking, and transcription. Course may also include photography and video as research tools. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ","edges_from":[],"edges_to":[],"id":881,"label":"COGR 201B","title":"Ethnographic Methods for Communication Research (4)"},{"dept":"MGT","description":"Introduction to formal and predictive approaches to incorporating","edges_from":[],"edges_to":[],"id":882,"label":"MGT 225","title":"Behavioral Economics (4)"},{"dept":"TDGR","description":"The intensive study of the dramatic and fictional","edges_from":[],"edges_to":[],"id":883,"label":"TDGR 210C","title":"Process I—Part III (4)"},{"dept":"TDGR","description":"Intensive studio examination of realistic","edges_from":[],"edges_to":[],"id":884,"label":"TDGR 210B","title":"Process I—Part II (4)"},{"dept":"TDGR","description":"The actors focus on the nature of the acting","edges_from":[],"edges_to":[],"id":885,"label":"TDGR 210A","title":"Process I—Part I (4)"},{"dept":"ECON","description":"The study and development of effective pedagogical materials and techniques in economics. Students who hold appointments as teaching assistants must enroll in this course, but it is open to other students as well. (S/U grades only.)","edges_from":[],"edges_to":[],"id":886,"label":"ECON 500A-B-C","title":"Teaching Methods in Economics (4-4-4)"},{"dept":"POLI","description":"Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally.","edges_from":[],"edges_to":[],"id":887,"label":"POLI 111B","title":"Global Justice in Theory and Action (4)"},{"dept":"COGR","description":"The logic of comparative analysis and its role in communication research. Scientific inference in qualitative research. Selection of cases. Problems of translation across cultures. ","edges_from":[],"edges_to":[],"id":888,"label":"COGR 201J","title":"Comparative Analysis (4)"},{"dept":"COGR","description":"Training in genealogical analysis based on Foucault and Nietzsche. Weekly exercises in genealogical methods, and class discussions of findings. A final paper: a genealogy of an object, practice, utterance, or discourse. ","edges_from":[],"edges_to":[],"id":889,"label":"COGR 201N","title":"Genealogical Analysis (4)"},{"dept":"POLI","description":"Study of types of social norms and practices, and how to change them. Illustrated with development examples such as the end of foot binding, female genital cutting, urban violence in Colombia, Serbian student revolution, early marriage, and other adverse gender norms.","edges_from":[],"edges_to":[],"id":890,"label":"POLI 111D","title":"Social Norms and Global Development (4)"},{"dept":"COGR","description":"Historical and ethnographic studies of information systems—the design and use of information and communication technologies in their social, ethical, political, and organizational dimensions. Objects of study range from the invention of file folders to e-mail use and distributed databases as communication systems. ","edges_from":[],"edges_to":[],"id":891,"label":"COGR 201L","title":"Qualitative Analysis of Information Systems (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ","edges_from":[],"edges_to":[],"id":892,"label":"Linguistics/Heritage Languages (LIHL) 119P","title":"Hindi for Hindi Speakers (4)"},{"dept":"COGS","description":"This course is affiliated with the honors program (190A-B-C) and is required of honors students during spring quarter. Its aim is to prepare students to present research results to an audience. Emphasis will be on the oral presentation (organization, wording, graphics), but there will also be some discussion about written research reports. Seminar style format with occasional short lectures wherein students will practice oral presentations and provide constructive criticism to each other. ","edges_from":[],"edges_to":[],"id":893,"label":"COGS 190D","title":"Preparation for Thesis Presentation (1)"},{"dept":"COGS","description":"This course will provide honors candidates","edges_from":[],"edges_to":[],"id":894,"label":"COGS 190C","title":"Honors Thesis in Cognitive Science (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family media/arts; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ","edges_from":[],"edges_to":[],"id":895,"label":"Linguistics/Heritage Languages (LIHL) 119W","title":"Hindi for Hindi Speakers (4)"},{"dept":"COGS","description":"This course prepares students for the Cognitive","edges_from":[],"edges_to":[],"id":896,"label":"COGS 190A","title":"Pre-Honors Project in Cognitive Science (4)"},{"dept":"HIEU","description":"Selected topics in Roman history. May be taken for credit three times as topics will vary. ","edges_from":[],"edges_to":[],"id":897,"label":"HIEU 161/261","title":"Topics in Roman History (4)"},{"dept":"HIUS","description":"This seminar will examine racial formation in relation to US wars in American history. Topics include “manifest destiny” and the frontier; radicalism and the “Red Scare”; the border patrol; civil rights movements; the “war on drugs,” and mass incarceration.","edges_from":[],"edges_to":[],"id":898,"label":"HIUS 274","title":"Race Wars in American Culture (4)"},{"dept":"LTEN","description":"and Eighteenth-Century English Literature (4)","edges_from":[],"edges_to":[],"id":899,"label":"LTEN 231","title":"Restoration"},{"dept":"CHEM","description":"Independent literature or laboratory research by arrangement with, and under the direction of, a member of the Department of Chemistry and Biochemistry faculty. Students must register on a P/NP basis. ","edges_from":[900],"edges_to":[900],"id":900,"label":"CHEM 199","title":"Reading and Research (2 or 4)"},{"dept":"CHEM","description":"Directed group study on a topic or in a field not included in the regular department curriculum, by arrangement with a chemistry and biochemistry faculty member. P/NP grades only. May be taken for credit two times. ","edges_from":[904,902,903],"edges_to":[],"id":901,"label":"CHEM 198","title":"Directed Group Study (1–4)"},{"dept":"ESSC","description":"","edges_from":[],"edges_to":[901,909],"id":902,"label":"ESSC 197","title":""},{"dept":"ESSC","description":"","edges_from":[],"edges_to":[901,909],"id":903,"label":"ESSC 198","title":""},{"dept":"ESSC","description":"","edges_from":[],"edges_to":[901,909],"id":904,"label":"ESSC 199","title":""},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ","edges_from":[],"edges_to":[],"id":905,"label":"Linguistics/Heritage Languages (LIHL) 119F","title":"Hindi for Hindi Speakers (4)"},{"dept":"CHEM","description":"in Chemistry and Biochemistry (1)","edges_from":[],"edges_to":[],"id":906,"label":"CHEM 192","title":"Senior Seminar"},{"dept":"CHEM","description":"An introduction to teaching chemistry. Students are required to attend a weekly class on methods of teaching chemistry and will teach a discussion section of one of the lower-division chemistry courses. Attendance at lecture of the lower-division course in which the student is participating is required. P/NP grades only. ","edges_from":[],"edges_to":[],"id":907,"label":"CHEM 195","title":"Methods of Teaching Chemistry (4)"},{"dept":"CHEM","description":"Selected topics in the field of chemistry. Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current subtitles will be listed on the Schedule of Classes. May be taken for credit up to four times as topics vary. Students may not receive credit for the same topic.","edges_from":[],"edges_to":[],"id":908,"label":"CHEM 194","title":"Special Topics in Chemistry (2 or 4)"},{"dept":"CHEM","description":"An internship program that provides work experience with public/private sector employers. Subject to the availability of positions, students will work in a local company under the supervision of a faculty member and site supervisor. P/NP grades only. May be taken for credit three times. ","edges_from":[904,902,903],"edges_to":[],"id":909,"label":"CHEM 197","title":"Chemistry Internship (2 or 4)"},{"dept":"CHEM","description":"Independent literature or classroom research","edges_from":[],"edges_to":[],"id":910,"label":"CHEM 196","title":"Reading and Research in Chemical Education (2 or 4)"},{"dept":"CHEM","description":"Second quarter of a three-quarter honors sequence intended for well-prepared science and engineering majors. Topics include: colligative properties, bulk material properties, chemical equilibrium, acids and bases, and thermodynamics. Three hours lecture and one hour recitation.","edges_from":[],"edges_to":[448,953,1196,215],"id":911,"label":"CHEM 6BH","title":"Honors General Chemistry II (4)"},{"dept":"ANTH","description":"Course examines the birth of Olmec and Maya civilizations in the Formative period, the rise of city states during the Early Classic, the decline of the Classic Maya, and the resurgence of the Postclassic period. ","edges_from":[],"edges_to":[2573],"id":912,"label":"ANTH 202","title":"Olmec and Maya Archaeology (4)"},{"dept":"ANTH","description":"Course usually taught by visiting faculty in anthropological archaeology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes on","edges_from":[],"edges_to":[],"id":913,"label":"ANTH 201","title":"Special Topics in Anthropological Archaeology (4)"},{"dept":"PHYS","description":"This course deals with magnetized plasma. Topics include: Appleton-Hartree theory of waves in cold plasma, waves in warm plasma (Bernstein waves, cyclotron damping). MHD equations, MHD waves, low frequency modes, and the adiabatic theory of particle orbits. ","edges_from":[915],"edges_to":[916],"id":914,"label":"PHYS 218B","title":"Plasma Physics II (4)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[914],"id":915,"label":"PHYS 218A","title":""},{"dept":"PHYS","description":"This course deals with the physics of confined plasmas with particular relevance to controlled fusion. Topics include: topology of magnetic fields, confined plasma equilibria, energy principles, ballooning and kink instabilities, resistive MHD modes (tearing, rippling and pressure-driven), gyrokinetic theory, microinstabilities and anomalous transport, and laser-plasma interactions relevant to inertial fusion. ","edges_from":[914],"edges_to":[2578],"id":916,"label":"PHYS 218C","title":"Plasma Physics III (4)"},{"dept":"SE","description":"Wave propagation in elastic media with emphasis on waves in unbound media and on uniform and layered half-spaces. Fundamental aspects of elastodynamics. Application to strong-motion seismology, earthquake engineering, dynamics of foundations, computational wave propagation, and nondestructive evaluations. ","edges_from":[],"edges_to":[],"id":917,"label":"SE 235","title":"Wave Propagation in Elastic Media (4)"},{"dept":"MAE","description":"(Cross-listed with ECE 156.) Characteristics of chemical, biological, seismic and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust censor fabrics; current experience with low power, low-cost sensor deployments. Students may not receive credit for both MAE 149 and ECE 156. May be coscheduled with SIOC 238. ","edges_from":[],"edges_to":[],"id":918,"label":"MAE 149","title":"Sensor Networks (4)"},{"dept":"MAE","description":"This course is an introduction to robotic planning algorithms and programming. Topics: sensor-based planning (bug algorithms), motion planning via decomposition and search (basic search algorithms on graphs, A*), the configuration-space concept, free configuration spaces via sampling, collision detection algorithms, (optimal) planning via sampling (probabilistic trees), environment roadmaps, and (extended) Kalman filtering for robot localization and environment mapping (SLAM). ","edges_from":[920],"edges_to":[],"id":919,"label":"MAE 145","title":"Introduction to Robotic Planning and Estimation (4)"},{"dept":"MAE","description":"","edges_from":[653,654],"edges_to":[399,2085,919],"id":920,"label":"MAE 130B","title":""},{"dept":"GPLA","description":"This course is designed to enable students with low to intermediate knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 461A-B-C. Students may not get credit for any IRLA 461 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":921,"label":"GPLA 461A-B-C","title":"Low Intermediate Bahasa Indonesian for Professional Proficiency (4-4-4)"},{"dept":"MAE","description":"Steady-state and dynamic behavior of linear, lumped-parameter electrical circuits. Kirchoff’s laws. RLC circuits. Node and mesh analysis. Operational amplifiers. Signal acquisition and conditioning. Electric motors. Design applications in engineering. ","edges_from":[135,139,923,31],"edges_to":[1944,3579,5902],"id":922,"label":"MAE 140","title":"Linear Circuits (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[169,922,2754,5966],"id":923,"label":"MATH 21D","title":""},{"dept":"MAE","description":"and Control of Aerospace Vehicles (4)","edges_from":[],"edges_to":[5312,2230],"id":924,"label":"MAE 142","title":"Dynamics"},{"dept":"SE","description":"in Continuous Structural Elements (4)","edges_from":[],"edges_to":[],"id":925,"label":"SE 236","title":"Wave Propagation"},{"dept":"VIS","description":"A studio course for serious art students at the advanced level. Stress will be placed on individual creative problems. Specific orientation of this course will vary with the instructor. Topics may include film, video, photography, painting, performance, etc. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":926,"label":"VIS 108","title":"Advanced Projects in Art (4)"},{"dept":"VIS","description":"Individual or group projects over one or two quarters. Specific project organized by the student(s) will be realized during this course with instructor acting as a close adviser/critic. Concept papers/scripts must be completed by the instructor prior to enrollment. Two production-course limitation. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":927,"label":"VIS 109","title":"Advanced Projects in Media (4)"},{"dept":"FILM","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":928,"label":"FILM 87","title":"Film Studies Freshman Seminar (1)"},{"dept":"ECE","description":"Introduction to basic concepts, source coding theorems, capacity, noisy-channel coding theorem. (Recommended prerequisites: ECE 154A-B-C.) ","edges_from":[],"edges_to":[3084],"id":929,"label":"ECE 255A","title":"Information Theory (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ","edges_from":[],"edges_to":[],"id":930,"label":"Linguistics/Heritage Languages (LIHL) 137W","title":"Advanced Persian for Persian Speakers (4)"},{"dept":"VIS","description":"This course is about the expansion of contemporary visual arts practice into a field of environmental, architectural, and urban sites. It foregrounds public engagement and political inquiry, explores new forms of research and community-based knowledge production, and develops strategies for visualizing the dynamics of contemporary urban life. ","edges_from":[],"edges_to":[4975,4087],"id":931,"label":"VIS 100","title":"Introduction to Public Culture (4)"},{"dept":"VIS","description":"This course examines expanded meanings of the urban and the ecological into new conceptual zones for artistic practice and research, introducing urbanization as complex and transformative processes of interrelated cultural, socioeconomic, political, and environmental conditions, whose material and informational flows are generative of new interpretations of ecology. ","edges_from":[732,253],"edges_to":[3905,4975],"id":932,"label":"VIS 101","title":"Introduction to Urban Ecologies (4)"},{"dept":"VIS","description":"Introduction to urban inequality across the Tijuana–San Diego region, and the border flows that make the marginalized neighborhoods within this geography of conflict into sites of socioeconomic and cultural productivity, laboratories to rethink the gap between wealth and poverty. ","edges_from":[],"edges_to":[],"id":933,"label":"VIS 102","title":"Cross-Border Urbanizations (4)"},{"dept":"HDP","description":"Foundations of Human Development (4)","edges_from":[],"edges_to":[],"id":934,"label":"HDP 133","title":"Sociocultural"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ","edges_from":[],"edges_to":[],"id":935,"label":"Linguistics/Heritage Languages (LIHL) 137F","title":"Advanced Persian for Persian Speakers (4)"},{"dept":"ANTH","description":"A forum to present work by faculty, students, and guests. Course will be offered quarterly. ","edges_from":[937],"edges_to":[],"id":936,"label":"ANTH 230","title":"Department Colloquium (1)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[936],"id":937,"label":"ANGR 230","title":""},{"dept":"MATH","description":"Applications of the residue theorem. Conformal","edges_from":[],"edges_to":[],"id":938,"label":"MATH 120B","title":"Applied Complex Analysis (4)"},{"dept":"MATH","description":"Complex numbers and functions. Analytic functions, harmonic functions,","edges_from":[],"edges_to":[],"id":939,"label":"MATH 120A","title":"Elements of Complex Analysis (4)"},{"dept":"COMM","description":"Specialized study of communication, politics, and society with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ","edges_from":[537,538,539,540],"edges_to":[],"id":940,"label":"COMM 132","title":"Advanced Topics in Communication, Politics, and Society (4)"},{"dept":"HIUS","description":"149. African American History in the Twentieth Century (4)","edges_from":[],"edges_to":[],"id":941,"label":"HIUS 139/ETHN","title":""},{"dept":"LATI","description":"Readings and discussion of substantive issues and research in Latin American studies. Topics may include the study of a specific society or a particular issue in comparative cross-national perspective. Topics will vary from year to year. ","edges_from":[705],"edges_to":[],"id":942,"label":"LATI 180","title":"Special Topics in Latin American Studies (4)"},{"dept":"COMM","description":"Television is a contested site for negotiating the rationales of inclusion and exclusion associated with citizenship and national belonging. Historical and contemporary case studies within international comparative contexts consider regulation, civil rights, cultural difference, social movements, new technologies, and globalization. ","edges_from":[537,538,539,540],"edges_to":[],"id":943,"label":"COMM 133","title":"Television and Citizenship (4)"},{"dept":"PHIL","description":"An introduction to central topics in epistemology with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.","edges_from":[],"edges_to":[],"id":944,"label":"PHIL 206A","title":"Core Course in Epistemology (4)"},{"dept":"CLRE","description":"Students participate in a series of seminars on professional development topics that will focus on skills and knowledge to enhance the ability of clinical researchers to be successful. Seminar topics may include research management, team building and collaboration, leadership skills, career development in the clinical research field, negotiation skills, research project management, and research budgeting/financial management. ","edges_from":[],"edges_to":[1166],"id":945,"label":"CLRE 258","title":"Professional Development in Clinical Research (2)"},{"dept":"HIEA","description":"The Chinese classics reading group translates into English (as a way of understanding and discussing) the Chinese classics and philosophy. Some classical Chinese is required. We consider every aspect of each text from individual words to the historical context.","edges_from":[],"edges_to":[],"id":946,"label":"HIEA 292","title":"Chinese Classics Reading Group (4)"},{"dept":"VIS","description":"A survey of the conceptual uses and historical precedents for the use of computers in art and design. Preparation for further study in the computing in the arts area by providing an introduction to ideation strategies and critique-based evaluation, and an overview of theoretical issues related to the use of computers by artists and designers. Introduces the students to the program’s computing and production facilities, and basic computer programming skills. Two production-course limitation. Program or materials fees may apply. ","edges_from":[],"edges_to":[1224,1889,2277,4975],"id":947,"label":"VIS 142","title":"Practices in Computing Arts (4)"},{"dept":"LTWR","description":"A continuation of LTWR 104A in which fiction writers complete the novella manuscripts they began during the previous quarter. Each student will produce a novella of at least fifty revised pages by the end of the quarter. We will continue to read and discuss published novellas with a particular emphasis on narrative strategy, structure, and revision. Two-quarter sequence; students must complete LTWR 104A and LTWR 104B in order to receive final grade in both courses. ","edges_from":[949],"edges_to":[],"id":948,"label":"LTWR 104B","title":"The Novella II (4)"},{"dept":"LTWR","description":"","edges_from":[648],"edges_to":[948],"id":949,"label":"LTWR 104A","title":""},{"dept":"BENG","description":"Independent work by graduate students engaged in research and writing theses. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":950,"label":"BENG 299","title":"Graduate Research (1–12)"},{"dept":"BENG","description":"Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":951,"label":"BENG 298","title":"Directed Group Study (1–4)"},{"dept":"CHEM","description":"","edges_from":[953,2859],"edges_to":[5664,1193,1552,1553,1942,1865,410,411],"id":952,"label":"CHEM 40B","title":""},{"dept":"CHEM","description":"","edges_from":[220,911],"edges_to":[3835,1193,3313,5859,952,410,411,4221,959],"id":953,"label":"CHEM 40A","title":""},{"dept":"BILD","description":"","edges_from":[],"edges_to":[2178,2180,2058,145,411,412,5664,1445,1192,2601,2732,2740,4149,5946,5950,4661,5952,2885,1353,2270,2530,4324,3944,2025,1906,1012,1013,1705,5951,1405],"id":954,"label":"BILD 1","title":""},{"dept":"BIBC","description":"","edges_from":[],"edges_to":[411],"id":955,"label":"BIBC 103","title":""},{"dept":"BILD","description":"","edges_from":[],"edges_to":[411,5951],"id":956,"label":"BILD 4","title":""},{"dept":"BIMM","description":"","edges_from":[],"edges_to":[411,5951],"id":957,"label":"BIMM 101","title":""},{"dept":"BENG","description":"","edges_from":[220,1318],"edges_to":[1193,410,411,1428,1942],"id":958,"label":"BENG 120","title":""},{"dept":"CHEM","description":"","edges_from":[953,2859],"edges_to":[5664,1553,411,1865],"id":959,"label":"CHEM 40BH","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[3313,411,4221,5859,3835],"id":960,"label":"CHEM 40AH","title":""},{"dept":"ETHN","description":"(Cross-listed with TDGE 131.) This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America’s First Peoples in Hollywood cinema. Carving spaces of “visual sovereignty” (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for TDGE 131 and ETHN 163F.","edges_from":[],"edges_to":[],"id":961,"label":"ETHN 163F","title":"Playing Indian: Native American and First Nations Cinema (4)"},{"dept":"TDGR","description":"A seminar focusing on all aspects of the design profession, including current projects of graduate design students. The work may also include portfolio presentations, research presentations, and guest lecturers. ","edges_from":[],"edges_to":[],"id":962,"label":"TDGR 271","title":"Design Seminar (2)"},{"dept":"TDGR","description":"A survey/history of artistic and cultural stylistic change as embodied in clothing from early Western civilization to the contemporary period. ","edges_from":[],"edges_to":[],"id":963,"label":"TDGR 273","title":"Fashioning the Body (4)"},{"dept":"TDGR","description":"This course explores advanced problems in scenic design through development and critique of creative class projects and production works-in-progress. ","edges_from":[],"edges_to":[],"id":964,"label":"TDGR 274","title":"Advanced Scenic Design (4)"},{"dept":"TDGR","description":"Creative projects and topics in lighting design to develop the student’s techniques and professional practices. Work to include studies in design research, concepts, psychophysical considerations, collaboration, professional procedures and systems, paperwork, and organization. Various scales of production projects will be addressed by the student for presentation and critique, and may be theoretical or productions in the departmental calendar. ","edges_from":[],"edges_to":[],"id":965,"label":"TDGR 275","title":"Advanced Lighting Design (4)"},{"dept":"TDGR","description":"Projects in costume design, emphasizing script analysis, research, conceptualization, and visual expression. Studio work includes costume rendering in various media for specific plays. ","edges_from":[],"edges_to":[],"id":966,"label":"TDGR 276","title":"Advanced Costume Design (4)"},{"dept":"TDGR","description":"A course designed to expose the theatre design student to a variety of specialized topics, including millinery, pattern drafting and draping, scenic painting, model making, figure drawing, drafting, fitting, rendering. Topics will vary from quarter to quarter. ","edges_from":[],"edges_to":[],"id":967,"label":"TDGR 278","title":"Special Topics in Theatre Design (1–6)"},{"dept":"TDGR","description":"This course covers the artistic, aesthetic, and practical aspects of the designers’ work as they develop and execute the design toward a fully realized production. ","edges_from":[],"edges_to":[],"id":968,"label":"TDGR 279","title":"Design Practicum (4)"},{"dept":"ANSC","description":"Legal systems are central in (re)organizing social institutions, international arrangements, (in)equalities, and are an arena where linguistic practices predominate and define outcomes. With an anthropological approach to language, examine languages of the law, legal conceptions of language, and most importantly, the nature and structure of talk in a range of legal institutions and activities. Students will engage in direct anthropological fieldwork in local contexts involving the legal bureaucracy. ","edges_from":[],"edges_to":[],"id":969,"label":"ANSC 131","title":"Language, Law, and Social Justice (4)"},{"dept":"MATS","description":"Classification of phase transformations: displacive and reconstructive transformations: classical and nonclassical theories of nucleation: Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories: interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics, and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ","edges_from":[388],"edges_to":[],"id":970,"label":"MATS 201C","title":"Phase Transformations (4)"},{"dept":"ANSC","description":"Course examines major institutions and culture patterns of traditional China, especially as studied through ethnographic sources. Topics include familism, religion, agriculture, social mobility, and personality. ","edges_from":[],"edges_to":[],"id":971,"label":"ANSC 136","title":"Traditional Chinese Society (4)"},{"dept":"MGT","description":"Hands-on experience in venture investing. Direct involvement in all stages of managing Rady Venture Fund, including applicant sourcing, initial analysis, due diligence, investment negotiation, portfolio monitoring. IP grade awarded at end of quarter. Final grade assigned upon completion of MGT 496B. Students may not earn credit for both MGT 496A and MGT 289A. S/U grades only. ","edges_from":[],"edges_to":[4758],"id":972,"label":"MGT 496A","title":"Venture Capital Management I (2)"},{"dept":"ETHN","description":"(Cross-listed with HIUS 177.) This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries. Fulfills the race, ethnicity, and migration and global/transnational field requirements for the history major. Students may not receive credit for both ETHN 163I and HIUS 177. May be coscheduled with HIUS 277 and ETHN 273.","edges_from":[],"edges_to":[],"id":973,"label":"ETHN 163I","title":"Asian American Histography (4)"},{"dept":"HISC","description":"In 1784, Kant asked, “What is Enlightenment?” In this course we will pursue this question, which has remained hotly debated ever since. ","edges_from":[],"edges_to":[],"id":974,"label":"HISC 177","title":"Science and the Enlightenment (4)"},{"dept":"HISC","description":"This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.","edges_from":[],"edges_to":[],"id":975,"label":"HISC 176","title":"History of Medicine in East and Southeast Asia (4)"},{"dept":"SIOG","description":"Radioactive and stable isotope studies in geology and geochemistry, including geochronology, isotopes as tracers of magmatic processes, cosmic-ray produced isotopes as tracers in the crust and weathering cycle, isotopic evolution of the crust and mantle. Coscheduled with SIO 144. Course requires student presentation. Renumbered from SIO 252A. Students may not receive credit for both SIOG 252A and SIO 252A. ","edges_from":[],"edges_to":[],"id":976,"label":"SIOG 252A","title":"Introduction to Isotope Geochemistry (4)"},{"dept":"LATI","description":"Students collect survey and qualitative data in Mexican migrants’ communities of origin and destination, serve as team leaders, organize field data collection within specific subpopulations, and prepare a detailed outline of a proposed journal article to be based on field data. ","edges_from":[978],"edges_to":[5943],"id":977,"label":"LATI 222B","title":"Field Research Methods for Migration Studies: Practicum (12)"},{"dept":"LATI","description":"","edges_from":[],"edges_to":[977],"id":978,"label":"LATI 222A","title":""},{"dept":"TDDE","description":"Project in Design/Theatre Production (4)","edges_from":[],"edges_to":[],"id":979,"label":"TDDE 190","title":"Major"},{"dept":"MATH","description":"(4)","edges_from":[],"edges_to":[],"id":980,"label":"MATH 168A","title":"Topics in Applied Mathematics—Computer Science"},{"dept":"MATH","description":"Continued development of a topic in probability and statistics. Topics include: Markov processes, martingale theory, stochastic processes, stationary and Gaussian processes, ergodic theory. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[982],"edges_to":[],"id":981,"label":"MATH 289B","title":"Further Topics in Probability and Statistics (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[981],"id":982,"label":"MATH 289A","title":""},{"dept":"MATH","description":"An introduction to various quantitative methods and statistical techniques for analyzing data—in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. Recommended preparation: familiarity with linear algebra and mathematical statistics highly recommended. ","edges_from":[],"edges_to":[],"id":983,"label":"MATH 289C","title":"Exploratory Data Analysis and Inference (4)"},{"dept":"ERC","description":"This weekly seminar focuses on the skills required to write an upper-division research paper and prepare for a winter quarter internship through Academic Internship Program. The structure of the seminar is informal, giving students the opportunity to participate in interactive discussions based on required reading and faculty speakers. ","edges_from":[],"edges_to":[],"id":984,"label":"ERC 188","title":"Transfer Seminar: The Research University (1)"},{"dept":"EDS","description":"Research and Evaluation Methods B—Qualitative Methods (4)","edges_from":[],"edges_to":[],"id":985,"label":"EDS 288B","title":"Advanced"},{"dept":"MAE","description":"Mechanics Applied to Medicine/Biology (4)","edges_from":[],"edges_to":[2226,3930,3365],"id":986,"label":"MAE 209","title":"Continuum"},{"dept":"MAE","description":"Course builds on the MAE fluids sequence, offering more advanced concepts in conduction, convection, radiation, and heat exchanger design. This course covers numerical methods in conduction, boiling, condensation and evaporation analysis, natural and turbulent convection, spectral and directional radiative transfer, heatpipes, thermal design of spacecraft, heat exchanger analysis and design. ","edges_from":[988],"edges_to":[],"id":987,"label":"MAE 101D","title":"Intermediate Heat Transfer (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[2049,2818,3579,2052,3309,3310,2031,2032,2545,4243,5812,987],"id":988,"label":"MAE 101C","title":""},{"dept":"GPLA","description":"This course is designed to enable students at an advanced-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 412A-B-C. Students may not get credit for any IRLA 412 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":989,"label":"GPLA 412A-B-C","title":"Advanced Intermediate Japanese Language for Professional Proficiency (4-4-4)"},{"dept":"LTCS","description":"Topics in Screening Race/Ethnicity, Gender and Sexuality (4)","edges_from":[],"edges_to":[],"id":990,"label":"LTCS 172","title":"Special"},{"dept":"LTCS","description":"This course focuses on the critical study of representations of violence, such as war, genocide, sexual violence, and crime, across a range of media, including literature, film, photography, and other forms of visual culture. Repeatable for credit when readings and focus vary.","edges_from":[],"edges_to":[],"id":991,"label":"LTCS 173","title":"Topics in Violence and Visual Culture (4)"},{"dept":"LTCS","description":"The course will focus on visual practices and discourses in their intersection and overlap, from traditional media, print, and photography to film, video, TV, computers, medical scanners, and the Internet.","edges_from":[],"edges_to":[],"id":992,"label":"LTCS 170","title":"Visual Culture (4)"},{"dept":"DSC","description":"Builds on topics covered in DSC 20 and provides practical experience in composing larger computational systems through several significant programming projects using Java. Students will study advanced programming techniques including encapsulation, abstract data types, interfaces, algorithms and complexity, and data structures such as stacks, queues, priority queues, heaps, linked lists, binary trees, binary search trees, and hash tables. ","edges_from":[748],"edges_to":[5390],"id":993,"label":"DSC 30","title":"Data Structures and Algorithms for Data Science (4)"},{"dept":"LTGK","description":"Study of ancient Greek, including grammar and reading.","edges_from":[],"edges_to":[995,996],"id":994,"label":"LTGK 1","title":"Beginning Greek (4)"},{"dept":"LTGK","description":"Continuation of study of ancient Greek, including grammar and reading. ","edges_from":[994],"edges_to":[996],"id":995,"label":"LTGK 2","title":"Intermediate Greek (I) (4)"},{"dept":"LTGK","description":"Continuation of study of ancient Greek, including grammar and reading of texts. ","edges_from":[994,995],"edges_to":[],"id":996,"label":"LTGK 3","title":"Intermediate Greek (II) (4)"},{"dept":"LIGN","description":"(Same as CSE 256.) Introduction to modern statistical approaches to natural language processing: part-of-speech tagging, word-sense disambiguation and parsing, using Markov models, hidden Markov models, and probabilistic context-free grammars. Recommended prerequisites: one of LIGN 165, LIGN 245, CSE 151, CSE 250A, CSE 254. ","edges_from":[],"edges_to":[],"id":997,"label":"LIGN 256","title":"Statistical Natural Language Processing (4)"},{"dept":"LIGN","description":"The study of human language evolution from a variety of perspectives: anatomical, comparative, computational, cultural, experimental, generational, genetic, gestural, historical, neural, phonetic/phonological, pragmatic, semantic, semiotic, syntactic, etc. May be taken for credit three times when topics vary.","edges_from":[],"edges_to":[],"id":998,"label":"LIGN 255","title":"Topics in Language Evolution (4)"},{"dept":"LTGM","description":"This course offers an overview of issues in contemporary and historical German cultures. How has national identity been constructed in the past? What does it mean to be a German in the new Europe? Materials include fiction, historical documents, films, and the Internet.","edges_from":[],"edges_to":[],"id":999,"label":"LTGM 101","title":"German Studies II: National Identities (4)"},{"dept":"ETHN","description":"(Cross-listed with HIUS 183.) A colloquium dealing with special topics in the history of people of African descent in the United States. Themes will vary from quarter to quarter. Requirements will vary for undergraduate, MA, and PhD students. Graduate students will be required to submit a more substantial piece of work.","edges_from":[],"edges_to":[],"id":1000,"label":"ETHN 159","title":"Topics in African American History (4)"},{"dept":"ETHN","description":"This course examines Native American intellectuals’ work. It provides a broad historical perspective on the development of twentieth-century Native American political thinking and discusses the recurring issues, problems, and themes inherent to Indian-white relations, as seen from Indian perspectives.","edges_from":[],"edges_to":[],"id":1001,"label":"ETHN 158","title":"Native American Intellectuals in the Twentieth Century (4)"},{"dept":"HIUS","description":"New York City breathes history. Whether it is in the music,","edges_from":[],"edges_to":[],"id":1002,"label":"HIUS 123/USP 167","title":"History of New York City (4)"},{"dept":"BGJC","description":"Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ","edges_from":[],"edges_to":[],"id":1003,"label":"BGJC 207","title":"Journal Club in Neurobiology (1)"},{"dept":"MGT","description":"Defining markets for products and services, segmenting these markets, and targeting critical customers within segments. Strategies to position products and services within segments. The critical role of pricing as well as market research, product management, promotion, selling, and customer support. ","edges_from":[],"edges_to":[5578,5187,5028],"id":1004,"label":"MGT 103","title":"Product Marketing and Management (4)"},{"dept":"ETHN","description":"(Cross-listed with HIUS 136.) This course traces the history of the institution of United States citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.","edges_from":[],"edges_to":[],"id":1005,"label":"ETHN 153","title":"Citizenship and Civil Rights in the Twentieth Century (4)"},{"dept":"ETHN","description":"In this course, students explore the relationship between race, class, and law as it applies to civil rights both in a historical and a contemporary context. Topics include racism and the law, history of the Fourteenth Amendment, equal protection, school desegregation, and affirmative action.","edges_from":[],"edges_to":[],"id":1006,"label":"ETHN 152","title":"Law and Civil Rights (4)"},{"dept":"ETHN","description":"This course will survey the political effects of immigration, ethnic mobilization, and community building in America, and the contemporary role of ethnicity in politics and intergroup relations.","edges_from":[],"edges_to":[],"id":1007,"label":"ETHN 151","title":"Ethnic Politics in America (4)"},{"dept":"GLBH","description":"Illustrates and explores ecologic settings and frameworks for study and understanding of global health and international health policy. Students acquire understanding of diverse determinants and trends of disease in various settings and interrelationships between socio-cultural-economic development and health. ","edges_from":[],"edges_to":[],"id":1008,"label":"GLBH 181","title":"Essentials of Global Health (4)"},{"dept":"ETHN","description":"(Cross-listed with USP 149.) This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes.","edges_from":[],"edges_to":[],"id":1009,"label":"ETHN 157","title":"Madness and Urbanization (4)"},{"dept":"ETHN","description":"This course considers rationales for and responses to American military expansion as well as its social, environmental, and cultural consequences. We will examine racialized, gendered, and sexualized aspects of militarized institutions and practices, including militarized colonialism, tourism, and sex work. ","edges_from":[],"edges_to":[],"id":1010,"label":"ETHN 155","title":"US Militarism (4)"},{"dept":"ETHN","description":"(Cross-listed with HIUS 113.) This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.","edges_from":[],"edges_to":[],"id":1011,"label":"ETHN 154","title":"History of Mexican America (4)"},{"dept":"ESYS","description":"This course surveys biochemical and physiological processes governing the relationship between organisms and their environments, such as those involved in element cycling and cellular homeostasis. The course introduces biological perspectives on human activities ranging from antibiotic use to genetic engineering. ","edges_from":[954,1013],"edges_to":[],"id":1012,"label":"ESYS 101","title":"Environmental Biology (4)"},{"dept":"BILD","description":"","edges_from":[954],"edges_to":[5952,2178,1192,2601,2530,4141,1012,4661,2740,3130,2270],"id":1013,"label":"BILD 2","title":""},{"dept":"HIGR","description":"Research seminar in ancient history. Selected topics in ancient Greek and Roman history. This is the second course in the IP sequence, which will be devoted to the presentation, discussion, and evaluation of the work in progress.","edges_from":[],"edges_to":[],"id":1014,"label":"HIGR 260B","title":"Research Seminar in Ancient History (4)"},{"dept":"HIGR","description":"Research Seminar in Middle Eastern History (4)","edges_from":[],"edges_to":[],"id":1015,"label":"HIGR 275A","title":""},{"dept":"VIS","description":"An in-depth exploration of the camera and image utilizing photographic digital technology. Emphasis is placed on developing fundamental control of the processes and materials through lectures, field, and lab experience. Basic discussion of image making included. Program or materials fees may apply. ","edges_from":[],"edges_to":[568,567],"id":1016,"label":"VIS 60","title":"Introduction to Digital Photography (4)"},{"dept":"ANBI","description":"Attitudes toward other individuals (and species) are often shaped by their apparent “intelligence.” This course discusses the significance of brain size/complexity, I.Q. tests, communication in marine mammals and apes, complex behavioral tactics, and the evolution of intelligence. ","edges_from":[],"edges_to":[],"id":1017,"label":"ANBI 159","title":"Biological and Cultural Perspectives on Intelligence (4)"},{"dept":"NANO","description":"Newton’s laws of motion. Kinematic and kinetic ​description of particle motion. Angular momentum. Energy and work principles. Motion of the system of interconnected particles. Mass center. Degrees of freedom. Equations of planar motion of rigid bodies. Energy methods. Lagrange’s equations of motion. Introduction to vibration. Free and forced vibrations of a single degree of freedom system. Undamped and damped vibrations. Application to NanoEngineering problems. ","edges_from":[1019,135],"edges_to":[],"id":1018,"label":"NANO 141B","title":"Engineering Mechanics II: Analysis of Motion (4)"},{"dept":"NANO","description":"","edges_from":[29,134],"edges_to":[1018],"id":1019,"label":"NANO 141A","title":""},{"dept":"ECON","description":"","edges_from":[1069],"edges_to":[1312,1313,1314,323,1068,1315,1309],"id":1020,"label":"ECON 220B","title":""},{"dept":"FMPH","description":"","edges_from":[],"edges_to":[],"id":1021,"label":"FMPH 199","title":"Independent Study (2–4)"},{"dept":"CHEM","description":"Introduction to biochemistry for nonscience majors. Topics include carbohydrates, lipids, amino acids and proteins, with an introduction to metabolic pathways in human physiology.","edges_from":[],"edges_to":[],"id":1022,"label":"CHEM 13","title":"Chemistry of Life (4)"},{"dept":"FMPH","description":"Selected topics in the field of public health. Must be taken for a letter grade to be applied to the public health major. May be taken for credit up to three times. ","edges_from":[1024],"edges_to":[],"id":1023,"label":"FMPH 191","title":"Topics in Public Health (4)"},{"dept":"FMPH","description":"","edges_from":[],"edges_to":[1025,1026,1028,1029,4654,3603,5108,5989,1023],"id":1024,"label":"FMPH 40","title":""},{"dept":"FMPH","description":"This is the first of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will integrate the skills and knowledge gained throughout the BSPH program and learn critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ","edges_from":[1024,1026,1027,1028,1029],"edges_to":[5108],"id":1025,"label":"FMPH 193","title":"Public Capstone I (4)"},{"dept":"FMPH","description":"","edges_from":[1024],"edges_to":[1025,3603,5108,5989],"id":1026,"label":"FMPH 110","title":""},{"dept":"FMPH","description":"","edges_from":[],"edges_to":[1025,4826,3603,5108,5989],"id":1027,"label":"FMPH 50","title":""},{"dept":"FMPH","description":"","edges_from":[1024,2333,862,1389],"edges_to":[1025,3603,5108,5989],"id":1028,"label":"FMPH 102","title":""},{"dept":"FMPH","description":"","edges_from":[1024,2333,862,1389],"edges_to":[1025,4826,3603,5108,5989],"id":1029,"label":"FMPH 101","title":""},{"dept":"FMPH","description":"Introduction to teaching in a public health course. As an undergraduate instructional apprentice, students will attend the lectures of the course, weekly meetings with students of the course, and weekly meetings with the course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. Renumbered from FPMU 195. FMPH 195 and/or FPMU 195 may be taken for credit for a combined total of two times. ","edges_from":[],"edges_to":[],"id":1030,"label":"FMPH 195","title":"Instruction in Public Health (4)"},{"dept":"GPPS","description":"Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 256. Students may not receive credit for GPPS 256 and IRGN 256.\t\tMay be coscheduled with GPPS 456.","edges_from":[],"edges_to":[],"id":1031,"label":"GPPS 256","title":"Program Design and Evaluation (4)"},{"dept":"BIOM","description":"Laboratory rotations provide first-year students with experience in the various experimental methods used in biomedical sciences. ","edges_from":[],"edges_to":[],"id":1032,"label":"BIOM 202","title":"Biomedical Sciences Research Rotation (3)"},{"dept":"BIOM","description":"Overview of new systems biology “omics” approaches to lipid metabolism and cell signaling including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Recommended: one quarter of undergraduate biochemistry. ","edges_from":[],"edges_to":[],"id":1033,"label":"BIOM 209","title":"Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)"},{"dept":"CHEM","description":"Introduction to molecular bonding and structure and chemical reactions, including organic molecules and synthetic polymers. Intended for nonscience majors. Cannot be taken for credit after any organic chemistry course. ","edges_from":[1035],"edges_to":[],"id":1034,"label":"CHEM 12","title":"Molecules and Reactions (4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[1034],"id":1035,"label":"CHEM 11","title":""},{"dept":"MATH","description":"Point set topology, including separation axioms, compactness, connectedness. Algebraic topology, including the fundamental group, covering spaces, homology and cohomology. Homotopy or applications to manifolds as time permits. ","edges_from":[384,386,387,6,1037,1038],"edges_to":[],"id":1036,"label":"MATH 290A-B-C","title":"Topology (4-4-4)"},{"dept":"MATH","description":"","edges_from":[6],"edges_to":[1036,1038],"id":1037,"label":"MATH 100B","title":""},{"dept":"MATH","description":"","edges_from":[1037],"edges_to":[1036],"id":1038,"label":"MATH 100C","title":""},{"dept":"Linguistics/Spanish","description":"This course concentrates on those language","edges_from":[],"edges_to":[],"id":1039,"label":"Linguistics/Spanish (LISP) 5A, 5B, 5C, 5D","title":"Fundamentals of Spanish (5)"},{"dept":"CSE","description":"Training in teaching methods in the field of computer science. This course examines theoretical and practical communication and teaching techniques particularly appropriate to computer science. ","edges_from":[],"edges_to":[],"id":1040,"label":"CSE 599","title":"Teaching Methods in Computer Science (2)"},{"dept":"TDGR","description":"This course is designed to enhance dance practitioners’ understanding of pedagogical processes. Candidates will develop strategies to generate course material that functions in multiple contexts. These contexts may include university teaching, professional workshops, master classes, and artist residencies. S/U grades only. ","edges_from":[],"edges_to":[],"id":1041,"label":"TDGR 216A","title":"Pedagogical Practices (4)"},{"dept":"HDP","description":"Students will take part in a weekly research seminar. In addition, they will plan and carry out a three-quarter research project under the guidance of a faculty member. The project will form the basis for their senior honors thesis. ","edges_from":[],"edges_to":[],"id":1042,"label":"HDP 194A-B-C","title":"Honors Thesis (4-4-4)"},{"dept":"LTCS","description":"The course will explore work in cultural studies, feminist studies, and queer theory of scientific practices altering social relations, cultural identities, and conceptions of “nature.” Issues may include the AIDS pandemic, genetic research, electronic communities, reproductive technologies, and other topics. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1043,"label":"LTCS 256","title":"Cultural Studies of Technoscience (4)"},{"dept":"ECON","description":"Financial structure of the US economy. Bank behavior. Monetary control. ","edges_from":[129,130,505],"edges_to":[],"id":1044,"label":"ECON 111","title":"Monetary Economics (4)"},{"dept":"ECON","description":"Mathematical concepts and techniques used in advanced economic analysis; applications to selected aspects of economic theory. ","edges_from":[384,797,1046],"edges_to":[],"id":1045,"label":"ECON 113","title":"Mathematical Economics (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[5896,1045],"id":1046,"label":"MATH 142A","title":""},{"dept":"POLI","description":"An historical and topical survey of major issues in Russian-American relations, such as security arrangements in the post-Soviet space, the war on terrorism, arms control and nonproliferation, and international energy.","edges_from":[],"edges_to":[],"id":1047,"label":"POLI 147B","title":"Russian-American Relations (4)"},{"dept":"LTWL","description":"This course examines histories and theories of cinema and Islam. It offers an overview on intersections between film and religious experience in various Muslim cultures, and how such experiences are ultimately grounded in shifting historical and social settings.","edges_from":[],"edges_to":[],"id":1048,"label":"LTWL 134","title":"Cinema and Islam (4)"},{"dept":"ECON","description":"Impact of immigration on the US economy. Empirical evidence on the labor market and fiscal impacts of immigration. Consequences of US immigration policies on the economy. ","edges_from":[505,302],"edges_to":[],"id":1049,"label":"ECON 114","title":"Economics of Immigration (4)"},{"dept":"ECON","description":"Models of the economic growth of developed economies. ","edges_from":[547],"edges_to":[],"id":1050,"label":"ECON 117","title":"Economic Growth (4)"},{"dept":"ECON","description":"Introduction to the economics of less developed countries, covering their international trade, human resources, urbanization, agriculture, income distribution, political economy, and environment. ","edges_from":[542,543],"edges_to":[],"id":1051,"label":"ECON 116","title":"Economic Development (4)"},{"dept":"ECON","description":"(4)","edges_from":[],"edges_to":[],"id":1052,"label":"ECON 119","title":"Law and Economics: Contracts and Corporations"},{"dept":"ECON","description":"Economics: Torts, Property, and Crime (4)","edges_from":[],"edges_to":[],"id":1053,"label":"ECON 118","title":"Law and"},{"dept":"ERC","description":"A seminar intended for exposing undergraduate students, especially freshmen and sophomores, to exciting research programs conducted by the faculty. ","edges_from":[],"edges_to":[],"id":1054,"label":"ERC 90","title":"Undergraduate Seminar (1)"},{"dept":"ERC","description":"Individual project on a topic chosen by the student, done under direction of a faculty member. ","edges_from":[],"edges_to":[],"id":1055,"label":"ERC 92","title":"Honors Project (2)"},{"dept":"LTTH","description":"An introduction to modernist aesthetics with a focus on art and literary movements. Particular attention to be placed on relationships between modern literary movements (realism, imagism, surrealism) and their counterparts in visual arts, music, dance, and theatre, and the ways in which literary movements are components of or responses to issues of political and social identity. ","edges_from":[],"edges_to":[],"id":1056,"label":"LTTH 255","title":"Modern Art Movements and Aesthetics (4)"},{"dept":"TWS","description":"Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":1057,"label":"TWS 198","title":"Directed Group Studies (2 or 4)"},{"dept":"LTTH","description":"An overview of issues in modern critical theory as they pertain to writers. Will focus on issues of textuality, cultural forms, and aesthetics as they impact the process and meaning of writing. ","edges_from":[],"edges_to":[],"id":1058,"label":"LTTH 250","title":"Writing and Theory (4)"},{"dept":"PHYS","description":"First quarter of a three-quarter introductory physics course, geared toward life-science majors. Equilibrium and motion of particles in one and two dimensions in the framework of Newtonian mechanics, force laws (including gravity), energy, momentum, rotational motion, conservation laws, and fluids. Examples will be drawn from astronomy, biology, sports, and current events. ","edges_from":[129,130,1060,133,1061],"edges_to":[1060,1388,5037,1390],"id":1059,"label":"PHYS 1A","title":"Mechanics (3)"},{"dept":"PHYS","description":"","edges_from":[129,130,1059,133,1061],"edges_to":[1059,1388,1390],"id":1060,"label":"PHYS 1AL","title":""},{"dept":"MATH","description":"","edges_from":[129,130],"edges_to":[1059,1060,550,3624,1388,1389,1390,215,1401,220],"id":1061,"label":"MATH 10B","title":""},{"dept":"USP","description":"Using the San Diego region as a case study, students will be introduced to the process of collecting, evaluating, and presenting urban and regional data using a variety of methods, including aggregate data analysis, historical research, and ethnography. ","edges_from":[],"edges_to":[],"id":1062,"label":"USP 193","title":"San Diego Community Research (4)"},{"dept":"COGS","description":"How damaged and normal brains influence the way humans solve problems, remember or forget, pay attention to things; how they affect our emotions, and the way we use language in daily life.","edges_from":[],"edges_to":[],"id":1063,"label":"COGS 11","title":"Minds and Brains (4)"},{"dept":"PSYC","description":"Selected topics in the field of psychology. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":1064,"label":"PSYC 93","title":"Topics in Psychology (4)"},{"dept":"GPLA","description":"This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Spanish language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 441A-B-C. Students may not get credit for any IRLA 441 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":1065,"label":"GPLA 441A-B-C","title":"Intermediate Spanish Language for Professional Proficiency (4-4-4)"},{"dept":"COGS","description":"This course introduces students to multiple methods to investigate cognition and behavior in natural settings. Students will learn about ethnography, videography (video data collection, coding, and analysis), surveys design and conducting interviews, and how to move from observations to modeling.","edges_from":[],"edges_to":[],"id":1066,"label":"COGS 13","title":"Field Methods: Studying Cognition in the Wild (4)"},{"dept":"ECON","description":"Governments serve functions key to economic development, including correcting market failures, raising taxes, delivering services, and protecting property rights. Correspondingly, research in development economics is increasingly focused on how institutions affect development. Generally, the aim of the course is to provide PhD students a complete introduction to the growing literature in this area. Students may not receive credit for Econ 237 and POLI 231E. ","edges_from":[],"edges_to":[],"id":1067,"label":"ECON 237","title":"Political Economy: Microeconomic Perspectives (4)"},{"dept":"ECON","description":"Exploration of existing theoretical literature evaluating the efficiency and distribution effects of income and commodity taxes. Characterization of an “optimal” tax structure, and examination of problems faced in tax administration. Scrutiny of behavioral responses to existing tax structures. ","edges_from":[320,323,1069,1020,318,319],"edges_to":[],"id":1068,"label":"ECON 230","title":"Public Economics: Taxation (4)"},{"dept":"ECON","description":"","edges_from":[],"edges_to":[1312,1313,1314,1315,1068,1020,1309],"id":1069,"label":"ECON 220A","title":""},{"dept":"ECON","description":"Public Goods and Externalities (4)","edges_from":[],"edges_to":[],"id":1070,"label":"ECON 231","title":"Public Economics:"},{"dept":"ECON","description":"Redistribution and Social Insurance (4)","edges_from":[],"edges_to":[],"id":1071,"label":"ECON 232","title":"Public Economics:"},{"dept":"COGS","description":"Introduction to the organization and functions of the nervous system. Topics include molecular, cellular, developmental, systems, and behavioral neurobiology. Specifically, structure and function of neurons, peripheral and central nervous systems, sensory, motor, and control systems, learning and memory mechanisms. (Students may not receive credit for both Biology 12 and Cognitive Science 17. This course fulfills general-education requirements for Marshall and Roosevelt Colleges as well as Warren by petition.)","edges_from":[],"edges_to":[5907,1571],"id":1072,"label":"COGS 17","title":"Neurobiology of Cognition (4)"},{"dept":"TMC","description":"This course is designed to study, discuss, and analyze the history and current role of public service in the United States. Students will be introduced to the different roles held by the three sectors of the American economic structure (government, business, and nonprofit/public service) with opportunity to provide a critical analysis of those roles within American society.","edges_from":[],"edges_to":[],"id":1073,"label":"TMC 15","title":"Introduction to Public Service in America (4)"},{"dept":"COGS","description":"This class will teach fundamental Python programming skills and practices, including the “Zen of Python.” Students will focus on scientific computing and learn to write functions and tests, as well as how to debug code using the Jupyter Notebook programming environment. Students with limited computing experience may take COGS 3 for preparation.","edges_from":[],"edges_to":[3293,2334,2335],"id":1074,"label":"COGS 18","title":"Introduction to Python (4)"},{"dept":"MATH","description":"Differential manifolds, Sard theorem, tensor bundles, Lie derivatives, DeRham theorem, connections, geodesics, Riemannian metrics, curvature tensor and sectional curvature, completeness, characteristic classes. Differential manifolds immersed in Euclidean space. ","edges_from":[],"edges_to":[],"id":1075,"label":"MATH 250A-B-C","title":"Differential Geometry (4-4-4)"},{"dept":"MUIR","description":"A course of independent work on a research or creative project to satisfy a Muir graduation requirement. (Only Muir students who have had Muir Special Project proposals approved may enroll in this course.) Students wishing to enroll must submit a written request with a description of the project. (Muir students must submit the Muir Special Project 199 form to the major advisor and to the Office of the Provost by the seventh week of the quarter prior to the quarter in which the 199 is to be undertaken. For information on other requirements, consult the provost’s office.) ","edges_from":[],"edges_to":[],"id":1076,"label":"MUIR 199","title":"Muir Special Project (4–16)"},{"dept":"MATH","description":"Various topics in real analysis. ","edges_from":[],"edges_to":[],"id":1077,"label":"MATH 248","title":"Seminar in Real Analysis (1)"},{"dept":"LTSP","description":"Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral Exam. ","edges_from":[],"edges_to":[],"id":1078,"label":"LTSP 196","title":"Honors Thesis (4)"},{"dept":"CHEM","description":"First quarter of a three-quarter honors sequence intended for well-prepared science and engineering majors. Topics include quantum mechanics, molecular orbital theory, and bonding. An understanding of nomenclature, stoichiometry, and other fundamentals is assumed. Students completing 6AH may not subsequently take 6A for credit. Recommended: completion of a high school physics course strongly recommended. Concurrent enrollment in MATH 20A or higher.","edges_from":[],"edges_to":[1128,447,220,1847],"id":1079,"label":"CHEM 6AH","title":"Honors General Chemistry I (4)"},{"dept":"LTSP","description":"Tutorial: individual guided reading in areas of Spanish literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1080,"label":"LTSP 199","title":"Special Studies (2 or 4)"},{"dept":"LTSP","description":"","edges_from":[],"edges_to":[],"id":1081,"label":"LTSP 198","title":"Directed Group Study (4)"},{"dept":"MATH","description":"In recent years, topics have included Fourier analysis in Euclidean spaces, groups, and symmetric spaces. May be repeated for credit with consent of adviser as topics vary. ","edges_from":[1083],"edges_to":[],"id":1082,"label":"MATH 242","title":"Topics in Fourier Analysis (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[1082,5794],"id":1083,"label":"MATH 240C","title":""},{"dept":"MATH","description":"Various topics in functional analysis. May be taken for credit nine times. ","edges_from":[],"edges_to":[],"id":1084,"label":"MATH 243","title":"Seminar in Functional Analysis (1)"},{"dept":"CHEM","description":"Reading and laboratory study of special topics for first-year graduate students under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":1085,"label":"CHEM 298","title":"Special Study in Chemistry (1–4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[],"id":1086,"label":"CHEM 299","title":"Research in Chemistry (1–12)"},{"dept":"SOCI","description":"(Same as PS 194, COGN 194, ERTH 194, HIST 193, USP 194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ","edges_from":[1088,1087],"edges_to":[1087],"id":1087,"label":"SOCI 194","title":"Research Seminar in Washington, DC (4)"},{"dept":"SOCE","description":"","edges_from":[],"edges_to":[1087],"id":1088,"label":"SOCE 194","title":""},{"dept":"MMW","description":"MMW 11 explores human origins, the development of social organization, the strategies early peoples and societies used to negotiate their physical and social environments, and the rise of the ancient world’s classical traditions (to ca. 100 BCE). Open to Eleanor Roosevelt College students only. Students may not receive credit for both MMW 1 and MMW 11. Must be taken for a letter grade to meet the requirement. (F)","edges_from":[],"edges_to":[1682],"id":1089,"label":"MMW 11","title":"Prehistory and Ancient Foundations (4)"},{"dept":"SOCI","description":"Group study of specific topics under the direction of an interested faculty member. Enrollment will be limited to a small group of students who have developed their topic and secured appropriate approval from the departmental committee on independent and group studies. These studies are to be conducted only in areas not covered in regular sociology courses. ","edges_from":[],"edges_to":[],"id":1090,"label":"SOCI 198","title":"Directed Group Study (4)"},{"dept":"LIGN","description":"What universal principles determine how words combine into phrases and sentences? Introduction to research methods and results. Emphasis on how argumentation in problem-solving can be used in the development of theories of language. ","edges_from":[752],"edges_to":[],"id":1091,"label":"LIGN 121","title":"Syntax I (4)"},{"dept":"CHEM","description":"Formal seminars or informal sessions on topics of current interest in chemical physics as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":1092,"label":"CHEM 296","title":"Chemical Physics Seminar (2)"},{"dept":"CHEM","description":"Experimental methods and techniques involved in chemical research are introduced. Hands-on experience provides training for careers in industrial research and for future thesis research. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":1093,"label":"CHEM 297","title":"Experimental Methods in Chemistry (4)"},{"dept":"CHEM","description":"Formal seminars or informal puzzle sessions on topics of current interest in organic chemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":1094,"label":"CHEM 294","title":"Organic Chemistry Seminar (2)"},{"dept":"CHEM","description":"Formal seminars or informal puzzle sessions on topics of current interest in biochemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":1095,"label":"CHEM 295","title":"Biochemistry Seminar (2)"},{"dept":"PSYC","description":"This course provides basic information about the nature of reading. Topics include word recognition, eye movements, inner speech, sentence processing, memory for text, learning to read, methods for teaching reading, reading disabilities and dyslexia, and speed-reading. Recommended preparation: completion of PSYC 105 or PSYC 145. ","edges_from":[],"edges_to":[],"id":1096,"label":"PSYC 128","title":"Psychology of Reading (4)"},{"dept":"PSYC","description":"This course provides an overview of how we perceive the world. Topics include classic studies in perception, discussion of the view that perception is “logical,” and new insights into the neural mechanisms underlying perception. ","edges_from":[],"edges_to":[],"id":1097,"label":"PSYC 129","title":"Logic of Perception (4)"},{"dept":"PSYC","description":"This course provides an introduction to the history, purpose, and recent changes to the Diagnostic and Statistical Manual of Mental Disorders along with appropriate evidence-based interventions. Other topics include psychiatric emergencies, crisis management, and ethics. Recommended preparation: Completion of PSYC 100. ","edges_from":[],"edges_to":[1100],"id":1098,"label":"PSYC 124","title":"Clinical Assessment and Treatment (4)"},{"dept":"PSYC","description":"This course provides a fundamental understanding of brain-behavior relationships as applied to the practice of clinical neuropsychology. Major topics include functional neuroanatomy, principles of neuropsychological assessment and diagnosis, and the neuropsychological presentation of common neurologic and psychiatric conditions. ","edges_from":[],"edges_to":[],"id":1099,"label":"PSYC 125","title":"Clinical Neuropsychology (4)"},{"dept":"PSYC","description":"This course provides experience with clients in a community mental health care setting, under professional supervision. Seminar-based instruction also provides a framework for understanding theoretical, practical, and ethical issues related to client care. ","edges_from":[1098,1101],"edges_to":[],"id":1100,"label":"PSYC 126","title":"Practicum in Community Mental Health Care (4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[1100],"id":1101,"label":"PSYC 100","title":""},{"dept":"MATH","description":"Various topics in computational and applied mathematics. ","edges_from":[],"edges_to":[],"id":1102,"label":"MATH 278A","title":"Seminar in Computational and Applied Mathematics (1)"},{"dept":"PSYC","description":"","edges_from":[625],"edges_to":[625],"id":1103,"label":"PSYC 121","title":""},{"dept":"PSYC","description":"This course focuses on approaches to the study of behavior and its underlying fundamental units of analysis in human and nonhuman animals. Students may not receive credit for both PSYC 122 and PSYC 103. ","edges_from":[],"edges_to":[],"id":1104,"label":"PSYC 122","title":"Mechanisms of Animal Behavior (4)"},{"dept":"TDAC","description":"A beginning course in the fundamentals of acting: establishing a working vocabulary and acquiring the basic skills of the acting process. Through exercises, compositions, and improvisations, the student actor explores the imagination as the actor’s primary resource, and the basic approach to text through action. ","edges_from":[],"edges_to":[3720,2618,3547],"id":1105,"label":"TDAC 1","title":"Introduction to Acting (4)"},{"dept":"EDS","description":"Leadership Research Practicum (2)","edges_from":[],"edges_to":[],"id":1106,"label":"EDS 293A","title":"Advanced"},{"dept":"EDS","description":"Leadership Research Practicum (2)","edges_from":[],"edges_to":[],"id":1107,"label":"EDS 293B","title":"Advanced"},{"dept":"PHYS","description":"Thesis Research for Undergraduates (2–4)","edges_from":[],"edges_to":[],"id":1108,"label":"PHYS 199H","title":"Honors"},{"dept":"SOCI","description":"History, politics, social organization, and ideology of the American news media. This course,165A, surveys the development of the news media as an institution, from earliest newspapers to modern mass news media. ","edges_from":[1109,1110],"edges_to":[1109],"id":1109,"label":"SOCI 165A","title":"American News Media (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[1109],"id":1110,"label":"SOCC 165A","title":""},{"dept":"SE","description":"Review of probability theory and random processes. Fundamentals of structural reliability theory. First- and second-order, and simulation methods of reliability analysis. Structural component and system reliability. Reliability sensitivity measures. Bayesian reliability analysis methods. Bases for probabilistic design codes. Use of computer resources. Recommended preparation: basic knowledge of probability theory (e.g., SE 125). ","edges_from":[],"edges_to":[],"id":1111,"label":"SE 224","title":"Structural Reliability and Risk Analysis (4)"},{"dept":"ECE","description":"Design and control of DC-DC converters, PWM rectifiers, single-phase and three-phase inverters, power management, and power electronics applications in renewable energy systems, motion control, and lighting. ","edges_from":[1113],"edges_to":[],"id":1112,"label":"ECE 125B","title":"Introduction to Power Electronics II (4)"},{"dept":"ECE","description":"","edges_from":[2087],"edges_to":[1112],"id":1113,"label":"ECE 125A","title":""},{"dept":"SE","description":"Influence of soil conditions on ground motion characteristics; dynamic behavior of soils, computation of ground response using wave propagation analysis and finite element analysis; evaluation and mitigation of soil liquefaction; soil-structure interaction; lateral pressures on earth retaining structures; analysis of slope stability. Recommended preparation: SE 181 or equivalent. ","edges_from":[],"edges_to":[],"id":1114,"label":"SE 222","title":"Geotechnical Earthquake Engineering (4)"},{"dept":"SE","description":"Modal analysis. Nonlinear response spectra. Performance based seismic design. Nonlinear time history analyses. Capacity design. Structural walls. Coupled walls. Rocking walls. Base isolation. Recommended preparation: grade of B+ or higher in SE 211 and SE 201B. ","edges_from":[],"edges_to":[],"id":1115,"label":"SE 223","title":"Advanced Seismic Design of Structures (4)"},{"dept":"SE","description":"Concepts, advantages, and limitations of seismic isolation techniques; fundamentals of dynamic response under seismic excitation; spectral analysis; damping; energy approach; application to buildings and structures. ","edges_from":[],"edges_to":[],"id":1116,"label":"SE 220","title":"Seismic Isolation and Energy Dissipation (4)"},{"dept":"HINE","description":"A close reading of select poetic passages from the Hebrew Bible/Old Testament. +","edges_from":[],"edges_to":[],"id":1117,"label":"HINE 112B","title":"Great Poems from the Hebrew Bible (4)"},{"dept":"COGS","description":"This course is taken to focus the students’ development of a thesis topic and research proposal. Students prepare an outline of thesis proposal and make an oral public presentation of the proposed topic prior to the end of the third year. S/U only.","edges_from":[],"edges_to":[],"id":1118,"label":"COGS 205","title":"Introduction to Thesis Research (4)"},{"dept":"COGS","description":"This course surveys the development of symbolic and connectionist models of cognition. Selected readings from the late 1940s to the present are covered. Topics include: Turing machines, information theory, computational complexity, search, learning, symbolic artificial intelligence, and neural networks.","edges_from":[],"edges_to":[],"id":1119,"label":"COGS 202","title":"Cognitive Science Foundations: Computational Modeling of Cognition (4)"},{"dept":"COGS","description":"Surveys a variety of theoretical and methodological approaches to the study of human cognition. Topics include language structure, language processing, concepts and categories, knowledge representation, analogy and metaphor, reasoning, planning and action, problem solving, learning and expertise, and emotion.","edges_from":[],"edges_to":[],"id":1120,"label":"COGS 203","title":"Cognitive Science Foundations: Theories and Methods in the Study of Cognitive Phenomena (4)"},{"dept":"COGS","description":"This seminar emphasizes the conceptual basis of cognitive science, including representation, processing mechanisms, language, and the role of interaction among individuals, culture, and the environment. Current developments in each field are considered as they relate to issues in cognitive science. (May be repeated for credit.)","edges_from":[],"edges_to":[],"id":1121,"label":"COGS 200","title":"Cognitive Science Seminar (4)"},{"dept":"COGS","description":"Examination of the neurophysiological and neuroanatomical basis for perception, cognition, and learning. Lectures will focus on the dynamics of neural activity in cortical and subcortical structures as they relate to sensory processing, motor control, attention, arousal state, and memory.","edges_from":[],"edges_to":[],"id":1122,"label":"COGS 201","title":"Systems Neuroscience (4)"},{"dept":"ANTH","description":"Seminar to explore student research interests and methodologies needed to complete Honors Thesis in ANTH 196B. Students will be admitted to the Honors Program by invitation of the department in the spring of their junior year. Completion of this course with a grade of at least B+ is a prerequisite to ANTH 196B. ","edges_from":[],"edges_to":[5251,2580],"id":1123,"label":"ANTH 196A","title":"Honors Studies in Anthropology (4)"},{"dept":"LTWR","description":"In this workshop, students will practice skills of narration, characterization, and style with particular attention to the demands of nonrealistic genres, especially the challenge of suspending disbelief in fictional environments that defy conventional logic. Readings and lectures will accompany writing exercises. May be taken for credit three times. ","edges_from":[273],"edges_to":[],"id":1124,"label":"LTWR 106","title":"Science Fiction, Fantasy, and Irrealism Workshop (4)"},{"dept":"LTWR","description":"This workshop includes instruction on using software and writing basic computer code to allow students to create innovative web-based works that experiment with poetic form, draw on rich media resources, and provide more accessibility and interactivity for public audiences. May be taken up to three times for credit. ","edges_from":[261],"edges_to":[],"id":1125,"label":"LTWR 103","title":"Digital Poetics Workshop (4)"},{"dept":"LTWR","description":"A workshop for students with interest in writing fiction in Spanish. Includes discussion of student work, together with analysis and discussion of representative examples of short fiction from the present and previous ages. A working knowledge of Spanish is required. May be taken for credit three times. ","edges_from":[273,82,83,84],"edges_to":[],"id":1126,"label":"LTWR 101","title":"Writing Fiction in Spanish (4)"},{"dept":"MAE","description":"Elasticity and inelasticity, dislocations and plasticity of crystals, creep, and strengthening mechanisms. Mechanical behavior of ceramics, composites, and polymers. Fracture: mechanical and microstructural. Fatigue. Laboratory demonstrations of selected topics. ","edges_from":[1128,1129,653,654],"edges_to":[3579],"id":1127,"label":"MAE 160","title":"Mechanical Behavior of Materials (4)"},{"dept":"MAE","description":"","edges_from":[1079,1318,29,38,134],"edges_to":[1127],"id":1128,"label":"MAE 20","title":""},{"dept":"MAE","description":"","edges_from":[653,654,135],"edges_to":[3970,2659,1127,399,1785,1308],"id":1129,"label":"MAE 131A","title":""},{"dept":"ECON","description":"Introduces the firm’s capital budgeting decision, including methods for evaluation and ranking of investment projects, the firm’s choice of capital structure, dividend policy decisions, corporate taxes, mergers and acquisitions. ","edges_from":[1131,1132,1133],"edges_to":[3784,3786],"id":1130,"label":"ECON 173B","title":"Corporate Finance (4)"},{"dept":"ECON","description":"","edges_from":[],"edges_to":[3408,4168,1130,1546],"id":1131,"label":"ECON 173A","title":""},{"dept":"ECON","description":"","edges_from":[],"edges_to":[2104,3633,1130,686],"id":1132,"label":"ECON 4","title":""},{"dept":"MGT","description":"","edges_from":[],"edges_to":[2104,1130,686],"id":1133,"label":"MGT 4","title":""},{"dept":"LTEN","description":"Selected topics in the study of literary, dramatic, and other Elizabethan cultural texts. Emphasis will be upon articulations among a range of discourses, practices, and institutions. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1134,"label":"LTEN 222","title":"Elizabethan Studies (4)"},{"dept":"HIUS","description":"This course examines the legal and cultural constructions of “freedom” in American history, with a focus on its inherent limitations and exclusions. We will examine how marginalized groups have engaged in political struggles in pursuit of more expansive notions of freedom.","edges_from":[],"edges_to":[],"id":1135,"label":"HIUS 265","title":"The Problem with Freedom (4)"},{"dept":"NEU","description":"For incoming doctoral students in neurobiology, computational neurosciences, and neurosciences. During the first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ","edges_from":[],"edges_to":[],"id":1136,"label":"NEU 210","title":"Neurobiology Boot Camp (4)"},{"dept":"ANTH","description":"Examines physical and mental health sequelae of internal and transnational movement of individuals and populations due to warfare, political violence, natural disaster, religious persecution, poverty and struggle for economic survival, and social suffering of communities abandoned by migrants and refugees. May be coscheduled with ANSC 144. ","edges_from":[],"edges_to":[3150],"id":1137,"label":"ANTH 238","title":"Immigrant and Refugee Health (4)"},{"dept":"ANTH","description":"Recent decades have witnessed the dramatic rise of religious movements worldwide, posing challenges to secular models of modernity. We will study the sociocultural and political implications of this phenomenon comparatively, focusing especially on new forms of Islamic and Christian practice. ","edges_from":[],"edges_to":[],"id":1138,"label":"ANTH 239","title":"Contemporary Religious Movements (4)"},{"dept":"HLAW","description":"Assesses the major models for provision and financing of health care in the U.S. and the world today. Students gain an understanding of the health policy process and how health care is financed as well as learn to evaluate health policies according to range of criteria for cost, quality, and equity. Advantages and disadvantages of the various ways of organizing and financing health care are considered. Actions taken by employers, insurers, consumers, and government and the effects on physicians and provider organizations are analyzed. ","edges_from":[],"edges_to":[],"id":1139,"label":"HLAW 215","title":"Comparative Study of Health-care Systems (3)"},{"dept":"ANTH","description":"Examination of the actual operation of culture with attention to the importance of cultural products and social structures. Course goal is to develop skill in understanding the influence, direct and indirect, of culture and behavior. ","edges_from":[1141],"edges_to":[],"id":1140,"label":"ANTH 234","title":"Dynamics of Culture (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[1140],"id":1141,"label":"ANGR 234","title":""},{"dept":"ANTH","description":"This graduate seminar will attend to the theory and praxis of social justice. Social justice is primarily concerned with the ways in which wealth and privileges are distributed in society. This course explores the ideologies and logics of wealth distribution at various points in history and in different places across the globe. The ways in which we understand basic human needs and the distribution of entitlements are also critical components of theories of social justice. ","edges_from":[],"edges_to":[],"id":1142,"label":"ANTH 235","title":"Theories of Social Justice (4)"},{"dept":"ANTH","description":"Indexing a social identity is an achievement; it takes work. But what kind? This course examines Peircean semiotics as a theory of labor, putting it into conversation with traditional Marxist and practice-based conceptualizations of labor. ","edges_from":[],"edges_to":[],"id":1143,"label":"ANTH 232","title":"Labor and Semiotics (4)"},{"dept":"ANTH","description":"This seminar takes up Marx’s varied critiques of capitalist forms, categories, doctrines, practices, and tendencies and brings them to bear on contemporary conditions. In particular, the seminar examines what may be understood as Marx’s ontology, epistemology, and ethico-political stance. ","edges_from":[],"edges_to":[],"id":1144,"label":"ANTH 233","title":"Critical Studies of Capitalism (4)"},{"dept":"HLAW","description":"Under the guidance of faculty, this survey course features a speaker series of experts covering a range of the most current topics in health policy and law. ","edges_from":[],"edges_to":[],"id":1145,"label":"HLAW 213","title":"Current Topics in Health Policy and Law (3)"},{"dept":"HLAW","description":"Given at the discretion of the faculty, topics of interest in health law will be presented for in-depth review and discussion by visiting or resident faculty members. The module will cover seminar topics related to health-care issues. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":1146,"label":"HLAW 212","title":"Special Topics in Health Law (2)"},{"dept":"MAE","description":"Computer-aided analysis and design. Design methodology, tolerance analysis, Monte Carlo analysis, kinematics and computer-aided design of linkages, numerical calculations of moments of inertia, design of cams and cam dynamics; finite element analysis, design using Pro-E, Mechanica Motion and Mechanica Structures. ","edges_from":[653,654,598,1148,1149,1150],"edges_to":[5312,2230],"id":1147,"label":"MAE 150","title":"Computer-Aided Design (4)"},{"dept":"MAE","description":"","edges_from":[141,139,140,221,5919],"edges_to":[2545,1147],"id":1148,"label":"MAE 107","title":""},{"dept":"SE","description":"","edges_from":[],"edges_to":[1147],"id":1149,"label":"SE 121","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[1147,3894],"id":1150,"label":"MAE 3","title":""},{"dept":"MAE","description":"This course will teach teams of students how to develop concepts and business plans in the design of new and innovative products. Emphasis will be placed on identifying user needs, concept generation, and prototype fabrication. ","edges_from":[],"edges_to":[],"id":1151,"label":"MAE 154","title":"Product Design and Entrepreneurship (4)"},{"dept":"ETHN","description":"Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)","edges_from":[],"edges_to":[],"id":1152,"label":"ETHN 135A","title":"Early"},{"dept":"VIS","description":"Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":1153,"label":"VIS 130","title":"Special Projects in Visual Arts (4)"},{"dept":"VIS","description":"Through discussions and readings, the class will examine the issues and aesthetics of installation art making. Using media familiar to them, students will produce several projects. May be taken for credit two times. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":1154,"label":"VIS 132","title":"Installation Production and Studio (4)"},{"dept":"VIS","description":"This course introduces students to studio-based project methodologies, including qualitative and quantitative design research, data visualization, production and exhibition methodologies, and complex collaborative project management. ","edges_from":[732,253],"edges_to":[4975,2399],"id":1155,"label":"VIS 135","title":"Design Research Methods (4)"},{"dept":"HDP","description":"Examination of children’s acquisition of language from babbling to the formation of sentences. Topics covered include: prelinguistic gestures, relationships between babbling and sound systems, speech perception, linking words with objects, rule overgeneralization, bilingualism, nature vs. nurture, individual differences, cultural differences. ","edges_from":[657,871],"edges_to":[],"id":1156,"label":"HDP 120","title":"Language Development (4)"},{"dept":"HDP","description":"(Same as COGS 110.) This course examines changes in thinking and perceiving the physical and social world from birth through childhood. Evidence of significant changes in encoding information, forming mental representations, and solving problems is culled from psychological research, cross-cultural studies, and cognitive science. ","edges_from":[238,871],"edges_to":[],"id":1157,"label":"HDP 121","title":"The Developing Mind (4)"},{"dept":"HDP","description":"This course covers topics in social development research. Content will address general principles such as the mutual influences of caregivers and children upon each other and the interplay of person and context. Discussion areas will include attachment, parenting styles, gender differences, aggression, social cognition, social components of achievement motivation, and development of conscience. ","edges_from":[871],"edges_to":[],"id":1158,"label":"HDP 122","title":"Social Development (4)"},{"dept":"MAE","description":"and Failure Analysis of Engineering Components (4)","edges_from":[],"edges_to":[],"id":1159,"label":"MAE 165","title":"Fatigue"},{"dept":"BENG","description":"Implementation of design project in molecular bioengineering. ","edges_from":[1161,68],"edges_to":[68],"id":1160,"label":"BENG 139B","title":"Design Implementation in Molecular Bioengineering (3)"},{"dept":"BENG","description":"","edges_from":[66],"edges_to":[1160],"id":1161,"label":"BENG 139A","title":""},{"dept":"LIGN","description":"A rigorous analysis of symbolic systems and their interpretations. Students will learn to encode and decode information using progressively more sophisticated methods; topics covered include ancient and modern phonetic writing systems, hieroglyphics, computer languages, and ciphers (secret codes). ","edges_from":[],"edges_to":[],"id":1162,"label":"LIGN 17","title":"Making and Breaking Codes (4)"},{"dept":"MDE","description":"This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues, and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ","edges_from":[],"edges_to":[],"id":1163,"label":"MDE 266","title":"Biomaterials for Medical Device Design (4)"},{"dept":"CLRE","description":"Students conduct a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will include their course work in CLRE 295A-B and be presented as a final report that includes a complete description of the project including the study manual, study results, statistical analysis, and a discussion of the findings. Students will make an oral presentation of their ISP to their three-member ISP committee comprised of faculty and industry advisers. The ISP is an independent, creative, and scholarly activity, and students will be graded on their written and oral presentations. ","edges_from":[1165],"edges_to":[],"id":1164,"label":"CLRE 297","title":"Independent Study Project (2)"},{"dept":"CLRE","description":"","edges_from":[],"edges_to":[1612,1164],"id":1165,"label":"CLRE 295A","title":""},{"dept":"CLRE","description":"The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students’ work will be evaluated by a committee of faculty and may also include industry advisers when appropriate. ","edges_from":[945,184,185,186,187,188,189,190,191],"edges_to":[],"id":1166,"label":"CLRE 296","title":"Independent Study Project (6)"},{"dept":"CLRE","description":"Faculty member directs student’s study in development of mentorship and career plan as related to student’s research specialization. Readings, assignments and formalized mentoring sessions designed to integrate and apply student’s learning of clinical research theory and practice to individualized career development plan. ","edges_from":[],"edges_to":[],"id":1167,"label":"CLRE 299","title":"Mentorship and Career Planning for Clinical Research Professionals (2)"},{"dept":"VIS","description":"What is the place of visual art in modern Western culture? This course will address: visual art and radical politics in Courbet and the generation of 1848; Impressionism, Paris, and the cult of la vie moderne; Gauguin, Van Gogh, and the quest for “visionary” painting; Cezanne and the reformulation of painting in terms of pure sensation; the divergent paths of Matisse and Picasso in 1906. The twentieth century follows the emergence of different interpretations of modernity in the USSR, Germany, and France. ","edges_from":[],"edges_to":[],"id":1168,"label":"VIS 125C","title":"Modern Art in the West, 1850–1950 (4)"},{"dept":"POLI","description":"Has the law helped end or contributed to racism in the United States? This course will explore the law of Slavery, Segregation, and Immigration, and study Equal Protection, Affirmative Action, and Criminal Justice (including hate crimes and First Amendment implications).","edges_from":[],"edges_to":[],"id":1169,"label":"POLI 104N","title":"Race and Law (4)"},{"dept":"NANO","description":"Experimental investigation of mechanical behavior of engineering materials. Laboratory exercises emphasize the fundamental relationship between microstructure and mechanical properties, and the evolution of the microstructure as a consequence of rate process. ","edges_from":[1171],"edges_to":[],"id":1170,"label":"NANO 174L","title":"Mechanical Behavior Laboratory (4)"},{"dept":"NANO","description":"","edges_from":[4207],"edges_to":[1170],"id":1171,"label":"NANO 174","title":""},{"dept":"COGR","description":"This course focuses on the political economy of communication and the social organization of key media institutions. There will be both descriptive and analytical concerns. The descriptive concern will emphasize the complex structure of communication industries and organizations, both historically and cross-nationally. The analytic focus will examine causal relationships between the economic and political structure of societies, the character of their media institutions, public opinion, and public attitudes and behaviors expressed in patterns of voting, consuming, and public participation. The nature of evidence and theoretical basis for such relationships will be critically explored. ","edges_from":[],"edges_to":[],"id":1172,"label":"COGR 200A","title":"Introduction to the Study of Communication as Social Force (4)"},{"dept":"COGR","description":"This course focuses on questions of interpretation and meaning. This course will examine how people use texts to interpret the world and coordinate their activities in social groups. Students will study both theories of interpretation in the conventional sense and theories about the act of interpreting. ","edges_from":[],"edges_to":[],"id":1173,"label":"COGR 200B","title":"Introduction to Study of Communication: Communication and Culture (4)"},{"dept":"POLI","description":"An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ","edges_from":[286],"edges_to":[],"id":1174,"label":"POLI 28","title":"Ethics and Society II (4)"},{"dept":"TDGR","description":"220B. Process II: Classical Text II (4)","edges_from":[],"edges_to":[],"id":1175,"label":"TDGR","title":""},{"dept":"POLI","description":"The course explores the modes of political thinking found in arts, especially in drama and literature. It may include ends and means, political leadership, and political economy. Students may not receive credit for both POLI 112CS and POLI 112C. ","edges_from":[],"edges_to":[],"id":1176,"label":"POLI 112C","title":"Political Theory and Artistic Vision (4)"},{"dept":"POLI","description":"A reading and research seminar on the origins, development, and politics of nationalism and the nation-state. ","edges_from":[],"edges_to":[],"id":1177,"label":"POLI 225B","title":"The Nation-State (4)"},{"dept":"POLI","description":"An introduction to theories of political behavior developed with the assumptions and methods of economics. General emphasis will be upon theories linking individual behavior to institutional patterns. Specific topics to be covered will include collective action, leadership, voting, and bargaining.","edges_from":[],"edges_to":[],"id":1178,"label":"POLI 112A","title":"Economic Theories of Political Behavior (4)"},{"dept":"TDPW","description":"Beginning workshop in the fundamentals of playwriting. Students discuss material from a workbook that elucidates the basic principles of playwriting, do exercises designed to help them put those principles into creative practice, and are guided through the various stages of the playwriting process that culminate with in-class readings of the short plays they have completed. ","edges_from":[],"edges_to":[4834,4836],"id":1179,"label":"TDPW 1","title":"Introduction to Playwriting (4)"},{"dept":"CSE","description":"Introduction to computer architecture. Computer system design. Processor design. Control design. Memory systems. ","edges_from":[1184,1181,1182,1183],"edges_to":[1184,4475],"id":1180,"label":"CSE 141","title":"Introduction to Computer Architecture (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[1184,1569,5224,1180,1182,3135],"id":1181,"label":"CSE 140","title":""},{"dept":"CSE","description":"","edges_from":[9,3,1183,1181,7],"edges_to":[1184,1180],"id":1182,"label":"CSE 140L","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[1184,1180,5227,5630,5628,1182,3135],"id":1183,"label":"CSE 30","title":""},{"dept":"CSE","description":"","edges_from":[280,1180,1181,1182,1183],"edges_to":[1180],"id":1184,"label":"CSE 141L","title":""},{"dept":"ANSC","description":"Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health-care systems in developed, underdeveloped, and developing countries. In addition, we’ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems—multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. Program or materials fees may apply. Students must apply at","edges_from":[],"edges_to":[],"id":1185,"label":"ANSC 105GS","title":"Global Health and Inequality (4)"},{"dept":"PHIL","description":"An introduction to elementary neuroanatomy and neurophysiology and an examination of theoretical issues in cognitive neuroscience and their implications for traditional philosophical conceptions of the relation between mind and body, perception, consciousness, understanding, emotion, and the self. ","edges_from":[],"edges_to":[],"id":1186,"label":"PHIL 151","title":"Philosophy of Neuroscience (4)"},{"dept":"TDGR","description":"for the Actor (2–4)","edges_from":[],"edges_to":[],"id":1187,"label":"TDGR 211B","title":"Speech"},{"dept":"HIEA","description":"This course will examine selected topics in modern Korean history through both primary sources (in translation) and secondary sources. Topics will vary year to year.","edges_from":[],"edges_to":[],"id":1188,"label":"HIEA 280","title":"Topics in Modern Korean History (4)"},{"dept":"POLI","description":"The course is an introduction to US environmental law at the federal level. It emphasizes issues and current controversies involving natural resources, such as wilderness, biodiversity, water, and climate change. ","edges_from":[],"edges_to":[],"id":1189,"label":"POLI 104E","title":"Environmental Law and Policy (4)"},{"dept":"BENG","description":"Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.). Form heterogeneous materials and components. ","edges_from":[],"edges_to":[],"id":1190,"label":"BENG 247B/ECE 247B/NANO 247B","title":"Bioelectronics (4)"},{"dept":"BIMM","description":"Basics of pharmacology such as drug absorption, distribution, metabolism, and elimination. Concepts in toxicology and pharmacognosy are used to survey the major drug categories. ","edges_from":[1192,1193,410],"edges_to":[],"id":1191,"label":"BIMM 118","title":"Pharmacology (4)"},{"dept":"BIPN","description":"","edges_from":[954,1013],"edges_to":[2273,1283,1284,2275,1191,2024,2003,1759],"id":1192,"label":"BIPN 100","title":""},{"dept":"BIBC","description":"","edges_from":[1761,1193,2859,1865,952,953,958],"edges_to":[2531,1445,1862,1191,1193,1706,5229,3357,1201,2762],"id":1193,"label":"BIBC 102","title":""},{"dept":"MATH","description":"Students will develop skills in analytical thinking as they solve and present solutions to challenging mathematical problems in preparation for the William Lowell Putnam Mathematics Competition, a national undergraduate mathematics examination held each year. Students must sit for at least one half of the Putnam exam (given the first Saturday in December) to receive a passing grade. P/NP grades only. May be taken for credit up to four times. ","edges_from":[129],"edges_to":[],"id":1194,"label":"MATH 96","title":"Putnam Seminar (1)"},{"dept":"CHEM","description":"Hands-on laboratory course focuses on development of correct laboratory work habits and methodologies for the operation of modern analytical instrumentation. Gas chromatography, mass spectrometry, high performance liquid chromatography, ion chromatography, atomic absorption spectroscopy, fluorescence spectrometry, infrared spectrometry. Lecture focuses on fundamental theoretical principles, applications, and limitations of instrumentation used for qualitative and quantitative analysis. Program or materials fees may apply. Students may not receive credit for both CHEM 100B and 10. ","edges_from":[33,30,441,442,443,446],"edges_to":[],"id":1195,"label":"CHEM 100B","title":"Instrumental Chemistry Laboratory (5)"},{"dept":"CHEM","description":"","edges_from":[220,911],"edges_to":[441,3835,4221],"id":1196,"label":"CHEM 7LM","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[441],"id":1197,"label":"CHEM 6BL","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[441,3835,4221],"id":1198,"label":"CHEM 7L","title":""},{"dept":"BIMM","description":"An introduction to eukaryotic virology, with emphasis on animal virus systems. Topics discussed include the molecular structure of viruses; the multiplication strategies of the major virus families; and viral latency, persistence, and oncology. ","edges_from":[411],"edges_to":[],"id":1199,"label":"BIMM 114","title":"Virology (4)"},{"dept":"BIMM","description":"This course explores the mechanisms by which gene activity is regulated in eukaryotes, with an emphasis on transcriptional regulation and chromatin. Topics will include chromatin structure, histone modifications, chromatin dynamics, transcription factors, transcriptional elongation, enhancers, CpG methylation, heterochromatin, and epigenetics. ","edges_from":[411],"edges_to":[],"id":1200,"label":"BIMM 112","title":"Regulation of Eukaryotic Gene Expressions (4)"},{"dept":"BIMM","description":"An examination of the molecular basis of human diseases. Course emphasizes inherited human disorders, and some important diseases caused by viruses. Focus on the application of genetic, biochemical, and molecular biological principles to an understanding of the diseases. ","edges_from":[1193,410,411,412],"edges_to":[],"id":1201,"label":"BIMM 110","title":"Molecular Basis of Human Disease (4)"},{"dept":"TDGR","description":"Boundaries: Design Improvisations (4)","edges_from":[],"edges_to":[],"id":1202,"label":"TDGR 262","title":"Crossing"},{"dept":"EDS","description":"This course provides a combination of seminar work and intensive field experience after the end of the spring quarter, during special summer session. Topics are introduced and analyzed in seminars and reinforced and expanded upon in field visits to historic and cultural sites in Cuba. Additional fees may be required for travel expenses. ","edges_from":[1204],"edges_to":[],"id":1203,"label":"EDS 22S","title":"Education in Cuba—Field Experience (4)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[1203],"id":1204,"label":"EDS 22","title":""},{"dept":"TDGR","description":"The collaborative process of new-play development through readings, rehearsals, and public performance. MFA actors, designers, directors, playwrights, and stage managers enroll in one section and collaborate in creating the annual festival of full-length and one-act plays. ","edges_from":[],"edges_to":[],"id":1205,"label":"TDGR 260","title":"New-Play Festival (4)"},{"dept":"POLI","description":"This course will examine issues of civil liberties from both legal and political perspectives. Topics will include the First Amendment rights of speech, press, assembly, and religion; other “fundamental” rights, such as the right to privacy; and some issues in equal protection. Conflicts between governmental powers and individual rights will be examined.","edges_from":[],"edges_to":[4376],"id":1206,"label":"POLI 104B","title":"Civil Liberties—Fundamental Rights (4)"},{"dept":"ANSC","description":"Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Freshmen and sophomores cannot enroll without consent of the instructor.","edges_from":[],"edges_to":[],"id":1207,"label":"ANSC 106","title":"Global Health: Indigenous Medicines in Latin America (4)"},{"dept":"TDGR","description":"Course will cover multiple applications of storyboarding as a tool of communication and expression; comic books, theatre, opera, film, TV, and commercial applications will be explored. Individual and team assignments will be given to develop the basic vocabulary and techniques. ","edges_from":[],"edges_to":[],"id":1208,"label":"TDGR 268","title":"Storyboarding (4)"},{"dept":"ANSC","description":"Course usually taught by visiting faculty in sociocultural anthropology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the anthropology department website. (Can be taken a total of four times as topics vary.) ","edges_from":[],"edges_to":[],"id":1209,"label":"ANSC 100","title":"Special Topics in Sociocultural Anthropology (4)"},{"dept":"ANSC","description":"Examines aging as process of human development, from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. ","edges_from":[],"edges_to":[4658],"id":1210,"label":"ANSC 101","title":"Aging: Culture and Health in Late Life Human Development (4)"},{"dept":"HISC","description":"Selected topics in the history of science. Course can be taken for credit up to three times as topics will vary.","edges_from":[],"edges_to":[],"id":1211,"label":"HISC 144","title":"Topics in Science Studies (4)"},{"dept":"VIS","description":"This course for the advanced visual arts major examines topics in contemporary studio art practice. The course is divided among research, discussion, projects, field trips to galleries, and visiting artists, and will encourage student work to engage in a dialogue with the issues raised. ","edges_from":[],"edges_to":[],"id":1212,"label":"VIS 110A","title":"Contemporary Issues and Practices (4)"},{"dept":"VIS","description":"This class is for the advanced visual arts major who is interested in taking the next steps toward becoming a professional visual artist. Students will become familiar with artist’s residencies and graduate programs and what they offer. Of most importance will be developing the portfolio and the artist statement, as well as becoming more familiar with the contemporary art world. Two production-based limitation. ","edges_from":[],"edges_to":[],"id":1213,"label":"VIS 110B","title":"Professional Practice in the Visual Arts (4)"},{"dept":"VIS","description":"This is a course for the advanced visual arts major that explores the use of the maquette, or sketch, in the process of developing, proposing, and planning visual works in various media for public projects, site specific works, grants, exhibition proposals, etc. The student will work on synthesizing ideas and representing them in alternate forms that deal with conception, fabrication, and presentation. ","edges_from":[],"edges_to":[],"id":1214,"label":"VIS 110C","title":"Proposals, Plans, Presentations (4)"},{"dept":"VIS","description":"This course for the advanced visual arts major explores narrative in art practice. The course will explore the construction of real and fictive narratives across a variety of disciplines with an emphasis on illustration, the graphic novel, comics, and other forms of drawing practice. Studio work is complemented by in-depth study of the gaze, subjectivity, memory, and imagination. After guided assignments, emphasis is on self-directed projects. ","edges_from":[],"edges_to":[],"id":1215,"label":"VIS 110D","title":"Visual Narrative (4)"},{"dept":"VIS","description":"This course for the advanced visual arts major takes painting, sculpture, and related media out of the studio/gallery and into the public sphere by examining the contemporary history of public artworks with traditional and nontraditional site-specific work, focusing on production, critical discussion, and writing. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":1216,"label":"VIS 110E","title":"Art in Public Spaces/Site-Specific Art (4)"},{"dept":"VIS","description":"This course for the advanced visual arts major expands the idea contained in a singular work, or object, into the use of multiple objects, images, and media that redefines the idea as well as the space for which it is intended. Examination of historic, modern, and contemporary works will influence discussion of student project development and execution. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":1217,"label":"VIS 110F","title":"Installation: Cross-Disciplinary Projects (4)"},{"dept":"EDS","description":"Supervised research studies with individual topics selected according to students’ special interests. Students will develop a research proposal and begin to gather and analyze data. ","edges_from":[],"edges_to":[],"id":1218,"label":"EDS 190","title":"Research Practicum (1–6)"},{"dept":"VIS","description":"This class is for the advanced visual arts major devoted to the study and practice of the multiple ways in which writing and other forms of visible language have been incorporated into contemporary and traditional artworks, including artists’ books, collaging and poster art, literature and poetry, typographical experiments, and calligraphies. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":1219,"label":"VIS 110H","title":"Art and Text (4)"},{"dept":"VIS","description":"The dematerialization of the performer into media-based image—video, film, slides, still photographs, and using the camera as a spy, a coconspirator, a friend, or a foe—employing time lags, spatial derangement, image destruction, along with narrative, text, and history, to invent time-based pieces that break new ground while being firmly rooted in an understanding of the rich body of work done in this area over the last three decades. ","edges_from":[],"edges_to":[],"id":1220,"label":"VIS 110I","title":"Performing for the Camera (4)"},{"dept":"VIS","description":"This is a studio art course for the advanced visual arts major with a focus on the intersection of digital rendering and drawing, painting, sculpture, and performance. Structured as core lectures and labs, studio production, reading, and critical theory focused on contemporary art engaged with technology, as well as artists’ responses to its demands. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":1221,"label":"VIS 110K","title":"Digital Studio (4)"},{"dept":"VIS","description":"Students will implement time- and process-based projects under direction of faculty. Projects such as software and hardware interfacing, computer mediated performance, software art, installation, interactive environments, data visualization and sonification will be produced as advanced study and portfolio project. Program or materials fees may apply. Two production-course limitation. ","edges_from":[1224,1223],"edges_to":[3422,1910],"id":1222,"label":"VIS 145B","title":"Time- and Process-Based Digital Media II (4)"},{"dept":"ICAM","description":"","edges_from":[],"edges_to":[1222],"id":1223,"label":"ICAM 102","title":""},{"dept":"VIS","description":"","edges_from":[947],"edges_to":[1222,4975],"id":1224,"label":"VIS 145A","title":""},{"dept":"VIS","description":"This is a course for the advanced studio major who is selected based on a proven record of engagement, productivity, and self-discipline as well as a clear trajectory of their work. The intent is to help refine and expand the student’s studio practice toward a unified portfolio and artist’s statement as well as develop experience in participation and organization of group and solo exhibitions. ","edges_from":[],"edges_to":[1226],"id":1225,"label":"VIS 110M","title":"Studio Honors I (4)"},{"dept":"VIS","description":"The second advanced studio course in the Honors Program in Studio, the successful completion of which will lead toward an honors degree in the studio major. The course builds on the critical and technical issues raised in Studio Honors I. ","edges_from":[1225],"edges_to":[],"id":1226,"label":"VIS 110N","title":"Studio Honors II (4)"},{"dept":"ECE","description":"to Biomedical Imaging and Sensing (4)","edges_from":[],"edges_to":[],"id":1227,"label":"ECE 187","title":"Introduction"},{"dept":"ECE","description":"(Conjoined with ECE 241BL) Labs: CO2 laser,","edges_from":[],"edges_to":[],"id":1228,"label":"ECE 185","title":"Lasers and Modulators (4)"},{"dept":"ECE","description":"Processing and Holography (4)","edges_from":[],"edges_to":[],"id":1229,"label":"ECE 184","title":"Optical Information"},{"dept":"ECE","description":"Quantum electronics, interaction of light and matter in atomic systems, semiconductors. Laser amplifiers and laser systems. Photodetection. Electrooptics and acoustooptics, photonic switching. Fiber optic communication systems. Labs: semiconductor lasers, semiconductor photodetectors. (Course materials and/or program fees may apply.) ","edges_from":[296,1231],"edges_to":[],"id":1230,"label":"ECE 183","title":"Optical Electronics (4)"},{"dept":"ECE","description":"","edges_from":[40,33,41,257],"edges_to":[4920,1233,1515,1230],"id":1231,"label":"ECE 103","title":""},{"dept":"ECE","description":"Optics, Guided-Wave, and Fiber Optics (4)","edges_from":[],"edges_to":[],"id":1232,"label":"ECE 182","title":"Electromagnetic"},{"dept":"ECE","description":"Ray optics, wave optics, beam optics, Fourier optics, and electromagnetic optics. Ray transfer matrix, matrices of cascaded optics, numerical apertures of step and graded index fibers. Fresnel and Fraunhofer diffractions, interference of waves. Gaussian and Bessel beams, the ABCD law for transmissions through arbitrary optical systems. Spatial frequency, impulse response and transfer function of optical systems, Fourier transform and imaging properties of lenses, holography. Wave propagation in various (inhomogeneous, dispersive, anisotropic or nonlinear) media. (Course materials and/or program fees may apply.) ","edges_from":[296,1231],"edges_to":[],"id":1233,"label":"ECE 181","title":"Physical Optics and Fourier Optics (4)"},{"dept":"ECE","description":"Topics of special interest in electrical and computer engineering. Subject matter will not be repeated so it may be taken for credit more than once. ","edges_from":[],"edges_to":[],"id":1234,"label":"ECE 180","title":"Topics in Electrical and Computer Engineering (4)"},{"dept":"FMPH","description":"This course requires attendance and participation in the Division of Biostatistics seminar series and journal club. Students will critically read the assigned articles and participate in biweekly journal clubs. Students are also required to lead at least one journal club discussion. ","edges_from":[],"edges_to":[],"id":1235,"label":"FMPH 290","title":"Biostatistics Journal Club and Seminar (1)"},{"dept":"FMPH","description":"Topics of special interest in public health. Topics may vary from quarter to quarter. May be taken for credit up to twelve times for a maximum of forty-eight units.","edges_from":[],"edges_to":[],"id":1236,"label":"FMPH 291","title":"Special Topics in Public Health (1–4)"},{"dept":"ECE","description":"Basics of technical public speaking, including speech organization, body language (eye contact, hand gestures, etc.), volume and rate, and design of technical slides. Students will practice technical public speaking, including speeches with PowerPoint slides and speaker introductions, and presenting impromptu speeches. Students may not receive credit for both ECE 189 and ENG 100E. ","edges_from":[],"edges_to":[],"id":1237,"label":"ECE 189","title":"Technical Public Speaking (2)"},{"dept":"ECE","description":"Topics of special interest in electrical and computer engineering with laboratory. Subject matter will not be repeated so it may be taken for credit up to three times. ","edges_from":[],"edges_to":[],"id":1238,"label":"ECE 188","title":"Topics in Electrical and Computer Engineering with Laboratory (4)"},{"dept":"LTCS","description":"This course will examine the representation and politics of","edges_from":[],"edges_to":[],"id":1239,"label":"LTCS 165","title":"Special Topics: The Politics of Food (4)"},{"dept":"PSYC","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small setting to explore an intellectual topic in psychology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":1240,"label":"PSYC 192","title":"Senior Seminar in Psychology (1)"},{"dept":"HILA","description":"This course examines factors that shed light on Brazil’s label as a rising nation. In part, we will cover Brazil’s two dictatorships, labor struggles, racial issues, immigration from Asia and Europe, environmental concerns, and emergence as economic and political powerhouse.","edges_from":[],"edges_to":[],"id":1241,"label":"HILA 121B","title":"History of Brazil, 1889 to Present (4)"},{"dept":"HILA","description":"This course covers many of the most transformative and fascinating social, political, and racial phenomena in Brazilian society through 1889, including indigenous life, Portuguese colonization, slavery and abolition, royal exile, independence and Empire, the birth of the Republic, war, social unrest, and ideals of modernization. +","edges_from":[],"edges_to":[],"id":1242,"label":"HILA 121A","title":"History of Brazil through 1889 (4)"},{"dept":"ETHN","description":"Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":1243,"label":"ETHN 98","title":"Directed Group Studies (1–4)"},{"dept":"COMM","description":"This course introduces students to computers as media of communication. Each quarter students participate in a variety of networking activities designed to show the interactive potential of the medium. Fieldwork designed to teach basic methods is combined with readings designed to build a deeper theoretical understanding of computer-based communication. Students will not receive credit for COMT 111A and COMM 101M. ","edges_from":[540],"edges_to":[],"id":1244,"label":"COMM 101M","title":"MPL: Communication and Computers (4)"},{"dept":"ETHN","description":"in Racial and Ethnic Communities (1–4)","edges_from":[],"edges_to":[],"id":1245,"label":"ETHN 97","title":"Field Studies"},{"dept":"SE","description":"Application of finite element method to static and dynamic analysis of geotechnical structures. One-, 2-, and 3-D static and seismic response of earth structures/slopes/Foundation systems. Pore-pressure generation/effects during cycle loading. System identification using strong motion downhole-array data. Use of computer resources required. ","edges_from":[],"edges_to":[],"id":1246,"label":"SE 244","title":"Numerical Methods in Geomechanics (4)"},{"dept":"GLBH","description":"Independent study opportunity for students to work with global health affiliated faculty on relevant research or to elaborate the intellectual analysis and critique of their global health field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":1247,"label":"GLBH 199","title":"Independent Study in Global Health Field Experience (4)"},{"dept":"GLBH","description":"Directed group study for students to delve deeper into global health topics or elaborate the intellectual analysis and critique of their field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":1248,"label":"GLBH 198","title":"Directed Group Study (4)"},{"dept":"ETHN","description":"(Cross-listed with LTEN 178.) A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.","edges_from":[],"edges_to":[],"id":1249,"label":"ETHN 168","title":"Comparative Ethnic Literature (4)"},{"dept":"ETHN","description":"An examination of interactions among the peoples of western Europe, Africa, and the Americas that transformed the Atlantic basin into an interconnected “Atlantic World.” Topics will include maritime technology and the European Age of Discovery, colonization in the Americas, the beginnings of the transatlantic slave trade, and early development of plantation slavery in the New World. Students may not receive credit for both ETHN 170A and 169.","edges_from":[],"edges_to":[],"id":1250,"label":"ETHN 169","title":"Origins of the Atlantic World, c. 1450–1650 (4)"},{"dept":"GLBH","description":"Course gives students experience in teaching global health courses. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Students will need to apply for the undergraduate instructional apprentice position through ASES, fulfill the Academic Senate regulations, and receive the approval of the department, instructor, department chair, and Academic Senate. May be taken for credit up to two times. Course cannot be used to fulfill requirements for the global health major or minor.","edges_from":[],"edges_to":[],"id":1251,"label":"GLBH 195","title":"Instructional Apprenticeship in Global Health (4)"},{"dept":"ECE","description":"Computational techniques for numerical analysis","edges_from":[],"edges_to":[],"id":1252,"label":"ECE 222C","title":"Applied Electromagnetic Theory—Computational Methods for Electromagnetics (4)"},{"dept":"ETHN","description":"(Cross-listed with CGS 165.) This course will investigate the changing constructions of sex, gender, and sexuality in African American communities defined by historical period, region, and class. Topics will include the sexual division of labor, myths of black sexuality, the rise of black feminism, black masculinity, and queer politics.","edges_from":[],"edges_to":[],"id":1253,"label":"ETHN 165","title":"Gender and Sexuality in African American Communities (4)"},{"dept":"ETHN","description":"Work with California native tribal groups, leaders, and members to identify common, pressing questions surrounding Indian law. In partnership with legal experts, develop and disseminate new media programs and useful documents accessible to native communities throughout California.","edges_from":[],"edges_to":[],"id":1254,"label":"ETHN 162","title":"Practicum in California Tribal Law and Journalism (4)"},{"dept":"ECE","description":"Review of 222A–B. Fourier transform, waveguide","edges_from":[],"edges_to":[],"id":1255,"label":"ECE 222D","title":"Advanced Antenna Design (4)"},{"dept":"ETHN","description":"Focusing on transregional relationships to land and decolonization in the Pacific, Caribbean, and the Americas, this course is a comparative study of cultural and political phenomena that shape indigenous communities globally. We will examine enduring legacies of colonialism, nationalism, and Western normativities, and explore indigenous activism within the decolonial movement.","edges_from":[],"edges_to":[],"id":1256,"label":"ETHN 160","title":"Global Indigenous Studies (4)"},{"dept":"ECON","description":"Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ","edges_from":[],"edges_to":[],"id":1257,"label":"ECON 249A","title":"International Development Workshop I (1–4)"},{"dept":"ECON","description":"Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ","edges_from":[],"edges_to":[],"id":1258,"label":"ECON 249C","title":"International Development Workshop III (1–4)"},{"dept":"POLI","description":"Comparative analysis of contemporary political systems and developmental profiles of selected Latin American countries, with special reference to the ways in which revolutionary and counter-revolutionary movements have affected the political, economic, and social structures observable in these countries today. Analyzes the performance of “revolutionary” governments in dealing with problems of domestic political management, reducing external economic dependency, redistributing wealth, creating employment, and extending social services. Introduction to general theoretical works on Latin American politics and development. ","edges_from":[1260],"edges_to":[],"id":1259,"label":"POLI 134AA","title":"Comparative Politics of Latin America (4)"},{"dept":"POLI","description":"","edges_from":[],"edges_to":[1259,4271],"id":1260,"label":"POLI 11","title":""},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 100B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100B or after successful completion of Econ 100B with A– or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":1261,"label":"ECON 100BH","title":"Honors Microeconomics B (1)"},{"dept":"ANBI","description":"The course examines the evolution of primate behaviors (e.g., group formation, dispersal, parenting, coalition formation) from a comparative behavioral, ecological, and evolutionary perspective. Observational methodology and analytical methods will also be discussed. Attendance in lab sections is required. ","edges_from":[],"edges_to":[],"id":1262,"label":"ANBI 148","title":"Not by Genes Alone: The Ecology and Evolution of Primate Behavior (4)"},{"dept":"ANBI","description":"Learn the bones of your body; how bone pairs differ even within the body, between men, women, ethnic groups; and how nutrition and disease affect them. Course examines each bone and its relation with other bones and muscles that allow your movements. ","edges_from":[],"edges_to":[],"id":1263,"label":"ANBI 143","title":"The Human Skeleton (4)"},{"dept":"ANBI","description":"The genotype of our ancestors had no agriculture or animal domestication, or rudimentary technology. Our modern diet contributes to heart disease, cancers, and diabetes. This course will outline the natural diet of primates and compare it with early human diets. ","edges_from":[],"edges_to":[],"id":1264,"label":"ANBI 141","title":"The Evolution of Human Diet (4)"},{"dept":"ANBI","description":"Introduction to the organization of the brain of humans and apes. Overview of the theoretical perspectives on the evolution of the primate cortex and limbic system. Exposure to contemporary techniques applied to the comparative study of the hominoid brain. ","edges_from":[],"edges_to":[1984],"id":1265,"label":"ANBI 140","title":"The Evolution of the Human Brain (4)"},{"dept":"ANBI","description":"The stable isotopes of carbon, nitrogen, oxygen, and hydrogen in animal tissues, plant tissues, and soils indicate aspects of diet and ecology. The course will introduce students to this approach for reconstructing paleo-diet, paleo-ecology, and paleo-climate. ","edges_from":[],"edges_to":[],"id":1266,"label":"ANBI 146","title":"Stable Isotopes in Ecology (4)"},{"dept":"ANBI","description":"How are skeletal remains used to reconstruct human livelihoods throughout prehistory? The effects of growth, use, and pathology on morphology and the ways that skeletal remains are understood and interpreted by contemporary schools of thought. Recommend related course in human anatomy. ","edges_from":[],"edges_to":[],"id":1267,"label":"ANBI 145","title":"Bioarchaeology (4)"},{"dept":"ANBI","description":"This course will introduce students to the internal structure of the human body through dissection tutorials on CD-ROM. ","edges_from":[],"edges_to":[],"id":1268,"label":"ANBI 144","title":"Human Anatomy (4)"},{"dept":"BGGN","description":"Intensive lecture-, seminar-, and laboratory-based course","edges_from":[],"edges_to":[],"id":1269,"label":"BGGN 208","title":"Biological Sciences Graduate Boot Camp (4)"},{"dept":"BGGN","description":"in the Division of Biological Sciences (2)","edges_from":[],"edges_to":[],"id":1270,"label":"BGGN 200","title":"Graduate School Fundamentals: Introduction to Graduate Studies"},{"dept":"BGGN","description":"Introduction to the computational methods most frequently used in neuroscience research. Aimed at first-year graduate students in neuroscience and related disciplines. Minimal quantitative background will be assumed. Topics include Poisson processes, Markov Chains, auto- and cross-correlation analysis, Fourier/Spectral analysis, principal components/linear algebra, signal detection theory, information theory, Bayes Theorem, hypothesis testing. Nongraduate students may enroll with consent of instructor.","edges_from":[],"edges_to":[],"id":1271,"label":"BGGN 201","title":"Methods in Computational Neuroscience (3)"},{"dept":"BGGN","description":"Discussions cover professional preparation for future scientists. Topics include: how to read/write/publish papers, to write grant and fellowship proposals, to give oral presentations, and how to apply for research positions. Behind-the-scenes look at reviewing papers, grant and fellowship proposals. Discussions of career options in biological sciences will be included. Scientific content is in the area of eukaryotic gene expression, but knowledge is applicable to all areas of biology. Undergraduate students with senior standing may enroll with consent of instructor.","edges_from":[],"edges_to":[],"id":1272,"label":"BGGN 202","title":"Professional Development for Biologists (2)"},{"dept":"BGGN","description":"The course teaches different topics on theory and key concepts in ecology, behavior, and evolution. Students will read materials in depth, attend weekly discussions, and explore relevant topics, theories, and models with advanced analytical tools. S/U grades only. May be taken for credit three times when topics vary.","edges_from":[],"edges_to":[],"id":1273,"label":"BGGN 203","title":"Topics in Ecology, Behavior, and Evolution (3)"},{"dept":"BGGN","description":"This course teaches a different topic each","edges_from":[],"edges_to":[],"id":1274,"label":"BGGN 204","title":"Topics in Community and Population Ecology (3)"},{"dept":"BGGN","description":"Learn effective ways of communicating science to nonscientists. Develop an understanding of how people’s views of science and background knowledge can influence their learning and develop methods to tailor communication for different audiences. S/U grades only. ","edges_from":[],"edges_to":[],"id":1275,"label":"BGGN 205","title":"Communicating Science to the Public (2)"},{"dept":"BGGN","description":"(Cross-listed with SOMI 226.) Lectures, reading, and discussions about the responsible conduct and reporting of research, working with others in science, and social responsibilities; the course is designed as an option for meeting current federal regulations. S/U grades only. ","edges_from":[],"edges_to":[],"id":1276,"label":"BGGN 207","title":"Scientific Ethics (1)"},{"dept":"BIPN","description":"Course addresses the human body’s response to exercise, addressing energy metabolism and the effects of both acute and chronic exercise on function in several important organ systems. Designing training regimes and the role of exercise in health will be considered. ","edges_from":[],"edges_to":[],"id":1277,"label":"BIPN 108","title":"Biology and Medicine of Exercise (4)"},{"dept":"BIOM","description":"This course includes attendance at seminars in pharmacology and is designed to provoke critical discussion of the presented findings and the scientific approaches in a small group setting. ","edges_from":[],"edges_to":[],"id":1278,"label":"BIOM 275","title":"Seminars in Pharmacology (2)"},{"dept":"MUS","description":"Advanced individual projects for senior music majors pursuing honors in composition. Projects will be critically reviewed in seminar with fellow students and faculty composers. ","edges_from":[],"edges_to":[],"id":1279,"label":"MUS 103D-E-F","title":"Honors Seminar in Composition (4-4-4)"},{"dept":"BIOM","description":"This course presents developments in cellular and molecular pathology research ongoing in the molecular pathology division of BMS. Each session comprises three fifteen-minute presentations from different faculty members. Discussion questions are fielded during or after each presentation. ","edges_from":[],"edges_to":[],"id":1280,"label":"BIOM 277","title":"Seminars in Molecular Pathology (2)"},{"dept":"BIOM","description":"This course includes attendance at seminars in genetics and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ","edges_from":[],"edges_to":[1997,1526],"id":1281,"label":"BIOM 272","title":"Seminars in Genetics (2)"},{"dept":"BIOM","description":"This course includes attendance at seminars in microbiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ","edges_from":[],"edges_to":[],"id":1282,"label":"BIOM 273","title":"Seminars in Microbiology (2)"},{"dept":"BIPN","description":"Course completes a survey of organ systems begun in BIPN 100 by considering the respiratory and gastrointestinal systems. Consideration is given to interactions of these systems in weight and temperature regulation, exercise physiology, stress, and pregnancy and reproduction. Note: Students may not receive credit for both BIPN 102 and BENG 140B. ","edges_from":[1192],"edges_to":[2024],"id":1283,"label":"BIPN 102","title":"Human Physiology II (4)"},{"dept":"BIPN","description":"Experiments are performed on membrane physiology, nerve and muscle function, hormone actions, cardiovascular physiology, and renal function. Subjects include experimental animals. Students will perform a research project and present their results in a symposium at the end of the quarter. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Material lab fees will apply. ","edges_from":[1192],"edges_to":[],"id":1284,"label":"BIPN 105","title":"Animal Physiology Lab (6)"},{"dept":"BIPN","description":"This course examines the physiological adaptation","edges_from":[],"edges_to":[],"id":1285,"label":"BIPN 106","title":"Comparative Physiology (4)"},{"dept":"SOCI","description":"We examine cultural production in Japan and abroad, national and transnational political-economic and social influences, the idea of Japan in the West, and the idea of the West in Japan. ","edges_from":[],"edges_to":[],"id":1286,"label":"SOCI 123 Japanese Culture Inside/Out: A Transnational Perspective (4)","title":""},{"dept":"ECON","description":"Survey of the Indian economy. Historical overview and perspective; political economy; democracy and development; economic growth; land, labor, and credit markets; poverty and inequality; health, education, and human development; technology and development; institutions and state capacity; contemporary policy issues and debates. ","edges_from":[505,302],"edges_to":[],"id":1287,"label":"ECON 164","title":"The Indian Economy (4)"},{"dept":"ECON","description":"Socioeconomic development in the Arab world, Iran, and Turkey. Historical perspective; international trade and fuel resources; education, health, and gender gaps; unemployment and migration; population and environment; Islam and democracy. ","edges_from":[505,302],"edges_to":[2342],"id":1288,"label":"ECON 165","title":"Middle East Economics (4)"},{"dept":"ECON","description":"Long-run economic development and current economic issues of Southeast Asia. Topics include: economic growth, industrialization, financial development, demography, human capital and labor, inequality and poverty, corporate sector, institutions, and government. Designed to teach how to apply economics to the real world, with examples and case studies from Southeast Asian economies. Will start with general economic frameworks then use them to discuss issues from countries in Southeast Asia. ","edges_from":[1290],"edges_to":[],"id":1289,"label":"ECON 166","title":"Economics of Southeast Asia (4)"},{"dept":"ECON","description":"","edges_from":[5306],"edges_to":[4168,1289,1771,5190],"id":1290,"label":"ECON 110B","title":""},{"dept":"PHYS","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Physics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.","edges_from":[],"edges_to":[],"id":1291,"label":"PHYS 192","title":"Senior Seminar in Physics (1)"},{"dept":"NANO","description":"Overview of NanoEngineering. Presentations and discussions of basic knowledge and career opportunities in nanotechnology for professional development. Introduction to campus library resources. P/NP grades only. ","edges_from":[],"edges_to":[],"id":1292,"label":"NANO 1","title":"NanoEngineering Seminar (1)"},{"dept":"COMM","description":"How visual images contribute to our understanding of the world and ourselves. Theoretical approaches from media studies, art history, gender studies, and social theory will be used to analyze cultures of science, art, mass media, and everyday life. ","edges_from":[540,1294],"edges_to":[],"id":1293,"label":"COMM 107","title":"Visual Culture (4)"},{"dept":"COMM","description":"","edges_from":[],"edges_to":[1293],"id":1294,"label":"COMM 108","title":""},{"dept":"PHYS","description":"Undergraduate seminars organized around the research interests of various faculty members. P/NP grades only. ","edges_from":[29,38],"edges_to":[],"id":1295,"label":"PHYS 191","title":"Undergraduate Seminar on Physics (1)"},{"dept":"ECON","description":"This course explores economic processes that shape the Israeli economy. Topics include: biblical economics, economics of religion, economic growth, income inequality and consumer protests, employment, globalization, inflation, the high-tech sector, terrorism, and education. ","edges_from":[505,302],"edges_to":[],"id":1296,"label":"ECON 168","title":"Economics of Modern Israel (4)"},{"dept":"ECON","description":"This course covers long-run economic development and current economic issues of South Korea. Topics include: examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea’s industrial structure, including the role of large enterprises (chaebol); role of government; and links between Korea and other countries. ","edges_from":[505,547],"edges_to":[],"id":1297,"label":"ECON 169","title":"Economics of Korea (4)"},{"dept":"PHYS","description":"Directed group study on a topic or in a field not included in the regular departmental curriculum. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1298,"label":"PHYS 198","title":"Directed Group Study (2 or 4)"},{"dept":"PHYS","description":"Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1299,"label":"PHYS 199","title":"Research for Undergraduates (2 or 4)"},{"dept":"CHIN","description":"Introductory course of basic Chinese","edges_from":[],"edges_to":[],"id":1300,"label":"CHIN 10AD","title":"First Year Chinese—Dialect speakers I (5)"},{"dept":"CSE","description":"Computer science and engineering topics whose study involves reading and discussion by a small group of students under the supervision of a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1301,"label":"CSE 198","title":"Directed Group Study (2 or 4)"},{"dept":"CSE","description":"Comprehensive introduction to computer vision","edges_from":[],"edges_to":[],"id":1302,"label":"CSE 252A","title":"Computer Vision I (4)"},{"dept":"CSE","description":"Comprehensive introduction to computer vision","edges_from":[],"edges_to":[],"id":1303,"label":"CSE 252B","title":"Computer Vision II (4)"},{"dept":"CSE","description":"Selected topics in computer vision and statistical pattern recognition, with an emphasis on recent developments. Possible topics include: grouping and segmentation, object recognition and tracking, multiple view geometry, kernel-based methods, dimensionality reduction, and mixture models. ","edges_from":[1305,1306],"edges_to":[],"id":1304,"label":"CSE 252C","title":"Selected Topics in Vision and Learning (1–4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[1304],"id":1305,"label":"CSE 250B","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[1304],"id":1306,"label":"CSE 252","title":""},{"dept":"ANAR","description":"This course explores in detail the rise of the world’s earliest cities and states in Mesopotamia and the ancient Near East during the fourth millennium B.C. ","edges_from":[],"edges_to":[],"id":1307,"label":"ANAR 138","title":"Mesopotamia: The Emergence of Civilization (4)"},{"dept":"SE","description":"Advanced concepts in the mechanics of deformable bodies. Unsymmetrical bending of symmetrical and unsymmetrical sections. Bending of curved beams. Shear center and torsional analysis of open and closed sections. Stability analysis of columns, lateral buckling. Application of the theory of elasticity in rectangular coordinates. ","edges_from":[1129,652],"edges_to":[3970,3579,1861],"id":1308,"label":"SE 110B","title":"Solid Mechanics II (4)"},{"dept":"ECON","description":"Topics include weak instruments, unit roots, break tests, switching models, set-based inference, maximum likelihood estimation and meaning of misspecified models, consistency, asymptotic normality, consistent covariance matrix estimation, and tests of model misspecification. ","edges_from":[323,1020,1069,1310,1311],"edges_to":[],"id":1309,"label":"ECON 228","title":"Nonstandard Inference (4)"},{"dept":"ECON","description":"","edges_from":[323],"edges_to":[1312,1313,1314,1315,1309,1311],"id":1310,"label":"ECON 220D","title":""},{"dept":"ECON","description":"","edges_from":[1310],"edges_to":[1312,1313,1314,1315,5186,1309],"id":1311,"label":"ECON 220E","title":""},{"dept":"ECON","description":"Topics include neural networks, kernels, series, splines, estimation of densities and spectra, smoothing parameter selection, semiparametric models, efficiency and adaptation, forecasting with nonlinear models, over-fit, computation, and interpretation. ","edges_from":[323,1020,1069,1310,1311],"edges_to":[],"id":1312,"label":"ECON 227","title":"Nonparametric and Semiparametric Models (4)"},{"dept":"ECON","description":"Topics include Bayesian inference and decision theory, loss functions, estimation of dynamic stochastic general equilibrium models, nonlinear time series, state-space models, spatial-temporal models, and high-frequency data. ","edges_from":[323,1020,1069,1310,1311],"edges_to":[],"id":1313,"label":"ECON 226","title":"Bayesian and Numerical Methods (4)"},{"dept":"ECON","description":"Topics include testing for rationality of forecasts, Mincer-Zarnowitz regressions, asymmetric loss functions, tests for equal (superior) predictive ability, multivariate forecasting. ","edges_from":[323,1020,1069,1310,1311],"edges_to":[],"id":1314,"label":"ECON 225","title":"Forecasting (4)"},{"dept":"ECON","description":"Advanced topics in econometrics. Topics may vary from year to year, covering areas such as cross-section, time-series, panel, limited dependent variables, conditional quantile estimation, bootstrapping, and large- and small-sample distribution theory. ","edges_from":[323,1020,1069,1310,1311],"edges_to":[],"id":1315,"label":"ECON 221","title":"Advanced Econometrics (4)"},{"dept":"SE","description":"Materials testing and/or processing for metals and alloys, polymers and composites, cements, and wood. Materials selection and structural design to meet functional and cost requirements. Structural construction and testing. Use of computer resources. ","edges_from":[29,1318,1317],"edges_to":[399],"id":1316,"label":"SE 2L","title":"Structural Materials Lab (1)"},{"dept":"SE","description":"","edges_from":[29,1318],"edges_to":[1316,2230,399],"id":1317,"label":"SE 2","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[1316,1317,1128,2025,5037,79,158,1847,220,958],"id":1318,"label":"CHEM 6A","title":""},{"dept":"TMC","description":"Weekly seminar conducted by UC San Diego faculty and distinguished guest lecturers on topics related to the core curriculum: diversity, justice, and imagination. P/NP grades only.","edges_from":[],"edges_to":[],"id":1319,"label":"TMC 20","title":"Thurgood Marshall College Honors Seminar (1)"},{"dept":"PHYS","description":"Discussions of recent research in physics directed to the entire physics community. (S/U grades only.)","edges_from":[],"edges_to":[],"id":1320,"label":"PHYS 260","title":"Physics Colloquium (0–1)"},{"dept":"PHYS","description":"Discussions of current research conducted by faculty members in the Department of Physics. (S/U grades only.)","edges_from":[],"edges_to":[],"id":1321,"label":"PHYS 261","title":"Seminar on Physics Research at UC San Diego (0–1)"},{"dept":"PHYS","description":"Discussions of the application of the scientific method in the natural sciences. (S/U grades only.) May be taken for credit twenty-five times.","edges_from":[],"edges_to":[],"id":1322,"label":"PHYS 264","title":"Scientific Method Seminar (1)"},{"dept":"PSYC","description":"This course provides an overview of problems of impulse control, which are important features of major psychiatric disorders and also of atypical patterns of behavior including pathological gambling, compulsive sex, eating, exercise, and shopping. Topics include development, major common features, treatment, and neurobiological basis of impulse control disorders. ","edges_from":[],"edges_to":[],"id":1323,"label":"PSYC 188","title":"Impulse Control Disorders (4)"},{"dept":"MATH","description":"Various topics in differential geometry. May be taken for credit nine times. ","edges_from":[],"edges_to":[],"id":1324,"label":"MATH 258","title":"Seminar in Differential Geometry (1)"},{"dept":"MATH","description":"Various topics in Lie groups and Lie algebras, including structure theory, representation theory, and applications. ","edges_from":[],"edges_to":[],"id":1325,"label":"MATH 256","title":"Seminar in Lie Groups and Lie Algebras (1)"},{"dept":"MGTA","description":"Students will learn to design and run experiments to guide policy and business decisions. They will learn to distinguish between a correlation and a causal effect and also to critically evaluate causal claims based on nonexperimental data. ","edges_from":[1328,1329,1327],"edges_to":[],"id":1326,"label":"MGTA 458","title":"Experiments in Firms (4)"},{"dept":"MGTA","description":"","edges_from":[1329],"edges_to":[5609,3883,4396,1326,4399,4402,5910,1369,1980],"id":1327,"label":"MGTA 452","title":""},{"dept":"MGTA","description":"","edges_from":[1329],"edges_to":[5609,3883,4396,1326,4399,4402,5910,1369,1980],"id":1328,"label":"MGTA 453","title":""},{"dept":"MGTA","description":"","edges_from":[],"edges_to":[5609,3883,4396,1326,1327,1328,4402,5910,1369,4399,1980],"id":1329,"label":"MGTA 451","title":""},{"dept":"SOCI","description":"and Indigenous Peoples in Latin America (4)","edges_from":[],"edges_to":[],"id":1330,"label":"SOCI 182","title":"Ethnicity"},{"dept":"SOCI","description":"This course examines the nature and dynamics of modern western society in the context of the historical process by which this type of society has emerged over the last several centuries. The aim of the course is to help students think about what kind of society they live in, what makes it the way it is, and how it shapes their lives. ","edges_from":[1331,1332],"edges_to":[1331],"id":1331,"label":"SOCI 181","title":"Modern Western Society (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[1331],"id":1332,"label":"SOCD 181","title":""},{"dept":"SOCI","description":"An examination of the nature of protests and violence, particularly as they occur in the context of larger social movements. The course will further examine those generic facets of social movements having to do with their genesis, characteristic forms of development, relationship to established political configurations, and gradual fading away. ","edges_from":[1333,1334],"edges_to":[1333],"id":1333,"label":"SOCI 180","title":"Social Movements and Social Protest (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[1333],"id":1334,"label":"SOCC 180","title":""},{"dept":"SOCI","description":"Exploration of contemporary African urbanization and social change via film, including 1) transitional African communities, 2) social change in Africa, 3) Western vs. African filmmakers’ cultural codes. Ideological and ethnographic representations, aesthetics, social relations, and market demand for African films are analyzed. ","edges_from":[1336,1335],"edges_to":[1335],"id":1335,"label":"SOCI 187","title":"African Societies through Film (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[1335],"id":1336,"label":"SOCD 187","title":""},{"dept":"SOCI","description":"Social development is more than sheer economic growth. It entails improvements in the overall quality of human life, particularly in terms of access to health, education, employment, and income for the poorer sectors of the population. Course examines the impact of globalization on the prospects for attaining these goals in developing countries. ","edges_from":[1337,1338],"edges_to":[1337],"id":1337,"label":"SOCI 185","title":"Globalization and Social Development (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[1337],"id":1338,"label":"SOCD 185","title":""},{"dept":"SOCI","description":"This class will examine issues of masculinity and femininity through analysis of films. Emphasis is on contemporary American society and will include varying issues such as race, class, and sexualities; worlds of work; romance, marriage, and family. ","edges_from":[1339,1340],"edges_to":[1339],"id":1339,"label":"SOCI 184","title":"Gender and Film (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[1339],"id":1340,"label":"SOCC 184","title":""},{"dept":"CHEM","description":"Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. May be coscheduled with CHEM 185. ","edges_from":[],"edges_to":[],"id":1341,"label":"CHEM 285","title":"Introduction to Computational Chemistry (4)"},{"dept":"SOCI","description":"Topics in Comparative-Historical Sociology (4)","edges_from":[],"edges_to":[],"id":1342,"label":"SOCI 189","title":"Special"},{"dept":"CHEM","description":"(4)","edges_from":[],"edges_to":[],"id":1343,"label":"CHEM 280","title":"Applied Bioinformatics"},{"dept":"CHEM","description":"A laboratory course combining hands-on mass spectrometry and","edges_from":[],"edges_to":[],"id":1344,"label":"CHEM 283","title":"Supramolecular Structure Determination Laboratory (4)"},{"dept":"GPPA","description":"This course explores three topics: 1) democracy, which is primarily about procedural justice; 2) social policy, which is primarily about distributive justice; and, 3) corruption, which is a breach of formal justice. We will consider potential conflicts and reconciliation between justice and development, approaching various issues not just theoretically and conceptually, but also empirically and quantitatively. The course uses cross-national quantitative studies and case studies. Renumbered from IRGN 450. Students may not receive credit for GPPA 450 and IRGN 450.","edges_from":[],"edges_to":[],"id":1345,"label":"GPPA 450","title":"Justice, Policy, and Development (4)"},{"dept":"POLI","description":"and Latin America: Political and Economic Relations (4)","edges_from":[],"edges_to":[],"id":1346,"label":"POLI 146A","title":"The U.S."},{"dept":"PSYC","description":"This course provides an introduction to the applications of social psychological principles and findings to sports. Topics include motivation, level of aspiration, competition, cooperation, social comparison, and optimal arousal. Additional topics may include the perspective of spectators, discussing motivation and perceptions of success, streaks, and such. ","edges_from":[],"edges_to":[],"id":1347,"label":"PSYC 139","title":"The Social Psychology of Sport (4)"},{"dept":"PSYC","description":"This course provides an overview of auditory perception. Topics may include the physiology of the auditory system, perception of pitch, loudness, and timbre, sound localization, perception of melodic and temporal patterns and musical illusions and paradoxes. Recommended preparation: ability to read musical notation. ","edges_from":[],"edges_to":[],"id":1348,"label":"PSYC 138","title":"Sound and Music Perception (4)"},{"dept":"PSYC","description":"This course provides an overview of social cognition, which blends cognitive and social psychology to understand how people make sense of the social world. Topics may include social perception, inference, memory, motivation, affect, understanding the self, stereotypes, and cultural cognition. ","edges_from":[],"edges_to":[],"id":1349,"label":"PSYC 137","title":"Social Cognition (4)"},{"dept":"PSYC","description":"This course provides an overview of how children’s thinking develops. Topics may include perception, concept formation, memory, problem solving, and social cognition. ","edges_from":[872,1351],"edges_to":[],"id":1350,"label":"PSYC 136","title":"Cognitive Development (4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[1350],"id":1351,"label":"PSYC 105","title":""},{"dept":"PSYC","description":"This course provides an overview of the biology and psychology of eating disorders such as anorexia nervosa, bulimia nervosa, and binge eating disorder. Abnormal, as well as normal, eating will be discussed from various perspectives including endocrinological, neurobiological, psychological, sociological, and evolutionary. ","edges_from":[],"edges_to":[],"id":1352,"label":"PSYC 134","title":"Eating Disorders (4)"},{"dept":"PSYC","description":"This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. Cross-listed with BIMM 116. ","edges_from":[369,954,370],"edges_to":[],"id":1353,"label":"PSYC 133","title":"Circadian Rhythms—Biological Clocks (4)"},{"dept":"PSYC","description":"This course examines how hormones influence a variety of behaviors and how behavior reciprocally influences hormones. Specific topics covered include aggression, sex and sexuality, feeding, learning, memory, mood and neural mechanisms both in humans and nonhuman animals. Recommended preparation: completion of PSYC 106. ","edges_from":[],"edges_to":[],"id":1354,"label":"PSYC 132","title":"Hormones and Behavior (4)"},{"dept":"PSYC","description":"This course provides a review of research on delay of gratification. Topics include what makes it so tough, in what situations it is possible, who can do it, and the implications of this ability. ","edges_from":[],"edges_to":[],"id":1355,"label":"PSYC 130","title":"Delay of Gratification (4)"},{"dept":"GLBH","description":"(Cross-listed with ANSC 150.) This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcomes in non-European and North American countries are explored. Students may not receive credit for GLBH 150 and ANSC 150.","edges_from":[],"edges_to":[],"id":1356,"label":"GLBH 150","title":"Culture and Mental Health (4)"},{"dept":"HIGR","description":"Social Evolution, and Intellectuals in the Andes: Mariátegui, Haya de la","edges_from":[],"edges_to":[],"id":1357,"label":"HIGR 252","title":"History,"},{"dept":"MAE","description":"Basics of stratified flows.","edges_from":[],"edges_to":[],"id":1358,"label":"MAE 224A","title":"Environmental Fluid Dynamics I (4)"},{"dept":"MAE","description":"Plumes and thermals. Application","edges_from":[],"edges_to":[],"id":1359,"label":"MAE 224B","title":"Environmental Fluid Dynamics II (4)"},{"dept":"SE","description":"Techniques in Finite Elements (4)","edges_from":[],"edges_to":[],"id":1360,"label":"SE 233","title":"Computational"},{"dept":"LTWR","description":"A workshop and survey of experimental approaches to the writing and production of performance works in a range of literary genres. Emphasis will be placed on the integration of written texts with nonverbal elements from the visual arts, theatre, and music. ","edges_from":[1361,261,273],"edges_to":[1361],"id":1361,"label":"LTWR 119","title":"Writing for Performance (4)"},{"dept":"RELI","description":"A faculty member will direct a student in advanced readings on a topic not generally included in the Program for the Study of Religion’s curriculum. Students must make arrangements with the program and individual faculty. May be repeated for credit up to three times for credit. ","edges_from":[1363,1364],"edges_to":[],"id":1362,"label":"RELI 197","title":"Directed Advanced Readings (4)"},{"dept":"RELI","description":"","edges_from":[],"edges_to":[1362],"id":1363,"label":"RELI 110A","title":""},{"dept":"RELI","description":"","edges_from":[],"edges_to":[1362],"id":1364,"label":"RELI 110B","title":""},{"dept":"LTWR","description":"A workshop designed to encourage writing of original screenplays and adaptations. There will be discussion of study work, together with analysis of discussion of representative examples of screen writing. May be taken up to three times for credit. ","edges_from":[],"edges_to":[],"id":1365,"label":"LTWR 110","title":"Screen Writing (4)"},{"dept":"LTWR","description":"This course is an introduction to modes of writing from other cultural systems vastly different from the cultural-aesthetic assumptions of Anglo American writing. While disclosing the limitations of the English language, this course attempts to provide new language strategies for students. May be taken for credit three times. ","edges_from":[272,273,261],"edges_to":[],"id":1366,"label":"LTWR 113","title":"Intercultural Writing Workshop (4)"},{"dept":"LTWR","description":"This workshop explores writing for which the traditional generic distinctions of prose/poetry, fiction/documentary, narrative/discourse do not apply. Students taking this course will be asked to challenge the boundaries of literature to discover new forms and modes of expression. May be taken for credit three times. ","edges_from":[272,273,261],"edges_to":[],"id":1367,"label":"LTWR 115","title":"Experimental Writing Workshop (4)"},{"dept":"LTWR","description":"From illuminated manuscripts to digital literature, from alphabets to concrete poems, from artists’ books to comics, this course explores the histories and techniques of combinatory image/word literary arts. The course may emphasize specific movements or genres. May be taken for credit three times. ","edges_from":[272,273,261],"edges_to":[],"id":1368,"label":"LTWR 114","title":"Graphic Texts Workshop (4)"},{"dept":"MGTA","description":"A decision support system consists of decision model, data, and user interface. This course covers the R and Shiny programming and design skills to develop a DSS that addresses a manager’s decision-making needs. ","edges_from":[1328,1329,1327],"edges_to":[],"id":1369,"label":"MGTA 457","title":"Business Intelligence Systems (2)"},{"dept":"POLI","description":"Asian Thought in Comparative Perspective (4)","edges_from":[],"edges_to":[],"id":1370,"label":"POLI 113A","title":"East"},{"dept":"POLI","description":"Examines philosophical traditions of ancient and modern China and Japan, to understand how these have been reflected in Chinese and Japanese development. Course will be in English; however, students with Chinese or Japanese language skills will have opportunity to use these. Graduate students will be required to complete a seminar-length research paper; undergraduate students will write a paper. ","edges_from":[],"edges_to":[],"id":1371,"label":"POLI 113B","title":"Chinese and Japanese Political Thought I (4)"},{"dept":"POLI","description":"A continuation of 113B, which follows political philosophical themes in China and Japan through the twentieth century. Important topics include Buddhism and Confucianism as they changed in each context in response to internal and external stimuli. ","edges_from":[],"edges_to":[],"id":1372,"label":"POLI 113C","title":"Chinese and Japanese Political Thought II (4)"},{"dept":"RELI","description":"The senior seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in religion at the upper-division level. Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.","edges_from":[],"edges_to":[],"id":1373,"label":"RELI 192","title":"Senior Seminar in Religion (1)"},{"dept":"HIGR","description":"Introduction to the bibliography, methodology, and ancillary disciplines for the study of ancient history together with readings and discussion on selected topics within the field. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":1374,"label":"HIGR 254","title":"Historical Scholarship in Ancient History (4)"},{"dept":"LTEN","description":"in US Minority Literatures and Cultures (4)","edges_from":[],"edges_to":[],"id":1375,"label":"LTEN 254","title":"Topics"},{"dept":"LTEN","description":"A survey of selected responses to imperialism and colonialism as presented in cultural texts produced by colonized or once-colonized peoples. Related issues to be examined: gender dynamics, class, representing others, mimicry, language, cultural theory, and the politics of literary genres. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1376,"label":"LTEN 256","title":"Postcolonial Discourses (4)"},{"dept":"LTEN","description":"in Modern American Literature and Culture (4)","edges_from":[],"edges_to":[],"id":1377,"label":"LTEN 252","title":"Studies"},{"dept":"PSYC","description":"Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":1378,"label":"PSYC 267C","title":"Advanced Topics in Behavior Medicine III (1)"},{"dept":"LTEN","description":"Consideration of one or more major figures, texts, performance, or trends in literature and culture of Africa and/or the African Diaspora. Various theories and methodologies may be applied to the representations being studied. May be taken three times for credit as topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1379,"label":"LTEN 258","title":"Studies in Anglophone African and/or African Diaspora Literature and Culture (4)"},{"dept":"LTEN","description":"New developments in the study of literature in diverse frameworks, including but not limited to: globalization, queer theory, diaspora studies, environmentalism, world literary systems, international literary awards, transnational feminism, literary markets, human rights discourse, and translation studies. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1380,"label":"LTEN 259","title":"Transnational Literary Studies (4)"},{"dept":"USP","description":"Introduction to teaching activities associated with course. Responsibilities include preparing reading materials assigned by the instructor, attending course lectures, meeting at least one hour per week with the instructor, assisting instructor in grading, and preparing a summary report to the instructor. ","edges_from":[],"edges_to":[],"id":1381,"label":"USP 195","title":"Teaching Apprentice—Undergraduate (2–4)"},{"dept":"USP","description":"(Same as Cognitive Science 194, Communication 194, Earth Science 194, History 193, Political Science 194, Sociology E/194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ","edges_from":[],"edges_to":[],"id":1382,"label":"USP 194","title":"Research Seminar in Washington, DC (4)"},{"dept":"USP","description":"Introduction to Geographic Information Systems and using GIS to make decisions: acquiring data and organizing data in useful formats, demographic mapping, geocoding. Selected exercises examine crime data, political campaigns, banking and environmental planning, patterns of bank lending and finance. ","edges_from":[],"edges_to":[],"id":1383,"label":"USP 191","title":"GIS for Urban and Community Planning (4)"},{"dept":"USP","description":"Each student enrolled will be required to write an honors essay, a substantial research paper on a current urban policy issue, under the supervision of a member of the faculty. Most often the essay will be based on their previous fieldwork courses and internship. This essay and other written exercises, as well as class participation, will be the basis of the final grade for the course. The seminar will rotate from year to year among the faculty in urban studies and planning. ","edges_from":[1385,1386,1387],"edges_to":[],"id":1384,"label":"USP 190","title":"Senior Honors Seminar (4)"},{"dept":"GPA","description":"","edges_from":[],"edges_to":[1384],"id":1385,"label":"GPA 3","title":""},{"dept":"USP","description":"","edges_from":[],"edges_to":[1384,1387],"id":1386,"label":"USP 186","title":""},{"dept":"USP","description":"","edges_from":[1386],"edges_to":[1384],"id":1387,"label":"USP 187","title":""},{"dept":"PHYS","description":"Second quarter of a three-quarter introductory physics course geared toward life-science majors. Electric fields, magnetic fields, DC and AC circuitry. ","edges_from":[1059,1060,1061,550,138,1389,1390,442,29,134,133],"edges_to":[5822,1390,1391],"id":1388,"label":"PHYS 1B","title":"Electricity and Magnetism (3)"},{"dept":"MATH","description":"","edges_from":[1061,133],"edges_to":[1028,1029,4327,5417,3943,1388,1390,1391,3636,4151,4765],"id":1389,"label":"MATH 11","title":""},{"dept":"PHYS","description":"","edges_from":[1059,1060,1061,550,138,1388,1389,442,29,134,133],"edges_to":[1388,1391],"id":1390,"label":"PHYS 1BL","title":""},{"dept":"PHYS","description":"Third quarter of a three-quarter introductory physics course geared toward life-science majors. The physics of oscillations and waves, vibrating strings and sound, the behavior of systems under combined thermal and electric forces, and the interaction of light with matter as illustrated through optics and quantum mechanics. Examples from biology, sports, medicine, and current events. ","edges_from":[134,550,138,1388,1389,1390,1392,446,31],"edges_to":[5822,5263],"id":1391,"label":"PHYS 1C","title":"Waves, Optics, and Modern Physics (3)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[1391],"id":1392,"label":"PHYS 1CL","title":""},{"dept":"USP","description":"Reading and research programs and field-study projects to be arranged between student and instructor, depending on the student’s needs and the instructor’s advice in terms of these needs. ","edges_from":[],"edges_to":[],"id":1393,"label":"USP 199","title":"Independent Study (2–4)"},{"dept":"USP","description":"Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":1394,"label":"USP 198","title":"Directed Group Study (2–4)"},{"dept":"ANTH","description":"This seminar will focus on a close and intensive reading of Maurice Merleau-Ponty’s masterwork, The Phenomenology of Perception. Emphasis will be placed on the relevance of this work for theory, method, and practice in the social sciences. ","edges_from":[],"edges_to":[],"id":1395,"label":"ANTH 221","title":"Phenomenology of Perception (4)"},{"dept":"ANTH","description":"This is an interdisciplinary seminar examining the place of the body and embodiment in contemporary culture and culture theory. ","edges_from":[],"edges_to":[],"id":1396,"label":"ANTH 220","title":"The Human Body in Discourse and Experience (4)"},{"dept":"ANTH","description":"The course teaches techniques of long-term, intensive interviewing in fieldwork settings with an emphasis on psychodynamic inference and its usefulness in different cultural settings. ","edges_from":[1398],"edges_to":[],"id":1397,"label":"ANTH 223","title":"Anthropological Interviewing (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[1397],"id":1398,"label":"ANGR 223","title":""},{"dept":"ANTH","description":"The study of subjectivity has emerged as an anthropological focal point for theorizing the interconnections among culture, experience, and power. This seminar explores the shaping of the lived experience and structures of knowledge that reciprocally produce forms of subjectivity. ","edges_from":[],"edges_to":[],"id":1399,"label":"ANTH 222","title":"Anthropological Studies of Subjectivity (4)"},{"dept":"PHYS","description":"This is a one-quarter general physics course for nonscience majors. Topics covered are motion, energy, heat, waves, electric current, radiation, light, atoms and molecules, nuclear fission and fusion. This course emphasizes concepts with minimal mathematical formulation. Recommended preparation: college algebra.","edges_from":[],"edges_to":[],"id":1400,"label":"PHYS 10","title":"Concepts in Physics (4)"},{"dept":"PHYS","description":"Survey of physics for nonscience majors with strong mathematical background, including calculus. Physics 11 describes the laws of motion, gravity, energy, momentum, and relativity. A laboratory component consists of two experiments with gravity and conservation principles. ","edges_from":[1061,133],"edges_to":[],"id":1401,"label":"PHYS 11","title":"Survey of Physics (4)"},{"dept":"PHYS","description":"A course covering energy fundamentals, energy use in an industrial society and the impact of large-scale energy consumption. It addresses topics on fossil fuel, heat engines, solar energy, nuclear energy, energy conservation, transportation, air pollution and global effects. Concepts and quantitative analysis.","edges_from":[],"edges_to":[],"id":1402,"label":"PHYS 12","title":"Energy and the Environment (4)"},{"dept":"PHYS","description":"An exploration of life in the Universe. Topics include defining life; the origin, development, and fundamental characteristics of life on Earth; searches for life elsewhere in the solar system and other planetary systems; space exploration; and identifying extraterrestrial intelligence. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.","edges_from":[],"edges_to":[],"id":1403,"label":"PHYS 13","title":"Life in the Universe (4)"},{"dept":"ANTH","description":"This seminar is an in-depth analysis of cultural meaning, personal experience, and therapeutic process in ritual healing, emphasizing performative/persuasive aspects of the relation between religion and health in comparative, cross-cultural perspective. ","edges_from":[],"edges_to":[],"id":1404,"label":"ANTH 229","title":"Religion and Healing (4)"},{"dept":"BICD","description":"Course implements key concepts in genetics and genomics such as performing and interpreting results of genetic crosses, analyzing mutations and their phenotypic consequences, analyzing the genetic basis of quantitative traits, and analyzing genome sequences in relation to phenotypic variation. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 100. ","edges_from":[954],"edges_to":[],"id":1405,"label":"BICD 101","title":"Eucaryotic Genetics Laboratory (4)"},{"dept":"FPM","description":"Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in analyzing existing data sets. S/U grades only. ","edges_from":[],"edges_to":[],"id":1406,"label":"FPM 280C","title":"Practicum in Health Behavior III (4)"},{"dept":"FPM","description":"Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in preparing manuscripts using data from a specific health behavior intervention. S/U grades only. ","edges_from":[],"edges_to":[],"id":1407,"label":"FPM 280B","title":"Practicum in Health Behavior II (4)"},{"dept":"FPM","description":"Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor to learn how to conduct a health behavior intervention. S/U grades only. ","edges_from":[],"edges_to":[],"id":1408,"label":"FPM 280A","title":"Practicum in Health Behavior I (4)"},{"dept":"LTSP","description":"Major Spanish literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of this period. May be taken for credit three times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":1409,"label":"LTSP 100","title":"Major Works of the Middle Ages (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ","edges_from":[],"edges_to":[],"id":1410,"label":"Linguistics/Heritage Languages (LIHL) 135P","title":"Advanced Korean for Korean Speakers (4)"},{"dept":"COMM","description":"Specialized study in production with topics to be determined by the instructor for any given quarter. Students will use studio, editing rooms, cameras to construct a variety of in or outside studio productions that can include YouTube, Documentary shorts, Vimeo, with topics that show the effects on social issues. May be taken for credit three times. ","edges_from":[731,1412,1413],"edges_to":[],"id":1411,"label":"COMM 101T","title":"MPL: Topics in Production (4)"},{"dept":"COMM","description":"","edges_from":[540],"edges_to":[2145,1411,2151,5002,1419,1420,1422,1427],"id":1412,"label":"COMM 101","title":""},{"dept":"COGN","description":"","edges_from":[],"edges_to":[2145,5002,1411,2151],"id":1413,"label":"COGN 22","title":""},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ","edges_from":[],"edges_to":[],"id":1414,"label":"Linguistics/Heritage Languages (LIHL) 135W","title":"Advanced Korean for Korean Speakers (4)"},{"dept":"TDGE","description":"The Honors thesis is designed to give theatre and dance majors the opportunity to undertake advanced creative research in an area of specialization (directing, history, pedagogy, performance, playwriting, or stage management), culminating in the writing of a thesis and the oral or performative presentation of the thesis to the members of the student’s Honors Committee. Application available with the theatre and dance undergraduate coordinator. This is a two-quarter research project. Students enroll in the winter and spring quarters of their senior year. Deadline to apply is fall quarter of the student’s senior year. ","edges_from":[],"edges_to":[1417],"id":1415,"label":"TDGE 196A","title":"Honors Study in Theatre and Dance (4)"},{"dept":"ECE","description":"Signal analysis methods for recognition, dynamic","edges_from":[],"edges_to":[],"id":1416,"label":"ECE 252B","title":"Speech Recognition (4)"},{"dept":"TDGE","description":"A continuation of TDGE 196A. Theatre and dance Honors students complete thesis work in directing, history, pedagogy, performance, playwriting, or stage management under the close supervision of a faculty member. All students enrolled will present their thesis work during a departmental showcase event at the end of the spring quarter. ","edges_from":[1415],"edges_to":[],"id":1417,"label":"TDGE 196B","title":"Honors Study in Theatre and Dance (4)"},{"dept":"COGS","description":"An applied hands-on programming course that focuses on the design, implementation and analysis of experiments. Topics include experiment design, stimulus presentation, response collection, file manipulation, data analysis, display, and presentation. Course work includes both team and individual projects. Graduate students who have not programmed at all should speak with the professor beforehand.","edges_from":[],"edges_to":[],"id":1418,"label":"COGS 219","title":"Programming for Behavioral Sciences (4)"},{"dept":"COMM","description":"This is a practical course on ethnographic fieldwork—obtaining informed consent interviewing, negotiating, formulating a research topic, finding relevant literature, writing a research paper, and assisting others with their research. May be taken for credit three times. Students will not receive credit for COMT 112 and COMM 101E. ","edges_from":[540,1412],"edges_to":[],"id":1419,"label":"COMM 101E","title":"MPL: Ethnographic Methods for Media Production (4)"},{"dept":"COMM","description":"Prepare students to edit on nonlinear editing facilities and introduce aesthetic theories of editing: time code editing, time line editing on the Media 100, digital storage and digitization of audio and video, compression, resolution, and draft mode editing. By the end of the course students will be able to demonstrate mastery of the digital editing facilities. May be taken for credit three times. Students will not receive credit for COMT 100 and COMM 101D. ","edges_from":[540,1412],"edges_to":[],"id":1420,"label":"COMM 101D","title":"MPL: Nonlinear/Digital Editing (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ","edges_from":[],"edges_to":[],"id":1421,"label":"Linguistics/Heritage Languages (LIHL) 135F","title":"Advanced Korean for Korean Speakers (4)"},{"dept":"COMM","description":"Digital video is the medium used in this class both as a production technology and as a device to explore the theory and practice of documentary production. Technical demonstrations, lectures, production exercises, and readings will emphasize the interrelation between production values and ethics, problems of representation, and documentary history. May be taken for credit three times. Students will not receive credit for COMT 120 and COMM 101K. ","edges_from":[540,1412],"edges_to":[],"id":1422,"label":"COMM 101K","title":"MPL: Documentary Sketchbook (4)"},{"dept":"HDP","description":"The course will examine the human evolutionary past to inform our understanding of the biological, cognitive, and sociocultural aspects of growth and change across the lifespan. Lectures and readings will draw from diverse fields to situate our understanding of human development within its broader evolutionary context. Areas of focus will include but are not limited to human longevity, biology of growth, theory of mind, and social and biological development in cross-species comparison. ","edges_from":[1424,1425,871],"edges_to":[],"id":1423,"label":"HDP 111","title":"Evolutionary Principles in Human Development (4)"},{"dept":"BILD","description":"","edges_from":[],"edges_to":[4324,4326,3399,3624,3946,3948,3789,4494,1423,3792,3944,4149,4153,4765,4661],"id":1424,"label":"BILD 3","title":""},{"dept":"ANTH","description":"","edges_from":[],"edges_to":[1423],"id":1425,"label":"ANTH 2","title":""},{"dept":"HDP","description":"The purpose of this course is to familiarize students with basic mechanisms of brain and behavioral development from embryology through aging. Multiple levels of analysis will be discussed, including the effects of hormones on behavior, developmental events at the level of cells, structures, and neural systems, and the neural basis of cognition, social, perceptual, and language development. ","edges_from":[872,871],"edges_to":[],"id":1426,"label":"HDP 110","title":"Brain and Behavioral Development (4)"},{"dept":"COMM","description":"Advanced seminar in sound production, design, editing. Students create projects by recording original sounds, editing on a Pro-Tools system. We consider the potential of sound in film, radio, TV, and the web by reviewing work and reading sound theory. May be taken for credit three times. Students will not receive credit for COMT 121 and COMM 101N. ","edges_from":[540,1412],"edges_to":[],"id":1427,"label":"COMM 101N","title":"MPL: Sound Production and Manipulation (4)"},{"dept":"BENG","description":"Introduction to molecular structures. Macromolecules and assemblies-proteins, nucleic acids, and metabolites. Principles of design of simple and complex components of organelles, cells, and tissues. ","edges_from":[958],"edges_to":[2192,2025],"id":1428,"label":"BENG 102","title":"Molecular Components of Living Systems (4)"},{"dept":"MAE","description":"Compressible flow, thermodynamics, and combustion","edges_from":[],"edges_to":[5312,2230],"id":1429,"label":"MAE 113","title":"Fundamentals of Propulsion (4)"},{"dept":"HIUS","description":"This course traces the history of the institution of US citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.","edges_from":[],"edges_to":[],"id":1430,"label":"HIUS 136/ETHN 153","title":"Citizenship and Civil Rights in the Twentieth Century (4)"},{"dept":"CSE","description":"Bioinformatics III: Functional Genomics (4)","edges_from":[],"edges_to":[],"id":1431,"label":"CSE 283/BENG 203","title":""},{"dept":"LTFR","description":"Major literary works of the nineteenth century. May be repeated for credit as topics vary. ","edges_from":[1433,1434],"edges_to":[],"id":1432,"label":"LTFR 124","title":"Nineteenth Century (4)"},{"dept":"LTFR","description":"","edges_from":[],"edges_to":[2634,2635,2636,2637,3790,3793,1432,3419,3676],"id":1433,"label":"LTFR 116","title":""},{"dept":"LTFR","description":"","edges_from":[],"edges_to":[2634,2635,2636,2637,3790,3793,1432,3419,3676],"id":1434,"label":"LTFR 115","title":""},{"dept":"HITO","description":"This course introduces students to the history of modern Vietnam, starting with the Tay Son rebellion in the late eighteenth century and ending with the economic reforms of the 1980s. Topics include the expansion and consolidation of the French colonial state, the rise of anti-colonialism and nationalism, the development of Vietnamese communism, World War II, and the First and Second Indochina Wars. A special emphasis will be focused on the place of Vietnam within wider regional and global histories.","edges_from":[],"edges_to":[],"id":1435,"label":"HITO 114","title":"History of Modern Vietnam (4)"},{"dept":"HITO","description":"How did cars come to dominate the world? This course provides a survey of the world since 1900 to the near future through the history of cars and their impacts on politics, economics, society, and the environment.","edges_from":[],"edges_to":[],"id":1436,"label":"HITO 116","title":"Car Wars: A Global History of the World since 1900 through Cars (4)"},{"dept":"HITO","description":"This course examines the interaction between","edges_from":[],"edges_to":[],"id":1437,"label":"HITO 117","title":"World History 1200–1800 (4)"},{"dept":"NEU","description":"This course will blend research and clinical perspectives to allow comprehensive learning of CNS diseases. For each two-week disease block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.","edges_from":[],"edges_to":[],"id":1438,"label":"NEU 270A","title":"Neurobiology of Disease: Mechanisms of Neurodegeneration (4)"},{"dept":"NEU","description":"This course will blend research and clinical perspectives to allow comprehensive learning of CNS neurodevelopmental disorders. For each two-week block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.","edges_from":[],"edges_to":[],"id":1439,"label":"NEU 270B","title":"Neurobiology of Disease: Neurodevelopmental Disorders (4)"},{"dept":"PHYS","description":"An exploration of our solar system. Topics include the Sun, terrestrial and giant planets, satellites, asteroids, comets, dwarf planets and the Kuiper Belt, exoplanets, and the formation of planetary systems. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.","edges_from":[],"edges_to":[],"id":1440,"label":"PHYS 9","title":"The Solar System (4)"},{"dept":"ECE","description":"The course reinforces students’ intuitive, theoretical, and computational understanding of probability and statistics, and builds on these foundations to introduce more advanced concepts useful in both data science research and practice. The following topics will be covered: basics, convergence, estimation, and hypothesis testing. Python programs, examples, and visualizations will be used throughout the course. ","edges_from":[],"edges_to":[1442],"id":1441,"label":"ECE 225A","title":"Probability and Statistics for Data Science (4)"},{"dept":"ECE","description":"In many data science problems, there is only limited information on statistical properties of the data. This course develops the concept of universal probability that can be used as a proxy for the unknown distribution of data and provides a unified framework for several data science problems, including compression, portfolio selection, prediction, and classification. ","edges_from":[1441,1443],"edges_to":[],"id":1442,"label":"ECE 225B","title":"Universal Probability and Its Applications in Data Science (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1442,3083,4819],"id":1443,"label":"ECE 250","title":""},{"dept":"BIMM","description":"Course will consider the organization and function of prokaryotic genomes including content, DNA supercoiling, histone-like proteins, chromosomal dynamics (short-term and long-term), extrachromosomal elements, bacterial sex, transduction, transformation, mobile elements (transposon), epigenetic change, adaptive and directed mutation, transcription and its regulation, sensory transduction, bacterial differentiation, symbiosis, and pathogenesis. ","edges_from":[411],"edges_to":[],"id":1444,"label":"BIMM 122","title":"Microbial Genetics (4)"},{"dept":"BIMM","description":"A discussion of the structure, growth, physiology, molecular genetics, genomics, and ecology of prokaryotic microorganisms, with emphasis on the genetic and metabolic diversity of bacteria and Archaea and their interactions with hosts and the environment. ","edges_from":[1193,954,410],"edges_to":[],"id":1445,"label":"BIMM 120","title":"Microbiology (4)"},{"dept":"BIMM","description":"Course emphasizes fundamental principles of microbiology, including comparative","edges_from":[],"edges_to":[],"id":1446,"label":"BIMM 121","title":"Laboratory in Microbiology (6)"},{"dept":"BIMM","description":"Encompasses the increasingly important areas","edges_from":[],"edges_to":[],"id":1447,"label":"BIMM 124","title":"Medical Microbiology (4)"},{"dept":"ANSC","description":"This course will provide an anthropological perspective on Chinese culture in Taiwan from its earliest settlement to the present, including distinctive Taiwanese variants of traditional Chinese marriage and family life, institutions, festivals, agricultural practices, etc. ","edges_from":[],"edges_to":[],"id":1448,"label":"ANSC 111","title":"The Chinese Heritage in Taiwan (4)"},{"dept":"ANSC","description":"This course examines societies and cultures of the Caribbean in anthropological and historical perspective. Topics include slavery, emancipation, indentureship, kinship, race, ethnicity, class, gender, politics, food, religion, music, festivals, popular culture, migration, globalization, and tourism. ","edges_from":[],"edges_to":[],"id":1449,"label":"ANSC 110","title":"Societies and Cultures of the Caribbean (4)"},{"dept":"ANSC","description":"Young people draw on language as well as clothing and music to display identities in contemporary societies. We examine the relation of language to race, class, gender, and ethnicity in youth identity construction, especially in multilingual and multiracial societies. ","edges_from":[],"edges_to":[],"id":1450,"label":"ANSC 113","title":"Language, Style, and Youth Identities (4)"},{"dept":"TDGR","description":"This course is open to any graduate student who wants to expand their knowledge and experience of writing for performance. Open to graduate students who wish to incorporate writing into their creative and research practice. S/U grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":1451,"label":"TDGR 255","title":"Writing for Performance (4)"},{"dept":"TDGR","description":"The seminar will deal with all dramaturgical issues pertaining to departmental productions: production research, textual and analysis, translation, adaptation, rehearsal process, and critique. Concurrently with the dramaturgy issues of the given year, the seminar will discuss possible choices of plays for future production seasons. ","edges_from":[],"edges_to":[],"id":1452,"label":"TDGR 252","title":"Dramaturgy Seminar (4)"},{"dept":"TDGR","description":"Students enrolled in this course will work on productions in the function of a dramaturg. This will entail preparation of texts, research, participation at rehearsals, etc. ","edges_from":[],"edges_to":[],"id":1453,"label":"TDGR 253","title":"Dramaturgy Practicum (1–6)"},{"dept":"ANSC","description":"This course contrasts mainstream Anglo-American conceptualizations of transgenderism with ethnographic accounts of the experiences and practices of gender expansive people of color (African, Native, Asian/Pacific Islander, and Latinx Americans) in the U.S. and abroad. It will question the idea of transgenderism as a crossing from one gender to another one, the distinction between gender identity and sexuality, and the analytic of intersectionality. Students will not receive credit for both CGS 117 and ANSC 117. ","edges_from":[],"edges_to":[],"id":1454,"label":"ANSC 117","title":"Transgenderisms (4)"},{"dept":"TDGR","description":"Creative writing project developing original scripts from outline to the final play. Plays may vary depending on the quarter, but will include writing of a realistic one-act, a nonrealistic one-act, a one-act documentary or dramatization of fiction, a full-length play. ","edges_from":[],"edges_to":[],"id":1455,"label":"TDGR 251","title":"Playwriting Practicum (2)"},{"dept":"ANSC","description":"Communication, and the Body (4)","edges_from":[],"edges_to":[],"id":1456,"label":"ANSC 119","title":"Gesture,"},{"dept":"ANSC","description":"An introduction to the study of cultural patterns of thought, action, and expression, in relation to language. We consider comparatively semiotics and structuralism, cognition and categorization, universals versus particulars, ideologies of stasis and change, cultural reconstruction, and ethnopoetics. ","edges_from":[],"edges_to":[],"id":1457,"label":"ANSC 118","title":"Language and Culture (4)"},{"dept":"LTTH","description":"This proseminar, regularly offered in the fall quarter, consists of seven or eight guest lectures by the literature faculty and introduces their research and methodologies. This proseminar is organized by a literature faculty member or the director of doctoral studies. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1458,"label":"LTTH 210A","title":"Proseminar on Literary Scholarship (4)"},{"dept":"ANTH","description":"A seminar given to acquaint students with the techniques and problems of fieldwork. Students carry out ethnographic field research in a local community group under faculty supervision. ","edges_from":[1460],"edges_to":[],"id":1459,"label":"ANTH 283A","title":"Fieldwork Seminar (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[1459],"id":1460,"label":"ANGR 283A","title":""},{"dept":"TDGR","description":"A guided reading course focusing exclusively on very recent plays in an attempt to become aware of what is being written now. Course may be repeated for credit. ","edges_from":[],"edges_to":[],"id":1461,"label":"TDGR 256","title":"Contemporary Plays (1–4)"},{"dept":"ENVR","description":"Explores environmental policy in the United States and the ways in which it is reflected in law. The social and political issues addressed include environmental justice and environmental racism, as well as the role of government in implementing environmental law. ","edges_from":[],"edges_to":[],"id":1462,"label":"ENVR 110","title":"Environmental Law (4)"},{"dept":"PHYS","description":"A hands-on laboratory course in which the students learn and use experimental techniques, including optics, electronics, chemistry, machining, and computer interface, to design and develop simple instruments for quantitative characterization of living systems. Lab classes will comprise five two-week modules. ","edges_from":[],"edges_to":[1905],"id":1463,"label":"PHYS 270A","title":"Experimental Techniques for Quantitative Biology (4)"},{"dept":"INTL","description":"Honors Seminar in International Studies (4)","edges_from":[],"edges_to":[5953],"id":1464,"label":"INTL 190H","title":""},{"dept":"TDGR","description":"A one-quarter course covering the hour-long format (five weeks) and situation comedies (five weeks). Includes study and discussion of television script format and structure. Students will create the concept and structure for spec scripts in each genre. ","edges_from":[],"edges_to":[],"id":1465,"label":"TDGR 254","title":"Television Writing (4)"},{"dept":"HILA","description":"How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.","edges_from":[],"edges_to":[],"id":1466,"label":"HILA 114D","title":"Dictatorship in Latin America (4)"},{"dept":"EDS","description":"This course examines special topics in P–12 education from a variety of theoretical and pedagogical perspectives. Topics will address pertinent and current issues related to P–12","edges_from":[],"edges_to":[],"id":1467,"label":"EDS 180","title":"Topics in Education Studies (4)"},{"dept":"ECE","description":"Students design, build, and race an autonomous car using principles in electrical engineering and computer science: circuit design, control theory, digital signal processing, embedded systems, microcontrollers, electromagnetism, and programming. ","edges_from":[],"edges_to":[],"id":1468,"label":"ECE 194","title":"Viacar Design Project (4)"},{"dept":"ECE","description":"Teaching and tutorial activities associated with courses and seminars. Not more than four units of ECE 195 may be used for satisfying graduation requirements. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1469,"label":"ECE 195","title":"Teaching (2 or 4)"},{"dept":"EDS","description":"121B. Foundations of Teaching and Learning Math II (4)","edges_from":[],"edges_to":[],"id":1470,"label":"EDS 121B/Math","title":""},{"dept":"ECE","description":"Directed study and research at laboratories and observatories away from the campus. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1471,"label":"ECE 197","title":"Field Study in Electrical and Computer Engineering (4, 8, 12, or 16)"},{"dept":"ECE","description":"Digital communication theory including performance of various modulation techniques, effects of inter-symbol interference, adaptive equalization, spread spectrum communication. ","edges_from":[1473,1474,1475,1476],"edges_to":[],"id":1472,"label":"ECE 258A–B","title":"Digital Communication (4-4)"},{"dept":"ECE","description":"","edges_from":[73,2653],"edges_to":[1472,1939,4589,1475],"id":1473,"label":"ECE 154A","title":""},{"dept":"ECE","description":"","edges_from":[1475],"edges_to":[1472],"id":1474,"label":"ECE 154C","title":""},{"dept":"ECE","description":"","edges_from":[1473],"edges_to":[1472,1474],"id":1475,"label":"ECE 154B","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1472],"id":1476,"label":"ECE 254","title":""},{"dept":"TDGR","description":"A seminar focusing on the current playwriting project of all graduate playwriting students. Work for each quarter is individually determined according to student needs, but may include exploration of an inceptive idea, development of a scenario or other structural work, and writing dialogue. Students present work to be discussed in class. May include group or individual playwriting exercises. ","edges_from":[],"edges_to":[2770],"id":1477,"label":"TDGR 250","title":"Playwriting Seminar (4)"},{"dept":"ANSC","description":"An introduction to the languages and cultures of speakers of the Mayan family of languages, with emphasis on linguistic structures, ethnography, and the social history of the region. The course will concentrate on linguistic and ethnographic literature of a single language or sub-branch, emphasizing commonalities with the family and region as a whole. ","edges_from":[],"edges_to":[],"id":1478,"label":"ANSC 116","title":"Languages of the Americas: Mayan (4)"},{"dept":"ECE","description":"Topics in electrical and computer engineering whose study involves reading and discussion by a small group of students under direction of a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1479,"label":"ECE 198","title":"Directed Group Study (2 or 4)"},{"dept":"ECE","description":"Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1480,"label":"ECE 199","title":"Independent Study for Undergraduates (2 or 4)"},{"dept":"HIEU","description":"A study of the social, intellectual, and political currents in French history from the end of the French Revolution to the eve of the First World War. Lectures, slides, films, readings, and discussions.","edges_from":[],"edges_to":[],"id":1481,"label":"HIEU 153A","title":"Nineteenth-Century France (4)"},{"dept":"CHIN","description":"160/260. Late Imperial and Twentieth-Century Chinese Historical Texts","edges_from":[],"edges_to":[],"id":1482,"label":"CHIN","title":""},{"dept":"LTCS","description":"Directed group research, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.) ","edges_from":[],"edges_to":[],"id":1483,"label":"LTCS 198","title":"Directed Group Study (4)"},{"dept":"LTCS","description":"Individual reading in an area not covered in courses currently offered by the department. (P/NP only.) ","edges_from":[],"edges_to":[],"id":1484,"label":"LTCS 199","title":"Special Studies (2 or 4)"},{"dept":"MDE","description":"Computer-aided analysis and design with applications to medical devices. Solid model representation, finite element analysis for strength and deformation, material selection, kinematics, statistical analysis, and visualization of analytical results. Software packages used will include 3D CAD, FEA solvers, and student generated code. Analytical methods will be applied to case studies of medical devices. ","edges_from":[],"edges_to":[],"id":1485,"label":"MDE 292","title":"Computer Aided Design of Medical Devices (4)"},{"dept":"MSED","description":"Students will work on an independent research project under the supervision of MSED faculty.","edges_from":[],"edges_to":[],"id":1486,"label":"MSED 298","title":"Research Project (2–12)"},{"dept":"LIGN","description":"Issues of language representation and neural instantiation that arise in studies of neural imaging, language disorders, multilingualism and second language acquisition, animal communication, and the origins and evolution of language. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":1487,"label":"LIGN 272","title":"Topics in Neurolinguistics (4)"},{"dept":"LIGN","description":"Investigation of problems in psycholinguistics—the study of how humans learn, represent, comprehend, and produce language—from a computational perspective. Research article readings covering word-level, sentence-level, and discourse-level processing. Prior background in psycholinguistics and/or computational linguistics highly recommended.","edges_from":[],"edges_to":[],"id":1488,"label":"LIGN 274","title":"Computational Psycholinguistics (4)"},{"dept":"BENG","description":"Multiscale Biology (4)","edges_from":[],"edges_to":[],"id":1489,"label":"BENG 276/Chem 276/Math 276/Pharm 276","title":"Numerical Analysis in"},{"dept":"LIGN","description":"Language acquisition is central to theories about human development, cognition, brain organization, and language origins and change. Topics include the role of input and critical periods on language outcome and processing, neural organization, and sign language creation. ","edges_from":[],"edges_to":[],"id":1490,"label":"LIGN 279","title":"Topics in Language Acquisition (4)"},{"dept":"MUS","description":"This course will introduce basic voicings and voice leading, stylistically appropriate accompaniment, and basic chord substitution. For majors with a Jazz and the Music of the African diaspora emphasis to be taken concurrently with MUS 2C. ","edges_from":[1492,1493,1494],"edges_to":[],"id":1491,"label":"MUS 2JK","title":"Jazz Keyboard (2)"},{"dept":"MUS","description":"","edges_from":[],"edges_to":[1491,3763],"id":1492,"label":"MUS 2AK","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[1491,3763],"id":1493,"label":"MUS 2BK","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[3305,4298,3927,1491,3925,1559,1560,3801],"id":1494,"label":"MUS 2C","title":""},{"dept":"MSED","description":"Survey of recent literature highlighting critical issues in science education research. Specific focus on research in biology education, chemistry education, and physics education. Theoretical perspectives and research methodology (both qualitative and quantitative) used to understand learning will be discussed. ","edges_from":[],"edges_to":[],"id":1495,"label":"MSED 290","title":"Issues in Science Education Research (4)"},{"dept":"MSED","description":"Topics in Math and Science Education (1–4)","edges_from":[],"edges_to":[],"id":1496,"label":"MSED 297","title":"Special"},{"dept":"MSED","description":"In this course, the graduate student will teach or assist a teacher in a K–12 setting. The graduate student will have the mentorship of the classroom teacher as well as the supervision of an MSED faculty member. ","edges_from":[],"edges_to":[],"id":1497,"label":"MSED 294","title":"Teaching Practicum (4)"},{"dept":"ETHN","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":1498,"label":"ETHN 87","title":"Freshman Seminar (1)"},{"dept":"GLBH","description":"Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will focus on identifying critical global health policy challenges and solving them using a multidisciplinary approach that takes into account the perspectives of various stakeholders. ","edges_from":[],"edges_to":[],"id":1499,"label":"GLBH 160","title":"Global Health Policy (4)"},{"dept":"ETHN","description":"The development of the Atlantic slave trade and the spread of racial slavery in the Americas before 1800. Explores the diversity of slave labor in the Americas and the different slave cultures African Americans produced under the constraints of slavery. Students may not receive credit for both ETHN 170 and 170B.","edges_from":[],"edges_to":[],"id":1500,"label":"ETHN 170","title":"Slavery and the Atlantic World (4)"},{"dept":"ETHN","description":"(Cross-listed with LTEN 183.) Students will analyze and discuss the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characters of Afro-American narrative and the cultural and social circumstances that influence their development.","edges_from":[],"edges_to":[],"id":1501,"label":"ETHN 172","title":"Afro-American Prose (4)"},{"dept":"ETHN","description":"(Cross-listed with LTEN 186.) The Harlem Renaissance (1917–39) focuses on the emergence of the “New Negro” and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.","edges_from":[],"edges_to":[],"id":1502,"label":"ETHN 175","title":"Literature of the Harlem Renaissance (4)"},{"dept":"ETHN","description":"(Cross-listed with LTEN 185.) This course focuses on the influence of slavery upon African American writers. Our concern is not upon what slavery was but upon what it is within the works and what these texts reveal about themselves, their authors, and their audiences.","edges_from":[],"edges_to":[],"id":1503,"label":"ETHN 174","title":"Themes in Afro-American Literature (4)"},{"dept":"ETHN","description":"This course considers the history of listening to the music of the world in Western culture. We will critically examine how the history of perception directs us to listen for familiar and different sounds in music. No musical training required.","edges_from":[],"edges_to":[],"id":1504,"label":"ETHN 177","title":"Listening to the World (4)"},{"dept":"ETHN","description":"(Cross-listed with MUS 127.) Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year. May be taken for credit two times. Students may receive a combined total of eight units for MUS 127 and ETHN 179.","edges_from":[],"edges_to":[],"id":1505,"label":"ETHN 179","title":"Discover Jazz (4)"},{"dept":"NANO","description":"Electrochemistry and electrochemical engineering for energy applications. Thermodynamics and kinetics of electrochemical reactions; fundamental principles of batteries, super capacitors, fuel cells, and electrochemical synthesis systems; electrochemical analysis of these systems, engineering design considerations, and modeling. Practical device design and fabrication will be covered in greater detail.","edges_from":[],"edges_to":[],"id":1506,"label":"NANO 279","title":"Advanced Electrochemical Energy Engineering (4)"},{"dept":"EDS","description":"This course explores topical issues in education. It focuses on recent developments that have broad implications for research and practice in teaching and learning. Course topics will vary each time the course is offered. ","edges_from":[],"edges_to":[],"id":1507,"label":"EDS 232","title":"Special Topics in Education (4)"},{"dept":"EDS","description":"Topics in Instructional Practices (4)","edges_from":[],"edges_to":[],"id":1508,"label":"EDS 231","title":"Advanced"},{"dept":"PSYC","description":"This course provides hands-on research experience. Lecture topics will include experimental and nonexperimental designs, research ethics, data analysis, and causal inference. Students will design original research projects, collect and analyze data, and write a full APA-style report, including a brief literature review relevant to their design. This course builds on PSYC 70 by applying design principles to students’ own research questions and ideas. ","edges_from":[1510],"edges_to":[],"id":1509,"label":"PSYC 71","title":"Laboratory in Psychological Research Methods (4)"},{"dept":"PSYC","description":"","edges_from":[862],"edges_to":[1509],"id":1510,"label":"PSYC 70","title":""},{"dept":"TWS","description":"This course will investigate novelistic and dramatic treatments of European society in the era of nineteenth-century imperialism, Third World societies under the impact of colonialism, and the position of national minorities inside the United States to the present day. Attention will center on the interplay between the aesthetic merits and social-historical-philosophical content of the works read.","edges_from":[],"edges_to":[],"id":1511,"label":"TWS 132","title":"Literature and Third World Societies (4)"},{"dept":"ANBI","description":"Conservation on a human-dominated planet is a complex topic. Sometimes a picture is worth a thousand words. This course explores how films about conservation and the human predicament tackle current problems. What makes them effective and what makes them “fail”? We view one film a week and discuss it based on articles and books about that week’s topic. Corequisite: must be enrolled in ANBI 132.","edges_from":[],"edges_to":[],"id":1512,"label":"ANBI 174","title":"Conservation and the Media: Film Lab (4)"},{"dept":"ANBI","description":"Models of human evolution combine science and myth. This course examines methods used in reconstructions of human evolution. Models such as “man the hunter” and “woman the gatherer” are examined in light of underlying assumptions, and cultural ideals. ","edges_from":[],"edges_to":[],"id":1513,"label":"ANBI 175","title":"Paleofantasy: The Evidence for Our Early Ancestors (4)"},{"dept":"ANBI","description":"The last divide between humans and other animals is in the area of cognition. A comparative perspective to explore recent radical reinterpretations of the cognitive abilities of different primate species, including humans and their implications for the construction of evolutionary scenarios. ","edges_from":[],"edges_to":[],"id":1514,"label":"ANBI 173","title":"How Monkeys See the World (4)"},{"dept":"ECE","description":"Crystal structure and quantum theory of solids; electronic band structure; review of carrier statistics, drift and diffusion, p-n junctions; nonequilibrium carriers, imrefs, traps, recombination, etc; metal-semiconductor junctions and heterojunctions. ","edges_from":[1231],"edges_to":[1517],"id":1515,"label":"ECE 135A","title":"Semiconductor Physics (4)"},{"dept":"Soc/G","description":"An introduction for entering graduate students to the range and variety of research and scholarly interest of the department’s faculty. Through this introduction students will be better able to relate their own research interests and professional objectives to the ongoing work of faculty. ","edges_from":[],"edges_to":[],"id":1516,"label":"Soc/G 208","title":"Faculty Research Seminar (2)"},{"dept":"ECE","description":"Structure and operation of bipolar junction transistors, junction field-effect transistors, metal-oxide-semiconductor diodes and transistors. Analysis of dc and ac characteristics. Charge control model of dynamic behavior. ","edges_from":[1515],"edges_to":[],"id":1517,"label":"ECE 135B","title":"Electronic Devices (4)"},{"dept":"BGGN","description":"This course provides a hands-on introduction to the computer-based analysis of genomic and biomolecular data. Major topics include sequencing technologies, genome informatics, structural bioinformatics, and transcriptomics. Students completing this course will be able to evaluate new genomic and biomolecular information using existing software and will have experience in combining bioinformatic approaches to answer biological questions. Enrollment restricted to the following major codes: BI77, BI78, and BS75. Course limited to PhD level students.","edges_from":[],"edges_to":[],"id":1518,"label":"BGGN 213","title":"Foundations of Bioinformatics (4)"},{"dept":"BGGN","description":"The goal of the course is to provide an introduction to modern evolutionary biology using quantitative approaches. The course will focus on mathematical modeling, experimental, and genomic approaches to study evolution.","edges_from":[],"edges_to":[],"id":1519,"label":"BGGN 212","title":"Introduction to Quantitative Evolutionary Biology (4)"},{"dept":"BGGN","description":"Introduces students to advanced concepts of modern biology (e.g. molecular and cell biology, biochemistry, genomics, and epigenomics, etc.). Current experimental approaches (including high-throughput sequencing, microarray technology, RNAi, proteomic technologies, ChIP-seq) are discussed using primary research papers. The course provides training in critical analysis of scientific papers, data interpretation, scientific writing, and experimental design. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.","edges_from":[],"edges_to":[],"id":1520,"label":"BGGN 211","title":"Recent Advances and Experimental Approaches in Modern Biology (4)"},{"dept":"BGGN","description":"For incoming doctoral students in neurobiology, computational neurobiology, and neurosciences. During first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ","edges_from":[],"edges_to":[],"id":1521,"label":"BGGN 210","title":"Neurobiology Boot Camp (4)"},{"dept":"BGGN","description":"Fundamentals behind and practical application of biostatistics, including central tendency and variability, hypothesis testing, inferential techniques (parametric and nonparametric), correlation and regression. Practice examples taken from the laboratory bench and primary literature. Training in the use of biostatistical software. ","edges_from":[],"edges_to":[],"id":1522,"label":"BGGN 216","title":"Graduate Biostatistics (4)"},{"dept":"SOCI","description":"A continuation of Sociology/L 1A. The focus here is on socialization processes, culture, social reproduction and social control, and collective action. As in 1A, materials include both theoretical statements and case studies. While 1B may be taken as an independent course, it is recommended that students take 1A and 1B in sequence, as the latter builds on the former. Will not receive credit for SOCI 2 and SOCL 1B.","edges_from":[],"edges_to":[2126],"id":1523,"label":"SOCI 2","title":"The Study of Society (4)"},{"dept":"BGGN","description":"The course goal is to discuss and work through examples where quantitative biology approaches were necessary to yield novel biological insights. Problems will be presented with a historic perspective to instill a philosophy for when, how, and why q-bio approaches are most effective. The course may also appeal to physics and engineering graduate students. ","edges_from":[],"edges_to":[],"id":1524,"label":"BGGN 214","title":"Introduction to Q-Biology (4)"},{"dept":"BIOM","description":"This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ","edges_from":[],"edges_to":[],"id":1525,"label":"BIOM 267","title":"Drug Discovery, Development, and Commercialization (3)"},{"dept":"BIOM","description":"This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages. ","edges_from":[1528,1281,1527],"edges_to":[],"id":1526,"label":"BIOM 262","title":"Quantitative Methods in Genetics (4)"},{"dept":"BIOM","description":"","edges_from":[523,524,525],"edges_to":[1997,1526],"id":1527,"label":"BIOM 252","title":""},{"dept":"BGGN","description":"","edges_from":[1752,1753,1754,1755],"edges_to":[1997,1526],"id":1528,"label":"BGGN 223","title":""},{"dept":"FMPH","description":"This is the third of a three-part honors series that serves as the culminating experience for the BS in public health majors. Students will analyze, interpret, and contextualize findings from their projects completed in the series. Oral and written communication will focus on disseminating public health information in diverse formats, and will include a presentation and an honors thesis. Must be taken for a letter grade to be applied to the public health major. ","edges_from":[1530],"edges_to":[],"id":1529,"label":"FMPH 196C","title":"Public Health Honors Practicum III (4)"},{"dept":"FMPH","description":"","edges_from":[3603],"edges_to":[1529],"id":1530,"label":"FMPH 196B","title":""},{"dept":"NANO","description":"Course is designed to give NanoEngineering students from a variety of backgrounds a working knowledge of biochemistry and molecular biology. While the course offers biochemistry basics and key themes in molecular biology, it will emphasize the role of engineering innovations. ","edges_from":[],"edges_to":[],"id":1531,"label":"NANO 242","title":"Biochemisty and Molecular Biology (4)"},{"dept":"LTFR","description":"This course may be designed according to an individual student’s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.","edges_from":[],"edges_to":[],"id":1532,"label":"LTFR 297","title":"Directed Studies: Reading Course (1–12)"},{"dept":"MAE","description":"Methods for Differential Equations (4)","edges_from":[],"edges_to":[1534],"id":1533,"label":"MAE 290B","title":"Numerical"},{"dept":"MAE","description":"Numerical methods in fluid dynamics and convective transport processes. Numerical solution of the Euler and Navier-Stokes equation. Additional topics will vary according to instructor. Examples include eigenvalue problems in hydrodynamic stability, vortex methods, spectral and panel methods. Students may not receive credit for both MAE 290C and MAE 223. ","edges_from":[1536,1537,1533,1535],"edges_to":[],"id":1534,"label":"MAE 290C","title":"Computational Fluid Dynamics (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[4753,3973,1534],"id":1535,"label":"MAE 290A","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[4948,1534],"id":1536,"label":"MAE 210B","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[2226,4948,3973,1534],"id":1537,"label":"MAE 210A","title":""},{"dept":"MATH","description":"Two- and three-dimensional Euclidean geometry","edges_from":[],"edges_to":[],"id":1538,"label":"MATH 153","title":"Geometry for Secondary Teachers (4)"},{"dept":"LTFR","description":"Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.","edges_from":[],"edges_to":[],"id":1539,"label":"LTFR 299","title":"Dissertation (1–12)"},{"dept":"LTFR","description":"Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.","edges_from":[],"edges_to":[],"id":1540,"label":"LTFR 298","title":"Special Projects: Writing Course (1–12)"},{"dept":"DSGN","description":"This directed group study course is for small groups of advanced students who wish to complete a one-quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit up to three times. ","edges_from":[],"edges_to":[],"id":1541,"label":"DSGN 198","title":"Directed Group Study (2 or 4)"},{"dept":"HIEA","description":"of Thought and Religion in China: Daoism (4)","edges_from":[],"edges_to":[],"id":1542,"label":"HIEA 136","title":"History"},{"dept":"COMM","description":"An examination of the questions that developments in robotics pose to the scholars of communication: How do we communicate when our interlocutors are nonhumans? How do we study objects that are claimed to be endowed with social and affective character? ","edges_from":[537,538,539,540],"edges_to":[],"id":1543,"label":"COMM 174","title":"Communication and Social Machines (4)"},{"dept":"COMM","description":"This course examines the cultural politics of consumption across time and cultures through several concepts: commodity fetishism; conspicuous consumption; taste; class; and identity formation; consumption’s psychological, phenomenological, and poetic dimensions; and contemporary manifestations of globalization and consumer activism. ","edges_from":[537,538,539,540],"edges_to":[],"id":1544,"label":"COMM 175","title":"Cultures of Consumption (4)"},{"dept":"COMM","description":"The secularization thesis—that as society becomes more modern and standards of living rise, the importance of religion will diminish and be confined to the private sphere—may be wrong. We address religion, communication, culture, and politics in the United States. ","edges_from":[537,538,539,540],"edges_to":[],"id":1545,"label":"COMM 176","title":"Communication and Religion (4)"},{"dept":"ECON","description":"Risk measures, hedging techniques, value of risk to firms, estimation of optimal hedge ratio, risk management with options and futures. Econ 171 is recommended. ","edges_from":[1131],"edges_to":[],"id":1546,"label":"ECON 174","title":"Financial Risk Management (4)"},{"dept":"POLI","description":"Relations After the Cold War: Theory and Prospect (4)","edges_from":[],"edges_to":[],"id":1547,"label":"POLI 145C","title":"International"},{"dept":"COMM","description":"Survey of the communication practices found in environment controversies. The sociological aspects of environmental issues will provide background for the investigation of environmental disputes in particular contested areas, such as scientific institutions, communities, workplaces, governments, popular culture, and the media. ","edges_from":[537,538,539,540],"edges_to":[],"id":1548,"label":"COMM 171","title":"Environmental Communication (4)"},{"dept":"COMM","description":"Specialized advanced study in mediation and interaction with topics to be determined by the instructor for any given quarter. May be taken three times for credit. ","edges_from":[537,538,539,540],"edges_to":[],"id":1549,"label":"COMM 172","title":"Advanced Topics in Mediation and Interaction (4)"},{"dept":"COMM","description":"In this class we will look closely at the everyday ways in which we interact with technology to discuss sociocultural character of objects, built environments; situated, distributed, and embodied character of knowledges; use of multimodal semiotic resources, talk, gesture, body orientation, and gaze in interaction with technology. ","edges_from":[537,538,539,540],"edges_to":[],"id":1550,"label":"COMM 173","title":"Interaction with Technology (4)"},{"dept":"CHEM","description":"Practical methods to make drugs currently in use and to design future drugs. Treats both chemical synthesis and biologics like monoclonal antibodies. Topics include fragment-based screening, solid phase synthesis, directed evolution, and bioconjugation as well as efficacy, metabolism, and toxicity. ","edges_from":[1552,1553,1554,1555,458],"edges_to":[],"id":1551,"label":"CHEM 168","title":"Drug Synthesis and Design (4)"},{"dept":"CHEM","description":"","edges_from":[952,1761],"edges_to":[5666,5667,1551,5136,5266,2068,5853,5118],"id":1552,"label":"CHEM 40C","title":""},{"dept":"CHEM","description":"","edges_from":[952,1761,2562,959],"edges_to":[5666,5667,1551,5136,5266,2068,5853,5118],"id":1553,"label":"CHEM 40CH","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[5666,5667,1551,5136,5266,2068,5853,5118],"id":1554,"label":"CHEM 140C","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[5666,5667,1551,5136,5266,2068,5853,5118],"id":1555,"label":"CHEM 140CH","title":""},{"dept":"HILA","description":"Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.","edges_from":[],"edges_to":[],"id":1556,"label":"HILA 198","title":"Directed Group Study (4)"},{"dept":"HILA","description":"Study in Latin American History (4)","edges_from":[],"edges_to":[],"id":1557,"label":"HILA 199","title":"Independent"},{"dept":"MUS","description":"Second part of intensive historical, analytical, and cultural-aesthetic examination of music in Western culture from the ninth through the twenty-first centuries. Considers both instrumental and vocal repertories, from the Baroque to the Romantic, c. 1600–1830. ","edges_from":[1560,1559],"edges_to":[],"id":1558,"label":"MUS 120B","title":"History of Music in Western Culture II (4)"},{"dept":"MUS","description":"","edges_from":[1494],"edges_to":[3921,4298,3926,3142,1558],"id":1559,"label":"MUS 101B","title":""},{"dept":"MUS","description":"","edges_from":[5804,1494,3927],"edges_to":[1558],"id":1560,"label":"MUS 120A","title":""},{"dept":"MUS","description":"Third part of intensive historical, analytical,","edges_from":[],"edges_to":[3924],"id":1561,"label":"MUS 120C","title":"History of Music in Western Culture III (4)"},{"dept":"ECON","description":"Survey of theoretical and practical aspects of statistical and economic forecasting. Such topics as long-run and short-run horizons, leading indicator analysis, econometric models, technological and population forecasts, forecast evaluation, and the use of forecasts for public policy. Concurrent enrollment in Econ 120C is permitted. ","edges_from":[289],"edges_to":[],"id":1562,"label":"ECON 178","title":"Economic and Business Forecasting (4)"},{"dept":"Linguistics/Italian","description":"(2.5)","edges_from":[],"edges_to":[],"id":1563,"label":"Linguistics/Italian (LIIT) 1DX","title":"Analysis of Italian"},{"dept":"CSE","description":"Explores emerging opportunities enabled by cheap sensors and networked computing devices. Small research projects will be conducted in teams, culminating in project presentations at the end of the term. Section will cover material relevant to the project, such as research methods, software engineering, teamwork, and project management. ","edges_from":[1568,1569,1570,1571,1572,1573,1574,1575,1576,1565,1566,1567],"edges_to":[],"id":1564,"label":"CSE 118","title":"Ubiquitous Computing (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1564],"id":1565,"label":"ECE 191","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1564],"id":1566,"label":"ECE 192","title":""},{"dept":"COMT","description":"","edges_from":[],"edges_to":[1564],"id":1567,"label":"COMT 111B","title":""},{"dept":"COMT","description":"","edges_from":[],"edges_to":[1564],"id":1568,"label":"COMT 115","title":""},{"dept":"ECE","description":"","edges_from":[3136,1181],"edges_to":[1564],"id":1569,"label":"ECE 111","title":""},{"dept":"ICAM","description":"","edges_from":[],"edges_to":[1564],"id":1570,"label":"ICAM 160B","title":""},{"dept":"COGS","description":"","edges_from":[3080,4833,1072,4311],"edges_to":[1564],"id":1571,"label":"COGS 184","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1564],"id":1572,"label":"ECE 118","title":""},{"dept":"COGS","description":"","edges_from":[393,395,2857],"edges_to":[4016,1564],"id":1573,"label":"COGS 121","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[1564],"id":1574,"label":"CSE 131","title":""},{"dept":"CSE","description":"","edges_from":[4256],"edges_to":[1564],"id":1575,"label":"CSE 132B","title":""},{"dept":"COGS","description":"","edges_from":[3134],"edges_to":[4017,1564],"id":1576,"label":"COGS 102C","title":""},{"dept":"HIEU","description":"This course examines English responses to the French Revolution, industrialization, and engagement with other cultures during the eighteenth and nineteenth centuries. Readings from high, popular, and folk literature, both serious and satirical, illuminate life in the London metropolis. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.","edges_from":[],"edges_to":[],"id":1577,"label":"HIEU 140GS","title":"Art and Society in Nineteenth-Century London (4)"},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 100C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100C or after successful completion of Econ 100C with A– or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":1578,"label":"ECON 100CH","title":"Honors Microeconomics C (1)"},{"dept":"ECON","description":"Covers various topics in macroeconomics at the frontiers of research, including theory, computation, and empirical work. Emphasis depends on the instructor. Students will read the latest working papers and publications in the covered areas. ","edges_from":[1580,109,1581],"edges_to":[],"id":1579,"label":"ECON 211","title":"Advanced Macroeconomics (4-4-4)"},{"dept":"ECON","description":"","edges_from":[1581],"edges_to":[1794,1579,109,1582,1583,1584,1585],"id":1580,"label":"ECON 210B","title":""},{"dept":"ECON","description":"","edges_from":[],"edges_to":[1794,1579,1580,1582,1583,1584,1585],"id":1581,"label":"ECON 210A","title":""},{"dept":"ECON","description":"This course covers advanced computation techniques that are widely used in macroeconomics, finance, and other fields. Students will learn a range of numerical methods for handling systems of equations, integration, optimization, and other problems. ","edges_from":[1580,109,1581],"edges_to":[],"id":1582,"label":"ECON 216","title":"Computation for Macroeconomics (4)"},{"dept":"ECON","description":"While understanding how the macro economy behaves in the ideal, frictionless setting is indispensable; most of the interesting issues in macro arise as a consequence of some sort of friction or missing market. In this course, we will study some models based on real frictions and financial frictions. Topics covered include convex and nonconvex adjustment costs, housing markets and investment decisions, and financial crises. ","edges_from":[1580,109,1581],"edges_to":[],"id":1583,"label":"ECON 217","title":"Real Frictions and Financial Frictions (4)"},{"dept":"ECON","description":"This course focuses on applied macroeconomics, including econometric testing of macroeconomic theories and empirical measurement guided by theoretical insights. Topics will vary from year to year depending on the latest developments in research. Students will complete the course with a broader understanding of a number of leading topics in macroeconomics as well as a toolkit of estimation and simulation programs. Recommended preparation: Econ 220D. ","edges_from":[1580,109,1581],"edges_to":[],"id":1584,"label":"ECON 214","title":"Applied Macroeconomics (4)"},{"dept":"ECON","description":"This course focuses on theoretical models and empirical analysis aimed at understanding and directing macroeconomic policy, including monetary, fiscal, and structural policies. ","edges_from":[1580,109,1581],"edges_to":[],"id":1585,"label":"ECON 215","title":"Macroeconomic Policy (4)"},{"dept":"ANAR","description":"Concerns the latest developments in digital data capture, analyses, curation, and dissemination for cultural heritage. Introduction to geographic information systems (GIS), spatial analysis, and digital technologies applied to documentation and promotion of cultural heritage and tourism. Lectures and lab exercises. ","edges_from":[],"edges_to":[],"id":1586,"label":"ANAR 121","title":"Cyber-Archaeology and World Digital Cultural Heritage (4)"},{"dept":"ECON","description":"This course will cover numerical analysis of dynamic macroeconomic models. Topics include numerical techniques, dynamic programming, linear systems, solution algorithms, and applications to dynamic general equilibrium. ","edges_from":[],"edges_to":[],"id":1587,"label":"ECON 219","title":"Readings in Macroeconomics (4)"},{"dept":"MUS","description":"The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music and music humanities majors every quarter a student is a declared music major. Four units or four quarters of enrollment are required of all undergraduate ICAM music majors who choose the MUS 43. Department Seminar option for their Visitor Series requirement. P/NP grades only. May be taken for credit up to twelve times.","edges_from":[],"edges_to":[],"id":1588,"label":"MUS 43","title":"Department Seminar (1)"},{"dept":"ANAR","description":"This course explores the archaeology of Asia from the first humans through the rise of state societies. Topics include the environmental setting, pioneer migrations, hunting and gathering societies, plant and animal domestication, and the development of metallurgy, agriculture, technology, trade, and warfare in early civilizations. We consider how ancient political, intellectual, and artistic achievements shape the archaeological heritage in present-day Asia. ","edges_from":[],"edges_to":[],"id":1589,"label":"ANAR 124","title":"Archaeology of Asia (4)"},{"dept":"Linguistics/Spanish","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1C. ","edges_from":[1592,1591],"edges_to":[],"id":1590,"label":"Linguistics/Spanish (LISP) 1CX","title":"Analysis of Spanish (2.5)"},{"dept":"LISP","description":"","edges_from":[],"edges_to":[4824,1590],"id":1591,"label":"LISP 1B","title":""},{"dept":"LISP","description":"","edges_from":[],"edges_to":[4824,1590],"id":1592,"label":"LISP 1BX","title":""},{"dept":"POLI","description":"This course examines the domestic and international aspects of the drug trade. It will investigate the drug issues from the perspectives of consumers, producers, traffickers, money launderers, and law enforcement. Course material covers the experience of the United States, Latin America, Turkey, Southeast Asia, Western Europe, and Japan.","edges_from":[],"edges_to":[],"id":1593,"label":"POLI 145A","title":"International Politics and Drugs (4)"},{"dept":"HILA","description":"History of Women and Gender in Latin America (4)","edges_from":[],"edges_to":[],"id":1594,"label":"HILA 124A","title":""},{"dept":"PHYS","description":"Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and “reduced” models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, Physics 279.","edges_from":[],"edges_to":[],"id":1595,"label":"PHYS 279","title":"Neurodynamics (4)"},{"dept":"140A-B-C","description":"","edges_from":[],"edges_to":[],"id":1596,"label":"140A-B-C","title":"Fourth-Year Japanese"},{"dept":"PHYS","description":"This course discusses how living systems acquire information on their environment and exploit it to generate structures and perform functions. Biological sensing of concentrations, reaction-diffusion equations, the Turing mechanism, and applications of information theory to cellular transduction pathways and animal behavior will be presented. Recommended preparation: familiarity with probabilities at the level of undergraduate statistical mechanics and major cellular processes; basic knowledge of information theory.","edges_from":[],"edges_to":[],"id":1597,"label":"PHYS 273","title":"Information Theory and Pattern Formation in Biological Systems (4)"},{"dept":"Linguistics","description":"19. Directed Study—Language (2–4)","edges_from":[],"edges_to":[],"id":1598,"label":"Linguistics (LIDS)","title":""},{"dept":"PHYS","description":"The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from chemotaxis as a model system, signal transduction networks and cellular information processing, mechanics of the membrane, cytoskeletal dynamics, nonlinear Calcium waves. The graduate version will include a report at the level of a research paper. May be scheduled with Physics 177. Recommended preparation: an introductory course in biology is helpful but not necessary.","edges_from":[],"edges_to":[],"id":1599,"label":"PHYS 277","title":"Physics of the Cell (4)"},{"dept":"PHYS","description":"A quantitative approach to gene regulation, including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. Recommended preparation: an introductory course in biology is helpful but not necessary.","edges_from":[],"edges_to":[],"id":1600,"label":"PHYS 276","title":"Quantitative Molecular Biology (4)"},{"dept":"PHYS","description":"This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. Recommended preparation: an introduction to statistical mechanics, at least at the level of Physics 140A or Chemistry 132.","edges_from":[],"edges_to":[],"id":1601,"label":"PHYS 275","title":"Fundamentals of Biological Physics (4)"},{"dept":"PHYS","description":"The course explores genetic diversity within biological populations. Genetics fundamentals, mutation/selection equilibria, speciation, Wright-Fisher model, Kimura’s neutral theory, Luria-Delbrück test, the coalescent theory, evolutionary games and statistical methods for quantifying genetic observables such as SNPs, copy number variations, etc., will be discussed. Recommended preparation: familiarity with probabilities and PDEs at the undergraduate level; an introduction to basic evolutionary processes.","edges_from":[],"edges_to":[],"id":1602,"label":"PHYS 274","title":"Stochastic Processes in Population Genetics (4)"},{"dept":"MATH","description":"Various topics in logic. ","edges_from":[],"edges_to":[],"id":1603,"label":"MATH 268","title":"Seminar in Logic (1)"},{"dept":"MATH","description":"Various topics in combinatorics. ","edges_from":[],"edges_to":[],"id":1604,"label":"MATH 269","title":"Seminar in Combinatorics (1)"},{"dept":"ECE","description":"Groups of students work to build and demonstrate at least three engineering projects at the beginning, intermediate, and advanced levels. The final project consists of either a new project designed by the student team or extension of an existing project. The student teams also prepare a manual as part of their documentation of the final project. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":1605,"label":"ECE 196","title":"Engineering Hands-on Group Project (4)"},{"dept":"CHEM","description":"Topics of special interest in analytical chemistry. May include, but is not limited to, chemical separation, sample introductions, mass analyzers, ionization schemes, and current state-of-the-art applications in environmental and biological chemistry.","edges_from":[],"edges_to":[],"id":1606,"label":"CHEM 271","title":"Special Topics in Analytical Chemistry (4)"},{"dept":"CHEM","description":"Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 173. ","edges_from":[],"edges_to":[],"id":1607,"label":"CHEM 273","title":"Atmospheric Chemistry (4)"},{"dept":"GPPA","description":"This course will focus on three dimensions of Chinese environmental and energy policy. First, we will introduce the causes and consequences of environmental and energy problems. Second, we will examine Chinese environmental and energy governance: institutions, laws, and regulations for environmental protection, energy production and consumption. Third, we will explore the practices of the Chinese government to address the emerging environmental and energy options, focusing on climate change. Renumbered from IRGN 467. Students may not receive credit for GPPA 467 and IRGN 467.","edges_from":[],"edges_to":[],"id":1608,"label":"GPPA 467","title":"Chinese Environmental and Energy Policy (4)"},{"dept":"CHEM","description":"Introduces mathematical tools","edges_from":[],"edges_to":[],"id":1609,"label":"CHEM 276","title":"Numerical Analysis in Multiscale Biology (4)"},{"dept":"TMC","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":1610,"label":"TMC 1","title":"First Year Experience (2)"},{"dept":"WCWP","description":"Consideration of pedagogical methods appropriate to undergraduate teaching in Warren College Writing courses, under the supervision of the program director. (S/U grade only.) ","edges_from":[],"edges_to":[],"id":1611,"label":"WCWP 500","title":"Apprentice Teaching in WCWP (2 or 4)"},{"dept":"CLRE","description":"Students present a research-in-progress talk related to their ongoing ISP work. They will submit an institutional review board (IRB) proposal/report including a master’s protocol that would be submitted to the IRB. This will consist of the data management plans including case report forms, data analysis plans, sample size calculations, and budget. Mentorship and career development topics will be discussed by guest speakers from academia and industry. ","edges_from":[1165],"edges_to":[],"id":1612,"label":"CLRE 295B","title":"Independent Study Project (ISP) Seminar Series B (2)"},{"dept":"PSYC","description":"This course provides a comprehensive overview of the field of social psychology, covering a review of the field’s founding principles, classic findings, and a survey of recent findings. Topics will include social perception, attributions and attitudes, stereotypies, social influence, group dynamics, and aggressive and prosocial tendencies. ","edges_from":[],"edges_to":[],"id":1613,"label":"PSYC 104","title":"Social Psychology (4)"},{"dept":"CONT","description":"CAMP students continue service learning in underserved local communities by working as paraprofessionals mentoring high school students to prepare for college application and attendance under the guidance of school counselors and the instructor. May be taken for credit two times. ","edges_from":[1615],"edges_to":[],"id":1614,"label":"CONT 150B","title":"College Academic Mentor Program Field Study (2)"},{"dept":"CONT","description":"","edges_from":[],"edges_to":[1614],"id":1615,"label":"CONT 150A","title":""},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ","edges_from":[],"edges_to":[],"id":1616,"label":"Linguistics/Heritage Languages (LIHL) 134F","title":"Advanced Vietnamese for Vietnamese Speakers (4)"},{"dept":"EDS","description":"Students use their placements in local schools and educational settings to examine leadership research and practice topics raised in the Leadership core courses and Research and Evaluation Design/Methods courses. This is the second course in a three-course series. ","edges_from":[1618],"edges_to":[],"id":1617,"label":"EDS 291B","title":"Leadership Research Practicum (2)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[1617],"id":1618,"label":"EDS 291A","title":""},{"dept":"SE","description":"in Structural Engineering (4)","edges_from":[],"edges_to":[2616],"id":1619,"label":"SE 200","title":"Applied Mathematics"},{"dept":"SE","description":"Static, dynamic, and energy-based techniques and predicting elastic stability. Linear and nonlinear analysis of classical and shear deformable beams and plates. Ritz, Galerkin, and finite element approaches for frames and reinforced shells. Nonconservative aerodynamic (divergence flutter) and follower forces. Recommended preparation: SE 101A-C and SE 110A or equivalent background in solid mechanics and structural dynamics. ","edges_from":[],"edges_to":[],"id":1620,"label":"SE 202","title":"Structural Stability (4)"},{"dept":"SE","description":"Response of discrete linear structural systems to harmonic, periodic and transient excitations. Lagrangian mechanics. Linearization of the equations of motion. Free and forced vibrations of multi degree-of-freedom structures. Normal mode, frequency response and numerical methods. Continuous systems. ","edges_from":[],"edges_to":[2616,2409,5546,1623],"id":1621,"label":"SE 203","title":"Structural Dynamics (4)"},{"dept":"EDS","description":"Bilingual Education Practices (4)","edges_from":[],"edges_to":[],"id":1622,"label":"EDS 342A","title":"ASL-English"},{"dept":"SE","description":"Advanced analytical techniques to understand nonlinearity in mechanical vibration. Phase plane analysis instability, and bifurcations. Application in nonlinear structural resonance. Introduction to chaotic dynamics, advanced time series analysis, and using chaotic dynamics in applications such as structural damage assessment. ","edges_from":[1621],"edges_to":[],"id":1623,"label":"SE 205","title":"Nonlinear Mechanical Vibrations (4)"},{"dept":"EDS","description":"Bilingual Education Practices (4)","edges_from":[],"edges_to":[],"id":1624,"label":"EDS 342C","title":"ASL-English"},{"dept":"EDS","description":"Bilingual Education Practices (4)","edges_from":[],"edges_to":[],"id":1625,"label":"EDS 342B","title":"ASL-English"},{"dept":"HITO","description":"Medieval and early modern origins of constitutional ideas and institutions. The question of the course is: Where did the ideas and institutions embodied in the constitutions of the U.S. (1787) and of France (1791) come from? Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.","edges_from":[],"edges_to":[],"id":1626,"label":"HITO 274","title":"The Foundations of Constitutional Law (4)"},{"dept":"CHEM","description":"Theoretical basis of quantum","edges_from":[],"edges_to":[],"id":1627,"label":"CHEM 230A","title":"Quantum Mechanics I (4)"},{"dept":"CHEM","description":"Mechanics II (4)","edges_from":[],"edges_to":[],"id":1628,"label":"CHEM 230B","title":"Quantum"},{"dept":"BIOM","description":"This course will examine the innate and adaptive immune responses of humans to microbial infection. In parallel, we will explore the virulence mechanisms through which certain medically important viruses, bacteria, fungi, and parasites subvert host defense to produce infectious disease. Emphasis will be placed on basic molecular genetic and cellular approaches to understanding microbial pathogenesis and host susceptibility, including progress toward novel antibiotic and immune stimulatory therapies. ","edges_from":[523,524,525],"edges_to":[],"id":1629,"label":"BIOM 253","title":"Pathogens and Host Defense (3)"},{"dept":"CAT","description":"Course designated for lower-division Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive then individual special studies. ","edges_from":[],"edges_to":[],"id":1630,"label":"CAT 98","title":"Culture, Art, and Technology Lower-Division Group Study (2 or 4)"},{"dept":"LTWL","description":"A study of various bodies of myth: their content, form, and meaning. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":1631,"label":"LTWL 100","title":"Mythology (4)"},{"dept":"WARR","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":1632,"label":"WARR 2","title":"Transfer Year Experience (2)"},{"dept":"LTWL","description":"Greek and Roman literature in translation. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":1633,"label":"LTWL 106","title":"The Classical Tradition (4)"},{"dept":"WARR","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":1634,"label":"WARR 1","title":"First Year Experience (2)"},{"dept":"LTEN","description":"Consideration of one or more major figures, texts, or trends in the Victorian period. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1635,"label":"LTEN 246","title":"Victorian Literature (4)"},{"dept":"LTEN","description":"Consideration of some of the principal writers and movements in nineteenth-century American literature. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1636,"label":"LTEN 245","title":"Nineteenth-Century American Studies (4)"},{"dept":"HIUS","description":"Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary. ","edges_from":[],"edges_to":[],"id":1637,"label":"HIUS 286","title":"Topics in US Economic History (4)"},{"dept":"USP","description":"(Same as SOCI 183.) How does where you grow up affect where you end up? This course explores “who gets what where and why,” by examining spatial inequalities in life chances across regions, rural and urban communities, and divergent local economies in the U.S. We will “place” places within their economic, socio-cultural, and historical contexts. Readings and exercises will uncover spatial variation in inequalities by race/ethnicity, immigrant status, gender, class, and LGBTQIA status that national averages obscure. Students may not receive credit for SOCI 183 and USP 183. ","edges_from":[],"edges_to":[],"id":1638,"label":"USP 183","title":"The Geography of American Opportunity (4)"},{"dept":"USP","description":"Introduction to the history and current state of urban transportation planning, including the relationship between transportation and urban form; role of automotive, mass transit, and alternative modes; methods for transportation systems analysis; decision-making, regulatory, and financing mechanisms; and public attitudes. ","edges_from":[],"edges_to":[],"id":1639,"label":"USP 180","title":"Transportation Planning (4)"},{"dept":"USP","description":"Livable cities rely on balanced transportation systems that can mitigate the negative impacts of car-oriented environment and society. This course will explore the role of public transit in creating a balanced transportation system. A variety of public transportation systems will be analyzed. ","edges_from":[],"edges_to":[],"id":1640,"label":"USP 181","title":"Public Transportation (4)"},{"dept":"USP","description":"An undergraduate course designed to cover various aspects of Urban Planning. May be taken for credit up to two times. ","edges_from":[],"edges_to":[],"id":1641,"label":"USP 189","title":"Special Topics in Urban Planning (4)"},{"dept":"ANTH","description":"Students writing their dissertations present work-in-progress and receive structured peer and mentor feedback. Supervising or coparticipating faculty lead workshops about doctoral completion, publication, and other professionalization processes. S/U grades only. May be taken for credit six times. ","edges_from":[],"edges_to":[],"id":1642,"label":"ANTH 254","title":"Dissertation Practicum (4)"},{"dept":"ANTH","description":"This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ","edges_from":[],"edges_to":[],"id":1643,"label":"ANTH 255","title":"Understanding the Human Social Order (4)"},{"dept":"ANTH","description":"We will review the neural basis of cognition in humans and other primates. Neurobiological findings will be related to contributions from various subfields of anthropology. Brain/mind associations will be explored in the context of hominid evolution. ","edges_from":[1645],"edges_to":[],"id":1644,"label":"ANTH 256","title":"Seminar on Brain Evolution (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[1644],"id":1645,"label":"ANGR 256","title":""},{"dept":"ANTH","description":"This seminar critically examines social, cultural, and psychological theories of the person, and their relationship to conceptions of the person found in moral political and religious discourses. It explores the role of concepts of the person in ethnographic research. Formerly known as ANGR 257. ","edges_from":[],"edges_to":[],"id":1646,"label":"ANTH 257","title":"Mind, Self, and Identity (4)"},{"dept":"ANTH","description":"This graduate seminar will explore the theories and critiques of the contemporary human rights framework, through history and ethnography. ","edges_from":[],"edges_to":[],"id":1647,"label":"ANTH 250","title":"The Anthropology of Human Rights (4)"},{"dept":"ANTH","description":"How is the idea of modernity experienced in diverse cultural and historical settings? This seminar focuses on ethnographic representations of modernity, exploring such topics as globalization, mass media, consumerism, gender and modernity, modern religious movements, and theories of modernity. ","edges_from":[],"edges_to":[],"id":1648,"label":"ANTH 251","title":"The Ethnography of Modernity (4)"},{"dept":"ANTH","description":"This seminar will consider the theoretical constructions and deployments of neoliberalism, which has produced an assemblage of capitalist restructuring, transformed governance, and newly produced subjectivities. ","edges_from":[],"edges_to":[],"id":1649,"label":"ANTH 252","title":"Interrogating Neoliberalism (4)"},{"dept":"ANTH","description":"This course pulls on classical Western social theory as well as recent ethnographies to examine the role of sympathetic engagement in liberal governance. We also interrogate the role anthropology has played as liberalism’s witness in this regard. ","edges_from":[],"edges_to":[],"id":1650,"label":"ANTH 253","title":"Who Cares? Sympathy and the Conduct of Liberalism (4)"},{"dept":"ANTH","description":"Specialized scientific techniques are increasingly important to archaeology. This seminar examines chronometric date techniques, site-formation processes, and geoarchaeology and pedology, chemical analyses of soils, zooarchaeology, palaeoethnobotany, and how land-use strategies can be inferred from archaeological remains. ","edges_from":[1652],"edges_to":[],"id":1651,"label":"ANTH 258","title":"Analytical Methods in Archaeology (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[1651],"id":1652,"label":"ANGR 258","title":""},{"dept":"ANTH","description":"This seminar in psychological/psychiatric anthropology takes a comparative approach to the study of gender and mental health. Culture and feminist theory is employed to address questions of gender in relation to various problems, such as depression, anxiety, and eating disorders. ","edges_from":[],"edges_to":[],"id":1653,"label":"ANTH 259","title":"Gender and Mental Health (4)"},{"dept":"ECON","description":"Interaction between economic forces and demographic changes are considered, as are demographic composition and analysis; fertility, mortality, and migration processes and trends. Course emphasizes the creation, evaluation, and interpretation of forecasts for states, regions, and subcounty areas. Econ 178 is recommended. ","edges_from":[291,292],"edges_to":[],"id":1654,"label":"ECON 125","title":"Demographic Analysis and Forecasting (4)"},{"dept":"GPIM","description":"This research-oriented class introduces: (a) frameworks from organization theory and strategy on innovation, corporate renewal, and system change; (b) the specific situation of Japan, including Japan’s national system of innovation, research consortia and industrial policy, business models, HR practices, VC, and entrepreneurship. Ongoing changes toward open innovation and new management of technology in Japan are the subject of student research projects. May not receive credit for GPIM 410 and IRGN 490. Japan Lab.","edges_from":[],"edges_to":[],"id":1655,"label":"GPIM 410","title":"Innovation and Entrepreneurship in Japan (4)"},{"dept":"VIS","description":"This collection of courses gathers, under one cover, films that are strongly marked by period, geography, and the culture within which they received their dominating local quality. These courses pay particular attention to the stamp of place—climate, dress, habitation, language, music, politics—as well as the filmic moves that helped color such works as environmental. The series takes in the following subjects: Third World films, the Munich films (the new wave of Germans who made their first features in Munich following 1967), Japanese movies, films of the American thirties and their relationship to current thought, American Westerns, ethnographic film, Brazil’s Cinema Novo, etc. Specific topics to be covered will vary with the instructor. May be repeated twice for credit. Materials fees required. ","edges_from":[1657],"edges_to":[],"id":1656,"label":"VIS 152","title":"Film in Social Context (4)"},{"dept":"VIS","description":"","edges_from":[],"edges_to":[4681,5391,1656,1658,1660,1661],"id":1657,"label":"VIS 84","title":""},{"dept":"VIS","description":"An inquiry into a specialized alternative history of film, consisting of experimental works made outside the conventions of the movie industry that are closer in their style and nature to experimental work in painting, poetry, the sciences, etc., than to the mainstream theatrical cinema. Materials fees required. ","edges_from":[1657],"edges_to":[],"id":1658,"label":"VIS 151","title":"History of the Experimental Film (4)"},{"dept":"GPIM","description":"This seminar examines the ability of firms to increase shareholder value through improved environmental performance. Topics include product differentiation, strategic use of regulations, the “Porter hypothesis,” and environmental management systems. Readings include case studies and research articles. Renumbered from IRGN 413. Students may not receive credit for GPIM 413 and IRGN 413.","edges_from":[],"edges_to":[],"id":1659,"label":"GPIM 413","title":"Corporate Strategy and the Environment (4)"},{"dept":"VIS","description":"This course introduces students to the developing history of cinema in the Latin American region. It explores the multiple authors and film movements that engage cinema as an art form in relation to issues of modernization, development, and political and social crisis. It will regard the history of cinema in the subcontinent as a force generating important cultural transformations within the complex, conflictual processes of modernization. Students may not receive credit for both VIS 156 and VIS 125F. ","edges_from":[1657],"edges_to":[],"id":1660,"label":"VIS 156","title":"Latino American Cinema (4)"},{"dept":"VIS","description":"Examines the work of a single director or group of directors, considering the aesthetic, social, political, and/or historical aspects of the body of films and, if relevant, the directors’ broader sphere of creative production, which may include photography, art practice, writing, and/or other contributions besides film directing. May be taken up to two times for credit. Materials fees required. ","edges_from":[1657],"edges_to":[],"id":1661,"label":"VIS 155","title":"The Director Series (4)"},{"dept":"VIS","description":"Close examination of a group of films on the level of form, technique, style, and/or poetics. Emphasis will be placed on collective film viewing, in-class discussion, and formal and/or narrative analysis. Specific topics to be covered will vary by quarter and instructor. May be taken up to two times for credit.","edges_from":[],"edges_to":[],"id":1662,"label":"VIS 154","title":"Hard Look at the Movies (4)"},{"dept":"GPIM","description":"This course provides an introduction to derivative assets such as options, futures, and swap contracts. The main emphasis is on their valuation, use in hedging, and role as components of liabilities that mitigate risk and agency problems in business firms. Renumbered from IRGN 419. Students may not receive credit for GPIM 419 and IRGN 419.","edges_from":[],"edges_to":[],"id":1663,"label":"GPIM 419","title":"Risk Management (4)"},{"dept":"VIS","description":"Aims to provide historical context for computer arts by examining the interaction between the arts, media technologies, and sciences in different historical periods. Topics vary (e.g., Renaissance perspective, futurism and technology, and computer art of the 1950s and 1960s). Materials fees required. ","edges_from":[],"edges_to":[5554,5391],"id":1664,"label":"VIS 159","title":"History of Art and Technology (4)"},{"dept":"VIS","description":"Photography is so ubiquitous a part of our culture that it seems to defy any simple historical definition. Accordingly, this course presents a doubled account of the medium; it explores both the historical and cultural specificity of a singular photography as well as some of the multitude of photographies that inhabit our world. Will examine a number of the most important photographic themes from the past two hundred years. ","edges_from":[],"edges_to":[],"id":1665,"label":"VIS 158","title":"Histories of Photography (4)"},{"dept":"ETHN","description":"How did the United States become an empire? This course approaches the historical and contemporary problem of the United States as an imperial power through analyses of hierarchies and cultures at home and outside of formal US borders. Nongraduate students may enroll with consent of instructor.","edges_from":[],"edges_to":[],"id":1666,"label":"ETHN 268","title":"Theories and Cultures of US Imperialism (4)"},{"dept":"NEU","description":"Independent clinical study for medical students (S/U grades only.) (F,W,S)","edges_from":[],"edges_to":[],"id":1667,"label":"NEU 496","title":"Clinical Independent Study (1–21)"},{"dept":"COGS","description":"Specific topics in cognitive science are discussed. (May be repeated when topics vary.)","edges_from":[],"edges_to":[],"id":1668,"label":"COGS 260","title":"Seminar on Special Topics (1–4)"},{"dept":"BENG","description":"A combined lecture and laboratory course that provides an introductory treatment of probability theory, including distribution functions, moments, and random variables. Practical applications include estimation of means and variances, hypothesis testing, sampling theory, and linear regression. ","edges_from":[141,140,477,135],"edges_to":[3642,5550],"id":1669,"label":"BENG 134","title":"Measurements, Statistics, and Probability (4)"},{"dept":"BENG","description":"Discrete systems: linearity, convolution, impulse, and step responses. Linear systems properties. Difference equations. Fourier Series. Continuous FS. Discrete FS. Periodic signals, filtering, and FT. Discrete FT examples. Frequency response of linear systems. Sampling. Relationship between FT, DFT. Laplace Transform. LT and inverse LT. ","edges_from":[1672,1671],"edges_to":[5550],"id":1670,"label":"BENG 135","title":"Biomedical Signals and Systems (4)"},{"dept":"ECE","description":"","edges_from":[258],"edges_to":[3144,73,5902,1670],"id":1671,"label":"ECE 45","title":""},{"dept":"BENG","description":"","edges_from":[139,135],"edges_to":[5550,1670],"id":1672,"label":"BENG 133","title":""},{"dept":"BENG","description":"An introduction to physical principles that govern biological matter and processes, with engineering examples. Thermodynamic principles, structural basis of life, molecular reactions and kinetics, and models to illustrate biological phenomena. ","edges_from":[129,133,135,220,29,30,31],"edges_to":[],"id":1673,"label":"BENG 130","title":"Biotechnology Thermodynamics and Kinetics (4)"},{"dept":"CSE","description":"Selected topics in computer graphics, with an emphasis on recent developments. Possible topics include computer animation, shape modeling and analysis, image synthesis, appearance modeling, and real-time rendering. CSE 168 or CSE 169 recommended. ","edges_from":[],"edges_to":[],"id":1674,"label":"CSE 274","title":"Selected Topics in Graphics (2–4)"},{"dept":"HIUS","description":"103. The American City in the Twentieth Century (4)","edges_from":[],"edges_to":[],"id":1675,"label":"HIUS 148/USP","title":""},{"dept":"MSED","description":"Students will do independent study and research in preparation of their doctoral dissertation under the supervision of MSED faculty.","edges_from":[],"edges_to":[],"id":1676,"label":"MSED 299","title":"Reading and Research (1–12)"},{"dept":"CHEM","description":"Independent literature or laboratory research","edges_from":[],"edges_to":[],"id":1677,"label":"CHEM 99","title":"Independent Study (2 or 4)"},{"dept":"POLI","description":"An introduction to Marxist thought from its roots in the Western tradition through its development in non-Western contexts. Emphasis is placed on how adaptations were made in Marxism to accommodate the specific challenges of each environment.","edges_from":[],"edges_to":[],"id":1678,"label":"POLI 114B","title":"Marxist Political Thought (4)"},{"dept":"HITO","description":"The course will explore the cultural, religious, and social relationships between the three major religious groups in the medieval Mediterranean: Muslims, Christians, and Jews from the sixth through sixteenth centuries AD.","edges_from":[],"edges_to":[],"id":1679,"label":"HITO 101","title":"Jews, Christians, and Muslims (4)"},{"dept":"CHEM","description":"(Cross-listed with EDS 31.) Explores routine challenges and exceptional","edges_from":[],"edges_to":[],"id":1680,"label":"CHEM 96","title":"Introduction to Teaching Science (2)"},{"dept":"DSGN","description":"Students study, research, and implement project under the direction of a member of the faculty. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ","edges_from":[],"edges_to":[],"id":1681,"label":"DSGN 299","title":"Independent Project (2 or 4)"},{"dept":"HITO","description":"This course explores Jewish women’s experiences from the seventeenth century to the present, covering Europe, the United States, and Israel. Examines work, marriage, motherhood, spirituality, education, community, and politics across three centuries and three continents. ","edges_from":[262,263,265,267,268,269,270,271,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,554,52,53,54,1089,75,76,77],"edges_to":[],"id":1682,"label":"HITO 106","title":"Love and Family in the Jewish Past (4)"},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682],"id":1683,"label":"HILD 14","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682,2236],"id":1684,"label":"HILD 7A","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682],"id":1685,"label":"HILD 12","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682,2236],"id":1686,"label":"HILD 7C","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682,2236],"id":1687,"label":"HILD 7B","title":""},{"dept":"MMW","description":"","edges_from":[299,300,270,271,1688,5404],"edges_to":[1688,1682],"id":1688,"label":"MMW 14","title":""},{"dept":"MMW","description":"","edges_from":[299,300,270,271,1689,5433],"edges_to":[1689,1682],"id":1689,"label":"MMW 15","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682],"id":1690,"label":"HILD 11","title":""},{"dept":"HUM","description":"","edges_from":[],"edges_to":[1682],"id":1691,"label":"HUM 5","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682],"id":1692,"label":"HILD 10","title":""},{"dept":"HUM","description":"","edges_from":[],"edges_to":[1682],"id":1693,"label":"HUM 4","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682],"id":1694,"label":"HILD 2B","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682],"id":1695,"label":"HILD 2C","title":""},{"dept":"HILD","description":"","edges_from":[],"edges_to":[1682],"id":1696,"label":"HILD 2A","title":""},{"dept":"MCWP","description":"","edges_from":[],"edges_to":[1682],"id":1697,"label":"MCWP 41","title":""},{"dept":"MMW","description":"","edges_from":[],"edges_to":[1682],"id":1698,"label":"MMW 22","title":""},{"dept":"MMW","description":"","edges_from":[],"edges_to":[1682],"id":1699,"label":"MMW 21","title":""},{"dept":"MCWP","description":"","edges_from":[],"edges_to":[1682],"id":1700,"label":"MCWP 125","title":""},{"dept":"HITO","description":"Topics include the political emancipation of the Jews of Europe; the emergence of Reform, Conservative, and Modern Orthodox Judaism; Hasidism; modern anti-Semitism; Jewish socialism; Zionism; the Holocaust; the American Jewish community; the State of Israel.","edges_from":[],"edges_to":[],"id":1701,"label":"HITO 105","title":"Jewish Modernity from 1648 to 1948 (4)"},{"dept":"HITO","description":"Jews and Judaism in the Ancient and Medieval Worlds (4)","edges_from":[],"edges_to":[],"id":1702,"label":"HITO 104","title":"The"},{"dept":"GPPS","description":"Are authoritarian regimes fundamentally different from democratic ones? If so, how are they different and what are the political and economic implications of such differences? This course will explore the different logics of authoritarian politics, followed by an investigation of the growth and inequality implications of those politics. Renumbered from IRGN 481. Students may not receive credit for GPPS 481 and IRGN 481.","edges_from":[],"edges_to":[],"id":1703,"label":"GPPS 481: The Political Economy of Authoritarian Regimes (4)","title":""},{"dept":"BIOM","description":"This course will examine the basic principles of molecular and cellular biology and their impact on medicine focusing on classic discoveries and examples of approaches to current experimental problems. Emphasis areas will vary but will include genes and genomics, chromosome biology and nuclear structure, transcriptional regulation, RNA processing, cell cycle control, cell growth and death, cell differentiation and stem cell biology, molecular motors and motility, membrane trafficking and signaling. ","edges_from":[523,524,525],"edges_to":[],"id":1704,"label":"BIOM 254","title":"Molecular and Cell Biology (3)"},{"dept":"BIMM","description":"This course explores the molecular and cellular pathways that become dysregulated during carcinogenesis. We will synthesize principles from genetics and molecular, cellular, and developmental biology to investigate how normal cells evolve into tumors. We will examine how tissues distinct from the tumor itself can participate in both facilitating and fighting tumor growth and explore historical and current approaches employed to inhibit tumorigenesis. ","edges_from":[954],"edges_to":[],"id":1705,"label":"BIMM 134","title":"Biology of Cancer (4)"},{"dept":"BIMM","description":"Prokaryotic cell biology will be discussed primarily from physiological and biochemical standpoints with a focus on conceptual understanding, integration, and mechanism. Topics will vary from year to year but will include the following themes: bioenergetics, cell polarity, cell adhesion, the molecular basis of morphogenesis and differentiation, prokaryotic motility and behavior, rotary and linear molecular machines, bacterial organelles, pheromones and messengers, circadian rhythms, biological warfare, and bioremediation. ","edges_from":[1193,410],"edges_to":[],"id":1706,"label":"BIMM 130","title":"Microbial Physiology (4)"},{"dept":"MAE","description":"Computer programming in Matlab with elementary numerical analysis of engineering problems. Arithmetic and logical operations, arrays, graphical presentation of computations, symbolic mathematics, solutions of equations, and introduction to data structures. ","edges_from":[129,133],"edges_to":[],"id":1707,"label":"MAE 08","title":"Matlab Programming for Engineering Analysis (4)"},{"dept":"TDGR","description":"A seminar focusing on the current directing projects of all graduate directing students. Depending upon individual student needs, the work may include play selection, historical or sociological research, and discussion of emerging directorial concepts, the rehearsal process, and post-production evaluation. ","edges_from":[],"edges_to":[],"id":1708,"label":"TDGR 240","title":"Directing Seminar (1–6)"},{"dept":"TDGR","description":"Lab (4)","edges_from":[],"edges_to":[],"id":1709,"label":"TDGR 243","title":"Director/Playwright/Choreographer"},{"dept":"TDGR","description":"Students enrolled in this course will work on productions in the function of a director. This will include staging, creative interpretation, blocking, etc. ","edges_from":[],"edges_to":[],"id":1710,"label":"TDGR 245","title":"Directing Practicum (4)"},{"dept":"TDGR","description":"A course where playwrights and actors work together to develop","edges_from":[],"edges_to":[],"id":1711,"label":"TDGR 244","title":"New Plays Workshop (2)"},{"dept":"HIEU","description":"Language and cultural study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fee may be required. Students may not receive credit for both HIEU 124 and HIEU 124GS. Students must apply and be accepted into the Global Seminar Program.","edges_from":[],"edges_to":[],"id":1712,"label":"HIEU 124GS","title":"The City Italy (4)"},{"dept":"ANSC","description":"This course explores contemporary cultural life in South Asia by examining selected works of literature, film, and ethnography. ","edges_from":[],"edges_to":[],"id":1713,"label":"ANSC 165","title":"Contemporary South Asia (4)"},{"dept":"ANSC","description":"Explores films from China, India, Japan and other Asian countries. Popular, documentary, and ethnographic films are examined for what they reveal about family life, gender, politics, religion, social change and everyday experience in South Asia. ","edges_from":[],"edges_to":[],"id":1714,"label":"ANSC 166","title":"Film and Culture in Asia (4)"},{"dept":"ANSC","description":"This course examines the use of language difference in negotiating identity in bilingual and bidialectal communities, and in structuring interethnic relations. It addresses social tensions around language variation and the social significance of language choices in several societies. ","edges_from":[],"edges_to":[],"id":1715,"label":"ANSC 162","title":"Language, Identity, and Community (4)"},{"dept":"MSED","description":"Each practicum lasts five weeks and is designed to inform students about a faculty member’s research program. Assignment as a research assistant may be used as one practicum. This course should be taken during the first year. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":1716,"label":"MSED 295","title":"MSED Orientation Practicum (1–3)"},{"dept":"ANSC","description":"This course explores experiences of the human life cycle—birth, death, love, family relations, coming of age, suffering, the quest for identity, the need for meaning—from diverse cultural perspectives. Examines anthropological thought concerning what it means to be human. ","edges_from":[],"edges_to":[],"id":1717,"label":"ANSC 168","title":"The Human Condition (4)"},{"dept":"ANSC","description":"Examines the role of culture in the way people perceive and interact with the natural environment. Combines reading of select anthropological studies with training in ethnographic research methods. Students develop a research project and analyze data. Limit: fifteen students. ","edges_from":[],"edges_to":[],"id":1718,"label":"ANSC 169","title":"Culture and Environment: Research Seminar and Practicum (4)"},{"dept":"HIGR","description":"Scholarship on European History, 1715–1850 (4)","edges_from":[],"edges_to":[],"id":1719,"label":"HIGR 221","title":"Historical"},{"dept":"COGS","description":"This course is designed for students interested in learning about basic tools and technologies for dealing with big image data in the sense of collecting, crawling, processing, and classifying images, focusing on matching, hashing, deep learning, and online learning.","edges_from":[],"edges_to":[],"id":1720,"label":"COGS 283","title":"Big Visual Data Processing (4)"},{"dept":"COGS","description":"Brain rhythms play a critical role in perception and cognition. What are they? Where do they come from? This course will examine the origin and function of neural oscillations and the role they play in neural computation, representation, and cognition. ","edges_from":[],"edges_to":[],"id":1721,"label":"COGS 280","title":"Neural Oscillations (4)"},{"dept":"TDGR","description":"Professional Preparation for the Actor (4)","edges_from":[],"edges_to":[],"id":1722,"label":"TDGR 231A","title":""},{"dept":"Linguistics/Portuguese","description":"Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Portuguese. Must be taken in conjunction with LIPO 1D. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ","edges_from":[1724,1725],"edges_to":[],"id":1723,"label":"Linguistics/Portuguese (LIPO) 1DX","title":"Analysis of Portuguese (2.5)"},{"dept":"LIPO","description":"","edges_from":[],"edges_to":[3850,1723],"id":1724,"label":"LIPO 1C","title":""},{"dept":"LIPO","description":"","edges_from":[],"edges_to":[3850,1723],"id":1725,"label":"LIPO 1CX","title":""},{"dept":"LTCS","description":"Introduction to a script programming language (like Python + NLTK or R) and its usages in the processing of literary and historical digital corpora.","edges_from":[],"edges_to":[],"id":1726,"label":"LTCS 180","title":"Programming for the Humanities (4)"},{"dept":"ETHN","description":"(Cross-listed with MUS 126.) This course will examine the development of the blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of urban blues and the close relationship of the blues with jazz, rhythm and blues, and rock and roll.","edges_from":[],"edges_to":[],"id":1727,"label":"ETHN 178","title":"Blues: An Oral Tradition (4)"},{"dept":"NANO","description":"Introduction to DNA nanotechnology. Topics include basic design principles for DNA nanostructures and DNA origami, DNA nanomotors, computing, and the use of DNA nanotechnology in organizing other materials, nanofabrication, biosensing, and drug delivery.","edges_from":[],"edges_to":[],"id":1728,"label":"NANO 268","title":"DNA Nanotechnology (4)"},{"dept":"LIGN","description":"A forum for discussion of current issues. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":1729,"label":"LIGN 200","title":"Research Forum (2)"},{"dept":"MATH","description":"Continued development of a topic in topology. Topics include generalized cohomology theory, spectral sequences, K-theory, homotophy theory. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[1731],"edges_to":[],"id":1730,"label":"MATH 291B","title":"Further Topics in Topology (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[1730],"id":1731,"label":"MATH 291A","title":""},{"dept":"ETHN","description":"Through in-depth studies of housing segregation, urban renewal and displacement, neighborhood race effects, and the location of hazards and amenities, this course examines how space becomes racialized and how race becomes spatialized in the contemporary United States.","edges_from":[],"edges_to":[],"id":1732,"label":"ETHN 104","title":"Race, Space, and Segregation (4)"},{"dept":"ETHN","description":"(Cross-listed with USP 104.) This course will examine the city as a crucible of ethnic identity, exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present.","edges_from":[],"edges_to":[],"id":1733,"label":"ETHN 105","title":"Ethnic Diversity and the City (4)"},{"dept":"ETHN","description":"Using interdisciplinary approaches, this course examines some of the contexts in which the conditions of life and death become sites of political, economic, and cultural significance, and how categories of difference impact access to the protections of ‘humanity.’","edges_from":[],"edges_to":[],"id":1734,"label":"ETHN 106","title":"Life, Death, and the Human (4)"},{"dept":"ETHN","description":"(Cross-listed with USP 130.) This is a research course examining social, economic, and political issues in ethnic and racial communities through a variety of research methods that may include interviews and archival, library, and historical research.","edges_from":[],"edges_to":[],"id":1735,"label":"ETHN 107","title":"Fieldwork in Racial and Ethnic Communities (4)"},{"dept":"ETHN","description":"An upper-division lecture course studying representations of ethnicity in the American cinema. Topics include ethnic images as narrative devices, the social implications of ethnic images, and the role of film in shaping and reflecting societal power relations.","edges_from":[],"edges_to":[],"id":1736,"label":"ETHN 101","title":"Ethnic Images in Film (4)"},{"dept":"ETHN","description":"This course examines the role of science and technology in forming popular conceptions of race, gender and class, and vice versa. We also consider how some populations benefit from the results of experimentation while others come to be its subjects.","edges_from":[],"edges_to":[],"id":1737,"label":"ETHN 102","title":"Science and Technology in Society: Race/Gender/Class (4)"},{"dept":"ETHN","description":"This course will examine the concept of environmental racism, the empirical evidence of its widespread existence, and the efforts by government, residents, workers, and activists to combat it. We will examine those forces that create environmental injustices in order to understand its causes as well as its consequences. Students are expected to learn and apply several concepts and social scientific theories to the course material.","edges_from":[],"edges_to":[],"id":1738,"label":"ETHN 103","title":"Environmental Racism (4)"},{"dept":"ETHN","description":"(Cross-listed with MUS 151.) Aggrieved groups often generate distinctive forms of cultural expression by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States.","edges_from":[],"edges_to":[],"id":1739,"label":"ETHN 108","title":"Race, Culture, and Social Change (4)"},{"dept":"ETHN","description":"This course explores collective mobilizations for resources, recognition, and power by members of aggrieved racialized groups, past and present. Emphasis will be placed on the conditions that generate collective movements, the strategies and ideologies that these movements have developed, and on the prospect for collective mobilization for change within aggrieved communities in the present and future.","edges_from":[],"edges_to":[],"id":1740,"label":"ETHN 109","title":"Race and Social Movements (4)"},{"dept":"BGGN","description":"To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. First course in series. ","edges_from":[],"edges_to":[],"id":1741,"label":"BGGN 238A","title":"Integrative Microbiology I (4)"},{"dept":"CSE","description":"Private and public key cryptography, introduction to reduction based proofs of security, concrete security, block ciphers, pseudorandom functions and generators, symmetric encryption, asymmetric encryption, computational number theory, RSA and discrete log systems, message authentication, digital signatures, key distribution and key management. ","edges_from":[1743],"edges_to":[3623],"id":1742,"label":"CSE 207","title":"Modern Cryptography (4)"},{"dept":"CSE","description":"","edges_from":[11],"edges_to":[5784,2116,5750,1742,3623],"id":1743,"label":"CSE 202","title":""},{"dept":"GPPS","description":"This course will analyze post-1949 Chinese politics, including political institutions, the policy-making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 261. Students may not receive credit for GPPS 204 and IRGN 261. May be coscheduled with GPPS 404.","edges_from":[],"edges_to":[],"id":1744,"label":"GPPS 204","title":"Chinese Politics (4)"},{"dept":"Linguistics/Spanish","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1B. ","edges_from":[1746,1747],"edges_to":[],"id":1745,"label":"Linguistics/Spanish (LISP) 1BX","title":"Analysis of Spanish (2.5)"},{"dept":"LISP","description":"","edges_from":[],"edges_to":[1745,4823],"id":1746,"label":"LISP 1A","title":""},{"dept":"LISP","description":"","edges_from":[],"edges_to":[1745,4823],"id":1747,"label":"LISP 1AX","title":""},{"dept":"BGGN","description":"This course covers graduate level lectures on developmental biology, emphasizing the use of genetically tractable model systems. Discussion of recent research articles is an integral aspect of this course. Students are introduced to classical experiments and given detailed coverage of recent fundamental findings in developmental biology. ","edges_from":[],"edges_to":[],"id":1748,"label":"BGGN 228","title":"Graduate Developmental Biology (4)"},{"dept":"BGGN","description":"This course consists of a review of fundamental concepts together with an in-depth analysis of the structure, genetics, multiplication and oncogenicity of animal viruses. Particular emphasis will be given to the DNA and RNA tumor viruses. The format of this section includes lectures and discussion of selected papers. ","edges_from":[],"edges_to":[],"id":1749,"label":"BGGN 226","title":"Graduate Animal Virology (4)"},{"dept":"MGT","description":"Directed individual study","edges_from":[],"edges_to":[],"id":1750,"label":"MGT 199","title":"Directed Independent Study (4)"},{"dept":"BGGN","description":"The course is devoted to immunology and is organized as a combined lecture-tutorial course stressing classical as well as current literature. Each week will compose an independent section. Topics will include cellular interactions involved in the immune response and the molecular biology unique to lymphoid factor and receptors. ","edges_from":[],"edges_to":[],"id":1751,"label":"BGGN 225","title":"Graduate Immunology (4)"},{"dept":"BGGN","description":"Coverage of modern cell biology. Topics may include structure and function of membranes; ion pumps, ion channels, transmembrane signaling; receptor-mediated endocytosis; protein targeting; the role of RER and Golgi apparatus; the biosynthesis of intracellular organelles in animal and plant cells; the cytoskeleton, motility, molecular motors, and cell-cell interactions; mitosis and the control of cell division; and cell-signaling mechanisms and discussions on molecular approaches to cell biology. ","edges_from":[1753,1754,1755],"edges_to":[1528],"id":1752,"label":"BGGN 222","title":"Graduate Cell Biology (6)"},{"dept":"BGGN","description":"","edges_from":[],"edges_to":[1752,1528],"id":1753,"label":"BGGN 220F","title":""},{"dept":"BGGN","description":"","edges_from":[],"edges_to":[1752,1528],"id":1754,"label":"BGGN 220E","title":""},{"dept":"BGGN","description":"","edges_from":[],"edges_to":[1752,1528],"id":1755,"label":"BGGN 220D","title":""},{"dept":"BGGN","description":"Provides a broad, advanced-level coverage of modern molecular biology for first-year graduate students. Topics include prokaryotic and eukaryotic gene structure and regulation, chromatin structure, DNA replication, translation, mechanisms of transcription, and an introduction to viruses. Open only to students enrolled in a graduate degree program. Letter grades only.","edges_from":[],"edges_to":[],"id":1756,"label":"BGGN 220","title":"Graduate Molecular Biology (6)"},{"dept":"BIOM","description":"Molecular basis of drug action; basis of disease; drug invention. Topics may include: basic principles, autonomic nervous system; CV, pulmonary, diabetes, cancer therapy, pharmacotherapy of CNS disease (depression, etc.) pain, infections (bacterial, viral, malarial). Students that have taken both 255A and 255B cannot take 255 for credit. ","edges_from":[523,524,525],"edges_to":[],"id":1757,"label":"BIOM 255","title":"Molecular Basis of Drug Action and Disease Therapy (3)"},{"dept":"CHIN","description":"and Trade (4-4-4)","edges_from":[],"edges_to":[],"id":1758,"label":"CHIN 186A-B-C","title":"Readings in Chinese Economics, Politics,"},{"dept":"BIPN","description":"Normal function and diseases of the major hormone systems of the body including the hypothalamus/pituitary axis, the thyroid gland, reproduction and sexual development, metabolism and the pancreas, bone and calcium metabolism, and the adrenal glands. Students may not receive credit for both BIPN 120 and BICD 150. ","edges_from":[1192],"edges_to":[],"id":1759,"label":"BIPN 120","title":"Endocrinology (4)"},{"dept":"ENG","description":"Examines the engineering/entrepreneurism interface. Discovery, development, and implementation of new product ideas. Understanding markets, competitors, and selling innovations. Cultivating effective working relationships between research, engineering, manufacturing, and marketing elements of an organization. Priority enrollment given to engineering majors.","edges_from":[],"edges_to":[],"id":1760,"label":"ENG 201","title":"Venture Mechanics (4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[5664,1865,5134,5135,1552,1553,1193,410],"id":1761,"label":"CHEM 140B","title":""},{"dept":"ENG","description":"Course includes the examination of business plans developed by early stage technology businesses. Students expected to work on the development of business plans for real, innovative business organizations. Will explore all of the business research and analysis that needs to be undertaken in order to develop a complete business plan. Completion of ENG 201 or ENG 202 preferred.","edges_from":[],"edges_to":[],"id":1762,"label":"ENG 203","title":"Applied Innovations (4)"},{"dept":"ENG","description":"Case studies of start-ups, strategic technology management, practice in use of industrial decision-making tools, and speakers from successful firms combined with experience in making management decisions dynamically in a competitive computer-simulated enterprise. Field study of ongoing processes in a local high technology company. Priority enrollment given to engineering majors.","edges_from":[],"edges_to":[],"id":1763,"label":"ENG 202","title":"Enterprise Dynamics (4)"},{"dept":"ENG","description":"Corporate Entrepreneurship for Global Competitiveness (4)","edges_from":[],"edges_to":[],"id":1764,"label":"ENG 207","title":""},{"dept":"LTEU","description":"Attention given to historical and cultural contexts. Topics to be considered include the concept of nature, the reaction to science, the role of the imagination.","edges_from":[],"edges_to":[],"id":1765,"label":"LTEU 110","title":"European Romanticism (4)"},{"dept":"ECE","description":"The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":1766,"label":"ECE 87","title":"Freshman Seminar (1)"},{"dept":"ECON","description":"Course will study economic models in which standard economic rationality assumptions are combined with psychologically plausible assumptions on behavior. We consider whether the new models improve ability to predict and understand phenomena including altruism, trust and reciprocity, procrastination, and self-control. ","edges_from":[796],"edges_to":[],"id":1767,"label":"ECON 142","title":"Behavioral Economics (4)"},{"dept":"ECON","description":"Explore use of experiments to study individual and interactive (strategic) decision-making. Topics may include choice over risky alternatives, altruism and reciprocity, allocation and information aggregation in competitive markets, cooperation and collusion, bidding in auctions, strategy in coordination and “outguessing” games. ","edges_from":[797],"edges_to":[],"id":1768,"label":"ECON 143","title":"Experimental Economics (4)"},{"dept":"ECON","description":"Provides an overview of the physician, hospital, and pharmaceutical segments of the health sector. Uses models of physician behavior, for-profit and nonprofit institutions to understand the trade-offs facing health-sector regulators and the administrators of public and private insurance arrangements. ","edges_from":[542,543],"edges_to":[],"id":1769,"label":"ECON 140","title":"Economics of Health Producers (4)"},{"dept":"ECON","description":"Demand for health care and health insurance, employer-provision of health insurance and impact on wages and job changes. Cross-country comparisons of health systems. ","edges_from":[797],"edges_to":[],"id":1770,"label":"ECON 141","title":"Economics of Health Consumers (4)"},{"dept":"ECON","description":"Theory of business cycles and techniques used by governments to stabilize an economy. Discussion of recent economic experience. ","edges_from":[1290],"edges_to":[],"id":1771,"label":"ECON 146","title":"Economic Stabilization (4)"},{"dept":"ECON","description":"Examination of issues in education using theoretical and empirical approaches from economics. Analysis of decisions to invest in education. Consideration of various market structures in education, including school choice and school finance programs. ","edges_from":[291,547,292,543],"edges_to":[],"id":1772,"label":"ECON 147","title":"Economics of Education (4)"},{"dept":"ECON","description":"Examines conservation of biodiversity from an economic perspective. Topics include valuing biodiversity, defining successful conservation, and evaluating the cost effectiveness of policies such as conservation payments, ecotourism, and privatization. Emphasis on forests, coral reefs, elephants, tigers, and sea turtles. ","edges_from":[547,543],"edges_to":[],"id":1773,"label":"ECON 144","title":"Economics of Conservation (4)"},{"dept":"ECON","description":"Economic issues associated with oceans. Economics of managing renewable resources in the oceans, with an emphasis on fisheries, economics of conservation and biodiversity preservation for living marine resources, with an emphasis on whales, dolphins, sea turtles, and coral reefs. ","edges_from":[547,543],"edges_to":[],"id":1774,"label":"ECON 145","title":"Economics of Ocean Resources (4)"},{"dept":"COMM","description":"Contributions of the field of communication to the study of surveillance and risk. Critical and legal perspectives on consumer research, copyright enforcement, the surveillance capacity of Information and Communication Technologies (ICTs), closed-circuit television, interactive media, and the “rhetorics of surveillance” in television and film. ","edges_from":[537,538,539,540],"edges_to":[],"id":1775,"label":"COMM 166","title":"Surveillance, Media, and the Risk Society (4)"},{"dept":"COMM","description":"This course aims to unveil the vast and largely hidden infrastructures silently shaping how digital communication take place in contemporary societies as well as the visible and invisible geographic of power and inequality these infrastructures are helping to create. ","edges_from":[537,538,539,540],"edges_to":[],"id":1776,"label":"COMM 164","title":"Behind the Internet: Invisible Geographies of Power and Inequality (4)"},{"dept":"COMM","description":"This course examines some of the changing cultural, social, technological, and political meanings; practices; and aspirations that together constitute what is and has been called freedom. ","edges_from":[537,538,539,540],"edges_to":[],"id":1777,"label":"COMM 163","title":"Concepts of Freedom (4)"},{"dept":"COMM","description":"We examine how people interact with products of popular culture, production of cultural goods by looking at conditions in cultural industries. We examine film, music, publishing, focusing on how production is organized, what kind of working conditions arise, how products are distributed. ","edges_from":[537,538,539,540],"edges_to":[],"id":1778,"label":"COMM 162","title":"Advanced Studies in Cultural Industries (4)"},{"dept":"COMM","description":"The character and forms of international communications. Emerging structures of international communications. The United States as the foremost international communicator. Differential impacts of the free flow of information and the unequal roles and needs of developed and developing economies in international communications. ","edges_from":[537,538,539,540],"edges_to":[],"id":1779,"label":"COMM 160","title":"Political Economy and International Communication (4)"},{"dept":"LTCS","description":"in Queer Cultures/Queer Subcultures (4)","edges_from":[],"edges_to":[],"id":1780,"label":"LTCS 131","title":"Topics"},{"dept":"PHYS","description":"Studies of special topics in physics under the direction of a faculty member. ","edges_from":[],"edges_to":[],"id":1781,"label":"PHYS 297","title":"Special Studies in Physics (1–4)"},{"dept":"COMM","description":"The relationship between small groups and dominant culture is studied by exploring the world of deaf people who have for the past twenty years begun to speak as a cultural group. Issues of language, communication, self-representation, and social structure are examined. ","edges_from":[537,538,539,540],"edges_to":[],"id":1782,"label":"COMM 169","title":"Deaf Culture in the U.S. (4)"},{"dept":"COMM","description":"This course is designed to introduce students to multiple settings where bilingualism is the mode of communication. Examination of how such settings are socially constructed and culturally based. Language policy, bilingual education, and linguistic minorities, as well as field activities included. ","edges_from":[537,538,539,540],"edges_to":[],"id":1783,"label":"COMM 168","title":"Bilingual Communication (4)"},{"dept":"SE","description":"Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ","edges_from":[1785],"edges_to":[],"id":1784,"label":"SE 182","title":"Foundation Engineering (4)"},{"dept":"SE","description":"","edges_from":[1129,652],"edges_to":[1784,3359,2879],"id":1785,"label":"SE 181","title":""},{"dept":"CHEM","description":"The chemistry of the main group elements in","edges_from":[],"edges_to":[4545,1787,4548],"id":1786,"label":"CHEM 120A","title":"Inorganic Chemistry I (4)"},{"dept":"CHEM","description":"A continuation of the discussion of structure, bonding, and reactivity with emphasis on transition metals and other elements using filled d orbitals to form bonds. Coordination chemistry in terms of valence bond, crystal field, and molecular orbital theory. The properties and reactivities of transition metal complexes including organometallic compounds. ","edges_from":[1786],"edges_to":[],"id":1787,"label":"CHEM 120B","title":"Inorganic Chemistry II (4)"},{"dept":"CSE","description":"Theoretical foundations of machine learning. Topics include concentration of measure, the PAC model, uniform convergence bounds, and VC dimension. Possible topics include online learning, learning with expert advice, multiarmed bandits, and boosting. Recommended preparation: CSE 103 and CSE 101 or similar course. ","edges_from":[],"edges_to":[],"id":1788,"label":"CSE 250C","title":"Machine Learning Theory (4)"},{"dept":"CSE","description":"Methods based on probability theory for reasoning and learning under uncertainty. Content may include directed and undirected probabilistic graphical models, exact and approximate inference, latent variables, expectation-maximization, hidden Markov models, Markov decision processes, applications to vision, robotics, speech, and/or text. Recommended preparation: CSE 103 or similar course. ","edges_from":[],"edges_to":[],"id":1789,"label":"CSE 250A","title":"Principles of Artificial Intelligence: Probabilistic Reasoning and Learning (4)"},{"dept":"ECON","description":"Advanced calculus review for new graduate students. ","edges_from":[],"edges_to":[],"id":1790,"label":"ECON 205","title":"Mathematics for Economists (4)"},{"dept":"ECON","description":"This course reviews the theoretical foundations for the analysis of contractual interaction and it covers a selection of game-theoretic models and applications. The course is intended to provide a foundation for theoretical research on contracts as well as applied research on topics in behavioral/experimental, development, environmental, international, and labor economics, law and economics, and macroeconomics. ","edges_from":[320,318,319],"edges_to":[],"id":1791,"label":"ECON 204","title":"Contract Theory (4)"},{"dept":"ECON","description":"Further topics in consumer and producer theory, intertemporal optimization, and decision making under uncertainty. (Previously numbered Econ 200D.) ","edges_from":[320,318,319],"edges_to":[],"id":1792,"label":"ECON 206","title":"Decisions (4)"},{"dept":"ECON","description":"An intensive examination of selected topics in economic theory. Course topic nonrepetitive in a three-year cycle. ","edges_from":[1794,1795],"edges_to":[],"id":1793,"label":"ECON 201","title":"Advanced Economic Theory (4)"},{"dept":"ECON","description":"","edges_from":[1580,109,1581],"edges_to":[1793],"id":1794,"label":"ECON 213","title":""},{"dept":"ECON","description":"","edges_from":[],"edges_to":[4776,1793],"id":1795,"label":"ECON 207","title":""},{"dept":"ANAR","description":"Our campus houses some of the earliest human settlements in North America. This course reviews the archaeology, climate, and environment of the sites and outlines research aimed at understanding the lives of these early peoples. ","edges_from":[],"edges_to":[],"id":1796,"label":"ANAR 118","title":"Archaeology of the UC San Diego Campus (4)"},{"dept":"ANAR","description":"This course provides students with a broad understanding of the most current sea level change research that has been conducted around the globe. Students will be introduced to the general terminology used in this field, coastal shallow marine and deep sea sea-level indicators, and their degree of uncertainty, along with corresponding dating methods. An emphasis will be given to sea-level studies conducted in Israel and neighboring lands. ","edges_from":[],"edges_to":[],"id":1797,"label":"ANAR 116","title":"Sea Level Change—The Israel Case in World Perspective (4)"},{"dept":"ANAR","description":"The archaeological field and laboratory class will take place in the field in San Diego or adjacent counties. This course is a hands-on introduction to the research design of interdisciplinary archaeological projects and techniques of data collection, including survey, excavation, or laboratory analysis. May be taken for credit up to two times. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":1798,"label":"ANAR 117","title":"Archaeological Field and Lab Class, Southern California (4)"},{"dept":"ANAR","description":"Israel, like California, is located on a complex tectonic boundary, which is responsible for a history of earthquakes, volcanism, and tsunamis. How great is the risk today and what will be the regional impact of a major earthquake? We will try to answer these questions by understanding the basic geology of Israel and reviewing the history of natural disasters as recorded by archaeology and historical documentation. ","edges_from":[],"edges_to":[],"id":1799,"label":"ANAR 114","title":"Environmental Hazards in Israel (4)"},{"dept":"ANAR","description":"Students will develop a broad understanding of the morphological features that are identified in coastal systems, and the short- and long-term processes that shape them through time. Students will become familiar with terminology, approaches, and methodologies used in coastal geomorphological research, which are relevant for today’s study of climate and environmental change, with a focus on coastal sedimentary environments and an emphasis on the coast of Israel from ancient times until today. ","edges_from":[],"edges_to":[],"id":1800,"label":"ANAR 115","title":"Coastal Geomorphology and Environmental Change—Perspectives from Israel and the South-Eastern Mediterranean (4)"},{"dept":"ANAR","description":"The origins and development of early cities in the Old and New Worlds are compared and contrasted from an archaeological anthropological perspective. ","edges_from":[],"edges_to":[],"id":1801,"label":"ANAR 112","title":"Ancient Urbanism (4)"},{"dept":"ECON","description":"Further topics in game theory and the economics of information. (Previously numbered Econ 200F.) ","edges_from":[320,318,319],"edges_to":[],"id":1802,"label":"ECON 208","title":"Games and Information (4)"},{"dept":"ANAR","description":"As part of the broad discipline of anthropology, archaeology provides the long chronological record needed for investigating human and social evolution. The theories and methods used in this field are examined. (Archaeology core sequence course.) Recommended preparation: ANTH 3. ","edges_from":[],"edges_to":[],"id":1803,"label":"ANAR 111","title":"Foundations of Archaeology (4)"},{"dept":"LTCS","description":"and Historical Analysis of Cultural Texts (4)","edges_from":[],"edges_to":[],"id":1804,"label":"LTCS 225","title":"Interdisciplinary"},{"dept":"LTCS","description":"This course will consider various theoretical approaches to film texts (historical-materialist, feminist, psychoanalytic, semiotic) as well as the history of film, the political economy of film production and distribution, exhibition practices, and spectatorship in national and transnational contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1805,"label":"LTCS 222","title":"Topics in Theory and History of Film (4)"},{"dept":"GPEC","description":"Analytical review of South Korea’s economic performance. Examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea’s industrial structure, including the role of large enterprises (chaebol); role of government; links between Korea and other countries. Renumbered from IRGN 485. Student may not receive credit for GPEC 485 and IRGN 485.","edges_from":[],"edges_to":[],"id":1806,"label":"GPEC 485","title":"The Korean Economy (4)"},{"dept":"SOCI","description":"Some people do much better than others in the world of work. Causes and consequences of this inequality will be examined: How do characteristics of individuals (e.g., class, gender, race, education, talent) and characteristics of jobs affect market outcomes? ","edges_from":[1808,1807],"edges_to":[1807],"id":1807,"label":"SOCI 148E","title":"Inequality and Jobs (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[1807],"id":1808,"label":"SOCC 148L","title":""},{"dept":"PHYS","description":"Computing in Science and Engineering (4)","edges_from":[],"edges_to":[],"id":1809,"label":"PHYS 244","title":"Parallel"},{"dept":"PHYS","description":"Models (4)","edges_from":[],"edges_to":[],"id":1810,"label":"PHYS 242","title":"Computational Physics II: PDE and Matrix"},{"dept":"PHYS","description":"Introduction to methods of stochastic modeling and simulation. Topics include: random variables; stochastic processes; Markov processes; one-step processes; the Fokker-Planck equation and Brownian motion; the Langevin approach; Monte-Carlo methods; fluctuations and the Boltzmann equation; and stochastic differential equations.","edges_from":[],"edges_to":[],"id":1811,"label":"PHYS 243","title":"Stochastic Methods (4)"},{"dept":"PHYS","description":"Project-based computational physics laboratory course with student’s choice of Fortran90/95 or C/C++. Applications from materials science to the structure of the early universe are chosen from molecular dynamics, classical and quantum Monte Carlo methods, physical Langevin/Fokker-Planck processes, and other modern topics.","edges_from":[],"edges_to":[],"id":1812,"label":"PHYS 241","title":"Computational Physics I: Probabilistic Models and Simulations (4)"},{"dept":"MATH","description":"(Conjoined with Math 175.) Mathematical background","edges_from":[],"edges_to":[],"id":1813,"label":"MATH 275","title":"Numerical Methods for Partial Differential Equations (4)"},{"dept":"MATH","description":"(Conjoined with Math 174.) Floating point","edges_from":[],"edges_to":[4042],"id":1814,"label":"MATH 274","title":"Numerical Methods for Physical Modeling (4)"},{"dept":"MATH","description":"(Cross-listed with BENG 276/CHEM 276.) Introduces","edges_from":[],"edges_to":[],"id":1815,"label":"MATH 276","title":"Numerical Analysis in Multiscale Biology (4)"},{"dept":"COGR","description":"This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ","edges_from":[],"edges_to":[],"id":1816,"label":"COGR 285","title":"Ethnography Practicum (4)"},{"dept":"HIEU","description":"Cross-listed with RELI 147. This course explores the history of how Western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. Students may not receive credit for both HIEU 107 and RELI 147. +","edges_from":[],"edges_to":[],"id":1817,"label":"HIEU 107","title":"Pagan Europe and its Christian Aftermath (4)"},{"dept":"MATH","description":"(Conjoined with Math 179.) Mathematical models of physical","edges_from":[],"edges_to":[],"id":1818,"label":"MATH 279","title":"Projects in Computational and Applied Mathematics (4)"},{"dept":"HIEU","description":"A survey course of the history of the Byzantine state from the reign of Constantine to the fall of Constantinople. This course will emphasize the importance of the Byzantine state within a larger European focus, its relationship to the emerging Arab states, its political and cultural contributions to Russia and the late medieval west. +","edges_from":[],"edges_to":[],"id":1819,"label":"HIEU 104","title":"Byzantine Empire (4)"},{"dept":"EDS","description":"This course series is for undergraduates who are exploring a career in elementary school teaching. Topics addressed include: theories of teaching and learning; research on cognition and motivation; and the cultural context of classroom teaching and learning. EDS 128A focuses on the learner in the teaching-learning interaction and EDS 128B focuses on the teacher in the teaching-learning interaction. ","edges_from":[810,1823,813,1822,1821],"edges_to":[],"id":1820,"label":"EDS 128 A-B","title":"Introduction to Teaching and Learning (Elementary) (4-4)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[1820],"id":1821,"label":"EDS 128A","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[4012,1820,4013],"id":1822,"label":"EDS 134","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[1820],"id":1823,"label":"EDS 128B","title":""},{"dept":"CHEM","description":"A survey of inorganic chemistry to prepare for graduate research in the field, including a detailed introduction to nuclear magnetic resonance (NMR), followed by applications of NMR to structural and mechanistic problems in inorganic chemistry.","edges_from":[],"edges_to":[],"id":1824,"label":"CHEM 262","title":"Inorganic Chemistry and NMR (4)"},{"dept":"GPPA","description":"Course on the challenges of improving cyber security in the United States and globally. Topics to include the technical challenges involving cyber security, an understanding of the range of threats, fundamental problems of designing prudent national policies that are politically feasible, and the possibilities and limitations regarding the designing of prudent cooperative strategies. Renumbered from IRGN 477. Students may not receive credit for GPPA 477 and IRGN 477.","edges_from":[],"edges_to":[],"id":1825,"label":"GPPA 477","title":"Cyber Security (4)"},{"dept":"HINE","description":"Course will analyze and compare major myths","edges_from":[],"edges_to":[],"id":1826,"label":"HINE 113","title":"Ancient Near East Mythology (4)"},{"dept":"GPCO","description":"This capstone is intended as a culminating intellectual experience for students, particularly those in economics-oriented tracks. Students will learn to analyze “what works,” integrating a technical understanding of innovation with rigorous statistical analysis. The first half of the course focuses on building a set of science/engineering tools, and the second half on building statistical tools of analysis. Renumbered from IRCO 468. Students may not receive credit for GPCO 468 and IRCO 468. ","edges_from":[1828],"edges_to":[],"id":1827,"label":"GPCO 468: Evaluating Technological Innovation (4)","title":""},{"dept":"GPEC","description":"","edges_from":[1840,1841],"edges_to":[1827,3372],"id":1828,"label":"GPEC 446","title":""},{"dept":"CHEM","description":"(Cross-listed with BGGN 264.) An introduction of virus structures,","edges_from":[],"edges_to":[],"id":1829,"label":"CHEM 264","title":"Structural Biology of Viruses (4)"},{"dept":"HINE","description":"A survey of the Middle East from the rise of Islam to the region’s economic, political, and cultural integration into the West (mid-nineteenth century). Emphasis on socioeconomic and political change in the early Arab empires and the Ottoman state. +","edges_from":[],"edges_to":[],"id":1830,"label":"HINE 114","title":"History of the Islamic Middle East (4)"},{"dept":"HIUS","description":"Examine the development of apocalyptic Jewish movements in the Second Temple period and the influence these movements had on Rabbinic Judaism and early Christianity.","edges_from":[],"edges_to":[],"id":1831,"label":"HIUS 106S","title":"Apocalyptic Judaism (4)"},{"dept":"PSYC","description":"This course provides an overview and training in the use of psychophysiological methods to investigate the cognitive and emotional process involved in understanding and reacting to other people. Students will develop individual research questions and actively participate in designing and conducting the experiments. ","edges_from":[],"edges_to":[],"id":1832,"label":"PSYC 114","title":"Psychophysiological Perspectives on the Social Mind Laboratory (4)"},{"dept":"PSYC","description":"This course provides experience conducting educational research and outreach for children in greater San Diego County. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":1833,"label":"PSYC 117","title":"Laboratory in Educational Research and Outreach (4)"},{"dept":"PSYC","description":"This course provides examination of theory, research design, and methods for clinical research. Students complete an internship at a clinical research lab, culminating in a paper. May be taken for credit three times for a total of eight units. Students may not receive credit for both PSYC 116 and PSYC 107. ","edges_from":[1835],"edges_to":[],"id":1834,"label":"PSYC 116","title":"Laboratory in Clinical Psychology Research (2, 4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[1834],"id":1835,"label":"PSYC 199","title":""},{"dept":"SE","description":"Design and analysis of bridge structures, construction methods, load conditions. Load paths and distribution of dead and live loads. Service, strength, and extreme event limit states and other load and resistance factor design (LRFD) principles. Design of pre-stressed concrete bridges. Special problems in analysis—concrete box girders, curved and skewed bridges, environmental and seismic loads. Conceptual/preliminary bridge design project. Recommended preparation: SE 223 (Advanced Seismic Design of Structures). ","edges_from":[1837,1838],"edges_to":[],"id":1836,"label":"SE 213","title":"Bridge Design (4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[5324,1836],"id":1837,"label":"SE 201A","title":""},{"dept":"SE","description":"","edges_from":[],"edges_to":[1836],"id":1838,"label":"SE 211","title":""},{"dept":"PSYC","description":"This course provides research seminars by a range of departmental faculty, exposing students to contemporary research problems in many areas of psychology. Class discussions will follow faculty presentations. Must be taken for a letter grade for the Psychology Honors Program. ","edges_from":[],"edges_to":[5475],"id":1839,"label":"PSYC 110","title":"Juniors Honors Research Seminars (4)"},{"dept":"GPCO","description":"This course is designed to provide proficiency in quantitative methods that are used for optimization and decision making. The use of spreadsheets is applied to data analysis and problem solving. Statistical theory and regression analysis are introduced. Renumbered from IRCO 453. Students may not receive credit for GPCO 453 and IRCO 453. ","edges_from":[],"edges_to":[2120,1828,3372],"id":1840,"label":"GPCO 453","title":"Quantitative Methods I (4)"},{"dept":"GPCO","description":"The course introduces the theory and application of econometric regression for policy analysis. Students will learn the underlying mathematical formalism, basic data management and coding skills, and appropriate interpretation and meaningful presentation of results. Renumbered from IRCO 454. Students may not receive credit for GPCO 454 and IRCO 454. ","edges_from":[],"edges_to":[4444,1828,4443,3372],"id":1841,"label":"GPCO 454","title":"Quantitative Methods II (4)"},{"dept":"HIUS","description":"American Foreign Relations, since 1900 (4)","edges_from":[],"edges_to":[],"id":1842,"label":"HIUS 106B","title":""},{"dept":"HIUS","description":"Course examines range of public and private interactions between the United States and the world, from the founding of the republic to the Spanish-American War. Topics include origins of federal foreign policy making power, territorial and commercial and ideological expansionism.","edges_from":[],"edges_to":[],"id":1843,"label":"HIUS 106A","title":"American Foreign Relations, to 1900 (4)"},{"dept":"POLI","description":"Examination of effects of national policies and international collaboration on public and private international financial institutions, in particular the management of international debt crises, economic policy coordination, and the role of international lender of last resort.","edges_from":[],"edges_to":[],"id":1844,"label":"POLI 144D","title":"International Political Economy: Money and Finance (4)"},{"dept":"POLI","description":"Examines theories of trade and protectionism, focusing both on relations among advanced industrial nations and on relations between developed and developing countries. Topics include standard and strategic trade theory, nontariff barriers to trade, export-led growth strategies, regional trade agreements, and the future of the WTO.","edges_from":[],"edges_to":[],"id":1845,"label":"POLI 144E","title":"The Politics of International Trade (4)"},{"dept":"POLI","description":"of International Trade and Finance (4)","edges_from":[],"edges_to":[],"id":1846,"label":"POLI 144F","title":"The Politics"},{"dept":"MAE","description":"Atomic structure and physical properties of engineering materials including metals, ceramics, glasses, polymers, and composite materials. Defects and phase diagram of materials. Material testing and processing. Program or materials fees may apply. ","edges_from":[1318,133,38,1079,1848,29],"edges_to":[],"id":1847,"label":"MAE 21","title":"Aerospace Materials Science (4)"},{"dept":"MC","description":"","edges_from":[],"edges_to":[1847],"id":1848,"label":"MC 25","title":""},{"dept":"10A-B-C","description":"(No prior study of Japanese language is required for 10A.) Prerequisites","edges_from":[],"edges_to":[],"id":1849,"label":"10A-B-C","title":"First-Year Japanese"},{"dept":"TDGR","description":"Seminar acquaints doctoral students of all levels with research methods, theoretical models, publishing protocol, professional preparation, and pedagogical approaches particular to theatre and performance studies. Course assignments are tailored to students’ scholarly interests and progress toward degree. ","edges_from":[],"edges_to":[],"id":1850,"label":"TDGR 289","title":"Introduction to Doctoral Studies (4)"},{"dept":"SOCI","description":"An introduction to the organizing themes and ideas, empirical concerns, and analytical approaches of the discipline of sociology. The course focuses on both classical and contemporary views of modern society, on the nature of community, and on inequality, with special attention to class, race, and gender. Materials include both theoretical statements and case studies. Will not receive credit for SOCI 1 and SOCL 1A.","edges_from":[],"edges_to":[3233,2126],"id":1851,"label":"SOCI 1","title":"Introduction to Sociology (4)"},{"dept":"POLI","description":"Our understanding of politics, power, conflict, and quality continue to be challenged and transformed by considering gender as it intersects with nationality, race, class, and ethnicity. We will consider the importance of gender in each of the subfields of political science.","edges_from":[],"edges_to":[],"id":1852,"label":"POLI 115A","title":"Gender and Politics (4)"},{"dept":"LTEN","description":"The study of writing produced over an extended period of time by members of an identifiable cultural formation as defined (e.g., by political/social ideology, class, religion, ethnicity, or sexual preference). May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1853,"label":"LTEN 272","title":"Cultural Traditions in English (4)"},{"dept":"LTWL","description":"A lecture/discussion course designed to explore a variety of topics in medieval literatures and cultures. Topics may include a genre or combination of genres (e.g., drama, romance, lyric, allegory), or a central theme (e.g., the Crusades or courtly love).","edges_from":[],"edges_to":[],"id":1854,"label":"LTWL 111","title":"Medieval Studies (4)"},{"dept":"LTEN","description":"Consideration of one or more genres present in English and/or American literature; for instance, the ballad, landscape poetry, comedy, satire, the familiar essay. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":1855,"label":"LTEN 271","title":"Genres in English (4)"},{"dept":"LTWL","description":"A study of fiction written for the young adult in various cultures and periods. Consideration will be given to the young adult hero in fiction. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":1856,"label":"LTWL 116","title":"Adolescent Literature (4)"},{"dept":"LTWL","description":"A study of literature written for children in various cultures and periods. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":1857,"label":"LTWL 114","title":"Children’s Literature (4)"},{"dept":"TDGR","description":"Voice exercises designed","edges_from":[],"edges_to":[],"id":1858,"label":"TDGR 214C","title":"Voice for Theatre I—Part III (3)"},{"dept":"TDGR","description":"II—Part I (3)","edges_from":[],"edges_to":[],"id":1859,"label":"TDGR 214B","title":"Voice for Theatre"},{"dept":"TDGR","description":"Voice exercises designed to “free the voice” with emphasis","edges_from":[],"edges_to":[],"id":1860,"label":"TDGR 214A","title":"Voice for Theatre I—Part I (3)"},{"dept":"SE","description":"Damage detection, materials characterization. Introduction to nondestructive evaluation. Impedance-based methods, ultrasonics, acoustic, thermography, shearography, liquid penetrant, proof testing, stress coatings, vibrational techniques. ","edges_from":[1308,652],"edges_to":[],"id":1861,"label":"SE 163","title":"Nondestructive Evaluation (4)"},{"dept":"BIOM","description":"Molecular and cellular mechanisms underlie the actions of environmental toxicants. This course will investigate approaches to study the impact of environmental toxicants on human health. Other modern approaches that are being implemented to detect and remediate environmental toxicants will also be examined. BGGN 256, BIOM 266 and Chem 266 students will be required to complete an additional paper and/or exam beyond that expected of students in Chem 166 and BIMM 166. ","edges_from":[1863,1864,1193,458,1865,410],"edges_to":[],"id":1862,"label":"BIOM 266","title":"Environmental and Molecular Toxicology (4)"},{"dept":"BIMM","description":"","edges_from":[],"edges_to":[1862],"id":1863,"label":"BIMM 166","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[1862],"id":1864,"label":"CHEM 166","title":""},{"dept":"CHEM","description":"","edges_from":[952,1761,2562,959],"edges_to":[1193,1862,4751],"id":1865,"label":"CHEM 114B","title":""},{"dept":"Math","description":"","edges_from":[],"edges_to":[130,141],"id":1866,"label":"Math Level 2","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[130,132,141],"id":1867,"label":"MATH 3C","title":""},{"dept":"MAE","description":"(Cross-listed with AESE 278A, CSE 278A, and ECE 205.) Comprehensive introduction to system and event complexity, software and systems engineering practices for complexity management, agile and plan-driven development, development and management processes and process models, data-, information- and knowledge-management, basics of distributed data and computation. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ","edges_from":[],"edges_to":[2426,2434,2423],"id":1868,"label":"MAE 277A","title":"Complexity and Large-Scale Systems (4)"},{"dept":"ECE","description":"Fundamentals of Fourier transform and linear systems theory including convolution, sampling, noise, filtering, image reconstruction, and visualization with an emphasis on applications to biomedical imaging. Examples from optical imaging, CT, MR, ultrasound, nuclear, PET, and radiography. ","edges_from":[],"edges_to":[],"id":1869,"label":"ECE 207","title":"Principles of Biomedical Imaging (4)"},{"dept":"USP","description":"Roles of the urban designer, preparing schematic proposals and performance statements, identifying opportunities for and constraints on designers. Each student will prepare a practical exercise in urban design using various urban design methods. ","edges_from":[],"edges_to":[],"id":1870,"label":"USP 179","title":"Urban Design, Theory, and Practice (4)"},{"dept":"ESYS","description":"This course explores the impacts of human, social, economic, and industrial activity on the environment. It highlights the central roles in ensuring sustainable development played by market forces, technological innovation, and government regulation on local, national, and global scales. ","edges_from":[],"edges_to":[],"id":1871,"label":"ESYS 103/MAE 124","title":"Environmental Challenges: Science and Solutions (4)"},{"dept":"USP","description":"This course is designed to introduce the student to the theory and practice of urban design, the form of the built environment, and how it is created. There is an emphasis on the development within a larger urban context. ","edges_from":[],"edges_to":[],"id":1872,"label":"USP 177","title":"Urban Design Practicum (4)"},{"dept":"USP","description":"This course explores governance and planning challenges in the California/Baja California binational region. What are the roles of federal, state, and local governments in addressing issues of transportation, land use, water/wastewater management, and safety and security? ","edges_from":[],"edges_to":[],"id":1873,"label":"USP 176","title":"Binational Regional Governance (4)"},{"dept":"USP","description":"Introduction to the theory and practice of context-sensitive site analysis, including site selection and programming, site inventory and analysis, and conceptual design. Demonstrates uses of GIS-based sketch planning tools for suitability analysis and project visualization in real world settings. ","edges_from":[],"edges_to":[],"id":1874,"label":"USP 175","title":"Site Analysis: Opportunities and Constraints (4)"},{"dept":"USP","description":"and Planning Reconsidered (4)","edges_from":[],"edges_to":[],"id":1875,"label":"USP 174","title":"Regional Governance"},{"dept":"USP","description":"The analysis of the evolution of city designs over time; study of the forces that influence the form and content of a city: why cities change; comparison of urban planning and architecture in Europe and the United States. ","edges_from":[],"edges_to":[],"id":1876,"label":"USP 173","title":"History of Urban Planning and Design (4)"},{"dept":"USP","description":"This course examines the use of graphic techniques and tools to explain research, data analysis, and convey ideas with a focus on the built environment. Visual communication for planners/designers using traditional graphic media, electronic media, and visualization are explored. ","edges_from":[],"edges_to":[],"id":1877,"label":"USP 172","title":"Graphics, Visual Communication, and Urban Information"},{"dept":"USP","description":"Sustainable development is a concept invoked by an increasingly wide range of scholars, activists, and organizations dedicated to promoting environmentally sound approaches to economic development. This course critically examines the diverse, often contradictory, interests in sustainability. It provides a transdisciplinary overview of emergent theories and practices. ","edges_from":[],"edges_to":[],"id":1878,"label":"USP 171","title":"Sustainable Development (4)"},{"dept":"CSE","description":"Introduces the concepts and skills necessary to effectively use information technology. Includes basic concepts and some practical skills with computer and networks. ","edges_from":[],"edges_to":[],"id":1879,"label":"CSE 3","title":"Fluency in Information Technology (4)"},{"dept":"ANTH","description":"Human society evolved in the context of face-to-face interaction. The course will examine methods and theoretical approaches to different modalities of interaction—especially speech, gesture, and gaze—their mutual integration, and their relevance to ethnography. ","edges_from":[],"edges_to":[],"id":1880,"label":"ANTH 247","title":"Multimodal Interaction (4)"},{"dept":"ANTH","description":"This seminar considers the ethnohistory, ethnography, and archaeology of the Inca Empire Tawantinsuyu, with emphasis on the economic, social, and ideological foundations of the Cusco Inca state and the dynamics of Inca imperial expansion throughout Andean South America. ","edges_from":[],"edges_to":[],"id":1881,"label":"ANTH 246","title":"The Inca and the Late Horizon (4)"},{"dept":"MGT","description":"Introduction to techniques to develop/analyze data for informed tactical and strategic management decisions: statistical inference, probability, regression analysis, and optimization. Using these analytic approaches, theory-based formulas, and spreadsheets, students explore managerial applications across all areas of business activity.","edges_from":[],"edges_to":[686,4327],"id":1882,"label":"MGT 3","title":"Quantitative Methods in Business (4)"},{"dept":"ANTH","description":"This seminar examines the prehistory of the Andean region from the peopling of the New World through the formation of Archaic, Preceramic, and Initial periods; the Chavin Horizon; and the Nasca and Moche States of the Early Intermediate Period. ","edges_from":[],"edges_to":[],"id":1883,"label":"ANTH 244","title":"Andean Prehistory: Origins of Chiefdoms and States (4)"},{"dept":"MGT","description":"Internal accounting fundamentals, including cost behavior, cost application","edges_from":[],"edges_to":[2104,686],"id":1884,"label":"MGT 5","title":"Managerial Accounting (4)"},{"dept":"BICD","description":"Techniques in plant cell and tissue culture, plant transformation, genetic selection and screening of mutants, host pathogen interactions, gene regulation, organelle isolation, membrane transport. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 120. Material lab fees will apply. ","edges_from":[],"edges_to":[],"id":1885,"label":"BICD 123","title":"Plant Molecular Genetics and Biotechnology Laboratory (4)"},{"dept":"ANTH","description":"This seminar will focus on classic and contemporary studies of Southeast Asia, concentrating on Thailand, Indonesia, and the Philippines. Particular attention will be paid to the impact of the state and global forces on Southeast Asian cultural and social dynamics. Formerly known as ANGR 240. Students may not receive credit for both ANGR 240 and ANTH 240. ","edges_from":[],"edges_to":[],"id":1886,"label":"ANTH 240","title":"Culture and Politics in Southeast Asia (4)"},{"dept":"PHYS","description":"Physicists have spoken of the beauty of equations. The poet John Keats wrote, “Beauty is truth, truth beauty...” What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Cross-listed with LTEN 30. Students cannot earn credit for both Physics 30 and LTEN 30. ","edges_from":[267,262,263,264,268,266,75,76,269,270,271,53,54,265],"edges_to":[],"id":1887,"label":"PHYS 30","title":"Poetry for Physicists (4)"},{"dept":"ANTH","description":"This seminar investigates global health from the perspective of medical anthropology on disease and illness; cultural conceptions of health; doctor-patient interaction; illness experience; medical science and technology; mental health; infectious disease; and health-care inequalities by ethnicity, gender, and socioeconomic status. ","edges_from":[],"edges_to":[],"id":1888,"label":"ANTH 248","title":"Global Health and Cultural Diversity (4)"},{"dept":"VIS","description":"Students develop artworks and performances in current virtual environments. Projects may be done individually or in groups in multiplayer games, immersive life platforms, or mixed reality projects and performances. Exploration of theoretical issues involved will underlie acquisition of techniques utilized in the construction of virtual environments. Materials fees required. ","edges_from":[393,947],"edges_to":[],"id":1889,"label":"VIS 143","title":"Virtual Environments (4)"},{"dept":"GLBH","description":"(Cross-listed with ANSC 148.) Introduction to global health from the perspective of medical anthropology on disease and illness, cultural conceptions of health, doctor-patient interaction, illness experience, medical science and technology, mental health, infectious disease, and health-care inequalities by ethnicity, gender, and socioeconomic status. Students may not receive credit for GLBH 148 and ANSC 148.","edges_from":[],"edges_to":[],"id":1890,"label":"GLBH 148","title":"Global Health and Cultural Diversity (4)"},{"dept":"VIS","description":"Artistic practice is a site of critical intervention. Through individual “Practice Diagrams,” students will visualize the issues, motivations, positions, and procedures that inspire and problematize their work, seeking to discover and mobilize new tools, spaces of research, and media experimentation. ","edges_from":[],"edges_to":[],"id":1891,"label":"VIS 148","title":"Visualizing Art Practice (4)"},{"dept":"VIS","description":"Topics relevant to computer-based art and music making, such as computer methods for making art/music, design of interactive systems, spatialization of visual/musical elements, critical studies. Topics will vary. May be taken for credit three times. Recommended preparation: VIS 145A or MUS 171. Program or materials fees may apply. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":1892,"label":"VIS 149","title":"Seminar in Contemporary Computer Topics (4)"},{"dept":"Soc/G","description":"Issues in the Sociology of Knowledge (4)","edges_from":[],"edges_to":[],"id":1893,"label":"Soc/G 232","title":"Advanced"},{"dept":"Soc/G","description":"Foundation of the Study of Science, Technology, and Medicine (4)","edges_from":[],"edges_to":[],"id":1894,"label":"Soc/G 234","title":"Intellectual"},{"dept":"Soc/G","description":"of the Sociology of Scientific Knowledge (4)","edges_from":[],"edges_to":[],"id":1895,"label":"Soc/G 238","title":"Survey"},{"dept":"LTGK","description":"Directed group study in areas of Greek literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":1896,"label":"LTGK 198","title":"Directed Group Study (4)"},{"dept":"HIUS","description":"This course will focus on the transformation of work and leisure and development of consumer culture. Students will consider connections between culture, class relations, gender ideology, and politics. Topics will include labor radicalism, Taylorism, the development of organized sports, the rise of department stores, and the transformation of middle-class sexual culture of the Cold War.","edges_from":[],"edges_to":[],"id":1897,"label":"HIUS 131D","title":"Cultural History from the Civil War to the Present (4)"},{"dept":"COMM","description":"This course increases our awareness of the ways we interpret or make understanding from movies to enrich and increase the means by which one can enjoy and comprehend movies. We will talk about movies and explore a range of methods and approaches to film interpretation. Readings will emphasize major and diverse theorists, including Bazin, Eisenstein, Cavell, and Mulvey. ","edges_from":[540],"edges_to":[],"id":1898,"label":"COMM 103F","title":"CM: How to Read a Film (4)"},{"dept":"COMM","description":"This course considers the social, cultural, economic, and technological contexts that have shaped electronic media, from the emergence of radio and television to their convergence through the Internet, and how these pervasive forms of audiovisual culture have impacted American society. ","edges_from":[540],"edges_to":[],"id":1899,"label":"COMM 103E","title":"CM: History of Electronic Media (4)"},{"dept":"COMM","description":"History of nonfiction film and video. Through film and written texts we survey the nonfiction film genre, considering technological innovations, ethical issues, and formal movements related to these representations of the “real.” Students write a research paper in lieu of a final. ","edges_from":[540],"edges_to":[],"id":1900,"label":"COMM 103D","title":"CM: Documentary History and Theory (4)"},{"dept":"COGS","description":"(Cross-listed","edges_from":[],"edges_to":[],"id":1901,"label":"COGS 279","title":"Electrophysiology of Cognition (4)"},{"dept":"COGS","description":"Evidence for the heritability and for the association of genetic variants with behavioral and neural phenotypes will be reviewed. Integrative models of gene-environment interaction will be discussed. Guest faculty will describe their own work in this area.","edges_from":[],"edges_to":[],"id":1902,"label":"COGS 278","title":"Genetics and Individuality (4)"},{"dept":"COGS","description":"The discovery of mirror neurons in the monkey brain raised the possibility that “mirroring” constitutes instances of mental simulation. In this seminar, we will examine the neural basis of social cognition and specifically the relationship between mirroring processes and cognition.","edges_from":[],"edges_to":[],"id":1903,"label":"COGS 277","title":"Mirroring in Social Cognition (4)"},{"dept":"VIS","description":"Art after abstract expressionism: happenings, postpainterly abstraction, minimalism, performance, earth art, conceptual art, neo-expressionism, postconceptualism and development in the 1990s, including non-Western contexts. We also explore the relation of these tendencies to postmodernism, feminism, and ideas of postcoloniality. Recommended preparation: VIS 20 or 22 recommended. ","edges_from":[],"edges_to":[],"id":1904,"label":"VIS 125BN","title":"Contemporary Art (4)"},{"dept":"PHYS","description":"A project-oriented laboratory course in which students are guided to develop their own ideas and tools, along with using state-of-art instruments to investigate a biological problem of current interest, under the direction of a faculty member. A range of current topics in quantitative biology is available, including microbiology, molecular and cell biology, developmental biology, synthetic biology, and evolution. This course may be repeated up to ten times for credit as long as the student works on a different project. ","edges_from":[1463],"edges_to":[],"id":1905,"label":"PHYS 270B","title":"Quantitative Biology Laboratory (4)"},{"dept":"BIBC","description":"Course will provide an overview of energy production and utilization and the consequences of this on the economy and environment. The course will introduce renewable energy technologies including biofuels, and explores the social, economic, and political aspects of energy use. ","edges_from":[954],"edges_to":[],"id":1906,"label":"BIBC 140","title":"Our Energy Future—Sustainable Energy Solutions (4)"},{"dept":"HITO","description":"Explore contrasts and parallels between African Americans and Jews from the seventeenth century to the present. Investigate slavery, the Civil War, shared music, political movements, urban geography, and longings to return to a homeland in Africa or Palestine.","edges_from":[],"edges_to":[2236],"id":1907,"label":"HITO 136","title":"Jews and African Americans: Slavery, Diaspora, Ghetto (4)"},{"dept":"HITO","description":"Law—War Crimes and Genocide (4)","edges_from":[],"edges_to":[],"id":1908,"label":"HITO 134","title":"International"},{"dept":"CHEM","description":"This seminar will present topics in chemistry at a level appropriate for first-year students.","edges_from":[],"edges_to":[],"id":1909,"label":"CHEM 87","title":"Freshman Seminar in Chemistry and Biochemistry (1)"},{"dept":"VIS","description":"Students pursue projects of their own design over two quarters with support from faculty in a seminar environment. Project proposals are developed, informed by project development guidelines from real-world examples. Two production-course limitation. Renumbered from ICAM 160A. Students may receive credit for only one of the following: VIS 160A, MUS 160A, or ICAM 160A. ","edges_from":[1912,733,1222,1911],"edges_to":[3421,5661],"id":1910,"label":"VIS 160A","title":"Senior Project in Computing Arts I (4)"},{"dept":"VIS","description":"","edges_from":[2277],"edges_to":[3422,1910],"id":1911,"label":"VIS 141B","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[3422,2925,1910],"id":1912,"label":"MUS 172","title":""},{"dept":"LTKO","description":"This course will help students develop advanced-level skills in the Korean language. Upon completion of this course, students are expected to have good command of Korean in various formal settings and to understand daily news broadcasts/newspapers. ","edges_from":[1914],"edges_to":[3968],"id":1913,"label":"LTKO 3","title":"Advanced Korean: Third Year (5)"},{"dept":"LTKO","description":"","edges_from":[],"edges_to":[1913],"id":1914,"label":"LTKO 2C","title":""},{"dept":"MAE","description":"Teaching experience in an appropriate MAE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. (S/U grade only.) ","edges_from":[],"edges_to":[],"id":1915,"label":"MAE 501","title":"Teaching Experience (2)"},{"dept":"HIUS","description":"This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.","edges_from":[],"edges_to":[],"id":1916,"label":"HIUS 113/ETHN 154","title":"History of Mexican America (4)"},{"dept":"TDGR","description":"A unifying approach to acting skills (voice, movement, and speech) designed to result in providing the graduating actor with a daily regimen appropriate for professional work. ","edges_from":[],"edges_to":[],"id":1917,"label":"TDGR 239","title":"Skills (4)"},{"dept":"ECON","description":"Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ","edges_from":[],"edges_to":[],"id":1918,"label":"ECON 191A","title":"Senior Essay Seminar A (4)"},{"dept":"TDGR","description":"Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ","edges_from":[],"edges_to":[],"id":1919,"label":"TDGR 235","title":"Singing for the Actor III (1)"},{"dept":"ECON","description":"Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ","edges_from":[],"edges_to":[],"id":1920,"label":"ECON 191B","title":"Senior Essay Seminar B (4)"},{"dept":"TDGR","description":"An advanced studio for graduate actors and directors, this work will explore a single text from the modern theatre under the direction of a master teacher-artist. Concentration will be on multiple possible modes of encountering a text, varieties of interpretation and performance realization, and the development of a theatre ensemble. ","edges_from":[],"edges_to":[],"id":1921,"label":"TDGR 230","title":"Acting Process III: Actors’ Studio (2–4)"},{"dept":"RELI","description":"This course introduces students to historical and social developments of religion among African-Americans. The course examines changing religious traditions and ritual practices among African-Americans since slavery to the present era. ","edges_from":[],"edges_to":[],"id":1922,"label":"RELI 155","title":"African-American Religions (4)"},{"dept":"TDGR","description":"This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will rehearse and perform in simulated studio setting. ","edges_from":[],"edges_to":[],"id":1923,"label":"TDGR 233","title":"Acting for the Camera (1)"},{"dept":"ANSC","description":"Course aims to explore the ways in which historicity can be turned to a critical field of inquiry and reflection. Shows how the past isn’t something that “has happened,” but that actively lingers and invades the present, both inviting and constraining possible futures. Challenges the assumptions and practices of each modern discipline, affecting key concepts, methods, modes of analysis, and narrative forms that both anthropologists and historians have used. ","edges_from":[],"edges_to":[],"id":1924,"label":"ANSC 177","title":"Step Into Anthrohistory: The Past and Its Hold on the Future (4)"},{"dept":"ANSC","description":"Examines interdisciplinary field of Critical Military Studies (CMS), led by sociocultural anthropologist research on aspects of militarism and on specific military forces in varied geographical and historical context. Focuses on changing strategies and doctrines into specific forms of military practice in regards to the way past conflicts inform current approaches and tactics. Also looks at field research conducted by social scientists on behalf of the US military, drawing on local experts in San Diego. ","edges_from":[],"edges_to":[],"id":1925,"label":"ANSC 176","title":"The Meaning of Political Violence (4)"},{"dept":"ANSC","description":"This course considers together the economic, political, social, and cultural dimensions of capitalist relations on the planet. Focuses on the current trajectory of capitalism, especially its changing margins and centers. Emphasizes new research on money, paid and unpaid work, and the material concerns of water, energy, food, and shelter. ","edges_from":[],"edges_to":[],"id":1926,"label":"ANSC 175","title":"Money, Work, and Nature: The Anthropology of Capitalism (4)"},{"dept":"ANSC","description":"This course examines ideologies surrounding intersections of sex and money as well as ethnographies of sex workers in diverse contexts throughout the world. ","edges_from":[],"edges_to":[],"id":1927,"label":"ANSC 174","title":"Sex and Money: The Anthropology of Sex Work (4)"},{"dept":"ANSC","description":"This practicum course will explore anthropology’s traditional methodology, ethnography, through texts, films, and literature, and give students practical experience through a quarter-long case study. ","edges_from":[],"edges_to":[4658],"id":1928,"label":"ANSC 173","title":"Ethnography in Practice (4)"},{"dept":"BGGN","description":"Students will explore selected areas of research on the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. Students will apply their understanding of this research through apprentice teaching under mentorship of faculty. Course restricted to Division of Biological Sciences doctoral students as part of the practical training in college teaching. S/U grades only. ","edges_from":[],"edges_to":[],"id":1929,"label":"BGGN 502","title":"Evidence-Based Teaching and Learning in Biological Sciences (1)"},{"dept":"ANSC","description":"Examines methods for employing iconic recording techniques into ethnographic field research, with an emphasis on digital audio and video recording technologies and analysis. ","edges_from":[],"edges_to":[],"id":1930,"label":"ANSC 171","title":"Multimodal Methods in Ethnography (4)"},{"dept":"ANSC","description":"What is modernity? How does it shape human experience? Using selected works of art, film, literature, anthropology, philosophy and social theory, the course explores conceptions of self, identity, and culture that characterize modernity. ","edges_from":[],"edges_to":[],"id":1931,"label":"ANSC 170","title":"Modernity and Human Experience (4)"},{"dept":"EDS","description":"This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for both EDS 115GS and EDS 115. ","edges_from":[],"edges_to":[],"id":1932,"label":"EDS 115GS","title":"Cognitive Development and Education (4)"},{"dept":"ANSC","description":"This course introduces students to the field of economic anthropology and situates it within the historical development of the discipline since the late nineteenth century. In particular, the course focuses on the complexities of capitalism and its relations with what appear to be “non-capitalist” contexts and ways of life. ","edges_from":[],"edges_to":[],"id":1933,"label":"ANSC 179","title":"The New Economic Anthropology: Producing, Consuming, and Exchanging Stuff Worldwide (4)"},{"dept":"ANSC","description":"Students will learn firsthand a new transdisciplinary effort to understand the intersection of individual and society at all levels of analysis. This course introduces students to a remarkable convergence led by transdisciplinary scholars at UC San Diego (anthropology, cognitive science, psychology, history, philosophy, the arts, etc.), based on the recognition that individual neurological, cognitive, emotional, and behavioral capacities are reciprocally related to aggregate social, cultural, and historical processes. ","edges_from":[],"edges_to":[],"id":1934,"label":"ANSC 178","title":"Brain, Mind, Culture, and History (4)"},{"dept":"VIS","description":"These lecture courses are on topics of special interest to visiting and permanent faculty. Topics vary from term to term and with instructor and many will not be repeated. These courses fulfill upper-division distribution requirements. As the courses under this heading will be offered less frequently than those of the regular curriculum, students are urged to check with the visual arts department academic advising office for availability and descriptions of these supplementary courses. Like the courses listed under VIS 129, below, the letters following the course number designate the general area in which the courses fall. Students may take courses with the same number but of different content, for a total of three times for credit. Recommended preparation: courses in art history (VIS 113AN–129F).","edges_from":[],"edges_to":[],"id":1935,"label":"VIS 128A–E","title":"Topics in Art History and Theory (4)"},{"dept":"ANTH","description":"Continuation of seminars held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ","edges_from":[],"edges_to":[],"id":1936,"label":"ANTH 281B","title":"Introductory Seminar (1)"},{"dept":"TDGE","description":"Group studies, readings, projects, and discussions in theatre history, problems of production and performance, and similarly appropriate subjects. ","edges_from":[],"edges_to":[],"id":1937,"label":"TDGE 198","title":"Directed Group Studies (0-2-4)"},{"dept":"TDGE","description":"Qualified students will pursue a special project in theatre history, problems of production and performance, and similarly appropriate topics. ","edges_from":[],"edges_to":[],"id":1938,"label":"TDGE 199","title":"Special Projects (0-2-4)"},{"dept":"ECE","description":"Experiments in the modulation and demodulation of baseband and passband signals. Statistical characterization of signals and impairments. (Course materials and/or program fees may apply.) ","edges_from":[1473],"edges_to":[],"id":1939,"label":"ECE 157A","title":"Communications Systems Laboratory I (4)"},{"dept":"MATS","description":"Point, line, and planar defects in crystalline solids, including vacancies, self-interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements. ","edges_from":[],"edges_to":[],"id":1940,"label":"MATS 205A","title":"Imperfections in Solids (4)"},{"dept":"TDGE","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in theatre and dance (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":1941,"label":"TDGE 192","title":"Senior Seminar in Theatre and Dance (1)"},{"dept":"BENG","description":"Dynamic simulation of biochemical reaction networks, including reconstruction of networks, mathematical description of kinetics of biochemical reactions, dynamic simulation of systems of biochemical reactions, and use of simulators for data interpretation and prediction in biology. Emphasis on a design project. ","edges_from":[952,140,141,958,135],"edges_to":[5905,3839,1943],"id":1942,"label":"BENG 123","title":"Dynamic Simulation in Bioengineering (4)"},{"dept":"BENG","description":"Computational modeling of molecular bioengineering phenomena: excitable cells, regulatory networks, and transport. Application of ordinary, stochastic, and partial differential equations. Introduction to data analysis techniques: power spectra, wavelets, and nonlinear time series analysis. ","edges_from":[1944,1942],"edges_to":[],"id":1943,"label":"BENG 125","title":"Modeling and Computation in Bioengineering (4)"},{"dept":"BENG","description":"","edges_from":[922],"edges_to":[4599,1943],"id":1944,"label":"BENG 122A","title":""},{"dept":"PHIL","description":"An examination of ancient Greek philosophy, focusing on major works of Plato and Aristotle. Philosophy 110, Philosophy 111, and Philosophy 112 should be taken in order. ","edges_from":[],"edges_to":[489],"id":1945,"label":"PHIL 110","title":"History of Philosophy: Ancient (4)"},{"dept":"PHIL","description":"The syntax, semantics, and proof-theory of first-order predicate logic with identity, emphasizing both conceptual issues and practical skills (e.g., criteria for logical truth, consistency, and validity; the application of logical methods to everyday as well as scientific reasoning). ","edges_from":[1947],"edges_to":[1948,1949,1950],"id":1946,"label":"PHIL 120","title":"Symbolic Logic I (4)"},{"dept":"PHIL","description":"","edges_from":[],"edges_to":[1946],"id":1947,"label":"PHIL 10","title":""},{"dept":"PHIL","description":"Topics vary from year to year. They include: Metalogic (Mathematical Logic), Modal Logic, Foundations of Logic, Foundations of Set Theory, Gödel’s Incompleteness Theorems, and others. ","edges_from":[1946],"edges_to":[],"id":1948,"label":"PHIL 122","title":"Advanced Topics in Logic (4)"},{"dept":"PHIL","description":"Philosophical issues underlying standard and nonstandard logics, the nature of logical knowledge, the relation between logic and mathematics, the revisability of logic, truth and logic, ontological commitment and ontological relativity, logical consequence, etc. May be repeated for credit with change in content and approval of instructor. ","edges_from":[1946],"edges_to":[],"id":1949,"label":"PHIL 123","title":"Philosophy of Logic (4)"},{"dept":"PHIL","description":"The character of logical and mathematical truth and knowledge; the relations between logic and mathematics; the significance of Godel’s Incompleteness Theorem; Platonism, logicism, and more recent approaches. ","edges_from":[1946],"edges_to":[],"id":1950,"label":"PHIL 124","title":"Philosophy of Mathematics (4)"},{"dept":"ENVR","description":"An interdisciplinary course focusing on one of a variety of topics related to environmental studies such as environmental policy and politics, foreign study in environmental problems, environmental history, nature writers, ethics and the environment. May be repeated three times for credit as topics vary. ","edges_from":[],"edges_to":[],"id":1951,"label":"ENVR 102","title":"Selected Topics in Environmental Studies (4)"},{"dept":"TDTR","description":"The study of the theoretical aspects of dance education, including an analysis of movement concepts for all ages. Development of basic technique training in all forms, curriculum planning, social awareness, and problem solving. Fundamental elements of cognitive and kinetic learning skills. ","edges_from":[],"edges_to":[],"id":1952,"label":"TDTR 104","title":"Dance Theory and Pedagogy (4)"},{"dept":"POLI","description":"Politics are understood as the combination of individual preferences and decisions into collective choices. What are the issues involved in aggregating individual preferences, what is the choice of rules—formal and informal—for doing so.","edges_from":[],"edges_to":[],"id":1953,"label":"POLI 163","title":"Analyzing Politics (4)"},{"dept":"SOCI","description":"Course focuses on the interaction between state and society. It discusses central concepts of political sociology (social cleavages, mobilization, the state, legitimacy), institutional characteristics, causes, and consequences of contemporary political regimes (liberal democracies, authoritarianism, communism), and processes of political change. ","edges_from":[1954,1955],"edges_to":[1954],"id":1954,"label":"SOCI 148","title":"Political Sociology (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[1954],"id":1955,"label":"SOCC 148","title":""},{"dept":"MATH","description":"Metric spaces and contraction mapping theorem;","edges_from":[],"edges_to":[],"id":1956,"label":"MATH 241A-B","title":"Functional Analysis (4-4)"},{"dept":"LIGN","description":"Discussion of a topic of current phonological interest, with a focus on descriptive, analytical, and theoretical issues in phonology and phonological theory.","edges_from":[],"edges_to":[],"id":1957,"label":"LIGN 215","title":"Topics in Phonology (4)"},{"dept":"LIGN","description":"This course examines recent developments in controversial areas of phonetics. Topics will vary and will address issues in speech production (articulation, acoustics), speech perception, phonetic theory, and the relationship between phonetics and phonology. May be taken for credit two times. ","edges_from":[1960,1959],"edges_to":[],"id":1958,"label":"LIGN 214","title":"Topics in Phonetics (4)"},{"dept":"LIGN","description":"","edges_from":[],"edges_to":[1958],"id":1959,"label":"LIGN 211","title":""},{"dept":"LIGN","description":"","edges_from":[],"edges_to":[1958],"id":1960,"label":"LIGN 210","title":""},{"dept":"ECE","description":"Diffusion equations, linear and nonlinear estimation and detection, random fields, optimization of stochastic dynamic systems, applications of stochastic optimization to problems. (Recommended prerequisites: ECE 250.) ","edges_from":[],"edges_to":[1962],"id":1961,"label":"ECE 272A","title":"Stochastic Processes in Dynamic Systems I (4)"},{"dept":"ECE","description":"Continuous and discrete random processes, Markov models and hidden Markov models, Martingales, linear and nonlinear estimation. Applications in mathematical finance and real options. ","edges_from":[1961],"edges_to":[],"id":1962,"label":"ECE 272B","title":"Stochastic Processes in Dynamic Systems II (4)"},{"dept":"ETHN","description":"Examination of local responses to global change and social disruption through the examination of organic movements in indigenous societies. In-depth analysis of the Kuna Indians of San Blas, Panama; Maya-Zapatistas of Chiapas, Mexico; and Micronesians of the western Pacific.","edges_from":[],"edges_to":[],"id":1963,"label":"ETHN 117","title":"Organic Social Movements (4)"},{"dept":"GLBH","description":"(Cross-listed with ANSC 147.) Examines interactions of culture, health, and environment. Rural and urban human ecologies, their energy foundations, sociocultural systems, and characteristic health and environmental problems are explored. The role of culture and human values in designing solutions will be investigated. Students may not receive credit for GLBH 147 and ANSC 147.","edges_from":[],"edges_to":[],"id":1964,"label":"GLBH 147","title":"Global Health and the Environment (4)"},{"dept":"ETHN","description":"This course considers dark agencies, queer threats, and how they seep through cracks in containers meant to disable them. This class will be writing intensive with an artistic production component. Recommended: ETHN 100 is recommended prior to enrollment in this course.","edges_from":[],"edges_to":[],"id":1965,"label":"ETHN 115","title":"Monsters, Orphans, and Robots (4)"},{"dept":"ETHN","description":"This course considers decolonial theories of education in relation to classroom pedagogy, focusing on US urban high schools.","edges_from":[],"edges_to":[],"id":1966,"label":"ETHN 113","title":"Decolonizing Education (4)"},{"dept":"MAE","description":"(Cross-listed with MATS 205A.) Point, line, and planar defects in crystalline solids, including vacancies, self interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements.","edges_from":[],"edges_to":[],"id":1967,"label":"MAE 272","title":"Imperfections in Solids (4)"},{"dept":"ETHN","description":"This course analyzes Native American written and oral traditions. Students will read chronicles and commentaries on published texts, historic speeches, trickster narratives, oratorical and prophetic tribal epics, and will delve into the methodological problems posed by tribal literature in translation.","edges_from":[],"edges_to":[],"id":1968,"label":"ETHN 111","title":"Native American Literature (4)"},{"dept":"ETHN","description":"Places Native Americans/indigenous people’s ways of living, knowing, and understanding the world in relation to settler-immigrant societies in North America. Students gain analytical tools for thinking about world views through themes of cosmology, land, kinship, and identity formation.","edges_from":[],"edges_to":[],"id":1969,"label":"ETHN 110","title":"Cultural Worldviews of Indigenous America (4)"},{"dept":"EDS","description":"Educational Research and Practice (4)","edges_from":[],"edges_to":[],"id":1970,"label":"EDS 250","title":"Equitable"},{"dept":"EDS","description":"This course explores formal and informal learning environments with documented records of successful student engagement. Using an array of curriculum and learning theories, students investigate new and traditional pedagogical practices, curricula, and learning environments for elements of transformative practices. Students critique current literature on teaching for change as it applies to the contexts they chose to study, and identify new possibilities for teaching and learning in diverse student contexts. Letter grades only. ","edges_from":[],"edges_to":[],"id":1971,"label":"EDS 251","title":"Transforming Learning Environments (4)"},{"dept":"EDS","description":"The course focuses on factors that shape the unequal distribution of educational opportunities for marginalized groups. Students will interrogate societal and school structures, and underlying socio-cultural processes that impact engagement and outcomes for marginalized groups or students. Students will explore theories on student success and failure, family and community connections, and identity formation in relation to transforming outcomes. Letter grades only. ","edges_from":[],"edges_to":[],"id":1972,"label":"EDS 252","title":"Transforming Inequities in Student Outcomes (4)"},{"dept":"EDS","description":"This course exposes students to past and present systemic policies that influence the practices and efficiency of the P–20 system. Students will explore the barriers and facilitators of successful policy interventions at the local, state, and federal levels of education policy. Attention is given to each segment of the educational continuum, exposing students to strategies for transforming the educational system to ensure equitable opportunities to learn and achieve. ","edges_from":[],"edges_to":[],"id":1973,"label":"EDS 253","title":"Transforming Educational Systems and Policy (4)"},{"dept":"EDS","description":"Introduction to quantitative concepts, descriptive statistics, and fundamentals of statistical inference in social science. Emphasis on applying statistical concepts—how to select the appropriate statistical techniques, execute those techniques, examine assumptions necessary for the techniques to work appropriately, interpret analytic results, and summarize findings in a professional manner. Hands-on computer-based practice of quantitative analyses will be an integral part of the course. Letter grades only. ","edges_from":[],"edges_to":[1976],"id":1974,"label":"EDS 254","title":"Introduction to Research Design and Quantitative Data Analysis (4)"},{"dept":"EDS","description":"In this course, students will extend their knowledge of statistical methods based on the general linear model, including correlation, regression, analysis of variance, and analysis of covariance to address questions that emerge in educational and social science research. Students will address a variety of substantive research questions by analyzing data and fitting increasingly sophisticated analytic models. Letter grades only. ","edges_from":[],"edges_to":[],"id":1975,"label":"EDS 255","title":"Advanced Quantitative Data Analysis (4)"},{"dept":"EDS","description":"This course offers an introduction to mixed methods research in education studies. Participants will learn how qualitative and quantitative data can be integrated to capture the perspectives of individuals and organizations to answer complex research questions. The course will cover formulating research questions, collecting and analyzing different types of data, choosing appropriate mixed methods designs, and interpreting mixed methods results. Letter grades only. ","edges_from":[1977,1974],"edges_to":[],"id":1976,"label":"EDS 256","title":"Introduction to Mixed Methods Research Design and Analysis (4)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[1976],"id":1977,"label":"EDS 264","title":""},{"dept":"EDS","description":"This course will guide doctoral students in conducting rigorous case study research in the social sciences and the field of education. The course will address case study design, data collection, data analysis, and reporting. This will be accomplished through training on these stages of case study research. It will also provide hands-on experience designing case studies and analyzing case study data. The course will equip students with all the necessary tools to conduct independent case studies. Letter grades only. ","edges_from":[],"edges_to":[],"id":1978,"label":"EDS 257","title":"Case Study Research (4)"},{"dept":"ECON","description":"Role of marketing in the economy. Topics such as buyer behavior, marketing mix, promotion, product selection, pricing, and distribution. Concurrent enrollment in Econ 120C is permitted. ","edges_from":[289],"edges_to":[3633],"id":1979,"label":"ECON 176","title":"Marketing (4)"},{"dept":"MGTA","description":"Students will pursue their capstone experience as part of a team to solve practical business problems faced by companies. Each team will work as external consultants on a project to create value for a client company. Student may not receive credit for both MGTA 454 and MGTA 454A or MGTA 454B. ","edges_from":[1328,1329,1327],"edges_to":[],"id":1980,"label":"MGTA 454","title":"Business Analytics Capstone Project (4)"},{"dept":"ANBI","description":"Primate (and other vertebrate) conservation involves a variety of methods: field (e.g., population and habitat assessment), computer (e.g., population genetic models), and increasingly the web (e.g. interactive GIS and databases). Course takes problem-solving approach to learning some of these methods. ","edges_from":[],"edges_to":[],"id":1981,"label":"ANBI 114","title":"Methods in Primate Conservation (4)"},{"dept":"COMM","description":"Explores theories and narratives of cultural power, contemporary practices of resistance. Texts from a wide range of disciplines consider how domination is enacted, enforced, and what modes of resistance are employed to contend with uses and abuses of political power. ","edges_from":[537,538,539,540],"edges_to":[],"id":1982,"label":"COMM 177","title":"Culture, Domination, and Resistance (4)"},{"dept":"ANBI","description":"Major stages of human evolution including the fossil evidence for biological and cultural changes through time. ","edges_from":[],"edges_to":[],"id":1983,"label":"ANBI 111","title":"Human Evolution (4)"},{"dept":"ANBI","description":"Cytoarchitecture reveals the fundamental structural organization of the human brain and stereology extracts quantitative information in a three-dimensional space. Students will learn the principles of both fields and their applications. ","edges_from":[1265],"edges_to":[],"id":1984,"label":"ANBI 112","title":"Methods in Human Comparative Neuroscience (4)"},{"dept":"COMM","description":"Course examines several different ways of telling stories as a form of communication: our own life and about the lives of others. There are also the occasions that the life stories of ordinary people are told at and celebrated, for example, funerals, Festschrifts, retirement dinners, fiftieth-anniversary parties, and retrospective art shows. ","edges_from":[537,538,539,540],"edges_to":[],"id":1985,"label":"COMM 170","title":"Biography and Life Stories (4)"},{"dept":"USP","description":"This course charts the development of urban communities across the United States both temporally and geographically. It examines the patterns of cleavage, conflict, convergence of interest, and consensus that have structured urban life. Social, cultural, and economic forces will be analyzed for the roles they have played in shaping the diverse communities of America’s cities.","edges_from":[],"edges_to":[3040],"id":1986,"label":"USP 1","title":"History of US Urban Communities (4)"},{"dept":"BGGN","description":"The course will introduce students to a variety of signal transduction pathways and their function in the regulation of cellular processes. Special emphasis will be given to signaling cascades regulating immunological responses and alterations of signaling pathways during oncogenesis. Open only to students enrolled in a graduate degree program. Letter grades only.","edges_from":[],"edges_to":[],"id":1987,"label":"BGGN 230","title":"Graduate Signal Transduction (4)"},{"dept":"USP","description":"An introduction to the sociological study of cities, focusing on urban society in the United States. Students in the course will examine theoretical approaches to the study of urban life; social stratification in the city; urban social and cultural systems–ethnic communities, suburbia, family life in the city, religion, art, and leisure.","edges_from":[],"edges_to":[],"id":1988,"label":"USP 3","title":"The City and Social Theory (4)"},{"dept":"USP","description":"Examines cities and the environment in a global context. Emphasizes how the world’s economy and the earth’s ecology are increasingly interdependent. Focuses on biophysical and ethicosocial concerns rooted in the contemporary division of labor among cities, Third World industrialization, and the post-industrial transformation of US cities.","edges_from":[],"edges_to":[],"id":1989,"label":"USP 2","title":"Urban World System (4)"},{"dept":"USP","description":"This course introduces students to the terminology, concepts, and basic practices of real estate finance and development. It surveys real estate law, appraisal, marketing, brokerage, management, finance, investment analysis, and taxation.","edges_from":[],"edges_to":[],"id":1990,"label":"USP 5","title":"Introduction to the Real Estate and Development Process (4)"},{"dept":"ECON","description":"Decision making when the consequences are uncertain. Decision trees, payoff tables, decision criteria, expected utility theory, risk aversion, sample information. ","edges_from":[547,1992,1993,1994,1995,1996],"edges_to":[],"id":1991,"label":"ECON 171","title":"Decisions Under Uncertainty (4)"},{"dept":"MATH","description":"","edges_from":[138,134],"edges_to":[4513,291,4327,1991,3636,3642],"id":1992,"label":"MATH 183","title":""},{"dept":"MATH","description":"","edges_from":[138,134],"edges_to":[4513,291,4327,1991,3636,4151,3642],"id":1993,"label":"MATH 186","title":""},{"dept":"ECON","description":"","edges_from":[138,550,302,134],"edges_to":[4513,291,4327,1991,3437,3636,3642],"id":1994,"label":"ECON 120A","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[2336,2337,291,4736,1991,4327,3437,5325,4513,3638,3642,2331],"id":1995,"label":"MATH 180A","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[4513,291,4420,4327,1991,5325,4935,3636,3642],"id":1996,"label":"ECE 109","title":""},{"dept":"BGGN","description":"(Cross-listed with BIOM 262, CMM 262.) This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages. ","edges_from":[1528,1281,1527],"edges_to":[],"id":1997,"label":"BGGN 237","title":"Quantitative Methods in Genetics (4)"},{"dept":"BGGN","description":"(Cross-listed with BIOM 222, CMM 225, MED 225, Chem 237.) Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.","edges_from":[],"edges_to":[],"id":1998,"label":"BGGN 236","title":"Advanced Glycobiology (4)"},{"dept":"LAWS","description":"Through lectures and discussions on several controversial topics, students are introduced to the subjects taught in the first year of law school. They learn briefing, case analysis, and the Socratic method of instruction, engage in role-playing exercises, and take law-school examinations. ","edges_from":[],"edges_to":[],"id":1999,"label":"LAWS 102S","title":"Crimes, Civil Wrongs, and Constitution (4)"},{"dept":"BIOM","description":"Lectures on the molecular and cellular mechanisms of pathogenesis. Topics will include Alzheimer’s disease, cell surface and unclear receptors in disease, signal transduction by oncogenes in cancer cells, AIDS, human diseases affecting glycosylation pathways, rheumatoid arthritis, and arteriosclerosis. ","edges_from":[],"edges_to":[],"id":2000,"label":"BIOM 264","title":"Molecular and Cellular Basis of Disease (2)"},{"dept":"BIOM","description":"This course will focus on critical reading and understanding current areas in cell and molecular biology. The exact topic will vary, but will include such topics as protein trafficking, cell division, intracellular movement, cell interaction, and cell cycle.","edges_from":[],"edges_to":[],"id":2001,"label":"BIOM 240","title":"Critical Reading in Cell Biology (3)"},{"dept":"BIOM","description":"Intended for graduate students interested in principles of classical and molecular genetics. Will attend weekly genetics seminar and participate in didactic/discussion preparatory session. ","edges_from":[],"edges_to":[],"id":2002,"label":"BIOM 242","title":"Seminar in Genetics (1)"},{"dept":"BIPN","description":"Course focuses on physiological aspects of the human reproductive systems. Emphasis will be on cellular and systems physiology. Topics will include: reproductive endocrinology, gametogenesis, fertilization and implantation, pregnancy and parturition, development of reproductive systems, and reproductive pathologies. Students may not receive credit for both BIPN 134 and BICD 134. ","edges_from":[1192],"edges_to":[],"id":2003,"label":"BIPN 134","title":"Human Reproduction (4)"},{"dept":"NANO","description":"Basic engineering principles of nanofabrication. Topics include: photo-electronbeam and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Cross-listed with CENG 208. Students may not receive credit for both NANO 208 and CENG 208. ","edges_from":[],"edges_to":[],"id":2004,"label":"NANO 208","title":"Nanofabrication (4)"},{"dept":"NANO","description":"Each graduate student in NANO is expected to attend three seminars per quarter, of his or her choice, dealing with current topics in chemical engineering. Topics will vary. Cross-listed with CENG 205. S/U grades only. May be taken for credit four times.","edges_from":[],"edges_to":[],"id":2005,"label":"NANO 200","title":"Graduate Seminar in Chemical Engineering (1)"},{"dept":"NANO","description":"Understanding nanotechnology, broad implications, miniaturization: scaling laws; nanoscale physics; types and properties of nanomaterials; nanomechanical oscillators, nano(bio)electronics, nanoscale heat transfer; fluids at the nanoscale; machinery cell; applications of nanotechnology and nanobiotechnology. Students may not receive credit for both NANO 201 and CENG 211. ","edges_from":[],"edges_to":[2203],"id":2006,"label":"NANO 201","title":"Introduction to NanoEngineering (4)"},{"dept":"NANO","description":"Development of quantitative understanding of the different intermolecular forces between atoms and molecules and how these forces give rise to interesting phenomena at the nanoscale, such as flocculation, wetting, self-assembly in biological (natural) and synthetic systems. Cross-listed with CENG 212. Students may not receive credit for both NANO 202 and CENG 212. ","edges_from":[],"edges_to":[2009],"id":2007,"label":"NANO 202","title":"Intermolecular and Surface Forces (4)"},{"dept":"NANO","description":"Nanoscale synthesis—top-down and bottom-up; chemical vapor deposition; plasma processes; soft-lithography; self-assembly; layer-by-layer. Characterization; microscopy; scanning probe microscopes; profilometry; reflectometry and ellipsometry; X-ray diffraction; spectroscopies (EDX, SIMS, Mass spec, Raman, XPS); particle size analysis; electrical, optical. Cross-listed with CENG 213. Students may not receive credit for both NANO 203 and CENG 213. ","edges_from":[],"edges_to":[],"id":2008,"label":"NANO 203","title":"Nanoscale Synthesis and Characterization (4)"},{"dept":"NANO","description":"This course will introduce students to analytical and numerical methods such as statistical mechanisms, molecular simulations, and finite differences and finite element modeling through their application to NanoEngineering problems involving polymer and colloiod self-assembly, absorption, phase separation, and diffusion. Cross-listed with CENG 214. Students may not receive credit for both NANO 204 and CENG 214. ","edges_from":[2007],"edges_to":[],"id":2009,"label":"NANO 204","title":"Nanoscale Physics and Modeling (4)"},{"dept":"NANO","description":"Scaling issues and hierarchical assembly of nanoscale components into higher order structures which retain desired properties at microscale and macroscale levels. Novel ways to combine top-down and bottom-up processes for integration of heterogeneous components into higher order structures. Cross-listed with CENG 215. Students may not receive credit for both NANO 205 and CENG 215. ","edges_from":[],"edges_to":[],"id":2010,"label":"NANO 205","title":"Nanosystems Integration (4)"},{"dept":"ENG","description":"This course examines the complexity of integrating components of product engineering, marketing and client requirements into a single engineering system. Case studies explore successes and failures in engineered systems and how to detect and avoid potential failures using strong leadership skills, systemic analysis and thinking. ","edges_from":[],"edges_to":[],"id":2011,"label":"ENG 210","title":"Systems Engineering (4)"},{"dept":"SOCI","description":"A survey of the major economic, political, and social forces that have shaped the contemporary world. The course will provide an introduction to theories of social change, as well as prepare the student for upper-division work in comparative-historical sociology. Will not receive credit for SOCI 20 and SOCL 20.","edges_from":[],"edges_to":[],"id":2012,"label":"SOCI 20","title":"Social Change in the Modern World (4)"},{"dept":"COMM","description":"The conflict between the state of Israel and the group of people known as Palestinians is arguably the most intractable conflict in the world today. This course is a critical engagement with debates about this conflict, and the different representations of these debates. ","edges_from":[537,538,539,540],"edges_to":[],"id":2013,"label":"COMM 158","title":"Representations of the Israeli/Palestinian Conflict (4)"},{"dept":"COMM","description":"Explores tourism encounters around the world to question the discourses, imaginaries, and social practices involved in the construction, consumption, and reproduction of stereotypical representations of otherness (place, nature, culture, bodies). ","edges_from":[537,538,539,540],"edges_to":[],"id":2014,"label":"COMM 159","title":"Tourism, Power, and Place (4)"},{"dept":"ECON","description":"(Cross-listed with HIUS 141.) The United States as a modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism. Credit not allowed for both Econ 159 and HIUS 141. ","edges_from":[],"edges_to":[],"id":2015,"label":"ECON 159","title":"Economic History of the United States II (4)"},{"dept":"ECON","description":"(Cross-listed with HIUS 140.) The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism. Credit not allowed for both Econ 158 and HIUS 140. ","edges_from":[],"edges_to":[],"id":2016,"label":"ECON 158","title":"Economic History of the United States I (4)"},{"dept":"COMM","description":"This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ","edges_from":[537,538,539,540],"edges_to":[],"id":2017,"label":"COMM 152","title":"Global Economy and Consumer Culture (4)"},{"dept":"COMM","description":"This course examines how buildings, cities, towns, gardens, neighborhoods, roads, bridges, and other bits of infrastructure communicate. We consider both the materiality and language like properties of physical things in order to understand how built environments are represented, experienced, and remembered. ","edges_from":[537,538,539,540],"edges_to":[],"id":2018,"label":"COMM 153","title":"Architecture as Communication (4)"},{"dept":"COMM","description":"Analysis of the forces propelling the Information Age. An examination of the differential benefits and costs, and a discussion of the presentation in the general media of the Information Age. ","edges_from":[537,538,539,540],"edges_to":[],"id":2019,"label":"COMM 151","title":"The Information Age: Fact and Fiction (4)"},{"dept":"ECON","description":"Overview of the public sector in the United States and the scope of government intervention in economic life. Theory of public goods and externalities. Discussion of specific expenditure programs such as education and national defense. ","edges_from":[797],"edges_to":[],"id":2020,"label":"ECON 151","title":"Public Economics: Expenditures I (4)"},{"dept":"ECON","description":"Overview of the existing national tax structure in the United States, its effects on individual and firm decisions, and the resulting efficiency costs and distributional consequences. The course concludes with an examination of several commonly proposed tax reforms. ","edges_from":[797],"edges_to":[],"id":2021,"label":"ECON 150","title":"Public Economics: Taxation (4)"},{"dept":"COMM","description":"Develop a critical understanding of the history, politics, and poetics of the Latino barrio as a distinct urban form. Course covers key concepts such as the production of space, landscapes of power, spatial apartheid, everyday urbanism, urban renewal, and gentrification. ","edges_from":[537,538,539,540],"edges_to":[],"id":2022,"label":"COMM 155","title":"Latino Space, Place, and Culture (4)"},{"dept":"LTTH","description":"Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.","edges_from":[],"edges_to":[],"id":2023,"label":"LTTH 298","title":"Special Projects: Writing Course (1–12)"},{"dept":"BENG","description":"Introduction on the integration of bioengineering and clinical medicine through lectures and rotations with clinical faculty. Students will work with clinical mentors and course faculty to identify areas where engineering can improve diagnostics, clinical practice, and/or treatment. ","edges_from":[1192,2025,2026,1283],"edges_to":[],"id":2024,"label":"BENG 193","title":"Clinical Bioengineering (4)"},{"dept":"BENG","description":"","edges_from":[1318,1428,954,220,29,30,31],"edges_to":[2024,2026,5550],"id":2025,"label":"BENG 140A","title":""},{"dept":"BENG","description":"","edges_from":[2025],"edges_to":[2024,5550],"id":2026,"label":"BENG 140B","title":""},{"dept":"MGT","description":"The modern workplace includes people different in culture, gender, age, language, religion, education, and more. Students will learn why diverse teams make better decisions and are often integral to the success of organizations. Topics include challenges of diversity, and the impact of emotional, social, and cultural intelligence on team success. Content will include significant attention to the experiences of Asian Americans and African Americans as members and leaders of such diverse teams.","edges_from":[],"edges_to":[],"id":2027,"label":"MGT 18","title":"Managing Diverse Teams (4)"},{"dept":"POLI","description":"This seminar provides perspectives on the theories and politics of European integration. Analysis will focus on the development of the European Union, the functioning of core institutions, and the challenges of creating a supranational political regime. ","edges_from":[],"edges_to":[],"id":2028,"label":"POLI 244A","title":"European Integration (4)"},{"dept":"VIS","description":"An in depth look at the art of Leonardo da Vinci with special emphasis on his training in Florence, interactions with Bramante, and the response to his work by Raphael. ","edges_from":[],"edges_to":[],"id":2029,"label":"VIS 122CN","title":"Leonardo da Vinci in Context (4)"},{"dept":"MATH","description":"Formulation and analysis of algorithms for constrained optimization. Optimality conditions; linear and quadratic programming; interior methods; penalty and barrier function methods; sequential quadratic programming methods. ","edges_from":[],"edges_to":[],"id":2030,"label":"MATH 271A-B-C","title":"Numerical Optimization (4-4-4)"},{"dept":"MAE","description":"(Cross-listed with CENG 221B.) Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. ","edges_from":[513,676,677,168,169,988],"edges_to":[],"id":2031,"label":"MAE 221B","title":"Mass Transfer (4)"},{"dept":"MAE","description":"(Cross-listed with CENG 221A.) Conduction, convection, and radiation heat transfer. Development of energy conservation equations. Analytical and numerical solutions to transport problems. Specific topics and applications vary. ","edges_from":[513,676,677,168,169,988],"edges_to":[4243],"id":2032,"label":"MAE 221A","title":"Heat Transfer (4)"},{"dept":"HIEA","description":"Chinese society, thought, religion, culture, economy and politics from the Shang through the Song dynasties, through primary and secondary sources. Topics vary; may be repeated for credit. Requirements differ for undergraduate, MA and PhD students. Graduate students will be required to submit a more substantial piece of work or an additional paper. ","edges_from":[],"edges_to":[],"id":2033,"label":"HIEA 168/268","title":"Topics in Classical and Medieval Chinese History (4)"},{"dept":"TDHT","description":"An introduction to the fundamental techniques of analyzing dramatic texts. Focus is on the student’s ability to describe textual elements and their relationships to each other as well as on strategies for writing critically about drama. ","edges_from":[],"edges_to":[],"id":2034,"label":"TDHT 10","title":"Introduction to Play Analysis (4)"},{"dept":"MATH","description":"Introduction to varied topics in algebra. In recent years, topics have included number theory, commutative algebra, noncommutative rings, homological algebra, and Lie groups. May be taken for credit six times with consent of adviser as topics vary. ","edges_from":[],"edges_to":[],"id":2035,"label":"MATH 207A","title":"Topics in Algebra (4)"},{"dept":"POLI","description":"How has warfighting evolved over the centuries? How has it varied across cultures? What has war been like for soldiers and civilians? How do societies mobilize for war, and how do they change in the short and long term from fighting? ","edges_from":[],"edges_to":[],"id":2036,"label":"POLI 143A","title":"War and Society (4)"},{"dept":"HISC","description":"Examines evolutionary theory before Darwin, the development of the theory of natural selection, the ongoing challenge from Lamarckism, nineteenth-century social Darwinism, the emergence of the neo-Darwinist synthesis, and the recent controversies over evolutionary psychology and creationism. Graduate students are expected to submit an additional paper. ","edges_from":[],"edges_to":[],"id":2037,"label":"HISC 173/273","title":"Seminar on Darwin and Darwinisms (4)"},{"dept":"ANAR","description":"Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the Department of Anthropology website. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":2038,"label":"ANAR 100","title":"Special Topics in Anthropological Archaeology (4)"},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 100A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100A or after successful completion of Econ 100A with A– or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":2039,"label":"ECON 100AH","title":"Honors Microeconomics A (1)"},{"dept":"Linguistics/Spanish","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1A. ","edges_from":[],"edges_to":[],"id":2040,"label":"Linguistics/Spanish (LISP) 1AX","title":"Analysis of Spanish (2.5)"},{"dept":"PHYS","description":"Discussions of current research in nuclear physics, principally in the field of elementary particles. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2041,"label":"PHYS 251","title":"High-Energy Physics Seminar (0–1)"},{"dept":"PHYS","description":"Discussion of current research in physics of the solid state and of other condensed matter. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2042,"label":"PHYS 250","title":"Condensed Matter Physics Seminar (0–1)"},{"dept":"PHYS","description":"Discussions of recent research in astrophysics and space physics. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2043,"label":"PHYS 253","title":"Astrophysics and Space Physics Seminar (0–1)"},{"dept":"PHYS","description":"Discussions of recent research in plasma physics. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2044,"label":"PHYS 252","title":"Plasma Physics Seminar (0–1)"},{"dept":"PHYS","description":"Discussion of recent research in biological physics and quantitative biology by current graduate students. (S/U grades only.) May be taken for credit thirty times.","edges_from":[],"edges_to":[],"id":2045,"label":"PHYS 255","title":"Biophysics Research Talks (1)"},{"dept":"PHYS","description":"Presentation of current research in biological physics and quantitative biology by invited speakers from the United States and abroad. (S/U grades only.) May be taken for credit thirty times.","edges_from":[],"edges_to":[],"id":2046,"label":"PHYS 254","title":"Biophysics Seminar (1)"},{"dept":"PHYS","description":"Discussions of current research in high-energy physics. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2047,"label":"PHYS 257","title":"High-Energy Physics Special Topics Seminar (0–1)"},{"dept":"PHYS","description":"Critical analysis of classic and current literature in quantitative biology, involving written critiques and group discussion. (S/U grades only.) May be taken for credit thirty times.","edges_from":[],"edges_to":[],"id":2048,"label":"PHYS 256","title":"Critical Reading in Quantitative Biology (1)"},{"dept":"CENG","description":"Conduction, convection, and radiation heat transfer development of energy conservation equations. Analytical and numerical solutions to heat transport problems. Specific topics and applications vary. Cross-listed with MAE 221A. ","edges_from":[513,676,677,168,169,988],"edges_to":[],"id":2049,"label":"CENG 221A","title":"Heat Transfer (4)"},{"dept":"PHYS","description":"Discussions of current research in astrophysics and space physics. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2050,"label":"PHYS 258","title":"Astrophysics and Space Physics Special Topics Seminar (0–1)"},{"dept":"HIGR","description":"Research seminar in ancient history. Selected topics in ancient Greek and Roman history.","edges_from":[],"edges_to":[],"id":2051,"label":"HIGR 260A","title":"Research Seminar in Ancient History (4)"},{"dept":"CENG","description":"Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. Cross-listed with MAE 221B. ","edges_from":[513,676,677,168,169,988],"edges_to":[],"id":2052,"label":"CENG 221B","title":"Mass Transfer (4)"},{"dept":"CSE","description":"This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNS sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. ","edges_from":[2053,2054,2055,2056,2057,11,16,17,411],"edges_to":[5873,2053,4574],"id":2053,"label":"CSE 181","title":"Molecular Sequence Analysis (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[2057,2053,5425],"id":2054,"label":"MATH 188","title":""},{"dept":"BENG","description":"","edges_from":[],"edges_to":[5873,2053,4574],"id":2055,"label":"BENG 181","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[2057,4751,3356,2053,4407],"id":2056,"label":"CHEM 114C","title":""},{"dept":"BIMM","description":"","edges_from":[2054,2056,11,16,17,411],"edges_to":[5873,2053,4574],"id":2057,"label":"BIMM 181","title":""},{"dept":"CSE","description":"Topics include an overview of various aspects of bioinformatics and will simultaneously introduce students to programming in Python. The assessments in the course represent various programming challenges and include solving diverse biological problems using popular bioinformatics tools. ","edges_from":[954],"edges_to":[],"id":2058,"label":"CSE 180","title":"Biology Meets Computing (4)"},{"dept":"CSE","description":"This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object oriented databases, data modeling and description. Survey of current biological database with respect to above, implementation of a database on a biological topic. Cross-listed with BIMM 182/BENG 182/CHEM 182. ","edges_from":[16,17],"edges_to":[5873,4574],"id":2059,"label":"CSE 182","title":"Biological Databases (4)"},{"dept":"MGT","description":"Addresses issues faced in government and not-for-profit accounting. Students will gain insight into how and why these issues may have been resolved either similarly or differently from the for-profit business sector. Focus will be placed on how revenue and expense recognition, asset and liability valuation, the scope of the reporting entity, reporting cash flows, etc., differ in comparison to for-profit business accounting. ","edges_from":[2061],"edges_to":[],"id":2060,"label":"MGT 147","title":"Not-For-Profit and Government Accounting (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[4492,2060,4669,4495],"id":2061,"label":"MGT 131B","title":""},{"dept":"EDS","description":"Research and Evaluation Design (4)","edges_from":[],"edges_to":[],"id":2062,"label":"EDS 260C","title":"Educational"},{"dept":"CHEM","description":"and Properties of Organic Molecules (4)","edges_from":[],"edges_to":[],"id":2063,"label":"CHEM 256","title":"Structure"},{"dept":"CHEM","description":"A comprehensive survey of modern bioorganic and natural products chemistry. Topics include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 157. ","edges_from":[],"edges_to":[],"id":2064,"label":"CHEM 257","title":"Biorganic and Natural Products Chemistry (4)"},{"dept":"CHEM","description":"A qualitative approach to the mechanisms of various organic reactions; substitutions, additions, eliminations, condensations, rearrangements, oxidations, reductions, free-radical reactions, and photochemistry. Includes considerations of molecular structure and reactivity, synthetic methods, spectroscopic tools, and stereochemistry. The topics emphasized will vary from year to year. This is the first quarter of the advanced organic chemistry sequence. May be coscheduled with CHEM 154. ","edges_from":[],"edges_to":[],"id":2065,"label":"CHEM 254","title":"Mechanisms of Organic Reactions (4)"},{"dept":"CHEM","description":"(Conjoined with CHEM 155.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper and/or exam beyond that expected of students in CHEM 155. (May not be offered every year.) ","edges_from":[2067,2068],"edges_to":[],"id":2066,"label":"CHEM 255","title":"Synthesis of Complex Molecules (4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[2066,5117],"id":2067,"label":"CHEM 252","title":""},{"dept":"CHEM","description":"","edges_from":[1552,1553,1554,1555],"edges_to":[2066,5117],"id":2068,"label":"CHEM 152","title":""},{"dept":"CHEM","description":"The course focuses on the discovery and development of modern antibiotics. We will discuss the discovery, synthesis, medicinal chemistry, mechanism of action studies, and preclinical as well as clinical development of drugs that are currently being used in the therapy of bacterial infections. Emphasis will be given to compounds approved over the last three decades and investigational drugs that are in clinical trials.","edges_from":[],"edges_to":[],"id":2069,"label":"CHEM 253","title":"Antibiotics (4)"},{"dept":"CHEM","description":"Course offers training in responsible conduct of research in chemistry and biochemistry, as well as presentation skills, teamwork, and other survival skills for a career in research. Objectives include learning rules, issues, and resources for research ethics; understanding the value of ethical decision-making; and creating a positive disposition toward learning about research ethics. The course is designed to meet federal grant requirements for training in the responsible conduct of research. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2070,"label":"CHEM 250","title":"Research Survival Skills (2)"},{"dept":"CHEM","description":"Group discussion of research activities and progress of the group members. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":2071,"label":"CHEM 251","title":"Research Conference (2)"},{"dept":"POLI","description":"An analysis of the dynamics of the Chinese Revolution from the fall of the Qing Dynasty (1644–1911) to the present. Emphasis is placed on the relationship between political thought and the dynamics of the revolutionary process.","edges_from":[],"edges_to":[],"id":2072,"label":"POLI 131C","title":"The Chinese Revolution (4)"},{"dept":"CHEM","description":"Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be strongly emphasized. Students will be required to write and submit a paper that reviews a recent research publication that reports the structure determination by spectroscopic methods of natural products. May be coscheduled with CHEM 158. ","edges_from":[],"edges_to":[],"id":2073,"label":"CHEM 258","title":"Applied Spectroscopy (4)"},{"dept":"CHEM","description":"Various advanced topics in organic chemistry. Includes but is not limited to: advanced kinetics, advanced spectroscopy, computational chemistry, heterocyclic chemistry, medicinal chemistry, organotransition metal chemistry, polymers, solid-phase synthesis/combinatorial chemistry, stereochemistry, and total synthesis classics.","edges_from":[],"edges_to":[],"id":2074,"label":"CHEM 259","title":"Special Topics in Organic Chemistry (2–4)"},{"dept":"SE","description":"Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ","edges_from":[],"edges_to":[],"id":2075,"label":"SE 262","title":"Aerospace Structures Repair (4)"},{"dept":"SE","description":"Advanced topics in the design of weight-critical aerospace structures. Topics include: static, dynamic and environmental load definitions; metallics and polymeric composite material selection; semi-monocoque analysis techniques, and bolted/bonded connections. Design procedures for sizing the structural components of aircraft and spacecraft will be reviewed.","edges_from":[],"edges_to":[],"id":2076,"label":"SE 261","title":"Aerospace Engineering Design (4)"},{"dept":"SE","description":"This course examines the properties, physics, mechanisms, and design of smart and multifunctional materials; data acquisition and operating principles of sensor technologies; smart materials (piezoresistive, piezoelectric, magnetorheological, and shape memory materials); nanotechnology-enabled multifunctional materials; and applications for structural health monitoring. Use of computer resources. ","edges_from":[],"edges_to":[],"id":2077,"label":"SE 266","title":"Smart and Multifunctional Materials (4)"},{"dept":"MATH","description":"Lebesgue integral and Lebesgue measure, Fubini theorems, functions of bounded variations, Stieltjes integral, derivatives and indefinite integrals, the spaces L and C, equi-continuous families, continuous linear functionals general measures and integrations. ","edges_from":[384,386,387],"edges_to":[],"id":2078,"label":"MATH 240A-B-C","title":"Real Analysis (4-4-4)"},{"dept":"SE","description":"A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. Matlab-based exercises. Term project. ","edges_from":[],"edges_to":[],"id":2079,"label":"SE 265","title":"Structural Health Monitoring (4)"},{"dept":"SE","description":"Dynamic/model testing of structures: test planning/execution, actuation, sensing, and data acquisition, signal processing, data conditioning, test troubleshooting. Methods of updating finite element structural models to correlate with dynamic test results. Model/test correlation assessment in industrial practice. Recommended preparation: vibrations, finite element analysis, and knowledge of Matlab. ","edges_from":[],"edges_to":[],"id":2080,"label":"SE 268","title":"Structural System Testing and Model Correlation (4)"},{"dept":"SE","description":"Introduction to engineering computing. Interpolation, integration, differentiation. Ordinary differential equations. Nonlinear algebraic equations. Systems of linear algebraic equations. Representation of data in the computer. Use of computer resources. ","edges_from":[2082,2083,653,654],"edges_to":[2084],"id":2081,"label":"SE 121A","title":"Introduction to Computing for Engineers (4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[2081,4076],"id":2082,"label":"SE 1","title":""},{"dept":"SE","description":"","edges_from":[141,135],"edges_to":[2081,3745],"id":2083,"label":"SE 9","title":""},{"dept":"SE","description":"Exploration of numerical algorithms in engineering computations. Centered around computing projects. Matrix eigenvalue problems, boundary value problems, solution of systems of nonlinear algebraic equations, optimization. Use of computer resources. ","edges_from":[2081,2085,2086],"edges_to":[4167],"id":2084,"label":"SE 121B","title":"Computing Projects in Structural Engineering (4)"},{"dept":"SE","description":"","edges_from":[920,3330,139],"edges_to":[3579,4167,2084,2133,2231],"id":2085,"label":"SE 101C","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[2084,4167,2133,2230,2231,3579],"id":2086,"label":"MAE 130C","title":""},{"dept":"ECE","description":"This course introduces concepts of large-scale power system analysis: electric power generation, distribution, steady-state analysis and economic operation. It provides the fundamentals for advanced courses and engineering practice on electric power systems, smart grid, and electricity economics. The course requires implementing some of the computational techniques in simulation software. ","edges_from":[258],"edges_to":[2088,1113],"id":2087,"label":"ECE 121A","title":"Power Systems Analysis and Fundamentals (4)"},{"dept":"ECE","description":"Principles of electro-mechanical energy conversion, balanced three-phase systems, fundamental concepts of magnetic circuits, single-phase transformers, and the steady-state performance of DC and induction machines. Students may not receive credit for both ECE 121B and ECE 121. ","edges_from":[2087],"edges_to":[],"id":2088,"label":"ECE 121B","title":"Energy Conversion (4)"},{"dept":"POLI","description":"An examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on computational social science. ","edges_from":[],"edges_to":[],"id":2089,"label":"POLI 288","title":"Multidisciplinary Methods in Political Science: Computational Social Science (4)"},{"dept":"POLI","description":"Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on biology. ","edges_from":[],"edges_to":[],"id":2090,"label":"POLI 289","title":"Multidisciplinary Methods in Political Science: Biology (4)"},{"dept":"LTWR","description":"A review of the history of the development of alphabets and writing systems. Survey of the rise of literacy since the fifteenth century and analysis of continuing literacy problems in developed and developing countries.","edges_from":[],"edges_to":[],"id":2091,"label":"LTWR 140","title":"History of Writing (4)"},{"dept":"HLAW","description":"This course presents a comprehensive view of modern issues at the intersection of health care and law, with an emphasis on improving understanding and synergy between the professions. The course stresses foundational understanding of how health law and policy is formulated and the application of health law and policy in current practice. A portion of the class is devoted to group work where students select and study issues in depth to build a framework for resolving enduring challenges in the field. A variety of timely topics on the health law system and procedures/processes, such as Medicare and Medi-Cal coverage, are introduced to reinforce understanding. Part B emphasizes “public” law—the law concerning government’s own activities and programs, such as Medicare and Medicaid. ","edges_from":[],"edges_to":[],"id":2092,"label":"HLAW 207B","title":"Principles of Health Law and Policy B (4.5)"},{"dept":"LTWR","description":"Wide reading in current theory and practice of teaching writing in schools and colleges. Careful attention to various models of classroom writing instruction and to different approaches in the individual conference. Students in this course may observe instruction in the UC San Diego college writing programs or tutor freshman students in those programs. ","edges_from":[],"edges_to":[],"id":2093,"label":"LTWR 144","title":"The Teaching of Writing (4)"},{"dept":"HLAW","description":"The course offers a broad introduction to the legal aspects of American health care, through an in-depth analysis of selected contemporary issues at the intersection of health care and legal systems. It draws heavily on the experiences of the participants as well as the faculty. The course attends to how and why the law came to be (legal policy), how it is used (legal process), and how it affects the shape, cost, and quality of health care in America (legal impact). Part A emphasizes “private” law topics—the legal environment within which the private participants in health care interact with each other. ","edges_from":[],"edges_to":[],"id":2094,"label":"HLAW 207A","title":"Principles in Health Law and Policy A (4.5)"},{"dept":"POLI","description":"Examination of recent research in international law and regulation: development and presentation of research projects by graduate students; presentation of research by faculty. Third-year students present dissertation prospectus, candidates make yearly presentations of dissertation research. S/U grades only. May be taken for credit three times as topics vary. ","edges_from":[],"edges_to":[],"id":2095,"label":"POLI 280","title":"Workshop: International Law and Regulation (4)"},{"dept":"POLI","description":"Examination of recent research in American politics: development and presentation of research projects by graduate students, presentations of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2096,"label":"POLI 281","title":"Workshop: American Politics (4)"},{"dept":"POLI","description":"Examination of recent research in comparative politics, development and presentation of research projects by graduate students; presentations of research projects by faculty. Third-year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2097,"label":"POLI 282","title":"Workshop: Comparative Politics (4)"},{"dept":"POLI","description":"Examination of recent research in international relations, development and presentation of research projects by graduate students, presentations of research projects by faculty. Third year students present dissertation prospectus; candidates make yearly presentation of dissertation research. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2098,"label":"POLI 283","title":"Workshop: International Relations (4)"},{"dept":"POLI","description":"Examination of recent research in political theory: development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2099,"label":"POLI 285","title":"Workshop: Political Theory (4)"},{"dept":"POLI","description":"Examination of recent research in political methodology; development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2100,"label":"POLI 286","title":"Workshop: Methodology (4)"},{"dept":"POLI","description":"Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on social networks. ","edges_from":[],"edges_to":[],"id":2101,"label":"POLI 287","title":"Multidisciplinary Methods in Political Science: Social Networks (4)"},{"dept":"VIS","description":"Study of the philosophical concepts of the function of art and visual culture and the criteria for its evaluation in diverse epochs and cultures. May be taught as an historical overview or comparative study or focus a single topic or theorist.","edges_from":[],"edges_to":[],"id":2102,"label":"VIS 243","title":"Aesthetic Theory (4)"},{"dept":"MGT","description":"This course helps students understand the complexities involved in international deals. Examines current financial reporting practices for business entities engaged in international activities. Focuses on policy issues such as foreign currency translation, global inflation, transfer pricing, complying with reporting requirements, taxation, and international accounting and auditing standards. ","edges_from":[2104,2105],"edges_to":[],"id":2103,"label":"MGT 148","title":"Mergers and Acquisitions (4)"},{"dept":"MGT","description":"","edges_from":[1132,1884,1133],"edges_to":[2103],"id":2104,"label":"MGT 137","title":""},{"dept":"MGT","description":"","edges_from":[],"edges_to":[2103],"id":2105,"label":"MGT 136","title":""},{"dept":"LTWL","description":"to Semiotics and Applications (4)","edges_from":[],"edges_to":[],"id":2106,"label":"LTWL 128","title":"Introduction"},{"dept":"LTWL","description":"What is wisdom? Does wisdom refer to a specific type of discourse; a literary genre; a specific content that holds true transculturally and transtemporally? This class will consider these questions by reading literature from diverse times and places.","edges_from":[],"edges_to":[],"id":2107,"label":"LTWL 129","title":"Wisdom: The Literature of Authority (4)"},{"dept":"SOCI","description":"A sociological examination of the era of the 1960s in America, its social and political movements, its cultural expressions, and debates over its significance, including those reflected in video documentaries. Comparisons will also be drawn with events in other countries. ","edges_from":[2108,2109],"edges_to":[2108],"id":2108,"label":"SOCI 187E","title":"The Sixties (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[2108],"id":2109,"label":"SOCD 187S","title":""},{"dept":"CHEM","description":"Interacting systems at equilibrium, both classical (liquids)","edges_from":[],"edges_to":[],"id":2110,"label":"CHEM 232B","title":"Statistical Mechanics II (4)"},{"dept":"LTWL","description":"An exploration of the genre—past and present, in literature and the visual media—as a cultural response to scientific and technological change, as modern mythmaking, and as an enterprise serving a substantial fan subculture. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":2111,"label":"LTWL 124","title":"Science Fiction (4)"},{"dept":"LTWL","description":"A study of representations of the vampire through a variety of methodological perspectives with an emphasis on historical context and cultural symbolism.","edges_from":[],"edges_to":[],"id":2112,"label":"LTWL 123","title":"Vampires in Literature (4)"},{"dept":"LTWL","description":"A study of various popular forms—such as pop music, cult books, film, fashion, magazines, graphic arts—within a broader cultural context. Focus may be on a particular genre (e.g., best sellers) or era (e.g., the sixties). May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":2113,"label":"LTWL 120","title":"Popular Literature and Culture (4)"},{"dept":"USP","description":"(Same as HIUS 117.) This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification. ","edges_from":[],"edges_to":[],"id":2114,"label":"USP 168","title":"History of Los Angeles (4)"},{"dept":"POLI","description":"An undergraduate course designed to cover various aspects of comparative politics. May be repeated for credit three times, provided each course is a separate topic, for a maximum of twelve units.","edges_from":[],"edges_to":[],"id":2115,"label":"POLI 138D","title":"Special Topics in Comparative Politics (4)"},{"dept":"CSE","description":"(Formerly CSE 207C) Introduction to the algorithmic theory of point lattices (aka algorithmic geometry of numbers), and some of its most important applications in cryptography and cryptanalysis. Topics usually include: LLL basis reduction algorithm, cryptanalysis of broadcast RSA, hardness of approximating lattice problems. ","edges_from":[782,1743],"edges_to":[],"id":2116,"label":"CSE 206A","title":"Lattice Algorithms and Applications (4)"},{"dept":"MATH","description":"Introduction to varied topics in differential geometry. In recent years, topics have included Morse theory and general relativity. May be taken for credit six times with consent of adviser. ","edges_from":[],"edges_to":[2118],"id":2117,"label":"MATH 257A","title":"Topics in Differential Geometry (4)"},{"dept":"MATH","description":"Continued development of a topic in differential geometry. Topics include Morse theory and general relativity. May be taken for credit three times with consent of adviser. ","edges_from":[2117],"edges_to":[],"id":2118,"label":"MATH 257B","title":"Further Topics in Differential Geometry (4)"},{"dept":"GPIM","description":"This course examines the current business environment in Latin America, taking into account political, economic, and cultural factors. The course will be based on case studies, supplemented with guest lectures from business executives and discussions of selected readings. Students will be required to develop a business plan as a major part of the grade for the course. Renumbered from IRGN 436. Students may not receive credit for both GPIM 436 and IRGN 436.","edges_from":[],"edges_to":[],"id":2119,"label":"GPIM 436","title":"Doing Business in Latin America (4)"},{"dept":"GPIM","description":"Introduction to operations and technology, including services, manufacturing, and R&D. How organizations produce useful outputs that meet customer needs. Capital cost, variable cost, speed, lead time, robustness, including process analysis, supply chains, total quality, and process improvement. Case studies, simulations, and lectures. Renumbered from IRGN 438. Students may not receive credit for GPIM 438 and IRGN 438. ","edges_from":[1840],"edges_to":[],"id":2120,"label":"GPIM 438","title":"Operations and Technology Management (4)"},{"dept":"Soc/G","description":"An examination of theories accounting for the causes and consequences of social movements, including a discussion of the strengths and weaknesses of such theories for understanding historically specific revolutions, rebellions, and violent and nonviolent forms of protest in various parts of the world. ","edges_from":[],"edges_to":[],"id":2121,"label":"Soc/G 222","title":"Social Movements (4)"},{"dept":"VIS","description":"The art of the Early Renaissance in Northern Europe is marked by what appears to be striking conflict: on the one hand, a new love of nature and the pleasures of court society, and on the other, an intensified spirituality and focus on personal devotion. This course explores these provocative crosscurrents in works by master painters like Jan van Eyck and Hieronymus Bosch as well as in lesser known mass-produced objects of everyday use. ","edges_from":[],"edges_to":[],"id":2122,"label":"VIS 123AN","title":"Between Spirit and Flesh (4)"},{"dept":"LTKO","description":"This course will help students develop intermediate-level skills in the Korean language. Upon completion of this course, students are expected to have good command of Korean in various daily conversational situations. ","edges_from":[2124],"edges_to":[],"id":2123,"label":"LTKO 2A-B-C","title":"Intermediate Korean: Second Year I-II-III (5-5-5)"},{"dept":"LTKO","description":"","edges_from":[5842],"edges_to":[2123],"id":2124,"label":"LTKO 1C","title":""},{"dept":"Soc/G","description":"This course discusses the relationship between state and society in a comparative perspective. The focus is on the interaction among states, domestic economic elites, and external economic and political processes in the determination of different developmental paths. Analytically, it includes topics such as characteristics and functions of the state in different types of society throughout history (with an emphasis on the varieties of capitalist and socialist state), the autonomy of the state and its causes in different settings, and developmental and predatory consequences of state activity. Readings will include both theoretical and empirical materials, the latter dealing mostly with nineteenth- and twentieth-century Europe and twentieth-century Latin America. ","edges_from":[],"edges_to":[],"id":2125,"label":"Soc/G 226","title":"Political Sociology (4)"},{"dept":"Soc/G","description":"Ethnographic recording of field data in written and audiovisual formats, including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual data in terms of styles, format, and approaches. Graduate students are required to submit a fifteen-page mid-term paper comparing a written and an audiovisual ethnography and a final video ethnography with a project abstract. ","edges_from":[1851,1523],"edges_to":[],"id":2126,"label":"Soc/G 227","title":"Ethnographic Film: Media Methods (6)"},{"dept":"COMM","description":"Analyze forms of social issue media production, photography, audio/radio, arts, crafts, web, print zines, political documentary. Students work with several forms of media making: video, audio, web design, and a project in their chosen format. ","edges_from":[537,538,539,540],"edges_to":[],"id":2127,"label":"COMM 120I","title":"AMP: Social Issues in Media Production (4)"},{"dept":"COMM","description":"An examination of how the media present society’s members and activities in stereotypical formats. Reasons for and consequences of this presentation are examined. Student responsibilities will be (a) participation in measurement and analysis of stereotype presentations. (b) investigating techniques for assessing both cognitive and behavioral effects of such scripted presentations on the users of media. Students will not receive credit for COMT 105 and COMM 120M. ","edges_from":[537,538,539,540],"edges_to":[],"id":2128,"label":"COMM 120M","title":"AMP: Media Stereotypes (4)"},{"dept":"COMM","description":"Designed for students working in student news organizations or off-campus internships or jobs in news, public relations, or public information. A workshop in news writing and news analysis. ","edges_from":[537,538,539,540],"edges_to":[],"id":2129,"label":"COMM 120N","title":"AMP: News Media Workshop (4)"},{"dept":"COMM","description":"This course develops critical understanding of educational uses of digital media through firsthand experience in public educational settings, and readings/discussions of challenges, benefits, and pitfalls of educational applications of media technology. Three hours/week of fieldwork required. ","edges_from":[537,538,539,540],"edges_to":[],"id":2130,"label":"COMM 120P","title":"AMP: Digital Media in Education (4)"},{"dept":"COGS","description":"This course provides a rigorous treatment of hypothesis testing, statistical inference, model fitting, and exploratory data analysis techniques used in the cognitive and neural sciences. Students will acquire an understanding of mathematical foundations and hands-on experience in applying these methods using Matlab.","edges_from":[],"edges_to":[],"id":2131,"label":"COGS 243","title":"Statistical Inference and Data Analysis (2 or 4)"},{"dept":"COGS","description":"(Same as Neurosciences 241.) This course will cover ethical issues that arise in academia, including: dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss “survival” issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. S/U only.","edges_from":[],"edges_to":[],"id":2132,"label":"COGS 241","title":"Ethics and Survival Skills in Academia (3)"},{"dept":"SE","description":"A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. MATLAB-based exercise. Term project. Use of computer resources. ","edges_from":[2085,2086],"edges_to":[],"id":2133,"label":"SE 165","title":"Structural Health Monitoring (4)"},{"dept":"COMM","description":"Practice, history, and theory of writing for digital media. Text combines with images, sounds, movement, and interaction. New network technologies (e-mail, blogs, wikis, and virtual worlds) create new audience relationships. Computational processes enable texts that are dynamically configured and more. ","edges_from":[537,538,539,540],"edges_to":[],"id":2134,"label":"COMM 120W","title":"AMP: Writing for Digital Media (4)"},{"dept":"ANTH","description":"Core seminar focuses on motives, values, cognition, and qualities of personal experience. ","edges_from":[2136],"edges_to":[],"id":2135,"label":"ANTH 280C","title":"Core Seminar in Psychological Anthropology (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2135],"id":2136,"label":"ANGR 280C","title":""},{"dept":"ANTH","description":"Seminar focuses on the development of archaeological theory. Required of archaeological and biological anthropology graduate students, sociocultural students may take this course to fulfill core distribution requirement. ","edges_from":[2138],"edges_to":[],"id":2137,"label":"ANTH 280D","title":"Core Seminar in Anthropological Archaeology (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2137],"id":2138,"label":"ANGR 280D","title":""},{"dept":"ANTH","description":"This seminar will examine the central problems and concepts of biological anthropology, laying the foundation for first-year graduate students in Biological Anthropology as well as providing an overview of the field for graduate students in other areas of anthropology. ","edges_from":[2140],"edges_to":[],"id":2139,"label":"ANTH 280E","title":"Core Seminar in Biological Anthropology (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2139],"id":2140,"label":"ANGR 280E","title":""},{"dept":"ANTH","description":"Examines the theoretical and methodological foundations and principal research questions of linguistic anthropology, providing the fundamentals for graduate study in this area. Required for students specializing in linguistic anthropology and open to other students. Course formerly numbered as ANTH 263. Students will not receive credit for both ANTH 263 and ANTH 280F. ","edges_from":[],"edges_to":[],"id":2141,"label":"ANTH 280F","title":"Core Seminar in Linguistic Anthropology (4)"},{"dept":"POLI","description":"This course examines contemporary issues in Latino politics in the U.S.; comparisons of racial and ethnic group experiences in the U.S.; Latino access to the political system through political participation. ","edges_from":[],"edges_to":[],"id":2142,"label":"POLI 105A","title":"Latino Politics in the U.S. (4)"},{"dept":"MGT","description":"This course provides the theoretical underpinnings","edges_from":[],"edges_to":[],"id":2143,"label":"MGT 226","title":"Theory of Industrial Organization and Business Strategy (4)"},{"dept":"GPPS","description":"This course will analyze how the domestic politics of each country, their international negotiations, and their interaction concerning economic issues have affected the US-Japan relationship. Both the politics of cooperation and integration, and trade friction and conflict will be addressed in part through study of specific cases. Renumbered from IRGN 460. Students may not receive credit for GPPS 460 and IRGN 460.","edges_from":[],"edges_to":[],"id":2144,"label":"GPPS 460","title":"The Politics of US-Japan Economic Relations (4)"},{"dept":"COMM","description":"This course offers students the opportunity to produce and engage in critical discussions around various television production formats. We will study and produce a variety of projects, including public service announcements, panel programs, scripted drama, and performance productions. May be taken for credit three times. ","edges_from":[540,731,1412,1413],"edges_to":[],"id":2145,"label":"COMM 102M","title":"MMPP: Studio Television (6)"},{"dept":"COMM","description":"A combined lecture/lab in a specially designed after-school setting in southeastern San Diego working with children and adults. Students design new media and produce special projects, and explore issues related to human development, social justice, and community life. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2146,"label":"COMM 102C","title":"MMPP: Practicum in New Media and Community Life (6)"},{"dept":"COMM","description":"A combined lecture/lab course on after-school learning, social change, and community-based research. Students are expected to participate in a supervised after-school setting at one of four community labs in San Diego County. Students will learn ethnographic field methods, develop culturally relevant curriculum, and work in diverse settings. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2147,"label":"COMM 102D","title":"MMPP: Practicum in Child Development (6)"},{"dept":"GPPS","description":"This course provides an introduction to five Southeast Asian countries: Indonesia, Thailand, Malaysia, the Philippines, and Vietnam. The focus will be on the national level of political and economic issues in these countries. In addition, a number of region-wide issues will also be examined such as: Chinese business groups and networks; clientelism and corruption; regional trade and investment linkages; democratization; and the implications of political change for future economic development. Renumbered from IRGN 463. Students may not receive credit for GPPS 463 and IRGN 463.","edges_from":[],"edges_to":[],"id":2148,"label":"GPPS 463","title":"Politics of Southeast Asia (4)"},{"dept":"HITO","description":"The course examines multiform mystical traditions in world religions and cultures, including Greco-Roman philosophy, Judaism, Christianity, Islam, Hinduism, and Buddhism by studying classics of mystical literature and secondary sources; also addressed are mystical beliefs and practices in contemporary society.","edges_from":[],"edges_to":[],"id":2149,"label":"HITO 124","title":"Mystical Traditions (4)"},{"dept":"HITO","description":"This course will examine the different ways that attitudes toward children have changed throughout history. By focusing on the way that the child was understood, we will examine the changing role of the family, the role of culture in human development, and the impact of industrialization and modern institutions on the child and childhood.","edges_from":[],"edges_to":[],"id":2150,"label":"HITO 126","title":"A History of Childhood (4)"},{"dept":"COMM","description":"An introduction to the techniques and conventions common in television production with equal emphasis on method and content. Studio sessions provide students with opportunities to experiment in framing subject matter through a variety of cinematographic methods. May be taken for credit three times. ","edges_from":[540,731,1412,1413],"edges_to":[],"id":2151,"label":"COMM 102P","title":"MMPP: Television Analysis and Production (6)"},{"dept":"ETHN","description":"This course examines the effects of war and militarism on women’s lives, focusing in particular on the experiences of Vietnamese women during and in the aftermath of the Vietnam War. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":2152,"label":"ETHN 173GS","title":"Gender, Sexuality, and War (4)"},{"dept":"CSE","description":"Undergraduate research for completing an honors project under the supervision of a CSE faculty member. May be taken across multiple quarters. Students should enroll for a letter grade. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":2153,"label":"CSE 199H","title":"CSE Honors Thesis Research for Undergraduates (4)"},{"dept":"MAE","description":"(Cross-listed with AESE 278C, CSE 278C, and ECE 206.) Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ","edges_from":[],"edges_to":[2434,2429],"id":2154,"label":"MAE 278A","title":"Modeling, Simulation, and Analysis (4)"},{"dept":"TDGR","description":"This seminar focuses on concepts that inform creation, performance, research, and critical analysis of current and emerging dance making practices with varying content by faculty. S/U grades only. May be taken for credit eight times. ","edges_from":[],"edges_to":[],"id":2155,"label":"TDGR 215A","title":"Special Topics in Dance Making (4)"},{"dept":"POLI","description":"Readings in historical and contemporary feminist theory; development of gender as a category of political analysis; alternative perspectives on core concepts and categories in feminist thought. ","edges_from":[],"edges_to":[],"id":2156,"label":"POLI 116A","title":"Feminist Theory (4)"},{"dept":"ECE","description":"Antennas, waves, polarization. Friis transmission and Radar equations, dipoles, loops, slots, ground planes, traveling wave antennas, array theory, phased arrays, impedance, frequency independent antennas, microstrip antennas, cell phone antennas, system level implications such as MIMO, multi-beam and phased array systems. (Recommended prerequisites: ECE107 or an equivalent undergraduate course in electromagnetics.) ","edges_from":[],"edges_to":[],"id":2157,"label":"ECE 222A","title":"Antennas and Their System Applications (4)"},{"dept":"RELI","description":"This course introduces the students to historical and social developments of Islam in the United States. Tracing Islam back to the African slaves, the course examines various Muslim communities in the United States, with a focus on African-American Muslims, especially Malcolm X. ","edges_from":[],"edges_to":[],"id":2158,"label":"RELI 149","title":"Islam in America (4)"},{"dept":"RELI","description":"The course surveys women’s formal and informal roles and activities in a number of faiths, examining how women’s agency and activism may be constrained or fostered by religious ideologies and norms in various historical and political contexts. Examples are drawn from a range of male-centered (Islam, Judaism, Christianity, Buddhism) and woman-centered religions (Sande, Afro-Brazilian, Z-ar Cult), and newly formed theologies (Womanist, Native American, and Mujerista; New Age feminist spiritualities). ","edges_from":[],"edges_to":[],"id":2159,"label":"RELI 148","title":"Religion and Women’s Activisms (4)"},{"dept":"TDGR","description":"Selected professional opportunities in repertory and commercial theatre, designed to engage the student in particular creative responsibilities under the guidance of master artist-teachers. Student is expected to give biweekly reports detailing his/her experience with the professional company. ","edges_from":[],"edges_to":[],"id":2160,"label":"TDGR 229","title":"Theatre Externship (6–12)"},{"dept":"RELI","description":"This course explores religion as a system of bodily practices, rather than one of tenets or beliefs. How do day-to-day activities as well as significant rituals express and inform people’s religious lives? Why is doctrine an insufficient basis for understanding religion? May be taken up to three times as topics vary. ","edges_from":[],"edges_to":[],"id":2161,"label":"RELI 143","title":"Topics in Performing Religion (4)"},{"dept":"TDGR","description":"Assisting faculty with productions off-campus. Perform research necessary for project. Assist with preproduction meetings and other work. Observe and participate in any or all phases of the production process from preproduction through closing. ","edges_from":[],"edges_to":[],"id":2162,"label":"TDGR 226","title":"Stage Managing Assistantship (4–12)"},{"dept":"RELI","description":"This interdisciplinary course will explore the historical and theoretical relationship between public sphere and religion, particularly focusing on the manifestation of religious power, public ritual, and sacred theatricality in everyday spaces of life. ","edges_from":[],"edges_to":[],"id":2163,"label":"RELI 141","title":"Public Sphere and Religion (4)"},{"dept":"ANSC","description":"This course explores the interrelationships of language, politics, and identity in the United States: the ways that language mediates politics and identity, the ways that the connection between identity and language is inherently political, and the ways that political language inevitably draws on identity in both subtle and explicit ways. ","edges_from":[],"edges_to":[],"id":2164,"label":"ANSC 141","title":"Language, Politics, and Identity (4)"},{"dept":"RELI","description":"This course explores the history of how western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. ","edges_from":[],"edges_to":[],"id":2165,"label":"RELI 147","title":"Pagan Europe and Its Christian Aftermath (4)"},{"dept":"RELI","description":"Topical studies in the religious beliefs, practices, and institutions of pre-Christian Europe and near East. May be repeated for credit up to three times when topics vary. ","edges_from":[],"edges_to":[],"id":2166,"label":"RELI 146","title":"Topics in the Religions of Antiquity (4)"},{"dept":"TDGR","description":"(4)","edges_from":[],"edges_to":[],"id":2167,"label":"TDGR 221","title":"Graduate Studio: Contemporary Movement Practices"},{"dept":"RELI","description":"Christianity frequently finds definition in contradistinction to an “Other” characterized as immoral, irrational, and malevolent. This class investigates how devils and demons as constructions of the “Other” have contributed to Christianity’s growth and identity formation throughout history. ","edges_from":[],"edges_to":[],"id":2168,"label":"RELI 144","title":"Devils and Demons in Christianity (4)"},{"dept":"HISC","description":"Technology as an agent of change. How have humans harnessed the power of nature? What factors have contributed to successes and failures? How has technology changed human life? How should we evaluate the quality of these changes?","edges_from":[],"edges_to":[],"id":2169,"label":"HISC 102","title":"Technology in World History (4)"},{"dept":"HISC","description":"and Science in Historical Perspective (4)","edges_from":[],"edges_to":[],"id":2170,"label":"HISC 103","title":"Gender"},{"dept":"ECE","description":"Advanced topics in coding theory. Course contents vary by instructor. Example course topics: Coded-modulation for bandwidth-efficient data transmission; advanced algebraic and combinatorial coding theory; space-time coding for wireless communications; constrained coding for digital recording. Students who have taken ECE 259CN may not receive credit for ECE 259C. ","edges_from":[],"edges_to":[],"id":2171,"label":"ECE 259C","title":"Advanced Topics in Coding (4)"},{"dept":"HISC","description":"The development of the modern conception of the sciences, and of the modern social and institutional structure of scientific activity, chiefly in Europe, during the eighteenth and nineteenth centuries.","edges_from":[],"edges_to":[],"id":2172,"label":"HISC 107","title":"The Emergence of Modern Science (4)"},{"dept":"ECE","description":"Fundamentals of block codes, introduction to groups, rings and finite fields, nonbinary codes, cyclic codes such as BCH and RS codes, decoding algorithms, applications. Students who have taken ECE 259AN may not receive credit for ECE 259A. ","edges_from":[],"edges_to":[5103],"id":2173,"label":"ECE 259A","title":"Algebraic Coding (4)"},{"dept":"HISC","description":"History of human effects on the natural environment, with emphasis on understanding the roles of the physical and biological sciences in providing insights into environmental processes.","edges_from":[],"edges_to":[],"id":2174,"label":"HISC 105","title":"History of Environmentalism (4)"},{"dept":"POLI","description":"This course uses the tools of political science and economics to study how corporations affect and are affected by politics. We will cover a broad range of issues, including regulation, lawmaking, mass media, interest group mobilization, and corporate social responsibility.","edges_from":[],"edges_to":[],"id":2175,"label":"POLI 100T","title":"Business and Politics (4)"},{"dept":"HISC","description":"The history of twentieth-century life sciences, with an emphasis on the way in which model organisms such as fruit flies, guinea pigs, bacteriophage, and zebra fish shaped the quest to unlock the secrets of heredity, evolution, and development.","edges_from":[],"edges_to":[],"id":2176,"label":"HISC 108","title":"Life Sciences in the Twentieth Century (4)"},{"dept":"HISC","description":"Explores the origins of the idea of the “tropics” and “tropical disease” as a legacy of European conquest and colonization, and introduces students to themes in the history of colonialism, tropical medicine, and global public health.","edges_from":[],"edges_to":[],"id":2177,"label":"HISC 109","title":"Invention of Tropical Disease (4)"},{"dept":"BISP","description":"Course will examine different aspects of a current topic in biology and will include several speakers. Each speaker will introduce the scientific foundation of the chosen theme (“bench”), describe practical applications of their subject (“bedside”), and consider social and ethical implications of the topic (“beyond”). The theme of the course will vary from year to year, and speakers will come from a variety of disciplines relevant to the theme. May be taken for credit three times. ","edges_from":[954,1013],"edges_to":[],"id":2178,"label":"BISP 170","title":"Bioscholars Seminar: From Bench to Bedside and Beyond (2)"},{"dept":"LIGN","description":"Students lead a class section of a lower-division linguistics course. They also attend a weekly meeting on teaching methods. (This course does not count toward minor or major.) May be repeated for credit, up to a maximum of four units. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2179,"label":"LIGN 195","title":"Apprentice Teaching (0–4)"},{"dept":"BICD","description":"Introduction to the biology of plants with a particular focus on the underlying genetic and molecular mechanisms controlling plant development. Topics include the role of plant hormones and stem cells in the formation of embryos, roots, flowers, and fruit. ","edges_from":[954],"edges_to":[],"id":2180,"label":"BICD 120","title":"Molecular Basis of Plant Development (4)"},{"dept":"LIGN","description":"The student will undertake a program of practical research in a supervised work environment. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies. ","edges_from":[],"edges_to":[],"id":2181,"label":"LIGN 197","title":"Linguistics Internship (2 or 4)"},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 120A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120A or after successful completion of Econ 120A with A– or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":2182,"label":"ECON 120AH","title":"Honors Econometrics A (1)"},{"dept":"LIGN","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in linguistics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":2183,"label":"LIGN 192","title":"Senior Seminar in Linguistics (1)"},{"dept":"LTEN","description":"A study of Chaucer’s poetic development, beginning with The Book of the Duchess and The Parliament of Fowls, including Troilus and Criseyde, and concluding with substantial selections from The Canterbury Tales.","edges_from":[],"edges_to":[],"id":2184,"label":"LTEN 107","title":"Chaucer (4)"},{"dept":"LIGN","description":"The student undertakes a program of research or advanced reading in linguistics under the supervision of a faculty member of the Department of Linguistics. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2185,"label":"LIGN 199","title":"Independent Study in Linguistics (2 or 4)"},{"dept":"HIEU","description":"Why did Germany in 1919 produce an Adolf Hitler;","edges_from":[],"edges_to":[],"id":2186,"label":"HIEU 158","title":"Why Hitler? How Auschwitz? (4)"},{"dept":"PHYS","description":"Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. Recommended preparation: a working knowledge of calculus and linear algebra.","edges_from":[],"edges_to":[],"id":2187,"label":"PHYS 278","title":"Biophysics of Neurons and Networks (4)"},{"dept":"BENG","description":"283. Genomics, Proteomics, and Network Biology (4)","edges_from":[],"edges_to":[],"id":2188,"label":"BENG 203/CSE","title":""},{"dept":"ECE","description":"Quantum states and quantum transport of electrons;","edges_from":[],"edges_to":[],"id":2189,"label":"ECE 212BN","title":"Nanoelectronics (4)"},{"dept":"ETHN","description":"This is an independent research or individual guided tutorial in an area not covered by present course offerings. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course.","edges_from":[],"edges_to":[],"id":2190,"label":"ETHN 298","title":"Directed Reading (1–12)"},{"dept":"ETHN","description":"Open to graduate students conducting doctoral thesis research. This course may be repeated for an indefinite number of times due to the independent nature of thesis research and writing.","edges_from":[],"edges_to":[],"id":2191,"label":"ETHN 299","title":"Thesis Research (1–12)"},{"dept":"BENG","description":"Experimental study of real and simulated systems and their controls (examples will include electrical, biological, and biomechanical systems). Projects consist of identification, input-output analysis, design, and implementation of analog controls. Laboratory examples will include electrical circuit design and analysis, analysis of living tissues such as bone, analysis and manipulation of cells (bacteria in chemostat). Program or materials fees may apply. ","edges_from":[1428],"edges_to":[5755],"id":2192,"label":"BENG 152","title":"BioSystems Engineering Laboratory (4)"},{"dept":"PHIL","description":"Social justice issues as they arise across the borders of nation-states. Topics may include nationalism and cosmopolitanism, theories of just war and just warfare, issues of migration and immigration, global distributive justice and fair trade, and international cooperation in the face of global problems such as climate change and human rights violations. ","edges_from":[],"edges_to":[],"id":2193,"label":"PHIL 139","title":"Global Justice (4)"},{"dept":"PHIL","description":"A study of the nature and significance of responsibility. Possible topics include: freedom, determinism, and responsibility; moral luck; responsibility and reactive attitudes such as blame and forgiveness; responsibility and situationism; moral and criminal responsibility; responsibility and excuse; insanity and psychopathy, immaturity, addiction, provocation, and duress. ","edges_from":[],"edges_to":[],"id":2194,"label":"PHIL 138","title":"Responsibility (4)"},{"dept":"CSE","description":"Efficient primitives for distributed operating systems and high-performance network servers, including concurrent and event-driven server architectures, remote procedure calls, and load shedding. Distributed naming, directory, and storage services, replication for fault tolerance, and security in distributed systems. ","edges_from":[2196,44],"edges_to":[],"id":2195,"label":"CSE 223B","title":"Distributed Computing and Systems (4)"},{"dept":"CSE","description":"","edges_from":[3200,3199],"edges_to":[2195,3198],"id":2196,"label":"CSE 221","title":""},{"dept":"PHIL","description":"An in-depth study of some central problem, figure, or tradition in metaphysics. May be repeated for credit with change of content and approval of instructor. ","edges_from":[],"edges_to":[],"id":2197,"label":"PHIL 131","title":"Topics in Metaphysics (4)"},{"dept":"PHIL","description":"Central problems in metaphysics, such as free will and determinism, the mind-body problem, personal identity, causation, primary and secondary qualities, the nature of universals, necessity, and identity. ","edges_from":[],"edges_to":[],"id":2198,"label":"PHIL 130","title":"Metaphysics (4)"},{"dept":"PHIL","description":"The nature of action and psychological explanation. Topics include action individuation, reasons as causes, psychological laws, freedom and responsibility, weakness of will, self-deception, and the emotions. ","edges_from":[],"edges_to":[],"id":2199,"label":"PHIL 137","title":"Moral Psychology (4)"},{"dept":"PHIL","description":"Different conceptions of the nature of mind and its relation to the physical world. Topics include identity theories, functionalism, eliminative materialism, internalism and externalism, subjectivity, other minds, consciousness, self-knowledge, perception, memory, and imagination. ","edges_from":[],"edges_to":[],"id":2200,"label":"PHIL 136","title":"Philosophy of Mind (4)"},{"dept":"PHIL","description":"Examination of contemporary debates about meaning, reference, truth, and thought. Topics include descriptional theories of reference, sense and reference, compositionality, truth, theories of meaning, vagueness, metaphor, and natural and formal languages. ","edges_from":[],"edges_to":[],"id":2201,"label":"PHIL 134","title":"Philosophy of Language (4)"},{"dept":"LIGN","description":"(Same as Psychology 232.) Computational theories of human cognition, particularly Bayesian approaches. Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision making; perception; causal reasoning; categorization; language. Recommended preparation: previous experience with statistics, machine learning, and/or functional programming helpful.","edges_from":[],"edges_to":[],"id":2202,"label":"LIGN 228","title":"Probabilistic Models of Cognition (4)"},{"dept":"NANO","description":"An introduction to the nano electronics and nanospintronics; fundamentals of semiconductors; electronic band structure theory, electron transport in semiconductors and nano structures, nano devices. ","edges_from":[2006],"edges_to":[],"id":2203,"label":"NANO 245","title":"Nanoelectronics (4)"},{"dept":"LIGN","description":"An introduction to syntactic phenomena, argumentation, analyses, and theoretical models. Phenomena to be discussed include phrase structure, argument structure, binding, control, and A- and A’-dependencies.","edges_from":[],"edges_to":[],"id":2204,"label":"LIGN 221","title":"Syntax (4)"},{"dept":"LTWL","description":"19A-B-C. Introduction to the Ancient Greeks and Romans (4-4-4)","edges_from":[],"edges_to":[],"id":2205,"label":"LTWL","title":""},{"dept":"LIGN","description":"Descriptive and theoretical problems in syntactic analysis. Theoretical consequences of alternative analyses. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":2206,"label":"LIGN 225","title":"Topics in Syntax (4)"},{"dept":"EDS","description":"This course series addresses special topics in education research and data analysis. Students explore a faculty-specified qualitative research method and analytic approach. Approaches may include case studies, video analysis, mixed methods, naturalistic observations, ethnography, and netnography. The assigned readings include scholarship on the practice and philosophical underpinnings of the specified qualitative research approach and examples of published qualitative studies. ","edges_from":[],"edges_to":[],"id":2207,"label":"EDS 265","title":"Special Topics in Qualitative Methods (4)"},{"dept":"ETHN","description":"(Cross-listed with MUS 152.) Examination of hip-hop’s technology, lyrics, and dance and its influences in graffiti, film, music video, fiction, advertising, gender, corporate investment, government, and censorship with a critical focus on race, gender, and popular culture and the politics of creative expression.","edges_from":[],"edges_to":[],"id":2208,"label":"ETHN 128","title":"Hip-Hop: The Politics of Culture (4)"},{"dept":"EDS","description":"This course series addresses special topics in quantitative education research and data analysis. Students explore a faculty-specified quantitative research method and analytic approach. Approaches may include social network analysis, hierarchical linear modeling, latent class analysis, and structural equation modeling. The readings include scholarship on the practice and philosophical underpinnings of the specified quantitative research approach and examples of published quantitative studies. Letter grades only. ","edges_from":[],"edges_to":[],"id":2209,"label":"EDS 266","title":"Special Topics in Quantitative Methods (4)"},{"dept":"SE","description":"Element Methods in Solid Mechanics (4)","edges_from":[],"edges_to":[5641],"id":2210,"label":"SE 276B","title":"Finite"},{"dept":"EDS","description":"This seminar will examine basic approaches to the study of human development, drawing on theory, research, and methods from multiple disciplines to study how children and adults develop within the context of cultural communities. It includes discussion of cultural practices as mediators on developmental outcomes, notions of universals and diversity, and individualism and familism. We will discuss the complex ways that individual and sociocultural factors interact in learning and development.","edges_from":[],"edges_to":[],"id":2211,"label":"EDS 263","title":"Developmental Theory and Culture (4)"},{"dept":"POLI","description":"The role of the presidency in American politics. Topics will include nomination and election politics, relations with Congress, party leadership, presidential control of the bureaucracy, international political role, and presidential psychology.","edges_from":[],"edges_to":[],"id":2212,"label":"POLI 100A","title":"The Presidency (4)"},{"dept":"ETHN","description":"A survey of Asian American cultural expressions in literature, art, and music to understand the social experiences that helped forge Asian American identity. Topics: culture conflict, media portrayals, assimilation pressures, the model minority myth, and interethnic and class relations.","edges_from":[],"edges_to":[],"id":2213,"label":"ETHN 122","title":"Asian American Culture and Identity (4)"},{"dept":"ETHN","description":"This course will examine the development of Asian American politics by studying the historical and contemporary factors, such as political and economic exclusion, that have contributed to the importance and complexity of ethnicity as a mobilizing force in politics.","edges_from":[],"edges_to":[],"id":2214,"label":"ETHN 123","title":"Asian American Politics (4)"},{"dept":"ETHN","description":"Performance: The Politics of Popular Culture (4)","edges_from":[],"edges_to":[],"id":2215,"label":"ETHN 120","title":"Race and"},{"dept":"ETHN","description":"The course will study changes in Asian American communities as a result of renewed immigration since 1965; the influx of refugees from Vietnam, Kampuchea, and Laos; the impact of contemporary social movements on Asian Americans’ current economic, social, and political status.","edges_from":[],"edges_to":[],"id":2216,"label":"ETHN 121","title":"Contemporary Asian American History (4)"},{"dept":"ETHN","description":"This course compares the historical and contemporary social, political, and economic experiences of Filipino and Vietnamese Americans, paying particular attention to the impact of US wars in the Philippines and in Vietnam on their respective lives.","edges_from":[],"edges_to":[],"id":2217,"label":"ETHN 126","title":"Comparative Filipino and Vietnamese American Identities and Communities (4)"},{"dept":"COGS","description":"Review of historical perspectives: introspectionist, behaviorist, and cognitivist models. Examination of how perceptual and motor constraints and ecological demands yield species-specific differences in cognitive repertoire. Contemporary issues in the comparative study of the evolution of human cognition. ","edges_from":[],"edges_to":[],"id":2218,"label":"COGS 143","title":"Animal Cognition (4)"},{"dept":"ETHN","description":"(Cross-listed with LTEN 181.) Selected topics in the literature by men and women of Asian descent who live and write in the United States. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":2219,"label":"ETHN 124","title":"Asian American Literature (4)"},{"dept":"ETHN","description":"(Cross-listed with HIUS 124.) Explore how Asian Americans were involved in the political, economic and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.","edges_from":[],"edges_to":[],"id":2220,"label":"ETHN 125","title":"Asian American History (4)"},{"dept":"AESE","description":"Students will work collaboratively on a team project, mostly in a lab setting, to demonstrate their knowledge of leadership teams and enterprise architecting for complex systems. Students are required to take three instances of AESE 279A before they can take AESE 279B (the final for the team project). ","edges_from":[],"edges_to":[5289],"id":2221,"label":"AESE 279A","title":"Architecture-based Enterprise Systems Engineering Quarterly Team Project (1)"},{"dept":"MAE","description":"(Cross-listed with MATS 252.) This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ","edges_from":[],"edges_to":[3735],"id":2222,"label":"MAE 266","title":"Biomaterials and Medical Devices (4)"},{"dept":"POLI","description":"This course examines the development of the two major parties from 1789 to the present. Considers the nature of party coalitions, the role of leaders, activists, organizers, and voters, and the performance of parties in government.","edges_from":[],"edges_to":[],"id":2223,"label":"POLI 100C","title":"American Political Parties (4)"},{"dept":"LTRU","description":"Tutorial; individual guided reading in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2224,"label":"LTRU 199","title":"Special Studies (2 or 4)"},{"dept":"LTRU","description":"Directed group study in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2225,"label":"LTRU 198","title":"Directed Group Study (4)"},{"dept":"MAE","description":"Fluids phenomena relevant to the function, environment, and dynamics of biological cells. Topics include: low-Reynolds number flows, cell motility, internal cellular flows, development and morphogenesis, hydrodynamics of suspensions and polymers, rheology, diffusion, hydrodynamics of deformable bodies (vesicles, membranes, filaments), cells under shear flow. ","edges_from":[1537,986],"edges_to":[],"id":2226,"label":"MAE 262","title":"Biological Fluid Mechanics (4)"},{"dept":"MAE","description":"Methods in Cell Mechanics (4)","edges_from":[],"edges_to":[],"id":2227,"label":"MAE 263","title":"Experimental"},{"dept":"MAE","description":"Pressure and shear waves in infinite solids. Reflection and diffraction. Rayleigh and Love waves in semi-infinite space. Impulse load on a half space. Waveguides and group velocity. ","edges_from":[],"edges_to":[],"id":2228,"label":"MAE 167","title":"Wave Dynamics in Materials (4)"},{"dept":"POLI","description":"The theory and practice of interest group politics in the United States. Theories of pluralism and collective action, the behavior and influence of lobbies, the role of political action committees, and other important aspects of group action in politics are examined. ","edges_from":[],"edges_to":[],"id":2229,"label":"POLI 100E","title":"Interest Group Politics (4)"},{"dept":"MAE","description":"Fundamental principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. ","edges_from":[1317,2086,1429,2231,2232,2233,1147,924],"edges_to":[5312],"id":2230,"label":"MAE 155A","title":"Aerospace Engineering Design I (4)"},{"dept":"SE","description":"","edges_from":[2085,2086,399],"edges_to":[4075,2230],"id":2231,"label":"SE 160B","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[2230],"id":2232,"label":"MAE 104","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3894,2230],"id":2233,"label":"MAE 2","title":""},{"dept":"LTTH","description":"Directed group study, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.)","edges_from":[],"edges_to":[],"id":2234,"label":"LTTH 198","title":"Directed Group Study (4)"},{"dept":"LTTH","description":"Individual reading in an area not covered in courses currently offered by the department. (P/NP only.)","edges_from":[],"edges_to":[],"id":2235,"label":"LTTH 199","title":"Special Studies (2 or 4)"},{"dept":"EDS","description":"The course engages students in field research aimed at supporting education reform efforts in local schools. Students are introduced to a design-based, applied orientation to educational research on equity and diversity. In collaboration with local school leaders, students conduct qualitative research projects on a range of issues that impact youth in schools. Students will examine research on educational equity, theories of education reform, and qualitative research principles and methods. Students are required to travel to school sites. ","edges_from":[1684,1686,1687,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,77,2254,2253,2256,2257,85,87,2255,1907,629,630],"edges_to":[],"id":2236,"label":"EDS 120","title":"Introduction to Design-Based Educational Research: A Field Experience for Improving San Diego Schools (4)"},{"dept":"DOC","description":"","edges_from":[],"edges_to":[2236],"id":2237,"label":"DOC 100D","title":""},{"dept":"HITO","description":"","edges_from":[],"edges_to":[2236],"id":2238,"label":"HITO 156","title":""},{"dept":"SOCI","description":"","edges_from":[5288,2239],"edges_to":[2236,2239],"id":2239,"label":"SOCI 117","title":""},{"dept":"SOCI","description":"","edges_from":[5680,2240],"edges_to":[2240,2236],"id":2240,"label":"SOCI 139","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2236],"id":2241,"label":"EDS 117","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2236],"id":2242,"label":"EDS 113","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2236],"id":2243,"label":"EDS 112","title":""},{"dept":"LTCS","description":"","edges_from":[],"edges_to":[2236],"id":2244,"label":"LTCS 130","title":""},{"dept":"EDS","description":"","edges_from":[810],"edges_to":[4012,4939,2236,4013],"id":2245,"label":"EDS 136","title":""},{"dept":"ANTH","description":"","edges_from":[],"edges_to":[2236],"id":2246,"label":"ANTH 131","title":""},{"dept":"POLI","description":"","edges_from":[],"edges_to":[2236],"id":2247,"label":"POLI 100Q","title":""},{"dept":"HIUS","description":"","edges_from":[],"edges_to":[2236],"id":2248,"label":"HIUS 180","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2236],"id":2249,"label":"EDS 126","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2236],"id":2250,"label":"EDS 125","title":""},{"dept":"POLI","description":"","edges_from":[],"edges_to":[2236],"id":2251,"label":"POLI 100H","title":""},{"dept":"POLI","description":"","edges_from":[],"edges_to":[2236],"id":2252,"label":"POLI 100O","title":""},{"dept":"SOCI","description":"","edges_from":[5869,2253],"edges_to":[2236,2253],"id":2253,"label":"SOCI 127","title":""},{"dept":"SOCI","description":"","edges_from":[2254,5870],"edges_to":[2236,2254],"id":2254,"label":"SOCI 126","title":""},{"dept":"USP","description":"","edges_from":[],"edges_to":[2236],"id":2255,"label":"USP 129","title":""},{"dept":"HIUS","description":"","edges_from":[],"edges_to":[2236],"id":2256,"label":"HIUS 136","title":""},{"dept":"POLI","description":"","edges_from":[],"edges_to":[2236],"id":2257,"label":"POLI 108","title":""},{"dept":"POLI","description":"This course explores the various aspects of a political campaign including campaign organization, vote targeting, political parties, social media, fundraising, polling, media interactions, and more. These areas are examined citing specific examples from federal, state, and local campaigns.","edges_from":[],"edges_to":[],"id":2258,"label":"POLI 100G","title":"How to Win or Lose an Election (4)"},{"dept":"MATH","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshman. ","edges_from":[],"edges_to":[],"id":2259,"label":"MATH 87","title":"Freshman Seminar (1)"},{"dept":"BENG","description":"Development of design project in tissue engineering. ","edges_from":[66],"edges_to":[2261],"id":2260,"label":"BENG 169A","title":"Design Development in Tissue Engineering (3)"},{"dept":"BENG","description":"Implementation of design project in tissue engineering. ","edges_from":[68,2260],"edges_to":[68],"id":2261,"label":"BENG 169B","title":"Design Implementation in Tissue Engineering (3)"},{"dept":"ANBI","description":"A weekly forum for presentation and discussion of work in anthropology and cognitive neuroscience by faculty, students, and guest speakers. P/NP only. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. ","edges_from":[],"edges_to":[],"id":2262,"label":"ANBI 109","title":"Brain Mind Workshop (2)"},{"dept":"BGGN","description":"Lectures on basic and advanced concepts in cancer biology, will include defining outstanding contemporary questions and cutting-edge basic and translational research. Will rely on participants reading assigned literature prior to lectures. For doctoral or master’s students. Course will be held at the Salk Institute. S/U grades only. ","edges_from":[],"edges_to":[],"id":2263,"label":"BGGN 245","title":"Advanced Topics in Cancer Research and Therapy (2)"},{"dept":"POLI","description":"The railroads transformed the economy and politics of the United States in the nineteenth century. The railroads were the first big businesses, and their sheer size led inevitably to conflict with governments at all levels. This conflict shaped modern politics. ","edges_from":[],"edges_to":[],"id":2264,"label":"POLI 100K","title":"Railroads and American Politics (4)"},{"dept":"BGGN","description":"This course will cover the cellular","edges_from":[],"edges_to":[],"id":2265,"label":"BGGN 248","title":"Molecular Mechanisms of Neural Development (4)"},{"dept":"POLI","description":"We begin with hypotheses about how people develop political attitudes, and methods to test those hypotheses. The second half focuses on emerging cognitive neuroscience insights, including brain imaging, and asks how these inform theories of political cognition, affect, and behavior. ","edges_from":[],"edges_to":[],"id":2266,"label":"POLI 100M","title":"Political Psychology (4)"},{"dept":"BIPN","description":"Molecular basis of neuronal cell fate determination, axon pathfinding, synaptogenesis experience-based refinement of connections, and learning in the brain will be examined. ","edges_from":[],"edges_to":[],"id":2267,"label":"BIPN 144","title":"Developmental Neurobiology (4)"},{"dept":"BIPN","description":"An exploration of computational brain models, including biophysical models of single neurons, small neural circuits, and larger scale network models. ","edges_from":[369,2269,2270,2271],"edges_to":[],"id":2268,"label":"BIPN 146","title":"Computational Neurobiology (4)"},{"dept":"COGS","description":"","edges_from":[],"edges_to":[2268],"id":2269,"label":"COGS 107","title":""},{"dept":"BIPN","description":"","edges_from":[954,1013],"edges_to":[2273,2268],"id":2270,"label":"BIPN 140","title":""},{"dept":"BILD","description":"","edges_from":[],"edges_to":[5907,2268,5903],"id":2271,"label":"BILD 12","title":""},{"dept":"ETHN","description":"We analyze how concepts of power and memory are appropriated in diverse narratives: literature, theatre, personal testimonies, monuments, museums, memorials; and examine how mutually constituted processes of remembering/forgetting work to produce official discourses of nationalism, colonialism, violence, and construction of subaltern subjectivities. ","edges_from":[],"edges_to":[],"id":2272,"label":"ETHN 267","title":"History and Memory (4)"},{"dept":"BIPN","description":"Course will cover integrated networks of nerve cells, including simple circuits like those involved in spinal reflexes. Course will study how information and motor output is integrated and processed in the brain. Course will also discuss higher-level neural processing. ","edges_from":[1192,2270],"edges_to":[],"id":2273,"label":"BIPN 142","title":"Systems Neurobiology (4)"},{"dept":"ETHN","description":"This course examines popular culture as a site of domination","edges_from":[],"edges_to":[],"id":2274,"label":"ETHN 266","title":"Popular Culture and Pedagogy (4)"},{"dept":"BIPN","description":"Course will explore cellular and molecular mechanisms that underlie learning and memory. Topics will include synapse formation and synaptic plasticity, neurotransmitter systems and their receptors, mechanisms of synaptic modification, and effect of experience on neuronal connectivity, and gene expression. ","edges_from":[1192],"edges_to":[],"id":2275,"label":"BIPN 148","title":"Cellular Basis of Learning and Memory (4)"},{"dept":"ECON","description":"Study of the determinants of economic fluctuations, inflation, and interest rates with particular focus on the effects of monetary policy. Overview of key methods and findings of empirical research in macroeconomics. Recommended preparation: Econ 220D. Prerequisite: graduate standing and Econ 210A-B-C.","edges_from":[],"edges_to":[],"id":2276,"label":"ECON 210D","title":"Monetary Economics and Business Cycles (4)"},{"dept":"VIS","description":"","edges_from":[393,947,395],"edges_to":[1911],"id":2277,"label":"VIS 141A","title":""},{"dept":"NANO","description":"Various modeling techniques like finite elements, finite differences, and simulation techniques like molecular dynamics and Monte Carlo to model fluid flow, mechanical properties, self-assembly at the nanoscale, and protein, RNA and DNA folding. ","edges_from":[],"edges_to":[],"id":2278,"label":"NANO 212","title":"Computational Modeling of Nanosystems (4)"},{"dept":"NANO","description":"Molecular and modeling and simulation techniques like molecular dynamics, Monte Carlo, and Brownian dynamics to model nanoscale systems and phenomena like molecular motors, self-assembly, protein-ligand binding, RNA, folding. Valuable hands-on experience with different simulators. ","edges_from":[],"edges_to":[],"id":2279,"label":"NANO 210","title":"Molecular Modeling and Simulations of Nanoscale Systems (4)"},{"dept":"SOCI","description":"A series of case studies of the relations between society and modern science, technology, and medicine. Global warming, reproductive medicine, AIDS, and other topical cases prompt students to view science-society interactions as problematic and complex. Will not receive credit for SOCI 30 and SOCL 30.","edges_from":[],"edges_to":[],"id":2280,"label":"SOCI 30","title":"Science, Technology, and Society (4)"},{"dept":"VIS","description":"This seminar treats landscape as site, image, symbol, and ideal through a historical examination of the major themes and issues in the forms and functions of landscape and its representation in the European and, to a certain extent, the American tradition from antiquity to the present day. These historical discussions will also form a framework for observations on and analyses of contemporary landscape, both as experienced and as an idea. This course presumes no prior knowledge of the field. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20. ","edges_from":[],"edges_to":[],"id":2281,"label":"VIS 114A","title":"Landscape and Memory (4)"},{"dept":"VIS","description":"This seminar focuses on the dynamic and at times contentious relationship between antiquity and the Middle Ages as it played out in various environments—physical, social, cultural, and intellectual—from Rome to Constantinople to Venice, Pisa, and Florence. After considering classic and contemporary formulations of the problem, it turns to in-depth examination of the architecture, images, objects, and techniques at sites in the history of art, where fragments were deployed and displayed. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20 or VIS 112. ","edges_from":[],"edges_to":[],"id":2282,"label":"VIS 114B","title":"The Fragment: Uses and Theories (4)"},{"dept":"COMM","description":"What role does popular culture play in shaping and creating our shared memory of the past? The course examines diverse sources such as school textbooks, monuments, holidays and commemorations, museums, films, music, and tourist attractions. ","edges_from":[537,538,539,540],"edges_to":[],"id":2283,"label":"COMM 145","title":"History, Memory, and Popular Culture (4)"},{"dept":"COMM","description":"Course will explore the politics and culture of the 1970s through the lens of network television programming and the decade’s most provocative sitcoms, dramas, variety shows, and news features. Students will analyze television episodes and read relevant media studies scholarship. ","edges_from":[537,538,539,540],"edges_to":[],"id":2284,"label":"COMM 144","title":"American Television in the 1970s (4)"},{"dept":"VIS","description":"This course surveys the changes in art and architecture caused by the rise of new religions after the ancient world demise, a period of upheaval and contention often known as the “Clash of Gods.” How did Christianity come to dominate Europe with its churches and monasteries and then Islam with its mosques in the Middle East and North Africa? Studying the role of religion in the formation of artistic styles will show a dynamic interaction between the visual cultures of Christianity and Islam. Recommended preparation: VIS 20. ","edges_from":[],"edges_to":[],"id":2285,"label":"VIS 121B","title":"Church and Mosque: Medieval Art and Architecture between Christianity and Islam (4)"},{"dept":"COMM","description":"Focuses on science fiction’s critical investigation of history, identity, and society across a range of media forms, including film, television, and literature. ","edges_from":[537,538,539,540],"edges_to":[],"id":2286,"label":"COMM 143","title":"Science Fiction (4)"},{"dept":"COGS","description":"Research Methods in Cognitive Science (2-2-2)","edges_from":[],"edges_to":[],"id":2287,"label":"COGS 211A-B-C","title":""},{"dept":"TDHT","description":"and Medieval Theatre (4)","edges_from":[],"edges_to":[],"id":2288,"label":"TDHT 21","title":"Ancient"},{"dept":"TDHT","description":"Theatre (4)","edges_from":[],"edges_to":[],"id":2289,"label":"TDHT 23","title":"Twentieth-Century"},{"dept":"TDHT","description":"1500–1900 (4)","edges_from":[],"edges_to":[],"id":2290,"label":"TDHT 22","title":"Theatre"},{"dept":"EDS","description":"Develop teachers’ knowledge base (knowledge of mathematics content, pedagogy, and student learning) in the context of advanced mathematics. This course builds on the previous courses where these components of knowledge were addressed exclusively in the context of high-school mathematics. ","edges_from":[2292,2293,550,134],"edges_to":[],"id":2291,"label":"EDS 121A/Math 121A","title":"Foundations of Teaching and Learning Mathematics I (4)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2291],"id":2292,"label":"EDS 30M","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2291],"id":2293,"label":"EDS 30","title":""},{"dept":"MUS","description":"A study of opera masterworks that often coincide with operas presented in the San Diego Opera season. Class consists of lectures, listening labs, live performances, and opera on video. ","edges_from":[],"edges_to":[],"id":2294,"label":"MUS 12","title":"Opera (4)"},{"dept":"MUS","description":"Through surveying selected musical traditions and practices from around the world, this course explores the ways in which music both reflects and affects social, cultural, and ecological relationships. Specific case studies will be covered through lectures, films, and listening sessions. ","edges_from":[],"edges_to":[],"id":2295,"label":"MUS 13","title":"Worlds of Music (4)"},{"dept":"MUS","description":"A course on folk music of the world, covered through lectures, films, and listening sessions devoted to detailed discussion of music indigenous to varying countries/areas of the world. Topics vary from year to year. May be repeated once for credit. ","edges_from":[],"edges_to":[],"id":2296,"label":"MUS 11","title":"Folk Music (4)"},{"dept":"MUS","description":"This course will explore The Beatles from musical, cultural, historical, technological, and critical angles. It will place them in context, examining their assorted confluences and wide influences. The group will be critically examined as artists, innovators, and public personalities. Listening, watching, and discussion will provide a broader, deeper, and more personal understanding of the group’s enduring appeal. ","edges_from":[],"edges_to":[],"id":2297,"label":"MUS 16","title":"The Beatles (4)"},{"dept":"MUS","description":"This class presents a broad chronological overview of the development of hip-hop as a musical form from the late 1970s through today. It examines the development of the style in relation to direct context and to earlier African American musical and cultural forms and considers the technological and legal issues that have impacted its development. The class is listening intensive and students will be expected to know and recognize essential structures and production techniques. ","edges_from":[],"edges_to":[],"id":2298,"label":"MUS 17","title":"Hip-Hop (4)"},{"dept":"MUS","description":"This course offers opportunities to prepare oneself for experiences with new music (through preview lectures), hear performances (by visiting or faculty artists), to discuss each event informally with a faculty panel: an effort to foster informed listening to the new in music. ","edges_from":[],"edges_to":[],"id":2299,"label":"MUS 14","title":"Contemporary Music (4)"},{"dept":"MUS","description":"A course on popular music from different time periods, covered through lectures, films, and listening sessions. Topics vary from year to year. May be repeated once for credit. ","edges_from":[],"edges_to":[],"id":2300,"label":"MUS 15","title":"Popular Music (4)"},{"dept":"MUS","description":"A survey of Eastern European Jewish folk music, Yiddish theatre and popular song, and their transition to America. Credit not allowed for MUS 18 and JUDA 18. (Cross-listed with JUDA 18.) ","edges_from":[],"edges_to":[],"id":2301,"label":"MUS 18","title":"Klezmer Music (4)"},{"dept":"ANAR","description":"This course trains students to design, implement, and conduct research in anthropological archaeology. Writing and presenting work in progress will take place in a seminar-like forum. ","edges_from":[],"edges_to":[],"id":2302,"label":"ANAR 170","title":"Research Design in Anthropological Archaeology (4)"},{"dept":"LTEU","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":2303,"label":"LTEU 87","title":"Freshman Seminar (1)"},{"dept":"HISC","description":"175/275. The Historical Sciences in the Nineteenth Century (4)","edges_from":[],"edges_to":[],"id":2304,"label":"HISC","title":""},{"dept":"BGSE","description":"Discussions of recent research in various aspects of biological research conducted by third- and fourth-year doctoral students in the Division of Biological Sciences. S/U grades only.","edges_from":[],"edges_to":[],"id":2305,"label":"BGSE 205","title":"Graduate Research Seminar (1)"},{"dept":"PHYS","description":"Physics II: PDE and Matrix Models (4)","edges_from":[],"edges_to":[],"id":2306,"label":"PHYS 142","title":"Computational"},{"dept":"BGSE","description":"Invited speakers from the United States and abroad, who are leaders in various aspects of biological research, describe their current research. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":2307,"label":"BGSE 200","title":"Seminar in Biology (1)"},{"dept":"PHYS","description":"Gaseous nebulae, molecular clouds, ionized","edges_from":[],"edges_to":[],"id":2308,"label":"PHYS 224","title":"Physics of the Interstellar Medium (4)"},{"dept":"EDS","description":"Last course in a three-course sequence. It provides pedagogical methods for multiple subject teaching. General teaching methods are integrated into a single intercurricular course of study by emphasizing activity/inquiry techniques of instruction. ","edges_from":[2310],"edges_to":[],"id":2309,"label":"EDS 361C","title":"Innovative Instructional Practices III (4)"},{"dept":"EDS","description":"","edges_from":[5677],"edges_to":[2309],"id":2310,"label":"EDS 361B","title":""},{"dept":"PHYS","description":"The structure and dynamics of galaxies. Topics include potential theory, the theory of stellar orbits, self-consistent equilibria of stellar systems, stability and dynamics of stellar systems including relaxation and approach to equilibrium. Collisions between galaxies, galactic evolution, dark matter, and galaxy formation.","edges_from":[],"edges_to":[],"id":2311,"label":"PHYS 226","title":"Galaxies and Galactic Dynamics (4)"},{"dept":"CSE","description":"Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2312,"label":"CSE 199","title":"Independent Study for Undergraduates (2 or 4)"},{"dept":"PHYS","description":"Study of group theoretical methods with applications to problems in high energy, atomic, and condensed matter physics. Representation theory, tensor methods, Clebsh-Gordan series. Young tableaux. The course will cover discrete groups, Lie groups and Lie algebras, with emphasis on permutation, orthogonal, and unitary groups. ","edges_from":[2314],"edges_to":[],"id":2313,"label":"PHYS 220","title":"Group Theoretical Methods in Physics (4)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[2313],"id":2314,"label":"PHYS 212C","title":""},{"dept":"PHYS","description":"Energy generation, flow, hydrostatic equilibrium,","edges_from":[],"edges_to":[],"id":2315,"label":"PHYS 223","title":"Stellar Structure and Evolution (4)"},{"dept":"CSE","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in CSE (at the upper-division level). Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2316,"label":"CSE 192","title":"Senior Seminar in Computer Science and Engineering (1)"},{"dept":"GPEC","description":"Effects of fiscal and monetary policies on aggregate variables such as output, nominal and real interest rates, price level, and employment. Additional topics include the inflation/ unemployment trade-off, budget deficit, and economic growth. Renumbered from IRGN 431. Students may not receive credit for GPEC 431 and IRGN 431.","edges_from":[],"edges_to":[],"id":2317,"label":"GPEC 431","title":"Fiscal and Monetary Policy (4)"},{"dept":"CSE","description":"in Computer Science and Engineering (4)","edges_from":[],"edges_to":[],"id":2318,"label":"CSE 190","title":"Topics"},{"dept":"CSE","description":"A seminar course on topics of current interest. Students, as well as, the instructor will be actively involved in running the course/class. This course cannot be counted toward a technical elective. ","edges_from":[],"edges_to":[],"id":2319,"label":"CSE 191","title":"Seminar in CSE (1–4)"},{"dept":"PHYS","description":"Astrophysics and Compact Objects (4)","edges_from":[],"edges_to":[],"id":2320,"label":"PHYS 228","title":"High-Energy"},{"dept":"CSE","description":"Study in Computer Science and Engineering (4, 8, 12, or 16)","edges_from":[],"edges_to":[],"id":2321,"label":"CSE 197","title":"Field"},{"dept":"CSE","description":"Teaching and tutorial assistance in a CSE course under the supervision of the instructor. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2322,"label":"CSE 195","title":"Teaching (4)"},{"dept":"HIEU","description":"This course looks at sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries. Students may not get credit for both HIEU 127 and HIEU 127D.","edges_from":[],"edges_to":[],"id":2323,"label":"HIEU 127D","title":"Sport in the Modern World (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ","edges_from":[],"edges_to":[],"id":2324,"label":"Linguistics/Heritage Languages (LIHL) 134W","title":"Advanced Vietnamese for Vietnamese Speakers (4)"},{"dept":"VIS","description":"Using a wide range of nineteenth-century texts, this course will offer close discussions of romantic criticism and aesthetic philosophy (ideas of originality, genius, and nature); the conditions of “modern life;” realism and naturalism; science and photography; and questions of form, expression, symbolism, and history. This is a seminar course. Recommended preparation: two upper-division art history courses. ","edges_from":[680],"edges_to":[],"id":2325,"label":"VIS 113AN","title":"History of Criticism I: Early Modern (4)"},{"dept":"CHEM","description":"(Cross-listed with NANO 241.) This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science.","edges_from":[],"edges_to":[],"id":2326,"label":"CHEM 241","title":"Organic Nanomaterials (4)"},{"dept":"CHEM","description":"(Cross-listed with NANO 255.) Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electro-chemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. (May not be offered every year.)","edges_from":[],"edges_to":[],"id":2327,"label":"CHEM 240","title":"Electrochemistry (4)"},{"dept":"CHEM","description":"The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field starting from the basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. This course is geared to introduce students with limited prior exposure to the field, supported by selected readings and class notes. May be coscheduled with CHEM 142. Recommended preparation: undergraduate-level organic chemistry and at least one previous course in either general biology, molecular biology, or cell biology is strongly encouraged.","edges_from":[],"edges_to":[],"id":2328,"label":"CHEM 242","title":"Introduction to Glycosciences (4)"},{"dept":"CHEM","description":"Methodology of mechanistic organic chemistry: integration of rate expressions, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, substituent effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. (May not be offered every year.)","edges_from":[],"edges_to":[],"id":2329,"label":"CHEM 246","title":"Kinetics and Mechanism (4)"},{"dept":"MGT","description":"This course provides an introduction to the role and use of models and modeling in managerial decision-making. Students will gain hands-on experience in evaluating accounting data using Microsoft Excel. Content includes creating data boxes in financial accounting, using multiple sheets with formulas, preparing professional quality financial reports, and creating graphs to interpret business results. Students will also explore the utility of QuickBooks and the functionality for small businesses. ","edges_from":[],"edges_to":[],"id":2330,"label":"MGT 138","title":"Information Technology and Accounting (4)"},{"dept":"COGS","description":"Statistical methods for analyzing behavioral data. A mathematically sophisticated course covering both classical and Bayesian statistical methods for estimation, hypothesis testing, regression, and model comparison. Emphasis on both mathematical understanding of statistical methods as well as common applications. ","edges_from":[1995,140,141],"edges_to":[],"id":2331,"label":"COGS 118D","title":"Mathematical Statistics for Behavioral Data Analysis (4)"},{"dept":"COGS","description":"This course will cover theoretical foundations and practical applications of signal processing to neural data. Topics include EEG/field potential methods (filtering, Fourier (spectral) analysis, coherence) and spike train analysis (reverse correlation, spike sorting, multielectrode recordings). Some applications to neural imaging (optical microscopy, fMRI) data will also be discussed. ","edges_from":[140,141,862,2333,2334,2335],"edges_to":[],"id":2332,"label":"COGS 118C","title":"Neural Signal Processing (4)"},{"dept":"COGS","description":"","edges_from":[3165],"edges_to":[1028,1029,4327,3849,3691,4205,5417,2332,2334],"id":2333,"label":"COGS 14B","title":""},{"dept":"COGS","description":"","edges_from":[393,682,140,141,2670,1074,2333],"edges_to":[5908,5909,2332,5325,5903],"id":2334,"label":"COGS 109","title":""},{"dept":"COGS","description":"","edges_from":[393,1074,682,2670],"edges_to":[5908,2332,5325,5903],"id":2335,"label":"COGS 108","title":""},{"dept":"COGS","description":"This course, with Cognitive Science 118A, forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118B include: maximum likelihood estimation, Bayesian parameter estimation, clustering, principal component analysis, and some application areas. ","edges_from":[1995,136,393,395,140,141],"edges_to":[3771,5908,5909],"id":2336,"label":"COGS 118B","title":"Introduction to Machine Learning II (4)"},{"dept":"COGS","description":"This course with COGS 118B forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118A include: regression, nearest neighborhood, decision tree, support vector machine, and ensemble classifiers. ","edges_from":[1995,136,393,395,140,141],"edges_to":[3771,5908,5909],"id":2337,"label":"COGS 118A","title":"Introduction to Machine Learning I (4)"},{"dept":"SIO","description":"to Marine Biodiversity and Conservation—Seminar (8)","edges_from":[],"edges_to":[],"id":2338,"label":"SIO 295S","title":"Introduction"},{"dept":"SE","description":"for Structural and Aerospace Engineering (4)","edges_from":[],"edges_to":[2341],"id":2339,"label":"SE 271","title":"Solid Mechanics"},{"dept":"SE","description":"Overview of inelastic behavior of materials. Models of plasticity, viscoplasticity, viscoelasticity. Micromechanics and modeling of damage. Fatigue phenomena. Fracture mechanics. Processes and models of the failure of materials. Students may not receive credit for SE 273 and MAE 231C. ","edges_from":[],"edges_to":[],"id":2340,"label":"SE 273","title":"Inelasticity (4)"},{"dept":"SE","description":"Development, formulation, and application of field equations of elasticity and variational principles for structural applications in civil and aerospace area. Use of plane stress and plane strain formulation, solution of typical boundary value problems. ","edges_from":[2339],"edges_to":[],"id":2341,"label":"SE 272","title":"Theory of Elasticity (4)"},{"dept":"ECON","description":"This course will cover certain country experiences and certain topics in more depth than in Econ 165. Students will also have the opportunity to choose countries and topics of particular interest to them for further reading and as subjects for a presentation and brief paper. ","edges_from":[1288],"edges_to":[],"id":2342,"label":"ECON 165T","title":"Advanced Topics in Middle East Economics (2)"},{"dept":"SE","description":"This course will provide an overview of the latest technology for evaluating and improving the accuracy and validity of linear and nonlinear finite element models, solution verification, finite element model validation, sensitivity analysis, uncertainty analysis, and test-analysis correlation. ","edges_from":[2344,2345],"edges_to":[],"id":2343,"label":"SE 277","title":"Error Control in Finite Element Analysis (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[5641,2343],"id":2344,"label":"MAE 232B","title":""},{"dept":"SE","description":"","edges_from":[],"edges_to":[2343],"id":2345,"label":"SE 232B","title":""},{"dept":"SE","description":"Meshfree approximation theories (moving least-squares, reproducing kernel, partition of unity, radial basis), Galerkin meshfree methods, collocation meshfree methods, imposition of boundary conditions, domain integration, stability, nonlinear meshfree method for hyperelasticity and plasticity, meshfree methods for fracture and plate/shell problems. ","edges_from":[2347,2348],"edges_to":[],"id":2346,"label":"SE 279","title":"Meshfree Methods for Linear and Nonlinear Mechanics (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[2753,2346,5641],"id":2347,"label":"MAE 232A","title":""},{"dept":"SE","description":"","edges_from":[],"edges_to":[2753,2346,5641],"id":2348,"label":"SE 276A","title":""},{"dept":"POLI","description":"This graduate course surveys theories of regional political and economic integration and international cooperation from a comparative and international relations perspective. We compare and contrast the European Union and other regional organizations. ","edges_from":[],"edges_to":[],"id":2349,"label":"POLI 245A","title":"Political Economy of Regional Integration (4)"},{"dept":"POLI","description":"This course examines the most critical areas in contemporary world politics. While the emphasis will be placed on American involvement in each crisis, an effort will be made to acquaint the student with its historical and political background. ","edges_from":[],"edges_to":[],"id":2350,"label":"POLI 142P","title":"Crisis Areas in World Politics (4)"},{"dept":"GPCO","description":"Students will work closely with the faculty of record and a GPS professor who specializes in the research who are chosen for the capstone project. This required second quarter will be focused on writing, developing a presentation, and presenting the work to either a real-world client or a panel of faculty. ","edges_from":[779],"edges_to":[],"id":2351,"label":"GPCO 471","title":"MCEPA Capstone Part II (4)"},{"dept":"MUS","description":"This course, second in a three-quarter sequence, focuses on understanding music theory and in developing musical ability through rhythm, ear training, and sight singing exercises. Topics include major and minor scales, seventh-chords, transposition, compound meter and rudiments of musical form. ","edges_from":[2353],"edges_to":[5804],"id":2352,"label":"MUS 1B","title":"Fundamentals of Music B (4)"},{"dept":"MUS","description":"","edges_from":[],"edges_to":[2352],"id":2353,"label":"MUS 1A","title":""},{"dept":"EDS","description":"The course, designed for graduate students serving as teaching assistants in teacher education courses, includes discussion of teaching theory and practice, instructional materials, organization of discussion sections, liaison with participating schools, and methods of evaluation/grading under the supervision of the instructor of the course. S/U grades only. May be taken for credit five times.","edges_from":[],"edges_to":[],"id":2354,"label":"EDS 500","title":"Apprentice Teaching in Education (2–4)"},{"dept":"POLI","description":"“Terrorism” uses “illegitimate” violence to achieve political goals. This course uses philosophical, historical, and contemporary material from distinct cultures to understand which actions are defined as “terrorist,” who uses them, why, and when, as well as the determinants of their effectiveness.","edges_from":[],"edges_to":[],"id":2355,"label":"POLI 142L","title":"Insurgency and Terrorism (4)"},{"dept":"LTSP","description":"Consideration of one or more major figures, texts, trends, or problems in Spanish American prose. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":2356,"label":"LTSP 258","title":"Spanish American Prose (4)"},{"dept":"POLI","description":"This course offers an exploration of general theories of the origins of warfare; the impact of the state on war in the modern world; and the microfoundations of combat and compliance in the context of the costs of war and military mobilization. The course should be of special interest to students in international relations and comparative politics.","edges_from":[],"edges_to":[],"id":2357,"label":"POLI 142K","title":"Politics and Warfare (4)"},{"dept":"POLI","description":"A survey of theories of defense policies and international security.","edges_from":[],"edges_to":[],"id":2358,"label":"POLI 142I","title":"National and International Security (4)"},{"dept":"Linguistics/Italian","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1A. ","edges_from":[],"edges_to":[],"id":2359,"label":"Linguistics/Italian (LIIT) 1AX","title":"Analysis of Italian (2.5)"},{"dept":"POLI","description":"United States foreign policy from the colonial period to the present era. Systematic analysis of competing explanations for US policies—strategic interests, economic requirements, or the vicissitudes of domestic politics. Interaction between the U.S., foreign states (particularly allies), and transnational actors are examined. ","edges_from":[2361],"edges_to":[],"id":2360,"label":"POLI 142A","title":"United States Foreign Policy (4)"},{"dept":"POLI","description":"","edges_from":[],"edges_to":[2360],"id":2361,"label":"POLI 12","title":""},{"dept":"COMM","description":"Movement is central to our lives. This course draws on the latest research into how we travel, trade, and move. Diverse topics will be covered, including kids in cars, the New York subway, and theories of mobility. ","edges_from":[540],"edges_to":[],"id":2362,"label":"COMM 105M","title":"CT: Mobile Communication (4)"},{"dept":"POLI","description":"Independent work by graduate students engaged in research and writing of second-year paper and doctoral dissertation, under direct supervision of advisor.","edges_from":[],"edges_to":[],"id":2363,"label":"POLI 299","title":"Dissertation Research (1–12)"},{"dept":"MGT","description":"This course covers the management of technology and innovation emphasizing","edges_from":[],"edges_to":[],"id":2364,"label":"MGT 246","title":"Research in Management and Technology Strategy (4)"},{"dept":"BILD","description":"Introduction to the elements of human physiology and the functioning of the various organ systems. The course presents a broad, yet detailed, analysis of human physiology, with particular emphasis toward understanding disease processes. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 26 after receiving credit for BIPN 100.","edges_from":[],"edges_to":[],"id":2365,"label":"BILD 26","title":"Human Physiology (4)"},{"dept":"MAE","description":"An introduction to topics in aeronautical and astronautical engineering including aerodynamics, propulsion, flight mechanics, structures, materials, orbital mechanics, design, mission planning, and environments. General topics include historical background, career opportunities, engineering ethics, and professionalism. ","edges_from":[],"edges_to":[],"id":2366,"label":"MAE 02","title":"Introduction to Aerospace Engineering (4)"},{"dept":"COMM","description":"Course considers computer games both as media and as sites of communication. Games are studied through hands-on play and texts from a variety of disciplinary perspectives. Course encompasses commercial, academic, and independent games. ","edges_from":[540],"edges_to":[],"id":2367,"label":"COMM 105G","title":"CT: Computer Games Studies (4)"},{"dept":"MAE","description":"(Cross-listed with SE 7.) Spatial visualization is the ability to manipulate 2-D and 3-D shapes in one’s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ","edges_from":[],"edges_to":[],"id":2368,"label":"MAE 07","title":"Spatial Visualization (1)"},{"dept":"MATH","description":"Thesis Research for Undergraduates (2–4)","edges_from":[],"edges_to":[],"id":2369,"label":"MATH 199H","title":"Honors"},{"dept":"MAE","description":"Introductory course for nonengineering majors. Use of computers in solving problems; applications from life sciences, physical sciences, and engineering. Students run existing computer programs and complete some programming in BASIC. ","edges_from":[],"edges_to":[],"id":2370,"label":"MAE 05","title":"Quantitative Computer Skills (4)"},{"dept":"POLI","description":"Statistics for Political Science and Public Policy (4)","edges_from":[],"edges_to":[],"id":2371,"label":"POLI 170A","title":"Introductory"},{"dept":"LTWL","description":"This course explores the writings of Buddhists who actively engage with the problems of the world: social, environmental, economic, political. We will examine the historical development of engaged Buddhism in light of traditional Buddhist concepts of morality, interdependence, and liberation.","edges_from":[],"edges_to":[],"id":2372,"label":"LTWL 136","title":"Socially Engaged Buddhism (4)"},{"dept":"LTEN","description":"Similar to a 297, but a paper is required. Papers are usually on subject not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.","edges_from":[],"edges_to":[],"id":2373,"label":"LTEN 298","title":"Special Projects: Writing Course (1–12)"},{"dept":"LTWL","description":"Selected topics, texts, and problems in the study of religion. May be repeated for credit when content varies.","edges_from":[],"edges_to":[],"id":2374,"label":"LTWL 138","title":"Critical Religion Studies (4)"},{"dept":"COMM","description":"This course examines photographic technologies as a set of instruments and practices that modern societies have developed and used to tell stories about themselves and make particular claims about truth and reality, focusing on the domains of science, policing, journalism, advertising, and self-expression. ","edges_from":[540],"edges_to":[],"id":2375,"label":"COMM 105P","title":"CT: Photographic Technologies (4)"},{"dept":"BENG","description":"The role of the cellular microenvironment in directing cell behavior and function in health and disease. Cell adherence and deformation and cell-mediated matrix remodeling. Bioengineering of the microenvironment in tissue engineering and regenerative medicine. ","edges_from":[2377],"edges_to":[],"id":2376,"label":"BENG 241B","title":"Tissue Engineering and Regenerative Medicine: Cell Microenvironment (4)"},{"dept":"BENG","description":"","edges_from":[],"edges_to":[2376,5383],"id":2377,"label":"BENG 241A","title":""},{"dept":"EDS","description":"Revisit students’ learning difficulties in mathematics in more depth to prepare students to make meaningful observations of how K–12 teachers deal with these difficulties. Explore how instruction can use students’ knowledge to pose problems that stimulate students’ intellectual curiosity.","edges_from":[],"edges_to":[],"id":2378,"label":"EDS 30/Math 95","title":"Introduction to Math Teaching (2)"},{"dept":"COGS","description":"This sequence is an intensive research project. Students under faculty mentorship perform a thorough analysis of the problem and the literature, carry out original studies, and prepare oral and written presentations. Students should aim for a report of publishable quality. Letter grade required.","edges_from":[],"edges_to":[],"id":2379,"label":"COGS 210A-B-C","title":"Introduction to Research (4-4-4)"},{"dept":"USP","description":"This course covers the methods and procedures utilized in development from inception to completion. Topics include initial planning, project feasibility and decision-making, partnerships, financing, design, entitlement and approvals, site acquisition, construction management, project completion, leasing, and asset management. ","edges_from":[],"edges_to":[],"id":2380,"label":"USP 151","title":"Real Estate Planning and Development (4)"},{"dept":"USP","description":"This course reviews the legal issues, processes, and institutions involved in real estate. Topics include principles of real property law, legislative and judicial institutions, land use and environmental regulation, financial instruments, property transactions, and forms of investment and development entities. ","edges_from":[],"edges_to":[],"id":2381,"label":"USP 150","title":"Real Estate and Development Law and Regulation (4)"},{"dept":"USP","description":"This course examines the analysis of demand for real estate products and site-specific real estate development projects. Consideration is given to relevant factors such as economic change, social attitudes, and changing laws. ","edges_from":[],"edges_to":[],"id":2382,"label":"USP 153","title":"Real Estate and Development Market Analysis (4)"},{"dept":"USP","description":"This course investigates the institutions, instruments, and structures by which investment in real estate is financed. It reviews capital markets, the sources and uses of real estate funds, and the role of government in real estate finance. ","edges_from":[],"edges_to":[],"id":2383,"label":"USP 152","title":"Real Estate Development Finance and Investment (4)"},{"dept":"USP","description":"This course compares real estate markets in Asia, Europe, the Middle East, and Latin America. It explores the factors that affect these regions’ real estate economies including finance in city systems, emerging markets, development trends, demographic shifts, and urban planning. ","edges_from":[],"edges_to":[],"id":2384,"label":"USP 155","title":"Real Estate Development in Global and Comparative Perspective (4)"},{"dept":"USP","description":"(Same as Political Science 111B.) Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally. ","edges_from":[],"edges_to":[],"id":2385,"label":"USP 154","title":"Global Justice in Theory and Action (4)"},{"dept":"GPIM","description":"This course focuses on developing an in-depth understanding of four of China’s most dynamic industries. These are health care, consumer goods and retail, high technology, and eCommerce. Students will select one of these four industries for deep study and will gain an overview of the other three. The course includes extensive analysis of investment bank analyst reports and Harvard case studies. The course also includes simulated job interviews in the targeted industries. May not receive credit for both GPIM 429 and IRGN 490, Understanding China’s Dynamic Industries.","edges_from":[],"edges_to":[],"id":2386,"label":"GPIM 429","title":"Understanding China’s Dynamic Industries (4)"},{"dept":"GPIM","description":"This course examines the challenges of corporate leadership and entrepreneurship in China, with discussion of business in Taiwan as well. The issues are explored from the perspective of various types of companies in China, including start-ups, larger private sector companies, state-owned enterprises, and multinational companies. We explore various major industries in China, and explore various managerial challenges including strategy, HR, partnership development, and government relations. May not receive credit for GPIM 428 and IRGN 490. Management and Entrepreneurship in China.","edges_from":[],"edges_to":[],"id":2387,"label":"GPIM 428","title":"Management and Entrepreneurship in China (4)"},{"dept":"EDS","description":"The mutual influence of language, culture, and education will be explored; explanations of students’ school successes and failures that employ linguistic and cultural variables will be considered; bilingualism and cultural transmission through education. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for EDS 117GS and EDS 117 and SOCI 117. ","edges_from":[],"edges_to":[],"id":2388,"label":"EDS 117GS","title":"Language, Culture, and Education (4)"},{"dept":"GPIM","description":"The role and function of marketing in organizations and society. Attention is given to the analysis of markets and customers using primary and secondary sources of information and the planning, implementation, and evaluation of marketing strategies and programs. Renumbered from IRGN 420. Students may not receive credit for GPIM 420 and IRGN 420.","edges_from":[],"edges_to":[],"id":2389,"label":"GPIM 420","title":"Marketing (4)"},{"dept":"EDS","description":"Foundations of Teaching and Learning Science (4)","edges_from":[],"edges_to":[],"id":2390,"label":"EDS 122/Chem 187","title":""},{"dept":"GPIM","description":"The topics covered are dividend policy and capital structure, options, debt financing, and short- and long-term in financial planning. Course format will be mostly lectures with occasional cases. Some international aspects of corporate finance will also be discussed. Renumbered from IRGN 424. Students may not receive credit for GPIM 424 and IRGN 424.","edges_from":[],"edges_to":[],"id":2391,"label":"GPIM 424","title":"Corporate Finance (4)"},{"dept":"GPIM","description":"This course explores the major types of business systems prevalent in developing Asia. These include, for example, the state-owned enterprises of China, Chinese private sector firms, family-owned businesses of HK/Taiwan/SE Asia, Taiwanese tech firms, the Korean Chaebol, Indian promoter-led companies, and companies of developed markets that operate in the region. Course explores the nature of incentives, constraints, and decision making within these different types of firms. May not receive credit for GPIM 427 and IRGN 490. Competing Business Systems of Developing Asia.","edges_from":[],"edges_to":[],"id":2392,"label":"GPIM 427","title":"The Competing Business Systems of Developing Asia"},{"dept":"GPIM","description":"This course provides a case-based approach to developing and implementing strategy. It uses business cases from Asia (China, Japan, Taiwan, and South Korea) and Latin America (Mexico, Brazil, Chile, and Argentina) to help students develop a well-defined methodology for approaching strategic decision making that would be applicable to any situation. Renumbered from IRGN 426. Students may not receive credit for GPIM 426 and IRGN 426.","edges_from":[],"edges_to":[],"id":2393,"label":"GPIM 426","title":"Business Strategy in the Pacific Rim (4)"},{"dept":"MATH","description":"Introduction to varied topics in several complex variables. In recent years, topics have included formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit six times with consent of adviser as topics vary. ","edges_from":[2395,2396],"edges_to":[2397],"id":2394,"label":"MATH 221A","title":"Topics in Several Complex Variables (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[2394],"id":2395,"label":"MATH 200A","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[2394],"id":2396,"label":"MATH 220C","title":""},{"dept":"MATH","description":"Continued development of a topic in several complex variables. Topics include: formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[2394],"edges_to":[],"id":2397,"label":"MATH 221B","title":"Further Topics in Several Complex Variables (4)"},{"dept":"VIS","description":"The course seeks to bring the scientific laboratory into the artist and designers’ studio, and vice versa. It explores intersections of advanced research in art/ design and science/technology. The course will focus on a specific laboratory innovation or a longer-term enduring challenge, and will conceive and prototype possible applications, scenarios, structures, and interventions. Course will be conducted in direct collaborations with other campus laboratories and research units. ","edges_from":[2399],"edges_to":[],"id":2398,"label":"VIS 162","title":"Speculative Science and Design Invention (4)"},{"dept":"VIS","description":"","edges_from":[1155],"edges_to":[2400,2398,4975],"id":2399,"label":"VIS 161","title":""},{"dept":"VIS","description":"What is design as a way of knowing? The course examines critical contemporary topics in design theory, epistemology, research, and criticism. Students develop original critical and theoretical discourse. Topics draw from combinations of experimental and conceptual art, philosophy of technology, architectural theory and design, speculative fiction, bioethics and nanoethics, political philosophy of artificial intelligence and robotics, and critical engineering studies. ","edges_from":[2399],"edges_to":[],"id":2400,"label":"VIS 163","title":"Design Research and Criticism (4)"},{"dept":"VIS","description":"The photograph is an empirical object. This course will explore the use of photography as a tool to both understand and represent the world. Students will learn the history of the use of photography as evidence and as a tool of empirical knowledge. In a world where subjectivity is performed the students will be required to make a medium-sized work that engages the social in a creative way. Program or materials fees may apply. Two production-course limitation. ","edges_from":[568,567],"edges_to":[],"id":2401,"label":"VIS 167","title":"Social Engagement and Photography (4)"},{"dept":"Soc/G","description":"The history of the concept of culture; cultural pluralism in advanced industrialized societies; the differentiation of cultural institutions; cultural policy and social structure; culture as a property of social groups; conflict and accommodation over efforts to change and sustain traditional culture.","edges_from":[],"edges_to":[],"id":2402,"label":"Soc/G 216","title":"Sociology of Culture (4)"},{"dept":"Soc/G","description":"The causes and effects of social ranking in various societies. Theories of stratification; the dynamics of informal social grouping; determinants of institutional power, and the nature of struggles for power; the distribution of wealth and its causes; the dynamics of social mobility; the effects of stratification on life-styles, culture, and deviance. ","edges_from":[],"edges_to":[],"id":2403,"label":"Soc/G 212","title":"Social Stratification (4)"},{"dept":"Soc/G","description":"This course provides an overview and practical, hands-on introduction to some of the common tools employed in computational approaches to social science research. Students will acquire sufficient skills to use existing tools to conduct computational social science research, such as basic Python language. Recommended preparation: knowledge of or background in statistics. ","edges_from":[],"edges_to":[],"id":2404,"label":"Soc/G 211","title":"Introduction to Computational Social Science (4)"},{"dept":"SE","description":"Free-and forced-vibration of continuous systems such as axial and torsional vibrations of bars and transverse vibrations of various beams, membranes, and plates. Euler-Lagrange formulation using variational calculus. Rayleigh-Ritz method for approximation. Applications in vibration suppression/isolation. ","edges_from":[],"edges_to":[],"id":2405,"label":"SE 204","title":"Advanced Structural Dynamics (4)"},{"dept":"SIOC","description":"This course explores the interaction between climate science, policy, and the larger culture. S/U grades permitted. ","edges_from":[],"edges_to":[],"id":2406,"label":"SIOC 292","title":"Introduction to Climate Science and Policy (4)"},{"dept":"SOCI","description":"This course examines major formulations of the relationship between law and culture in the sociological literature. Topics include formal law versus embedded law, law and morality, law and the self, legal consciousness, the rule of law, and the construction of legality. ","edges_from":[2408,2407],"edges_to":[2407],"id":2407,"label":"SOCI 160E","title":"Law and Culture (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[2407],"id":2408,"label":"SOCB 160L","title":""},{"dept":"SE","description":"Introduction to probability theory and random processes. Dynamic analysis of linear structural systems subjected to stationary and nonstationary random excitations. Reliability studies related to first excursion and fatigue failures. Applications in earthquake engineering, offshore engineering, wind engineering, and aerospace engineering. Use of computer resources. Recommended preparation: basic knowledge of probability theory (SE 125 or equivalent). ","edges_from":[1621],"edges_to":[],"id":2409,"label":"SE 206","title":"Random Vibrations (4)"},{"dept":"COGS","description":"Empirical investigation of the nature of mathematics. How the human mind/brain creates abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero: embodiment, creativity, and history. Cognitive approaches that connect mathematics to human thought in general.","edges_from":[],"edges_to":[],"id":2410,"label":"COGS 252","title":"Cognitive Science of Mathematics (4)"},{"dept":"SE","description":"A course to be given at the discretion of the faculty in which topics of current interest in structural engineering will be presented.","edges_from":[],"edges_to":[],"id":2411,"label":"SE 207","title":"Topics in Structural Engineering (4)"},{"dept":"FPM","description":"This course will provide an overview of the problem of cancer and its avoidable causes. It covers some of the hottest topics currently facing cancer prevention professional as they try to prevent cancer from occurring in the first place and delay its progression.","edges_from":[],"edges_to":[],"id":2412,"label":"FPM 257","title":"Cancer: Cause and Prevention (2)"},{"dept":"HITO","description":"This course tracks the worldwide interplay of sport and race. We begin with patterns of exclusion and participation on the part of African Americans, Latinos, and Native Americans. We then examine patterns of inequality across the globe.","edges_from":[],"edges_to":[],"id":2413,"label":"HITO 155","title":"Race, Sport, and Inequality in the Twentieth Century (4)"},{"dept":"NEU","description":"Laboratory research under the supervision of individual members of the faculty of the neurosciences department in one or a combination of neurosciences disciplines, e.g., neuroanatomy, neurophysiology, neurochemistry, neuropharmacology. (P/NP grades only.) (F,W,S)","edges_from":[],"edges_to":[],"id":2414,"label":"NEU 199","title":"Independent Research (2 or 4)"},{"dept":"LTSP","description":"Spanish: Spanish for Bilingual Speakers (4)","edges_from":[],"edges_to":[],"id":2415,"label":"LTSP 2D","title":"Intermediate/Advanced"},{"dept":"LTSP","description":"Readings and Composition for Bilingual Speakers (4)","edges_from":[],"edges_to":[82,83,84],"id":2416,"label":"LTSP 2E","title":"Advanced"},{"dept":"LTSP","description":"Spanish II: Readings and Composition (5)","edges_from":[],"edges_to":[],"id":2417,"label":"LTSP 2B","title":"Intermediate"},{"dept":"LTSP","description":"Spanish III: Cultural Topics and Composition (4)","edges_from":[],"edges_to":[82,83,84],"id":2418,"label":"LTSP 2C","title":"Intermediate"},{"dept":"LTSP","description":"Course is taught in Spanish, emphasizing the development of reading ability, listening comprehension, and writing skills. It includes grammar review, weekly compositions, and class discussions. Successful completion of LTSP 2A satisfies the requirement for language proficiency in Revelle College. ","edges_from":[2420,2421,2422],"edges_to":[],"id":2419,"label":"LTSP 2A","title":"Intermediate Spanish I: Foundations (5)"},{"dept":"LISP","description":"","edges_from":[],"edges_to":[3656,2419],"id":2420,"label":"LISP 1DX","title":""},{"dept":"LISP","description":"","edges_from":[],"edges_to":[2419,3132,4821],"id":2421,"label":"LISP 1C","title":""},{"dept":"LISP","description":"","edges_from":[],"edges_to":[3656,2419],"id":2422,"label":"LISP 1D","title":""},{"dept":"AESE","description":"Architectural foundations, frameworks, standards, and infrastructures with an emphasis on layered architectures, loose coupling, architecture evolution, service- and component-oriented architectures, enterprise service buses, metadata and information virtualization, ontologies, Semantic Web, policy and governance, service-level agreements, information assurance essentials. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ","edges_from":[1868,2424,2425,2426,2427,2428],"edges_to":[2435,2429],"id":2423,"label":"AESE 278B","title":"Enterprise Architecting (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[4335,2423],"id":2424,"label":"MGT 406","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[2423],"id":2425,"label":"ECE 205","title":""},{"dept":"AESE","description":"","edges_from":[2433,2426,2427,1868],"edges_to":[2426,2429,2434,2423],"id":2426,"label":"AESE 278A","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[2426,2434,2423],"id":2427,"label":"CSE 278A","title":""},{"dept":"MGT","description":"","edges_from":[],"edges_to":[2429,2423],"id":2428,"label":"MGT 291","title":""},{"dept":"AESE","description":"Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ","edges_from":[2154,2423,2426,2428,2429,2430,2431],"edges_to":[2434,2435,2429],"id":2429,"label":"AESE 278C","title":"Modeling, Simulation, and Analysis (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[2434,2429],"id":2430,"label":"ECE 206","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[2434,2429],"id":2431,"label":"CSE 278C","title":""},{"dept":"GPPA","description":"Course builds on policy-making processes class by focusing on nonelected officials’ role in setting and implementing policy. Ideally, elected officials make policies that unbiased, technically proficient bureaucrats carry out. Course provides insight into why the real world departs from this. Renumbered from IRGN 407. Students may not receive credit for GPPA 407 and IRGN 407.","edges_from":[],"edges_to":[],"id":2432,"label":"GPPA 407","title":"Policy Implementation Process (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[2426,2434],"id":2433,"label":"ECE 205A","title":""},{"dept":"AESE","description":"Engineering tools and their use in defining the layered and service-oriented architectures, Unified Modeling Language and enterprise architecture tools, business and process modeling tools, visualization methods, data and information management tools, comprehensive domain modeling, architecture implementation via enterprise service buses. This workshop course meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ","edges_from":[2433,2154,1868,2426,2427,2429,2430,2431],"edges_to":[2435],"id":2434,"label":"AESE 278D","title":"Engineering Essentials for Open, Distributed Systems (4)"},{"dept":"AESE","description":"Fundamental aspects of pattern methodologies and re-use, requirements, design and architecture patterns, patterns for service-oriented architectures, enterprise application and integration patterns, E-business patterns, event-driven architectures and patterns for complex event processing, process patterns, architecture evolution and refactoring using patterns. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ","edges_from":[2434,2429,2423],"edges_to":[],"id":2435,"label":"AESE 278E","title":"Patterns for Enterprise Architecting (4)"},{"dept":"ANTH","description":"The seminar will follow recent advances and key discoveries in the coastal and maritime archaeology of Israel and the eastern Mediterranean from the Neolithic period to the end of the classical period. Topics include methodologies of underwater excavations and surveys, sunken Neolithic villages of the Carmel coast, archaeology and geoarchaeology of Canaanite and Phoenician harbors, shipwrecks of the eastern Mediterranean and maritime trade, the Anthropocene, sea level changes, and paleoclimate. ","edges_from":[],"edges_to":[],"id":2436,"label":"ANTH 265","title":"Marine and Coastal Archaeology: Israel and the Neighboring Lands (4)"},{"dept":"ANTH","description":"This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANBI 134. ","edges_from":[],"edges_to":[],"id":2437,"label":"ANTH 264","title":"Human Evolutionary Genetics (4)"},{"dept":"ANTH","description":"Despite being foundational to the discipline of anthropology, ethnographic methods are often mystifying to graduate students. Students are expected to simply go into their respective field sites armed with a notebook, voice recorder, and hope. Drawing on feminist and decolonial epistemologies, we will examine, critique, and reconstruct ethnography’s dilemmas, changing forms, and ethical stakes as we understand it as a particular mode of writing and representation. ","edges_from":[],"edges_to":[],"id":2438,"label":"ANTH 267","title":"Decolonizing Ethnography: Ethics, Politics, and Praxis (4)"},{"dept":"ANTH","description":"This course interrogates the association of romantic love with modernity, egalitarianism, and choice. The focus is on how cultural political economy shapes desires and structures relationships. We consider how race, class, nation, gender, and sexuality reinforce or undermine status hierarchies. For example, we examine the concept of racial and transnational hypergamy, in which women, men, and trans people from lower status ethnic groups and developing countries “marry up.” ","edges_from":[],"edges_to":[],"id":2439,"label":"ANTH 266","title":"Anthropology of Love (4)"},{"dept":"Soc/G","description":"A survey of topics in urban sociology, including the city and suburb as social forms, civility among strangers, urbanism and culture, the political economy of metropolitan development, urban poverty, and racial residential segregation. Classical and contemporary approaches will be considered. ","edges_from":[],"edges_to":[],"id":2440,"label":"Soc/G 214 Urban Sociology (4)","title":""},{"dept":"ANTH","description":"This seminar examines medical, psychological, and psychiatric anthropology through reading, discussion, and presentation of work 1) essential to the development of and 2) exemplifying the state of the art in these related fields. May be taken for credit up to two times. ","edges_from":[],"edges_to":[],"id":2441,"label":"ANTH 260","title":"Seminar in Medical and Psychological Anthropology (4)"},{"dept":"ANTH","description":"This graduate seminar discusses recent publications on topics related to human evolution and health in modern and ancient populations, using data beyond traditional genetics, including the microbiome, various levels of epigenetic regulation (DNA and histone modifications, micro and non-coding RNAs), telomeres, hormonal influences on the genome (e.g., cortisol, oxytocin), and gender-biased selection in reproductive success under stressful environments. ","edges_from":[],"edges_to":[],"id":2442,"label":"ANTH 263","title":"Beyond the Genome (4)"},{"dept":"ANTH","description":"Anthropology has long analyzed the relations between culture, economics, and politics. This seminar will examine these issues through ethnographic and historical accounts, engaging contemporary theory and debates. S/U grades only. May be taken for credit ten times. ","edges_from":[],"edges_to":[],"id":2443,"label":"ANTH 262","title":"Critical Anthropology Workshop (4)"},{"dept":"TDGR","description":"One-on-one laboratory workshop that examines practical applications of accents, speech and voice work, dialect, movement and combat work specific and ancillary to the productions in which the students have been cast. ","edges_from":[],"edges_to":[],"id":2444,"label":"TDGR 212","title":"Acting Practicum (2)"},{"dept":"Classics","description":"F,W,S. May be repeated for credit. Satisfactory/Unsatisfactory","edges_from":[],"edges_to":[],"id":2445,"label":"Classics 299","title":"Dissertation Research (4–12)"},{"dept":"ANSC","description":"What can we learn by looking at a society’s ideas about marriage, intimate relationships, and family? Why do these “private” institutions draw so much public scrutiny and debate? How are they linked to concepts of national progress, individualism, religion, status, or morality? We will explore these questions in Western and non-Western contexts through such topics as polygamy, same-sex marriage, transnational marriage, and the global impact of Western ideas of love and companionate marriage. ","edges_from":[],"edges_to":[],"id":2446,"label":"ANSC 159","title":"The Anthropology of Marriage (4)"},{"dept":"ANSC","description":"Starting at the crisis of 2008, but with beginnings in the early 1980s, the theme of this course is the dynamic mechanisms that lead to crisis, systemic and otherwise. It will deal with historical and archaeological discussions of particular cases of breakdowns, collapses, and transformations. It also deals extensively with crisis misrecognition and its causes from moral dramas, witchcraft epidemics, intimate violence, overt conflict, ethnicity, etc. ","edges_from":[],"edges_to":[],"id":2447,"label":"ANSC 158","title":"Comparative Anthropology of Crisis (4)"},{"dept":"ETHN","description":"(Cross-listed with TDHT 120.) This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for TDHT 120 and ETHN 163G.","edges_from":[],"edges_to":[],"id":2448,"label":"ETHN 163G","title":"Indigenous Theatre and Performance (4)"},{"dept":"ANTH","description":"","edges_from":[],"edges_to":[162],"id":2449,"label":"ANTH 101","title":""},{"dept":"ANSC","description":"","edges_from":[],"edges_to":[162],"id":2450,"label":"ANSC 123","title":""},{"dept":"ANSC","description":"How and why is gender important to religious practices, doctrines, and ideologies? Focusing on modern Islam, Christianity, and Judaism, we will look at women’s involvement in religious movements as well as religious debates over issues of gender, sexuality, and marriage. ","edges_from":[],"edges_to":[],"id":2451,"label":"ANSC 154","title":"Gender and Religion (4)"},{"dept":"Classics","description":"F,W,S.","edges_from":[],"edges_to":[],"id":2452,"label":"Classics 290","title":"Research in Classics (4-4-4)"},{"dept":"ANSC","description":"This course examines historical and cultural dimensions of madness as depicted in iconic and popular films such as “One Flew Over the Cuckoo’s Nest,” “Girl Interrupted,” “Silver Linings Playbook,” along with ethnographic and artistic films that utilize anthropological approaches. ","edges_from":[],"edges_to":[],"id":2453,"label":"ANSC 156","title":"Mad Films: Cultural Studies of Mental Illness in Cinema (4)"},{"dept":"ANSC","description":"This course examines ethnographies of the US-Mexican borderlands to understand how the binational relationship shapes social life on both sides of the border. Topics discussed will include the maquiladora industry, drug trafficking, militarization, migration, tourism, missionary work, feminicide, and prostitution. ","edges_from":[],"edges_to":[],"id":2454,"label":"ANSC 151","title":"U.S.-Mexico Border Ethnographies (4)"},{"dept":"ANSC","description":"This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcome in non-European and North American countries are explored. ","edges_from":[],"edges_to":[],"id":2455,"label":"ANSC 150","title":"Culture and Mental Health (4)"},{"dept":"HISC","description":"Explores the origin of clinical method, the hospital, internal surgery, and the medical laboratory, as well as the historical roots of debates over health-care reform, genetic determinism, and the medicalization of society.","edges_from":[],"edges_to":[],"id":2456,"label":"HISC 115","title":"History of Modern Medicine (4)"},{"dept":"HISC","description":"The Origin of Species by means of Natural Selection, and its scientific, intellectual, and political legacies. Topics include social Darwinism, eugenics, Nazi racial hygiene, population control, neo-Malthusianism in the modern environmental movement.","edges_from":[],"edges_to":[],"id":2457,"label":"HISC 114","title":"The Darwinian Legacy (4)"},{"dept":"HISC","description":"A survey of the history of the neurosciences from the seventeenth century to the present, exploring the political, philosophical, cultural, aesthetic and ethical aspects of research into the workings of the human brain.","edges_from":[],"edges_to":[],"id":2458,"label":"HISC 117","title":"History of the Neurosciences (4)"},{"dept":"HISC","description":"The story behind the postwar rise of bioethics—medical","edges_from":[],"edges_to":[],"id":2459,"label":"HISC 116","title":"History of Bioethics (4)"},{"dept":"HISC","description":"Development of nuclear science and weapons—1930s to present—including the discovery of radioactivity and fission, the Manhattan project, the bombings of Hiroshima and Nagasaki and end of WWII, the H-bomb, and legacies of nuclear proliferation, environmental damage, and radioactive waste.","edges_from":[],"edges_to":[],"id":2460,"label":"HISC 111","title":"The Atomic Bomb and the Atomic Age (4)"},{"dept":"HISC","description":"There was no such thing as a single, unchanging relationship between science and religion, and this is a course about it. Topics include the “Conflict Thesis,” natural theology, the Galileo Affair, Darwinism, the antievolution crusade, creationism, secularization, atheism, and psychoanalysis. +","edges_from":[],"edges_to":[],"id":2461,"label":"HISC 110","title":"Historical Encounters of Science and Religion (4)"},{"dept":"HISC","description":"This course explores contemporary issues in biology, ethics, and society. We will start by examining early cases of biopolitics, like social Darwinism and eugenics, and proceed to more recent issues, such as genetic engineering, patenting life, and the pharmaceutical industry.","edges_from":[],"edges_to":[],"id":2462,"label":"HISC 119","title":"Biology and Society (4)"},{"dept":"Linguistics/American","description":"Sign Language (LISL) 1DX. Analysis of American Sign Language (2.5)","edges_from":[],"edges_to":[],"id":2463,"label":"Linguistics/American","title":""},{"dept":"LTEN","description":"A lecture/discussion course exploring the rich and varied achievements of Shakespeare’s later plays, including the major tragedies and late romances. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare’s theatre and his society.","edges_from":[],"edges_to":[],"id":2464,"label":"LTEN 113","title":"Shakespeare II: The Jacobean Period (4)"},{"dept":"LTEN","description":"A lecture/discussion course exploring the development of Shakespeare’s dramatic powers in comedy, history, and tragedy, from the early plays to the middle of his career. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare’s theatre and his society.","edges_from":[],"edges_to":[],"id":2465,"label":"LTEN 112","title":"Shakespeare I: The Elizabethan Period (4)"},{"dept":"LTEN","description":"Major literary works of the Renaissance, an exciting period of social and cultural transformation in England as elsewhere in Europe. Topics may include a central theme (e.g., humanism, reformation, revolution), a genre (e.g., pastoral), or comparison with other arts and sciences. May be repeated up to three times for credit when topics vary.","edges_from":[],"edges_to":[],"id":2466,"label":"LTEN 110","title":"Topics: The Renaissance (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":2467,"label":"LTEN 117","title":"Topics: The Seventeenth Century (4)"},{"dept":"LIGN","description":"Modularity and models of language processing, basic neurophysiology,","edges_from":[],"edges_to":[],"id":2468,"label":"LIGN 181","title":"Language Processing in the Brain (4)"},{"dept":"LIGN","description":"The mind/body problem, modularity,","edges_from":[],"edges_to":[],"id":2469,"label":"LIGN 180","title":"Language Representation in the Brain (4)"},{"dept":"PHYS","description":"Special theory of relativity, covariant formulation of electrodynamics, radiation from current distributions and accelerated charges, multipole radiation fields, waveguides and resonant cavities. ","edges_from":[426],"edges_to":[],"id":2470,"label":"PHYS 203B","title":"Advanced Classical Electrodynamics II (4)"},{"dept":"HIGR","description":"Consideration and development of pedagogical methods appropriate to undergraduate teaching in the interdisciplinary Sixth College core sequence: Culture, Art, and Technology. Supervised by the core program faculty, director, and associate directors for the Writing and Thematic Programs.","edges_from":[],"edges_to":[],"id":2471,"label":"HIGR 502","title":"Apprentice Teaching in Culture, Art, and Technology (CAT) (4)"},{"dept":"HIGR","description":"A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. (S/U grades only.)","edges_from":[],"edges_to":[],"id":2472,"label":"HIGR 500","title":"Apprentice Teaching in History (1–4)"},{"dept":"HIGR","description":"Teaching assistant for lower-level Hebrew courses, Judaic Studies 1, 2, 3. Must teach four or six sections and grade assignments.","edges_from":[],"edges_to":[],"id":2473,"label":"HIGR 505","title":"Apprentice Teaching in Judaic Studies (4)"},{"dept":"ETHN","description":"This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287.","edges_from":[],"edges_to":[],"id":2474,"label":"ETHN 287","title":"Ethnography Practicum (4)"},{"dept":"ECON","description":"This course presents a selection of empirical applications and advanced topics that build on the material covered in Econ 102, Globalization. Students have the opportunity to analyze global trade and capital market data and to prepare a presentation and brief paper on a specific topic. ","edges_from":[800],"edges_to":[],"id":2475,"label":"ECON 102T","title":"Advanced Topic in Globalization (2)"},{"dept":"ETHN","description":"This course explores major currents in black intellectual history, and some paths less well tread, structured thematically, geographically, and chronologically from the nineteenth century to the present. Students read foundational primary sources and contemporary scholarly studies of African diasporic texts. ","edges_from":[],"edges_to":[],"id":2476,"label":"ETHN 280","title":"Black Thought: Roots and Routes (4)"},{"dept":"ETHN","description":"This course is a research seminar on themes of contemporary and historic importance in ethnic studies. Themes will be determined by instructor. Course may be repeated three times for credit.","edges_from":[],"edges_to":[],"id":2477,"label":"ETHN 289","title":"Topics in Ethnic Studies Research (4)"},{"dept":"ENVR","description":"Explores the diverse ecosystems of coastal San Diego County (salt marsh, rocky intertidal, sandy beach, etc.) in the classroom and in the field with attention to basic principles of field ecology, natural history, and techniques for collecting ecological data. Course and/or materials fee may apply. ","edges_from":[],"edges_to":[],"id":2478,"label":"ENVR 120","title":"Coastal Ecology (4)"},{"dept":"PHIL","description":"A study of one or more figures in nineteenth-century philosophy, such as Schopenhauer, Nietzsche, Kierkegaard, Marx, Emerson, Thoreau, James, and Mill. The focus may be on particular figures or intellectual themes and traditions. May be repeated for credit with change of content and approval of instructor. ","edges_from":[],"edges_to":[],"id":2479,"label":"PHIL 108","title":"Nineteenth-Century Philosophy (4)"},{"dept":"PHIL","description":"Central texts, figures, and traditions in","edges_from":[],"edges_to":[],"id":2480,"label":"PHIL 109","title":"History of Analytic Philosophy (4)"},{"dept":"MATH","description":"Unconstrained optimization: linear least squares; randomized linear least squares; method(s) of steepest descent; line-search methods; conjugate-gradient method; comparing the efficiency of methods; randomized/stochastic methods; nonlinear least squares; norm minimization methods. Convex constrained optimization: optimality conditions; convex programming; Lagrangian relaxation; the method of multipliers; the alternating direction method of multipliers; minimizing combinations of norms. ","edges_from":[2482],"edges_to":[],"id":2481,"label":"MATH 173B","title":"Optimization Methods for Data Science II (4)"},{"dept":"MATH","description":"","edges_from":[138,139,140,134],"edges_to":[2481],"id":2482,"label":"MATH 173A","title":""},{"dept":"Linguistics/French","description":"(2–4)","edges_from":[],"edges_to":[],"id":2483,"label":"Linguistics/French (LIFR) 11","title":"Elementary French Reading"},{"dept":"PHIL","description":"A study of selected texts from the main schools of Hellenistic philosophy—Stoicism, Epicureanism, and Skepticism. ","edges_from":[],"edges_to":[],"id":2484,"label":"PHIL 102","title":"Hellenistic Philosophy (4)"},{"dept":"MATH","description":"Elementary number theory with applications. Topics include","edges_from":[],"edges_to":[],"id":2485,"label":"MATH 104A","title":"Number Theory I (4)"},{"dept":"MATH","description":"II (4)","edges_from":[],"edges_to":[],"id":2486,"label":"MATH 104B","title":"Number Theory"},{"dept":"MATH","description":"Topics in algebraic and analytic number theory, with an advanced","edges_from":[],"edges_to":[],"id":2487,"label":"MATH 104C","title":"Number Theory III (4)"},{"dept":"TDMV","description":"An introduction to the physical practice of yoga. A detailed investigation into the ancient somatic practice of energetically connecting the mind and body through kinesthetic and sensory awareness and how this supports and informs dance practices. May be taken for credit six times. ","edges_from":[],"edges_to":[],"id":2488,"label":"TDMV 5","title":"Yoga for Dance (2)"},{"dept":"CHEM","description":"Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.","edges_from":[],"edges_to":[],"id":2489,"label":"CHEM 219C","title":"Special Topics in Biochemistry (2 or 4)"},{"dept":"TDMV","description":"Introduction to the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds a beginning technical jazz vocabulary with a focus on rhythmic exercises, isolations, turns, and locomotor combinations. May be taken for credit six times. ","edges_from":[],"edges_to":[5387],"id":2490,"label":"TDMV 3","title":"Beginning Jazz (2)"},{"dept":"ANAR","description":"The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500–1000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Course is offered during summer Study Abroad. Students may not receive credit for both ANAR 157 and ANAR 157S. ","edges_from":[],"edges_to":[],"id":2491,"label":"ANAR 157S","title":"Early Empires of the Andes: The Middle Horizon (4)"},{"dept":"TDMV","description":"A contemporary approach to beginning-level ballet technique, principles, and terminology. Develops the body for strength, flexibility, and artistic interpretation. Emphasis on developing a foundation in movement for the continuation of ballet training. Historical origin of ballet will be discussed. May be taken for credit six times. ","edges_from":[],"edges_to":[5020],"id":2492,"label":"TDMV 1","title":"Beginning Ballet (2)"},{"dept":"LIGN","description":"Advanced material in special areas of the study of meaning and its relation to formal aspects of human language. May be taken for credit three times as topics vary.","edges_from":[],"edges_to":[],"id":2493,"label":"LIGN 235","title":"Topics in Semantics (2–4)"},{"dept":"ERC","description":"Seminar: International Themes (1)","edges_from":[],"edges_to":[],"id":2494,"label":"ERC 20","title":"Freshman Honors"},{"dept":"Linguistics/Hindi","description":"(LIHI) 1C. Hindi Conversation (2.5)","edges_from":[],"edges_to":[],"id":2495,"label":"Linguistics/Hindi","title":""},{"dept":"LIGN","description":"Theories of semantic structure. The relation of meaning to grammar, and how it is to be accommodated in an overall model of linguistic organization. The application of formal semantics to the description of natural language.","edges_from":[],"edges_to":[],"id":2496,"label":"LIGN 230","title":"Semantics (4)"},{"dept":"LIGN","description":"(Same as Psychology 235.) This course will explore the development of concepts and linguistic meaning via classic case studies in semantics, including word learning, quantifier acquisition, and the foundations of mathematics. The course will draw on evidence from linguistics, the philosophy of language, and developmental psychology.","edges_from":[],"edges_to":[],"id":2497,"label":"LIGN 232","title":"Semantic Development (4)"},{"dept":"EDS","description":"This course examines schooling from an anthropological perspective, focusing on the impact of social and cultural forces on teaching and learning in US public schools using comparative materials from other societies and settings. ","edges_from":[],"edges_to":[],"id":2498,"label":"EDS 272","title":"Education and Culture (4)"},{"dept":"EDS","description":"and Equity in Educational Reform (4)","edges_from":[],"edges_to":[],"id":2499,"label":"EDS 270","title":"Leadership"},{"dept":"ETHN","description":"","edges_from":[],"edges_to":[],"id":2500,"label":"ETHN 139","title":"Chicano Literature in English (4)"},{"dept":"GLBH","description":"(Cross-listed with ANSC 129.) This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. Students may not receive credit for GLBH 129 and ANSC 129.","edges_from":[],"edges_to":[],"id":2501,"label":"GLBH 129","title":"Meaning and Healing (4)"},{"dept":"ETHN","description":"and Ethnicity in Modern American Society (4)","edges_from":[],"edges_to":[],"id":2502,"label":"ETHN 134","title":"Immigration"},{"dept":"ETHN","description":"(Cross-listed with CGS 137.) This course will focus on the intersection of labor, class, race, ethnicity, gender, sexuality, and immigration in Latina cultural production. Examined from a socioeconomic, feminist, and cultural perspective, class readings will allow for historically grounded analyses of these issues. Course may be repeated as topics vary.","edges_from":[],"edges_to":[],"id":2503,"label":"ETHN 137","title":"Latina Issues and Cultural Production (4)"},{"dept":"ETHN","description":"(Cross-listed with SIO 114.) Introduction to the scientific basis and critical analysis of environmental justice, with an emphasis on case studies, activism, and community engagement. This course will prepare students to critique and develop scientific models, research designs, and measurements consistent with environmental justice. Students may not receive credit for both ETHN 136 and SIO 114.","edges_from":[],"edges_to":[],"id":2504,"label":"ETHN 136","title":"The Science and Critical Analysis of Environmental Justice (4)"},{"dept":"ETHN","description":"Economic History of the Southwest II (4)","edges_from":[],"edges_to":[],"id":2505,"label":"ETHN 131","title":"Social and"},{"dept":"ETHN","description":"Economic History of the Southwest I (4)","edges_from":[],"edges_to":[],"id":2506,"label":"ETHN 130","title":"Social and"},{"dept":"ETHN","description":"(Cross-listed with TDHT 110.) Focusing on the contemporary evolution of Chicano dramatic literature, the course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant actors, plays, and documentaries for their contributions to the developing Chicano theatre movement.","edges_from":[],"edges_to":[],"id":2507,"label":"ETHN 132","title":"Chicano Dramatic Literature (4)"},{"dept":"MAE","description":"(Cross-listed with MATS 227 and Chem 222.)","edges_from":[],"edges_to":[],"id":2508,"label":"MAE 251","title":"Structure and Analysis of Solids (4)"},{"dept":"MAE","description":"(Cross-listed with MATS 236.) Topics include phase equilibria and crystallography, defects and thermodynamics (Kröger-Vink notation), glass scona, electrical and ionic transport behavior, Bronner diagrams, powder synthesis and compaction, sintering theory and grain growth, mechanical optical, magnetic, electrical properties, fuel cells. ","edges_from":[],"edges_to":[],"id":2509,"label":"MAE 253","title":"Advanced Ceramics (4)"},{"dept":"MAE","description":"Layer and Renewable Energy Meteorology (4)","edges_from":[],"edges_to":[],"id":2510,"label":"MAE 255","title":"Boundary"},{"dept":"MAE","description":"(Cross-listed with MATS 256.) This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor, and chemical structures, and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. ","edges_from":[],"edges_to":[],"id":2511,"label":"MAE 254","title":"Energy Materials and Applications (4)"},{"dept":"HINE","description":"186/286. Special Topics in Middle Eastern History (4)","edges_from":[],"edges_to":[],"id":2512,"label":"HINE","title":""},{"dept":"MAE","description":"Global insolation heat engine; solar-wind coupling; regional/seasonal insolation patterns; atmospheric radiation balance; RTE models; scattering; optical depth and transmittance of cloud layers; Schwarzschild’s equation; absorption/emission lines; rotational, vibrational and electronic transitions; Doppler/pressure broadening; Elsasser/Malkmus/Edwards models; solution methods. ","edges_from":[],"edges_to":[],"id":2513,"label":"MAE 256","title":"Radiative Transfer for Energy Applications (4)"},{"dept":"HIGR","description":"A two-quarter research seminar in Korean history. Seminar topics will vary.","edges_from":[],"edges_to":[],"id":2514,"label":"HIGR 219B","title":"Research Seminar in Modern Korean History (4)"},{"dept":"HIGR","description":"A two-quarter research seminar in Korean history. A paper, based on original research, will be due in HIGR 219B. Seminar topics will vary.","edges_from":[],"edges_to":[],"id":2515,"label":"HIGR 219A","title":"Research Seminar in Modern Korean History (4)"},{"dept":"NANO","description":"Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ","edges_from":[],"edges_to":[],"id":2516,"label":"NANO 199","title":"Independent Study for Undergraduates (4)"},{"dept":"ANBI","description":"The course will explore the major epidemiological transitions from ape-like ancestors to foraging tribes, farmers, and pastoralists to the global metropolitan primate we now are. We will focus on how diseases have shaped humans and how humans have shaped disease. ","edges_from":[],"edges_to":[],"id":2517,"label":"ANBI 139","title":"Evolution of Human Disease (4)"},{"dept":"ANBI","description":"The great apes are our closest living relatives and their ecology and evolution provide insights for human evolutionary history and perhaps ideas about how to coexist with them. The course examines the natural history, behavior, ecology, and life history of each of the great apes including: orangutans, gorillas, bonobos, and chimpanzees. We will also consider conservation issues facing wild great apes, the welfare of apes in captivity, and ethical debates on ape “personhood.” ","edges_from":[],"edges_to":[],"id":2518,"label":"ANBI 133","title":"Planet of the Apes: Evolution and Ecology of the Great Ape (4)"},{"dept":"ANBI","description":"Biological and health consequences of racial and social inequalities. Psychosocial stress and measurement of health impact. Effects on disease and precursors to disease, including measures of molecular biology (e.g., epigenetics, gene expression), and biomarkers of inflammation, cardiometabolic health, and immune function. ","edges_from":[],"edges_to":[],"id":2519,"label":"ANBI 130","title":"Biology of Inequality (4)"},{"dept":"ANBI","description":"This course examines conceptions of race from both evolutionary and sociocultural perspectives. We will examine current patterns of human genetic variation and critically determine how these patterns map onto current and historic conceptions of race in the United States, and abroad. We will also explore the social construction of race throughout US history, the use of racial categories in biomedicine today, and consequences of racism and discrimination on health. ","edges_from":[],"edges_to":[],"id":2520,"label":"ANBI 131","title":"Biology and Culture of Race (4)"},{"dept":"ANBI","description":"This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANTH 264. ","edges_from":[],"edges_to":[],"id":2521,"label":"ANBI 134","title":"Human Evolutionary Genetics (4)"},{"dept":"ANBI","description":"This course provides hands-on experience with the latest molecular techniques as applied to questions of anthropological and human genetic interest. Students will isolate their own DNA and generate DNA sequence data. They will also measure and analyze the percent of DNA methylation at certain regions of their own genomes. We will also discuss measurement of other nongenetic biomarkers that can be incorporated into anthropological research of living populations, e.g., cortisol measures. ","edges_from":[],"edges_to":[],"id":2522,"label":"ANBI 135","title":"Genetic Anthropology Lab Techniques (4)"},{"dept":"BENG","description":"A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BENG 285 and ECE 204 and BNFO 285. ","edges_from":[2524,2525,2526],"edges_to":[],"id":2523,"label":"BENG 285/BNFO 285/ECE 204","title":"Statistical Learning in Bioinformatics (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[2760,4464,2523,2525,4819],"id":2524,"label":"ECE 271A","title":""},{"dept":"ECE","description":"","edges_from":[2524],"edges_to":[2760,4464,2523],"id":2525,"label":"ECE 271B","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[4464,2523],"id":2526,"label":"MATH 283","title":""},{"dept":"MUS","description":"Individual instruction on intermediate level in instrumental technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ","edges_from":[],"edges_to":[],"id":2527,"label":"MUS 32","title":"Instrumental/Vocal Instruction (2)"},{"dept":"LTWL","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":2528,"label":"LTWL 87","title":"Freshman Seminar (1)"},{"dept":"ECON","description":"A practical yet theory-based study of the firm’s role in managing workers, including issues related to hiring, education and training, promotions, layoffs and buyouts, and the overarching role that worker compensation plays in all of these. ","edges_from":[542],"edges_to":[],"id":2529,"label":"ECON 136","title":"Human Resources (4)"},{"dept":"BIPN","description":"Coverage of the history of research, diagnosis, and treatment of common neuropsychiatric disorders. Comparisons will be made between primary research data and existing treatments, and on developing skills to digest scientific literature aimed at understanding the neuroscience of disease. ","edges_from":[954,1013],"edges_to":[],"id":2530,"label":"BIPN 152","title":"The Healthy and Diseased Brain (4)"},{"dept":"BIPN","description":"Course will be taught from a research perspective, highlighting the biological pathways impacted by different neurological diseases. Each disease covered will be used to illustrate a key molecular/cellular pathway involved in proper neurological function. ","edges_from":[1193,412],"edges_to":[],"id":2531,"label":"BIPN 150","title":"Diseases of the Nervous System (4)"},{"dept":"FMPH","description":"This practicum provides hand-on experience with biomedical research and data analysis. Working within a specific biomedical domain (e.g., cancer, genomics, or physical activity research), students will conduct original data analysis, and prepare or substantially contribute to a final project report. May be taken for credit up to five times. ","edges_from":[2533,2534],"edges_to":[],"id":2532,"label":"FMPH 241","title":"Biostatistics Rotation (3)"},{"dept":"FMPH","description":"","edges_from":[482,2940,2534],"edges_to":[2532,5942,2934,2935,2936,2937,2938],"id":2533,"label":"FMPH 222","title":""},{"dept":"FMPH","description":"","edges_from":[],"edges_to":[2532,2533,5942,2934,2935,2937,2938],"id":2534,"label":"FMPH 221","title":""},{"dept":"Linguistics/French","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1AX. ","edges_from":[],"edges_to":[],"id":2535,"label":"Linguistics/French (LIFR) 1A","title":"French Conversation (2.5)"},{"dept":"Linguistics/French","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1BX. ","edges_from":[2537,2538],"edges_to":[],"id":2536,"label":"Linguistics/French (LIFR) 1B","title":"French Conversation (2.5)"},{"dept":"LIFR","description":"","edges_from":[],"edges_to":[2536,4109],"id":2537,"label":"LIFR 1AX","title":""},{"dept":"LIFR","description":"","edges_from":[],"edges_to":[2536,4109],"id":2538,"label":"LIFR 1A","title":""},{"dept":"Linguistics/French","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1CX. ","edges_from":[2540,2541],"edges_to":[],"id":2539,"label":"Linguistics/French (LIFR) 1C","title":"French Conversation (2.5)"},{"dept":"LIFR","description":"","edges_from":[],"edges_to":[4265,2539],"id":2540,"label":"LIFR 1B","title":""},{"dept":"LIFR","description":"","edges_from":[],"edges_to":[4265,2539],"id":2541,"label":"LIFR 1BX","title":""},{"dept":"Linguistics/French","description":"Small conversation sections taught entirely in French. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIFR 1DX. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ","edges_from":[2544,2543],"edges_to":[],"id":2542,"label":"Linguistics/French (LIFR) 1D","title":"French Conversation (2.5)"},{"dept":"LIFR","description":"","edges_from":[],"edges_to":[2970,4627,2542],"id":2543,"label":"LIFR 1CX","title":""},{"dept":"LIFR","description":"","edges_from":[],"edges_to":[2970,4627,2542],"id":2544,"label":"LIFR 1C","title":""},{"dept":"MAE","description":"Introduction to groundwater flow. Pollution transport through the water table. Fundamentals of flow. Single- and multi-phase flow. Darcy law. Well hydraulics. Diffusion and dispersion. Gravity currents and plumes in porous media. Chemistry of fluid-solid interactions. Fundamentals of adsorption and surface reactions. ","edges_from":[1148,2546,676,988],"edges_to":[],"id":2545,"label":"MAE 123","title":"Introduction to Transport in Porous Media (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[2545,5966],"id":2546,"label":"MAE 105","title":""},{"dept":"NANO","description":"Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. Cross-listed with MATS 227, MAE 251 and Chem 222. ","edges_from":[],"edges_to":[],"id":2547,"label":"NANO 227","title":"Structure and Analysis of Solids (4)"},{"dept":"PHIL","description":"An investigation of a selected philosophical topic through","edges_from":[],"edges_to":[],"id":2548,"label":"PHIL 90","title":"Basic Problem in Philosophy (4)"},{"dept":"ECON","description":"(Cross-listed with USP 102.) Economic analysis of why cities develop, patterns of land use in cities, why cities suburbanize, and the pattern of urban commuting. The course also examines problems of urban congestion, air pollution, zoning, poverty, crime, and discusses public policies to deal with them. Credit not allowed for both Econ 135 and USP 102. ","edges_from":[129,130,547,543],"edges_to":[],"id":2549,"label":"ECON 135","title":"Urban Economics (4)"},{"dept":"MAE","description":"to Applied Mathematics II (4)","edges_from":[],"edges_to":[],"id":2550,"label":"MAE 294B","title":"Introduction"},{"dept":"MAE","description":"to Applied Mathematics III (4)","edges_from":[],"edges_to":[],"id":2551,"label":"MAE 294C","title":"Introduction"},{"dept":"MAE","description":"(Cross-listed with SIO 203A.) Review of exact methods for ordinary differential equations. Expansions about regular and irregular singular points. Introduction to asymptotic expansions. Approximate methods for nonlinear differential equations. Regular and singular perturbation theory. Additional topics depending upon the interests of the instructor.","edges_from":[],"edges_to":[],"id":2552,"label":"MAE 294A","title":"Introduction to Applied Mathematics (4)"},{"dept":"LIGN","description":"The student undertakes a program of research and advanced reading in linguistics under the supervision of a faculty member in the Department of Linguistics. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2553,"label":"LIGN 199H","title":"Honors Independent Study in Linguistics (4)"},{"dept":"TDGR","description":"Advanced voice training designed to help the actor fuse voice, emotion, and body into a fully realized reflection of the text. (S/U grades only.) ","edges_from":[2555],"edges_to":[],"id":2554,"label":"TDGR 224A-B","title":"Voice for Theatre II (3-3)"},{"dept":"TDGR","description":"","edges_from":[],"edges_to":[2554],"id":2555,"label":"TDGR 224A","title":""},{"dept":"HIUS","description":"The course addresses the causes, course, and consequences of the US Civil War. We will explore such themes as how Unionists and Confederates mobilized their populations and dealt with dissension, the war’s effects on gender and race relations, and the transformation of the federal government.","edges_from":[],"edges_to":[],"id":2556,"label":"HIUS 112","title":"The US Civil War (4)"},{"dept":"MAE","description":"Topics in mathematical analysis, with the emphasis on those of use in applications. The topics may include: metric spaces, open and closed sets, compact sets, continuity, differentiation, series of functions and uniform convergence, convex sets and functions, transforms, and Stokes theorem. ","edges_from":[],"edges_to":[2558],"id":2557,"label":"MAE 289A","title":"Mathematical Analysis for Applications (4)"},{"dept":"MAE","description":"Topics in real analysis, with the emphasis on those of use in applications. May include: countable/uncountable, open and closed sets, topology, Borel sets, sigma algebras, measurable functions, integration (Lebesgue), absolute continuity, function spaces, and fixed-point theorems. ","edges_from":[2557],"edges_to":[2559],"id":2558,"label":"MAE 289B","title":"Real Analysis for Applications (4)"},{"dept":"MAE","description":"Topics in functional analysis, with the emphasis on those of use in applications. May include: function spaces, linear functionals, dual spaces, reflexivity, linear operators, strong and weak convergence, Hahn-Banach Theorem, nonlinear functionals, differential calculus of variations, Pontryagin Maximum Principle. Students cannot obtain credit for MAE 289C if they have taken MAE 289. ","edges_from":[2558],"edges_to":[],"id":2559,"label":"MAE 289C","title":"Functional Analysis and Applications (4)"},{"dept":"HIUS","description":"This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification.","edges_from":[],"edges_to":[],"id":2560,"label":"HIUS 117","title":"History of Los Angeles (4)"},{"dept":"VIS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":2561,"label":"VIS 87","title":"Freshman Seminar (1)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[5664,1553,1865],"id":2562,"label":"CHEM 140BH","title":""},{"dept":"HIUS","description":"Constructions of sex and sexuality in the United States from the time of precontact Native America to the present, focusing on sexual behaviors, sexual ideologies, and the uses of sexuality for social control.","edges_from":[],"edges_to":[],"id":2563,"label":"HIUS 115","title":"History of Sexuality in the United States (4)"},{"dept":"FPM","description":"The Free Clinic Project operates at three community-based sites. In this class, students, under faculty supervision, provide clinical services and learn administrative, health education and leadership. S/U grades only. May be taken for credit as many times as desired. ","edges_from":[2565],"edges_to":[],"id":2564,"label":"FPM 286","title":"Free Clinic II (2 or 4)"},{"dept":"FPM","description":"","edges_from":[],"edges_to":[2564],"id":2565,"label":"FPM 272","title":""},{"dept":"RELI","description":"First quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196AH. ","edges_from":[2567],"edges_to":[],"id":2566,"label":"RELI 196AH","title":"Honors Thesis in Religion (4)"},{"dept":"RELI","description":"","edges_from":[],"edges_to":[4579,2566],"id":2567,"label":"RELI 101","title":""},{"dept":"ANAR","description":"(Cross-listed with SIO 167.) As specialists in human timescales, archaeologists are trained to identify subtle details that are often imperceptible for other geoscientists. This course is designed to train archaeologists to identify the natural processes affecting the archaeological record, and geoscientists to identify the influence of human behavior over land surfaces. The course, which includes lectures, laboratory training, and field observations, focuses on the articulation of sedimentology and human activity. Students may not receive credit for both ANAR 167 and SIO 167. ","edges_from":[2569,2570],"edges_to":[],"id":2568,"label":"ANAR 167","title":"Geoarchaeology in Theory and Practice (6)"},{"dept":"SIO","description":"","edges_from":[],"edges_to":[2568],"id":2569,"label":"SIO 50","title":""},{"dept":"ANTH","description":"","edges_from":[],"edges_to":[2568],"id":2570,"label":"ANTH 3","title":""},{"dept":"ANAR","description":"(Cross-listed with SIO 166.) Introduction to the multidisciplinary tools for paleoenvironmental analysis—from ecology, sedimentology, climatology, zoology, botany, chemistry, and others—and provides the theory and method to investigate the dynamics between human behavior and natural processes. This socioecodynamic perspective facilitates a nuanced understanding of topics such as resource overexploitation, impacts on biodiversity, social vulnerability, sustainability, and responses to climate change. Students may not receive credit for ANAR 166 and SIO 166. ","edges_from":[],"edges_to":[],"id":2571,"label":"ANAR 166","title":"Introduction to Environmental Archaeology—Theory and Method of Socioecodynamics and Human Paleoecology (4)"},{"dept":"ANAR","description":"This course will follow the interaction between humans and the sea in cultures that formed the biblical world of the second and first millennium BCE: the Canaanites, Israelites, Egyptians, Phoenicians, Philistines, and cultures of the Aegean Sea. Themes discussed will be maritime matters in the Canaanite and biblical narrative, key discoveries in maritime coastal archaeology of the eastern Mediterranean, shipwrecks: Canaanite, Phoenician, and Aegean, Egyptian ports, and Egyptian sea adventures. ","edges_from":[],"edges_to":[],"id":2572,"label":"ANAR 165","title":"Marine and Coastal Archaeology and the Biblical Seas (4)"},{"dept":"ANAR","description":"This course considers in detail a particular region or archaeological site within the Maya area. Content will cover primary literature on Maya archaeology, epigraphy, and art history. Course content will vary based on the specific region/site. May be taken for credit three times. ","edges_from":[912,2574],"edges_to":[],"id":2573,"label":"ANAR 160","title":"Ancient Maya: Archaeological Problems and Perspectives (4)"},{"dept":"ANAR","description":"","edges_from":[],"edges_to":[2573],"id":2574,"label":"ANAR 153","title":""},{"dept":"HIEA","description":"Ming was considered absolutist, closed, and stagnant. Nowadays its vibrant economy and culture are celebrated. We pair scholarship with primary sources to explore Ming’s complexities and learn how historians work. May be coscheduled with HIEA 266. ","edges_from":[],"edges_to":[],"id":2575,"label":"HIEA 166/266","title":"Creating Ming Histories (4)"},{"dept":"LTCS","description":"This seminar will be organized around any of various topic areas relating to cultural studies. These might include studies in colonialism, historicism, gender, sexuality, social institutions, popular culture, subaltern practices, etc. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":2576,"label":"LTCS 250","title":"Topics in Cultural Studies (4)"},{"dept":"MUIR","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":2577,"label":"MUIR 1","title":"First Year Experience (2)"},{"dept":"PHYS","description":"This course deals with nonlinear phenomena in plasmas. Topics include: orbit perturbation theory, stochasticity, Arnold diffusion, nonlinear wave-particle and wave-wave interaction, resonance broadening, basics of fluid and plasma turbulence, closure methods, models of coherent structures. ","edges_from":[916],"edges_to":[],"id":2578,"label":"PHYS 235","title":"Nonlinear Plasma Theory (4)"},{"dept":"MUIR","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":2579,"label":"MUIR 2","title":"Transfer Year Experience (2)"},{"dept":"ANTH","description":"Independent preparation of a senior thesis under the supervision of a faculty member. Students begin two-quarter sequence in fall quarter. ","edges_from":[1123],"edges_to":[5251],"id":2580,"label":"ANTH 196B","title":"Honors Studies in Anthropology (4)"},{"dept":"PHYS","description":"Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ","edges_from":[2582],"edges_to":[],"id":2581,"label":"PHYS 232","title":"Electronic Materials (4)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[2584,2581],"id":2582,"label":"PHYS 211A","title":""},{"dept":"PHYS","description":"Selection of advanced topics in solid-state physics; material covered may vary from year to year. Examples of topics covered: disordered systems, surface physics, strong-coupling superconductivity, quantum Hall effect, low-dimensional solids, heavy fermion systems, high-temperature superconductivity, solid and liquid helium. ","edges_from":[2584],"edges_to":[],"id":2583,"label":"PHYS 230","title":"Advanced Solid-State Physics (4)"},{"dept":"PHYS","description":"","edges_from":[2974,2582],"edges_to":[2583],"id":2584,"label":"PHYS 211B","title":""},{"dept":"GPEC","description":"This course is devoted to studying the central player in the globalization process: the multinational corporation. From the perspective of both developed and developing countries, we will analyze the determinants of flows of multinational firms and foreign direct investment across countries; explore the incentives a firm has to become an MNC, particularly those to split production, and its consequences on a domestic economy; and the transfer of managerial abilities across countries. May not receive credit for GPEC 422 and IRGN 490. Knowledge of STATA is assumed.","edges_from":[],"edges_to":[],"id":2585,"label":"GPEC 422","title":"Multinational Corporations (4)"},{"dept":"GPEC","description":"This course studies how the financial system works to support economic growth most of the time, but also how it gets into crisis and puts the economy into a recession. Course emphasizes the importance and incentive problems inherent in financial transactions. Renumbered from IRGN 421. Students may not receive credit for GPEC 421 and IRGN 421.","edges_from":[],"edges_to":[],"id":2586,"label":"GPEC 421","title":"Financial Institutions (4)"},{"dept":"PHYS","description":"The constituents of matter (quarks and leptons) and their interactions (strong, electromagnetic, and weak). Symmetries and conservation laws. Fundamental processes involving quarks and leptons. Unification of weak and electromagnetic interactions. Particle-astrophysics and the Big Bang. ","edges_from":[198],"edges_to":[],"id":2587,"label":"PHYS 154","title":"Elementary Particle Physics (4)"},{"dept":"PHYS","description":"From time to time a member of the regular faculty or a resident visitor will find it possible to give a self-contained short course on an advanced topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. (S/U grades permitted.)","edges_from":[],"edges_to":[],"id":2588,"label":"PHYS 239","title":"Special Topics (4)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[],"id":2589,"label":"PHYS 238","title":"Observational Astrophysics Research Lab (4)"},{"dept":"TDDE","description":"Introductory course that explores a variety of digital rendering methods for artistic 2-D, 3-D, and moving graphics visualization in theatre and performance design. Course objective is to synthesize and expand traditional drawing and painting methods with modern digital media-based applications. ","edges_from":[],"edges_to":[2591],"id":2590,"label":"TDDE 169A","title":"Digital Rendering for Theatre and Performance Design I (4)"},{"dept":"TDDE","description":"A continuation of TDDE 169A. Studio course explores advanced digital rendering methods for artistic 2-D, 3-D, and moving graphics for theatre and performance design. Focus will be on advanced techniques in the process of visualization from conception to production. ","edges_from":[2590],"edges_to":[],"id":2591,"label":"TDDE 169B","title":"Digital Rendering for Theatre and Performance Design II (4)"},{"dept":"CHEM","description":"Topics of special interest will be presented. Examples include NMR, solid-state chemistry, phase transitions, stochastic processes, scattering theory, nonequilibrium processes, tensor transformations, and advanced topics in statistical mechanics, thermodynamics, and chemical kinetics. (May not be offered every year.)","edges_from":[],"edges_to":[],"id":2592,"label":"CHEM 239","title":"Special Topics in Chemical Physics (2 or 4)"},{"dept":"CHEM","description":"Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena and the density matrices. Instrumentation, measurement, and interpretation. ","edges_from":[],"edges_to":[],"id":2593,"label":"CHEM 235","title":"Molecular Spectroscopy (4)"},{"dept":"CHEM","description":"Explore physical and analytical chemistry of surfaces. Topics include chemisorption and physisorption, sticking probabilities, adsorption isotherms, and passivation of semiconductors.","edges_from":[],"edges_to":[],"id":2594,"label":"CHEM 236","title":"Chemical Dynamics on Surfaces (4)"},{"dept":"MUS","description":"Master class instruction in advanced improvisation performance for declared majors and minors only or consent of instructor. Audition required at first class meeting. May be repeated six times for credit. ","edges_from":[],"edges_to":[],"id":2595,"label":"MUS 131","title":"Advanced Improvisation Performance (4/0)"},{"dept":"BICD","description":"Developmental biology of animals at the tissue,","edges_from":[],"edges_to":[],"id":2596,"label":"BICD 130","title":"Embryos, Genes, and Development (4)"},{"dept":"ETHN","description":"(Cross-listed with HIUS 125.) This course introduces students to the history of Asian American social movements from the late-nineteenth century to the present, with an emphasis on inter-ethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anticolonial movements, redress, hate crimes, and police brutality. Students may not receive credit for HIUS 125 and ETHN 163J.","edges_from":[],"edges_to":[],"id":2597,"label":"ETHN 163J","title":"Asian American Social Movements (4)"},{"dept":"SE","description":"Fluid-Structure Interaction (4)","edges_from":[],"edges_to":[],"id":2598,"label":"SE 278B","title":"Computational"},{"dept":"MATH","description":"Introduction to varied topics in computational and applied mathematics. In recent years, topics have included: applied functional analysis and approximation theory; numerical treatment of nonlinear partial differential equations; and geometric numerical integration for differential equations. May be taken for credit six times with consent of adviser as topics vary. ","edges_from":[],"edges_to":[],"id":2599,"label":"MATH 277A","title":"Topics in Computational and Applied Mathematics (4)"},{"dept":"TDGR","description":"Individual or small group directed study.","edges_from":[],"edges_to":[],"id":2600,"label":"TDGR 293","title":"Directed Studies (4–12)"},{"dept":"BICD","description":"An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection, HIV testing, education and approaches to therapy, and the social, political, and legal impacts of AIDS on the individual and society. In order to count for their major, biology majors must take the upper-division course, BICD 136. ","edges_from":[954,1013],"edges_to":[],"id":2601,"label":"BICD 136","title":"AIDS Science and Society (4)"},{"dept":"Classics","description":"An introduction to contemporary literary theory, focusing on important","edges_from":[],"edges_to":[],"id":2602,"label":"Classics 200A","title":"Contemporary Literary Theory and the Classics (4)"},{"dept":"GPCO","description":"Using class exercises, this capstone class introduces the fundamentals of business strategy, based on case studies requiring market and corporate analysis, and the principles of negotiation. Students apply analytic problem-solving skills in a strategy consulting project with a real-world client company. Renumbered from IRCO 463. Students may not receive credit for GPCO 463 and IRCO 463. ","edges_from":[2604],"edges_to":[],"id":2603,"label":"GPCO 463","title":"Strategy and Negotiation (4)"},{"dept":"GPIM","description":"","edges_from":[],"edges_to":[2603],"id":2604,"label":"GPIM 474","title":""},{"dept":"GPCO","description":"The capstone paper should demonstrate mastery of the three components of a public policy program: 1) development of the methodologies for rigorous data collection and policy analysis; 2) an in-depth understanding of the regulatory and legal politics and processes surrounding the student’s chosen policy area; and 3) mastery of the details of the particular issue area and policies intended or that were intended as solutions. Paper may focus on policy interest of the student or of a client. Letter grades only. Renumbered from IRCO 462. Students may not receive credit for GPCO 462 and IRCO 462. ","edges_from":[],"edges_to":[],"id":2605,"label":"GPCO 462","title":"Public Policy Capstone (4)"},{"dept":"SE","description":"Experimental/constitutive modeling perspectives on mechanical, hydraulic, thermal behavior of dry and saturated soils. Experimental techniques and methodologies presented; students will be able to perform key tests. Behavior of saturated sands and clays described based on key studies. Calibration of constitutive models for stress-strain behavior of soils, including hyperbolic, Mohr-Coulomb/Cam-Clay models. Modification of these models to consider thermal effects. ","edges_from":[],"edges_to":[],"id":2606,"label":"SE 248","title":"Engineering Properties of Soils (4)"},{"dept":"GPCO","description":"This capstone is designed to test the analytic skills of students, using them to explain complex real-world problems: security, persistent recurring conflict, persistent inequality and intergenerational debt, women’s rights, environmental change, energy/resource systems, and financial contagion. Emphasis will be placed on determining the nature and dimension of the problem, exploring a range of solutions and assessing the capacity of public institutions. Renumbered from IRCO 467. Students may not receive credit for GPCO 467 and IRCO 467. ","edges_from":[],"edges_to":[],"id":2607,"label":"GPCO 467","title":"Policy Responses to Global Problems (4)"},{"dept":"GPCO","description":"The course will emphasize real world application of theories and methods of policy analysis to projects with real clients in the area of energy and the environment. The class will include case studies and seminar-style discussions of topics such as project finance and management of regulatory risk. Most of the class will be devoted to work in small teams with clients seeking strategic guidance. Students are expected to produce final projects suitable for senior management and governing boards. ","edges_from":[2609,2610],"edges_to":[],"id":2608,"label":"GPCO 466","title":"Real World Projects in Energy and the Environment (4)"},{"dept":"GPPS","description":"","edges_from":[],"edges_to":[2608],"id":2609,"label":"GPPS 428","title":""},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[2608],"id":2610,"label":"GPCO 400","title":""},{"dept":"VIS","description":"Apprentice teaching in undergraduate courses given by the Department of Visual Arts. Graduate students are required to teach a minimum of one quarter (four units) within the department to fulfill degree requirements.","edges_from":[],"edges_to":[],"id":2611,"label":"VIS 500","title":"Apprentice Teaching (1–4)"},{"dept":"VIS","description":"Training in teaching methods in the field of visual arts. This course examines theoretical and practical communication and teaching techniques particularly appropriate to studio and production-style courses. Open to VA75, VA76, and VA77 major codes.","edges_from":[],"edges_to":[],"id":2612,"label":"VIS 502","title":"Graduate Teaching in Visual Arts (4)"},{"dept":"SE","description":"Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. Recommended Preparation: SE 181 or equivalent background in the physics and engineering properties of soil. ","edges_from":[],"edges_to":[],"id":2613,"label":"SE 247","title":"Ground Improvement (4)"},{"dept":"SE","description":"Advanced treatment of topics in soil mechanics, including state of stress, pore pressure, consolidation and settlement analysis, shear strength of cohesionless and cohesive soils, mechanisms of ground improvement, and slope stability analysis. Concepts in course reinforced by laboratory experiments.","edges_from":[],"edges_to":[5126],"id":2614,"label":"SE 241","title":"Advanced Soil Mechanics (4)"},{"dept":"SE","description":"Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in-situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ","edges_from":[],"edges_to":[],"id":2615,"label":"SE 242","title":"Foundation Engineering (4)"},{"dept":"SE","description":"Advanced treatment of the dynamic interaction between soils and structures. Dynamic response of shallow and embedded foundations. Kinematic and inertial interaction. General computational and approximate analytical methods of analysis. ","edges_from":[1619,1621],"edges_to":[],"id":2616,"label":"SE 243","title":"Soil-Structure Interaction (4)"},{"dept":"HIUS","description":"This course considers how cultural processes have shaped histories of the Civil War and Reconstruction. Students will analyze the relationship between popular culture and major themes of the era through the use of literature, texts, film, television, and print images. Students who took HIUS 132 cannot repeat this course.","edges_from":[],"edges_to":[],"id":2617,"label":"HIUS 132S","title":"The Civil War and Reconstruction in Popular Culture (4)"},{"dept":"TDAC","description":"Improvisation for the Theatre explores improvisation techniques as an alternative and unique approach to acting. Students should have a performance background. ","edges_from":[1105],"edges_to":[],"id":2618,"label":"TDAC 107","title":"Improvisation for the Theatre (4)"},{"dept":"HITO","description":"In this course we compare the Jewish experience to other religious minorities in American history. Topics include motives and rates of immigration, education and work patterns, religious experiences, women’s roles, family life, and representations in popular and high culture.","edges_from":[],"edges_to":[],"id":2619,"label":"HITO 164/264","title":"Jews and Other Ethnics in the American Past (4)"},{"dept":"POLI","description":"Training in teaching methods in the field of political science. Examines evidence-based research on undergraduate teaching and learning with emphasis on effective teaching techniques appropriate to political science. Covers TA training, syllabus design, and effective teaching strategies. ","edges_from":[],"edges_to":[],"id":2620,"label":"POLI 599","title":"Teaching Methods in Political Science (2)"},{"dept":"MGT","description":"This course covers concepts and theories useful in understanding and","edges_from":[],"edges_to":[],"id":2621,"label":"MGT 256","title":"Consumer Behavior Research (4)"},{"dept":"MGT","description":"Theories/research about behavior of employees/managers in organizations,","edges_from":[],"edges_to":[],"id":2622,"label":"MGT 257","title":"Behavior in Organizations (4)"},{"dept":"MGT","description":"This course introduces students to theories and research in the field","edges_from":[],"edges_to":[],"id":2623,"label":"MGT 255","title":"Psychology and Decision Making (4)"},{"dept":"LTWL","description":"This course examines the relationship between cinema and Islam. It looks at how Islam is represented through various cinematic genres and historical periods from 1920s to the present.","edges_from":[],"edges_to":[],"id":2624,"label":"LTWL 144","title":"Islam and Cinema (4)"},{"dept":"LTEN","description":"in Literary Research and Criticism (4)","edges_from":[],"edges_to":[],"id":2625,"label":"LTEN 281","title":"Practicum"},{"dept":"LTWL","description":"This course sets out to explore the relation between the novel and the “dependent” history of the Third World, contrasting and comparing the uses of history in the European novel as defined in the theoretical analysis of Lukacs with uses of history in the Third World novel. An analysis of major themes and movements common to selected ethnic literature in the United States and national literatures in the Third World.","edges_from":[],"edges_to":[],"id":2626,"label":"LTWL 140","title":"Novel and History in the Third World (4)"},{"dept":"LTWL","description":"","edges_from":[],"edges_to":[],"id":2627,"label":"LTWL 143","title":"Arab Literatures and Cultures (4)"},{"dept":"USP","description":"This course examines urban design’s effects on physical activity. In field experience settings, students will learn about survey, accelerometer, observation, and GIS methods. Quality control, use of protocols, relevance to all ages, and international applications will also be emphasized. ","edges_from":[],"edges_to":[],"id":2628,"label":"USP 146","title":"Research Methods for Built Environment and Active Living (4)"},{"dept":"USP","description":"in Health-Care Programs/Poor and Underserved Population (4)","edges_from":[],"edges_to":[],"id":2629,"label":"USP 147","title":"Case Studies"},{"dept":"USP","description":"This course will analyze needs of populations, highlighting current major public health problems such as chronic and communicable diseases, environmental hazards of diseases, psychiatric problems and additional diseases, new social mores affecting health maintenance, consumer health awareness and health practices, special needs of economically and socially disadvantaged populations. The focus is on selected areas of public and environmental health, namely: epidemiology, preventive services in family health, communicable and chronic disease control, and occupational health. ","edges_from":[],"edges_to":[],"id":2630,"label":"USP 144","title":"Environmental and Preventive Health Issues (4)"},{"dept":"USP","description":"This course will provide a brief introduction to the nature and problems of aging, with emphasis on socioeconomic and health status; determinants of priorities of social and health policies will be examined through analysis of the structure and organization of selected programs for the elderly. Field visits will constitute part of the course. ","edges_from":[],"edges_to":[],"id":2631,"label":"USP 145","title":"Aging—Social and Health Policy Issues (4)"},{"dept":"USP","description":"This course will provide an overview of the organization of health care within the context of the community with emphasis on the political, social, and cultural influences. It is concerned with the structure, objectives, and trends of major health and health-related programs in the United States to include sponsorship, financing, training and utilization of health personnel. ","edges_from":[],"edges_to":[],"id":2632,"label":"USP 143","title":"The US Health-Care System (4)"},{"dept":"GPIM","description":"This course introduces the core features of Japanese business and industrial organization, as well as Japanese management and HR practices. Business frameworks and concepts are introduced to enable students to analyze and evaluate organization change and the emergence of “New Japan” companies. Renumbered from IRGN 411. Students may not receive credit for GPIM 411 and IRGN 411.","edges_from":[],"edges_to":[],"id":2633,"label":"GPIM 411","title":"Business and Management in Japan (4)"},{"dept":"LTFR","description":"Major literary works and problems of the eighteenth century. May be repeated for credit as topics vary. ","edges_from":[1433,1434],"edges_to":[],"id":2634,"label":"LTFR 123","title":"Eighteenth Century (4)"},{"dept":"LTFR","description":"This course will cover major literary works and problems of seventeenth-century French literature. May be taken for credit three times as topics vary. ","edges_from":[1433,1434],"edges_to":[],"id":2635,"label":"LTFR 122","title":"Topics in Seventeenth-Century French Literature (4)"},{"dept":"LTFR","description":"Major literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of the period. Medieval texts in modern French translation. May be repeated for credit as topics vary. ","edges_from":[1433,1434],"edges_to":[],"id":2636,"label":"LTFR 121","title":"The Middle Ages and the Renaissance (4)"},{"dept":"LTFR","description":"Major literary works and problems of the twentieth century. May be repeated for credit as topics vary. ","edges_from":[1433,1434],"edges_to":[],"id":2637,"label":"LTFR 125","title":"Twentieth Century (4)"},{"dept":"USP","description":"This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes. ","edges_from":[],"edges_to":[],"id":2638,"label":"USP 149","title":"Madness and Urbanization (4)"},{"dept":"MATH","description":"Mathematical Statistics—Nonparametric Statistics (4)","edges_from":[],"edges_to":[],"id":2639,"label":"MATH 181C","title":""},{"dept":"MAE","description":"This course will reintroduce the math fundamentals necessary for success in the engineering graduate program in MAE. Topics will include calculus, ODE’s, vector calculus, linear algebra, probability and PDE’s. ","edges_from":[],"edges_to":[],"id":2640,"label":"MAE 208","title":"Mathematics for Engineers (4)"},{"dept":"VIS","description":"of Criticism III: Contemporary (1950–Present) (4)","edges_from":[],"edges_to":[],"id":2641,"label":"VIS 113CN","title":"History"},{"dept":"GPIM","description":"Examination of public policy analysis, such as cost-benefit analysis and project evaluation, for use in policy formation. Sustainable development will receive particular attention. Case studies emphasizing the environment, agriculture and food, and economic development will be included. Renumbered from IRGN 457. Students may not receive credit for GPIM 457 and IRGN 457.","edges_from":[],"edges_to":[],"id":2642,"label":"GPIM 457","title":"Cost-Benefit Analysis (4)"},{"dept":"GPIM","description":"This course will use tools and case studies to illustrate the promise and challenges of analyzing big data sets. Emphasis will be on solving problems rather than testing hypothesis. Renumbered from IRGN 452. Students may not receive credit for GPIM 452 and IRGN 452.","edges_from":[],"edges_to":[],"id":2643,"label":"GPIM 452","title":"Big Data Analytics (4)"},{"dept":"Soc/G","description":"This course provides an accessible, graduate level introduction to social network analysis as a theoretical and methodological approach—one takes relationships rather than individuals as the fundamental unit of analysis. While the course will focus on concepts and applications rather than statistical models, students will also become acquainted with basic analytic techniques as well as learn how to collect, store, inspect, and visualize original network data. ","edges_from":[],"edges_to":[],"id":2644,"label":"Soc/G 209","title":"Social Networks (4)"},{"dept":"MATH","description":"A hands-on introduction to the use of a variety of open-source mathematical software packages, as applied to a diverse range of topics within pure and applied mathematics. Most of these packages are built on the Python programming language, but no prior experience with mathematical software or computer programming is expected. All software will be accessed using the CoCalc web platform (","edges_from":[],"edges_to":[],"id":2645,"label":"MATH 157","title":"Introduction to Mathematical Software (4)"},{"dept":"MATH","description":"This course will give students experience","edges_from":[],"edges_to":[],"id":2646,"label":"MATH 152","title":"Applicable Mathematics and Computing (4)"},{"dept":"DSGN","description":"A project-based course examining how principles from cognitive science apply to the design of things simple (doors) and complex (new technology). Learn about affordances, constraints, mappings, and conceptual models. Learn observational and design skills. Become a human-centered design thinker.","edges_from":[],"edges_to":[4017,4015,3131,3293,2857],"id":2647,"label":"DSGN 1","title":"Design of Everyday Things (4)"},{"dept":"BENG","description":"Quantitative basic understanding of different","edges_from":[],"edges_to":[],"id":2648,"label":"BENG 242/MATS 257/NANO 257","title":"Polymer Science and Engineering (4)"},{"dept":"Soc/G","description":"Techniques of gathering and analyzing transcripts of naturally occurring conversations, interviews, discourse in institutional settings, public political discourse, and text of historical materials. ","edges_from":[],"edges_to":[],"id":2649,"label":"Soc/G 204","title":"Text and Discourse Analysis (4)"},{"dept":"Soc/G","description":"This course covers some of the elementary techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ","edges_from":[],"edges_to":[],"id":2650,"label":"Soc/G 205","title":"Quantitative Methods I (4)"},{"dept":"Soc/G","description":"The course covers some of the more advanced techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ","edges_from":[],"edges_to":[],"id":2651,"label":"Soc/G 206","title":"Quantitative Methods II (4)"},{"dept":"Soc/G","description":"A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time. ","edges_from":[],"edges_to":[],"id":2652,"label":"Soc/G 207","title":"Comparative-Historical Methods (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1473],"id":2653,"label":"ECE 153","title":""},{"dept":"EDS","description":"This online course develops educators’ knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124AR and EDS 124A. ","edges_from":[],"edges_to":[],"id":2654,"label":"EDS 124AR","title":"Teaching Computation in the Digital World (4)"},{"dept":"GLBH","description":"Offers global health students the opportunity to intern and gain credit for their global health field experience requirement. Students will intern and work with a faculty adviser to elaborate on the intellectual analysis and critique of the field experience. Students must complete the AIP application process and have the consent of a faculty adviser. May be taken for credit up to two times. Must be taken for a letter grade to fulfill requirements for the global health major or minor.","edges_from":[],"edges_to":[],"id":2655,"label":"GLBH 197","title":"Global Health Academic Internship Program (4)"},{"dept":"CHEM","description":"Survey of the chemistry of semiconductors, superconductors, molecular magnetic materials, zeolites, fast ion conductors, electronically conducting polymers and ceramics. Synthetic techniques such as molecular precursor design, the sol-gel process, electrosynthesis, and high-temperature thermolysis will be covered. (May not be offered every year.)","edges_from":[],"edges_to":[],"id":2656,"label":"CHEM 228","title":"Solid State Chemistry (4)"},{"dept":"PHYS","description":"Hamilton’s equations, canonical transformations; Hamilton-Jacobi theory; action-angle variables and adiabatic invariants; introduction to canonical perturbation theory, nonintegrable systems and chaos; Liouville equation; ergodicity and mixing; entropy; statistical ensembles. ","edges_from":[2658],"edges_to":[3966],"id":2657,"label":"PHYS 200B","title":"Theoretical Mechanics II (4)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[2657],"id":2658,"label":"PHYS 200A","title":""},{"dept":"SE","description":"Classical methods of analysis for statically indeterminate structures. Development of computer codes for the analysis of civil, mechanical, and aerospace structures from the matrix formulation of the classical structural theory, through the direct stiffness formulation, to production-type structural analysis programs. ","edges_from":[2660,652,2661,1129],"edges_to":[],"id":2659,"label":"SE 130A–B","title":"Structural Analysis (4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[2659,3971,2877,4167],"id":2660,"label":"SE 130B","title":""},{"dept":"SE","description":"","edges_from":[],"edges_to":[3809,2659,2878,5767],"id":2661,"label":"SE 130A","title":""},{"dept":"COMM","description":"This course will critically examine the role of the mass media in sub-Saharan Africa in the areas of colonial rule, nationalist struggles, authoritarianism, and popular movements. It will examine general trends regionally and internationally, as well as individual national cases, from the early twentieth century to the Internet news services of the information age. ","edges_from":[540],"edges_to":[],"id":2662,"label":"COMM 104F","title":"CMS: Africa (4)"},{"dept":"COMM","description":"The development of media systems and policies in Latin America and the Caribbean. Debates over dependency and cultural imperialism. The news media and the process of democratization. Development of the regional television industry. ","edges_from":[540],"edges_to":[],"id":2663,"label":"COMM 104G","title":"CMS: Latin America and the Caribbean (4)"},{"dept":"COMM","description":"The development of media systems in Asia, focusing on India and China. Debates over nationalism, regionalism, globalization, new technologies, identity politics, censorship, privatization, and media piracy. Alignments and differences with North American and European media systems will also be considered. ","edges_from":[540],"edges_to":[],"id":2664,"label":"COMM 104D","title":"CMS: Asia (4)"},{"dept":"COMM","description":"The development of media systems and policies in Europe. Differences between European and American journalism. Debates over the commercialization of television. The role of media in postcommunist societies in Eastern Europe. ","edges_from":[540],"edges_to":[],"id":2665,"label":"COMM 104E","title":"CMS: Europe (4)"},{"dept":"POLI","description":"This course is designed as a broad introduction to the study of law as a social institution and its relations to other institutions in society. The focus will be less on the substance of law (legal doctrine and judicial opinions) than on the process of law–how legal rules both reflect and shape basic social values and their relation to social, political, and economic conflicts within society.","edges_from":[],"edges_to":[4508],"id":2666,"label":"POLI 40","title":"Introduction to Law and Society (4)"},{"dept":"BENG","description":"Mass transfer in solids, liquids, and gases with application to biological systems. Free and facilitated diffusion. Convective mass transfer. Diffusion-reaction phenomena. Active transport. Biological mass transfer coefficients. Steady and unsteady state. Flux-force relationships. (Credit not allowed for both CENG 101C and BENG 103B.) ","edges_from":[168,169,597],"edges_to":[3759],"id":2667,"label":"BENG 103B","title":"Bioengineering Mass Transfer (4)"},{"dept":"Linguistics/American","description":"This course concentrates on those language","edges_from":[],"edges_to":[],"id":2668,"label":"Linguistics/American Sign Language (LISL) 5A, 5B, 5C","title":"Fundamentals of American Sign Language (5)"},{"dept":"HITO","description":"An examination of the history of emotions from the early modern period to the present with a focus on Europe and North America. Analysis of different approaches to emotions as well as of specific emotions (love, honor, shame, fear, guilt).","edges_from":[],"edges_to":[],"id":2669,"label":"HITO 140","title":"History of Emotions (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[9,3849,4015,2857,5903,3293,2334,2335],"id":2670,"label":"CSE 8A","title":""},{"dept":"COMM","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":2671,"label":"COMM 87","title":"Freshman Seminar (1)"},{"dept":"MGT","description":"Internship with approved business or governmental agency, allowing student to pursue topics raised in the management core and elective courses. S/U grades only. May be taken for credit four times, for a maximum of four units, with instructor consent. Students may not earn credit for both MGT 497 and MGT 297. Internship credit may not be applied to fulfill specific course requirements or to credits required for graduation. ","edges_from":[],"edges_to":[],"id":2672,"label":"MGT 497","title":"Advanced Management Research Practicum (1)"},{"dept":"MATH","description":"Discussion of finite parameter schemes in the Gaussian and non-Gaussian context. Estimation for finite parameter schemes. Stationary processes and their spectral representation. Spectral estimation. Students who have not taken Math 282A may enroll with consent of instructor. ","edges_from":[482],"edges_to":[],"id":2673,"label":"MATH 287A","title":"Time Series Analysis (4)"},{"dept":"MAE","description":"Deterministic methods: Pontryagin’s Maximum Principle, dynamic programming, calculus of variations. Stochastic methods: Gauss-Markov processes, Linear Quadratic control, Markov chains. Linear Quadratic Gaussian Control and the Separation Principle. ","edges_from":[],"edges_to":[],"id":2674,"label":"MAE 288A","title":"Optimal Control (4)"},{"dept":"ANTH","description":"Survey of Mesoamerican archaeology focusing on highland Mexico. Topics covered: settling of Mesoamerica, agricultural origins, development of social complexity, rise of cities, emergence of large-scale states. ","edges_from":[2676],"edges_to":[],"id":2675,"label":"ANTH 291","title":"Archaeology of Highland Mexico (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2675],"id":2676,"label":"ANGR 291","title":""},{"dept":"NEU","description":"Participation in the department teaching program is required of all students working toward a PhD. In general, students are not expected to teach in the first year, but are required to serve as teaching assistants or tutors for one quarter at any time during their subsequent years of training. The amount of teaching required is equivalent to the duties expected of a 50 percent assistant for one quarter. ","edges_from":[],"edges_to":[],"id":2677,"label":"NEU 500","title":"Apprenticeship Teaching (1–4)"},{"dept":"ANTH","description":"Course examines theories for the causes of sociality in primates. Implications for our understanding of human evolution are considered. ","edges_from":[2679],"edges_to":[],"id":2678,"label":"ANTH 293","title":"Primate Socioecology (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2678],"id":2679,"label":"ANGR 293","title":""},{"dept":"ANTH","description":"The student will work on the master’s thesis under the direction of the departmental committee chair. The course will be taken in the student’s second year. S/U grades only. ","edges_from":[2681],"edges_to":[],"id":2680,"label":"ANTH 295","title":"Master’s Thesis Preparation (1–12)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2680],"id":2681,"label":"ANGR 295","title":""},{"dept":"ANTH","description":"The student will work in cooperation with his or her departmental committee to develop a research proposal for the doctoral research project. S/U grades only. ","edges_from":[2683],"edges_to":[],"id":2682,"label":"ANTH 296","title":"Dissertation Fieldwork Proposal Preparation (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2682],"id":2683,"label":"ANGR 296A","title":""},{"dept":"ANTH","description":"Supervised advanced research studies with individual topics to be selected according to the student’s special interests. S/U grades only. ","edges_from":[],"edges_to":[],"id":2684,"label":"ANTH 297","title":"Research Practicum (1–4)"},{"dept":"ANTH","description":"Supervised study of individually selected anthropological topics under the direction of a member of the faculty. S/U grades only. ","edges_from":[2686],"edges_to":[],"id":2685,"label":"ANTH 298","title":"Independent Study (1–4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2685],"id":2686,"label":"ANGR 298","title":""},{"dept":"ANTH","description":"S/U grades only. ","edges_from":[2688],"edges_to":[],"id":2687,"label":"ANTH 299","title":"Dissertation Research (1–12)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2687],"id":2688,"label":"ANGR 299","title":""},{"dept":"TDGR","description":"The collaborative process from the rehearsal process through public performance. All participants will enroll in the same section, the same number of units. ","edges_from":[],"edges_to":[],"id":2689,"label":"TDGR 207","title":"Production (4)"},{"dept":"TDGR","description":"A study of the dramatic elements of stage violence, and practical work in developing the physical skills necessary to fully realize violent moments on the stage. At the core of the study is the process from text to convincing theatrical action. Physical work revolves around basic principles of energy, focus, and center inherent in unarmed and weapons combat. ","edges_from":[],"edges_to":[],"id":2690,"label":"TDGR 201","title":"Stage Combat (2)"},{"dept":"Classics","description":"Supervised independent research. Subject varies.","edges_from":[],"edges_to":[],"id":2691,"label":"Classics 280","title":"Independent Study (4)"},{"dept":"MGT","description":"Introduces how IT will transform health sciences. Highlights how IT and associated disruptive innovations in health-care delivery will enable physicians, patients, and caregivers to cost effectively prevent, diagnose, and monitor health conditions; manage treatment; and facilitate timely communication and intervention. Letter grades only. Students may not earn credit for both MGT 454 and MGT 274. They are course equivalents. ","edges_from":[],"edges_to":[],"id":2692,"label":"MGT 454","title":"Disruptive Technologies for Health Care (4)"},{"dept":"TDGR","description":"This course serves as a laboratory for experimentation in the choreographic strategies and structures of contemporary dance making. S/U grades only. May be taken for credit eight times. ","edges_from":[],"edges_to":[],"id":2693,"label":"TDGR 208","title":"Dance Making Processes (4)"},{"dept":"TDDE","description":"A hands-on course develops craft skills and solution-finding process in design including script analysis, concept sketches, research, and scale model making. An exploration of fundamental ways of seeing and understanding visual design. ","edges_from":[128,2695],"edges_to":[2696],"id":2694,"label":"TDDE 101","title":"Theatre Process—Scenery (4)"},{"dept":"TDPR","description":"","edges_from":[],"edges_to":[2694,4351],"id":2695,"label":"TDPR 1","title":""},{"dept":"TDDE","description":"An advanced course based on the “practice” of scenic design, dealing with the solution finding process, from text to idea to realized work. ","edges_from":[128,2694],"edges_to":[],"id":2696,"label":"TDDE 102","title":"Advanced Scenic Design (4)"},{"dept":"VIS","description":"This survey course follows the parallel tracks of the sacred and secular in art and architecture from Constantine to the Crusades. Highlights include the emergence of Christian art, visual culture of the courts, development of monasteries, fall and rise of towns and cities, and arts of ritual. The thematic juxtaposition of different media and medieval people speaking in their own voices yields a multidimensional image of society in which the medieval experience is made as concrete as possible. Recommended preparation: VIS 20. ","edges_from":[],"edges_to":[],"id":2697,"label":"VIS 121AN","title":"Art and Experience in the Middle Ages (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":2698,"label":"LTEN 127","title":"Victorian Poetry (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":2699,"label":"LTEN 124","title":"Topics: The Nineteenth Century (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":2700,"label":"LTEN 125","title":"Romantic Poetry (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":2701,"label":"LTEN 120","title":"Topics: The Eighteenth Century (4)"},{"dept":"MGT","description":"Examines financial theory and empirical evidence useful for making investment decisions. Topics include: portfolio theory, equilibrium models of security prices, the empirical behavior of security prices, market efficiency, and fixed-income markets and behavioral finance. ","edges_from":[2703],"edges_to":[5315],"id":2702,"label":"MGT 491","title":"Investments (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[2702],"id":2703,"label":"MGT 408","title":""},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ","edges_from":[],"edges_to":[],"id":2704,"label":"Linguistics/Heritage Languages (LIHL) 137P","title":"Advanced Persian for Persian Speakers (4)"},{"dept":"BENG","description":"A laboratory course demonstrating basic concepts of biomechanics, bioengineering design, and experimental procedures involving animal tissue. Sources of error and experimental limitations. Computer data acquisition, modeling, statistical analysis. Experiments on artery, muscle and heart mechanics, action potentials, viscoelasticity, electrocardiography, hemorheology. Course materials fees may apply. ","edges_from":[821],"edges_to":[],"id":2705,"label":"BENG 172","title":"Bioengineering Laboratory (4)"},{"dept":"NANO","description":"Metal casting processes, solidification, deformation processing, thermal processing: solutionizing, aging, and tempering, joining processes such as welding and brazing. The effect of processing route on microstructure and its effect on mechanical and physical properties will be explored. NanoEngineering majors have priority enrollment. ","edges_from":[2707],"edges_to":[],"id":2706,"label":"NANO 158L","title":"Materials Processing Laboratory (4)"},{"dept":"NANO","description":"","edges_from":[4782,4207],"edges_to":[2706],"id":2707,"label":"NANO 158","title":""},{"dept":"PHIL","description":"This course provides an introduction to the techniques of philosophical inquiry through detailed study of selected philosophical texts and through extensive training in philosophical writing based on those texts. Enrollment limited and restricted to majors; must be taken for letter grade. May not be repeated for credit. ","edges_from":[],"edges_to":[],"id":2708,"label":"PHIL 115","title":"Philosophical Methods Seminar (4)"},{"dept":"ENVR","description":"(4)","edges_from":[],"edges_to":[],"id":2709,"label":"ENVR 130","title":"Environmental Issues: Social Sciences"},{"dept":"MGT","description":"Explains how to identify, measure, and analyze investment risks associated with interest rates, currency exchange, and equity markets, and acquire techniques to manage and control risk through the use of over-the-counter and exchange-traded derivatives. Letter grades only. ","edges_from":[],"edges_to":[],"id":2710,"label":"MGT 492","title":"Financial Risk Management (4)"},{"dept":"POLI","description":"Explores empirical research in international relations with special emphasis on international conflict. Topics covered include theories on the causes of war, the distribution of power and conflict, formal and informal alignment, interdependence and conflict, linkages between domestic and international processes, and issues of research design. Students who have previously taken 247 may not take this course for credit. ","edges_from":[],"edges_to":[],"id":2711,"label":"POLI 247A","title":"Quantitative International Relations (4)"},{"dept":"CSE","description":"Support for Applications of Parallel Computation (4)","edges_from":[],"edges_to":[],"id":2712,"label":"CSE 262","title":"System"},{"dept":"MATS","description":"Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. ","edges_from":[],"edges_to":[],"id":2713,"label":"MATS 227","title":"Structure and Analysis of Solids (4)"},{"dept":"EDS","description":"This course explores topical issues in the field of leadership. It focuses on recent developments that have broad implications for research and practice in educational leadership. Course topics will vary each time the course is offered. ","edges_from":[],"edges_to":[],"id":2714,"label":"EDS 286","title":"Advanced Topics in Leadership (4)"},{"dept":"EDS","description":"This course addresses interdisciplinary influences on leadership practice within learning organizations. Contributions from scholars in futures’ studies, including those influenced by modernism and postmodernism, will be used to explore topics such as long-range planning, demographic trends, technology, and brain theory. ","edges_from":[],"edges_to":[],"id":2715,"label":"EDS 285","title":"Leadership for the Future (4)"},{"dept":"EDS","description":"This course will investigate the skills and dispositions needed for students to lead the development of learning organizations. Faculty will teach and model concepts of working with people within educational organizations and programs. Emphasis will be placed on individual’s team development and facilitation, organizational communications, adult learning, and professional development. ","edges_from":[],"edges_to":[],"id":2716,"label":"EDS 284","title":"Leadership for Organizational Development (4)"},{"dept":"EDS","description":"This course will present multiple theories of organizational change, explore group processes and identify models of decision making, and analyze human motivation theories. Establishing and nurturing a purpose-driven organization, while dealing with competing demands, will be discussed. A major emphasis in this course is on people as agents of change and on the creation of high-quality ethical and productive workplaces where employees can achieve success and satisfaction, while advancing the mission of the educational organization. ","edges_from":[],"edges_to":[],"id":2717,"label":"EDS 283","title":"Leadership for Organizational Change (4)"},{"dept":"EDS","description":"This course will address theories and practices for achieving schools and classrooms that are informed by and built around the participation of diverse communities and cultures. The emphasis is on how leadership intersects with sociohistorical and sociocultural theories that suggest that the organization of schools and instruction is critical to student inclusion and outcomes. A basic premise of this course is that a socially just learning theory begins with using all of the resources and knowledge of families, communities, and cultures in formulating policy and practice. ","edges_from":[],"edges_to":[],"id":2718,"label":"EDS 282","title":"Leadership for a Diverse Society (4)"},{"dept":"EDS","description":"This course will explore various models of curriculum and instruction in response to students’ learning needs. It also will examine models of school organization and the leader’s role and responsibility in developing a school culture that promotes student achievement, using evidence-based decision making. A major emphasis will be on evaluating research on which theories and practice are based. ","edges_from":[],"edges_to":[],"id":2719,"label":"EDS 281","title":"Leadership for Learning (4)"},{"dept":"EDS","description":"This course will present the evolution of leadership thought and theory, with an emphasis on the distinction between, and interrelatedness of, effective management and leadership. The ethics of leadership practice and epistemological perspectives of emerging leadership styles will be explored, and students will have opportunities to reflect on the nature of leadership as it is practiced in educational settings. Applying critical, self-reflective leadership practice through structured activities is also an element of this course.","edges_from":[],"edges_to":[],"id":2720,"label":"EDS 280","title":"Rethinking Leadership (4)"},{"dept":"MAE","description":"Tools for the design of cooperative control strategies for","edges_from":[],"edges_to":[],"id":2721,"label":"MAE 247","title":"Cooperative Control of Multi-agent Systems (4)"},{"dept":"MAE","description":"Modeling, solving, and analyzing planning problems for single robots or agents. Configuration space for motion planning, sampling-based motion planning, combinatorial motion planning, feedback motion planning, differential models, and nonholonomic constraints. Basic decision-theory and dynamic programming, sensor and information spaces.","edges_from":[],"edges_to":[],"id":2722,"label":"MAE 242","title":"Robot Motion Planning (4)"},{"dept":"BENG","description":"A general survey of structure-function relationships","edges_from":[],"edges_to":[],"id":2723,"label":"BENG 230B","title":"Cell and Molecular Biology (4)"},{"dept":"BENG","description":"Cardiovascular Physiology (4)","edges_from":[],"edges_to":[],"id":2724,"label":"BENG 230C","title":""},{"dept":"BENG","description":"A graduate course in biochemistry especially tailored to the requirements and background of bioengineering graduate students. It will cover the important macro- and small molecules in cells that are the major constituents, or that function as signaling molecules or molecular machineries. The structures, pathways, interactions, methodologies, and molecular designs using recombinant DNA technology will be covered. ","edges_from":[],"edges_to":[5150],"id":2725,"label":"BENG 230A","title":"Biochemistry (4)"},{"dept":"ANTH","description":"These seminars are held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ","edges_from":[],"edges_to":[],"id":2726,"label":"ANTH 281A","title":"Introductory Seminar (1)"},{"dept":"BENG","description":"Mechanics of breathing. Gas diffusion. Pulmonary","edges_from":[],"edges_to":[],"id":2727,"label":"BENG 230D","title":"Respiratory and Renal Physiology (4)"},{"dept":"ANBI","description":"All human endeavors are subject to human biases. We’ll cover several issues that are subject to such biases: “race” concept; transfer of human remains to Native American tribal members; nonhuman primate testing; and use of human materials, including cell lines. ","edges_from":[],"edges_to":[],"id":2728,"label":"ANBI 120","title":"Ethical Dilemmas in Biological Anthropology (4)"},{"dept":"BGGN","description":"(Cross-listed with Chem 265.) The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells. The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed. Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BIMM 162/Chem 165. Students may not receive credit for BGGN 262 and Chem 265.","edges_from":[],"edges_to":[],"id":2729,"label":"BGGN 262","title":"3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)"},{"dept":"BGGN","description":"Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and “reduced” models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, and PHYS 279. ","edges_from":[],"edges_to":[],"id":2730,"label":"BGGN 260","title":"Neurodynamics (4)"},{"dept":"SE","description":"Strengthening of existing reinforced concrete structures with fiber reinforced composites. Mechanics of Fiber Reinforced Plastic lamina, bond strength of FRP-to-concrete joints, shear and flexural strengthening of beams and walls, increased strength and ductility of axially loaded columns, and seismic retrofit of columns. Use of computer resources. ","edges_from":[430],"edges_to":[],"id":2731,"label":"SE 254","title":"FRPs in Civil Structures (4)"},{"dept":"BGGN","description":"Experiments that emphasize biophysical principles through hands-on experience, with an emphasis on the blending of physical measurements with a clearly identified biological problem. Exercises include the use of optical tweezers to measure viscous forces at the level of cellular organelles, the characterization of sensorimotor control in the fly during visually guided flight, and the use of microscopic imaging techniques to characterize cell motility and organelle transport. Includes instruction in LabView. Students are encouraged to attend the Phys 173 undergraduate lectures. ","edges_from":[954,2733,2734],"edges_to":[],"id":2732,"label":"BGGN 266","title":"Advanced Laboratory in Biophysical Techniques (6)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[2732],"id":2733,"label":"PHYS 120A","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[2732],"id":2734,"label":"CHEM 6CL","title":""},{"dept":"BGGN","description":"(Cross-listed with Chem 264.) An introduction of virus structures, how they are determined, and how they facilitate the various stages of the viral life cycle from host recognition and entry to replication, assembly, release, and transmission to uninfected host cells. Students will be required to complete a term paper. (May not be offered every year.) Recommended preparation: elementary biochemistry as treated in Chem 114A or BIBC 100 and a basic course in cell biology or consent of the instructor.","edges_from":[],"edges_to":[],"id":2735,"label":"BGGN 264","title":"Structural Biology of Viruses (4)"},{"dept":"BIOM","description":"Reading of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. ","edges_from":[],"edges_to":[],"id":2736,"label":"BIOM 296","title":"Directed Reading (1–4)"},{"dept":"BIOM","description":"Papers describing recent progress in signal transduction from the cell-surface to the nucleus will be chosen from recent research literature. Two papers will be discussed and criticized in detail each week for one hour. ","edges_from":[],"edges_to":[],"id":2737,"label":"BIOM 297","title":"Progress in Signal Transduction (1)"},{"dept":"BIOM","description":"Current literature in molecular pharmacology and molecular biology is reviewed. Two papers are chosen per week for oral presentation by students. Faculty critique the student presentations. ","edges_from":[],"edges_to":[],"id":2738,"label":"BIOM 294","title":"Pharmacology and Molecular Biology Journal Club (0–1)"},{"dept":"BIOM","description":"Student, faculty, and fellow discussion groups on research projects. Students are expected to present research findings to fellows, other PhD students, and faculty.","edges_from":[],"edges_to":[],"id":2739,"label":"BIOM 295","title":"Pharmacology Research Discussions (0–1)"},{"dept":"BIPN","description":"The course will cover a broad anatomical and functional description of the human nervous system and explore evidence implicating key brain areas in specific functions. This course will discuss modern techniques and the use of model organisms for dissecting the anatomical organization of the brain. ","edges_from":[954,1013],"edges_to":[],"id":2740,"label":"BIPN 160","title":"Neuroanatomy (4)"},{"dept":"BIOM","description":"Reading and laboratory study of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (F,W,S)","edges_from":[],"edges_to":[],"id":2741,"label":"BIOM 298","title":"Directed Study (1–12)"},{"dept":"BIOM","description":"Independent study or research. ","edges_from":[],"edges_to":[],"id":2742,"label":"BIOM 299","title":"Independent Study or Research (1–12)"},{"dept":"VIS","description":"This seminar explores movement and exchange between Mediterranean cities with diverse political, social, ethnic, and religious roots and the new modes of art, architecture, and intellectual discourse that this diversity fostered. In addition to medieval sources, readings include art historical and theoretical texts from a variety of periods and fields that frame the implications of multiculturalism for historical and contemporary categories of perception and for the analysis of visual culture. Recommended preparation: VIS 20 or VIS 112 recommended. ","edges_from":[],"edges_to":[],"id":2743,"label":"VIS 121H","title":"Medieval Multiculturalism (4)"},{"dept":"PHIL","description":"A research group for graduate students engaged in philosophy or history of the biological sciences. The group discusses biological, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ","edges_from":[],"edges_to":[],"id":2744,"label":"PHIL 284","title":"Philosophy of Biology Research Group (1–2)"},{"dept":"LTCS","description":"This course is designed to complement LTCS 50, Introduction to Cultural Studies. In this course, cultural studies methods are further introduced and applied to various concrete topics in order to illustrate the practical analysis of culture and cultural forms.","edges_from":[],"edges_to":[],"id":2745,"label":"LTCS 52","title":"Topics in Cultural Studies (4)"},{"dept":"LTCS","description":"An introduction to cultural studies with a focus on the following areas: literary and historical studies, popular culture, women’s studies, ethnic studies, science studies, and gay/lesbian studies. Particular emphasis on the question of “cultural practices” and their social and political conditions and effects.","edges_from":[],"edges_to":[],"id":2746,"label":"LTCS 50","title":"Introduction to Cultural Studies (4)"},{"dept":"MAE","description":"Least Squares and Maximum Likelihood Estimation methods, Gauss-Markov models, State Estimation and Kalman Filtering, prediction and smoothing. The extended Kalman filter. ","edges_from":[2748],"edges_to":[],"id":2747,"label":"MAE 288B","title":"Optimal Estimation (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[4288,4944,2747,5005],"id":2748,"label":"MAE 280A","title":""},{"dept":"NANO","description":"Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with CENG 230. Students may not receive credit for both NANO 230 and CENG 230. ","edges_from":[],"edges_to":[],"id":2749,"label":"NANO 230","title":"Synchrotron Characterization of Nanomaterials (4)"},{"dept":"NANO","description":"Engineering principles of nanofabrication. Topics include: photo-, electron beam, and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Relevance to applications in energy, electronics, and medicine will be discussed. ","edges_from":[],"edges_to":[],"id":2750,"label":"NANO 234","title":"Advanced Nanoscale Fabrication (4)"},{"dept":"NANO","description":"Fundamental nanomanufacturing science and engineering, top-down nanomanufacturing processes, bottom-up nanomanufacturing processes, integrated top-down and bottom-up nanofabrication processes, three-dimensional nanomanufacturing, nanomanufacturing systems, nanometrology, nanomanufactured devices for medicine, life sciences, energy, and defense applications. ","edges_from":[],"edges_to":[],"id":2751,"label":"NANO 239","title":"Nanomanufacturing (4)"},{"dept":"NANO","description":"Scanning electron microscopy (SEM) detectors, imaging, image interpretation, and artifacts, introduction to lenses, electron beam-specimen interactions. Operating principles and capabilities for atomic force microscopy and scanning tunneling microscopy, scanning optical microscopy and scanning transmission electron microscopy. ","edges_from":[],"edges_to":[],"id":2752,"label":"NANO 238","title":"Scanning Probe Microscopy (4)"},{"dept":"SE","description":"Development and application of advanced computational techniques for fluid flow. Stabilized and variational multiscale methods for finite element and related discretizations are stressed. Applications involve advection-diffusion equations and systems, and incompressible and compressible Navier-Stokes equations. Turbulence modeling will also be covered. ","edges_from":[2347,2348],"edges_to":[],"id":2753,"label":"SE 278A","title":"Finite Elements for Fluid Mechanics (4)"},{"dept":"MATH","description":"Numerical differentiation and integration. Ordinary differential equations and their numerical solution. Basic existence and stability theory. Difference equations. Boundary value problems. ","edges_from":[2755,923,135],"edges_to":[],"id":2754,"label":"MATH 170C","title":"Introduction to Numerical Analysis: Ordinary Differential Equations (4)"},{"dept":"MATH","description":"","edges_from":[2756],"edges_to":[2754],"id":2755,"label":"MATH 170B","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[2755],"id":2756,"label":"MATH 170A","title":""},{"dept":"ECON","description":"Selected topics in microeconomics. ","edges_from":[797],"edges_to":[],"id":2757,"label":"ECON 182","title":"Topics in Microeconomics (4)"},{"dept":"PHIL","description":"Weekly or biweekly meetings to discuss recent literature in ethics, broadly construed so as to include ethical theory, normative ethics, jurisprudence, and historical traditions in these fields. The course is suitable for those specializing in ethics and for those seeking some familiarity with the field. Can be taken nine times for credit with changed content.","edges_from":[],"edges_to":[],"id":2758,"label":"PHIL 282","title":"Topics and Methods in Ethics (1–2)"},{"dept":"ECON","description":"This course presents a selection of applications and advanced topics that build on the material covered in the Econ 109. Game Theory course. ","edges_from":[796],"edges_to":[],"id":2759,"label":"ECON 109T","title":"Advanced Topics in Game Theory (2)"},{"dept":"ECE","description":"Foundations of deep learning. Deep learning architectures and learning algorithms. Feedforward, convolutional, and recurrent networks. Regularization. Applications to vision, speech, or text processing. ","edges_from":[2524,2525],"edges_to":[],"id":2760,"label":"ECE 271C","title":"Deep Learning and Applications (4)"},{"dept":"MATH","description":"Various topics in mathematical physics and partial differential equations. ","edges_from":[],"edges_to":[],"id":2761,"label":"MATH 278B","title":"Seminar in Mathematical Physics/PDE (1)"},{"dept":"BIBC","description":"Nearly all interactions between organisms, including host-pathogen interactions and mate attraction, have a chemical basis. Plants and microorganisms are the dominant life forms on earth and remain a major source of pharmaceutical leads. Students in this course will utilize biochemical methods to extract, fractionate, and analyze plant and microbial compounds of medicinal and ecological significance including antibiotics, growth regulators, toxins, and signaling molecules. Students use own laptops. Course requires field studies. Transportation not provided by the university. Students must comply with all risk management policies and procedures. Course materials fees will be applied. ","edges_from":[1193,410],"edges_to":[],"id":2762,"label":"BIBC 151","title":"Chemistry of Biological Interactions (4)"},{"dept":"HIGR","description":"Graduate Seminar in Premodern Chinese History (4)","edges_from":[],"edges_to":[],"id":2763,"label":"HIGR 218A","title":""},{"dept":"HIGR","description":"Graduate Seminar in Premodern Chinese History (4)","edges_from":[],"edges_to":[],"id":2764,"label":"HIGR 218B","title":""},{"dept":"ANAR","description":"The history and culture of the Inca Empire of South America and its fatal encounter with the West. Archaeological excavations, accounts from the sixteenth and seventeenth centuries, and ethnographies of present-day peoples of the Andes are explored. ","edges_from":[],"edges_to":[],"id":2765,"label":"ANAR 158","title":"The Inca: Empire of the Andes (4)"},{"dept":"Linguistics/Italian","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1C. ","edges_from":[312,313],"edges_to":[],"id":2766,"label":"Linguistics/Italian (LIIT) 1CX","title":"Analysis of Italian (2.5)"},{"dept":"ANAR","description":"This course will examine archaeological evidence for the development of societies in the South American continent. From the initial arrival of populations through to the Inca period and the arrival of the Spaniards. ","edges_from":[],"edges_to":[],"id":2767,"label":"ANAR 156","title":"The Archaeology of South America (4)"},{"dept":"ANAR","description":"The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500–1000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Students may not receive credit for both ANAR 157S and ANAR 157. ","edges_from":[],"edges_to":[],"id":2768,"label":"ANAR 157","title":"Early Empires of the Andes: The Middle Horizon (4)"},{"dept":"ANAR","description":"Introduction to the archaeology of the ancient culture of Mexico from the early Olmec culture through the Postclassic Aztec, Tarascan, Zapotec, and Mixtec states. Agriculture; trade and exchange; political and social organization; kinship networks; religious system, ideology, and worldviews. ","edges_from":[],"edges_to":[],"id":2769,"label":"ANAR 154","title":"The Aztecs and their Ancestors (4)"},{"dept":"TDGR","description":"Students will develop the concept for an original piece for television or film and will write the screenplay. Student work will be discussed in seminar at each phase of the development. ","edges_from":[1477],"edges_to":[],"id":2770,"label":"TDGR 257A-B","title":"Screenwriting (4-4)"},{"dept":"LTCS","description":"Selected topics on the construction of national cultural identities. Investigation of the dynamics of canon formation and nation building in specific historical contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":2771,"label":"LTCS 260","title":"National Cultures (4)"},{"dept":"HIEU","description":"Ancient travel into unexplored regions of the world and the discovery of new civilizations. Look at actual voyages, focusing on the remarkable figures who braved the unknown, the objects of their journeys, and their crude equipment and knowledge.","edges_from":[],"edges_to":[],"id":2772,"label":"HIEU 112S","title":"Ancient Explorers (4)"},{"dept":"HITO","description":"Students will produce creative video projects by conducting interviews and drawing from relevant texts, lectures, archival resources, and other materials to expand and deepen their understanding of the Holocaust and help contribute to the body of work documenting this period in history.","edges_from":[],"edges_to":[],"id":2773,"label":"HITO 107","title":"Holocaust Video Production (4)"},{"dept":"PHYS","description":"An introduction to mathematical methods used in theoretical physics. Topics include: a review of complex variable theory, applications of the Cauchy residue theorem, asymptotic series, method of steepest descent, Fourier and Laplace transforms, series solutions for ODE’s and related special functions, Sturm Liouville theory, variational principles, boundary value problems, and Green’s function techniques.","edges_from":[],"edges_to":[],"id":2774,"label":"PHYS 201","title":"Mathematical Physics (5)"},{"dept":"Classics","description":"Examines ways in which classical texts and ideas have been received and","edges_from":[],"edges_to":[],"id":2775,"label":"Classics 200B","title":"Historical Perspectives on Classical Antiquity (4)"},{"dept":"Classics","description":"Cultural Contexts (4)","edges_from":[],"edges_to":[],"id":2776,"label":"Classics 200C","title":"Greece and Rome in Their Contemporary"},{"dept":"MUS","description":"Studies Seminar in Creative Practice (4)","edges_from":[],"edges_to":[],"id":2777,"label":"MUS 254","title":"Integrative"},{"dept":"GPEC","description":"The course looks at clean energy and related technologies, including a high-level understanding of the science, policy, and market forces governing innovation. Students will develop an understanding of the renewable energy sector and the market variability of new technology. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 418. Students may not receive credit for GPEC 418 and IRGN 418.","edges_from":[],"edges_to":[],"id":2778,"label":"GPEC 418","title":"Green Technology (4)"},{"dept":"GPEC","description":"This course will begin by examining financial systems in poor countries. We will investigate how microfinance contracts overcome problems which had previously barred the extension of business credit in many environments. Renumbered from IRGN 417. Students may not receive credit for GPEC 417 and IRGN 417.","edges_from":[],"edges_to":[],"id":2779,"label":"GPEC 417","title":"Microfinance (4)"},{"dept":"GPEC","description":"This course examines the theoretical and empirical questions around the supply and demand markets, and the use for energy in firms and households. We will consider the environmental consequences and regulations of use. The course emphasizes the application of economic theory to energy issues. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 414. Students may not receive credit for GPEC 414 and IRGN 414. ","edges_from":[],"edges_to":[],"id":2780,"label":"GPEC 414","title":"The Economics of Energy Policy (4)"},{"dept":"GPEC","description":"This course explores the rationales and consequences of trade-related government interventions from an economic perspective. We will cover classical trade theory, “new” trade theory, the process of global multilateral trade integration, and the political economy roots of trade policy. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 415. Students may not receive credit for GPEC 415 and IRGN 415.","edges_from":[],"edges_to":[],"id":2781,"label":"GPEC 415","title":"The Economics of Trade Policy (4)"},{"dept":"GPEC","description":"This course studies the economic development, current economic issues, and future prospects and challenges of East Asia, broadly defined as China, Japan, Korea, and Southeast Asia. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies in the region. Renumbered from IRGN 412. Students may not receive credit for GPEC 412 and IRGN 412.","edges_from":[],"edges_to":[],"id":2782,"label":"GPEC 412","title":"Comparative Development of the East Asian Economies (4)"},{"dept":"GPEC","description":"Why has China been growing so fast in the past few decades? Does the authoritarianism select competent leaders? How do firms and households behave in such a quasi-market economy? The course is designed to investigate these topical questions and provide students with a general overview of existing research on China’s development. May not receive credit for GPEC 411 and IRGN 490, Topics in China’s Development.","edges_from":[],"edges_to":[],"id":2783,"label":"GPEC 411","title":"Topics in China’s Development (4)"},{"dept":"CSE","description":"Robotics has the potential to improve well-being for millions of people, support care givers, and aid the clinical workforce. This course brings together engineers, clinicians, and end-users to explore this exciting new field. It is project-based, interactive, and hands on, and involves working closely with stakeholders to develop prototypes that solve real-world problems. Students will explore the latest research in healthcare robotics, human-robot teaming, and health design. JSOE students should be comfortable building and experimenting within their area of expertise (e.g., CSE, software development, MAE, rapid prototyping). Students with clinical backgrounds should be familiar with translational research methods. Students may not receive credit for CSE 276D and CSE 291 (H00) taught spring 2017 with the same subtitle. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":2784,"label":"CSE 276D","title":"Healthcare Robotics (4)"},{"dept":"CSE","description":"Robots are entering human spaces. How do we make them functional, useful, and acceptable? This course explores the core computational, engineering, and experimental challenges in human-robot interaction. Course topics include shared autonomy, perception of people and context, coordination, collaboration, human-guided learning, robot design, and experimental robotics. Students will review seminal and recent papers in the field and engage in team-based projects with physical, mobile robots. This class requires expertise in software development. Prior exposure to robotics, computer vision, or machine learning is recommended. Students should be comfortable reading and analyzing scientific papers at the graduate level. Students may not receive credit for CSE 276B and CSE 291 (A00) taught winter 2017 with the same subtitle. ","edges_from":[],"edges_to":[],"id":2785,"label":"CSE 276B","title":"Human Robot Interaction (4)"},{"dept":"CSE","description":"The course will provide a comprehensive introduction to the key mathematical concepts used for modeling, implementing, and evaluation of robot systems. The course will use small home assignments tasks and a larger robot project to exercise the topics covered in class. The students should have a basic knowledge of mathematics and know one or more programming languages such as Python or Matlab for completion of homework assignments. ","edges_from":[],"edges_to":[],"id":2786,"label":"CSE 276C","title":"Mathematics for Robotics (4)"},{"dept":"CHEM","description":"Selection of topics of current interest. May be repeated for credit when topics vary. (May not be offered every year.)","edges_from":[],"edges_to":[],"id":2787,"label":"CHEM 229","title":"Special Topics in Inorganic Chemistry (2–4)"},{"dept":"CSE","description":"This course provides an introduction to the fundamentals of robotics across kinematics, sensor systems, estimation, control, and planning. The contents include introduction to robotics in general, kinematics of robot systems, robot arm systems, sensors for robots, basic vision for robots, estimation methods, perception, robot localization and navigation, control of robot systems, robot motion planning, robot task planning, robot architectures, and evaluation of robot systems. It is expected that students have a solid understanding of linear algebra, can program in Python or C++, and have a basic understanding of methods for reasoning under uncertainty. ","edges_from":[],"edges_to":[],"id":2788,"label":"CSE 276A","title":"Introduction to Robotics (4)"},{"dept":"CHEM","description":"Seminars presented by faculty and students on topics of current interest in inorganic chemistry, including areas such as bioinorganic, organometallic and physical-inorganic chemistry. The course is designed to promote a critical evaluation of the available data in specialized areas of inorganic chemistry. Each quarter three or four different topics will be discussed. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":2789,"label":"CHEM 227","title":"Seminar in Inorganic Chemistry (2)"},{"dept":"CHEM","description":"Advanced aspects of structure and bonding in transition metal","edges_from":[],"edges_to":[],"id":2790,"label":"CHEM 226","title":"Transition Metal Chemistry (4)"},{"dept":"CHEM","description":"The role of metal","edges_from":[],"edges_to":[],"id":2791,"label":"CHEM 225","title":"Bioinorganic Chemistry (4)"},{"dept":"CHEM","description":"Application of physical techniques to the elucidation of the structure of inorganic complex ions and organometallic compounds. Topics covered include group theory, and its application to vibrational, magnetic resonance and Raman spectroscopy. (May not be offered every year.)","edges_from":[],"edges_to":[],"id":2792,"label":"CHEM 224","title":"Spectroscopic Techniques (4)"},{"dept":"CHEM","description":"A survey of this field from a synthetic and mechanistic viewpoint. Fundamental reactivity patterns for transition element organometallic compounds will be discussed and organized according to periodic trends. Transition metal catalyzed reactions of importance to organic synthesis and industrial chemistry will be presented from a mechanistic perspective. Letter grades only. ","edges_from":[],"edges_to":[],"id":2793,"label":"CHEM 223","title":"Organometallic Chemistry (4)"},{"dept":"CHEM","description":"(Cross-listed with MATS 227.) Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands versus bonds, free electron theory.","edges_from":[],"edges_to":[],"id":2794,"label":"CHEM 222","title":"Structure and Analysis of Solids (4)"},{"dept":"CHEM","description":"The aim of this course is to develop an appreciation for a variety of topics in signal transduction. We will discuss several historical developments while the focus will be on current issues. Both experimental approaches and results will be included in our discussions. Topics may vary from year to year. ","edges_from":[],"edges_to":[],"id":2795,"label":"CHEM 221","title":"Signal Transduction (4)"},{"dept":"CHEM","description":"Modulation cellular activity and influencing viral fate involve","edges_from":[],"edges_to":[],"id":2796,"label":"CHEM 220","title":"Regulatory Circuits in Cells (4)"},{"dept":"VIS","description":"Art Making: Three-Dimensional Practices (4)","edges_from":[],"edges_to":[],"id":2797,"label":"VIS 3","title":"Introduction to"},{"dept":"VIS","description":"Art Making: Motion and Time Based Art (4)","edges_from":[],"edges_to":[],"id":2798,"label":"VIS 2","title":"Introduction to"},{"dept":"VIS","description":"Art Making: Two-Dimensional Practices (4)","edges_from":[],"edges_to":[],"id":2799,"label":"VIS 1","title":"Introduction to"},{"dept":"MAE","description":"This course covers topics in probability and stochastic processes, linear control and estimation including optimal linear control, nonlinear stabilization, and optimal control and estimation for nonlinear systems. ","edges_from":[],"edges_to":[],"id":2800,"label":"MAE 200","title":"Controls (4)"},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[2851,2980],"id":2801,"label":"GPCO 415","title":"Accounting and Finance for Policy Makers (4)"},{"dept":"POLI","description":"Explores formal analytic and primarily game-theoretic research in international relations with emphasis on conflict and bargaining. Topics include: causes of war and peace, conventional and nuclear deterrence, crisis bargaining, arms race, and two-level games.","edges_from":[],"edges_to":[],"id":2802,"label":"POLI 247B","title":"Formal Models in International Relations (4)"},{"dept":"POLI","description":"This course is a survey of the history of international relations from 1618 to 1945. The focus is on diplomacy and war-fighting in their social, economic, political, cultural, and technological contexts. Formative conflicts will be examined in detail. ","edges_from":[],"edges_to":[],"id":2803,"label":"POLI 247C","title":"History of International Relations (4)"},{"dept":"GPCO","description":"Development of analytic tools for understanding international relations with applications to contemporary problems such as the environment, nuclear proliferation, human rights, humanitarian interventions, and the roots of conflict and cooperation among countries. Renumbered from IRCO 410. Students may not receive credit for GPCO 410 and IRCO 410. ","edges_from":[],"edges_to":[],"id":2804,"label":"GPCO 410","title":"International Politics and Security (4)"},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[],"id":2805,"label":"GPCO 412","title":"Globalization, the World System, and the Pacific (4)"},{"dept":"SE","description":"Requirements for strain measurements, electrical resistance strain gages, fiberoptic strain gages, wave propagation, ultrasonic testing, impact-echo, acoustic emission, infrared thermography, vibrational testing. Applications to materials characterization, defect detection, and health monitoring of structural components. Recommended preparation: SE 101A, SE 110A or MAE 131A, and SE 110B or MAE 131B. ","edges_from":[],"edges_to":[],"id":2806,"label":"SE 252","title":"Experimental Mechanics and NDE (4)"},{"dept":"SE","description":"Fundamental and advanced concepts of stability analysis for earth slopes and retaining walls with soil backfill. Topics: shear strength, effective/total stress analysis, infinite/finite slopes, reinforced soil slopes, lateral earth pressure, retaining wall design and reinforced soil retaining walls. Recommended preparation: SE 181 or equivalent background. ","edges_from":[],"edges_to":[],"id":2807,"label":"SE 250","title":"Stability of Earth Slopes and Retaining Walls (4)"},{"dept":"SE","description":"Introduction to textile structure and behavior, mechanics of yarns and fabrics as relevant to structural composites and geotechnical applications. Mechanics of textiles and fabric-based composites. Applications in fiber reinforced composites, coated textile structures, geotextiles.","edges_from":[],"edges_to":[],"id":2808,"label":"SE 255","title":"Textile Composite Structures (4)"},{"dept":"HUM","description":"Selected topics in the history, literature, and thought of Mediterranean antiquity and its successor-cultures. Emphasis on identifying both common themes and cultural distinctiveness. Discussion of pedagogical approaches to this material. Required of all graduate instructional assistants in the humanities sequence. ","edges_from":[],"edges_to":[],"id":2809,"label":"HUM 200","title":"Seminar in the Humanities (4)"},{"dept":"POLI","description":"International migration creates a distinct set of human rights challenges. This course examines the conflict between international legal obligations and domestic politics of citizenship, human rights, asylum, and human trafficking. ","edges_from":[],"edges_to":[],"id":2810,"label":"POLI 140D","title":"International Human Rights Law: Migrant Populations (4)"},{"dept":"POLI","description":"International law is central to the efforts to create a world order to limit armed conflict, regulate world economy, and set minimum standards for human rights. This course introduces international law and explains theories advanced by academic analysts and practitioners to explain its role. ","edges_from":[],"edges_to":[],"id":2811,"label":"POLI 140A","title":"International Law (4)"},{"dept":"POLI","description":"Introduction to the analytical and comparative study of revolutionary movements and related forms of political violence. Topics include: the classical paradigm; types of revolutionary episodes; psychological theories; ideology and belief systems; coups; insurgencies; civil wars; terrorism and revolutionary outcomes. ","edges_from":[],"edges_to":[],"id":2812,"label":"POLI 140B","title":"Concepts and Aspects of Revolution (4)"},{"dept":"POLI","description":"A survey of international peacekeeping and peace enforcement in civil conflicts with a simulation of international diplomacy. ","edges_from":[],"edges_to":[],"id":2813,"label":"POLI 140C","title":"International Crisis Diplomacy (4)"},{"dept":"MUS","description":"This course will examine the development of the Blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of Urban Blues and the close relationship of the Blues with Jazz, Rhythm and Blues, and Rock and Roll. (Cross-listed with ETHN 178.) ","edges_from":[],"edges_to":[],"id":2814,"label":"MUS 126","title":"Blues: An Oral Tradition (4)"},{"dept":"MATH","description":"Various topics in optimization and applications. May be taken for credit nine times. ","edges_from":[],"edges_to":[],"id":2815,"label":"MATH 278C","title":"Seminar in Optimization (1)"},{"dept":"ETHN","description":"Using key theoretical approaches, debates, and frameworks of ethnic studies, students develop a critical analysis of how existing scholarship within the field of ethnic studies informs a specific research question, topic, or object of study; this literature review demonstrates comprehensive and holistic knowledge of critical approaches and constructs a coherent theoretical framework that effectively summarizes, synthesizes, and assesses a particular body of relevant ethnic studies literature.","edges_from":[],"edges_to":[3748],"id":2816,"label":"ETHN 291A","title":"Comprehensive Research Preparation: The Literature Review (4)"},{"dept":"LIGN","description":"How do some languages express with one word complex meanings that English needs several words to express? Discovery of underlying principles of word formation through problem solving and analysis of data from a wide variety of languages. ","edges_from":[752],"edges_to":[],"id":2817,"label":"LIGN 120","title":"Morphology (4)"},{"dept":"MAE","description":"Analysis of aerospace engineering systems using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine. Students operate facilities, obtain data, complete engineering analysis and write major reports. ","edges_from":[2820,988,2819,676,821],"edges_to":[],"id":2818,"label":"MAE 175A","title":"Aerospace Engineering Laboratory I (4)"},{"dept":"MAE","description":"","edges_from":[5966],"edges_to":[2818,3579,4599],"id":2819,"label":"MAE 143B","title":""},{"dept":"CENG","description":"","edges_from":[],"edges_to":[2818,3579],"id":2820,"label":"CENG 120","title":""},{"dept":"EDS","description":"Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the first course of a two-course series. ","edges_from":[],"edges_to":[2822],"id":2821,"label":"EDS 294A","title":"Colloquium on Educational Leadership (2)"},{"dept":"EDS","description":"Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the second course in a two-course series. ","edges_from":[2821],"edges_to":[],"id":2822,"label":"EDS 294B","title":"Colloquium on Educational Leadership (2)"},{"dept":"Revelle","description":"Weekly seminars with a faculty member (chosen each year by the provost to match the interests of participating students). This seminar will acquaint students with the scholarship and research being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2823,"label":"Revelle 20","title":"Revelle Freshman Honors Program Seminar (0)"},{"dept":"ECE","description":"Stability of continuous- and discrete-time","edges_from":[],"edges_to":[4599],"id":2824,"label":"ECE 171A","title":"Linear Control System Theory (4)"},{"dept":"ECE","description":"Time-domain, state-variable formulation of","edges_from":[],"edges_to":[],"id":2825,"label":"ECE 171B","title":"Linear Control System Theory (4)"},{"dept":"LTWL","description":"Course sets out to explore the history and theory of Iranian films in the context of the country’s political, cultural, and religious settings since 1945. Students are expected to watch and discuss Iranian films, particularly the postrevolutionary films of Kiarostami and Mokhbalbaf.","edges_from":[],"edges_to":[],"id":2826,"label":"LTWL 157","title":"Iranian Film (4)"},{"dept":"LTWL","description":"The study of the construction of sexual differences in literature and culture. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":2827,"label":"LTWL 155","title":"Gender Studies (4)"},{"dept":"LTWL","description":"Explores the various cross-cultural historical, philosophical, and aesthetic ideas which formed the basis of most twentieth-century literature. Literature from the Americas, Europe, Asia, and Africa will be studied through lectures and the reading of texts in English translation. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":2828,"label":"LTWL 150","title":"Modernity and Literature (4)"},{"dept":"LTWL","description":"This course examines the role of Information Communication Technologies (ICTs) such as the Internet, mobile, and satellite TV in the reshaping of the Middle East and North Africa. It will focus on how ICTs like the Internet are changing culture, politics, and religion in the region and implication of such transformations.","edges_from":[],"edges_to":[],"id":2829,"label":"LTWL 159","title":"Digital Middle East: Culture, Politics, and Religion (4)"},{"dept":"USP","description":"(Same as SOCI 152.) Primary focus on understanding","edges_from":[],"edges_to":[],"id":2830,"label":"USP 133","title":"Social Inequality and Public Policy (4)"},{"dept":"USP","description":"(Same as ETHN 188.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived. ","edges_from":[],"edges_to":[],"id":2831,"label":"USP 132","title":"African Americans, Religion, and the City (4)"},{"dept":"USP","description":"Craft breweries are emerging as a significant part of the economy in US cities. This course examines the rise and impact of craft breweries in city life with a focus on tourism, urban culture, local job growth, and urban revitalization. ","edges_from":[],"edges_to":[],"id":2832,"label":"USP 131","title":"Culture, Tourism, and the Urban Economy: Case Studies of Craft Breweries"},{"dept":"POLI","description":"An undergraduate course designed to cover various aspects of political theory. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.","edges_from":[],"edges_to":[],"id":2833,"label":"POLI 119A","title":"Special Topics in Political Theory (4)"},{"dept":"USP","description":"Community Development Policy and Practice (4)","edges_from":[],"edges_to":[],"id":2834,"label":"USP 137","title":"Housing and"},{"dept":"USP","description":"Provides an overview of collaborative leadership and considers consensus organizing as both a tactical and strategic approach to effective community building and development. Examines how various communities have approached collaborative leadership, consensus organizing, and community building. ","edges_from":[],"edges_to":[],"id":2835,"label":"USP 136","title":"Collaborative Community Leadership (4)"},{"dept":"USP","description":"Latina Immigrant Workers in the Global Economy (4)","edges_from":[],"edges_to":[],"id":2836,"label":"USP 135","title":"Asian and"},{"dept":"USP","description":"This course examines the integration of youth development and community development in theory and practice as a strategy for addressing adultism. Analyze cases through a cultural lens where local, national, and international youth movements have helped make community development more responsive, inclusive, and culturally sensitive. ","edges_from":[],"edges_to":[],"id":2837,"label":"USP 134","title":"Community Youth Development (4)"},{"dept":"USP","description":"This course explores emerging trends in urban design and economic development and their interrelationship. The course focuses on selected community projects and also considers urban governance structures. Various research methods will be applied to urban problems. ","edges_from":[],"edges_to":[],"id":2838,"label":"USP 139","title":"Urban Design and Economic Development (4)"},{"dept":"USP","description":"This course focuses on strategies that policy makers and planners use in their efforts to foster healthy economies. Topics include theories of urban economic development, analytical techniques for describing urban economies, and the politics and planning of economic development. ","edges_from":[],"edges_to":[],"id":2839,"label":"USP 138","title":"Urban Economic Development (4)"},{"dept":"HIEU","description":"An analysis of the volatile course of German history from unification to the collapse of the Nazi dictatorship. Focus is on domestic developments inside Germany as well as on their impact on European and global politics in the twentieth century. Students may not receive credit for both HIEU 154 and HIEU 154GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.","edges_from":[],"edges_to":[],"id":2840,"label":"HIEU 154GS","title":"Modern Germany: From Bismarck to Hitler (4)"},{"dept":"ETHN","description":"The class will work in teams to design all aspects of an actual museum exhibition of Plains Indian drawings from 1860 to 1890, turning theory into practice. In some quarters, the exhibition will be installed in a San Diego museum directly after completion of the course. ","edges_from":[2842],"edges_to":[],"id":2841,"label":"ETHN 114B","title":"Representing Native America—Exhibition Design (4)"},{"dept":"ETHN","description":"","edges_from":[],"edges_to":[2841],"id":2842,"label":"ETHN 114A","title":""},{"dept":"VIS","description":"This course offers new approaches to understanding Michelangelo’s greatest creations. By considering how each work relates to the setting for which it was intended, by regarding critical literature and artistic borrowings as evidence about the works, and by studying the thought of the spiritual reformers who counseled Michelangelo, new interpretations emerge which show the artist to be a deeply religious man who invested his works with both public and private meanings. ","edges_from":[681,2844,2845,2846],"edges_to":[],"id":2843,"label":"VIS 122D","title":"Michelangelo (4)"},{"dept":"VIS","description":"","edges_from":[],"edges_to":[5554,2843,5391],"id":2844,"label":"VIS 22","title":""},{"dept":"VIS","description":"","edges_from":[],"edges_to":[2843],"id":2845,"label":"VIS 20","title":""},{"dept":"VIS","description":"","edges_from":[],"edges_to":[2843],"id":2846,"label":"VIS 21","title":""},{"dept":"GPIM","description":"This course examines the economics of decisions and strategies made within non-governmental organizations. Topics covered include how and why organizations emerge and the impact that owner and manager decisions have on workers, strategy, and success. Renumbered from IRGN 447. Students may not receive credit for GPIM 447 and IRGN 447.","edges_from":[],"edges_to":[],"id":2847,"label":"GPIM 447","title":"Organizational Economics (4)"},{"dept":"HIUS","description":"Cultural and political construction of the American nation. Topics include: how citizenship and national community were imagined and contested; importance of class, gender, and race in the nation’s public sphere; debates over slavery, expansion, and democracy in defining national purpose. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial paper.","edges_from":[],"edges_to":[],"id":2848,"label":"HIUS 182","title":"Special Topics in Intellectual History (4)"},{"dept":"HIUS","description":"A colloquium dealing with special topics in the history of people of African descent in the United States. Course may be taken for credit up to three times, as topics will vary from quarter to quarter. ","edges_from":[],"edges_to":[],"id":2849,"label":"HIUS 183","title":"Topics in African American History (4)"},{"dept":"HIUS","description":"Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary. ","edges_from":[],"edges_to":[],"id":2850,"label":"HIUS 186","title":"Topics in US Economic History (4)"},{"dept":"GPIM","description":"Focus on planning, managing, controlling, and evaluating costs for competitive advantage in global markets. Key topics will include cost structure, cost-based managerial decision making, strategic cost management, JIT/TQC cost management, and accounting control systems. Renumbered from IRGN 440. Students may not receive credit for GPIM 440 and IRGN 440. ","edges_from":[2801],"edges_to":[],"id":2851,"label":"GPIM 440","title":"Managerial Accounting and Control (4)"},{"dept":"USP","description":"(Same as ETHN 107.) This is a research course examining social, economic, and political issues in ethnic and racial communities through fieldwork. Topics are examined through a variety of research methods that may include interviews and archival, library, and historical research. ","edges_from":[],"edges_to":[],"id":2852,"label":"USP 130","title":"Fieldwork in Racial and Ethnic Communities (4)"},{"dept":"Soc/G","description":"Assimilation, and Identity (4)","edges_from":[],"edges_to":[],"id":2853,"label":"Soc/G 278","title":"Immigration,"},{"dept":"PSYC","description":"(4)","edges_from":[],"edges_to":[],"id":2854,"label":"PSYC 270A","title":"Introduction to Laboratory Experimentation I"},{"dept":"PSYC","description":"Final quarter of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. Letter grades only. ","edges_from":[],"edges_to":[],"id":2855,"label":"PSYC 270C","title":"Introduction to Laboratory Experimentation III (4)"},{"dept":"PSYC","description":"Continuation of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. S/U grades only. ","edges_from":[],"edges_to":[],"id":2856,"label":"PSYC 270B","title":"Introduction to Laboratory Experimentation II (4)"},{"dept":"COGS","description":"","edges_from":[393,2670,3293,238,2647],"edges_to":[1573,4590,4016,4017,4014,5823],"id":2857,"label":"COGS 120","title":""},{"dept":"BENG","description":"Biotech is a special breed of business, especially in start-up and early phases. Whether you are considering joining a biotech start-up or want to be successful in a life-science organization, it pays to understand this unique business model. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies. The format is highly interactive and learning is enhanced by means of exercises, team presentations, and case studies. ","edges_from":[],"edges_to":[],"id":2858,"label":"BENG 225","title":"BioBusiness: Starting, Growing, and Harvesting a Biotech Company (4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[5859,1193,3313,952,410,3835,4221,959],"id":2859,"label":"CHEM 140A","title":""},{"dept":"Linguistics/Portuguese","description":"Presentation and practice of the basic grammatical","edges_from":[],"edges_to":[],"id":2860,"label":"Linguistics/Portuguese (LIPO) 1AX","title":"Analysis of Portuguese (2.5)"},{"dept":"MATH","description":"Probabilistic Foundations of Insurance. Short-term","edges_from":[],"edges_to":[2862],"id":2861,"label":"MATH 193A","title":"Actuarial Mathematics I (4)"},{"dept":"MATH","description":"Life Insurance and Annuities. Analysis of premiums and premium reserves. Introduction to multiple life functions and decrement models as time permits. ","edges_from":[2861],"edges_to":[],"id":2862,"label":"MATH 193B","title":"Actuarial Mathematics II (4)"},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 110A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110A or after successful completion of Econ 110A with A–or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":2863,"label":"ECON 110AH","title":"Honors Macroeconomics A (1)"},{"dept":"HLAW","description":"This course series focuses on developing students’ research and scholarly writing skills for their Independent Study Projects (ISP). Topics include refining the research question, collecting/analyzing data, understanding research methodology, forming the ISP committee, and producing a viable ISP proposal. ","edges_from":[],"edges_to":[],"id":2864,"label":"HLAW 298A-C","title":"Health Law Research Forum (1-1-1)"},{"dept":"ANTH","description":"This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ","edges_from":[],"edges_to":[],"id":2865,"label":"ANTH 287","title":"Ethnography Practicum (4)"},{"dept":"ANTH","description":"This workshop is designed for third and fourth year students writing grant proposals for dissertation research. Students will learn grant writing, research methods, ethics, and budgets. Students will be expected to share their work with each other. ","edges_from":[],"edges_to":[],"id":2866,"label":"ANTH 285","title":"Grants Writing Practicum (4)"},{"dept":"ANTH","description":"This workshop is designed for second year students writing their MA theses. It includes study of thesis and article writing styles, standards of documentation, and argumentation. Students will be expected to share their work with each other. ","edges_from":[],"edges_to":[],"id":2867,"label":"ANTH 284","title":"Master Writing Practicum (4)"},{"dept":"HIUS","description":"This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries. Program or materials fees may apply. Students must apply and be accepted into the Global Seminars Program. Students may not receive credit for HIUS 133 and HIUS 133GS.","edges_from":[],"edges_to":[],"id":2868,"label":"HIUS 133GS","title":"The Golden Age of Piracy (4)"},{"dept":"ANTH","description":"Field and laboratory training for graduate students in archaeology. Students will design and implement archaeological fieldwork or analyze data collected in the field. ","edges_from":[2870],"edges_to":[],"id":2869,"label":"ANTH 288","title":"Archaeology Practicum (12)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[2869],"id":2870,"label":"ANGR 288","title":""},{"dept":"MATH","description":"Recommended for all students specializing in algebra. Basic topics include categorical algebra, commutative algebra, group representations, homological algebra, nonassociative algebra, ring theory. May be taken for credit six times with consent of adviser as topics vary. ","edges_from":[2872],"edges_to":[],"id":2871,"label":"MATH 201A","title":"Basic Topics in Algebra I (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[3448,3054,2871],"id":2872,"label":"MATH 200C","title":""},{"dept":"TDDE","description":"An advanced course based on the “practice” of costume design, dealing with the solution finding process, from text to idea to realized work. ","edges_from":[128,2874],"edges_to":[],"id":2873,"label":"TDDE 112","title":"Advanced Costume Design (4)"},{"dept":"TDDE","description":"","edges_from":[128],"edges_to":[2873],"id":2874,"label":"TDDE 111","title":""},{"dept":"LTEN","description":"Selected topics concerned with modern British literature; study of various authors, issues, and trends in literatures of the British Isles from the mid-1850s through the present day. May be taken up to three times for credit when topics vary.","edges_from":[],"edges_to":[],"id":2875,"label":"LTEN 130","title":"Modern British Literature (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":2876,"label":"LTEN 132","title":"Modern Irish Literature (4)"},{"dept":"SE","description":"Part I of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ","edges_from":[2660,2878],"edges_to":[2879],"id":2877,"label":"SE 140A","title":"Professional Issues and Design for Civil Structures I (4)"},{"dept":"SE","description":"","edges_from":[2661],"edges_to":[2877,3613],"id":2878,"label":"SE 150","title":""},{"dept":"SE","description":"Part II of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ","edges_from":[2880,1785,2877],"edges_to":[],"id":2879,"label":"SE 140B","title":"Professional Issues and Design for Civil Structures II (4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[3611,2879],"id":2880,"label":"SE 151A","title":""},{"dept":"HISC","description":"The role of technology in American history through the Civil War. Indigenous and colonial development, transportation infrastructures, and industrialization are explored to understand the connections among technology, society, and culture. +","edges_from":[],"edges_to":[],"id":2881,"label":"HISC 120A","title":"Technology in America I (4)"},{"dept":"BENG","description":"Introductory laboratory course in current principles and techniques of chemistry and molecular biology applicable to bioengineering. Quantitation of proteins and nucleic acids by spectrophotometric, immunological, and enzymatic methods. Separations and purification by centrifugation, chromatographic, and electrophoretic methods. Course materials fees may apply. ","edges_from":[412,821,477],"edges_to":[2883,3839],"id":2882,"label":"BENG 160","title":"Chemical and Molecular Bioengineering Techniques (4)"},{"dept":"BENG","description":"Laboratory practices and design principles for biotechnology. Culture of microorganisms and mammalian cells, recombinant DNA bioreactor design and operation. Design and implementation of biosensors. A team design-based term project and oral presentation required. Course materials fees may apply. ","edges_from":[2882,821],"edges_to":[],"id":2883,"label":"BENG 162","title":"Biotechnology Laboratory (4)"},{"dept":"PHYS","description":"A combined analytic and mathematically-based numerical approach to the solution of common applied mathematics problems in physics and engineering. Topics: Fourier series and integrals, special functions, initial and boundary value problems, Green’s functions; heat, Laplace and wave equations. ","edges_from":[129,36,133,134,135,136,41,138,139,140,141,385,40,33,37,30,31],"edges_to":[2886],"id":2884,"label":"PHYS 105A","title":"Mathematical and Computational Physics I (4)"},{"dept":"BENG","description":"Basic molecular biology and recombinant DNA technologies. Structure and function of biomolecules that decode genomes and perform energy conversion, enzymatic catalysis, and active transport. Metabolism of macromolecules. Molecular diagnostics. Design, engineering, and manufacture of proteins, genomes, cells, and biomolecular therapies. ","edges_from":[954,477],"edges_to":[5755],"id":2885,"label":"BENG 168","title":"Biomolecular Engineering (4)"},{"dept":"PHYS","description":"A continuation of Physics 105A covering selected advanced topics in applied mathematical and numerical methods. Topics include statistics, diffusion and Monte-Carlo simulations; Laplace equation and numerical methods for nonseparable geometries; waves in inhomogeneous media, WKB analysis; nonlinear systems and chaos. ","edges_from":[385,139,2884,133,134,129,136,138,135,140,141],"edges_to":[],"id":2886,"label":"PHYS 105B","title":"Mathematical and Computational Physics II (4)"},{"dept":"PHIL","description":"Philosophical issues involved in the development of modern science, the growth of technology, and control of the natural environment. The interaction of science and technology with human nature and political and moral ideals. ","edges_from":[],"edges_to":[],"id":2887,"label":"PHIL 164","title":"Technology and Human Values (4)"},{"dept":"PHIL","description":"Examination of freedom and equality under the US Constitution, focusing on Supreme Court cases concerning discrimination on grounds of race, ethnic background, gender, undocumented status, wealth, and sexual orientation, and cases regarding contraceptives, abortion, interracial marriage, polygamy, and same-sex marriage. ","edges_from":[],"edges_to":[],"id":2888,"label":"PHIL 165","title":"Freedom, Equality, and the Law (4)"},{"dept":"VIS","description":"This seminar will examine key moments in the interaction between the world of art and the world of ideas; the goal is to start students thinking about the entire theory-practice relation as it connects with their own projects and research. ","edges_from":[],"edges_to":[],"id":2889,"label":"VIS 117G","title":"Critical Theory and Visual Practice (4)"},{"dept":"VIS","description":"Examines the philosophical debates that locate the Americas in relation to the modern world. ","edges_from":[],"edges_to":[],"id":2890,"label":"VIS 117F","title":"Theorizing the Americas (4)"},{"dept":"PHIL","description":"Systematic and/or historical perspectives on central issues in ethical theory such as deontic, contractualist, and consequentialist conceptions of morality; rights and special obligations; the role of happiness and virtue in morality; moral conflict; ethical objectivity and relativism; and the rational authority of morality. ","edges_from":[],"edges_to":[],"id":2891,"label":"PHIL 160","title":"Ethical Theory (4)"},{"dept":"PHIL","description":"Central issues and texts in the history of ethics. Subject matter can vary, ranging from one philosopher (e.g., Aristotle, Hobbes, Kant, or Mill) to a historical tradition (e.g., Greek ethics or the British moralists). May be repeated for credit with change in content and approval of instructor. ","edges_from":[],"edges_to":[],"id":2892,"label":"PHIL 161","title":"Topics in the History of Ethics (4)"},{"dept":"PHIL","description":"An examination of contemporary moral issues, such as abortion, euthanasia, war, affirmative action, and freedom of speech. ","edges_from":[],"edges_to":[],"id":2893,"label":"PHIL 162","title":"Contemporary Moral Issues (4)"},{"dept":"PHIL","description":"Moral issues in medicine and the biological sciences, such as patient’s rights and physician’s responsibilities, abortion and euthanasia, the distribution of health care, experimentation, and genetic intervention. ","edges_from":[],"edges_to":[],"id":2894,"label":"PHIL 163","title":"Biomedical Ethics (4)"},{"dept":"VIS","description":"and Non-Western Rituals and Ceremonies (4)","edges_from":[],"edges_to":[],"id":2895,"label":"VIS 117I","title":"Western"},{"dept":"PHIL","description":"Philosophical examination of core concepts and theses in feminism, feminist philosophy, and critiques of traditional philosophical approaches to morality, politics, and science, from a feminist perspective. May also treat the historical development of feminist philosophy and its critiques. May be taken for credit two times with permission of instructor. ","edges_from":[],"edges_to":[],"id":2896,"label":"PHIL 169","title":"Feminism and Philosophy (4)"},{"dept":"ANAR","description":"Introduction to archaeology of Mesoamerica, taught through visits to important ancient cities and museums of Mexico and Central America. Complementary to ANAR 154. Itinerary and subject will vary, so course may be taken more than once. Course/program fees may apply. ","edges_from":[2897,2898],"edges_to":[2897],"id":2897,"label":"ANAR 155S","title":"Study Abroad: Ancient Mesoamerica (4)"},{"dept":"ANRG","description":"","edges_from":[],"edges_to":[2897],"id":2898,"label":"ANRG 106","title":""},{"dept":"SIOC","description":"Fluid dynamics of the atmosphere; derivation of governing equations from the laws of physics, scale analysis, conservation principles, theoretical and observed structure of midlatitude synoptic systems; gradient wind and thermal wind approximations, geostrophic and quasigeostrophic approximations; potential vorticity, Rossby waves, climate and weather phenomena such as jet streams and cyclones. Graduate students who have not completed SIO 217A but have an equivalent background may enroll with consent of instructor. Renumbered from SIO 217B. ","edges_from":[2900,2901],"edges_to":[5459,5462],"id":2899,"label":"SIOC 217B","title":"Atmospheric and Climate Sciences II (4)"},{"dept":"SIOC","description":"","edges_from":[],"edges_to":[5459,2899,5462],"id":2900,"label":"SIOC 217A","title":""},{"dept":"SIO","description":"","edges_from":[],"edges_to":[5459,2899,5462],"id":2901,"label":"SIO 217A","title":""},{"dept":"GLBH","description":"Selected topics in global health. Content will vary from quarter to quarter. May be taken for credit up to four times.","edges_from":[],"edges_to":[],"id":2902,"label":"GLBH 100","title":"Special Topics in Global Health (4)"},{"dept":"GLBH","description":"(Cross-listed with ANSC 101.) Examines aging as a process of human development from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. Students may not receive credit for GLBH 101 and ANSC 101.","edges_from":[],"edges_to":[],"id":2903,"label":"GLBH 101","title":"Aging: Culture and Health in Late Life Human Development (4)"},{"dept":"EDS","description":"Individual guided study and/or independent research in an area not covered by present course offerings. Offered for repeated registration. ","edges_from":[],"edges_to":[],"id":2904,"label":"EDS 298","title":"Independent Study (1–6)"},{"dept":"ECE","description":"This course covers the mathematical fundamentals of Bayesian filtering and their application to sensing and estimation in mobile robotics. Topics include maximum likelihood estimation (MLE), expectation maximization (EM), Gaussian and particle filters, simultaneous localization and mapping (SLAM), visual features and optical flow, and hidden Markov models (HMM). ","edges_from":[],"edges_to":[2906,3370],"id":2905,"label":"ECE 276A","title":"Sensing and Estimation in Robotics (4)"},{"dept":"ECE","description":"This course covers optimal control and reinforcement learning fundamentals and their application to planning and decision-making in mobile robotics. Topics include Markov decision processes (MDP), Pontryagin’s maximum principle, linear quadratic regulation (LQR), deterministic planning, value and policy iteration, and policy gradient methods. ","edges_from":[2905],"edges_to":[],"id":2906,"label":"ECE 276B","title":"Planning and Learning in Robotics (4)"},{"dept":"GLBH","description":"(Cross-listed with ANSC 105.) Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health care systems in developed, underdeveloped, and developing countries. In addition, we'll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems—multi-drug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: GLBH 105, ANSC 105, ANSC 105S, or ANSC 105GS.","edges_from":[],"edges_to":[],"id":2907,"label":"GLBH 105","title":"Global Health and Inequality (4)"},{"dept":"EDS","description":"Research for the master’s thesis (Educational Research) or curriculum design portfolio thesis (Curriculum Design). Open for repeated registration up to eight units (S/U grade only). ","edges_from":[],"edges_to":[],"id":2908,"label":"EDS 295","title":"MA Thesis (1–8)"},{"dept":"EDS","description":"The RAC will introduce students to transformational research and practice in education through involvement in faculty-led research teams. The RAC will provide a structured environment for mentoring through engagement in collaborative research activities. Each RAC will conceptualize and conduct research that is likely to result in student presentations at educational conferences and in student publications. The RAC also provides support for the analysis and write-up of dissertation research. S/U grades only. May be repeated for credit for a maximum of thirty-eight units. ","edges_from":[],"edges_to":[],"id":2909,"label":"EDS 296","title":"Research Apprenticeship Course (2–4)"},{"dept":"EDS","description":"Study and analysis of specific topics under the guidance of a faculty member. Offered for repeated registration. ","edges_from":[],"edges_to":[],"id":2910,"label":"EDS 297","title":"Directed Group Study (1–6)"},{"dept":"EDS","description":"Supervised research studies with individual topics selected according to students’ special interests. Students will develop a research proposal appropriate for MA thesis, begin to gather and analyze data. ","edges_from":[],"edges_to":[],"id":2911,"label":"EDS 290","title":"Research Practicum (1–12)"},{"dept":"EDS","description":"This course will provide students with time, resources, and guidance for the purpose of developing a review of literature on a student-related topic, which typically becomes the focus of the dissertation research project. Students will be expected to use a variety of research tools in order to discover and identify relevant information. ","edges_from":[],"edges_to":[],"id":2912,"label":"EDS 292","title":"Qualifying Paper Preparation (2)"},{"dept":"HIGR","description":"Historical Scholarship on Premodern Chinese History: Foundations—China","edges_from":[],"edges_to":[],"id":2913,"label":"HIGR 217A","title":""},{"dept":"HIGR","description":"Historical Scholarship on Premodern Chinese History: Late Imperial Chinese","edges_from":[],"edges_to":[],"id":2914,"label":"HIGR 217C","title":""},{"dept":"HIGR","description":"Historical Scholarship on Premodern Chinese History: Han Dynasty","edges_from":[],"edges_to":[],"id":2915,"label":"HIGR 217B","title":""},{"dept":"BGGN","description":"Students read classic and modern papers that form the basis of the undergraduate lectures (BIPN 146), which they are encouraged to attend. Students present these papers at weekly discussion sessions. The focus of 246A is cellular neuronal properties. S/U grades only. ","edges_from":[],"edges_to":[],"id":2916,"label":"BGGN 246A","title":"Computational Neurobiology (2)"},{"dept":"HILA","description":"162/262. Special Topics in Latin American History (4)","edges_from":[],"edges_to":[],"id":2917,"label":"HILA","title":""},{"dept":"ECE","description":"in Photonics/Applied Optics (2)","edges_from":[],"edges_to":[],"id":2918,"label":"ECE 296","title":"Graduate Seminar"},{"dept":"MAE","description":"(Cross-listed with SE 255.) Practical application of the finite element method to problems in solid mechanics. Elements of theory are presented as needed. Covered are static and dynamic heat transfer and stress analysis. Basic processing, solution methods, and postprocessing are practiced with commercial finite element software. Students may not receive credit for SE 233 and MAE 235. ","edges_from":[],"edges_to":[],"id":2919,"label":"MAE 235","title":"Computational Techniques in Finite Elements (4)"},{"dept":"GPIM","description":"This course examines how high-tech companies develop successful products. Emphasizes interplay between business and technology issues, including marketing, finance, manufacturing, prototyping, testing, and design. Student teams develop novel products, from concept to working prototype, including a business plan for launching the product. Discussion of concurrent engineering, rapid prototyping, industrial design, and other design methodologies. Renumbered from IRGN 444. Students may not receive credit for GPIM 444 and IRGN 444.","edges_from":[],"edges_to":[],"id":2920,"label":"GPIM 444","title":"Product Development (4)"},{"dept":"TDGR","description":"Taken each term by all graduate contemporary dance making and performance students. The class supports candidates in their ongoing research in the development of performance work for all three years from in-studio showings through thesis presentation. S/U grades only. May be taken for credit eight times. ","edges_from":[],"edges_to":[],"id":2921,"label":"TDGR 227A","title":"Production Practicum (4)"},{"dept":"SE","description":"(4)","edges_from":[],"edges_to":[],"id":2922,"label":"SE 168","title":"Structural System Testing and Model Correlation"},{"dept":"EDS","description":"This course introduces principles and practices of reflective teaching. Student teachers and interns will systematically document their practice teaching and analyze observation data to improve performance. Students will collaborate with supervisors and expert teachers throughout the yearlong preservice teaching experience. ","edges_from":[2924],"edges_to":[],"id":2923,"label":"EDS 205B","title":"Reflective Teaching Practice (2)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2923],"id":2924,"label":"EDS 205A","title":""},{"dept":"MUS","description":"Fundamentals of programming music software in C and C++. DSP implementation of oscillators, filters, delay, reverb and spectral processing; programming techniques specific to audio and MIDI and simple GUI design for parameter control and signal display. Implementation using a plug-in or external programming interface such as for VST, Audio Unit, PD, or Max/MSP. May be taken for credit two times. ","edges_from":[1912,2926],"edges_to":[],"id":2925,"label":"MUS 177","title":"Music Programming (4)"},{"dept":"MUS","description":"","edges_from":[],"edges_to":[2925],"id":2926,"label":"MUS 161","title":""},{"dept":"BIOM","description":"A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ","edges_from":[],"edges_to":[],"id":2927,"label":"BIOM 283","title":"Supramolecular Structure Determination Laboratory (4)"},{"dept":"ECE","description":"Weekly discussion of research topics in signal and image processing of robotics and control systems. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":2928,"label":"ECE 295","title":"Graduate Seminar in Signal and Image Processing/Robotics and Control Systems (2)"},{"dept":"BGGN","description":"(4–12)","edges_from":[],"edges_to":[],"id":2929,"label":"BGGN 271","title":"Advanced Experimental Methods in Biology"},{"dept":"BIOM","description":"Students will learn to conduct tissue engineering and developmental biology experiments, microfabricate cell culture systems, engineer biopolymer materials, and develop and analyze quantitative models of transport, cell fate, and growth mechanics. The understanding and manipulation of multicellular processes that comprise development and growth involves specialized areas of biomechanics, developmental biology, biomaterials, and the tools of molecular biology, as well as the integration of theory and experiment. To fabricate functional tissues, it is important to establish underlying molecular and physical mechanisms, and then control and integrate these. ","edges_from":[],"edges_to":[],"id":2930,"label":"BIOM 287","title":"Tissue Engineering Laboratory (4)"},{"dept":"SE","description":"of Laminated Composite Structures II (4)","edges_from":[],"edges_to":[],"id":2931,"label":"SE 253B","title":"Mechanics"},{"dept":"BIOM","description":"An overview of the current state of research into human origins with illustration of the spatial and temporal scales: from million-year-old phylogenies to millisecond physiological processes, and from human societies dispersed across continents to cells and molecules. ","edges_from":[],"edges_to":[],"id":2932,"label":"BIOM 225","title":"Introduction to Anthropogeny (2)"},{"dept":"DSGN","description":"New societal challenges, cultural values, and technological opportunities are changing design, and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. P/NP grades only. ","edges_from":[],"edges_to":[],"id":2933,"label":"DSGN 119","title":"Design at Large (2)"},{"dept":"FMPH","description":"This graduate course covers concepts, methods, and applications of multivariate data analysis, including multivariate regression, principal components, clustering and functional analysis. Data analysis will be emphasized. ","edges_from":[2533,2534],"edges_to":[],"id":2934,"label":"FMPH 227","title":"Applied Multivariate Statistical Analysis (4)"},{"dept":"FMPH","description":"An introduction to inference and causal modeling for observational data, including propensity score adjustment, inverse probability weighting, instrumental variables, and sensitivity analysis. Data analysis and computation will be required. ","edges_from":[2936,2533,2534],"edges_to":[],"id":2935,"label":"FMPH 226","title":"Statistical Methods for Observational Studies (4)"},{"dept":"FMPH","description":"","edges_from":[482,2939,2940,2533,2941],"edges_to":[2937,2935],"id":2936,"label":"FMPH 223","title":""},{"dept":"FMPH","description":"The graduate class will cover modern statistical inference including non-parametric statistics, estimating equations, resampling methods, and statistical learning. Data analysis and computation will be emphasized. ","edges_from":[2936,2533,2534],"edges_to":[],"id":2937,"label":"FMPH 225","title":"Advanced Topics in Biostatistical Inference (4)"},{"dept":"FMPH","description":"The graduate class will cover statistical aspects of clinical trial design, monitoring, analysis, and ethics of human subjects research. Data analysis and computation will be emphasized. ","edges_from":[2533,2534],"edges_to":[],"id":2938,"label":"FMPH 224","title":"Clinical Trials (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[2936],"id":2939,"label":"MATH 281B","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[2936,2533],"id":2940,"label":"MATH 281A","title":""},{"dept":"MATH","description":"","edges_from":[482],"edges_to":[2936],"id":2941,"label":"MATH 282B","title":""},{"dept":"ECON","description":"Independent reading or research under the direction of and by special arrangement with a Department of Economics faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":2942,"label":"ECON 199","title":"Independent Study (2 or 4)"},{"dept":"ECON","description":"Directed study on a topic or in a group field not included in regular department curriculum by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":2943,"label":"ECON 198","title":"Directed Group Study (2 or 4)"},{"dept":"MGT","description":"Preparation and interpretation","edges_from":[],"edges_to":[],"id":2944,"label":"MGT 131A","title":"Intermediate Accounting A (4)"},{"dept":"NANO","description":"Introduction to nanomedicine; diffusion and drug dispersion; diffusion in biological systems; drug permeation through biological barriers; drug transport by fluid motion; pharmacokinetics of drug distribution; drug delivery systems; nanomedicine in practice: cancers, cardiovascular diseases, immune diseases, and skin diseases. Cross-listed with CENG 207. Students may not receive credit for both NANO 243 and CENG 207. ","edges_from":[],"edges_to":[],"id":2945,"label":"NANO 243","title":"Nanomedicine (4)"},{"dept":"ECON","description":"Introduction to teaching economics. Each student will be responsible for a class section in one of the lower-division economics courses. Limited to advanced economics majors with at least a 3.5 GPA in upper-division economics work. (P/NP grades only.) Students may not earn more than eight units credit in 195 courses. ","edges_from":[],"edges_to":[],"id":2946,"label":"ECON 195","title":"Introduction to Teaching Economics (4)"},{"dept":"ETHN","description":"A Genealogy of Critical Racial and Ethnic Studies (4)","edges_from":[],"edges_to":[],"id":2947,"label":"ETHN 200A","title":"Departures:"},{"dept":"ETHN","description":"This course uses model studies to explore how comparative and relational problems are posed as research projects, how research questions are constructed, and how they employ theory to frame the project and establish what is at stake in the research. ","edges_from":[],"edges_to":[],"id":2948,"label":"ETHN 200B","title":"Formulations: Interdisciplinarity and Knowledge Production in Ethnic Studies (4)"},{"dept":"ETHN","description":"(Proseminar): Research in Ethnic Studies (4)","edges_from":[],"edges_to":[],"id":2949,"label":"ETHN 200C","title":"Projects"},{"dept":"COMM","description":"(Same as PS 194, USP 194, Hist 193, SocE 194, Erth 194.) Course attached to six-unit internship taken by students participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistants and a substantial research paper. ","edges_from":[],"edges_to":[],"id":2950,"label":"COMM 194","title":"Research Seminar in Washington, D.C. (4)"},{"dept":"COMM","description":"Specialized study in general communication with topics to be determined by the instructor for any given quarter. May be repeated for credit. ","edges_from":[2952],"edges_to":[],"id":2951,"label":"COMM 193","title":"Advanced Topics in Communication: General (2)"},{"dept":"AIP","description":"","edges_from":[],"edges_to":[2951],"id":2952,"label":"AIP 197","title":""},{"dept":"COMM","description":"The junior seminar entails a detailed examination of a specific topic from the field of communication, exploring in greater depth theories and methods introduced in the core communication curriculum. Seminars are limited to thirty students, with a heavy focus on class participation. Students complete a research project with a significant final product (typically a research paper). Students will not receive credit for both COGN 150 and COMM 190. ","edges_from":[537,538,539,540],"edges_to":[],"id":2953,"label":"COMM 190","title":"Junior Seminar in Communication (4)"},{"dept":"COMM","description":"Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":2954,"label":"COMM 198","title":"Directed Group Study in Communication (4)"},{"dept":"COMM","description":"Independent study and research under the direction of a member of the faculty. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":2955,"label":"COMM 199","title":"Independent Study in Communication (4)"},{"dept":"VIS","description":"(Cross-listed with HIEU 124GS.) Language and culture study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fees may be required. Students may not receive credit for both VIS 122E and VIS 122GS or both HIEU 124 and HIEU 124GS. ","edges_from":[],"edges_to":[],"id":2956,"label":"VIS 122GS","title":"The City in Italy (4)"},{"dept":"CSE","description":"Design for test, testing economics, defects, failures and faults, fault models, fault simulation, automatic test pattern generation, functional testing, memory, PLA, FPGA, microprocessor test, and fault diagnosis. ","edges_from":[],"edges_to":[],"id":2957,"label":"CSE 244A","title":"VLSI Test (4)"},{"dept":"ANAR","description":"An introductory survey of the archaeology, history, art, and architecture of ancient Egypt that focuses on the men and women who shaped Western civilization. ","edges_from":[],"edges_to":[],"id":2958,"label":"ANAR 144","title":"Pharaohs, Mummies, and Pyramids: Introduction to Egyptology (4)"},{"dept":"ANAR","description":"What should we eat and how should we farm to guide a sustainable future? This course will examine what humans evolved to eat and how we began to first cultivate the foods we rely on today. After a survey of traditional farming methods around the world, we will examine how farming systems have changed since the Green Revolution and its successes and failures. The final part of class will focus on the last twenty years, when humans began to modify plant life at the genetic level. Students may not receive credit for ANAR 146 and SIO 146. ","edges_from":[],"edges_to":[],"id":2959,"label":"ANAR 146","title":"Feeding the World (4)"},{"dept":"ANAR","description":"Israel is a land-bridge between Africa and Asia. Course highlights the prehistory of the Levant and its interconnections from the Paleolithic to the rise of the earliest cities in anthropological perspective. ","edges_from":[],"edges_to":[],"id":2960,"label":"ANAR 141","title":"Prehistory of the Holy Land (4)"},{"dept":"ANAR","description":"The relationship between archaeological data, historical research, the Hebrew Bible, and anthropological theory are explored along with new methods and current debates in Levantine archaeology. ","edges_from":[],"edges_to":[],"id":2961,"label":"ANAR 143","title":"Biblical Archaeology—Fact or Fiction (4)"},{"dept":"ANAR","description":"The emergence and consolidation of the state in ancient Israel is explored by using archaeological data, biblical texts, and anthropological theories. The social and economic processes responsible for the rise and collapse of ancient Israel are investigated. Recommended preparation: ANTH 3. ","edges_from":[],"edges_to":[],"id":2962,"label":"ANAR 142","title":"The Rise and Fall of Ancient Israel (4)"},{"dept":"MAE","description":"Students work in local industry or hospitals under faculty supervision. Units may not be applied toward graduation requirements. Salaried or unsalaried. Number of units determined by enrollment frequency. First quarter up to four units. Subsequent quarters cannot exceed one unit. ","edges_from":[],"edges_to":[],"id":2963,"label":"MAE 197","title":"Engineering Internship (1–4)"},{"dept":"MAE","description":"Principles of Mechanical Design I (4)","edges_from":[],"edges_to":[],"id":2964,"label":"MAE 156A","title":"Fundamental"},{"dept":"ECE","description":"This course covers the growth, characterization, and heterojunction properties of III-V compound semiconductors and group-IV heterostructures for the subsequent courses on electronic and photonic device applications. Topics include epitaxial growth techniques, electrical properties of heterojunctions, transport and optical properties of quantum wells and superlattices. ","edges_from":[2966],"edges_to":[2967],"id":2965,"label":"ECE 236A","title":"III-V Compound Semiconductor Materials (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[2965,4101],"id":2966,"label":"ECE 230A","title":""},{"dept":"ECE","description":"Absorption and emission of radiation in semiconductors. Radiative transition and nonradiative recombination. Laser, modulators, and photodetector devices will be discussed. (Recommended prerequisites: ECE 230A and ECE 230C or equivalent.) ","edges_from":[2965],"edges_to":[2968],"id":2967,"label":"ECE 236B","title":"Optical Processes in Semiconductors (4)"},{"dept":"ECE","description":"The physics and circuit applications of heterojunction field effect transistors (HFETs) and heterojunction bipolar transistors (HBTs). Operating principles of FETs and BJTs are reviewed, and opportunities for improving their performance with suitable material choices and bandgap engineering are highlighted. SiGe and III-V HBTs, III-V FETs, and current research areas are covered. Microwave characteristics, models and representative circuit applications. Students who have already completed ECE 236C and/or D should not enroll in this course. Recommended preparation: ECE 230B or equivalent course with emphasis on physics of solid-state electronic devices. ","edges_from":[2967],"edges_to":[],"id":2968,"label":"ECE 236C","title":"Heterojunction Field Effect Transistors (4)"},{"dept":"PHYS","description":"(4)","edges_from":[],"edges_to":[],"id":2969,"label":"PHYS 219","title":"Condensed Matter/Materials Science Laboratory"},{"dept":"Linguistics/French","description":"Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in French. Must be taken in conjunction with LIFR 1D. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ","edges_from":[2544,2543],"edges_to":[],"id":2970,"label":"Linguistics/French (LIFR) 1DX","title":"Analysis of French (2.5)"},{"dept":"PHYS","description":"Classification of particles using symmetries and invariance principles, quarks and leptons, quantum electrodynamics, weak interactions, e+p- interactions, deep-inelastic lepton-nucleon scattering, pp collisions, introduction to QCD. ","edges_from":[2972],"edges_to":[],"id":2971,"label":"PHYS 214","title":"Physics of Elementary Particles (4)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[2971,4228],"id":2972,"label":"PHYS 215A","title":""},{"dept":"PHYS","description":"Application of field theoretic and renormalization group methods to problems in condensed matter, or particle physics. Topics will vary and may include: phase transition and critical phenomena; many body quantum systems; quantum chromodynamics and the electroweak model. ","edges_from":[2974],"edges_to":[],"id":2973,"label":"PHYS 217","title":"Field Theory and the Renormalization Group (4)"},{"dept":"PHYS","description":"","edges_from":[],"edges_to":[2584,5067,2973],"id":2974,"label":"PHYS 210A","title":""},{"dept":"PHYS","description":"This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 116. The performance criteria for graduate students will be to complete and pass: (1) a graduate-level exam and (2) graduate-level homework problem sets. In both cases, there will be overlap with the undergraduate exam and problems, but the graduates will be expected to complete additional work at a higher level.","edges_from":[],"edges_to":[],"id":2975,"label":"PHYS 216","title":"Fluid Dynamics for Physicists (4)"},{"dept":"TMC","description":"These seminars are designed to expose undergraduate students, especially freshmen and sophomores, to exciting research conducted by UC San Diego faculty. P/NP grades only. ","edges_from":[],"edges_to":[],"id":2976,"label":"TMC 90","title":"Undergraduate Seminar (1)"},{"dept":"HINE","description":"Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.","edges_from":[],"edges_to":[],"id":2977,"label":"HINE 198","title":"Directed Group Study (4)"},{"dept":"HINE","description":"Study in Near Eastern History (4)","edges_from":[],"edges_to":[],"id":2978,"label":"HINE 199","title":"Independent"},{"dept":"SOCI","description":"This course introduces students to the fundamental principles of the design of social research. It examines the key varieties of evidence, sampling methods, logic of comparison, and causal reasoning researchers use in their study of social issues. Will not receive credit for SOCI 60 and SOCL 60.","edges_from":[],"edges_to":[4707,3878,5479,5481,5483,5486,5488],"id":2979,"label":"SOCI 60","title":"The Practice of Social Research (4)"},{"dept":"GPEC","description":"This course analyzes the roles of money and financial institutions in the economy. The first part of the course focuses on microeconomics and the financial system. The topics include money, financial markets, financial intermediaries, banking regulations, and bank runs. The second part of the course focuses on the microeconomics aspects of financial institutions. The topics include financial development, financial liberalization, and their effects on the economy, especially economic growth and development. Renumbered from IRGN 406. Students may not receive credit for GPEC 406 and IRGN 406. ","edges_from":[2801,2981],"edges_to":[],"id":2980,"label":"GPEC 406","title":"Finance and Development (4)"},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[3178,2980,3594,2982,3375],"id":2981,"label":"GPCO 403","title":""},{"dept":"GPEC","description":"This course examines the economic policies implemented by Latin American countries over the last half century, focusing on their role in the process of economic development in the region, and considers the central role of politics in shaping policy. Renumbered from IRGN 409. Students may not receive credit for GPEC 409 and IRGN 409. ","edges_from":[2981,2983],"edges_to":[],"id":2982,"label":"GPEC 409","title":"Economic Policy in Latin America (4)"},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[2982,3178,3375,4443,4444,3594],"id":2983,"label":"GPCO 401","title":""},{"dept":"VIS","description":"Roman art was the “modern art” of antiquity. Out of their Italic tradition and the great inheritance of Greek classic and Hellenistic art, the Romans forged a new language of form to meet the needs of a vast empire, a complex and tumultuous society, and a sophisticated, intellectually diverse culture. An unprecedented architecture of shaped space used new materials and revolutionary engineering techniques in boldly functional ways for purposes of psychological control and symbolic assertion. Sculpture in the round and in relief was pictorialized to gain spatial effects and immediacy of presence, and an extraordinary art of portraiture investigated the psychology while asserting the status claims of the individual. Extreme shifts of style, from the classicism of the age of Augustus to the expressionism of the third century AD, are characteristic of this period. The new modes of architecture, sculpture, and painting, whether in the service of the rhetoric of state power or of the individual quest for meaning, were passed on to the medieval and ultimately to the modern West. Recommended preparation: VIS 20. ","edges_from":[],"edges_to":[],"id":2984,"label":"VIS 120B","title":"Roman Art (4)"},{"dept":"VIS","description":"Greek classical civilization was a turning point in the history of humanity. Within a new kind of society, the idea of the individual as free and responsible was forged, and with it the invention of history, philosophy, tragedy, and science. The arts that expressed this cultural explosion were no less revolutionary. The achievements of Greek art in architecture, sculpture, and painting will be examined from their beginnings in the archaic period, to their epoch-making fulfillment in the classical decades of the fifth century BC, to their diffusion over the entire ancient world in the age of Alexander and his successors. Recommended preparation: VIS 20. ","edges_from":[],"edges_to":[],"id":2985,"label":"VIS 120A","title":"Greek Art (4)"},{"dept":"CHEM","description":"Overview of new systems biology “-omics” approached to lipid metabolism and cell signaling, including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Cross-listed with BIOM 209 and PHAR 208. Recommended preparation: one quarter of undergraduate biochemistry.","edges_from":[],"edges_to":[],"id":2986,"label":"CHEM 210","title":"Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)"},{"dept":"CHEM","description":"A discussion of current topics in chemical biology including mechanistic aspects of enzymes and cofactors, use of modified enzymes to alter biochemical pathways, chemical intervention in cellular processes, and natural product discovery. ","edges_from":[],"edges_to":[],"id":2987,"label":"CHEM 216","title":"Chemical Biology (4)"},{"dept":"SOCI","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminar topics will vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":2988,"label":"SOCI 87","title":"Freshman Seminar (1)"},{"dept":"CHEM","description":"This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 114D. ","edges_from":[],"edges_to":[],"id":2989,"label":"CHEM 214","title":"Molecular and Cellular Biochemistry (4)"},{"dept":"GPCO","description":"This course introduces students to the methods of policy analysis and decision-making theory, including methods to assemble panel data to capture the impact of new policy on observable data, decision-making theory, uncertainty, decision criteria, expected utility, and risk. Renumbered from IRCO 407. Students may not receive credit for GPCO 407 and IRCO 407. ","edges_from":[],"edges_to":[],"id":2990,"label":"GPCO 407","title":"Policy Analysis and Decision Theory (4)"},{"dept":"GPCO","description":"This course introduces principles of taxation and expenditure analysis, public budgeting, and assessment of budget priorities. It will introduce students to concepts related to how public finance affects the private economy, how governments raise funds (and account for their expenditures to the public, foreign investors, and international organizations), and the major public policy tools for governing public finance. Renumbered from IRCO 406. Students may not receive credit for GPCO 406 and IRCO 406. ","edges_from":[],"edges_to":[],"id":2991,"label":"GPCO 406","title":"Public Finance and Taxation (4)"},{"dept":"GPCO","description":"This course studies the structure of American government and the political dimensions of policy problems. Emphasis will be on the study of institutions and the influences and constraints on decision-making, interaction between branches of government, government and society, and the international context in which US policy makers must work. Attention will be given to considering the United States with a comparative perspective. Renumbered from IRCO 405. Students may not receive credit for GPCO 405 and IRCO 405. ","edges_from":[],"edges_to":[],"id":2992,"label":"GPCO 405","title":"Policy and Political Decision-Making in the U.S. (4)"},{"dept":"GPCO","description":"Builds on GPCO 410, Microeconomics for Policy and Management. Applies economic reasoning to public issues, policies, and programs with a focus on the logic of when and how policy makers intervene in the market. It considers incentives and organizations; models of economic behavior, including markets, the absence of markets, and interventions; the price system; policy objectives and instruments. Renumbered from IRCO 404. Students may not receive credit for GPCO 404 and IRCO 404. ","edges_from":[],"edges_to":[],"id":2993,"label":"GPCO 404","title":"Market Failures and Policy Interventions (4)"},{"dept":"ENVR","description":"A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. ","edges_from":[],"edges_to":[],"id":2994,"label":"ENVR 500","title":"Apprentice Teaching in Environmental Studies (4)"},{"dept":"FMPH","description":"This course provides an overview of the US health policy landscape. It addresses the development of explicit health policies to promote certain health behaviors, policies aimed at public health safety, and policy issues related to emerging health and biomedical technologies. Renumbered from FPM 290. Students may not receive credit for FMPH 277 and FPM 290. ","edges_from":[],"edges_to":[],"id":2995,"label":"FMPH 277","title":"Health Policy, Technology, and Public Health (4)"},{"dept":"POLI","description":"In between “rises” and “declines,” empires are political entities with highly heterogeneous populations that must be governed. The course examines the similarities and differences in imperial governance, comparing the internal and external political dynamics of traditional (Roman, Ottoman), modernizing (Habsburg), and modern (British) empires. ","edges_from":[],"edges_to":[],"id":2996,"label":"POLI 123","title":"Politics of Empire in Comparative Perspective (4)"},{"dept":"HINE","description":"Great Poems from the Hebrew Bible/Foreign Language (1)","edges_from":[],"edges_to":[],"id":2997,"label":"HINE 112BL","title":""},{"dept":"LTWL","description":"This class investigates the link between desire and death in classical and modern Hindu thought. It considers the stories of Hindu deities, as well as the lives of contemporary South Asian men and women, in literature and film.","edges_from":[],"edges_to":[],"id":2998,"label":"LTWL 168","title":"Death and Desire in India (4)"},{"dept":"Linguistics/Italian","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1B. ","edges_from":[309,310],"edges_to":[],"id":2999,"label":"Linguistics/Italian (LIIT) 1BX","title":"Analysis of Italian (2.5)"},{"dept":"LTWL","description":"This course will explore the relationship between women and literature, i.e., women as producers of literature, as objects of literary discourse, and as readers. Foreign language texts will be read in translation. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":3000,"label":"LTWL 160","title":"Women and Literature (4)"},{"dept":"LTWL","description":"Yiddish literature is much more than folk songs and jokes. We will read major American and European works by Nobel laureate I. B. Singer, his brother I. J. Singer, and his sister Esther Kreytman, Sholem Aleichem, Mendele, Chava Rozenfarb, and others. (In English translation.)","edges_from":[],"edges_to":[],"id":3001,"label":"LTWL 166","title":"The Yiddish Novel (4)"},{"dept":"LTWL","description":"With primarily American (and a couple of English) readings, the course inquires into the relation of human and nonhuman nature. Topics include wilderness, animals, Native American thought, women in nature, description as a kind of writing, the spirituality of place.","edges_from":[],"edges_to":[],"id":3002,"label":"LTWL 165","title":"Literature and the Environment (4)"},{"dept":"CSE","description":"Theory of databases. Theory of query languages, dependency theory, deductive databases, incomplete information, complex objects, object-oriented databases, and more. Connections to logic and complexity theory including finite model theory and descriptive complexity. ","edges_from":[782],"edges_to":[],"id":3003,"label":"CSE 233","title":"Database Theory (4)"},{"dept":"CSE","description":"(Formerly CSE 264D.) Database models including relational, hierarchic, and network approaches. Implementation of databases including query languages and system architectures. ","edges_from":[17],"edges_to":[4337],"id":3004,"label":"CSE 232","title":"Principles of Database Systems (4)"},{"dept":"CSE","description":"(Formerly CSE 264C.) Advanced material in","edges_from":[],"edges_to":[],"id":3005,"label":"CSE 231","title":"Advanced Compiler Design (4)"},{"dept":"SIOC","description":"Physical description of the sea; physical properties of seawater, methods and measurements, boundary processes, regional oceanography. Renumbered from SIO 210. Students may not receive credit for both SIOC 210 and SIO 210. ","edges_from":[],"edges_to":[],"id":3006,"label":"SIOC 210","title":"Physical Oceanography (4)"},{"dept":"USP","description":"This course will explore","edges_from":[],"edges_to":[],"id":3007,"label":"USP 120","title":"Urban Planning, Infrastructure, and Real Estate (4)"},{"dept":"USP","description":"Examination of regulation of real estate development, as it affects landowners, developers and others private sector actors. Includes underlying public policies, establishment and enforcement of laws and regulations, application of regulations to individual projects, and political considerations in implementing regulations. ","edges_from":[],"edges_to":[],"id":3008,"label":"USP 121","title":"Real Estate Law and Regulation (4)"},{"dept":"USP","description":"Planning, Policymaking, and Law (4)","edges_from":[],"edges_to":[],"id":3009,"label":"USP 122","title":"Redevelopment"},{"dept":"USP","description":"Examination of the intersection of law and policy, in the form of processes and institutions, as they affect decision-making and program implementation in urban planning and design. Opportunities and constraints in making law and policy. Application to specific case examples. ","edges_from":[],"edges_to":[],"id":3010,"label":"USP 123","title":"Law, Planning, and Public Policy (4)"},{"dept":"USP","description":"Introduction to land use planning in the United States: zoning and subdivision, regulation, growth management, farmland preservation, environmental protection, and comprehensive planning. ","edges_from":[],"edges_to":[],"id":3011,"label":"USP 124","title":"Land Use Planning (4)"},{"dept":"USP","description":"Research methods are tools for improving knowledge. Beginning with a research question, students will learn to select appropriate methods for sampling, collecting, and analyzing data to improve their research activities and research results. ","edges_from":[],"edges_to":[],"id":3012,"label":"USP 125","title":"The Design of Social Research (4)"},{"dept":"USP","description":"This course evaluates alternative land use, regulatory, and land transfer approaches to the US regime. Considered are overseas reform models for comprehensive land use and resource management and their effects on environmental justice, resource sustainability, and management efficiency and innovation. ","edges_from":[],"edges_to":[],"id":3013,"label":"USP 126","title":"Comparative Land Use and Resource Management (4)"},{"dept":"LTIT","description":"This course constitutes the sixth and final quarter of the Italian language sequence. It offers an intensive study of Italian grammar, drills in conversation and composition, and readings in modern Italian literature. ","edges_from":[3016,3015],"edges_to":[4289,3914],"id":3014,"label":"LTIT 50","title":"Advanced Italian (4)"},{"dept":"LTIT","description":"","edges_from":[3640,3641],"edges_to":[3016,3014],"id":3015,"label":"LTIT 2A","title":""},{"dept":"LTIT","description":"","edges_from":[3015],"edges_to":[3014],"id":3016,"label":"LTIT 2B","title":""},{"dept":"COMM","description":"Emergence of dissent in different societies, and relationship of dissent to movements of protest and social change. Movements studied include media concentration, antiwar, antiglobalization, death penalty, national liberation, and labor. Survey of dissenting voices seeking to explain the relationship of ideas to collective action and outcomes. ","edges_from":[537,538,539,540],"edges_to":[],"id":3017,"label":"COMM 131","title":"Communication, Dissent, and the Formation of Social Movements (4)"},{"dept":"GPIM","description":"This course introduces basic concepts of international business decision making. It covers entry modes, headquarter tasks and organization charts, strategic planning for foreign subsidiaries, international HR management and payroll, international taxation, and an introduction to transfer pricing. Renumbered from IRGN 470. Students may not receive credit for GPIM 470 and IRGN 470.","edges_from":[],"edges_to":[],"id":3018,"label":"GPIM 470","title":"International Business (4)"},{"dept":"HIUS","description":"Directed group study on United States history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.","edges_from":[],"edges_to":[],"id":3019,"label":"HIUS 198","title":"Directed Group Study (4)"},{"dept":"MATH","description":"Third course in algebra from a computational perspective. Groups, rings, linear algebra, rational and Jordan forms, unitary and Hermitian matrices, matrix decompositions, perturbation of eigenvalues, group representations, symmetric functions, fast Fourier transform, commutative algebra, Grobner basis, finite fields. ","edges_from":[3021],"edges_to":[],"id":3020,"label":"MATH 202C","title":"Applied Algebra III (4)"},{"dept":"MATH","description":"","edges_from":[3022],"edges_to":[3020],"id":3021,"label":"MATH 202B","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[3021],"id":3022,"label":"MATH 202A","title":""},{"dept":"PSYC","description":"Independent research and thesis research. S/U grades only. May be taken for credit fifteen times.","edges_from":[],"edges_to":[],"id":3023,"label":"PSYC 299","title":"Research Practicum (1–12)"},{"dept":"PSYC","description":"Research in psychology under supervision of individual faculty members. S/U grades only. May be taken for credit fifteen times.","edges_from":[],"edges_to":[],"id":3024,"label":"PSYC 296","title":"Research Practicum (1–12)"},{"dept":"PHYS","description":"Physics I: Probabilistic Models and Simulations (4)","edges_from":[],"edges_to":[],"id":3025,"label":"PHYS 141","title":"Computational"},{"dept":"MATH","description":"(Conjoined with Math 274.) Floating point","edges_from":[],"edges_to":[4042],"id":3026,"label":"MATH 174","title":"Numerical Methods for Physical Modeling (4)"},{"dept":"COMM","description":"This advanced course examines, analyzes, and discusses media works by contemporary Asian American, Native American, African American, and Latina/o American filmmakers. The course does not offer a historical survey of films by minority makers but rather will operate on themes such as cultural identity, urbanization, personal relationships, gender relations, cultural retentions, and music. The course will require students to attend some off-campus screenings, especially those at area film festivals. ","edges_from":[537,538,539,540],"edges_to":[],"id":3027,"label":"COMM 135","title":"Contemporary Minority Media Makers and the Festival Experience (4)"},{"dept":"TDGR","description":"An investigation of contemporary theories of theatre with an emphasis on structural and poststructural perspectives on text and textuality. The seminar will focus on adapting contemporary techniques of close reading to the interpretive and creative process in the theatre. ","edges_from":[3029],"edges_to":[3030],"id":3028,"label":"TDGR 204B","title":"Contemporary Theories of Theatre (4)"},{"dept":"TDGR","description":"","edges_from":[],"edges_to":[3028],"id":3029,"label":"TDGR 204A","title":""},{"dept":"TDGR","description":"The culmination of the TDGR 204 sequence, in which students in all disciplines create and perform publicly presented original theatre pieces. ","edges_from":[3028],"edges_to":[],"id":3030,"label":"TDGR 204C","title":"Collective Creation (4)"},{"dept":"COMM","description":"Transmedia is a mode of production in which a text or story unfolds across multiple media platforms. Exploring all the facets of this widespread phenomenon—historical, aesthetic, industrial, theoretical, and practical. This course explores and critically analyzes the art and economics of contemporary transmedia. ","edges_from":[537,538,539,540],"edges_to":[],"id":3031,"label":"COMM 136","title":"Transmedia (4)"},{"dept":"Soc/G","description":"Will examine the controversies surrounding the construction of the modern citizen and the good society of the liberal outlook, and their alternatives in the communitarian, social-democratic, nationalist, feminist, and multiculturalist perspectives. ","edges_from":[],"edges_to":[],"id":3032,"label":"Soc/G 269","title":"The Citizenship Debates (4)"},{"dept":"POLI","description":"(Same as USP 109) This survey course explores six topics: 1) the state’s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California’s role in national politics.","edges_from":[],"edges_to":[],"id":3033,"label":"POLI 103A","title":"California Government and Politics (4)"},{"dept":"Soc/G","description":"Course examines social construction of gender focusing on recent contributions to the field, including micro- and macro-level topics, i.e., social psychological issues in the development of gender, gender stratification in the labor force, gender and social protest, feminist methodologies. ","edges_from":[],"edges_to":[],"id":3034,"label":"Soc/G 267","title":"Sociology of Gender (4)"},{"dept":"Soc/G","description":"This course provides an overview of the classical and current debates in the economic sociology literature. It presents theories of the rise of industrial economics and addresses how economic activities are constituted and influenced by institutions, culture, and social structure. ","edges_from":[],"edges_to":[],"id":3035,"label":"Soc/G 264","title":"Economic Sociology (4)"},{"dept":"POLI","description":"(Same as USP 113) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ","edges_from":[],"edges_to":[],"id":3036,"label":"POLI 103B","title":"Politics and Policymaking in Los Angeles (4)"},{"dept":"Soc/G","description":"Seminar in the Sociology of Art (4)","edges_from":[],"edges_to":[],"id":3037,"label":"Soc/G 263","title":"Graduate"},{"dept":"COGR","description":"Approaches to Culture/Mind (4)","edges_from":[],"edges_to":[],"id":3038,"label":"COGR 261","title":"Mediational"},{"dept":"CAT","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":3039,"label":"CAT 87","title":"Freshman Seminar (1)"},{"dept":"COMM","description":"Hands-on course introduces design as political activity. How will differently designed objects, environments perpetuate, interrupt status quo. Examine design, architecture, media activism, workday life. Examine ambiguous problems, take and give feedback, create prototypes to engage communities, broader publics. Students see design as part of longer-term social transformations. ","edges_from":[3041,1986,3043,3042,238,540],"edges_to":[3044],"id":3040,"label":"COMM 124A","title":"Critical Design Practice/Advanced Studio (4)"},{"dept":"POLI","description":"","edges_from":[],"edges_to":[3040,4271],"id":3041,"label":"POLI 10","title":""},{"dept":"POLI","description":"","edges_from":[],"edges_to":[3040],"id":3042,"label":"POLI 10D","title":""},{"dept":"ESYS","description":"","edges_from":[],"edges_to":[3040],"id":3043,"label":"ESYS 10","title":""},{"dept":"COMM","description":"Course builds on understanding design as political activity. Group work to design quarter-long projects that explore political role of design, include design in built environments, organizations, media technologies. Deepened capacities to design in public, for publics, with publics. May be taken for credit three times. ","edges_from":[3040],"edges_to":[],"id":3044,"label":"COMM 124B","title":"Critical Design Practice/Topic Studio (4)"},{"dept":"COMM","description":"A study of the social organization of the film industry throughout its history. Who makes films, by what criteria, and for what audience. The changing relationships between studios, producers, directors, writers, actors, editors, censors, distributors, audience, and subject matter of the films will be explored. ","edges_from":[540],"edges_to":[],"id":3045,"label":"COMM 106F","title":"CI: Film Industry (4)"},{"dept":"COMM","description":"The largest industry in the world has far-reaching cultural ramifications. We will explore tourism’s history and its contemporary cultural effects, taking the perspective of the “toured” as well as that of the tourist. ","edges_from":[540],"edges_to":[],"id":3046,"label":"COMM 106G","title":"CI: Tourism: Global Industry and Cultural Form (4)"},{"dept":"COMM","description":"Course examines the organization of some of the many industries (e.g., film, music, gaming, and publishing) that make up the cultural landscape with an eye toward discerning the conditions that shape the production of cultural goods and services: how is production organized within cultural industries; how are products distributed; and what is the impact of both the organization and distribution of goods on the conditions of work and labor? ","edges_from":[540],"edges_to":[],"id":3047,"label":"COMM 106A","title":"CI: Introduction (4)"},{"dept":"COMM","description":"Pasts have been conveyed through various media for millennia. This course will use comics to explore how this medium impacts how we might learn and understand Japanese history. Topics discussed include memory, storytelling, perspective, and visuality. ","edges_from":[540],"edges_to":[],"id":3048,"label":"COMM 106C","title":"CI: History Through Comics—Japan (4)"},{"dept":"COMM","description":"The political economy of the emergent Internet industry, charted through analysis of its hardware, software, and services components. The course specifies leading trends and changing institutional outcomes by relating the Internet industry to the adjoining media, telecommunications, and computer industries. ","edges_from":[540],"edges_to":[],"id":3049,"label":"COMM 106I","title":"CI: Internet Industry (4)"},{"dept":"COMM","description":"How and what does television communicate? Emphasis will be on contemporary US television programming, placed in comparative and historical context. Special topics may include: TV genres, TV and politics, TV and other media. Frequent in-class screenings. ","edges_from":[540],"edges_to":[],"id":3050,"label":"COMM 106T","title":"CI: Television Culture and the Public (4)"},{"dept":"COMM","description":"Course examines political economy of television throughout its history. How TV is made, who is involved, how is industry organized, how does it get regulated, distributed? Consider how these answers changed over time and look at recent influences of digital technologies. ","edges_from":[540],"edges_to":[],"id":3051,"label":"COMM 106V","title":"CI: TV Industry (4)"},{"dept":"DSGN","description":"Special topics in design. May be taken for credit three times when topics vary. Recommended preparation: may require shop skills. ","edges_from":[],"edges_to":[],"id":3052,"label":"DSGN 161","title":"Design Project (4)"},{"dept":"POLI","description":"A popular new idea in environmental protection is to include local communities in conservation efforts. But what are these communities? What challenges do they face in governing their own resources? This course uses both theory and case studies to explore the political economy of community-based conservations.","edges_from":[],"edges_to":[],"id":3053,"label":"POLI 125A","title":"Communities and the Environment (4)"},{"dept":"MATH","description":"Introduction to algebraic geometry. Topics chosen from: varieties and their properties, sheaves and schemes and their properties. May be taken for credit up to three times. ","edges_from":[2872],"edges_to":[5410],"id":3054,"label":"MATH 203A","title":"Algebraic Geometry I (4)"},{"dept":"PHYS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":3055,"label":"PHYS 87","title":"Freshman Seminar in Physics and Astrophysics (1)"},{"dept":"ANAR","description":"The course uses a comparative perspective to examine changes in how human societies organized themselves after the end of the last Ice Age across the world and the impact that those changes had on the planet’s natural environment. ","edges_from":[],"edges_to":[],"id":3056,"label":"ANAR 186","title":"The Human Era: The Archaeology of the Anthropocene (4)"},{"dept":"HLAW","description":"Students will be involved in a high-level applied research project. The project will cover an area of health law related to topics covered in the formal curriculum. Students’ work will be evaluated by a committee of faculty and may include industry advisors when appropriate. ","edges_from":[3058,3059],"edges_to":[],"id":3057,"label":"HLAW 299","title":"Independent Study Project in Health Law (3)"},{"dept":"HLAW","description":"","edges_from":[],"edges_to":[3057],"id":3058,"label":"HLAW 298C","title":""},{"dept":"HLAW","description":"","edges_from":[],"edges_to":[3057],"id":3059,"label":"HLAW 298A","title":""},{"dept":"HLAW","description":"Faculty member will direct a student’s study in selected professional development topics in health law. Specific content will be tailored to the student’s particular needs and area of interest. Students must make arrangements with the program and individual faculty member prior to enrolling in the course each time. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3060,"label":"HLAW 298","title":"Directed Studies in Health Law (2)"},{"dept":"ANSC","description":"(Cross-listed with CGS 118.) This course investigates the ways in which forces of racism, gendered violence, and state control intersect in the penal system. The prison-industrial complex is analyzed as a site where certain types of gendered and racialized bodies are incapacitated, neglected, or made to die. Students may not receive credit for ANSC 186 and CGS 118. ","edges_from":[],"edges_to":[],"id":3061,"label":"ANSC 186","title":"Gender and Incarceration (4)"},{"dept":"ANSC","description":"This seminar addresses the production, consumption, and distribution of food, with particular emphasis on the culture of food. Food studies provide insight into a wide range of topics including class, poverty, hunger, ethnicity, nationalism, capitalism, gender, race, and sexuality. ","edges_from":[],"edges_to":[],"id":3062,"label":"ANSC 184","title":"Food, Culture, and Society (4)"},{"dept":"ANSC","description":"(Cross-listed with AAS 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for ANSC 185 and AAS 185. ","edges_from":[],"edges_to":[],"id":3063,"label":"ANSC 185","title":"#BlackLivesMatter (4)"},{"dept":"ANSC","description":"In this seminar, we investigate gun violence from a critical perspective that draws on social and health sciences, films, media, and more. While we take the contemporary issue of gun violence in the United States as a primary case study, we employ a global and comparative perspective. We explore controversies to include cultural, gendered, ethnic, political, and economic analysis. We examine discourses on gun violence as rational/irrational, healthy/pathological, and individually or socially produced. ","edges_from":[],"edges_to":[],"id":3064,"label":"ANSC 182","title":"Gun Violence as Social Pathology (4)"},{"dept":"ANSC","description":"Explores the role of film, photography, digital media, and visualization technologies in understanding human life. Students develop their own visualization projects. ","edges_from":[],"edges_to":[],"id":3065,"label":"ANSC 183","title":"Visualizing the Human: Film, Photography, and Digital Technologies (4)"},{"dept":"ANSC","description":"Drawing insight from anti-colonial and queer of color critique, this course critically examines the demands capitalism makes on us to perform gender, and how that relates to processes of exploitation and racialization. We will explore alternatives and develop strategies for navigating jobs in this system. Students may receive credit for one of the following: CGS 120, CGS 180 and ANSC 180. CGS 120 is renumbered from CGS 180. ","edges_from":[],"edges_to":[],"id":3066,"label":"ANSC 180","title":"Capitalism and Gender (4)"},{"dept":"ANSC","description":"We humans are animals. How do our relations with other animals—how we rely on them, how we struggle against them, how we live among them—shape our own worlds? In this course, we examine, through ethnography and speculative fiction, the boundary between human and other animals. ","edges_from":[],"edges_to":[],"id":3067,"label":"ANSC 181","title":"Animal Affairs (4)"},{"dept":"LIGN","description":"Language is constantly changing. This course","edges_from":[],"edges_to":[],"id":3068,"label":"LIGN 150","title":"Historical Linguistics (4)"},{"dept":"COGS","description":"Survey the theory and practice of using electrical","edges_from":[],"edges_to":[],"id":3069,"label":"COGS 179","title":"Electrophysiology of Cognition (4)"},{"dept":"LIGN","description":"This course is an introduction to the study of the indigenous languages of the Americas. Its goals are to offer orientation in a broad field and to prepare students for possible future research. Topics covered include grammatical structures, genetic classification, characteristics of major language families, and factors affecting language use and mother tongue transmission of these languages in contemporary societies. Recommended preparation: LIGN 101.","edges_from":[],"edges_to":[],"id":3070,"label":"LIGN 152","title":"Indigenous Languages of the Americas (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3071,"label":"LTEN 148","title":"Genres in English and American Literature (4)"},{"dept":"LIGN","description":"History of thought on language","edges_from":[],"edges_to":[],"id":3072,"label":"LIGN 155","title":"Evolution of Language (4)"},{"dept":"COGS","description":"Students study and research selected topics under the direction of a member of the faculty.","edges_from":[],"edges_to":[],"id":3073,"label":"COGS 298","title":"Directed Independent Study (1–12)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3074,"label":"LTEN 144","title":"The British Novel: 1890 to Present (4)"},{"dept":"COGS","description":"This class will examine the neuroanatomy, physiology, and functional correlates of the human mirror neuron system and its putative role in social cognition, e.g., action understanding, empathy, and theory of mind. We will examine the developmental, neuroimaging, electrophysiological, as well as clinical evidence, for and against this hypothesis. ","edges_from":[],"edges_to":[],"id":3075,"label":"COGS 171","title":"Mirror Neuron System (4)"},{"dept":"HISC","description":"Analyzes the history of sexology as a series of episodes in the science of human difference, from the European reception of the first translation of the Kama Sutra in 1883 to the search for the “gay gene” in the 1990s.","edges_from":[],"edges_to":[],"id":3076,"label":"HISC 118","title":"History of Sexology (4)"},{"dept":"COGS","description":"This course explores how drugs interact with the brain/mind and culture. It covers evolutionary and historical perspectives, brain chemistry, pharmacology, expectancies and placebo effects, and models of addiction. It also provides a biopsychosocial survey of commonly used and abused substances. ","edges_from":[],"edges_to":[],"id":3077,"label":"COGS 174","title":"Drugs: Brain, Mind, and Culture (4)"},{"dept":"COGS","description":"This course will review the literature that correlates brain rhythms in the human EEG with aspects of cognition, behavioral states, neuropsycho-pharmacology, and psychopathology in order to understand the psychological and neurophysiological underpinnings of these experiences. ","edges_from":[3080,3079],"edges_to":[],"id":3078,"label":"COGS 175","title":"The Neuropsychological Basis of Alternate States of Consciousness (4)"},{"dept":"COGS","description":"","edges_from":[238],"edges_to":[3166,3078,3495],"id":3079,"label":"COGS 101A","title":""},{"dept":"COGS","description":"","edges_from":[],"edges_to":[4328,1571,3276,4310,3078],"id":3080,"label":"COGS 107A","title":""},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3081,"label":"LTEN 142","title":"The British Novel: 1830–1890 (4)"},{"dept":"COGS","description":"The course examines features of neural dynamics that map spatial and temporal relationships. Lectures will cover interval timing, mapping of item-to-observer position, mapping of observer-to-world position, and the conjunction of spatial and temporal coding in hippocampus. ","edges_from":[],"edges_to":[],"id":3082,"label":"COGS 177","title":"Space and Time in the Brain (4)"},{"dept":"ECE","description":"The course aims to provide a broad coverage of key results, techniques, and open problems in network information theory. Topics include background (information measures and typical sequences, point-to-point communication) and single-hop networks (multiple access channels, degraded broadcast channels, interference channels, channels with state, general broadcast channels, Gaussian vector channels, distributed lossless source coding, source coding with side information). ","edges_from":[1443,3084],"edges_to":[],"id":3083,"label":"ECE 255C","title":"Network Information Theory (4)"},{"dept":"ECE","description":"","edges_from":[929],"edges_to":[3083],"id":3084,"label":"ECE 255B","title":""},{"dept":"ETHN","description":"This course offers scholars of race, gender, and sexuality an introduction to spatial theory and geographic methodologies. Particular attention will be given to theories of spatial formation, the interplay of social and spatial mobility and containment, and alternative spatio-political imaginaries. ","edges_from":[],"edges_to":[],"id":3085,"label":"ETHN 252","title":"Race, Gender, and Space (4)"},{"dept":"ETHN","description":"This seminar explores the centrality of race to the formation of the discipline of psychoanalysis as well as the relevance of psychoanalysis to the study of race, gender, and sexuality. We will read key texts by Freud, Lacan, and Fanon and follow the development of their ideas in the works of late twentieth and twenty-first century scholars like Spillers, Marriott, Judy, Seshadri-Crooks, Eng, and Mercer. Nongraduate students may enroll with consent of instructor.","edges_from":[],"edges_to":[],"id":3086,"label":"ETHN 255","title":"Race and Psychoanalysis (4)"},{"dept":"ETHN","description":"This course studies the body cross-culturally as the site for the construction of gender, sex, ethnic, and racial identities. ","edges_from":[],"edges_to":[],"id":3087,"label":"ETHN 256","title":"Gender, Sexuality, and Race (4)"},{"dept":"EDS","description":"This course introduces prospective secondary teachers to the cognitive, social, and emotional development of adolescents, including developmental learning theory, the teaching/learning process, effective learning environments, and cross-cultural variation in development. Implications for classroom practice are drawn.","edges_from":[],"edges_to":[],"id":3088,"label":"EDS 118","title":"Adolescent Development and Education (4)"},{"dept":"EDS","description":"College students tutoring college students. Curriculum: basic applied learning principles, specifying objectives, planning and designing instruction, testing, evaluation, interpersonal communication skills, study skills. Objectives will be specified for each area. Competency will be assessed by project completion and practicum feedback. This course is not creditable toward professional preparation requirements for the multiple subject credential. ","edges_from":[],"edges_to":[],"id":3089,"label":"EDS 116","title":"The Psychology of Teaching and Structures of Information for Human Learning (4)"},{"dept":"EDS","description":"This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. Students may not receive credit for both EDS 115 and EDS 115GS. ","edges_from":[762,765],"edges_to":[],"id":3090,"label":"EDS 115","title":"Cognitive Development and Education (4)"},{"dept":"EDS","description":"Development and learning are increasingly supported by interactive computing environments. This course will explore technology-supported learning environments, looking at the ways they can be used to promote effective development, learning, and teaching. ","edges_from":[],"edges_to":[],"id":3091,"label":"EDS 114","title":"Cognitive Development and Interactive Computing Environments (4)"},{"dept":"EDS","description":"This course examines how early education programs collaborate with socioculturally diverse families to support child development. Theories will examine social learning, family socialization, risk and resilience, and community engagement and how these theories are enacted in schools, communities, and families. Course assignments will support undergraduates to utilize families’ beliefs, strengths, and resources to support children’s learning with opportunities to engage with them. ","edges_from":[],"edges_to":[],"id":3092,"label":"EDS 111","title":"Child, Family, and Community Partnerships with Schools (4)"},{"dept":"GPEC","description":"Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. Previously taught as an IRGN 290, Special Topics course. Students may not receive credit for GPEC 244 and IRGN 290 or IRGN 490 with the same title. May be coscheduled with GPEC 444.","edges_from":[],"edges_to":[],"id":3093,"label":"GPEC 244","title":"Advanced GIS and Remote Sensing (4)"},{"dept":"Linguistics/American","description":"Course aims to improve language skills through discussion of topics relevant to the Deaf community. Central topics will include education and American Sign Language (ASL) literature. Conducted entirely in American Sign Language. ","edges_from":[3096,3095],"edges_to":[],"id":3094,"label":"Linguistics/American Sign Language (LISL) 1E","title":"Intermediate American Sign Language Conversation (4)"},{"dept":"LISL","description":"","edges_from":[],"edges_to":[3094],"id":3095,"label":"LISL 1D","title":""},{"dept":"LISL","description":"","edges_from":[],"edges_to":[3094],"id":3096,"label":"LISL 1DX","title":""},{"dept":"BGGN","description":"Students present and discuss papers on","edges_from":[],"edges_to":[],"id":3097,"label":"BGGN 290","title":"Advances in Cellular and Molecular Mechanisms (1)"},{"dept":"PHIL","description":"A study of philosophical themes contained in selected fiction, drama, or poetry, and the philosophical issues that arise in the interpretation, appreciation, and criticism of literature. ","edges_from":[],"edges_to":[],"id":3098,"label":"PHIL 177","title":"Philosophy and Literature (4)"},{"dept":"PHIL","description":"Central issues in philosophical aesthetics such as the nature of art and aesthetic experience, the grounds of artistic interpretation and evaluation, artistic representation, and the role of the arts in education, culture, and politics. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":3099,"label":"PHIL 175","title":"Aesthetics (4)"},{"dept":"Linguistics/Portuguese","description":"(2.5)","edges_from":[],"edges_to":[],"id":3100,"label":"Linguistics/Portuguese (LIPO) 1BX","title":"Analysis of Portuguese"},{"dept":"EDS","description":"Course focuses on challenges that confront college students in their second year of higher education and solutions. Emphasis on historically underrepresented students of color with more complex adjustment to college. Analysis of national trends from research including High-Impact Practices. P/NP grades only. ","edges_from":[],"edges_to":[],"id":3101,"label":"EDS 23","title":"Success and Satisfaction in the Second Year of Higher Education: Research Trends and Conclusions (2)"},{"dept":"PHIL","description":"A philosophical investigation of the topics of race and racism. The role of “race” in ordinary speech. The ethics of racial discourse. Anthropological and biological conceptions of race. The social and political significance of racial categories. Post-racialist conceptions of race. ","edges_from":[],"edges_to":[],"id":3102,"label":"PHIL 170","title":"Philosophy and Race (4)"},{"dept":"MGT","description":"This class covers issues in pricing decisions. The main emphasis will be on the data and tools required to make successful profitable pricing decisions. Students may not earn credit for both MGT 479 and MGT 205. They are course equivalents. ","edges_from":[3104],"edges_to":[],"id":3103,"label":"MGT 479","title":"Pricing (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[3103],"id":3104,"label":"MGT 407","title":""},{"dept":"VIS","description":"Italian artists and critics of the fourteenth through sixteenth centuries were convinced that they were participating in a revival of the arts unparalleled since antiquity. Focusing primarily on Italy, this course traces the emergence in painting, sculpture and architecture, of an art based on natural philosophy, optical principles, and humanist values, which embodied the highest intellectual achievement and deepest spiritual beliefs of the age. Artists treated include Giotto, Donatello, Masaccio, Brunelleschi, Jan van Eyck, Mantegna, Botticelli, Leonardo da Vinci, Michelangelo, Raphael, Bramante, Durer, and Titian. Recommended preparation: VIS 20. ","edges_from":[],"edges_to":[],"id":3105,"label":"VIS 122AN","title":"Renaissance Art (4)"},{"dept":"PHIL","description":"Continuation of Philosophy 178 in the careful, line-by-line translation of passages of advanced difficulty from German philosophical texts, both classic (Kant, Fichte, Hegel, Schopenhauer) and contemporary (Heidegger, Wittgenstein, Habermas). May be repeated for credit as topics vary. ","edges_from":[3107],"edges_to":[],"id":3106,"label":"PHIL 179","title":"Topics in German Philosophy Translation—Advanced (2)"},{"dept":"PHIL","description":"","edges_from":[],"edges_to":[3106],"id":3107,"label":"PHIL 178","title":""},{"dept":"GPLA","description":"This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 411A-B-C. Students may not get credit for any IRLA 411 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":3108,"label":"GPLA 411A-B-C","title":"Intermediate Japanese Language for Professional Proficiency (4-4-4)"},{"dept":"GLBH","description":"Introduces students to the physical and mental health needs of vulnerable migrants and socially marginalized communities, including substance users, LGBTQ, deportees, and the homeless and medically indigent. Students will become integrated into a free clinic in Tijuana where they will obtain community-based field experiences in interacting with these populations; learn about delivering evidence-based health care in underserved settings and be introduced to issues regarding cultural appropriation. Program or materials fees may apply. May be taken for credit up to three times. Students are required to cross the US-Mexico border to attend clinic in Tijuana as part of the requirements for the course. Recommended preparation: upper-division global health course work prior to participation is recommended.","edges_from":[],"edges_to":[],"id":3109,"label":"GLBH 111","title":"Clinic on the Border: Health Frontiers in Tijuana (4)"},{"dept":"GLBH","description":"This course will provide an overview of demographic principles, and their associations with maternal and child health outcomes. We will focus on demographic trends in developing countries, using research from the DHS to discuss inequalities in fertility, mortality, and morbidity. The remainder of the class will question why we see such spatial variation in many maternal and child health outcomes, with a focus on theories of social norms, and social network methods for uncovering those trends.","edges_from":[],"edges_to":[],"id":3110,"label":"GLBH 110","title":"Demography and Social Networks in Global Health (4)"},{"dept":"GLBH","description":"The course examines women’s and girls’ health throughout the world, focusing on the main health problems experienced primarily in low resource settings. This course presents issues in the context of a woman’s life from childhood, through adolescence, reproductive years, and aging. The course will have a strong emphasis on social, economic, environmental, behavioral, and political factors that affect health behaviors, reproductive health, maternal morbidity/mortality, and STIs/HIV.","edges_from":[],"edges_to":[],"id":3111,"label":"GLBH 113","title":"Women’s Health in Global Perspective (4)"},{"dept":"LTRU","description":"An introduction to Russia’s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present. ","edges_from":[],"edges_to":[],"id":3112,"label":"LTRU 150","title":"Russian Culture (4)"},{"dept":"MAE","description":"Collisionless magnetic reconnection, interactions of relativistic laser field with plasma, plasma in astrophysics, computational plasma physics. ","edges_from":[3114,3115,3116],"edges_to":[],"id":3113,"label":"MAE 228","title":"Selected Topics in Plasma Physics (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3113],"id":3114,"label":"MAE 217C","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3113],"id":3115,"label":"MAE 217B","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3113,5635],"id":3116,"label":"MAE 217A","title":""},{"dept":"POLI","description":"Senior Honors Seminar: Frontiers of Political Science (4-4)","edges_from":[],"edges_to":[],"id":3117,"label":"POLI 191A–B","title":""},{"dept":"MGT","description":"Taking a global perspective, this course examines how innovation is funded and the financial tools necessary over the life cycle of a new venture—development, growth, maturity, and exit. Students will learn to perform financial analysis to determine the feasibility of financing new, transformed, and growing ventures, whether foreign or domestic. The course will also cover term sheets, valuation methods, and the role of private equity investors—angels, VCs, and vendors. ","edges_from":[],"edges_to":[3784,5028,3786,3787,4996],"id":3118,"label":"MGT 187","title":"New Venture Finance (4)"},{"dept":"LTTH","description":"Selected topics in critical theory such as a particular mode of literary theory; comparative study of theories of text and image; a problem or theme in the history of theory; and issues involved in the relationship between fiction and other discourses (science, law, history, philosophy, music). Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":3119,"label":"LTTH 150","title":"Topics in Critical Theory (4)"},{"dept":"BIOM","description":"Each quarter will focus on an important area of cancer research such as immunology (fall), growth regulation (winter), and cancer genetics (spring). One-hour lecture coordinated with a one-hour seminar with the opportunity to meet with the invited speaker. ","edges_from":[],"edges_to":[],"id":3120,"label":"BIOM 224","title":"Topics in Cancer Research (2)"},{"dept":"BISP","description":"Course is designed to assist new transfers in making a smooth and informed transition from community college. Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problem-solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new transfers. ","edges_from":[],"edges_to":[],"id":3121,"label":"BISP 191","title":"Biology Transfers: Strategies for Success (1)"},{"dept":"BISP","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in biology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":3122,"label":"BISP 192","title":"Senior Seminar in Biology (1)"},{"dept":"BISP","description":"Individual research on a problem in biology education by special arrangement with and under the direction of a faculty member. Projects are expected to involve novel research that examines issues in biology education such as the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. P/PN grades only. May be taken for credit five times. ","edges_from":[3123],"edges_to":[3123],"id":3123,"label":"BISP 193","title":"Biology Education Research (2 or 4)"},{"dept":"BISP","description":"Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the","edges_from":[],"edges_to":[],"id":3124,"label":"BISP 194","title":"Advanced Topics in Modern Biology (2)"},{"dept":"BISP","description":"Under the supervision of an instructor, student apprentices will assist in the instruction of a biology course. The purpose of the apprenticeship is to learn the methodology of teaching biology, at the college level, through theory and actual practice in a regularly scheduled course. Limited to upper-division students with a 3.0 GPA or higher. Students must apply the quarter preceding the quarter in which BISP 195 will be completed. Applications are reviewed by instructors, and assignments are made based on divisional need. P/NP grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":3125,"label":"BISP 195","title":"Undergraduate Instructional Apprenticeship in Biological Sciences (4)"},{"dept":"BISP","description":"Course for student participants in the senior Honors thesis research program. Students complete individual research on a problem by special arrangement with, and under the direction of, a faculty member. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. P/NP grades only. May be taken for credit three times. Research to be approved by Honors thesis faculty adviser via application. Note: Students must apply to the division via the online system. For complete details, applications, and deadlines, please consult the","edges_from":[],"edges_to":[],"id":3126,"label":"BISP 196","title":"Honors Thesis in Biological Sciences (4)"},{"dept":"BISP","description":"Individual research on a problem by special arrangement with, and under the direction of, a UC San Diego faculty member and a selected researcher in industry or at a research institution. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. Application deadlines are strictly enforced. Consult the","edges_from":[],"edges_to":[],"id":3127,"label":"BISP 197","title":"Biology Internship Program (2 or 4)"},{"dept":"BISP","description":"Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. P/NP grades only. May be taken for credit two times. ","edges_from":[3128],"edges_to":[3128],"id":3128,"label":"BISP 198","title":"Directed Group Study (1 to 4)"},{"dept":"WARR","description":"Students will gain a fundamental understanding of all stages of the writing process and will develop the necessary skills to serve as productive mentors for their peers. P/NP grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3129,"label":"WARR 189","title":"Academic Mentoring and the Writing Process (2)"},{"dept":"BIPN","description":"This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural systems that control them, emphasizing broad fundamental relationships between brain and behavior across species. Note: Students may not receive credit for Psyc 189 and BIPN 189. ","edges_from":[369,858,1013],"edges_to":[],"id":3130,"label":"BIPN 189","title":"Brain, Behavior, and Evolution (4)"},{"dept":"DSGN","description":"Explores cognitive principles of thinking through making. Introduces methods and tools for prototyping user experiences. Students make various prototypes and participate in weekly critique sessions. Topics: experience design, rapid prototyping, sketching, bodystorming, cardboard modeling, UI hacking, and design theory. ","edges_from":[2647],"edges_to":[4590],"id":3131,"label":"DSGN 100","title":"Information Design (4)"},{"dept":"Linguistics/Spanish","description":"Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Spanish. Must be taken in conjunction with LISP 1D. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ","edges_from":[2421,3133],"edges_to":[],"id":3132,"label":"Linguistics/Spanish (LISP) 1DX","title":"Analysis of Spanish (2.5)"},{"dept":"LISP","description":"","edges_from":[],"edges_to":[3132,4821],"id":3133,"label":"LISP 1CX","title":""},{"dept":"COGS","description":"This course examines memory, reasoning, language understanding, learning, and planning directly in everyday, real-world settings. The course work includes projects in which students make observations of real-world activity and analyze their cognitive significance. ","edges_from":[],"edges_to":[1576],"id":3134,"label":"COGS 102B","title":"Cognitive Ethnography (4)"},{"dept":"ECE","description":"A transistor-level view of digital integrated circuits. CMOS combinational logic, ratioed logic, noise margins, rise and fall delays, power dissipation, transmission gates. Short channel MOS model, effects on scaling. Sequential circuits, memory and array logic circuits. Three hours of lecture, one hour of discussion, three hours of laboratory. ","edges_from":[3136,3137,3138,3139,1181,1183],"edges_to":[],"id":3135,"label":"ECE 108","title":"Digital Circuits (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[1569,3135],"id":3136,"label":"ECE 25","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[3135],"id":3137,"label":"CSE 65","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[3135],"id":3138,"label":"CSE 45","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[3135],"id":3139,"label":"ECE 30","title":""},{"dept":"CENG","description":"Thermodynamic behavior of pure substances","edges_from":[],"edges_to":[],"id":3140,"label":"CENG 102","title":"Chemical Engineering Thermodynamics (4)"},{"dept":"MATS","description":"Each graduate student in the Materials Science and Engineering Program is expected to attend a weekly seminar in materials science or related areas. MS students must enroll for three quarters, PhD students for six quarters, as of fall 1995. (S/U grades only.) (F,W,S)","edges_from":[],"edges_to":[],"id":3141,"label":"MATS 200","title":"Graduate Seminar (0)"},{"dept":"MUS","description":"Tonal harmony and counterpoint. Analysis of larger classical forms: Sonata, Variation, Minuet and Trio, Rondo. Musicianship studies: sight-singing, dictation, and keyboard skills. ","edges_from":[1559],"edges_to":[4298],"id":3142,"label":"MUS 101C","title":"Music Theory and Practice III (4)"},{"dept":"ECE","description":"Nonlinear active circuits design. Nonlinear device models for diodes, bipolar and field-effect transistors. Linearization of device models and small-signal equivalent circuits. Circuit designs will be simulated by computer and tested in the laboratory. ","edges_from":[3144,257],"edges_to":[4259,4260,4261],"id":3143,"label":"ECE 102","title":"Introduction to Active Circuit Design (4)"},{"dept":"ECE","description":"","edges_from":[257,1671],"edges_to":[3143],"id":3144,"label":"ECE 100","title":""},{"dept":"NANO","description":"Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. Cross-listed with MATS 257 and BENG 242. Restricted to BE 75, MS 76, CE 75, and NA 75 majors. ","edges_from":[],"edges_to":[],"id":3145,"label":"NANO 257","title":"Polymer Science and Engineering (4)"},{"dept":"NANO","description":"This course covers the design, microfabrication, operational principles, basic transport processes and diverse applications of microfluidic and nanofluidic (lab-on-a-chip) systems. ","edges_from":[],"edges_to":[],"id":3146,"label":"NANO 256","title":"Microfluids (4)"},{"dept":"NANO","description":"Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electrochemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. Cross-listed with Chem 240. ","edges_from":[],"edges_to":[],"id":3147,"label":"NANO 255","title":"Electrochemistry (4)"},{"dept":"NANO","description":"This course discusses synthesis techniques, processes, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 267. ","edges_from":[],"edges_to":[],"id":3148,"label":"NANO 253","title":"Nanomaterials and Properties (4)"},{"dept":"NANO","description":"Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Cross-listed with CENG 256. Students may not receive credit for both NANO 252 and CENG 256. ","edges_from":[],"edges_to":[],"id":3149,"label":"NANO 252","title":"Biomaterials and Biomimetics (4)"},{"dept":"ANSC","description":"Examines physical and mental health sequalae of internal and transnational movement of individuals and populations due to warfare, political violence, natural disaster, religious persecution, poverty and struggle for economic survival, and social suffering of communities abandoned by migrants and refugees. May be coscheduled with ANTH 238. ","edges_from":[1137,3150],"edges_to":[3150],"id":3150,"label":"ANSC 144","title":"Immigrant and Refugee Health (4)"},{"dept":"NANO","description":"Elements of continuum mechanics; quantum and statistical mechanics; interatomic forces and intermolecular interactions; thermodynamics and diffusion materials; nanomechanics of self-assembly, pattern formation, and hierarchical ordering, defects, thin films, surfaces, and interfaces; plasticity, creep, fracture, and fatigue, nanomechanics, nanorheology, and nanotribology. ","edges_from":[],"edges_to":[],"id":3151,"label":"NANO 250","title":"Mechanics of Nanomaterials (4)"},{"dept":"COMM","description":"Explores the uneven nature of globalization and its geographical expression in the built environment by looking into gentrification processes and community change in service-oriented economies in the Global North as well as into production offshoring and disputes over development in the Global South. ","edges_from":[537,538,539,540],"edges_to":[],"id":3152,"label":"COMM 181","title":"Neoliberal Cities (4)"},{"dept":"COMM","description":"How are messages created, transmitted, and received? What is the relationship between thinking and communicating? How are linguistic processes embedded in sociocultural practices? Course discusses classic texts in the field of communication theory stemming from linguistics, semiotics, philosophy of language, literary theory. ","edges_from":[537,538,539,540],"edges_to":[],"id":3153,"label":"COMM 180","title":"Advanced Studies in Communication Theory (4)"},{"dept":"ANTH","description":"Course will provide an introduction to bones as a tissue, to different bones in the body, and the ligaments and muscles surrounding major joints. You will learn how the skeleton, ligaments, and muscles support our mode of locomotion; the differences between male and female skeletons; and the differences across human populations. You’ll see how nutrition and disease can affect bones. Course examines functional areas within the body.","edges_from":[],"edges_to":[],"id":3154,"label":"ANTH 5","title":"The Human Machine: The Skeleton Within (4)"},{"dept":"ANTH","description":"How does one’s language mutually interact with the social, cultural, and conceptual worlds one inhabits and mutually constructs with others? This course will introduce the comparative study of social life through the lens of the uniquely human capacity for language.","edges_from":[],"edges_to":[],"id":3155,"label":"ANTH 4","title":"Words and Worlds: Introduction to the Anthropology of Language (4)"},{"dept":"NANO","description":"Various nanoscale systems where macroscopic laws of mass, heat, and momentum transfer break down; nonequilibrium statistical mechanics concepts such as transition state and Green-Kubo theories, and molecular simulations for modeling nanoscale transport issues will be introduced. ","edges_from":[],"edges_to":[],"id":3156,"label":"NANO 258","title":"Nanoscale Transport Phenomenon (4)"},{"dept":"ETHN","description":"States–Mexico Border in Comparative Perspective (4)","edges_from":[],"edges_to":[],"id":3157,"label":"ETHN 116","title":"The United"},{"dept":"MUS","description":"Group instruction in instrumental or vocal technique and repertory. Intermediate level. Intended for students who make an important contribution to Department of Music ensembles. ","edges_from":[],"edges_to":[],"id":3158,"label":"MUS 32G","title":"Group Instrumental Instruction (2)"},{"dept":"ECE","description":"This course will build mathematical foundations of linear algebraic techniques and justify their use in signal processing, communication, and machine learning. Topics include geometry of vector and Hilbert spaces, orthogonal projection, systems of linear equations and role of sparsity, eigenanalysis, Hermitian matrices and variational characterization, positive semidefinite matrices, singular value decomposition, and principal component analysis. ","edges_from":[],"edges_to":[4819],"id":3159,"label":"ECE 269","title":"Linear Algebra and Application (4)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3160,"label":"BGRD 212","title":"Research Discussion in Behavior and Development of Simple Nervous Systems (1)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3161,"label":"BGRD 210","title":"Research Discussion in Virology (1)"},{"dept":"LTAM","description":"Examines the growing Iranian American culture, focusing on developments in Iranian American cinematic and popular culture.","edges_from":[],"edges_to":[],"id":3162,"label":"LTAM 120","title":"Iranian American Culture (4)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3163,"label":"BGRD 211","title":"Research Discussion in Developmental Cellular Neurobiology (1)"},{"dept":"COGS","description":"An introduction to structure of natural language, and to the cognitive processes that underline its acquisition, comprehension, and production. This course covers findings from linguistics, computer science, psychology, and cognitive neuroscience to provide an integrated perspective on human language abilities. ","edges_from":[3165,238],"edges_to":[3495],"id":3164,"label":"COGS 101C","title":"Language (4)"},{"dept":"COGS","description":"","edges_from":[],"edges_to":[3691,3164,2333,3791],"id":3165,"label":"COGS 14A","title":""},{"dept":"COGS","description":"A survey of the experimental study of learning, memory, and attention. Topics include conditioning, automaticity, divided attention, memory systems, and the nature of mental representation. ","edges_from":[238,3079],"edges_to":[3495],"id":3166,"label":"COGS 101B","title":"Learning, Memory, and Attention (4)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3167,"label":"BGRD 216","title":"Research Discussion in Molecular and Cell Biology (1)"},{"dept":"ANSC","description":"Explores anthropological approaches to finding solutions to human problems. Using cultural analysis and ethnographic approaches, students conduct supervised field projects to assess real-world problems and then design, evaluate, and communicate possible solutions. ","edges_from":[],"edges_to":[],"id":3168,"label":"ANSC 138","title":"The Cultural Design Practicum: Using Anthropology to Solve Human Problems (4)"},{"dept":"BENG","description":"Development of design project in neural engineering. ","edges_from":[66],"edges_to":[3170],"id":3169,"label":"BENG 147A","title":"Design Development in Neural Engineering (3)"},{"dept":"BENG","description":"Implementation of design project in neural engineering. ","edges_from":[3169,68],"edges_to":[68],"id":3170,"label":"BENG 147B","title":"Design Implementation in Neural Engineering (3)"},{"dept":"POLI","description":"to Political Science: Comparative Politics (4)","edges_from":[],"edges_to":[],"id":3171,"label":"POLI 11 or 11D","title":"Introduction"},{"dept":"PSYC","description":"Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ","edges_from":[],"edges_to":[],"id":3172,"label":"PSYC 249A","title":"Advanced Topics in Applied Behavior Analysis I (1)"},{"dept":"LTEN","description":"This course provides an introduction to the literary production of the population of Mexican origin in the United States. Students will examine a variety of texts dealing with the historical (social, economic, and political) experiences of this heterogeneous population.","edges_from":[],"edges_to":[],"id":3173,"label":"LTEN 29","title":"Introduction to Chicano Literature (4)"},{"dept":"PSYC","description":"Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ","edges_from":[],"edges_to":[],"id":3174,"label":"PSYC 249C","title":"Advanced Topics in Applied Behavior Analysis III (1)"},{"dept":"PSYC","description":"Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ","edges_from":[],"edges_to":[],"id":3175,"label":"PSYC 249B","title":"Advanced Topics in Applied Behavior Analysis II (1)"},{"dept":"SOCI","description":"This introductory course is specifically designed for premedical students and will provide them with a broad introduction to sociological concepts and research, particularly as applied to medicine.","edges_from":[],"edges_to":[],"id":3176,"label":"SOCI 70","title":"General Sociology for Premedical Students (4)"},{"dept":"MUS","description":"The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music majors every quarter.","edges_from":[],"edges_to":[],"id":3177,"label":"MUS 143","title":"Department Seminar (1)"},{"dept":"GPEC","description":"A broad survey of the Japanese economy, together with in-depth examination of some distinctively Japanese phenomena such as savings behavior, financial structure, industrial organization, and labor markets. Renumbered from IRGN 471. Students may not receive credit for GPEC 471 and IRGN 471. ","edges_from":[2981,2983],"edges_to":[],"id":3178,"label":"GPEC 471","title":"Japanese Economy (4)"},{"dept":"HIEU","description":"Directed readings for undergraduates under the supervision of various faculty members. ","edges_from":[],"edges_to":[],"id":3179,"label":"HIEU 199","title":"Independent Study in European History (4)"},{"dept":"HIEU","description":"Directed group study on European history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. ","edges_from":[],"edges_to":[],"id":3180,"label":"HIEU 198","title":"Directed Group Study (1, 2, 3, 4)"},{"dept":"CHEM","description":"(Conjoined with CHEM 104.) Analysis","edges_from":[],"edges_to":[],"id":3181,"label":"CHEM 204","title":"Introduction to X-ray Crystallography (4)"},{"dept":"CHEM","description":"A broad introduction to the uses of nuclear magnetic resonance","edges_from":[],"edges_to":[],"id":3182,"label":"CHEM 207","title":"Protein NMR (4)"},{"dept":"CHEM","description":"Structures and functions of nucleic acids, folding and catalysis of nucleic acids, motifs and domains of proteins, principles of protein-protein interactions, chemistry of protein/DNA and protein/RNA interfaces, conformational changes in macromolecular recognition. ","edges_from":[],"edges_to":[],"id":3183,"label":"CHEM 209","title":"Macromolecular Recognition (4)"},{"dept":"HINE","description":"This course explores the evolution of Zionism from its late nineteenth-century origins to the present. Among the topics explored: political, cultural, spiritual and social varieties of Zionism; and the contending narratives about its nature, meaning, and accomplishments.","edges_from":[],"edges_to":[],"id":3184,"label":"HINE 136GS","title":"Zionism and Post Zionism (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3185,"label":"LTEN 138","title":"The British Novel: 1680–1790 (4)"},{"dept":"CHEM","description":"This special-topics course is designed for first-year graduate students in biochemistry. Topics presented in recent years have included protein processing, the chemical modification of proteins, the biosynthesis and function of glycoproteins, lipid biochemistry and membrane structure, and bioenergetics. ","edges_from":[458],"edges_to":[],"id":3186,"label":"CHEM 219A","title":"Special Topics in Biochemistry (4)"},{"dept":"LIGN","description":"The course, designed for graduate students serving as teaching assistants in Arabic, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":3187,"label":"LIGN 510","title":"Apprentice Teaching of Arabic (1–4)"},{"dept":"HIEU","description":"How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D.","edges_from":[],"edges_to":[],"id":3188,"label":"HIEU 132D","title":"Germany from Luther to Bismarck (4)"},{"dept":"BGGN","description":"This course covers advanced topics in plant biology in the areas of molecular genetic developmental, and physiological biology. We will discuss plant-microbe interactions, transposable elements, protein trafficking, ion transport, and organ development. The format of this section includes lectures and discussion of selected papers. ","edges_from":[],"edges_to":[],"id":3189,"label":"BGGN 227","title":"Graduate Topics in Plant Biology (4)"},{"dept":"LIGN","description":"(1–4)","edges_from":[],"edges_to":[],"id":3190,"label":"LIGN 512","title":"Apprentice Teaching of Heritage Korean"},{"dept":"MUS","description":"Individual instruction in advanced vocal performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ","edges_from":[],"edges_to":[4651],"id":3191,"label":"MUS 132V","title":"Proseminar in Vocal Instruction (4)"},{"dept":"BIOM","description":"This course outlines a current understanding of genetic mechanisms that underlie carcinogenesis and their impact on cell proliferation, differentiation, angiogenesis, metastasis, and survival. The topics of tumor histopathology, the tumor stem cell phenotype, and cancer drug design are also addressed. ","edges_from":[],"edges_to":[],"id":3192,"label":"BIOM 256","title":"Molecular Pathology of Cancer (3)"},{"dept":"LTWL","description":"The course will center on writers or movements of international literary, cultural, or ideological significance. The texts studied, if foreign, may be read either in the original language or in English. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":3193,"label":"LTWL 176","title":"Literature and Ideas (4)"},{"dept":"MGT","description":"This course covers the basic concepts and important models used in","edges_from":[],"edges_to":[],"id":3194,"label":"MGT 285","title":"Financial Economics (4)"},{"dept":"MGT","description":"This course covers econometric methods including the linear regression","edges_from":[],"edges_to":[],"id":3195,"label":"MGT 287","title":"Empirical Finance (4)"},{"dept":"MGT","description":"This course covers most powerful tools in finance, i.e., which are","edges_from":[],"edges_to":[],"id":3196,"label":"MGT 286","title":"Continuous-Time Finance (4)"},{"dept":"CSE","description":"This course will provide a broad understanding of network design and implementation. Topics include techniques for building distributed applications, sockets programming, remote procedure calls (RPC), scale-out distributed directories, distributed consensus and state management, fault tolerance, networked storage, indirection, overlay networks, load balancing, and datacenter design. ","edges_from":[],"edges_to":[],"id":3197,"label":"CSE 224","title":"Graduate Networked Systems (4)"},{"dept":"CSE","description":"Security and threat models, risk analysis, authentication and authorization, auditing, operating systems security, access control mechanisms, protection mechanisms, distributed systems/network security, security architecture, electronic commerce security mechanisms, security evaluation. ","edges_from":[2196],"edges_to":[],"id":3198,"label":"CSE 227","title":"Computer Security (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[2196],"id":3199,"label":"CSE 121","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[3411,2196,5629],"id":3200,"label":"CSE 120","title":""},{"dept":"POLI","description":"of Political Thought: Kant to Rawls (4)","edges_from":[],"edges_to":[],"id":3201,"label":"POLI 210AB","title":"Systems"},{"dept":"POLI","description":"of Political Thought: Thucydides to Rousseau (4)","edges_from":[],"edges_to":[],"id":3202,"label":"POLI 210AA","title":"Systems"},{"dept":"USP","description":"(Same as POLI 103C.) This course examines how major policy decisions are made in San Diego. In analyses the region’s power structure (including the roles of nongovernmental organizations and the media), governance systems and reform efforts, and the politics of major infrastructure projects. ","edges_from":[],"edges_to":[],"id":3203,"label":"USP 115","title":"Politics and Policymaking in San Diego (4)"},{"dept":"USP","description":"Local Government: Finance and Administration (4)","edges_from":[],"edges_to":[],"id":3204,"label":"USP 116","title":"California"},{"dept":"USP","description":"(Same as POLI 102JJ.) To be taken with the approval of the Political Science 102J instructor, this course allows students to do original field research on topics in urban politics. This course is offered in Summer Session II subsequent to a spring 102J course. May not be used to fulfill any major or minor requirements in politics science or urban studies and planning. ","edges_from":[3208,3206,3207],"edges_to":[],"id":3205,"label":"USP 111","title":"Field Research in Urban Politics (4)"},{"dept":"???","description":"","edges_from":[],"edges_to":[3205],"id":3206,"label":"??? Science 102J","title":""},{"dept":"USP","description":"","edges_from":[],"edges_to":[3205],"id":3207,"label":"USP 110","title":""},{"dept":"USP","description":"","edges_from":[],"edges_to":[3205],"id":3208,"label":"USP 110P","title":""},{"dept":"USP","description":"(Same as POLI 103B.) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ","edges_from":[],"edges_to":[],"id":3209,"label":"USP 113","title":"Politics and Policymaking in Los Angeles (4)"},{"dept":"HISC","description":"Historical aspects of the popularization of science. The changing relation between expert science and popular understanding. The reciprocal impact of scientific discoveries and theories, and popular conceptions of the natural world.","edges_from":[],"edges_to":[],"id":3210,"label":"HISC 104","title":"History of Popular Science (4)"},{"dept":"ETHN","description":"of Native Americans in the United States II (4)","edges_from":[],"edges_to":[],"id":3211,"label":"ETHN 112B","title":"History"},{"dept":"ETHN","description":"of Native Americans in the United States I (4)","edges_from":[],"edges_to":[],"id":3212,"label":"ETHN 112A","title":"History"},{"dept":"INTL","description":"Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ","edges_from":[],"edges_to":[],"id":3213,"label":"INTL 197","title":"Internship (1)"},{"dept":"PSYC","description":"in Communication and Information Processing (1)","edges_from":[],"edges_to":[],"id":3214,"label":"PSYC 280","title":"Seminar"},{"dept":"PSYC","description":"An in-depth analysis of current theoretical and empirical issues in the neurobiological study of auditory perception and cognition. Example topics include auditory stream segregation, localization, natural stimulus coding, pattern recognition and communication in multiple species. ","edges_from":[],"edges_to":[],"id":3215,"label":"PSYC 282","title":"Auditory Neuroscience (4)"},{"dept":"GPIM","description":"This course describes the Chinese commercial, organizational, and cultural environment. Case studies of foreign businesses in China are examined, and the opportunities and pitfalls of operation in China are considered. Negotiation with Chinese counterparts is covered through a negotiation exercise. The focus is on mainland China, but some attention is given to business in Hong Kong and Taiwan as well. Students are required to prepare business plans for proposed Chinese ventures. Renumbered from IRGN 461. Students may not receive credit for GPIM 461 and IRGN 461.","edges_from":[],"edges_to":[],"id":3216,"label":"GPIM 461","title":"Doing Business in China (4)"},{"dept":"INTL","description":"Required seminar for International Studies seniors. Readings and discussion of topics in international and comparative studies from an interdisciplinary perspective. Emphasis on independent work and completion of a research paper. ","edges_from":[3218,3219],"edges_to":[],"id":3217,"label":"INTL 190","title":"Seminar in International Studies (4)"},{"dept":"INTL","description":"","edges_from":[],"edges_to":[3217],"id":3218,"label":"INTL 101","title":""},{"dept":"INTL","description":"","edges_from":[],"edges_to":[3217],"id":3219,"label":"INTL 102","title":""},{"dept":"MATH","description":"Topics will vary from year to year in areas of mathematics and their development. Topics may include the evolution of mathematics from the Babylonian period to the eighteenth century using original sources, a history of the foundations of mathematics and the development of modern mathematics. ","edges_from":[133],"edges_to":[],"id":3220,"label":"MATH 163","title":"History of Mathematics (4)"},{"dept":"Soc/G","description":"In this seminar students revise an existing research paper (usually the one they wrote for Sociology 252) for submission to an academic journal. Emphasis is placed on conceptual development, writing style and structure, and drawing links to the existing theoretical and empirical literature. ","edges_from":[],"edges_to":[],"id":3221,"label":"Soc/G 253","title":"Research Practicum II (4)"},{"dept":"Soc/G","description":"In this seminar students work on a research project, which might have originated in a paper written for another course. The goal is to produce the first draft of a paper that will be submitted to an academic journal. ","edges_from":[],"edges_to":[],"id":3222,"label":"Soc/G 252","title":"Research Practicum I (4)"},{"dept":"Soc/G","description":"This course explores institutional change in contemporary Latin America, and compares this area with other transitional societies. Issues include social consequences of economic liberalization, changing forms of inequality, dynamics of civil society, conceptions of citizenship, quality and future of democracy. ","edges_from":[],"edges_to":[],"id":3223,"label":"Soc/G 258","title":"Institutional Change in the Contemporary World; Latin American Societies in a Comparative Perspective (4)"},{"dept":"MGTF","description":"Introduces ways to identify, measure, estimate, and control risks in the context of risk management as applied in fixed income, foreign exchange, and equity markets. Reviews the pricing and hedging applications of derivatives, such as futures, options, and CDSs. Letter grades only. ","edges_from":[],"edges_to":[4266],"id":3224,"label":"MGTF 403","title":"Advanced Financial Risk Management (4)"},{"dept":"POLI","description":"An analysis of the political system of the Federal Republic of Germany with an emphasis on the party system, elections, executive-legislative relations, and federalism. Comparisons will be made with other West European democracies and the Weimar Republic.","edges_from":[],"edges_to":[],"id":3225,"label":"POLI 120B","title":"The German Political System (4)"},{"dept":"POLI","description":"This course will examine the consequences of social and economic change in France. Specific topics will include institutional development under a semi-presidential system, parties, and elections.","edges_from":[],"edges_to":[],"id":3226,"label":"POLI 120C","title":"Politics in France (4)"},{"dept":"POLI","description":"An examination of various paths of European political development through consideration of the conflicts that shaped these political systems: the commercialization of agriculture; religion and the role of the church; the army and the state bureaucracy; and industrialization. Stress will be on alternative paradigms and on theorists.","edges_from":[],"edges_to":[],"id":3227,"label":"POLI 120A","title":"Political Development of Western Europe (4)"},{"dept":"POLI","description":"Emphasis will be placed on the interaction between British political institutions and processes and contemporary policy problems: the economy, social policy, foreign affairs. The course assumes no prior knowledge of British politics and comparisons with the United States will be drawn.","edges_from":[],"edges_to":[],"id":3228,"label":"POLI 120G","title":"British Politics (4)"},{"dept":"POLI","description":"Consideration of political, economic, and security factors that have kept Germany at the center of European developments for more than a century.","edges_from":[],"edges_to":[],"id":3229,"label":"POLI 120D","title":"Germany: Before, During, and After Division (4)"},{"dept":"POLI","description":"Introduction to the politics and societies of the Scandinavian states (Denmark, Finland, Norway, and Sweden). Focuses on historical development, political culture, constitutional arrangements, political institutions, parties and interest groups, the Scandinavian welfare states, and foreign policy. ","edges_from":[],"edges_to":[],"id":3230,"label":"POLI 120E","title":"Scandinavian Politics (4)"},{"dept":"USP","description":"This course introduces students to major concepts, demographic trends, and the diversity of the aging experience. Through site visits, community-based research, and interactions with elders, students will understand the social and structural determinants of health and well-being across the life course. ","edges_from":[],"edges_to":[5161],"id":3231,"label":"USP 141A","title":"Life Course Scholars Research and Core Fundamentals"},{"dept":"POLI","description":"This course reviews the origins and development of the European Community/European Union and its institutions, theories of integration and the challenges inherent in the creation of a supranational political regime.","edges_from":[],"edges_to":[],"id":3232,"label":"POLI 120H","title":"European Integration (4)"},{"dept":"COMM","description":"History, politics, social organization, and ideology of the American news media. Surveys of the development of the news media as an institution, from earliest new newspapers to modern mass news media. ","edges_from":[1851,540],"edges_to":[],"id":3233,"label":"COMM 109N","title":"MC: American News Media (4)"},{"dept":"MATH","description":"Approximation and Nonlinear Equations (4)","edges_from":[],"edges_to":[3235],"id":3234,"label":"MATH 270B","title":"Numerical"},{"dept":"MATH","description":"Initial value problems (IVP) and boundary value problems (BVP) in ordinary differential equations. Linear methods for IVP: one and multistep methods, local truncation error, stability, convergence, global error accumulation. Runge-Kutta (RK) Methods for IVP: RK methods, predictor-corrector methods, stiff systems, error indicators, adaptive time-stepping. Finite difference, finite volume, collocation, spectral, and finite element methods for BVP; a priori and a posteriori error analysis, stability, convergence, adaptivity. ","edges_from":[3234],"edges_to":[],"id":3235,"label":"MATH 270C","title":"Numerical Ordinary Differential Equations (4)"},{"dept":"MATH","description":"Error analysis of the numerical solution of linear equations and least squares problems for the full rank and rank deficient cases. Error analysis of numerical methods for eigenvalue problems and singular value problems. Iterative methods for large sparse systems of linear equations. ","edges_from":[],"edges_to":[],"id":3236,"label":"MATH 270A","title":"Numerical Linear Algebra (4)"},{"dept":"POLI","description":"This course examines reasons why we can be cautiously optimistic about development, growth, peace and democratization in Africa. Sample cases include Botswana’s resource blessing, postconflict reconstruction in Uganda, and democratization in Ghana, Benin, and Niger.","edges_from":[],"edges_to":[],"id":3237,"label":"POLI 120P","title":"Africa’s Success Stories (4)"},{"dept":"ANTH","description":"This course examines conceptions of race from evolutionary and sociocultural perspectives. We will critically examine how patterns of current human genetic variation map onto conceptions of race. We will also focus on the history of the race concept and explore ways in which biomedical researchers and physicians use racial categories today. Finally, we will examine the social construction of race, and the experiences and consequences of racism on health in the United States and internationally.","edges_from":[],"edges_to":[],"id":3238,"label":"ANTH 43","title":"Introduction to Biology and Culture of Race (4)"},{"dept":"CSE","description":"(Formerly CSE 257A/BENG 202.) Introduction to methods for sequence analysis. Applications to genome and proteome sequences. Protein structure, sequence-structure analysis. ","edges_from":[3240],"edges_to":[],"id":3239,"label":"CSE 282/BENG 202","title":"Bioinformatics II: Sequence and Structure Analysis—Methods and Applications (4)"},{"dept":"PHARM","description":"","edges_from":[],"edges_to":[3239],"id":3240,"label":"PHARM 201","title":""},{"dept":"Linguistics/Arabic","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1AX. ","edges_from":[],"edges_to":[],"id":3241,"label":"Linguistics/Arabic (LIAB) 1A","title":"Arabic Conversation (2.5)"},{"dept":"ANTH","description":"This course examines new media fandoms through the representation and reception of gender and sexuality in Korean media consumed around the world by highlighting how Korean images are differently interpreted by other national groups. Contrasting various understandings of masculinity, homosexuality, and transgenderism, we explore how the meanings attached to gender and sexuality are not fixed by the productive frame of Korean society, but cocreated and reimagined by international audiences.","edges_from":[],"edges_to":[],"id":3242,"label":"ANTH 44","title":"Gender, Sexuality, and New Media Fandom in the Korean Wave (4)"},{"dept":"Linguistics/Arabic","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1CX. ","edges_from":[148,149],"edges_to":[],"id":3243,"label":"Linguistics/Arabic (LIAB) 1C","title":"Arabic Conversation (2.5)"},{"dept":"Linguistics/Arabic","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1BX. ","edges_from":[336,337],"edges_to":[],"id":3244,"label":"Linguistics/Arabic (LIAB) 1B","title":"Arabic Conversation (2.5)"},{"dept":"Linguistics/Arabic","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1EX. ","edges_from":[3246,3247],"edges_to":[],"id":3245,"label":"Linguistics/Arabic (LIAB) 1E","title":"Arabic Conversation (2.5)"},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3245,5015],"id":3246,"label":"LIAB 1D","title":""},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3245,5015],"id":3247,"label":"LIAB 1DX","title":""},{"dept":"Linguistics/Arabic","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1DX. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ","edges_from":[3249,3250],"edges_to":[],"id":3248,"label":"Linguistics/Arabic (LIAB) 1D","title":"Arabic Conversation (2.5)"},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3248,5069],"id":3249,"label":"LIAB 1CX","title":""},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3248,5069],"id":3250,"label":"LIAB 1C","title":""},{"dept":"Linguistics/Arabic","description":"A course to increase the proficiency level of students who have completed LIAB 1E/1EX or who are at an equivalent level. Attention to listening comprehension, conversation, vocabulary building, reading, grammar analysis, and culture. ","edges_from":[3252,3253],"edges_to":[],"id":3251,"label":"Linguistics/Arabic (LIAB) 1F","title":"Intermediate Arabic Conversation and Analysis (4)"},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3251],"id":3252,"label":"LIAB 1E","title":""},{"dept":"LIAB","description":"","edges_from":[],"edges_to":[3251],"id":3253,"label":"LIAB 1EX","title":""},{"dept":"HITO","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in history (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":3254,"label":"HITO 192","title":"Senior Seminar in History (1)"},{"dept":"HITO","description":"A program of independent study providing candidates for history honors an opportunity to develop, in consultation with an adviser, a preliminary proposal for the honors essay. An IP grade will be awarded at the end of this quarter. A final grade will be given for both quarters at the end of HITO 195. ","edges_from":[],"edges_to":[],"id":3255,"label":"HITO 194","title":"History Honors (4)"},{"dept":"HITO","description":"Independent study under the supervision of a faculty member leading to the preparation of an honors essay. A letter grade for both HITO 194 and 195 will be given at the completion of this quarter. ","edges_from":[],"edges_to":[],"id":3256,"label":"HITO 195","title":"The Honors Essay (4)"},{"dept":"HITO","description":"The nature and uses of history are explored through the study of the historian’s craft based on critical analysis of historical literature relating to selected topics of concern to all historians. Required of all candidates for history honors and open to other interested students with the instructor’s consent. Department stamp required.","edges_from":[],"edges_to":[],"id":3257,"label":"HITO 196","title":"Honors Seminar (4)"},{"dept":"HIUS","description":"The historical development of constitutional","edges_from":[],"edges_to":[],"id":3258,"label":"HIUS 152B","title":"A Constitutional History of the United States since 1865 (4)"},{"dept":"HITO","description":"Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3259,"label":"HITO 198","title":"Directed Group Study (1–4)"},{"dept":"HITO","description":"Independent study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3260,"label":"HITO 199","title":"Independent Study for Undergraduates (4)"},{"dept":"MAE","description":"Introduction to the air and aquatic environments. Buoyancy, stratification, and rotation. Earth surface energy balance. Introduction to the atmospheric boundary layer. Advection and diffusion. Turbulent diffusion and dispersion in rivers and in the atmospheric boundary layer. Surface waves and internal gravity waves. ","edges_from":[168,169],"edges_to":[3262],"id":3261,"label":"MAE 122","title":"Flow and Transport in the Environment (4)"},{"dept":"MAE","description":"Overview of air pollution and wastes and their impact. Characteristics of air pollutants. Air pollution transport. Atmospheric stability. Plume rise and dispersion. Meteorological data. Selecting the appropriate air quality model and case studies. Modeling complex terrain situations. Current air quality modeling issues. Laws and regulations to control air pollution. ","edges_from":[3261,3263],"edges_to":[],"id":3262,"label":"MAE 121","title":"Air Pollution Transport and Dispersion Modeling (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3262],"id":3263,"label":"MAE 125A","title":""},{"dept":"MAE","description":"Overview of basic fission and fusion processes. Elementary fission reactor physics and engineering; environmental and waste disposal issues. Survey of fusion technology issues and perspectives. May not receive credit for both MAE 118C and MAE 120. ","edges_from":[168,169],"edges_to":[],"id":3264,"label":"MAE 120","title":"Introduction to Nuclear Energy (4)"},{"dept":"HIEA","description":"Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China’s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 170.","edges_from":[],"edges_to":[],"id":3265,"label":"HIEA 270","title":"Love and Marriage in Chinese History (4)"},{"dept":"PHYS","description":"Directed group study on a topic, or in a field not included in the regular departmental curriculum. P/NP grades only.","edges_from":[],"edges_to":[],"id":3266,"label":"PHYS 98","title":"Directed Group Study (2)"},{"dept":"PHYS","description":"Independent reading or research on a topic by special arrangement with a faculty member. P/NP grading only. ","edges_from":[],"edges_to":[],"id":3267,"label":"PHYS 99","title":"Independent Study (2)"},{"dept":"ETHN","description":"This course examines the impact of the Vietnam War on three populations: Americans, Vietnamese in Vietnam, and Viet Kieu (overseas Vietnamese). We will supplement scholarly texts on the war with films, literature, and visits to war museums and monuments. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":3268,"label":"ETHN 155GS","title":"Critical Perspectives on the Vietnam War (4)"},{"dept":"ENG","description":"Learn basics of start-up through a series of lectures, workshops, and assignments. Students will learn to effectively communicate the values of their ideas to investors and partners. Learn to validate market potential of a technology. ","edges_from":[],"edges_to":[],"id":3269,"label":"ENG 208","title":"Basics of Entrepreneurism and Technology Commercialization (4)"},{"dept":"TDDE","description":"A course designed to expose the theatre design students to a variety of specialized topics that will vary from quarter to quarter. May be taken for credit three times. ","edges_from":[128],"edges_to":[],"id":3270,"label":"TDDE 131","title":"Special Topics in Theatre Design (4)"},{"dept":"TDDE","description":"A production-oriented course that continues","edges_from":[],"edges_to":[],"id":3271,"label":"TDDE 130","title":"Assistant Designer (2–6)"},{"dept":"TDDE","description":"Main Stage Production: Design (4)","edges_from":[],"edges_to":[],"id":3272,"label":"TDDE 132","title":"Undergraduate"},{"dept":"LTEU","description":"A study of literary works from Pushkin to the present.","edges_from":[],"edges_to":[],"id":3273,"label":"LTEU 150A-B-C","title":"Survey of Russian and Soviet Literature in Translation, 1800 to the Present (4-4-4)"},{"dept":"POLI","description":"(Same as USP 110) Building upon the introductory urban politics course, the advanced topics course explores issues such as community power, minority empowerment, and the politics of growth. A research paper is required. Students may not receive credit for both POLI 102J and USP 110. ","edges_from":[],"edges_to":[],"id":3274,"label":"POLI 102J","title":"Advanced Topics in Urban Politics (4)"},{"dept":"POLI","description":"The lives of individuals living in ghetto poverty in the United States. Causes and consequences of ghetto poverty. Political debates surrounding the underclass and different possible solutions. ","edges_from":[],"edges_to":[],"id":3275,"label":"POLI 102K","title":"The Urban Underclass (4)"},{"dept":"COGS","description":"Behavior draws on a wide range of genes acting as a complex source of information. Model organisms—bacteria, Paramecium, C. elegans, Drosophila, and mice—have provided insight into how genes influence both innate and learned behaviors. ","edges_from":[3080,238],"edges_to":[],"id":3276,"label":"COGS 169","title":"Genetic Information for Behavior: From Single Cells to Mammals (4)"},{"dept":"TDGE","description":"An exploration of fundamental ways of seeing and thinking about the performance space. A look at the design process as it reflects styles and attitudes through an examination of text/image/meaning/message in theatre, dance, opera, and visual arts. With a special emphasis on the “solution-finding process” in design, as a leap from text to context, to finalized design. ","edges_from":[128],"edges_to":[],"id":3277,"label":"TDGE 133","title":"Visual Ideas (4)"},{"dept":"TDGE","description":"This class examines disability in the performative context, exploring the representation of people with disabilities and the struggle for access and inclusion. The frame of advocacy, understanding, and creative collaboration will deepen the historical perspective on disability. ","edges_from":[],"edges_to":[],"id":3278,"label":"TDGE 134","title":"Disability and Performative Exploration: Struggle for Inclusion (4)"},{"dept":"LIGN","description":"An examination of sociolinguistic research on Deaf communities throughout the world, including: sociohistorical contexts for phonological, lexical and syntactic variation, contact between languages, multilingualism, language policies and planning, second language learning, language attitudes, and discourse analysis of specific social contexts. Course will be conducted in ASL. ","edges_from":[3280],"edges_to":[],"id":3279,"label":"LIGN 146","title":"Sociolinguistics in Deaf Communities (4)"},{"dept":"LISL","description":"","edges_from":[],"edges_to":[5401,3286,3279],"id":3280,"label":"LISL 1C","title":""},{"dept":"POLI","description":"Politics and policy-making issues in regulation. Themes: regulation versus legislation; general versus specific grants of regulatory power; market versus command mechanisms; private property; and risk assessment. Emphasis on American regulatory policy, examples from current regulatory debates (e.g., health care and environment). ","edges_from":[],"edges_to":[],"id":3281,"label":"POLI 102L","title":"The Politics of Regulation (4)"},{"dept":"ETHN","description":"This course explores the genesis, evolution, and contradictions of racially heterogeneous societies in the Americas, from European conquest to the present. Topics: the social history of Native Americans, blacks, and Asians, their interactions with European settlers, and racial, sexual, and class divisions.","edges_from":[],"edges_to":[],"id":3282,"label":"ETHN 119","title":"Race in the Americas (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3283,"label":"LTEN 157","title":"Captivity and Prison Narratives (4)"},{"dept":"POLI","description":"Examines selected issues and moments in the political history of the United States, comparing competing explanations and analyses of US politics. Likely topics include the founding, “American exceptionalism,” change in the party system, race in US politics, the “new institutionalism.”","edges_from":[],"edges_to":[],"id":3284,"label":"POLI 102C","title":"American Political Development (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3285,"label":"LTEN 155","title":"Interactions between American Literature and the Visual Arts (4)"},{"dept":"LIGN","description":"The study of how sign languages are structured, and how they are understood and produced by adults. Topics include the contrast between gesture and language, sign language acquisition, brain processing, sociolinguistics, and the role of sign language in reading. ","edges_from":[752,3280],"edges_to":[],"id":3286,"label":"LIGN 148","title":"Psycholinguistics of Sign Language (4)"},{"dept":"POLI","description":"This course will explore both the role played by mass media in political institutions, processes and behaviors, and reciprocally, the roles played by political systems in guiding communication processes.","edges_from":[],"edges_to":[],"id":3287,"label":"POLI 102F","title":"Mass Media and Politics (4)"},{"dept":"POLI","description":"An undergraduate course designed to cover various aspects of American politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.","edges_from":[],"edges_to":[],"id":3288,"label":"POLI 102G","title":"Special Topics in American Politics (4)"},{"dept":"POLI","description":"The Voting Rights Act (VRA) is one of the most significant and controversial acts in American history. We will examine the environment that led to its introduction, the legislative process, executive implementation, and the political ramifications and subsequent state government and court decisions.","edges_from":[],"edges_to":[],"id":3289,"label":"POLI 102D","title":"Voting Rights Act: Fifty Years Later (4)"},{"dept":"POLI","description":"(Same as USP107) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the “new” ethnic politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race.","edges_from":[],"edges_to":[],"id":3290,"label":"POLI 102E","title":"Urban Politics (4)"},{"dept":"HIUS","description":"The historical development of constitutional thought and practice in the United States from the era of the American Revolution through the Civil War, with special attention to the role of the Supreme Court under Chief Justices Marshall and Taney.","edges_from":[],"edges_to":[],"id":3291,"label":"HIUS 152A","title":"A Constitutional History of the United States to 1865 (4)"},{"dept":"COGS","description":"This course follows up on the basics of multimedia design taught in Cognitive Science 187A. Students will probe more deeply into selective topics, such as animation, navigation, graphical display of information, and narrative coherence. ","edges_from":[3293],"edges_to":[4017,4590],"id":3292,"label":"COGS 187B","title":"Practicum in Professional Web Design (4)"},{"dept":"COGS","description":"","edges_from":[393,682,2670,1074,2647,3294],"edges_to":[4017,4015,3292,4590,2857],"id":3293,"label":"COGS 187A","title":""},{"dept":"COGS","description":"","edges_from":[],"edges_to":[4368,3293],"id":3294,"label":"COGS 10","title":""},{"dept":"BENG","description":"Introduction to the nonlinear dynamics of neurons and neural systems using bifurcation theory and chaotic motions, at different levels of abstraction, e.g., biophysical and “reduced” models for analysis of regularly spiking and bursting cells. Laboratory exercises will accompany the lectures. ","edges_from":[],"edges_to":[],"id":3295,"label":"BENG 260/BGGN 260/PHYS 279","title":"Neurodynamics (4)"},{"dept":"EDS","description":"(Same as Phys 180) A course on how people learn and understand key concepts in Newtonian mechanics. Reading in physics and cognitive science plus fieldwork teaching and evaluating K–12 students. Useful for students interested in teaching. ","edges_from":[],"edges_to":[],"id":3296,"label":"EDS 105","title":"Teaching and Learning Physics (4)"},{"dept":"VIS","description":"During the later centuries of the Roman Empire, the ancient world underwent a profound crisis. Beset by barbarian invasions, torn by internal conflict and drastic social change, inflamed with religious passion that was to lead to a transformed vision of the individual, the world, and the divine, this momentous age saw the conversion of the Roman world to Christianity, the transfer of power from Rome to Constantinople, and the creation of a new society and culture. Out of this ferment, during the centuries from Constantine to Justinian, there emerged new art forms fit to represent the new vision of an otherworldly reality: a vaulted architecture of diaphanous space, a new art of mosaic, which dissolved surfaces in light, a figural language both abstractly symbolic and urgently expressive. The great creative epoch transformed the heritage of classical Greco-Roman art and laid the foundations of the art of the Christian West and Muslim East for the next thousand years. Recommended preparation: VIS 20 or 120B. ","edges_from":[],"edges_to":[],"id":3297,"label":"VIS 120C","title":"Late Antique Art (4)"},{"dept":"ETHN","description":"This course examines the diversity of today’s immigrants—their social origins and contexts of exit and their adaptation experiences and contexts of incorporation.","edges_from":[],"edges_to":[],"id":3298,"label":"ETHN 118","title":"Contemporary Immigration Issues (4)"},{"dept":"VIS","description":"This seminar will address and critique various approaches to studying the art of non-Western societies with respect to their own aesthetic and cultural systems. Students are encouraged to explore comparative philosophies of art and test paradigms of Western aesthetic scholarship. Recommended preparation: VIS 21A or 21B or 112 or two upper-division courses in art history strongly recommended. ","edges_from":[],"edges_to":[],"id":3299,"label":"VIS 117E","title":"Problems in Ethnoaesthetics (4)"},{"dept":"MAE","description":"and Photonic Properties of Materials (4)","edges_from":[],"edges_to":[],"id":3300,"label":"MAE 265A","title":"Electronic"},{"dept":"MATH","description":"to Numerical Optimization: Linear Programming (4)","edges_from":[],"edges_to":[4512],"id":3301,"label":"MATH 171A","title":"Introduction"},{"dept":"EDS","description":"in Science and Math Teaching/Learning (2)","edges_from":[],"edges_to":[],"id":3302,"label":"EDS 39","title":"Practicum"},{"dept":"MATH","description":"to Numerical Optimization: Nonlinear Programming (4)","edges_from":[],"edges_to":[],"id":3303,"label":"MATH 171B","title":"Introduction"},{"dept":"PHIL","description":"Different perspectives on central issues in contemporary political philosophy, such as the nature of state authority and political obligation, the limits of government and individual liberty, liberalism and its critics, equality and distributive justice. ","edges_from":[],"edges_to":[],"id":3304,"label":"PHIL 167","title":"Contemporary Political Philosophy (4)"},{"dept":"MUS","description":"First course in a sequence for music majors and nonmajors pursuing an emphasis in composition. The course examines “sound” itself and various ways of building sounds into musical structures and develops skills in music notation. Students compose solo pieces in shorter forms. Students may not receive credit for both MUS 33 and 33A. ","edges_from":[1494],"edges_to":[3306],"id":3305,"label":"MUS 33A","title":"Introduction to Composition I (4)"},{"dept":"MUS","description":"Second part of course sequence for students pursuing a composition emphasis. Course continues the building of skills with the organization of basic compositional elements: pitch, rhythm, and timbre. It explores issues of musical texture, expression, and structure in traditional and contemporary repertoire. Writing for two instruments in more extended forms. ","edges_from":[3305],"edges_to":[3307],"id":3306,"label":"MUS 33B","title":"Introduction to Composition II (4)"},{"dept":"MUS","description":"Third part of course sequence for students pursuing a composition emphasis. Course continues the development of skills in instrumentation and analysis. It includes a survey of advanced techniques in contemporary composition, with additional focus on notation, part-preparation, and the art of writing for small groups of instruments. ","edges_from":[3306],"edges_to":[3557],"id":3307,"label":"MUS 33C","title":"Introduction to Composition III (4)"},{"dept":"MAE","description":"(Cross-listed with SIO 213.) Mixing mechanisms, their identification, description and modeling. Introduction to turbulence, semi-empirical theories, importance of coherent structures, effects of stratification and rotation on turbulent structure, entrainment and mixing. S/U grades permitted.","edges_from":[],"edges_to":[],"id":3308,"label":"MAE 216","title":"Turbulence and Mixing (4)"},{"dept":"MAE","description":"Fundamental aspects of flows of reactive gases, with emphasis on processes of combustion, including the relevant thermodynamics, chemical kinetics, fluid mechanics, and transport processes. Topics may include deflagrations, detonations, diffusion flames, ignition, extinction, and propellant combustion. ","edges_from":[513,676,677,168,169,988,157],"edges_to":[],"id":3309,"label":"MAE 211","title":"Introduction to Combustion (4)"},{"dept":"MAE","description":"Fluid mechanics, thermodynamics and combustion processes involved in propulsion of aircraft and rockets by air breathing engines, and solid and liquid propellant rocket engines characteristics and matching of engine components; diffusers, compressors, combustors, turbines, pumps, nozzles. ","edges_from":[169,513,988,157,3311],"edges_to":[],"id":3310,"label":"MAE 213","title":"Mechanics of Propulsion (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3310],"id":3311,"label":"MAE 212","title":""},{"dept":"LTRU","description":"Author in Russian Literature in Translation (4)","edges_from":[],"edges_to":[],"id":3312,"label":"LTRU 123","title":"Single"},{"dept":"CHEM","description":"This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science. ","edges_from":[960,953,3314,2859],"edges_to":[],"id":3313,"label":"CHEM 141","title":"Organic Nanomaterials (4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[3313,3835,4221,5859],"id":3314,"label":"CHEM 140AH","title":""},{"dept":"DSGN","description":"Independent literature or laboratory research by arrangement with and under direction of a design faculty member. P/NP grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3315,"label":"DSGN 99","title":"Independent Study (2 or 4)"},{"dept":"CSE","description":"Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Cross-listed with COGS 230. ","edges_from":[],"edges_to":[],"id":3316,"label":"CSE 216","title":"Research Topics in Human-Computer Interaction (4)"},{"dept":"DSGN","description":"Special topics in design are discussed. P/NP grades only. May be taken for credit four times when topics vary.","edges_from":[],"edges_to":[],"id":3317,"label":"DSGN 90","title":"Undergraduate Seminar (1)"},{"dept":"RELI","description":"Topical studies in the history of religion in American society, ranging from the Puritans to the New Age. ","edges_from":[],"edges_to":[],"id":3318,"label":"RELI 134","title":"Topics in American Religion (4)"},{"dept":"ETHN","description":"This discussion-based course will focus on the application of advanced research methods to the design of extensive, independent research-based projects. ","edges_from":[3320,628],"edges_to":[4712],"id":3319,"label":"ETHN 100H","title":"Honors Research Design (4)"},{"dept":"ETHN","description":"","edges_from":[628],"edges_to":[4712,5791,3319],"id":3320,"label":"ETHN 100B","title":""},{"dept":"MATH","description":"Spline curves, NURBS, knot insertion, spline interpolation, illumination models, radiosity, and ray tracing. ","edges_from":[3322],"edges_to":[],"id":3321,"label":"MATH 155B","title":"Topics in Computer Graphics (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[3321],"id":3322,"label":"MATH 155A","title":""},{"dept":"TDGR","description":"This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual expression. Students will work on individual projects in lighting, costume, and scenic design. The course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ","edges_from":[3324,3325,3326,3327],"edges_to":[],"id":3323,"label":"TDGR 270C","title":"Design Studio I: Lighting Design (4)"},{"dept":"TDGR","description":"","edges_from":[],"edges_to":[3323],"id":3324,"label":"TDGR 270A","title":""},{"dept":"TDGR","description":"","edges_from":[3326],"edges_to":[3323],"id":3325,"label":"TDGR 270B","title":""},{"dept":"THGR","description":"","edges_from":[],"edges_to":[3328,3323,3325],"id":3326,"label":"THGR 270A","title":""},{"dept":"THGR","description":"","edges_from":[],"edges_to":[3328,3323],"id":3327,"label":"THGR 270B","title":""},{"dept":"TDGR","description":"This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual/auditory expression. Students will work on individual projects in sound, lighting, costume, and scenic design. This course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ","edges_from":[3326,3327],"edges_to":[],"id":3328,"label":"TDGR 270D","title":"Design Studio I: Sound Design (4)"},{"dept":"PHIL","description":"A study of issues in analytical jurisprudence such as the nature of law, the relation between law and morality, and the nature of legal interpretation and issues in normative jurisprudence such as the justification of punishment, paternalism and privacy, freedom of expression, and affirmative action. ","edges_from":[],"edges_to":[],"id":3329,"label":"PHIL 168","title":"Philosophy of Law (4)"},{"dept":"SE","description":"","edges_from":[653,654],"edges_to":[2085,399],"id":3330,"label":"SE 101B","title":""},{"dept":"BGGN","description":"This course offers training in writing about students’ own research; presenting the background to their thesis, preparing a figure, analyzing, and discussing data in a written form. Using published literature on scientific writing, students will practice revising their own writing and providing constructive feedback to their peers. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.","edges_from":[],"edges_to":[],"id":3331,"label":"BGGN 293","title":"Scientific Writing in Biology (2)"},{"dept":"BGGN","description":"Students meet experienced science professionals from a wide variety","edges_from":[],"edges_to":[],"id":3332,"label":"BGGN 292","title":"Professional Pathways in Biological Sciences (1)"},{"dept":"BGGN","description":"Group and individual discussion of research activities and of current literature. S/U grades only. ","edges_from":[],"edges_to":[],"id":3333,"label":"BGGN 297","title":"Research Conference (1–3)"},{"dept":"BGGN","description":"Students learn effective ways of presenting their research to biologists and to the general public. Examples of posters and research talks will be analyzed and discussed. Students will practice short and extended oral presentations of their research. As a final project, students will prepare and present a poster of their research in the biological sciences Student Research Showcase. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.","edges_from":[],"edges_to":[],"id":3334,"label":"BGGN 295","title":"Scientific Presentation in Biology (2)"},{"dept":"BGGN","description":"Directed research on dissertation topic. S/U grades only. ","edges_from":[],"edges_to":[],"id":3335,"label":"BGGN 299","title":"Thesis Research in Biology (1–12)"},{"dept":"BGGN","description":"An introduction to contemporary laboratory techniques and research interests through independent, original projects under the direction of individual faculty members. S/U grades only. ","edges_from":[],"edges_to":[],"id":3336,"label":"BGGN 298","title":"Laboratory Projects in Biology (3–12)"},{"dept":"HIEU","description":"Topics will vary from year to year. Graduate","edges_from":[],"edges_to":[],"id":3337,"label":"HIEU 178/278","title":"Soviet History (4)"},{"dept":"TDAC","description":"Participation in a fully staged season production that is directed by a faculty member or guest for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ","edges_from":[],"edges_to":[],"id":3338,"label":"TDAC 123","title":"Advanced Studies in Performance (4)"},{"dept":"TDAC","description":"Participation in a fully staged theatre production directed by an MFA or PhD student for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ","edges_from":[],"edges_to":[],"id":3339,"label":"TDAC 122","title":"Ensemble: Undergraduate Production (4)"},{"dept":"TDAC","description":"An intensive theatre practicum designed to generate theatre created by an ensemble with particular emphasis upon the analysis of text. Students will explore and analyze the script and its author. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell’arte. Audition may be required. A maximum of four units may be used for major credit. (Cross-listed with ETHN 146A.) ","edges_from":[],"edges_to":[],"id":3340,"label":"TDAC 120","title":"Ensemble (4)"},{"dept":"BIPN","description":"Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the","edges_from":[],"edges_to":[],"id":3341,"label":"BIPN 194","title":"Advanced Topics in Modern Biology: Physiology and Neuroscience (2)"},{"dept":"PHYS","description":"Physics of the solid-state. Binding mechanisms, crystal structures and symmetries, diffraction, reciprocal space, phonons, free and nearly free electron models, energy bands, solid-state thermodynamics, kinetic theory and transport, semiconductors. ","edges_from":[200,199,3343],"edges_to":[3344],"id":3342,"label":"PHYS 152A","title":"Condensed Matter Physics (4)"},{"dept":"CHEM","description":"","edges_from":[33,578,215,30,135],"edges_to":[4724,3342,4727],"id":3343,"label":"CHEM 130","title":""},{"dept":"PHYS","description":"Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ","edges_from":[3342],"edges_to":[],"id":3344,"label":"PHYS 152B","title":"Electronic Materials (4)"},{"dept":"ENG","description":"Offered in the fall quarter, ENG 1 focuses on study skills, academic planning, time management, and the use of campus and community resources to help achieve academic, personal, and professional goals. It also presents engineering both as a field of study and as a profession. Activities include presentations by student organization officers and various UC San Diego organizations. Students may not receive credit for both ENG 1 and ECE 1A.","edges_from":[],"edges_to":[],"id":3345,"label":"ENG 1","title":"Orientation to Engineering I (1)"},{"dept":"ENG","description":"Offered in the spring quarter, ENG 3 focuses on leadership, engineering as a profession, personal and professional development, ethics, preparation for graduate school, resume development, and job offer evaluation. Activities include presentations by UC San Diego staff and panel discussions with practicing professionals from industry. Students may not receive credit for both ENG 3 and ECE 1C.","edges_from":[],"edges_to":[],"id":3346,"label":"ENG 3","title":"Orientation to Engineering III (1)"},{"dept":"ENG","description":"Academic and personal planning, time management, study skills, and paths to personal growth. Activities include individual and collaborative exercises, self-assessments, maintenance of a personal journal, and a final project.","edges_from":[],"edges_to":[],"id":3347,"label":"ENG 2","title":"Orientation to Engineering II (1)"},{"dept":"EDS","description":"in ASL-English Bilingual Education (4)","edges_from":[],"edges_to":[],"id":3348,"label":"EDS 240B","title":"Research"},{"dept":"MDE","description":"This course is a seminar series with invited clinician speakers intended to address needs and opportunities for meaningful application of engineering principles in clinical practice, with emphasis on next generation medical devices. ","edges_from":[],"edges_to":[],"id":3349,"label":"MDE 210","title":"Medical Devices: Clinical Perspectives (4)"},{"dept":"MATS","description":"Topics include phase equilibria and crystallography, defects and thermodynamics (Kröger-Vink Notation), glass science, electrical and ionic transport behavior, Brouwer diagrams, powder synthesis and compaction, sintering theory and gain growth, mechanical, optical, magnetic, electrical properties, fuel cells. ","edges_from":[],"edges_to":[],"id":3350,"label":"MATS 236","title":"Advanced Ceramic (4)"},{"dept":"ECE","description":"Lab-based course. Students will learn how to prototype a mechatronic solution. Topics include: cheap/accessible materials and parts; suppliers; fast prototyping techniques; useful electronic sketches and system integration shortcuts. Students will learn to materialize their electromechanical ideas and make design decisions to minimize cost, improve functionality/robustness. Labs will culminate toward a fully functional robot prototype for demonstration. ","edges_from":[3352],"edges_to":[],"id":3351,"label":"ECE 115","title":"Fast Prototyping (4)"},{"dept":"ECE","description":"","edges_from":[393,394,395,221],"edges_to":[3890,3351],"id":3352,"label":"ECE 16","title":""},{"dept":"PHIL","description":"Philosophical problems in the development of modern physics, such as the philosophy of space and time, the epistemology of geometry, the philosophical significance of Einstein’s theory of relativity, the interpretation of quantum mechanics, and the significance of modern cosmology. ","edges_from":[],"edges_to":[],"id":3353,"label":"PHIL 146","title":"Philosophy of Physics (4)"},{"dept":"MATS","description":"Main focus is the large deformations and instabilities in soft materials, such as elastomers, gels, and biomaterials. Some contents in thermodynamics and finite deformation theory are reviewed and summarized. Fundamental theories are applied to study the mechanics of gels, electroactive polymers, and biomaterials. This course intends to use soft material as an example to illustrate how to study the interaction between mechanics and other fields in materials (e.g., electric field, chemical field). Students may not receive credit for both MAE 276 and MATS 231. ","edges_from":[3355],"edges_to":[],"id":3354,"label":"MATS 231","title":"Mechanics of Soft Materials (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3354],"id":3355,"label":"MAE 276","title":""},{"dept":"BENG","description":"Principles and technologies for using genomic information for biomedical applications. Technologies will be introduced progressively, from DNA to RNA to protein to whole cell systems. The integration of biology, chemistry, engineering, and computation will be stressed. Topics include technology for the genome, DNA chips, RNA technologies, proteomic technologies, aphysiomic and phenomic technologies, and analysis of cell function. ","edges_from":[2056,411,3357],"edges_to":[],"id":3356,"label":"BENG 183","title":"Applied Genomic Technologies (4)"},{"dept":"BICD","description":"","edges_from":[1193,410],"edges_to":[3356],"id":3357,"label":"BICD 110","title":""},{"dept":"POLI","description":"Introduction to the study of law and courts as political institutions and judges as political actors, including the role of the judiciary in our constitutional system and decision making both within the Supreme Court and within the judicial hierarchy.","edges_from":[],"edges_to":[],"id":3358,"label":"POLI 104D","title":"Judicial Politics (4)"},{"dept":"SE","description":"Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. ","edges_from":[1785],"edges_to":[],"id":3359,"label":"SE 184","title":"Ground Improvement (4)"},{"dept":"POLI","description":"to Political Science: International Relations (4)","edges_from":[],"edges_to":[],"id":3360,"label":"POLI 12 or 12D","title":"Introduction"},{"dept":"SOCI","description":"Modern Jewish Societies and Israeli Society (4)","edges_from":[],"edges_to":[],"id":3361,"label":"SOCI 188F","title":""},{"dept":"HIEA","description":"This course provides an overview of Southeast Asian culture and history from 800 to the age of imperialism. It addresses regional geography, diversity, religion, political and social structures, mercantile and cultural ties abroad, the arrival of Islam, and the region’s changing relationship with European and Asian power. Students must apply and be accepted into the Global Seminars Program.","edges_from":[],"edges_to":[],"id":3362,"label":"HIEA 139GS","title":"An Introduction to Southeast Asia (circa 800–1900) (4)"},{"dept":"MAE","description":"Linear wave propagation; plane waves; reflection and refraction; dispersion induced by geometry and by material properties. Application of integral transform methods. Selected topics in nonlinear elastic, anelastic, and anisotropic wave propagation. ","edges_from":[3364,3365,3366],"edges_to":[],"id":3363,"label":"MAE 238","title":"Stress Waves in Solids (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[5809,3363],"id":3364,"label":"MAE 231C","title":""},{"dept":"MAE","description":"","edges_from":[986,3366,5422],"edges_to":[5808,5809,3363],"id":3365,"label":"MAE 231B","title":""},{"dept":"MAE","description":"","edges_from":[],"edges_to":[5808,5809,3363,3365],"id":3366,"label":"MAE 231A","title":""},{"dept":"HILA","description":"The course surveys Chile’s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his/her own choosing and develop the topic for class presentation and a final paper. Graduate students are expected to submit a more substantial piece of work. ","edges_from":[],"edges_to":[],"id":3367,"label":"HILA 163/263","title":"The History of Chile 1880–Present (4)"},{"dept":"EDS","description":"Directed research on dissertation topic for students who have been admitted to candidacy for the EdD or PhD program. May be taken for credit up to four times for a maximum of forty-eight units. ","edges_from":[],"edges_to":[],"id":3368,"label":"EDS 299","title":"Dissertation Research (1–12)"},{"dept":"POLI","description":"Course looks at elections in consolidating democracies with an eye to evaluating existing theories of elections with new data. Also explores new empirical patterns in countries around the world, especially Africa, Latin America, Eastern Europe, and the Soviet successor states. ","edges_from":[],"edges_to":[],"id":3369,"label":"POLI 224A","title":"Elections in Consolidating Democracies (4)"},{"dept":"ECE","description":"Course participants will explore new methods for robotics, particularly toward enabling robot manipulators in complex environments. This course is structured to rapidly consider the previous techniques in robot manipulation to date and explore methods in reinforcement learning to solve open problems in robot manipulation. Topics will review kinematics, dynamics, low-level control and motion planning, and machine learning approaches. ","edges_from":[2905],"edges_to":[],"id":3370,"label":"ECE 276C","title":"Robot Reinforcement Learning (4)"},{"dept":"POLI","description":"(Same as USP 115) This course examines how","edges_from":[],"edges_to":[],"id":3371,"label":"POLI 103C","title":"Politics and Policymaking in San Diego (4)"},{"dept":"GPEC","description":"This course covers the applied practice of quantitative impact evaluation. The benchmark methodology will be randomized controlled trials. The broader set of nonexperimental tools will be understood through the ways they differ from random assignment. Practical issues in research and survey design will be discussed. Renumbered from IRGN 464. Students may not receive credit for GPEC 464 and IRGN 464. ","edges_from":[1840,1841,1828,3373],"edges_to":[],"id":3372,"label":"GPEC 464","title":"Designing Field Experiments (4)"},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[3372],"id":3373,"label":"GPCO 468","title":""},{"dept":"MUS","description":"Music of the African Diaspora: Special Topics Seminar (4)","edges_from":[],"edges_to":[],"id":3374,"label":"MUS 150","title":"Jazz and the"},{"dept":"GPEC","description":"This course applies theoretical frameworks in microeconomics, international economics, and economic development to study comparative economic development and current issues of economics in Southeast Asia. Topics include economic growth, crises, development mechanisms, households, firms, governments, and institutional foundations. Renumbered from IRGN 462. Students may not receive credit for GPEC 462 and IRGN 462. May be coscheduled with GPEC 262. ","edges_from":[2981,2983],"edges_to":[],"id":3375,"label":"GPEC 462","title":"Southeast Asian Economies (4)"},{"dept":"MUS","description":"Examination of hip-hop’s music, technology, lyrics, and its influence in graffiti, film, music video, fiction, advertising, gender, corporate investment, government and censorship with a critical focus on race, gender, popular culture, and the politics of creative expression. (Cross-listed with ETHN 128.) ","edges_from":[],"edges_to":[],"id":3376,"label":"MUS 152","title":"Hip Hop: The Politics of Culture (4)"},{"dept":"MUS","description":"Examination of media representations of African Americans from slavery to the present focusing on emergence and transmission of enduring stereotypes, their relationship to changing social, political, and economic frameworks, and African Americans’ responses to and interpretations of these mediated images. (Cross-listed with ETHN 164.) ","edges_from":[],"edges_to":[],"id":3377,"label":"MUS 153","title":"African Americans and the Mass Media (4)"},{"dept":"NANO","description":"This course illustrates how the ability to tailor the properties of nanomaterials can be used for designing powerful sensing and biosensing devices. Nanosensors based on metal nanoparticles, semiconductor nanowires and nanocrystals, and carbon nanotubes will be covered. ","edges_from":[],"edges_to":[],"id":3378,"label":"NANO 262","title":"Nanosensors (4)"},{"dept":"NANO","description":"The basis of magnetism: classical and quantum mechanical points of view. Introduction to thin film and nanomagnetism, including interfacial magnetism, coupling and magneto-transport. Application of nanomagnetism in devices including magnetic recording, MRAM, magnetic processing, and biomedical engineering. ","edges_from":[],"edges_to":[],"id":3379,"label":"NANO 263","title":"Magnetic Nanodevices (4)"},{"dept":"NANO","description":"Chemical reaction kinetics coupled with material and energy transport processes for fabrication of nanostructured materials and devices. Chemical vapor deposition, etching, and patterning of films. Nanoparticle, nanofiber, and nanotube growth. Theory, simulation, and reactor design. ","edges_from":[],"edges_to":[],"id":3380,"label":"NANO 260","title":"Nanofabrication Reaction Engineering (4)"},{"dept":"NANO","description":"Examines the role nanotechnology will play in addressing the many scientific and engineering challenges for new energy production. Topics include nanotechnology’s role in improving photovoltaics, fuel-cells, batteries, energy transmission, and conversion of renewable (green) and nonrenewable sources. ","edges_from":[],"edges_to":[],"id":3381,"label":"NANO 261","title":"Nanoscale Energy Technology (4)"},{"dept":"NANO","description":"Application of quantum mechanical modeling methods (both solid state and computational chemistry) in the study of materials and nanostructures; density functional theory (DFT) and approximations; Hartree-Fock and beyond HF approximations; hybrid density functional theory; beyond DFT (GW, TDDFT); ab initio molecular dynamics; materials properties (mechanical, electrochemical, electronic, transport, nano-scale effects on properties) from quantum mechanical simulations; high-throughput computation. ","edges_from":[],"edges_to":[],"id":3382,"label":"NANO 266","title":"Quantum Mechanical Modeling of Materials and Nanostructures (4)"},{"dept":"SOCI","description":"Designed as a broad introduction to medicine as a social institution and its relationship to other institutions as well as its relation to society. It will make use of both micro and macro sociological work in this area and introduce students to sociological perspectives of contemporary health-care issues. Will not receive credit for SOCI 40 and SOCL 40.","edges_from":[],"edges_to":[],"id":3383,"label":"SOCI 40","title":"Sociology of Health-Care Issues (4)"},{"dept":"NANO","description":"Course covers concept in nano and solid-state chemistry for graduate students, with the objective of understanding nanomaterials from a chemical perspective. Topics include descriptive crystal chemistry, structure determination, free electron gas and dimensional solids, tight-binding approximation, band structure. Recommended preparation: Background equivalent to NANO 203.","edges_from":[],"edges_to":[],"id":3384,"label":"NANO 264","title":"Solid-State and Nanochemistry (4)"},{"dept":"GPEC","description":"Course provides an overview of health economics, focusing on developing countries. We will examine both how standard economics concepts and methods can be used to understand incentives and decision making in health-related transactions and their application to health policy. Renumbered from IRGN 468. Students may not receive credit for GPEC 468, IRGN 468, and IRGN 490, International Health Economics.","edges_from":[],"edges_to":[],"id":3385,"label":"GPEC 468","title":"International Health Economics (4)"},{"dept":"HIEU","description":"Greece and the Balkans during the Twentieth Century (4)","edges_from":[],"edges_to":[],"id":3386,"label":"HIEU 117B","title":""},{"dept":"HIEU","description":"Greece and the Balkans in the Age of Nationalism (4)","edges_from":[],"edges_to":[],"id":3387,"label":"HIEU 117A","title":""},{"dept":"ANSC","description":"A critical introduction to the study of cultural patterns of thought, action, and expression, in relation to language. Topics include semiotics and structuralism, cognition and categorization, universal vs. particulars, and ethnopoetics. ","edges_from":[],"edges_to":[],"id":3388,"label":"ANSC 117GS","title":"Language and (Multi)Culture (4)"},{"dept":"HITO","description":"Topics will examine lesbian, gay, bisexual, transgender, and queer identities, communities, culture, and politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units. ","edges_from":[],"edges_to":[],"id":3389,"label":"HITO 165/265","title":"Topics—LGBT History (4)"},{"dept":"HILA","description":"The social and political history of twentieth-century Mexico from the outbreak of revolution to the current “war on drugs.” Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.","edges_from":[],"edges_to":[],"id":3390,"label":"HILA 132GS","title":"Modern Mexico: From Revolution to Drug War Violence (4)"},{"dept":"MATH","description":"Techniques in Computational Mathematics III (4)","edges_from":[],"edges_to":[],"id":3391,"label":"MATH 273C","title":"Advanced"},{"dept":"MATH","description":"Techniques in Computational Mathematics II (4)","edges_from":[],"edges_to":[],"id":3392,"label":"MATH 273B","title":"Advanced"},{"dept":"MATH","description":"Techniques in Computational Mathematics I (4)","edges_from":[],"edges_to":[],"id":3393,"label":"MATH 273A","title":"Advanced"},{"dept":"LTAF","description":"Survey of various genres of African and oral literary traditions. Oral narrative genres, investigation of proverb, riddle, praise poetry, and epic. Development and use of a methodology to analyze aspects of performance, composition, and education in oral traditional systems.","edges_from":[],"edges_to":[],"id":3394,"label":"LTAF 110","title":"African Oral Literature (4)"},{"dept":"HIEU","description":"This course looks at the European and non-European in the early modern era. Topics will vary year to year. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":3395,"label":"HIEU 164/264","title":"Special Topics in Early Modern Europe (4)"},{"dept":"MATH","description":"Manifolds, differential forms, homology, deRham’s theorem. Riemannian geometry, harmonic forms. Lie groups and algebras, connections in bundles, homotopy sequence of a bundle, Chern classes. Applications selected from Hamiltonian and continuum mechanics, electromagnetism, thermodynamics, special and general relativity, Yang-Mills fields. ","edges_from":[],"edges_to":[],"id":3396,"label":"MATH 259A-B-C","title":"Geometrical Physics (4-4-4)"},{"dept":"LATI","description":"The course is designed for teaching assistants to learn effective teaching methods through supervision and mentorship by the faculty. Student will learn handling of discussions; preparation and grading of examinations and other written exercises; and student relations.","edges_from":[],"edges_to":[],"id":3397,"label":"LATI 500","title":"Teaching Apprenticeship (1-4)"},{"dept":"BIEB","description":"Laboratory exercises will introduce students to quantitative methods of visual, auditory, and olfactory signal analysis and to lab and field studies of animal signaling. ","edges_from":[3400,3399],"edges_to":[],"id":3398,"label":"BIEB 167","title":"Animal Communication Lab (4)"},{"dept":"BIEB","description":"","edges_from":[1424],"edges_to":[3398,3943],"id":3399,"label":"BIEB 102","title":""},{"dept":"BIEB","description":"","edges_from":[],"edges_to":[3398],"id":3400,"label":"BIEB 166","title":""},{"dept":"LTWL","description":"Studies and Literature: Film History (4)","edges_from":[],"edges_to":[],"id":3401,"label":"LTWL 180","title":"Film"},{"dept":"LTWL","description":"Studies and Literature: Film Movement (4)","edges_from":[],"edges_to":[],"id":3402,"label":"LTWL 181","title":"Film"},{"dept":"LTWL","description":"Studies and Literature: Director’s Work (4)","edges_from":[],"edges_to":[],"id":3403,"label":"LTWL 183","title":"Film"},{"dept":"LTWL","description":"Methods of literary analysis applied to the study of shots, sequences, poetics, and deep structure in filmic discourse. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":3404,"label":"LTWL 184","title":"Film Studies and Literature: Close Analysis of Filmic Text (4)"},{"dept":"PSYC","description":"Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":3405,"label":"PSYC 255A","title":"Advanced Topics in Biological Psychology I (1)"},{"dept":"PSYC","description":"Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":3406,"label":"PSYC 255B","title":"Advanced Topics in Biological Psychology II (1)"},{"dept":"PSYC","description":"Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":3407,"label":"PSYC 255C","title":"Advanced Topics in Biological Psychology III (1)"},{"dept":"ECON","description":"Empirical, case-based analysis requiring students to use economic theory from Econ 173A: Financial Markets and data to address real-world issues such as conducting market research, conducting discounted cash flow analyses, and applying the CAPM model to identify issues in investment management, and more. Presentation of student analyses both orally and in writing. Can be used in conjunction with another two-unit upper-division Econ course to meet major elective requirements by petition. ","edges_from":[1131],"edges_to":[],"id":3408,"label":"ECON 173AL","title":"Applied Finance Laboratory (2)"},{"dept":"ANTH","description":"Major primate field studies will be studied to illustrate common features of primate behavior and behavioral diversity. Topics will include communication, female hierarchies, protocultural behavior, social learning and tool use, play, cognition, and self-awareness.","edges_from":[],"edges_to":[],"id":3409,"label":"ANTH 42","title":"Primates in a Human-Dominated World (4)"},{"dept":"CSE","description":"Survey of testing and analysis methods. Introduction to advanced topics in area as well as traditional production methods. Topics include inspections and reviews, formal analysis, verification and validation standards, nonstatistical testing, statistical-testing and reliability models, coverage methods, testing and analysis tools, and organization management and planning. Methods special to special development approaches such as object-oriented testing will also be described. ","edges_from":[],"edges_to":[],"id":3410,"label":"CSE 211","title":"Software Testing and Analysis (4)"},{"dept":"CSE","description":"(Formerly CSE 264A.) General principles in modern software engineering. Both theoretical and practical topics are covered. Theoretical topics include proofs of correctness, programming language semantics, and theory of testing. Practical topics include structured programming, modularization techniques, design of languages for reliable programming, and software tools. ","edges_from":[3200,17,3412],"edges_to":[],"id":3411,"label":"CSE 210","title":"Principles of Software Engineering (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[3411],"id":3412,"label":"CSE 131A","title":""},{"dept":"CHEM","description":"Offers less-well prepared science majors the fundamental skills necessary to succeed in CHEM 6. Emphasizes quantitative problems. Topics include nomenclature, stoichiometry, basic reactions, bonding, and the periodic table. May not receive credit for both CHEM 4 and CHEM 11. Includes a laboratory/discussion each week. Recommended: concurrent enrollment in MATH 3C, 4C or 10A or higher.","edges_from":[],"edges_to":[],"id":3413,"label":"CHEM 4","title":"Basic Chemistry (4)"},{"dept":"TDGR","description":"An advanced course in the art of movement for the theatre, building on the knowledge gained in Theatre 213. (S/U grades only.) ","edges_from":[3415],"edges_to":[],"id":3414,"label":"TDGR 223A-B","title":"Movement for Theatre II (3-3)"},{"dept":"TDGR","description":"","edges_from":[],"edges_to":[3414],"id":3415,"label":"TDGR 223A","title":""},{"dept":"CSE","description":"New societal challenges, cultural values, and technological opportunities are changing design—and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. Cross-listed with COGS 229. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":3416,"label":"CSE 219","title":"Design at Large (1)"},{"dept":"CSE","description":"Topics in Software Engineering (4)","edges_from":[],"edges_to":[],"id":3417,"label":"CSE 218","title":"Advanced"},{"dept":"PHIL","description":"Contemporary debates about the study of the mind-brain as studied in one or more of the empirical cognitive sciences. May include questions about the different strategies of explanation invoked, the conceptions of representation employed, the connections between theoretical models developed. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":3418,"label":"PHIL 250A","title":"Philosophy of the Cognitive Sciences (4)"},{"dept":"LTFR","description":"A course on changing topics such as France during the 1960s, contemporary social and cultural structures (the school system, economy, political parties), myths of America in France, etc. May be repeated for credit as topics vary. ","edges_from":[1433,1434],"edges_to":[],"id":3419,"label":"LTFR 164","title":"Topics in Modern French Culture (4)"},{"dept":"ECE","description":"This seminar class will provide a broad review of current research topics in both electrical engineering and computer engineering. Typical subject areas are signal processing, VLSI design, electronic materials and devices, radio astronomy, communications, and optical computing. ","edges_from":[],"edges_to":[],"id":3420,"label":"ECE 90","title":"Undergraduate Seminar (1)"},{"dept":"MUS","description":"Continuation of MUS 160A or VIS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: MUS 160B, VIS 160B, ICAM 160B. ","edges_from":[1910,3422],"edges_to":[],"id":3421,"label":"MUS 160B","title":"Senior Project in Computing Arts II (4)"},{"dept":"MUS","description":"","edges_from":[1912,733,1222,1911],"edges_to":[3421,5661],"id":3422,"label":"MUS 160A","title":""},{"dept":"VIS","description":"European and American Art, ca. 1850 to 1960. Questions in Impressionism and Postimpressionism; The Cubist Revolution: Marcel Duchamp and the Anti-Formalist Tradition; American Modernism; Reckoning with Abstract Art; Issues of Dada and Surrealism; Soviet Avant-Gardes. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":3423,"label":"VIS 254","title":"Seminar in Modern Art (4)"},{"dept":"USP","description":"This course is designed to provide an introduction to the fundamentals of urban planning. It surveys important topics in urban planning, including economic development, urban design, transportation, environmental planning, housing, and the history of urban planning. ","edges_from":[],"edges_to":[],"id":3424,"label":"USP 100","title":"Introduction to Urban Planning (4)"},{"dept":"USP","description":"(Same as HIUS 129.) This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation. ","edges_from":[],"edges_to":[],"id":3425,"label":"USP 106","title":"The History of Race and Ethnicity in American Cities (4)"},{"dept":"USP","description":"(Same as POLI 102E.) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the “new” politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race. ","edges_from":[],"edges_to":[],"id":3426,"label":"USP 107","title":"Urban Politics (4)"},{"dept":"USP","description":"(Same as ETHN 105.) This course will examine the city as a crucible of ethnic identity exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present. ","edges_from":[],"edges_to":[],"id":3427,"label":"USP 104","title":"Ethnic Diversity and the City (4)"},{"dept":"USP","description":"(Same as Sociology 153.) Introduces students","edges_from":[],"edges_to":[],"id":3428,"label":"USP 105","title":"Urban Sociology (4)"},{"dept":"BGRD","description":"Presentation of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3429,"label":"BGRD 234","title":"Research Discussion in Cell Signaling in Drosophila (3)"},{"dept":"Linguistics/Portuguese","description":"Presentation and practice of the basic grammatical","edges_from":[],"edges_to":[],"id":3430,"label":"Linguistics/Portuguese (LIPO) 1CX","title":"Analysis of Portuguese (2.5)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3431,"label":"BGRD 230","title":"Research Discussion in Cell Signaling Pathways (1)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3432,"label":"BGRD 231","title":"Research Discussion in Nuclear Transport and Function (1)"},{"dept":"VIS","description":"Topics relating to the art and civilizations of Pre-Columbian Mexico and Central America, either specifically art historical (such as iconographic, formal, and stylistic analysis) or encompassing a spectrum of interdisciplinary and cultural/historical problems. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":3433,"label":"VIS 257","title":"Seminar in Meso-American Art (4)"},{"dept":"MUS","description":"Theoretical bases for analyzing musical sound. Approaches to perception and cognition, including psychoacoustics and information processing, both ecological and computational. Models of audition including Helmholtz’s consonance/dissonance theory and Bregman’s streaming model. Musical cognition theories of Lerdahl and Narmour. Neural network models of music perception and cognition. Models of rhythm. The problem of timbre and timbre perception. ","edges_from":[],"edges_to":[3439],"id":3434,"label":"MUS 270B","title":"Musical Cognitive Science (4)"},{"dept":"MUS","description":"Transformations in musical composition; series and intervallic structures; serial approaches to rhythm and dynamic. The stochastic music of Xenakis and Cage. Hiller’s automatic composition. Improvisational models. Computer analysis of musical style. Neurally inspired and other quasiparallel algorithms. ","edges_from":[],"edges_to":[3439],"id":3435,"label":"MUS 270C","title":"Compositional Algorithms (4)"},{"dept":"MUS","description":"Digital techniques for analysis, synthesis, and processing of musical sounds. Sampling theory. Software synthesis techniques. Digital filter design. The short-time Fourier transform. Numerical accuracy considerations. ","edges_from":[],"edges_to":[3439],"id":3436,"label":"MUS 270A","title":"Digital Audio Processing (4)"},{"dept":"MATH","description":"Introduction to the mathematics of financial models. Basic probabilistic models and associated mathematical machinery will be discussed, with emphasis on discrete time models. Concepts covered will include conditional expectation, martingales, optimal stopping, arbitrage pricing, hedging, European and American options. ","edges_from":[1995,135,1994,139,140,141],"edges_to":[],"id":3437,"label":"MATH 194","title":"The Mathematics of Finance (4)"},{"dept":"MATH","description":"Students will be responsible for and teach a class section of a lower-division mathematics course. They will also attend a weekly meeting on teaching methods. (Does not count toward a minor or major.) ","edges_from":[],"edges_to":[],"id":3438,"label":"MATH 195","title":"Introduction to Teaching in Mathematics (4)"},{"dept":"MUS","description":"Meetings on group basis with computer music faculty in support of individual student research projects. ","edges_from":[3434,3435,3436],"edges_to":[],"id":3439,"label":"MUS 270D","title":"Advanced Projects in Computer Music (4)"},{"dept":"MATH","description":"An enrichment program which provides work","edges_from":[],"edges_to":[],"id":3440,"label":"MATH 197","title":"Mathematics Internship (2 or 4)"},{"dept":"MATH","description":"Independent reading in advanced mathematics by individual students. Three periods. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3441,"label":"MATH 199","title":"Independent Study for Undergraduates (2 or 4)"},{"dept":"HIEU","description":"A lecture-discussion course that examines the origins and evolution of religious freedom from the age of Tudors to the adoption of the Bill of Rights in the United States in 1791. Course materials fee may be required. Students must apply and be accepted into the Global Seminar Program.","edges_from":[],"edges_to":[],"id":3442,"label":"HIEU 123GS","title":"Origins of Law and Religious Freedom in England and America, 1530–1971 (4)"},{"dept":"Soc/G","description":"Analysis of enduring topics in the study of race and ethnicity, including stratification, discrimination conflict, immigration, assimilation, and politics. Other topics include racial and ethnic identity and the social construction of race and ethnic categories. A special focus is on the role of ‘culture’ and ‘structure’ for explaining race/ethnic differentiation. ","edges_from":[],"edges_to":[],"id":3443,"label":"Soc/G 244","title":"Sociology of Race and Ethnicity (4)"},{"dept":"Soc/G","description":"This course studies social constructions of gender within economic opportunities and constraints. We read classical sociological theory on this topic; feminist critiques; and newer research on careers, organizations, and markets. ","edges_from":[],"edges_to":[],"id":3444,"label":"Soc/G 245","title":"Gender, Work, and the Economy (4)"},{"dept":"Soc/G","description":"Surveys major theories of the development and functioning of the welfare state, addressing the roles of economic development, political institutions, stratification, and culture. The course focuses on the development of the US social provision in comparison with other advanced industrial societies.","edges_from":[],"edges_to":[],"id":3445,"label":"Soc/G 246","title":"The Welfare State (4)"},{"dept":"Soc/G","description":"An examination of changing Western responses from the age of Bedlam to the age of Prozac. Topics include: the rise and decline of the total institution; the emergence of psychiatry; changing cultural meanings of madness; and the therapeutics of mental disorder. ","edges_from":[],"edges_to":[],"id":3446,"label":"Soc/G 247","title":"Madness and Society (4)"},{"dept":"Soc/G","description":"An examination of the sociological literature on social control, looking at theoretical developments over time and examining the contemporary literature dealing with social control in historical and comparative perspective. ","edges_from":[],"edges_to":[],"id":3447,"label":"Soc/G 243","title":"Sociology of Social Control (4)"},{"dept":"MATH","description":"First course in graduate-level number theory. Local fields: valuations and metrics on fields; discrete valuation rings and Dedekind domains; completions; ramification theory; main statements of local class field theory. ","edges_from":[2872],"edges_to":[3450],"id":3448,"label":"MATH 204A","title":"Number Theory I (4)"},{"dept":"MATH","description":"Third course in graduate-level number theory. Zeta and L-functions; Dedekind zeta functions; Artin L-functions; the class-number formula and generalizations; density theorems. ","edges_from":[3450],"edges_to":[],"id":3449,"label":"MATH 204C","title":"Number Theory III (4)"},{"dept":"MATH","description":"","edges_from":[3448],"edges_to":[3449],"id":3450,"label":"MATH 204B","title":""},{"dept":"SIO","description":"295LS. Introduction to Marine Biodiversity and Conservation—Lab (8)","edges_from":[],"edges_to":[],"id":3451,"label":"SIO","title":""},{"dept":"MGT","description":"This course is taken by students actively working on their dissertation","edges_from":[],"edges_to":[],"id":3452,"label":"MGT 296","title":"Dissertation (4–12)"},{"dept":"SOCI","description":"An examination of how the understanding of language can guide and inform sociological inquiries and a critical evaluation of key sociological approaches to language, including ethnomethodology, frame analysis, sociolinguistics, structuralism and poststructuralism, and others. ","edges_from":[3453,3454],"edges_to":[3453],"id":3453,"label":"SOCI 118E","title":"Sociology of Language (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[3453],"id":3454,"label":"SOCB 118L","title":""},{"dept":"MGT","description":"Each student who has not advanced to candidacy by June of the third year must enroll in and complete MGT 299 during the fall, winter, and spring quarters of the fourth year. ","edges_from":[],"edges_to":[],"id":3455,"label":"MGT 299","title":"Advanced Field Advising (4)"},{"dept":"LHCO","description":"The Independent Study Project (ISP) is the cornerstone of the MAS Program. Students will be involved in a high-level applied research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students’ work will be evaluated by a committee consisting of faculty and, when appropriate, industry advisers.\t\t","edges_from":[3457],"edges_to":[],"id":3456,"label":"LHCO 298","title":"Independent Study Project in the Management of Health Care (4)"},{"dept":"LHCO","description":"","edges_from":[],"edges_to":[3456],"id":3457,"label":"LHCO 218","title":""},{"dept":"ECE","description":"This course will introduce basic concepts","edges_from":[],"edges_to":[],"id":3458,"label":"ECE 172A","title":"Introduction to Intelligent Systems: Robotics and Machine Intelligence (4)"},{"dept":"LTWL","description":"Literary and socio-historical considerations of the diverse writings that developed into the New Testament. Topics include Jewish origins of the “Jesus movement” within Greco-Roman culture; varying patterns of belief/practice among earliest communities; oral tradition and development of canon.","edges_from":[],"edges_to":[],"id":3459,"label":"LTWL 158A","title":"Topics in the New Testament (4)"},{"dept":"LTWL","description":"Topics in Early Christian Texts and Cultures (4)","edges_from":[],"edges_to":[],"id":3460,"label":"LTWL 158B","title":""},{"dept":"LTWL","description":"A survey of the Christian texts that comprise the fatalities of the battles defining Christian canon: e.g., apocryphal acts, noncanonical gospels, and “Gnostic” texts. Considers the social communities, theological views, religious identities, and practices reflected in largely forgotten texts.","edges_from":[],"edges_to":[],"id":3461,"label":"LTWL 158C","title":"Topics in Other Christianities (4)"},{"dept":"COGR","description":"In this course language is broadly conceived as a medium of communication, expressed multimodally. Among the topics of this course are: origins of speech and gesture, culture and language, language and social practice, and language in performance. ","edges_from":[],"edges_to":[],"id":3462,"label":"COGR 258","title":"Language in Human Communication (4)"},{"dept":"FPM","description":"Clinical nutrition is the study of nutrition and diet as related to the prevention and treatment of human disease. Nutrition is an interdisciplinary field of study, built on a foundation of biomedical and behavioral sciences. This course emphasizes class discussion of clinical topics and assigned readings in current areas of research and practice (i.e., diet and cancer, vitamin and other diet supplements), with case studies and illustrative class exercises.","edges_from":[],"edges_to":[],"id":3463,"label":"FPM 233","title":"Clinical Nutrition (2)"},{"dept":"FPM","description":"","edges_from":[],"edges_to":[],"id":3464,"label":"FPM 231","title":"Exposure Assessment and Biomarkers in Epidemiology (2)"},{"dept":"COGR","description":"Course examines the historical impetus, development, and construction of “Third Cinema”—a particular style of media making in Africa, Latin America, and Asia. An interdisciplinary approach interrogates how Third Cinema influences world cinema of today. Additional screening session required. ","edges_from":[],"edges_to":[],"id":3465,"label":"COGR 250","title":"Third World Cinema Screening (4)"},{"dept":"COGR","description":"Theories of the media considered in a historical and comparative context from the rise of preprint reproduction technologies to the digital age. Focuses on communication processes and practices in terms of formality, technology, the politics of subjectivity, and institutions. ","edges_from":[],"edges_to":[],"id":3466,"label":"COGR 251","title":"Media Theory (4)"},{"dept":"COGR","description":"Seminar focuses on race as a social, phenomenal, historical, and political formation. The seminar will address the historical emergence and theorization of race and the contemporary ways in which race/racism is a modern principle of social division, exclusion, and political mobilization. ","edges_from":[],"edges_to":[],"id":3467,"label":"COGR 252","title":"Race and Racism (4)"},{"dept":"COGR","description":"Seminar will focus on music and sound as social, aesthetic, historical, can political formations and phenomena. The relationship between musical and extramusical forces will be examined. This course intensively addresses cultural politics of sound/music making, hearing and performance. ","edges_from":[],"edges_to":[],"id":3468,"label":"COGR 253","title":"Cultural Study of Music and Sound (4)"},{"dept":"COGR","description":"The conceptual and regulatory boundaries of intellectual property law are increasingly challenged by technological change and by ownership claims over non-Western forms of creativity. Course focuses on those challenges from three interrelated perspectives: historical, philosophical, and political. ","edges_from":[],"edges_to":[],"id":3469,"label":"COGR 254","title":"Intellectual Property (4)"},{"dept":"COGR","description":"Considers classical and contemporary texts in primarily western political thought with an eye toward understanding how such theory is and/or might be brought to bear in grounding different approaches and agendas in the study of communication. ","edges_from":[],"edges_to":[],"id":3470,"label":"COGR 255","title":"Studies in Political Theory (4)"},{"dept":"COGR","description":"This course provides an overview of intellectual and political thought developed through decolonization struggles in Africa and the Caribbean, and the subsequent emergence of postcoloniality from subaltern studies in the 1980s to contemporary work shaped by globalization and neoliberal philosophies. ","edges_from":[],"edges_to":[],"id":3471,"label":"COGR 256","title":"Postcolonial Theory (4)"},{"dept":"COGR","description":"Social theory forms the theoretical foundation for much work in communication, including political communication, questions of the public and public opinion, propaganda and ideology. The course will consider Marx, Weber, Durkheim, Simmel, Dewey, Habermas, the Frankfurt School and its critics. ","edges_from":[],"edges_to":[],"id":3472,"label":"COGR 257","title":"Communication and Social Theory (4)"},{"dept":"TDHD","description":"The study of dance forms from a global perspective. An analysis and understanding of international dance traditions and their connections to religion, ritual, folklore, custom, festive celebration, popular culture, art, and political movements. ","edges_from":[3474],"edges_to":[],"id":3473,"label":"TDHD 175","title":"Cultural Perspectives on Dance (4)"},{"dept":"TDTR","description":"","edges_from":[],"edges_to":[4424,4425,3473,3475,5751,3707],"id":3474,"label":"TDTR 10","title":""},{"dept":"TDHD","description":"An in-depth exposure to an important topic in dance history, theory, aesthetics, and criticism. Topics vary from quarter to quarter. ","edges_from":[3474],"edges_to":[],"id":3475,"label":"TDHD 176","title":"Dance History—Special Topics (4)"},{"dept":"CHEM","description":"Seminar series on the current topics in the field of environmental chemistry. Emphasis is on current research topics in atmospheric, oceanic, and geological environments. ","edges_from":[],"edges_to":[],"id":3476,"label":"CHEM 270A-B-C","title":"Current Topics in Environmental Chemistry (2-2-2)"},{"dept":"MUS","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in music (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":3477,"label":"MUS 192","title":"Senior Seminar in Music (1)"},{"dept":"TDPF","description":"(2–4)","edges_from":[],"edges_to":[5774],"id":3478,"label":"TDPF 162","title":"Studies in Performance Spring Production"},{"dept":"MUS","description":"Assisting in the instruction of an undergraduate music class under the direct and constant supervision of a faculty member. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3479,"label":"MUS 195","title":"Instructional Assistance (2)"},{"dept":"MAE","description":"Astrodynamics, orbital motion, perturbations, coordinate systems and frames of reference. Geosynchronous orbits, stationkeeping. Orbital maneuvers, fuel consumption, guidance systems. Observation instrument point, tracking, control. Basic rocket dynamics. Navigation, telemetry, re-entry, and aero-assisted maneuvers. Mission design. Students perform analyses based on mission requirements. ","edges_from":[],"edges_to":[],"id":3480,"label":"MAE 180A","title":"Spacecraft Guidance I (4)"},{"dept":"HUM","description":"Individually guided readings or projects in area of humanities not normally covered in standard curriculum. ","edges_from":[],"edges_to":[],"id":3481,"label":"HUM 199","title":"Special Studies (2–4)"},{"dept":"TDDE","description":"A hands-on course on the process of sound design from conception to planning and implementation. The course will concentrate equally on the technical and artistic aspects of the sound design process and will include a survey of modern audio technologies. ","edges_from":[128,3483,3484,3485],"edges_to":[3486],"id":3482,"label":"TDDE 141","title":"Theatre Process—Sound Design (4)"},{"dept":"TDPR","description":"","edges_from":[],"edges_to":[3482,4351],"id":3483,"label":"TDPR 5","title":""},{"dept":"TDPR","description":"","edges_from":[],"edges_to":[3482],"id":3484,"label":"TDPR 6","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[3482,5549],"id":3485,"label":"MUS 173","title":""},{"dept":"TDDE","description":"This course focuses on advancing students in their artistic and technical skills in sound design. A large-scale project will be identified with special attention given to text analysis and technical specification of the sound design. ","edges_from":[128,3482],"edges_to":[],"id":3486,"label":"TDDE 142","title":"Advanced Sound Design (4)"},{"dept":"LIGN","description":"How can we explain the difference between what is literally said versus what is actually conveyed in the language of law, politics, and advertising? How people’s ordinary command of language and their reasoning skills are used to manipulate them. ","edges_from":[],"edges_to":[],"id":3487,"label":"LIGN 176","title":"Language of Politics and Advertising (4)"},{"dept":"TDGE","description":"Students explore a variety of issues: screenwriting, directing, cinematography, and editing; the intersection of comedy and tragedy in Allen’s works; recurring themes; and critical responses. Students view thirteen films and write two three-page essays and one ten-page research paper. ","edges_from":[],"edges_to":[],"id":3488,"label":"TDGE 122","title":"The Films of Woody Allen (4)"},{"dept":"LIGN","description":"(Same as SOCI 116.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span, within ethnolinguistic minority communities in the United States, across sexual orientations and cultures. Recommended preparation: LIGN","edges_from":[],"edges_to":[],"id":3489,"label":"LIGN 174","title":"Gender and Language in Society (4)"},{"dept":"LIGN","description":"The study of language in its social context, with emphasis on the different types of linguistic variation and the principles underlying them. Dialects, registers, gender-based linguistic differences, multilingualism, pidginization and creolization, factors influencing linguistic choice, formal models of variation; emphasis is given both to socially determined differences within the United States and US ethnic groups and to cross-cultural differences in language use and variation. ","edges_from":[752],"edges_to":[],"id":3490,"label":"LIGN 175","title":"Sociolinguistics (4)"},{"dept":"TDGE","description":"This course will use a broad range of animation styles and genres to examine larger issues in art practice, focusing closely on the relationship between form and content, and how sound/set/costume/character design impacts narrative. ","edges_from":[],"edges_to":[],"id":3491,"label":"TDGE 126","title":"Storytelling and Design in Animation (4)"},{"dept":"TDGE","description":"Great films and the performance of the actors in them are analyzed in their historical, cinematic, or theatrical contexts. This course examines the actor’s contribution to classic cinema and the social and aesthetic forces at work in film. ","edges_from":[],"edges_to":[],"id":3492,"label":"TDGE 125","title":"Topics in Theatre and Film (4)"},{"dept":"TDGE","description":"A select survey of eight to ten exceptional offbeat, frequently low-budget films from the last sixty years that have attained cult status. The mix includes Tod Browning’s Freaks (1932) to John Water’s Pink Flamingos (1973). Aspects of bad taste, cinematic irony, and theatrical invention will be highlighted. ","edges_from":[],"edges_to":[],"id":3493,"label":"TDGE 124","title":"Cult Films: Weirdly Dramatic (4)"},{"dept":"COGS","description":"A comprehensive survey of theory, method and research findings","edges_from":[],"edges_to":[],"id":3494,"label":"COGS 156","title":"Language Development (4)"},{"dept":"COGS","description":"Explores how humans (and other species) process music, including pitch, meter, emotion, motor aspects, links to language, brain activity. Students should have experience reading musical notation. ","edges_from":[3164,3166,3079],"edges_to":[],"id":3495,"label":"COGS 157","title":"Music and the Mind (4)"},{"dept":"COGS","description":"Neural bases of language use in normal adults, and neural bases of language and communication development in normal children. Evidence on the language and communication deficits in adults (especially aphasia and dementia) and children (specific language impairment, focal brain injury, retardation, and autism). ","edges_from":[],"edges_to":[],"id":3496,"label":"COGS 154","title":"Communication Disorders in Children and Adults (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3497,"label":"LTEN 169","title":"Topics in Latino/a Literature (4)"},{"dept":"COGS","description":"How the human mind/brain creates mathematics: embodiment, innovation, and creativity. The emergence and power of abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero. Cognitive approaches that connect mathematics to human thought in general. ","edges_from":[3499,3500,238],"edges_to":[],"id":3498,"label":"COGS 152","title":"Cognitive Foundations of Mathematics (4)"},{"dept":"PHIL","description":"","edges_from":[],"edges_to":[3498],"id":3499,"label":"PHIL 1","title":""},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[3498],"id":3500,"label":"PSYC 1","title":""},{"dept":"COGS","description":"","edges_from":[],"edges_to":[],"id":3501,"label":"COGS 153","title":"Language Comprehension (4)"},{"dept":"LIGN","description":"This course will investigate topics in second language acquisition including the critical period, the processing and neural representation of language in bilinguals, theories of second language acquisition and creolization, exceptional language learners, and parallels with first language acquisition. ","edges_from":[752],"edges_to":[],"id":3502,"label":"LIGN 179","title":"Second Language Acquisition Research (4)"},{"dept":"EDS","description":"to Academic Tutoring at Charter Schools (4)","edges_from":[],"edges_to":[4939,4012,4013],"id":3503,"label":"EDS 138","title":"Introduction"},{"dept":"ETHN","description":"This seminar examines critical engagements between scholarship from postcolonial, feminist and other radical Marxist traditions. We focus on philosophical and political debates stemming from issues of race and gender, tracing them in Marx’s texts and their historical contexts. ","edges_from":[],"edges_to":[],"id":3504,"label":"ETHN 275","title":"Marxist Thought (4)"},{"dept":"ETHN","description":"This seminar will explore indigenous epistemologies, their ontological dimensions, the methodological issues surrounding related research, and their significance in relation to the production of knowledge and the histories, presents, and futures of Native American and Indigenous people. ","edges_from":[],"edges_to":[],"id":3505,"label":"ETHN 270","title":"Indigenous Epistemologies and their Disruptions (4)"},{"dept":"LTLA","description":"Study of Latin, including grammar and reading. ","edges_from":[3507],"edges_to":[4134],"id":3506,"label":"LTLA 3","title":"Intermediate Latin (II) (4)"},{"dept":"LTLA","description":"","edges_from":[3508],"edges_to":[3506],"id":3507,"label":"LTLA 2","title":""},{"dept":"LTLA","description":"","edges_from":[],"edges_to":[3507],"id":3508,"label":"LTLA 1","title":""},{"dept":"EDS","description":"The “Hands-On Lab” enables UC San Diego students to practice inquiry-based instructional strategies with elementary or high school students in authentic laboratory situations supervised be EDS faculty members. The hands-on lessons provide early teaching experience in science for undergraduates exploring teaching as a career. All lessons are based on the California content standards in science. Recommended preparation: knowledge of STEM field subject matter. ","edges_from":[],"edges_to":[],"id":3509,"label":"EDS 132","title":"Hands-On Seminar (4)"},{"dept":"EDS","description":"to Discipline-Specific Teaching and Learning (4)","edges_from":[],"edges_to":[4012,4013],"id":3510,"label":"EDS 137","title":"Introduction"},{"dept":"ECE","description":"Congestion control, convex programming and dual controller, fair end-end rate allocation, max-min fair vs. proportional fairness. Markov Chains and recurrence, Lyapunov-Foster theorem, rate stable switch scheduling, stable (back-pressure) routing versus minimum delay routing versus shortest path routing. ","edges_from":[],"edges_to":[3513],"id":3511,"label":"ECE 257A","title":"Multiuser Communication Systems (4)"},{"dept":"ECE","description":"Elements of spatial point processes. Spatial","edges_from":[],"edges_to":[],"id":3512,"label":"ECE 257C","title":"Stochastic Wireless Networks Models (4)"},{"dept":"ECE","description":"This course will focus on the principles, architectures, and analytical methodologies for design of multiuser wireless networks. Topics to be covered include cellular approaches, call processing, digital modulation, MIMO technology, broadband networks, ad-hoc networks, and wireless packet access. (Recommended prerequisites: ECE 159A and 154B, or equivalent.) ","edges_from":[3511],"edges_to":[],"id":3513,"label":"ECE 257B","title":"Principles of Wireless Networks (4)"},{"dept":"LIGN","description":"An overview of sign language research in terms of how it informs language theory. Topics include the structure of ASL, acquisition, psycholinguistic and neurolinguistic processing of sign language in comparison to spoken language, critical period effects, and language evolution. ","edges_from":[],"edges_to":[],"id":3514,"label":"LIGN 280","title":"Sign Language Research (4)"},{"dept":"LIGN","description":"Children’s first language acquisition and how it illuminates linguistic, cognitive, and neurolingusitic theory. Topics include past and current research with a focus on design, methodology, and data analysis in child language.","edges_from":[],"edges_to":[],"id":3515,"label":"LIGN 281","title":"Language Acquisition Theory and Research (4)"},{"dept":"LIGN","description":"How the environment and the biology of language, including sensory motor modality and neural development, affect language development. Topics include the paradigms used to study the critical period for language.","edges_from":[],"edges_to":[],"id":3516,"label":"LIGN 282","title":"Biology and Environment in Language Acquisition (4)"},{"dept":"LIGN","description":"(Same as Psychology 260.) This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language.","edges_from":[],"edges_to":[],"id":3517,"label":"LIGN 283","title":"Language and Conceptual Development (4)"},{"dept":"HILA","description":"Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptation, late colonial growth, and the onset of independence.","edges_from":[],"edges_to":[],"id":3518,"label":"HILA 100D","title":"Latin America: Colonial Transformation (4)"},{"dept":"ETHN","description":"(Cross-listed with USP 132.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived.","edges_from":[],"edges_to":[],"id":3519,"label":"ETHN 188","title":"African Americans, Religion, and the City (4)"},{"dept":"ETHN","description":"A reading and discussion course that explores special topics in ethnic studies. Themes will vary from quarter to quarter; therefore, course may be repeated three times as long as topics vary.","edges_from":[],"edges_to":[],"id":3520,"label":"ETHN 189","title":"Special Topics in Ethnic Studies (4)"},{"dept":"ETHN","description":"An analysis of black cultural and intellectual","edges_from":[],"edges_to":[],"id":3521,"label":"ETHN 184","title":"Black Intellectuals in the Twentieth Century (4)"},{"dept":"ETHN","description":"While discourse analysis has transformed numerous disciplines, a gap separates perspectives that envision discourse as practices that construct inequality from approaches that treat discourse as everyday language. This course engages both perspectives critically in analyzing law, medicine, and popular culture.","edges_from":[],"edges_to":[],"id":3522,"label":"ETHN 185","title":"Discourse, Power, and Inequality (4)"},{"dept":"ETHN","description":"(Cross-listed with CGS 187.) The construction and articulation of Latinx sexualities will be explored in this course through interdisciplinary and comparative perspectives. We will discuss how immigration, class, and norms of ethnicity, race, and gender determine the construction, expression, and reframing of Latinx sexualities.","edges_from":[],"edges_to":[],"id":3523,"label":"ETHN 187","title":"Latinx Sexualities (4)"},{"dept":"ETHN","description":"(Cross-listed with HIUS 167.) This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences.","edges_from":[],"edges_to":[],"id":3524,"label":"ETHN 180","title":"Topics in Mexican American History (4)"},{"dept":"ETHN","description":"This course focuses on race, gender, and sexuality in twentieth- and twenty-first-century fantasy and science fiction. We will study literature, film, music, television, video games, and the Internet in order to situate such speculative visions in historical and transmedia contexts.","edges_from":[],"edges_to":[],"id":3525,"label":"ETHN 182","title":"Race, Gender, and Sexuality in Fantasy and Science Fiction (4)"},{"dept":"ETHN","description":"(Cross-listed with CGS 114.) Gender is often neglected in studies of ethnic/racial politics. This seminar explores the relationship of race, ethnicity, class, and gender by examining the participation of working class women of color in community politics and how they challenge mainstream political theory.","edges_from":[],"edges_to":[],"id":3526,"label":"ETHN 183","title":"Gender, Race, Ethnicity, and Class (4)"},{"dept":"MAE","description":"This course covers topics in energy conservation, heat conduction, convection, radiation, heat transfer in ducts, external boundary layer, and heat exchangers. ","edges_from":[],"edges_to":[],"id":3527,"label":"MAE 202","title":"Thermal Processes (4)"},{"dept":"MAE","description":"This course covers topics in kinematics, conservation laws, constitutive equation of linear elastic solids, plasticity, and viscoelasticity. ","edges_from":[],"edges_to":[],"id":3528,"label":"MAE 203","title":"Solid Mechanics and Materials (4)"},{"dept":"BENG","description":"This lab course provides hands-on experience with MR physics, data acquisition, image formation, and data analysis, using a human MRI scanner. It will cover basic principles of MRI and key applications, including scanner hardware, spin echoes, gradient echoes, echo-planar imaging, MR angiography, fMRI, and perfusion imaging. This will be accomplished through one hour of formal instruction and four hours of scanner time per week. Each week will cover one topic, and grading will be based on lab reports. The last two weeks are reserved for a final project, which can be student initiated. ","edges_from":[3530],"edges_to":[],"id":3529,"label":"BENG 278/RAD 278","title":"Magnetic Resonance Imaging (4)"},{"dept":"BENG","description":"","edges_from":[],"edges_to":[3529],"id":3530,"label":"BENG 280A","title":""},{"dept":"MAE","description":"This course covers topics in kinematics, equations of motion, dimensional analysis, laminar and irrotational flow, vorticity dynamics, and boundary layers. ","edges_from":[],"edges_to":[],"id":3531,"label":"MAE 201","title":"Mechanics of Fluids (4)"},{"dept":"MAE","description":"This course covers topics in primary energy sources, availability and variability, fossil fuels, renewables and nuclear, energy dependent energy sources, heat engine, energy conservation, exergy, transportation, air pollution, and climate change. ","edges_from":[],"edges_to":[],"id":3532,"label":"MAE 206","title":"Energy Systems (4)"},{"dept":"MAE","description":"A course to be given at the discretion of the faculty in which topics of current interest in engineering will be presented. ","edges_from":[],"edges_to":[],"id":3533,"label":"MAE 207","title":"Topics in Engineering Science (4)"},{"dept":"MAE","description":"This course covers topics in robotics, dynamics, kinematics, mechatronics, control, locomotion, and manipulation. ","edges_from":[],"edges_to":[],"id":3534,"label":"MAE 204","title":"Robotics (4)"},{"dept":"MAE","description":"Each graduate student in MAE is expected to attend one seminar per quarter, of his or her choice, dealing with current topics in fluid mechanics, solid mechanics, applied plasma physics and fusion, chemical engineering, applied ocean sciences, energy and combustion, environmental engineering, or materials science, and dynamics and controls. Topics will vary. (S/U grades only)","edges_from":[],"edges_to":[],"id":3535,"label":"MAE 205","title":"Graduate Seminar (1)"},{"dept":"EDS","description":"This first course in a three-course series","edges_from":[],"edges_to":[],"id":3536,"label":"EDS 288A","title":"Advanced Research and Evaluation Methods A—Quantitative Methods (4)"},{"dept":"ANSC","description":"In this course, we will examine the dominant human rights framework to think about one issue that has escaped its purview: environmental justice. If we all share a common planet, is there a universal right to a clean environment? Why are the effects of pollution and climate change unequally distributed among the world’s peoples? Can human rights norms serve as effective tools to fight the unequal effects of climate change and contamination? Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":3537,"label":"ANSC 193GS","title":"Human Rights and Environmental Justice (4)"},{"dept":"EDS","description":"Research and Evaluation Methods C—Quantitative Methods (4)","edges_from":[],"edges_to":[],"id":3538,"label":"EDS 288C","title":"Advanced"},{"dept":"ECE","description":"An introduction to electrical and computer engineering. Topics include circuit theory, assembly, and testing, embedded systems programming and debugging, transducer mechanisms and interfacing transducers, signals and systems theory, digital signal processing, and modular design techniques. ","edges_from":[],"edges_to":[],"id":3539,"label":"ECE 5","title":"Introduction to Electrical and Computer Engineering (4)"},{"dept":"CENG","description":"Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only. ","edges_from":[],"edges_to":[],"id":3540,"label":"CENG 296","title":"Independent Study in Chemical Engineering (4)"},{"dept":"CHIN","description":"to Classical Chinese—Advanced I (4)","edges_from":[],"edges_to":[],"id":3541,"label":"CHIN 182A","title":"Introduction"},{"dept":"CHIN","description":"to Classical Chinese—Advanced II (4)","edges_from":[],"edges_to":[],"id":3542,"label":"CHIN 182B","title":"Introduction"},{"dept":"CHIN","description":"to Classical Chinese—Advanced III (4)","edges_from":[],"edges_to":[],"id":3543,"label":"CHIN 182C","title":"Introduction"},{"dept":"ANAR","description":"Introduction to the archaeology, history, art, architecture, and hieroglyphs of ancient Egypt. Taught in the field through visits to important temples, pyramids, palaces, and museums in Egypt. Complementary to ANAR 144. Course/program fees may apply. ","edges_from":[],"edges_to":[],"id":3544,"label":"ANAR 145S","title":"Study Abroad: Egypt of the Pharaohs (4)"},{"dept":"ANBI","description":"132. Conservation and the Human Predicament (4)","edges_from":[],"edges_to":[],"id":3545,"label":"ANBI","title":""},{"dept":"TDAC","description":"An exploration of the wide array of physical skills necessary for the actor. Using techniques derived from mime, clowning, sports, acrobatics, and improvisation, students will investigate their individual physical potential as well as their sense of creativity and imagination. ","edges_from":[3547],"edges_to":[],"id":3546,"label":"TDAC 115","title":"Movement for Actors (4)"},{"dept":"TDAC","description":"","edges_from":[1105],"edges_to":[3546,452,3550],"id":3547,"label":"TDAC 101","title":""},{"dept":"TDAC","description":"An in-depth study seminar focused on special issues in acting as they relate to contemporary theatre. Of particular interest to students who plan to pursue a career in this area of theatre. ","edges_from":[452],"edges_to":[],"id":3548,"label":"TDAC 112","title":"Senior Seminar in Acting (4)"},{"dept":"TDAC","description":"This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will perform in simulated studio setting on camera. ","edges_from":[452],"edges_to":[],"id":3549,"label":"TDAC 110","title":"Acting for the Camera (4)"},{"dept":"TDAC","description":"Intensive workshop for actors and directors designed to “free the voice,” with special emphasis on characteristics and vocal flexibility in a wide range of dramatic texts. This proven method combines experimental and didactic learning with selected exercises, texts, tapes, films, and total time commitment. ","edges_from":[3547],"edges_to":[],"id":3550,"label":"TDAC 111","title":"Freeing the Voice (4)"},{"dept":"HIEU","description":"This course examines the history of Greece and the Balkans (1914–2001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD, or HIEU 116CD and HIEU 117B.","edges_from":[],"edges_to":[],"id":3551,"label":"HIEU 116CD","title":"Greece and the Balkans during the Twentieth Century (4)"},{"dept":"TDGR","description":"Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ","edges_from":[],"edges_to":[],"id":3552,"label":"TDGR 225A-B","title":"Singing for the Actor II (1-1)"},{"dept":"HIAF","description":"West Africa from the nineteenth century onwards and examines the broad outlines of historical developments in the sub-region through the twentieth century, including such themes as religious, political, and social changes.","edges_from":[],"edges_to":[],"id":3553,"label":"HIAF 112","title":"West Africa since 1880 (4)"},{"dept":"HIAF","description":"Wars and the Global Order: Africa and Asia (4)","edges_from":[],"edges_to":[],"id":3554,"label":"HIAF 113","title":"Small"},{"dept":"HIAF","description":"A survey of African history dealing with the European scramble for territory, primary resistance movements, the rise of nationalism and the response of metropolitan powers, the transfer of power, self-rule and military coups, and the quest for identity and unity.","edges_from":[],"edges_to":[],"id":3555,"label":"HIAF 111","title":"Modern Africa since 1880 (4)"},{"dept":"ETHN","description":"A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations.","edges_from":[],"edges_to":[],"id":3556,"label":"ETHN 500","title":"Apprentice Teaching in Ethnic Studies (4)"},{"dept":"MUS","description":"First part in composition course sequence. Individual projects will be reviewed in seminar. Techniques of instrumentation will be developed through examination of scores and creative application. Assignments will include short exercises and analysis, and final project for standard ensemble. ","edges_from":[3307],"edges_to":[3560],"id":3557,"label":"MUS 103A","title":"Seminar in Composition I (4)"},{"dept":"VIS","description":"A critical survey outlining the major avant-gardes after 1900: fauvism, cubism, metaphysical painting, futurism, Dadaism, surrealism, neoplasticism, purism, the Soviet avant-garde, socialist realism, and American art before abstract expressionism. Recommended preparation: VIS 20 or 22 recommended. ","edges_from":[],"edges_to":[],"id":3558,"label":"VIS 125A","title":"Twentieth-Century Art (4)"},{"dept":"MUS","description":"Third part in composition course sequence. A mixture of individual lessons as well as group meetings, with discussion of topics germane to the development of composers, including musical aesthetics and contemporary orchestration techniques. Final performance of students’ work will take place at the end of the quarter. ","edges_from":[3560],"edges_to":[],"id":3559,"label":"MUS 103C","title":"Seminar in Composition III (4)"},{"dept":"MUS","description":"","edges_from":[3557],"edges_to":[3559],"id":3560,"label":"MUS 103B","title":""},{"dept":"PHIL","description":"Introduction to Mexican philosophy with discussion of the work of such figures as Las Casas, Sor Juana Ines de la Cruz, Vasconcelos, Uranga, Zea, Villoro, Dussel, Hierro, Lara, and Hurtado. Topics may include historical movements, such as scholasticism, positivism, Mexican existentialism, and indigenous thought, as well as contemporary developments and the relationship to philosophy in the United States, Europe, and elsewhere.","edges_from":[],"edges_to":[],"id":3561,"label":"PHIL 155","title":"Mexican Philosophy (4)"},{"dept":"ECE","description":"General introduction to planetary bodies,","edges_from":[],"edges_to":[],"id":3562,"label":"ECE 120","title":"Solar System Physics (4)"},{"dept":"ECE","description":"The electromagnetic and systems engineering of radio antennas for terrestrial wireless and satellite communications. Antenna impedance, beam pattern, gain, and polarization. Dipoles, monopoles, paraboloids, phased arrays. Power and noise budgets for communication links. Atmospheric propagation and multipath. ","edges_from":[296],"edges_to":[],"id":3563,"label":"ECE 123","title":"Antenna Systems Engineering (4)"},{"dept":"MATH","description":"Calculus of functions of several variables,","edges_from":[],"edges_to":[],"id":3564,"label":"MATH 150B","title":"Calculus on Manifolds (4)"},{"dept":"CENG","description":"Principles of analysis and design of systems","edges_from":[],"edges_to":[],"id":3565,"label":"CENG 122","title":"Separation Processes (4)"},{"dept":"PHIL","description":"Theoretical, empirical, methodological, and","edges_from":[],"edges_to":[],"id":3566,"label":"PHIL 150","title":"Philosophy of the Cognitive Sciences (4)"},{"dept":"PHIL","description":"Philosophical issues of method and substance in the social sciences, such as causal and interpretive models of explanation, structuralism and methodological individualism, value neutrality, and relativism. ","edges_from":[],"edges_to":[],"id":3567,"label":"PHIL 152","title":"Philosophy of Social Science (4)"},{"dept":"HIUS","description":"This course reconsiders US history from a Pacific world perspective, from the eighteenth century to the present. Themes include comparative colonialism and empire; race, gender, and indigeneity; militarism and tourism; labor migration and resistance.","edges_from":[],"edges_to":[],"id":3568,"label":"HIUS 103","title":"The United States and the Pacific World (4)"},{"dept":"MGT","description":"Information Systems, and Data Analysis (4)","edges_from":[],"edges_to":[],"id":3569,"label":"MGT 413","title":"Operations,"},{"dept":"NEU","description":"These courses are designed for graduate students in the neurosciences and other departments that are part of the interdisciplinary program (i.e., Biology, Cog Sci, Psychology). These courses have been designed to cover as much basic neuroscience as possible in three quarters of study. It will combine two three-hour meetings each week with a 1.5 hour lecture and a 1.5 hour discussion of papers. These will be required courses for all first-year neurosciences graduate students. Biology will cross-list courses under Biology headings, making it a requirement of first-year Biology graduate students. ","edges_from":[],"edges_to":[],"id":3570,"label":"NEU 200A-B-C","title":"Basic Neuroscience (4-4-4)"},{"dept":"CHEM","description":"Students will review basic principles of light and electron","edges_from":[],"edges_to":[],"id":3571,"label":"CHEM 260","title":"Light and Electron Microscopy of Cells and Tissue (4)"},{"dept":"ECE","description":"Linear least Squares (batch, recursive, total, sparse, pseudoinverse, QR, SVD); Statistical figures of merit (bias, consistency, Cramer-Rao lower-bound, efficiency); Maximum likelihood estimation (MLE); Sufficient statistics; Algorithms for computing the MLE including the Expectation Maximation (EM) algorithm. The problem of missing information; the problem of outliers. (Recommended prerequisites: ECE 109 and ECE 153.) ","edges_from":[],"edges_to":[],"id":3572,"label":"ECE 275A","title":"Parameter Estimation I (4)"},{"dept":"ECE","description":"The Bayesian statistical framework; Parameter and state estimation of","edges_from":[],"edges_to":[],"id":3573,"label":"ECE 275B","title":"Parameter Estimation II (4)"},{"dept":"BENG","description":"An enrichment program available to a limited number of lower-division undergraduate students, which provides work experience with industry, government offices, and hospitals. The internship is coordinated through UC San Diego’s Academic Internship Program under the supervision of a faculty member and an industrial, government, or hospital employee. ","edges_from":[],"edges_to":[],"id":3574,"label":"BENG 97","title":"Internship/Field Studies (1–4)"},{"dept":"CHEM","description":"(Cross-listed with BGGN","edges_from":[],"edges_to":[],"id":3575,"label":"CHEM 265","title":"3D Electron Microscopy of Macromolecules (4)"},{"dept":"ANAR","description":"The archaeological field school will take place in the eastern Mediterranean region. It is an introduction to the design of research projects, the techniques of data collection, and the methods of excavation. Includes post-excavation lab work, study trips, and field journal. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":3576,"label":"ANAR 190","title":"Eastern Mediterranean Archaeological Field School (12)"},{"dept":"ANAR","description":"Students learn advanced field methods in cyber-archaeology and excavation. Includes 3-D data capture tools and processing, digital photography, construction of research designs, cyber-infrastructure. Takes place in the eastern Mediterranean region. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":3577,"label":"ANAR 191","title":"Advanced Cyber-Archaeology Field School (12)"},{"dept":"MAE","description":"Design and analysis of original experiments in mechanical engineering. Students research projects using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine and control systems. Students propose and design experiments, obtain data, complete engineering analysis and write a major report. ","edges_from":[3579],"edges_to":[],"id":3578,"label":"MAE 171B","title":"Mechanical Engineering Laboratory II (4)"},{"dept":"MAE","description":"","edges_from":[2819,676,2085,2086,1127,1308,5004,821,2820,922,988],"edges_to":[3578],"id":3579,"label":"MAE 171A","title":""},{"dept":"GPPA","description":"This course examines the human dimension of environmental change, focusing on topics such as biodiversity conservation, climate change, land use systems, deforestation, and the institutions of regulation. The course uses Latin America as its central focus but, for comparative perspective, uses cases from Asia and Africa. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 472. Students may not receive credit for GPPA 472 and IRGN 472.","edges_from":[],"edges_to":[],"id":3580,"label":"GPPA 472","title":"Latin American Environmental and Energy Policy (4)"},{"dept":"HIUS","description":"The United States as modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism.","edges_from":[],"edges_to":[],"id":3581,"label":"HIUS 141/ECON 159","title":"Economic History of the United States II (4)"},{"dept":"BENG","description":"Directed group study on a topic or in a field not included in the regular department curriculum. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3582,"label":"BENG 98","title":"Directed Group Study (1–4)"},{"dept":"BENG","description":"Independent reading or research by arrangement with a bioengineering faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3583,"label":"BENG 99","title":"Independent Study for Undergraduates (4)"},{"dept":"PHYS","description":"An introduction to galaxies and cosmology. Topics include the Milky Way, galaxy types and distances, dark matter, large scale structure, the expansion of the Universe, dark energy, and the early Universe. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.","edges_from":[],"edges_to":[],"id":3584,"label":"PHYS 7","title":"Galaxies and Cosmology (4)"},{"dept":"PHYS","description":"An introduction to the evolution of stars, including their birth and death. Topics include constellations, the atom and light, telescopes, stellar birth, stellar evolution, white dwarfs, neutron stars, black holes, and general relativity. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.","edges_from":[],"edges_to":[],"id":3585,"label":"PHYS 5","title":"Stars and Black Holes (4)"},{"dept":"CSE","description":"Connectionist models and a sampling of other cognitive modeling techniques. Models of language processing, memory, sequential processes, and vision. Areas covered may vary depending on student and faculty interests. Can be repeated for credit. CSE 151 or CSE 250B or CSE 253 or CSE 254, or equivalent experience recommended. ","edges_from":[],"edges_to":[],"id":3586,"label":"CSE 258A","title":"Cognitive Modeling (4)"},{"dept":"PHYS","description":"Examines phenomena and technology encountered in daily life from a physics perspective. Topics include waves, musical instruments, telecommunication, sports, appliances, transportation, computers, and energy sources. Physics concepts will be introduced and discussed as needed employing some algebra. No prior physics knowledge is required.","edges_from":[],"edges_to":[],"id":3587,"label":"PHYS 8","title":"Physics of Everyday Life (4)"},{"dept":"NANO","description":"This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nano materials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nano composites, and applications in biomedicine and food science. Cross-listed with Chem 241. ","edges_from":[],"edges_to":[],"id":3588,"label":"NANO 241","title":"Organic Nanomaterials (4)"},{"dept":"GPEC","description":"This course analyzes multilateral environmental agreements and negotiating positions of key countries on climate change, biodiversity conservation, sustainable development, and other subjects. It explores the challenges countries face to balance economic development objectives with global environmental concerns. Renumbered from IRGN 458. Students may not receive credit for GPEC 458 and IRGN 458.","edges_from":[],"edges_to":[],"id":3589,"label":"GPEC 458","title":"International Environmental Policy and Politics (4)"},{"dept":"LTAM","description":"Study of the relationships between cultural production (literature, film, popular culture), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, and revolution. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":3590,"label":"LTAM 140","title":"Topics in Culture and Politics (4)"},{"dept":"HIUS","description":"181/281. Topics in Twentieth Century United States History (4)","edges_from":[],"edges_to":[],"id":3591,"label":"HIUS","title":""},{"dept":"GPEC","description":"The course will cover the various aspects of the concept and application of sustainable development: the ways in which sustainable development can be measured, methods for the evaluation of environmental damages and benefits, and the role of discounting. We will analyze several cases demonstrating failure of the market. Renumbered from IRGN 453. Students may not receive credit for GPEC 453 and IRGN 453.","edges_from":[],"edges_to":[],"id":3592,"label":"GPEC 453","title":"Sustainable Development (4)"},{"dept":"GPEC","description":"This course will cover topics such as: economic growth in the long run; cross-country differences in income, labor supply, human capital, investment, and welfare; development accounting; technology adoption; misallocation and total-factor productivity; rural-urban income gaps and migration; structural transformation; and competition and productivity. Student may not receive credit for GPEC 450 and IRGN 490, Macroeconomics of Development. GPCO 401 and GPCO 403 are recommended.","edges_from":[],"edges_to":[],"id":3593,"label":"GPEC 450","title":"Macroeconomics of Development (4)"},{"dept":"GPEC","description":"This course examines comparative patterns of industrialization and agricultural modernization with a focus on certain common features of the modernization process and widely varying endowments, policies, and experiences, of different countries. Renumbered from IRGN 451. Students may not receive credit for GPEC 451 and IRGN 451. ","edges_from":[2981,2983],"edges_to":[],"id":3594,"label":"GPEC 451","title":"Economic Development (4)"},{"dept":"GPEC","description":"This course introduces students to the basic competencies and practical skills of a development practitioner. Lectures will be grounded in a practical, multi-sectorial approach that focuses on the interrelationship of the social sciences, health sciences, and natural sciences. It emphasizes a “differential diagnosis for development” through case studies of developing countries. Students will be asked to use both STATA and GIS to analyze household survey data to identify poverty hot spots. May not receive credit for GPEC 455 and the IRGN 490 course of the same title. Assumes competence in both STATA and GIS.","edges_from":[],"edges_to":[],"id":3595,"label":"GPEC 455","title":"Integrated Development Practice (4)"},{"dept":"HITO","description":"An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.","edges_from":[],"edges_to":[],"id":3596,"label":"HITO 133D","title":"War and Society: The Second World War (4)"},{"dept":"LTEA","description":"The course will focus on a few representative masterpieces of Chinese literature in its classical age, with emphasis on the formal conventions and the social or intellectual presuppositions that are indispensable to their understanding. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":3597,"label":"LTEA 110A","title":"Classical Chinese Fiction in Translation (4)"},{"dept":"LTEA","description":"","edges_from":[],"edges_to":[],"id":3598,"label":"LTEA 110C","title":"Contemporary Chinese Fiction in Translation (4)"},{"dept":"LTEA","description":"A survey of representative works of the modern period from 1919 to 1949. May be repeated for credit when topics vary.","edges_from":[],"edges_to":[],"id":3599,"label":"LTEA 110B","title":"Modern Chinese Fiction in Translation (4)"},{"dept":"NANO","description":"Overview of of graphene and other 2-D materials fundamental properties, applications, and experimental practice. Theory covers band structure, Dirac cone, mobility, and Fermi level tuning. Applications cover electronics and optoelectronics. Lab sessions include graphene and other 2-D materials manipulation and measurement.","edges_from":[],"edges_to":[],"id":3600,"label":"NANO 275","title":"Two-Dimensional Materials: Properties, Applications, and Practice (4)"},{"dept":"SOCI","description":"Interrelationships between law and society, in the U.S. and other parts of the world. We examine law’s norms, customs, culture, and institutions, and explain the proliferation of lawyers in the U.S. and the expansion of legal “rights” worldwide. Will not receive credit for SOCI 50 and SOCL 50.","edges_from":[],"edges_to":[],"id":3601,"label":"SOCI 50","title":"Introduction to Law and Society (4)"},{"dept":"NANO","description":"This course will introduce a background in optics and photonics for nanoscale materials and devices and explore light-matter interactions on the nanoscale. Fundamentals of light absorption, emission, lasing, and waveguiding in nanoscale structures, optical resonances in metallic (plasmonic) and semiconductor (excitonic) nanomaterials.","edges_from":[],"edges_to":[],"id":3602,"label":"NANO 271","title":"Nanophotonics (4)"},{"dept":"FMPH","description":"This is the first of a three-part honors series that serves as the culminating experience for the BS in public health (BSPH) majors. Students review, reinforce, and complement skills and knowledge gained throughout the BSPH program, and prepare a proposal integrating critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ","edges_from":[1024,1026,1027,1028,1029],"edges_to":[1530],"id":3603,"label":"FMPH 196A","title":"Public Health Honors Practicum I (4)"},{"dept":"NANO","description":"General overview of flexible/stretchable electronic devices, with a focus on the enabling nanomaterials and structures that lead to the tolerance to extreme physical deformations. Relevant nanofabrication techniques and manufacturing approaches will also be included.","edges_from":[],"edges_to":[],"id":3604,"label":"NANO 272","title":"Soft Electronics (4)"},{"dept":"Linguistics/Hindi","description":"Small conversation sections taught entirely","edges_from":[],"edges_to":[],"id":3605,"label":"Linguistics/Hindi (LIHI) 1D","title":"Hindi Conversation (2.5)"},{"dept":"Linguistics/Hindi","description":"Small conversation sections taught entirely","edges_from":[],"edges_to":[],"id":3606,"label":"Linguistics/Hindi (LIHI) 1A","title":"Hindi Conversation (2.5)"},{"dept":"Linguistics/Hindi","description":"Small conversation sections taught entirely","edges_from":[],"edges_to":[],"id":3607,"label":"Linguistics/Hindi (LIHI) 1B","title":"Hindi Conversation (2.5)"},{"dept":"COGS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":3608,"label":"COGS 87","title":"Freshman Seminar (1)"},{"dept":"SE","description":"The course deals with cable structures from a structural mechanics point of view. The theoretical and practical aspects of the application of cables to moorings, guyed structures, suspension bridges, cable-stayed bridges, and suspended membranes are discussed. ","edges_from":[],"edges_to":[],"id":3609,"label":"SE 215","title":"Cable Structures (4)"},{"dept":"Linguistics/German","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1A. ","edges_from":[],"edges_to":[],"id":3610,"label":"Linguistics/German (LIGM) 1AX","title":"Analysis of German (2.5)"},{"dept":"SE","description":"Analysis and design of unreinforcced and reinforced masonry structure using advanced analytical techniques and design philosophies. Material properties, stability, and buckling of unreinforced masonry. Flexural strength, shear strength, stiffness, and ductility of reinforced masonry elements. Design for seismic loads. ","edges_from":[2880],"edges_to":[],"id":3611,"label":"SE 214","title":"Masonry Structures (4)"},{"dept":"VIS","description":"of Criticism II: Early Twentieth Century (1900–1950) (4)","edges_from":[],"edges_to":[],"id":3612,"label":"VIS 113BN","title":"History"},{"dept":"SE","description":"Load and Resistance Factor Design (LRFD) philosophy. Behavior and design of steel elements for global and local buckling. Background of seismic codes. Ductility requirements and capability design concept. Seismic design of steel moment frames and braced frames. ","edges_from":[3614,2878],"edges_to":[],"id":3613,"label":"SE 212","title":"Advanced Structural Steel Design (4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[3613],"id":3614,"label":"SE 201","title":""},{"dept":"MGT","description":"Covers the principles, methods and applications of general accounting, cost accounting and investment ROI. Development of the three key financial reports and their interrelations, cost identification, product costing, inventory control, operational performance, and investment return calculations are also covered. This course is designed for nonaccounting minors.","edges_from":[],"edges_to":[686],"id":3615,"label":"MGT 45","title":"Principles of Accounting (4)"},{"dept":"LTWL","description":"Seminar in Literatures of the World (1)","edges_from":[],"edges_to":[],"id":3616,"label":"LTWL 192","title":"Senior"},{"dept":"LTWL","description":"Explorations in critical theory and method. This course, designed to prepare students to write an honors thesis, is open only to literature majors invited into the department’s Honors Program.","edges_from":[],"edges_to":[],"id":3617,"label":"LTWL 191","title":"Honors Seminar (4)"},{"dept":"LTWL","description":"Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ","edges_from":[],"edges_to":[],"id":3618,"label":"LTWL 196","title":"Honors Thesis (4)"},{"dept":"LTWL","description":"An advanced seminar open to all literature majors in their senior year. Required for those interested in the Honors Program. It offers an integrative experience by considering key facets of the discipline, including literary theory/historiography, knowledge of neighboring disciplines, and relevance of literature/culture studies in various professions outside of academia. ","edges_from":[],"edges_to":[4135],"id":3619,"label":"LTWL 194","title":"Capstone Course for Literature Majors (4)"},{"dept":"LTWL","description":"Tutorial; individual guided reading in areas of literature (in translation) not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3620,"label":"LTWL 199","title":"Special Studies (2 or 4)"},{"dept":"LTWL","description":"Research seminars and research, under the direction of faculty member. ","edges_from":[],"edges_to":[],"id":3621,"label":"LTWL 198","title":"Directed Group Study (4)"},{"dept":"Jewish","description":"Study of a particular period, theme, or literature in Jewish civilization. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3622,"label":"Jewish Studies 111","title":"Topics in Judaic Studies (4)"},{"dept":"CSE","description":"Zero-knowledge, secure computation, session-key distribution, protocols, electronic payment, one-way functions, trapdoor permutations, pseudorandom bit generators, hardcore bits. ","edges_from":[782,1742,1743],"edges_to":[],"id":3623,"label":"CSE 208","title":"Advanced Cryptography (4)"},{"dept":"BIEB","description":"An interactive introduction to estimation, hypothesis testing, and statistical reasoning. Emphasis on the conceptual and logical basis of statistical ideas. Focus on randomization rather than parametric techniques. Topics include describing data, sampling, bootstrapping, and significance. Mandatory one-hour weekly section. Students may not receive credit for both BIEB 100 and SIO 187. ","edges_from":[129,130,133,3624,3625,1424,1061],"edges_to":[4325,4327,3624,3943,4151,4765],"id":3624,"label":"BIEB 100","title":"Biostatistics (4)"},{"dept":"SIO","description":"","edges_from":[],"edges_to":[3624,4327],"id":3625,"label":"SIO 187","title":""},{"dept":"MGT","description":"A small group undertaking, on a topic or in a field not included in the regular curriculum, by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":3626,"label":"MGT 198","title":"Directed Group Study (4)"},{"dept":"ECE","description":"Topics include how devices such as iPods and iPhones generate, transmit, receive and process information (music, images, video, etc.), the relationship between technology and issues such as privacy and “net-neutrality,” and current topics related to information technology. ","edges_from":[],"edges_to":[],"id":3627,"label":"ECE 85","title":"iTunes 101: A Survey of Information Technology (4)"},{"dept":"LTGM","description":"Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3628,"label":"LTGM 198","title":"Directed Group Study (4)"},{"dept":"LTGM","description":"Tutorial; individual guided reading in areas of German literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3629,"label":"LTGM 199","title":"Special Studies (2 or 4)"},{"dept":"LTGM","description":"These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":3630,"label":"LTGM 190","title":"Seminars in German Culture (4)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3631,"label":"BGRD 222","title":"Research Discussion in Evolutionary Molecular Ecology (1)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3632,"label":"BGRD 221","title":"Research Discussion in Behavioral Ecology (1)"},{"dept":"ECON","description":"Applied theory and case-based class requiring students to develop hypothesis-driven, problem-solving skills. Students will work in teams and will develop management consultant skills by applying microeconomic theory, marketing, accounting, and econometric analyses to real-world business problems. Presentation of student analyses both orally and in writing. ","edges_from":[1979,1132,797],"edges_to":[],"id":3633,"label":"ECON 177L","title":"Applied Management Laboratory (4)"},{"dept":"SOCI","description":"This course examines how the US legal system has responded to workplace inequality and demands for employee rights. Particular attention is given to racial, gender, religious, and disability discrimination, as well as the law’s role in regulating unions, the global economy, and sweatshop labor. ","edges_from":[3634,3635],"edges_to":[3634],"id":3634,"label":"SOCI 140F","title":"Law and the Workplace (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[3634],"id":3635,"label":"SOCC 140F","title":""},{"dept":"MATH","description":"Statistical analysis of data by means of package programs. Regression, analysis of variance, discriminant analysis, principal components, Monte Carlo simulation, and graphical methods. Emphasis will be on understanding the connections between statistical theory, numerical results, and analysis of real data. Recommended preparation: exposure to computer programming (such as CSE 5A, CSE 7, or ECE 15) highly recommended. ","edges_from":[134,1992,1993,1994,139,140,1389,141,3637,3638,1996],"edges_to":[],"id":3636,"label":"MATH 185","title":"Introduction to Computational Statistics (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3642,3636,4327],"id":3637,"label":"MAE 108","title":""},{"dept":"MATH","description":"","edges_from":[1995,140,139,134,141],"edges_to":[3636,4327],"id":3638,"label":"MATH 181A","title":""},{"dept":"LTCS","description":"(Cross-listed with CGS 119.) The course explores the politics of pleasure in relation to the production, reception, and performance of Asian American identities in the mass media of film, video, and the Internet. The course considers how the “deviant” sexuality of Asian Americans (e.g., hypersexual women and emasculated men) does more than uniformly harm and subjugate Asian American subjects. The texts explored alternate between those produced by majoritarian culture and the interventions made by Asian American filmmakers. Students may not receive credit for LTCS 119 and CGS 119.","edges_from":[],"edges_to":[],"id":3639,"label":"LTCS 119","title":"Asian American Film and Media (4)"},{"dept":"LIIT","description":"","edges_from":[],"edges_to":[5503,3015],"id":3640,"label":"LIIT 1C","title":""},{"dept":"LTIT","description":"","edges_from":[],"edges_to":[3015],"id":3641,"label":"LTIT 1C","title":""},{"dept":"MATH","description":"An introduction to various quantitative methods and statistical techniques for analyzing data—in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. ","edges_from":[1995,1669,134,1992,1996,1994,139,140,141,18,3637,1993,3643],"edges_to":[],"id":3642,"label":"MATH 189","title":"Exploratory Data Analysis and Inference (4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[3642],"id":3643,"label":"SE 125","title":""},{"dept":"VIS","description":"Art of Ancient Mexico and Central America (4)","edges_from":[],"edges_to":[],"id":3644,"label":"VIS 126AN","title":"Pre-Columbian"},{"dept":"HIEU","description":"This course examines the history of Greece and the Balkans (1350–1683). Topics covered: the rise of the Ottoman Empire, conquest of the Balkans, the Ottoman system of rule, religious life, rural and urban society, law and order, and material culture. +","edges_from":[],"edges_to":[],"id":3645,"label":"HIEU 116A","title":"Greece and the Balkans in the Age of Ottoman Expansion (4)"},{"dept":"HIEU","description":"This course examines the history of Greece and the Balkans (1683–1914). Topics covered: social and economic development in the eighteenth century, nationalism, independence wars, state-nation formation, interstate relations, the Eastern Question, rural society, urbanization, emigration, and the Balkan Wars. Students may not get credit for both HIEU 116B and HIEU 117A.","edges_from":[],"edges_to":[],"id":3646,"label":"HIEU 116B","title":"Greece and the Balkans in the Age of Nationalism (4)"},{"dept":"HIEU","description":"This course examines the history of Greece and the Balkans (1914–2001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD.","edges_from":[],"edges_to":[],"id":3647,"label":"HIEU 116C","title":"Greece and the Balkans during the Twentieth Century (4)"},{"dept":"PHIL","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":3648,"label":"PHIL 87","title":"Freshman Seminar (1)"},{"dept":"MATH","description":"Survey of discretization techniques for elliptic partial differential equations, including finite difference, finite element and finite volume methods. Lax-Milgram Theorem and LBB stability. A priori error estimates. Mixed methods. Convection-diffusion equations. Systems of elliptic PDEs. ","edges_from":[],"edges_to":[3650],"id":3649,"label":"MATH 272A","title":"Numerical Partial Differential Equations I (4)"},{"dept":"MATH","description":"Survey of solution techniques for partial differential equations. Basic iterative methods. Preconditioned conjugate gradients. Multigrid methods. Hierarchical basis methods. Domain decomposition. Nonlinear PDEs. Sparse direct methods. ","edges_from":[3649],"edges_to":[3651],"id":3650,"label":"MATH 272B","title":"Numerical Partial Differential Equations II (4)"},{"dept":"MATH","description":"Time dependent (parabolic and hyperbolic) PDEs. Method of lines. Stiff systems of ODEs. Space-time finite element methods. Adaptive meshing algorithms. A posteriori error estimates. ","edges_from":[3650],"edges_to":[],"id":3651,"label":"MATH 272C","title":"Numerical Partial Differential Equations III (4)"},{"dept":"CSE","description":"260B. VLSI Integration of Computing Circuitry (4)","edges_from":[],"edges_to":[],"id":3652,"label":"CSE 241A/ECE","title":""},{"dept":"HINE","description":"Great Stories from the Hebrew Bible/Foreign Language (1)","edges_from":[],"edges_to":[],"id":3653,"label":"HINE 112AL","title":""},{"dept":"POLI","description":"Power, a crucial part of politics, can be, and often is, abused. This course discusses the nature of power and surveys a variety of abuses, including agenda manipulation, rent extraction, fraud, extortion, corruption, exploitation, and gross political oppression. ","edges_from":[],"edges_to":[],"id":3654,"label":"POLI 122D","title":"Abuse of Power (4)"},{"dept":"HILA","description":"Introduction to the historiography on Latin America for the twentieth century: agrarian reforms, unionization, industrialization by import substitution, the political left, social development, and international relations. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ","edges_from":[],"edges_to":[],"id":3655,"label":"HILA 169/269","title":"Scholarship on Latin American History in the Twentieth Century (4)"},{"dept":"Linguistics/Spanish","description":"Conducted entirely in Spanish. Course aims to improve oral language skills through discussions of social science topics, with emphasis on political events and current affairs. Course materials encompass televised news broadcasts, newspapers and periodicals. LISP 15 is offered fall quarter only, LISP 16 is offered winter quarter only, and LISP 17 is offered spring quarter only. Each course may be taken one time and need not be taken in sequence. ","edges_from":[2420,2422],"edges_to":[],"id":3656,"label":"Linguistics/Spanish (LISP) 15, 16, 17","title":"Intermediate Spanish for the Social Sciences (2)"},{"dept":"LTLA","description":"","edges_from":[],"edges_to":[],"id":3657,"label":"LTLA 104","title":"Latin Prose (4)"},{"dept":"LTCO","description":"This interdisciplinary course looks at performativity as a social process of cultural significance. It examines the works of John Searle, Jacques Derrida, Judith Butler, and Jose Esteban Munoz and underlines the role of performative action in linguistic, literary, cinematic, theatrical, political, and other forms of human interactivity. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":3658,"label":"LTCO 284","title":"Performativity (4)"},{"dept":"LTCO","description":"Research in literary theory and aesthetic philosophies. Single and multiple authors and topics; Plato and Aristotle, Renaissance treatises, Winckleman, Kant and Hegel in the Enlightenment, Warburg, Heidegger and Panofsky, contemporary art theory, et al. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":3659,"label":"LTCO 285","title":"Literature and Aesthetics (4)"},{"dept":"LTCO","description":"A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":3660,"label":"LTCO 287","title":"Culture and Political Theory (4)"},{"dept":"LTCO","description":"A study of literature and film in relation to one another, to critical and aesthetic theories, and to historical context. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":3661,"label":"LTCO 281","title":"Literature and Film (4)"},{"dept":"LTCO","description":"Questions and problems from the history of philosophy or from the various fields of philosophy (e.g., epistemology, ethics, logic) in their interaction with intellectual issues and questions addressed by literary criticism and theory. May be taken for credit up to three times. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":3662,"label":"LTCO 282","title":"Literature and Philosophy (4)"},{"dept":"COGR","description":"Media technologies from books to electronic media. Consideration of both technological design processes and shifting uses of media. Reflection on media and broader patterns of technological innovation. Attention to the distinctive role of media in technological change. ","edges_from":[],"edges_to":[],"id":3663,"label":"COGR 243","title":"Media Technologies (4)"},{"dept":"COGR","description":"Examination of historical and contemporary reorderings of space, time, and experience through culture and commerce, social movements, war and trade, communication institutions and practices. Considers various disciplinary modes of analyzing the forms of life produced by these processes as well as the possibilities for intervention and transformation. ","edges_from":[],"edges_to":[],"id":3664,"label":"COGR 242","title":"Globalization (4)"},{"dept":"COGR","description":"Geographies as media of political cultural communication. Not simply mapping but also territorial engineering as a way of constituting geographical significance. Cross-mapping practices—intersecting representational practices—as political forms of communication. Geographies as visual practices of power. ","edges_from":[],"edges_to":[],"id":3665,"label":"COGR 241","title":"Geography and Communication (4)"},{"dept":"COGR","description":"(Cross-listed with HIGR 273.) This course will explore the development and cultural manifestations of consumerism in the nineteenth and twentieth centuries. Topics will include the rise of museums, the development of mass market journalism and literature, advertising, and the growth of commercial amusements. Readings will focus primarily, but not exclusively, on the United States. Students will be encouraged to think comparatively. ","edges_from":[],"edges_to":[],"id":3666,"label":"COGR 240","title":"The Culture of Consumption (4)"},{"dept":"COGR","description":"Course explores the potential and constraints specific to writing for one or more media forms. Approaches include writing exercises, studying media, reading theoretical and historical texts, and project work. ","edges_from":[],"edges_to":[],"id":3667,"label":"COGR 247","title":"Writing for Media (4)"},{"dept":"COGR","description":"Course provides an introduction to the design, evaluation, and development of media that invite and structure play. This includes digital and nondigital games, as well as related forms. Exercises, readings, and projects are required. ","edges_from":[],"edges_to":[],"id":3668,"label":"COGR 246","title":"Playable Media (4)"},{"dept":"COGR","description":"Course explores human-technology interaction, social constructivism, actor-network theory, gender and technology, critical and cultural studies of science and technology, and public understandings of science and technology. Emphasis on what STS can contribute to the study of media and communication. ","edges_from":[],"edges_to":[],"id":3669,"label":"COGR 245","title":"Science and Technology Studies and Communication (4)"},{"dept":"COGR","description":"Course traces theoretical approaches to the study of culture from the Birmingham School to poststructuralist critiques of power, resistance, consumption, and pleasure. Students combine critical theory and empirical research in order to interpret the cultural politics of everyday life. ","edges_from":[],"edges_to":[],"id":3670,"label":"COGR 244","title":"Cultural Studies (4)"},{"dept":"HIUS","description":"This seminar will explore the histories of sexual relations, politics, and cultures that both cross and define racial boundaries in the nineteenth and twentieth centuries. Reading will focus on the United States as well as take up studies sited in Canada and Latin America. Graduate students are expected to submit a more substantial piece of work. ","edges_from":[],"edges_to":[],"id":3671,"label":"HIUS 176/276","title":"Race and Sexual Politics (4)"},{"dept":"EDS","description":"This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third in a four-course series. ","edges_from":[3673],"edges_to":[3675],"id":3672,"label":"EDS 289C","title":"Dissertation Writing Seminar (4)"},{"dept":"EDS","description":"","edges_from":[3674],"edges_to":[3672],"id":3673,"label":"EDS 289B","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[3673],"id":3674,"label":"EDS 289A","title":""},{"dept":"EDS","description":"This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the fourth course in a four-course series. ","edges_from":[3672],"edges_to":[],"id":3675,"label":"EDS 289D","title":"Dissertation Writing Seminar (4)"},{"dept":"LTFR","description":"A study in depth of the works of a major French writer. Recommended for students whose primary literature is French. May be repeated for credit as topics vary. ","edges_from":[1433,1434],"edges_to":[],"id":3676,"label":"LTFR 143","title":"Topics in Major Authors in French (4)"},{"dept":"LTWR","description":"A close look at sentence-level features of written discourse–stylistics and sentence grammars. Students will review recent research on these topics and experiment in their own writing with various stylistic and syntactic options. ","edges_from":[],"edges_to":[],"id":3677,"label":"LTWR 143","title":"Stylistics and Grammar (4)"},{"dept":"POLI","description":"This course is concerned with the interaction between representative democracy and capitalism in American political history. The key to understanding this interaction is the role of the entrepreneur in the economy and how unexpected economic change shapes politics. ","edges_from":[],"edges_to":[],"id":3678,"label":"POLI 100P","title":"Economic Entrepreneurs and American Politics (4)"},{"dept":"MDE","description":"A general survey of modern high-throughput instruments used for imaging and analyzing structure-function relationships at the molecular and cellular levels. An overview of potential human genomic and systems approaches for designing and validating medical device safety and performance. ","edges_from":[],"edges_to":[],"id":3679,"label":"MDE 230","title":"Life Sciences and Technologies (4)"},{"dept":"MUS","description":"A hands-on encounter with several important works from the classic electronic repertory, showing a representative subset of the electronic techniques available to musicians. Students who have taken MUS 271 for credit may not take MUS 271A for credit. ","edges_from":[],"edges_to":[5337,3683],"id":3680,"label":"MUS 271A","title":"Survey of Electronic Music Techniques I (4)"},{"dept":"POLI","description":"This course provides an introduction to game theory with an emphasis on applications in economics, political science, and business. Game theory uses simple mathematical models to understand social phenomena. The required mathematical background is minimal (high school algebra).","edges_from":[],"edges_to":[],"id":3681,"label":"POLI 100U","title":"Games, Strategy, and Politics (4)"},{"dept":"MUS","description":"A continuation of 271A and B, with emphasis on compositional techniques (e.g., computer-aided composition, production, spatialization). ","edges_from":[3683],"edges_to":[5337],"id":3682,"label":"MUS 271C","title":"Survey of Electronic Music Techniques III (4)"},{"dept":"MUS","description":"","edges_from":[3680],"edges_to":[5337,3682],"id":3683,"label":"MUS 271B","title":""},{"dept":"LIGN","description":"An introduction to the context-dependent aspects of language meaning. Topics include given versus new information, Gricean maxims and rules of conversation, presupposition, implicature, reference and cognitive status, discourse coherence and structure, and speech acts. ","edges_from":[752],"edges_to":[],"id":3684,"label":"LIGN 160","title":"Pragmatics (4)"},{"dept":"LIGN","description":"An introduction to the fundamental concepts of computational linguistics, in which we study natural language syntax and semantics from an interpretation perspective, describe methods for programming computer systems to perform such interpretation, and survey applications of computational linguistics technology. ","edges_from":[],"edges_to":[],"id":3685,"label":"LIGN 165","title":"Computational Linguistics (4)"},{"dept":"TDDE","description":"This course will examine the field of projection design for theatre and dance performance. Students will study and produce original works based on the theoretical and aesthetic approaches of animation, film, performance, and installation art that influence contemporary projection design. ","edges_from":[],"edges_to":[],"id":3686,"label":"TDDE 151","title":"Digital Video Design (4)"},{"dept":"LTEN","description":"Fiction II—Since Middle James (4)","edges_from":[],"edges_to":[],"id":3687,"label":"LTEN 174","title":"American"},{"dept":"POLI","description":"This course will examine the nomination and election of congressmen, constituent relationships, the development of the institution, formal and informal structures, leadership, comparisons of House with Senate, lobbying, and relationship with the executive branch.","edges_from":[],"edges_to":[],"id":3688,"label":"POLI 100B","title":"The US Congress (4)"},{"dept":"Linguistics/Italian","description":"A course to increase the proficiency level of students who have completed LIIT 1B/1BX, 5BS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1C/1CX. ","edges_from":[312],"edges_to":[],"id":3689,"label":"Linguistics/Italian (LIIT) 5CS","title":"Fundamentals of Italian III (5)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":3690,"label":"LTEN 171","title":"Comparative Issues in Latino/a Immigration in US Literature (4)"},{"dept":"COGS","description":"This course presents the building blocks of social cognition from a developmental and evolutionary perspective and focuses on how and when children develop these abilities and how humans compare to other species such as great apes, birds, and dogs. ","edges_from":[3165,2333],"edges_to":[],"id":3691,"label":"COGS 144","title":"Social Cognition: A Developmental and Evolutionary Perspective (4)"},{"dept":"POLI","description":"This class explores the many ways in which face-to-face social networks have a powerful effect on a wide range of human behaviors. With a foundation in understanding real-world networks, we can then consider how these networks function online.","edges_from":[],"edges_to":[],"id":3692,"label":"POLI 100F","title":"Social Networks (4)"},{"dept":"LTEN","description":"Poetry II—Whitman through the Modernists (4)","edges_from":[],"edges_to":[],"id":3693,"label":"LTEN 172","title":"American"},{"dept":"ETHN","description":"and Borderlands: The Local and Global (4)","edges_from":[],"edges_to":[],"id":3694,"label":"ETHN 260","title":"Transnationalism"},{"dept":"POLI","description":"Readings examine how the multiracial character of the United States has shaped the broad outlines of American politics. Cases include the founding/the Constitution, southern politics, social organization in formerly Mexican regions, the New Deal, consequences of limited suffrage. ","edges_from":[],"edges_to":[],"id":3695,"label":"POLI 100J","title":"Race in American Political Development (4)"},{"dept":"LTSP","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":3696,"label":"LTSP 87","title":"Freshman Seminar (1)"},{"dept":"ETHN","description":"This course surveys the field of immigration and refugee studies and introduces students to recent theories and cutting-edge research in the field. Key topics: gender and migration; diaspora and transnationalism; immigration, race, and citizenship; and globalization and immigrant labor. ","edges_from":[],"edges_to":[],"id":3697,"label":"ETHN 265","title":"Critical Immigration and Refugee Studies (4)"},{"dept":"LTEN","description":"A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.","edges_from":[],"edges_to":[],"id":3698,"label":"LTEN 178","title":"Comparative Ethnic Literature (4)"},{"dept":"POLI","description":"Examines Washington as a political community, its institutions, culture, and history. In addition to its elected officeholders and senior government officials, it examines Washington’s subcommunities: the national news industry, diplomatic service, the representation of interests. ","edges_from":[],"edges_to":[],"id":3699,"label":"POLI 100N","title":"Politics in Washington (4)"},{"dept":"MGT","description":"Through lecture and online delivery, this course will introduce students to the tools and concepts of microeconomics to analyze decision problems within technology driven firms through the coverage of microeconomic concepts relevant to managerial decision making. Letter grades only. ","edges_from":[],"edges_to":[],"id":3700,"label":"MGT 405","title":"Managerial Economics (4)"},{"dept":"MGT","description":"Through lecture and online delivery, students will be introduced to the basic concepts and methods used in financial statements. The course highlights the linkages between accounting information and management planning, decision making, and control. Letter grades only. ","edges_from":[],"edges_to":[],"id":3701,"label":"MGT 404","title":"Accounting (4)"},{"dept":"MGT","description":"Through lecture and online delivery, students will be introduced to key techniques for using data to make informed management decisions. Covers probability, statistics, decision analysis, and optimization techniques. Emphasizes managerial applications in such areas as operations management, marketing, and finance. Letter grades only. ","edges_from":[],"edges_to":[],"id":3702,"label":"MGT 403","title":"Quantitative Analysis (4)"},{"dept":"MGT","description":"Course focuses on various management communications platforms. Students will learn strategies to establish competence, build trust, motivate and inspire, and achieve commitment to action. Participants will develop, present, and receive intensive peer feedback for both written communications and presentations. Letter grades only. ","edges_from":[],"edges_to":[],"id":3703,"label":"MGT 402","title":"Management Communications (1)"},{"dept":"MGT","description":"The Professional Seminar presents up-to-date research, professional skills development, and experts and business leaders as speakers. Topics may vary by term. S/U grades only. May be taken for credit eight times. ","edges_from":[],"edges_to":[],"id":3704,"label":"MGT 401","title":"Professional Seminar (1)"},{"dept":"MGT","description":"Strategy (4)","edges_from":[],"edges_to":[],"id":3705,"label":"MGT 409","title":"Organizational"},{"dept":"COGR","description":"A doctoral student in communication is required to assist in teaching undergraduate Department of Communication courses for a total of six quarters. One meeting per week with the instructor, one meeting per week with the assigned sections, and attendance at the lecture of the undergraduate course in which he or she is participating are part of this requirement.","edges_from":[],"edges_to":[],"id":3706,"label":"COGR 500","title":"Practice Teaching in Communication (4)"},{"dept":"TDTR","description":"The study of dance on film and video, the evolution of the creation, filming, editing, and production of dance for the camera. Major dance film works will be analyzed and discussed from choreography in the movies to dances made for film. ","edges_from":[3474],"edges_to":[],"id":3707,"label":"TDTR 20","title":"Dance on Film (4)"},{"dept":"LIGN","description":"Directed research on dissertation topic for students who have been admitted to candidacy for the PhD degree. May be repeated for credit. ","edges_from":[],"edges_to":[],"id":3708,"label":"LIGN 299","title":"Doctoral Research (1–12)"},{"dept":"LIGN","description":"Individual research. May be repeated for credit.","edges_from":[],"edges_to":[],"id":3709,"label":"LIGN 296","title":"Directed Research (1–8)"},{"dept":"ETHN","description":"This course introduces students to key issues in Asian American lives, with emphasis on the global historical context of migration; changing ethnic and racial consciousness; economic, social, and political status; cultural production; and family and gender relations.","edges_from":[],"edges_to":[],"id":3710,"label":"ETHN 20","title":"Introduction to Asian American Studies (4)"},{"dept":"LIGN","description":"Gathering and interpreting data, formulating research questions and hypotheses, making the predictions of hypotheses explicit, finding relevant evidence, and organizing research results into suitable form for presentation in abstracts, talks, and research papers. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":3711,"label":"LIGN 293","title":"Research Practicum (0–4)"},{"dept":"AUD","description":"Applications of clinical procedures to patient assessment. Includes clinical observation, interaction with otologists, and supervised patient care involving diagnostics and hearing-aid evaluations in the UC San Diego audiology clinics. This course may be taken more than once. ","edges_from":[3713],"edges_to":[],"id":3712,"label":"AUD 284","title":"Clinical Practice in Audiology II (1-4)"},{"dept":"AUD","description":"","edges_from":[],"edges_to":[3712],"id":3713,"label":"AUD 291","title":""},{"dept":"ETHN","description":"Individual research on a topic that leads to the writing of a major paper. (May be repeated for credit.)","edges_from":[],"edges_to":[],"id":3714,"label":"ETHN 199","title":"Supervised Independent Study and Research (4)"},{"dept":"ETHN","description":"Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. (May be repeated for credit.)","edges_from":[],"edges_to":[],"id":3715,"label":"ETHN 198","title":"Directed Group Studies (4)"},{"dept":"ETHN","description":"This course comprises supervised community fieldwork on topics of importance to racial and ethnic communities in the greater San Diego area. Regular individual meetings with faculty sponsor and written reports are required. (May be repeated for credit.)","edges_from":[],"edges_to":[],"id":3716,"label":"ETHN 197","title":"Fieldwork in Racial and Ethnic Communities (4)"},{"dept":"ETHN","description":"Methods: Studying Racial and Ethnic Communities (4)","edges_from":[],"edges_to":[],"id":3717,"label":"ETHN 190","title":"Research"},{"dept":"PSYC","description":"This seminar examines issues in the psychology of judgment and decision making. Topics include the heuristics and biases approach, overconfidence, framing effects, intertemporal choice, and rationality. ","edges_from":[],"edges_to":[],"id":3718,"label":"PSYC 209","title":"Judgment and Decision Making (4)"},{"dept":"MUS","description":"How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both MUS 20 and COGS 20. (Cross-listed with COGS 20.) ","edges_from":[],"edges_to":[],"id":3719,"label":"MUS 20","title":"Exploring the Musical Mind (4)"},{"dept":"TDAC","description":"This course introduces basic skills of breathing, placement, diction, musicianship, harmony, interpretation, and presentation needed by actors for roles requiring singing. Through a combination of group and individual coaching in class, students will prepare a program of short solo and ensemble pieces for a finals-week presentation. ","edges_from":[1105],"edges_to":[],"id":3720,"label":"TDAC 109","title":"Singing for Actors (4)"},{"dept":"TDAC","description":"Advanced topics in acting, such as avant-garde drama, commedia, or Beckett, for students who possess basic acting techniques. May be taken for credit four times. ","edges_from":[452],"edges_to":[],"id":3721,"label":"TDAC 108","title":"Advanced Topics (4)"},{"dept":"TDAC","description":"Advanced exploration of Shakespeare’s language through examining and performing scenes from the plays. Admission by audition/interview. May be taken for credit two times. ","edges_from":[452],"edges_to":[],"id":3722,"label":"TDAC 105","title":"Rehearing Shakespeare (4)"},{"dept":"TDAC","description":"Studies in the heightened realities of poetic drama. Verse analysis, research, methods and how to approach a classical dialogue. ","edges_from":[452],"edges_to":[],"id":3723,"label":"TDAC 104","title":"Classical Text (4)"},{"dept":"TDAC","description":"Practical exercises, discussion, text analysis, and scene work on the writings of Anton Chekhov. Admission by audition/interview. ","edges_from":[452],"edges_to":[],"id":3724,"label":"TDAC 106","title":"Chekhov Acting (4)"},{"dept":"ECE","description":"Materials Science of Integrated Circuits (4)","edges_from":[],"edges_to":[],"id":3725,"label":"ECE 134","title":"Electronic"},{"dept":"ANSC","description":"Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Students must apply to the Study Abroad UC San Diego program online at","edges_from":[],"edges_to":[],"id":3726,"label":"ANSC 106S","title":"Global Health: Indigenous Medicines in Latin America—Study Abroad (4)"},{"dept":"MATS","description":"Fabrication of Micro-Electro-Mechanical Systems (MEMS) by bulk and surface micromachining of single crystal, polycrystal, and amorphous silicon and other materials. Performance issues including electrostatic, magnetic, piezoelectric actuations, residual stresses, deformation. Novel device applications, future trends in smart materials and nano-electro-mechanical (NEMS) systems. ","edges_from":[3728],"edges_to":[],"id":3727,"label":"MATS 254","title":"Frontier Micro-Electro-Mechanical Systems (MEMS) Materials and Devices (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3727],"id":3728,"label":"MAE 268","title":""},{"dept":"MATS","description":"Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Students may not receive credit for CENG 256 and NANO 252 and MATS 255.","edges_from":[],"edges_to":[],"id":3729,"label":"MATS 255","title":"Biomaterials and Biomimetics (4)"},{"dept":"MATS","description":"This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor; and chemical structures and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. (Cross-listed with MAE 278.) ","edges_from":[],"edges_to":[],"id":3730,"label":"MATS 256","title":"Energy Materials and Applications (4)"},{"dept":"MATS","description":"Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. (Cross-listed with BENG 242.) ","edges_from":[3732,3733],"edges_to":[],"id":3731,"label":"MATS 257","title":"Polymer Science and Engineering (4)"},{"dept":"MS","description":"","edges_from":[],"edges_to":[3731],"id":3732,"label":"MS 76","title":""},{"dept":"BE","description":"","edges_from":[],"edges_to":[3731],"id":3733,"label":"BE 75","title":""},{"dept":"CENG","description":"Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine. Cross-listed with NANO 134. Students may not receive credit for both CENG 134 and NANO 134. ","edges_from":[215],"edges_to":[],"id":3734,"label":"CENG 134","title":"Polymeric Materials (4)."},{"dept":"MATS","description":"This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ","edges_from":[2222],"edges_to":[],"id":3735,"label":"MATS 252","title":"Biomaterials and Medical Devices (4)"},{"dept":"MATS","description":"This course discusses synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. ","edges_from":[3737],"edges_to":[],"id":3736,"label":"MATS 253","title":"Nanomaterials and Properties (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3736],"id":3737,"label":"MAE 267","title":""},{"dept":"MATS","description":"Nanotechnology has made a tremendous impact on drug and diagnostic delivery technology. This seminar series will expose PharmD students to the most cutting edge research on using nanotechnology for the delivery of agents to detect, treat, and prevent disease. ","edges_from":[],"edges_to":[],"id":3738,"label":"MATS 259","title":"Frontiers in Therapeutic and Diagnostic Delivery (1)"},{"dept":"PSYC","description":"Instruction on organizing, writing, and presenting empirical research papers. Students will learn fundamentals of writing style, data presentation, and time management. This course is intended for psychology graduate students in service of preparation of their first-year papers and talks. ","edges_from":[],"edges_to":[],"id":3739,"label":"PSYC 202","title":"Writing and Presenting Academic Research Papers (4)"},{"dept":"LTEU","description":"Author in Russian Literature in Translation (4)","edges_from":[],"edges_to":[],"id":3740,"label":"LTEU 158","title":"Single"},{"dept":"PSYC","description":"This course provides training in applying advanced statistical methods to experimental design. Emphasis will be placed on the developing skills in statistical problem-solving, using computer applications, and writing scientific reports. Must be taken for a letter grade for the Psychology Honors Program. ","edges_from":[],"edges_to":[5475,3742],"id":3741,"label":"PSYC 111A","title":"Research Methods I (6)"},{"dept":"PSYC","description":"This course builds upon the material of PSYC 111A. Students will participate in data collection, data organization, statistical analysis and graphical analysis, with emphasis placed on developing scientific report writing, presentations, and critical thinking about experimental methods. Must be taken for a letter grade for the Psychology Honors Program. ","edges_from":[3741],"edges_to":[5475],"id":3742,"label":"PSYC 111B","title":"Research Methods II (6)"},{"dept":"PSYC","description":"This course is designed to teach the basics of mathematical modeling. Topics include when, why, and how to use signal detection theory (an essential theory for anyone interested in attention, perception, memory, or decision making), how to analyze reaction time distributions (instead of simply measuring mean RT), how to engage in the fine art of model comparison, and how to avoid creating models that are more complex than the data they seek to explain.","edges_from":[],"edges_to":[],"id":3743,"label":"PSYC 206","title":"Mathematical Modeling (4)"},{"dept":"HIEU","description":"Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy. It will also include excursions to various sites of historical significance in and around Madrid. Program or materials fees may apply. Students may not receive credit for HIEU 151 and HIEU 151GS. Students must apply and be accepted to the Global Seminars Program.","edges_from":[],"edges_to":[],"id":3744,"label":"HIEU 151GS","title":"History of Modern Spain, 1808–Present (4)"},{"dept":"SE","description":"Introduction to structural design approaches for civil structures. Structural materials. Loads and load paths. Gravity and lateral load elements and systems. Code design fundamentals. Construction methods. Structural idealization. Hand and computer methods of analysis. Experimental methods applied through team-based projects. Program or materials fees may apply. ","edges_from":[2083,78,653,654,79],"edges_to":[3809,3971],"id":3745,"label":"SE 103","title":"Conceptual Structural Design (4)"},{"dept":"MAE","description":"Principles of Mechanical Design II (4)","edges_from":[],"edges_to":[],"id":3746,"label":"MAE 156B","title":"Fundamental"},{"dept":"LTEA","description":"A survey of “New Taiwan Cinema” of the eighties and nineties. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":3747,"label":"LTEA 120B","title":"Taiwan Films (4)"},{"dept":"ETHN","description":"Implementing interdisciplinary research methods, students produce independent, generative research germane to the study of race and ethnicity. Students write a twenty- to twenty-five-page critical paper that poses an appropriate research question; engages relevant literature to provide a conceptual framework; develops and incorporates appropriate research methodologies; and constructs a critical, thorough, and cohesive argument based on the collection, organization, interpretation, and analysis of evidence. ","edges_from":[2816],"edges_to":[],"id":3748,"label":"ETHN 291B","title":"Comprehensive Research Preparation: The Methodologies Paper (4)"},{"dept":"COMM","description":"This course examines forms of communication that affect people’s everyday lives. Focusing on ways that ethnic communities transmit and acquire information and interact with mainstream institutions, we examine a variety of alternative local media, including murals, graffiti, newsletters, and community radio. ","edges_from":[540],"edges_to":[],"id":3749,"label":"COMM 110M","title":"LLC: Communication and Community (4)"},{"dept":"BENG","description":"Application of biomedical imaging to the measurement of structure, function, and dynamics of organ systems from the microscopic to the organ level. Emphasis on detailed evaluation and comparison of specific imaging modalities. ","edges_from":[],"edges_to":[],"id":3750,"label":"BENG 280B","title":"Comparative Biomedical Imaging (4)"},{"dept":"VIS","description":"These seminar courses provide the opportunity for in-depth study of a particular work, artist, subject, period, or issue. Courses offered under this heading may reflect the current research interests of the instructor or treat a controversial theme in the field of art history and criticism. Active student research and classroom participation are expected. Enrollment is limited and preference will be given to majors. The letters following 129 in the course number designate the particular area of art history or theory concerned. Students may take courses with the same number but of different content more than once for credit, with consent of the instructor and/or the program adviser. May be taken three times for credit. ","edges_from":[680],"edges_to":[],"id":3751,"label":"VIS 129A–F","title":"Seminar in Art Criticism and Theory (4)"},{"dept":"GPEC","description":"The goal of this course is to better understand corruption in developing countries today: why it occurs, the consequences, and what can or should be done about it. Topics include: the conceptual and historical background of corruption; different views on how corruption affects regulatory processes; how the organization of a bureaucracy may affect the amount of corruption; effects on redistribution; methods for reducing corruption; and the role of information and elections as limits. Student may not get credit for GPEC 449 and IRGN 490, Corruption and Development.","edges_from":[],"edges_to":[],"id":3752,"label":"GPEC 449","title":"Corruption and Development (4)"},{"dept":"GPEC","description":"Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the Network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. May not receive credit for GPEC 444 and IRGN 490 with the subtitles: “Advanced GIS Spatial Analysis” or “Advanced GIS and Remote Sensing.” May be co-scheduled with GPEC 244. GPEC 443 or the equivalent training in GIS is recommended.","edges_from":[],"edges_to":[],"id":3753,"label":"GPEC 444","title":"Advanced GIS and Remote Sensing (4)"},{"dept":"GPEC","description":"This course introduces GIS and spatial data analysis for social science research. We use ArcGIS to manipulate and visualize georeferenced data and learn various spatial analysis tools. We emphasize geography as an important lens through which to study society. Renumbered from IRGN 443. Students may not receive credit for GPEC 443 and IRGN 443. Basic knowledge of statistics and STATA is assumed.","edges_from":[],"edges_to":[],"id":3754,"label":"GPEC 443","title":"GIS and Spatial Data Analysis (4)"},{"dept":"NANO","description":"This course will cover fundamental concepts and laboratory techniques to study the chemical and physical properties of colloids and nanoparticles. Topics covered include: colloid and surface forces, Brownian motion, aggregation, steric stabilization, optical characterization techniques, and self-assembly. Recent developments in colloids and nanotechnology will be discussed throughout the course.","edges_from":[],"edges_to":[],"id":3755,"label":"NANO 280","title":"Colloids and Nanoparticles (4)"},{"dept":"VIS","description":"Considers nineteenth-century European painting and printmaking in relation to the construction of nature and the historically specific ways of seeing that emerge from it. Key artists and groups of artists include: John Constable, J.M.W. Turner, Caspar David Friedrich, Camille Corot, the Barbizon School, J.-J. Grandville, the Pre-Raphaelites, and the Impressionists. ","edges_from":[],"edges_to":[],"id":3756,"label":"VIS 124E","title":"The Production of Nature (4)"},{"dept":"VIS","description":"A cultural history of nineteenth-century Paris. Addresses how and why the cultural formations and developments of the period, and their inseparability from the city, have led so many to consider Paris the capital of modernity. ","edges_from":[],"edges_to":[],"id":3757,"label":"VIS 124D","title":"Paris, Capital of the Nineteenth Century (4)"},{"dept":"MUS","description":"(Formerly MUS 163.) Selected topics in music","edges_from":[],"edges_to":[],"id":3758,"label":"MUS 176","title":"Music Technology Seminar (4)"},{"dept":"BENG","description":"Engineering analysis of physico-chemical rate processes that affect, limit, and govern the function of cells and tissues. Cell migration, mitosis, apoptosis, and differentiation. Dynamic and structural interactions between mesenchyme and parenchyme. The role of the tissue microenvironment including cell-cell interactions, extracellular matrix, and growth factor communication. The design of functional tissue substitutes including cell and material sourcing, scale-up and manufacturability, efficacy and safety, regulatory, and ethical topics. Clinical applications. ","edges_from":[2667,596],"edges_to":[],"id":3759,"label":"BENG 166A","title":"Cell and Tissue Engineering (4)"},{"dept":"MUS","description":"Survey of psychoacoustical","edges_from":[],"edges_to":[],"id":3760,"label":"MUS 175","title":"Musical Psychoacoustics (4)"},{"dept":"MUS","description":"(Formerly MUS 160C.) A practical introduction to computer techniques for desktop audio editing, MIDI control, and real-time music algorithms using the MAX programming environment. Recommended preparation: completion of MUS 170. ","edges_from":[],"edges_to":[],"id":3761,"label":"MUS 171","title":"Computer Music I (4)"},{"dept":"COGS","description":"Independent literature or laboratory research by arrangement with and under direction of a Department of Cognitive Science faculty member. ","edges_from":[],"edges_to":[],"id":3762,"label":"COGS 99","title":"Independent Study (2 or 4)"},{"dept":"MUS","description":"Primarily intended for music majors. Development of basic skills: perception and notation of pitch and temporal relationships. Introduction to functional harmony. Studies in melodic writing. Drills in sight singing, rhythmic reading, and dictation. ","edges_from":[3764,1492,1493],"edges_to":[],"id":3763,"label":"MUS 2A-B-C","title":"Basic Musicianship (4-4-4)"},{"dept":"MUS","description":"","edges_from":[],"edges_to":[3763,3927],"id":3764,"label":"MUS 2CK","title":""},{"dept":"BICD","description":"Plant immunity protects against pathogens and enables symbioses. This course explores the agents of plant disease, the genetics of inherited immunity, mechanisms of pathogenesis and defense, the coordination of plant immunity by plant hormones, and the regulation of symbioses. ","edges_from":[412],"edges_to":[],"id":3765,"label":"BICD 124","title":"Plant Innate Immunity (4)"},{"dept":"COGS","description":"Special topics in cognitive science are discussed. P/NP grades only. (May be repeated when topics vary.)","edges_from":[],"edges_to":[],"id":3766,"label":"COGS 90","title":"Undergraduate Seminar (1)"},{"dept":"COGS","description":"The department faculty and the Students for Cognitive and Neurosciences (SCANS) offer this seminar exploring issues in cognitive science. It includes informal faculty research presentations, investigations of topics not covered in the curriculum, and discussions on graduate school and careers. (May be repeated when topics vary.) (Will not be offered in 2017–18.)","edges_from":[],"edges_to":[],"id":3767,"label":"COGS 91","title":"SCANS Presents (1)"},{"dept":"COGS","description":"Psychological resiliency will be addressed both scientifically and pragmatically. Students will explore the way cognitive and behavioral factors contribute to one’s ability to cope with the stresses of life and emerge from them stronger than before. P/NP only. (Will not be offered in 2017–18.)","edges_from":[],"edges_to":[],"id":3768,"label":"COGS 92","title":"Resiliency in the Face of Adversity (2)"},{"dept":"ANTH","description":"This seminar compares the distinct urban and expansive state phenomena of the highland Wari and Tiwanaku cultures (AD 500–1000) with emphasis on their formative origins and the ideological, agrarian, and technological foundations of Middle Horizon political development. ","edges_from":[],"edges_to":[],"id":3769,"label":"ANTH 245","title":"The Middle Horizon (4)"},{"dept":"ANTH","description":"Why is mental health a global concern? This anthropological course reviews globalization, culture, and mental health. We examine issues of social suffering, stigma, and economic burden associated with mental illness, gender inequality, political violence, “global security,” pharmaceutical and illegal drugs. ","edges_from":[],"edges_to":[],"id":3770,"label":"ANTH 243","title":"Mental Health as Global Health Priority (4)"},{"dept":"COGS","description":"This course is an advanced seminar and project course that follows the Natural Computation courses. Advanced and new machine learning methods will be discussed and used. ","edges_from":[2336,2337],"edges_to":[],"id":3771,"label":"COGS 185","title":"Advanced Machine Learning Methods (4)"},{"dept":"ANTH","description":"This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens’ efforts to promote social change in contemporary democracies. ","edges_from":[],"edges_to":[],"id":3772,"label":"ANTH 242","title":"Anthropology of Latin America (4)"},{"dept":"PSYC","description":"","edges_from":[],"edges_to":[3774],"id":3773,"label":"PSYC 115A","title":"Laboratory in Cognitive Psychology I (4)"},{"dept":"PSYC","description":"This course is designed to extend the training of PSYC 115A in the design, execution, and analysis of cognitive psychology experiments. Students may not receive credit for both PSYC 115 and PSYC 115B. ","edges_from":[3773],"edges_to":[],"id":3774,"label":"PSYC 115B","title":"Laboratory in Cognitive Psychology II (4)"},{"dept":"MGT","description":"This course introduces students to the psychometric, legal, ethical, and practical considerations of using tests and measurements for evidence-based decision-making in the workplace. Emphasis is given to selection and performance measurements for individual, team, business unit and organization-wide use in marketing, STEM, and operations. Student teams will develop managerial recommendations following company specific research and analysis.","edges_from":[],"edges_to":[],"id":3775,"label":"MGT 52","title":"Test and Measurement in the Workplace (4)"},{"dept":"ANAR","description":"Archaeology of Hunters-Gatherers (4)","edges_from":[],"edges_to":[],"id":3776,"label":"ANAR 181","title":"The"},{"dept":"ANAR","description":"This course examines the ways in which archaeologists study ancient artifacts, contexts, and their distribution in time and space to interpret ancient cultures. It will cover basic techniques of collections and field research with particular concentration on the quantitative contextual, spatial, stylistic, and technological analyses of artifacts and ecofacts from ongoing UC San Diego field projects in archaeology.","edges_from":[],"edges_to":[],"id":3777,"label":"ANAR 180","title":"Archaeology Workshop: Advanced Lab Work in Archaeology (4)"},{"dept":"ANAR","description":"","edges_from":[],"edges_to":[],"id":3778,"label":"ANAR 183","title":"Chiefdoms, States, and the Emergence of Civilizations (4)"},{"dept":"ANAR","description":"Varying theoretical models and available archaeological evidence are examined to illuminate the socio-evolutionary transition from nomadic hunter-gathering groups to fully sedentary agricultural societies in the Old and New Worlds. Archaeology concentration course. Recommended preparation: ANTH 3. ","edges_from":[],"edges_to":[],"id":3779,"label":"ANAR 182","title":"Origins of Agriculture and Sedentism (4)"},{"dept":"ANAR","description":"Field study in Jordan. Examines how cultural systems interact with deserts by examining technology, economic organization, kinship and religion in relation to environmental variables through time. Program fees may apply. ","edges_from":[],"edges_to":[],"id":3780,"label":"ANAR 185","title":"Middle East Desert Cultural Ecology (4)"},{"dept":"ANAR","description":"In what ways were ancient empires different from modern ones? We discuss theories of imperialism and examine cross-cultural similarities and differences in the strategies ancient empires used to expand and explore how they produced, acquired, and distributed wealth. ","edges_from":[],"edges_to":[],"id":3781,"label":"ANAR 184","title":"Empires in Archaeological Perspective (4)"},{"dept":"MATH","description":"A variety of topics and current research results in mathematics will be presented by guest lecturers and students under faculty direction. May be taken for P/NP grade only. ","edges_from":[],"edges_to":[],"id":3782,"label":"MATH 196","title":"Student Colloquium (1)"},{"dept":"POLI","description":"This course explores emerging issues in production and consumption of food in a global economy. On production side, we discuss issues such as famine, overproduction of commercial crops, and sustainability. On consumption side, we explore issues such as fair trade, ethical consumption, and public health consequences (such as obesity). Then we discuss the roles of governments, international organizations, and communities to address these issues.","edges_from":[],"edges_to":[],"id":3783,"label":"POLI 125B","title":"The Politics of Food in a Global Economy (4)"},{"dept":"MGT","description":"Examines financial theory and empirical evidence useful for making investment decisions. Portfolio theory, equilibrium models, and market efficiency are examined for stock securities and fixed income instruments. Risk adjusted ROIs for capital investments’ impact on stock prices and free options will also be studied. ","edges_from":[1130,3118,686],"edges_to":[],"id":3784,"label":"MGT 183","title":"Financial Investments (4)"},{"dept":"ANTH","description":"This course examines gender and mental health by considering social, cultural, and biological explanations for problems such as depression, trauma, anxiety, drugs/alcohol use. Cross-cultural similarities and differences of gender are considered with respect to etiology, epidemiology, symptomatology, treatment, and recovery. ","edges_from":[],"edges_to":[],"id":3785,"label":"ANTH 249","title":"Gender and Mental Health (4)"},{"dept":"MGT","description":"Focuses on role of financial institutions, implications for firm financing and valuation as well as the Federal Reserve, financial regulation, the money supply process, and monetary policy. Mechanisms through which monetary policy affects businesses and credit channels will be covered. ","edges_from":[1130,3118,686],"edges_to":[],"id":3786,"label":"MGT 184","title":"Money and Banking (4)"},{"dept":"MGT","description":"This course provides students with an overview of the investment banking industry, including IPOs, equity offerings, debt offerings, valuation, mergers and acquisition, private equity, asset securitization, prime brokerage, sales and trading, and market making. Emphasis of the class will be on traditional corporate finance, which includes equity and debt offerings as well as mergers and acquisitions. ","edges_from":[3118,686],"edges_to":[],"id":3787,"label":"MGT 185","title":"Investment Banking (4)"},{"dept":"CSE","description":"Computer graphics techniques for creating realistic images. Topics include ray tracing, global illumination, subsurface scattering, and participating media. CSE 168 or equivalent recommended.","edges_from":[],"edges_to":[],"id":3788,"label":"CSE 272","title":"Advanced Image Synthesis (4)"},{"dept":"BIEB","description":"Course provides overview of physical, chemical, and biological processes that characterize inland waters (lakes and rivers), estuaries, and near-shore environments. Dominant biota of lakes, rivers, and streams, and how they are related to physical and chemical processes of the systems in which they reside will be covered. Methods will be introduced for assessing the chemical composition of water and detecting organisms that affect drinking water quality and coastal water quality management. Course requires field studies. Students should expect to fully participate in field trips; transportation not provided by the university. Students must comply with all risk management policies/procedures. Material lab fees will apply. ","edges_from":[1424],"edges_to":[],"id":3789,"label":"BIEB 135","title":"Aquatic Ecology Lab (4)"},{"dept":"LTFR","description":"Examines one or more periods, themes, authors, and approaches in French literature. Topics will vary with instructor. May be repeated for credit. ","edges_from":[1433,1434],"edges_to":[],"id":3790,"label":"LTFR 141","title":"Topics in Literatures in French (4)"},{"dept":"COGS","description":"Cognitive processes extend beyond the boundaries of the person to include the environment, artifacts, social interactions, and culture. Major themes include the philosophy and history of cognitive science, the role of artifacts in human cognition, and theories of socially distributed, embodied, and extended cognition. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ","edges_from":[3165,238],"edges_to":[],"id":3791,"label":"COGS 102A","title":"Distributed Cognition (4)"},{"dept":"BIEB","description":"Course integrates principles of ecology and marine biology to examine marine biodiversity loss resulting from overexploitation, habitat loss, invasion, climate change, and pollution. Course examines consequences of biodiversity loss to marine ecosystems and discusses the efficacy of various management regimes. Conservation problems facing the world’s oceans with an emphasis on issues important for coastal California will be discussed. ","edges_from":[1424],"edges_to":[],"id":3792,"label":"BIEB 130","title":"Marine Conservation Biology (4)"},{"dept":"LTFR","description":"An examination of one or more major or minor genres of French literature: for example, drama, novel, poetry, satire, prose poem, essay. ","edges_from":[1433,1434],"edges_to":[],"id":3793,"label":"LTFR 142","title":"Topics in Literary Genres in French (4)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3794,"label":"BGRD 218","title":"Research Discussion in Plant Molecular Genetics (1)"},{"dept":"MUS","description":"Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. Third course of a yearlong sequence; continuation of 137E. ","edges_from":[3796],"edges_to":[],"id":3795,"label":"MUS 137F","title":"Seminar in Jazz Studies III (4)"},{"dept":"MUS","description":"","edges_from":[3798],"edges_to":[3795],"id":3796,"label":"MUS 137E","title":""},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3797,"label":"BGRD 213","title":"Research Discussion in Golgi Structure and Function (1)"},{"dept":"MUS","description":"Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. First course of a yearlong sequence. ","edges_from":[3800,3801,3799],"edges_to":[3796],"id":3798,"label":"MUS 137D","title":"Seminar in Jazz Studies I (4)"},{"dept":"MUS","description":"","edges_from":[3801],"edges_to":[3800,3798],"id":3799,"label":"MUS 137B","title":""},{"dept":"MUS","description":"","edges_from":[3799],"edges_to":[3798],"id":3800,"label":"MUS 137C","title":""},{"dept":"MUS","description":"","edges_from":[3802,3803,1494],"edges_to":[3798,3799],"id":3801,"label":"MUS 137A","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[3801,4298],"id":3802,"label":"MUS 2B","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[3801,4298,4302],"id":3803,"label":"MUS 2A","title":""},{"dept":"LTEN","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":3804,"label":"LTEN 87","title":"Freshman Seminar (1)"},{"dept":"HITO","description":"172/272. War in the Twentieth Century: A Psychological Approach (4)","edges_from":[],"edges_to":[],"id":3805,"label":"HITO","title":""},{"dept":"MMW","description":"MMW 121, the first of two required courses for ERC transfer students, addresses themes and topics from the premodern world (from antiquity to the eighteenth century) and strengthens students’ analytical, research, and writing skills. Students may not receive credit for MMW 21 and 121. Students who previously took MMW 21 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ","edges_from":[],"edges_to":[],"id":3806,"label":"MMW 121","title":"Exploring the Premodern World (4)"},{"dept":"SE","description":"Seismic design philosophy. Ductility concepts.","edges_from":[],"edges_to":[],"id":3807,"label":"SE 152","title":"Seismic Design of Structures (4)"},{"dept":"MMW","description":"MMW 122, the second of two required courses for ERC transfer students, addresses specific themes and topics from the modern world (from the eighteenth century to the present) and strengthens transfer students’ analytical, research, and writing skills. Students may not receive credit for MMW 22 and 122. Students who previously took MMW 22 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ","edges_from":[],"edges_to":[],"id":3808,"label":"MMW 122","title":"Exploring the Modern World (4)"},{"dept":"SE","description":"Properties of wood and lumber grades. Beam design. Design of axially loaded members. Design of beam-column. Properties of plywood and structural-use panels. Design of horizontal diaphragms. Design of shear walls. Design of nailed and bolted connections. ","edges_from":[3745,2661],"edges_to":[],"id":3809,"label":"SE 154","title":"Design of Timber Structures (4)"},{"dept":"LTEN","description":"Physicists have spoken of the beauty of equations. The poet John Keats wrote, “Beauty is truth, truth beauty . . .” What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Students may not receive credit for both LTEN 30 and PHYS 30. ","edges_from":[75,54,262,263,264,265,266,267,76,269,270,271,53,268],"edges_to":[],"id":3810,"label":"LTEN 30","title":"Poetry for Physicists (4)"},{"dept":"LTGK","description":"","edges_from":[],"edges_to":[],"id":3811,"label":"LTGK 105","title":"Topics in Greek Literature (4)"},{"dept":"LTGK","description":"","edges_from":[],"edges_to":[],"id":3812,"label":"LTGK 104","title":"Greek Prose (4)"},{"dept":"LTGK","description":"","edges_from":[],"edges_to":[],"id":3813,"label":"LTGK 103","title":"Greek Drama (4)"},{"dept":"LTGK","description":"","edges_from":[],"edges_to":[],"id":3814,"label":"LTGK 102","title":"Greek Poetry (4)"},{"dept":"LTGK","description":"Greek prose composition. Corequisites: student must be concurrently enrolled in upper-division Literature/Greek course numbered 102 or above.","edges_from":[],"edges_to":[],"id":3815,"label":"LTGK 101","title":"Greek Composition (4)"},{"dept":"MATH","description":"Continued development of a topic in algebraic geometry. Topics will be drawn from current research and may include Hodge theory, higher dimensional geometry, moduli of vector bundles, abelian varieties, deformation theory, intersection theory. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[3817],"edges_to":[],"id":3816,"label":"MATH 206B","title":"Further Topics in Algebraic Geometry (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[3816],"id":3817,"label":"MATH 206A","title":""},{"dept":"MATH","description":"Second course in linear algebra from a computational yet geometric point","edges_from":[],"edges_to":[],"id":3818,"label":"MATH 102","title":"Applied Linear Algebra (4)"},{"dept":"CHEM","description":"Selected topics in RNA structure and function, such as the ribosome, ribozyme, antibiotics, splicing and RNA interference, as they relate to the RNA role in gene expression and regulation. Emphasis on techniques to study the dynamics of macromolecular complexes and the mechanism of RNA catalysis. ","edges_from":[],"edges_to":[],"id":3819,"label":"CHEM 217","title":"RNA Structure, Function, and Biology (4)"},{"dept":"TDGE","description":"An introductory course on acting fundamentals for students without an acting background. Through analysis of acting on film, students will explore the actor’s craft and practice these skills in studio exercises to better understand how an actor approaches a text. ","edges_from":[],"edges_to":[3844],"id":3820,"label":"TDGE 5","title":"A Glimpse into Acting (4)"},{"dept":"MAE","description":"Materials: Principles and Applications (4)","edges_from":[],"edges_to":[],"id":3821,"label":"MAE 265B","title":"Magnetic"},{"dept":"EDS","description":"In the lecture and observation format, students","edges_from":[],"edges_to":[],"id":3822,"label":"EDS 123/Chem 188","title":"Capstone Seminar in Science Education (4)"},{"dept":"Linguistics/Italian","description":"A course to increase the proficiency level of students who have completed LIIT 1A/1AX, 5AS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1B/1BX. ","edges_from":[309],"edges_to":[],"id":3823,"label":"Linguistics/Italian (LIIT) 5BS","title":"Fundamentals of Italian II (5)"},{"dept":"POLI","description":"This course covers advanced topics in game theory. Covered topics will include incomplete information in static and dynamic games, infinitely repeated games, and bargaining games. Emphasis will be placed on advanced equilibrium concepts, and applications of interest to political scientists. ","edges_from":[],"edges_to":[],"id":3824,"label":"POLI 205","title":"Game Theory II (4)"},{"dept":"TDGE","description":"An introduction to fundamental concepts in drama and performance. Students will attend performances and learn about how the theatre functions as an art and as an industry in today’s world. ","edges_from":[],"edges_to":[],"id":3825,"label":"TDGE 1","title":"Introduction to Theatre (4)"},{"dept":"ANTH","description":"Anthropology graduate students participate in the undergraduate teaching program during one quarter anytime in the first four years of residence. Teaching may be in the anthropology department or other departments or programs on campus. Equivalent to duties expected of a 50 percent TA. Enrollment in four units documents the PhD requirement. S/U grades only. ","edges_from":[3827],"edges_to":[],"id":3826,"label":"ANTH 500","title":"Apprentice Teaching (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[3826],"id":3827,"label":"ANGR 500","title":""},{"dept":"MATH","description":"Independent study and research for the doctoral dissertation. One to three credits will be given for independent study (reading) and one to nine for research. ","edges_from":[],"edges_to":[],"id":3828,"label":"MATH 299","title":"Reading and Research (1 to 12)"},{"dept":"LTCO","description":"This course may be designed according to an individual student’s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.","edges_from":[],"edges_to":[],"id":3829,"label":"LTCO 297","title":"Directed Studies: Reading Course (1–12)"},{"dept":"EDS","description":"Universities are exploring new ways to convey the relevance of research directly to interested stakeholders beyond the academy. In this course, students will learn and practice a variety of strategies and tools for communicating their scholarship to a range of audiences, actively participate in discussion of education equity and access, and co-construct meaningful partnerships with education stakeholders. S/U grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":3830,"label":"EDS 259","title":"Communicating Research (2)"},{"dept":"COGR","description":"(Cross listed with EDS 278). This course explores the discourse of culture in American society and the problem of silenced or unheard voices. The interaction of individual and collective voice, language, and identity are discussed as they bear on the ways that culture moves through important social institutions such as schools. Of particular interest are issues of teaching, learning, displacement, inclusion, marginality, and the speaking center. ","edges_from":[],"edges_to":[],"id":3831,"label":"COGR 278","title":"Talking Culture, Culture Talking: Voices of Diversity (4)"},{"dept":"COGR","description":"Specialized study in communication, with topics to be determined by the instructor for any given quarter.","edges_from":[],"edges_to":[],"id":3832,"label":"COGR 275","title":"Topics in Communication (4)"},{"dept":"LTCO","description":"Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.","edges_from":[],"edges_to":[],"id":3833,"label":"LTCO 299","title":"Dissertation (1–12)"},{"dept":"LTCO","description":"Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.","edges_from":[],"edges_to":[],"id":3834,"label":"LTCO 298","title":"Special Projects: Writing Course (1–12)"},{"dept":"CHEM","description":"Renumbered from CHEM 143A. Introduction to organic laboratory techniques. Separation, purification, spectroscopy, product analysis, and effects of reaction conditions. A materials fee is required. Students must pass a safety exam. Students may only receive credit for one of the following: CHEM 43A, 43AM, 143A, or 143AM. ","edges_from":[960,2859,1196,1198,3314,953],"edges_to":[4545,5134,5135],"id":3835,"label":"CHEM 43A","title":"Organic Chemistry Laboratory (4)"},{"dept":"ETHN","description":"(Cross-listed with LTEN 179.) This class explores (self) representations of Muslim and Arab Americans in US popular culture with a focus on the twentieth and twenty-first centuries. Topics include the racing of religion, “the war on terror” in the media, feminism and Islam, immigration, race, and citizenship. May be repeated for credit three times when content varies.","edges_from":[],"edges_to":[],"id":3836,"label":"ETHN 166","title":"Arab/Muslim American Identity and Culture (4)"},{"dept":"MDE","description":"This course gives an introduction to digital signal processing (DSP) techniques and data-based parameter estimation (DBPE) techniques for the measurement, filtering, and analysis of experimental data obtained with embedded systems in medical devices. ","edges_from":[],"edges_to":[],"id":3837,"label":"MDE 240","title":"Embedded System Design (4)"},{"dept":"BENG","description":"Commercial production of biochemical commodity products. Application of genetic control systems and mutant populations. Recombinant DNA and eucaryotic proteins in E. coli and other host organisms. Product recovery operations, including the design of bioseparation processes of filtration, adsorption, chromatography, and crystallization. Bioprocess economics. Human recombinant erythropoietin as an example, from genomic cloning to CHO cell expression, to bioreactor manufacturing and purification of medical products for clinical application. ","edges_from":[3839],"edges_to":[],"id":3838,"label":"BENG 161B","title":"Biochemical Engineering (4)"},{"dept":"BENG","description":"","edges_from":[2882,1942],"edges_to":[3838],"id":3839,"label":"BENG 161A","title":""},{"dept":"MATS","description":"Materials: Principles and Applications (4)","edges_from":[],"edges_to":[],"id":3840,"label":"MATS 251B","title":"Magnetic"},{"dept":"MATS","description":"and Photonic Properties of Materials (4)","edges_from":[],"edges_to":[],"id":3841,"label":"MATS 251A","title":"Electronic"},{"dept":"LIGN","description":"(Same as EDS 119) An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ","edges_from":[],"edges_to":[],"id":3842,"label":"LIGN 119","title":"First and Second Language Learning: From Childhood through Adolescence (4)"},{"dept":"TDGE","description":"Acting and leadership require “choices” to play a role. The role of leader requires authenticity, collaboration, listening, presence, vision, and influence. Students will explore characteristics of strong leaders, and utilizing traditional acting techniques build powerful capabilities of leadership. No prior theatre/acting experience needed. ","edges_from":[],"edges_to":[],"id":3843,"label":"TDGE 100","title":"Creating the Role of “Leader” (4)"},{"dept":"TDGE","description":"An acting course for nonmajors, building on the acting fundamentals developed in TDGE 5. Using analysis of film acting to practice in studio exercises and scene work, student actors learn to approach a text using imagination as their primary tool. ","edges_from":[3820],"edges_to":[],"id":3844,"label":"TDGE 105","title":"Exploring Acting (4)"},{"dept":"LIGN","description":"Why does one language sound different from another? This course analyzes how languages organize sounds into different patterns, how those sounds interact, and how they fit into larger units, such as syllables. Focus on a wide variety of languages and problem solving. ","edges_from":[754],"edges_to":[],"id":3845,"label":"LIGN 111","title":"Phonology I (4)"},{"dept":"LIGN","description":"How do we measure differences in the way sounds are produced and perceived? This course focuses on measuring and analyzing the acoustic and auditory properties of sounds as they occur in nonpathological and pathological speech. ","edges_from":[754],"edges_to":[],"id":3846,"label":"LIGN 112","title":"Speech Sounds and Speech Disorders (4)"},{"dept":"LTGK","description":"Tutorial; individual guided reading in an area not normally covered in courses. May be taken up to three times for credit. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3847,"label":"LTGK 199","title":"Special Studies (2 or 4)"},{"dept":"EDS","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":3848,"label":"EDS 150","title":"Chancellor’s Associates Scholars Program Transfer Introductory Course (2)"},{"dept":"COGS","description":"Data science is multidisciplinary, covering computer science, statistics, cognitive science and psychology, data visualization, artificial intelligence, and machine learning, among others. This course teaches critical skills needed to pursue a data science career using hands-on programming and experimental challenges. ","edges_from":[233,2333,2670],"edges_to":[],"id":3849,"label":"COGS 133","title":"Data Science in Practice (4)"},{"dept":"Linguistics/Portuguese","description":"Small conversion sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIPO 1DX. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ","edges_from":[1724,1725],"edges_to":[],"id":3850,"label":"Linguistics/Portuguese (LIPO) 1D","title":"Portuguese Conversation (2.5)"},{"dept":"MATH","description":"Differential geometry of curves and surfaces.","edges_from":[],"edges_to":[],"id":3851,"label":"MATH 150A","title":"Differential Geometry (4)"},{"dept":"Linguistics/Portuguese","description":"Small conversation sections taught entirely","edges_from":[],"edges_to":[],"id":3852,"label":"Linguistics/Portuguese (LIPO) 1A","title":"Portuguese Conversation (2.5)"},{"dept":"Linguistics/Portuguese","description":"Small conversation sections taught entirely","edges_from":[],"edges_to":[],"id":3853,"label":"Linguistics/Portuguese (LIPO) 1B","title":"Portuguese Conversation (2.5)"},{"dept":"Linguistics/Portuguese","description":"Small conversation sections taught entirely","edges_from":[],"edges_to":[],"id":3854,"label":"Linguistics/Portuguese (LIPO) 1C","title":"Portuguese Conversation (2.5)"},{"dept":"MGT","description":"Review and discussion of current research and literature on selected topics in business and management. Research paper and presentation required. May be taken for credit three times. Students may not earn credit for both MGT 416 and MGT 252 if the courses have the same course subtitle. They are course equivalents. ","edges_from":[],"edges_to":[],"id":3855,"label":"MGT 416","title":"Readings in Management (1 or 2)"},{"dept":"MGT","description":"Explores current issues in business law, emphasizing concerns faced by new companies. Students learn how the law regulates and shapes businesses; examine the legal role in business formations, operations, and dissolutions; and gain knowledge of contract and intellectual property law. Letter grades only. Students may not earn credit for both MGT 417 and MGT 212. Also, students may not receive credit for both MGT 417 and MGT 219 with the course subtitle Current Business Law Issues. ","edges_from":[],"edges_to":[],"id":3856,"label":"MGT 417","title":"Current Business Law Issues (4)"},{"dept":"MGT","description":"Through lecture and online delivery, this course explores the strategic management of technology-driven firms focusing on the analytical tools and techniques that support strategy formulation and the related managerial skills and decision processes that foster strategy implementation. Letter grades only. ","edges_from":[],"edges_to":[],"id":3857,"label":"MGT 410","title":"Strategy (4)"},{"dept":"MGT","description":"Market: Opportunity and Business Model Analysis (4)","edges_from":[],"edges_to":[],"id":3858,"label":"MGT 412","title":"Lab to"},{"dept":"ECE","description":"Introduction to pattern recognition and machine","edges_from":[],"edges_to":[3861],"id":3859,"label":"ECE 175A","title":"Elements of Machine Intelligence: Pattern Recognition and Machine Learning (4)"},{"dept":"ENG","description":"Application-oriented, hands-on introduction to engineering mathematics and design processes.  Key mathematical concepts as they apply to engineering, including solving systems of equations and least-squares regression. In-class activities using Python and Arduino will complement the lectures and provide students hands-on experience with solving real-world engineering problems related to design, manufacturing and prototyping, electronics, and data analysis.","edges_from":[],"edges_to":[],"id":3860,"label":"ENG 10","title":"Fundamentals of Engineering Applications (2)"},{"dept":"ECE","description":"Bayes’ rule as a probabilistic reasoning engine; graphical models as knowledge encoders; conditional independence and D-Separation; Markov random fields; inference in graphical models; sampling methods and Markov Chain Monte Carlo (MCMC); sequential data and the Viterbi and BCJR algorithms; The Baum-Welsh algorithm for Markov Chain parameter estimation. ","edges_from":[3859],"edges_to":[],"id":3861,"label":"ECE 175B","title":"Elements of Machine Intelligence: Probabilistic Reasoning and Graphical Models (4)"},{"dept":"POLI","description":"Political Thought from Revolution to Civil War (4)","edges_from":[],"edges_to":[],"id":3862,"label":"POLI 110EA","title":"American"},{"dept":"ECE","description":"The coherent processing of data collected from sensors distributed in space for signal enhancement and noise rejection purposes or wavefield directionality estimation. Conventional and adaptive beamforming. Matched field processing. Sparse array design and processing techniques. Applications to acoustics, geophysics, and electromagnetics. Cross-listed with SIO 207D. (Recommended prerequisites: ECE 251A.) ","edges_from":[3864,3865,3866,3863],"edges_to":[3863],"id":3863,"label":"ECE 251D","title":"Array Processing (4)"},{"dept":"SIO","description":"","edges_from":[],"edges_to":[3863],"id":3864,"label":"SIO 207D","title":""},{"dept":"ECE","description":"","edges_from":[3867],"edges_to":[3863],"id":3865,"label":"ECE 251C","title":""},{"dept":"SIO","description":"","edges_from":[],"edges_to":[3863],"id":3866,"label":"SIO 207C","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[3865],"id":3867,"label":"ECE 251B","title":""},{"dept":"ECE","description":"Discrete random signals; conventional (FFT based) spectral estimation. Coherence and transfer function estimation; model-based spectral estimation; linear prediction and AR modeling. Levinson-Durbin algorithm and lattice filters, minimum variance spectrum estimation. Cross-listed with SIO 207B. SIO 207A is intended for graduate students who have not had an undergraduate course in DSP. (Recommended prerequisites: ECE 153 in addition to either ECE 161 or 161A and SIO 207A or equivalent background.) ","edges_from":[],"edges_to":[],"id":3868,"label":"ECE 251A","title":"Digital Signal Processing I (4)"},{"dept":"AUD","description":"Independent research on topics relevant to audiology, consisting of literature review, data collection. Faculty supervision and mentoring on practical elements of research design and methodology. The course will consist of laboratory experience, focused on practical elements of research and design and methodology. ","edges_from":[],"edges_to":[],"id":3869,"label":"AUD 298","title":"Independent Research (3)"},{"dept":"AUD","description":"Individual investigation and preparation of the doctoral project for the AuD degree will be performed under the supervision of an experienced research mentor. ","edges_from":[],"edges_to":[],"id":3870,"label":"AUD 299","title":"Doctoral Project (3)"},{"dept":"LHCO","description":"","edges_from":[],"edges_to":[],"id":3871,"label":"LHCO 206","title":"Topics in Financial Management and Decision Making (2)"},{"dept":"PHIL","description":"A survey of philosophical issues concerning law and society, such as the rule of law, the moral limits of the law, individual rights, judicial review in a constitutional democracy, the justification of punishment, and responsibility.","edges_from":[],"edges_to":[],"id":3872,"label":"PHIL 50","title":"Law and Society (4)"},{"dept":"MATH","description":"Lie groups, Lie algebras, exponential map, subgroup subalgebra correspondence, adjoint group, universal enveloping algebra. Structure theory of semi-simple Lie groups, global decompositions, Weyl group. Geometry and analysis on symmetric spaces. ","edges_from":[3874,3875],"edges_to":[],"id":3873,"label":"MATH 251A-B-C","title":"Lie Groups (4-4-4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[3873],"id":3874,"label":"MATH 200","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[3873],"id":3875,"label":"MATH 250","title":""},{"dept":"AUD","description":"Participation in specific faculty research activities. Become familiar with research methods and objectives of a faculty’s research project. Participate in data collection and analysis at the discretion of the faculty investigator. ","edges_from":[],"edges_to":[],"id":3876,"label":"AUD 296","title":"Research Practicum (3)"},{"dept":"POLI","description":"An interdisciplinary study of Israel as both a unique and yet a common example of a modern democratic nation-state. We will examine Israel’s history, its political, economic, and legal systems, social structure and multicultural tensions, the relation between state and religion, national security, and international relations.","edges_from":[],"edges_to":[],"id":3877,"label":"POLI 121B","title":"Politics in Israel (4)"},{"dept":"SOCI","description":"Develop skills in computer management and analysis of sociological data. Practical experience with data produced by sociological research. Students will develop competency in the analysis of sociological data, by extensive acquaintance with computer software used for data analysis and management (e.g., SPSS). ","edges_from":[2979,3878,3879],"edges_to":[3878],"id":3878,"label":"SOCI 103M","title":"Computer Applications to Data Management in Sociology (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[3878],"id":3879,"label":"SOCA 103M","title":""},{"dept":"HILA","description":"This course surveys the history of the region by focusing on two interrelated phenomena—the absence of democracy in most nations and the region’s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.","edges_from":[],"edges_to":[],"id":3880,"label":"HILA 102D","title":"Latin America in the Twentieth Century (4)"},{"dept":"Linguistics/Portuguese","description":"for the Social Sciences: Social Movements (2.0)","edges_from":[],"edges_to":[],"id":3881,"label":"Linguistics/Portuguese (LIPO) 15","title":"Intermediate Brazilian Portuguese"},{"dept":"Linguistics/Portuguese","description":"Portuguese for the Social Sciences: Ethnicity (2.0)","edges_from":[],"edges_to":[],"id":3882,"label":"Linguistics/Portuguese (LIPO) 17","title":"Intermediate Brazilian"},{"dept":"MGTA","description":"Discussion series where domain experts and business leaders present up-to-date research, discuss legal, privacy, and ethical issues, and provide professional skills development. S/U grades only. May be taken for credit two times. ","edges_from":[1328,1329,1327],"edges_to":[],"id":3883,"label":"MGTA 401","title":"Professional Seminar (1)"},{"dept":"Classics","description":"Subject matter variable; mainly but not exclusively major literary topics.","edges_from":[],"edges_to":[],"id":3884,"label":"Classics 220","title":"Classics Graduate Seminar (4)"},{"dept":"Classics","description":"Covers various technical skills essential for research and pedagogy in classics, including use of digital resources (e.g., bibliographical databases). Provides an introduction to important disciplinary subfields, such as textual criticism and epigraphy. Selection of topics will be at instructor’s discretion.","edges_from":[],"edges_to":[],"id":3885,"label":"Classics 201","title":"Research and Pedagogical Tools for Classicists (4)"},{"dept":"TDMV","description":"The study of theatrical tap dance. Various styles of tap— such as classical, rhythm, and musical theatre—will be introduced. Emphasis on rhythm, coordination, timing, and theatrical style. Includes basic through intermediate tap movement. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3886,"label":"TDMV 11","title":"Theatrical Tap (2)"},{"dept":"Linguistics/Heritage","description":"For students who already comprehend informal spoken Arabic but who have little or no reading and writing skills. Topics include the Arabic alphabet, basic reading and writing, and differences between colloquial and written Arabic. ","edges_from":[],"edges_to":[],"id":3887,"label":"Linguistics/Heritage Languages (LIHL) 16","title":"Arabic Literacy for Arabic Speakers (4)"},{"dept":"Linguistics/Heritage","description":"For students who already comprehend informal spoken Persian but who have little or no reading and writing skills. Topics include the Persian alphabet, basic reading and writing, and differences between colloquial and written Persian. ","edges_from":[],"edges_to":[],"id":3888,"label":"Linguistics/Heritage Languages (LIHL) 17","title":"Persian Literacy for Persian Speakers (4)"},{"dept":"CSE","description":"Design and implementation of interactive World Wide Web clients using helper applications and plug-ins. The main language covered will be Java. ","edges_from":[16,17],"edges_to":[],"id":3889,"label":"CSE 134B","title":"Web Client Languages (4)"},{"dept":"ECE","description":"This course covers the fundamentals of using the Python language effectively for data analysis. Students learn the underlying mechanics and implementation specifics of Python and how to effectively utilize the many built-in data structures and algorithms. The course introduces key modules for data analysis such as Numpy, Pandas, and Matplotlib. Participants learn to leverage and navigate the vast Python ecosystem to find codes and communities of individual interest. ","edges_from":[3352],"edges_to":[],"id":3890,"label":"ECE 143","title":"Programming for Data Analysis (4)"},{"dept":"ECE","description":"Develop, debug, and test LabVIEW VIs, solve problems using LabVIEW, use data acquisition, and perform signal processing and instrument control in LabVIEW applications. Groups of students will build an elevator system from laser-cut and 3-D printed parts; integrate sensors, motors, and servos; and program using state-machine architecture in LabVIEW. Students will have the opportunity to take the National Instruments Certified LabVIEW Associate Developer (CLAD) exam at the end of the quarter. Program or materials fees may apply. ","edges_from":[393,394,395],"edges_to":[],"id":3891,"label":"ECE 144","title":"LabVIEW Programming: Design and Applications (4)"},{"dept":"CHEM","description":"Derivation of thermodynamics","edges_from":[],"edges_to":[],"id":3892,"label":"CHEM 232A","title":"Statistical Mechanics I (4)"},{"dept":"Linguistics/French","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1A. ","edges_from":[],"edges_to":[],"id":3893,"label":"Linguistics/French (LIFR) 1AX","title":"Analysis of French (2.5)"},{"dept":"ECE","description":"Fundamentals of autonomous vehicles. Working in small teams, students will develop 1:8 scale autonomous cars that must perform on a simulated city track. Topics include: robotics system integration, computer vision, algorithms for navigation, on-vehicle vs. off-vehicle computation, computer learning systems such as neural networks, locomotion systems, vehicle steering, dead reckoning, odometry, sensor fusion, GPS auto-pilot limitations, wiring, and power distribution and management. Cross-listed with MAE 148. Students may not receive credit for ECE 148 and MAE 148. Program or materials fees may apply. ","edges_from":[2233,394,258,1150],"edges_to":[],"id":3894,"label":"ECE 148","title":"Introduction to Autonomous Vehicles (4)"},{"dept":"MATS","description":"Analysis of the near surface of materials via ion, electron, and X-ray spectroscopes. Topics to be covered include particle solid interactions. Rutherford Backscattering, secondary ion mass spectroscopy, electron energy loss spectroscopy, particle induced X-ray emission, Auger electron spectroscopy, extended X-ray absorption fine structure and channeling. ","edges_from":[3896],"edges_to":[],"id":3895,"label":"MATS 243","title":"Modern Materials Analysis (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[3895],"id":3896,"label":"ECE 237","title":""},{"dept":"EDS","description":"The course introduces prospective secondary teachers to principles and strategies of teaching English language arts. Topics include: writing processes, reading processes, integrated language arts, assessment, the second language learner, the classroom community, the California English Language Arts Framework. ","edges_from":[],"edges_to":[],"id":3897,"label":"EDS 373","title":"Secondary English Teaching Practices (4)"},{"dept":"EDS","description":"Proficiency-oriented language teaching techniques, including project-based and communicative approaches, developing student knowledge and appreciation of the cultures and societies in which the target language is spoken, the use of technology to support instruction aligned to the California academic content standards.","edges_from":[],"edges_to":[],"id":3898,"label":"EDS 372","title":"World Language Teaching Practices (4)"},{"dept":"EDS","description":"This course satisfies the California Commission on Teacher Credentialing requirement for preparation in reading theory and methods for all credential candidates. Theories of reading development, integration of the language arts, reading and writing in the content areas, teaching methods, and literature. ","edges_from":[],"edges_to":[],"id":3899,"label":"EDS 376","title":"Language and Learning Instruction (4)"},{"dept":"EDS","description":"Science teaching techniques, including science curriculum design, California Model Curriculum Standards, instructional methods, computer applications, selection and use of textbooks, student assessment, lesson planning, and classroom organization. Professional matters including curriculum planning, professional organizations, paraprofessionals, professional ethics, education law, and parent involvement are addressed. ","edges_from":[],"edges_to":[],"id":3900,"label":"EDS 375","title":"Secondary Science Teaching Practices (4)"},{"dept":"POLI","description":"A survey of the academic literature on parliamentary studies, comparing the research on legislative elections, behavior, and organization in American, European, and Asian democracies. The course will also compare various approaches to studying legislative activity. ","edges_from":[],"edges_to":[],"id":3901,"label":"POLI 223A","title":"Comparative Parliamentary Studies (4)"},{"dept":"TDGE","description":"Seminar on a topic in theatre or dance on a level appropriate for first-year students, conducted in an informal, small group setting limited to ten to twenty students. Topics will vary. ","edges_from":[],"edges_to":[],"id":3902,"label":"TDGE 87","title":"Freshman Seminar in Theatre and Dance (1)"},{"dept":"TDGE","description":"An introduction to dance movement and understanding your body. A contemporary approach to dancing and its many genres as an expressive medium and form of communication. A movement course but no dance training or background in dance needed. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3903,"label":"TDGE 89","title":"Dance Movement Exploration (4)"},{"dept":"LTTH","description":"A critical and interpretive review of some of the major documents in criticism from the classical period to the present time.","edges_from":[],"edges_to":[],"id":3904,"label":"LTTH 110","title":"History of Criticism (4)"},{"dept":"VIS","description":"This course will explore design strategies that engage peoples’ shifting geopolitical boundaries, bioregional and ecosystems, urban structures and landscapes, and recontextualize the city as a site of investigation by developing new ways of intervening into expanded notions of urban space, including virtual communities and new speculations of urbanity. ","edges_from":[932],"edges_to":[],"id":3905,"label":"VIS 101A","title":"Designing Urban Ecologies (4)"},{"dept":"FPM","description":"This second quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or III). ","edges_from":[3907],"edges_to":[4749],"id":3906,"label":"FPM 258B","title":"Public Health Doctoral Lecture Series II (2)"},{"dept":"FPM","description":"","edges_from":[],"edges_to":[3906],"id":3907,"label":"FPM 258A","title":""},{"dept":"ESYS","description":"The seminar provides a venue for the development, presentation, and evaluation of the Environmental Systems Integrative Project. The seminar will include work on research methods as well as paper presentation skills. ","edges_from":[3909],"edges_to":[],"id":3908,"label":"ESYS 190B","title":"Environmental Systems Senior Seminar (4)"},{"dept":"ESYS","description":"","edges_from":[549],"edges_to":[3908],"id":3909,"label":"ESYS 190A","title":""},{"dept":"MAE","description":"Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":3910,"label":"MAE 298","title":"Directed Group Study (1–4)"},{"dept":"MAE","description":"Engineering Design (4)","edges_from":[],"edges_to":[],"id":3911,"label":"MAE 126B","title":"Environmental"},{"dept":"HIEU","description":"European Society and Social Thought, 1870–1989 (4)","edges_from":[],"edges_to":[],"id":3912,"label":"HIEU 136B","title":""},{"dept":"LTWL","description":"This class investigates yoga as a practice aimed at integrating the body, intellect, and spirit. It considers a range of sources and representations, from foundational works in classical Sanskrit through the sometimes kitschy, sometimes serious, spirituality of contemporary pop culture.","edges_from":[],"edges_to":[],"id":3913,"label":"LTWL 169","title":"Yoga, Body, and Transformation (4)"},{"dept":"LTIT","description":"Politics, literature, and cultural issues of twentieth-century Italy. May be repeated for credit when topics vary. ","edges_from":[3014],"edges_to":[],"id":3914,"label":"LTIT 122","title":"Studies in Modern Italian Culture (4)"},{"dept":"TDDR","description":"A studio class that investigates the fundamental","edges_from":[],"edges_to":[5345],"id":3915,"label":"TDDR 111","title":"Directing-Acting Process (4)"},{"dept":"EDS","description":"Performance Assessment Portfolio (4)","edges_from":[],"edges_to":[],"id":3916,"label":"EDS 206","title":"Teaching"},{"dept":"MAE","description":"and Mechanics in Computer Technology (4)","edges_from":[],"edges_to":[],"id":3917,"label":"MAE 291","title":"Design"},{"dept":"HITO","description":"An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.","edges_from":[],"edges_to":[],"id":3918,"label":"HITO 133","title":"War and Society: The Second World War (4)"},{"dept":"HIEU","description":"This course is a survey of the political, social, and cultural history of the ancient Mediterranean. It focuses on the ancient empires in the Near East (Sumer, Babylon, Assyria, Persia), Egypt, Greece, and Rome. +","edges_from":[],"edges_to":[],"id":3919,"label":"HIEU 106","title":"Egypt, Greece, and Rome (4)"},{"dept":"NANO","description":"Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only. ","edges_from":[],"edges_to":[],"id":3920,"label":"NANO 296","title":"Independent Study in NanoEngineering (4)"},{"dept":"MUS","description":"Selected topics in music theory. Covers Western classical repertoire from 1850 to the present. Includes chromatic and post-tonal harmony, formal analysis. May be taken for credit up to two times. ","edges_from":[1559],"edges_to":[],"id":3921,"label":"MUS 102","title":"Topics in Music Theory (4)"},{"dept":"NANO","description":"Graduate research in NanoEngineering. S/U grades only. May be taken for credit four times for a maximum of twelve units. ","edges_from":[],"edges_to":[],"id":3922,"label":"NANO 299","title":"Graduate Research in NanoEngineering (1–12)"},{"dept":"MAE","description":"Introduction to 2-D and 3-D computer-aided design. Design problems may include: ball bearing kinematics, Weibull statistics, nonrepeatable spindle run-out, four bar linkages, beam deflection and vibration, design of magnetic head suspension, hydrodynamic theory of lubrication, air bearings, heat transfer, optical servo, design of ink jet print head. ","edges_from":[],"edges_to":[],"id":3923,"label":"MAE 292","title":"Computer-Aided Design and Analysis (4)"},{"dept":"MUS","description":"This seminar explores the history of music in relation to critical issues, such as race, gender, sexuality, the environment, and politics. Readings include recent literature in cultural studies, musicology, and sociology. Topics vary. May be taken three times for credit. ","edges_from":[1561],"edges_to":[],"id":3924,"label":"MUS 107","title":"Critical Studies Seminar (4)"},{"dept":"MUS","description":"Topics in musical analysis. Covers full range of musical repertoire 1900 to present, including music that does not depend on notation. May be taken for credit up to two times. ","edges_from":[1494],"edges_to":[],"id":3925,"label":"MUS 106","title":"Topics in Musical Analysis (4)"},{"dept":"MUS","description":"This course will explore a range of compositional possibilities from song forms to modal and more extended forms. May be taken for credit two times. ","edges_from":[3927,1559],"edges_to":[],"id":3926,"label":"MUS 105","title":"Jazz Composition (4)"},{"dept":"MUS","description":"","edges_from":[3764,1494],"edges_to":[1560,4298,3926],"id":3927,"label":"MUS 101A","title":""},{"dept":"VIS","description":"Covering the evolution of architecture and urban developments in South and North Korea since 1953. The course will examine how both states have shaped the political, economic, and cultural conditions. In particular, we will compare the apartment block communities, national identity architecture, and thematic architecture for entertainment and political propaganda. Looking at how traditional Korean architecture and urban structures were modified for modern life and political economy. ","edges_from":[],"edges_to":[],"id":3928,"label":"VIS 127I","title":"Architecture and Urbanism of Korea (4)"},{"dept":"VIS","description":"Surveys the key works and developments in the modern art and visual culture of Japan from Edo and Meiji to the present and of China from the early-twentieth century to contemporary video, performance, and installation art. Recommended preparation: VIS 21B. ","edges_from":[],"edges_to":[],"id":3929,"label":"VIS 127N","title":"Twentieth-Century Art in China and Japan (4)"},{"dept":"MAE","description":"This course will introduce the advanced graduate student to the topics of mechanical and thermodynamic analyses of cellular membranes, lipid bilayers, and the study of synthetic vesicles. ","edges_from":[986],"edges_to":[],"id":3930,"label":"MAE 264","title":"Mechanics and Thermodynamics of Biological Membranes (4)"},{"dept":"VIS","description":"Course will survey major trends in the arts of China from a thematic point of view, explore factors behind the making of works of art, including political and religious meanings, and examine contexts for art in contemporary cultural phenomena. Recommended preparation: VIS 21B. ","edges_from":[],"edges_to":[],"id":3931,"label":"VIS 127B","title":"Arts of China (4)"},{"dept":"VIS","description":"Course will explore Chinese art of the twentieth century. By examining artworks in different media, we will investigate the most compelling of the multiple realities that Chinese artists have constructed for themselves. Recommended preparation: VIS 21B. ","edges_from":[],"edges_to":[],"id":3932,"label":"VIS 127C","title":"Arts of Modern China (4)"},{"dept":"VIS","description":"The course will examine the theories and practices of contemporary art in South Korea, and its systems of cultural productions and disseminations. Highlighting the work of representative artists, institutions, and events, focuses will be on the predominance of governmental and corporate sponsorships, and how its cultural system is positioned for national and global presence, as well as the emergence alternative art spaces that promote the decentralization of cultural programs. Course is part of Korean studies minor program. ","edges_from":[],"edges_to":[],"id":3933,"label":"VIS 127A","title":"Contemporary Arts in South Korea (4)"},{"dept":"VIS","description":"Explore the development of Buddhist art and architecture in Japan. Focus on the role of art in Buddhist practice and philosophy and the function of syncretic elements in Japanese Buddhist art. ","edges_from":[],"edges_to":[],"id":3934,"label":"VIS 127F","title":"Japanese Buddhist Art (4)"},{"dept":"VIS","description":"Explore representations of figures and landscapes from the dawn of Chinese painting through the Yuan dynasty, with stress on developments in style and subject matter and relationships to contemporary issues in philosophy, religion, government, society, and culture. ","edges_from":[],"edges_to":[],"id":3935,"label":"VIS 127D","title":"Early Chinese Painting (4)"},{"dept":"VIS","description":"Explores major schools and artists of the Ming and Qing periods, including issues surrounding court patronage of professional painters, revitalization of art through reviving ancient styles, commercialization’s challenges to scholar-amateur art, and the influences of the West. ","edges_from":[],"edges_to":[],"id":3936,"label":"VIS 127E","title":"Later Chinese Painting (4)"},{"dept":"HINE","description":"The study of a single book, period, or issue on the Bible, in the context of the ancient Near Eastern world. Requirements will vary for undergraduate, master’s, and doctoral students. Graduate students may be required to submit a more substantial piece of work. ","edges_from":[],"edges_to":[],"id":3937,"label":"HINE 160/260","title":"Special Topics in the Bible and Ancient Near East (4)"},{"dept":"VIS","description":"Course is a survey of the visual arts of Japan, considering how the arts developed in the context of Japan’s history and discussing how art and architecture were used for philosophical, religious, and material ends. Recommended preparation: VIS 21B. ","edges_from":[],"edges_to":[],"id":3938,"label":"VIS 127P","title":"Arts of Japan (4)"},{"dept":"VIS","description":"Explore major trends in Japanese pictorial art from the seventh century to the nineteenth century, with focus on function, style, and subject matter, and with particular emphasis on the relationship between Japanese art and that of continental Asia. ","edges_from":[],"edges_to":[],"id":3939,"label":"VIS 127Q","title":"Japanese Painting and Prints (4)"},{"dept":"CHEM","description":"Fundamental theoretical principles, capabilities, applications, and limitations of modern analytical instrumentation used for qualitative and quantitative analysis. Students will learn how to define the nature of an analytical problem and how to select an appropriate analytical method. Letter grades only. Recommended preparation: background equivalent to CHEM 100A and introductory optics and electricity from physics. (W)","edges_from":[],"edges_to":[],"id":3940,"label":"CHEM 200B","title":"Fundamentals of Instrumental Analysis (4)"},{"dept":"CSE","description":"(Formerly CSE 273.) Functional versus imperative programming. Type systems and polymorphism; the ML language. Higher order functions, lazy evaluation. Abstract versus concrete syntax, structural and well-founded induction. The lambda calculus, reduction strategies, combinators. Denotational semantics, elementary domain theory. ","edges_from":[3942],"edges_to":[],"id":3941,"label":"CSE 230","title":"Principles of Programming Languages (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[3941],"id":3942,"label":"CSE 130","title":""},{"dept":"BIEB","description":"A laboratory course to familiarize students with ecological problem solving and methods. Students will perform outdoor fieldwork and use a computer for data exploration and analysis. Fieldwork can be expected in this course. Associated travel may be required, and students are responsible for their own transportation. Students may need to provide and use their own laptop. Material lab fees will apply. ","edges_from":[3624,1389,3399],"edges_to":[],"id":3943,"label":"BIEB 121","title":"Ecology Laboratory (4)"},{"dept":"BIEB","description":"Theory and practice of molecular biology techniques used in evolutionary and ecological research. Includes isolation and genotyping of DNA, PCR, and its applications. Phylogenetics, biodiversity, bioinformatics, and evolutionary and ecological analysis of molecular data. Material lab fees will apply. Students may not enroll in and receive credit for both BIMM 101 and BIEB 123. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. ","edges_from":[1424,954],"edges_to":[5951],"id":3944,"label":"BIEB 123","title":"Molecular Methods in Evolution and Ecology Lab (4)"},{"dept":"MAE","description":"Engineering Laboratory (4)","edges_from":[],"edges_to":[],"id":3945,"label":"MAE 126A","title":"Environmental"},{"dept":"BIEB","description":"This course begins with an introduction to plant population biology including whole-plant growth and physiology. We then focus on three classes of ecological interactions: plant-plant competition, plant-herbivore coevolution, and plant reproductive ecology including animal pollination and seed dispersal. ","edges_from":[1424],"edges_to":[],"id":3946,"label":"BIEB 126","title":"Plant Ecology (4)"},{"dept":"CSE","description":"(Formerly CSE 274A.) This course provides an overview of parallel hardware, algorithms, models, and software. Topics include Flynn’s taxonomy, interconnection networks, memory organization, a survey of commercially available multiprocessors, parallel algorithm paradigms and complexity criteria, parallel programming environments and tools for parallel debugging, language specification, mapping, performance, etc. ","edges_from":[],"edges_to":[],"id":3947,"label":"CSE 260","title":"Parallel Computation (4)"},{"dept":"BIEB","description":"Course begins with a survey of insect diversity and phylogenetic relationships. Course then addresses issues such as population dynamics (including outbreaks), movement and migration, competition, predation, herbivory, parasitism, insect defense, mimicry complexes, and sociality. Course also includes discussions of pest management, evolution of insecticide resistance, insect-borne diseases, and how insects are responding to global change. ","edges_from":[1424],"edges_to":[],"id":3948,"label":"BIEB 128","title":"Insect Diversity (4)"},{"dept":"MGT","description":"Supply chain management involves the flows of materials and information that contribute value to a product, from the source of raw materials to end customers. This course explains how supply chains work and describes the major challenges in managing an efficient supply chain. Covers various strategic and tactical supply chain issues such as distribution strategy, information sharing strategy, outsourcing, procurement (including e-markets), product design, virtual integration, and risk management. Credit is not allowed for both MGT 174 and MGT 175. ","edges_from":[],"edges_to":[],"id":3949,"label":"MGT 175","title":"Supply Chain Management (4)"},{"dept":"SOCI","description":"A survey of theoretical and empirical studies concerning the workings of the scientific community and its relations with the wider society. Special attention will be given to the institutionalization of the scientific role and to the social constitution of scientific knowledge. ","edges_from":[3950,3951],"edges_to":[3950],"id":3950,"label":"SOCI 168E","title":"Sociology of Science (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[3950],"id":3951,"label":"SOCC 168E","title":""},{"dept":"MGT","description":"This course covers efficient techniques for managing health services projects, including both the technical aspects of project management as well as the human-capital management issues associated with blending administrative and technical staff with health-care professionals. Topics include scheduling methods, milestone setting, governmental regulations, resource allocation, interpersonal skills, and performing research and development projects—all with a health services focus. ","edges_from":[],"edges_to":[],"id":3952,"label":"MGT 173","title":"Project Management: Health Services (4)"},{"dept":"MGT","description":"Addresses effective practices for management of business projects. Includes both project management processes—scheduling, milestone setting, resource allocation, budgeting, risk mitigation—and human capital management—communication, teamwork, leadership. Also considers requirements for effectively working across functional and organizational boundaries. ","edges_from":[],"edges_to":[],"id":3953,"label":"MGT 172","title":"Business Project Management (4)"},{"dept":"MGT","description":"Operations management (OM) involves the systematic design, execution, and improvement of business processes, projects, and partner relationships. This course goes beyond cost minimization and addresses issues that firms large and small must confront in their journey toward sustained scalability, growth, and profitability. Also examines human factors such as psychological contract, team management, empowerment, employee-initiated process improvements, morale, motivation, rewards, and incentives. ","edges_from":[],"edges_to":[],"id":3954,"label":"MGT 171","title":"Operations Management (4)"},{"dept":"LTCH","description":"in Contemporary Chinese Literature (4)","edges_from":[],"edges_to":[],"id":3955,"label":"LTCH 101","title":"Readings"},{"dept":"POLI","description":"to Political Science: American Politics (4)","edges_from":[],"edges_to":[],"id":3956,"label":"POLI 10 or 10D","title":"Introduction"},{"dept":"SOCI","description":"Special Topics in Culture, Language, and Social Interaction (4)","edges_from":[],"edges_to":[],"id":3957,"label":"SOCI 120T","title":""},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3958,"label":"BGRD 205","title":"Research Discussion in Plant Membrane Biology (1)"},{"dept":"BGRD","description":"Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":3959,"label":"BGRD 207","title":"Research Discussion in Neuronal Pattern Generation (1)"},{"dept":"LTTH","description":"A critical review of major contemporary theories of the nature of literature, its sociocultural function, and appropriate modes of evaluation.","edges_from":[],"edges_to":[],"id":3960,"label":"LTTH 115","title":"Introduction to Critical Theory (4)"},{"dept":"RELI","description":"Second quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196BH. ","edges_from":[3962],"edges_to":[],"id":3961,"label":"RELI 196BH","title":"Honors Thesis in Religion (4)"},{"dept":"RELI","description":"","edges_from":[],"edges_to":[3961],"id":3962,"label":"RELI 196A","title":""},{"dept":"AESE","description":"Focuses on analytic techniques supporting rational business decision making, providing systematic approaches to complex decision situations. Addresses analysis of conflicting objectives and use of tools such as value trees, decision trees, influence diagrams, and value hierarchies, Bayesian networks, and data mining. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ","edges_from":[3963,3964],"edges_to":[3963],"id":3963,"label":"AESE 241","title":"Decision and Risk Analysis (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[3963],"id":3964,"label":"MGT 241","title":""},{"dept":"HDP","description":"Study in Human Development (2–4)","edges_from":[],"edges_to":[],"id":3965,"label":"HDP 99","title":"Independent"},{"dept":"PHYS","description":"An introduction to the modern theory of dynamical systems and applications thereof. Topics include maps and flows, bifurcation theory and normal form analysis, chaotic attractors in dissipative systems, Hamiltonian dynamics and the KAM theorem, and time series analysis. Examples from real physical systems will be stressed throughout. ","edges_from":[2657],"edges_to":[],"id":3966,"label":"PHYS 221A","title":"Nonlinear and Nonequilibrium Dynamics of Physical Systems (4)"},{"dept":"ECE","description":"An advanced reading or research project performed under the direction of an ECE faculty member. Must contain enough design to satisfy the ECE program’s four-unit design requirement. Must be taken for a letter grade. May extend over two quarters with a grade assigned at completion for both quarters. ","edges_from":[],"edges_to":[],"id":3967,"label":"ECE 193H","title":"Honors Project (4–8)"},{"dept":"LTKO","description":"This course is designed to develop cultural understanding and professional/academic level reading skill for students with coverage of materials on Korean language history from the fifteenth century to the present, previous and current writing systems, and Korean language structure. May be taken for credit three times as topics vary. ","edges_from":[1913],"edges_to":[],"id":3968,"label":"LTKO 149","title":"Readings in Korean Language History and Structure (4)"},{"dept":"CHEM","description":"(4)","edges_from":[],"edges_to":[],"id":3969,"label":"CHEM 113","title":"Physical Chemistry of Biological Macromolecules"},{"dept":"SE","description":"Introduction to advanced composite materials and their applications. Fiber and matrix properties, micromechanics, stiffness, ply-by-ply stress, hygrothermal behavior, and failure prediction. Lab activity will involve design, analysis, fabrication, and testing of composite structure. Program or materials fees may apply. ","edges_from":[1308,652,1129,399],"edges_to":[4075],"id":3970,"label":"SE 142","title":"Design of Composite Structures (4)"},{"dept":"SE","description":"Introduction to concepts, procedures, and key issues of engineering design. Problem formulation, concept design, configuration design, parametric design, and documentation. Project management, team working, ethics, and human factors. Term project in model structure design. Program or materials fees may apply. ","edges_from":[3745,2660],"edges_to":[],"id":3971,"label":"SE 140","title":"Structures and Materials Laboratory (4)"},{"dept":"ERC","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":3972,"label":"ERC 2","title":"Transfer Year Experience (2)"},{"dept":"MAE","description":"Topics in the mechanics of blood flow including analytical solutions for flow in deformable vessels, one-dimensional equations, cardiovascular anatomy, lumped parameter models, vascular trees, scaling laws, and an introduction to the biomechanics and treatment of adult and congenital cardiovascular diseases. ","edges_from":[1537,1535],"edges_to":[],"id":3973,"label":"MAE 261","title":"Cardiovascular Fluid Mechanics (4)"},{"dept":"POLI","description":"(Same as LTCO 287.) A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. ","edges_from":[],"edges_to":[],"id":3974,"label":"POLI 213","title":"Culture and Political Theory (4)"},{"dept":"POLI","description":"(Same as Soc/G 202.) Themes important for social theory at the turn of the twenty-first century: Marxism, Gramsci, Althusser, critical theory (Adorno, Habermas), interpretation (Geertz), social systems (Parson), poststructuralism (Foucault), postmodernism, and social constructivism (Bourdieu). ","edges_from":[],"edges_to":[],"id":3975,"label":"POLI 212","title":"Contemporary Sociological Theory (4)"},{"dept":"POLI","description":"Normative approaches to liberty, equality, justice, and democracy, mostly Anglo-American and empirical approaches to justice. Thinkers such as Rawls, Habermas, Nozick, Dworkin, Raz, Roemer, Elster, Ostrom, Bowles, and Gintis may be considered. ","edges_from":[],"edges_to":[],"id":3976,"label":"POLI 216","title":"Contemporary Liberal and Democratic Theory (4)"},{"dept":"POLI","description":"An examination of selected texts in Marxist and post-Marxist political philosophy, with a focus on the theme of individual and collective identity including issues concerning alienation, consciousness, and ideology. ","edges_from":[],"edges_to":[],"id":3977,"label":"POLI 214","title":"Marxist and Post-Marxist Political Philosophy (4)"},{"dept":"PSYC","description":"This course provides an introduction to behavioral psychology. Topics include classical conditioning, operant conditioning, animal learning, and motivation and behavior modification.","edges_from":[],"edges_to":[],"id":3978,"label":"PSYC 4","title":"General Psychology: Behavioral Foundations (4)"},{"dept":"PSYC","description":"This course provides an introduction to theories and research results in developmental psychology, covering infancy through adulthood.","edges_from":[],"edges_to":[],"id":3979,"label":"PSYC 7","title":"General Psychology: Developmental Foundations (4)"},{"dept":"PSYC","description":"This course provides an introduction to social psychology. Topics may include emotion, aesthetics, behavioral medicine, person perception, attitudes and attitude change, and behavior in social organizations.","edges_from":[],"edges_to":[],"id":3980,"label":"PSYC 6","title":"General Psychology: Social Foundations (4)"},{"dept":"PSYC","description":"This course provides an introduction to the basic concepts of cognitive psychology. Topics include perception, attention, memory, language, and thought. The relation of cognitive psychology to cognitive science and to neuropsychology is also covered.","edges_from":[],"edges_to":[],"id":3981,"label":"PSYC 3","title":"General Psychology: Cognitive Foundations (4)"},{"dept":"ECON","description":"In this course, students are guided toward the formulation of an original research idea and the writing of an original paper. Students receive support and input through group discussion and also through interaction with the instructor. ","edges_from":[],"edges_to":[],"id":3982,"label":"ECON 296","title":"Original Research Paper (1–12)"},{"dept":"HUM","description":"An introduction to teaching humanities. Students are required to attend weekly discussions on methods of teaching humanities and will teach discussion sections of one of the humanities courses. Attendance at lecture of the course in which the student is participating is required. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":3983,"label":"HUM 195","title":"Methods of Teaching Humanities (4)"},{"dept":"MGT","description":"Sequence introduces students to various","edges_from":[],"edges_to":[],"id":3984,"label":"MGT 208B","title":"Introduction to Management Research B (4)"},{"dept":"TWS","description":"21-22-23-24-25-26. Third World Literatures (4-4-4-4-4-4)","edges_from":[],"edges_to":[],"id":3985,"label":"TWS","title":""},{"dept":"COGR","description":"This course is an introduction to the art of writing a research proposal. We will concentrate on proposals for ethnographic fieldwork, although the skills learned will be useful for many other purposes. The proposal writing process will be broken into component parts. Class time will be spent discussing these parts in greater detail and commenting on one another’s work. By the end of the quarter students will have produced a research proposal of their own. ","edges_from":[],"edges_to":[],"id":3986,"label":"COGR 263","title":"Writing Research Proposals (4)"},{"dept":"MGT","description":"This is the first course in a three-course sequence that introduces","edges_from":[],"edges_to":[],"id":3987,"label":"MGT 208A","title":"Introduction to Management Research A (4)"},{"dept":"LTIT","description":"Senior thesis research and writing for students who have been accepted for the literature honors program and who have completed LTWL 191. Oral examination. ","edges_from":[],"edges_to":[],"id":3988,"label":"LTIT 196","title":"Honors Thesis (4)"},{"dept":"COMM","description":"This course concentrates on one area of law specific to the concerns of communication: the relationship between privacy, personhood, and bodily autonomy. Using a combination of legal texts, court cases, and theoretical literature, we will consider the changing nature of each dimension of this relationship as the courts have been called upon to adjudicate conflicting claims and visions in matters of reproduction, sexual identity, genetic engineering, and the commodification of body parts. ","edges_from":[540],"edges_to":[],"id":3989,"label":"COMM 114N","title":"CSI: Communication and the Law: The Body in Law (4)"},{"dept":"COMM","description":"Specialized study in community-based and/or participatory design research with topics to be determined by the instructor, for any given quarter. Students who choose the option to do fieldwork for any given course, need to register for COMM 114K. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":3990,"label":"COMM 114K","title":"CSI: Community Fieldwork (2)"},{"dept":"COMM","description":"Examine food justice from multiple analytical and theoretical perspectives: race, class, diversity, equity, legal-institutional, business, ethical, ecological, scientific, cultural, and socio-technical. Compare political strategies of food justice organizations/movements aimed at creating healthy and sustainable food systems locally and globally. ","edges_from":[540],"edges_to":[],"id":3991,"label":"COMM 114J","title":"CSI: Food Justice (4)"},{"dept":"COMM","description":"Course explores the roles of media technologies in activist campaigns, social movements. Blending theory, historical case studies, and project-based group work, students will investigate possibilities and limitations of attempts to enroll new and old media technologies in collective efforts to make social change. ","edges_from":[540],"edges_to":[],"id":3992,"label":"COMM 114I","title":"CSI: Media Technologies and Social Movements (4)"},{"dept":"COMM","description":"This course will focus on arguments about cognitive differences between men and women in science. We will review current arguments about essential differences, historical beliefs about gender attributes and cognitive ability, and gender socialization into patterns of learning in school. ","edges_from":[540],"edges_to":[],"id":3993,"label":"COMM 114G","title":"CSI: Gender and Science (4)"},{"dept":"LTEU","description":"This course focuses on nineteenth-century European realism in historical and cultural context. Topics include definitions of realism, the impact of urbanization and industrialization on literary forms and themes, and relations between realism in literature and the visual arts. May be repeated up to three times for credit when topics vary.","edges_from":[],"edges_to":[],"id":3994,"label":"LTEU 111","title":"European Realism (4)"},{"dept":"COMM","description":"This course introduces students to different theories of globalization and of gender. Against this theoretical background, students critically examine the gendered (and racialized) nature of labor in the production of material, social, and cultural goods in the global economy. ","edges_from":[540],"edges_to":[],"id":3995,"label":"COMM 114E","title":"CSI: Gender, Labor, and Culture in the Global Economy (4)"},{"dept":"PHIL","description":"Continuation of 191A: independent study by special arrangement with and under the supervision of a faculty member, leading to the completion of the honors essay. A letter grade for both 191A and 191B will be given at the end of this quarter. ","edges_from":[],"edges_to":[],"id":3996,"label":"PHIL 191B","title":"The Honors Essay (4)"},{"dept":"COMM","description":"Consider “constitutions” as meaning-making, world-building mechanisms and practices. Explore how constitutions work: as interpretive instruments designed to frame, organize, guide human thought, action, and systems (according to certain rules or principles often represented as divine in origin and universal in effect) and; as ongoing, dynamic interpretative processes that nevertheless congeal in objects, bodies, and social arrangements and are thus considered binding or unalterable. ","edges_from":[540,3998],"edges_to":[],"id":3997,"label":"COMM 114C","title":"CSI: On Constitutions (4)"},{"dept":"COGN","description":"","edges_from":[],"edges_to":[3997],"id":3998,"label":"COGN 20","title":""},{"dept":"LTEN","description":"to the Literature of the United States, 1865 to the Present (4)","edges_from":[],"edges_to":[],"id":3999,"label":"LTEN 26","title":"Introduction"},{"dept":"RELI","description":"The course is an introductory study of cinema and religion. It explores how cinema depicts religion and spiritual experience. A number of films will be studied to understand how cinematic and religious narratives and practices overlap and, at times, diverge in complex ways. ","edges_from":[],"edges_to":[],"id":4000,"label":"RELI 150","title":"Religion and Cinema (4)"},{"dept":"LTEN","description":"to the Literature of the United States, Beginnings to 1865 (4)","edges_from":[],"edges_to":[],"id":4001,"label":"LTEN 25","title":"Introduction"},{"dept":"LTEN","description":"to the Literature of the British Isles: 1660–1832 (4)","edges_from":[],"edges_to":[],"id":4002,"label":"LTEN 22","title":"Introduction"},{"dept":"LTEN","description":"to the Literature of the British Isles: 1832–Present (4)","edges_from":[],"edges_to":[],"id":4003,"label":"LTEN 23","title":"Introduction"},{"dept":"LTEN","description":"to the Literature of the British Isles: Pre-1660 (4)","edges_from":[],"edges_to":[],"id":4004,"label":"LTEN 21","title":"Introduction"},{"dept":"LTEN","description":"to Asian American Literature (4)","edges_from":[],"edges_to":[],"id":4005,"label":"LTEN 28","title":"Introduction"},{"dept":"COMM","description":"This course will explore the role that “public history”—history as created for general audiences—plays in communicating cultural and national identities by examining museum exhibitions, their controversies, and how material objects mediate interpretations of the past. ","edges_from":[540],"edges_to":[],"id":4006,"label":"COMM 114P","title":"CSI: Public History and Museum Studies (4)"},{"dept":"RELI","description":"This course introduces students to historical and social developments of religion among Hispanic-Americans. The course examines changing religious traditions and ritual practices among Hispanic-Americans with a focus on Catholicism and (evangelical) Protestantism. ","edges_from":[],"edges_to":[],"id":4007,"label":"RELI 153","title":"Hispanic-American Religions (4)"},{"dept":"LIGN","description":"Africa is home to an astonishing variety of languages. This course investigates the characteristics of the major language families as well as population movements and language contact, and how governments attempt to regulate language use. ","edges_from":[],"edges_to":[],"id":4008,"label":"LIGN 108","title":"Languages of Africa (4)"},{"dept":"ECE","description":"Students complete a project comprising at least 50 percent or more engineering design to satisfy the following features: student creativity, open-ended formulation of a problem statement/specifications, consideration of alternative solutions/realistic constraints. Written final report required. ","edges_from":[4009],"edges_to":[4009],"id":4009,"label":"ECE 190","title":"Engineering Design (4)"},{"dept":"RELI","description":"This course introduces students to historical and social developments of religion among Asian-Americans. Tracing back to the mid-nineteenth century, the course examines changing religious traditions and ritual practices among Asian-American communities. ","edges_from":[],"edges_to":[],"id":4010,"label":"RELI 154","title":"Asian-American Religions (4)"},{"dept":"LIGN","description":"The interpretation of language in understanding the law: 1) the language of courtroom interaction (hearsay, jury instructions); 2) written legal language (contracts, ambiguity, legal fictions); 3) language-based issues in the law (First Amendment, libel and slander). ","edges_from":[],"edges_to":[],"id":4011,"label":"LIGN 105","title":"Law and Language (4)"},{"dept":"EDS","description":"EDS 140 builds on the students’ foundational knowledge about pre-K–12 public education obtained in introductory PAL courses. This course is conducted as a seminar, where students shape their research questions, theoretical frameworks, and data collection methods for the action research projects. In conjunction to their action research projects, EDS 140 students serve as mentors, tutors, and/or interns at local low-income, underserved pre-K–12 public schools and/or community centers. If students wish to continue their service-learning practicum at their host school, they can take EDS 139. ","edges_from":[2245,809,810,4012,813,3503,3510,1822],"edges_to":[4012,4013],"id":4012,"label":"EDS 140","title":"Introduction to Action Research in Pre-K–12 Education (4)"},{"dept":"EDS","description":"Course builds on students’ prior knowledge, experiences, and work from PAL foundations and intermediate courses to prepare them to conduct action research on relevant P–12 education issues. Students in the course will continue serving as tutors/mentors/interns in schools and communities. Students will also learn how to design educational research, carry out research in ethical ways, and analyze data for themes that the schools and communities find important. ","edges_from":[2245,809,810,4012,813,3503,3510,1822],"edges_to":[],"id":4013,"label":"EDS 141","title":"Action Research in Pre-K–12 Education: Advanced Practicum in Pre-K–12 Schools and Communities (4)"},{"dept":"COGS","description":"This is a studio class for students who are passionate about diving deep into interaction design and honing their design skills. Introduces social computing, input and interaction techniques, and information design. Students will regularly present work in a studio format. ","edges_from":[393,395,2857,4015],"edges_to":[],"id":4014,"label":"COGS 125","title":"Advanced Interaction Design (4)"},{"dept":"CSE","description":"","edges_from":[393,2670,3293,238,2647],"edges_to":[4590,4014,5823],"id":4015,"label":"CSE 170","title":""},{"dept":"COGS","description":"In this advanced project-based course, we study the state-of-the-art in research on technical systems for human-computer interaction (HCI). Students will deconstruct the systems described in top-tier HCI papers and work in teams to create novel technical systems of their own. ","edges_from":[2857,1573],"edges_to":[],"id":4016,"label":"COGS 124","title":"HCI Technical Systems Research (4)"},{"dept":"COGS","description":"This course explores the intersection of social behavior and computational systems. Students will examine a range of organizational, technical, and business challenges related to social computing, and learn how to use tools to analyze, design, and build online communities. ","edges_from":[1576,2857,3292,3293,2647],"edges_to":[],"id":4017,"label":"COGS 123","title":"Social Computing (4)"},{"dept":"LTSP","description":"Early Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)","edges_from":[],"edges_to":[],"id":4018,"label":"LTSP 150A","title":""},{"dept":"HIUS","description":"112B. History of Native Americans in the United States II (4)","edges_from":[],"edges_to":[],"id":4019,"label":"HIUS 108B/ETHN","title":""},{"dept":"ANTH","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in anthropology (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and consent of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":4020,"label":"ANTH 192","title":"Senior Seminar in Anthropology (1)"},{"dept":"ETHN","description":"This course will train students in approaches to interdisciplinary research concerned with power and the production of knowledge, with a focus on conducting multimedia field research, applying discourse analysis, and recognizing forms of data across disciplinary divides. Students may not receive credit for both ETHN 241 and ETHN 203. ","edges_from":[],"edges_to":[],"id":4021,"label":"ETHN 203","title":"Cultural Studies and Cultural Production (4)"},{"dept":"ETHN","description":"This course focuses on conceptual and methodological frameworks of ethnography and qualitative inquiry, including research design, grounded theory, the field note journal, participant observation, and interviewing; major themes include the role of indigenous/insider researchers, ethics of involvement, and community collaboration. Students may not receive credit for both ETHN 242 and ETHN 202. ","edges_from":[],"edges_to":[],"id":4022,"label":"ETHN 202","title":"Qualitative Methods/Ethnography (4)"},{"dept":"ANTH","description":"Course gives students experience in teaching of anthropology at the lower-division level. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Course not counted toward minor or major. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4023,"label":"ANTH 195","title":"Instructional Apprenticeship in Anthropology (4)"},{"dept":"COGS","description":"","edges_from":[],"edges_to":[3],"id":4024,"label":"COGS 7","title":""},{"dept":"MGT","description":"Provides an understanding of relationships among shareholders, managers, and boards. Focuses on the office of the chief executive officer and on the board of directors, including the roles and responsibilities of directors, and the legal, economic, managerial, and psychological issues they confront. Students may not earn credit for both MGT 421 and MGT 211. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4025,"label":"MGT 421","title":"CEO, the Board of Directors, and Corporate Governance (4)"},{"dept":"MGT","description":"Examines methods of conflict resolution needed for effective management in a constantly changing business environment. Applies these tools to the broad spectrum of negotiation problems faced by the manager and professional. Includes simulations, role playing, and cases. Students may not earn credit for both MGT 420 and MGT 260. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4026,"label":"MGT 420","title":"Negotiation (4)"},{"dept":"MGT","description":"This course focuses on fostering and maintaining creativity in entrepreneurial ventures and in general management more broadly. Reading materials, cases, classroom, and home exercises will help students understand and be able to use creativity in their own working lives. Students may not earn credit for both MGT 422 and MGT 222. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4027,"label":"MGT 422","title":"Creativity and Innovation (4)"},{"dept":"MGT","description":"Builds on core management courses and deals with identifying and assessing new technological and product opportunities. Assessment methods and frameworks will be introduced for technologies and opportunities. Various business models to profitably address the market opportunities will also be discussed. ","edges_from":[],"edges_to":[],"id":4028,"label":"MGT 425","title":"Opportunity and Business Model Analysis (2)"},{"dept":"LATI","description":"Guided and supervised reading of the literature of the several areas included in the interdisciplinary fields of anthropology, communications, economics, history, literature, political science, and sociology. ","edges_from":[],"edges_to":[],"id":4029,"label":"LATI 298","title":"Directed Reading (1–12)"},{"dept":"MGT","description":"Provides practical techniques to help structure decision problems and analyze them quantitatively. Techniques help thinking clearly about objectives, alternatives, consequences, and uncertainties, and enable logical judgments with other types of information. Letter grades only. Students may not earn credit for both MGT 427 and MGT 240. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4030,"label":"MGT 427","title":"Decision Analysis (4)"},{"dept":"LTWR","description":"This seminar will be organized around any of various topic areas relating to writing (fiction, poetry, cross-genre, theory). Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). S/U grades only. May be taken for credit three times as content varies. ","edges_from":[],"edges_to":[],"id":4031,"label":"LTWR 220","title":"Topics in Writing (4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in corporate governance. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 429 and MGT 219 if courses have same course subtitle. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4032,"label":"MGT 429","title":"Topics in Corporate Governance (2 or 4)"},{"dept":"LTCS","description":"This course may be designed according to an individual student’s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.","edges_from":[],"edges_to":[],"id":4033,"label":"LTCS 297","title":"Directed Studies: Reading Course (1–12)"},{"dept":"HIEA","description":"This colloquium will examine selected topics in modern Korean","edges_from":[],"edges_to":[],"id":4034,"label":"HIEA 180","title":"Topics in Modern Korean History (4)"},{"dept":"BGGN","description":"Through analysis of issues related to student learning, teaching practices, and equity and inclusion in the classroom, students will develop philosophies and scholarship of teaching as they advance in apprentice teaching under mentorship of faculty. S/U grades only. ","edges_from":[],"edges_to":[],"id":4035,"label":"BGGN 504","title":"Scholarship of Teaching and Learning in Biological Sciences (1)"},{"dept":"TDGR","description":"Advanced work in phonetics and articulation. Intensive study of stage dialects to prepare actor for variety of roles. ","edges_from":[4037,4038],"edges_to":[],"id":4036,"label":"TDGR 221A-B","title":"Speech for the Actor II (3-3)"},{"dept":"TDGR","description":"","edges_from":[],"edges_to":[4036],"id":4037,"label":"TDGR 221B","title":""},{"dept":"TDGR","description":"","edges_from":[],"edges_to":[4036],"id":4038,"label":"TDGR 221A","title":""},{"dept":"HIEU","description":"Intensive study of special problems or periods in the history of medieval Europe. Topics vary from year to year, and students may therefore repeat the course for credit. ","edges_from":[],"edges_to":[],"id":4039,"label":"HIEU 163/263","title":"Special Topics in Medieval History (4)"},{"dept":"BGGN","description":"Through interactive discussions, students will explore topics such as how people learn, evidence-based teaching practices, professional ethics, and equity and inclusion in the classroom. Students will also participate in apprentice teaching under mentorship of faculty. S/U grades only. ","edges_from":[],"edges_to":[],"id":4040,"label":"BGGN 500","title":"Introduction to College Biology Education (4)"},{"dept":"HIUS","description":"Study in United States History (4)","edges_from":[],"edges_to":[],"id":4041,"label":"HIUS 199","title":"Independent"},{"dept":"MATH","description":"(Conjoined with Math 279.) Mathematical models of physical systems arising in science and engineering, good models and well-posedness, numerical and other approximation techniques, solution algorithms for linear and nonlinear approximation problems, scientific visualizations, scientific software design and engineering, project-oriented. Graduate students will do an extra paper, project, or presentation per instructor. ","edges_from":[3026,1814],"edges_to":[],"id":4042,"label":"MATH 179","title":"Projects in Computational and Applied Mathematics (4)"},{"dept":"NEUG","description":"This course teaches mathematical concepts in neuroscience to students inexperienced in computation and mathematics. Topics from linear algebra, calculus, information theory, digital signal processing, graph theory, and machine learning will be covered. An optional weekly tutorial will teach computing basics. Priority enrollment is given to PhD students. MS students may enroll with instructor approval. Calculus AB is recommended but not required.","edges_from":[],"edges_to":[],"id":4043,"label":"NEUG 240","title":"Mathematical Foundations for Computational Neuroscience (3)"},{"dept":"NANO","description":"Principles of product quality assurance in design and production. Professional ethics. Safety and design for the environment. Culmination of team design projects initiated in NANO 120A with a working prototype designed for a real engineering application. ","edges_from":[4045],"edges_to":[],"id":4044,"label":"NANO 120B","title":"NanoEngineering System Design II (4)"},{"dept":"NANO","description":"","edges_from":[4047],"edges_to":[4044],"id":4045,"label":"NANO 120A","title":""},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 110B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110B or after successful completion of Econ 110B with A– or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":4046,"label":"ECON 110BH","title":"Honors Macroeconomics B (1)"},{"dept":"NANO","description":"","edges_from":[139,146,212,219,221,126],"edges_to":[4045],"id":4047,"label":"NANO 110","title":""},{"dept":"HISC","description":"Science and law are two of the most powerful establishments of modern Western culture. Science organizes our knowledge of the world; law directs our action in it. Will explore the historical roots of the interplay between them.","edges_from":[],"edges_to":[],"id":4048,"label":"HISC 131","title":"Science, Technology, and Law (4)"},{"dept":"CHIN","description":"Course designed to improve conversational Chinese for students interested in medicine and health care. Course aims for stronger Chinese proficiency within a medical environment. ","edges_from":[4050],"edges_to":[],"id":4049,"label":"CHIN 169B","title":"Medical Chinese II (4)"},{"dept":"CHIN","description":"","edges_from":[],"edges_to":[4049],"id":4050,"label":"CHIN 169A","title":""},{"dept":"HISC","description":"Major technological developments in the twentieth century, including the rise and decline of technologies, unexpected hazards and unanticipated consequences, and why some technologies fail.","edges_from":[],"edges_to":[],"id":4051,"label":"HISC 130","title":"Technology in the Twentieth Century (4)"},{"dept":"LTWR","description":"This course may be designed according to an individual student’s needs when seminar offerings do not cover subjects, genres, or authors of interest. May be applied toward the guided research or graduate seminar in literature requirement of the MFA program. Repeatable for credit. ","edges_from":[],"edges_to":[],"id":4052,"label":"LTWR 298","title":"Directed Studies: Writing Course (1–12)"},{"dept":"NEU","description":"An examination of the molecular and biochemical bases of drug and transmitter action. The course is devoted to receptor mechanisms, neuropharmacology, and drug action on excitable tissues. ","edges_from":[],"edges_to":[],"id":4053,"label":"NEU 277","title":"Neuropsychopharmacology (4)"},{"dept":"PHIL","description":"A course designed to satisfy the requirement that graduate students should serve as teaching assistants, either in the Department of Philosophy or in one of the writing programs offered by the various colleges. Each PhD candidate must teach the equivalent of quarter time for three academic quarters. Students are permitted to sign up as TAs for a maximum of eighteen quarters.","edges_from":[],"edges_to":[],"id":4054,"label":"PHIL 500","title":"Apprentice Teaching (1–4)"},{"dept":"MATH","description":"Methods for Partial Differential Equations (4)","edges_from":[],"edges_to":[],"id":4055,"label":"MATH 175","title":"Numerical"},{"dept":"BENG","description":"Senior Seminar I: Professional Issues in Bioengineering (2)","edges_from":[],"edges_to":[],"id":4056,"label":"BENG 191/291","title":""},{"dept":"Linguistics/German","description":"(LIGM) 5A, 5B, 5C, 5D. Fundamentals of German (5)","edges_from":[],"edges_to":[],"id":4057,"label":"Linguistics/German","title":""},{"dept":"ECE","description":"Characteristics of chemical, biological, seismic, and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust sensor fabrics; current experience with low power, low cost sensor deployments. Undergraduate students must take a final exam; graduate students must write a term paper or complete a final project. Cross-listed with MAE 149 and SIO 238. ","edges_from":[],"edges_to":[],"id":4058,"label":"ECE 156","title":"Sensor Networks (4)"},{"dept":"LTSP","description":"Latin American Literature (4)","edges_from":[],"edges_to":[],"id":4059,"label":"LTSP 133","title":"Contemporary"},{"dept":"CENG","description":"Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching). ","edges_from":[677],"edges_to":[],"id":4060,"label":"CENG 157","title":"Process Technology in the Semiconductor Industry (4)"},{"dept":"PHIL","description":"A general introduction to the philosophy of religion through the study of classical and/or contemporary texts. Among the issues to be discussed are the existence and nature of God, the problem of evil, the existence of miracles, the relation between reason and revelation, and the nature of religious language. ","edges_from":[],"edges_to":[],"id":4061,"label":"PHIL 185","title":"Philosophy of Religion (4)"},{"dept":"EDS/LIGN","description":"An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ","edges_from":[],"edges_to":[],"id":4062,"label":"EDS/LIGN 119","title":"First and Second Language Learning: From Childhood through Adolescence (4)"},{"dept":"PHIL","description":"The focus will be on a leading movement in continental philosophy (e.g., the critical theory of the Frankfurt school, structuralism and deconstruction, postmodernism) or some particular issue that has figured in these traditions (e.g., freedom, subjectivity, historicity, authenticity). May be repeated for credit with change in content and approval of instructor. ","edges_from":[],"edges_to":[],"id":4063,"label":"PHIL 183","title":"Topics in Continental Philosophy (4)"},{"dept":"PHIL","description":"An examination of the phenomenological tradition through the works of its major classical and/or contemporary representatives. Authors studied will vary and may include Brentano, Husserl, Heidegger, Merleau-Ponty, Levinas, Bourdieu. ","edges_from":[],"edges_to":[],"id":4064,"label":"PHIL 180","title":"Phenomenology (4)"},{"dept":"PHIL","description":"Classical texts and issues of existentialism. Authors studied will vary and may include Nietzsche, Kierkegaard, Sartre, and Heidegger. ","edges_from":[],"edges_to":[],"id":4065,"label":"PHIL 181","title":"Existentialism (4)"},{"dept":"TDGR","description":"Advanced Photoshop techniques will be explored and applied to the creation of multimedia projects. ","edges_from":[],"edges_to":[],"id":4066,"label":"TDGR 269B","title":"Photoshop II (4)"},{"dept":"TDGR","description":"Course will introduce the basic functions and applications of Photoshop as they may be applied to theatrical design. Emphasis on using Photoshop as an artistic tool. ","edges_from":[],"edges_to":[],"id":4067,"label":"TDGR 269A","title":"Photoshop I (4)"},{"dept":"VIS","description":"Examines the history, art, and architecture of Navajo, Hopi, Zuni, and other Native American communities of New Mexico and Arizona; the origins of their civilization; and how their arts survived, adapted, and changed in response to Euro-American influences. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126D and VIS 126I. ","edges_from":[],"edges_to":[],"id":4068,"label":"VIS 126I","title":"Southwest American Indian Art (4)"},{"dept":"HIGR","description":"Introduction to the bibliography, methodology, and ancillary disciplines for the study of medieval history together with readings and discussion on selected topics within the field. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":4069,"label":"HIGR 258","title":"Historical Scholarship in Medieval History (4)"},{"dept":"VIS","description":"An examination of the relation of art to ritual life, mythology, and social organization in the native Polynesian and Melanesian cultures of Hawaii, New Guinea, the Solomon Islands, and Australia. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126E and VIS 126K. ","edges_from":[],"edges_to":[],"id":4070,"label":"VIS 126K","title":"Oceanic Art (4)"},{"dept":"VIS","description":"The dynamic, expressive arts of selected West African societies and their subsequent survival and transformation in the New World will be studied. Emphasis will be placed on Afro-American modes of art and ceremony in the United States, Haiti, Brazil, and Suriname. ","edges_from":[],"edges_to":[],"id":4071,"label":"VIS 126J","title":"African and Afro-American Art (4)"},{"dept":"VIS","description":"in Ancient Maya Iconography and Inscriptions (4)","edges_from":[],"edges_to":[],"id":4072,"label":"VIS 126D","title":"Problems"},{"dept":"LTSP","description":"Study of movements, traditions, key authors, or major trends in Peruvian, Ecuadorian, and Bolivian literatures, such as indigenismo, urban narrative, and the works of authors such as Vallejo, Icaza, Arguedas, Vargas Llosa. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":4073,"label":"LTSP 136","title":"Andean Literatures (4)"},{"dept":"VIS","description":"Topics of this seminar will address special problems or areas of research related to the major civilizations of ancient Mexico and Central America. Course offerings will vary to focus upon particular themes, subjects, or interpretive problems. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126B-C. ","edges_from":[],"edges_to":[],"id":4074,"label":"VIS 126C","title":"Problems in Mesoamerican Art History (4)"},{"dept":"SE","description":"Conceptual and preliminary structural design of aircraft and space vehicles. Minimum-weight design of primary structures based upon mission requirements and configuration constraints. Multicriteria decision making. Team projects include layout, material selection, component sizing, fabrication, and cost. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ","edges_from":[3970,4076,2231],"edges_to":[4079],"id":4075,"label":"SE 143A","title":"Aerospace Structural Design I (4)"},{"dept":"SE","description":"","edges_from":[2082],"edges_to":[4075],"id":4076,"label":"SE 3","title":""},{"dept":"VIS","description":"Art: Modern to Postmodern, 1950–Present (4)","edges_from":[],"edges_to":[],"id":4077,"label":"VIS 126Q","title":"Latin American"},{"dept":"VIS","description":"Art: Modern to Postmodern, 1890–1950 (4)","edges_from":[],"edges_to":[],"id":4078,"label":"VIS 126P","title":"Latin American"},{"dept":"SE","description":"Detailed structural design of aircraft and space vehicles. Composite material design considerations. Multidisciplinary design optimization. Introduction to aerospace computer-aided design and analysis tools. Team projects include the analysis, fabrication, and testing of a flight vehicle component. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ","edges_from":[4075],"edges_to":[],"id":4079,"label":"SE 143B","title":"Aerospace Structural Design II (4)"},{"dept":"SE","description":"Analysis of aerospace structures via work-energy principles and finite element analysis. Bending of metallic and laminated composite plates and shells. Static vibration, and buckling analysis of simple and built-up aircraft structures. Introduction to wing divergence and flutter, fastener analysis. ","edges_from":[4081],"edges_to":[],"id":4080,"label":"SE 260B","title":"Aerospace Structural Mechanics II (4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[4080],"id":4081,"label":"SE 260A","title":""},{"dept":"POLI","description":"(Same as USP 116) This course surveys public finance and administration. It focuses upon California local governments—cities, counties, and special districts—and also examines state and federal relationships. Topics explored include revenue, expenditure, indebtedness, policy responsibilities, and administrative organization and processes. ","edges_from":[],"edges_to":[],"id":4082,"label":"POLI 103D","title":"California Local Government: Finance and Administration (4)"},{"dept":"NANO","description":"Fundamentals and practice of methods to image, measure, and analyze materials and devices that are structured at the nanometer scale. Optical and electron microscopy; scanning probe methods; photon-, ion-, electron-probe methods, spectroscopic, magnetic, electrochemical, and thermal methods. ","edges_from":[212],"edges_to":[4084],"id":4083,"label":"NANO 111","title":"Characterization of NanoEngineering Systems (4)"},{"dept":"NANO","description":"Introduction to methods for fabricating materials and devices in NanoEngineering. Nano-particle, -vesicle, -tube, and -wire synthesis. Top-down methods including chemical vapor deposition, conventional and advanced lithography, doping, and etching. Bottom-up methods including self-assembly. Integration of heterogeneous structures into functioning devices. ","edges_from":[146,4083,212],"edges_to":[],"id":4084,"label":"NANO 112","title":"Synthesis and Fabrication of NanoEngineering Systems (4)"},{"dept":"NANO","description":"Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with CENG 114. Students may not receive credit for both NANO 114 and CENG 114. ","edges_from":[219,139,221,126],"edges_to":[],"id":4085,"label":"NANO 114","title":"Probability and Statistical Methods for Engineers (4)"},{"dept":"CHIN","description":"Graduate thesis research under the guidance of a faculty member affiliated with the Program in Chinese Studies.","edges_from":[],"edges_to":[],"id":4086,"label":"CHIN 296","title":"Directed Thesis Research (2–12)"},{"dept":"VIS","description":"This course will explore design strategies that engage today’s shifting public domain structures, situating the problematic of “the public” and the politics of public sphere as sites of investigation, and speculating new interfaces between individuals, collectives, and institutions in coproducing more critical and inclusive forms of public space and culture. ","edges_from":[931],"edges_to":[],"id":4087,"label":"VIS 100A","title":"Design of Public Culture (4)"},{"dept":"CHIN","description":"Independent graduate research under the guidance","edges_from":[],"edges_to":[],"id":4088,"label":"CHIN 299","title":"Independent Study in Chinese Studies (2–12)"},{"dept":"HIUS","description":"In this seminar, we will examine the shifting boundary between what constitutes a public and a private concern in twentieth-century US history. We will consider issues such as civil rights, immigration, health care, and the regulation of financial institutions. ","edges_from":[4090,4091],"edges_to":[],"id":4089,"label":"HIUS 185/285","title":"In the Public Interest (4)"},{"dept":"HIUS","description":"","edges_from":[],"edges_to":[4089],"id":4090,"label":"HIUS 185","title":""},{"dept":"HIUS","description":"","edges_from":[],"edges_to":[4089],"id":4091,"label":"HIUS 285","title":""},{"dept":"LTEN","description":"A study in depth of the works of major American writers. May be repeated up to three times for credit when topics vary.","edges_from":[],"edges_to":[],"id":4092,"label":"LTEN 176","title":"Major American Writers (4)"},{"dept":"LTAM","description":"Reading of representative works in Latin American literature with a view to literary analysis (form, theme, meaning), the developmental processes of the literature, and the many contexts: historical, social, cultural. Texts may be read in English. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4093,"label":"LTAM 110","title":"Latin American Literature in Translation (4)"},{"dept":"LTAM","description":"Comparative survey of Caribbean literatures from the Spanish, French, English, and Dutch Caribbean. Literary texts trace historical paradigms including the development of plantation slavery, emancipation, the quest for nationhood, migration, and transnational identities. Films and music may complement discussion.","edges_from":[],"edges_to":[],"id":4094,"label":"LTAM 111","title":"Comparative Caribbean Discourse (4)"},{"dept":"HIEU","description":"The social, political, and cultural transformation of late-medieval Italy from the heyday of mercantile expansion before the plague to the dissolution of the Italian state system with the French invasions of 1494. Special focus upon family, associational life and factionalism in the city, the development of the techniques of capitalist accumulation, and the spread of humanism. +","edges_from":[],"edges_to":[],"id":4095,"label":"HIEU 120","title":"The Renaissance in Italy (4)"},{"dept":"HIEU","description":"This course treats the history of the Greek world from the Mycenaeans to the aftermath of the Peloponnesian War. It focuses on the rise of the polis, the development of the Athenian democracy and imperialism, and the Peloponnesian War. +","edges_from":[],"edges_to":[],"id":4096,"label":"HIEU 122","title":"Ancient Greece from the Bronze Age to the Peloponnesian War (4)"},{"dept":"HIEU","description":"This course explores the dramatic political, social, and cultural changes in the Greek world and the Eastern Mediterranean from the fourth century BCE and the rise of Alexander the Great to the death of Cleopatra. +","edges_from":[],"edges_to":[],"id":4097,"label":"HIEU 123","title":"Ancient Greece from Classical Athens to Cleopatra (4)"},{"dept":"HIEU","description":"The intellectual and social history of the Reformation and Counter-Reformation from the French invasions to the Edict of Nantes. Emphasis is upon reform from below and above, the transformation of grass-roots spirituality into institutional control. +","edges_from":[],"edges_to":[],"id":4098,"label":"HIEU 125","title":"Reformation Europe (4)"},{"dept":"TDDR","description":"Discussion and research into the duties, responsibilities, and roles of a stage manager. Work to include studies in script analysis, communication, rehearsal procedures, performance skills, and style and conceptual approach to theatre. THGE or TDGE 1, THAC or TDAC 1, and THDE or TDDE 1 recommended.","edges_from":[],"edges_to":[5346],"id":4099,"label":"TDDR 101","title":"Stage Management (4)"},{"dept":"HIEU","description":"This course looks at the phenomenon of sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries.","edges_from":[],"edges_to":[],"id":4100,"label":"HIEU 127","title":"Sport in the Modern World (4)"},{"dept":"ECE","description":"Physics of solid-state electronic devices, including p-n diodes, Schottky diodes, field-effect transistors, bipolar transistors, pnpn structures. Computer simulation of devices, scaling characteristics, high frequency performance, and circuit models. ","edges_from":[2966],"edges_to":[5099],"id":4101,"label":"ECE 230B","title":"Solid State Electronics II (4)"},{"dept":"ECE","description":"Introduction to noise and linearity concepts. System budgeting for optimum dynamic range. Frequency plan tradeoffs. Linearity analysis techniques. Down-conversion and up-conversion techniques. Modulation and demodulation. Microwave and RF system design communications. Current research topics in the field. ","edges_from":[4103],"edges_to":[4104,5105],"id":4102,"label":"ECE 265A","title":"Communication Circuit Design I (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[4104,4102],"id":4103,"label":"ECE 166","title":""},{"dept":"ECE","description":"Radio frequency integrated circuits: low-noise amplifiers, AGCs, mixers, filters, voltage-controlled oscillators. BJT and CMOS technologies for radio frequency and microwave applications. Device modeling for radio frequency applications. Design and device tradeoffs of linearity, noise, power dissipation, and dynamic range. Current research topics in the field. ","edges_from":[4102,4103],"edges_to":[],"id":4104,"label":"ECE 265B","title":"Communication Circuit Design II (4)"},{"dept":"TDDR","description":"This is an introductory class in the process of understanding the play script. The class will focus on analyzing the story and the underlying dramatic structure in terms of dramatic action. Objectives, actions, choices, given circumstances, and character will be examined. ","edges_from":[],"edges_to":[5345],"id":4105,"label":"TDDR 108","title":"Text Analysis for Actors and Directors (4)"},{"dept":"POLI","description":"Survey of theories, with empirical cases explaining origins of the modern state. ","edges_from":[],"edges_to":[],"id":4106,"label":"POLI 220C","title":"Origins of the State (4)"},{"dept":"POLI","description":"This is a second course in comparative politics designed as a preparation for the field examination. It will focus on the comparative study of political institutions. ","edges_from":[],"edges_to":[],"id":4107,"label":"POLI 220B","title":"Comparative Politics: Institutions (4)"},{"dept":"POLI","description":"This course will provide a general literature review in comparative politics to serve as preparation for the field examination. ","edges_from":[],"edges_to":[],"id":4108,"label":"POLI 220A","title":"Comparative Politics: State and Society (4)"},{"dept":"Linguistics/French","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1B. ","edges_from":[2537,2538],"edges_to":[],"id":4109,"label":"Linguistics/French (LIFR) 1BX","title":"Analysis of French (2.5)"},{"dept":"MUS","description":"This seminar introduces the central theories, methods, and approaches used to study the music of contemporary cultures, in their local contexts. In addition to surveying key writings, students will document music from their local environment. ","edges_from":[],"edges_to":[],"id":4110,"label":"MUS 110","title":"Introduction to Ethnomusicology Seminar (4)"},{"dept":"MUS","description":"A study of particular regional music in their repertory, cultural context, and interaction with other traditions. Topics vary. May be taken for credit up to three times. ","edges_from":[],"edges_to":[],"id":4111,"label":"MUS 111","title":"Topics/World Music Traditions (4)"},{"dept":"MUS","description":"This course will address topics in medieval, Renaissance, and Baroque music; topics will vary from year to year. May be repeated five times for credit. ","edges_from":[4113,4114],"edges_to":[],"id":4112,"label":"MUS 112","title":"Topics in European Music Before 1750 (4)"},{"dept":"MUS","description":"","edges_from":[],"edges_to":[4112,4115],"id":4113,"label":"MUS 8","title":""},{"dept":"MUS","description":"","edges_from":[],"edges_to":[4112,4115],"id":4114,"label":"MUS 4","title":""},{"dept":"MUS","description":"This course will focus on Western music between 1750 and the early twentieth century; topics will vary from year to year. May be repeated five times for credit. ","edges_from":[4113,4114],"edges_to":[],"id":4115,"label":"MUS 113","title":"Topics in Classic, Romantic, and Modern Music (4)"},{"dept":"MUS","description":"An exploration of materials and methods used in the music of our time. There will be an extra discussion group for music majors. May be repeated once for credit. ","edges_from":[],"edges_to":[],"id":4116,"label":"MUS 114","title":"Music of the Twentieth Century (4)"},{"dept":"MUS","description":"A survey of the biographical, historical, sociological, and political issues affecting woman musicians, their creativity, their opportunities, and their perception by others. It compares and contrasts the work of women composers, performers, patrons, teachers, and writers on music from the Middle Ages through the present. ","edges_from":[],"edges_to":[],"id":4117,"label":"MUS 115","title":"Women in Music (4)"},{"dept":"MUS","description":"This course examines special topics in popular music from various sociopolitical, aesthetic, and performance perspectives. Readings include recent literature in cultural studies, musicology, and/or performance practice. Topics vary. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":4118,"label":"MUS 116","title":"Popular Music Studies Seminar (4)"},{"dept":"MGT","description":"Project-based course, requiring identification and completion of major project assessing potential business value of emerging or potential technology or science. Students work individually or in teams. Periodic class meetings include presentation of interim and final reports. Letter grades only. ","edges_from":[4120],"edges_to":[],"id":4119,"label":"MGT 414B","title":"Lab to Market Workshop II (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[4119],"id":4120,"label":"MGT 414A","title":""},{"dept":"SOCI","description":"An inquiry into the roles of culture and social structure in mediating the health and illness experiences of individuals and groups. Topics include the social construction of illness, the relationships between patients and health professionals, and the organization of medical work. ","edges_from":[4121,4122],"edges_to":[4121],"id":4121,"label":"SOCI 135","title":"Medical Sociology (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[4121],"id":4122,"label":"SOCC 135","title":""},{"dept":"SOCI","description":"Examination and analysis of empirical research and theoretical perspectives on gender and work. Special attention to occupational segregation. Other topics include: the interplay between work and family; gender, work and poverty; gender and work in the Third World. ","edges_from":[4123,4124],"edges_to":[4123],"id":4123,"label":"SOCI 132","title":"Gender and Work (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[4123],"id":4124,"label":"SOCC 132","title":""},{"dept":"COMM","description":"Historical and cultural aspects of media, information, imaging technology use in biomedical research, clinical care, health communication to constructions of gender and identity. We approach the subject through audiovisual texts and writings from fields including science and technology studies and cultural studies. ","edges_from":[540],"edges_to":[],"id":4125,"label":"COMM 108G","title":"POB: Gender and Biomedicine (4)"},{"dept":"VIS","description":"Art and Civilization of the Ancient Maya (4)","edges_from":[],"edges_to":[],"id":4126,"label":"VIS 126BN","title":"The"},{"dept":"CENG","description":"Hands-on, team-based laboratory activities to demonstrate modern applications of chemical engineering, and the role of the chemical engineer in academia and industry. Emphasis on teamwork, safe laboratory practices, and student-directed problem solving. ","edges_from":[4127],"edges_to":[4127],"id":4127,"label":"CENG 4","title":"Experience Chemical Engineering (1)"},{"dept":"SOCI","description":"This course offers insight into why and how","edges_from":[],"edges_to":[],"id":4128,"label":"SOCI 130","title":"Population and Society (4)"},{"dept":"SOCI","description":"Chronological age and social status; analysis of social processes bearing upon the socialization of children and adolescents. The emergence of “youth cultures,” generational succession as a cultural problem. ","edges_from":[4129,4130],"edges_to":[4129],"id":4129,"label":"SOCI 131","title":"Sociology of Youth (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[4129],"id":4130,"label":"SOCB 131","title":""},{"dept":"BILD","description":"The workshops will be restricted to lower-division undergraduates. The course will introduce students to the methods of scientific research and to a variety of research topics in the biological/biomedical sciences. Examples of topics are: Introduction to Scientific Research, AIDS, Medical and Social Aspects, Is the Mind the Same as the Brain, Wildlife Conservation.","edges_from":[],"edges_to":[],"id":4131,"label":"BILD 95","title":"Undergraduate Workshops (1)"},{"dept":"LTLA","description":"","edges_from":[],"edges_to":[],"id":4132,"label":"LTLA 105","title":"Topics in Latin Literature (4)"},{"dept":"BILD","description":"Weekly seminar providing Biological Sciences Scholars Program students with the opportunity to learn more about research and scholarly activities available to them and acquaints them with UC San Diego faculty members. The course will promote student’s participation in research and other scholarly activities on campus. ","edges_from":[],"edges_to":[],"id":4133,"label":"BILD 96","title":"Biology: Honors Seminar (2)"},{"dept":"LTLA","description":"Reading and discussion of selections from representative authors of one or more periods. Review of grammar as needed. ","edges_from":[3506],"edges_to":[],"id":4134,"label":"LTLA 100","title":"Introduction to Latin Literature (4)"},{"dept":"LTWL","description":"Honors practicum for those students in the literature department Honors Program. This is a one-unit course for which students in the Honors Program will present their work as part of organized panels at an Honors Program conference (within the department). Students will receive a P/NP grade for LTWL 194A for completing the presentation. ","edges_from":[4136,3619],"edges_to":[],"id":4135,"label":"LTWL 194A","title":"Honors Practicum (1)"},{"dept":"LTWR","description":"","edges_from":[],"edges_to":[4135],"id":4136,"label":"LTWR 194","title":""},{"dept":"LTLA","description":"","edges_from":[],"edges_to":[],"id":4137,"label":"LTLA 102","title":"Latin Poetry (4)"},{"dept":"LTLA","description":"","edges_from":[],"edges_to":[],"id":4138,"label":"LTLA 103","title":"Latin Drama (4)"},{"dept":"BILD","description":"Independent research by special arrangement with a faculty member. (P/NP grades only.) Students must have an overall UC San Diego GPA of at least 3.0 and a minimum of thirty units complete. Students must complete a Special Studies form and a Division of Biological Sciences Research Plan. Credit may not be received for a course numbered 99 subsequent to receiving credit for a course numbered 199. ","edges_from":[],"edges_to":[],"id":4139,"label":"BILD 99","title":"Independent Research (2 or 4)"},{"dept":"BILD","description":"Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. Students must complete a special studies application. Paperwork for a BILD 98 must be submitted to SIS by Friday of the eighth week of the quarter preceding the quarter in which the 98 will be completed. P/NP grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":4140,"label":"BILD 98","title":"Directed Group Study (1 to 4)"},{"dept":"PSYC","description":"This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural system that controls them, emphasizing broad fundamental relationships between brain and behavior across species. Cross-listed with BIPN 189. Students may not receive credit for PSYC 189 and BIPN 189. ","edges_from":[369,858,1013],"edges_to":[],"id":4141,"label":"PSYC 189","title":"Brain, Behavior, and Evolution (4)"},{"dept":"POLI","description":"Surveys the theory and function","edges_from":[],"edges_to":[],"id":4142,"label":"POLI 151","title":"International Organizations (4)"},{"dept":"CSE","description":"Learning methods for applications. Content may include data preparation, regression and classification algorithms, support vector machines, random forests, class imbalance, overfitting, decision theory, recommender systems and collaborative filtering, text mining, analyzing social networks and social media, protecting privacy, A/B testing. Recommended preparation: CSE 103 or similar. ","edges_from":[],"edges_to":[],"id":4143,"label":"CSE 255","title":"Data Mining and Predictive Analytics (4)"},{"dept":"CSE","description":"Learning algorithms based on statistics. Possible topics include minimum-variance unbiased estimators, maximum likelihood estimation, likelihood ratio tests, resampling methods, linear logistic regression, feature selection, regularization, dimensionality reduction, manifold detection. An upper-division undergraduate course on probability and statistics such as Math 183 or 186, or any graduate course on statistics, pattern recognition, or machine learning is recommended. ","edges_from":[],"edges_to":[],"id":4144,"label":"CSE 254","title":"Statistical Learning (4)"},{"dept":"CSE","description":"Probability density estimation, perceptrons, multilayer neural networks, radial basis function networks, support vector machines, error functions, data preprocessing. Possible topics include unsupervised learning methods, recurrent networks, and mathematical learning theory. Recommended preparation: CSE 250B or equivalent. ","edges_from":[],"edges_to":[],"id":4145,"label":"CSE 253","title":"Neural Networks for Pattern Recognition (4)"},{"dept":"POLI","description":"This course introduces students to the role of the EU as a foreign policy actor. Topics include the development of the EU’s trade policy, foreign aid policy, security policy, as well as case studies of EU foreign policy.","edges_from":[],"edges_to":[],"id":4146,"label":"POLI 153","title":"The European Union in World Politics (4)"},{"dept":"CSE","description":"A weekly meeting featuring local (and occasional external) speakers discussing their current research in Artificial Intelligence Neural Networks, and Genetic Algorithms. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":4147,"label":"CSE 259","title":"Seminar in Artificial Intelligence (1)"},{"dept":"CSE","description":"Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. Recommended preparation: No previous background in machine learning is required, but students should be comfortable with programming (all example code will be in Python), and with basic optimization and linear algebra. ","edges_from":[],"edges_to":[],"id":4148,"label":"CSE 258","title":"Recommender Systems and Web Mining (4)"},{"dept":"BIEB","description":"Students will investigate selected in-depth topics in evolutionary biology through reading and writing. Students will read books and articles written for a general audience as well as primary literature. Example topics include the origins of novel features, the impact of human activity and environmental changes on evolutionary processes, the rate and intensity of natural selection, and how our own evolutionary history affects human health. ","edges_from":[1424,954],"edges_to":[],"id":4149,"label":"BIEB 154","title":"Evolutionary Inquiry (4)"},{"dept":"PSYC","description":"This course provides an examination of visual, auditory, and tactile illusions and examines how they arise from interactions between perceptual and cognitive systems. ","edges_from":[],"edges_to":[],"id":4150,"label":"PSYC 182","title":"Illusions and the Brain (4)"},{"dept":"BIEB","description":"The goal of the course is to learn about the population-level processes that govern evolution. Mathematical foundations of population genetics are laid out and applications are discussed. Topics include: evolution of drug resistance, origin of species, evolution of engineered organisms. ","edges_from":[3624,1993,412,1389],"edges_to":[],"id":4151,"label":"BIEB 156","title":"Population Genetics (4)"},{"dept":"BIEB","description":"Evolutionary processes are discussed in their genetic, historical, and","edges_from":[],"edges_to":[4325],"id":4152,"label":"BIEB 150","title":"Evolution (4)"},{"dept":"BIEB","description":"Treating infectious diseases is a uniquely difficult problem since pathogens often evolve, rendering today’s therapies useless tomorrow. This course will provide a review of concepts and methods in evolutionary medicine, with an emphasis on microbial genomics and molecular evolution. ","edges_from":[1424],"edges_to":[],"id":4153,"label":"BIEB 152","title":"Evolution of Infectious Diseases (4)"},{"dept":"MGT","description":"Students will study alternative organizational structures, their stakeholders and corporate cultures, and their use in meeting strategic enterprise priorities facing a company. This course provides students with insights into motivational factors, communications networks, organizational cultures, and alternative leadership styles. The concept of change management and its challenges is also studied along with power and influence. Course previously listed as: Organizational Leadership. ","edges_from":[],"edges_to":[],"id":4154,"label":"MGT 164","title":"Business and Organizational Leadership (4)"},{"dept":"MGT","description":"Ethics and Corporate Responsibility (4)","edges_from":[],"edges_to":[],"id":4155,"label":"MGT 166","title":"Business"},{"dept":"MGT","description":"Social entrepreneurs create innovative solutions to solve challenging social and environmental issues affecting the world around them. In this course, students will learn how to apply entrepreneurial business and innovative skills to effectively tackle global issues impacting society such as environmental degradation, rural health care availability, educational improvements in economically disadvantaged regions of the world, famine in an era of obesity, and clean water development. ","edges_from":[],"edges_to":[],"id":4156,"label":"MGT 167","title":"Social Entrepreneurship (4)"},{"dept":"LIGN","description":"Surveys aspects of Spanish phonetics, phonology, morphology, and syntax. Topics include dialect differences between Latin American and Peninsular Spanish (both from a historical and contemporary viewpoint), gender classes, verbal morphology, and clause structure. ","edges_from":[752],"edges_to":[],"id":4157,"label":"LIGN 143","title":"The Structure of Spanish (4)"},{"dept":"PSYC","description":"This course provides an overview of the period of human adolescence, including the physical, cognitive, social, and emotional changes that take place during this developmental transition. ","edges_from":[],"edges_to":[],"id":4158,"label":"PSYC 180","title":"Adolescence (4)"},{"dept":"MGT","description":"The ability to negotiate effectively is a critical skill for business professionals. Students will develop a systematic and insightful approach to negotiation. The course provides an introduction to strategic thinking and the basic concepts, tactics, and cognitive aspects of negotiation. Interactive negotiation exercises are used to isolate and emphasize specific analytic points and essential skills. ","edges_from":[],"edges_to":[],"id":4159,"label":"MGT 162","title":"Negotiation (2)"},{"dept":"HIEA","description":"171/271. Society and Culture in Premodern China (4)","edges_from":[],"edges_to":[],"id":4160,"label":"HIEA","title":""},{"dept":"GPPS","description":"This course will examine characteristics and distinctive aspects of contemporary Korean society and politics. Emphasis will be placed on continuity and change in social values, political culture and leadership, economic growth and its impact, and democratization and its future prospects. Renumbered from IRGN 484. Students may not receive credit for GPPS 484 and IRGN 484.","edges_from":[],"edges_to":[],"id":4161,"label":"GPPS 484","title":"Korean Politics (4)"},{"dept":"HIUS","description":"This course surveys the history of California from the period just before Spanish contact in 1542 through California’s admission to the Union in 1850. +","edges_from":[],"edges_to":[],"id":4162,"label":"HIUS 114A","title":"California History 1542–1850 (4)"},{"dept":"HIUS","description":"This course surveys the history of California from 1850 to the present.","edges_from":[],"edges_to":[],"id":4163,"label":"HIUS 114B","title":"California History, 1850–Present (4)"},{"dept":"HIEU","description":"Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism’s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity. Program or materials fees may apply. Students may not receive credit for HIEU 135 and HIEU 135GS. Students must apply and be accepted to the Global Seminars Program.","edges_from":[],"edges_to":[],"id":4164,"label":"HIEU 135GS","title":"Sun, Sea, Sand, and Sex: Tourism and Tourists in the Contemporary World (4)"},{"dept":"AAS","description":"This course will explore specialized, relevant topics in the field of African American studies. Course topics will vary from quarter to quarter, so it may be repeated up to three times as long as the quarterly topics vary.","edges_from":[],"edges_to":[],"id":4165,"label":"AAS 190","title":"Special Topics in African American Studies (1–4)"},{"dept":"AAS","description":"Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. P/NP grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":4166,"label":"AAS 198","title":"Directed Group Study in African American Studies (2 or 4)"},{"dept":"SE","description":"Development of finite element models based upon the Galerkin method. Application to static and dynamic heat conduction and stress analysis. Formulation of initial boundary value problem models, development of finite element formulas, solution methods, and error analysis and interpretation of results. ","edges_from":[2084,2660,2085,2086],"edges_to":[],"id":4167,"label":"SE 131","title":"Finite Element Analysis (4)"},{"dept":"ECON","description":"Analyzes exchange rates and the current account. Relates their joint determination to financial markets and the real-side macroeconomy using international macroeconomic models and presents empirical regularities. Discusses macroeconomic policies under different exchange rate regimes and implications for financial stability and current account sustainability. ","edges_from":[800,1290,1131],"edges_to":[],"id":4168,"label":"ECON 103","title":"International Monetary Relations (4)"},{"dept":"EDS","description":"Third course in the series. The secondary credential candidate teaches approximately one academic quarter for each course in this series (one public school academic year) under the guidance of a university supervisor with additional support provided by an on-site teacher. The internship offers extensive professional preparation and diversified teaching experience under actual classroom conditions for post-baccalaureate students pursuing the California Single Subject Teaching Credential. ","edges_from":[4170],"edges_to":[],"id":4169,"label":"EDS 379C","title":"Single Subject (Secondary) Internship Practicum III (8)"},{"dept":"EDS","description":"","edges_from":[4171],"edges_to":[4169],"id":4170,"label":"EDS 379B","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[4170],"id":4171,"label":"EDS 379A","title":""},{"dept":"CONT","description":"A workshop for potential discussion leaders","edges_from":[],"edges_to":[],"id":4172,"label":"CONT 196","title":"Contemporary Issues Workshop (2)"},{"dept":"NANO","description":"Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. Cross-listed with BENG 247A and ECE 247A. ","edges_from":[],"edges_to":[],"id":4173,"label":"NANO 247A","title":"Advanced BioPhotonics (4)"},{"dept":"NANO","description":"Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.) Form heterogeneous materials and components. Cross-listed with BENG 247B and ECE 247B. ","edges_from":[],"edges_to":[],"id":4174,"label":"NANO 247B","title":"BioElectronics (4)"},{"dept":"NANO","description":"Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices, nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles, nanostructures with biological molecules; nanostructural aspects of fuel cells; biofuel cells; potential use of DNA, other biomolecules. Cross-listed with BENG 247C and ECE 247C. ","edges_from":[],"edges_to":[],"id":4175,"label":"NANO 247C","title":"BioNanotechnology (4)"},{"dept":"MAE","description":"Flow instabilities, linear stability theory;","edges_from":[],"edges_to":[],"id":4176,"label":"MAE 210C","title":"Fluid Mechanics III (4)"},{"dept":"CONT","description":"Group studies, readings, projects, and discussions in areas of contemporary concern. Course is set up so that students may work together as a group in an area of contemporary concern whereby the group emphasis would be more beneficial and constructive than individual studies. May be taken for credit three times for a maximum of twelve units. ","edges_from":[],"edges_to":[],"id":4177,"label":"CONT 198","title":"Group Studies in Contemporary Issues (2 or 4)"},{"dept":"POLI","description":"An introduction to seminal and current research in comparative political economy. Course explores how various political institutions and processes affect economic outcomes (e.g. growth, inequality, and redistribution) and how the economy influences politics (e.g. democratization, electoral institutions, and welfare states). ","edges_from":[4179],"edges_to":[],"id":4178,"label":"POLI 227","title":"Comparative Political Economy (4)"},{"dept":"POLI","description":"","edges_from":[],"edges_to":[4178],"id":4179,"label":"POLI 200C","title":""},{"dept":"POLI","description":"A survey of theories explaining the processes of democratization and democratic stability. ","edges_from":[],"edges_to":[],"id":4180,"label":"POLI 224","title":"The Politics of Democratization (4)"},{"dept":"POLI","description":"Contending analysis of the types, strategies, causes, processes, and consequences of political violence such as revolutions, insurgencies, and ethnic conflict. ","edges_from":[],"edges_to":[],"id":4181,"label":"POLI 225","title":"Political Violence (4)"},{"dept":"POLI","description":"This seminar is an examination of the different approaches to the study of comparative politics. Issues and research areas will vary each time the course is offered. ","edges_from":[],"edges_to":[],"id":4182,"label":"POLI 229","title":"Special Topics in Comparative Politics (4)"},{"dept":"HIUS","description":"This seminar will trace major themes in the history of the American West. Topics will include ethnicity, the environment, urbanization, demographics, and shifting concepts surrounding the significance of the West. Graduate students will be required to submit additional work in order to receive graduate credit for the course. ","edges_from":[],"edges_to":[],"id":4183,"label":"HIUS 162/262","title":"The American West (4)"},{"dept":"COGR","description":"The course will look at the history of, and rationales for, the regulation of mass communications in the United States. The course will cover both broadcasting and common carrier regulation. We will analyze telecommunications regulatory structures as they were constituted historically with the 1934 Communications Act and examine their breakdown in the late 1970s. In a larger vein, the course will examine the rise and functions of regulatory agencies in modern American history. ","edges_from":[],"edges_to":[],"id":4184,"label":"COGR 215","title":"Regulation of Telecommunications (4)"},{"dept":"FPM","description":"Course will present theory and methods for developing scales to assess health behavior constructs (e.g., self-efficacy, social support). ","edges_from":[],"edges_to":[],"id":4185,"label":"FPM 278","title":"Scale Development for Behavioral Health Measurement (4)"},{"dept":"COGR","description":"The social, legal, and economic forces affecting the evolution of mass communication institutions and structure in the industrialized world. Differential impacts of the free flow of information and unequal roles and needs of developed and developing economies. ","edges_from":[],"edges_to":[],"id":4186,"label":"COGR 210","title":"Information and Society (4)"},{"dept":"COGR","description":"Examines theories of social and distributed memory—Maurice Halwachs to Ed Hutchins, John Sutton, and nature of the archive (Foucault and Derrida), reading databases (as memory prostheses), beginning with Manovich’s work. Enquiry into mediated nature of memory practices. ","edges_from":[],"edges_to":[],"id":4187,"label":"COGR 211","title":"Memory Practices (4)"},{"dept":"FPM","description":"To improve knowledge about health and illness within cultural contexts, including review and discussions of epidemiologic studies describing health indicators/beliefs/practices. Students interact with experts in cross-cultural health research to explore ethnicity/culture in health care delivery and utilization, and disease risk. ","edges_from":[],"edges_to":[],"id":4188,"label":"FPM 270","title":"Cultural Perceptions of Health and Disease (4)"},{"dept":"FPM","description":"This course focuses on critical analyses of success and failure of behavior theories as applied to interventions in multiple fields (e.g. smoking, dietary behavior, and physical activity). It covers individual and population approaches to behavior change. ","edges_from":[4190,4191],"edges_to":[],"id":4189,"label":"FPM 277","title":"Health Behavior Interventions II (4)"},{"dept":"PU","description":"","edges_from":[],"edges_to":[4189],"id":4190,"label":"PU 76","title":""},{"dept":"PU","description":"","edges_from":[],"edges_to":[4189],"id":4191,"label":"PU 75","title":""},{"dept":"COGR","description":"A central part of organizational life is talk: interaction both in formal and informal meetings and social situations. In this course we will examine the discourse of organizations, drawing on conversational analysis, discourse analysis, and the sociology of organizations. ","edges_from":[],"edges_to":[],"id":4192,"label":"COGR 219","title":"Discourse and Organizations (4)"},{"dept":"ANAR","description":"Study Abroad program that examines the origins and history of ancient Mediterranean civilizations from the late Neolithic period through the Classical era. During the course, students will visit some of the most important archaeological sites in the world, from the ancient megalithic temples of Malta, to Phoenician colonies of the early Iron Age, to the Carthaginian and Greek cities of Sicily, and ending with Roman Pompeii and Herculaneum, destroyed by the eruption of Vesuvius in AD 79. Students are required to apply for this Study Abroad course. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":4193,"label":"ANAR 135S","title":"Ancient Mediterranean Civilization (8)"},{"dept":"HIUS","description":"131. Social and Economic History of the Southwest II (4)","edges_from":[],"edges_to":[],"id":4194,"label":"HIUS 159/ETHN","title":""},{"dept":"LTEU","description":"in Eighteenth-Century European Literature (4)","edges_from":[],"edges_to":[],"id":4195,"label":"LTEU 109","title":"Studies"},{"dept":"LTEU","description":"Studies in medieval culture and thought with focus on one of the “three crowns” of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.","edges_from":[],"edges_to":[],"id":4196,"label":"LTEU 105","title":"Medieval Studies (4)"},{"dept":"PSYC","description":"This course will cover a set of general data analysis methods that are broadly applicable in many different subdisciplines of psychology/neuroscience. Topics include model fitting, information theory, Fourier analysis, and machine learning. Recommended preparation: Matlab, C, Java, R, or any related language. ","edges_from":[],"edges_to":[],"id":4197,"label":"PSYC 231","title":"Data Analysis in Matlab (4)"},{"dept":"PSYC","description":"Computational theories of human cognition, particularly Bayesian approaches. Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision-making; perception; causal reasoning; categorization; language. Cross-listed with LIGN 228. Recommended preparation: Previous experience with statistics, machine learning, and/or functional programming helpful. ","edges_from":[],"edges_to":[],"id":4198,"label":"PSYC 232","title":"Probabilistic Models of Cognition (4)"},{"dept":"PSYC","description":"Advanced topics in learning and motivation, with special emphasis on current research. May be taken for credit eighteen times. ","edges_from":[],"edges_to":[],"id":4199,"label":"PSYC 233","title":"Learning and Motivation (4)"},{"dept":"PSYC","description":"This seminar will explore issues related to the evolution of human language, and critically evaluate evidence for the diversity of theories about the topic. Discussions will include the comparative communication and cognition, manual communication, factors surrounding the initial emergence of language, among others. ","edges_from":[],"edges_to":[],"id":4200,"label":"PSYC 234","title":"Evolution of Language (4)"},{"dept":"PSYC","description":"This course will explore the nature of human thought and its relationship to language taking a primarily developmental approach but drawing on contributions from the philosophy of mind and language, linguistics, and anthropology. Each year a different case study will be explored. Past case studies have included concepts, theory of mind, counting, and the logic of thought. Cross-listed with LIGN 232. ","edges_from":[],"edges_to":[],"id":4201,"label":"PSYC 235","title":"Thought and Language (4)"},{"dept":"PSYC","description":"Theory and research on the development, progression, and resolution of substance use and abuse will be reviewed and evaluated. Normal and abnormal patterns of substance involvement will be contrasted across the life span. ","edges_from":[],"edges_to":[],"id":4202,"label":"PSYC 236","title":"Substance Abuse (4)"},{"dept":"PSYC","description":"The traditional view of rationality is based upon abstract, content-independent rules for behavior. People sometimes violate these rules in a laboratory setting, but the violations are often systematic and appear to reflect adaptation to the environment outside the laboratory. Such findings raise questions about what it means to be rational. Readings will be empirically oriented and cover the areas of deductive reasoning, inductive reasoning, and choice. ","edges_from":[],"edges_to":[],"id":4203,"label":"PSYC 237","title":"Human Rationality (4)"},{"dept":"LIGN","description":"Introduction to the formal study of meaning. What is the meaning of a word? What is the meaning of a sentence? Which role does the context play in determining linguistic meaning? ","edges_from":[752],"edges_to":[],"id":4204,"label":"LIGN 130","title":"Semantics (4)"},{"dept":"COGS","description":"This course will help students in the behavioral sciences (cognitive science, psychology, linguistics, neuroscience, and related fields) learn how to program experiments and analyze and present data. ","edges_from":[682,139,2333],"edges_to":[],"id":4205,"label":"COGS 119","title":"Programming for Experimental Research (4)"},{"dept":"NANO","description":"Introduction to mechanics of rigid and deformable bodies. Continuum and atomistic models, interatomic forces and intermolecular interactions. Nanomechanics, material defects, elasticity, plasticity, creep, and fracture. Composite materials, nanomaterials, biological materials. ","edges_from":[4207],"edges_to":[],"id":4206,"label":"NANO 150","title":"Mechanics of Nanomaterials (4)"},{"dept":"NANO","description":"","edges_from":[],"edges_to":[5131,5336,2707,1171,4206],"id":4207,"label":"NANO 108","title":""},{"dept":"COGS","description":"(Cross-listed with HDP 121.)","edges_from":[],"edges_to":[],"id":4208,"label":"COGS 110","title":"The Developing Mind (4)"},{"dept":"COGS","description":"This course provides an overview of neurological","edges_from":[],"edges_to":[],"id":4209,"label":"COGS 115","title":"Neurological Development and Cognitive Change (4)"},{"dept":"ETHN","description":"This course is a forum for the presentation of recent research by guests, faculty, and students. This course may be taken for credit six times. ","edges_from":[],"edges_to":[],"id":4210,"label":"ETHN 230","title":"Departmental Colloquium (1)"},{"dept":"TDGR","description":"An intensive studio examination of problems and potentials","edges_from":[],"edges_to":[],"id":4211,"label":"TDGR 220A","title":"Process II: Classical Text I (4)"},{"dept":"TDGR","description":"An intensive studio examination of problems and potentials","edges_from":[],"edges_to":[],"id":4212,"label":"TDGR 220C","title":"Process II: Classical Text III (4)"},{"dept":"GLBH","description":"(Cross-listed with ANSC 146.) An introductory course to HIV taught through a medical student format, with emphasis on research and experiential learning, including observation of physicians providing care for patients from diverse socioeconomic and cultural backgrounds, and who may be underinsured or uninsured, homeless, and/or immigrants. Students may not receive credit for ANSC 146 and GLBH 146.","edges_from":[],"edges_to":[],"id":4213,"label":"GLBH 146","title":"A Global Health Perspective on HIV (4)"},{"dept":"ANSC","description":"Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we’ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, and human trafficking, etc. Students must apply to the Study Abroad Program online at","edges_from":[],"edges_to":[],"id":4214,"label":"ANSC 105S","title":"Global Health and Inequality—Study Abroad (4)"},{"dept":"HIEA","description":"Study in East Asian History (4)","edges_from":[],"edges_to":[],"id":4215,"label":"HIEA 199","title":"Independent"},{"dept":"HIEA","description":"Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. May be taken for credit up to three times. Department approval required.","edges_from":[],"edges_to":[],"id":4216,"label":"HIEA 198","title":"Directed Group Study (4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in management and organizational behavior. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 439 and MGT 269 when they have the same subtitles. ","edges_from":[],"edges_to":[],"id":4217,"label":"MGT 439","title":"Topics in Organizational Behavior (2 or 4)"},{"dept":"MGT","description":"Provides a business overview of the life science industry, its major market segments, financial structure, and financing strategies. Develops an understanding of major industry issues and strategies, including business development, financing, partnering and alliances, emerging trends, ethical and policy issues. Students may not earn credit for both MGT 430 and MGT 250. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4218,"label":"MGT 430","title":"Biotechnology Industry, Structure, and Strategy (4)"},{"dept":"ANTH","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":4219,"label":"ANTH 87","title":"Freshman Seminar (1)"},{"dept":"ANSC","description":"Gesture, Communication, and the Body (4)","edges_from":[],"edges_to":[],"id":4220,"label":"ANSC 119GS","title":""},{"dept":"CHEM","description":"Organic chemistry laboratory for chemistry majors; non-majors with strong background in CHEM 40A or 140A may also enroll, though preference will be given to majors. Similar to CHEM 43A, but emphasizes instrumental methods of product identification, separation, and analysis. A materials fee is required. Students must pass a safety exam. CHEM 43AM is renumbered from CHEM 143AH. Students may only receive credit for one of the following: CHEM 43AM, 143AM, 43A, or 143A. ","edges_from":[960,2859,1196,1198,3314,953],"edges_to":[4545,5134,5135],"id":4221,"label":"CHEM 43AM","title":"Organic Chemistry Laboratory for Majors (4)"},{"dept":"CHEM","description":"This laboratory will introduce students to the tools of molecular biology","edges_from":[],"edges_to":[],"id":4222,"label":"CHEM 109","title":"Recombinant DNA Laboratory (6)"},{"dept":"HIGR","description":"One or two topics in colonial history will be analyzed in depth; reading knowledge of Spanish is expected.","edges_from":[],"edges_to":[],"id":4223,"label":"HIGR 249","title":"Topics in Colonial Latin America (4)"},{"dept":"EDS","description":"in Education Research and Design (2)","edges_from":[],"edges_to":[],"id":4224,"label":"EDS 233B","title":"Topics"},{"dept":"EDS","description":"Current topics and issues in education and educational research methodology, including action research, participant observation, ethnography, and survey research. This is the first in a two-course series. ","edges_from":[],"edges_to":[],"id":4225,"label":"EDS 233A","title":"Topics in Education Research and Design (2)"},{"dept":"HIGR","description":"Approaches to Science Studies (4)","edges_from":[],"edges_to":[],"id":4226,"label":"HIGR 241","title":"Advanced"},{"dept":"PHYS","description":"Modern applications of the renormalization","edges_from":[],"edges_to":[],"id":4227,"label":"PHYS 215C","title":"Particles and Fields III (4)"},{"dept":"PHYS","description":"Gauge theory quantization by means of path integrals, SU(3) symmetry and the quark model, spontaneous symmetry breakdown, introduction to QCD and the Glashow-Weinberg-Salam model of weak interactions, basic issues of renormalization. ","edges_from":[2972],"edges_to":[],"id":4228,"label":"PHYS 215B","title":"Particles and Fields II (4)"},{"dept":"HIGR","description":"Study and discussion of classic and recent scholarship on sound production and cultures of listening. Emphasizes historical literature but also includes works in literary studies, art history, music, and other fields. ","edges_from":[],"edges_to":[],"id":4229,"label":"HIGR 244","title":"Introduction to Sound Studies (4)"},{"dept":"HIGR","description":"This seminar traces the history of revolution and repression in modern Latin America and the Caribbean. We will spend one to two weeks on each of the following revolutions: Haiti (1791), Mexico (1910), Cuba (1959), and Central America (1970s–80s).","edges_from":[],"edges_to":[],"id":4230,"label":"HIGR 245","title":"Revolution, Empire, and State Violence in Latin America and the Caribbean (4)"},{"dept":"HILD","description":"Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration.","edges_from":[],"edges_to":[],"id":4231,"label":"HILD 7A-B-C","title":"Race and Ethnicity in the United States (4-4-4)"},{"dept":"MUS","description":"Meetings on group basis with faculty composer in sessions devoted to the study of composition. ","edges_from":[],"edges_to":[],"id":4232,"label":"MUS 203D","title":"Advanced Projects in Composition (1–4)"},{"dept":"ENG","description":"","edges_from":[],"edges_to":[],"id":4233,"label":"ENG 100L","title":"Design for Development Lab (2)"},{"dept":"MUS","description":"Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.","edges_from":[],"edges_to":[],"id":4234,"label":"MUS 203A","title":"Advanced Projects in Composition (6)"},{"dept":"MUS","description":"Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.","edges_from":[],"edges_to":[],"id":4235,"label":"MUS 203B","title":"Advanced Projects in Composition (6)"},{"dept":"MUS","description":"Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.","edges_from":[],"edges_to":[],"id":4236,"label":"MUS 203C","title":"Advanced Projects in Composition (6)"},{"dept":"AWP","description":"Under the supervision of an instructor, students will serve as peer mentors in analytical writing courses. Students will gain a fundamental understanding of the writing process and will develop the necessary skills to serve as productive writing mentors for their peers. ","edges_from":[],"edges_to":[],"id":4237,"label":"AWP 195","title":"Academic Mentoring in Writing (2)"},{"dept":"ENG","description":"An introduction to the practice of human-centered design and team engineering within a humanitarian context. Includes a group project designing a solution for a local or global nonprofit organization. Topics include: design process, contextual listening, project management, needs and capacity assessment, stakeholder analysis, ethical issues, models of leadership, gender and cultural issues, sustainable community development, and social entrepreneurship. ENG 100D is the gateway course for the Global TIES program, but it is open to all undergraduate students. Please go to","edges_from":[],"edges_to":[],"id":4238,"label":"ENG 100D","title":"Design for Development (4)"},{"dept":"ENG","description":"Principles and procedures of technical writing and professional communication. The course is ideal for students pursuing careers in science and/or engineering and covers organizing information, writing for technical forms such as proposals and abstracts, and designing visual aids.","edges_from":[],"edges_to":[],"id":4239,"label":"ENG 100C","title":"Technical Writing/Communication for Engineers and Scientist (2)"},{"dept":"ENG","description":"Engineering leadership attitudes,","edges_from":[],"edges_to":[],"id":4240,"label":"ENG 100B","title":"Engineering Leadership (2)"},{"dept":"ENG","description":"Introduction to theory and practice of team","edges_from":[],"edges_to":[],"id":4241,"label":"ENG 100A","title":"Team Engineering (2)"},{"dept":"Classics","description":"Concurrent enrollment with advanced undergraduate courses (either Greek 105 or Latin 105) with enhanced readings and separate examinations. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4242,"label":"Classics 205","title":"Concurrent Readings (2)"},{"dept":"MAE","description":"Energy conversion and coupled transport processes; electron and phonons, equilibrium and non-equilibrium energy transfer in nanostructures. Ballistic-diffusive treatment, thermal radiation issues in nanomaterials, near-field energy transfer, molecular dynamics, and experimental methods. ","edges_from":[2032,169,4244,988,513],"edges_to":[],"id":4243,"label":"MAE 225B","title":"Nanoscale and Microscale Heat Transfer for Energy Conversion Applications II (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[4243],"id":4244,"label":"MAE 225A","title":""},{"dept":"MATH","description":"Existence and uniqueness of solutions to differential equations. Local and global theorems of continuity and differentiability. ","edges_from":[4246],"edges_to":[],"id":4245,"label":"MATH 130B","title":"Ordinary Differential Equations II (4)"},{"dept":"MATH","description":"","edges_from":[139,140,141,135],"edges_to":[4245],"id":4246,"label":"MATH 130A","title":""},{"dept":"VIS","description":"A studio course focusing on the problems involved in transferring ideas and information into three-dimensions. Course will explore materials and construction as dictated by the intended object. Specific problems to be investigated will be determined by the individual professor. ","edges_from":[730],"edges_to":[4248],"id":4247,"label":"VIS 107A","title":"Sculpture: Making the Object (4)"},{"dept":"VIS","description":"A studio course in which the student will investigate a wider variety of technical and conceptual issues as well as materials involved in contemporary art practice related to sculpture. ","edges_from":[4247],"edges_to":[4249],"id":4248,"label":"VIS 107B","title":"Sculpture: Practices and Genre (4)"},{"dept":"VIS","description":"A studio course in sculpture emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. Students may not receive credit for both VIS 107C and VIS 107CN. ","edges_from":[4248],"edges_to":[],"id":4249,"label":"VIS 107C","title":"Sculpture: Portfolio Projects (4)"},{"dept":"Jewish","description":"Acquisition of basic vocabulary, fundamentals of Hebrew grammar, conversation, and reading.","edges_from":[],"edges_to":[],"id":4250,"label":"Jewish Studies 1","title":"Beginning Hebrew (5)"},{"dept":"Jewish","description":"Vocabulary, grammar, conversation, introduction to literary and nonliterary texts.","edges_from":[],"edges_to":[],"id":4251,"label":"Jewish Studies 3","title":"Intermediate Hebrew, Continued (5)"},{"dept":"Jewish","description":"Continued study of vocabulary and grammar, emphasis on fluency in conversation, and reading.","edges_from":[],"edges_to":[],"id":4252,"label":"Jewish Studies 2","title":"Intermediate Hebrew (5)"},{"dept":"USP","description":"This course introduces students to the challenges of developing and financing real property. Students work in teams to prepare a proposal for a complete site-specific project that incorporates real estate finance, development, and design. ","edges_from":[],"edges_to":[4255],"id":4253,"label":"USP 185A","title":"Real Estate Finance and Development Studio I (4)"},{"dept":"EDS","description":"Mathematics Teaching Practices (4)","edges_from":[],"edges_to":[],"id":4254,"label":"EDS 374","title":"Secondary"},{"dept":"USP","description":"An intensive studio-based experience that culminates in a completed group project that analyzes, evaluates, and presents a site-specific real estate finance and development proposal. The final project includes market analysis, pro forma financial analysis, site analysis, and site design. ","edges_from":[4253],"edges_to":[],"id":4255,"label":"USP 185B","title":"Real Estate Finance and Development Studio II (4)"},{"dept":"CSE","description":"Basic concepts of databases, including data modeling, relational databases, query languages, optimization, dependencies, schema design, and concurrency control. Exposure to one or several commercial database systems. Advanced topics such as deductive and object-oriented databases, time allowing. ","edges_from":[17],"edges_to":[1575],"id":4256,"label":"CSE 132A","title":"Database System Principles (4)"},{"dept":"PHIL","description":"Directed individual study by special arrangement with and under the supervision of a faculty member. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":4257,"label":"PHIL 199","title":"Directed Individual Study (4)"},{"dept":"EDS","description":"Students will examine the principles of second language acquisition and approaches to bilingual education. They will develop a repertoire of strategies for teaching in elementary or secondary content areas. ","edges_from":[],"edges_to":[],"id":4258,"label":"EDS 351","title":"Teaching the English Language Learner (4)"},{"dept":"ECE","description":"VLSI digital systems. Circuit characterization, performance estimation, and optimization. Circuits for alternative logic styles and clocking schemes. Subsystems include ALUs, memory, processor arrays, and PLAs. Techniques for gate arrays, standard cell, and custom design. Design and simulation using CAD tools. ","edges_from":[3143],"edges_to":[],"id":4259,"label":"ECE 165","title":"Digital Integrated Circuit Design (4)"},{"dept":"ECE","description":"Design of linear and nonlinear analog integrated circuits including operational amplifiers, voltage regulators, drivers, power stages, oscillators, and multipliers. Use of feedback and evaluation of noise performance. Parasitic effects of integrated circuit technology. Laboratory simulation and testing of circuits. ","edges_from":[4261,3143],"edges_to":[],"id":4260,"label":"ECE 164","title":"Analog Integrated Circuit Design (4)"},{"dept":"ECE","description":"","edges_from":[73,3143],"edges_to":[4260],"id":4261,"label":"ECE 163","title":""},{"dept":"ECE","description":"Integrated Circuits and Systems I (4)","edges_from":[],"edges_to":[],"id":4262,"label":"ECE 264A","title":"CMOS Analog"},{"dept":"PHIL","description":"Under the supervision of the instructor, student will lead one discussion section of a lower-division philosophy class. The student must attend the lecture for the class and meet regularly with the instructor. Applications are available in the Department of Philosophy. ","edges_from":[],"edges_to":[],"id":4263,"label":"PHIL 195","title":"Introduction to Teaching Philosophy (4)"},{"dept":"ECE","description":"Integrated Circuits and Systems IV (4)","edges_from":[],"edges_to":[],"id":4264,"label":"ECE 264D","title":"CMOS Analog"},{"dept":"Linguistics/French","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1C. ","edges_from":[2540,2541],"edges_to":[],"id":4265,"label":"Linguistics/French (LIFR) 1CX","title":"Analysis of French (2.5)"},{"dept":"MGTF","description":"The Capstone project is one of the primary measures of student learning. Evaluation is based on students’ ability to apply course material to the Capstone project. Satisfactory completion of the project is required for award of the degree. Letter grades only. ","edges_from":[3224,4267,4268,4269],"edges_to":[],"id":4266,"label":"MGTF 490","title":"Capstone: Applied Finance Project (4)"},{"dept":"MGTF","description":"","edges_from":[],"edges_to":[4266],"id":4267,"label":"MGTF 404","title":""},{"dept":"MGTF","description":"","edges_from":[],"edges_to":[5536,4266,5541,5535],"id":4268,"label":"MGTF 402","title":""},{"dept":"MGTF","description":"","edges_from":[],"edges_to":[4266],"id":4269,"label":"MGTF 401","title":""},{"dept":"MGTF","description":"Introduces advanced topics of special interest in finance. Instructional methods can include face-to-face lecture, case presentations, assigned teaching, and/or online group discussions. May be taken for credit up to four times. Students may not earn credit when course subtitles are the same. ","edges_from":[],"edges_to":[],"id":4270,"label":"MGTF 495","title":"Special Topics in Finance (2–4)"},{"dept":"POLI","description":"(Same as USP 101) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ","edges_from":[3041,1260],"edges_to":[4272],"id":4271,"label":"POLI 160AA","title":"Introduction to Policy Analysis (4)"},{"dept":"POLI","description":"In this course, students will use their knowledge of the political and economic foundations of public policy making to conduct research in a wide variety of public policy problems. ","edges_from":[4271],"edges_to":[],"id":4272,"label":"POLI 160AB","title":"Introduction to Policy Analysis (4)"},{"dept":"HITO","description":"Taught in conjunction with the San Diego Maritime Museum, this course investigates life at sea from the age of discovery to the advent of the steamship. We will investigate discovery, technology, piracy, fisheries, commerce, naval conflict, sea-board life, and seaport activity. ","edges_from":[],"edges_to":[],"id":4273,"label":"HITO 178/278","title":"A History of Seafaring in the Age of Sail (4)"},{"dept":"PSYC","description":"Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":4274,"label":"PSYC 267A","title":"Advanced Topics in Behavior Medicine I (1)"},{"dept":"MUS","description":"Projects and Independent Study (1–12)","edges_from":[],"edges_to":[],"id":4275,"label":"MUS 299","title":"Advanced Research"},{"dept":"MUS","description":"Individual research. (S/U grades permitted.) May be repeated for credit. Enrollment by consent of instructor only.","edges_from":[],"edges_to":[],"id":4276,"label":"MUS 298","title":"Directed Research (1–4)"},{"dept":"NANO","description":"Overview of electrical devices and CMOS integrated circuits emphasizing fabrication processes, and scaling behavior. Design, and simulation of submicron CMOS circuits including amplifiers active filters digital logic, and memory circuits. Limitations of current technologies and possible impact of nanoelectronic technologies. ","edges_from":[133,31,213,126,135],"edges_to":[],"id":4277,"label":"NANO 107","title":"Electronic Devices and Circuits for Nanoengineers (4)"},{"dept":"MUS","description":"This group research seminar involves the investigation and exploration of new and experimental performance concerns. Areas could include: improvisation, graphic notation, performance electronics, and working with combined media (such as dance, poetry, and theatre). ","edges_from":[],"edges_to":[],"id":4278,"label":"MUS 296","title":"Directed Group Research in Performance (4)"},{"dept":"PSYC","description":"Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":4279,"label":"PSYC 267B","title":"Advanced Topics in Behavior Medicine II (1)"},{"dept":"HIEU","description":"Topics will vary and may include political, socio-economic, and cultural developments in the era from 1650 to 1850. Some years the emphasis will be on the theory and practice of revolutions and their impact on Europe and the world. Graduate students will be required to submit an additional piece of work.","edges_from":[],"edges_to":[],"id":4280,"label":"HIEU 167/267","title":"Special Topics in the Social History of Early Modern Europe (4)"},{"dept":"LTAM","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":4281,"label":"LTAM 87","title":"Freshman Seminar (1)"},{"dept":"PHYS","description":"This course covers topics not traditionally taught as part of a normal physics curriculum, but nonetheless useful extensions to the classic pedagogy. Example topics may include estimation, nuclear physics, fluid mechanics, and scaling relationships.","edges_from":[],"edges_to":[],"id":4282,"label":"PHYS 281","title":"Extensions in Physics (1–3)"},{"dept":"LTAM","description":"Production of the Latino/a Diasporas (4)","edges_from":[],"edges_to":[],"id":4283,"label":"LTAM 109","title":"Cultural"},{"dept":"LTAM","description":"The course will center on Chicano/a-Latino/a writers and movements of literary, intellectual, cultural, or political significance. Texts may be read in the original language or in English. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4284,"label":"LTAM 108","title":"Chicano/a and Latino/a Cultures: Intellectual and Political Traditions (4)"},{"dept":"LTAM","description":"Latino/a and US Ethnic Cultures (4)","edges_from":[],"edges_to":[],"id":4285,"label":"LTAM 107","title":"Comparative"},{"dept":"LTAM","description":"Chicana and Mexican Women Writings (4)","edges_from":[],"edges_to":[],"id":4286,"label":"LTAM 106","title":"Modern"},{"dept":"LTAM","description":"and Sexuality in Latino/a Cultural Production (4)","edges_from":[],"edges_to":[],"id":4287,"label":"LTAM 105","title":"Gender"},{"dept":"MAE","description":"Parameterization of all stabilizing output feedback controllers, covariance controllers, H-infinity controllers, and L-2 to L-infinity controllers. Continuous and discrete-time treatment. Alternating projection algorithms for solving output feedback problems. Model reduction. All control design problems reduced to one critical theorem in linear algebra. ","edges_from":[2748],"edges_to":[],"id":4288,"label":"MAE 280B","title":"Linear Control Design (4)"},{"dept":"LTIT","description":"Reading and discussion of selections from representative authors. Review of grammar as needed. May be repeated for credit three times when topics vary. ","edges_from":[3014],"edges_to":[4631],"id":4289,"label":"LTIT 100","title":"Introduction to Literatures in Italian (4)"},{"dept":"LTAM","description":"An introductory historical and cultural overview of the various Latino/a populations in the United States with a study of representative cultural texts.","edges_from":[],"edges_to":[],"id":4290,"label":"LTAM 100","title":"Latino/a Cultures in the United States (4)"},{"dept":"HIEU","description":"How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D. +","edges_from":[],"edges_to":[],"id":4291,"label":"HIEU 132","title":"Germany from Luther to Bismarck (4)"},{"dept":"HIEU","description":"This course examines the Revolution in France and its impact in Europe and the Caribbean. Special emphasis will be given to the origins of the Revolution, the development of political and popular radicalism and symbolism from 1789 to 1794, the role of political participants (e.g., women, sans-culottes, Robespierre), and the legacy of revolutionary wars and the Napoleonic system on Europe. +","edges_from":[],"edges_to":[],"id":4292,"label":"HIEU 131","title":"The French Revolution: 1789–1814 (4)"},{"dept":"HIEU","description":"A lecture-discussion course focusing on Europe","edges_from":[],"edges_to":[],"id":4293,"label":"HIEU 130","title":"Europe in the Eighteenth Century (4)"},{"dept":"HIEU","description":"This course surveys the age of colonialism in the nineteenth and twentieth century. The course will focus on the debates on colonialism in the metropolis as well as on the conflicts inside the colonies. Considerable emphasis will be placed on colonialism in Africa.","edges_from":[],"edges_to":[],"id":4294,"label":"HIEU 137","title":"History of Colonialism: From New Imperialism to Decolonization (4)"},{"dept":"HIEU","description":"Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism’s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity.","edges_from":[],"edges_to":[],"id":4295,"label":"HIEU 135","title":"Sun, Sea, Sand, and Sex: Tourism and Tourists in the Contemporary World (4)"},{"dept":"HIEU","description":"Formation of the Russian Empire, 800–1855 (4)","edges_from":[],"edges_to":[],"id":4296,"label":"HIEU 134","title":"The"},{"dept":"HIEU","description":"This course places gender and sexuality at the center of European history from the Renaissance to the French Revolution. We examine the distinct roles that men and women played in the period’s major events. We track how practices and understandings of gender and sexuality shifted during the four centuries between 1500 and 1800. +","edges_from":[],"edges_to":[],"id":4297,"label":"HIEU 139","title":"Sex and Gender from the Renaissance to the French Revolution (4)"},{"dept":"MUS","description":"The theory and practice of instrumental and/or choral conducting as they have to do with basic baton techniques, score reading, interpretation, orchestration, program building, and functional analysis. Members of the class will be expected to demonstrate their knowledge in the conducting of a small ensemble performing literature from the eighteenth, nineteenth, and twentieth centuries. ","edges_from":[3142,1559,1494,3927,3802,3803],"edges_to":[],"id":4298,"label":"MUS 128","title":"Principles and Practice of Conducting (4)"},{"dept":"Jewish","description":"Further reading and analysis of Hebrew literature from a range of periods. Advanced grammar and vocabulary. Course taught in Hebrew and in English.","edges_from":[],"edges_to":[],"id":4299,"label":"Jewish Studies 102","title":"Intermediate Hebrew Texts (4)"},{"dept":"Jewish","description":"Synthesis of fluency, reading, and grammatical skills. Reading of texts from a range of periods.","edges_from":[],"edges_to":[],"id":4300,"label":"Jewish Studies 103","title":"Advanced Hebrew Texts (4)"},{"dept":"Jewish","description":"Reading and analysis of texts from Biblical through modern authors, study of advanced vocabulary and grammar. Course taught in Hebrew and in English.","edges_from":[],"edges_to":[],"id":4301,"label":"Jewish Studies 101","title":"Introduction to Hebrew Texts (4)"},{"dept":"MUS","description":"Scales, chords, harmonic progressions, transposition, and simple pieces. ","edges_from":[3803],"edges_to":[],"id":4302,"label":"MUS 2AK-BK-CK","title":"Basic Keyboard (2-2-2)"},{"dept":"VIS","description":"This research seminar, centered on a series of critical, thematic, theoretical, and/or historical issues that cut across subdisciplinary specializations, provides outstanding advanced students with the opportunity to undertake graduate-level research. The first part of a two-part sequence completed by Art History Honors Directed Group Study (VIS 129H). ","edges_from":[],"edges_to":[],"id":4303,"label":"VIS 129G","title":"Art History Honors Seminar (4)"},{"dept":"VIS","description":"The second part of the honors program sequence, this course provides a forum for students engaged in research and writing to develop their ideas with the help of a faculty adviser and in conjunction with similarly engaged students. ","edges_from":[],"edges_to":[],"id":4304,"label":"VIS 129H","title":"Art History Honors Directed Group Study (4)"},{"dept":"POLI","description":"(1–4)","edges_from":[],"edges_to":[],"id":4305,"label":"POLI 504","title":"Seminar on Teaching Development—Political Theory"},{"dept":"POLI","description":"A seminar designed for graduate students serving as teaching assistants in international relations, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations under the supervision of the instructor in charge of the course. ","edges_from":[],"edges_to":[],"id":4306,"label":"POLI 503","title":"Seminar on Teaching Development—International Relations (1–4)"},{"dept":"GPLA","description":"This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 400A-B-C. Students may not get credit for any IRLA 400 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":4307,"label":"GPLA 400A-B-C","title":"Low Intermediate Chinese Language for Professional Proficiency (4-4-4)"},{"dept":"POLI","description":"(1–4)","edges_from":[],"edges_to":[],"id":4308,"label":"POLI 501","title":"Seminar on Teaching Development—American Politics"},{"dept":"POLI","description":"A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation, and grading of examinations and other written exercises, and student relations. Twenty-four units of teaching apprenticeship meet the department teaching requirement for the PhD.","edges_from":[],"edges_to":[],"id":4309,"label":"POLI 500","title":"Apprentice Teaching (1–4)"},{"dept":"COGS","description":"Evidence for genetic mediation of behavioral and neural differences, mechanisms that may mediate these effects, and the roles of the environment and experience are discussed. ","edges_from":[3080,4311],"edges_to":[],"id":4310,"label":"COGS 178","title":"Genes, Brains, and Behavior (4)"},{"dept":"COGS","description":"","edges_from":[],"edges_to":[4833,1571,4310,5903],"id":4311,"label":"COGS 107B","title":""},{"dept":"BILD","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":4312,"label":"BILD 87","title":"Freshman Seminar (1)"},{"dept":"MATH","description":"Supervised teaching as part of the mathematics instructional program on campus (or, in special cases such as the CTF program, off campus). ","edges_from":[],"edges_to":[],"id":4313,"label":"MATH 500","title":"Apprentice Teaching (1 to 4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":4314,"label":"LTEN 149","title":"Topics: English-Language Literature (4)"},{"dept":"COMM","description":"Examines the complex relationship between mass media and the consumers and viewers they target. This course covers theories about audiences, reading practices of audiences, the economics of audiences, and the role of audiences in the digital era. ","edges_from":[537,538,539,540],"edges_to":[],"id":4315,"label":"COMM 134","title":"Media Audiences (4)"},{"dept":"BIOM","description":"Informal presentations on topics of current interest in glycobiology as represented in the current scientific literature. ","edges_from":[],"edges_to":[],"id":4316,"label":"BIOM 246","title":"Current Literature in Glycobiology (1)"},{"dept":"CSE","description":"Aided Circuit Simulation and Verification (4)","edges_from":[],"edges_to":[],"id":4317,"label":"CSE 245","title":"Computer"},{"dept":"CSE","description":"Algorithmic techniques and optimization frameworks for large-scale, difficult optimizations. Primal-dual multicommodity flow approximations, approximations for geometric and graph Steiner formulations, continuous placement optimization, heuristics for Boolean satisfiability, multilevel methods, semidefinite programming, and application to other formulations (e.g., scheduling). ","edges_from":[4320,4319],"edges_to":[],"id":4318,"label":"CSE 248","title":"Algorithmic and Optimization Foundations for VLSI CAD (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[4318],"id":4319,"label":"CSE 242A","title":""},{"dept":"CSE","description":"","edges_from":[],"edges_to":[4318],"id":4320,"label":"CSE 241A","title":""},{"dept":"TDDE","description":"One of three classes in theatre process. The course aims to develop basic skills in lighting design through practical projects, lab work and lecture. These emphasize collaborating, manipulating light and color, and developing craft skills. ","edges_from":[128,4322],"edges_to":[],"id":4321,"label":"TDDE 121","title":"Theatre Process—Lighting Design (4)"},{"dept":"TDPR","description":"","edges_from":[],"edges_to":[4321,4351],"id":4322,"label":"TDPR 3","title":""},{"dept":"BENG","description":"An overview of heart, vascular development and associated diseases from a molecular biological perspective. Current approaches for generating mouse models of cardiovascular disease and recently developed technologies for physiological assessment in small animal models will be presented. (W)","edges_from":[],"edges_to":[],"id":4323,"label":"BENG 238/MED 238","title":"Molecular Biology of the Cardiovascular System (4)"},{"dept":"BIEB","description":"Modern sequencing technology has revolutionized our ability to detect how genomes vary in space among individuals, populations, and communities, and over time. This course will review methods and concepts in ecological and evolutionary genomics that help us understand these differences, including their relevance to health (human microbiome, cancer evolution), evolutionary history (ancestor reconstruction, human evolution), and the environment (effect of climate change). ","edges_from":[1424,954],"edges_to":[],"id":4324,"label":"BIEB 146","title":"Genome Diversity and Dynamics (4)"},{"dept":"BIEB","description":"An introduction to computer modeling in evolution and ecology. Students will use the computer language “R” to write code to analyze ecological and evolutionary processes. Topics include natural selection, genetic drift, community ecology, game theory, and chaos. Students will use their own laptop computers. ","edges_from":[3624,4152],"edges_to":[],"id":4325,"label":"BIEB 143","title":"Computer Modeling in Evolution and Ecology (4)"},{"dept":"BIEB","description":"An introduction to the patterns of geographic distribution and natural history of plants and animals living in terrestrial and marine ecosystems. We will explore: ecological and evolutionary processes responsible for generating and maintaining biological diversity; and the nature of extinction both in past and present ecosystem. ","edges_from":[1424],"edges_to":[],"id":4326,"label":"BIEB 140","title":"Biodiversity (4)"},{"dept":"MGT","description":"This course is designed to help a business manager use data to make good decisions in complex decision-making situations. Students will gain foundation knowledge of several analytical and econometric methods including decision analysis, probability theory, statistical inference, regression analysis, and hypothesis testing. Students will also learn how to use available computing technology to arrive at optimal solutions. ","edges_from":[129,130,862,1992,3625,1994,1995,140,1389,141,3624,2333,3637,3638,1993,1882,477,1996],"edges_to":[],"id":4327,"label":"MGT 153","title":"Business Analytics (4)"},{"dept":"COGS","description":"A review of the patterns of impaired and intact cognitive abilities present in brain-damaged patients in terms of damage to one or more components of a model of normal cognitive functioning. ","edges_from":[3080],"edges_to":[],"id":4328,"label":"COGS 172","title":"Brain Disorders and Cognition (4)"},{"dept":"LTFR","description":"Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":4329,"label":"LTFR 198","title":"Directed Group Study (4)"},{"dept":"LTFR","description":"Tutorial; individual guided reading in areas of French literature not normally covered in courses. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":4330,"label":"LTFR 199","title":"Special Studies (2 or 4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":4331,"label":"LTEN 140","title":"The British Novel: 1790–1830 (4)"},{"dept":"ECON","description":"The Freshman Seminar Program is designed to","edges_from":[],"edges_to":[],"id":4332,"label":"ECON 87","title":"Freshman Seminar (1)"},{"dept":"VIS","description":"Critical and historical analysis of the institutions, social networks, and communicative media through which art is presented to its audiences. May also address theories of vision and visuality, spectatorship, public space, originality and reproduction, and public space.","edges_from":[],"edges_to":[],"id":4333,"label":"VIS 234N","title":"Frames of View (4)"},{"dept":"COGS","description":"This course will combine an examination of the neural character of quiet and active sleep states and their potential functions with an examination of the different mechanisms by which the brain mediates attention to specific features of the world. ","edges_from":[],"edges_to":[],"id":4334,"label":"COGS 176","title":"From Sleep to Attention (4)"},{"dept":"AESE","description":"Addresses critical processes and frameworks required to build effective business relationships internally and externally. Focuses on the skills required by functional or technical leaders to envision strategic value and create business development strategies aligned with organizational needs. This workshop meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ","edges_from":[2424,4336,4335],"edges_to":[4335],"id":4335,"label":"AESE 261","title":"Managing Stakeholder Relationships (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[4335],"id":4336,"label":"MGT 261","title":""},{"dept":"CSE","description":"A hands-on approach to the principles of databases implementation. Algebraic rewriters/optimizers, query processors, triggers. Beyond centralized relational databases. ","edges_from":[3004],"edges_to":[],"id":4337,"label":"CSE 232B","title":"Database System Implementation (4)"},{"dept":"CAT","description":"Seminars are hands-on arts experiences (performances, exhibits, site visits, etc.). Students and faculty attend events together and have discussions before or after, often with guest speakers such as the artists, curators, and/or faculty/graduate students from UC San Diego arts departments. Successful completion of this seminar series satisfies one of the eight Sixth College general education requirements for Art Making. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":4338,"label":"CAT 75","title":"Experience Art!—Sixth College Seminar Series (1)"},{"dept":"Soc/G","description":"A discussion of major themes in the work of Tocqueville and Marx. ","edges_from":[],"edges_to":[],"id":4339,"label":"Soc/G 201A","title":"Classical Sociological Theory I (4)"},{"dept":"SE","description":"Aided Structural Design (4)","edges_from":[],"edges_to":[],"id":4340,"label":"SE 120","title":"Engineering Graphics & Computer"},{"dept":"Jewish","description":"This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Topics include: prophecy, social justice, monotheism, suffering, humor, and love. ","edges_from":[4342],"edges_to":[],"id":4341,"label":"Jewish Studies 131","title":"Introduction to the Old Testament: The Poetic Books (4)"},{"dept":"JUDA","description":"","edges_from":[],"edges_to":[4341],"id":4342,"label":"JUDA 100A","title":""},{"dept":"POLI","description":"This course will study various theories purporting to explain why states succeed or fall at creating institutions by international governance and what effects, if any, those institutions have. ","edges_from":[],"edges_to":[],"id":4343,"label":"POLI 232","title":"International Organization (4)"},{"dept":"POLI","description":"An interdisciplinary seminar covering origins, consequences, and characteristics of worker migration from Third World countries (especially Mexico, Central America, and the Caribbean basin) to the United States, from the nineteenth century to the present. ","edges_from":[],"edges_to":[],"id":4344,"label":"POLI 236","title":"Immigration Policy and Politics (4)"},{"dept":"GPEC","description":"This course provides an introduction to GIS and spatial data analysis for applied social science research. Students will work in ArcGIS to manipulate different types of georeferenced data, visualize data, import/export data from Excel and STATA, and conduct spatial analysis. Course looks to motivate geography as an important lens through which to study society. Recommended preparation: Basic knowledge of statistics and regression (ordinary least squares) is assumed, as is familiarity with STATA. Students may not receive credit for GPEC 243 and IRGN 443. May be coscheduled with GPEC 443.","edges_from":[],"edges_to":[],"id":4345,"label":"GPEC 243","title":"GIS and Spatial Data Analysis (4)"},{"dept":"CSE","description":"and Logic (1–4)","edges_from":[],"edges_to":[],"id":4346,"label":"CSE 209A","title":"Topics/Seminar in Algorithms, Complexity,"},{"dept":"CSE","description":"Topics of special interest in cryptography to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ","edges_from":[],"edges_to":[],"id":4347,"label":"CSE 209B","title":"Topics/Seminar in Cryptography (1–4)"},{"dept":"Linguistics/Spanish","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1AX. ","edges_from":[],"edges_to":[],"id":4348,"label":"Linguistics/Spanish (LISP) 1A","title":"Spanish Conversation (2.5)"},{"dept":"ETHN","description":"(Cross-listed with TDAC 120.) An intensive theatre practicum designed to generate theatre created by an ensemble, with particular emphasis upon the analysis of text. Students will explore and analyze scripts and authors. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell’arte. May be taken for credit two times.","edges_from":[],"edges_to":[],"id":4349,"label":"ETHN 146A","title":"Ensemble (4)"},{"dept":"GPEC","description":"The goal of the course is to teach how to evaluate quantitative information in business and economics contexts, and to make sound managerial decisions in complex situations. Most of the problems and the course work will involve statistical software and spreadsheet analysis of data. The course covers various applied multivariate statistical methods beyond the basics. Renumbered from IRGN 240. Students may not receive credit for GPEC 246 and IRGN 240. May be coscheduled with GPEC 446.","edges_from":[],"edges_to":[],"id":4350,"label":"GPEC 246","title":"Applied Data Analysis and Statistical Decision Making (4)"},{"dept":"TDPR","description":"A production performance-oriented course that continues the development of costume, lighting, scenery, or sound production and introduces greater responsibilities in the laboratory format. Students serve as crew heads on major departmental productions or creative projects. May be taken for credit two times. ","edges_from":[4352,4322,3483,2695],"edges_to":[],"id":4351,"label":"TDPR 102","title":"Advanced Theatre Practicum (4–6)"},{"dept":"TDPR","description":"","edges_from":[],"edges_to":[4351],"id":4352,"label":"TDPR 2","title":""},{"dept":"TDPR","description":"Practicum in Stage Management (4–6)","edges_from":[],"edges_to":[5346],"id":4353,"label":"TDPR 104","title":"Advanced"},{"dept":"COMM","description":"The interaction of language and culture in human communication. New and old languages, standard and dialect, dominant and endangered are the special focus. Selected languages as examples of how languages exist in contemporary contexts. ","edges_from":[540],"edges_to":[],"id":4354,"label":"COMM 112G","title":"IM: Language and Globalization (4)"},{"dept":"COMM","description":"Our understanding of childhood as a stage of innocence is a modern idea. The idea of childhood has not been constant; different cultures, communities, and classes have shaped the integration of children according to their own standards. We examine the different ways that attitudes toward children have changed, how these attitudes have been connected to an understanding of the human being, and how the desires of society and parents are manifested in what they think the child should be. ","edges_from":[540,871],"edges_to":[],"id":4355,"label":"COMM 112C","title":"IM: The Idea of Childhood (4)"},{"dept":"LTEU","description":"Intensive examination of the major ideas of all three writers, with special attention to the literary styles and problematic aspects of their work.","edges_from":[],"edges_to":[],"id":4356,"label":"LTEU 139","title":"Marx/Nietzsche/Freud (4)"},{"dept":"LTEU","description":"These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like.","edges_from":[],"edges_to":[],"id":4357,"label":"LTEU 137","title":"Seminars in German Culture (4)"},{"dept":"LTEU","description":"One or more aspects of German literature, such as major authors, the contemporary novel, nineteenth-century poetry, German expressionism. Texts may be read in English or the original language. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4358,"label":"LTEU 130","title":"German Literature in Translation (4)"},{"dept":"PSYC","description":"An in-depth analysis of empirical and theoretical issues in a specialized area of vision or visual perception. Emphasis most likely will be on a topic of ongoing vision research at UC San Diego. S/U grades only. May be taken for credit eighteen times. ","edges_from":[],"edges_to":[],"id":4359,"label":"PSYC 223","title":"Current Directions in Vision (1)"},{"dept":"PSYC","description":"A survey of the functional neuroanatomical, neurodevelopmental, neurophysiological, and pharmacological correlates of psychological phenomena. ","edges_from":[],"edges_to":[],"id":4360,"label":"PSYC 222","title":"Proseminar in Biological Psychology (5)"},{"dept":"PSYC","description":"Fundamentals of vision, audition, and other senses. Emphasis will be upon psychophysical approaches to the study of these sensory modalities, as well as some essential aspects of their neurophysiological bases. ","edges_from":[],"edges_to":[],"id":4361,"label":"PSYC 221","title":"Proseminar in Sensation and Perception (5)"},{"dept":"PSYC","description":"An introduction to social psychology. Psychology and the law, health psychology, attitudes, emotions, person perception and aggression are some of the topics to be covered. ","edges_from":[],"edges_to":[],"id":4362,"label":"PSYC 220","title":"Proseminar in Social Psychology (5)"},{"dept":"HIUS","description":"The upheavals that transformed the early modern Atlantic emphasizing the United States, Caribbean, and Great Britain. Topics: struggles to define democracy, the reorganization of the Atlantic state system, the Enlightenment, and international responses to the American and French Revolutions. +","edges_from":[],"edges_to":[],"id":4363,"label":"HIUS 104","title":"The Revolutionary Atlantic (4)"},{"dept":"PSYC","description":"A weekly seminar series focused on understanding recent advances in the relationship between neural systems and behavior using a variety of experimental approaches (single unit recording, comp neuro, evolutionary bio, psychophysics, comparative anatomy, lesion work, psychopharm, fMRI, EEG, TMS, etc.). May be taken for credit twenty-four times. ","edges_from":[],"edges_to":[],"id":4364,"label":"PSYC 224","title":"Current Directions in Cognitive Neural Systems (CNS) (1)"},{"dept":"PSYC","description":"This course will address the psychology of happiness. The discussions and readings, consisting largely of original research articles, will explore such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy—youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless?","edges_from":[],"edges_to":[],"id":4365,"label":"PSYC 229","title":"Happiness (4)"},{"dept":"CAT","description":"Students initiate, plan, and carry out community-based and/or research-based projects that connect classroom-based experiences and knowledge to the outlying community, and that explicitly explore the interplay of culture, art, and technology. ","edges_from":[],"edges_to":[],"id":4366,"label":"CAT 124","title":"Sixth College Practicum (4)"},{"dept":"CAT","description":"Upper-division composition course in public rhetoric and practical communication, including oral presentation, writing in print formats, and digital content creation. This course also focuses on how writing can support and extend experiential learning before, during or after students do their practicum project. ","edges_from":[52,53,54],"edges_to":[],"id":4367,"label":"CAT 125","title":"Public Rhetoric and Practical Communication (4)"},{"dept":"COGS","description":"Covers the theories of situated, distributed, enactive, and embodied cognition. Explains how cyborgs are a natural consequence of our current understanding of embodied minds embedded in culturally shaped niches; how mental systems can be distributed over other people and things. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ","edges_from":[238,3294],"edges_to":[],"id":4368,"label":"COGS 100","title":"Cyborgs Now and in the Future (4)"},{"dept":"CHIN","description":"Introductory course of basic Chinese","edges_from":[],"edges_to":[],"id":4369,"label":"CHIN 10AN","title":"First Year Chinese—Non-native speakers I (5)"},{"dept":"ENG","description":"This course is designed to teach leadership in teaching and learning at the college/university level. Students will learn through readings on engineering leadership, proposal development, ethics, and cognitive science, and thorough practical experience writing and developing course and project development plans. ","edges_from":[],"edges_to":[],"id":4370,"label":"ENG 211","title":"Engineering Leadership in Academia (4)"},{"dept":"HITO","description":"Course attached to six-unit internship taken by student participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial historical research paper. ","edges_from":[],"edges_to":[],"id":4371,"label":"HITO 193/POLI 194/COM GEN 194/USP 194","title":"Research Seminar in Washington, DC (6)"},{"dept":"POLI","description":"We will discuss modern theories of the origins of law and legal behavior.","edges_from":[],"edges_to":[],"id":4372,"label":"POLI 104L","title":"Positive Political Theory of Law (4)"},{"dept":"POLI","description":"How law regulates and impacts sexuality and orientation with focus on constitutional law in areas of privacy, free speech, association, regulation of sexual conduct under criminal law pornography, procreation, reproductive rights, and regulation of family status. ","edges_from":[],"edges_to":[],"id":4373,"label":"POLI 104M","title":"Law and Sex (4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in operations. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 449 and MGT 279 when the course subtitles are the same. ","edges_from":[],"edges_to":[],"id":4374,"label":"MGT 449","title":"Topics in Operations and Technology (2 or 4)"},{"dept":"POLI","description":"Politics—Courts and Political Controversy (4)","edges_from":[],"edges_to":[],"id":4375,"label":"POLI 104I","title":"Law and"},{"dept":"POLI","description":"The ability to write and argue is one of the noted benefits of a legal education. Students will learn the basics of legal research and reasoning by learning to read and brief case law and write persuasive and objective memorandums. ","edges_from":[4377,1206],"edges_to":[],"id":4376,"label":"POLI 104J","title":"Introduction to Legal Reasoning (4)"},{"dept":"POLI","description":"","edges_from":[],"edges_to":[4376,4380],"id":4377,"label":"POLI 104A","title":""},{"dept":"MGT","description":"Introduces advanced topics of special interest in international business. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 443 and MGT 229 when the course subtitles are the same. ","edges_from":[],"edges_to":[],"id":4378,"label":"MGT 443","title":"Topics in International Business (2 or 4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in management and decision sciences. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 442 and MGT 249 with same course subtitle. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4379,"label":"MGT 442","title":"Topics in Decision Sciences (2 or 4)"},{"dept":"POLI","description":"This seminar will provide an intensive examination of a major issue in constitutional law, with topics varying from year to year. Recent topics have included equal protection law and the rights of civilians in wartime. Students will be required to do legal research on a topic, write a legal brief, and argue a case to the seminar. ","edges_from":[4377],"edges_to":[],"id":4380,"label":"POLI 104F","title":"Seminar in Constitutional Law (4)"},{"dept":"MGT","description":"(Cross-listed with SPPS 273, PHAR 210, and BIOM 267). This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ","edges_from":[],"edges_to":[],"id":4381,"label":"MGT 447","title":"Drug Discovery, Development, and Commercialization (3)"},{"dept":"MGT","description":"Addresses the complex role of regulation in business innovation. Includes legal issues such as how to structure a business, whether to seek intellectual property protection, when and how to raise capital or formulate exit strategies, how to make employment decisions. ","edges_from":[],"edges_to":[],"id":4382,"label":"MGT 445","title":"Regulation and Innovation (4)"},{"dept":"MGT","description":"Advanced topics of special interest in business strategy. Instructional methods include face-to-face lecture sessions and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 444 and MGT 251 when the subtitles are the same. ","edges_from":[],"edges_to":[],"id":4383,"label":"MGT 444","title":"Topics in Business Strategy (2 or 4)"},{"dept":"POLI","description":"Science advances exponentially. The law is slower to follow. This course examines legal issues created by today’s scientific breakthroughs and explores what future legal challenges might await tomorrow’s scientific discoveries, from privacy on the Internet to the meaning of life. ","edges_from":[],"edges_to":[],"id":4384,"label":"POLI 104P","title":"Science, Technology, and the Law (4)"},{"dept":"MDE","description":"Introduction to the basic definitions of continuum mechanics and their mathematical formulation at the graduate level with applications to problems in medicine and biology. ","edges_from":[],"edges_to":[],"id":4385,"label":"MDE 209","title":"Mechanics and Transport Phenomena for Biomedical Device Design (4)"},{"dept":"PHIL","description":"S/U grades permitted.","edges_from":[],"edges_to":[],"id":4386,"label":"PHIL 299","title":"Thesis Research (1–12)"},{"dept":"AWP","description":"Consideration of pedagogical methods appropriate to undergraduate teaching of analytical writing, especially with regards to courses that fulfill the UC Entry Level Writing Requirement (ELWR). The course is required of all graduate teaching assistants who are engaged in or supporting instruction in the Analytical Writing Program. The course is potentially open to other graduate students seeking expertise in writing pedagogy, contingent upon the approval of the director. May be taken for credit up to eighteen times. ","edges_from":[],"edges_to":[],"id":4387,"label":"AWP 500","title":"Apprentice Teaching in the Analytical Writing Program (1–4)"},{"dept":"PHIL","description":"Each enrolled student produces a research essay ready for publication, presents it to students and faculty, and offers critiques of other students’ presentations. Units will vary according to enrollment in course. To be taken in fall quarter of third year of philosophy graduate study.","edges_from":[],"edges_to":[],"id":4388,"label":"PHIL 292","title":"Writing Workshop (1–3)"},{"dept":"PHIL","description":"Supervised study of individually selected philosophical topics. S/U grades permitted.","edges_from":[],"edges_to":[],"id":4389,"label":"PHIL 290","title":"Directed Independent Study (4)"},{"dept":"PHIL","description":"Advanced individual research studies under","edges_from":[],"edges_to":[],"id":4390,"label":"PHIL 295","title":"Research Topics (1–12)"},{"dept":"ECON","description":"(Cross-listed with POLI 5D.) Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: Econ 5, POLI 5, or POLI 5D.","edges_from":[],"edges_to":[],"id":4391,"label":"ECON 5","title":"Data Analytics for the Social Sciences (4)"},{"dept":"PHIL","description":"An in-depth exploration of an issue in bioethics. Topics will vary, and may include the ethics of genetic engineering, mental capacity and genuinely informed consent, the just distribution of health care, the ethics of geo-engineering, and the ethics of climate change and health. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":4392,"label":"PHIL 173","title":"Topics in Bioethics (4)"},{"dept":"HIEU","description":"This course surveys the historical and cultural significance of Paris from about 1500 to the present. The focus is on interactions between political, architectural, and urban evolutions, and the changing populations of Paris in times of war, revolutions, and peace. +","edges_from":[],"edges_to":[],"id":4393,"label":"HIEU 129","title":"Paris, Past and Present (4)"},{"dept":"Linguistics/French","description":"This course concentrates on those language skills essential for communication: listening comprehension, conversation, reading, writing, and grammar analysis. UC San Diego students: LIFR 5A is equivalent to LIFR 1A/1AX, LIFR 5B to LIFR 1B/1BX, LIFR 5C to LIFR 1C/1CX, and LIFR 5D to LIFR 1D/1DX. Enrollment is limited. ","edges_from":[],"edges_to":[],"id":4394,"label":"Linguistics/French (LIFR) 5B, 5C, 5D","title":"Fundamentals of French (5)"},{"dept":"HIGR","description":"Readings in modern scholarship concerning ancient Greek or Roman history. Topics will vary. May be taken for credit six times.","edges_from":[],"edges_to":[],"id":4395,"label":"HIGR 259","title":"Special Topics in Ancient History (4)"},{"dept":"MGTA","description":"Decision making is difficult with scarce resources, inexact information, and conflicting stakeholder agendas (i.e., most of the time). Students will use advanced behavioral research to gain a competitive advantage, by improving their decisions and their understanding of how others decide. ","edges_from":[1328,1329,1327],"edges_to":[],"id":4396,"label":"MGTA 459","title":"Managerial Judgment and Decision-Making (4)"},{"dept":"RELI","description":"Research Study for Undergraduates (2–4)","edges_from":[],"edges_to":[],"id":4397,"label":"RELI 199","title":"Independent"},{"dept":"CLRE","description":"This course provides skills in designing and carrying out a qualitative study useful for program management (planning, monitoring, and evaluation) and ensuring quality in health-care delivery. The methods included in the course are a sample of commonly used qualitative methods: structured and unstructured interviews, participatory learning methods, group and individual methods. ","edges_from":[],"edges_to":[],"id":4398,"label":"CLRE 232","title":"Qualitative Research (2)"},{"dept":"MGTA","description":"This course focuses on improving the performance of production and service operations, as well as supply chains, through the combination of data and analytical tools including statistics, forecasting, and optimization. Students will learn to employ analytics in capacity and distribution facility planning and contracting; how to determine data collection requirements for dynamic management of inventory levels; and how to improve revenue management under demand learning. ","edges_from":[1328,1329,1327],"edges_to":[],"id":4399,"label":"MGTA 456","title":"Supply Chain Analytics (4)"},{"dept":"HIGR","description":"An in-depth examination of original readings written in the Roman period. Topics will vary. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":4400,"label":"HIGR 256","title":"Readings in Ancient Roman History (4)"},{"dept":"HIGR","description":"An in-depth examination of selected topics in ancient Greek history. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":4401,"label":"HIGR 255","title":"Readings in Ancient Greek History (4)"},{"dept":"MGTA","description":"Many firms have extensive information about customers’ choices and how they react to marketing campaigns, but few have the expertise to efficiently act on such information. In this course, students will learn a scientific approach to marketing with hands-on use of technologies such as databases, analytics, and computing systems to collect, analyze, and act on customer information. ","edges_from":[1328,1329,1327],"edges_to":[],"id":4402,"label":"MGTA 455","title":"Customer Analytics (4)"},{"dept":"PSYC","description":"Weekly research seminar, three quarter research project under faculty guidance which culminates in a thesis. Must be taken for a letter grade to satisfy major requirements for Department of Psychology majors. ","edges_from":[],"edges_to":[],"id":4403,"label":"PSYC 196A-B-C","title":"Research Seminar (4-4-4)"},{"dept":"ECON","description":"Overview of the public sector in the United States and the justifications for government intervention in economic life. Theory of income redistribution and social insurance. Applications to current policy in such areas as health insurance, welfare, unemployment insurance, and Social Security. ","edges_from":[797],"edges_to":[],"id":4404,"label":"ECON 152","title":"Public Economics: Expenditures II (4)"},{"dept":"LTSP","description":"Development of Latin American Literature (4)","edges_from":[],"edges_to":[],"id":4405,"label":"LTSP 130B","title":""},{"dept":"LTSP","description":"An introduction to the major movements and periods of Spanish literary history, centered on close readings of representative texts, but aimed at providing a sense of the scope of Spanish literature and its relation to the course of Spain’s cultural and social history. This course fulfills the pre-1900 requirement for Spanish literature majors. ","edges_from":[82,83,84],"edges_to":[],"id":4406,"label":"LTSP 130A","title":"Development of Spanish Literature (4)"},{"dept":"BENG/BIMM/CSE","description":"(Cross-listed as BIMM 181 and CSE 181.) This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNA sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. ","edges_from":[11,17,411,2056],"edges_to":[],"id":4407,"label":"BENG/BIMM/CSE 181","title":"Molecular Sequence Analysis (4)"},{"dept":"TDMV","description":"This creative laboratory course facilitates group and individual experimentation through the study of somatic movement processes and methodologies. Students explore approaches to movement vocabulary that offer them insights into investigating their own movement generation and dance making material. May be taken for credit six times. ","edges_from":[],"edges_to":[],"id":4408,"label":"TDMV 20","title":"Movement Laboratory (4)"},{"dept":"BGGN","description":"Research papers from all aspects of stem cell biology will be read, presented, and discussed. Papers will range from landmark to current studies, spanning many developmental organisms and cell types. Students will present one paper, provide relevant background, and lead discussions. ","edges_from":[],"edges_to":[],"id":4409,"label":"BGGN 231","title":"Current Concepts in Stem Cell Biology (4)"},{"dept":"POLI","description":"This seminar is an examination of the different approaches to the study of political theory. Issues and research areas will vary each time the course is offered. ","edges_from":[],"edges_to":[],"id":4410,"label":"POLI 219","title":"Special Topics in Political Theory (4)"},{"dept":"POLI","description":"Directed group study in an area not presently covered by the departmental curriculum. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4411,"label":"POLI 198","title":"Directed Group Study (2-4)"},{"dept":"CLRE","description":"The goal of implementation science is to ensure that the knowledge and materials produced by health research actually leads to improved population health by: 1) reaching the people for whom they are intended; 2) being adapted to local circumstances; and 3) being implemented effectively, safely, equitably, and in a timely and patient-centered manner. ","edges_from":[],"edges_to":[],"id":4412,"label":"CLRE 231","title":"Implementation Science (2)"},{"dept":"DSGN","description":"Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. P/NP grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":4413,"label":"DSGN 195","title":"Instructional Apprenticeship in Design (4)"},{"dept":"MATS","description":"Group discussion of research activities and progress of group members. ","edges_from":[],"edges_to":[],"id":4414,"label":"MATS 295","title":"Research Conference (2)"},{"dept":"MATS","description":"","edges_from":[],"edges_to":[],"id":4415,"label":"MATS 296","title":"Independent Study (4)"},{"dept":"MUS","description":"Introduces the network of concepts and approaches that comprise systems inquiry and explores the theoretical, philosophical, and methodological implications of systems thinking for musical research and practice. Students who have taken MUS 208B for credit may not take MUS 212 for credit. ","edges_from":[],"edges_to":[],"id":4416,"label":"MUS 212","title":"Introduction to System Inquiry (2)"},{"dept":"MATS","description":"Subject to the approval of a faculty adviser, students may choose courses offered by departments participating in the Materials Science and Engineering Program. Please see the graduate coordinator for more information.\t\t(S/U grades only.)","edges_from":[],"edges_to":[],"id":4417,"label":"MATS 299","title":"Graduate Research (1–12)"},{"dept":"EDS","description":"Education specialist credential candidate performs student teaching in participating schools for a minimum of seven weeks full-time under the supervision of a cooperating teacher and university supervisor. The field experience provides professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Deaf and Hard of Hearing Specialist and BCLAD Credential. ","edges_from":[],"edges_to":[],"id":4418,"label":"EDS 349","title":"Deaf Education Specialist Student Teaching Practicum (9)"},{"dept":"CLRE","description":"This course provides students with a strong foundation in regulatory science and drug device development and a hands-on introduction to current good manufacturing, laboratory and clinical practices, as well as product development. It offers graduates unique instruction for the specialized jobs in regulatory science in federal, academic, and industry work settings. ","edges_from":[],"edges_to":[],"id":4419,"label":"CLRE 233","title":"Regulatory Science (2)"},{"dept":"ECE","description":"The linear least squares problem, including constrained and unconstrained quadratic optimization and the relationship to the geometry of linear transformations. Introduction to nonlinear optimization. Applications to signal processing, system identification, robotics, and circuit design. Recommended preparation: ECE 100. ","edges_from":[394,139,1996,141],"edges_to":[],"id":4420,"label":"ECE 174","title":"Introduction to Linear and Nonlinear Optimization with Applications (4)"},{"dept":"DSGN","description":"This independent project course is for individual, advanced students who wish to complete a design project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":4421,"label":"DSGN 199","title":"Independent Project (2 or 4)"},{"dept":"MAE","description":"Space mission concepts, architectures, and analysis. Mission geometry. Astrodynamics. Orbit and constellation design. Space environment. Payload and spacecraft design and sizing. Power sources and distribution. Thermal management. Structural design. Guidance and navigation. Space propulsion. Orbital debris and survivability. Cost modeling and risk analysis. ","edges_from":[],"edges_to":[],"id":4422,"label":"MAE 181","title":"Space Mission Analysis and Design (4)"},{"dept":"EDS","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. ","edges_from":[],"edges_to":[],"id":4423,"label":"EDS 50","title":"Chancellor’s Associates Scholars Program Freshman Introductory Course (1)"},{"dept":"TDHD","description":"An historical overview of the most influential international dance pioneers in recent history, the cultural, political, and artistic contexts that informed the development of their work and the impact that their achievements have on the evolution of dance worldwide. ","edges_from":[3474],"edges_to":[],"id":4424,"label":"TDHD 21","title":"Dance Pioneers of the Twentieth and Twenty-First Centuries (4)"},{"dept":"TDHD","description":"Focuses on the foundational aesthetic concepts of dance creation and performance within a diverse range of cultural contexts. Students develop descriptive, perceptual, and analytical skills. ","edges_from":[3474],"edges_to":[],"id":4425,"label":"TDHD 20","title":"Looking at Dance (4)"},{"dept":"POLI","description":"A comparative survey of the major dimensions of the electoral systems used in contemporary democracies (including plurality and majority systems, proportional representation, and districting methods) and of their effects on party competition.","edges_from":[],"edges_to":[],"id":4426,"label":"POLI 124A","title":"Political Consequences of Electoral Systems (4)"},{"dept":"TDDM","description":"The study of dance and performance creation in relation to the environment, political activism, happenings, and ritual. Students explore ideas within the unique attributes of architecture, natural landscapes, public spaces, visual art, historic landmarks, and cultural contexts. Recommended preparation: No prior dance experience needed. Open to all levels. ","edges_from":[],"edges_to":[],"id":4427,"label":"TDDM 5","title":"Site Specific Dance and Performance (4)"},{"dept":"TDPF","description":"Students develop skills in directing and producing an independent staged dance concert/production in various settings. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":4428,"label":"TDPF 190","title":"Major Project/Dance Production (4)"},{"dept":"CHIN","description":"A course in which graduate teaching assistants","edges_from":[],"edges_to":[],"id":4429,"label":"CHIN 500","title":"Apprentice Teaching (2–4)"},{"dept":"TMC","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4430,"label":"TMC 2","title":"Transfer Year Experience (2)"},{"dept":"MUS","description":"Surveys the terrain of contemporary creative music and investigates the social, cultural, historical, and technological dimensions of its manifestations and practice. Students who have taken MUS 208D for credit may not take MUS 214 for credit. ","edges_from":[],"edges_to":[],"id":4431,"label":"MUS 214","title":"Introduction to Creative Practices (2)"},{"dept":"POLI","description":"Topics in International Political Economy (4)","edges_from":[],"edges_to":[],"id":4432,"label":"POLI 144AB","title":"Selected"},{"dept":"HIGR","description":"Guided and supervised reading in the literature of the several fields of history. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course. (S/U grades permitted.)","edges_from":[],"edges_to":[],"id":4433,"label":"HIGR 298","title":"Directed Reading (1–12)"},{"dept":"NANO","description":"Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine. Cross-listed with CENG 134. Students may not receive credit for both CENG 134 and NANO 134. ","edges_from":[215],"edges_to":[],"id":4434,"label":"NANO 134","title":"Polymeric Materials (4)"},{"dept":"BENG","description":"Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. ","edges_from":[],"edges_to":[],"id":4435,"label":"BENG 247A/ECE 247A/NANO 247A","title":"Advanced Biophotonics (4)"},{"dept":"DSGN","description":"Special topics in design. May be taken for credit eighteen times. ","edges_from":[],"edges_to":[],"id":4436,"label":"DSGN 260","title":"Advanced Topics in Design (4)"},{"dept":"DSGN","description":"Special topics in design. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ","edges_from":[],"edges_to":[],"id":4437,"label":"DSGN 261","title":"Advanced Design Project (4)"},{"dept":"Revelle","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and cocurricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4438,"label":"Revelle 1","title":"First Year Experience (2)"},{"dept":"Revelle","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4439,"label":"Revelle 2","title":"Transfer Year Experience (2)"},{"dept":"VIS","description":"A studio course in painting emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ","edges_from":[4441],"edges_to":[],"id":4440,"label":"VIS 106C","title":"Painting: Portfolio Projects (4)"},{"dept":"VIS","description":"","edges_from":[4442],"edges_to":[4440],"id":4441,"label":"VIS 106B","title":""},{"dept":"VIS","description":"","edges_from":[730],"edges_to":[4441],"id":4442,"label":"VIS 106A","title":""},{"dept":"GPEC","description":"Government policies with respect to cultural amenities, the environment, health, and transportation generate benefits and costs not directly priced by the market. This course covers the range of techniques economists utilize to place a monetary value on nonmarket outputs. Course renumbered from IRGN 489. Student may not receive credit for GPEC 489 and IRGN 489. ","edges_from":[1841,2983],"edges_to":[],"id":4443,"label":"GPEC 489","title":"The Economics of Nonmarket Valuation (4)"},{"dept":"GPEC","description":"This course provides a broad overview of environmental and regulatory economics and its interface with public policy. This course will be grounded in micro-economic theory with applications to specific cases. Renumbered from IRGN 488. Student may not receive credit for GPEC 488 and IRGN 488. ","edges_from":[1841,2983],"edges_to":[],"id":4444,"label":"GPEC 488","title":"Environmental and Regulatory Economics (4)"},{"dept":"LTAM","description":"An analysis of the readings and appropriations of European and US traditions by Latin American, Caribbean, and Filipino writers. The course addresses philosophies, ideologies, and cultural movements and explores the specific literary strategies used by authors in constructing their particular “cosmovisión.”","edges_from":[],"edges_to":[],"id":4445,"label":"LTAM 130","title":"Reading North by South (4)"},{"dept":"LTIT","description":"Studies in medieval culture and thought with focus on one of the “three crowns” of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.","edges_from":[],"edges_to":[],"id":4446,"label":"LTIT 115","title":"Medieval Studies (4)"},{"dept":"GPEC","description":"This course studies the development, current economic issues, and future prospects and challenges of Latin America, broadly defined to include Mexico and Central and South America. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies of the region. Renumbered from IRGN 480. Student may not receive credit for GPEC 480 and IRGN 480.","edges_from":[],"edges_to":[],"id":4447,"label":"GPEC 480","title":"Comparative Development of the Latin American Economies (4)"},{"dept":"PHYS","description":"Directed research on dissertation topic.","edges_from":[],"edges_to":[],"id":4448,"label":"PHYS 299","title":"Thesis Research in Physics (1–12)"},{"dept":"PHYS","description":"Research studies under the direction of a faculty member. (S/U grades permitted.)","edges_from":[],"edges_to":[],"id":4449,"label":"PHYS 298","title":"Directed Study in Physics (1–12)"},{"dept":"GPEC","description":"This course examines China’s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949 and contemporary problems and options. Renumbered from IRGN 486. Student may not receive credit for GPEC 486 and IRGN 486.","edges_from":[],"edges_to":[],"id":4450,"label":"GPEC 486","title":"Economic and Social Development of China (4)"},{"dept":"MUS","description":"Individual or master class instruction in advanced instrumental performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ","edges_from":[],"edges_to":[4647],"id":4451,"label":"MUS 132","title":"Proseminar in Music Performance (4)"},{"dept":"MUS","description":"Performance of new music of the twentieth century. Normally offered winter quarter only. Required a minimum of one time for all music majors. May be taken two times for credit. ","edges_from":[],"edges_to":[],"id":4452,"label":"MUS 133","title":"Projects in New Music Performance (4)"},{"dept":"MUS","description":"Instruction in the preparation of small group performances of representative instrumental and vocal chamber music literature. May be taken for credit six times, after which students must enroll for zero units. ","edges_from":[],"edges_to":[],"id":4453,"label":"MUS 130","title":"Chamber Music Performance (2–4/0)"},{"dept":"HIEU","description":"A study of the origin and development of early Christian thought, literature, and institution from the New Testament period to the Council of Chalcedon. +","edges_from":[],"edges_to":[],"id":4454,"label":"HIEU 105","title":"The Early Christian Church (4)"},{"dept":"HIEU","description":"This course treats the history of Rome from the foundation of the city in the eighth century BC until the end of the Flavian dynasty in 96 AD. It focuses particularly on the political, social, and cultural elements that fueled Roman development and expansion.","edges_from":[],"edges_to":[],"id":4455,"label":"HIEU 102","title":"Roman History (4)"},{"dept":"HIEU","description":"This course discusses the history of imperial Rome and its successor states between the second and seventh centuries AD. It considers whether the Roman Empire fell or if one should instead speak of Roman continuity amidst political and religious change.","edges_from":[],"edges_to":[],"id":4456,"label":"HIEU 103","title":"Decline and Fall of the Roman Empire (4)"},{"dept":"MUS","description":"Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ","edges_from":[],"edges_to":[],"id":4457,"label":"MUS 134","title":"Symphonic Orchestra (4)"},{"dept":"MGT","description":"Sequence introduces students to various","edges_from":[],"edges_to":[],"id":4458,"label":"MGT 208C","title":"Introduction to Management Research C (4)"},{"dept":"HINE","description":"Middle East in the Twentieth Century (4)","edges_from":[],"edges_to":[],"id":4459,"label":"HINE 118","title":"The"},{"dept":"HINE","description":"Mid-East Policy Post-WWII (4)","edges_from":[],"edges_to":[],"id":4460,"label":"HINE 119","title":"US"},{"dept":"BGGN","description":"(Cross-listed with PATH 234, MED 234, BIOM 238.) This course is designed to train those who need to analyze mouse models of human disease that are an essential part of their research. Sessions will include hematology, chemistry, histology, and immunohistochemistry methods used in the phenotyping assays. (Quarter offered varies and course is not offered every year.) ","edges_from":[],"edges_to":[],"id":4461,"label":"BGGN 234","title":"Practical Histopathology and Mouse Models of Human Disease (2)"},{"dept":"EDS","description":"This course prepares K–12 teacher-researchers","edges_from":[],"edges_to":[],"id":4462,"label":"EDS 229","title":"Introduction to Educational Resources (4)"},{"dept":"HIEU","description":"This course will explore the history of nationalism as idea and political movement in European history, from the French Revolution to the present. +","edges_from":[],"edges_to":[],"id":4463,"label":"HIEU 109","title":"Blood, Soil, Boundaries: Nationalism in Europe (4)"},{"dept":"ECE","description":"A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BNFO 285 and ECE 204 and BENG 285. Cross-listed with BNFO 285 and BENG 285. ","edges_from":[2524,2525,2526],"edges_to":[],"id":4464,"label":"ECE 204","title":"Statistical Learning in Bioinformatics (4)"},{"dept":"Jewish","description":"An introductory survey of Jewish history, literature, and culture from antiquity to contemporary times. Topics include sacred texts; the variety of groups and views of Judaism; the historical and geographical movements of the Jewish people; and the intersection of religion, ethnicity, and culture.","edges_from":[],"edges_to":[],"id":4465,"label":"Jewish Studies 110","title":"Introduction to Judaism (4)"},{"dept":"COGR","description":"This seminar focuses on how differences between groups of people, and the patterns of power, exclusion and conflict resulting from such differences, become embedded in geographical landscapes. The course examines place-based sites of difference, power, and conflict beginning with the map, and moving through such spatial environments as the body, the city, the nation, the landscape, the reservation, culminating in borderland conflict here in our own backyard. ","edges_from":[],"edges_to":[],"id":4466,"label":"COGR 262","title":"Geographies of Difference, Exclusion and Conflict (4)"},{"dept":"ECE","description":"Group discussion of research activities and progress of group members. (Consent of instructor is strongly recommended.) (S/U grades only.) ","edges_from":[],"edges_to":[],"id":4467,"label":"ECE 200","title":"Research Conference (2)"},{"dept":"ECE","description":"The class will cover fundamental physical principles of biological processes at the molecular, cellular, tissue and organ levels that are related to human physiology and diseases. Topics include energetics and dynamics of biological systems, physical factors of environment, and the kinetics of biological systems. ","edges_from":[],"edges_to":[],"id":4468,"label":"ECE 201","title":"Introduction to Biophysics (4)"},{"dept":"ECE","description":"This course will cover basic cellular and electrochemical processes, membrane potentials, ionic currents, nerve cell conductance, extracellular and intracellular stimulation, neural probe technology materials and devices, diagnostic and drug delivery devices, material/physiological considerations, biosensors, microfluids, optical, magnetic and electrical screening. ","edges_from":[],"edges_to":[],"id":4469,"label":"ECE 202","title":"Medical Devices and Interfaces (4)"},{"dept":"ECE","description":"Integrated circuit analysis and design for medical devices. Introduction to subthreshold conduction in MOS transistor and its similarities to biomolecular transport. Design of instrumentation amplifiers, sensors, and electrical stimulation interfaces. Transcutaneous wireless power transfer and electromagnetic effects on tissue. Recommended preparation: ECE 164 or BENG 186B or equivalent. ","edges_from":[],"edges_to":[],"id":4470,"label":"ECE 203","title":"Biomedical Integrated Circuits and Systems (4)"},{"dept":"MGT","description":"Introduces advanced topics in global business, with a regional emphasis. Instructional methods include lectures, case presentations, readings, and discussions. A substantial portion of learning outcomes will be met by visiting businesses in another world region, observing operations, and interviewing executives. The visit to the foreign region will typically be one to two weeks and may occur outside the normal academic quarter. S/U grades only. May be taken for credit two times. Students may not earn credit for both MGT 419 and MGT 259 if the courses have the same course subtitle. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4471,"label":"MGT 419","title":"Global Business Immersion (2)"},{"dept":"ECE","description":"Evolutionary biology (e.g., the study of the tree of life) uses computational methods from statistics and machine learning. We cover methods of broad use in many fields and apply them to biology, focusing on scalability to big genomic data. Topics include dynamic programming, continuous time Markov models, hidden Markov models, statistical inference of phylogenies, sequence alignment, uncertainty (e.g., bootstrapping), and heterogeneity (e.g., phylogenetic mixture models). ","edges_from":[],"edges_to":[],"id":4472,"label":"ECE 208","title":"Computational Evolutionary Biology (4)"},{"dept":"CSE","description":"This course covers advanced topics in computer architecture. It incorporates the latest research and development on topics such as branch prediction, instruction-level parallelism, cache hierarchy design, speculative multithreading, reliable architectures, and power-management techniques. CSE 240A recommended. ","edges_from":[],"edges_to":[],"id":4473,"label":"CSE 240C","title":"Advanced Microarchitecture (4)"},{"dept":"CSE","description":"This course covers advanced topics in parallel computer architecture, including on-chip and off-chip interconnection networks, cache coherence, cache consistency, hardware multithreading, multi-core and tiled architectures. It incorporates the latest research and development on parallel architectures and compilation techniques for those architectures. CSE 240A recommended. ","edges_from":[],"edges_to":[],"id":4474,"label":"CSE 240B","title":"Parallel Computer Architecture (4)"},{"dept":"CSE","description":"(Formerly CSE 240.) This course will cover fundamental concepts in computer architecture. Topics include instruction set architecture, pipelining, pipeline hazards, bypassing, dynamic scheduling, branch prediction, superscalar issue, memory-hierarchy design, advanced cache architectures, and multiprocessor architecture issues. ","edges_from":[1180],"edges_to":[],"id":4475,"label":"CSE 240A","title":"Principles of Computer Architecture (4)"},{"dept":"COGR","description":"Different approaches to conducting historical research in communication. Such approaches may include the social history of communication technology; structuralist and poststructuralist accounts of language, media, and collective memory; and new historicist treatments of cultural history. Sources, documentation, and the nature of argument from historical evidence are emphasized. ","edges_from":[],"edges_to":[],"id":4476,"label":"COGR 201D","title":"Historical Methods for Communication Research (4)"},{"dept":"GPCO","description":"Capstone class: Students collaborate on long-term projects analyzing important political, economic, and business issues in the Pacific regions using the tools acquired through other courses at GPS. Renumbered from IRCO 483. Students may not receive credit for GPCO 483 and IRCO 483. ","edges_from":[4478,4479],"edges_to":[],"id":4477,"label":"GPCO 483","title":"Workshop on Policy Issues in the Pacific Rim (4)"},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[4477],"id":4478,"label":"GPCO 482","title":""},{"dept":"GPCO","description":"","edges_from":[],"edges_to":[4477],"id":4479,"label":"GPCO 481","title":""},{"dept":"SXTH","description":"Weekly seminars with faculty members from a variety of disciplines (chosen by the provost to match the interests of participating students). This seminar provides students with opportunities to learn more about research and scholarly activities being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4480,"label":"SXTH 20","title":"Freshmen Honors Seminar (1)"},{"dept":"BENG","description":"Oral presentations of design projects, including design, development, and implementation strategies and results of prototype testing. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ","edges_from":[68],"edges_to":[],"id":4481,"label":"BENG 187D","title":"Bioengineering Design Project: Presentation (1)"},{"dept":"BILD","description":"Students will isolate bacterial viruses or other organisms from the environment and characterize them by methods including electron microscopy and nucleic acid analysis. The genomic DNA will be purified and sent for sequencing. Restricted to student participants in the Phage Genomics Research program. Renumbered from BIMM 171A. Students may not receive credit for BILD 70 and BIMM 171A. Material lab fees will apply. ","edges_from":[],"edges_to":[],"id":4482,"label":"BILD 70","title":"Genomics Research Initiative Lab I (4)"},{"dept":"CSE","description":"in Computer Science and Engineering (1–4)","edges_from":[],"edges_to":[],"id":4483,"label":"CSE 291","title":"Topics"},{"dept":"COGR","description":"History uses methodology of quantitative analysis of media content. Includes conceptual issues concerning the quantification of meaning and practical procedures for coding and data analysis. Students read examples of studies using content analysis and carry out their own pilot analyses. ","edges_from":[],"edges_to":[],"id":4484,"label":"COGR 201M","title":"Content Analysis (4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in entrepreneurship. Examples of course topics include (but are not limited to): venture capital funding process, entrepreneurial business development and marketing, workplace climate and morale, and developing a capable workforce. Instructional methods include face-to-face lecture, case presentation, assigned reading and group discussion. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":4485,"label":"MGT 129","title":"Topics in Entrepreneurship (2)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112W. Courses may be taken in any order. ","edges_from":[],"edges_to":[],"id":4486,"label":"Linguistics/Heritage Languages (LIHL) 112W","title":"Filipino for Filipino Speakers (4)"},{"dept":"MGT","description":"Course examines management of personal financial assets: savings and checking accounts, fixed assets, and credit cards. Budgeting, loan applications, payment terms, and statement reconciliation will be covered as will credit ratings, cash management, compound interest, bank operations, and contract obligations.","edges_from":[],"edges_to":[],"id":4487,"label":"MGT 12","title":"Personal Financial Management (4)"},{"dept":"MGT","description":"Course examines the ethical foundation for choices individuals make every day both in the workplace and in their private lives, the connection between economic and ethical obligations with examples related to privacy, reporting, whistle-blowing, workplace relationships, confidentiality, and intellectual property.","edges_from":[],"edges_to":[],"id":4488,"label":"MGT 16","title":"Personal Ethics at Work (4)"},{"dept":"MGT","description":"This course will focus on three major components: 1) what matters (the purpose of ethics in the accounting profession); 2) why ethics matter (the reasons, skills, and abilities that make a difference); and 3) how a professional “walks the walk.” The course provides students with the opportunity to gain knowledge, awareness, and recognition of ethical terms, theories, codes, etc. Students will be given the opportunity to practice making choices and exercise professional judgment. ","edges_from":[4490],"edges_to":[],"id":4489,"label":"MGT 146","title":"Ethics in Accounting (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[4489],"id":4490,"label":"MGT 132","title":""},{"dept":"CSE","description":"A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. May be used to meet teaching experience requirement for candidates for the PhD degree. Number of units for credit depends on number of hours devoted to class or section assistance. ","edges_from":[],"edges_to":[],"id":4491,"label":"CSE 500","title":"Teaching Assistantship (2–4)"},{"dept":"MGT","description":"Course covers key forensic accounting concepts including fraudulent financial reporting, money laundering, business valuation, and litigation support. Learning objectives are the application of analytical accounting and communication skills in identifying and presenting financial issues in both criminal or civil litigation. ","edges_from":[2061],"edges_to":[],"id":4492,"label":"MGT 143","title":"Forensic Accounting (4)"},{"dept":"BIEB","description":"and the Human Predicament (4)","edges_from":[],"edges_to":[],"id":4493,"label":"BIEB 176","title":"Biology of Conservation"},{"dept":"BIEB","description":"This course will teach the principles of ecosystem ecology in terrestrial and marine systems and will use examples from recent research to help students understand how global environmental changes are altering processes from leaf-level ecophysiology to global cycling of carbon, water, and nutrients. Fieldwork may be required. ","edges_from":[1424],"edges_to":[],"id":4494,"label":"BIEB 174","title":"Ecosystems and Global Change (4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in accounting. Examples of course topics include (but are not limited to): corporate valuation and forecasting, global taxation and business strategy, current issues in the practice and regulation of auditing. May be taken for credit two times for a maximum of eight credits if the topics are substantially different. ","edges_from":[2061],"edges_to":[],"id":4495,"label":"MGT 149","title":"Topics in Accounting (4)"},{"dept":"MAE","description":"Identification and Control (4)","edges_from":[],"edges_to":[],"id":4496,"label":"MAE 283B","title":"Approximate"},{"dept":"MAE","description":"Identification: Theory and Methods (4)","edges_from":[],"edges_to":[],"id":4497,"label":"MAE 283A","title":"Parametric"},{"dept":"HIEU","description":"Examines existentialism as a way of thinking from the late nineteenth to mid-twentieth century. Explores the historical context of existentialism in Germany and France, e.g., World War II, the Holocaust, fascism, and communism. Selections from Heidegger, Sartre, Camus, and de Beauvoir.","edges_from":[],"edges_to":[],"id":4498,"label":"HIEU 146S","title":"The Meaning of Life in the Modern World: Existentialism, Fascism, and Genocide (4)"},{"dept":"ANSC","description":"The course considers how social life is constituted and negotiated through language and interaction. How do people establish, maintain, and alter social relationships through face-to-face talk, and how do different modalities of interaction (including discourse and gesture) affect social life? ","edges_from":[],"edges_to":[],"id":4499,"label":"ANSC 127","title":"Discourse, Interaction, and Social Life (4)"},{"dept":"COGS","description":"This course will allow cognitive science honors","edges_from":[],"edges_to":[],"id":4500,"label":"COGS 190B","title":"Honors Studies in Cognitive Science (4)"},{"dept":"POLI","description":"An introduction to the theoretical concepts in the discipline of political science that are commonly used across various subfields. Each week will introduce the core concept(s) and discuss applications from several, if not all subfields in the department. ","edges_from":[],"edges_to":[],"id":4501,"label":"POLI 200A","title":"Foundations of Political Science (4)"},{"dept":"POLI","description":"An overview of the normative and positive issues associated with modern democracies. The appeal and the social, political, and economic arrangements of democracies will be explored. ","edges_from":[],"edges_to":[],"id":4502,"label":"POLI 200B","title":"Democracy (4)"},{"dept":"GPPS","description":"Analyzes the particular environment in which nonprofit organizations define and achieve their objectives. Management tools are applied to existing nonprofits and to student projects. Renumbered from IRGN 465. Students may not receive credit for GPPS 465 and IRGN 465.","edges_from":[],"edges_to":[],"id":4503,"label":"GPPS 465","title":"Management of Nonprofit Organizations (4)"},{"dept":"HIEU","description":"Ancient Mediterranean conceptions of emotional and physical love through analysis of ancient romantic poetry, love letters, and romance novels. Students learn to interpret primary sources and to conduct independent critical assessment of documents and ideas.","edges_from":[],"edges_to":[],"id":4504,"label":"HIEU 108S","title":"Sex and Romance in the Ancient World (4)"},{"dept":"GPPS","description":"","edges_from":[],"edges_to":[],"id":4505,"label":"GPPS 469","title":"Comparative Grand Strategy and Defense Policy (4)"},{"dept":"PHIL","description":"Independent study by special arrangement with and under the supervision of a faculty member, including a proposal for the honors essay. An IP grade will be awarded at the end of this quarter; a final grade will be given for both quarters at the end of 191B. ","edges_from":[],"edges_to":[],"id":4506,"label":"PHIL 191A","title":"Philosophy Honors (4)"},{"dept":"Linguistics/Italian","description":"A communicative introduction to Italian for students with no prior exposure, with attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1A/1AX. ","edges_from":[],"edges_to":[],"id":4507,"label":"Linguistics/Italian (LIIT) 5AS","title":"Fundamentals of Italian I (5)"},{"dept":"COMM","description":"Examination of the legal framework of freedom of expression in the United States. Covers fundamentals of First Amendment law studying key cases in historical content. Prior restraint, incitement, obscenity, libel, fighting words, public forum, campaign finance, commercial speech, and hate speech are covered. ","edges_from":[76,2666,540],"edges_to":[],"id":4508,"label":"COMM 114F","title":"CSI: Law, Communication, and Freedom of Expression (4)"},{"dept":"EDS","description":"Second course in a two-course sequence. Provides a theoretical and practical grounding in various pedagogical techniques for teaching in bilingual settings. Course covers principles of bilingualism and bilingual pedagogy; transfer between primary and target languages as appropriate to the language(s) of emphasis. Candidates study methods for teaching primary and target languages in a variety of program models; curriculum/assessment practices; and approaches for interacting with families/communities. ","edges_from":[4510],"edges_to":[],"id":4509,"label":"EDS 352B","title":"Bilingual Instructional Practices II (2)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[4509],"id":4510,"label":"EDS 352A","title":""},{"dept":"COMM","description":"Does “new media” deliver on its promise to expand access to public participation? We will analyze, produce, and counter narratives about media, youth, and democracy. The course should interest students who care about politics, human development, community engagement, or human computer interaction. ","edges_from":[540],"edges_to":[],"id":4511,"label":"COMM 114D","title":"CSI: New Media, Youth, and Democracy (4)"},{"dept":"ECON","description":"Nonlinear programming, deterministic and stochastic dynamic programming, queuing theory, search models, and inventory models. Credit not allowed for both Econ 172B and Math 171B. ","edges_from":[4513,3301],"edges_to":[],"id":4512,"label":"ECON 172B","title":"Operations Research B (4)"},{"dept":"ECON","description":"","edges_from":[547,1992,1993,1994,1995,140,141,1996],"edges_to":[4512],"id":4513,"label":"ECON 172A","title":""},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":4514,"label":"LTEN 159","title":"Contemporary American Literature (4)"},{"dept":"POLI","description":"(Same as IRGN 290) This seminar is an examination of the different approaches to the study of international relations. Issues and research areas will vary each time the course is offered. ","edges_from":[],"edges_to":[],"id":4515,"label":"POLI 248","title":"Special Topics in International Relations (4)"},{"dept":"LTEN","description":"to African American Literature (4)","edges_from":[],"edges_to":[],"id":4516,"label":"LTEN 27","title":"Introduction"},{"dept":"POLI","description":"This course exposes students to contemporary research on international institutions. What leads nations to cede sovereignty? How do international institutions obtain a measure of authority in world affairs? What makes an institution “successful”? We’ll also examine institutional design. ","edges_from":[],"edges_to":[],"id":4517,"label":"POLI 244","title":"International Institutions (4)"},{"dept":"POLI","description":"A seminar surveying the major theoretical controversies in the study of international political economy. ","edges_from":[],"edges_to":[],"id":4518,"label":"POLI 245","title":"International Political Economy (4)"},{"dept":"POLI","description":"A survey of the principal theories and approaches to the study of international relations. ","edges_from":[],"edges_to":[],"id":4519,"label":"POLI 240","title":"International Relations Theory (4)"},{"dept":"POLI","description":"This course explores contemporary research on European Union politics from a comparative and international relations perspective, and links this research to broader questions of global governance. ","edges_from":[],"edges_to":[],"id":4520,"label":"POLI 242","title":"The European Union and Global Governance (4)"},{"dept":"POLI","description":"A colloquium surveying the major theoretical controversies in the study of international and national security. ","edges_from":[],"edges_to":[],"id":4521,"label":"POLI 243","title":"International Security (4)"},{"dept":"SIOC","description":"Building on the knowledge and experience gained from the entire curriculum of the Master’s in Climate Science and Policy (MAS-CSP) program, students will design and present a specific climate science and policy project. May be taken for credit one time for a maximum of ten units. S/U grades only. ","edges_from":[],"edges_to":[],"id":4522,"label":"SIOC 299","title":"Climate Science and Policy Capstone Project (6–10)"},{"dept":"POLI","description":"and Discipline: Political Thought in the Twentieth Century (4)","edges_from":[],"edges_to":[],"id":4523,"label":"POLI 110DA","title":"Freedom"},{"dept":"SIOC","description":"Required course for MAS-CSP students will focus on development of MAS Capstone Projects and discussions covering climate science and policy issues, including informal student presentations on political, economic, historical, educational, and natural science issues related to climate science and policy. Letter grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":4524,"label":"SIOC 296","title":"Climate Science and Policy Forum (2)"},{"dept":"CENG","description":"299. Graduate Research in Chemical Engineering (1–12)","edges_from":[],"edges_to":[],"id":4525,"label":"CENG","title":""},{"dept":"COGR","description":"This reading seminar will consider works by Frankfurt School theorists (Horkheimer, Adorno, Pollock, Lowenthal, Marcuse, Benjamin, Habermas) on mass media, mass culture, idology, art, authority and the individual, and their relevance in the analysis of contemporary capitalism. ","edges_from":[],"edges_to":[],"id":4526,"label":"COGR 238","title":"The Frankfurt School on Mass Culture Social Theory (4)"},{"dept":"COGR","description":"Course considers computer games as media, rule systems, technology, and sites of communication. Approaches include hands-on play and reading material from a variety of disciplinary perspectives. Course encompasses both commercial games and the longer, more diverse academic and independent traditions. ","edges_from":[],"edges_to":[],"id":4527,"label":"COGR 239","title":"Computer Game Studies (4)"},{"dept":"COGR","description":"Course is designed to introduce graduate students to the disciplinary, intellectual, and artistic genealogies of performance studies that bring together critical work from the fields of anthropology, art history, communication, critical gender studies, ethnic studies, film studies, literature, and theatre studies. ","edges_from":[],"edges_to":[],"id":4528,"label":"COGR 237","title":"Performance Theory (4)"},{"dept":"PSYC","description":"Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":4529,"label":"PSYC 264A","title":"Advanced Topics in Language Processes I (1)"},{"dept":"PSYC","description":"Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":4530,"label":"PSYC 264B","title":"Advanced Topics in Language Processes II (1)"},{"dept":"PSYC","description":"Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":4531,"label":"PSYC 264C","title":"Advanced Topics in Language Processes III (1)"},{"dept":"LTEU","description":"This course focuses on the theme of Faust in European literature from the Renaissance to the present, including works by Marlowe, Goethe, Bulgakov, and Thomas Mann. Concentration on how authors adapted the theme to differing national and historical contexts.","edges_from":[],"edges_to":[],"id":4532,"label":"LTEU 125","title":"Faust in European Literature (4)"},{"dept":"PSYC","description":"The course examines cognitive development through the school-age period and social and personality development from infancy through early adolescence. It begins with an examination of early neurological, sensory, motor, and perceptual functions and then focuses on issues in linguistic and cognitive development. The class will first discuss general developmental theory and methods and then topics such as attachment, temperament, self-concept, aggression, family relations, play, and peers. Students cannot get credit for PSYC 217 if they have already taken PSYC 217A or 217B. ","edges_from":[],"edges_to":[],"id":4533,"label":"PSYC 217","title":"Proseminar in Developmental Psychology (5)"},{"dept":"HIUS","description":"A lecture course that explores the evolution of the interaction between the United States and the world from 1914 to the present, with special attention to the era of the Great Depression, the Cold War, Vietnam, and the post 9/11 war on terror.","edges_from":[],"edges_to":[],"id":4534,"label":"HIUS 111","title":"America and the World: World War I to the Present (4)"},{"dept":"HIUS","description":"A lecture course that explores the evolution of the interaction between the United States and the world from the American Revolution to the First World War, with particular emphasis upon the role of diplomacy, war, and economic change.","edges_from":[],"edges_to":[],"id":4535,"label":"HIUS 110","title":"America and the World: Revolution to World War I (4)"},{"dept":"PSYC","description":"Each year a different topic in visual science is selected for in-depth review and discussion based on current readings. ","edges_from":[],"edges_to":[],"id":4536,"label":"PSYC 212","title":"Visual Science (4)"},{"dept":"PSYC","description":"Procedures and Survival in Psychology (4)","edges_from":[],"edges_to":[],"id":4537,"label":"PSYC 213","title":"Professional"},{"dept":"PSYC","description":"Covers many of the neuroscience methods available to study human cognition, with emphasis on concepts of data analysis, and comparative assessment of the different methods (along with alternative nonhuman animal approaches), with an eye to pitfalls and interpretational limitations. ","edges_from":[],"edges_to":[],"id":4538,"label":"PSYC 210","title":"The Methods of Human Cognitive Neuroscience (5)"},{"dept":"HIUS","description":"112A. History of Native Americans in the United States I (4)","edges_from":[],"edges_to":[],"id":4539,"label":"HIUS 108A/ETHN","title":""},{"dept":"HIUS","description":"This course explores the history of Jews in America from the colonial period to the present, focusing on both the development of Jewish communities primarily as a result of immigration and evolving relations between Jews and the larger American society.","edges_from":[],"edges_to":[],"id":4540,"label":"HIUS 118","title":"How Jews Became American (4)"},{"dept":"PSYC","description":"A survey of basic principles and concepts of cognitive psychology. This course is intended to serve as the basic introduction for first-year students. Basic areas include knowledge, memory, thought, perception, and performance. ","edges_from":[],"edges_to":[],"id":4541,"label":"PSYC 218","title":"Proseminar in Cognitive Psychology (5)"},{"dept":"MATH","description":"Analysis of trends and seasonal effects, autoregressive and moving averages","edges_from":[],"edges_to":[],"id":4542,"label":"MATH 181E","title":"Mathematical Statistics—Time Series (4)"},{"dept":"POLI","description":"Individual placements for field learning integrated with political science. A written contract involving all parties with learning objectives, a project outline, and a means of supervision and progress evaluation must be filed with the faculty adviser and department undergraduate coordinator prior to the beginning of the internship. P/NP grades only. May be taken for credit two times. ","edges_from":[4544,106],"edges_to":[4544],"id":4543,"label":"POLI 197SD","title":"Local Internship in Political Science (4)"},{"dept":"POLI","description":"","edges_from":[4543],"edges_to":[4543],"id":4544,"label":"POLI 194SD","title":""},{"dept":"CHEM","description":"Synthesis, analysis, and physical characterization of inorganic chemical compounds. Program or materials fees may apply. Recommended preparation: concurrent or prior enrollment in CHEM 120B. ","edges_from":[4546,1786,4547,4221,3835],"edges_to":[],"id":4545,"label":"CHEM 123","title":"Advanced Inorganic Chemistry Laboratory (4)"},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[4545,5134,5135],"id":4546,"label":"CHEM 143AM","title":""},{"dept":"CHEM","description":"","edges_from":[],"edges_to":[4545,5134,5135],"id":4547,"label":"CHEM 143A","title":""},{"dept":"CHEM","description":"The roles of metal ions in biological systems, with emphasis on transition metal ions in enzymes that transfer electrons, bind oxygen, and fix nitrogen. Also included are metal complexes in medicine, toxicity, and metal ion storage and transport. May be coscheduled with CHEM 225. ","edges_from":[1786,458],"edges_to":[],"id":4548,"label":"CHEM 125","title":"Bioinorganic Chemistry (4)"},{"dept":"MATH","description":"Various topics in probability and statistics. ","edges_from":[],"edges_to":[],"id":4549,"label":"MATH 288","title":"Seminar in Probability and Statistics (1)"},{"dept":"MGT","description":"Advanced topics in business innovation, delivered by lecture, case presentation, and group discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 459 and MGT 221 if the course has the same course subtitle. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4550,"label":"MGT 459","title":"Topics in Innovation (2 or 4)"},{"dept":"HIEA","description":"Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China’s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 270. +","edges_from":[],"edges_to":[],"id":4551,"label":"HIEA 170","title":"Love and Marriage in Chinese History (4)"},{"dept":"MGT","description":"Provides management concepts and tools to enable the more effective design, planning, and control of projects. Includes both the qualitative and quantitative aspects of project management. Students may not earn credit for both MGT 450 and MGT 270. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4552,"label":"MGT 450","title":"Project Management (4)"},{"dept":"MGT","description":"Outlines tools for formulating and evaluating technology strategy, including an introduction to the economics of technical change, models of technological evolution, and models of organizational dynamics and innovation. Provides an understanding of how technology firms gain and sustain competitive advantage. Students may not earn credit for both MGT 451 and MGT 271. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4553,"label":"MGT 451","title":"Technology and Innovation Strategy (4)"},{"dept":"MGT","description":"Provides comprehensive analytical coverage of the new product development process, focusing on the basic tools, methods, and organizational structures used in new product development and management. Students may not earn credit for both MGT 452 and MGT 272. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4554,"label":"MGT 452","title":"New Product Development (4)"},{"dept":"MGT","description":"Describes the systems approach to managing the entire flow of information, materials, and services from raw materials suppliers through factories and warehouses to the end customer, which is the key to productivity and competitiveness of manufacturing and service enterprises. Letter grades only. ","edges_from":[],"edges_to":[],"id":4555,"label":"MGT 453","title":"Supply Chain Management (4)"},{"dept":"MATH","description":"Survival analysis is an important tool in many areas of applications including biomedicine, economics, engineering. It deals with the analysis of time to events data with censoring. This course discusses the concepts and theories associated with survival data and censoring, comparing survival distributions, proportional hazards regression, nonparametric tests, competing risk models, and frailty models. The emphasis is on semiparametric inference, and material is drawn from recent literature. ","edges_from":[482],"edges_to":[],"id":4556,"label":"MATH 284","title":"Survival Analysis (4)"},{"dept":"MATH","description":"Elements of stochastic processes, Markov chains, hidden Markov models, martingales, Brownian motion, Gaussian processes. Recommended preparation: completion of undergraduate probability theory (equivalent to Math 180A) highly recommended. ","edges_from":[],"edges_to":[],"id":4557,"label":"MATH 285","title":"Stochastic Processes (4)"},{"dept":"MATH","description":"Review of continuous martingale theory. Stochastic integration for continuous semimartingales. Existence and uniqueness theory for stochastic differential equations. Strong Markov property. Selected applications. ","edges_from":[4560,4559],"edges_to":[],"id":4558,"label":"MATH 286","title":"Stochastic Differential Equations (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[4560,4558],"id":4559,"label":"MATH 280A","title":""},{"dept":"MATH","description":"","edges_from":[4559],"edges_to":[4972,4558],"id":4560,"label":"MATH 280B","title":""},{"dept":"GPPA","description":"The course will introduce students to the world food economy and its drivers. The first part of the course will consider the forces governing food prices and supply. The second part uses quantitative assessment of policy changes. The third part frames future constraints to food security. Renumbered from IRGN 483. Students may not receive credit for GPPA 483 and IRGN 483. Recommended preparation: GPCO 454, knowledge of regression analysis, and STATA.","edges_from":[],"edges_to":[],"id":4561,"label":"GPPA 483","title":"Food Security (4)"},{"dept":"PSYC","description":"This is a series of weekly seminars on current trends in neuropsychology. The seminars will deal with the concept of “localization” of function in different parts of the brain and the effects of damage to these parts on cognitive functions such as perception, memory and language. Active student participation will be encouraged in preparing these seminars. ","edges_from":[],"edges_to":[],"id":4562,"label":"PSYC 252","title":"Cognitive Neuroscience (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":4563,"label":"LTEN 153","title":"The Revolutionary War and the Early National Period in US Literature (4)"},{"dept":"PHIL","description":"This group provides training in reading and translating philosophical Latin by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for departmental Latin exam. ","edges_from":[],"edges_to":[],"id":4564,"label":"PHIL 288","title":"Latin Reading Group (1–2)"},{"dept":"PHIL","description":"Focused examination of specific problems or themes in some area of philosophy. May be taken for credit nine times with changed content.","edges_from":[],"edges_to":[],"id":4565,"label":"PHIL 285","title":"Seminar on Special Topics (4)"},{"dept":"ANTH","description":"This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the “foundational” culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207. ","edges_from":[],"edges_to":[],"id":4566,"label":"ANTH 207","title":"Eastern Mediterranean Archaeology—New Perspectives (4)"},{"dept":"PHIL","description":"This group provides training in reading and translating philosophical Greek by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for Departmental Greek Exam. Can be taken nine times for credit with change of content. ","edges_from":[],"edges_to":[],"id":4567,"label":"PHIL 287","title":"Greek Reading Group (1–2)"},{"dept":"PHIL","description":"A research group for graduate students engaged in philosophy or history of the physical sciences. The group discusses physical, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ","edges_from":[],"edges_to":[],"id":4568,"label":"PHIL 286","title":"Philosophy of Physics Reading Group (1–2)"},{"dept":"PHIL","description":"of Philosophy Research and Methods (1–2)","edges_from":[],"edges_to":[],"id":4569,"label":"PHIL 281","title":"History"},{"dept":"PHIL","description":"This course meets weekly to discuss recent books or articles in philosophy of science. The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Can be taken nine times for credit with changed content.","edges_from":[],"edges_to":[],"id":4570,"label":"PHIL 280","title":"Philosophy of Science Topics and Methods (1–2)"},{"dept":"ANTH","description":"This graduate seminar examines how racial and ethnic categories are constructed, how contemporary societies manage difference through multicultural policies, and how discourses and institutions of citizenship can act as sites of contestation over inclusion and exclusion. ","edges_from":[],"edges_to":[],"id":4571,"label":"ANTH 206","title":"Race, Ethnicity, and Citizenship (4)"},{"dept":"TMC","description":"Individual, independent research, or creative work intended to satisfy Marshall College graduation requirement. Designated for Marshall College students, topics are supervised by Marshall faculty in association with the honors seminar and honors projects. A written application describing the project is required. See Office of the Provost. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4572,"label":"TMC 199","title":"Marshall College Special Project (1–4)"},{"dept":"TMC","description":"College Directed Group Studies (4)","edges_from":[],"edges_to":[],"id":4573,"label":"TMC 198","title":"Thurgood Marshall"},{"dept":"CSE","description":"This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, Hidden Markov models/support victor machines/neural network/profiles. Protein structure prediction, functional characterization or proteins, functional genomics/proteomics, metabolic pathways/gene networks. Cross-listed with BIMM 184/BENG 184/Chem 184. ","edges_from":[4576,2053,582,2055,2057,2059,4575],"edges_to":[],"id":4574,"label":"CSE 184","title":"Computational Molecular Biology (4)"},{"dept":"BIMM","description":"","edges_from":[16,17],"edges_to":[5873,4574],"id":4575,"label":"BIMM 182","title":""},{"dept":"BENG","description":"","edges_from":[],"edges_to":[5873,4574],"id":4576,"label":"BENG 182","title":""},{"dept":"ANTH","description":"This course, intended for first-year anthropology graduate students, examines the contemporary practice of anthropology. We discuss the construction of a multiple-year research project including how to differentiate theory and evidence, the contours of anthropological interest, the question of audience, and rhetorical style. We analyze nine recent ethnographies as possible models for our own practice. ","edges_from":[],"edges_to":[],"id":4577,"label":"ANTH 204","title":"Contemporary Anthropology (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":4578,"label":"LTEN 152","title":"The Origins of American Literature (4)"},{"dept":"RELI","description":"This seminar requires the intensive analysis of critical problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ","edges_from":[2567],"edges_to":[],"id":4579,"label":"RELI 189","title":"Seminar in Religion (4)"},{"dept":"RELI","description":"Students in this lecture will investigate important problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ","edges_from":[],"edges_to":[],"id":4580,"label":"RELI 188","title":"Special Topics in Religion (4)"},{"dept":"HIGR","description":"An in-depth examination of selected topics in the history of Jewish people and Jewish civilizations in pre-Islamic times.","edges_from":[],"edges_to":[],"id":4581,"label":"HIGR 264","title":"Topics in Pre-Islamic Jewish History (4)"},{"dept":"ANTH","description":"Independent study and research under the direction of a member of the faculty. Student may take this course twice for credit. Please note: majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ","edges_from":[4583],"edges_to":[],"id":4582,"label":"ANTH 199","title":"Independent Study (2–4)"},{"dept":"ANPR","description":"","edges_from":[],"edges_to":[4582],"id":4583,"label":"ANPR 199","title":""},{"dept":"ECE","description":"Weekly discussion of current research topics in nanoscience and nanotechnology. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":4584,"label":"ECE 297","title":"Graduate Seminar in Nanoscience/Nanotechnology (2)"},{"dept":"COMM","description":"Specialized study of communication topics, to be determined by the instructor, for any given quarter. May be taken for credit three times. ","edges_from":[540],"edges_to":[],"id":4585,"label":"COMM 113T","title":"Intermediate Topics in Communication (4)"},{"dept":"ANTH","description":"Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ","edges_from":[4587],"edges_to":[],"id":4586,"label":"ANTH 198","title":"Directed Group Study (2–4)"},{"dept":"ANPR","description":"","edges_from":[],"edges_to":[4586],"id":4587,"label":"ANPR 198","title":""},{"dept":"TDGR","description":"Faculty directed production, from the rehearsal process through public performance. All participants will enroll in the same section, the number of units depending upon degree of involvement. ","edges_from":[],"edges_to":[],"id":4588,"label":"TDGR 206","title":"Faculty Directed Production (4)"},{"dept":"ECE","description":"Advanced projects in communication systems. Students will plan and implement design projects in the laboratory, updating progress weekly and making plan/design adjustments based upon feedback. (Course materials and/or program fees may apply.) ","edges_from":[1473],"edges_to":[],"id":4589,"label":"ECE 157B","title":"Communications Systems Laboratory II (4)"},{"dept":"COGS","description":"Explores tools and processes for innovating novel business concepts to solve problems involving the interaction between humans and technology. Students will work with an interdisciplinary team to understand unmet user needs and to create a value proposition that balances technical feasibility, financial viability, and desirability. ","edges_from":[2857,3131,3292,3293,4015],"edges_to":[],"id":4590,"label":"COGS 122","title":"Startup Studio (4)"},{"dept":"VIS","description":"A continuation of VIS 105A. A studio course in which the student will investigate a wider variety of technical and conceptual issues involved in contemporary art practice related to drawing. ","edges_from":[4592],"edges_to":[4593],"id":4591,"label":"VIS 105B","title":"Drawing: Practices and Genre (4)"},{"dept":"VIS","description":"","edges_from":[730],"edges_to":[4591],"id":4592,"label":"VIS 105A","title":""},{"dept":"VIS","description":"A studio course in drawing, emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ","edges_from":[4591],"edges_to":[],"id":4593,"label":"VIS 105C","title":"Drawing: Portfolio Projects (4)"},{"dept":"LTSP","description":"Cross-disciplinary study of late twentieth-century Latino/a-Chicano/a literature, the visual and performing arts, film, or other cultural practices. Specific periods covered will fall between the Kennedy years to the era of neoliberalism and the creation of “Hispanic” or Latino identities. May be taken for credit no more than two times. ","edges_from":[82,83,84],"edges_to":[],"id":4594,"label":"LTSP 150B","title":"Contemporary Chicano/a-Latino/a Cultural Production: 1960 to Present (4)"},{"dept":"VIS","description":"This course treats Chinese calligraphy as a multidimensional point of departure for aesthetic, cultural, and political concerns. This conceptually based course combines fundamental studio exercises with unconventional explorations. Students are exposed to both traditional and experimental forms of this unique art and encouraged to learn basic aesthetic grammars. There are no Chinese language requirements for this course. ","edges_from":[730],"edges_to":[4596],"id":4595,"label":"VIS 105D","title":"Art Forms and Chinese Calligraphy (4)"},{"dept":"VIS","description":"This course concerns East–West aesthetic interactions. What are the conceptual possibilities when calligraphy, an ancient form of Chinese art, is combined with installation, a contemporary artistic Western practice? Emphasis is placed on such issues as cultural hybridity, globalization, multiculturalism, and commercialization. ","edges_from":[4595],"edges_to":[],"id":4596,"label":"VIS 105E","title":"Chinese Calligraphy as Installation (4)"},{"dept":"COMM","description":"Examine science communication as a profession and unique form of storytelling. Identify who does science communication, how, why, and with what impacts. Highlight science communication’s role in democracy, power, public reason, technological trajectories, the sustainability transition, and shifting university-community relations. ","edges_from":[540],"edges_to":[],"id":4597,"label":"COMM 114T CSI: Science Communication (4)","title":""},{"dept":"ECE","description":"Engineering Design Project (4)","edges_from":[],"edges_to":[],"id":4598,"label":"ECE 291","title":"Industry Sponsored"},{"dept":"MAE","description":"Each student builds, models, programs, and controls an unstable robotic system built around a small Linux computer. Review/synthesis of: A) modern physical and electrical CAD. B) dynamics, signals and systems, linear circuits; PWMs, H-bridges, quadrature encoders. C) embedded Linux, C, graphical programming; multithreaded applications; bus communication to supporting ICs. D) classical control theory in both continuous-time (CT) and discrete-time (DT); interconnection of CT and DT elements. Program or materials fees may apply. ","edges_from":[2824,1944,2819],"edges_to":[],"id":4599,"label":"MAE 144","title":"Embedded Control and Robotics (4)"},{"dept":"MAE","description":"Independent study or research under direction of a member of the faculty. ","edges_from":[],"edges_to":[],"id":4600,"label":"MAE 99H","title":"Independent Study (1)"},{"dept":"ANTH","description":"Individually arranged field studies giving practical experience outside the university. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ","edges_from":[4602],"edges_to":[],"id":4601,"label":"ANTH 197","title":"Field Studies (4)"},{"dept":"ANPR","description":"","edges_from":[],"edges_to":[4601],"id":4602,"label":"ANPR 197","title":""},{"dept":"MUS","description":"The symphonic masterworks course will consist of lectures and listening sessions devoted to a detailed discussion of a small number of recognized masterworks (e.g., Mozart, Beethoven, Berlioz, Stravinsky, Ligeti, etc.). ","edges_from":[],"edges_to":[],"id":4603,"label":"MUS 9","title":"Symphony (4)"},{"dept":"ETHN","description":"This course seeks to develop research skills in historical methods; to understand techniques and tools historians use to create historical narratives using archival and historical sources; and to compare and relate the value of these to ethnic studies research. Students may not receive credit for both ETHN 240 and ETHN 201. ","edges_from":[],"edges_to":[],"id":4604,"label":"ETHN 201","title":"Historical Methods and Archives (4)"},{"dept":"MAE","description":"Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. May be taken P/NP only. ","edges_from":[],"edges_to":[],"id":4605,"label":"MAE 198","title":"Directed Group Study (1–4)"},{"dept":"MAE","description":"Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4606,"label":"MAE 199","title":"Independent Study for Undergraduates (4)"},{"dept":"AUD","description":"Detailed anatomy of the auditory and vestibular systems, including the ultra-structure, histology, and neuronal connections of the systems. In addition, physiological responses that underlie the actions of each system are described, from the cellular to the systems levels. ","edges_from":[],"edges_to":[4608],"id":4607,"label":"AUD 255","title":"Anatomy and Physiology of the Auditory and Vestibular Systems (4)"},{"dept":"AUD","description":"Physiological and anatomical substrates of auditory and vestibular disorders including influences of neurological disorders. Topics include peripheral and central disorders, congenital disorders due to infections, as well as acquired ototoxic, noise-induced, infective, autoimmune, age-associated disorders, and traumatic disorders. ","edges_from":[4607],"edges_to":[],"id":4608,"label":"AUD 256","title":"Pathophysiology of the Auditory and Vestibular Systems (4)"},{"dept":"AUD","description":"Differential diagnosis and treatment of auditory and vestibular disorders, audiological components of neuro-otology, as well as interactions between the audiologist and neuro-otologist in a clinical setting. ","edges_from":[],"edges_to":[],"id":4609,"label":"AUD 257","title":"Ear Diseases and Treatment (3)"},{"dept":"MUS","description":"An examination and exploration of the art and science of music making. Topics include acoustics, improvisation, composition, and electronic and popular forms. There will be required listening, reading, and creative assignments. No previous musical background required. ","edges_from":[],"edges_to":[],"id":4610,"label":"MUS 5","title":"Sound in Time (4)"},{"dept":"MUS","description":"Lectures and listening sessions devoted to the most significant works of music realized through the use of computers and other electronic devices from the middle of this century through the present. ","edges_from":[],"edges_to":[],"id":4611,"label":"MUS 6","title":"Electronic Music (4)"},{"dept":"MUS","description":"Exploration of the interactions among music, science, and technology, including the history and current development of science and technology from the perspective of music. ","edges_from":[],"edges_to":[],"id":4612,"label":"MUS 7","title":"Music, Science, and Computers (4)"},{"dept":"SXTH","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4613,"label":"SXTH 2","title":"Transfer Year Experience (2)"},{"dept":"SXTH","description":"","edges_from":[],"edges_to":[],"id":4614,"label":"SXTH 1","title":"First Year Experience (2)"},{"dept":"MAE","description":"Thermodynamics of gases for use in gas dynamics.","edges_from":[],"edges_to":[5812],"id":4615,"label":"MAE 220A","title":"Physics of Gases (4)"},{"dept":"MATS","description":"The thermodynamics and statistical mechanics of solids. Basic concepts; equilibrium properties of alloy systems; thermodynamic information from phase diagrams, surfaces, and interfaces; crystalline defects. ","edges_from":[],"edges_to":[],"id":4616,"label":"MATS 201A","title":"Thermodynamics of Solids (4)"},{"dept":"LATI","description":"Independent work by graduate students engaged in thesis research and writing under the direct supervision of a faculty adviser.","edges_from":[],"edges_to":[],"id":4617,"label":"LATI 299","title":"Independent Research (1–12)"},{"dept":"MGT","description":"Students will learn to develop a workforce that performs at the highest level through strategies and practices that recruit productive people, build commitment, foster innovation, and inspire and empower motivated employees to deliver results. Letter grades only. Students may not earn credit for both MGT 426 and MGT 262. Students may not receive credit for both MGT 426 and MGT 269 with the course subtitle Creating a High-Performing Workplace. ","edges_from":[],"edges_to":[],"id":4618,"label":"MGT 426","title":"Creating a High-Performing Workplace (2)"},{"dept":"VIS","description":"Workshop for PhD in Art Practice concentration students cotaught by PhD and MFA faculty offering extensive evaluation and critique of work. Intended to explore issues associated with artistic practice as a form of research in a university setting. Course is only applicable to VA76 and VA77 PhD programs. PhD students with a concentration in Art Practice my take VIS 207 each year until they qualify for candidacy.","edges_from":[],"edges_to":[],"id":4619,"label":"VIS 207","title":"Working Practice for Art Practice PhDs (4)"},{"dept":"VIS","description":"Seminar examines the interrelationship between theory and practice and the nature of artistic production as a form of research. ","edges_from":[],"edges_to":[],"id":4620,"label":"VIS 206","title":"Seminar in Art Practice Research (4)"},{"dept":"VIS","description":"to Graduate Studies in Art Practice (4)","edges_from":[],"edges_to":[],"id":4621,"label":"VIS 205","title":"Introduction"},{"dept":"VIS","description":"Critical evaluation of the methods, practices, and disciplinary commitments of art history, encompassing both revisionist interventions of the late-twentieth century and earlier paradigms, in order to envision new discipline-specific and interdisciplinary directions for the future of art history and visual culture. (Required, PhD)","edges_from":[],"edges_to":[],"id":4622,"label":"VIS 204","title":"Rethinking Art History (4)"},{"dept":"VIS","description":"Workshop in which students engage in an extensive evaluation of one another’s ongoing work in preparation for either the First Year Review or MFA Review. Offered every winter. May be taken for credit two times (Required, MFA)","edges_from":[],"edges_to":[],"id":4623,"label":"VIS 203","title":"Working Critique (4)"},{"dept":"VIS","description":"A workshop/seminar devoted to a particular materials practice (e.g., media, painting, digital media, etc.) that engages with critical questions arising within that discipline. Content will vary from quarter to quarter. May be taken for credit two times. (Required, MFA)","edges_from":[],"edges_to":[],"id":4624,"label":"VIS 202","title":"Art Practice (4)"},{"dept":"VIS","description":"An exploration of a range of issues important on the contemporary critical scene through readings and writing assignments. Topics will vary from year to year. (Required, MFA)","edges_from":[],"edges_to":[],"id":4625,"label":"VIS 201","title":"Contemporary Critical Issues (4)"},{"dept":"VIS","description":"This course includes research and discussion of the required thesis for MFA candidates in visual arts. Advancement to candidacy required. A draft of the MFA thesis paper is required to complete this course. (Required, MFA).","edges_from":[],"edges_to":[],"id":4626,"label":"VIS 209","title":"Thesis Writing (4)"},{"dept":"LTFR","description":"First course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. Basic techniques of literary analysis. ","edges_from":[2544,2543],"edges_to":[4629],"id":4627,"label":"LTFR 2A","title":"Intermediate French I (5)"},{"dept":"LTFR","description":"French III: Composition and Cultural Contexts (4)","edges_from":[],"edges_to":[],"id":4628,"label":"LTFR 2C","title":"Intermediate"},{"dept":"LTFR","description":"Second course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. Basic techniques of literary analysis. ","edges_from":[4627],"edges_to":[5173],"id":4629,"label":"LTFR 2B","title":"Intermediate French II (5)"},{"dept":"HIEU","description":"Examines problems surrounding the transfer of American culture, values, and styles to Europe in the twentieth and twenty-first centuries. Topics may include: consumer society, popular culture, commercial and business practices, “McDonaldization,” political and military influence, democratization, and resistance to Americanization. Students may not receive credit for both HIEU 117S and HIEU 118.","edges_from":[],"edges_to":[],"id":4630,"label":"HIEU 118","title":"Americanization in Europe (4)"},{"dept":"LTIT","description":"Analysis of Italian essays, journalism, literature. Intensive practice in writing and Italian conversation. ","edges_from":[4289],"edges_to":[],"id":4631,"label":"LTIT 161","title":"Advanced Stylistics and Conversation (4)"},{"dept":"HIEU","description":"The development of European society and culture from 1050 to 1400. +","edges_from":[],"edges_to":[],"id":4632,"label":"HIEU 111","title":"Europe in the Middle Ages (4)"},{"dept":"HIEU","description":"The development of European society and culture","edges_from":[],"edges_to":[],"id":4633,"label":"HIEU 110","title":"The Rise of Europe (4)"},{"dept":"EDS","description":"A yearlong course sequence, which provides an extensive overview of curriculum, design principles appropriate for K–12 instruction. Consensus and model building methods will be discussed using case studies of curriculum research and development projects appropriate for various subject areas and grade levels. Participants will design, implement, and evaluate a curriculum project in their own classrooms. ","edges_from":[],"edges_to":[],"id":4634,"label":"EDS 230A-B-C","title":"Research in Curriculum Design (4-4-4)"},{"dept":"HIEU","description":"The year 2000 provokes questions about the transformation of time, culture, and society. Taking the year 1000 as a touchstone, this class examines the history of apocalyptic expectations in the Middle Ages through a close scrutiny of both texts and art. +","edges_from":[],"edges_to":[],"id":4635,"label":"HIEU 115","title":"The Pursuit of the Millennium (4)"},{"dept":"HINE","description":"The Jews outside their homeland and in pre-Islamic times, concentrating on the Greco-Roman West and the Parthian-Sasanian East. Topics include assimilation and survival; anti-Semitism and missionizing; patterns of organization and autonomy; cultural and religious developments. +","edges_from":[],"edges_to":[],"id":4636,"label":"HINE 103","title":"The Jewish Diaspora in Antiquity (4)"},{"dept":"HINE","description":"Jews in Their Homeland in Antiquity (4)","edges_from":[],"edges_to":[],"id":4637,"label":"HINE 102","title":"The"},{"dept":"HINE","description":"Based on biblical and nonbiblical sources, a reconstruction of Israelite institutions, beliefs, and practices and their evolution over time. +","edges_from":[],"edges_to":[],"id":4638,"label":"HINE 101","title":"The Religion of Ancient Israel (4)"},{"dept":"HINE","description":"The history and literature of ancient Israel c. 1300 to 300 BCE. Reading from the Bible, historical and archaeological surveys, and studies of authorship. +","edges_from":[],"edges_to":[],"id":4639,"label":"HINE 100","title":"The Hebrew Bible and History (4)"},{"dept":"HINE","description":"Cross-listed with JUDA 136. This course examines biblical attitudes toward hetero- and homosexuality, rape, incest, bestiality, prostitution, marriage, and adultery in a variety of texts drawn from the Old Testament.","edges_from":[],"edges_to":[],"id":4640,"label":"HINE 104","title":"Sex in the Bible (4)"},{"dept":"BGGN","description":"To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. Second course in series. ","edges_from":[],"edges_to":[],"id":4641,"label":"BGGN 238B","title":"Integrative Microbiology II (4)"},{"dept":"LIGN","description":"The course, designed for graduate students serving as teaching assistants in Portuguese, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":4642,"label":"LIGN 511","title":"Apprentice Teaching of Portuguese (1–4)"},{"dept":"HINE","description":"A survey of the history of the Middle East, in particular, the Ottoman Empire, from 1200–1800. The course examines the emergence of a new political and religious order following the Mongol conquests and its long-lasting effect on the region. +","edges_from":[],"edges_to":[],"id":4643,"label":"HINE 109","title":"History of the Middle East (1200–1800): The Ottoman Empire (4)"},{"dept":"HINE","description":"The peoples, politics, and cultures of Southwest Asia and Egypt from the sixth century BCE to the seventh century CE. The Achemenid Empire, the Ptolemaic and Seleucid kingdoms, the Roman Orient, the Parthian and Sasanian states. +","edges_from":[],"edges_to":[],"id":4644,"label":"HINE 108","title":"The Middle East before Islam (4)"},{"dept":"LIGN","description":"Persian (1–4)","edges_from":[],"edges_to":[],"id":4645,"label":"LIGN 514","title":"Apprentice Teaching of Heritage"},{"dept":"LIGN","description":"Filipino (1–4)","edges_from":[],"edges_to":[],"id":4646,"label":"LIGN 515","title":"Apprentice Teaching of Heritage"},{"dept":"MUS","description":"Advanced instrumental/vocal preparation for senior music majors pursuing honors in performance. Repertoire for a solo recital will be developed under the direction of the appropriate instrumental/vocal faculty member. Special audition required during Welcome Week preceding fall quarter. ","edges_from":[4451],"edges_to":[],"id":4647,"label":"MUS 132R","title":"Recital Preparation (4)"},{"dept":"ECE","description":"This course covers modern research topics in sub-100 nm scale, state-of-the-art silicon VLSI devices. Starting with the fundamentals of CMOS scaling to nanometer dimensions, various advanced device and circuit concepts, including RF CMOS, low power CMOS, silicon memory, silicon-on-insulator, SiGe bipolar, strained silicon MOSFET’s, etc. will be taught. The physics of nearballistic transport in an ultimately scaled 10 nm MOSFET will be discussed in light of the recently developed scattering theory. ","edges_from":[],"edges_to":[],"id":4648,"label":"ECE 235","title":"Nanometer-Scale VLSI Devices (4)"},{"dept":"MUS","description":"Individual instruction on intermediate level in vocal technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in MUS 32VM. May be taken six times for credit. ","edges_from":[],"edges_to":[],"id":4649,"label":"MUS 32V","title":"Vocal Instruction (1)"},{"dept":"COMM","description":"This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ","edges_from":[537,538,539,540],"edges_to":[],"id":4650,"label":"COMM 183","title":"Global Economy and Consumer Culture (4)"},{"dept":"MUS","description":"Individual instruction in advanced vocal coaching. Emphasis placed on diction and musical issues. For declared music majors and minors. Students must be simultaneously enrolled in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ","edges_from":[3191],"edges_to":[],"id":4651,"label":"MUS 132C","title":"Vocal Coaching (4)"},{"dept":"PHYS","description":"An advanced survey of topics in physical cosmology. The Friedmann models and the large-scale structure of the universe, including the observational determination of Ho (the Hubble constant) and qo (the deceleration parameter). Galaxy number counts. A systematic exposition of the physics of the early universe, including vacuum phase transitions; inflation; the generation of net baryon number, fluctuations, topological defects and textures. Primordial nucleosynthesis, both standard and nonstandard models. Growth and decay of adiabatic and isocurvature density fluctuations. Discussion of dark matter candidates and constraints from observation and experiment. Nucleocosmo-chronology and the determination of the age of the universe.","edges_from":[],"edges_to":[],"id":4652,"label":"PHYS 227","title":"Cosmology (4)"},{"dept":"HIUS","description":"Colloquium on select topics in culture and politics in the United States. Topics will vary from quarter to quarter. Graduate students will be required to submit an additional piece of work. ","edges_from":[],"edges_to":[],"id":4653,"label":"HIUS 188/288","title":"Topics in Culture and Politics (4)"},{"dept":"FMPH","description":"This course covers the rationale for and effectiveness of policies to influence nutrition, physical activity, and substance use behavior. Policies include legalization, taxation, labeling, produce manufacturing, warning labels, licensing, marketing, and counter-marketing practices and restrictions on use. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 120. Students may not receive credit for FPMU 120 and FMPH 120. ","edges_from":[1024],"edges_to":[5108],"id":4654,"label":"FMPH 120","title":"Health Policies for Healthy Lifestyles (4)"},{"dept":"BENG","description":"Laboratory research rotation for first-year BENG PhD students. Students will write a final paper. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":4655,"label":"BENG 298L","title":"Laboratory Research Rotation (4)"},{"dept":"COMM","description":"Considers globalization’s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ","edges_from":[537,538,539,540],"edges_to":[],"id":4656,"label":"COMM 184","title":"Global Nature/Global Culture (4)"},{"dept":"VIS","description":"This course investigates the multiple realities of art and visual culture in twentieth-century China and explores the ways in which Chinese artists have defined modernity and their tradition against the complex background of China’s history. ","edges_from":[],"edges_to":[],"id":4657,"label":"VIS 127GS","title":"Issues in Modern and Contemporary Chinese Art (4)"},{"dept":"ANSC","description":"This course introduces students to the medical anthropology of South Asia. This course will be divided into two parts. First, we will analyze how religious, cultural, political, and economic structures impact health and well-being. Second, we will look at ethnomedicine, that is, how local systems of healing provide alternative ideas of illness and health. Program or materials fees may apply. ","edges_from":[160,161,162,164,165,1928,4659,4660,1210],"edges_to":[],"id":4658,"label":"ANSC 190GS","title":"Medicine and Healing in South Asia (4)"},{"dept":"ANSC","description":"","edges_from":[],"edges_to":[4658],"id":4659,"label":"ANSC 146","title":""},{"dept":"ANSC","description":"","edges_from":[],"edges_to":[4658],"id":4660,"label":"ANSC 147","title":""},{"dept":"BILD","description":"This course will examine diversity, equity, and inclusion beginning with a biological framework. Focus will be on how underlying biological differences have been used to support bias and prejudice against particular groups such as women, African Americans, and Latinos. This course is approved to meet the campus Diversity, Equity, and Inclusion (DEI) requirement. ","edges_from":[1424,954,1013],"edges_to":[],"id":4661,"label":"BILD 60","title":"Exploring Issues of Diversity, Equity, and Inclusion in Relation to Human Biology (4)"},{"dept":"MATH","description":"Fourier series, orthogonal expansions, and eigenvalue problems.","edges_from":[],"edges_to":[],"id":4662,"label":"MATH 110A","title":"Introduction to Partial Differential Equations (4)"},{"dept":"MATH","description":"Equations (4)","edges_from":[],"edges_to":[],"id":4663,"label":"MATH 110B","title":"Elements of Partial Differential Equations and Integral"},{"dept":"LTEA","description":"Research seminars and research, under the direction of a faculty member. May be taken up to three times for credit. (P/NP grades only)","edges_from":[],"edges_to":[],"id":4664,"label":"LTEA 198","title":"Directed Group Study (4)"},{"dept":"LTEA","description":"Tutorial; individual guided reading in areas not normally covered in courses. (P/NP grades only.)","edges_from":[],"edges_to":[],"id":4665,"label":"LTEA 199","title":"Special Studies (2 or 4)"},{"dept":"MGT","description":"Covers cost accumulation and analysis, for both manufacturing","edges_from":[],"edges_to":[],"id":4666,"label":"MGT 133","title":"Advanced Cost Accounting (4)"},{"dept":"MGT","description":"Covers the theory and practical","edges_from":[],"edges_to":[],"id":4667,"label":"MGT 135","title":"Federal Taxation—Companies (4)"},{"dept":"MGT","description":"Covers theory and practical application of federal income","edges_from":[],"edges_to":[],"id":4668,"label":"MGT 134","title":"Federal Taxation—Individuals (4)"},{"dept":"MGT","description":"Develop an understanding of transaction cycles (e.g., sales order and purchase order processing) with a focus on processing steps, internal controls, and data used. Gain hands-on experience developing flowcharts, processing transactions in a manual accounting information system, and analyzing transaction data using Microsoft Excel and other tools. ","edges_from":[2061],"edges_to":[],"id":4669,"label":"MGT 139","title":"Accounting Information Systems (4)"},{"dept":"LTGM","description":"The development of major forms and modes of German literary prose. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4670,"label":"LTGM 130","title":"German Literary Prose (4)"},{"dept":"LTGM","description":"The development of major forms and modes of German verse. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4671,"label":"LTGM 132","title":"German Poetry (4)"},{"dept":"LTGM","description":"A survey of German cinema from the late 1960s to the early 1980s. Focus on films by such directors as Fassbinder, Herzog, Kluge, Schlӧndorff, von Trotta, and Wenders viewed in historical and cultural context. May be taken credit three times when topics vary.","edges_from":[],"edges_to":[],"id":4672,"label":"LTGM 134","title":"New German Cinema (4)"},{"dept":"TDHT","description":"Experience firsthand New York history as a performing arts cultural capital. In addition to studying New York performance history and literature, attend performances accompanied by lecture/discussion. Get backstage tours, meet important players, and learn how productions go from vision to reality. Program or materials fees may apply. Contact the Department of Theatre and Dance for application for TDHT 190. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":4673,"label":"TDHT 190","title":"The New York Theatre and Dance Scene (4)"},{"dept":"GPPS","description":"This course examines the political economy of energy in Asia across a number of key themes, including the interaction between the economics and politics of energy markets, the search for energy security through cooperation and competition, the challenges of managing difficult energy policy choices and trade-offs, and the challenges of sustainable energy development. Emphasis will be placed on the oil industry and its pivotal role in global energy use, pricing, and geopolitics. Renumbered from IRGN 473. Students may not receive credit for GPPS 473 and IRGN 473.","edges_from":[],"edges_to":[],"id":4674,"label":"GPPS 473","title":"Political Economy of Energy in Asia (4)"},{"dept":"GPPS","description":"This course involves intense engagement with original Chinese sources as a way to explore the evolution of the Chinese Communist Party and the contemporary Chinese economy. Students will be exposed to government, media, and statistical sources. Recommended preparation: At least second-year, college-level proficiency in Mandarin Chinese is expected. Renumbered from IRGN 476. Students may not receive credit for GPPS 476 and IRGN 476.","edges_from":[],"edges_to":[],"id":4675,"label":"GPPS 476","title":"Chinese Sources and Methods (4)"},{"dept":"GPPS","description":"Overview of Latin American politics and the “rules of the game,” both formal and informal. Key topics include military rule, presidentialism, and clientelism in the region as a whole, with special emphasis on Argentina, Brazil, Chile, and Mexico. Renumbered from IRGN 479. Students may not receive credit for GPPS 479 and IRGN 479.","edges_from":[],"edges_to":[],"id":4676,"label":"GPPS 479","title":"Politics and Institutions in Latin America (4)"},{"dept":"GPPS","description":"Examines the domestic and strategic sources of Japan’s foreign policy in the postwar era. Unlike IRGN 460, this course emphasizes Japan’s foreign economic policy in regional and global multilateral organizations, and the major security issues it confronts with its Asian neighbors. Renumbered from IRGN 478. Students may not receive credit for GPPS 478 and IRGN 478.","edges_from":[],"edges_to":[],"id":4677,"label":"GPPS 478","title":"Japanese Foreign Policy (4)"},{"dept":"LTEN","description":"New American Fiction—Post-World War II to the Present (4)","edges_from":[],"edges_to":[],"id":4678,"label":"LTEN 175A","title":""},{"dept":"LTEN","description":"New American Poetry—Post-World War II to the Present (4)","edges_from":[],"edges_to":[],"id":4679,"label":"LTEN 175B","title":""},{"dept":"CHEM","description":"Classical kinetics, transition state theory, unimolecular decomposition,","edges_from":[],"edges_to":[],"id":4680,"label":"CHEM 231","title":"Chemical Kinetics and Molecular Reaction Dynamics (4)"},{"dept":"VIS","description":"This course will explore the path of the deliberately “unreal” in movies. Fantasy in film will be considered both in terms of its psychological manifestations and also in terms of imaginary worlds created in such willfully antirealistic genres as science fiction, horror, and musical films. Offered in Summer Session only. Program or materials fees may apply. May be taken for credit three times. ","edges_from":[1657],"edges_to":[],"id":4681,"label":"VIS 194S","title":"Fantasy in Film (4)"},{"dept":"CSE","description":"to Synthesis Methodologies in VLSI CAD (4)","edges_from":[],"edges_to":[],"id":4682,"label":"CSE 243A","title":"Introduction"},{"dept":"POLI","description":"This seminar is an examination of the different approaches to the study of American politics. Issues and research areas will vary each time the course is offered. ","edges_from":[],"edges_to":[],"id":4683,"label":"POLI 259","title":"Special Topics in American Politics (4)"},{"dept":"POLI","description":"This course is designed to acquaint graduate students with the central themes and issues in the study of voting in national elections. ","edges_from":[],"edges_to":[],"id":4684,"label":"POLI 257","title":"Voting and Elections (4)"},{"dept":"MATH","description":"Group actions, factor groups, polynomial rings, linear algebra, rational and Jordan canonical forms, unitary and Hermitian matrices, Sylow theorems, finitely generated abelian groups, unique factorization, Galois theory, solvability by radicals, Hilbert Basis Theorem, Hilbert Nullstellensatz, Jacobson radical, semisimple Artinian rings. ","edges_from":[],"edges_to":[],"id":4685,"label":"MATH 200A-B-C","title":"Algebra (4-4-4)"},{"dept":"POLI","description":"Examines central works on the development of political institutions in US cities; analyses of community power structures; who governs, why, and to what ends; processes and prospects for minority empowerment; the prominence of “growth machines”; the political economy of contemporary cities. ","edges_from":[],"edges_to":[],"id":4686,"label":"POLI 255","title":"Urban Politics (4)"},{"dept":"POLI","description":"This course examines the historical evolution of the American state with particular attention to theories of political development. Special topics include the development of the party system, electoral and policy realignments, and the evolution of national political institutions. ","edges_from":[],"edges_to":[],"id":4687,"label":"POLI 254","title":"American Political Development (4)"},{"dept":"POLI","description":"This seminar will survey the existing literature in state politics with an eye toward proposing new research designs. Topics will include the variation across states in electoral systems, campaign finance laws, political culture, legislative institutions, judicial arrangements, and policy outcomes. ","edges_from":[],"edges_to":[],"id":4688,"label":"POLI 253","title":"Research in State Politics (4)"},{"dept":"POLI","description":"Theoretical and empirical perspectives on voting and other forms of political participation, parties, interest groups, and public opinion in the United States. ","edges_from":[],"edges_to":[],"id":4689,"label":"POLI 252","title":"American Politics: Behavior (4)"},{"dept":"POLI","description":"A critical examination of major contributions to the theoretical and empirical literature on the US Congress, presidency, and federal bureaucracy. ","edges_from":[],"edges_to":[],"id":4690,"label":"POLI 251","title":"American Political Institutions (4)"},{"dept":"FPM","description":"An introduction to the history and epidemiology of work-related disease. A review of occupational-related health problems, i.e., heart disease, pneumoconiosis, peripheral neuropathy, sterility, birth defects, psychiatric problems. Emphasis on the occupational history in the diagnosis of job-related disease and disability. Major modalities of prevention and control will be presented and the role of health practitioners, government, management and labor will be reviewed. The course will include guest lecturers, films, videotapes and field visits to local industries and/or clinicians treating occupational diseases. ","edges_from":[4692],"edges_to":[],"id":4691,"label":"FPM 246","title":"Occupational/Environmental Health (2)"},{"dept":"SM","description":"","edges_from":[],"edges_to":[4691],"id":4692,"label":"SM 208","title":""},{"dept":"FPM","description":"This seminar is designed to expand the student’s understanding of clinical epidemiology by investigating several major controversial issues, such as treatment of breast cancer, oral hypoglycemic in diabetes, and dietary habits as a risk factor for coronary artery disease. The seminar will address clinical and methodological issues in the epidemiology of various chronic diseases.","edges_from":[],"edges_to":[],"id":4693,"label":"FPM 247","title":"Clinical Epidemiology Seminar (2)"},{"dept":"FPM","description":"(Cross-listed with MED 248) Integrated clinical and public health experience with US and Mexican graduate student and faculty teams over three to four days in Baja California, Mexico; emphasis on common clinical and public health problems in underserved populations. Minimal working knowledge of Spanish recommended. May be taken for credit four times. ","edges_from":[],"edges_to":[],"id":4694,"label":"FPM 244","title":"Clinical and Public Health Elective, Baja California, Mexico (2)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ","edges_from":[],"edges_to":[],"id":4695,"label":"Linguistics/Heritage Languages (LIHL) 139W","title":"Advanced Hindi for Hindi Speakers (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ","edges_from":[],"edges_to":[],"id":4696,"label":"Linguistics/Heritage Languages (LIHL) 139P","title":"Advanced Hindi for Hindi Speakers (4)"},{"dept":"COGR","description":"History, politics, social organization, and ideology of the American news media. Special attention will be paid to: historical origins of journalism as a profession and “objective reporting” as ideology; empirical studies of print and TV journalism as social institutions; and news coverage of Vietnam and its implications for theories of the news media.","edges_from":[],"edges_to":[],"id":4697,"label":"COGR 220","title":"The News Media (4)"},{"dept":"COGR","description":"This course examines the legal and policy framework for free speech in the United States. We cover First Amendment case law, free speech theory, copyright, and the different legal and regulatory treatment historically accorded print, broadcasting, cable television, telephone, and Internet. ","edges_from":[],"edges_to":[],"id":4698,"label":"COGR 223","title":"Communication Law and Policy (4)"},{"dept":"Soc/G","description":"Advanced Approaches to Science Studies (4)","edges_from":[],"edges_to":[],"id":4699,"label":"Soc/G 255D","title":""},{"dept":"Soc/G","description":"(Same as Phil 209C, HIGR 240, and COGR 225C.) A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required of all students in the Science Studies Program. ","edges_from":[],"edges_to":[],"id":4700,"label":"Soc/G 255C","title":"Colloquium in Science Studies (4)"},{"dept":"Soc/G","description":"(Same as Phil 209B, HIGR 239, and COGR 225B.) Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. ","edges_from":[],"edges_to":[],"id":4701,"label":"Soc/G 255B","title":"Seminar in Science Studies (4)"},{"dept":"Soc/G","description":"(Same as Phil 209A, HIGR 238, and COGR 225A.) Study and discussion of classic work in history of science, sociology of science, and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ","edges_from":[],"edges_to":[],"id":4702,"label":"Soc/G 255A","title":"Introduction to Science Studies (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ","edges_from":[],"edges_to":[],"id":4703,"label":"Linguistics/Heritage Languages (LIHL) 139F","title":"Advanced Hindi for Hindi Speakers (4)"},{"dept":"LTEU","description":"An introduction to Russia’s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present.","edges_from":[],"edges_to":[],"id":4704,"label":"LTEU 154","title":"Russian Culture (4)"},{"dept":"MATS","description":"Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment, material-processing-microstructure interaction, materials selection, form and quality control. Extrusion, injection molding, blow molding, compression molding, thermoforming, casting, foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. (Cross-listed with SE 251A.) ","edges_from":[],"edges_to":[],"id":4705,"label":"MATS 261A","title":"Processing of Polymers and Composites (4)"},{"dept":"MATS","description":"Material-science oriented course on polymers and composites. Mechanical properties of polymers; micromechanisms of elastic and plastic deformations, fracture, and fatigue of polymers and composites. (Cross-listed with SE 251B.) ","edges_from":[],"edges_to":[],"id":4706,"label":"MATS 261B","title":"Mechanical Behavior of Polymers and Composites (4)"},{"dept":"SOCI","description":"Methods for interpreting diaries, letters, and testaments written by victims and perpetrators of the Holocaust. Students use these sources for original research about life in hiding, ghettos, and death camps. Includes techniques for making comparisons and for generalizing from evidence. ","edges_from":[2979,4708,4707,591],"edges_to":[4707],"id":4707,"label":"SOCI 106M","title":"Holocaust Diaries (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[4707],"id":4708,"label":"SOCA 106M","title":""},{"dept":"PSYC","description":"This seminar provides a selective overview of the scientific study of emotion. We will discuss various theoretical perspectives on emotion and will focus on specific topics such as emotion regulation, affect in social interactions, individual differences, and particular emotions (e.g., embarrassment, envy, and jealousy). ","edges_from":[],"edges_to":[],"id":4709,"label":"PSYC 205","title":"Emotion (4)"},{"dept":"COMM","description":"This course examines the ways in which various communicative channels mediate human action and thought. A basic premise of the course is that human thought is shaped in important ways by the communicative devices used to communicate. There is a particular emphasis on how thought develops, both historically and in the individual. ","edges_from":[540],"edges_to":[],"id":4710,"label":"COMM 110T","title":"LLC: Language, Thought, and Media (4)"},{"dept":"HIUS","description":"Examines key periods, events, and processes throughout the twentieth century that shaped the way Americans thought about race. Also examines the historical development of the category of race and racism, as well as how it is lived in everyday life.","edges_from":[],"edges_to":[],"id":4711,"label":"HIUS 126","title":"The History of Race in the United States (4)"},{"dept":"ETHN","description":"Independent study to complete an honors thesis under the supervision of a faculty member who serves as thesis adviser. ","edges_from":[3320,628,3319],"edges_to":[],"id":4712,"label":"ETHN 196H","title":"Honors Thesis (4)"},{"dept":"LATI","description":"Introductory survey of methods used by social and health scientists to gather primary research data on international migrant and refugee populations, including sample surveys, unstructured interviewing, and ethnographic observation. Basic fieldwork practices, ethics, and problem-solving techniques will also be covered. Students may not receive credit for both SOCI 122A and LATI 122A. Recommended: advanced competency in conversational Spanish. ","edges_from":[],"edges_to":[5789],"id":4713,"label":"LATI 122A","title":"Field Research Methods for Migration Studies: Seminar (4)"},{"dept":"HIUS","description":"A lecture-discussion course utilizing written texts and films to explore major themes in American politics and culture from the Great Depression through the 1990s. Topics will include the wars of America, McCarthyism, the counter-culture of the 1960s, and the transformation of race and gender relations.","edges_from":[],"edges_to":[],"id":4714,"label":"HIUS 122","title":"History and Hollywood: America and the Movies since the Great Depression (4)"},{"dept":"HIUS","description":"Topics will include Quaker origins of the American peace movements and examples of opposition to wars in the twentieth century from World Wars I and II, Vietnam, anti-nuclear movements, and intervention in Central America to Iraq.","edges_from":[],"edges_to":[],"id":4715,"label":"HIUS 120","title":"Peace Movements in America (4)"},{"dept":"LTWR","description":"Hybrid workshop offering writing students a working knowledge of literary theory while exposing literature students to practical techniques from poetry, fiction, and nonfiction to refresh their writing of theoretical nonfiction texts. Discussion of student work and published work. ","edges_from":[],"edges_to":[],"id":4716,"label":"LTWR 148","title":"Theory for Writers/Writing for Theory (4)"},{"dept":"HIUS","description":"This course sketches the shifting experience persons of African descent have had with the law in the United States. Films, cases, articles, and book excerpts are used to convey the complex nature of this four-hundred-year journey.","edges_from":[],"edges_to":[],"id":4717,"label":"HIUS 128","title":"African American Legal History (4)"},{"dept":"LTKO","description":"in Korean Literature and Culture (4)","edges_from":[],"edges_to":[],"id":4718,"label":"LTKO 100","title":"Readings"},{"dept":"CHIN","description":"Further continuation course of basic","edges_from":[],"edges_to":[],"id":4719,"label":"CHIN 10CD","title":"First Year Chinese—Dialect speakers III (5)"},{"dept":"CHIN","description":"Continuation course of basic Chinese","edges_from":[],"edges_to":[],"id":4720,"label":"CHIN 10CN","title":"First Year Chinese—Non-native speakers III (5)"},{"dept":"CHIN","description":"Further continuation course of basic","edges_from":[],"edges_to":[],"id":4721,"label":"CHIN 10CM","title":"First Year Chinese—Mandarin speakers III (5)"},{"dept":"MGT","description":"Students will use latest research in management, marketing, finance, strategy, and operations to analyze current business problems posed by real companies and will recommend to senior management strategies that resolve the problem(s) presented in the project. Students may not earn credit for both MGT464 and MGT224. Students may not receive credit for both MGT 224 and MGT 221 Topics in Innovation with the course subtitle Projects in Business Innovation. ","edges_from":[],"edges_to":[],"id":4722,"label":"MGT 464","title":"Projects in Business Innovation (4)"},{"dept":"MGT","description":"This elective engages students in the process of commercializing technology through experiential learning. Students will gain an increased understanding of commercialization, including introducing a new product into the market, customer development, and market selection. Students will be required to incorporate the latest research methods for identifying customers, analyzing markets, and developing strategies for market entry and growth. Lectures and a student group project will be conducted. Students may not earn credit for both MGT 463 and MGT 223. Also, students may not receive credit for both MGT 463 and MGT 221 Topics in Innovation course with the subtitle Projects in Technology Commercialization. ","edges_from":[],"edges_to":[],"id":4723,"label":"MGT 463","title":"Projects in Technology Commercialization (4)"},{"dept":"CHEM","description":"With CHEM 130 and 131, CHEM 132 is part of the Physical Chemistry sequence taught over three quarters. Recommended as the third course of the sequence. Key topics covered in this course include chemical statistics, kinetic theory, and reaction kinetics. ","edges_from":[444,445,3343],"edges_to":[5819],"id":4724,"label":"CHEM 132","title":"Chemical Physics: Stat Thermo II (4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in accounting. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not receive credit for both MGT 239 and MGT 469. ","edges_from":[],"edges_to":[],"id":4725,"label":"MGT 469","title":"Topics in Accounting (2 or 4)"},{"dept":"TDGE","description":"This course will use the theatrical context to integrate scientific research about creativity, group dynamics, and related topics. Through a mix of theoretical and experiential classes and assignments, we will explore the intersection of theatre and neuroscience, investigating and expanding the creative mind. ","edges_from":[],"edges_to":[],"id":4726,"label":"TDGE 3","title":"Cultivating the Creative Mind (4)"},{"dept":"CHEM","description":"Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena, and the density matrices. Instrumentation, measurement, and interpretation. May be coscheduled with CHEM 235. Prior or concurrent enrollment in CHEM 105A recommended. ","edges_from":[135,444,447,3343],"edges_to":[],"id":4727,"label":"CHEM 135","title":"Molecular Spectroscopy (4)"},{"dept":"CHEM","description":"Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine. Students may not receive credit for both CENG 134, CHEM 134, or NANO 134. ","edges_from":[30,215],"edges_to":[],"id":4728,"label":"CHEM 134","title":"Polymeric Materials (4)"},{"dept":"AWP","description":"This course will introduce critical thinking, reading, writing, speaking, and listening practices appropriate to college-level work. It will prepare students who may not be familiar with the learning expectations of American universities to fully join the academic conversation. Students may not receive credit for AWP 10 and LTWR 4.","edges_from":[],"edges_to":[],"id":4729,"label":"AWP 10","title":"Language and Learning in the American Academy (4)"},{"dept":"HIEA","description":"Selected topics in East Asian History. Course may be taken for credit up to three times as topics vary.","edges_from":[],"edges_to":[],"id":4730,"label":"HIEA 144","title":"Topics in East Asian History (4)"},{"dept":"HIEA","description":"Examines China’s attempts to manage the movements of people, ideas, and trade across its borders since 1900. How much control do individual countries such as China have over global processes? Special emphasis will be placed on global contexts and the impacts of China’s decision to reintegrate its society and economy with capitalist countries since 1978. Recommended preparation: previous course work on China helpful but not required.","edges_from":[],"edges_to":[],"id":4731,"label":"HIEA 140","title":"China since 1978 (4)"},{"dept":"MATH","description":"Various topics in topology. May be taken for credit nine times. ","edges_from":[],"edges_to":[],"id":4732,"label":"MATH 292","title":"Seminar in Topology (1)"},{"dept":"MATH","description":"An enrichment program that provides work experience with public/private sector employers and researchers. Under supervision of a faculty adviser, students provide mathematical consultation services. ","edges_from":[],"edges_to":[],"id":4733,"label":"MATH 297","title":"Mathematics Graduate Research Internship (2–4)"},{"dept":"MATH","description":"A variety of advanced topics and current research in mathematics will be presented by department faculty. (S/U grades only.) May be taken for credit six times. ","edges_from":[],"edges_to":[],"id":4734,"label":"MATH 296","title":"Graduate Student Colloquium (1)"},{"dept":"MATH","description":"A variety of topics and current research results in mathematics will be presented by staff members and students under faculty direction.","edges_from":[],"edges_to":[],"id":4735,"label":"MATH 295","title":"Special Topics in Mathematics (1 to 4)"},{"dept":"MATH","description":"Introduction to the mathematics of financial models. Hedging, pricing by arbitrage. Discrete and continuous stochastic models. Martingales. Brownian motion, stochastic calculus. Black-Scholes model, adaptations to dividend paying equities, currencies and coupon-paying bonds, interest rate market, foreign exchange models. ","edges_from":[1995],"edges_to":[],"id":4736,"label":"MATH 294","title":"The Mathematics of Finance (4)"},{"dept":"POLI","description":"This seminar explores debates over ideals, institutions, and identities in American political thought. Themes and topics will vary. Readings will include political pamphlets, philosophical treatises, court decisions, and works of literature. ","edges_from":[],"edges_to":[],"id":4737,"label":"POLI 110ED","title":"Seminar in American Political Thought (4)"},{"dept":"LHCO","description":"This course examines principles and applications of strategic management and the change management concepts necessary to effectively apply these principles in healthcare organizations. The course provides a structured, stepwise approach to the strategic management process and includes methods for assessing key features of organizational environments and competitive situations, approaches for developing strategic plans, and processes for insuring the successful implementation of strategy. ","edges_from":[],"edges_to":[],"id":4738,"label":"LHCO 202","title":"Strategic Management and Organizational Change (4)"},{"dept":"LHCO","description":"and Managing Information and Information Technologies (4)","edges_from":[],"edges_to":[],"id":4739,"label":"LHCO 203","title":"Using"},{"dept":"LHCO","description":"This course studies key management concepts and roles of management and how they apply in successful, dynamic organizations. The course examines competencies of effective managers in developing customer focus, planning, selecting and developing individuals and teams, communicating, managing resources, using technology and being adaptable. Students will be exposed to the theory and process of effective negotiation as well as various teambuilding and conflict resolution strategies in a variety of contexts. ","edges_from":[],"edges_to":[],"id":4740,"label":"LHCO 204","title":"Conflict Resolution, Negotiation, and Team Building (2)"},{"dept":"POLI","description":"Political Thought: Contemporary Debates (4)","edges_from":[],"edges_to":[],"id":4741,"label":"POLI 110EC","title":"American"},{"dept":"POLI","description":"Political Thought from Civil War to Civil Rights (4)","edges_from":[],"edges_to":[],"id":4742,"label":"POLI 110EB","title":"American"},{"dept":"LHCO","description":"A critical overview of the tools used to measure outcomes and quality of care, development and use of practical guidelines, advantages and disadvantages of various methods, and the use of such analysis in administrative decision making.\t\t\t\t","edges_from":[],"edges_to":[],"id":4743,"label":"LHCO 209","title":"Outcomes and Quality Improvement (4)"},{"dept":"PHIL","description":"This course meets regularly to discuss primary or secondary literature in the area of German philosophy (including Kant, Fichte, Hegel, etc.). The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Nongraduate students may enroll with consent of instructor. S/U grades only. May be taken for credit nine times with changed content.","edges_from":[],"edges_to":[],"id":4744,"label":"PHIL 275","title":"German Philosophy Reading Group (1–2)"},{"dept":"PHIL","description":"This course meets weekly to provide training in reading and translating philosophical German. Students prepare in advance written translations of assigned passages. The course helps train graduate students preparing to take the Departmental German Exam. Can be taken nine times for credit with changed content.","edges_from":[],"edges_to":[],"id":4745,"label":"PHIL 276","title":"German Translation Workshop (1–2)"},{"dept":"PHIL","description":"This course meets biweekly with students reading and presenting material from the phenomenological literature. The course is designed both for students doing active research in phenomenology and for those seeking to gain some familiarity with that tradition. Can be taken nine times for credit with changed content.","edges_from":[],"edges_to":[],"id":4746,"label":"PHIL 277","title":"Phenomenology Reading Group (1–2)"},{"dept":"PHIL","description":"Methods in Contemporary Philosophy (1–2)","edges_from":[],"edges_to":[],"id":4747,"label":"PHIL 278","title":"Topics and"},{"dept":"POLI","description":"An examination of some of the ideas and values","edges_from":[],"edges_to":[],"id":4748,"label":"POLI 110T","title":"Modern Political Ideologies (4)"},{"dept":"FPM","description":"This third quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or II). ","edges_from":[3906],"edges_to":[],"id":4749,"label":"FPM 258C","title":"Public Health Doctoral Lecture Series III (2)"},{"dept":"MAE","description":"Provides field study in industry with faculty supervision. Analysis and problem solving using real world applications. ","edges_from":[],"edges_to":[],"id":4750,"label":"MAE 295","title":"Field Study (1–12)"},{"dept":"CHEM","description":"This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 214. ","edges_from":[2056,1865,458],"edges_to":[],"id":4751,"label":"CHEM 114D","title":"Molecular and Cellular Biochemistry (4)"},{"dept":"MAE","description":"Independent reading or research on a problem as arranged by a designated faculty member. Must be taken for a letter grade only. ","edges_from":[],"edges_to":[],"id":4752,"label":"MAE 296","title":"Independent Study (1–4)"},{"dept":"MAE","description":"Intersection of control theory and fluid mechanics. Applications: transition delay, turbulence mitigation, noise reduction, weather forecasting, shape optimization, and UAV’s (perching). Tractable feedback (Riccati-based) formulations via parallel and parabolic flow assumptions. Regularization of variational (adjoint-based) formulations for MPC and MHE. EnKF and EnVE approaches for forecasting. ","edges_from":[1535],"edges_to":[],"id":4753,"label":"MAE 293","title":"Flow Control (4)"},{"dept":"ECE","description":"Basic physics and chemistry for the interaction of photons with matter, including both biological and synthetic materials; use of photonic radiation pressure for manipulation of objects and materials; advanced optoelectronic detection systems, devices and methods, including time resolved fluorescent and chemiluminescent methods, fluorescent energy transfer (FRET) techniques, quantum dots, and near-field optical techniques; underlying mechanisms of the light sensitive biological systems, including chloroplasts for photosynthetic energy conversion and the basis of vision processes. Cross-listed with BENG 247A and NANO 247A. ","edges_from":[],"edges_to":[],"id":4754,"label":"ECE 247A","title":"Advanced BioPhotonics (4)"},{"dept":"ECE","description":"Topics to be covered will include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology used in microarrays and biosensor devices, and focus on problems related to making highly integrated devices (lab-on-a-chip, in-vivo biosensors, etc.) from heterogeneous materials and components. Cross-listed with BENG 247B and NANO 247B. ","edges_from":[],"edges_to":[],"id":4755,"label":"ECE 247B","title":"BioElectronics (4)"},{"dept":"ECE","description":"Topics include: nanosensors and nanodevices for both clinical diagnostics and biowarfare (bioterror) agent detection; nanostructures for drug delivery; nanoarrays and nanodevices; use of nanoanalytical devices and systems; methods and techniques for modification or functionalization of nanoparticles and nanostructures with biological molecules; nanostructural aspects of fuel cells and bio-fuel cells; potential use of DNA and other biomolecules for computing and ultra-high-density data storage. Cross-listed with BENG 247C and NANO 247C. ","edges_from":[],"edges_to":[],"id":4756,"label":"ECE 247C","title":"BioNanotechnology (4)"},{"dept":"Revelle","description":"Weekly seminars with a faculty member for Revelle undergraduates interested in the science of mindfulness and how to use it for stress management, interpersonal skills, performance improvement, and to increase the sense of well-being. ","edges_from":[],"edges_to":[],"id":4757,"label":"Revelle 12","title":"Practicing the Science of Mindfulness (1)"},{"dept":"MGT","description":"Provides hands-on experience in venture investing. Direct involvement in all stages of managing the Rady Venture Fund, including sourcing applicants, performing initial analysis, due diligence, investment negotiation, monitoring of the portfolio. Students have substantial input into fund investment decisions. Students may not earn credit for both MGT 496B and MGT 289B. They are course equivalents. S/U grades only. ","edges_from":[972],"edges_to":[],"id":4758,"label":"MGT 496B","title":"Venture Capital Management II (2)"},{"dept":"CHIN","description":"Continuation of CHIN 165B. Basic training in oral and written communication skills for business, including introduction to modern business terminology and social conventions. ","edges_from":[4760],"edges_to":[],"id":4759,"label":"CHIN 165C","title":"Business Chinese (4)"},{"dept":"CHIN","description":"","edges_from":[4761],"edges_to":[4759],"id":4760,"label":"CHIN 165B","title":""},{"dept":"CHIN","description":"","edges_from":[],"edges_to":[4760],"id":4761,"label":"CHIN 165A","title":""},{"dept":"HINE","description":"Explore the ancient sources for the life of Jesus. Students will learn about various modern approaches to reconstructing the historical Jesus and will examine the difficulties inherent in such a task.","edges_from":[],"edges_to":[],"id":4762,"label":"HINE 110","title":"Jesus, the Gospels, and History (4)"},{"dept":"BENG","description":"Design Implementation in Biomechanics (3)","edges_from":[],"edges_to":[68],"id":4763,"label":"BENG 119B","title":""},{"dept":"BENG","description":"Development of design project in biomechanics. ","edges_from":[66],"edges_to":[],"id":4764,"label":"BENG 119A","title":"Design Development in Biomechanics (3)"},{"dept":"BIEB","description":"A laboratory course introducing students to coastal marine ecology. Students will participate in outdoor fieldwork and work in the laboratory gathering and analyzing ecological data. We will focus on ecological communities from a variety of coastal habitats and use them to learn about basic ecological processes as well as issues related to sustainability and conservation of biodiversity. Fieldwork is expected in this course. Associated travel in the San Diego area is required and students are responsible for their own transportation. Material lab fees will apply. ","edges_from":[1424,3624,1389],"edges_to":[],"id":4765,"label":"BIEB 131","title":"Marine Invertebrate Ecology Lab (4)"},{"dept":"HIEU","description":"This seminar addresses Jewish civic autonomy in the late medieval era, the terms of emancipation in the European states, the politics of Jewish socialists, the costs of assimilation, and the consequences of a successful Zionist state in 1948. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ","edges_from":[],"edges_to":[],"id":4766,"label":"HIEU 176/276","title":"Politics in the Jewish Past (4)"},{"dept":"ECE","description":"Automated laboratory based on H-P GPIB controlled","edges_from":[],"edges_to":[],"id":4767,"label":"ECE 145AL-BL-CL","title":"Acoustics Laboratory (4-4-4)"},{"dept":"MATH","description":"Random vectors, multivariate densities, covariance matrix, multivariate","edges_from":[],"edges_to":[],"id":4768,"label":"MATH 180B","title":"Introduction to Stochastic Processes I (4)"},{"dept":"MATH","description":"Markov chains in discrete and continuous time, random walk, recurrent events. If time permits, topics chosen from stationary normal processes, branching processes, queuing theory. ","edges_from":[],"edges_to":[],"id":4769,"label":"MATH 180C","title":"Introduction to Stochastic Processes II (4)"},{"dept":"PSYC","description":"A biweekly seminar series focusing on recent advances in both basic and applied research in social psychology including topics such as interpersonal relationships, emotion, health, social cognition, judgment, and decision making. May be taken for credit twenty-four times. S/U grades only. ","edges_from":[],"edges_to":[],"id":4770,"label":"PSYC 274","title":"Current Directions in Social Psychology (1)"},{"dept":"PSYC","description":"A weekly seminar series focused on understanding recent advances in any area of cognitive psychology. May be taken for credit twenty-four times. S/U grades only. ","edges_from":[],"edges_to":[],"id":4771,"label":"PSYC 275","title":"Current Directions in Cognitive Psychology (1)"},{"dept":"AUD","description":"Clinical evaluation of vestibular function, using techniques such as caloric and rotational electronystagmography and posturography. The interpretation of clinical findings and implications for rehabilitative strategies will be covered. The course will include observation of testing in otology clinic settings. ","edges_from":[],"edges_to":[],"id":4772,"label":"AUD 263","title":"Physiological and Behavioral Tests of Vestibular Function (4)"},{"dept":"AUD","description":"Embryology and functional development of the auditory and vestibular systems, from their initial appearance to adult function. Inherited disorders of these two sensory systems are also addressed, including phenotypic description and genetic basis. Genetic counseling and the potential for gene therapy are also discussed. ","edges_from":[],"edges_to":[],"id":4773,"label":"AUD 264","title":"Auditory and Vestibular Development and Genetics (3)"},{"dept":"SE","description":"253C. Mechanics of Laminated Anisotropy Plates and Shells (4)","edges_from":[],"edges_to":[],"id":4774,"label":"SE","title":""},{"dept":"HINE","description":"This course introduces the students to contemporary Israeli society. Among the topics explored: Israeli-Arab conflict; relations between European, Arab, Russian, and Ethiopian Jews; between secular and religious Jews; between Jews and Arabs; and between Israel and World Jewry.","edges_from":[],"edges_to":[],"id":4775,"label":"HINE 135GS","title":"Introduction to Contemporary Israeli Society and Culture (4)"},{"dept":"ECON","description":"An examination of recent research in economic theory, including topics in general equilibrium, welfare economics, duality, and social choice; development of related research topics by both graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ","edges_from":[1795],"edges_to":[],"id":4776,"label":"ECON 202A-B-C","title":"Workshop in Economic Theory (0–4/0–4/0–4)"},{"dept":"PSYC","description":"This seminar will span the study of learning and memory from an interdisciplinary neuroscience perspective: the goal will be to gain a broad perspective on memory. The course will also touch on dysfunctions of learning and memory such as in amnesia, mental retardation, aging, and Alzheimer’s disease. The course will end with exciting developments in the field, including the possibility of genetic and pharmacological enhancement of memory and intelligence. ","edges_from":[],"edges_to":[],"id":4777,"label":"PSYC 271","title":"Neurobiology of Learning and Memory (4)"},{"dept":"LATI","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":4778,"label":"LATI 87","title":"Freshman Seminar (1)"},{"dept":"PHYS","description":"This course, designed for graduate students, includes discussion of teaching, techniques and materials necessary to teach physics courses. One meeting per week with course instructors, one meeting per week in an assigned recitation section, problem session, or laboratory section. Students are required to take a total of two units of Physics 500.","edges_from":[],"edges_to":[],"id":4779,"label":"PHYS 500","title":"Instruction in Physics Teaching (1–4)"},{"dept":"HITO","description":"The Cold War is often understood as a superpower rivalry between the U.S. and the Soviet Union. Yet, the second half of the twentieth century witnessed civil wars, revolutions, decolonization movements, and state violence throughout the world that do not fit in this bipolar framework. Focusing on these other events, this course reexamines the Cold War in global and comparative perspective, with a particular focus on political developments in Asia, Africa, and Latin America.","edges_from":[],"edges_to":[],"id":4780,"label":"HITO 115/115GS","title":"The Global Cold War (4)"},{"dept":"BENG","description":"","edges_from":[],"edges_to":[],"id":4781,"label":"BENG 296","title":"Independent Study (4)"},{"dept":"NANO","description":"","edges_from":[],"edges_to":[2707,5335],"id":4782,"label":"NANO 148","title":""},{"dept":"CSE","description":"Introduction to algorithms and top-down problem solving. Introduction to the C language, including functions, arrays, and standard libraries. Basic skills for using a PC graphical user interface operating system environment. File maintenance utilities are covered. A student may not receive credit for CSE 5A after receiving credit for CSE 11 or CSE 8B. Recommended preparation: A familiarity with high school-level algebra is expected, but this course assumes no prior programming knowledge. ","edges_from":[],"edges_to":[],"id":4783,"label":"CSE 5A","title":"Introduction to Programming I (4)"},{"dept":"NANO","description":"Basic principles of synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 166. ","edges_from":[],"edges_to":[],"id":4784,"label":"NANO 156","title":"Nanomaterials (4)"},{"dept":"JAPN","description":"Training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ","edges_from":[4786],"edges_to":[4788],"id":4785,"label":"JAPN 135A","title":"Japanese for Professional Purposes (4)"},{"dept":"JAPN","description":"","edges_from":[],"edges_to":[4785],"id":4786,"label":"JAPN 20C","title":""},{"dept":"JAPN","description":"Continuation of training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ","edges_from":[4788],"edges_to":[],"id":4787,"label":"JAPN 135C","title":"Japanese for Professional Purposes III (4)"},{"dept":"JAPN","description":"","edges_from":[4785],"edges_to":[4787],"id":4788,"label":"JAPN 135B","title":""},{"dept":"VIS","description":"Examines human interface as it informs or transforms how we read and participate in culture at large. Concepts such as subject/author/object relationships, abstraction, metaphor, analogy, visualization, and complexity are discussed to establish context.","edges_from":[],"edges_to":[],"id":4789,"label":"VIS 215","title":"Human Interface (4)"},{"dept":"VIS","description":"An investigation of the world of artifacts (“works of art” and others) and how they function as agents of communication and modifiers of consciousness. Contemporary perspectives drawn from the fields of art theory, anthropology, contemporary art, and semiotics will be utilized.","edges_from":[],"edges_to":[],"id":4790,"label":"VIS 216","title":"The Object (4)"},{"dept":"VIS","description":"A critical examination of the practices of self-defined communities (e.g., Bauhaus, Shaker, surrealists), which have attempted to change the social and spiritual quality of life by aesthetic means and of communities and subcultures defined by other means.","edges_from":[],"edges_to":[],"id":4791,"label":"VIS 217","title":"Communities and Subcultures (4)"},{"dept":"VIS","description":"This seminar addresses the space between narrative work generated from a factual base and that generated from a fictional one. Special attention will be given to discussing work that confounds the assumed gap between the two.","edges_from":[],"edges_to":[],"id":4792,"label":"VIS 211","title":"Fact and Fiction (4)"},{"dept":"VIS","description":"This seminar will engage the space between personal and larger histories. How is one’s own past both intertwined with and determined by larger social histories?","edges_from":[],"edges_to":[],"id":4793,"label":"VIS 212","title":"History and Memory (4)"},{"dept":"VIS","description":"An exploration of what public space is and how it operates, with a view toward an expanded context for considering how public artwork can operate within it. Included are areas such as mass media, activism, community action, computer networks, ecology, and alternative forums.","edges_from":[],"edges_to":[],"id":4794,"label":"VIS 213","title":"Public Space (4)"},{"dept":"MATH","description":"Continued study on mathematical modeling in the physical and social sciences, using advanced techniques that will expand upon the topics selected and further the mathematical theory presented in Math 111A. ","edges_from":[4796],"edges_to":[],"id":4795,"label":"MATH 111B","title":"Mathematical Modeling II (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[4795],"id":4796,"label":"MATH 111A","title":""},{"dept":"TDGR","description":"Seminar will deal with dramatization and adaptation of literary texts for the purpose of theatrical production. The class will study some significant examples of such practice from the past and, subsequently, students will develop their own projects of dramatization, adaptation, or modernization of texts. ","edges_from":[],"edges_to":[],"id":4797,"label":"TDGR 258A","title":"Dramatization and Adaptation (4)"},{"dept":"VIS","description":"to the Art of the Americas or Africa and Oceania (4)","edges_from":[],"edges_to":[],"id":4798,"label":"VIS 21A","title":"Introduction"},{"dept":"VIS","description":"Survey of the major artistic trends of India, China, and Japan, taking a topical approach to important developments in artistic style and subject matter to highlight the art of specific cultures and religions. Students may not receive credit for VIS 21 and VIS 21B. ","edges_from":[],"edges_to":[],"id":4799,"label":"VIS 21B","title":"Introduction to Asian Art (4)"},{"dept":"COGR","description":"Introduction to Science Studies: Part 1 (4)","edges_from":[],"edges_to":[],"id":4800,"label":"COGR 225A","title":""},{"dept":"COGR","description":"A forum for the presentation and discussion of research in progress in science studies by graduate students, faculty, and visitors. Students must attend the colloquium series for their entire first and second years. They receive course credit in one quarter each year. ","edges_from":[],"edges_to":[],"id":4801,"label":"COGR 225C","title":"Colloquium in Science Studies (4)"},{"dept":"COGR","description":"Study and discussion of a selected topic in the science studies field with an emphasis on the development of research and writing skills. The topic varies from year to year. ","edges_from":[],"edges_to":[],"id":4802,"label":"COGR 225B","title":"Seminar in Science Studies (4)"},{"dept":"COGR","description":"Introduction to Science Studies Part II (4)","edges_from":[],"edges_to":[],"id":4803,"label":"COGR 225D","title":""},{"dept":"HIEU","description":"Selected topics in ancient Greek history. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":4804,"label":"HIEU 160","title":"Topics in Ancient Greek History (4)"},{"dept":"LIGN","description":"Teaching, Head Teaching Assistant (1–4)","edges_from":[],"edges_to":[],"id":4805,"label":"LIGN 509","title":"Apprentice"},{"dept":"LIGN","description":"Teaching of Language/Directed Study (1–4)","edges_from":[],"edges_to":[],"id":4806,"label":"LIGN 508","title":"Apprentice"},{"dept":"HINE","description":"Cross-listed with JUDA 130. This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. Students may not receive credit for both HINE 130 and JUDA 130. (Formerly known as JUDA 100A.) ","edges_from":[],"edges_to":[],"id":4807,"label":"HINE 130","title":"Introduction to the Old Testament: The Historical Books (4)"},{"dept":"HINE","description":"Cross-listed with JUDA 131. This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Students may not receive credit for both HINE 131 and JUDA 131. (Formerly known as JUDA 100B.) ","edges_from":[],"edges_to":[],"id":4808,"label":"HINE 131","title":"Introduction to the Old Testament: The Poetic Books (4)"},{"dept":"LIGN","description":"Teaching of American Sign Language (1–4)","edges_from":[],"edges_to":[],"id":4809,"label":"LIGN 503","title":"Apprentice"},{"dept":"LIGN","description":"The course, designed for graduate students serving as teaching assistants in the department’s linguistics courses, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. The student must be serving as a teaching assistant in a LIGN course to receive credit.","edges_from":[],"edges_to":[],"id":4810,"label":"LIGN 502","title":"Apprentice Teaching of Linguistics (1–4)"},{"dept":"LIGN","description":"The course, designed for graduate students serving as teaching assistants in Spanish, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":4811,"label":"LIGN 507","title":"Apprentice Teaching of Spanish (1–4)"},{"dept":"LIGN","description":"The course, designed for graduate students serving as teaching assistants in Italian, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":4812,"label":"LIGN 506","title":"Apprentice Teaching of Italian (1–4)"},{"dept":"LIGN","description":"The course, designed for graduate students serving as teaching assistants in German, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":4813,"label":"LIGN 505","title":"Apprentice Teaching of German (1–4)"},{"dept":"LIGN","description":"The course, designed for graduate students serving as teaching assistants in French, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.","edges_from":[],"edges_to":[],"id":4814,"label":"LIGN 504","title":"Apprentice Teaching of French (1–4)"},{"dept":"SOCI","description":"This course studies the major forms of behavior seen as rule violations by large segments of our society and analyzes the major theories trying to explain them, as well as processes of rule making, rule enforcing, techniques of neutralization, stigmatization and status degradation, and rule change. ","edges_from":[4816,4815],"edges_to":[4815],"id":4815,"label":"SOCI 142","title":"Social Deviance (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[4815],"id":4816,"label":"SOCB 142","title":""},{"dept":"ETHN","description":"Decolonial Theory will focus on historical and contemporary intellectual work produced by activists from colonized regions of the world. This course will be international in scope, but attentive to local struggles.","edges_from":[],"edges_to":[],"id":4817,"label":"ETHN 163E","title":"Decolonial Theory (4)"},{"dept":"ECE","description":"Machine learning has received enormous interest. To learn from data we use probability theory, which has been a mainstay of statistics and engineering for centuries. The class will focus on implementations for physical problems. Topics: Gaussian probabilities, linear models for regression, linear models for classification, neural networks, kernel methods, support vector machines, graphical models, mixture models, sampling methods, and sequential estimation. ","edges_from":[],"edges_to":[],"id":4818,"label":"ECE 228","title":"Machine Learning for Physical Applications (4)"},{"dept":"ECE","description":"This course aims to present the mathematical and computational challenges for holistic content/algorithm/hardware codesign of an efficient deep learning framework. Participants will discuss selected topics including DNNs, CNNs, and RNNs in both supervised and unsupervised settings. Special emphasis will be on optimizing DL physical performance on different hardware platforms. The hardware platforms include CPU-CPU and CPU-GPU architectures. ","edges_from":[1443,2524,3159],"edges_to":[],"id":4819,"label":"ECE 226","title":"Optimization and Acceleration of Deep Learning on Various Hardware Platforms (4)"},{"dept":"ECE","description":"A course on network science driven by data analysis. The class will focus on both theoretical and empirical analysis performed on real data, including technological networks, social networks, information networks, biological networks, economic networks, and financial networks. Students will be exposed to a number of state-of-the-art software libraries for network data analysis and visualization via the Python notebook environment. Previous Python programming experience recommended. ","edges_from":[],"edges_to":[],"id":4820,"label":"ECE 227","title":"Big Network Data (4)"},{"dept":"Linguistics/Spanish","description":"Small conversation sections taught entirely in Spanish. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LISP 1DX. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ","edges_from":[2421,3133],"edges_to":[],"id":4821,"label":"Linguistics/Spanish (LISP) 1D","title":"Spanish Conversation (2.5)"},{"dept":"Jewish","description":"This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. ","edges_from":[],"edges_to":[],"id":4822,"label":"Jewish Studies 130","title":"Introduction to the Old Testament: The Historical Books (4)"},{"dept":"Linguistics/Spanish","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1BX. ","edges_from":[1746,1747],"edges_to":[],"id":4823,"label":"Linguistics/Spanish (LISP) 1B","title":"Spanish Conversation (2.5)"},{"dept":"Linguistics/Spanish","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1CX. ","edges_from":[1592,1591],"edges_to":[],"id":4824,"label":"Linguistics/Spanish (LISP) 1C","title":"Spanish Conversation (2.5)"},{"dept":"ECE","description":"The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. ","edges_from":[],"edges_to":[],"id":4825,"label":"ECE 221","title":"Magnetic Materials: Principles and Applications (4)"},{"dept":"FMPH","description":"This core public health course addresses the fundamentals of environmental and occupational health, including identification of hazards, basic toxicology, risk assessment, prevention/protection, and regulatory/control policies. Specific environmental and occupational hazards and relevant case studies will be presented. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 130. Students may not receive credit for FPMU 130 and FMPH 130. ","edges_from":[1027,1029],"edges_to":[],"id":4826,"label":"FMPH 130","title":"Environmental and Occupational Health (4)"},{"dept":"ANSC","description":"What is love? This course explores evolutionary, historical, philosophical, physiological, psychological, sociological, political-economic, and anthropological perspectives on love. We examine how love has evolved, study various aspects considered biological or cultural, and address contemporary debates around the nature and uses of love, including topics such as monogamy, arranged marriage, companionship, interracial relationships, and online dating. ","edges_from":[],"edges_to":[],"id":4827,"label":"ANSC 132","title":"Sex and Love (4)"},{"dept":"SIOB","description":"This course investigates global issues in marine conservation and potential policy solutions. The approach is interdisciplinary, fast-paced, and discussion-oriented. Students will become acquainted with sufficient background in marine biology, ecology, marine and conservation economics, international law and policy as preparation for participation in discussion on real-world issues in marine conservation. Topics and instructors change each quarter. ","edges_from":[],"edges_to":[5443],"id":4828,"label":"SIOB 286","title":"Marine Science, Economics, and Policy (4)"},{"dept":"BILD","description":"Course covers two important aspects: (1) interdisciplinary and research-based education and (2) teaching fundamental experimental and computational skills in quantitative studies of living systems. Participation by application only. Material lab fees will apply. ","edges_from":[],"edges_to":[],"id":4829,"label":"BILD 51","title":"Quantitative Biology Project Lab (4)"},{"dept":"ANSC","description":"The religious world of ordinary precommunist times, with some reference to major Chinese religious traditions. Recommended preparation: background in premodern Chinese history. ","edges_from":[],"edges_to":[],"id":4830,"label":"ANSC 137","title":"Chinese Popular Religion (4)"},{"dept":"MATS","description":"Thermally activated processes, Boltzmann factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick’s laws, diffusion mechanisms, Kirkendall effect, Boltzman-Matano analysis, high diffusivity paths. ","edges_from":[],"edges_to":[],"id":4831,"label":"MATS 201B","title":"Solid State Diffusion and Reaction Kinetics (4)"},{"dept":"ANSC","description":"Indigenous peoples in the Americas have long been dominated and exploited. They have also resisted and reworked the powerful forces affecting them. This course will trace this centuries-long contestation, focusing on ways anthropological representations have affected those struggles. ","edges_from":[],"edges_to":[],"id":4832,"label":"ANSC 135","title":"Indigenous Peoples of Latin America (4)"},{"dept":"COGS","description":"This course reviews research investigating the neural bases for human mental processes, including processing of affective, social, linguistic, and visuospatial information, as well as memory, attention, and executive functions. Also discussed are brain development and brain aging, and the nature of intelligence and creativity. ","edges_from":[4311],"edges_to":[1571],"id":4833,"label":"COGS 107C","title":"Cognitive Neuroscience (4)"},{"dept":"TDPW","description":"Basic principles of screenwriting using scenario composition, plot points, character study, story conflict, with emphasis on visual action and strong dramatic movement. May be taken for credit two times. ","edges_from":[1179],"edges_to":[],"id":4834,"label":"TDPW 104","title":"Screenwriting (4)"},{"dept":"TDPW","description":"Advanced workshop where students study the full-length play structure and begin work on a long play. Students present their work at various stags of development for group discussion and analysis. May be taken for credit two times. ","edges_from":[4836],"edges_to":[],"id":4835,"label":"TDPW 102","title":"Advanced Playwriting (4)"},{"dept":"TDPW","description":"","edges_from":[1179],"edges_to":[4835],"id":4836,"label":"TDPW 101","title":""},{"dept":"CSE","description":"Research. ","edges_from":[],"edges_to":[],"id":4837,"label":"CSE 299","title":"Research (1–16)"},{"dept":"CSE","description":"Open to properly qualified graduate students who wish to pursue a problem through advanced study under the direction of a member of the staff. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":4838,"label":"CSE 298","title":"Independent Study (1–16)"},{"dept":"BIEB","description":"Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the","edges_from":[],"edges_to":[],"id":4839,"label":"BIEB 194","title":"Advanced Topics in Modern Biology: Ecology, Behavior, Evolution (2)"},{"dept":"HITO","description":"A seminar intended for exposing undergraduate students, especially freshmen, to exciting research programs conducted by department faculty. Enrollment is limited. Topic will vary quarter by quarter.","edges_from":[],"edges_to":[],"id":4840,"label":"HITO 87","title":"Special Freshman Seminar (1)"},{"dept":"MGT","description":"Outlines frameworks and tools for formulating strategy to manage technology and think strategically in fast-moving industries (e.g., high tech, biotech, and clean tech). Students will gain insights into technology, strategy, and markets, especially how disruptive technologies create opportunities for startups and transform established firms, and how technology firms achieve competitive advantage through tech-enabled innovations. Illustrated by case studies on cutting-edge startups industry leaders. ","edges_from":[],"edges_to":[],"id":4841,"label":"MGT 127","title":"Innovation and Technology Strategy (4)"},{"dept":"MGT","description":"The service sector is the fastest-growing sector of the economy. This course will help students prepare for the transition to a service economy and identify career and entrepreneurial opportunities in the service industry. Students will learn how services differ from goods and gain understanding of the innovation process in the service industry. The course will also address trends of services getting systematized, industrialized, and professionalized for greater productivity and scalability. ","edges_from":[],"edges_to":[],"id":4842,"label":"MGT 128","title":"Innovation in Service Enterprises (4)"},{"dept":"CSE","description":"in Computer Science and Engineering (1–4)","edges_from":[],"edges_to":[],"id":4843,"label":"CSE 290","title":"Seminar"},{"dept":"CSE","description":"Project in Computer Science and Engineering (1–12)","edges_from":[],"edges_to":[],"id":4844,"label":"CSE 293","title":"Special"},{"dept":"CSE","description":"(Formerly CSE 282.) Computer science and engineering faculty will present one-hour seminars of the current research work in their areas of interest. ","edges_from":[],"edges_to":[],"id":4845,"label":"CSE 292","title":"Faculty Research Seminar (1)"},{"dept":"CSE","description":"Advanced study and analysis of active research in computer science and computer engineering. Discussion of current research and literature in the research specialty of the staff member teaching the course. ","edges_from":[],"edges_to":[],"id":4846,"label":"CSE 294","title":"Research Meeting in CSE (2)"},{"dept":"GPLA","description":"This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 401A-B-C. Students may not get credit for any IRLA 401 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":4847,"label":"GPLA 401A-B-C","title":"Intermediate Chinese Language for Professional Proficiency (4-4-4)"},{"dept":"GPPS","description":"This course examines the interplay between structural factors, institutions, and key actors in politics and society in order to understand the democratization of and contemporary democratic politics in Latin America. May not receive credit for GPPS 446 and the IRGN 490 course with the same title.","edges_from":[],"edges_to":[],"id":4848,"label":"GPPS 446","title":"Democratization in Latin America (4)"},{"dept":"20A-B-C","description":"","edges_from":[],"edges_to":[],"id":4849,"label":"20A-B-C","title":"Second-Year Japanese"},{"dept":"GPPS","description":"This course focuses on contemporary Cuba, its politics, economics, and foreign policy, and assesses the social gains of the revolution and the challenges of reforming socialism. The course also takes a brief look at the origins of the revolution and the role of Castro, explores Cuba-related social media, and examines current US-Cuba relations. Recommended preparation: Spanish proficiency is recommended. Renumbered from IRGN 445. Students may not receive credit for GPPS 445 and IRGN 445.","edges_from":[],"edges_to":[],"id":4850,"label":"GPPS 445","title":"Cuba: Revolution and Reform (4)"},{"dept":"GPPS","description":"This course surveys the major contours of intellectual debates and conceptual frameworks that structure the field of international security studies. It introduces students to important strategic thinkers in order to analyze issues in the use of force. Topics include the development of strategic thought, theories on the course of war, the organizational and political nature of militaries, assessment of military effectiveness, and the peculiar problems of nuclear and unconventional warfare. Renumbered from IRGN 442. Students may not receive credit for GPPS 442 and IRGN 442.","edges_from":[],"edges_to":[],"id":4851,"label":"GPPS 442","title":"Foundations of Strategic Studies (4)"},{"dept":"HIAF","description":"This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 261.","edges_from":[],"edges_to":[],"id":4852,"label":"HIAF 161","title":"Special Topics in African History (4)"},{"dept":"GPPS","description":"This course goes beyond the debates of the role of the market and the state in the process of economic growth and political development, seeking to provide an understanding of the complex interaction between political incentives, regulatory decisions, and their implementation. Non-GPS graduate students may enroll with consent of instructor. Students may not receive credit for both renumbered from IRGN 441. Students may not receive credit for GPPS 441 and IRGN 441.","edges_from":[],"edges_to":[],"id":4853,"label":"GPPS 441","title":"Government and Regulation (4)"},{"dept":"GPPS","description":"To explore the roles that civil society/NGOs/the third sector can play in advancing political, social, and economic progress in developing countries. To consider the strengths and weaknesses, capacities, and limitations of NGOs in developing countries. To provide students with experience in evaluating NGOs and in making professional recommendations to enhance their ability to make a difference. To prepare students to take leadership roles—whether in government, the private sector, or NGOs—in promoting civil-society participation in development. Renumbered from IRGN 448. Students may not receive credit for GPPS 448 and IRGN 448.","edges_from":[],"edges_to":[],"id":4854,"label":"GPPS 448","title":"Civil Society and Development (4)"},{"dept":"GPPS","description":"Analysis of the interests, structure, and procedures of the main executive branch agencies involved in the formulation of foreign policy, and of the roles of Congress, the media, public opinion, and nongovernmental actors. Case studies and “daily briefings” to prepare students to perform professionally in the foreign policy arena. Renumbered from IRGN 449. Students may not receive credit for GPPS 449 and IRGN 449.","edges_from":[],"edges_to":[],"id":4855,"label":"GPPS 449","title":"The Making of US Foreign Policy (4)"},{"dept":"LTGM","description":"LTGM 2A follows the basic language sequence of the Department of Linguistics and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. The course includes grammar review and class discussion of reading and audio-visual materials. Specifically, the course prepares students for LIGM 2B and 2C. ","edges_from":[4857],"edges_to":[4859],"id":4856,"label":"LTGM 2A","title":"Intermediate German I (5)"},{"dept":"LTGM","description":"","edges_from":[],"edges_to":[4856],"id":4857,"label":"LTGM 1C","title":""},{"dept":"LTGM","description":"A course designed for students who wish to improve their ability to speak and write German. Students will read and discuss a variety of texts and films, and complete the grammar review begun in 2A. 2C emphasizes speaking, writing, and critical thinking, and prepares students for upper-division course work in German. ","edges_from":[4859],"edges_to":[],"id":4858,"label":"LTGM 2C","title":"Intermediate German III (4)"},{"dept":"LTGM","description":"","edges_from":[4856],"edges_to":[4858],"id":4859,"label":"LTGM 2B","title":""},{"dept":"HIEA","description":"This course examines Korea’s entrance into the modern world. It","edges_from":[],"edges_to":[],"id":4860,"label":"HIEA 150","title":"Modern Korea, 1800–1945 (4)"},{"dept":"CSE","description":"Representation and manipulation of pictorial data. Two-dimensional and three-dimensional transformations, curves, surfaces. Projection, illumination, and shading models. Raster and vector graphic I/O devices; retained-mode and immediate-mode graphics software systems and applications. Students may not receive credit for both Math 155A and CSE 167. ","edges_from":[16,17],"edges_to":[4864,4865,4871,4872,4863],"id":4861,"label":"CSE 167","title":"Computer Graphics (4)"},{"dept":"CSE","description":"Principles of image formation, analysis, and representation. Image enhancement, restoration, and segmentation; stochastic image models. Filter design, sampling, Fourier and wavelet transforms. Selected applications in computer graphics and machine vision. ","edges_from":[16,17,139],"edges_to":[],"id":4862,"label":"CSE 166","title":"Image Processing (4)"},{"dept":"CSE","description":"This course focuses on design and evaluation of three-dimensional (3D) user interfaces, devices, and interaction techniques. The course consists of lectures, literature reviews, and programming assignments. Students will be expected to create interaction techniques for several different 3D interaction devices. Program or materials fees may apply. ","edges_from":[4861],"edges_to":[],"id":4863,"label":"CSE 165","title":"3D User Interaction (4)"},{"dept":"CSE","description":"Principles and practices of programming graphics processing units (GPUs). GPU architecture and hardware concepts, including memory and threading models. Modern hardware-accelerated graphics pipeline programming. Application of GPU programming to rendering of game graphics, including physical, deferring, and global lighting models. Recommended preparation: Practical Rendering and Computation with Direct3D 11 by Jason Zink, Matt Pettineo, and Jack Hoxley. ","edges_from":[4861],"edges_to":[],"id":4864,"label":"CSE 164","title":"GPU Programming (4)"},{"dept":"CSE","description":"Topics include an overview of many aspects of computer graphics, including the four main computer graphics areas of animation, modeling, rendering, and imaging. Programming projects in image and signal processing, geometric modeling, and real-time rendering. ","edges_from":[4861],"edges_to":[],"id":4865,"label":"CSE 163","title":"Advanced Computer Graphics (4)"},{"dept":"CHIN","description":"Continuation introduction of basic","edges_from":[],"edges_to":[],"id":4866,"label":"CHIN 10BM","title":"First Year Chinese—Mandarin speakers II (5)"},{"dept":"CHIN","description":"Continuation of basic Chinese for students","edges_from":[],"edges_to":[],"id":4867,"label":"CHIN 10BN","title":"First Year Chinese—Non-native speakers II (5)"},{"dept":"CSE","description":"Introduction to high performance parallel computing: parallel architecture, algorithms, software, and problem-solving techniques. Areas covered: Flynns’ taxonomy, processor-memory organizations, shared and nonshared memory models: message passing and multithreading, data parallelism; speedup, efficiency and Amdahl’s law, communication and synchronization, isoefficiency and scalability. Assignments given to provide practical experience. ","edges_from":[16,17],"edges_to":[],"id":4868,"label":"CSE 160","title":"Introduction to Parallel Computing (4)"},{"dept":"CHIN","description":"Continuation introduction of basic","edges_from":[],"edges_to":[],"id":4869,"label":"CHIN 10BD","title":"First Year Chinese—Dialect speakers II (5)"},{"dept":"HIEA","description":"This course explores the cultural and social structures that dominated twentieth-century Korea: imperialism, ethnonationalism, heteropatriarchy, capitalism, socialism, and militarism. It also uses individual and collective engagements with these hegemonic structures to demonstrate contentious interactions between individuals and society.","edges_from":[],"edges_to":[],"id":4870,"label":"HIEA 153","title":"Social and Cultural History of Twentieth-Century Korea (4)"},{"dept":"CSE","description":"Advanced graphics focusing on the programming techniques involved in computer animation. Algorithms and approaches for both character animation and physically based animation. Particular subjects may include skeletons, skinning, key framing, facial animation, inverse kinematics, locomotion, motion capture, video game animation, particle systems, rigid bodies, clothing, and hair. Recommended preparation: An understanding of linear algebra. ","edges_from":[4861],"edges_to":[],"id":4871,"label":"CSE 169","title":"Computer Animation (4)"},{"dept":"CSE","description":"Weekly programming assignments that will cover graphics rendering algorithms. During the course the students will learn about ray tracing, geometry, tessellation, acceleration structures, sampling, filtering, shading models, and advanced topics such as global illumination and programmable graphics hardware. ","edges_from":[4861],"edges_to":[],"id":4872,"label":"CSE 168","title":"Computer Graphics II: Rendering (4)"},{"dept":"Linguistics/German","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1BX. ","edges_from":[4874,4875],"edges_to":[],"id":4873,"label":"Linguistics/German (LIGM) 1B","title":"German Conversation (2.5)"},{"dept":"LIGM","description":"","edges_from":[],"edges_to":[4873,5965],"id":4874,"label":"LIGM 1A","title":""},{"dept":"LIGM","description":"","edges_from":[],"edges_to":[4873,5965],"id":4875,"label":"LIGM 1AX","title":""},{"dept":"Linguistics/German","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1CX. ","edges_from":[173,174],"edges_to":[],"id":4876,"label":"Linguistics/German (LIGM) 1C","title":"German Conversation (2.5)"},{"dept":"Linguistics/German","description":"Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1AX. ","edges_from":[],"edges_to":[],"id":4877,"label":"Linguistics/German (LIGM) 1A","title":"German Conversation (2.5)"},{"dept":"ENVR","description":"Examines global and regional environmental issues. The approach is to consider the scientific basis for policy options. Simple principles of chemistry and biology are introduced. The scope of problems includes: air and water pollution, climate modification, solid waste disposal, hazardous waste treatment, and environmental impact assessment. ","edges_from":[],"edges_to":[],"id":4878,"label":"ENVR 30","title":"Environmental Issues: Natural Sciences (4)"},{"dept":"Linguistics/German","description":"Small conversation sections taught entirely in German. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIGM 1DX. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ","edges_from":[4880,4881],"edges_to":[],"id":4879,"label":"Linguistics/German (LIGM) 1D","title":"German Conversation (2.5)"},{"dept":"LIGM","description":"","edges_from":[],"edges_to":[5572,4879],"id":4880,"label":"LIGM 1C","title":""},{"dept":"LIGM","description":"","edges_from":[],"edges_to":[5572,4879],"id":4881,"label":"LIGM 1CX","title":""},{"dept":"ECE","description":"Speech signals, production and perception,","edges_from":[],"edges_to":[],"id":4882,"label":"ECE 252A","title":"Speech Compression (4)"},{"dept":"LTAF","description":"This course traces the rise of modern literature in traditional African societies disrupted by the colonial and neocolonial experience. Contemporary films by African and Western artists will provide an additional insight into the complex social self-images of the continent.","edges_from":[],"edges_to":[],"id":4883,"label":"LTAF 120","title":"Literature and Film of Modern Africa (4)"},{"dept":"MAE","description":"to Turbulence and Turbulent Mixing (4)","edges_from":[],"edges_to":[],"id":4884,"label":"MAE 214A","title":"Introduction"},{"dept":"LTRU","description":"","edges_from":[],"edges_to":[],"id":4885,"label":"LTRU 104C","title":"Advanced Practicum in Russian (4)"},{"dept":"LTRU","description":"","edges_from":[],"edges_to":[],"id":4886,"label":"LTRU 104B","title":"Advanced Practicum in Russian: Analysis of Text and Film (4)"},{"dept":"LTRU","description":"","edges_from":[],"edges_to":[],"id":4887,"label":"LTRU 104A","title":"Advanced Practicum in Russian (4)"},{"dept":"Linguistics/German","description":"(2–4)","edges_from":[],"edges_to":[],"id":4888,"label":"Linguistics/German (LIGM) 11","title":"Elementary German Reading"},{"dept":"HMNR","description":"Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections—against genocide, torture, enslavement, political persecution, etc.—and their violation, from early Cold War to the present.","edges_from":[],"edges_to":[],"id":4889,"label":"HMNR 101/ANSC 140","title":"Human Rights II: Contemporary Issues (4)"},{"dept":"MGT","description":"In this course, the student will continue work on the original research","edges_from":[],"edges_to":[],"id":4890,"label":"MGT 293D","title":"Original Research Presentation (4)"},{"dept":"MGT","description":"In this course, the student will continue work on the literature review","edges_from":[],"edges_to":[],"id":4891,"label":"MGT 293B","title":"Literature Review and Critique Presentation (4)"},{"dept":"MGT","description":"In this course, the student will work on identifying and developing","edges_from":[],"edges_to":[],"id":4892,"label":"MGT 293C","title":"Original Research Paper (4)"},{"dept":"MGT","description":"This course will require the student to identify and critique the","edges_from":[],"edges_to":[],"id":4893,"label":"MGT 293A","title":"Literature Review and Critique Paper (4)"},{"dept":"LTEU","description":"A study of the chief modern Italian prosatori, including D’Annunzio, Calvino, Pavese, and Pasolini. May be taken up to three times for credit as topic vary.","edges_from":[],"edges_to":[],"id":4894,"label":"LTEU 146","title":"Studies in Modern Italian Prose (4)"},{"dept":"LTEU","description":"Study of the chief modern Italian poets, including Montale, Ungaretti, and Quasimodo, with attention to long, poetic form and contemporary Italian culture. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4895,"label":"LTEU 145","title":"Studies in Modern Italian Poetry (4)"},{"dept":"LTEU","description":"One or more periods and authors in Italian literature. Texts will be read in English. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":4896,"label":"LTEU 140","title":"Italian Literature in Translation (4)"},{"dept":"HIUS","description":"History from 1865 to 1917 (4)","edges_from":[],"edges_to":[],"id":4897,"label":"HIUS 131","title":"Cultural"},{"dept":"HIUS","description":"History from 1607 to 1865 (4)","edges_from":[],"edges_to":[],"id":4898,"label":"HIUS 130","title":"Cultural"},{"dept":"HIUS","description":"This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries. Students may not receive credit for HIUS 133 and HIUS 133GS. +","edges_from":[],"edges_to":[],"id":4899,"label":"HIUS 133","title":"The Golden Age of Piracy (4)"},{"dept":"HIUS","description":"This course focuses on the role the Atlantic played in bringing together in both volatile and beneficial ways the remarkably different cultures of four continents from the Columbian Exchange to the Haitian Revolution. Students may not receive credit for HIUS 135 and 135A or 135B. +","edges_from":[],"edges_to":[],"id":4900,"label":"HIUS 135","title":"The Atlantic World, 1492–1803 (4)"},{"dept":"HIUS","description":"Bebop to Hip-Hop: African American Cultural History since 1945 (4)","edges_from":[],"edges_to":[],"id":4901,"label":"HIUS 134","title":"From"},{"dept":"PSYC","description":"An in-depth analysis of selected empirical and theoretical topics in cognitive psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. ","edges_from":[],"edges_to":[],"id":4902,"label":"PSYC 272","title":"Selected Topics in Cognitive Psychology (4)"},{"dept":"PSYC","description":"An in-depth analysis and discussion of selected advanced topics","edges_from":[],"edges_to":[],"id":4903,"label":"PSYC 273","title":"Selected Topics in Quantitative Methods in Psychology (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language functions required for advanced oral communication, reading, writing, and cultural understanding in professional contexts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Arabic. ","edges_from":[],"edges_to":[],"id":4904,"label":"Linguistics/Heritage Languages (LIHL) 136","title":"Advanced Arabic for Arabic Speakers (4)"},{"dept":"Linguistics/Heritage","description":"Instruction stresses language functions required","edges_from":[],"edges_to":[],"id":4905,"label":"Linguistics/Heritage Languages (LIHL) 138","title":"Advanced Cantonese for Cantonese Speakers (4)"},{"dept":"MAE","description":"Competition—Design, Build, and Fly Aircraft (1)","edges_from":[],"edges_to":[],"id":4906,"label":"MAE 92A","title":"Design"},{"dept":"MGT","description":"Addresses formulation and implementation of marketing strategy, based on an integrative view of competitive brand strategy over the product life cycle. Provides a framework for developing marketing strategies yielding sustainable competitive advantage based on customer, competitor, industry, and environmental analysis. Students may not earn credit for both MGT 476 and MGT 201. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4907,"label":"MGT 476","title":"Marketing Strategy (4)"},{"dept":"MGT","description":"The course identifies the factors that influence the selection and usage of products and services. Students will be introduced to problems/decisions that include evaluating behavior; understanding the consumers’ decision process, and strategies to create desirable consumer behavior. Students may not earn credit for both MGT 477 and MGT 203. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4908,"label":"MGT 477","title":"Consumer Behavior (4)"},{"dept":"CHEM","description":"The application of techniques to study protein","edges_from":[],"edges_to":[],"id":4909,"label":"CHEM 108","title":"Protein Biochemistry Laboratory (6)"},{"dept":"MGT","description":"Methods and applications of qualitative and quantitative marketing research to solve substantive marketing problems. Emphasis on integrating problem formulation, research design, questionnaire construction, and sampling to yield the most valuable information, and on the proper use of statistical methods. Students may not earn credit for both MGT 475 and MGT 202. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4910,"label":"MGT 475","title":"Research for Marketing Decisions (4)"},{"dept":"HIEA","description":"This course traces the peninsula’s division into two rival","edges_from":[],"edges_to":[],"id":4911,"label":"HIEA 151","title":"The Two Koreas, 1945–Present (4)"},{"dept":"MATH","description":"Continued development of a topic in differential equations. Topics include: Riemannian geometry, Ricci flow, and geometric evolution. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[4913],"edges_to":[],"id":4912,"label":"MATH 237B","title":"Further Topics in Differential Equations (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[4912],"id":4913,"label":"MATH 237A","title":""},{"dept":"MGT","description":"This course differentiates decisions/principles considered when developing an overall communications and promotions strategy. Key decisions include the promotional mix, the design, implementation and evaluation of communications strategies and the thinking required to develop a creative strategy. Students may not earn credit for both MGT 478 and MGT 204. They are course equivalents. ","edges_from":[],"edges_to":[],"id":4914,"label":"MGT 478","title":"Marketing Communications (4)"},{"dept":"HIEA","description":"This course places the Korean diaspora in national, regional, and global frames from the imperial age to our globalized present. It traces migrant experiences and community formations on the peninsula and in Japan, the United States, China, and the former USSR.","edges_from":[],"edges_to":[],"id":4915,"label":"HIEA 152","title":"History and Cultures of the Korean Diaspora (4)"},{"dept":"LTSP","description":"Explores the relationships among cultural production, politics, and societal changes in Mexico before the 1910 Revolution, specifically the roles of intellectuals and popular culture in nation-building and modernization. Readings may include didactic literature and historiographic writings, forms of popular discourse, as well as novels and poetry. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":4916,"label":"LTSP 135A","title":"Mexican Literature before 1910 (4)"},{"dept":"LTSP","description":"Study of popular novels, movements, traditions, key authors, or major trends in modern Mexican literature. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":4917,"label":"LTSP 135B","title":"Modern Mexican Literature (4)"},{"dept":"Linguistics/Italian","description":"(LIIT) 1A. Italian Conversation (2.5)","edges_from":[],"edges_to":[],"id":4918,"label":"Linguistics/Italian","title":""},{"dept":"MAE","description":"(Cross-listed with MATS 213A.) Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves, Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ","edges_from":[],"edges_to":[4979],"id":4919,"label":"MAE 273A","title":"Dynamic Behavior of Materials (4)"},{"dept":"ECE","description":"Laboratory fabrication of diodes and field effect transistors covering photolithography, oxidation, diffusion, thin film deposition, etching and evaluation of devices. (Course materials and/or program fees may apply.) ","edges_from":[1231],"edges_to":[],"id":4920,"label":"ECE 136L","title":"Microelectronics Laboratory (4)"},{"dept":"HIUS","description":"This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation.","edges_from":[],"edges_to":[],"id":4921,"label":"HIUS 129/USP 106","title":"The History of Race and Ethnicity in American Cities (4)"},{"dept":"MATH","description":"An introduction to the basic concepts and techniques of modern cryptography. Classical cryptanalysis. Probabilistic models of plaintext. Monalphabetic and polyalphabetic substitution. The one-time system. Caesar-Vigenere-Playfair-Hill substitutions. The Enigma. Modern-day developments. The Data Encryption Standard. Public key systems. Security aspects of computer networks. Data protection. Electronic mail. Recommended preparation: programming experience. Renumbered from Math 187. Students may not receive credit for both Math 187A and 187. ","edges_from":[],"edges_to":[4923],"id":4922,"label":"MATH 187A","title":"Introduction to Cryptography (4)"},{"dept":"MATH","description":"The object of this course is to study modern public key cryptographic systems and cryptanalysis (e.g., RSA, Diffie-Hellman, elliptic curve cryptography, lattice-based cryptography, homomorphic encryption) and the mathematics behind them. We also explore other applications of these computational techniques (e.g., integer factorization and attacks on RSA). Recommended preparation: Familiarity with Python and/or mathematical software (especially SAGE) would be helpful, but it is not required. ","edges_from":[4924,4922,139,140,141],"edges_to":[],"id":4923,"label":"MATH 187B","title":"Mathematics of Modern Cryptography (4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[4923],"id":4924,"label":"MATH 187","title":""},{"dept":"LHCO","description":"Students will learn the use of financial information within a healthcare organization. Topics covered will include capital structure, working capital and cash management, the time value of money, and capital budgeting. ","edges_from":[],"edges_to":[],"id":4925,"label":"LHCO 213","title":"Financial Accounting and Analysis (2)"},{"dept":"LHCO","description":"Students will learn statistical methods and their most common applications in healthcare management. Topics covered include data presentation, sampling, the development and use of confidence intervals, hypothesis testing, analysis of variance and simple regression. We will also explore elementary probability theory and decision making under uncertainty. Students who have taken LHCO 208 may not receive credit for LHCO 212. ","edges_from":[],"edges_to":[],"id":4926,"label":"LHCO 212","title":"Statistics and Applied Decision Making (2)"},{"dept":"LHCO","description":"Covers core body of knowledge and skills of project management specific to the healthcare industry. Students learn how to define, plan, and execute a project on time, on budget and within performance specifications. Topics include project life cycle, definition, and charter creation; assembling high performance teams; risk analysis; and project closure. ","edges_from":[],"edges_to":[],"id":4927,"label":"LHCO 217","title":"Project Management for Healthcare Professionals (2)"},{"dept":"LHCO","description":"Describes the critical knowledge and skills needed to be effective leaders in today’s complex healthcare environment. Sessions cover conflict resolution, leadership and negotiation skills, strategic planning, and ethics. Guest speakers include business leaders and entrepreneurs from the local healthcare industry. ","edges_from":[],"edges_to":[],"id":4928,"label":"LHCO 216","title":"Healthcare Leadership (4)"},{"dept":"LHCO","description":"","edges_from":[],"edges_to":[],"id":4929,"label":"LHCO 215","title":"Modern Health Care (2)"},{"dept":"LHCO","description":"This course focuses on developing effective business communication skills for professionals in managerial/senior roles in health care. Writing scenarios include: preparing briefings and updates using presentation software and/or briefing packets; organizing data; constructing proposals and reports; solicitations; coordinating projects via e-mail; and drafting and editing group documents. On-the-job examples from the student’s workplace are used throughout the course. ","edges_from":[],"edges_to":[],"id":4930,"label":"LHCO 214","title":"Practical Business Communication Skills for Healthcare Professionals (2)"},{"dept":"LHCO","description":"Students learn and apply concepts and techniques of business process analysis and improvements as building blocks for operations improvement strategies in health care. Students will analyze and improve processes in various contexts using different process improvement tools from simple process-mapping to computer-based process-modeling. Use of fundamental and sophisticated analytical techniques to design and manage efficient and effective operations and processes will be covered. The importance of balancing technical/analytical and organizational/behavioral aspects of business process improvements will be highlighted. ","edges_from":[],"edges_to":[],"id":4931,"label":"LHCO 219","title":"Process Improvement in Health Care (4)"},{"dept":"LTCO","description":"A consideration of a representative selection of works relating to a theme, form, or literary genre. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":4932,"label":"LTCO 274","title":"Genre Studies (4)"},{"dept":"POLI","description":"(Same as SIO 109.) Climate change is an urgent global problem affecting the lives of hundreds of millions of people, now and for the foreseeable future. This course will empower students to confront climate change as critical actors to innovate creative cross-disciplinary solutions. Students may not receive credit for POLI 117 and SIO 109. ","edges_from":[],"edges_to":[],"id":4933,"label":"POLI 117","title":"Bending the Curve: Solutions to Climate Change (4)"},{"dept":"PHIL","description":"Topics may include metaethics (e.g., the semantics, metaphysics, epistemology, and normativity of ethics), consequentialism and deontology, moral psychology (e.g., freedom, responsibility, and weaknesses of will), or substantive moral problems. The approach may be systematic, historical, or both. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":4934,"label":"PHIL 260","title":"Ethics (4)"},{"dept":"ECE","description":"Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ","edges_from":[1996],"edges_to":[4936],"id":4935,"label":"ECE 158A","title":"Data Networks I (4)"},{"dept":"ECE","description":"Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ","edges_from":[4935],"edges_to":[],"id":4936,"label":"ECE 158B","title":"Data Networks II (4)"},{"dept":"SOCI","description":"U.S. (4)","edges_from":[],"edges_to":[],"id":4937,"label":"SOCI 10","title":"American Society: Social Structure and Culture in the"},{"dept":"POLI","description":"An examination of nationalist politics as practiced by opposition movements and governments in power. Appropriate case studies from around the world will be selected. ","edges_from":[],"edges_to":[],"id":4938,"label":"POLI 136A","title":"Nationalism and Politics (4)"},{"dept":"EDS","description":"This course series is for undergraduates who are exploring a career in teaching secondary school. Topics addressed include: theories of teaching and learning processes and motivation for science, mathematics, and English instruction. EDS 129A focuses on the analysis of the needs of individual learners and small group instruction techniques; EDS 129B emphasizes the various roles of the classroom teacher and planning individual lessons; and EDS 129C emphasizes the assessment of student work and longer-range curriculum planning. ","edges_from":[2245,810,4940,4941,4942,3503],"edges_to":[],"id":4939,"label":"EDS 129 A-B-C","title":"Introduction to Teaching and Learning (Secondary) (4-4-4)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[4939],"id":4940,"label":"EDS 129B","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[4939],"id":4941,"label":"EDS 129C","title":""},{"dept":"EDS","description":"","edges_from":[],"edges_to":[4939],"id":4942,"label":"EDS 129A","title":""},{"dept":"MAE","description":"Definition of hybrid system. Examples in mechanics, vision, and multi-agent systems. Trajectories of hybrid systems. Chattering, Zeno phenomena. Stability analysis. Arbitrary switching: common Lyapunov functions. Slow switching: dwell time. State-dependent switching: multiple Lyapunov functions, Invariance Principle. Hybrid control design. Applications. ","edges_from":[4944],"edges_to":[],"id":4943,"label":"MAE 286","title":"Hybrid Systems (4)"},{"dept":"MAE","description":"","edges_from":[2748],"edges_to":[5323,4943],"id":4944,"label":"MAE 281A","title":""},{"dept":"AWP","description":"AWP 2A is the first of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. Students who enroll in AWP 2A are required to enroll in AWP 2B in the subsequent term. Renumbered from ELWR 2A. Students may not receive credit for AWP 2A and ELWR 2A. Students must earn a C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a grade of C or better is not earned, students are placed in AWP 1.","edges_from":[],"edges_to":[4946],"id":4945,"label":"AWP 2A","title":"Analytical Writing and Academic English A (4)"},{"dept":"AWP","description":"AWP 2B is the second of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. At the end of AWP 2B, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 2B. Students may not receive credit for AWP 2B and ELWR 2B. Students must earn a grade of C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a C or better is not earned, students are placed in AWP 1. ","edges_from":[4945,4947],"edges_to":[],"id":4946,"label":"AWP 2B","title":"Analytical Writing and Academic English B (4)"},{"dept":"ELWR","description":"","edges_from":[],"edges_to":[4946],"id":4947,"label":"ELWR 2A","title":""},{"dept":"MAE","description":"Acoustofluidics is a burgeoning field reliant on high frequency acoustics and underpinning many new developments and devices at micro to nano scales. First the basics, piezoelectricity, microfluidics, acoustics, and device metrology. Then, new physics arising from the unusually large accelerations (10^7 to 10^9 m/s^2) induced by acoustic waves. Finally, how various phenomena of acoustofluidics at small scales can be used in designing practical devices. ","edges_from":[512,1536,1537],"edges_to":[],"id":4948,"label":"MAE 285","title":"Design of Micro/Nanoacoustofluidic Devices (4)"},{"dept":"CENG","description":"Understanding nanotechnology,","edges_from":[],"edges_to":[],"id":4949,"label":"CENG 211","title":"Introduction to NanoEngineering (4)"},{"dept":"HIGR","description":"Historical topics related to the human body, as a target of regulation, a site for the production of knowledge, the locus of an identity shaped by race, gender, and sexuality, and/or in terms of movement across geopolitical boundaries.","edges_from":[],"edges_to":[],"id":4950,"label":"HIGR 206","title":"Histories of the Body (4)"},{"dept":"CENG","description":"(4)","edges_from":[],"edges_to":[],"id":4951,"label":"CENG 213","title":"Nanoscale Synthesis and Characterization"},{"dept":"CENG","description":"and Modeling (4)","edges_from":[],"edges_to":[],"id":4952,"label":"CENG 214","title":"Nanoscale Physics"},{"dept":"CENG","description":"Integration (4)","edges_from":[],"edges_to":[],"id":4953,"label":"CENG 215","title":"Nanosystems"},{"dept":"COMM","description":"Examine sports as play, performance, competition, an arena where there are politics, culture, power, identity struggles. Establishing the social meanings of sport, we address ethics, race, class, nation, gender, body, science, technology, entertainment industries, commerce, spectatorship, consumption, amateurism, professionalism. ","edges_from":[540],"edges_to":[],"id":4954,"label":"COMM 111T","title":"CCP: Cultural Politics of Sport (4)"},{"dept":"COMM","description":"Explores performance as a range of aesthetic conventions (theatre, film, performance art) and as a mode of experiencing and conveying cultural identity. Texts include critical writing from anthropology, psychology, linguistics, media studies, as well as film/video, play scripts, live performance. ","edges_from":[540],"edges_to":[],"id":4955,"label":"COMM 111P","title":"CCP: Performance and Cultural Studies (4)"},{"dept":"HIGR","description":"An introductory graduate course for students in all field groups. The seminar introduces students to useful skills, methods, and techniques for teaching history. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":4956,"label":"HIGR 209","title":"Historical Pedagogy (4)"},{"dept":"COMM","description":"Folklore is characterized by particular styles, forms, and settings. Course introduces a range of folklore genres from different cultures, historical periods, oral narrative, material folk arts, dramas, rituals. Study of the relationship between expressive form and social context. ","edges_from":[540],"edges_to":[],"id":4957,"label":"COMM 111F","title":"CCP: Folklore and Communication (4)"},{"dept":"COMM","description":"An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. ","edges_from":[540],"edges_to":[],"id":4958,"label":"COMM 111G","title":"CCP: Popular Culture (4)"},{"dept":"COMM","description":"This course examines the products of culture industries (e.g., music, television, fashion, food, landscape, architectural design) to analyze, specifically, how culture is consumed and by whom. How are spectators hailed and audiences fostered and shaped? And what is the role of audiences in fostering and shaping cultural forms and products? ","edges_from":[540],"edges_to":[],"id":4959,"label":"COMM 111A","title":"CCP: Communication and Cultural Production: Introduction (4)"},{"dept":"COMM","description":"This course offers an introduction to the production of urban space. Cities are produced by sociocultural shifts wrought by migration, technological changes, new forms of production, globalization, and climate change. How is the landscape or built environment of the city shaped by the combined and often contradictory forces of capital, expert knowledge, social movements, and urban dwellers? ","edges_from":[540],"edges_to":[],"id":4960,"label":"COMM 111C","title":"CCP: Cities and Space (4)"},{"dept":"ANSC","description":"Why are so many people poor? What does poverty mean for those who live it and for those who try to help them? This course examines the field of international development, to understand the discourses and practices that governments, aid agencies, and communities have tried. To what extent are these practices linked to colonial legacies, race, and class? Looking to new innovations in participatory and compassionate development, this will prepare students for critical engagement with development. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":4961,"label":"ANSC 192GS","title":"Rethinking Poverty and Development (4)"},{"dept":"Linguistics/Hindi","description":"Presentation and practice of the basic grammatical","edges_from":[],"edges_to":[],"id":4962,"label":"Linguistics/Hindi (LIHI) 1DX","title":"Analysis of Hindi (2.5)"},{"dept":"PHIL","description":"Topics may include the nature and limits of state authority, liberty and equality, distributive justice, liberalism and its critics (e.g., feminists, libertarians, and others), or issues in jurisprudence. The focus may be on classic texts or contemporary authors. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":4963,"label":"PHIL 267","title":"Political Philosophy (4)"},{"dept":"HIAF","description":"Directed readings for undergraduates. ","edges_from":[],"edges_to":[],"id":4964,"label":"HIAF 199","title":"Independent Study in African History (4)"},{"dept":"AUD","description":"Theory and practice of cochlear implantation with focus on audiological management of patients after implantation. Current concepts regarding the activation of primary auditory neurons by electrical stimulation and indications for cochlear implantation and surgical procedures are described. ","edges_from":[],"edges_to":[],"id":4965,"label":"AUD 276","title":"Cochlear Implants and Other Implantable Sensory Aids (3)"},{"dept":"AUD","description":"Advanced technical aspects of assessing and fitting amplification devices for the hearing impaired. Intensive hands-on training to develop skills necessary for audiology clinical placement. ","edges_from":[],"edges_to":[],"id":4966,"label":"AUD 274","title":"Advanced Technical Aspects of Hearing Amplification (4)"},{"dept":"AUD","description":"Methods and procedures required for monitoring of evoked auditory responses in the operating room. The indications for the use of intraoperative monitoring and difficulties unique to this setting. The course will include the opportunity to observe auditory potential monitoring in the operating room. ","edges_from":[],"edges_to":[],"id":4967,"label":"AUD 275","title":"Intraoperative Monitoring (3)"},{"dept":"AUD","description":"Central auditory processing assessment and management for pediatrics and adults. Focus on behavioral tests assessing dichotic listening, temporal processes, pattern recognition, performance with competing and degraded signals. ","edges_from":[],"edges_to":[],"id":4968,"label":"AUD 272","title":"Central Auditory Processing Assessment and Management (4)"},{"dept":"ECE","description":"VLSI implementation methodology across block, circuit, and layout levels of abstraction. Circuit building blocks including embedded memory and clock distribution. Computer-aided design (synthesis, place-and-route, verification) and performance analyses, and small-group block implementation projects spanning RTL to tape-out using leading-edge EDA tools. Cross-listed with CSE 241A. (Recommended prerequisites: ECE 165.) ","edges_from":[],"edges_to":[5122],"id":4969,"label":"ECE 260B","title":"VLSI Integrated Circuits and Systems Design (4)"},{"dept":"ECE","description":"System Algorithms and Architectures (4)","edges_from":[],"edges_to":[],"id":4970,"label":"ECE 260A","title":"VLSI Digital"},{"dept":"HILA","description":"The social and political history of twentieth-century Mexico from the outbreak of revolution to the current “war on drugs.” Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation.","edges_from":[],"edges_to":[],"id":4971,"label":"HILA 132D","title":"Modern Mexico: From Revolution to Drug War Violence (4)"},{"dept":"MATH","description":"This is the third course in a three-course sequence in probability theory. Topics covered in the sequence include the measure-theoretic foundations of probability theory, independence, the Law of Large Numbers, convergence in distribution, the Central Limit Theorem, conditional expectation, martingales, Markov processes, and Brownian motion. ","edges_from":[4560],"edges_to":[],"id":4972,"label":"MATH 280C","title":"Probability Theory III (4)"},{"dept":"CHIN","description":"Intermediate course of Chinese for students with no background.","edges_from":[],"edges_to":[],"id":4973,"label":"CHIN 100CN","title":"Third Year Chinese—Non-native speakers III (4)"},{"dept":"CHIN","description":"Intermediate course of Chinese for students with background in","edges_from":[],"edges_to":[],"id":4974,"label":"CHIN 100CM","title":"Third Year Chinese—Mandarin speakers III (4)"},{"dept":"VIS","description":"This advanced course provides students with a unique immersive learning experience, based on design studio/atelier methods. This course develops students’ skills in the ideation, planning, and execution of complex individual and collaborative projects, including historical and contextual research, project ideation, planning and management, coordination of skills and responsibilities, iterative execution, and effective presentation. ","edges_from":[1155,932,1224,947,931,2399],"edges_to":[],"id":4975,"label":"VIS 190","title":"Design Master Studio (8)"},{"dept":"VIS","description":"Independent reading, research, or creative work under direction of a faculty member. ","edges_from":[],"edges_to":[],"id":4976,"label":"VIS 199","title":"Special Studies in the Visual Arts (4)"},{"dept":"EDS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Topics vary from quarter to quarter. P/NP grades only. ","edges_from":[],"edges_to":[],"id":4977,"label":"EDS 87","title":"Freshman Seminar in Education Studies (1)"},{"dept":"HINE","description":"A colloquium focusing on the problems and patterns in the emergence of modern Middle Eastern states since 1920. ","edges_from":[],"edges_to":[],"id":4978,"label":"HINE 165/265","title":"The Colonial Mandates in the Middle East (4)"},{"dept":"MATS","description":"Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves; Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ","edges_from":[4919],"edges_to":[],"id":4979,"label":"MATS 213A","title":"Dynamic Behavior of Materials I (4)"},{"dept":"DSGN","description":"Special topics in design. May be taken for credit three times when topics vary. ","edges_from":[],"edges_to":[],"id":4980,"label":"DSGN 160","title":"Special Topics in Design (4)"},{"dept":"SIOG","description":"Chemical description of the sea; the distribution of chemical species in the world oceans, and their relationships to physical, biological, and geological processes. Renumbered from SIO 260. Students may not receive credit for both SIOG 260 and SIO 260. ","edges_from":[],"edges_to":[],"id":4981,"label":"SIOG 260","title":"Marine Chemistry (4)"},{"dept":"HIGR","description":"Research seminar in medieval history with selected topics in medieval history.","edges_from":[],"edges_to":[],"id":4982,"label":"HIGR 223A","title":"Research Seminar in Medieval History (4)"},{"dept":"FPM","description":"Students will explore an epidemiologic research question by reviewing relevant published literature, and then design and conduct appropriate data analysis using a pre-existing dataset. May be taken for credit two times. ","edges_from":[],"edges_to":[4986],"id":4983,"label":"FPM 259A","title":"Applied Epidemiology—Scientific Analysis (4)"},{"dept":"EDS","description":"This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the first of a three-course series. ","edges_from":[],"edges_to":[4985],"id":4984,"label":"EDS 262A","title":"Dissertation Writing Seminar (4)"},{"dept":"EDS","description":"This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the second of a three-course series. ","edges_from":[4984],"edges_to":[5256],"id":4985,"label":"EDS 262B","title":"Dissertation Writing Seminar (4)"},{"dept":"FPM","description":"Students will learn the principles of scientific writing, review examples of scientific literature, and then complete a manuscript suitable for publication based on their project from FPM 259A. May be taken for credit two times. ","edges_from":[4983],"edges_to":[5254],"id":4986,"label":"FPM 259B","title":"Applied Epidemiology—Scientific Writing (4)"},{"dept":"MUS","description":"Studies Seminar in Critical Studies (4)","edges_from":[],"edges_to":[],"id":4987,"label":"MUS 253","title":"Integrative"},{"dept":"MUS","description":"Traces the development of systems thinking and encourages work of a transdisciplinary nature, integrating models, strategies, methods, and tools from natural, human, social, and technological realms. ","edges_from":[],"edges_to":[],"id":4988,"label":"MUS 252","title":"Integrative Studies Seminar in Systems Inquiry (4)"},{"dept":"MUS","description":"Studies Seminar in Ethnomusicology (4)","edges_from":[],"edges_to":[],"id":4989,"label":"MUS 251","title":"Integrative"},{"dept":"POLI","description":"Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: ECON 5, POLI 5, or POLI 5D.","edges_from":[],"edges_to":[],"id":4990,"label":"POLI 5 or 5D","title":"Data Analytics for the Social Sciences (4)"},{"dept":"LIGN","description":"","edges_from":[],"edges_to":[],"id":4991,"label":"LIGN 252","title":"Advanced Probabilistic Models of Language (4)"},{"dept":"BIOM","description":"An introduction to basic techniques used in biomedical literature: t tests, ANOVA, chi-square, linear and nonlinear regression. Emphasis will be on understanding the appropriate use and interpretation of the tests, rather than on the calculations.","edges_from":[],"edges_to":[],"id":4992,"label":"BIOM 285","title":"Statistical Inference in the Medical Sciences (2)"},{"dept":"Jewish","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. P/NP grades only. May be taken for credit four times. Seminars are open to sophomores, juniors, and seniors on a space available basis.","edges_from":[],"edges_to":[],"id":4993,"label":"Jewish Studies 87","title":"Freshman Seminar (1)"},{"dept":"BENG","description":"Course given at the discretion of the faculty","edges_from":[],"edges_to":[],"id":4994,"label":"BENG 208","title":"Topics in Bioengineering with Lab (4)"},{"dept":"CSE","description":"This course allows students to use what they learned in introductory programming courses to make things happen in the real world. Working in teams, students will first learn to program Arduino-based devices. Teams of students will design a custom device and program it to do their bidding. This course is targeted to freshmen and sophomores in engineering and science disciplines who want to practice applying what they have learned in a programming class and to have the chance to program things other than computers. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":4995,"label":"CSE 42","title":"Building and Programming Electronic Devices (2)"},{"dept":"MGT","description":"Build a business plan. Establish intellectual property rights. Provide financial projections and determine financing needs. Explore investment sourcing, business valuation, and harvesting opportunities. Determine operational plans and key employee requirements. ","edges_from":[3118,4998,4997,686],"edges_to":[],"id":4996,"label":"MGT 121B","title":"Innovation to Market B (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[4996],"id":4997,"label":"MGT 121A","title":""},{"dept":"MGT","description":"","edges_from":[],"edges_to":[4996],"id":4998,"label":"MGT 111","title":""},{"dept":"HINE","description":"An examination of the conflicts, changes, and continuities in the Middle East since 2000. The course includes inspection of the US role in Iraq and the region generally.","edges_from":[],"edges_to":[],"id":4999,"label":"HINE 120","title":"The Middle East in the New Century (4)"},{"dept":"HINE","description":"Eastern problems on the example of Turkey and with special attention to collective identities, state-society dynamics, foreign and regional policies, and varieties of modernity.","edges_from":[],"edges_to":[],"id":5000,"label":"HINE 127","title":"History of Modern Turkey (4)"},{"dept":"BENG","description":"Course given at the discretion of the faculty on current topics of interest in bioengineering. (F,W,S)","edges_from":[],"edges_to":[],"id":5001,"label":"BENG 207","title":"Topics in Bioengineering (4)"},{"dept":"COMM","description":"An advanced television course that examines the history, form, and function of the television documentary in American society. Experimentation with documentary techniques and styles requires prior knowledge of television or film production. Laboratory sessions apply theory and methods in the documentary genre via technological process. Integrates research, studio, and field experience of various media components. May be taken for credit three times. ","edges_from":[540,731,1412,1413],"edges_to":[],"id":5002,"label":"COMM 102T","title":"MMPP: Television Documentary (6)"},{"dept":"MAE","description":"of Distributed Parameter Systems (4)","edges_from":[],"edges_to":[],"id":5003,"label":"MAE 287","title":"Control"},{"dept":"MAE","description":"Continuous mechanics of solids and its application","edges_from":[],"edges_to":[3579],"id":5004,"label":"MAE 131B","title":"Fundamentals of Solid Mechanics II (4)"},{"dept":"MAE","description":"Multivariable feedback systems: transfer function matrices, Smith-McMillan form, poles, zeros, principal gains, operator norms, limits on performance. Model uncertainties, stability and performance robustness. Design of robust controllers, H_inf and mu synthesis. Controller reduction. ","edges_from":[2748],"edges_to":[],"id":5005,"label":"MAE 284","title":"Robust and Multivariable Control (4)"},{"dept":"ECE","description":"Image quantization and sampling, image transforms,","edges_from":[],"edges_to":[],"id":5006,"label":"ECE 253","title":"Fundamentals of Digital Image Processing (4)"},{"dept":"HIGR","description":"An introduction to historical scholarship on women and gender, this cross-field course is designed for graduate students from all fields in history as well as from other related disciplines. The course will introduce major themes, debates, and theoretical approaches to women’s and gender history. The content of the course will change from year to year, but will include theoretical texts, historical case studies from different times and places, and primary sources. May be taken for credit two times.","edges_from":[],"edges_to":[],"id":5007,"label":"HIGR 205","title":"Historical Scholarship on Women and Gender (4)"},{"dept":"GPLA","description":"This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 410A-B-C. Students may not get credit for any IRLA 410 course and the GPLA course of the same number and quarter designation.","edges_from":[],"edges_to":[],"id":5008,"label":"GPLA 410A-B-C","title":"Low Intermediate Japanese Language for Professional Proficiency (4-4-4)"},{"dept":"CENG","description":"Development of quantitative understanding of the different","edges_from":[],"edges_to":[],"id":5009,"label":"CENG 212","title":"Intermolecular and Surface Forces (4)"},{"dept":"HIGR","description":"A transdisciplinary and comparative course on the interplay of nationalism, colonialism, and race (as well as class and gender/sexuality) in the nineteenth and twentieth centuries.","edges_from":[],"edges_to":[],"id":5010,"label":"HIGR 207","title":"Nationalism, Colonialism, and Race (4)"},{"dept":"BILD","description":"Course introduces students to some of the research approaches employed by physicians and scientists at the UC San Diego School of Medicine to investigate the etiology, biology, prevention and treatment of human diseases, including cancer, diabetes, and others. P/NP grades only.","edges_from":[],"edges_to":[],"id":5011,"label":"BILD 40","title":"Introduction to Biomedical Research (2)"},{"dept":"HIGR","description":"An introductory graduate course for students in all fields. Themes include cross-field historiography and theory, interdisciplinary approaches to history and historical method. (May be taken twice for credit, if the reading list is significantly different.)","edges_from":[],"edges_to":[],"id":5012,"label":"HIGR 200","title":"History and Theory (4)"},{"dept":"LTWL","description":"Studies in specialized literary, philosophic, and artistic movements, approaches to literature, literary ideas, historical moments, etc. LTWL 172 and LTWL 172GS may be taken for credit for a combined total of three times.","edges_from":[],"edges_to":[],"id":5013,"label":"LTWL 172","title":"Special Topics in Literature (4)"},{"dept":"BGJC","description":"Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ","edges_from":[230],"edges_to":[],"id":5014,"label":"BGJC 208","title":"Journal Club in Plant Molecular Biology (1)"},{"dept":"Linguistics/Arabic","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1E. ","edges_from":[3246,3247],"edges_to":[],"id":5015,"label":"Linguistics/Arabic (LIAB) 1EX","title":"Arabic Conversation (2.5)"},{"dept":"ETHN","description":"(Cross-listed with CGS 150.) Examines the role of the visual in power relations; the production of what we “see” regarding race and sexuality; the interconnected history of the casta system, plantation slavery, visuality, and contemporary society; decolonial and queer counternarratives to visuality.","edges_from":[],"edges_to":[],"id":5016,"label":"ETHN 150","title":"Visuality, Sexuality, and Race (4)"},{"dept":"HISC","description":"This course will explore the evolution of the institutions, ideologies, procedures, standards, and expertise that modern democratic societies have used in applying science to generate and legitimate public policy.","edges_from":[],"edges_to":[],"id":5017,"label":"HISC 180/280","title":"Science and Public Policy (4)"},{"dept":"TDMV","description":"Ballet for Contemporary Dance (4)","edges_from":[],"edges_to":[],"id":5018,"label":"TDMV 112","title":"Advanced"},{"dept":"TDMV","description":"A contemporary approach to ballet technique, terminology, and performance at the advanced level. Introduces more complex choreographic variations and skills. Individual and group composition will be examined and aesthetic criticism applied. May be taken for credit six times. ","edges_from":[5020],"edges_to":[],"id":5019,"label":"TDMV 111","title":"Advanced Ballet (4)"},{"dept":"TDMV","description":"","edges_from":[2492],"edges_to":[5019],"id":5020,"label":"TDMV 110","title":""},{"dept":"MGT","description":"Introduces advanced topics of special interest in business and addresses the new frontiers in the industry. Topics may include intellectual property, consumer behavior, market research, analytics, and spreadsheet modeling, etc. May be taken for credit three times. Instructional methods include face-to-face lecture, case presentation, assigned reading, and group discussion. ","edges_from":[],"edges_to":[],"id":5021,"label":"MGT 119","title":"Topics in Business (4)"},{"dept":"HILA","description":"Selected topics in Latin American history. Course may be taken for credit up to three times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in HILA 144 will have the duplicate credit removed from their academic record.","edges_from":[],"edges_to":[],"id":5022,"label":"HILA 144","title":"Topics in Latin American History (4)"},{"dept":"Jewish","description":"199. Independent Study in Jewish Studies (1-4)","edges_from":[],"edges_to":[],"id":5023,"label":"Jewish Studies","title":""},{"dept":"HIGR","description":"Provides instruction in academic professionalization, including qualifying exams; prospectus/grant writing; conference presentations; publishing articles/books; job market; and tenure review. Weekly readings, writing assignments, discussion, and peer review develop skills necessary for success as graduate students and future faculty.","edges_from":[],"edges_to":[],"id":5024,"label":"HIGR 208","title":"Graduate Professional Development (4)"},{"dept":"MGT","description":"Focuses on elements of business law that are essential for the basic management of business operations. Topics include the law of contracts, sales, partnership, corporations, bankruptcy, and securities. Students will also gain knowledge of intellectual property law and dispute resolution. ","edges_from":[],"edges_to":[],"id":5025,"label":"MGT 117","title":"Business Law (4)"},{"dept":"MAE","description":"(Cross-listed with Physics 151.) Particle","edges_from":[],"edges_to":[],"id":5026,"label":"MAE 117A","title":"Elementary Plasma Physics (4)"},{"dept":"HIGR","description":"Readings and critical analysis of selected topics and important works in the history of Spain. May be repeated as content changes. Proficiency in Spanish required to repeat course, but not for first time taken. An IP grade will be awarded at the end of the first quarter. Final grade will not be given until the end of the second quarter.","edges_from":[],"edges_to":[],"id":5027,"label":"HIGR 227A-B","title":"Seminar in Spanish History (4-4)"},{"dept":"MGT","description":"Will examine the advantages and complications of the multinational organization with emphasis on translating marketing, financing, and operating plans in light of geographical, cultural, and legal differences across the globe. Will also cover organizational considerations for transglobal management. ","edges_from":[1004,3118,686],"edges_to":[],"id":5028,"label":"MGT 112","title":"Global Business Strategy (4)"},{"dept":"ESYS","description":"Individually guided readings or projects in the area of environmental systems. #EndEditable","edges_from":[],"edges_to":[],"id":5029,"label":"ESYS 199","title":"Independent Study (2-4)"},{"dept":"EDS","description":"Talking Culture, Culture Talking: Voices of Diversity (4)","edges_from":[],"edges_to":[],"id":5030,"label":"EDS 278/COGR 278","title":""},{"dept":"GPPS","description":"This course investigates how the public forms opinions about foreign policy and the various means, both direct and indirect, through which public opinion can influence the policy-making process. We consider such issues as: How does the public learn about foreign policy? Do they care about it? If so, under what circumstances will political leaders be responsive to the public’s preferences? Do politics really stop at the water’s edge? Should public opinion have a role in foreign policy? May not receive credit for GPPS 451 and the IRGN 490 with the same course title.","edges_from":[],"edges_to":[],"id":5031,"label":"GPPS 451","title":"Public Opinion and Foreign Policy (4)"},{"dept":"GPPS","description":"The course is designed to develop the analytical tools to assess how foreign aid is allocated and whether it is effective. We will ask the following key questions: (1) Why do states give foreign aid?; (2) Is foreign aid effective?; (3) How do donors allocate foreign aid?; (4) What are the differences between bilateral and multilateral aid?; and, (5) Are there unintended consequences of foreign aid? The readings will consist of both seminal and recent works in political science and economics. May not receive credit for GPPS 450 and the IRGN 490 with the same course title.","edges_from":[],"edges_to":[],"id":5032,"label":"GPPS 450","title":"The Political Economy of Foreign Aid (4)"},{"dept":"GPPS","description":"This course investigates both the risks and the institutional and political underpinnings of financial deepening and financial repression in China. Students will keep track of the latest financial developments in China and learn to predict which will have consequences for the future evolution of the Chinese financial system. Renumbered from IRGN 455. Students may not receive credit for GPPS 455 and IRGN 455.","edges_from":[],"edges_to":[],"id":5033,"label":"GPPS 455","title":"Financing the Chinese Miracle (4)"},{"dept":"GPPS","description":"Issues to be actively debated include the collective defense of democracy, coping with revolutionary change, counter-narcotics, anti-corruption, international finance, trade, and US-Mexican and US-Brazilian relations. In each case, students analyze the strengths and weaknesses of current US policy and advocate alternative options. Renumbered from IRGN 454. Students may not receive credit for GPPS 454 and IRGN 454.","edges_from":[],"edges_to":[],"id":5034,"label":"GPPS 454","title":"Current Issues in US-Latin American Relations (4)"},{"dept":"GPPS","description":"Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 456. Students may not receive credit for GPPS 456 and IRGN 456.","edges_from":[],"edges_to":[],"id":5035,"label":"GPPS 456","title":"Program Design and Evaluation (4)"},{"dept":"HITO","description":"Sources for reconstructing ancient history present special challenges. Introduce and examine critically some basic myths and chronicles of the eastern Mediterranean and ancient Near East and assess the challenges to today’s historian in reconstructing these histories.","edges_from":[],"edges_to":[],"id":5036,"label":"HITO 115S","title":"Myth, History, and Archaeology (4)"},{"dept":"ESYS","description":"Earth’s dynamic physical systems interact in complex ways with profound impact on our environment. Processes such as volcanism and weathering enable geochemical exchange between solid and fluid (ocean and atmosphere) systems. Sea level and climate changes interface with tectonic processes. ","edges_from":[129,130,1059,29,1318],"edges_to":[],"id":5037,"label":"ESYS 102","title":"The Solid and Fluid Earth (4)"},{"dept":"HIUS","description":"United States in the Twentieth Century, 1945 to the Present (4)","edges_from":[],"edges_to":[],"id":5038,"label":"HIUS 142B","title":""},{"dept":"HIUS","description":"United States in the Twentieth Century, 1900–1945 (4)","edges_from":[],"edges_to":[],"id":5039,"label":"HIUS 142A","title":""},{"dept":"HINE","description":"Examines the contacts of the late Ottoman","edges_from":[],"edges_to":[],"id":5040,"label":"HINE 116","title":"The Middle East in the Age of European Empires (1798–1914) (4)"},{"dept":"PSYC","description":"This course takes a critical approach to the scientific evidence regarding the role of parents in child development. Topics may include behavior genetics, discipline, diet, sleep, the nature of learning, screen time, impulse control, and vaccination. ","edges_from":[],"edges_to":[],"id":5041,"label":"PSYC 190","title":"Science of Parenting (4)"},{"dept":"ANTH","description":"This seminar studies the dynamics of climate change and human responses through time. Topics include research methods in socioecodynamics, human responses to change in different sociopolitical and economic contexts, and lessons from the past that can inform the present. Students may not receive credit for ANTH 270 and SIOG 270. ","edges_from":[],"edges_to":[],"id":5042,"label":"ANTH 270","title":"The Archaeology of Climate Change—Social Adaptation and Vulnerability in Temporal Perspective (4)"},{"dept":"POLI","description":"This course covers advanced topics in the design and implementation of field surveys and interviews. Questionnaire design and survey techniques for sensitive topics such as list experiments will be developed, as well as sampling methodologies to achieve representivity.","edges_from":[],"edges_to":[],"id":5043,"label":"POLI 275","title":"Interviews, Survey Design, and Sampling (4)"},{"dept":"COGR","description":"The visual is an increasingly important component of communication in everyday life. This course covers post-1968 theories of visual culture in domains such as art, film, news, the media, popular culture, medicine, sciences, and many other aspects of everyday life. ","edges_from":[],"edges_to":[],"id":5044,"label":"COGR 248","title":"Visual Culture (4)"},{"dept":"POLI","description":"Use of advanced quantitative techniques in political science. Students will use political science data to complete small exercises and a major project. Students may not receive credit for both 271B and 271. ","edges_from":[],"edges_to":[],"id":5045,"label":"POLI 271","title":"Advanced Statistical Applications (4)"},{"dept":"POLI","description":"This course reviews essential calculus and linear algebra and introduces probability theory (probability rules, random variables, univariate and multivariate distributions) and mathematical statistics (sampling distributions, estimation and inference frameworks). ","edges_from":[],"edges_to":[],"id":5046,"label":"POLI 270","title":"Mathematical and Statistical Foundations (4)"},{"dept":"POLI","description":"This course covers designs and methods of causal inference, including randomized experiments, cross-sectional and longitudinal designs, and other tools such as sensitivity analysis and randomization inference. These methods are illustrated with examples in political science and positive political economy. ","edges_from":[],"edges_to":[],"id":5047,"label":"POLI 273","title":"Causal Inference (4)"},{"dept":"POLI","description":"Provides students a solid understanding of Bayesian inference and Markov chain Monte Carlo methods. Topics covered include Bayesian treatment of the linear model, Markov chain Monte Carlo methods, assessing model adequacy, and hierarchical models. ","edges_from":[],"edges_to":[],"id":5048,"label":"POLI 272","title":"Bayesian Methods (4)"},{"dept":"MUS","description":"Concentrated inquiry into various problems not covered in the usual undergraduate courses. ","edges_from":[],"edges_to":[],"id":5049,"label":"MUS 198","title":"Directed Group Study (1–4)"},{"dept":"POLI","description":"This course offers selected topics in quantitative methodology. Content may vary each time the course is offered. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5050,"label":"POLI 279","title":"Special Topics in Methodology (4)"},{"dept":"POLI","description":"This course introduces the formal literature on economic models of voting and electoral politics. It reviews models that look at elections as I) mechanisms for preference aggregation, II) mechanisms for information aggregation, and III) mechanisms for selecting and incentivizing politicians. ","edges_from":[],"edges_to":[],"id":5051,"label":"POLI 278","title":"Political Economy Models of Elections (4)"},{"dept":"PHYS","description":"From time to time a member of the regular faculty or a resident visitor will give a self-contained short course on a topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. Course may be taken for credit up to two times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in Physics 139 will have the duplicate credit removed from their academic record. ","edges_from":[129,36,133,134,33,40,41,138,139,140,141,37,38,29,30,31],"edges_to":[],"id":5052,"label":"PHYS 139","title":"Physics Special Topics (4)"},{"dept":"CSE","description":"This course provides an introduction to bioinformatics techniques for analyzing and interpreting human genomes. Topics covered include an introduction to medical and population genetics, ancestry, finding and interpreting disease-causing variants, genome-wide association studies, genetic risk prediction, analyzing next-generation sequencing data, how to scale current genomics techniques to analyze hundreds of thousands of genomes, and the social impact of the personal genomics revolution. Programming experience, familiarity with the UNIX command line, and a basic course in probability and statistics are strongly recommended. Students may not receive credit for CSE 284 and CSE 291 (E00) taught winter 2017 with the same subtitle. ","edges_from":[],"edges_to":[],"id":5053,"label":"CSE 284","title":"Personal Genomics for Bioinformaticians (4)"},{"dept":"ANTH","description":"This seminar will review a series of current or recent significant debates in anthropology. The debates will be examined in the light of their substantive, theoretical, and epistemological implications, with some attention to the rhetorical elements of the arguments themselves. ","edges_from":[5055],"edges_to":[],"id":5054,"label":"ANTH 274","title":"Debates in Anthropology (4)"},{"dept":"ANGR","description":"","edges_from":[],"edges_to":[5054],"id":5055,"label":"ANGR 274","title":""},{"dept":"ETHN","description":"This course provides an introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization. In addition to a wide-ranging look at the complex foundations of systems of representing Indians and Indianness, the course includes a study of a specific art form and history of a specific Native American community that will allow the class to create new approaches to designing a museum exhibition. May be coscheduled with ETHN 114A.","edges_from":[],"edges_to":[5816],"id":5056,"label":"ETHN 214A","title":"Representing Native America (4)"},{"dept":"PHYS","description":"A project-oriented laboratory course utilizing state-of-the-art experimental techniques in materials science. The course prepares students for research in a modern condensed matter-materials science laboratory. Under supervision, the students develop their own experimental ideas after investigating current research literature. With the use of sophisticated state-of-the-art instrumentation students conduct research, write a research paper, and make verbal presentations. Program or materials fees may apply. ","edges_from":[443,446],"edges_to":[],"id":5057,"label":"PHYS 133","title":"Condensed Matter/Materials Science Laboratory (4)"},{"dept":"PHYS","description":"Quantum mechanics and gravity. Electromagnetism from gravity and extra dimensions. Unification of forces. Quantum black holes. Properties of strings and branes. ","edges_from":[200,5059,5060],"edges_to":[],"id":5058,"label":"PHYS 137","title":"String Theory (4)"},{"dept":"PHYS","description":"","edges_from":[129,36,133,134,135,136,41,138,139,140,141,385,37,38,29,30,31],"edges_to":[200,5058,5115,5819],"id":5059,"label":"PHYS 110A","title":""},{"dept":"PHYS","description":"","edges_from":[129,36,133,134,135,136,41,138,139,140,141,385,37,38,29,30,31],"edges_to":[200,5233,5058,5819,294],"id":5060,"label":"PHYS 100A","title":""},{"dept":"HILD","description":"Explores the history of public health, from the plague hospitals of Renaissance Italy to the current and future prospects for global health initiatives, emphasizing the complex biological, cultural, and social dimensions of health, sickness, and medicine across time and space.","edges_from":[],"edges_to":[],"id":5061,"label":"HILD 30","title":"History of Public Health (4)"},{"dept":"COMM","description":"Using classic and modern texts, the course explores fundamental questions of law and political theory: What are rights and where do they come from? What is the balance between freedom and equality, between individual and common goods? These theoretical explorations are then oriented to specifically communication concerns: What is the relationship between privacy and personhood? Between free speech and democracy? Between intellectual property and efficient markets? ","edges_from":[540],"edges_to":[],"id":5062,"label":"COMM 114M CSI: Communication and the Law (4)","title":""},{"dept":"EDS","description":"Reading, writing, and speaking exercises will introduce students to the teaching conventions and learning expectations of American universities. Students will use writing as a means of academic inquiry to explore the culture of higher education in the United States and will gain practice with appropriate style, structure, and mechanics. P/NP grades only. ","edges_from":[],"edges_to":[],"id":5063,"label":"EDS 21S","title":"Writing and Learning—Triton Transition (4)"},{"dept":"MATH","description":"Methods in Physics and Engineering (4)","edges_from":[],"edges_to":[5794],"id":5064,"label":"MATH 210A","title":"Mathematical"},{"dept":"MATH","description":"Methods in Physics and Engineering (4)","edges_from":[],"edges_to":[5794],"id":5065,"label":"MATH 210B","title":"Mathematical"},{"dept":"POLI","description":"Political Parties and Interest Groups (4)","edges_from":[],"edges_to":[],"id":5066,"label":"POLI 137A","title":"Comparative"},{"dept":"PHYS","description":"Transport phenomena; kinetic theory and the Chapman-Enskog method; hydrodynamic theory; nonlinear effects and the mode coupling method. Stochastic processes; Langevin and Fokker-Planck equation; fluctuation-dissipation relation; multiplicative processes; dynamic field theory; Martin-Siggia-Rose formalism; dynamical scaling theory. ","edges_from":[2974],"edges_to":[],"id":5067,"label":"PHYS 210B","title":"Nonequilibrium Statistical Mechanics (4)"},{"dept":"HIUS","description":"An overview of the social and political developments that polarized American society in the tumultuous decade of the 1960s. Themes include the social impact of the postwar baby boom, the domestic and foreign policy implications of the Cold War; the evolution of the civil rights and women’s movements; and the transformation of American popular culture.","edges_from":[],"edges_to":[],"id":5068,"label":"HIUS 149","title":"The United States in the 1960s (4)"},{"dept":"Linguistics/Arabic","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1D. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ","edges_from":[3249,3250],"edges_to":[],"id":5069,"label":"Linguistics/Arabic (LIAB) 1DX","title":"Analysis of Arabic (2.5)"},{"dept":"PSYC","description":"This seminar provides an overview of the past and current research on the neurobiology of actions in normal and diseased states such as addiction, Parkinson’s, and other psychiatric disorders. ","edges_from":[],"edges_to":[],"id":5070,"label":"PSYC 268","title":"Neurobiology of Action (4)"},{"dept":"HIUS","description":"Selected topics in US history. Course may be taken for credit up to three times as topics vary.","edges_from":[],"edges_to":[],"id":5071,"label":"HIUS 144","title":"Topics in US History (4)"},{"dept":"HIUS","description":"This course will examine the economic, social, and political changes underway in the United States from 1917 to 1945. Topics will include the 1920s, the Great Depression, the New Deal and the consequences of two World Wars.","edges_from":[],"edges_to":[],"id":5072,"label":"HIUS 145","title":"From New Era to New Deal (4)"},{"dept":"PSYC","description":"Concentrates on what psychology has to contribute to the understanding of illness, its treatment, and the social context in which these processes occur. Topics: psychological factors in the etiology and treatment of illness, doctor-patient roles, and communication. ","edges_from":[],"edges_to":[],"id":5073,"label":"PSYC 265","title":"Social Psychology and Medicine (4)"},{"dept":"PSYC","description":"This graduate seminar addresses the science behind mindfulness. Topics include the effects of mindfulness practice on neural processing, psychological well-being, and prosocial behavior. A particular emphasis will be placed on the implications of mindfulness practices/effects on society and education. ","edges_from":[],"edges_to":[],"id":5074,"label":"PSYC 263","title":"Science of Mindfulness (4)"},{"dept":"PSYC","description":"The vertebrate brain contains a network of strongly interconnected structures that play essential roles in the regulation of social behavior. In this seminar we will read and discuss primary literature that details the structure and behavioral functions of this network.","edges_from":[],"edges_to":[],"id":5075,"label":"PSYC 262","title":"Functional Construction of the Vertebrate Brain’s Social Behavior Network (4)"},{"dept":"PSYC","description":"This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language. Cross-listed with LIGN 283. ","edges_from":[],"edges_to":[],"id":5076,"label":"PSYC 260","title":"Language and Conceptual Development (4)"},{"dept":"ANSC","description":"This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens’ efforts to promote social change in contemporary democracies. ","edges_from":[],"edges_to":[],"id":5077,"label":"ANSC 142","title":"Anthropology of Latin America (4)"},{"dept":"EDS","description":"Advanced EDS students are prepared in effective methods of supervising the preparation of UC San Diego students serving as paraprofessionals in K–12 classrooms. Topics covered include: classroom management, interpersonal relations, supervision techniques, multicultural and multilingual education, politics in the school, and curriculum development. Each student serves as a discussion leader and conducts at least two workshops. ","edges_from":[],"edges_to":[],"id":5078,"label":"EDS 195","title":"Apprentice Teaching (2–4)"},{"dept":"ANSC","description":"Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections—against genocide, torture, enslavement, political persecution, etc.—and their violation, from the early Cold War to the present. Students may not receive credit for both ANSC 140 and HMNR 101. ","edges_from":[],"edges_to":[],"id":5079,"label":"ANSC 140","title":"Human Rights II: Contemporary Issues (4)"},{"dept":"NEU","description":"Issues and Dilemmas in Clinical Trials (2)","edges_from":[],"edges_to":[],"id":5080,"label":"NEU 285","title":"Clinical Trails:"},{"dept":"NEU","description":"This intensive writing course offers graduate students in the neurosciences the opportunity to propose and defend an original research project. Students are required to select a research problem in the neurosciences and propose and experimental approach for solving it. ","edges_from":[],"edges_to":[],"id":5081,"label":"NEU 280","title":"Minor Proposition (4)"},{"dept":"CHEM","description":"A chemical perspective of the origin and evolution of the biogeochemical systems of stars, elements, and planets through time. The chemical evolution of the earth, its atmosphere, and oceans, and their historical records leading to early life are discussed. The content includes search techniques for chemical traces of life on other planets. ","edges_from":[578,215],"edges_to":[],"id":5082,"label":"CHEM 111","title":"Origins of Life and the Universe (4)"},{"dept":"COMM","description":"Specialized advanced study in cultural production with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ","edges_from":[537,538,539,540],"edges_to":[],"id":5083,"label":"COMM 146","title":"Advanced Topics in Cultural Production (4)"},{"dept":"HIEA","description":"Introduction to material culture in China from a historical perspective. Consider Chinese primary sources (including both historical texts and objects) from the point of view of the new interdisciplinary field of material culture studies. +","edges_from":[],"edges_to":[],"id":5084,"label":"HIEA 128","title":"History of Material Culture in China (4)"},{"dept":"RELI","description":"This course will look at the relationship between information communication technologies (ICTs) and religion and how they have intersected or diverged in the course of history. We will look at both older and newer media, such as telegraph, radio, television, cassette tapes, Internet and satellite, and how they have been used by groups like Evangelical, Catholic, or Islamist movements in proliferation and transformation of ideas, rituals, ideologies, values, and diverse forms of sociability. ","edges_from":[],"edges_to":[],"id":5085,"label":"RELI 145","title":"Communication, Technology, and Religion (4)"},{"dept":"MGT","description":"Introduces advanced topics of special interest in marketing. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 489 and MGT 209 if the course has the same course subtitle. They are course equivalents. ","edges_from":[],"edges_to":[],"id":5086,"label":"MGT 489","title":"Topics in Marketing (2 or 4)"},{"dept":"CHEM","description":"A discussion of the chemistry of representative enzyme catalyzed reactions","edges_from":[],"edges_to":[],"id":5087,"label":"CHEM 116","title":"Chemistry of Enzyme Catalyzed Reactions (4)"},{"dept":"HIEA","description":"We read primary and secondary sources to explore the experiences, worldview, and relationships of Ming men and women, variously including emperors and empresses, scholar-officials, upper-class wives, merchants, weavers, painters, eunuchs, Daoists, fighting monks, farmers, actors, gardeners, courtesans, soldiers, and pirates. +","edges_from":[],"edges_to":[],"id":5088,"label":"HIEA 124","title":"Life in Ming China (1369–1644) (4)"},{"dept":"CHEM","description":"A survey of the biochemical action of drugs and toxins as well as their","edges_from":[],"edges_to":[],"id":5089,"label":"CHEM 118","title":"Pharmacology and Toxicology (4)"},{"dept":"HIEA","description":"Silk Road in Chinese and Japanese History (4)","edges_from":[],"edges_to":[],"id":5090,"label":"HIEA 126","title":"The"},{"dept":"ANSC","description":"This course addresses: 1) Diversity among traditional Native American cultures with respect to social organization, religion, environmental adaptation, subsistence, and reaction to colonial conquest and domination; and, 2) Contemporary social issues including tribal sovereignty, religious freedom, health, education, gambling, and repatriation of artifacts/remains. ","edges_from":[],"edges_to":[],"id":5091,"label":"ANSC 145","title":"Indigenous Peoples of North America (4)"},{"dept":"HIEA","description":"Chinese Philosophy and Culture (4)","edges_from":[],"edges_to":[],"id":5092,"label":"HIEA 120","title":"Classical"},{"dept":"HIEA","description":"This course covers the period from the sixth century to the thirteenth century, the time of the glorious T’angand Sung dynasties. We focus on the “medieval revolution” that changed the political, economic, and social life of the empire. As much as possible, we study these changes from the eyes of the people who lived throughout them—aristocrats, peasants, soldiers, merchants, women.","edges_from":[],"edges_to":[],"id":5093,"label":"HIEA 121","title":"Medieval Chinese Culture and Society (4)"},{"dept":"HIEA","description":"Imperial Chinese Culture and Society (4)","edges_from":[],"edges_to":[],"id":5094,"label":"HIEA 122","title":"Late"},{"dept":"HIEA","description":"Ming history from its beginnings under Mongol rule until its fall to rebels and the Manchus. We study government and society under each of the sixteen emperors, and major events like the Zheng He voyages and the first Sino-Japanese War. Recommended preparation: HILD 11. +","edges_from":[],"edges_to":[],"id":5095,"label":"HIEA 123","title":"China under the Ming Dynasty (1368–1644) (4)"},{"dept":"HIEU","description":"This course examines Constantinople in its imperial period (Byzantine and Ottoman) when it served as the political, cultural, economic, and religious center of empire. We examine continuity and change in areas such as urban space, demography, institutions, and art and architecture. Students must apply and be accepted into the Global Seminar Program.","edges_from":[],"edges_to":[],"id":5096,"label":"HIEU 106GS","title":"Constantinople: Imperial Capital (4)"},{"dept":"HIEU","description":"An analysis of European history since the end of the Second World War. Focus is on political, social, economic, and cultural developments within European societies as well as on Europe’s relationship with the wider world (the Cold War, decolonization).","edges_from":[],"edges_to":[],"id":5097,"label":"HIEU 128","title":"Europe since 1945 (4)"},{"dept":"LHCO","description":"The survey course introduces students to the relationship of law to health care, including liability, government regulation, financial and ethical issues, contracting, and negotiation and dispute resolution. The course will incorporate the most current trends related to health law and feature guest speakers on relevant topics. ","edges_from":[],"edges_to":[],"id":5098,"label":"LHCO 220","title":"Topics in Health Law (2)"},{"dept":"ECE","description":"This course is designed to provide a treatise of semiconductor devices based on solid state phenomena. Band structures carrier scattering and recombination processes and their influence on transport properties will be emphasized. (Recommended prerequisites: ECE 230A or equivalent.) ","edges_from":[4101],"edges_to":[],"id":5099,"label":"ECE 230C","title":"Solid State Electronics III (4)"},{"dept":"HISC","description":"A cultural history of the formation of early modern science in the sixteenth and seventeenth centuries: the social forms of scientific life; the construction and meaning of the new cosmologies from Copernicus to Newton; the science of politics and the politics of science; the origins of experimental practice; how Sir Isaac Newton restored law and order to the West. +","edges_from":[],"edges_to":[],"id":5100,"label":"HISC 106","title":"The Scientific Revolution (4)"},{"dept":"LTCO","description":"Contemporary theories of the significance of literary form. The seminar will concentrate on major interpretive approaches drawn from several areas of literary, cultural, and political analysis, including Marxist theory, feminism, psychoanalytic theory, postcolonial studies, LGBT studies, diaspora studies, and others. The particular focus and approach may vary. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department. Nongraduate students may enroll with consent of instructor.","edges_from":[],"edges_to":[],"id":5101,"label":"LTCO 201","title":"Theories and Methods of Literary Analysis (4)"},{"dept":"SE","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. ","edges_from":[],"edges_to":[],"id":5102,"label":"SE 87","title":"Freshman Seminar (1)"},{"dept":"ECE","description":"Convolutional codes, maximum-likelihood (ML) decoding, maximum a-posteriori (MAP) decoding, parallel and serial concatenation architectures, turbo codes, repeat-accumulate (RA) codes, the turbo principle, turbo decoding, graph-based codes, message-passing decoding, low-density parity check codes, threshold analysis, applications. Students who have taken ECE 259BN may not receive credit for ECE 259B. (Recommended prerequisites: ECE 154A-B-C.) ","edges_from":[2173],"edges_to":[],"id":5103,"label":"ECE 259B","title":"Probabilistic Coding (4)"},{"dept":"LIGN","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":5104,"label":"LIGN 87","title":"Freshman Seminar (1)"},{"dept":"ECE","description":"Design of power amplifiers for mobile terminals and base-stations, with emphasis on high linearity and efficiency. After a discussion of classical designs (Class A, AB, B, C, D, E, F, and S), linearization procedures are presented and composite architectures (envelope tracking, EER, and Doherty) are covered. Familiarity with basic microwave design and communication system architecture is assumed. (Recommended prerequisites: ECE 166.) ","edges_from":[4102],"edges_to":[],"id":5105,"label":"ECE 265C","title":"Power Amplifiers for Wireless Communications (4)"},{"dept":"CAT","description":"to Special Projects/Topics (2 or 4)","edges_from":[],"edges_to":[],"id":5106,"label":"CAT 24","title":"Introduction"},{"dept":"TDGR","description":"This seminar focuses on the specific considerations that support and sustain a professional career as a contemporary dance maker and performer. S/U grades only. ","edges_from":[],"edges_to":[],"id":5107,"label":"TDGR 218A","title":"Professional Practices (4)"},{"dept":"FMPH","description":"This is the second of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will interpret and contextualize findings from their projects completed in the first part of the series. Oral and written presentations will focus on disseminating public health information in diverse formats.Must be taken for a letter grade to be applied to the public health major. ","edges_from":[1024,1025,1026,1027,1028,1029,4654],"edges_to":[],"id":5108,"label":"FMPH 194","title":"Public Capstone II (4)"},{"dept":"HIGR","description":"This course will introduce students to the monographic literature and the main historiographic controversies of modern Korean history.","edges_from":[],"edges_to":[],"id":5109,"label":"HIGR 214","title":"Historical Scholarship on Modern Korean History (4)"},{"dept":"CENG","description":"Introduction to nanomedicine; diffusion and","edges_from":[],"edges_to":[],"id":5110,"label":"CENG 207","title":"Nanomedicine (4)"},{"dept":"HIGR","description":"Scholarship on Modern East Asian History (4)","edges_from":[],"edges_to":[],"id":5111,"label":"HIGR 212","title":"Historical"},{"dept":"HIGR","description":"Scholarship on Modern Japanese History (4)","edges_from":[],"edges_to":[],"id":5112,"label":"HIGR 211","title":"Historical"},{"dept":"HIGR","description":"Scholarship on Modern Chinese History (4)","edges_from":[],"edges_to":[],"id":5113,"label":"HIGR 210","title":"Historical"},{"dept":"GLBH","description":"Course will be a workshop with critical input from all participants focused on preparing a senior thesis. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ","edges_from":[345],"edges_to":[],"id":5114,"label":"GLBH 150B","title":"Global Health Capstone Seminar II (4)"},{"dept":"PHYS","description":"Noninertial reference systems, dynamics of rigid bodies, Hamilton’s equations, Liouville’s theorem, chaos, continuum mechanics, special relativity. ","edges_from":[385,5059,133,134,129,136,138,135,140,141,139],"edges_to":[5436],"id":5115,"label":"PHYS 110B","title":"Mechanics II (4)"},{"dept":"CENG","description":"Basic engineering principles of nanofabrication.","edges_from":[],"edges_to":[],"id":5116,"label":"CENG 208","title":"Nanofabrication (4)"},{"dept":"CHEM","description":"(Conjoined with CHEM 255.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper/exam. (May not be offered every year.) ","edges_from":[2067,2068],"edges_to":[],"id":5117,"label":"CHEM 155","title":"Synthesis of Complex Molecules (4)"},{"dept":"CHEM","description":"A comprehensive survey of modern bioorganic and natural products chemistry. Topics will include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 257. ","edges_from":[1552,1553,1554,1555],"edges_to":[],"id":5118,"label":"CHEM 157","title":"Bioorganic and Natural Products Chemistry (4)"},{"dept":"EDS","description":"Examines the underlying mathematical concepts of the elementary school mathematics curriculum and related pedagogical implications for teaching. Topics include number concepts, algebraic thinking, geometry, and data collection and analysis. ","edges_from":[],"edges_to":[],"id":5119,"label":"EDS 385","title":"Elementary School Mathematics Content and Pedagogy (4)"},{"dept":"EDS","description":"This course satisfies the Commission on Teacher Credentialing requirements for Special Education. Topics include: teaching methods for accommodating special-needs students in the regular classroom, developing an Individual Education Plan, characteristics of special-needs students, lesson planning to accommodate individual differences, and legislated mandates. ","edges_from":[],"edges_to":[],"id":5120,"label":"EDS 382","title":"Inclusive Educational Practices (4)"},{"dept":"EDS","description":"This course satisfies the Commission on Teacher Credentialing requirement for Health Education. Topics include: physical education, substance abuse, sex education, cardio-pulmonary resuscitation, nutrition, and first aid. ","edges_from":[],"edges_to":[],"id":5121,"label":"EDS 381","title":"Health Education (4)"},{"dept":"ECE","description":"Advanced topics in design practices and methodologies for modern system-on-chip design. Different design alternatives are introduced and analyzed. Advanced design tools are used to design a hardware-software system. Class discussion, participation, and presentations of projects and special topics assignments are emphasized. ","edges_from":[4969],"edges_to":[],"id":5122,"label":"ECE 260C","title":"VLSI Advanced Topics (4)"},{"dept":"CSE","description":"Companion course to CSE 4GS where theory is applied and lab experiments","edges_from":[],"edges_to":[],"id":5123,"label":"CSE 6GS","title":"Mathematical Beauty in Rome Lab (4)"},{"dept":"CENG","description":"Principles of chemical process design and","edges_from":[],"edges_to":[],"id":5124,"label":"CENG 124A","title":"Chemical Plant and Process Design I (4)"},{"dept":"MGTF","description":"This course is aimed at developing analytical and transferable skills in the area of management of monetary policy and banking and nonbanking financial institutions, issues of credit and financial regulation. Making the connection with real life is the primary focus of this course. ","edges_from":[],"edges_to":[],"id":5125,"label":"MGTF 420","title":"Money and Banking (4)"},{"dept":"SE","description":"This course will treat quantitative aspects of the flow of uncontaminated groundwater as it influences the practice of geotechnical engineering. We will cover flow through porous media, generalized Darcy’s law, groundwater modeling, confined and unconfined systems, well hydraulics, land subsidence, and construction dewatering. ","edges_from":[2614],"edges_to":[],"id":5126,"label":"SE 226","title":"Geotechnical Groundwater Engineering (4)"},{"dept":"AUD","description":"This course describes procedures and requirements for newborn hearing screening, and the detection and clinical management of congenital auditory disorders. Observations of newborn screening in a neonatal ICU environment. ","edges_from":[],"edges_to":[],"id":5127,"label":"AUD 270","title":"Newborn Hearing Screening and Management (3)"},{"dept":"AUD","description":"Detailed anatomy of the temporal bone, cranial nerves and basic neurophysiology for audiologists. Radiographic and magnetic resonance imaging of the temporal bone will be discussed. ","edges_from":[],"edges_to":[],"id":5128,"label":"AUD 271","title":"Temporal Bone Anatomy (3)"},{"dept":"VIS","description":"Film/video production will be framed through the script writing process, focusing on the problems of longer duration, density, and adaptation from other media. Students will both read and analyze both historical and contemporary scripts and produce a thirty- to sixty-minute script. Recommended preparation: VIS 177 Scripting Strategies. Two production-course limitation. ","edges_from":[561,562,563,564,565,566,567,568],"edges_to":[],"id":5129,"label":"VIS 184","title":"Advanced Scripting (4)"},{"dept":"VIS","description":"Through instruction and discussion, the class will focus on guiding students through advanced production on a senior project. Students will be expected to initiate and complete production on at least one portfolio-level project. May be taken for credit two times. Two production-course limitation. ","edges_from":[561,562,563,564,565,566,567,568],"edges_to":[],"id":5130,"label":"VIS 185","title":"Senior Media Projects (4)"},{"dept":"NANO","description":"Experimental investigation of physical properties of materials such as: thermal expansion coefficient, thermal conductivity, glass transitions in polymers, resonant vibrational response, longitudinal and shear acoustic wave speeds, Curie temperatures, UV-VIS absorption and reflection. ","edges_from":[4207],"edges_to":[],"id":5131,"label":"NANO 100L","title":"Physical Properties of Materials Lab (4)"},{"dept":"VIS","description":"Advanced course to gain sophisticated control of lighting and sound recording techniques with understanding of theoretical implications and interrelation between production values and subject matter. Interactions between sound and image in various works in film, video, or installation. Two production-course limitation. ","edges_from":[561,562,563,564,565,566,567,568],"edges_to":[],"id":5132,"label":"VIS 181","title":"Sound and Lighting (4)"},{"dept":"VIS","description":"Film/video editing and problems of editing from theoretical and practical points-of-view. Films and tapes analyzed on a frame-by-frame, shot-by-shot basis. Edit stock material and generate own materials for editing final project. Aesthetic and technical similarities/differences of film/video. Recommended preparation: VIS 175 Editing-Theory and Production strongly recommended. Two production-course limitation. ","edges_from":[561,562,563,564,565,566,567,568],"edges_to":[],"id":5133,"label":"VIS 182","title":"Advanced Editing (4)"},{"dept":"CHEM","description":"Continuation of CHEM 43A, 143A, 43AM, and 143AM, emphasizing synthetic methods of organic chemistry. Enrollment is limited to majors in the Department of Chemistry and Biochemistry unless space is available. A materials fee is required. ","edges_from":[1761,4546,4547,4221,3835],"edges_to":[5136],"id":5134,"label":"CHEM 143B","title":"Organic Chemistry Laboratory (4)"},{"dept":"CHEM","description":"Identification of unknown organic compounds by a combination of chemical and physical techniques. This course is intended for chemistry majors only (CH25, CH28, CH31, CH32, CH33, CH34, CH35, CH36, CH37). Program or materials fees may apply. ","edges_from":[1761,4546,4547,4221,3835],"edges_to":[],"id":5135,"label":"CHEM 143C","title":"Organic Chemistry Laboratory (5)"},{"dept":"CHEM","description":"Advanced organic synthesis. Relationships between molecular structure and reactivity using modern synthetic methods and advanced instrumentation. Stresses importance of molecular design, optimized reaction conditions for development of practically useful synthesis, and problem-solving skills. A materials fee is required. ","edges_from":[1552,1553,1554,1555,5134],"edges_to":[],"id":5136,"label":"CHEM 143D","title":"Molecular Design and Synthesis (4)"},{"dept":"BENG","description":"282. Bioinformatics II: Introduction to Bioinformatics Algorithms (4)","edges_from":[],"edges_to":[],"id":5137,"label":"BENG 202/CSE","title":""},{"dept":"MUS","description":"The purpose of this seminar is to bring together performance students, faculty, and guests for discussion, presentation of student and faculty projects, performances by guest artists, and master classes with different members of the performance faculty. ","edges_from":[],"edges_to":[],"id":5138,"label":"MUS 245","title":"Focus on Performance (2)"},{"dept":"PSYC","description":"This course will review the research on delay of gratification. We will cover what makes it in general so tough, what situations make it possible, who can do it, and what the implications of this ability are. We will draw from research in social, personality, and animal psychology as well as economics. ","edges_from":[],"edges_to":[],"id":5139,"label":"PSYC 258","title":"Delay of Gratification (4)"},{"dept":"MATH","description":"A continuation of recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ","edges_from":[679],"edges_to":[],"id":5140,"label":"MATH 160B","title":"Elementary Mathematical Logic II (4)"},{"dept":"ANAR","description":"The archaeological field and laboratory class will take place at Moquegua, Peru. It is an introduction to the research design of interdisciplinary projects, the technique of data collections, the methods of excavation and postexcavation lab work. Course materials fees may apply. ","edges_from":[],"edges_to":[],"id":5141,"label":"ANAR 119S","title":"Archaeological Field and Lab Class (8)"},{"dept":"HIEU","description":"Intellectual History, 1780–1870 (4)","edges_from":[],"edges_to":[],"id":5142,"label":"HIEU 142","title":"European"},{"dept":"HIEU","description":"Intellectual History, 1870–1945 (4)","edges_from":[],"edges_to":[],"id":5143,"label":"HIEU 143","title":"European"},{"dept":"HIEU","description":"This course explores the diverse history of women from the French Revolution to the present, with an emphasis on the variety of women’s experience, the formation of gender identities, and the shifting relationship between gender and power over the course of the modern period. Topics include women and citizenship, science and gender, feminist movements, and the evolution of women’s work.","edges_from":[],"edges_to":[],"id":5144,"label":"HIEU 140","title":"History of Women and Gender in Europe: From the French Revolution to the Present (4)"},{"dept":"HIEU","description":"European imperialism, alliances, and the outbreak of the First World War. The postwar settlement and its breakdown. The advent of Hitler and the disarray of the western democracies. The Second World War and the emergence of the super powers.","edges_from":[],"edges_to":[],"id":5145,"label":"HIEU 141","title":"European Diplomatic History, 1870–1945 (4)"},{"dept":"HIEU","description":"A consideration of the political, social, and cultural crisis that faced Western liberal democracies in the interwar period, with emphasis on the mass movements that opposed bourgeois liberalism from both the left and the right.","edges_from":[],"edges_to":[],"id":5146,"label":"HIEU 146","title":"Fascism, Communism, and the Crisis of Liberal Democracy: Europe 1919–1945 (4)"},{"dept":"HIEU","description":"Selected topics in European history. Course may be taken for credit up to three times as topics vary.","edges_from":[],"edges_to":[],"id":5147,"label":"HIEU 144","title":"Topics in European History (4)"},{"dept":"BENG","description":"Mathematical models of reconstructed reaction networks and simulation of their emergent properties. Classical kinetic theory, stochastic simulation methods and constraints-based models. Methods that are scalable and integrate multiple cellular processes will be emphasized. Existing genome-scale models will be described and computations performed. Emphasis will be on studying the genotype-phenotype relationship in an in silico model driven fashion. Comparisons with phenotypic data will be emphasized. ","edges_from":[5149],"edges_to":[],"id":5148,"label":"BENG 213","title":"Systems Biology and Bioengineering III: Building and Simulating Large-Scale In Silico Models (4)"},{"dept":"BENG","description":"","edges_from":[5150],"edges_to":[5148],"id":5149,"label":"BENG 212","title":""},{"dept":"BENG","description":"","edges_from":[411,2725],"edges_to":[5149],"id":5150,"label":"BENG 211","title":""},{"dept":"POLI","description":"Students conduct directed research as part of a principal investigator’s project and under the supervision of a department mentor. Students may conduct research with a department mentor for up to two quarters. This course is part of the Research Apprenticeship program in political science. P/NP grades only. May be taken for credit two times. ","edges_from":[106],"edges_to":[],"id":5151,"label":"POLI 198RA","title":"Research Apprenticeship (4)"},{"dept":"BIMM","description":"This advanced course covers the application","edges_from":[],"edges_to":[],"id":5152,"label":"BIMM 184","title":"Computational Molecular Biology (4)"},{"dept":"BIMM","description":"This course emphasizes the hands-on application","edges_from":[],"edges_to":[],"id":5153,"label":"BIMM 185","title":"Bioinformatics Laboratory (Advanced) (4)"},{"dept":"MATH","description":"Nonparametrics: tests, regression, density estimation, bootstrap and jackknife. Introduction to statistical computing using S plus. ","edges_from":[],"edges_to":[],"id":5154,"label":"MATH 281C","title":"Mathematical Statistics (4)"},{"dept":"HITO","description":"The course analyzes mutual influences and exchanges between the United States and Germany from the late nineteenth to the mid-twentieth century. Topics include imperialism and racism, social thought and intellectual migration, economic relations, feminism, and youth cultures, war, and occupation. Graduate students must complete an additional paper. ","edges_from":[],"edges_to":[],"id":5155,"label":"HITO 168/268","title":"The U.S. and Germany from the 1890s to the 1960s: Transitional Relations and Competing Modernities (4)"},{"dept":"MDE","description":"Second in a two-quarter series focusing on finalizing and completing a business plan. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of the biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies to finalize your business plan. Students may not receive credit for both MDE 225 and MDE 225B. ","edges_from":[5157],"edges_to":[],"id":5156,"label":"MDE 225B","title":"Biobusiness: Small to Large II (2)"},{"dept":"MDE","description":"","edges_from":[],"edges_to":[5156],"id":5157,"label":"MDE 225A","title":""},{"dept":"CHIN","description":"Intermediate course of Chinese for students with no background.","edges_from":[],"edges_to":[],"id":5158,"label":"CHIN 100BN","title":"Third Year Chinese—Non-native speakers II (4)"},{"dept":"HILA","description":"This course surveys guerrilla movements in Latin America from the Cuban Revolution through the Zapatista movement in Mexico, comparing and contrasting the origins, trajectories, and legacies of armed insurgencies, and focusing on the politics of defining “insurgents,” “revolutionaries,” and “terrorists.”","edges_from":[],"edges_to":[],"id":5159,"label":"HILA 133S","title":"Guerrillas and Revolution in Latin America (4)"},{"dept":"VIS","description":"Directed group study on a topic or in a group field not included in regular department curriculum, by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":5160,"label":"VIS 198","title":"Directed Group Study (2–4)"},{"dept":"USP","description":"In this course, students deepen and apply their knowledge of policy, research, practice, and diverse perspectives on aging. Students participate in collaborative learning and research with local elders, and develop and implement a capstone \"healthy aging project\" in the community. ","edges_from":[3231],"edges_to":[],"id":5161,"label":"USP 141B","title":"Life Course Scholars Capstone Project"},{"dept":"POLI","description":"This course will provide a comparative perspective on the development and functioning of the Italian political system. It includes analysis of political institutions, ideological traditions, parties and elections, political elites in the policy process, and the evolving importance of Italy within European integration.","edges_from":[],"edges_to":[],"id":5162,"label":"POLI 120I","title":"Politics in Italy (4)"},{"dept":"POLI","description":"This course offers a systematic study of civil wars, electoral violence, anti-immigrant violence, genocides, coups, riots, and rebel groups in sub-Saharan Africa. It will explore why some regions experience certain types of violence and others do not.","edges_from":[],"edges_to":[],"id":5163,"label":"POLI 120N","title":"Contention and Conflict in Africa (4)"},{"dept":"HILA","description":"Introduction to the historiography on Latin America for the nineteenth century: world economy, nation-state building, agrarian processes, incipient industrialization, political and cultural thought, and social structure. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ","edges_from":[],"edges_to":[],"id":5164,"label":"HILA 168/268","title":"Scholarship on Latin American History in the Nineteenth Century (4)"},{"dept":"BILD","description":"An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection; HIV testing; education and approaches to therapy; and the social, political, and legal impacts of AIDS on the individual and society. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 36 after receiving credit for BICD 136.","edges_from":[],"edges_to":[],"id":5165,"label":"BILD 36","title":"AIDS Science and Society (4)"},{"dept":"BILD","description":"Introduction to basic human neuroscience leading to a discussion of brain diseases classified under the rubric Dementia. Topics include basic brain structure and function, diseases of the aging brain and their economic, social, political and ethical impacts on society.","edges_from":[],"edges_to":[],"id":5166,"label":"BILD 38","title":"Dementia, Science, and Society (4)"},{"dept":"VIS","description":"Explores the art and expressive culture of American Indians of far western United States, including California and Pacific Northwest. Social and cultural contexts of artistic traditions and their relations to the lifeways, ceremonialism, beliefs, and creative visions of their makers. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126CN and VIS 126HN. ","edges_from":[],"edges_to":[],"id":5167,"label":"VIS 126HN","title":"Pacific Coast American Indian Art (4)"},{"dept":"HIGR","description":"Readings in the historiographical literature on the late Ottoman Empire (eighteenth to twentieth century). ","edges_from":[],"edges_to":[],"id":5168,"label":"HIGR 257A","title":"Historical Scholarship on Modern Middle East, Eighteenth to Twentieth Century (4)"},{"dept":"HIGR","description":"Readings in the historiographical literature on the Middle East in the national/postcolonial eras. ","edges_from":[],"edges_to":[],"id":5169,"label":"HIGR 257C","title":"Historical Scholarship on Modern Middle East, Postcolonial Eras (4)"},{"dept":"HIGR","description":"Historical Scholarship on Modern Middle East, Colonial Period (4)","edges_from":[],"edges_to":[],"id":5170,"label":"HIGR 257B","title":""},{"dept":"POLI","description":"This course introduces students to the comparative study of ethnic politics. It examines the relationships between ethnicity on one hand, and mobilization, political contestation, violence, trust, and pork on the other. It draws from analysis from a variety of contexts and regions, such as sub-Saharan Africa, Eastern Europe, North America, South Asia, and Western Europe. ","edges_from":[],"edges_to":[],"id":5171,"label":"POLI 120Q","title":"Ethnic Politics (4)"},{"dept":"PHIL","description":"Central problems in epistemology such as skepticism; a priori knowledge; knowledge of other minds; self-knowledge; the problem of induction; foundationalist, coherence, and causal theories of knowledge. ","edges_from":[],"edges_to":[],"id":5172,"label":"PHIL 132","title":"Epistemology (4)"},{"dept":"LTFR","description":"Third course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. It also introduces the student to basic techniques of literary analysis. ","edges_from":[4629],"edges_to":[],"id":5173,"label":"LTFR 50","title":"Intermediate French III: Textual Analysis (4)"},{"dept":"SOCI","description":"Course focuses on the different types of social structures and political systems in Latin America. Topics include positions in the world economy, varieties of class structure and ethnic cleavages, political regimes, mobilization and legitimacy, class alignments, reform and revolution. ","edges_from":[5174,5175],"edges_to":[5174],"id":5174,"label":"SOCI 188D","title":"Latin America: Society and Politics (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[5174],"id":5175,"label":"SOCD 188D","title":""},{"dept":"TDMV","description":"The development of contemporary somatic approaches to dance as an expressive medium, emphasizing advanced technical skills, efficient athleticism, kinesthetic refinement, individual creative voice, and performance elements. Choreography and aesthetic concepts will be explored. Incorporates various principles of human movement research. May be taken for credit six times. ","edges_from":[5177],"edges_to":[],"id":5176,"label":"TDMV 122","title":"Advanced Contemporary Dance (4)"},{"dept":"TDMV","description":"","edges_from":[171],"edges_to":[5176],"id":5177,"label":"TDMV 120","title":""},{"dept":"TDMV","description":"Students will study the practice of improvisational dancing with a partner. Students will develop skills in giving and supporting body weight, lifting, balancing, falling, rolling, and recovering fluidly together. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5178,"label":"TDMV 123","title":"Contact Improvisation (4)"},{"dept":"PSYC","description":"Group study under the direction of a faculty member in the Department of Psychology. ","edges_from":[],"edges_to":[],"id":5179,"label":"PSYC 198","title":"Directed Group Study in Psychology (2 or 4)"},{"dept":"HILA","description":"This course surveys the history of the native peoples of Mexico and the Andes from Iberian contact to the late colonial period (1492–1800). It focuses on changes and continuities in postconquest society, exploring topics such as gender, sexuality, and resistance.","edges_from":[],"edges_to":[],"id":5180,"label":"HILA 134","title":"Indians of Colonial Latin America (4)"},{"dept":"HITO","description":"A lecture-discussion course on the philosophical, political, and economic ideas that shaped the Scottish Enlightenment in the eighteenth century, especially the ideas of David Hume, Adam Smith, and John Witherspoon, and their impact upon the American Revolution and the Constitution of the United States.","edges_from":[],"edges_to":[],"id":5181,"label":"HITO 150GS","title":"The Scottish Enlightenment and the Founding of the United States (4)"},{"dept":"VIS","description":"Topics for this seminar concern Native American art history from ancient to contemporary times. Seminars may focus on archaeological and art historical approaches, philosophy and aesthetics, archaeoastronomy, and cultural contexts. Issues of globalization and transculturation may be examined as well. May be taken up to three times for credit. ","edges_from":[],"edges_to":[],"id":5182,"label":"VIS 260","title":"Seminar in North American Indian Art (4)"},{"dept":"HILA","description":"A century of Mexican history, 1821–1924: the","edges_from":[],"edges_to":[],"id":5183,"label":"HILA 131","title":"A History of Mexico (4)"},{"dept":"HILA","description":"The social and political history of twentieth-century Mexico from the outbreak of revolution to the current “war on drugs.” Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS.","edges_from":[],"edges_to":[],"id":5184,"label":"HILA 132","title":"Modern Mexico: From Revolution to Drug War Violence (4)"},{"dept":"LTGM","description":"This course offers an overview of German aesthetic culture in its various forms (literature, film, art, music, and architecture) and methods of analysis. Materials will explore the diversity of aesthetic production from the eighteenth century to the present.","edges_from":[],"edges_to":[],"id":5185,"label":"LTGM 100","title":"German Studies I: Aesthetic Cultures (4)"},{"dept":"ECON","description":"This course focuses on the application of econometric techniques to issues in microeconomics and macroeconomics. The major emphasis in the class is on the completion of an empirical project. ","edges_from":[1311],"edges_to":[],"id":5186,"label":"ECON 220F","title":"Econometrics F (4)"},{"dept":"MGT","description":"Examines the sales function from strategic competitive importance to the firm to required direct sales skills of individual salespersons. Major subject areas covered are: the sales process, recruitment and training, organization and focus, “territories,” evaluation and compensation. ","edges_from":[1004],"edges_to":[],"id":5187,"label":"MGT 106","title":"Sales and Sales Management (4)"},{"dept":"HIGR","description":"Research Seminar in Middle Eastern History (4)","edges_from":[],"edges_to":[],"id":5188,"label":"HIGR 275B","title":""},{"dept":"TWS","description":"In an attempt to explore and study some unique processes and aspects of community life, students will engage in research in field settings. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies.","edges_from":[],"edges_to":[],"id":5189,"label":"TWS 197","title":"Fieldwork (4)"},{"dept":"ECON","description":"Examines time series methods for data analysis with an emphasis on macroeconomic applications. Students are provided with an overview of fundamental time series techniques, hands-on experience in applying them to real-world macroeconomic data, and expertise in performing empirical tests of policy-relevant macroeconomic theories, such as the permanent income hypothesis, the Keynesian fiscal multiplier, and the Phillips curve. ","edges_from":[1290,291,292],"edges_to":[],"id":5190,"label":"ECON 112","title":"Macroeconomic Data Analysis (4)"},{"dept":"GPPS","description":"This course acquaints students with the leading theories on the causes and consequences of civil war since 1945 and the challenges associated with rebuilding social structures after catastrophic collapse. It will also provide a number of hands-on examples of how “new media” work to speed the process of political mobilization, coalition formation, the persistence of clandestine networks, and issues of transparency and translation, with particular implications for urban warfare and insurgency. Renumbered from IRGN 429. Students may not receive credit for GPPS 42 and IRGN 429.","edges_from":[],"edges_to":[],"id":5191,"label":"GPPS 429","title":"Geopolitics, Insurgency, and Weak States (4)"},{"dept":"TWS","description":"Seminars will be organized on the basis of topics with readings, discussions, and papers. Specific subjects to be covered will change each quarter depending on particular interest of instructors or students. May be repeated for credit.","edges_from":[],"edges_to":[],"id":5192,"label":"TWS 190","title":"Undergraduate Seminars (4)"},{"dept":"BILD","description":"Course is designed to assist new freshmen in making a smooth and informed transition from high school. Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problems solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new freshmen.","edges_from":[],"edges_to":[],"id":5193,"label":"BILD 91","title":"Biology Freshmen: Strategies for Success (1)"},{"dept":"GPPS","description":"This course will introduce students to the major techniques for managing international problems through legal and administrative regulation. The class will offer an overview of the main theories relevant to policy, such as the choice and design of treaties and other legal instruments. Cases will be drawn from economics, finance, development, security, human rights, and environment. Renumbered from IRGN 427. Students may not receive credit for IRGN 427 and GPPS 427.","edges_from":[],"edges_to":[],"id":5194,"label":"GPPS 427","title":"International Law and Regulation (4)"},{"dept":"GPPS","description":"This course focuses on the relationships between workers, employers, and governments in global supply chains. How is work and labor regulated in various industries and parts of the world? How has this changed over time? When have workers become important political forces and how have governments and capital owners responded? How and why? What will the future of work look like? May not receive credit for GPPS 420 and the IRGN 490 course with the same title.","edges_from":[],"edges_to":[],"id":5195,"label":"GPPS 420","title":"Workers and Labor in Global Markets (4)"},{"dept":"GPPS","description":"The importance of inequality in income, wealth, and access to resources and opportunities can hardly be overstated. This course has several objectives: (1) to understand the measurement of inequality; (2) to understand the level of inequality in the United States versus other industrialized nations; (3) to see how political scientists and economists understand its causes and effects; (4) to understand why some think inequality is to their advantage; (5) to develop the tools and data for normative evaluations. May not receive credit for GPPS 421 and the IRGN 490 with the same title.","edges_from":[],"edges_to":[],"id":5196,"label":"GPPS 421","title":"The Politics of Economic Inequality (4)"},{"dept":"TWS","description":"Tutorial, individual guided reading and research projects (to be arranged between student and instructor) in an area not normally covered in courses currently being offered in the department. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5197,"label":"TWS 199","title":"Independent Study (2 or 4)"},{"dept":"GPPS","description":"Nongovernmental organizations monitor compliance with norms through shareholder activism, consumer pressures, political protest, creating “brands,” and legal action. Course examines these strategies to determine what works best, and how organizations and individuals can influence corporations to “do the right thing.” Renumbered from IRGN 423. Students may not receive credit for IRGN 423 and GPPS 423.","edges_from":[],"edges_to":[],"id":5198,"label":"GPPS 423","title":"Corporate Social Responsibility (4)"},{"dept":"PSYC","description":"This seminar introduces the various subdisciplines in psychology and their research methods, and also explores career and graduate school opportunities. This includes informal presentations by faculty, graduate students, and other professionals.","edges_from":[],"edges_to":[],"id":5199,"label":"PSYC 90","title":"Undergraduate Seminar (1)"},{"dept":"COGS","description":"Do people who speak different languages think differently? Does learning new languages change the way you think? Are some thoughts unthinkable without language? Course will bring together ideas and findings from psychology, linguistics, anthropology, neuroscience, and philosophy.","edges_from":[],"edges_to":[],"id":5200,"label":"COGS 12","title":"Language, Culture, and Cognition (4)"},{"dept":"COGR","description":"This seminar will introduce key issues and readings in our understanding of time. Time is historical, not natural. We will examine ways that modern time structures and orders human interaction. ","edges_from":[],"edges_to":[],"id":5201,"label":"COGR 284","title":"Time (4)"},{"dept":"CHIN","description":"Continuation of second year of basic Chinese for students with","edges_from":[],"edges_to":[],"id":5202,"label":"CHIN 20BM","title":"Second Year Chinese—Mandarin speakers II (4)"},{"dept":"COGS","description":"This course uses the study of swearing to introduce topics in language: how children learn it, why it changes over time, and how people pronounce and understand it. Students who believe they could be offended by the study of swearing and other taboo language might not find this course appropriate for them.","edges_from":[],"edges_to":[],"id":5203,"label":"COGS 15","title":"What the *#!?: An Uncensored Introduction to Language (4)"},{"dept":"HIEU","description":"For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?","edges_from":[],"edges_to":[],"id":5204,"label":"HIEU 159S","title":"Three Centuries of Zionism 1648–1948 (4)"},{"dept":"CHIN","description":"Continuation of second year of basic Chinese for students with","edges_from":[],"edges_to":[],"id":5205,"label":"CHIN 20BN","title":"Second Year Chinese—Non-native speakers II (4)"},{"dept":"PSYC","description":"Independent study or research under direction of a member of the faculty. May be taken up to three times for a maximum of twelve units. ","edges_from":[],"edges_to":[],"id":5206,"label":"PSYC 99","title":"Independent Study (2 or 4)"},{"dept":"PSYC","description":"This course provides an overview of the psychology of sleep, including sleep stages and their functions, neurological aspects of sleep, sleep across species and development, dreams and their interpretation, sleep disorders, and the role of sleep in learning and memory. ","edges_from":[],"edges_to":[],"id":5207,"label":"PSYC 191","title":"Psychology of Sleep (4)"},{"dept":"BILD","description":"Seminars will introduce students to various professional development topics in the biological sciences. Emphasis may include current research in academe and industry, using campus and community resources to help achieve academic, personal and professional goals, and career exploration. Activities may include presentations by faculty, alumni, and practicing professional biologists, as well as panel discussions with professionals from industry.","edges_from":[],"edges_to":[],"id":5208,"label":"BILD 92","title":"Professional Development Topics in the Biological Sciences (1)"},{"dept":"CHIN","description":"Continuation of second year of basic Chinese for students with","edges_from":[],"edges_to":[],"id":5209,"label":"CHIN 20BD","title":"Second Year Chinese—Dialect speakers II (4)"},{"dept":"COGR","description":"Approaching reading from a historical perspective, the course concentrates on two analytic frames to connect memory to texts: ideas about “the memory palace,” locating memories in things, and figured worlds theory, treating objects as forms of intellectual scaffolding and memory. ","edges_from":[],"edges_to":[],"id":5210,"label":"COGR 282","title":"Reading and Memory (4)"},{"dept":"VIS","description":"This course studies important developments in the arts of China in the context of contemporary cultural phenomena. The factors behind the making of art will be brought to bear on selected objects or monuments from China’s great artistic eras. ","edges_from":[],"edges_to":[],"id":5211,"label":"VIS 114GS","title":"Arts and Visual Culture in China (4)"},{"dept":"HIEU","description":"This course covers the Later Byzantine Empire from the eleventh through the fifteenth century, examining the eleventh century crisis; the rise of the West and the Crusades; the Komnenian revolution; Slavic empires; the Palaiologan Renaissance; Mongols and Ottomans; the Byzantine diaspora. Students cannot receive credit for both HIEU 104 and HIEU 104C. Recommended preparation: HIEU 104A and/or HIEU 104B. +","edges_from":[],"edges_to":[],"id":5212,"label":"HIEU 104C","title":"The Byzantine Empire, 11th–15th centuries (4)"},{"dept":"HIEU","description":"This course covers the Middle Byzantine Empire from the seventh to the eleventh century, examining the impact of Islam; Iconoclasm; the conversion of the Slavs and the rise of Bulgaria and Russia; religious and intellectual developments; court culture and ceremonial. Students cannot receive credit for both HIEU 104 and HIEU 104B. Recommended preparation: HIEU 104A. +","edges_from":[],"edges_to":[],"id":5213,"label":"HIEU 104B","title":"The Byzantine Empire, 7th–11th centuries (4)"},{"dept":"HIEU","description":"This course is devoted to the Early Byzantine Empire from Constantine through the challenges and transformations of the seventh century, examining the rise and triumph of Christianity, war, diplomacy, the rise of Islam, climate change, epidemic and natural disasters. Students cannot receive credit for both HIEU 104 and HIEU 104A. Recommended preparation: HIEU 105. +","edges_from":[],"edges_to":[],"id":5214,"label":"HIEU 104A","title":"The Byzantine Empire, 3rd–7th centuries (4)"},{"dept":"COGR","description":"This course is a project course in which students prepare a production or experiment using one of the forms of media. The course is designed to allow students to experiment in a communication form other than the usual oral presentation in class or a term paper. Students can do a video production, a coordinated photographic essay or exhibit, a computer instructional game, a published newspaper or magazine article directed at a special audience, a theatrical presentation, or some form other than those listed. ","edges_from":[],"edges_to":[],"id":5215,"label":"COGR 280","title":"Advanced Workshop in Communication Media (4)"},{"dept":"POLI","description":"This course will study various approaches to knowledge accumulation in social science. A basic outline of scientific method will be used to examine the difference between theories as assumptions and axioms and hypotheses as “if-then” statements derived from theory. Experimental, quasi-experimental, and qualitative designs will be discussed. ","edges_from":[],"edges_to":[],"id":5216,"label":"POLI 204A","title":"Research Design (4)"},{"dept":"POLI","description":"This course introduces students to the rudiments of decision theory and game theory. Emphasis will be placed on modeling and solving games. ","edges_from":[],"edges_to":[],"id":5217,"label":"POLI 204C","title":"Game Theory 1 (4)"},{"dept":"POLI","description":"The use of quantitative methods (particularly multiple regression and its extensions) in political science. Emphasis on understanding the methods and using them in political science applications. ","edges_from":[],"edges_to":[],"id":5218,"label":"POLI 204B","title":"Quantitative Methods I (4)"},{"dept":"CSE","description":"Automation and Prototyping for Embedded Systems (4)","edges_from":[],"edges_to":[],"id":5219,"label":"CSE 237D","title":"Design"},{"dept":"CSE","description":"Embedded system technologies including processors, DSP, memory, and software. System interfacing basics, communication strategies, sensors, and actuators. Mobile and wireless technology in embedded systems. Using predesigned hardware and software components. Design case studies in wireless, multimedia, and/or networking domains. ","edges_from":[],"edges_to":[],"id":5220,"label":"CSE 237A","title":"Introduction to Embedded Computing (4)"},{"dept":"CSE","description":"and Testing of Embedded Systems (4)","edges_from":[],"edges_to":[],"id":5221,"label":"CSE 237C","title":"Validation"},{"dept":"CSE","description":"Embedded computing elements, device interfaces,","edges_from":[],"edges_to":[],"id":5222,"label":"CSE 237B","title":"Software for Embedded Systems (4)"},{"dept":"Linguistics/Portuguese","description":"(LIPO) 16. Intermediate","edges_from":[],"edges_to":[],"id":5223,"label":"Linguistics/Portuguese","title":""},{"dept":"CSE","description":"VSLI process technologies; circuit characterization; logic design styles; clocking strategies; computer-aided design tools; subsystem design; design case studies. System design project from hardware description, logic synthesis, physical layout to design verification. ","edges_from":[5225,5226,1181],"edges_to":[],"id":5224,"label":"CSE 143","title":"Microelectronic System Design (4)"},{"dept":"CSE","description":"","edges_from":[],"edges_to":[5224],"id":5225,"label":"CSE 170A","title":""},{"dept":"ECE","description":"","edges_from":[],"edges_to":[5224],"id":5226,"label":"ECE 81","title":""},{"dept":"CSE","description":"Project class building an embedded computing system. Learn fundamental knowledge of microcontrollers, sensors, and actuators. Introduction to the hardware and software tools to build project in a team environment and end-to-end system building. ","edges_from":[1183],"edges_to":[],"id":5227,"label":"CSE 145","title":"Embedded System Design Project (4)"},{"dept":"CSE","description":"Processor Architecture Design Project (4)","edges_from":[],"edges_to":[],"id":5228,"label":"CSE 148","title":"Advanced"},{"dept":"BIBC","description":"Elaborates the relationship between diet and human metabolism, physiology, health, and disease. Covers the functions of carbohydrates, lipids, proteins, vitamins, and minerals, and discusses dietary influences on cardiovascular disease, diabetes, obesity, and cancer. ","edges_from":[1193],"edges_to":[],"id":5229,"label":"BIBC 120","title":"Nutrition (4)"},{"dept":"SOCI","description":"The environment as a socially and technically shaped milieu in which competing values and interests play out. Relation of humanity to nature, conflicts between preservation and development, environmental pollution and contested illnesses. Will not receive credit for SOCI 149 and SOCC 149.","edges_from":[],"edges_to":[],"id":5230,"label":"SOCI 149","title":"Sociology of the Environment (4)"},{"dept":"COGS","description":"This practicum for graduate students provides experience in teaching undergraduate cognitive science courses. S/U only.","edges_from":[],"edges_to":[],"id":5231,"label":"COGS 500","title":"Teaching Apprenticeship (1–4)"},{"dept":"PHYS","description":"Laboratory-lecture course covering practical techniques used in research laboratories. Possible topics include: computer interfacing of instruments, sensors, and actuators; programming for data acquisition/analysis; electronics; measurement techniques; mechanical design/machining; mechanics of materials; thermal design/control; vacuum/cryogenic techniques; optics; particle detection. Physics 122 was formerly numbered Physics 121. Program or materials fees may apply. ","edges_from":[5233],"edges_to":[],"id":5232,"label":"PHYS 122","title":"Experimental Techniques (4)"},{"dept":"PHYS","description":"","edges_from":[36,37,38,446,5060,29,30,31],"edges_to":[5232,5234],"id":5233,"label":"PHYS 120","title":""},{"dept":"PHYS","description":"A laboratory-lecture-project course featuring creation of an experimental apparatus in teams of about two. Emphasis is on electronic sensing of the physical environment and actuating physical responses. The course will use a computer interface such as the Arduino. Physics 124 was formerly numbered Physics 120B. Program or materials fees may apply. ","edges_from":[5233],"edges_to":[],"id":5234,"label":"PHYS 124","title":"Laboratory Projects (4)"},{"dept":"MATH","description":"Convex sets and functions, convex and affine hulls, relative","edges_from":[],"edges_to":[],"id":5235,"label":"MATH 245A","title":"Convex Analysis and Optimization I (4)"},{"dept":"FPM","description":"Focus on disseminating and scaling up health interventions in real-world settings. Interactive didactic sessions and guest lectures on implementation of research principles, approaches, and methods. Will design a proposal to implement or scale-up a clinical or public health intervention.","edges_from":[],"edges_to":[],"id":5236,"label":"FPM 291","title":"Dissemination and Implementation Science in Health: An Introduction (4)"},{"dept":"EDS","description":"This seminar integrates a range of perspectives to understand the contexts of teaching and change. There are three main foci: 1) how the profession of teaching in PK-16 is shaped by factors in the broader policy, political, and social context; 2) change, change agentry, and obstacles to change in educational institutions; 3) design-based research models to effect changes in the context of teaching. An international comparative approach is critical to consider levers for educational improvement. Letter grades only. ","edges_from":[],"edges_to":[],"id":5237,"label":"EDS 267","title":"Contexts for Teaching and Change (4)"},{"dept":"ETHN","description":"Latina Immigrant Workers in the Global Economy (4)","edges_from":[],"edges_to":[],"id":5238,"label":"ETHN 129","title":"Asian and"},{"dept":"BILD","description":"An introduction to the basic principles of plant and animal development, emphasizing the similar strategies by which diverse organisms develop. Practical applications of developmental principles as well as ethical considerations arising from these technologies will be discussed.","edges_from":[],"edges_to":[],"id":5239,"label":"BILD 7","title":"The Beginning of Life (4)"},{"dept":"Linguistics/Heritage","description":"For students who already comprehend informal","edges_from":[],"edges_to":[],"id":5240,"label":"Linguistics/Heritage Languages (LIHL) 118","title":"Cantonese for Cantonese Speakers (4)"},{"dept":"PSYC","description":"Weekly meetings for graduate students actively engaged in research on conditioning. May be taken for credit multiple times. ","edges_from":[],"edges_to":[],"id":5241,"label":"PSYC 251","title":"Advanced Topics in Learning and Motivation (1)"},{"dept":"PSYC","description":"Surveys research on people’s everyday attribution of mental states to predict/explain actions, their naïve theory of mind, from developmental and neurocognitive perspectives. Topics include social cognition in infancy and childhood, in autism, and in nonhuman primates, and the brain underpinnings. ","edges_from":[],"edges_to":[],"id":5242,"label":"PSYC 257","title":"Development and Neurobiology of Theory of Mind (4)"},{"dept":"HIUS","description":"Women, American Womanhood 1870 to Present (4)","edges_from":[],"edges_to":[],"id":5243,"label":"HIUS 157","title":"American"},{"dept":"HIUS","description":"Women, American Womanhood (4)","edges_from":[],"edges_to":[],"id":5244,"label":"HIUS 156","title":"American"},{"dept":"HIUS","description":"Zoot Suits to Hip-Hop: Race and Popular Culture since World War II (4)","edges_from":[],"edges_to":[],"id":5245,"label":"HIUS 155","title":"From"},{"dept":"Linguistics/Heritage","description":"For students who already comprehend informal","edges_from":[],"edges_to":[],"id":5246,"label":"Linguistics/Heritage Languages (LIHL) 113","title":"Armenian for Armenian Speakers (4)"},{"dept":"HIUS","description":"Survey of politicized criminal trials and","edges_from":[],"edges_to":[],"id":5247,"label":"HIUS 153","title":"American Political Trials (4)"},{"dept":"HIUS","description":"The history of American law and legal institutions. This course examines race relations and law, the rise of big business, the origins of the modern welfare state during the Great Depression, the crisis of civil liberties produced by two world wars and McCarthyism, and the Constitutional revolution wrought by the Warren Court. HIUS 150 is not a prerequisite for HIUS 151.","edges_from":[],"edges_to":[],"id":5248,"label":"HIUS 151","title":"American Legal History since 1865 (4)"},{"dept":"HIUS","description":"The history of American law and legal institutions. This quarter focuses on crime and punishment in the colonial era, the emergence of theories of popular sovereignty, the forging of the Constitution and American federalism, the relationship between law and economic change, and the crisis of slavery and Union. +","edges_from":[],"edges_to":[],"id":5249,"label":"HIUS 150","title":"American Legal History to 1865 (4)"},{"dept":"HIEU","description":"This course examines how Athenians during different epochs have dealt and still deal with the realities of everyday life and death. The topics covered by the course include work, war, religion, politics, and death. Students must apply and be accepted into the Global Seminar Program. +","edges_from":[],"edges_to":[],"id":5250,"label":"HIEU 114GS","title":"Athens: A City in History (4)"},{"dept":"ANTH","description":"A weekly research seminar where students share, read, and discuss in-depth research findings resulting from ANTH 196A and 196B along with selected background literature used in each individual thesis. Students are also taught how to turn their theses into brief presentations for both specialized and broader audiences. Students will be offered opportunities to present their findings at campus events and outreach events during the quarter. ","edges_from":[1123,2580],"edges_to":[],"id":5251,"label":"ANTH 196C","title":"Honors Studies in Anthropology (4)"},{"dept":"INTL","description":"Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ","edges_from":[],"edges_to":[],"id":5252,"label":"INTL 97","title":"Internship (1)"},{"dept":"HIAF","description":"This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 161.","edges_from":[],"edges_to":[],"id":5253,"label":"HIAF 261","title":"Special Topics in African History (4)"},{"dept":"FPM","description":"Students will learn the principles of scientific presentations, for the classroom, and for scientific meetings (both oral and poster presentations). Students will then prepare and deliver presentations based on their project from FPM 259A. May be taken for credit two times. ","edges_from":[4986],"edges_to":[],"id":5254,"label":"FPM 259C","title":"Applied Epidemiology—Scientific Presentations (4)"},{"dept":"ANTH","description":"This class examines humans from a comparative perspective; if we ignore culture, what’s left? How do culture and biology interact? And how does biology inform cultural debates over race, sex, marriage, war, peace, etc.? ","edges_from":[],"edges_to":[],"id":5255,"label":"ANTH 102","title":"Humans Are Cultural Animals (4)"},{"dept":"EDS","description":"This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third of a three-course series. ","edges_from":[4985],"edges_to":[],"id":5256,"label":"EDS 262C","title":"Dissertation Writing Seminar (4)"},{"dept":"NEU","description":"Independent study. (S/U grades only.) (F,W,S)","edges_from":[],"edges_to":[],"id":5257,"label":"NEU 296","title":"Neurosciences Research Rotation (1–12)"},{"dept":"GPEC","description":"This course examines China’s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949, and contemporary problems and options. Renumbered from IRGN 260. Students may not receive credit for GPEC 286 and IRGN 260. May be coscheduled with GPEC 486.","edges_from":[],"edges_to":[],"id":5258,"label":"GPEC 286","title":"Economic and Social Development of China (4)"},{"dept":"NEU","description":"Independent Study Project (ISP) (1–12)","edges_from":[],"edges_to":[],"id":5259,"label":"NEU 298","title":"Neurosciences"},{"dept":"NEU","description":"Independent study. (S/U grades only.) (F,W,S)","edges_from":[],"edges_to":[],"id":5260,"label":"NEU 299","title":"Neurosciences Research (1–12)"},{"dept":"ETHN","description":"(Cross-listed with CGS 112.) This course explores the nexus of sex, race, ethnicity, gender, and nation and considers their influence on identity, sexuality, migration, movement, and borders and other social, cultural, and political issues that these constructs affect.","edges_from":[],"edges_to":[],"id":5261,"label":"ETHN 127","title":"Sexuality and Nation (4)"},{"dept":"CHEM","description":"(Cross-listed with BIMM 164.)","edges_from":[],"edges_to":[],"id":5262,"label":"CHEM 164","title":"Structural Biology of Viruses (4)"},{"dept":"CHEM","description":"(Conjoined with CHEM 265; cross-listed with BIMM 162/BGGN 262.) Biological macromolecules and supramolecular complexes as well as organelles, and small cells are being examined in three dimensions by modern electron cryomicroscopy and image reconstruction techniques. The basic principles of transmission electron microscopy and 3D image reconstruction are discussed. CHEM 265/BGGN 262 students will be required to complete an additional assignment/exam beyond that expected of students in CHEM 165/BIMM 162. ","edges_from":[33,458,1391,5264,410,30],"edges_to":[],"id":5263,"label":"CHEM 165","title":"3D Electron Microscopy of Macromolecules (4)"},{"dept":"BIBC","description":"","edges_from":[],"edges_to":[5263],"id":5264,"label":"BIBC 110","title":""},{"dept":"LATI","description":"A team-taught course wherein members of the faculty group in Latin American Studies present diverse disciplinary and thematic approaches to the region. Topics vary from year to year. Grades are based on discussions and on a series of analytical papers. ","edges_from":[],"edges_to":[],"id":5265,"label":"LATI 200","title":"Core Seminar on Interdisciplinary Research and Methodology in Latin American Studies (4)"},{"dept":"CHEM","description":"Basics of medicinal chemistry, emphasizing rigorous descriptions of receptor-protein structure, interactions, and dynamics; their implications for drug development; and an integrated treatment of pharmacodynamic and pharmacokinetic considerations in drug design. Treats computational approaches as well as practical experimental approaches. ","edges_from":[1552,1553,1554,1555,458],"edges_to":[],"id":5266,"label":"CHEM 167","title":"Medicinal Chemistry (4)"},{"dept":"MGT","description":"Individual study or research under the direction of a selected faculty member. May be taken for credit twelve times. Students may earn credit for a total of twelve units in MGT 299 and/or MGT 499. ","edges_from":[],"edges_to":[],"id":5267,"label":"MGT 499","title":"Individual Directed Study (1–4)"},{"dept":"HIEA","description":"Examines women’s roles and experiences in the twentieth-century Chinese revolution, the ways in which women participated in the process of historical change, the question of to what extent the revolution “liberated” women from “Confucian tradition.”","edges_from":[],"edges_to":[],"id":5268,"label":"HIEA 138","title":"Women and the Chinese Revolution (4)"},{"dept":"HIEA","description":"and the Family in Chinese History (4)","edges_from":[],"edges_to":[],"id":5269,"label":"HIEA 137","title":"Women"},{"dept":"MGT","description":"Advanced topics in finance. Instructional methods include face-to-face lecture and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 495 and MGT 282 when the course subtitles are the same. ","edges_from":[],"edges_to":[],"id":5270,"label":"MGT 495","title":"Topics in Finance (2 or 4)"},{"dept":"HIEA","description":"of Thought and Religion in China: Buddhism (4)","edges_from":[],"edges_to":[],"id":5271,"label":"HIEA 135","title":"History"},{"dept":"HIEA","description":"of Thought and Religion in China: Confucianism (4)","edges_from":[],"edges_to":[],"id":5272,"label":"HIEA 134","title":"History"},{"dept":"HIEA","description":"China: Cultural History (4)","edges_from":[],"edges_to":[],"id":5273,"label":"HIEA 133","title":"Twentieth-Century"},{"dept":"HIEA","description":"This course analyzes the history of the PRC from 1949 to the present. Special emphasis is placed on the problem of post-revolutionary institutionalization, the role of ideology, the tension between city and countryside, Maoism, the Great Leap Forward, the Cultural Revolution.","edges_from":[],"edges_to":[],"id":5274,"label":"HIEA 132","title":"Mao’s China, 1949–1976 (4)"},{"dept":"HIEA","description":"An exploration of the formative period of the twentieth-century Chinese Revolution: the New Culture Movement, modern urban culture, the nature of Nationalist (Guomindang) rule, war with Japan, revolutionary nationalism, and the Chinese Communist rise to power.","edges_from":[],"edges_to":[],"id":5275,"label":"HIEA 131","title":"China in War and Revolution, 1911–1949 (4)"},{"dept":"HIEA","description":"From the Opium War to the 1911 Revolution. Key topics include ethnic identity under Manchu rule, the impact of Western imperialism, the Taiping and other rebellions, overseas Chinese, social change and currents of reform, and the rise of Chinese nationalism.","edges_from":[],"edges_to":[],"id":5276,"label":"HIEA 130","title":"End of the Chinese Empire, 1800–1911 (4)"},{"dept":"SOCI","description":"An analysis of the social, biological, and","edges_from":[],"edges_to":[],"id":5277,"label":"SOCI 118","title":"Sociology of Gender (4)"},{"dept":"SOCI","description":"of Sexuality and Sexual Identities (4)","edges_from":[],"edges_to":[],"id":5278,"label":"SOCI 119","title":"Sociology"},{"dept":"SOCI","description":"Research in Educational Settings (4)","edges_from":[],"edges_to":[],"id":5279,"label":"SOCI 110","title":"Qualitative"},{"dept":"SOCI","description":"This course will deal with human behavior and personality development as affected by social group life. Major theories will be compared. The interaction dynamics of such substantive areas as socialization, normative and deviant behavior, learning and achievement, the social construction of the self, and the social identities will be considered. ","edges_from":[5280,5281],"edges_to":[5280],"id":5280,"label":"SOCI 112","title":"Social Psychology (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[5280],"id":5281,"label":"SOCB 112","title":""},{"dept":"SOCI","description":"This course considers the social, cultural, political, and economic aspects of HIV/AIDS. Topics include the social context of transmission; the experiences of women living with HIV; AIDS activism; representations of AIDS; and the impact of race and class differences. ","edges_from":[5282,5283],"edges_to":[5282],"id":5282,"label":"SOCI 113","title":"Sociology of the AIDS Epidemic (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[5282],"id":5283,"label":"SOCB 113","title":""},{"dept":"SOCI","description":"Analyzes selected social problems in the United States, such as those regarding education, race relations, and wealth inequality from various sociological perspectives. The course also examines the various sites of debate discussion, like political institutions, TV and other media, and religious institutions. ","edges_from":[5284,5285],"edges_to":[5284],"id":5284,"label":"SOCI 115","title":"Social Problems (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[5284],"id":5285,"label":"SOCB 115","title":""},{"dept":"SOCI","description":"(Same as LIGN 174.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span (especially childhood and adolescence); within ethnolinguistic minority communities; and across cultures. ","edges_from":[5286,5287],"edges_to":[5286],"id":5286,"label":"SOCI 116","title":"Gender and Language in Society (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[5286],"id":5287,"label":"SOCB 118A","title":""},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[2239],"id":5288,"label":"SOCB 117","title":""},{"dept":"AESE","description":"Students will work collaboratively on a team project, mostly in a lab setting, to demonstrate their grasp of the material in the entire project sequence. ","edges_from":[2221],"edges_to":[],"id":5289,"label":"AESE 279B","title":"Architecture-based Enterprise Systems Engineering Capstone Team Project (3)"},{"dept":"POLI","description":"The political impact of major religious traditions—including Christianity, Islam, Hinduism, and Confucianism—around the world. ","edges_from":[],"edges_to":[],"id":5290,"label":"POLI 136","title":"Religion and Politics (4)"},{"dept":"MAE","description":"(Cross-listed with MATS 260.) Computational methods for MatSci will be discussed, dealing with atomic scale empirical or semiempirical potentials. How and why to develop such potentials for metallic materials will be a focus of the course. Molecular dynamics and Monte Carlo methods will be covered in detail. Applications of these techniques to some example problems in materials science, mechanical deformation, dislocation interactions, nucleation/growth of phases, melting solidification structures, and point defects are presented.","edges_from":[],"edges_to":[],"id":5291,"label":"MAE 260","title":"Fundamentals and Applications of Computational Materials Science (4)"},{"dept":"POLI","description":"Political development has dominated the study of comparative politics among US academicians since the revival of the Cold War in 1947. This course examines critically this paradigm and its Western philosophical roots in the context of the experience of modern China.","edges_from":[],"edges_to":[],"id":5292,"label":"POLI 132","title":"Political Development and Modern China (4)"},{"dept":"ECE","description":"Processing Technology Laboratory (4)","edges_from":[],"edges_to":[],"id":5293,"label":"ECE 138L","title":"Microstructuring"},{"dept":"HIGR","description":"Critical evaluation of selected topics on Greece and the Balkans during the late Ottoman period (1768–1923). Attention will be paid to both classic and revisionist works. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":5294,"label":"HIGR 228","title":"Historical Scholarship on Greece and the Balkans, 1768–1923 (4)"},{"dept":"HIGR","description":"Critical evaluation of selected topics on Greece and the Balkans during the twentieth century. Attention will be paid to both classic and revisionist works. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":5295,"label":"HIGR 229","title":"Historical Scholarship on Greece and the Balkans, 1923–2000 (4)"},{"dept":"POLI","description":"in the Southern Cone of Latin America (4)","edges_from":[],"edges_to":[],"id":5296,"label":"POLI 134I","title":"Politics"},{"dept":"HIGR","description":"Scholarship on European History, since 1850 (4)","edges_from":[],"edges_to":[],"id":5297,"label":"HIGR 222","title":"Historical"},{"dept":"HIGR","description":"Scholarship on European History, 1500–1715 (4)","edges_from":[],"edges_to":[],"id":5298,"label":"HIGR 220","title":"Historical"},{"dept":"POLI","description":"A comparative analysis of contemporary political issues in Latin America. Material to be drawn from two or three countries. Among the topics: development, nationalism, neoimperialism, political change. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":5299,"label":"POLI 134D","title":"Selected Topics in Latin American Politics (4)"},{"dept":"HIGR","description":"An introduction to the historiography and major debates in modern Spanish history, nineteenth and twentieth centuries. Readings and discussion of both English and Spanish language scholarship will explore different aspects of Spain’s political, economic, social, and cultural transformation in the modern period.","edges_from":[],"edges_to":[],"id":5300,"label":"HIGR 226","title":"Readings in Modern Spanish History (4)"},{"dept":"POLI","description":"General survey of the Mexican political system as it operates today. Emphasis on factors promoting the breakdown of Mexico’s authoritarian regime and the transition to a more democratic political system. Changing relationship between the state and various segments of Mexico society (economic elites, peasants, urban labor, and the Church). New patterns of civil-military relations.","edges_from":[],"edges_to":[],"id":5301,"label":"POLI 134B","title":"Politics in Mexico (4)"},{"dept":"HIGR","description":"An introduction to the historiography and major debates in modern German history from the Wilhelmine period to the present. Readings and discussion focus on the critical evaluation of sources, methodologies, and shifting interpretations of Germany’s volatile transition to modernity.","edges_from":[],"edges_to":[],"id":5302,"label":"HIGR 224","title":"Readings in Twentieth-Century German History (4)"},{"dept":"HIGR","description":"Students will read major works on revolutionary Russian and Soviet history. Attention will be paid to both classic and revisionist works.","edges_from":[],"edges_to":[],"id":5303,"label":"HIGR 225","title":"Readings in Modern Russian History (4)"},{"dept":"CENG","description":"Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with NANO 230. Students may not receive credit for both CENG 230 and NANO 230. ","edges_from":[],"edges_to":[],"id":5304,"label":"CENG 230","title":"Synchrotron Characterization of Nanomaterials (4)"},{"dept":"HIUS","description":"Explore how Asian Americans were involved in the political, economic, and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.","edges_from":[],"edges_to":[],"id":5305,"label":"HIUS 124/ETHN 125","title":"Asian American History (4)"},{"dept":"ECON","description":"","edges_from":[505,138,550,302,134],"edges_to":[1290],"id":5306,"label":"ECON 110A","title":""},{"dept":"LTSP","description":"Special topics in practical criticism involving social and economic historical perspectives. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.","edges_from":[],"edges_to":[],"id":5307,"label":"LTSP 272","title":"Literature and Society Studies (4)"},{"dept":"EDS","description":"Mathematics Teaching Practices for Grades K–6 (2)","edges_from":[],"edges_to":[],"id":5308,"label":"EDS 355A","title":"Advanced"},{"dept":"EDS","description":"Mathematics Teaching Practices for Grades K–6 (2)","edges_from":[],"edges_to":[],"id":5309,"label":"EDS 355C","title":"Advanced"},{"dept":"EDS","description":"Mathematics Teaching Practices for Grades K–6 (2)","edges_from":[],"edges_to":[],"id":5310,"label":"EDS 355B","title":"Advanced"},{"dept":"POLI","description":"This class explores statistical and computational methods to enable students to use text as a data source in the social sciences. Hands-on examples and a final project will equip students to work with text data in their own research. ","edges_from":[],"edges_to":[],"id":5311,"label":"POLI 274","title":"Text as Data (4)"},{"dept":"MAE","description":"The principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. Program or materials fees may apply. ","edges_from":[1147,924,821,2230,1429],"edges_to":[],"id":5312,"label":"MAE 155B","title":"Aerospace Engineering Design II (4)"},{"dept":"Linguistics/Hindi","description":"Presentation and practice of the basic grammatical","edges_from":[],"edges_to":[],"id":5313,"label":"Linguistics/Hindi (LIHI) 1BX","title":"Analysis of Hindi (2.5)"},{"dept":"BICD","description":"Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the","edges_from":[],"edges_to":[],"id":5314,"label":"BICD 194","title":"Advanced Topics in Modern Biology: Cellular Development (2)"},{"dept":"MGTF","description":"Provides students with a deeper and broader understanding of risk-return analysis (especially, but not exclusively, mean-variance analysis) than is common among users. Surveys how risk-return analysis is used in practice and examines the modern portfolio theory industry and its entrepreneurs. Letter grades only. Students may not receive credit for MGT 432, MGT 232, and MGT 282 Topics in Finance course with same course subtitle: Portfolio Theory in Practice. They are course equivalents. ","edges_from":[5316,2702],"edges_to":[],"id":5315,"label":"MGTF 432","title":"Portfolio Theory in Practice (4)"},{"dept":"MGT","description":"","edges_from":[],"edges_to":[5315],"id":5316,"label":"MGT 281","title":""},{"dept":"MGTF","description":"Students will investigate the reasons behind resource expenditure related to Modern Portfolio Theory (MPT). They will examine ways in which an investor can aim to outperform the predictions of MPT, either by reducing risk without impacting return negatively, or increasing returns without increasing risk. The concepts of this course will be demonstrated through a combination of classroom lectures and case discussions. ","edges_from":[],"edges_to":[],"id":5317,"label":"MGTF 430","title":"Asset Management (4)"},{"dept":"MSED","description":"The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three-quarter sequence. ","edges_from":[],"edges_to":[5320],"id":5318,"label":"MSED 296A","title":"Theories and Applications of Mathematics and Science Education (4)"},{"dept":"MSED","description":"The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three quarter sequence. ","edges_from":[5320,5319],"edges_to":[5319],"id":5319,"label":"MSED 296C","title":"Theories and Applications of Mathematics and Science Education (4)"},{"dept":"MSED","description":"","edges_from":[5320,5318],"edges_to":[5320,5319],"id":5320,"label":"MSED 296B","title":""},{"dept":"CHIN","description":"Intermediate course of Chinese for students with background in","edges_from":[],"edges_to":[],"id":5321,"label":"CHIN 100AM","title":"Third Year Chinese—Mandarin speakers I (4)"},{"dept":"CHIN","description":"Intermediate","edges_from":[],"edges_to":[],"id":5322,"label":"CHIN 100AN","title":"Third Year Chinese—Non-native speakers I (4)"},{"dept":"MAE","description":"Small gain theorem, passivity. Describing functions. Nonlinear controllability, feedback linearization, input-state and input-output linearization, zero dynamics. Stabilization, Brockett’s necessary conditions (local), control Lyapunov functions, Sontag’s formula (global). Integrator back stepping, forwarding. Inverse optimality, stability margins. Disturbance attenuation, deterministic and stochastic, nonlinear H-infinity. Nonlinear observers. ","edges_from":[4944],"edges_to":[],"id":5323,"label":"MAE 281B","title":"Nonlinear Control (4)"},{"dept":"SE","description":"The course emphasizes the principles behind modern nonlinear structural analysis software. It deals with the theory, computer implementation, and applications of methods of material and geometric nonlinear analysis. Emphasis is on 2D and 3D frame structures modeled using 1D (beam-column) elements. Use of computer resources. ","edges_from":[1837],"edges_to":[],"id":5324,"label":"SE 201B","title":"Nonlinear Structural Analysis (4)"},{"dept":"COGS","description":"This course will cover the basics about neural networks, as well as recent developments in deep learning including deep belief nets, convolutional neural networks, recurrent neural networks, long-short term memory, and reinforcement learning. We will study details of the deep learning architectures with a focus on learning end-to-end models for these tasks, particularly image classification. ","edges_from":[393,1995,140,141,1996,2334,2335],"edges_to":[],"id":5325,"label":"COGS 181","title":"Neural Networks and Deep Learning (4)"},{"dept":"PHIL","description":"This seminar will cover current books and theoretical issues in the philosophy of science. May be taken for credit seven times with changed content.","edges_from":[],"edges_to":[],"id":5326,"label":"PHIL 245","title":"Philosophy of Science (4)"},{"dept":"BENG","description":"Directed group study, on a topic or in a field","edges_from":[],"edges_to":[],"id":5327,"label":"BENG 198","title":"Directed Group Study (1–4)"},{"dept":"BENG","description":"Independent reading or research by arrangement with a bioengineering faculty member. May be taken for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5328,"label":"BENG 199","title":"Independent Study for Undergraduates (4)"},{"dept":"BENG","description":"Independent study or research under direction of a member of the faculty. ","edges_from":[],"edges_to":[],"id":5329,"label":"BENG 99H","title":"Independent Study (1)"},{"dept":"HISC","description":"This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.","edges_from":[],"edges_to":[],"id":5330,"label":"HISC 276","title":"History of Medicine in East and Southeast Asia (4)"},{"dept":"HISC","description":"“Was ist Aufklarung?,” asked Kant in 1748 and the question remains hotly debated ever since. In this course we will pursue this question in tandem with another: “What is Enlightenment science?” The answer to which is equally debated. +","edges_from":[],"edges_to":[],"id":5331,"label":"HISC 277","title":"Science and the Enlightenment (4)"},{"dept":"BENG","description":"Teaching and tutorial assistance in a bioengineering course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5332,"label":"BENG 195","title":"Teaching (2–4)"},{"dept":"BENG","description":"Under the joint supervision of a faculty adviser and industry mentor, the student will work at a bioengineering industrial site to gain practical bioengineering experience, summarized in a technical report. With departmental approval, four units of credit may substitute for a technical elective. (P/NP grades only.) Course may be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5333,"label":"BENG 196","title":"Bioengineering Industrial Internship (1–4)"},{"dept":"BENG","description":"An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, hospitals, and their practices. Subject to the availability of positions, students will work in a local industry or hospital (on a salaried or unsalaried basis) under the supervision of a faculty member and industrial, government, or hospital employee. Coordination of the Engineering Internship is conducted through UC San Diego’s Academic Internship Program. Time and effort to be arranged. Units may not be applied toward major graduation requirements unless prior approval of a faculty adviser is obtained and internship is an unsalaried position. ","edges_from":[],"edges_to":[],"id":5334,"label":"BENG 197","title":"Engineering Internship (1–4)"},{"dept":"NANO","description":"Materials for energy storage and conversion in existing and future power systems, including fuel cells and batteries, photovoltaic cells, thermoelectric cells, and hybrids. ","edges_from":[212,213,4782],"edges_to":[],"id":5335,"label":"NANO 164","title":"Advanced Micro- and Nano-materials for Energy Storage and Conversion (4)"},{"dept":"NANO","description":"Selection of materials for engineering systems, based on constitutive analyses of functional requirements and material properties. The role and implications of processing on material selection. Optimizing material selection in a quantitative methodology. NanoEngineering majors receive priority enrollment. ","edges_from":[4207],"edges_to":[],"id":5336,"label":"NANO 161","title":"Material Selection in Engineering (4)"},{"dept":"MUS","description":"Group projects to create new pieces of live electronic music involving research in electronic music and/or instrumental techniques. May be repeated for credit. ","edges_from":[3680,3682,3683],"edges_to":[],"id":5337,"label":"MUS 272","title":"Seminar in Live Computer Music (4)"},{"dept":"EDS","description":"Research and Evaluation Design (4)","edges_from":[],"edges_to":[],"id":5338,"label":"EDS 260B","title":"Educational"},{"dept":"NANO","description":"Introduction to physical principles of electrical, dielectric, and magnetic properties. Semiconductors, control of defects, thin film, and nanocrystal growth, electronic and optoelectronic devices. Processing-microstructure-property relations of dielectric materials, including piezoelectric, pyroelectric and ferroelectric, and magnetic materials. ","edges_from":[146,212],"edges_to":[],"id":5339,"label":"NANO 168","title":"Electrical, Dielectric, and Magnetic Properties of Engineering Materials (4)"},{"dept":"EDS","description":"Research and Evaluation Design (4)","edges_from":[],"edges_to":[],"id":5340,"label":"EDS 260A","title":"Educational"},{"dept":"ECE","description":"Introduction to statistical phenomena in optics","edges_from":[],"edges_to":[],"id":5341,"label":"ECE 244A","title":"Statistical Optics (4)"},{"dept":"VIS","description":"Critical study of the ways in which media (film, video, photography) and new media have been theorized. May be taught from a historical or comparative perspective or focus on a single topic or theorist.","edges_from":[],"edges_to":[],"id":5342,"label":"VIS 242","title":"Theories of Media and New Media (4)"},{"dept":"VIS","description":"the Relationship of Theory and Practice (4)","edges_from":[],"edges_to":[],"id":5343,"label":"VIS 244","title":"Studies in"},{"dept":"AAS/ANSC","description":"(Cross-listed with ANSC 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for AAS 185 and ANSC 185.","edges_from":[],"edges_to":[],"id":5344,"label":"AAS/ANSC 185","title":"#BlackLivesMatter (4)"},{"dept":"TDDR","description":"For the advanced student in directing. Intensive concentration on the full realization of a dramatic text from research and analysis through rehearsal and into performance. A maximum of eight units of major project study, regardless of area (design, directing, or stage management) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ","edges_from":[4105,3915],"edges_to":[],"id":5345,"label":"TDDR 190","title":"Major Project in Directing (4)"},{"dept":"TDDR","description":"For the advanced student in stage management. Intensive concentration on the full realization of a dramatic text, from research and analysis through rehearsal and final performance. A maximum of eight units of major project study regardless of area (design, directing, stage management, or playwriting) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ","edges_from":[4099,4353,5347],"edges_to":[],"id":5346,"label":"TDDR 191","title":"Major Project in Stage Management (4)"},{"dept":"TDPR","description":"","edges_from":[],"edges_to":[5346],"id":5347,"label":"TDPR 4","title":""},{"dept":"HIEU","description":"German History: From Bismarck to Hitler (4)","edges_from":[],"edges_to":[],"id":5348,"label":"HIEU 154","title":"Modern"},{"dept":"HIEU","description":"and the Law in Modern European History (4)","edges_from":[],"edges_to":[],"id":5349,"label":"HIEU 157","title":"Religion"},{"dept":"HIEU","description":"This course explores war, revolution, development, and terror in the Soviet Union from 1905–1991.","edges_from":[],"edges_to":[],"id":5350,"label":"HIEU 156","title":"History of the Soviet Union, 1905–1991 (4)"},{"dept":"HIEU","description":"Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy.","edges_from":[],"edges_to":[],"id":5351,"label":"HIEU 151","title":"Spain since 1808 (4)"},{"dept":"HIEU","description":"Emphasis on changes in social structure and corresponding shifts in political power. The expansion and the end of empire. Two World Wars and the erosion of economic leadership.","edges_from":[],"edges_to":[],"id":5352,"label":"HIEU 150","title":"Modern British History (4)"},{"dept":"HIEU","description":"Selected topics in modern European history. Course may be taken for credit up to three times as topic vary.","edges_from":[],"edges_to":[],"id":5353,"label":"HIEU 153","title":"Topics in Modern European History (4)"},{"dept":"HIEU","description":"Examines how ordinary citizens coped with the problems of life under Europe’s authoritarian regimes. Topics may include Nazism, fascism, and quasi-fascist societies (e.g., Franco’s Spain, Salazar’s Portugal), and communist practice from Leninism to Stalinism to the milder Titoism of Yugoslavia.","edges_from":[],"edges_to":[],"id":5354,"label":"HIEU 152","title":"The Worst of Times: Everyday Life in Authoritarian and Dictatorial Societies (4)"},{"dept":"BENG","description":"Modern development of biomechanics at an advanced mathematical level. Description of internal stresses and deformation in living tissues and fluids, thermodynamics. Mechanics of soft connective tissue, extracellular matrix, cells, membranes, and cytoskeleton. Mechanotransduction, migration, adhesion. Blood flow in microvessels. Biomechanical analysis of tissue injury. Students that have taken BENG 222 cannot take BENG 226 for credit. Recommended preparation: A previous background in biomechanics is strongly recommended prior to taking this course. ","edges_from":[],"edges_to":[],"id":5355,"label":"BENG 226","title":"Foundations of Bioengineering I: Tissue and Cell Properties (4)"},{"dept":"BENG","description":"This course describes the movement of heat and chemical mass in biological systems. Diffusion, convection and biochemical reactions in a variety of biological and engineering examples are analyzed and modeled. Students that have taken BENG 222 cannot take BENG 227 for credit. ","edges_from":[5357],"edges_to":[],"id":5356,"label":"BENG 227","title":"Transport Phenomena in Living Systems (4)"},{"dept":"BENG","description":"","edges_from":[],"edges_to":[5356],"id":5357,"label":"BENG 221","title":""},{"dept":"HINE","description":"A survey of the history of science in the Middle East from 600 to the present day. The course examines the relationship between science, learning, and religion in Islamic societies and its connections to other regions of the globe. +","edges_from":[],"edges_to":[],"id":5358,"label":"HINE 145","title":"Islam and Science: The History of Science in the Middle East (600–1950) (4)"},{"dept":"HINE","description":"Selected topics in the history of the Middle East. May be taken for credit three times.","edges_from":[],"edges_to":[],"id":5359,"label":"HINE 144","title":"Topics in Middle Eastern History (4)"},{"dept":"HIEU","description":"For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?","edges_from":[],"edges_to":[],"id":5360,"label":"HIEU 159","title":"Three Centuries of Zionism, 1648–1948 (4)"},{"dept":"BENG","description":"Thermodynamics, statistical mechanics, and interfacial phenomena that emphasize the chemical natures of living systems. Topics include intermolecular and surface forces, calculation of energetic processes, computation of electrical forces and fields, and principles of physics in multiscale engineering and design. ","edges_from":[],"edges_to":[],"id":5361,"label":"BENG 223","title":"Thermodynamics, Statistical Mechanics, Interfacial Phenomena in Living Systems (4)"},{"dept":"BIMM","description":"Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the","edges_from":[],"edges_to":[],"id":5362,"label":"BIMM 194","title":"Advanced Topics in Modern Biology: Molecular Biology (2)"},{"dept":"CHIN","description":"Final course of second year Chinese for students with no background.","edges_from":[],"edges_to":[],"id":5363,"label":"CHIN 20CN","title":"Second Year Chinese—Non-native speakers III (4)"},{"dept":"ECE","description":"This course covers some convex optimization","edges_from":[],"edges_to":[],"id":5364,"label":"ECE 273","title":"Convex Optimization and Applications (4)"},{"dept":"CHIN","description":"Final course of second year Chinese for students with background","edges_from":[],"edges_to":[],"id":5365,"label":"CHIN 20CM","title":"Second Year Chinese—Mandarin speakers III (4)"},{"dept":"ECE","description":"A seminar course in which topics of special interest for electrical and computer engineering students will be presented. S/U grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5366,"label":"ECE 279","title":"Special Seminar (2)"},{"dept":"ECE","description":"Mathematical topics covered in the ECE master’s comprehensive exam including calculus, linear algebra and linear systems, and statistics and probability theory. ","edges_from":[],"edges_to":[],"id":5367,"label":"ECE 278","title":"Mathematical Topics for the Master’s Comprehensive Exam (2)"},{"dept":"CHIN","description":"Final course of second year Chinese for students with background","edges_from":[],"edges_to":[],"id":5368,"label":"CHIN 20CD","title":"Second Year Chinese—Dialect speakers III (4)"},{"dept":"SE","description":"Fluid statics, hydrostatic forces; integral and differential forms of conservation equations for mass, momentum, and energy; Bernoulli equation; dimensional analysis; viscous pipe flow; external flow, boundary layers; open channel flow. ","edges_from":[29,135],"edges_to":[],"id":5369,"label":"SE 115","title":"Fluid Mechanics for Structural Engineering (4)"},{"dept":"HINE","description":"Revolution in Historical Perspective (4)","edges_from":[],"edges_to":[],"id":5370,"label":"HINE 126","title":"Iranian"},{"dept":"EDS","description":"Develop educators’ knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124A and EDS 124AR. ","edges_from":[],"edges_to":[],"id":5371,"label":"EDS 124A","title":"Teaching Computation in the Digital World (4)"},{"dept":"HDP","description":"Directed group study, on a topic or in a field not included in the department curriculum, by arrangement with a faculty member. Pass/Not Pass grades only. May be taken for credit three times for a maximum of six units. Cannot be used toward HDP major credit. ","edges_from":[5373,5374,5375],"edges_to":[],"id":5372,"label":"HDP 98","title":"Directed Group Study (1–2)"},{"dept":"SSC","description":"","edges_from":[],"edges_to":[5372],"id":5373,"label":"SSC 98","title":""},{"dept":"SSC","description":"","edges_from":[],"edges_to":[5372],"id":5374,"label":"SSC 99","title":""},{"dept":"SSC","description":"","edges_from":[],"edges_to":[5372],"id":5375,"label":"SSC 97","title":""},{"dept":"BILD","description":"Fundamentals of human genetics and introduction to modern genetic technology","edges_from":[],"edges_to":[],"id":5376,"label":"BILD 20","title":"Human Genetics in Modern Society (4)"},{"dept":"PHIL","description":"Contemporary themes and problems in science studies. Focus on recent literature in the history, philosophy, and sociology of science, technology, and medicine.","edges_from":[],"edges_to":[],"id":5377,"label":"PHIL 209D","title":"Advanced Approaches to Science Studies (4)"},{"dept":"BILD","description":"A survey of our understanding of the basic","edges_from":[],"edges_to":[],"id":5378,"label":"BILD 22","title":"Human Nutrition (4)"},{"dept":"PHIL","description":"Study and discussion of classic work in history of science, philosophy of science, and of work that attempts to develop a unified science studies approach. Required of all students in the Science Studies Program.","edges_from":[],"edges_to":[],"id":5379,"label":"PHIL 209A","title":"Introduction to Science Studies (4)"},{"dept":"PHIL","description":"A forum for the presentation and discussion","edges_from":[],"edges_to":[],"id":5380,"label":"PHIL 209C","title":"Colloquium in Science Studies (4)"},{"dept":"PHIL","description":"Study and discussion of selected topics in the science studies field. Required of all students in the Science Studies Program. The topic varies from year to year and students may, therefore, repeat the course for credit. May be taken for credit three times with changed content.","edges_from":[],"edges_to":[],"id":5381,"label":"PHIL 209B","title":"Seminar in Science Studies (4)"},{"dept":"USP","description":"This course explores how economics contributes to understanding and solving urban problems using a “learn by doing” approach. Economic analysis will be applied to several important issues that planners and developers must deal with, such as land markets, housing, and zoning.","edges_from":[],"edges_to":[],"id":5382,"label":"USP 15","title":"Applied Urban Economics for Planning and Development (4)"},{"dept":"BENG","description":"Development, morphogenesis, growth, and remodeling of tissues and organs in health and disease. Integrative metabolism and biomechanics of cells and extracellular matrix at tissue, organ, and organism scales. Bioengineering restoration of tissues and organs. Industry applications and regulations. ","edges_from":[2377],"edges_to":[],"id":5383,"label":"BENG 241C","title":"Tissue Engineering and Regenerative Medicine: Development and Growth (4)"},{"dept":"LTEA","description":"in Tagalog Literature and Culture I (4)","edges_from":[],"edges_to":[],"id":5384,"label":"LTEA 151","title":"Readings"},{"dept":"Soc/G","description":"Research will be conducted in field settings. The primary focus will be on mastering the problems and technical skills associated with the conduct of ethnographic and participant observational studies. ","edges_from":[],"edges_to":[],"id":5385,"label":"Soc/G 203","title":"Field Methods (4)"},{"dept":"TDGE","description":"This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America’s First Peoples in Hollywood cinema. Carving spaces of “visual sovereignty” (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for both TDGE 131 and ETHN 163F. ","edges_from":[],"edges_to":[],"id":5386,"label":"TDGE 131","title":"Playing Indian: Native American and First Nations Cinema (4)"},{"dept":"TDMV","description":"Designed to provide training in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an intermediate technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ","edges_from":[2490,5388],"edges_to":[5389],"id":5387,"label":"TDMV 130","title":"Intermediate Jazz (4)"},{"dept":"THDA","description":"","edges_from":[],"edges_to":[5387],"id":5388,"label":"THDA 3","title":""},{"dept":"TDMV","description":"Further development in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an advanced technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ","edges_from":[5387],"edges_to":[],"id":5389,"label":"TDMV 133","title":"Advanced Jazz Dance (4)"},{"dept":"DSC","description":"The marriage of data, computation, and inferential thinking, or “data science,” is redefining how people and organizations solve challenging problems and understand the world. This course bridges lower- and upper-division data science courses as well as methods courses in other fields. Students master the data science life-cycle and learn many of the fundamental principles and techniques of data science spanning algorithms, statistics, machine learning, visualization, and data systems. ","edges_from":[993,178],"edges_to":[],"id":5390,"label":"DSC 80","title":"The Practice and Application of Data Science (4)"},{"dept":"VIS","description":"Research seminar in film history, theory, and/or criticism. Potential topics: film aesthetics, film criticism, film sound, and film in the digital era, with a focus on a specific period, theme, or context. Class will be devoted to discussion of readings in connection with a film or related art, fiction, or other media. Students will gain advanced knowledge of a specialized aspect of film history, theory, or criticism in a setting that promotes research, reports, and writing. ","edges_from":[1664,1657,2844],"edges_to":[],"id":5391,"label":"VIS 150A","title":"Seminar in Film History and Theory (4)"},{"dept":"TDMV","description":"An introduction to the basic technique of hip-hop, studied to enhance an understanding of the historical cultural content of the American form hip-hop and street dances in current choreography. May be taken for credit four times. ","edges_from":[],"edges_to":[5610,5611],"id":5392,"label":"TDMV 138","title":"Beginning Hip-Hop (2)"},{"dept":"MUS","description":"Consideration and development of pedagogical methods appropriate to undergraduate teaching. ","edges_from":[],"edges_to":[],"id":5393,"label":"MUS 501","title":"Apprentice Teaching—Nondepartmental (4)"},{"dept":"MUS","description":"Participation in the undergraduate teaching program is required of all graduate students at the equivalent of 25 percent time for three quarters (six units is required for all graduate students). ","edges_from":[],"edges_to":[],"id":5394,"label":"MUS 500","title":"Apprentice Teaching (1–4)"},{"dept":"HILA","description":"Exploration of the relationships between socioeconomic and cultural development in Caribbean history; slavery and empire; nationalism and migration; vodun and Rastafarianism, and the literary arts.","edges_from":[],"edges_to":[],"id":5395,"label":"HILA 126","title":"From Columbus to Castro: Caribbean Culture and Society (4)"},{"dept":"CHEM","description":"Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.","edges_from":[],"edges_to":[],"id":5396,"label":"CHEM 219B","title":"Special Topics in Biochemistry (4)"},{"dept":"HILA","description":"The course surveys Chile’s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his or her own choosing and develop the topic for class presentation and a final paper. The course will cover politics, cultural changes, class struggles, Allende’s revolutionary movement, and Pinochet’s dictatorship to the present.","edges_from":[],"edges_to":[],"id":5397,"label":"HILA 124","title":"The History of Chile 1880–Present (4)"},{"dept":"HILA","description":"The Incas called their realm Tahuantinsuyu (Land of the Four Quarters). But the Incas were only one of the many ethnic groups in the Andean region. Many different other groups became a part of the Tahuantinsuyu in the wake of Inca expansion. Over the past decade, new and fascinating information on these processes have been published, and allow for a rereading of Inca history between 900 and 1535. +","edges_from":[],"edges_to":[],"id":5398,"label":"HILA 123","title":"The Incas and Their Ancestors (4)"},{"dept":"HILA","description":"A lecture-discussion course on the historical roots of revolutionary Cuba, with special emphasis on the impact of the United States on the island’s development and society.","edges_from":[],"edges_to":[],"id":5399,"label":"HILA 122","title":"Cuba: From Colony to Socialist Republic (4)"},{"dept":"HILA","description":"A survey from the colonial period to the present, with an emphasis on the nineteenth and twentieth centuries. Among the topics covered: the expansion of the frontier, the creation of a cosmopolitan, predominately European culture, and the failure of industrialization to provide an economic basis for democracy.","edges_from":[],"edges_to":[],"id":5400,"label":"HILA 120","title":"History of Argentina (4)"},{"dept":"LIGN","description":"A discourse-centered examination of ASL verbal arts: rhyme, meter, rhythm, handedness, nonmanual signals, and spatial mapping; creation of scene and mood; properties of character, dialogue, narration, and voice; cultural tropes; poetic constructions in everyday genres; transcription, body memory and performance. ","edges_from":[3280],"edges_to":[],"id":5401,"label":"LIGN 144","title":"Discourse Analysis: American Sign Language and Performing Arts (4)"},{"dept":"POLI","description":"This internship is attached to the UCDC Program. Students participating in the UCDC Program are placed in an internship in the Washington, DC, area requiring approximately seventeen to twenty-three hours per week. ","edges_from":[],"edges_to":[],"id":5402,"label":"POLI 197I","title":"Political Science Washington Internship (6, 8)"},{"dept":"HILA","description":"Introduction to the historiography on Latin America for the colonial period from Spanish and Portuguese conquests to the Wars of Independence. Requirements will vary for undergraduate, MS, and PhD students. Graduate students are required to submit an additional research paper. ","edges_from":[],"edges_to":[],"id":5403,"label":"HILA 167/267","title":"Scholarship on Latin American History in the Colonial Period (4)"},{"dept":"MMW","description":"","edges_from":[],"edges_to":[1688],"id":5404,"label":"MMW 5","title":""},{"dept":"COGS","description":"Research is showing that cellular metabolic processes are mediating normal and abnormal brain function. For example, neurocognitive disorders often co-occur with metabolic disturbances, such as insulin resistance, diabetes, and obesity. An understanding of these mechanisms will provide insight to new treatments for cognitive and neurological disorders. The course will cover topics on the role of abnormal cellular structure, genetic, epigenetic and pathogenic influences on synaptic signaling. ","edges_from":[],"edges_to":[],"id":5405,"label":"COGS 163","title":"Metabolic Disorders of the Brain (4)"},{"dept":"LTIT","description":"","edges_from":[],"edges_to":[],"id":5406,"label":"LTIT 137","title":"Studies in Modern Italian Prose (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":5407,"label":"LTEN 156","title":"American Literature from the Civil War to World War I (4)"},{"dept":"GPPS","description":"This course encourages sustained debate about US interventions into conflict and post-conflict settings abroad since the end of the Cold War. We will consider the broad trends in international politics, with particular focus on the nature of “unipolarity,” “responsibility to protect,” and the politics of border regions. We will look at both governmental and nongovernmental actors. Renumbered from IRGN 434. Students may not receive credit for GPPS 434 and IRGN 434.","edges_from":[],"edges_to":[],"id":5408,"label":"GPPS 434","title":"Humanitarian Interventions (4)"},{"dept":"GPPS","description":"Course engages central debates regarding US grand strategy and encourages analysis of regional crisis-spots using replicable open-source data. Emphasis is on deploying theoretical arguments in the service of a policy agenda and tensions between rival schools of theory in the context of contemporary politics. Topics include nuclear nonproliferation, humanitarian military interventions, democracy promotion, “War on Terror,” and policy toward “rogue” and unrecognized states. Renumbered from IRGN 433. Students may not receive credit for GPPS 433 and IRGN 433.","edges_from":[],"edges_to":[],"id":5409,"label":"GPPS 433","title":"Debating US Security Policy (4)"},{"dept":"MATH","description":"Second course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology. May be taken for credit up to three times. ","edges_from":[3054],"edges_to":[5419],"id":5410,"label":"MATH 203B","title":"Algebraic Geometry II (4)"},{"dept":"GPPS","description":"Prepares students to analyze the causes of repression and the effectiveness of political intervention. Attention will focus on the evaluation of the design, implementation, and effectiveness of human rights policy, including international organizations, democracy, trade, and social movement advocacy. Renumbered from IRGN 430. Students may not receive credit for GPPS 430 and IRGN 430.","edges_from":[],"edges_to":[],"id":5411,"label":"GPPS 430","title":"Human Rights, Public Policy, and International Relations (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":5412,"label":"LTEN 154","title":"The American Renaissance (4)"},{"dept":"CHIN","description":"(4-4-4)","edges_from":[],"edges_to":[],"id":5413,"label":"CHIN 185A-B-C","title":"Readings in Chinese Culture and Society"},{"dept":"SOCG","description":"A consideration of the major theories of schooling and society, including functionalist, conflict, critical, and interactional; selected topics in the sociology of education will be addressed in a given quarter, including: the debate over inequality, social selection, cultural reproduction and the transition of knowledge, the cognitive and economic consequences of education. Major research methods will be discussed and critiqued.","edges_from":[],"edges_to":[],"id":5414,"label":"SOCG 270","title":"The Sociology of Education (4)"},{"dept":"PSYC","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":5415,"label":"PSYC 87","title":"Freshman Seminar (1)"},{"dept":"COGS","description":"(Cross-listed with MUS 20.) How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both Cognitive Science 20 and MUS 20.","edges_from":[],"edges_to":[],"id":5416,"label":"COGS 20","title":"Exploring the Musical Mind (4)"},{"dept":"PSYC","description":"This course provides students the opportunity to learn about the intricate relationship that exists between brain and behavior, as well as the evolutionary forces that shape this interaction. Lectures for this course aim to introduce students to some of the best examples in the literature that highlight these issues, while a parallel component of the course aims to introduce students to performing research on the topic. ","edges_from":[2333,862,1389],"edges_to":[],"id":5417,"label":"PSYC 81","title":"Laboratory in Brain, Behavior, and Evolution (4)"},{"dept":"HILA","description":"Inside or outside the household, women have always worked. Where do we find Latin American women? How has the labor market changed? How was and is women’s work perceived? What were the consequences of changing work patterns on family life? ","edges_from":[],"edges_to":[],"id":5418,"label":"HILA 164/264","title":"Women’s Work and Family Life in Latin America (4)"},{"dept":"MATH","description":"Third course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology, curves, and surfaces. May be taken for credit up to three times. ","edges_from":[5410],"edges_to":[],"id":5419,"label":"MATH 203C","title":"Algebraic Geometry III (4)"},{"dept":"AAS","description":"Individual research and study on a particular subject related to African American studies by special arrangement with and under the direction of a faculty member. P/NP grades only. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":5420,"label":"AAS 199","title":"Independent Study in African American Studies (2 or 4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":5421,"label":"LTEN 150","title":"Gender, Text, and Culture (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[3365],"id":5422,"label":"MAE 209BENG","title":""},{"dept":"CSE","description":"Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. ","edges_from":[17],"edges_to":[],"id":5423,"label":"CSE 158","title":"Recommender Systems and Web Mining (4)"},{"dept":"HIEU","description":"Multiple reformations of the European Christian Church confronted with the rise of universities, colonial exploration, absolutism, scientific revolutions, and the Enlightenment. Focused attention will be given to early modern Europe (Muslims, Jews, and Protestant sects).","edges_from":[],"edges_to":[],"id":5424,"label":"HIEU 105S","title":"Devotions, Doctrines, and Divisions: Religion in Early Modern European Society (4)"},{"dept":"CSE","description":"The goal of computer vision is to compute scene and object properties from images and video. This introductory course includes feature detection, image segmentation, motion estimation, object recognition, and 3-D shape reconstruction through stereo, photometric stereo, and structure from motion. ","edges_from":[17,11,139,2054],"edges_to":[],"id":5425,"label":"CSE 152","title":"Introduction to Computer Vision (4)"},{"dept":"CSE","description":"Construction of computational models that “do the same things people do,” in terms of perception, categorization, memory, language, action, etc. and typically in a fashion that is plausibly carried out by the neural networks in our brains. The model must fit behavioral, neurophysiological, and/or neuropsychological data. Recommended preparation: background knowledge in computer science, cognitive science, psychology, or neuroscience, and a basic understanding of the most fundamental concepts of differential calculus, linear algebra, and statistics. Computer programming skills may be useful to some students as they conduct their term projects, but such skills are not required. ","edges_from":[16,17],"edges_to":[],"id":5426,"label":"CSE 153","title":"Cognitive Modeling (4)"},{"dept":"CSE","description":"to Artificial Intelligence: Search and Reasoning (4)","edges_from":[],"edges_to":[],"id":5427,"label":"CSE 150","title":"Introduction"},{"dept":"CSE","description":"to Artificial Intelligence: Statistical Approaches (4)","edges_from":[],"edges_to":[],"id":5428,"label":"CSE 151","title":"Introduction"},{"dept":"HIEA","description":"This colloquium will explore the relationship between cinema and society in twentieth-century China. The emphasis will be on the social, political, and cultural impact of filmmaking. The specific period under examination (1930s, 1940s, post-1949) may vary each quarter. Graduate students will be expected to submit an additional paper. ","edges_from":[],"edges_to":[],"id":5429,"label":"HIEA 163/263","title":"Cinema and Society in Twentieth-Century China (4)"},{"dept":"HLAW","description":"Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will emphasize that global health policy challenges require a multidisciplinary approach involving a broad set of stakeholders and that local, national, and global health policy are all intertwined. ","edges_from":[],"edges_to":[],"id":5430,"label":"HLAW 219A","title":"Global Health Policy A: Foundations (3)"},{"dept":"SOCI","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in sociology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5431,"label":"SOCI 192","title":"Senior Seminar in Sociology (1)"},{"dept":"HLAW","description":"This course examines advanced current topics in global health policy using a combination of instruction, student participation, and policy simulation. Topics examined are cross-cutting across local, national, regional, and international health policy-making with practical examples of why more coordinated global health governance is needed. ","edges_from":[],"edges_to":[],"id":5432,"label":"HLAW 219B","title":"Global Health Policy B: Advanced Topics (3)"},{"dept":"MMW","description":"","edges_from":[],"edges_to":[1689],"id":5433,"label":"MMW 6","title":""},{"dept":"LTEA","description":"Topics in Filipino Literature and Culture (World War II–Present) (4)","edges_from":[],"edges_to":[],"id":5434,"label":"LTEA 152B","title":""},{"dept":"LTEA","description":"Topics in Filipino Literature and Culture (Nineteenth Century–World War","edges_from":[],"edges_to":[],"id":5435,"label":"LTEA 152A","title":""},{"dept":"PHYS","description":"This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 216. ","edges_from":[5115,295],"edges_to":[],"id":5436,"label":"PHYS 116","title":"Fluid Dynamics for Physicists (4)"},{"dept":"PHYS","description":"The linear theory of ocean surface waves, including group velocity, wave dispersion, ray theory, wave measurement and prediction, shoaling waves, giant waves, ship wakes, tsunamis, and the physics of the surf zone. Cross-listed with SIO 111. Students cannot earn credit for both Physics 111 and SIO 111. ","edges_from":[385,36,133,134,129,136,138,135,37,38,29,30,31],"edges_to":[],"id":5437,"label":"PHYS 111","title":"Introduction to Ocean Waves (4)"},{"dept":"RELI","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic related to the study of religion with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.","edges_from":[],"edges_to":[],"id":5438,"label":"RELI 87","title":"Freshman Seminar in Religion (1)"},{"dept":"HILD","description":"A survey of contemporary issues concerning law and society, with emphasis on historical analysis and context. Satisfies the lower-division requirement for the law and society minor.","edges_from":[],"edges_to":[],"id":5439,"label":"HILD 50","title":"Introduction to Law and Society (4)"},{"dept":"LTSP","description":"Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.","edges_from":[],"edges_to":[],"id":5440,"label":"LTSP 298","title":"Special Projects: Writing Course (1–12)"},{"dept":"LTSP","description":"Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.","edges_from":[],"edges_to":[],"id":5441,"label":"LTSP 299","title":"Dissertation (1–12)"},{"dept":"SOCI","description":"Tutorial: individual study under the direction of an interested faculty member in an area not covered by the present course offerings. Approval must be secured from the departmental committee on independent studies. ","edges_from":[],"edges_to":[],"id":5442,"label":"SOCI 199","title":"Independent Study (4)"},{"dept":"MBC","description":"Building on the knowledge and experience gained from the entire curriculum of the master’s in Marine Biodiversity and Conservation (MAS-MBC) program, students will design and present a specific marine conservation project. ","edges_from":[5443,4828],"edges_to":[5443],"id":5443,"label":"MBC 296","title":"Capstone Independent Study Project (6)"},{"dept":"LTSP","description":"This course may be designed according to an individual student’s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.","edges_from":[],"edges_to":[],"id":5444,"label":"LTSP 297","title":"Directed Studies: Reading Course (1–12)"},{"dept":"PSYC","description":"Discussion of theories and experiments investigating language production, comprehension, or acquisition.","edges_from":[],"edges_to":[],"id":5445,"label":"PSYC 244","title":"Special Topics in Psycholinguistics (4)"},{"dept":"PSYC","description":"We often learn through observations or from testimony from others. Occasionally, we learn simply by thinking. How do we generate insights in the absence of new information from the external world? This course examines the cognitive capacities involved in learning by thinking, including thought experiments, deduction, analogy, imagination, and learning by explaining. This discussion-based seminar will take a cognitive science approach, emphasizing cognitive development. ","edges_from":[],"edges_to":[],"id":5446,"label":"PSYC 247","title":"Learning by Thinking in Children (and Adults) (4)"},{"dept":"PSYC","description":"This seminar focuses on the interplay between emotion and cognition. We will consider how emotion influences perception, reasoning, memory, and judgment, and how cognitive processes can have emotional consequences. We will also discuss physiological and neural underpinnings of affective influence and debate more general issues such as emotion and rationality. ","edges_from":[],"edges_to":[],"id":5447,"label":"PSYC 246","title":"Emotion and Cognition (4)"},{"dept":"PSYC","description":"This hands-on programming course focuses on the design, implementation, and analysis of online experiments, particularly using Amazon’s Mechanical Turk. Topics include experimental design and counterbalancing, stimulus presentation and timing, response collection using the mouse and keyboard, and debugging experiments written in JavaScript and HTML/CSS. Course work will include individual projects. Recommended preparation: Graduate students who have not programmed at all should speak with the professor beforehand. ","edges_from":[],"edges_to":[],"id":5448,"label":"PSYC 241","title":"Programming Web-Based Experiments for Psychology Research (4)"},{"dept":"PSYC","description":"This course will explore","edges_from":[],"edges_to":[],"id":5449,"label":"PSYC 240","title":"The Primate Brain (4)"},{"dept":"PSYC","description":"This course deals with perception of sound, particularly music, and focuses on unusual aspects of music perception, including musical illusions and absolute pitch. Relationships between music and language will be explored, and there will be discussions concerning the evolutionary origins of these two forms of communication. ","edges_from":[],"edges_to":[],"id":5450,"label":"PSYC 243","title":"Sound and Music Perception (4)"},{"dept":"PSYC","description":"Current Directions in Developmental Psychology (1)","edges_from":[],"edges_to":[],"id":5451,"label":"PSYC 242","title":""},{"dept":"PSYC","description":"The first part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology.","edges_from":[],"edges_to":[5454],"id":5452,"label":"PSYC 201A","title":"Quantitative Methods in Psychology I (6)"},{"dept":"PSYC","description":"The third part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology. ","edges_from":[5454],"edges_to":[],"id":5453,"label":"PSYC 201C","title":"Quantitative Methods in Psychology III (6)"},{"dept":"PSYC","description":"","edges_from":[5452],"edges_to":[5453],"id":5454,"label":"PSYC 201B","title":""},{"dept":"PHIL","description":"A study of selected texts or topics from the history of Greek philosophy. Usually centers on works by Plato or Aristotle. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5455,"label":"PHIL 210","title":"Greek Philosophy (4)"},{"dept":"VIS","description":"Explores various strategies exhibited in a wide range of contemporary art practices engaging in the representation of personality, spirituality, and the physical self.","edges_from":[],"edges_to":[],"id":5456,"label":"VIS 218N","title":"Imaging Selves and Others (4)"},{"dept":"PHYS","description":"Quantum principles of state (pure, composite, entangled, mixed), observables, time evolution, and measurement postulate. Simple soluble systems: two-state, harmonic oscillator, and spherical potentials. Angular momentum and spin. Time-independent approximations.","edges_from":[],"edges_to":[5458],"id":5457,"label":"PHYS 212A","title":"Quantum Mechanics I (4)"},{"dept":"PHYS","description":"Symmetry theory and conservation laws: time reversal, discrete, translation and rotational groups. Potential scattering. Time-dependent perturbation theory. Quantization of Electromagnetic fields and transition rates. Identical particles. Open systems: mixed states, dissipation, decoherence. ","edges_from":[5457],"edges_to":[],"id":5458,"label":"PHYS 212B","title":"Quantum Mechanics II (4)"},{"dept":"SIOC","description":"Radiative, physical, and dynamical processes that govern the mean state, variability, and change of the atmosphere and climate including greenhouse gases, clouds and aerosols, convection and precipitation, general circulation, and coupled atmosphere-ocean interactions. Renumbered from SIO 217C. ","edges_from":[5460,2899,2900,2901],"edges_to":[5462],"id":5459,"label":"SIOC 217C","title":"Atmospheric and Climate Sciences III (4)"},{"dept":"SIO","description":"","edges_from":[],"edges_to":[5459,5462],"id":5460,"label":"SIO 217B","title":""},{"dept":"130A-B-C","description":"","edges_from":[],"edges_to":[],"id":5461,"label":"130A-B-C","title":"Third-Year Japanese"},{"dept":"SIOC","description":"Atmospheric chemistry that impacts climate change, including photochemical reactions, ozone chemistry, and aerosol evolution in the troposphere and stratosphere. Atmospheric applications of catalytic cycles, heterogeneous chemistry, and microphysical processes will include the ozone hole, urban smog, and aerosol-cloud interactions. Renumbered from SIO 217D. Students may not receive credit for both SIOC 217D and SIO 217D. ","edges_from":[5459,2899,5460,2901,5463,2900],"edges_to":[],"id":5462,"label":"SIOC 217D","title":"Atmospheric and Climate Sciences IV (4)"},{"dept":"SIO","description":"","edges_from":[],"edges_to":[5462],"id":5463,"label":"SIO 217C","title":""},{"dept":"NEU","description":"Molecular and cellular approaches to the study of the nervous system are advancing neurobiology at an increasingly rapid pace. This graduate-level course will address the latest molecular advances in the areas of: 1) synapse formation, neurotransmitter release, and neurotransmitter receptors; 2) nerve growth factors, their receptors, and neuronal apoptosis; 3) transcriptional regulation in the brain and peripheral nervous system; 4) cell culture, transgenic, and knock-out mouse model systems; 5) the molecular bases of genetic, psychiatric, and degenerative diseases of the nervous system; and 6) the current molecular knowledge of vision, sensory transduction, circadian rhythms, learning, memory, and behavior.","edges_from":[],"edges_to":[],"id":5464,"label":"NEU 268","title":"Molecular and Cellular Neurobiology (4)"},{"dept":"NEU","description":"Course focuses on developmental processes during formation of neural circuits. Molecular, genetic, cellular mechanisms controlling neurogenesis, neuronal differentiation, positioning (migration), axon/dendrite patterning, and synapse formation will be discussed. Role of neural activity shaping circuit formation will be explored. ","edges_from":[],"edges_to":[],"id":5465,"label":"NEU 266","title":"Development of Neural Circuits (4)"},{"dept":"NEU","description":"Anatomical and pharmacological substrates activated following tissue or nerve injury will be discussed. Changes in afferents and spinal cord, including increased expressions of channels and receptors, during chronic pain states will be emphasized. Clinical relevance and treatment will be included. (S/U grades only.) (F)","edges_from":[],"edges_to":[],"id":5466,"label":"NEU 265","title":"Mechanisms of Pain (2)"},{"dept":"PHIL","description":"A study of selected texts or topics from philosophers of the eighteenth century: for example, Kant or Hume. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5467,"label":"PHIL 215","title":"Eighteenth-Century Philosophy (4)"},{"dept":"NEU","description":"Students will review basic principles of light and electron microscopy and learn a variety of basic and advanced microscopy methods through lecture and hands-on training. Each student will have his or her own project. Additional supervised instrument time is available. ","edges_from":[],"edges_to":[],"id":5468,"label":"NEU 260","title":"Light and Electron Microscopy of Cells and Tissue (4)"},{"dept":"CHEM","description":"(Cross-listed with SIO 141.) Introduction to the chemistry and distribution of the elements in seawater, emphasizing basic chemical principles such as electron structure, chemical bonding, and group and periodic properties and showing how these affect basic aqueous chemistry in marine systems. ","edges_from":[215],"edges_to":[],"id":5469,"label":"CHEM 174","title":"Chemical Principles of Marine Systems (4)"},{"dept":"CHEM","description":"Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 273. ","edges_from":[578,215],"edges_to":[],"id":5470,"label":"CHEM 173","title":"Atmospheric Chemistry (4)"},{"dept":"CHEM","description":"An introduction to chemical concerns in nature with emphasis on soil and water issues like agricultural productivity, biological impacts in the environment, deforestation, ocean desserts, natural and manmade disasters (fires, nuclear winter, volcanoes), and waste handling. Recommended preparation: CHEM 171 (formerly 149A). Students may only receive credit for one of the following: CHEM 172 or 149B. ","edges_from":[578,215],"edges_to":[],"id":5471,"label":"CHEM 172","title":"Environmental Chemistry II (4)"},{"dept":"CHEM","description":"An introduction to chemical concerns in nature with emphasis on atmospheric issues like air pollution, chlorofluorocarbons and the ozone hole, greenhouse effects and climate change, impacts of radioactive waste, sustainable resource usage, and risks and benefits of energy sources. Students may only receive credit for one of the following: CHEM 149A or 171. ","edges_from":[578,215],"edges_to":[],"id":5472,"label":"CHEM 171","title":"Environmental Chemistry I (4)"},{"dept":"LTSP","description":"Analysis and discussion of literary production during and after the Franco dictatorship. May focus on specific genres, sub-period, or issues. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":5473,"label":"LTSP 129","title":"Spanish Writing after 1939 (4)"},{"dept":"PSYC","description":"This course provides the opportunity for students to continue to carry out their research projects. Must be taken for a letter grade for the Psychology Honors Program. ","edges_from":[5475],"edges_to":[5476],"id":5474,"label":"PSYC 194B","title":"Honors Thesis II (4)"},{"dept":"PSYC","description":"","edges_from":[3741,3742,1839],"edges_to":[5474],"id":5475,"label":"PSYC 194A","title":""},{"dept":"PSYC","description":"This course provides the opportunity for students to complete their research, write their honors thesis, and present their results at the Honors Poster Session. Must be taken for a letter grade for the Psychology Honors Program. ","edges_from":[5474],"edges_to":[],"id":5476,"label":"PSYC 194C","title":"Honors Thesis III (4)"},{"dept":"LTSP","description":"","edges_from":[],"edges_to":[],"id":5477,"label":"LTSP 122","title":"The Romantic Movement in Spain (4)"},{"dept":"LTSP","description":"Investigation of selected topics concerning Spanish cultural production after 1800. Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":5478,"label":"LTSP 123","title":"Topics in Modern Spanish Culture (4)"},{"dept":"SOCI","description":"Students test their own sociological research hypotheses using data from recent American and international social surveys and state-of-the-art computer software. Application of classical scientific method, interpretation of statistical results, and clear presentation of research findings. ","edges_from":[5480,2979,5479],"edges_to":[5479],"id":5479,"label":"SOCI 109","title":"Analysis of Sociological Data (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[5479],"id":5480,"label":"SOCA 109","title":""},{"dept":"SOCI","description":"Translation of research goals into a research design, including probability sampling, questionnaire construction, data collection (including interviewing techniques), data processing, coding, and preliminary tabulation of data. Statistical methods of analysis will be limited primarily to percentaging. ","edges_from":[5481,5482,2979],"edges_to":[5481],"id":5481,"label":"SOCI 108","title":"Survey Research Design (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[5481],"id":5482,"label":"SOCA 108","title":""},{"dept":"SOCI","description":"Social network analysts view society as a web of relationships rather than a mere aggregation of individuals. In this course, students will learn how to collect, analyze, and visualize social network data, as well as utilize these techniques to answer an original sociological research question. ","edges_from":[2979],"edges_to":[],"id":5483,"label":"SOCI 102","title":"Network Data and Methods (4)"},{"dept":"SOCI","description":"Major figures and schools in sociology from the early nineteenth century onwards, including Marx, Tocqueville, Durkheim, and Weber. The objective of the course is to provide students with a background in classical social theory, and to show its relevance to contemporary sociology. ","edges_from":[5484,5485],"edges_to":[5484],"id":5484,"label":"SOCI 100","title":"Classical Sociological Theory (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[5484],"id":5485,"label":"SOCA 100","title":""},{"dept":"SOCI","description":"Epidemiology is the statistical study of disease, and epidemiological methods are a powerful tool for understanding the causes of certain diseases, e.g., AIDS, scurvy, cholera, and lung cancer. These fundamental epidemiological methods will be taught. ","edges_from":[2979,5486,5487],"edges_to":[5486],"id":5486,"label":"SOCI 107","title":"Epidemiological Methods: Statistical Study of Disease (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[5486],"id":5487,"label":"SOCA 107","title":""},{"dept":"SOCI","description":"A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time, and their application in student research projects. ","edges_from":[5488,5489,2979],"edges_to":[5488],"id":5488,"label":"SOCI 106","title":"Comparative and Historical Methods (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[5488],"id":5489,"label":"SOCA 106","title":""},{"dept":"SOCI","description":"(Conjoined with Soc/G 227.) Ethnographic recording of field data in written and audiovisual formats including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual ethnographic videotape. ","edges_from":[5490,5491,5492],"edges_to":[5490],"id":5490,"label":"SOCI 105","title":"Ethnographic Film: Media Methods (6)"},{"dept":"G","description":"","edges_from":[],"edges_to":[5490],"id":5491,"label":"G ??? 227","title":""},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[5490],"id":5492,"label":"SOCA 105","title":""},{"dept":"SOCI","description":"Research: Methods of Participant Observation (4)","edges_from":[],"edges_to":[],"id":5493,"label":"SOCI 104","title":"Field"},{"dept":"POLI","description":"This course examines general themes affecting the region (social structure and regime type, religion and modernization, bonds and tensions), the character of major states, and efforts to resolve the conflict between Israel and its Arab and Islamic neighbors. ","edges_from":[],"edges_to":[],"id":5494,"label":"POLI 121","title":"Government and Politics of the Middle East (4)"},{"dept":"CSE","description":"Exploration of topics in mathematics and engineering","edges_from":[],"edges_to":[],"id":5495,"label":"CSE 4GS","title":"Mathematical Beauty in Rome (4)"},{"dept":"POLI","description":"What do we mean by “international","edges_from":[],"edges_to":[],"id":5496,"label":"POLI 122","title":"Politics of Human Rights (4)"},{"dept":"POLI","description":"What have been the effects of globalization on gender, and how has gender shaped conceptions and processes of globalization? Through case studies drawn from the global north and south, this course critically assesses contemporary theoretical debates on global gender justice.","edges_from":[],"edges_to":[],"id":5497,"label":"POLI 125","title":"Gender, Politics, and Globalization (4)"},{"dept":"POLI","description":"(Same as SOCI 188I.) In this course, we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war.","edges_from":[],"edges_to":[],"id":5498,"label":"POLI 124","title":"Israeli-Palestinian Conflict (4)"},{"dept":"POLI","description":"This course critically examines central concepts and theories of development, and assesses their utility in understanding political, economic, and social change in the developing world. Central case studies are drawn from three regions: Latin America, Sub-Saharan Africa, and Southeast Asia. ","edges_from":[],"edges_to":[],"id":5499,"label":"POLI 127","title":"Politics of Developing Countries (4)"},{"dept":"POLI","description":"Why are some countries rich and others poor? This course examines how political and economic factors shape development trajectories, focusing on Africa, Asia, and Latin America. Topics include the impact of democracy, corruption, oil, and foreign aid on economic development. ","edges_from":[],"edges_to":[],"id":5500,"label":"POLI 126","title":"Political Economy of Development (4)"},{"dept":"POLI","description":"Examine the role of elections in new and fragile democracies, explore how politicians construct elections to suppress increased levels of democracy, the techniques used to undermine free and fair elections, and the strategic responses to these actions by domestic/international actors. ","edges_from":[],"edges_to":[],"id":5501,"label":"POLI 129","title":"How to Steal an Election (4)"},{"dept":"POLI","description":"This course considers the interplay between factor endowments, political institutions, and economic performance. It focuses on the connection between representative political institutions and the emergence and expansion of markets.","edges_from":[],"edges_to":[],"id":5502,"label":"POLI 128","title":"Autocracy, Democracy, and Prosperity (4)"},{"dept":"Linguistics/Italian","description":"A course to increase the proficiency level of students who have completed LIIT 1C/1CX, 5CS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT1D/1DX. ","edges_from":[3640],"edges_to":[],"id":5503,"label":"Linguistics/Italian (LIIT) 5DS","title":"Fundamentals of Italian IV (5)"},{"dept":"FPM","description":"Focus on qualitative methods addressing both theoretical and practical dimensions of conducting qualitative research. Identify research questions for which qualitative methods are appropriate, and to critique qualitative research in terms of design, interview techniques, analysis, and interpretation.","edges_from":[],"edges_to":[],"id":5504,"label":"FPM 288","title":"Introduction to Qualitative Research Methods (4)"},{"dept":"HDP","description":"Apprentice in Human Development (4)","edges_from":[],"edges_to":[],"id":5505,"label":"HDP 195","title":"Instructional"},{"dept":"HDP","description":"This course combines lectures on research methodology (three hours/week) with an applied field research experience (four hours/week) conducted at a preapproved study site. Required: completion of a field notebook, review paper, oral presentation, and final paper. Students must submit the pre-enrollment questionnaire one academic year prior to enrollment. See","edges_from":[],"edges_to":[],"id":5506,"label":"HDP 191","title":"Field Research in Human Development (6)"},{"dept":"ECE","description":"of Nanoscience and Nanotechnology (4)","edges_from":[],"edges_to":[],"id":5507,"label":"ECE 212AN","title":"Principles"},{"dept":"HDP","description":"Research in Human Development (4)","edges_from":[],"edges_to":[],"id":5508,"label":"HDP 193","title":"Advanced"},{"dept":"NEU","description":"General Clinical Selective Clerkship (7)","edges_from":[],"edges_to":[5920,5921],"id":5509,"label":"NEU 401","title":"Neurology"},{"dept":"HDP","description":"Study in Human Development (4)","edges_from":[],"edges_to":[],"id":5510,"label":"HDP 199","title":"Independent"},{"dept":"COGS","description":"Students engage in discussions of reading of recent research in an area designated and directed by the instructor and also participate in the design and execution of original research. Students are expected to demonstrate oral and written competence in presenting original research. ","edges_from":[],"edges_to":[],"id":5511,"label":"COGS 291","title":"Laboratory Research (1–4)"},{"dept":"COGS","description":"Laboratory rotations provide students with experience in the various experimental methods used in cognitive science. ","edges_from":[],"edges_to":[],"id":5512,"label":"COGS 290","title":"Cognitive Science Laboratory Rotation (2)"},{"dept":"HIGR","description":"Cross-listed as Communication 225B, Philosophy 209B, and Sociology 255B. Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ","edges_from":[],"edges_to":[],"id":5513,"label":"HIGR 239","title":"Seminar in Science Studies (4)"},{"dept":"HIGR","description":"Cross-listed as Communication 225A, Philosophy 209A, and Sociology 255A. Study and discussion of classic work in history of science, sociology of science and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ","edges_from":[],"edges_to":[],"id":5514,"label":"HIGR 238","title":"Introduction to Science Studies (4)"},{"dept":"COGS","description":"Students are provided directed research on their dissertation topic by faculty advisers.","edges_from":[],"edges_to":[],"id":5515,"label":"COGS 299","title":"Thesis Research (1–12)"},{"dept":"HIGR","description":"This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the “foundational” culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207.","edges_from":[],"edges_to":[],"id":5516,"label":"HIGR 234","title":"Eastern Mediterranean Archaeology: New Perspectives (4)"},{"dept":"HIGR","description":"Cross-listed with SIO 201. Intensive study of specific problems in the history of the ocean sciences, and of related earth and atmospheric sciences, in the modern period. Topics vary from year to year, and students may therefore repeat the course for credit.","edges_from":[],"edges_to":[],"id":5517,"label":"HIGR 237","title":"Topics in the History of Ocean Sciences (4)"},{"dept":"PSYC","description":"This course provides an understanding of how the frontal lobes allow us to engage in complex mental processes. Topics may include anatomy and theory of prefrontal function, frontal lobe clinical syndromes, pharmacology and genetics, emotion control, and cognitive training. ","edges_from":[],"edges_to":[],"id":5518,"label":"PSYC 123","title":"Cognitive Control and Frontal Lobe Function (4)"},{"dept":"EDS","description":"Research and Evaluation Methods (4)","edges_from":[],"edges_to":[],"id":5519,"label":"EDS 261A","title":"Advanced"},{"dept":"EDS","description":"Research and Evaluation Methods (4)","edges_from":[],"edges_to":[],"id":5520,"label":"EDS 261C","title":"Advanced"},{"dept":"EDS","description":"Research and Evaluation Methods (4)","edges_from":[],"edges_to":[],"id":5521,"label":"EDS 261B","title":"Advanced"},{"dept":"LTWR","description":"Undergraduate instruction assistance. A student will 1) assist TA in editing students’ writing for LTWR 8A-B-C during class and outside of class; and 2) prepare a paper and report for the professor at the end of the quarter. May be taken for credit up to two times. ","edges_from":[],"edges_to":[],"id":5522,"label":"LTWR 195","title":"Apprentice Teaching (4)"},{"dept":"LTWR","description":"Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ","edges_from":[],"edges_to":[],"id":5523,"label":"LTWR 196","title":"Honors Thesis (4)"},{"dept":"LTWR","description":"Tutorial; individual guidance in areas of writing not normally covered in courses. (P/NP grades only.) May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5524,"label":"LTWR 199","title":"Special Studies (2 or 4)"},{"dept":"LTWR","description":"Directed group study in areas of writing not normally covered in courses. (P/NP grades only.) Repeatable for credit when areas of study vary.","edges_from":[],"edges_to":[],"id":5525,"label":"LTWR 198","title":"Directed Group Study (2 or 4)"},{"dept":"COMM","description":"Analysis of the changing content and sociopolitical role in Latin America of contemporary media, including the “new cinema” movement, recent developments in film, and popular television programming, including the telenovela. Examples drawn from Mexico, Brazil, Cuba, and other countries. ","edges_from":[537,538,539,540],"edges_to":[],"id":5526,"label":"COMM 140","title":"Cinema in Latin America (4)"},{"dept":"ECE","description":"Optical fibers, waveguides, laser communication","edges_from":[],"edges_to":[],"id":5527,"label":"ECE 243B","title":"Optical Fiber Communication (4)"},{"dept":"CSE","description":"Discussion on problems of current research interest in computer security. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ","edges_from":[],"edges_to":[],"id":5528,"label":"CSE 229C","title":"Topics/Seminar in Computer Security (1–4)"},{"dept":"BENG","description":"Teaching experience in an appropriate bioengineering undergraduate course under direction of the faculty member in charge of the course. Lecturing one to two hours per week in either a problem-solving section or regular lecture. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":5529,"label":"BENG 501","title":"Teaching Experience (2, 4)"},{"dept":"BENG","description":"Teaching experience in one of the six bioengineering lab courses designated as a part of the BENG PhD Specialization in Multi-Scale Biology. Student is under the direction of the faculty member in charge of the course. (S/U grades only.) ","edges_from":[],"edges_to":[],"id":5530,"label":"BENG 500","title":"Apprentice Teaching for Specialization in Multi-Scale Biology (2, 4)"},{"dept":"POLI","description":"Preparation of a major paper from research conducted while participating in the Research Apprenticeship (POLI 198RA). Presentations to and participation in weekly seminar meetings also required. Students can enroll in POLI 194RA only if they have previously taken or are simultaneously enrolled in 198RA. ","edges_from":[106],"edges_to":[],"id":5531,"label":"POLI 194RA","title":"Research Apprenticeship Seminar (4)"},{"dept":"MDE","description":"Introduction of project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. ","edges_from":[],"edges_to":[5533],"id":5532,"label":"MDE 260A","title":"Design and Implementation of Medical Device Technology I (1)"},{"dept":"MDE","description":"Second of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will begin to design a medical device and an engineering strategy. ","edges_from":[5532],"edges_to":[5534],"id":5533,"label":"MDE 260B","title":"Design and Implementation of Medical Device Technology II (2)"},{"dept":"MDE","description":"Third of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will complete and implement their medical device design and engineering strategy. ","edges_from":[5533],"edges_to":[],"id":5534,"label":"MDE 260C","title":"Design and Implementation of Medical Device Technology III (1)"},{"dept":"MGTF","description":"Develop theories of behavior motivated by psychology to describe various features of financial markets. Examine how the insights from behavioral finance complement the traditional paradigm and shed light on investors’ trading patterns, the behavior of asset prices, and corporate finance. Letter grades only. ","edges_from":[4268],"edges_to":[],"id":5535,"label":"MGTF 406","title":"Behavioral Finance (4)"},{"dept":"MGTF","description":"Covering the fundamentals of corporate finance and their application to valuation (including the WACC approach, APV approach, multiples, and real option valuation). We focus on important areas of corporate finance, including capital structure, real options, and financial distress and bankruptcy. Letter grades only. ","edges_from":[4268],"edges_to":[],"id":5536,"label":"MGTF 407","title":"Valuation in Corporate Finance (4)"},{"dept":"MGTF","description":"Introduction to state-of-the-art forecasting methods in finance. Students will learn to estimate forecasting models based on past values of the predicted variable(s), surveys, market information, and other economic data. Participants will become critical consumers of forecasts reported in the media. Letter grades only. ","edges_from":[],"edges_to":[],"id":5537,"label":"MGTF 405","title":"Business Forecasting (4)"},{"dept":"HMNR","description":"Explores where human rights come from and what they mean by integrating them into a history of modern society, from the Conquest of the Americas and the origins of the Enlightenment, to the Holocaust and the contemporary human rights regime.","edges_from":[],"edges_to":[],"id":5538,"label":"HMNR 100/HITO 119","title":"Introduction to Human Rights and Global Justice (4)"},{"dept":"COMM","description":"The social, legal, and economic forces affecting the evolution of mass communications institutions and structure in the industrialized world. The character and the dynamics of mass communications in the United States today. ","edges_from":[540],"edges_to":[],"id":5539,"label":"COMM 109E","title":"MC: Mass Communication: Political Economy of Mass Communication (4)"},{"dept":"COMM","description":"Advertising in historical and cross-cultural perspectives. Ideology and organization of the advertising industry; meaning of material goods; gifts in capitalist, socialist, and nonindustrial societies; natures of needs, desires, and whether advertising creates needs, desires; and approaches to decoding the advertising messages. ","edges_from":[540],"edges_to":[],"id":5540,"label":"COMM 109D","title":"MC: Advertising and Society (4)"},{"dept":"MGTF","description":"Examination of real estate capital markets, both debt and equity. Covered topics include real estate valuation, real options applied to real estate, real estate equity markets, and the place of real estate within a diversified investor’s portfolio. Letter grades only. ","edges_from":[4268],"edges_to":[],"id":5541,"label":"MGTF 408","title":"Real Estate Finance (4)"},{"dept":"MGTF","description":"Explains the mergers and acquisitions process. Topics include history, motivation, valuation, legal framework and tax issues of mergers and acquisitions, antitakeover strategies, takeover tactics, leveraged buyouts, joint venture, and strategic alliances. Students may not earn credit for both MGTF 409 and MGT 284. ","edges_from":[],"edges_to":[],"id":5542,"label":"MGTF 409","title":"Mergers, Acquisitions, and Corporate Restructuring (4)"},{"dept":"PHIL","description":"Central issues in contemporary philosophy of language, such as the nature of linguistic meaning, truth, content, reference, the syntax and semantics of various linguistic constructions, presupposition, speech acts, the epistemology of language understanding and language learning, the mental/psychological basis of linguistic understanding and use. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5543,"label":"PHIL 234","title":"Philosophy of Language (4)"},{"dept":"COMM","description":"Propaganda, in political-economic, national settings; Soviet Union; Nazi Germany; US World War I and II. Propaganda films, contribution of filmmakers to propaganda campaign. Explore issues in propaganda; persuasive communication; political propaganda; persuasive advertising; public relations; practical, ethical perspectives. ","edges_from":[540],"edges_to":[],"id":5544,"label":"COMM 109P","title":"MC: Propaganda and Persuasion (4)"},{"dept":"PHIL","description":"Contemporary debates on the nature, function, and operation of the mental. May include questions about the mind-body relation, mental causation, perception, consciousness, and mental representation. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5545,"label":"PHIL 236","title":"Philosophy of Mind (4)"},{"dept":"SE","description":"Introduction to plate tectonics and seismology. Rupture mechanism, measures of magnitude and intensity, earthquake occurrence and relation to geologic, tectonic processes. Probabilistic seismic hazard analysis. Strong earthquake ground motion; site effects on ground motion; structural response; soil-structure interaction; design criteria; code requirements. Use of computer resources. ","edges_from":[1621],"edges_to":[],"id":5546,"label":"SE 221","title":"Earthquake Engineering (4)"},{"dept":"PHIL","description":"Topics may include identity, personal identity, universals and particulars, modality and possible worlds, causation, reduction, supervenience, freedom and determinism, space and time, and realism versus antirealism. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5547,"label":"PHIL 230","title":"Metaphysics (4)"},{"dept":"PHIL","description":"This seminar will cover issues such as rival accounts of knowledge, justification, and warrant, traditional and contemporary perspectives on empiricism, rationalism, and pragmatism, and skepticism. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5548,"label":"PHIL 232","title":"Epistemology (4)"},{"dept":"MUS","description":"Advanced topics in music technology and its application to composition and/or performance. Offerings vary according to faculty availability and interest. May be repeated for credit. ","edges_from":[3485],"edges_to":[],"id":5549,"label":"MUS 267","title":"Advanced Music Technology Seminar (4)"},{"dept":"BENG","description":"Quantitative description of physiological systems, e.g., electrical and mechanical properties of muscle (skeletal and cardiac). Modeling and simulation of properties. Kidney, transport, and models. Neural circuits and models. ","edges_from":[1672,2025,2026,1669,1670],"edges_to":[],"id":5550,"label":"BENG 189","title":"Physiological Systems Engineering (4)"},{"dept":"PHYS","description":"Quantized electromagnetic fields and introductory quantum optics. Symmetry and conservation laws. Introductory many-body physics. Density matrix, quantum coherence and dissipation. The relativistic electron. Three-hour lecture, one-hour discussion session. ","edges_from":[198],"edges_to":[],"id":5551,"label":"PHYS 130C","title":"Quantum Physics III (4)"},{"dept":"VIS","description":"Advanced studies in the secular and religious art traditions of China. From year to year, the seminar may focus on early China (Neolithic to the end of the T’ang dynasty), on later dynasties (Sung, Yuan, Ming) or on art of the People’s Republic. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":5552,"label":"VIS 258","title":"Seminar in Chinese Art (4)"},{"dept":"VIS","description":"Historical and theoretical problems in the art of Mexico, Central, and South America art from the colonial period to today, as well as from the Hispanic traditions of the American Southwest. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":5553,"label":"VIS 259","title":"Seminar in Latin American Art (4)"},{"dept":"VIS","description":"Research seminar in media history, theory, and/or criticism. Potential topics: digital media aesthetics, television or radio, new media, theory of photography and/or other image forms in digital era. Focus on a specific period, theme, or context. Class devoted to discussion of readings in connection with viewing of media and related forms. Students will gain advanced knowledge of a specialized aspect of media history, theory, or criticism in a setting that promotes research, reports, and writing. ","edges_from":[1664,731,2844],"edges_to":[],"id":5554,"label":"VIS 151A","title":"Seminar in Media History and Theory (4)"},{"dept":"VIS","description":"European art from late antiquity through the fourteenth century and the historical processes by which “medieval” art has been constructed as a category. Topics may include devotional vision and the sacred image; medieval comic genres; neo-medievalism, fifteenth century to today. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5555,"label":"VIS 251","title":"Seminar in Medieval Art (4)"},{"dept":"VIS","description":"Concentrates on the art of the Renaissance in Italy and the North through a changing series of topics, e.g., Vision and Composition in Perspective; The Sistine Chapel; Envisioning Jan Van Eyck; Renaissance Print Making; Leonardo da Vinci’s La Gioconda. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":5556,"label":"VIS 252","title":"Seminar in Renaissance Art (4)"},{"dept":"POLI","description":"This course explores the interrelationship of politics and economics in Eastern Europe, analyzing the historic evolution of the area, the socialist period, and contemporary political and economic change there. ","edges_from":[],"edges_to":[],"id":5557,"label":"POLI 126AB","title":"Politics and Economics in Eastern Europe (4)"},{"dept":"VIS","description":"Thematic and critical discussions of recent US and international art, 1960s to the present. Art/Text; Mixed Media Practices; Conceptual Art; Art After Appropriation; Global Art at the Millennium; New Genres of Public Art; Mike Kelly and the Conceptual Vernacular: Art and Activism. May be taken three times for credit. ","edges_from":[],"edges_to":[],"id":5558,"label":"VIS 255","title":"Seminar in Contemporary Art (4)"},{"dept":"VIS","description":"Topics in media (photography, film, video) and new media, contemporary or historical. Coverage may be broad or addressed to a particular topic such as Film Remakes; Silent Cinema; Photography and Social Movements; The Language of New Media. ","edges_from":[],"edges_to":[],"id":5559,"label":"VIS 256","title":"Seminar in Media and New Media (4)"},{"dept":"POLI","description":"of Political Economy: Modern Capitalism (4)","edges_from":[],"edges_to":[],"id":5560,"label":"POLI 126AA","title":"Fundamentals"},{"dept":"CSE","description":"Study in Computer Science and Engineering (4)","edges_from":[],"edges_to":[],"id":5561,"label":"CSE 99","title":"Independent"},{"dept":"BENG","description":"Mechanical properties of structures involved in movement (muscles, tendons, bones). Models of neuromuscular adaptation to chronic electrical stimulation, voluntary exercise, surgical overload, spinal cord injury, denervation, limb immobilization, exercise-induced injury and muscle regeneration. Stem cells in muscle function and plasticity. ","edges_from":[],"edges_to":[],"id":5562,"label":"BENG 233","title":"Neuromuscular Physiology and Biomechanics (4)"},{"dept":"BENG","description":"An overview of the musculoskeletal system from a bioengineering perspective. Health, injury, disease of bone, cartilage, tendon, ligament, meniscus, synovium, intervertebral disc, skeletal muscle, peripheral nerve. Mechanisms and models underlying current and future therapies. ","edges_from":[],"edges_to":[],"id":5563,"label":"BENG 232","title":"Musculoskeletal Health, Injury, and Disease (4)"},{"dept":"BENG","description":"This course will introduce quantitative fluorescence microscopy techniques for imaging, manipulating, and quantifying the spatiotemporal characteristics of molecular events in live cells. A laboratory component will be integrated with students organized into small teams for projects. Recommended preparation: basic optics at the level of ECE 181, introductory molecular and cellular biology at the level of BIMM 100 and BICD 110, respectively. ","edges_from":[],"edges_to":[],"id":5564,"label":"BENG 235","title":"Molecular Imaging and Quantitation in Living Cells (4)"},{"dept":"BENG","description":"Introduction to molecular and cellular neurobiology and their integration with systems neurophysiology. Homeostasis will be an organizing theme. The material will be presented both qualitatively and quantitatively, emphasizing the mathematical, physical, and chemical foundations and dynamics that underlie neurophysiological functions. ","edges_from":[],"edges_to":[],"id":5565,"label":"BENG 234","title":"Intro to Neurophysiology: Molecules to Systems (4)"},{"dept":"CSE","description":"A seminar providing an overview of a topic of current research interest to the instructor. The goal is to present a specialized topic in computer science and engineering students. May be taken for credit three times when topics vary.","edges_from":[],"edges_to":[],"id":5566,"label":"CSE 90","title":"Undergraduate Seminar (1)"},{"dept":"CSE","description":"in Computer Science and Engineering (2)","edges_from":[],"edges_to":[],"id":5567,"label":"CSE 91","title":"Perspectives"},{"dept":"Linguistics/Hindi","description":"Presentation and practice of the basic grammatical","edges_from":[],"edges_to":[],"id":5568,"label":"Linguistics/Hindi (LIHI) 1AX","title":"Analysis of Hindi (2.5)"},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 120B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120B or after successful completion of Econ 120B with A– or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":5569,"label":"ECON 120BH","title":"Honors Econometrics B (1)"},{"dept":"ECE","description":"Study of wireless networked systems from a system design perspective, covering the protocol stack from physical to network layer with a focus on energy. Topics include digital communications, networking and programming, and a basic knowledge of these is recommended. ","edges_from":[],"edges_to":[],"id":5570,"label":"ECE 267","title":"Wireless Embedded and Networked Systems (4)"},{"dept":"ECE","description":"The course gives an overview of areas of security and protection of modern hardware, embedded systems, and IoTs. Covers essential cryptographic methodologies and blocks required for building a secure system. Topics include low overhead security, physical and side-channel attacks, physical security primitives, physical security and proofs of presence, hardware-based secure program execution, scalable implementation of secure functions, emerging technologies, and rising threats. Recommended preparation: Programming in a standard programming language. Undergraduate level knowledge of the IC design flow and digital designs. ","edges_from":[],"edges_to":[],"id":5571,"label":"ECE 268","title":"Security of Hardware Embedded Systems (4)"},{"dept":"Linguistics/German","description":"Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in German. Must be taken in conjunction with LIGM 1D. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ","edges_from":[4880,4881],"edges_to":[],"id":5572,"label":"Linguistics/German (LIGM) 1DX","title":"Analysis of German (2.5)"},{"dept":"ECE","description":"Thermally activated processes. Boltzman factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick’s law, diffusion mechanisms, Kirkendall effects, Boltzmann-Manato analysis, high diffusivity paths. Cross-listed with Materials Science 201B and MAE 271B. ","edges_from":[5574],"edges_to":[],"id":5573,"label":"ECE 238B","title":"Solid State Diffusion and Reaction Kinetics (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[5573],"id":5574,"label":"ECE 238A","title":""},{"dept":"TDGE","description":"Theatre and Film analyzes the essential differences between theatrical and cinematic approaches to drama. Through selected play/film combinations, the course looks at how the director uses actors and the visual languages of the stage and screen to guide and stimulate the audience’s responses. ","edges_from":[],"edges_to":[],"id":5575,"label":"TDGE 10","title":"Theatre and Film (4)"},{"dept":"TDGE","description":"Course examines major accomplishments in screen acting from the work of actors in films or in film genres. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5576,"label":"TDGE 11","title":"Great Performances on Film (4)"},{"dept":"TDGE","description":"This course explores filmed representations of race and diversity and examines works by underrepresented filmmakers. Course topics vary; they include African American film, Latino/a film, Asian American film, films by Spike Lee, stereotypes on film, and other such topics. Students may not enroll in the same topic of TDGE 12 that they have already taken in TDGE 11, Great Performances on Film. This will count as a duplicate of credit for repeating the same film topic. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":5577,"label":"TDGE 12","title":"Topics in Cinema and Race (4)"},{"dept":"MGT","description":"Principles and decisions to be considered in overall communications and promotion strategy for traditional channels and emerging social networks. Decisions on promotional mix, ad design, implementation and evaluation for establishing brand equity, measure brand performance and sustaining brand equity. ","edges_from":[1004],"edges_to":[],"id":5578,"label":"MGT 105","title":"Product Promotion and Brand Management (4)"},{"dept":"PSYC","description":"An in-depth analysis of selected empirical and theoretical topics in social psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5579,"label":"PSYC 276","title":"Selected Topics in Social Psychology (4)"},{"dept":"HIEU","description":"The political, economic, and intellectual history of the Roman world from the foundation of Rome to the disintegration of the Western empire. This course will emphasize the importance of the political and cultural contributions of Rome to modern society. +","edges_from":[],"edges_to":[],"id":5580,"label":"HIEU 102A","title":"Ancient Roman Civilization (4)"},{"dept":"BENG","description":"Development of design project in bioinstrumentation. ","edges_from":[66],"edges_to":[5582],"id":5581,"label":"BENG 179A","title":"Design Development in Bioinstrumentation (3)"},{"dept":"BENG","description":"Implementation of design project in bioinstrumentation. ","edges_from":[68,5581],"edges_to":[68],"id":5582,"label":"BENG 179B","title":"Design Implementation in Bioinstrumentation (3)"},{"dept":"BILD","description":"Course will focus on issues such as global warming, species extinction, and human impact on the oceans and forests. History and scientific projections will be examined in relation to these events. Possible solutions to these worldwide processes and a critical assessment of their causes and consequences will be covered.","edges_from":[],"edges_to":[],"id":5583,"label":"BILD 18","title":"Human Impact on the Environment (4)"},{"dept":"LTCS","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":5584,"label":"LTCS 87","title":"Freshman Seminar (1)"},{"dept":"HILA","description":"Recordings of Amazonia’s past before Iberian adventurers searched for El Dorado are scarce. Environmental significance and the continued existence of large fluvial societies, read through the lenses of chroniclers, scientists, missionaries, and colonizers, allows a reconstruction of humankind’s relationship to nature.","edges_from":[],"edges_to":[],"id":5585,"label":"HILA 145","title":"People and Nature in Amazonia: An Unwritten History (4)"},{"dept":"POLI","description":"A consideration of the nature of public opinion and voting in American government. Studies of voting behavior are examined from the viewpoints of both citizens and candidates, and attention is devoted to recent efforts to develop models of electoral behavior for the study of campaigns. The role of mass media and money also will be examined.","edges_from":[],"edges_to":[],"id":5586,"label":"POLI 100DA","title":"Voting, Campaigning, and Elections (4)"},{"dept":"BILD","description":"Concepts of Modern Biology (4)","edges_from":[],"edges_to":[],"id":5587,"label":"BILD 10","title":"Fundamental"},{"dept":"RELI","description":"This course explores intersections between religious discourse and ecological discourse by considering texts from both that treat the human world as irreducibly interconnected with more-than-human worlds of nature and \"spirit.\" Themes include the ambivalence of wildness; the critique of anthropocentrism (human-centeredness); and the question of how religious emphasis on \"knowing (one’s) place\" can create a sense of either human exceptionality, above nature, or embeddedness, within nature. ","edges_from":[],"edges_to":[],"id":5588,"label":"RELI 151","title":"Deep Ecology: Knowing Place (4)"},{"dept":"HIEU","description":"Selected topics in Byzantine history. May be taken for credit three times as topics vary. ","edges_from":[],"edges_to":[],"id":5589,"label":"HIEU 162/262","title":"Topics in Byzantine History (4)"},{"dept":"LTEA","description":"and Sexuality in Korean Literature and Culture (4)","edges_from":[],"edges_to":[],"id":5590,"label":"LTEA 143","title":"Gender"},{"dept":"LTEA","description":"Film, Literature, and Popular Culture (4)","edges_from":[],"edges_to":[],"id":5591,"label":"LTEA 142","title":"Korean"},{"dept":"LTEA","description":"A survey of modern Korean prose fiction and poetry from 1945 to the 1990s. Examination of literary representations of national division, the Korean War, accelerated industrialization, authoritarian rule, and the labor/agrarian movements.","edges_from":[],"edges_to":[],"id":5592,"label":"LTEA 141","title":"Modern Korean Literature in Translation from 1945 to Present (4)"},{"dept":"LTEA","description":"Korean Literature in Translation from Colonial Period (4)","edges_from":[],"edges_to":[],"id":5593,"label":"LTEA 140","title":"Modern"},{"dept":"HISC","description":"Why have women been traditionally excluded from science? How has this affected scientific knowledge? How have scientists constructed gendered representations not only of women, but also of science and nature? We will address these questions from perspectives including history, philosophy, and psychoanalytic theory. ","edges_from":[],"edges_to":[],"id":5594,"label":"HISC 167/267","title":"Gender and Science (4)"},{"dept":"LTEA","description":"American Literature and Other Literatures of Korean Diaspora (4)","edges_from":[],"edges_to":[],"id":5595,"label":"LTEA 144","title":"Korean"},{"dept":"LTCS","description":"A reading of recent theory on popular culture and a study of particular texts dealing with popular cultural practices, both contemporary and noncontemporary, as sites of conflict and struggle. LTCS 110 and LTCS 110GS may be taken for credit for a combined total of three times.","edges_from":[],"edges_to":[],"id":5596,"label":"LTCS 110","title":"Popular Culture (4)"},{"dept":"LTCS","description":"Topics in Popular Culture in Historical Context (4)","edges_from":[],"edges_to":[],"id":5597,"label":"LTCS 111","title":"Special"},{"dept":"HITO","description":"Study on History Topics (1, 2, 3, 4)","edges_from":[],"edges_to":[],"id":5598,"label":"HITO 99","title":"Independent"},{"dept":"FPM","description":"Course will include a discussion of intervention goals suggested by major theories of health behavior change. Common communication modes and messages will be studied, including examples using small group settings, mass media, legislation, and telephone counseling. ","edges_from":[],"edges_to":[],"id":5599,"label":"FPM 276","title":"Health Behavior Interventions I (4)"},{"dept":"TDMV","description":"To develop an appreciation and understanding of the dances from various Asian cultures. Emphasis on learning the basic forms and movement vocabularies, their historical context, and the use of each dance as a means of cultural and artistic expression. May be taken for credit three times. ","edges_from":[],"edges_to":[5604],"id":5600,"label":"TDMV 144","title":"Asian Dance (4)"},{"dept":"TDMV","description":"To develop an appreciation and understanding of the various Latin dances. Emphasis on learning intermediate social dance movement vocabulary, history of Latin cultures, and use of each dance as a means of social and economic expression. May be taken for credit two times. ","edges_from":[5602],"edges_to":[],"id":5601,"label":"TDMV 146","title":"Intermediate Latin Dances of the World (4)"},{"dept":"TDMV","description":"","edges_from":[],"edges_to":[5601,5604],"id":5602,"label":"TDMV 142","title":""},{"dept":"TDMV","description":"Courses designed for the in-depth study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. May be taken for credit two times. ","edges_from":[],"edges_to":[],"id":5603,"label":"TDMV 140","title":"Beginning Dances of the World (4)"},{"dept":"TDMV","description":"Courses designed for the advanced continuing study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. ","edges_from":[5600,5602,5605,5606,5607],"edges_to":[],"id":5604,"label":"TDMV 141","title":"Advanced Dances of the World (4)"},{"dept":"TDMV","description":"","edges_from":[],"edges_to":[5604],"id":5605,"label":"TDMV 143","title":""},{"dept":"THDA","description":"","edges_from":[],"edges_to":[5604],"id":5606,"label":"THDA 132","title":""},{"dept":"TDMV","description":"","edges_from":[],"edges_to":[5604],"id":5607,"label":"TDMV 136","title":""},{"dept":"MGTA","description":"Project-based course, in which students apply knowledge and methods acquired in their course work to a specific business analytics problem faced by a company. This is a continuation of MGTA 454A. Class meetings will be scheduled where teams will present their interim and final analysis results and outline how the partner company could use the project outcomes (e.g., a decision support tool) in decision-making. This course is part of a course series. Final grade will apply after the completion of MGTA 454B. Students may not receive credit for both MGTA454 and MGTA 454A or MGTA 454B. ","edges_from":[5609],"edges_to":[],"id":5608,"label":"MGTA 454B","title":"Business Analytics Capstone Project II (2)"},{"dept":"MGTA","description":"","edges_from":[1328,1329,1327],"edges_to":[5608],"id":5609,"label":"MGTA 454A","title":""},{"dept":"TDMV","description":"This course is designed to build on the skills developed in TDMV 138, Hip-Hop, also deepening students’ understanding of the social, political, and economic forces at work within hip-hop culture. More complex rhythms and sequencing will be introduced, and musicality will be honed through an added emphasis on freestyle expression. May be taken for credit four times. ","edges_from":[5392],"edges_to":[],"id":5610,"label":"TDMV 148","title":"Intermediate Hip-Hop (4)"},{"dept":"TDMV","description":"Develops hip-hop skills at the advanced level with further studies of the social, political, and economic forces at work within hip-hop culture. Emphasis is on complex rhythms and sequencing, freestyle expression, choreography, and performance. May be taken for credit six times. ","edges_from":[5392],"edges_to":[],"id":5611,"label":"TDMV 149","title":"Advanced Hip-Hop (4)"},{"dept":"GPPS","description":"This course uses major banking, debt, and currency crises as lenses for focusing on the governance of international monetary and financial relations. It traces regional and global exchange regimes and cross-border financial flows beginning with the gold standard and Great Depression through the rise of regional currency blocs, the Euro, and the role of \"reserve currencies.\" The course concludes by investigating the politics and distributional consequences of banking and financial regulation. Renumbered from IRGN 402. Students may not receive credit for IRGN 402 and GPPS 402.","edges_from":[],"edges_to":[],"id":5612,"label":"GPPS 402","title":"International Political Economy: Money and Finance (4)"},{"dept":"GPPS","description":"This course examines China’s efforts to become a world-class technological and military power, focusing on the technological foundations of its security as it relates to long-term economic and strategic competitiveness and the sources of its growing technological innovation. Topics will include: Imperial and Maoist legacies; political economy of security and technology; ideologies and organizing strategies that China employs in moving up the innovation ladder; and others. Renumbered from IRGN 403. Students may not receive credit for IRGN 403 and GPPS 403.","edges_from":[],"edges_to":[],"id":5613,"label":"GPPS 403","title":"Chinese Security, Technology, and Innovation (4)"},{"dept":"GPPS","description":"International relations and developing international political economies of nations bordering the Pacific. Topics include: the “Pacific Basin” concept; the United States and “hegemonic-stability” theory; legacies of the Korean War and Sino-Soviet dispute; immigration patterns and their consequences; and Japan’s foreign policy. Renumbered from IRGN 400. Students may not receive credit for GPPS 400 and IRGN 400.","edges_from":[],"edges_to":[],"id":5614,"label":"GPPS 400","title":"International Relations of Asia-Pacific (4)"},{"dept":"GPPS","description":"Post-2003 civil wars are different from previous ones in striking ways. First, the majority are situated in Muslim-majority countries. Second, most of the rebel groups espouse radical Islamist ideas. Third, of these groups, most are pursuing transnational rather than national goals. Current theory explains a great deal, but not everything. For example, it does not account for information and communication technology. These innovations are critical to understanding the new civil wars. Renumbered from IRGN 401. Students may not receive credit for GPPS 401 and IRGN 401.","edges_from":[],"edges_to":[],"id":5615,"label":"GPPS 401","title":"The New “New” Civil Wars (4)"},{"dept":"GPPS","description":"China’s role in the global economy and its implications for regimes of global governance. Topics include trade, lending, investments, the globalization of state-owned enterprises, currency internationalization, participation in regional and international organizations, and China’s economic diplomacy and foreign policy. We will ask whether China contributes to or threatens the liberal economic order; what governments and policy actors can do to engage China in a productive and peaceful fashion. Students may not receive credit for GPPS 406 and the IRGN 490 with the same title.","edges_from":[],"edges_to":[],"id":5616,"label":"GPPS 406","title":"China in the Global Economic Order (4)"},{"dept":"GPPS","description":"This course examines the nature, evolution, dynamics, and key elements of China’s approach and engagement with the international system, especially in the twenty-first century, with a focus on national security and defense. Topics include: understanding the structure and process of Chinese decision making; the nature of Chinese policies and strategies; the evolution of Chinese military power; the rise of the Chinese national security state; Chinese grand strategy, and US-China relations. May not receive credit for GPPS 407 and the IRGN 490 with the same title.","edges_from":[],"edges_to":[],"id":5617,"label":"GPPS 407","title":"The International Relations and National Security of China (4)"},{"dept":"GPPS","description":"This course will analyze post-1949 Chinese politics, including political institutions, the policy making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 404. Students may not receive credit for IRGN 404 and GPPS 404.","edges_from":[],"edges_to":[],"id":5618,"label":"GPPS 404","title":"Chinese Politics (4)"},{"dept":"GPPS","description":"Can the United States and China manage to develop a constructive relationship or are they headed toward a hostile relationship? This course addresses this question by examining the domestic and international influences on the foreign policies of both countries and key issues in the bilateral relationship. Students also do policy projects. Renumbered from IRGN 405. Students may not receive credit for IRGN 405 and GPPS 405.","edges_from":[],"edges_to":[],"id":5619,"label":"GPPS 405","title":"US-China Relations (4)"},{"dept":"GPPS","description":"This course will consider major security issues on the Korean peninsula, including the evolution of the US-South Korea alliance and the management of the current nuclear crisis. A distinctive feature of the course will be a consideration of the political economy of recent developments on the peninsula, particularly with respect to North Korea, and an extended discussion of the logic and strategy of engagement. Renumbered from IRGN 408. Students may not receive credit for IRGN 408 and GPPS 408.","edges_from":[],"edges_to":[],"id":5620,"label":"GPPS 408","title":"Korean Security (4)"},{"dept":"TDGR","description":"A daily program of physical, vocal, and speech exercises designed to prepare the student to move in a focused way into specific class areas with minimum amount of warm-up time. The exercises work on development of flexibility, strength, and coordination throughout the body. Strong emphasis is placed on physical and mental centering within a structured and disciplined approach to preparation. ","edges_from":[],"edges_to":[],"id":5621,"label":"TDGR 200","title":"Dynamics (1)"},{"dept":"LTEA","description":"An examination of representative works of different film genres from Hong Kong. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":5622,"label":"LTEA 120C","title":"Hong Kong Films (4)"},{"dept":"LTEA","description":"A survey of representative films from different periods of Chinese cinematic development. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.","edges_from":[],"edges_to":[],"id":5623,"label":"LTEA 120A","title":"Chinese Films (4)"},{"dept":"HIEU","description":"A lecture-discussion course that examines the role of Scotland in the English Civil War during the first half of the seventeenth century, 1601–1689.","edges_from":[],"edges_to":[],"id":5624,"label":"HIEU 121GS","title":"Scotland and the English Civil War, 1601–1689 (4)"},{"dept":"LTEN","description":"","edges_from":[],"edges_to":[],"id":5625,"label":"LTEN 158","title":"Modern American Literature (4)"},{"dept":"CSE","description":"Discussion on problems of current research","edges_from":[],"edges_to":[],"id":5626,"label":"CSE 239A","title":"Topics/Seminar in Databases (1–4)"},{"dept":"POLI","description":"Introduction to the logic of inference in social science and to quantitative analysis in political science and public policy including research design, data collection, data description and computer graphics, and the logic of statistical inference (including linear regression). POLI 30 is Lecture only, and POLI 30D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 30 and 30D.","edges_from":[],"edges_to":[],"id":5627,"label":"POLI 30 or 30D","title":"Political Inquiry (4)"},{"dept":"CSE","description":"Introduction to concepts, principles, and practice of computer communication networks with examples from existing architectures, protocols, and standards with special emphasis on the Internet protocols. Layering and the OSI model; physical and data link layers; local and wide area networks; datagrams and virtual circuits; routing and congestion control; internetworking. Transport protocols. Credit may not be received for both CSE 123 and ECE 158A. ","edges_from":[280,11,1183],"edges_to":[5629],"id":5628,"label":"CSE 123","title":"Computer Networks (4)"},{"dept":"CSE","description":"Topics include basic cryptography, security/threat analysis, access control, auditing, security models, distributed systems security, and theory behind common attack and defense techniques. The class will go over formal models as well as the bits and bytes of security exploits. ","edges_from":[3200,2,12,15,5628,5630],"edges_to":[],"id":5629,"label":"CSE 127","title":"Introduction to Computer Security (4)"},{"dept":"CSE","description":"","edges_from":[280,11,1183],"edges_to":[5629],"id":5630,"label":"CSE 124","title":""},{"dept":"CSE","description":"System Design and Implementation (4)","edges_from":[],"edges_to":[],"id":5631,"label":"CSE 125","title":"Software"},{"dept":"NANO","description":"Introduction to NanoEngineering lab-based skills. Hands-on training and experimentation with nanofabrication techniques, integration, and analytical tools. This class is for NANO majors who are incoming freshmen, to be taken their first year. This class is for NanoEngineering majors who are incoming freshmen, to be taken their first year. P/NP grades only. ","edges_from":[],"edges_to":[],"id":5632,"label":"NANO 4","title":"Experience NanoEngineering (1)"},{"dept":"PHYS","description":"Weak interactions; neutrino physics; C,P,","edges_from":[],"edges_to":[],"id":5633,"label":"PHYS 222A","title":"Elementary Particle Physics (4)"},{"dept":"HILA","description":"This course will focus on several instances of US aggression in Latin America since 1898, covering military invasions, covert actions, and economic forms of coercion. Specific case studies will include events in Mexico in 1914, Cuba in 1933 and 1959–1962, Guatemala in 1954, and Chile in 1973.","edges_from":[],"edges_to":[],"id":5634,"label":"HILA 118","title":"Subverting Sovereignty: US Aggression in Latin America, 1898–Present (4)"},{"dept":"MAE","description":"Propagation and absorption of laser beam in plasma, ablation pressure. Laser scattering and laser-plasma instabilities (stimulated Raman and Brillouin scattering, filamentation and decay instabilities). Electron heat transport, mechanisms of magnetic field generation. ","edges_from":[3116],"edges_to":[],"id":5635,"label":"MAE 218B","title":"Introduction to High Energy Density Physics (Laser-Plasma Interactions) (4)"},{"dept":"MAE","description":"to High Energy Density Physics (MHD and Pinches) (4)","edges_from":[],"edges_to":[],"id":5636,"label":"MAE 218A","title":"Introduction"},{"dept":"HILA","description":"Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.","edges_from":[],"edges_to":[],"id":5637,"label":"HILA 110","title":"Lord and Peasant in Latin America (4)"},{"dept":"HILA","description":"The development of family structures and relations among different ethnic groups. State and economy define and are defined by family relations. Thus this family approach also provides an understanding to broader socioeconomic processes and cultural issues.","edges_from":[],"edges_to":[],"id":5638,"label":"HILA 117","title":"Indians, Blacks, and Whites: Family Relations in Latin America (4)"},{"dept":"HILA","description":"How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.","edges_from":[],"edges_to":[],"id":5639,"label":"HILA 114","title":"Dictatorships in Latin America (4)"},{"dept":"HILA","description":"A survey of the development of urban forms of Latin America and of the role that cities played in the region as administrative and economic centers. After a brief survey of pre-Columbian centers, the lectures will trace the development of cities as outposts of the Iberian empires and as “city-states” that formed the nuclei of new nations after 1810. The course concentrates primarily on the cities of South America, but some references will be made to Mexico City. It ends with a discussion of modern social ills and Third World urbanization. Lima, Santiago de Chile, Buenos Aires, Rio de Janeiro, and Sao Paulo are its principal examples.","edges_from":[],"edges_to":[],"id":5640,"label":"HILA 115","title":"The Latin American City, a History (4)"},{"dept":"SE","description":"Techniques of computation with the finite element method. Preprocessing (geometry, mesh generation, boundary conditions), solution methods (statics including contact, dynamics, buckling), and postprocessing (visualization, error estimation, interpretation of results). Hands-on exercises with commercial and open-source software. Use of computer resources. ","edges_from":[2344,2210,2347,2348],"edges_to":[],"id":5641,"label":"SE 280","title":"Finite Element Computations in Solid Mechanics (4)"},{"dept":"GPGN","description":"Independent research that draws on an internship with an organization relevant to career track and/or regional specialization. Nature of the required product to be determined by professor supervising the course. May be repeated for credit.","edges_from":[],"edges_to":[],"id":5642,"label":"GPGN 497","title":"Internship (2)"},{"dept":"GPGN","description":"Independent research that draws on a substantive internship with an organization relevant to a student’s career interests. The nature of the final project will be determined prior to assuming the internship and in consultation with the supervising professor. (S/U grades only.)","edges_from":[],"edges_to":[],"id":5643,"label":"GPGN 496","title":"Washington Quarter Internship (4)"},{"dept":"GPGN","description":"A seminar course at an advanced level on a special topic. These seminars are intended to cross disciplines and to be co-taught by GPS faculty and faculty from other departments or programs.","edges_from":[],"edges_to":[],"id":5644,"label":"GPGN 491","title":"Cross-Disciplinary Special Topics (4)"},{"dept":"GPGN","description":"A seminar course at an advanced level on a special topic in Pacific international affairs. May be repeated for credit.","edges_from":[],"edges_to":[],"id":5645,"label":"GPGN 490","title":"Special Topics in Pacific International Affairs (4)"},{"dept":"GPGN","description":"An Excel skills course tailored specifically to GPS classes and applicable to accounting, QM, finance, and second-year courses such as corporate finance, investments, applied financial management, and strategy and negotiation, among others. The course is also designed to help prepare students for the professional world by training in critical job skills competencies in Excel. (S/U grades only.) Department approval required. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 493. Students may not get credit for GPGN 493 and IRGN 493.","edges_from":[],"edges_to":[],"id":5646,"label":"GPGN 493","title":"Excel Skills for Professional Proficiency (2)"},{"dept":"GPGN","description":"Independent research under the guidance of a faculty member of GPS. May be repeated for credit.","edges_from":[],"edges_to":[],"id":5647,"label":"GPGN 499","title":"Independent Research (2–12)"},{"dept":"GPGN","description":"Directed reading in a selected area. The content of each course is to be decided by the professor directing the course with the approval of the student’s faculty adviser. May be repeated for credit.","edges_from":[],"edges_to":[],"id":5648,"label":"GPGN 498","title":"Directed Group Study (2)"},{"dept":"WCWP","description":"An upper-division workshop course in argumentation and research with particular attention to analyzing and constructing academic arguments. A course specially designed for and required of transfer students who enter Warren College through the TAG, IGETC, or another articulation agreement. The course must be taken for a letter grade to fulfill this requirement. Letter grades only. ","edges_from":[],"edges_to":[],"id":5649,"label":"WCWP 100","title":"Academic Writing (4)"},{"dept":"ERC","description":"This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ","edges_from":[],"edges_to":[],"id":5650,"label":"ERC 1","title":"First Year Experience (2)"},{"dept":"HIUS","description":"This seminar will examine racial formation in relation to US wars in American history. Topics include “manifest destiny” and the frontier; radicalism and the “Red Scare”; the border patrol; civil rights movements; the “war on drugs” and mass incarceration. ","edges_from":[],"edges_to":[],"id":5651,"label":"HIUS 174","title":"Race Wars in American Culture (4)"},{"dept":"HIUS","description":"This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.","edges_from":[],"edges_to":[],"id":5652,"label":"HIUS 177","title":"Asian American Historiography (4)"},{"dept":"ECON","description":"(S/U grades only.)","edges_from":[],"edges_to":[],"id":5653,"label":"ECON 299","title":"Research in Economics for Dissertation (1–9)"},{"dept":"PSYC","description":"Teaching practicum for students enrolled in graduate program in psychology. Students who hold appointments as teaching assistants must enroll in this course. Minimum program requirement is for one four-unit course per year for four years. S/U grades only.","edges_from":[],"edges_to":[],"id":5654,"label":"PSYC 500","title":"Apprentice Teaching (4)"},{"dept":"ECON","description":"Controlled reading and discussion with adviser; literature survey. May be repeated for credit. (S/U grades only.)","edges_from":[],"edges_to":[],"id":5655,"label":"ECON 291","title":"Advanced Field Advising (4)"},{"dept":"POLI","description":"This course provides an overview of previous and current efforts to explain political and economic development in non-Western settings.","edges_from":[],"edges_to":[],"id":5656,"label":"POLI 231E","title":"Politics of Development (4)"},{"dept":"ECON","description":"(S/U grades only.)","edges_from":[],"edges_to":[],"id":5657,"label":"ECON 297","title":"Independent Study (1–5)"},{"dept":"MAE","description":"Element Methods in Solid Mechanics III (4)","edges_from":[],"edges_to":[],"id":5658,"label":"MAE 232C","title":"Finite"},{"dept":"LTCS","description":"Research toward the dissertation. Open only to PhD students who have advanced to candidacy. Repeatable for credit.","edges_from":[],"edges_to":[],"id":5659,"label":"LTCS 299","title":"Dissertation (1–12)"},{"dept":"LTCS","description":"Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.","edges_from":[],"edges_to":[],"id":5660,"label":"LTCS 298","title":"Special Projects: Writing Course (1–12)"},{"dept":"VIS","description":"Continuation of VIS 160A or MUS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: VIS 160B, MUS 160B, or ICAM 160B. ","edges_from":[1910,3422],"edges_to":[],"id":5661,"label":"VIS 160B","title":"Senior Project in Computing Arts II (4)"},{"dept":"POLI","description":"Comparative analysis of attempts by the United States and other industrialized countries to initiate, regulate and reduce immigration from Third World countries. Social and economic factors shaping outcomes of immigration policies, public opinion toward immigrants, anti-immigration movements, and immigration policy reform options in industrialized countries. ","edges_from":[],"edges_to":[],"id":5662,"label":"POLI 150A","title":"Politics of Immigration (4)"},{"dept":"LTWR","description":"Research for master’s thesis. Offered for repeated registration. Open only to MFA students. ","edges_from":[],"edges_to":[],"id":5663,"label":"LTWR 295","title":"MFA Thesis (1–12)"},{"dept":"CHEM","description":"The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field, starting from basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. May be coscheduled with CHEM 242. CHEM 40C and at least one course in either general biology, molecular biology, or cell biology is strongly encouraged. ","edges_from":[1761,2562,458,952,954,410,959],"edges_to":[],"id":5664,"label":"CHEM 142","title":"Introduction to Glycosciences (4)"},{"dept":"NEU","description":"Neurosciences group faculty members and graduate students will present and discuss ongoing research. Attendance will be mandatory for first- and second-year graduate students. Faculty, advanced graduate students, medical students, postdoctoral trainees, and other interested parties are encouraged to attend. (F,W,S)","edges_from":[],"edges_to":[],"id":5665,"label":"NEU 276","title":"Neuroscience Research Rounds (1)"},{"dept":"CHEM","description":"Methodology of mechanistic organic chemistry; integration of rate expression, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. May be coscheduled with CHEM 246. ","edges_from":[1552,1553,1554,1555],"edges_to":[],"id":5666,"label":"CHEM 146","title":"Kinetics and Mechanism of Organic Reactions (4)"},{"dept":"CHEM","description":"Fundamentals of the chemistry and biochemistry of petroleum and biofuel technologies. This course explores chemical identity and properties, metabolic pathways and engineering, refining processes, and analytical techniques related to current and future biofuels. ","edges_from":[1552,1553,1554,1555],"edges_to":[],"id":5667,"label":"CHEM 145","title":"Chemistry and Biochemistry of Biofuels (4)"},{"dept":"HIEA","description":"and Cultural History of Twentieth-Century Japan (4)","edges_from":[],"edges_to":[],"id":5668,"label":"HIEA 115","title":"Social"},{"dept":"HIEA","description":"Examines social, cultural, political, and economic transformations and continuities in Japan since World War II. Emphases will differ by instructor.","edges_from":[],"edges_to":[],"id":5669,"label":"HIEA 114","title":"Postwar Japan (4)"},{"dept":"HIEA","description":"By examining the roles of ghosts in Japanese belief systems in a nonscientific age, this course addresses topics including folk beliefs and ghost stories, religiosity, early science, tools of amelioration and authoritative knowledge, and the relationship between myth and history.","edges_from":[],"edges_to":[],"id":5670,"label":"HIEA 117","title":"Ghosts in Japan (4)"},{"dept":"HIEA","description":"Survey of relations between Japan and the United States in the nineteenth and twentieth centuries. Although the focus will be on these nation-states, the course will be framed within the global transformation of societies. Topics include cultural frameworks, political and economic changes, colonialism and imperialism, and migration.","edges_from":[],"edges_to":[],"id":5671,"label":"HIEA 116","title":"Japan-U.S. Relations (4)"},{"dept":"HIEA","description":"Twelfth to Mid-Nineteenth Centuries (4)","edges_from":[],"edges_to":[],"id":5672,"label":"HIEA 111","title":"Japan:"},{"dept":"LTSP","description":"Study of movements, traditions, key authors, or major trends in Argentine, Paraguayan, Uruguayan, and Chilean literatures, such as gaucho poetry, the realist novel, modern urban narratives, and the Borges School, etc. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":5673,"label":"LTSP 134","title":"Literature of the Southern Cone (4)"},{"dept":"HIEA","description":"Fifteen-Year War in Asia and the Pacific (4)","edges_from":[],"edges_to":[],"id":5674,"label":"HIEA 113","title":"The"},{"dept":"HIEA","description":"From the Mid-Nineteenth Century through the US Occupation (4)","edges_from":[],"edges_to":[],"id":5675,"label":"HIEA 112","title":"Japan:"},{"dept":"LTSP","description":"Study of movements, traditions, key authors, or major trends in the literatures of Guatemala, El Salvador, Nicaragua, Honduras, Costa Rica, and Panama, such as the anti-imperialist novel, indigenismo, guerrilla poetry, and testimonio. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":5676,"label":"LTSP 138","title":"Central American Literature (4)"},{"dept":"EDS","description":"","edges_from":[],"edges_to":[2310],"id":5677,"label":"EDS 361A","title":""},{"dept":"SOCI","description":"The class will first examine the direct social effects of the “genetic revolution”: eugenics, genetic discrimination, and stratification. Second, the implications of thinking of society in terms of genetics, specifically—sociobiology, social Darwinism, evolutionary psychology, and biology. ","edges_from":[5678,5679],"edges_to":[5678],"id":5678,"label":"SOCI 138","title":"Genetics and Society (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[5678],"id":5679,"label":"SOCC 138","title":""},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[2240],"id":5680,"label":"SOCC 139","title":""},{"dept":"SOCI","description":"Topics include food as a marker of social","edges_from":[],"edges_to":[],"id":5681,"label":"SOCI 137","title":"Sociology of Food (4)"},{"dept":"SOCI","description":"A study of the social, intellectual, and institutional aspects of the nineteenth-century transformation of clinical medicine, examining both the changing content of medical knowledge and therapeutics, and the organization of the medical profession. ","edges_from":[5682,5683],"edges_to":[5682],"id":5682,"label":"SOCI 134","title":"The Making of Modern Medicine (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[5682],"id":5683,"label":"SOCC 134A","title":""},{"dept":"COMM","description":"How do political contests and debates come to be organized on and around bodies? In what sense is the natural body a sign system and how does its organization represent and reproduce cultural values, moral assumptions, social relations, and economic rationales? This course examines these and other questions through political, historical, and media analysis. ","edges_from":[540],"edges_to":[],"id":5684,"label":"COMM 108A","title":"POB: Introduction (4)"},{"dept":"SOCI","description":"Sociology of Mental Illness: A Historical Approach (4)","edges_from":[],"edges_to":[],"id":5685,"label":"SOCI 136E","title":""},{"dept":"SOCI","description":"in Comparative Perspective (4)","edges_from":[],"edges_to":[],"id":5686,"label":"SOCI 133","title":"Immigration"},{"dept":"COMM","description":"Cultural and historical ways of defining and understanding disability relative to communication and assistive technologies, including the impact of digital technologies and the Americans with Disabilities Act. Course use of audiovisual texts and writings from fields including science and technology studies, and cultural studies. ","edges_from":[540],"edges_to":[],"id":5687,"label":"COMM 108D","title":"POB: Disability (4)"},{"dept":"SOCI","description":"This course will focus on recent developments in the mental illness sector and on the contemporary sociological literature on mental illness. Developments in England as well as the United States will be examined. ","edges_from":[5688,5689],"edges_to":[5688],"id":5688,"label":"SOCI 136F","title":"Sociology of Mental Illness in Contemporary Society (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[5688],"id":5689,"label":"SOCC 136B","title":""},{"dept":"POLI","description":"An undergraduate course designed to cover various aspects of international relations. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.","edges_from":[],"edges_to":[],"id":5690,"label":"POLI 154","title":"Special Topics in International Relations (4)"},{"dept":"LTWL","description":"A study of folk and fairy tales from various cultures, from the point of view of literary form, psychological meaning, and cultural function. May be repeated for credit as topics vary.","edges_from":[],"edges_to":[],"id":5691,"label":"LTWL 110B","title":"Folk and Fairy Tales (4)"},{"dept":"COGR","description":"The study and analysis of specific topics to be developed by a small group of graduate students under the guidance of an interested faculty member. ","edges_from":[],"edges_to":[],"id":5692,"label":"COGR 298","title":"Directed Group Study (1–12)"},{"dept":"COGR","description":"Advanced independent study in communication under the guidance of Department of Communication faculty.","edges_from":[],"edges_to":[],"id":5693,"label":"COGR 299","title":"Graduate Research (1–12)"},{"dept":"LIGN","description":"Probabilistic approaches to language knowledge, acquisition, and use. Quantitative analysis of linguistic data. Quantitative models in linguistic theory. Covers basic probability theory and tools of statistical analysis for language, including linear regression, ANOVA, generalized linear models (e.g., logistic regression), data visualization. Familiarity with probability theory highly encouraged.","edges_from":[],"edges_to":[],"id":5694,"label":"LIGN 251","title":"Probabilistic Methods in Linguistics (4)"},{"dept":"COGR","description":"History of Communication Research (4)","edges_from":[],"edges_to":[],"id":5695,"label":"COGR 294","title":"The"},{"dept":"COGR","description":"A course that introduces students to the interdisciplinary nature of the field of communication research as represented by the work of faculty in the Department of Communication. Through faculty research, students are presented with concrete examples of communication research theory and practice that can provide them with insights for conducting their own research projects. ","edges_from":[],"edges_to":[],"id":5696,"label":"COGR 296","title":"Communication Research as an Interdisciplinary Activity (4)"},{"dept":"PSYC","description":"This course provides an overview of how children learn to reason about the social world. Topics may include theory of mind, social categorization and stereotyping, moral reasoning, and cultural learning. Recommended preparation: PSYC 101. ","edges_from":[],"edges_to":[],"id":5697,"label":"PSYC 187","title":"Development of Social Cognition (4)"},{"dept":"PSYC","description":"This course provides an overview of the experimental analysis of choice behavior, with an emphasis on the types of choice involved in self-control. A central interest will be the conditions under which decision-making is optimal. ","edges_from":[],"edges_to":[],"id":5698,"label":"PSYC 184","title":"Choice and Self-Control (4)"},{"dept":"HLAW","description":"The course focuses on legal issues from the viewpoint of the administrator or chief clinical officer, including the patient record/HIT/HIPAA. The course gives emphasis to practical application and knowledge/skills to prepare the students for job search or career transition. ","edges_from":[],"edges_to":[],"id":5699,"label":"HLAW 210","title":"Applied Health Law and Policy (3)"},{"dept":"MATH","description":"Introduction to varied topics in combinatorial mathematics. In recent years topics have included problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit six times with consent of adviser as topics vary. ","edges_from":[],"edges_to":[5701],"id":5700,"label":"MATH 262A","title":"Topics in Combinatorial Mathematics (4)"},{"dept":"MATH","description":"Continued development of a topic in combinatorial mathematics. Topics include: problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit three times with consent of adviser as topics vary. ","edges_from":[5700],"edges_to":[],"id":5701,"label":"MATH 262B","title":"Further Topics in Combinatorial Mathematics (4)"},{"dept":"BICD","description":"Stem cells maintain homeostasis of nearly all organ systems and the regenerative capacity of certain organisms. Course explores the paradigm of the tissue-specific stem cell, the cellular mechanisms of tissue regeneration, the evolution of stem cells and regenerative capacity over time, the basis of induced pluripotency, and how these basic processes can inform new approaches to human health. ","edges_from":[411],"edges_to":[],"id":5702,"label":"BICD 112","title":"Stem Cells and Regeneration (4)"},{"dept":"CENG","description":"Introduction to microbiology as relevant to the main topic, biological reactor analysis. Fermentation and enzyme technology. ","edges_from":[],"edges_to":[],"id":5703,"label":"CENG 254","title":"Biochemical Engineering Fundamentals (4)"},{"dept":"CENG","description":"Fundamentals of electrochemistry and electrochemical engineering. Structure of the double layer, cell potential and electrochemical thermodynamics, charge transfer kinetics, electrochemical transport phenomena, and introduction to colloidal chemistry. Applications such as corrosion prevention, electroplating, reactor design, batteries, and fuel cells. ","edges_from":[],"edges_to":[],"id":5704,"label":"CENG 255","title":"Electrochemical Engineering (4)"},{"dept":"CENG","description":"","edges_from":[],"edges_to":[],"id":5705,"label":"CENG 256","title":"Biomaterials and Biomimetics (4)"},{"dept":"CENG","description":"Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid-state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching). ","edges_from":[],"edges_to":[],"id":5706,"label":"CENG 257","title":"Process Technology in the Semiconductor Industry (4)"},{"dept":"HIUS","description":"This course introduces students to the history of Asian American social movements from the late nineteenth century to the present, with an emphasis on interethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anti-colonial movements, redress, hate crimes, and police brutality.","edges_from":[],"edges_to":[],"id":5707,"label":"HIUS 125/ETHN 163J","title":"Asian American Social Movements (4)"},{"dept":"CENG","description":"Analysis of chemical rate processes; complex kinetic systems. Chemical reactor properties in steady state and transient operations; optimal design policies. The interaction of chemical and physical transport processes in affecting reactor design and operating characteristics. Uniqueness/multiplicity and stability in reactor systems. Applications of the heterogeneous reactor systems. ","edges_from":[],"edges_to":[],"id":5708,"label":"CENG 252","title":"Chemical Reaction Engineering (4)"},{"dept":"CENG","description":"Physics and chemistry of heterogeneous catalysis. Adsorption/desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with NANO 259. Students may not receive credit for both CENG 253 and NANO 259. ","edges_from":[],"edges_to":[],"id":5709,"label":"CENG 253","title":"Heterogeneous Catalysis (4)"},{"dept":"SE","description":"Element Methods in Solid Mechanics III (4)","edges_from":[],"edges_to":[],"id":5710,"label":"SE 276C","title":"Finite"},{"dept":"Linguistics/Arabic","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1A. ","edges_from":[],"edges_to":[],"id":5711,"label":"Linguistics/Arabic (LIAB) 1AX","title":"Analysis of Arabic (2.5)"},{"dept":"GPEC","description":"This course helps students master analytical tools used by international economists. Topics covered include the causes of international trade, how trade agreements affect global commerce, and the labor-market consequences of globalization. The course is intensive in the use of data. Students produce an original econometrics project that demonstrates their quantitative aptitude in economics. Renumbered from IRGN 435. Students may not receive credit for GPEC 435 and IRGN 435.","edges_from":[],"edges_to":[],"id":5712,"label":"GPEC 435","title":"Topics in International Trade (4)"},{"dept":"HIAF","description":"Plant and animal domestication, ironworking and the distribution of ethnic/language groups, urbanization, regional and long-distance commerce, and the rise of medieval kingdoms. +","edges_from":[],"edges_to":[],"id":5713,"label":"HIAF 123","title":"West Africa from Earliest Times to 1800 (4)"},{"dept":"COGS","description":"Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. Applications must be submitted to and approved by the department. P/NP grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5714,"label":"COGS 195","title":"Instructional Apprenticeship in Cognitive Science (4)"},{"dept":"COGS","description":"This independent study course is for small groups of advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5715,"label":"COGS 198","title":"Directed Group Study (2 or 4)"},{"dept":"COGS","description":"This independent study course is for individual, advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ","edges_from":[],"edges_to":[],"id":5716,"label":"COGS 199","title":"Special Project (2 or 4)"},{"dept":"HIAF","description":"The origins and the interaction between the peoples of South Africa. Special attention will be devoted to industrial development, urbanization, African and Afrikaner nationalism, and the origin and development of apartheid and its consequences.","edges_from":[],"edges_to":[],"id":5717,"label":"HIAF 120","title":"History of South Africa (4)"},{"dept":"MGTF","description":"The Chartered Financial Analyst (CFA) designation is the industry-accepted gold standard for financial analysts. To earn the CFA charter, students must pass three very challenging exams. Students will look at each of the ten major topic areas and explore the level of understanding that is required to pass the first-level exam. Students will do applied valuation work as well as highlight study habits of successful past candidates. ","edges_from":[],"edges_to":[],"id":5718,"label":"MGTF 418","title":"Preparing for the CFA Exam (2)"},{"dept":"MGTF","description":"Many closed-form analytic results in finance are obtained in the continuous-time setting. This course covers portfolio choice, derivative pricing, and term structure modeling in continuous time setting. The objective is to understand important topics and master techniques of continuous-time models. Letter grades only. Students may not receive credit for both MGTF411 and MGT286. These are course duplicates. ","edges_from":[],"edges_to":[],"id":5719,"label":"MGTF 411","title":"Stochastic Calculus and Continuous Time Finance (4)"},{"dept":"HISC","description":"Galileo’s condemnation by the Catholic Church in 1633 is a well-known but misunderstood episode. Was Galileo punished for holding dangerous scientific views? Personal arrogance? Disobedience? Religious transgressions? Readings in original sources, recent historical interpretations. Graduate students will be expected to submit a more substantial piece of work. +","edges_from":[],"edges_to":[],"id":5720,"label":"HISC 166/266","title":"The Galileo Affair (4)"},{"dept":"MGTF","description":"This course introduces students to a variety of mathematical methods as applied in finance, including Monte Carlo simulation, optimization methods, and numerical solution to PDEs. Letter grades only. ","edges_from":[],"edges_to":[],"id":5721,"label":"MGTF 413","title":"Computational Finance Methods (4)"},{"dept":"MGTF","description":"Develop a deeper familiarity with financial accounting and assumptions underlying measurements reported in financial statements. Understanding of economic and regulatory forces underlying corporate disclosure of financial statements. Knowledge of data sources and analytical tools to extract and evaluate this data. Letter grades only. ","edges_from":[],"edges_to":[],"id":5722,"label":"MGTF 412","title":"Financial Statement Analysis (4)"},{"dept":"MGTF","description":"Teaches students how to obtain and process data in order to answer empirical questions in finance. The data can be numerical or textual, and structured or unstructured. Specific data sources may include CRSP, Compustat, Thomson Reuters, and Bloomberg. Some programming. Letter grades only. ","edges_from":[],"edges_to":[],"id":5723,"label":"MGTF 415","title":"Collecting and Analyzing Financial Data (4)"},{"dept":"MGTF","description":"Introduction to both structured and unstructured data analysis. Methods for “harvesting” Internet data and putting it into suitable format will be covered. Other topics include large market microstructure data (tick-by-tick data, high-frequency data), data with missing observations, and Kalman filtering. Letter grades only. ","edges_from":[],"edges_to":[],"id":5724,"label":"MGTF 414","title":"Analyzing Large Data (4)"},{"dept":"MGTF","description":"Focuses on communications skills and abilities required for effective professionals in the financial services sector. Addresses oral and written communications, including presentations, informational and job interviewing, resume writing, cross-cultural communication, and report writing. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 402, which is a comparable course offered in the MBA program. ","edges_from":[],"edges_to":[],"id":5725,"label":"MGTF 417","title":"Professional Communications in Finance (1)"},{"dept":"MGTF","description":"Discussion series involving industry experts, alumni, and executives on current issues in financial services. Educates students on industry trends. Prepares students to be effective users of the financial press and to be effective in discussion and interaction with financial professionals. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 401, which is a comparable course offered in the MBA program. ","edges_from":[],"edges_to":[],"id":5726,"label":"MGTF 416","title":"Professional Seminars in Finance (1)"},{"dept":"COGS","description":"Special topics in cognitive science are discussed. (May be repeated when topics vary.) ","edges_from":[],"edges_to":[],"id":5727,"label":"COGS 160","title":"Upper-Division Seminar on Special Topics (4)"},{"dept":"ECON","description":"Honors sequence expanding on the material taught in Econ 120C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120C or after successful completion of Econ 120C with A– or better or consent of instructor. Priority enrollment given to majors in the department. ","edges_from":[],"edges_to":[],"id":5728,"label":"ECON 120CH","title":"Honors Econometrics C (1)"},{"dept":"AUD","description":"Observations in UC San Diego Otology clinic. Learn about procedures for taking histories and performing clinical examinations, patient treatment, and patient education from otologists. ","edges_from":[],"edges_to":[],"id":5729,"label":"AUD 236","title":"Preceptorship in Neuro-Otology (2)"},{"dept":"PHIL","description":"Investigation of ethical and epistemological questions concerning our relationship to the environment. Topics may include the value of nature, biodiversity, policy and science, and responsibility to future generations. ","edges_from":[],"edges_to":[],"id":5730,"label":"PHIL 148","title":"Philosophy and the Environment (4)"},{"dept":"MAE","description":"Element Methods in Mechanical and Aerospace Engineering (4)","edges_from":[],"edges_to":[],"id":5731,"label":"MAE 133","title":"Finite"},{"dept":"PHIL","description":"Philosophical issues raised by psychology, including the nature of psychological explanation, the role of nature versus nurture, free will and determinism, and the unity of the person. ","edges_from":[],"edges_to":[],"id":5732,"label":"PHIL 149","title":"Philosophy of Psychology (4)"},{"dept":"HILA","description":"A broad historical overview of Hispanic American women’s history of focusing on the issues of gender, sexuality, and the family as they relate to women, as well as the historiographical issues in Latin American and Chicana women’s history.","edges_from":[],"edges_to":[],"id":5733,"label":"HILA 161/261","title":"History of Women in Latin America (4)"},{"dept":"LTWR","description":"In the generative workshop, writers create intergenre works and practice unconventional workshopping techniques that function less as editorial roundtables and more as discussions of the relationships between aesthetics and culture. ","edges_from":[],"edges_to":[],"id":5734,"label":"LTWR 215","title":"Cross-Genre Workshop (4)"},{"dept":"CONT","description":"This course will examine disability in the case of individuals with an intellectual or physical disability. Faced with ableism, intentional or unintentional, people with disabilities often experience difficulties in society. Using ableism provides an effective way of addressing ableist discrimination. The course will develop students’ awareness of the challenges of disability in current society. Winter quarter only.","edges_from":[],"edges_to":[],"id":5735,"label":"CONT 68","title":"Disability, Race, and Diversity (4)"},{"dept":"Classics","description":"F,W,S. Required of and limited to teaching","edges_from":[],"edges_to":[],"id":5736,"label":"Classics 399","title":"University Teaching (4-4-4)"},{"dept":"MUS","description":"Introduces important themes and thinkers from the fields of critical theory and cultural studies and explores how musical behaviors and phenomena relate to matters of ideology, nationality, ethnicity, social class, race, and gender. Students who have taken MUS 208C for credit may not take MUS 213 for credit. ","edges_from":[],"edges_to":[],"id":5737,"label":"MUS 213","title":"Introduction to Critical Studies (2)"},{"dept":"CLRE","description":"This course covers how to develop and implement a digital strategy to drive a health research organization’s online presence, specifically the processes for selecting, using, managing, and evaluating the effectiveness of web, social media, and mobile technologies. ","edges_from":[],"edges_to":[],"id":5738,"label":"CLRE 230","title":"Digital Health (2)"},{"dept":"MUS","description":"Introduces the field of ethnomusicology by highlighting important thinkers, concepts, and issues and by orienting students toward work of an anthropological, ethnographic, or comparative nature. Students who have taken and passed MUS 208A may not get credit for MUS 211. ","edges_from":[],"edges_to":[],"id":5739,"label":"MUS 211","title":"Introduction to Ethnomusicology (2)"},{"dept":"MUS","description":"The analysis of complex music. The course will assume that the student has a background in traditional music analysis. The goal of the course is to investigate and develop analytical procedures that yield significant information about specific works of music, old and new. Reading, projects, and analytical papers. ","edges_from":[],"edges_to":[],"id":5740,"label":"MUS 210","title":"Musical Analysis (4)"},{"dept":"CLRE","description":"This course offers practical guidance about how best to engage in interdisciplinary and multidisciplinary team science: to pursue complex science questions, to work effectively with team members, and to produce high impact research outcomes that help meet society’s needs. ","edges_from":[],"edges_to":[],"id":5741,"label":"CLRE 235","title":"Team Science (2)"},{"dept":"CLRE","description":"This course will provide an overview of Institutional Review Board (IRB) considerations of social media in research, including those major ethical challenges and data security issues that may arise with the use of social media for recruitment, consent processes, data collection, and data dissemination. ","edges_from":[],"edges_to":[],"id":5742,"label":"CLRE 234","title":"Social Media Research (2)"},{"dept":"CLRE","description":"This course focuses on practical applications of the principles of translating stem cell based therapies, especially those in early development and phase 1 studies. Students will acquire skills to translate these interventions from the bench to the bedside by designing a trial. Differences between drug development and stem cell based therapies will be highlighted. ","edges_from":[],"edges_to":[],"id":5743,"label":"CLRE 237","title":"Stem Cell Translation (2)"},{"dept":"CLRE","description":"Students learn principles and practices of translational medicine as they apply to the development of new drugs, device, or diagnostic. Students receive training in the development of novel targets and leads, clinical pharmacology, regulatory process, and design of clinical trials. ","edges_from":[],"edges_to":[5745],"id":5744,"label":"CLRE 236","title":"Translational Research (2)"},{"dept":"CLRE","description":"Students will understand the drug discovery process through case studies in mentored teams. Each team is assigned a pharmacotherapeutic modality and will use publicly disclosed information to reconstruct the entire translational chain of events from new drug idea to market. ","edges_from":[5744],"edges_to":[],"id":5745,"label":"CLRE 238","title":"Applied Drug Discovery and Development (2)"},{"dept":"BENG","description":"(Conjoined with BENG 191.) Instills skills","edges_from":[],"edges_to":[],"id":5746,"label":"BENG 291/191","title":"Senior Seminar I: Professional Issues in Bioengineering (2)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112F. Courses may be taken in any order. ","edges_from":[],"edges_to":[],"id":5747,"label":"Linguistics/Heritage Languages (LIHL) 112F","title":"Filipino for Filipino Speakers (4)"},{"dept":"POLI","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. May not be used to fulfill any major or minor requirements in political science.","edges_from":[],"edges_to":[],"id":5748,"label":"POLI 87","title":"Freshman Seminar (1)"},{"dept":"HIUS","description":"This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences. ","edges_from":[],"edges_to":[],"id":5749,"label":"HIUS 167/267/ETHN 180","title":"Topics in Mexican American History (4)"},{"dept":"CSE","description":"Modern advances in design and analysis of algorithms. Exact syllabus varies. Topics include approximation, randomized algorithms, probabilistic analysis, heuristics, online algorithms, competitive analysis, models of memory hierarchy, parallel algorithms, number-theoretic algorithms, cryptanalysis, computational geometry, computational biology, network algorithms, VLSI CAD algorithms. ","edges_from":[1743],"edges_to":[],"id":5750,"label":"CSE 203A","title":"Advanced Algorithms (4)"},{"dept":"TDTR","description":"An overview and analysis of movement theory systems that offer approaches that improve movement quality, prevent injuries, aid in habilitation, develop mental focus and kinesthetic control, establish a positive body language, and develop vocabulary for creative research. ","edges_from":[3474],"edges_to":[],"id":5751,"label":"TDTR 15","title":"Dance Movement and Analysis (4)"},{"dept":"PHIL","description":"Philosophical problems in the biological sciences, such as the relation between biology and the physical sciences, the status and structure of evolutionary theory, and the role of biology in the social sciences. ","edges_from":[],"edges_to":[],"id":5752,"label":"PHIL 147","title":"Philosophy of Biology (4)"},{"dept":"VIS","description":"Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ","edges_from":[],"edges_to":[],"id":5753,"label":"VIS 131","title":"Special Projects in Media (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112P. Courses may be taken in any order. ","edges_from":[],"edges_to":[],"id":5754,"label":"Linguistics/Heritage Languages (LIHL) 112P","title":"Filipino for Filipino Speakers (4)"},{"dept":"BENG","description":"General engineering design topics including project planning and design objectives, background research, engineering needs assessment, technical design specifications, engineering standards, and design requirements and constraints. Introduction to biomedical and biotechnology design projects. Career and professional advising. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ","edges_from":[2192,597,2885],"edges_to":[],"id":5755,"label":"BENG 187A","title":"Bioengineering Design Project: Planning (1)"},{"dept":"BENG","description":"","edges_from":[68,5805],"edges_to":[68],"id":5756,"label":"BENG 127B","title":""},{"dept":"BENG","description":"","edges_from":[68,5780],"edges_to":[68],"id":5757,"label":"BENG 149B","title":""},{"dept":"BENG","description":"","edges_from":[68,5990],"edges_to":[68],"id":5758,"label":"BENG 148B","title":""},{"dept":"PHIL","description":"Central problems in philosophy of science, such as the nature of confirmation and explanation, the nature of scientific revolutions and progress, the unity of science, and realism and antirealism. ","edges_from":[],"edges_to":[],"id":5759,"label":"PHIL 145","title":"Philosophy of Science (4)"},{"dept":"HITO","description":"This course will examine what has been called the Cultural Cold Wars. Sports were the most visible form of popular culture during the era (1945–91). It will make use of reports and essays produced for an international, multiyear research project. It will combine written and visual sources. Matters of class, race, gender, and nationality will be discussed. May be coscheduled with HITO 267. ","edges_from":[],"edges_to":[],"id":5760,"label":"HITO 167/267","title":"Global History of Sports in the Cold War (4)"},{"dept":"CSE","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ","edges_from":[],"edges_to":[],"id":5761,"label":"CSE 87","title":"Freshman Seminar (1)"},{"dept":"CSE","description":"Helps the Java programmer to be productive in the C++ programming environment. Topics include the similarities and differences between Java and C++ with special attention to pointers, operator overloading, templates, the STL, the preprocessor, and the C++ Runtime Environment. ","edges_from":[1],"edges_to":[],"id":5762,"label":"CSE 86","title":"C++ for Java Programmers (2)"},{"dept":"CSE","description":"Discussion on problems of current research interest in computer systems. Possible areas of focus include: distributed computing, computational grid, operating systems, fault-tolerant computing, storage systems, system services for the World Wide Web. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ","edges_from":[],"edges_to":[],"id":5763,"label":"CSE 229A","title":"Topics/Seminar in Computer Systems (1–4)"},{"dept":"ETHN","description":"Latino/a-Chicano/a Cultural Production: 1960 to Present (4)","edges_from":[],"edges_to":[],"id":5764,"label":"ETHN 135B","title":"Contemporary"},{"dept":"CSE","description":"The objective of the course is to help the programmer create a productive UNIX environment. Topics include customizing the shell, file system, shell programming, process management, and UNIX tools. ","edges_from":[393,395],"edges_to":[],"id":5765,"label":"CSE 80","title":"UNIX Lab (2)"},{"dept":"VIS","description":"Transnational Cinemas examine how US identities and film cultures have been forged through stories of exile, diaspora, and racial and sexual discrimination as well as cultural conflicts that have resonated here and abroad in the global film and media culture of the last century. Program or materials fees may apply. ","edges_from":[],"edges_to":[],"id":5766,"label":"VIS 152D","title":"Identity through Transnational Cinemas (4)"},{"dept":"SE","description":"Elements of seismicity and seismology. Seismic hazards. Dynamic analysis of structures underground motion. Elastic and inelastic response spectra. Modal analysis, nonlinear time-history analysis. Earthquake resistant design. Seismic detailing. ","edges_from":[652,2661],"edges_to":[],"id":5767,"label":"SE 180","title":"Earthquake Engineering (4)"},{"dept":"COGS","description":"This course will address principles of motivation, valuation, and reward, spanning a large territory of topics, from rules of synaptic learning to classroom learning. Recommended preparation: courses in basic biology, physiology, Cognitive Science 107A or 107B or 107C, or courses in education. ","edges_from":[],"edges_to":[],"id":5768,"label":"COGS 164","title":"Neurobiology of Motivation (4)"},{"dept":"CHIN","description":"Second year of basic Chinese for students with background in a","edges_from":[],"edges_to":[],"id":5769,"label":"CHIN 20AD","title":"Second Year Chinese—Dialect speakers I (4)"},{"dept":"ECE","description":"(S/U grades only.)","edges_from":[],"edges_to":[],"id":5770,"label":"ECE 299","title":"Research (1–16)"},{"dept":"ECE","description":"Open to properly qualified graduate students","edges_from":[],"edges_to":[],"id":5771,"label":"ECE 298","title":"Independent Study (1–16)"},{"dept":"TDPF","description":"in Performance—Winter Production (2–4)","edges_from":[],"edges_to":[5774],"id":5772,"label":"TDPF 161","title":"Studies"},{"dept":"TDPF","description":"in Performance—Fall Production (2–4)","edges_from":[],"edges_to":[5774],"id":5773,"label":"TDPF 160","title":"Studies"},{"dept":"TDPF","description":"The study and aesthetic examination of major choreographic works by dance faculty or distinguished guest artists. Students will experience the creative process, staging, production, and performance of a complete dance work in conjunction with a conceptual study of its form and content. Audition is required. May be taken for credit four times. ","edges_from":[5772,5773,3478],"edges_to":[],"id":5774,"label":"TDPF 163","title":"Dance Repertory (1–4)"},{"dept":"ECE","description":"in Electronic Devices and Materials/Applied Physics (2)","edges_from":[],"edges_to":[],"id":5775,"label":"ECE 294","title":"Graduate Seminar"},{"dept":"ECE","description":"in Communication Theory and Systems (2)","edges_from":[],"edges_to":[],"id":5776,"label":"ECE 293","title":"Graduate Seminar"},{"dept":"CHIN","description":"Second year of basic Chinese for students with background in Mandarin.","edges_from":[],"edges_to":[],"id":5777,"label":"CHIN 20AM","title":"Second Year Chinese—Mandarin speakers I (4)"},{"dept":"CHIN","description":"Second year of basic Chinese for students with no background. First","edges_from":[],"edges_to":[],"id":5778,"label":"CHIN 20AN","title":"Second Year Chinese—Non-native speakers I (4)"},{"dept":"ECE","description":"Weekly discussion of current research conducted","edges_from":[],"edges_to":[],"id":5779,"label":"ECE 290","title":"Graduate Seminar on Current ECE Research (2)"},{"dept":"BENG","description":"","edges_from":[66],"edges_to":[5757],"id":5780,"label":"BENG 149A","title":""},{"dept":"TDGE","description":"This course is designed to establish a clear understanding of the fundamentals of effective oral communication. The methodologies explore the integration of relaxation, concentration, organization, and clear voice and diction as applied to various public speaking modes. ","edges_from":[],"edges_to":[],"id":5781,"label":"TDGE 25","title":"Public Speaking (4)"},{"dept":"LTLA","description":"Tutorial; individual guided reading in areas of Latin literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5782,"label":"LTLA 199","title":"Special Studies (2 or 4)"},{"dept":"LTLA","description":"Directed group study in areas of Latin literature not normally covered in courses. May be repeated three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5783,"label":"LTLA 198","title":"Directed Group Study (4)"},{"dept":"CSE","description":"(Formerly CSE 206B.) The course focuses on algorithmic aspects of modern bioinformatics and covers the following topics: computational gene hunting, sequencing, DNA arrays, sequence comparison, pattern discovery in DNA, genome rearrangements, molecular evolution, computational proteomics, and others. ","edges_from":[1743],"edges_to":[],"id":5784,"label":"CSE 280A","title":"Algorithms in Computational Biology (4)"},{"dept":"SE","description":"Finite Element Methods for Solid Mechanics (4)","edges_from":[],"edges_to":[],"id":5785,"label":"SE 274","title":"Nonlinear"},{"dept":"LTCS","description":"This course explores the idea of artificial intelligence in both art and science, its relation to the quest to identify what makes us human, and the roles gender and race have played in both. Students may not receive credit for CGS 108 and LTCS 108.","edges_from":[],"edges_to":[],"id":5786,"label":"LTCS 108","title":"Gender, Race, and Artificial Intelligence (4)"},{"dept":"LTCS","description":"Survey and application of methods central to cultural studies as a critical social practice, examining the relationship between cultural studies and social transformation. Students will study varieties of material culture, and experiment with techniques of reading, interpretation, and intervention.","edges_from":[],"edges_to":[],"id":5787,"label":"LTCS 102","title":"Practicing Cultural Studies (4)"},{"dept":"LTCS","description":"and Methods in Cultural Studies (4)","edges_from":[],"edges_to":[],"id":5788,"label":"LTCS 100","title":"Theories"},{"dept":"LATI","description":"Students will collect survey and qualitative data among Mexican migrants to the United States and potential migrants, participate in team research, organize data collected for analysis, and submit a detailed outline of an article to be based on field data. Students may not receive credit for both SOCI 122B and LATI 122B. Recommended: advanced competency in conversational Spanish. ","edges_from":[4713],"edges_to":[5790],"id":5789,"label":"LATI 122B","title":"Field Research Methods for Migration Studies: Practicum (12)"},{"dept":"LATI","description":"Continuation of SOCI 122B. Students analyze primary data they have collected in field research sites and coauthor an article for publication. Methods for organizing and processing field data, techniques of quantitative data analysis, and report preparation conventions will be covered. Students may not receive credit for both SOCI 122C and LATI 122C. ","edges_from":[5789],"edges_to":[],"id":5790,"label":"LATI 122C","title":"Field Research Methods for Migration Studies: Data Analysis (4)"},{"dept":"ETHN","description":"An intensive capstone experience for ethnic studies majors, this course combines an advanced exploration of praxis-based approaches to social justice with practicum-based independent campus, community, creative, or research projects. ","edges_from":[3320,628],"edges_to":[],"id":5791,"label":"ETHN 100C","title":"Social Justice Praxis (4)"},{"dept":"CSE","description":"Polynomial-time hierarchy (PH), BPP in second level of PH, Savitch’s theorem, NL=coNL, nonuniform and circuit complexity, some circuit lower bounds, IP=PSPACE, probabilistic proof checking (PCP), application of PCP to approximation hardness, complexity of proof systems, parallel complexity classes NC and AC, P-completeness. Recommended preparation: CSE 200. ","edges_from":[],"edges_to":[],"id":5792,"label":"CSE 201A","title":"Advanced Complexity (4)"},{"dept":"LIGN","description":"Vietnamese (1–4)","edges_from":[],"edges_to":[],"id":5793,"label":"LIGN 513","title":"Apprentice Teaching of Heritage"},{"dept":"MATH","description":"Existence and uniqueness theorems. Cauchy-Kowalewski theorem, first order systems. Hamilton-Jacobi theory, initial value problems for hyperbolic and parabolic systems, boundary value problems for elliptic systems. Green’s function, eigenvalue problems, perturbation theory. ","edges_from":[5064,5065,5795,5796,1083],"edges_to":[],"id":5794,"label":"MATH 231A-B-C","title":"Partial Differential Equations (4-4-4)"},{"dept":"MATH","description":"","edges_from":[],"edges_to":[5794],"id":5795,"label":"MATH 240A","title":""},{"dept":"MATH","description":"","edges_from":[],"edges_to":[5794],"id":5796,"label":"MATH 240B","title":""},{"dept":"GPPS","description":"Examination of the effects of national governments and international collaboration on global trade and investments, with a focus on the roles of national trade policies, international institutions such as the WTO, free trade areas, bilateral investment treaties, and multinational corporations. Implications of trade and investment are also considered for international development and emerging economic powers.","edges_from":[],"edges_to":[],"id":5797,"label":"GPPS 417","title":"International Political Economy: Trade and Investments (4)"},{"dept":"GPPS","description":"Overview of postwar politics in Japan, including American Occupation reforms, political institutions, major political factors, mass and elite, and political behavior. Special attention will be paid to the issue of Japan’s changing democracy. Renumbered from IRGN 416. Students may not receive credit for IRGN 416 and GPPS 416.","edges_from":[],"edges_to":[],"id":5798,"label":"GPPS 416","title":"Postwar Politics in Japan (4)"},{"dept":"GPPS","description":"Why do corporate governance systems—the way firms are run, the relationships among managers, stockholders, and workers—differ widely around the world? This course examines the various explanations for these striking differences and the consequences. Renumbered from IRGN 410. Students may not receive credit for IRGN 410 and GPPS 410.","edges_from":[],"edges_to":[],"id":5799,"label":"GPPS 410","title":"Corporate Governance (4)"},{"dept":"VIS","description":"Looks at the way that self-identity is reflected and produced through various media practices. Focus is on rhetorical strategies of biography and autobiography in media, comparing and contrasting these strategies with those drawn from related cultural forms. Two production-course limitation. ","edges_from":[561,562,563,564,565,566,567,568],"edges_to":[],"id":5800,"label":"VIS 183A","title":"Strategies of Self (4)"},{"dept":"VIS","description":"Looks at difference as it is reflected and constructed in various media practices. Course will examine a wide range of forms and genres such as ethnography, science fiction, crime narratives, documentary film, political drama, and animated shorts. Two production-course limitation. ","edges_from":[561,562,563,564,565,566,567,568],"edges_to":[],"id":5801,"label":"VIS 183B","title":"Strategies of Alterity (4)"},{"dept":"POLI","description":"This course explores the way in which the international rivalry between the Soviet Union and the United States affected relationships between the two powers, their allies, the Third World, and above all, their internal domestic affairs and development.","edges_from":[],"edges_to":[],"id":5802,"label":"POLI 142Q","title":"Cold War (4)"},{"dept":"POLI","description":"An introduction to analytic techniques for assessing policy options in the field of national security. ","edges_from":[],"edges_to":[],"id":5803,"label":"POLI 142N","title":"American Defense Policy (4)"},{"dept":"MUS","description":"This course, third in a three-quarter sequence, offers solid foundation in musical literacy through exercises such as harmonic and melodic dictation, sight singing exercises and rhythm in various meters. Topics include complex rhythm, harmony, and basic keyboard skills. ","edges_from":[2352],"edges_to":[1560],"id":5804,"label":"MUS 1C","title":"Fundamentals of Music C (4)"},{"dept":"BENG","description":"","edges_from":[66],"edges_to":[5756],"id":5805,"label":"BENG 127A","title":""},{"dept":"MBC","description":"Topics/Marine Biology–MAS-MBC Forum (1)","edges_from":[],"edges_to":[],"id":5806,"label":"MBC 258","title":"Special"},{"dept":"POLI","description":"Lectures and readings examine US foreign policy in Europe, Latin America, and East Asia with attention to current problems with specific nations (e.g., Bosnia) and issues (e.g., terrorism). This course integrates historical, comparative, and foreign perspectives on regional security dynamics.","edges_from":[],"edges_to":[],"id":5807,"label":"POLI 142M","title":"US Foreign Policy/Regional Security (4)"},{"dept":"MAE","description":"Theoretical strength; stress concentration. Linear and nonlinear fracture mechanics: stress singularity, fracture modes, crack tip plastic zone, dugdale model, the R-curve; power-law materials, the J-integral; fatigue; special topics. ","edges_from":[3365,3366],"edges_to":[],"id":5808,"label":"MAE 233A","title":"Fracture Mechanics (4)"},{"dept":"MAE","description":"General theory of transformation strains and corresponding elastic fields; Green’s functions and other solution methods; dislocations; inclusions and inhomogeneities; micromechanics of plastic flow, microcracking, cavitation, and damage in crystalline and other solids. ","edges_from":[3364,3365,3366],"edges_to":[],"id":5809,"label":"MAE 233B","title":"Micromechanics (4)"},{"dept":"POLI","description":"A survey of American strategies for national defense. Topics may include deterrence, coercive diplomacy, limited war, and unconventional warfare.","edges_from":[],"edges_to":[],"id":5810,"label":"POLI 142J","title":"National Security Strategy (4)"},{"dept":"CLRE","description":"The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students’ work will be evaluated by a committee of faculty, and may also include industry advisors when appropriate. ","edges_from":[],"edges_to":[],"id":5811,"label":"CLRE 298","title":"Independent Study Project (4)"},{"dept":"MAE","description":"Velocity distribution functions, the Boltzmann equation, moment equations and the Navier-Stokes equations. The dynamics of molecular collisions. The Chapman-Enskog expansion and transport coefficients: shear and bulk viscosity, heat conduction, molecular and thermal diffusion. Linearizations about equilibrium: applications to acoustics and supersonic flows with relaxation. ","edges_from":[513,676,677,4615,168,169,988],"edges_to":[],"id":5812,"label":"MAE 220B","title":"Physical Gas Dynamics (4)"},{"dept":"MGTF","description":"Focuses on the financing of new ventures and technological innovation. Includes perspectives of both the entrepreneur and the investor, investigating the venture capital process, and methods of financial valuation useful in the venture capital industry and for other technology investments. Letter grades only. Students may not receive credit for both MGTF 410 and MGT 280. They are course equivalents. ","edges_from":[],"edges_to":[],"id":5813,"label":"MGTF 410","title":"New Venture Finance (4)"},{"dept":"CSE","description":"Database, data warehouse, and data cube design; SQL programming and querying with emphasis on analytics; online analytics applications, visualizations, and data exploration; performance tuning. ","edges_from":[16,17],"edges_to":[5815],"id":5814,"label":"CSE 135","title":"Online Database Analytics Applications (4)"},{"dept":"CSE","description":"Design and implementation of very large-scale, web-based applications. Topics covered typically include modeling organizational needs, design and revision management, J2EE or similar software platforms, web server and application server functionality, reuse of object-oriented components, model-view-controller and other design patterns, clustering, load-balancing, fault-tolerance, authentication, and usage accounting. ","edges_from":[5814],"edges_to":[],"id":5815,"label":"CSE 136","title":"Enterprise-Class Web Applications (4)"},{"dept":"ETHN","description":"This course follows the introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization (part one). Students will develop the proposals they completed in part one of the course, finishing with curatorial briefs for an exhibition of Native American art with a partner museum incorporating new and decolonizing approaches to representation. May be coscheduled with ETHN 114B. ","edges_from":[5056],"edges_to":[],"id":5816,"label":"ETHN 214B","title":"Representing Native America: Exhibition Design (4)"},{"dept":"CSE","description":"in Computer Architecture (1–4)","edges_from":[],"edges_to":[],"id":5817,"label":"CSE 249A","title":"Topics/Seminar"},{"dept":"CSE","description":"Topics of special interest in VLSI to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ","edges_from":[],"edges_to":[],"id":5818,"label":"CSE 249B","title":"Topics/Seminar in VLSI (1–4)"},{"dept":"PHYS","description":"This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. ","edges_from":[5060,5059,4724,199],"edges_to":[],"id":5819,"label":"PHYS 175","title":"Biological Physics (4)"},{"dept":"PHYS","description":"A quantitative approach to gene regulation including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. ","edges_from":[199],"edges_to":[],"id":5820,"label":"PHYS 176","title":"Quantitative Molecular Biology (4)"},{"dept":"PHYS","description":"The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from: chemotaxis as a model system; signal transduction networks and cellular information processing; mechanics of the membrane; cytoskeletal dynamics; nonlinear Calcium waves. May be scheduled with Physics 277. ","edges_from":[],"edges_to":[],"id":5821,"label":"PHYS 177","title":"Physics of the Cell (4)"},{"dept":"PHYS","description":"The principles and clinical applications of medical diagnostic instruments, including electromagnetic measurements, spectroscopy, microscopy; ultrasounds, X-rays, MRI, tomography, lasers in surgery, fiber optics in diagnostics. ","edges_from":[36,37,1388,1391,30,31],"edges_to":[],"id":5822,"label":"PHYS 170","title":"Medical Instruments: Principles and Practice (4)"},{"dept":"CSE","description":"Robotics has the potential to improve well-being for millions of people and support caregivers and to aid the clinical workforce. We bring together engineers, clinicians, and end-users to explore this exciting new field. The course is project-based, interactive, and hands-on, and involves working closely with stakeholders to develop prototypes that solve real-world problems. Students will explore the latest research in health care robotics, human-robot teaming, and health design. Program or materials fees may apply. ","edges_from":[280,2857,4015],"edges_to":[],"id":5823,"label":"CSE 176A","title":"Maker Topics: Health Care Robotics (4)"},{"dept":"PHYS","description":"A selection of experiments in contemporary","edges_from":[],"edges_to":[],"id":5824,"label":"PHYS 173","title":"Modern Physics Laboratory: Biological and Quantum Physics (4)"},{"dept":"HIGR","description":"Research seminar in medieval history with selected topics in medieval history.","edges_from":[],"edges_to":[],"id":5825,"label":"HIGR 223B","title":"Research Seminar in Medieval History (4)"},{"dept":"HILA","description":"Reviews the historical processes Latin American countries underwent after political independence from Spain/Portugal in the nineteenth century. Each country built its future, but there also were continuities. Assessing changes and continuities and their present-day consequences will be our goal.","edges_from":[],"edges_to":[],"id":5826,"label":"HILA 106","title":"Changes and Continuities in Latin American History (4)"},{"dept":"PHYS","description":"Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. ","edges_from":[],"edges_to":[],"id":5827,"label":"PHYS 178","title":"Biophysics of Neurons and Networks (4)"},{"dept":"HILA","description":"Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptations, late colonial growth and the onset of independence. Students may not receive credit for both HILA 100 and HILA 100D. +","edges_from":[],"edges_to":[],"id":5828,"label":"HILA 100","title":"Conquest and Empire: The Americas (4)"},{"dept":"HILA","description":"A political, economic, and social examination of the causes and consequences of the Mexican, Cuban, and Nicaraguan revolutions. Also examine guerrilla movements that failed to gain power in their respective countries, namely the Shining Path in Peru, FARC in Colombia, and the Zapatistas in Mexico.","edges_from":[],"edges_to":[],"id":5829,"label":"HILA 103","title":"Revolution in Modern Latin America (4)"},{"dept":"HILA","description":"This course surveys the history of the region by focusing on two interrelated phenomena—the absence of democracy in most nations and the region’s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.","edges_from":[],"edges_to":[],"id":5830,"label":"HILA 102","title":"Latin America in the Twentieth Century (4)"},{"dept":"MGT","description":"This course addresses classical operations management models in inventory","edges_from":[],"edges_to":[],"id":5831,"label":"MGT 245","title":"Theory of Technology and Operations Management (4)"},{"dept":"HIUS","description":"130. Social and Economic History of the Southwest I (4)","edges_from":[],"edges_to":[],"id":5832,"label":"HIUS 158/ETHN","title":""},{"dept":"SE","description":"(S/U grades permitted.)","edges_from":[],"edges_to":[],"id":5833,"label":"SE 299","title":"Graduate Research (1–12)"},{"dept":"SE","description":"Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ","edges_from":[],"edges_to":[],"id":5834,"label":"SE 298","title":"Directed Group Study (1–4)"},{"dept":"SE","description":"","edges_from":[],"edges_to":[],"id":5835,"label":"SE 296","title":"Independent Study (4)"},{"dept":"COGR","description":"This course will draw on theorists who examine human nature as constituted by social, material, and historical circumstances. This course considers the media in relation to the ontogenetic and historical development of the human being and an examination of the individual as socially constituted in a language-using medium. The role of new communication technologies as part of research methodologies is explored in lecture-seminar. ","edges_from":[],"edges_to":[],"id":5836,"label":"COGR 200C","title":"Introduction to the Study of Communication: Communication and the Individual (4)"},{"dept":"SE","description":"Weekly seminar and discussion by faculty, visitors, postdoctoral research fellows and graduate students concerning research topics in earthquake engineering and related subjects. May be repeated for credit. (S/U grades only.)","edges_from":[],"edges_to":[],"id":5837,"label":"SE 290","title":"Seminar in Earthquake Engineering (2)"},{"dept":"POLI","description":"The relationship between the United States and Japan has been described as “the most important in the world, bar none.” This course will examine US-Japan security and economic relations in the postwar period from the Occupation and Cold War alliance through the severe bilateral trade friction of the 1980s and 1990s to the present relationship and how it is being transformed by the forces of globalization, regionalization, and multilateralism.","edges_from":[],"edges_to":[],"id":5838,"label":"POLI 133G","title":"Postwar US-Japan Relations (4)"},{"dept":"POLI","description":"This course discusses the following major topics in three East Asian countries (Japan, South Korea, and the Philippines) from a comparative perspective: (a) economic and political development; (b) political institutions; and (c) policies.","edges_from":[],"edges_to":[],"id":5839,"label":"POLI 133D","title":"Political Institutions of East Asian Countries (4)"},{"dept":"POLI","description":"Guided and supervised reading in the literature of the several fields of political science.","edges_from":[],"edges_to":[],"id":5840,"label":"POLI 298","title":"Directed Reading (1–12)"},{"dept":"POLI","description":"Politics: A Developmental Perspective (4)","edges_from":[],"edges_to":[],"id":5841,"label":"POLI 133A","title":"Japanese"},{"dept":"LTKO","description":"Students develop beginning-level skills in the Korean language, with an introduction to the writing and sound system. The remainder of the course will focus on basic sentence structures and expressions. ","edges_from":[5843],"edges_to":[2124],"id":5842,"label":"LTKO 1B","title":"Beginning Korean: First Year II (5)"},{"dept":"LTKO","description":"","edges_from":[],"edges_to":[5842],"id":5843,"label":"LTKO 1A","title":""},{"dept":"POLI","description":"This course is primarily about the politics and political economy of South Korea, but will also briefly look at politics and political economy of North Korea as well as foreign and unification policies of the two Koreas. ","edges_from":[],"edges_to":[],"id":5844,"label":"POLI 133J","title":"Korean Politics (4)"},{"dept":"CENG","description":"Introduction to solution of engineering problems using computational methods. Formulating problem statements, selecting algorithms, writing computer programs, and analyzing output using Matlab. Computational problems from NanoEngineering, chemical engineering, and materials science are introduced. The course requires no prior programming skills. Cross-listed with NANO 15. Students may not receive credit for both CENG 15 and NANO 15. ","edges_from":[],"edges_to":[],"id":5845,"label":"CENG 15: Engineering Computation Using Matlab (4)","title":""},{"dept":"POLI","description":"Is there a Muslim challenge to immigrant integration in Christian-heritage societies? This course asks if and why Muslim immigrants integrate into their host societies, and evaluates the various solutions put forth by politicians and scholars.","edges_from":[],"edges_to":[],"id":5846,"label":"POLI 131","title":"Muslim Integration and Exclusion (4)"},{"dept":"GPEC","description":"The goals of the course are to help students acquire analytic skills used in the study of labor economics and international migration. We examine the causes of immigration, the consequences of immigration for wages and employment in sending and receiving countries, and policies governing high-skilled immigration, undocumented immigration, and refugees. Students produce an original project that demonstrates their master of quantitative tools used in economics. Renumbered from IRGN 432. Students may not receive credit for GPEC 432 and IRGN 432.","edges_from":[],"edges_to":[],"id":5847,"label":"GPEC 432","title":"Immigration and Immigration Policy (4)"},{"dept":"ECON","description":"This course is a workshop in which students make formal presentations on the literature and on their own projects and receive input from other students and the instructor. ","edges_from":[],"edges_to":[],"id":5848,"label":"ECON 285","title":"Precandidacy Presentation (2)"},{"dept":"ECON","description":"The aim of the course is","edges_from":[],"edges_to":[],"id":5849,"label":"ECON 286","title":"Graduate Research Presentation Workshop (3)"},{"dept":"ECON","description":"Lecture course at an advanced level on a special topic. May be repeated for credit if topic differs. (Previously numbered Econ 267.) ","edges_from":[],"edges_to":[],"id":5850,"label":"ECON 281","title":"Special Topics in Economics (4)"},{"dept":"ECON","description":"Introduction to computing for economists. ","edges_from":[],"edges_to":[],"id":5851,"label":"ECON 280","title":"Computation (2)"},{"dept":"MUS","description":"Projects in New Music Performance (1–4, 1–4, 1–4, 1–4, 1–4, 1–4)","edges_from":[],"edges_to":[],"id":5852,"label":"MUS 201A-B-C-D-E-F","title":""},{"dept":"CHEM","description":"Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be emphasized. May be coscheduled with CHEM 258. ","edges_from":[1552,1553,1554,1555],"edges_to":[],"id":5853,"label":"CHEM 158","title":"Applied Spectroscopy (4)"},{"dept":"NEU","description":"This course will cover “ethical” issues in academia, including dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss “survival” issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. (W)","edges_from":[],"edges_to":[],"id":5854,"label":"NEU 241","title":"Ethics and Survival Skills in Academia (3)"},{"dept":"CHEM","description":"A qualitative approach","edges_from":[],"edges_to":[],"id":5855,"label":"CHEM 154","title":"Mechanisms of Organic Reactions (4)"},{"dept":"NEU","description":"Psychological processes including attention, perception, and memory will be studied in connection with event-related potentials of the human brain. The interrelations among psychological and physiological events will be explored in order to arrive at unified concepts of human information processing. ","edges_from":[5857],"edges_to":[],"id":5856,"label":"NEU 243","title":"Physiological Basis of Human Information (2)"},{"dept":"NEU","description":"","edges_from":[],"edges_to":[5856],"id":5857,"label":"NEU 238","title":""},{"dept":"CHEM","description":"and Properties of Organic Molecules (4)","edges_from":[],"edges_to":[],"id":5858,"label":"CHEM 156","title":"Structure"},{"dept":"CHEM","description":"A look at some of nature’s most intriguing molecules and the ability to discover, synthesize, modify, and use them. The role of chemistry in society, and how chemical synthesis—the art and science of constructing molecules—shapes our world. ","edges_from":[960,953,3314,2859],"edges_to":[],"id":5859,"label":"CHEM 151","title":"Molecules that Changed the World (4)"},{"dept":"LTSP","description":"A study in depth of selected novelists of Latin America. May be organized around a specific theme or idea that is traced in its development through the narratives. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":5860,"label":"LTSP 140","title":"Latin American Novel (4)"},{"dept":"LTSP","description":"A critical study of some of the major poets of Latin America, focusing on the poet’s central themes, the evolution of poetic style, and the significance of the poetry to the historical context. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":5861,"label":"LTSP 141","title":"Latin American Poetry (4)"},{"dept":"LTSP","description":"Readings and interpretation of the Latin American short story. Focus is primarily nineteenth and/or twentieth century. May be taken for credit two times as topics vary. ","edges_from":[82,83,84],"edges_to":[],"id":5862,"label":"LTSP 142","title":"Latin American Short Story (4)"},{"dept":"CONT","description":"Overview of the history and role of higher education in American society, including a focus on the relationship between society and institutions of higher learning. The course utilizes an interdisciplinary, multicultural perspective reflecting the diversity of the university. Summer Session only.","edges_from":[],"edges_to":[],"id":5863,"label":"CONT 1","title":"CI: The University in Society (4)"},{"dept":"SOCI","description":"An examination of a central concern of classical social theory: the relationship between economy and society, with special attention (theoretically and empirically) on the problem of the origins of modern capitalism. The course will investigate the role of technology and economic institutions in society; the influence of culture and politics on economic exchange, production, and consumption; the process of rationalization and the social division of labor; contemporary economic problems and the welfare state. ","edges_from":[5864,5865],"edges_to":[5864],"id":5864,"label":"SOCI 121","title":"Economy and Society (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[5864],"id":5865,"label":"SOCC 121","title":""},{"dept":"SOCI","description":"This course takes a social network approach to the study of society, examining the complex web of relationships— platonic, familial, professional, romantic—in which individual behavior is embedded. Special emphasis is placed on the unprecedented opportunities created by contemporary social media (e.g. Facebook, mobile phones, online dating websites) for answering fundamental sociological questions. ","edges_from":[],"edges_to":[],"id":5866,"label":"SOCI 122","title":"Social Networks (4)"},{"dept":"SOCI","description":"Immigration from a comparative, historical, and cultural perspective. Topics include: factors influencing amount of immigration and destination of immigrants; varying modes of incorporation of immigrants; immigration policies and rights; the impact of immigration on host economies; refugees; assimilation; and return migration. ","edges_from":[5867,5868],"edges_to":[5867],"id":5867,"label":"SOCI 125","title":"Sociology of Immigration (4)"},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[5867],"id":5868,"label":"SOCB 125","title":""},{"dept":"SOCB","description":"","edges_from":[],"edges_to":[2253],"id":5869,"label":"SOCB 127","title":""},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[2254],"id":5870,"label":"SOCC 126","title":""},{"dept":"SOCI","description":"An examination of historical and social influences on family life. Analyzes contemporary families in the United States, the influences of gender, class, and race, and current issues such as divorce, domestic violence, and the feminization of poverty. ","edges_from":[5872,5871],"edges_to":[5871],"id":5871,"label":"SOCI 129","title":"The Family (4)"},{"dept":"SOCC","description":"","edges_from":[],"edges_to":[5871],"id":5872,"label":"SOCC 129","title":""},{"dept":"BENG/BIMM/CSE/Chem","description":"(Cross-listed as BIMM 184, CSE 184, and Chem 184.) This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, hidden Markov models/support vector machines/neural network/profiles, protein structure prediction, functional characterization of proteins, functional genomics/proteomics, metabolic pathways/gene networks. ","edges_from":[4576,2053,582,2055,2057,2059,4575],"edges_to":[],"id":5873,"label":"BENG/BIMM/CSE/Chem 184","title":"Computational Molecular Biology (4)"},{"dept":"BENG/BIMM/CSE/Chem","description":"(Cross-listed as BIMM 182, CSE 182, and Chem 182.) This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object-oriented databases, data modeling, and data description. Survey of current biological database with respect to above; implementation of database focused on a biological topic. ","edges_from":[17],"edges_to":[],"id":5874,"label":"BENG/BIMM/CSE/Chem 182","title":"Biological Databases (4)"},{"dept":"HIGR","description":"Cross-listed as Communication 225C, Philosophy 209C, and Sociology 255C. A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ","edges_from":[],"edges_to":[],"id":5875,"label":"HIGR 240","title":"Colloquium in Science Studies (4)"},{"dept":"POLI","description":"This course serves as an introduction to the study of international political economy. We will examine the evolution of international economic relations in trade, finance, and economic development and discuss different explanations for its likely causes and consequences.","edges_from":[],"edges_to":[],"id":5876,"label":"POLI 144","title":"International Political Economy (4)"},{"dept":"SOCI","description":"Community and Social Change in Africa (4)","edges_from":[],"edges_to":[],"id":5877,"label":"SOCI 188E","title":""},{"dept":"COMM","description":"This course examines the interaction of language and culture in human communication. Beginning with language evolution, the course then discusses a broad range of human languages, including indigenous languages, sign languages, and hybrid languages spoken in urban centers. ","edges_from":[540],"edges_to":[],"id":5878,"label":"COMM 110P","title":"LLC: Language and Human Communication (4)"},{"dept":"SOCI","description":"The social structure of the People’s Republic of China since 1949, including a consideration of social organization at various levels: the economy, the policy, the community, and kinship institutions. ","edges_from":[5880,5879],"edges_to":[5879],"id":5879,"label":"SOCI 188G","title":"Chinese Society (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[5879],"id":5880,"label":"SOCD 188B","title":""},{"dept":"PSYC","description":"Introduction to teaching a psychology course. As an undergraduate instructional apprentice, students will attend the lectures of the course, hold weekly meetings with students of the course, hold weekly meetings with course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. P/NP grades only. May be taken for credit two times. Only four units can be applied toward the psychology minor or major as upper-division psychology elective credit. ","edges_from":[],"edges_to":[],"id":5881,"label":"PSYC 195","title":"Instruction in Psychology (4)"},{"dept":"SOCI","description":"In this course we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war. ","edges_from":[],"edges_to":[],"id":5882,"label":"SOCI 188I","title":"The Israeli-Palestinian Conflict (4)"},{"dept":"SOCI","description":"Using sociological and historical perspectives, this course examines the origins and demise of apartheid and assesses the progress that has been made since 1994, when apartheid was officially ended. Contrasts of racism in South Africa and the United States. ","edges_from":[5883,5884],"edges_to":[5883],"id":5883,"label":"SOCI 188J","title":"Change in Modern South Africa (4)"},{"dept":"SOCD","description":"","edges_from":[],"edges_to":[5883],"id":5884,"label":"SOCD 188J","title":""},{"dept":"SOCI","description":"Comparative and historical perspectives on","edges_from":[],"edges_to":[],"id":5885,"label":"SOCI 188K","title":"American Society (4)"},{"dept":"COGR","description":"Political economy is an older interdisciplinary approach explaining how the state, political environment, law, and economic system influence one another. The course engages classic texts, with attention to issues in the political economy of communication toward the end. ","edges_from":[],"edges_to":[],"id":5886,"label":"COGR 283","title":"Political Economy (4)"},{"dept":"SOCI","description":"Course examines theories of social movements and changing patterns of popular protest and contentious mobilization in Latin America since the mid-twentieth century. Case studies include populism, guerrillas, liberation theology and movements of workers, peasants, women, and indigenous groups. ","edges_from":[],"edges_to":[],"id":5887,"label":"SOCI 188M","title":"Social Movements in Latin America (4)"},{"dept":"COGR","description":"In this course we review how we might go about studying and thinking about the everyday life both as a concept and as a domain of study. The course will have a balance of both theoretical and empirical work. ","edges_from":[],"edges_to":[],"id":5888,"label":"COGR 281","title":"Understanding Everyday Life (4)"},{"dept":"SOCI","description":"We will examine the social, political, and religious factors that affect the nexus of Israeli settlements and Israeli-Arab and Israeli-Palestinian peace making. Special attention will be paid to the period after the 1967 War when these processes begun as well as to alternative resolutions to the conflict. ","edges_from":[],"edges_to":[],"id":5889,"label":"SOCI 188O","title":"Settlements and Peacemaking in Israel (4)"},{"dept":"MATH","description":"Optimality conditions, strong duality and the primal function,","edges_from":[],"edges_to":[],"id":5890,"label":"MATH 245B","title":"Convex Analysis and Optimization II (4)"},{"dept":"MATH","description":"Convex optimization problems, linear matrix inequalities,","edges_from":[],"edges_to":[],"id":5891,"label":"MATH 245C","title":"Convex Analysis and Optimization III (4)"},{"dept":"LTEN","description":"This course may be designed according to an individual student’s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.","edges_from":[],"edges_to":[],"id":5892,"label":"LTEN 297","title":"Directed Studies: Reading Course (1–12)"},{"dept":"HDP","description":"HDP 171 provides an introduction to the scholarship and practice in the field of cultural competency. Through relevant readings, associated assignments, and guest speakers from the community, students will acquire the knowledge and skills necessary for doing substantive research in diverse cultural contexts. ","edges_from":[],"edges_to":[],"id":5893,"label":"HDP 171","title":"Diverse Communities in a Life-span Approach to Human Development (4)"},{"dept":"SE","description":"Concrete (4)","edges_from":[],"edges_to":[],"id":5894,"label":"SE 151B","title":"Design of Prestressed"},{"dept":"LTEN","description":"Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.","edges_from":[],"edges_to":[],"id":5895,"label":"LTEN 299","title":"Dissertation (1–12)"},{"dept":"MATH","description":"Second course in an introductory two-quarter sequence on analysis. Topics include: differentiation, the Riemann integral, sequences and series of functions, uniform convergence, Taylor and Fourier series, special functions. (Students may not receive credit for both Math 140B and Math 142B.) ","edges_from":[384,1046],"edges_to":[],"id":5896,"label":"MATH 142B","title":"Introduction to Analysis II (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ","edges_from":[],"edges_to":[],"id":5897,"label":"Linguistics/Heritage Languages (LIHL) 115F","title":"Korean for Korean Speakers (4)"},{"dept":"MATH","description":"Methods in Physics and Engineering (4)","edges_from":[],"edges_to":[],"id":5898,"label":"MATH 210C","title":"Mathematical"},{"dept":"ECE","description":"Integrated photonic devices and components made using silicon, compound semiconductors, thin-film crystals, and dielectric materials. Design, analysis, and applications of components (e.g., waveguides, micro-resonators, couplers, modulators, lasers, and detectors) for use in communications, sensing, metrology, and other areas. ","edges_from":[5900],"edges_to":[5901],"id":5899,"label":"ECE 241B","title":"Integrated Photonics (4)"},{"dept":"ECE","description":"","edges_from":[],"edges_to":[5899],"id":5900,"label":"ECE 241A","title":""},{"dept":"ECE","description":"Fresnel, Fraunhofer, and Fourier holography. Analysis of thin and volume holograms, reflection and transmission holograms, color and polarization holograms. Optically recorded and computer-generated holography. Applications to information storage, optical interconnects, 2-D and 3-D display, pattern recognition, and image processing. (Recommended prerequisites: ECE 182 or equivalent.) ","edges_from":[5899],"edges_to":[],"id":5901,"label":"ECE 241C","title":"Holographic Optical Elements (4)"},{"dept":"BENG","description":"Biophysical phenomena, transducers, and electronics as related to the design of biomedical instrumentation. Potentiometric and amperometric signals and amplifiers. Biopotentials, membrane potentials, chemical sensors. Electrical safety. Mechanical transducers for displacement, force, and pressure. Temperature sensors. Flow sensors. Light-based instrumentation. ","edges_from":[258,821,922,1671],"edges_to":[],"id":5902,"label":"BENG 186B","title":"Principles of Bioinstrumentation Design (4)"},{"dept":"COGS","description":"This course covers recent advances in the understanding of neural mechanisms and computational principles underlying the brain’s ability to make decisions. The role of various factors, as well as their neural encoding, will be considered, e.g., observation noise, reward, risk, internal uncertainty, emotional state, external incentives. ","edges_from":[133,393,682,139,140,141,2670,369,4311,2271,2334,2335],"edges_to":[],"id":5903,"label":"COGS 180","title":"Decision Making in the Brain (4)"},{"dept":"Linguistics/Heritage","description":"For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ","edges_from":[],"edges_to":[],"id":5904,"label":"Linguistics/Heritage Languages (LIHL) 115P","title":"Korean for Korean Speakers (4)"},{"dept":"BENG","description":"Fundamentals of materials science as applied to bioengineering design. Natural and synthetic polymeric materials. Materials characterization and design. Wound repair, blood clotting, foreign body response, transplantation biology, biocompatibility of materials, tissue engineering. Artificial organs and medical devices. Government regulations. Patenting. Economic impact. Ethical issues. A term project and oral presentation are required. ","edges_from":[596,1942],"edges_to":[],"id":5905,"label":"BENG 186A","title":"Principles of Biomaterials Design (4)"},{"dept":"COMM","description":"Considers globalization’s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ","edges_from":[537,538,539,540],"edges_to":[],"id":5906,"label":"COMM 179","title":"Global Nature/Global Culture (4)"},{"dept":"COGS","description":"This course will provide an interactive and hands-on introduction to rhythms and large-scale electrical potentials of the brain. Topics will include the resonance properties of neurons, rhythmic interactions between neurons, the coordination of activity across large populations of neurons that is measurable in the local field potential (LFP) and electroencephalogram (EEG), the advantages of temporally coordinated neural activity, and relevant insights about the brain and cognitive disorders. ","edges_from":[1072,2271],"edges_to":[],"id":5907,"label":"COGS 170","title":"Brain Waves Across Scales (4)"},{"dept":"COGS","description":"This course will discuss signal processing, pattern recognition algorithms, and human-computer interaction issues in EEG-based brain-computer interfaces. Other types of brain-computer interfaces will also be discussed. ","edges_from":[2336,2337,2334,2335],"edges_to":[],"id":5908,"label":"COGS 189","title":"Brain Computer Interfaces (4)"},{"dept":"COGS","description":"This class will cover a broad spectrum of machine learning algorithms. It builds on students’ previous exposure to machine learning. It covers new artificial intelligence algorithms ranging from topic models as used in the text data analysis to genetic algorithms. ","edges_from":[2336,2337,2334],"edges_to":[],"id":5909,"label":"COGS 188","title":"AI Algorithm and Social Language (4)"},{"dept":"MGTA","description":"Many projects fail to produce valuable results, are over budget, or not finished on time. This course will teach students how to set and manage goals and expectations of the team and of the executive sponsors for business analytics projects. ","edges_from":[1328,1329,1327],"edges_to":[],"id":5910,"label":"MGTA 460","title":"Business Analytics Project Management (2)"},{"dept":"SE","description":"Spatial visualization is the ability to manipulate 2D and 3D shapes in one’s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ","edges_from":[],"edges_to":[],"id":5911,"label":"SE 7","title":"Spatial Visualization (1)"},{"dept":"PHYS","description":"Directed research on MS dissertation topic.","edges_from":[],"edges_to":[],"id":5912,"label":"PHYS 295","title":"MS Thesis Research in Materials Physics (1–12)"},{"dept":"ERC","description":"This is the first course of a two-course elective sequence (ERC 192A and ERC 192B) entitled ERC Global Service and Research. ERC 192A provides an academic introduction to the culture and history of the nation and region selected for this undergraduate academic, practicum, and research experience to prepare students for the subsequent service and research portion (ERC 192B). Note: The course is open to all students. Students must have completed course work in relevant topics, such as regional history, economics, culture. ","edges_from":[],"edges_to":[5914],"id":5913,"label":"ERC 192A","title":"Global Service Research Seminar (2)"},{"dept":"ERC","description":"ERC 192B begins with the service learning practicum component over spring break where students dedicate twenty hours to an on-site service project abroad. Returning to UC San Diego, students begin their research seminar pursuing the project they proposed in MMW 192A. The project culminates with a research paper and presentation. ","edges_from":[5913],"edges_to":[],"id":5914,"label":"ERC 192B","title":"Global Service Research Seminar (2)"},{"dept":"GPIM","description":"Traders in financial markets can have very different motivations. Some trade for personal reasons, perhaps to invest savings, to buy a house, to pay tuition for a child, or to provide recreational enjoyment. Some might possess value relevant private information about a security, or think they do. Some professional traders serve as counterparties for these other trader types. One of the central themes in this course is that institutions and experience matter, even when no trader possesses value relevant prior information. Students may not receive credit for GPIM 482 and IRGN 490, Governance, Public Administration, and Development.","edges_from":[],"edges_to":[],"id":5915,"label":"GPIM 482","title":"Market Microstructure (4)"},{"dept":"GPIM","description":"Game theory in economics is a very serious business. A game is defined by a complete set of rules that govern who plays the game, the decisions they confront, their state of knowledge at decision points, and the outcomes resulting from their decisions. It is a sometimes-maddening field in which intuitively obvious strategies can be inferior, credible threats have no credibility, and flipping a coin might be the best decision. This course offers a careful study of game theory basics with the intention of leading to a coherent set of insights into real-world strategic concerns. Students may not receive credit for GPIM 481 and IRGN 490, Game Theory and Strategy via Economics Experiments.","edges_from":[],"edges_to":[],"id":5916,"label":"GPIM 481","title":"Game Theory and Strategy via Economics Experiments (4)"},{"dept":"GPIM","description":"Markets that function well have five features: well defined and protected property rights; trust among market participants; adequate information flows; limited spillover effects from other market participants and stakeholders; and viable competition. These properties will be illustrated with economic experiments and through class discussion. Students may not receive credit for GPIM 480 and IRGN 480.","edges_from":[],"edges_to":[],"id":5917,"label":"GPIM 480","title":"Comparative Market Institutions (4)"},{"dept":"USP","description":"This course will explore the different factors and processes that shape a sustainable city. Contemporary green planning techniques and values will be evaluated. The course will also discuss planning, designing, and implementation of sustainable facilities that will reduce sprawl. ","edges_from":[],"edges_to":[],"id":5918,"label":"USP 170","title":"Sustainable Planning (4)"},{"dept":"MAE","description":"","edges_from":[],"edges_to":[1148],"id":5919,"label":"MAE 9","title":""},{"dept":"NEU","description":"The student will rotate through the general and subspecialty (stroke, epilepsy, headache, nerve, and muscle) neurology clinics based at UC San Diego Medical Center, Perlman, VAMC, and Children’s Hospital. There are lectures and clinical conferences. ","edges_from":[5509],"edges_to":[],"id":5920,"label":"NEU 427","title":"Neurology Outpatient (7)"},{"dept":"NEU","description":"Subinterns are responsible for the primary care of hospitalized pediatric neurology patients under direct resident and attending physician supervision. Students will perform procedures such as lumbar puncture and participate in night call, daily teaching round, neurology grand rounds, and journal clubs. ","edges_from":[5509],"edges_to":[],"id":5921,"label":"NEU 426","title":"Subintern Pediatric Neurology (7)"},{"dept":"PHIL","description":"A study of selected texts or topics from philosophers of the sixteenth and seventeenth centuries: Descartes, Spinoza, Leibniz, or Locke. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5922,"label":"PHIL 214","title":"Early Modern Philosophy (4)"},{"dept":"PSYC","description":"This seminar will cover","edges_from":[],"edges_to":[],"id":5923,"label":"PSYC 266","title":"Psychology of Reading (4)"},{"dept":"PHIL","description":"A study of the historical development of the analytical movement, with emphasis on major texts. May be taken for credit six times with changed content.","edges_from":[],"edges_to":[],"id":5924,"label":"PHIL 218","title":"Contemporary Analytical Philosophy (4)"},{"dept":"HIUS","description":"Examining the history of urban riots in the United States since the late nineteenth century. Exploring how different groups of Americans have constructed competing notions of race, gender, labor, and national belonging by participating in street violence.","edges_from":[],"edges_to":[],"id":5925,"label":"HIUS 146","title":"Race, Riots, and Violence in the U.S. (4)"},{"dept":"SE","description":"Behaviors of Polymers and Composites (4)","edges_from":[],"edges_to":[],"id":5926,"label":"SE 251B","title":"Mechanical"},{"dept":"SE","description":"Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment; material-processing-microstructure interaction; materials selection; form and quality control. Extrusion; injection molding; blow molding; compression molding; thermoforming; casting; foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. Cross-listed with MATS 261A. ","edges_from":[],"edges_to":[],"id":5927,"label":"SE 251A","title":"Processing of Polymers and Composites (4)"},{"dept":"ECE","description":"Integrated Circuits and Systems III (4)","edges_from":[],"edges_to":[],"id":5928,"label":"ECE 264C","title":"CMOS Analog"},{"dept":"SOCI","description":"This course provides students with tools to conduct original research using qualitative interviews. Students will learn how to prepare, conduct, and analyze qualitative interviews. Special emphasis will be placed on the presentation of research in written form. ","edges_from":[5929,5930],"edges_to":[5929],"id":5929,"label":"SOCI 104Q","title":"Qualitative Interviewing (4)"},{"dept":"SOCA","description":"","edges_from":[],"edges_to":[5929],"id":5930,"label":"SOCA 104Q","title":""},{"dept":"MUS","description":"Students will collaborate with faculty and guest artists in","edges_from":[],"edges_to":[],"id":5931,"label":"MUS 200","title":"Contemporary Chamber Opera Performance (4)"},{"dept":"CENG","description":"Principles of chemical reactor analysis and","edges_from":[],"edges_to":[],"id":5932,"label":"CENG 113","title":"Chemical Reaction Engineering (4)"},{"dept":"MUS","description":"Advanced performance of new music with members of the performance faculty (SONOR). Students taking this course do not need to take MUS 201 that quarter. Enrollment by consent of instructor/director of SONOR. ","edges_from":[],"edges_to":[],"id":5933,"label":"MUS 202","title":"Advanced Projects in Performance (1–4)"},{"dept":"MUS","description":"The purpose of this seminar is to bring in the entire population of the graduate composition program (all students and faculty) for in-depth discussion of critical issues in music theory and composition. Each meeting will feature a formal presentation by either a student, faculty member, or visitor, followed by lively and challenging debate on relevant issues. ","edges_from":[],"edges_to":[],"id":5934,"label":"MUS 204","title":"Focus on Composition (2)"},{"dept":"MUS","description":"Meets on a biweekly basis to facilitate presentations by advanced students and invited guests and to encourage in-depth discussion between students, faculty, and visitors about theoretical and artistic issues of interest. Participation is required of all enrolled IS students until advanced to candidacy. Others are welcome to participate. ","edges_from":[],"edges_to":[],"id":5935,"label":"MUS 205","title":"Focus on Integrative Studies (2)"},{"dept":"MUS","description":"Seminars growing out of current faculty interests. The approach tends to be speculative and includes individual projects or papers as well as assigned readings. In the past, such areas as new instrumental and vocal resources, mixed media, and compositional linguistics have been offered. ","edges_from":[],"edges_to":[],"id":5936,"label":"MUS 206","title":"Experimental Studies Seminar (4)"},{"dept":"MUS","description":"Seminars on subject areas relating to the established dimensions of music and in which theoreticians have produced a substantial body of work. These include studies in analysis, timbre, rhythm, notation, and psychoacoustics. Offerings vary depending on faculty availability and interest. Analytical paper required. ","edges_from":[],"edges_to":[],"id":5937,"label":"MUS 207","title":"Theoretical Studies Seminar (4)"},{"dept":"MUS","description":"Advanced integrated studies in music theory; composition and styles study through analysis and performance. This course is intended primarily for doctoral students and may be taken by MA students only with special approval of MA adviser and course instructor. A major research or analytical publishable paper required. ","edges_from":[],"edges_to":[],"id":5938,"label":"MUS 209","title":"Advanced Music Theory and Practice (4)"},{"dept":"HIUS","description":"An examination of urban and regional planning as well as piecemeal change in the built environment. Topics include urban and suburban housing, work environments, public spaces, transportation and utility infrastructures, utopianism.","edges_from":[],"edges_to":[],"id":5939,"label":"HIUS 143","title":"The Built Environment in the Twentieth Century (4)"},{"dept":"HIUS","description":"This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.","edges_from":[],"edges_to":[],"id":5940,"label":"HIUS 277","title":"Asian American Historiography (4)"},{"dept":"POLI","description":"Selected topics to introduce students to current issues and trends in political science. May not be used to fulfill any major or minor requirements in political science. P/NP grades only. May be taken for credit four times.","edges_from":[],"edges_to":[],"id":5941,"label":"POLI 90","title":"Undergraduate Seminar (4)"},{"dept":"FMPH","description":"Biostatistics elective courses will be taught under this course heading. Courses will have a varying focus each year/quarter. Topics will include random field theory and image analysis, advanced statistical computing, Bayesian methods, and others. May be taken for credit up to three times. ","edges_from":[2533,2534],"edges_to":[],"id":5942,"label":"FMPH 242","title":"Advanced Topics in Biostatistics (4)"},{"dept":"LATI","description":"Serving as team leaders, students design and execute analysis of data they have collected in Mexican and US field research sites, and coauthor a publishable article. Methods for organizing field data, advanced techniques of quantitative and qualitative data analysis, and report preparation conventions are covered. ","edges_from":[977],"edges_to":[],"id":5943,"label":"LATI 222C","title":"Field Research Methods for Migration Studies: Data Analysis (4)"},{"dept":"NANO","description":"Physics and chemistry of heterogeneous catalysis; adsorption-desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with CENG 253. Students may not receive credit for both NANO 259 and CENG 253. ","edges_from":[],"edges_to":[],"id":5944,"label":"NANO 259","title":"Heterogeneous Catalysis (4)"},{"dept":"BENG","description":"The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. (F,W,S)","edges_from":[],"edges_to":[],"id":5945,"label":"BENG 87","title":"Freshman Seminar (1)"},{"dept":"BIMM","description":"(Cross-listed with Psych 133; however, biology majors must take the course as BIMM 116.) This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. ","edges_from":[369,954,370],"edges_to":[],"id":5946,"label":"BIMM 116","title":"Circadian Rhythms—Biological Clocks (4)"},{"dept":"Jewish","description":"Directed group study on a topic not generally included in the regular curriculum. Student must make arrangements with individual faculty members. (P/NP only)","edges_from":[],"edges_to":[],"id":5947,"label":"Jewish Studies 198","title":"Directed Group Study in Jewish Studies (1-4)"},{"dept":"MATH","description":"(Cross-listed with EDS 30.) Revisit students’ learning","edges_from":[],"edges_to":[],"id":5948,"label":"MATH 95","title":"Introduction to Teaching Math (2)"},{"dept":"ANTH","description":"Graduate students will visit key sites representing the three major approaches to studying human origins: fossils evidence, comparison with nonhumans, and study of human foragers. Visits will be combined with lectures, discussion, and brief training in conducting relevant field research. ","edges_from":[],"edges_to":[],"id":5949,"label":"ANTH 289S","title":"Tanzania Anthropogeny Study Tour (1–4)"},{"dept":"BIMM","description":"Course considers problems in biology that were solved using quantitative biology approaches. Problems will range from the molecular to the population level. Students will learn about the scientific method and process, and how to apply it. ","edges_from":[954],"edges_to":[],"id":5950,"label":"BIMM 140","title":"Quantitative Principles in Biology (4)"},{"dept":"BIMM","description":"Bioinformatics is the analysis of big data in the biosciences. This course provides a hands-on introduction to the computer-based analysis of biomolecular and genomic data. Major topic areas include advances in sequencing technologies, genome resequencing and variation analysis, transcriptomics, structural bioinformatics, and personal genomics. This course will utilize free, web-based bioinformatics tools and no programming skills are required. ","edges_from":[3944,954,956,957],"edges_to":[],"id":5951,"label":"BIMM 143","title":"Bioinformatics Laboratory (4)"},{"dept":"BIMM","description":"Course will provide students with the computational tools and problem-solving skills that are increasingly important to the biosciences. Students learn to program in a modern general-purpose programming language and write their own programs to explore a variety of applications in biology including simulations, sequence analysis, phylogenetics, among others. Students will use their own laptop computers. ","edges_from":[954,1013],"edges_to":[],"id":5952,"label":"BIMM 149","title":"Computation for Biologists (4)"},{"dept":"INTL","description":"Open only to seniors who have completed INTL 190H. Completion of an honors thesis under the supervision of a member of the International Studies faculty. ","edges_from":[1464],"edges_to":[],"id":5953,"label":"INTL 196H","title":"International Studies Honors Program (4)"},{"dept":"TWS","description":"Third World Literatures (4-4-4-4-4-4)","edges_from":[],"edges_to":[],"id":5954,"label":"TWS 21-22-23-24-25-26","title":""},{"dept":"MATH","description":"Complex numbers and functions. Cauchy theorem and its applications, calculus of residues, expansions of analytic functions, analytic continuation, conformal mapping and Riemann mapping theorem, harmonic functions. Dirichlet principle, Riemann surfaces. ","edges_from":[384,386],"edges_to":[],"id":5955,"label":"MATH 220A-B-C","title":"Complex Analysis (4-4-4)"},{"dept":"ECE","description":"A course to be given at the discretion of the faculty at which general topics of interest in electrical and computer engineering will be presented by visiting or resident faculty members. May be taken for credit six times provided each course is a different topic. ","edges_from":[],"edges_to":[],"id":5956,"label":"ECE 289","title":"Special Topics in Electrical and Computer Engineering (4)"},{"dept":"ECE","description":"A course to be given at the discretion of the faculty at which topics of interest in computer engineering will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ","edges_from":[],"edges_to":[],"id":5957,"label":"ECE 284","title":"Special Topics in Computer Engineering (4)"},{"dept":"ECE","description":"A course to be given at the discretion of the faculty at which topics of interest in signal and image processing or robotics and control systems will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ","edges_from":[],"edges_to":[],"id":5958,"label":"ECE 285","title":"Special Topics in Signal and Image Processing/Robotics and Control Systems (4)"},{"dept":"ECE","description":"Class discusses both fundamental and state-of-the-art research topics in computational statistics and machine learning. Topics vary based upon current research and have included: nonparametric Bayesian models; sampling methods for inference in graphical models; Markov Chain Monte Carlo (MCMC) methods. ","edges_from":[],"edges_to":[],"id":5959,"label":"ECE 286","title":"State-of-the-Art Topics in Computational Statistics and Machine Learning (4)"},{"dept":"ECE","description":"in Communication Theory and Systems (4)","edges_from":[],"edges_to":[],"id":5960,"label":"ECE 287","title":"Special Topics"},{"dept":"ECE","description":"in Electronic Devices and Materials/Applied Physics (4)","edges_from":[],"edges_to":[],"id":5961,"label":"ECE 280","title":"Special Topics"},{"dept":"ECE","description":"A course to be given at the discretion of the faculty at which topics of interest in nanoscience and nanotechnology will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ","edges_from":[],"edges_to":[],"id":5962,"label":"ECE 281","title":"Special Topics in Nanoscience/Nanotechnology (4)"},{"dept":"ECE","description":"A course to be given at the discretion of the faculty at which topics of interest in photonics, optoelectronic materials, devices, systems, and applications will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ","edges_from":[],"edges_to":[],"id":5963,"label":"ECE 282","title":"Special Topics in Photonics/Applied Optics (4)"},{"dept":"ECE","description":"in Electronic Circuits and Systems (4)","edges_from":[],"edges_to":[],"id":5964,"label":"ECE 283","title":"Special Topics"},{"dept":"Linguistics/German","description":"Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1B. ","edges_from":[4874,4875],"edges_to":[],"id":5965,"label":"Linguistics/German (LIGM) 1BX","title":"Analysis of German (2.5)"},{"dept":"MAE","description":"","edges_from":[135,136,139,140,141,2546,923],"edges_to":[2819],"id":5966,"label":"MAE 143A","title":""},{"dept":"HILD","description":"A year-long lower-division course that will provide students with a background in United States history from colonial times to the present, concentrating on social, economic, and political developments. (Satisfies Muir College humanities requirement and American History and Institutions requirement.)","edges_from":[],"edges_to":[],"id":5967,"label":"HILD 2A-B-C","title":"United States (4-4-4)"},{"dept":"TDGR","description":"This course, designed to meet the needs of","edges_from":[],"edges_to":[],"id":5968,"label":"TDGR 500","title":"Introduction to Apprentice Teaching (4)"},{"dept":"ANSC","description":"Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we’ll study the role of socioeconomic and political change in determining health outcomes and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. ","edges_from":[],"edges_to":[],"id":5969,"label":"ANSC 105","title":"Global Health and Inequality (4)"},{"dept":"LTCS","description":"This course examines the cultural practices of revolutionary societies from the French Revolution to present time. It focuses on China, Cuba, Russia, and Iran and explores how various cultural practices are produced in the course of building revolutionary societies.","edges_from":[],"edges_to":[],"id":5970,"label":"LTCS 134","title":"Culture and Revolution (4)"},{"dept":"LTCS","description":"Topics in Social Identities and the Media (4)","edges_from":[],"edges_to":[],"id":5971,"label":"LTCS 132","title":"Special"},{"dept":"LTCS","description":"Studies of cultural dimensions of immigration and citizenship. This course examines the diverse cultural texts—literature, law, film, music, the televisual images, etc., that both shape and are shaped by immigration and the idea of citizenship in different national and historical contexts.","edges_from":[],"edges_to":[],"id":5972,"label":"LTCS 133","title":"Globalization and Culture (4)"},{"dept":"LTIT","description":"Tutorial; individual guided reading in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5973,"label":"LTIT 199","title":"Special Studies (2 or 4)"},{"dept":"LTIT","description":"Directed group study in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ","edges_from":[],"edges_to":[],"id":5974,"label":"LTIT 198","title":"Directed Group Study (4)"},{"dept":"NANO","description":"Fundamentals of photovoltaic energy conversion; limiting efficiencies, loss mechanisms. Nanoscale effects in semiconductor, thin film, and organic photovoltaics. Emphasis on emerging nanotechnologies including nanowires, heterostructures, hybrid materials, quantum dots, transparent conducting materials, and plasmonics.","edges_from":[],"edges_to":[],"id":5975,"label":"NANO 269","title":"Engineering Solar Cells at the Nanoscale (4)"},{"dept":"NANO","description":"The structure and operational principles of different nature biomotors will be discussed. Related bio-inspired efforts aimed at developing artificial nanomotors will also be covered, along with the prospects of using biomotors and synthetic nanomotors in engineering environments. ","edges_from":[],"edges_to":[],"id":5976,"label":"NANO 244","title":"Nanomachines and Nanorobots (4)"},{"dept":"LTIT","description":"The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ","edges_from":[],"edges_to":[],"id":5977,"label":"LTIT 192","title":"Senior Seminar in Literatures in Italian (1)"},{"dept":"MUS","description":"Aggrieved groups generate distinctive cultural expressions by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States. (Cross-listed with ETHN 108.) ","edges_from":[],"edges_to":[],"id":5978,"label":"MUS 151","title":"Race, Culture, and Social Change (4)"},{"dept":"CHEM","description":"This seminar connects first-year students with the chemistry community (peers, staff, faculty, and other researchers) as they explore learning resources, study strategies, professional development, and current areas of active research. With an emphasis on academic and career planning, the series will feature guest lectures by UC San Diego faculty and staff, as well as industrial scientists and representatives from professional organizations such as the American Chemical Society (ACS). P/NP grades only.","edges_from":[],"edges_to":[],"id":5979,"label":"CHEM 1","title":"The Scope of Chemistry and Biochemistry (1)"},{"dept":"GPIM","description":"An analysis of the risk/return characteristics of different assets as perceived by different investors and their implications for security price behavior, emphasizing real world capital market behavior. International aspects include the role of exchange rate risk and international diversification. Renumbered from IRGN 422. Students may not receive credit for GPIM 422 and IRGN 422.","edges_from":[],"edges_to":[],"id":5980,"label":"GPIM 422","title":"Investments (4)"},{"dept":"VIS","description":"A critical, art historical look at the world’s","edges_from":[],"edges_to":[],"id":5981,"label":"VIS 122F","title":"Leonardo’s La Gioconda (4)"},{"dept":"TDHT","description":"This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip-hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for both TDHT 120 and ETHN 163G. ","edges_from":[],"edges_to":[],"id":5982,"label":"TDHT 120","title":"Indigenous Theatre and Performance (4)"},{"dept":"AWP","description":"AWP 1 provides underprepared writers the opportunity to develop their critical thinking and writing abilities. At the end of AWP 1, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 1. Students may take AWP 1 and ELWR 1 a combined total of three times to earn a passing grade of C or better to satisfy the UC Entry Level Writing Requirement.","edges_from":[],"edges_to":[],"id":5983,"label":"AWP 1","title":"Analytical Writing (4)"},{"dept":"MATH","description":"Independent study or research under direction of a member of the faculty. ","edges_from":[],"edges_to":[],"id":5984,"label":"MATH 99R","title":"Independent Study (1)"},{"dept":"CENG","description":"Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with NANO 114. Students may not receive credit for both CENG 114 and NANO 114. ","edges_from":[219,139,221,126],"edges_to":[],"id":5985,"label":"CENG 114","title":"Probability and Statistical Methods for Engineers (4)"},{"dept":"VIS","description":"This course will explore photography as art and its long and complicated relationship with painting. Students will learn and be encouraged to experiment with the medium formally and conceptually. From studio and lighting techniques to collage, montage, constructed realities, installations, and projections. Program or materials fees may apply. Two production-course limitation. ","edges_from":[568,567],"edges_to":[],"id":5986,"label":"VIS 168","title":"Pictorialism and Constructed Reality (4)"},{"dept":"FMPH","description":"Practicum participants will interpret and contextualize findings from the experiential learning program planned in 180A and completed during 180B. Oral and written presentations will focus on disseminating public health information in diverse formats. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180C. Students may not receive credit for FPMU 180C and FMPH 180C. ","edges_from":[5988],"edges_to":[],"id":5987,"label":"FMPH 180C","title":"Public Health Advanced Practicum III (4)"},{"dept":"FMPH","description":"","edges_from":[],"edges_to":[5987],"id":5988,"label":"FMPH 180B","title":""},{"dept":"FMPH","description":"Emphasizes key public health concepts including program planning, research design, and written/oral communication skills. Practicum done in combination with research, internship, or overseas experiences, completed after FMPH 180A. Open to public health majors with upper-division standing.Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180A. Students may not receive credit for FPMU 180A and FMPH 180A. ","edges_from":[1024,1026,1027,1028,1029],"edges_to":[],"id":5989,"label":"FMPH 180A","title":"Public Health Advanced Practicum I (4)"},{"dept":"BENG","description":"Development of design project in cardiac bioengineering. ","edges_from":[66],"edges_to":[5758],"id":5990,"label":"BENG 148A","title":"Design Development in Cardiac Bioengineering (3)"},{"dept":"ECE","description":"Integrated Circuits and Systems II (4)","edges_from":[],"edges_to":[],"id":5991,"label":"ECE 264B","title":"CMOS Analog"},{"dept":"NANO","description":"The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. Cross-listed with MATS 201A, MAE 271A and ECE 238A. ","edges_from":[],"edges_to":[],"id":5992,"label":"NANO 265","title":"Thermodynamics of Solids (4)"},{"dept":"HIEA","description":"Through primary and secondary readings on the lives of individual prominent and ordinary men and women from China’s past, we explore the relation of the individual to social structures and accepted norms; personal relationships; and the creation of historical sources. +","edges_from":[],"edges_to":[],"id":5993,"label":"HIEA 129","title":"Faces of the Chinese Past (4)"}]} \ No newline at end of file diff --git a/data/ucsd_graph_data2.json b/data/ucsd_graph_data2.json new file mode 100644 index 0000000..e065056 --- /dev/null +++ b/data/ucsd_graph_data2.json @@ -0,0 +1,79413 @@ +{ + "edges": [ + { + "from": 1, + "to": 0 + }, + { + "from": 2, + "to": 0 + }, + { + "from": 3, + "to": 0 + }, + { + "from": 4, + "to": 0 + }, + { + "from": 5, + "to": 0 + }, + { + "from": 6, + "to": 0 + }, + { + "from": 7, + "to": 0 + }, + { + "from": 8, + "to": 0 + }, + { + "from": 9, + "to": 0 + }, + { + "from": 0, + "to": 10 + }, + { + "from": 11, + "to": 10 + }, + { + "from": 12, + "to": 10 + }, + { + "from": 13, + "to": 10 + }, + { + "from": 14, + "to": 10 + }, + { + "from": 15, + "to": 10 + }, + { + "from": 2, + "to": 10 + }, + { + "from": 16, + "to": 11 + }, + { + "from": 17, + "to": 11 + }, + { + "from": 26, + "to": 25 + }, + { + "from": 27, + "to": 25 + }, + { + "from": 28, + "to": 25 + }, + { + "from": 29, + "to": 25 + }, + { + "from": 30, + "to": 25 + }, + { + "from": 31, + "to": 25 + }, + { + "from": 32, + "to": 25 + }, + { + "from": 33, + "to": 25 + }, + { + "from": 34, + "to": 25 + }, + { + "from": 35, + "to": 25 + }, + { + "from": 36, + "to": 25 + }, + { + "from": 37, + "to": 25 + }, + { + "from": 38, + "to": 25 + }, + { + "from": 26, + "to": 29 + }, + { + "from": 27, + "to": 29 + }, + { + "from": 28, + "to": 29 + }, + { + "from": 30, + "to": 29 + }, + { + "from": 33, + "to": 29 + }, + { + "from": 34, + "to": 29 + }, + { + "from": 35, + "to": 29 + }, + { + "from": 37, + "to": 29 + }, + { + "from": 38, + "to": 29 + }, + { + "from": 26, + "to": 36 + }, + { + "from": 27, + "to": 36 + }, + { + "from": 28, + "to": 36 + }, + { + "from": 30, + "to": 36 + }, + { + "from": 33, + "to": 36 + }, + { + "from": 34, + "to": 36 + }, + { + "from": 35, + "to": 36 + }, + { + "from": 37, + "to": 36 + }, + { + "from": 38, + "to": 36 + }, + { + "from": 26, + "to": 31 + }, + { + "from": 27, + "to": 31 + }, + { + "from": 28, + "to": 31 + }, + { + "from": 30, + "to": 31 + }, + { + "from": 33, + "to": 31 + }, + { + "from": 34, + "to": 31 + }, + { + "from": 35, + "to": 31 + }, + { + "from": 37, + "to": 31 + }, + { + "from": 38, + "to": 31 + }, + { + "from": 26, + "to": 32 + }, + { + "from": 27, + "to": 32 + }, + { + "from": 28, + "to": 32 + }, + { + "from": 30, + "to": 32 + }, + { + "from": 33, + "to": 32 + }, + { + "from": 34, + "to": 32 + }, + { + "from": 35, + "to": 32 + }, + { + "from": 37, + "to": 32 + }, + { + "from": 38, + "to": 32 + }, + { + "from": 40, + "to": 39 + }, + { + "from": 41, + "to": 39 + }, + { + "from": 41, + "to": 40 + }, + { + "from": 43, + "to": 42 + }, + { + "from": 44, + "to": 42 + }, + { + "from": 45, + "to": 42 + }, + { + "from": 43, + "to": 46 + }, + { + "from": 44, + "to": 46 + }, + { + "from": 45, + "to": 46 + }, + { + "from": 43, + "to": 48 + }, + { + "from": 44, + "to": 48 + }, + { + "from": 45, + "to": 48 + }, + { + "from": 55, + "to": 54 + }, + { + "from": 54, + "to": 56 + }, + { + "from": 57, + "to": 56 + }, + { + "from": 60, + "to": 60 + }, + { + "from": 61, + "to": 60 + }, + { + "from": 62, + "to": 62 + }, + { + "from": 63, + "to": 62 + }, + { + "from": 64, + "to": 64 + }, + { + "from": 65, + "to": 64 + }, + { + "from": 66, + "to": 66 + }, + { + "from": 67, + "to": 66 + }, + { + "from": 69, + "to": 68 + }, + { + "from": 68, + "to": 68 + }, + { + "from": 72, + "to": 71 + }, + { + "from": 71, + "to": 71 + }, + { + "from": 74, + "to": 74 + }, + { + "from": 75, + "to": 74 + }, + { + "from": 81, + "to": 80 + }, + { + "from": 88, + "to": 87 + }, + { + "from": 89, + "to": 87 + }, + { + "from": 91, + "to": 90 + }, + { + "from": 92, + "to": 90 + }, + { + "from": 93, + "to": 90 + }, + { + "from": 94, + "to": 90 + }, + { + "from": 95, + "to": 90 + }, + { + "from": 58, + "to": 90 + }, + { + "from": 59, + "to": 90 + }, + { + "from": 96, + "to": 90 + }, + { + "from": 98, + "to": 97 + }, + { + "from": 99, + "to": 97 + }, + { + "from": 98, + "to": 100 + }, + { + "from": 99, + "to": 100 + }, + { + "from": 106, + "to": 105 + }, + { + "from": 108, + "to": 107 + }, + { + "from": 111, + "to": 110 + }, + { + "from": 123, + "to": 122 + }, + { + "from": 121, + "to": 123 + }, + { + "from": 128, + "to": 127 + }, + { + "from": 128, + "to": 129 + }, + { + "from": 131, + "to": 130 + }, + { + "from": 132, + "to": 130 + }, + { + "from": 133, + "to": 130 + }, + { + "from": 134, + "to": 130 + }, + { + "from": 28, + "to": 130 + }, + { + "from": 135, + "to": 130 + }, + { + "from": 142, + "to": 141 + }, + { + "from": 144, + "to": 143 + }, + { + "from": 145, + "to": 143 + }, + { + "from": 146, + "to": 143 + }, + { + "from": 147, + "to": 143 + }, + { + "from": 148, + "to": 143 + }, + { + "from": 149, + "to": 143 + }, + { + "from": 150, + "to": 143 + }, + { + "from": 151, + "to": 143 + }, + { + "from": 152, + "to": 143 + }, + { + "from": 153, + "to": 143 + }, + { + "from": 154, + "to": 143 + }, + { + "from": 155, + "to": 143 + }, + { + "from": 44, + "to": 143 + }, + { + "from": 45, + "to": 143 + }, + { + "from": 144, + "to": 156 + }, + { + "from": 145, + "to": 156 + }, + { + "from": 146, + "to": 156 + }, + { + "from": 147, + "to": 156 + }, + { + "from": 148, + "to": 156 + }, + { + "from": 149, + "to": 156 + }, + { + "from": 150, + "to": 156 + }, + { + "from": 151, + "to": 156 + }, + { + "from": 152, + "to": 156 + }, + { + "from": 153, + "to": 156 + }, + { + "from": 154, + "to": 156 + }, + { + "from": 155, + "to": 156 + }, + { + "from": 44, + "to": 156 + }, + { + "from": 45, + "to": 156 + }, + { + "from": 144, + "to": 157 + }, + { + "from": 145, + "to": 157 + }, + { + "from": 146, + "to": 157 + }, + { + "from": 147, + "to": 157 + }, + { + "from": 148, + "to": 157 + }, + { + "from": 149, + "to": 157 + }, + { + "from": 150, + "to": 157 + }, + { + "from": 151, + "to": 157 + }, + { + "from": 152, + "to": 157 + }, + { + "from": 153, + "to": 157 + }, + { + "from": 154, + "to": 157 + }, + { + "from": 155, + "to": 157 + }, + { + "from": 44, + "to": 157 + }, + { + "from": 45, + "to": 157 + }, + { + "from": 166, + "to": 165 + }, + { + "from": 168, + "to": 167 + }, + { + "from": 169, + "to": 167 + }, + { + "from": 170, + "to": 167 + }, + { + "from": 171, + "to": 167 + }, + { + "from": 168, + "to": 172 + }, + { + "from": 170, + "to": 172 + }, + { + "from": 178, + "to": 177 + }, + { + "from": 179, + "to": 177 + }, + { + "from": 180, + "to": 177 + }, + { + "from": 178, + "to": 181 + }, + { + "from": 179, + "to": 181 + }, + { + "from": 180, + "to": 181 + }, + { + "from": 179, + "to": 182 + }, + { + "from": 183, + "to": 182 + }, + { + "from": 183, + "to": 184 + }, + { + "from": 178, + "to": 187 + }, + { + "from": 179, + "to": 187 + }, + { + "from": 180, + "to": 187 + }, + { + "from": 190, + "to": 189 + }, + { + "from": 193, + "to": 192 + }, + { + "from": 194, + "to": 192 + }, + { + "from": 198, + "to": 197 + }, + { + "from": 199, + "to": 197 + }, + { + "from": 200, + "to": 197 + }, + { + "from": 198, + "to": 201 + }, + { + "from": 199, + "to": 201 + }, + { + "from": 200, + "to": 201 + }, + { + "from": 198, + "to": 202 + }, + { + "from": 199, + "to": 202 + }, + { + "from": 200, + "to": 202 + }, + { + "from": 214, + "to": 213 + }, + { + "from": 215, + "to": 213 + }, + { + "from": 216, + "to": 213 + }, + { + "from": 223, + "to": 224 + }, + { + "from": 7, + "to": 226 + }, + { + "from": 227, + "to": 226 + }, + { + "from": 226, + "to": 228 + }, + { + "from": 228, + "to": 229 + }, + { + "from": 240, + "to": 239 + }, + { + "from": 241, + "to": 239 + }, + { + "from": 242, + "to": 239 + }, + { + "from": 241, + "to": 244 + }, + { + "from": 265, + "to": 264 + }, + { + "from": 264, + "to": 264 + }, + { + "from": 270, + "to": 269 + }, + { + "from": 291, + "to": 290 + }, + { + "from": 292, + "to": 290 + }, + { + "from": 293, + "to": 290 + }, + { + "from": 294, + "to": 290 + }, + { + "from": 291, + "to": 296 + }, + { + "from": 292, + "to": 296 + }, + { + "from": 293, + "to": 296 + }, + { + "from": 294, + "to": 296 + }, + { + "from": 291, + "to": 297 + }, + { + "from": 292, + "to": 297 + }, + { + "from": 293, + "to": 297 + }, + { + "from": 294, + "to": 297 + }, + { + "from": 291, + "to": 298 + }, + { + "from": 292, + "to": 298 + }, + { + "from": 293, + "to": 298 + }, + { + "from": 294, + "to": 298 + }, + { + "from": 153, + "to": 299 + }, + { + "from": 152, + "to": 299 + }, + { + "from": 291, + "to": 300 + }, + { + "from": 292, + "to": 300 + }, + { + "from": 293, + "to": 300 + }, + { + "from": 294, + "to": 300 + }, + { + "from": 302, + "to": 301 + }, + { + "from": 57, + "to": 301 + }, + { + "from": 55, + "to": 302 + }, + { + "from": 304, + "to": 304 + }, + { + "from": 305, + "to": 304 + }, + { + "from": 307, + "to": 307 + }, + { + "from": 308, + "to": 307 + }, + { + "from": 311, + "to": 310 + }, + { + "from": 310, + "to": 310 + }, + { + "from": 313, + "to": 312 + }, + { + "from": 312, + "to": 312 + }, + { + "from": 315, + "to": 314 + }, + { + "from": 314, + "to": 314 + }, + { + "from": 321, + "to": 320 + }, + { + "from": 322, + "to": 320 + }, + { + "from": 323, + "to": 321 + }, + { + "from": 324, + "to": 321 + }, + { + "from": 325, + "to": 321 + }, + { + "from": 321, + "to": 327 + }, + { + "from": 322, + "to": 327 + }, + { + "from": 143, + "to": 334 + }, + { + "from": 156, + "to": 334 + }, + { + "from": 157, + "to": 334 + }, + { + "from": 156, + "to": 335 + }, + { + "from": 143, + "to": 338 + }, + { + "from": 156, + "to": 338 + }, + { + "from": 157, + "to": 338 + }, + { + "from": 156, + "to": 339 + }, + { + "from": 334, + "to": 340 + }, + { + "from": 341, + "to": 340 + }, + { + "from": 342, + "to": 340 + }, + { + "from": 346, + "to": 345 + }, + { + "from": 350, + "to": 349 + }, + { + "from": 354, + "to": 353 + }, + { + "from": 106, + "to": 357 + }, + { + "from": 108, + "to": 357 + }, + { + "from": 379, + "to": 378 + }, + { + "from": 380, + "to": 378 + }, + { + "from": 381, + "to": 378 + }, + { + "from": 382, + "to": 378 + }, + { + "from": 383, + "to": 378 + }, + { + "from": 393, + "to": 392 + }, + { + "from": 399, + "to": 398 + }, + { + "from": 7, + "to": 398 + }, + { + "from": 3, + "to": 398 + }, + { + "from": 227, + "to": 398 + }, + { + "from": 400, + "to": 398 + }, + { + "from": 402, + "to": 401 + }, + { + "from": 403, + "to": 401 + }, + { + "from": 405, + "to": 404 + }, + { + "from": 402, + "to": 404 + }, + { + "from": 406, + "to": 404 + }, + { + "from": 407, + "to": 404 + }, + { + "from": 132, + "to": 404 + }, + { + "from": 399, + "to": 409 + }, + { + "from": 410, + "to": 403 + }, + { + "from": 402, + "to": 403 + }, + { + "from": 411, + "to": 403 + }, + { + "from": 406, + "to": 403 + }, + { + "from": 132, + "to": 403 + }, + { + "from": 413, + "to": 412 + }, + { + "from": 414, + "to": 412 + }, + { + "from": 403, + "to": 412 + }, + { + "from": 402, + "to": 415 + }, + { + "from": 403, + "to": 415 + }, + { + "from": 419, + "to": 418 + }, + { + "from": 420, + "to": 418 + }, + { + "from": 432, + "to": 431 + }, + { + "from": 436, + "to": 435 + }, + { + "from": 432, + "to": 437 + }, + { + "from": 438, + "to": 437 + }, + { + "from": 445, + "to": 444 + }, + { + "from": 446, + "to": 444 + }, + { + "from": 454, + "to": 454 + }, + { + "from": 456, + "to": 455 + }, + { + "from": 457, + "to": 455 + }, + { + "from": 458, + "to": 455 + }, + { + "from": 456, + "to": 462 + }, + { + "from": 457, + "to": 462 + }, + { + "from": 458, + "to": 462 + }, + { + "from": 468, + "to": 467 + }, + { + "from": 467, + "to": 469 + }, + { + "from": 472, + "to": 471 + }, + { + "from": 230, + "to": 487 + }, + { + "from": 497, + "to": 496 + }, + { + "from": 498, + "to": 500 + }, + { + "from": 501, + "to": 500 + }, + { + "from": 506, + "to": 505 + }, + { + "from": 154, + "to": 154 + }, + { + "from": 518, + "to": 154 + }, + { + "from": 154, + "to": 155 + }, + { + "from": 155, + "to": 155 + }, + { + "from": 518, + "to": 155 + }, + { + "from": 519, + "to": 155 + }, + { + "from": 531, + "to": 530 + }, + { + "from": 530, + "to": 532 + }, + { + "from": 534, + "to": 533 + }, + { + "from": 535, + "to": 533 + }, + { + "from": 157, + "to": 541 + }, + { + "from": 143, + "to": 341 + }, + { + "from": 143, + "to": 542 + }, + { + "from": 157, + "to": 342 + }, + { + "from": 157, + "to": 543 + }, + { + "from": 198, + "to": 543 + }, + { + "from": 199, + "to": 543 + }, + { + "from": 200, + "to": 543 + }, + { + "from": 552, + "to": 551 + }, + { + "from": 553, + "to": 551 + }, + { + "from": 554, + "to": 551 + }, + { + "from": 555, + "to": 551 + }, + { + "from": 556, + "to": 551 + }, + { + "from": 557, + "to": 551 + }, + { + "from": 563, + "to": 562 + }, + { + "from": 564, + "to": 562 + }, + { + "from": 445, + "to": 565 + }, + { + "from": 566, + "to": 565 + }, + { + "from": 445, + "to": 567 + }, + { + "from": 568, + "to": 567 + }, + { + "from": 445, + "to": 569 + }, + { + "from": 571, + "to": 552 + }, + { + "from": 572, + "to": 552 + }, + { + "from": 573, + "to": 552 + }, + { + "from": 169, + "to": 552 + }, + { + "from": 27, + "to": 552 + }, + { + "from": 227, + "to": 552 + }, + { + "from": 575, + "to": 574 + }, + { + "from": 105, + "to": 576 + }, + { + "from": 107, + "to": 576 + }, + { + "from": 109, + "to": 576 + }, + { + "from": 110, + "to": 576 + }, + { + "from": 111, + "to": 576 + }, + { + "from": 112, + "to": 576 + }, + { + "from": 106, + "to": 576 + }, + { + "from": 108, + "to": 576 + }, + { + "from": 116, + "to": 576 + }, + { + "from": 580, + "to": 579 + }, + { + "from": 584, + "to": 583 + }, + { + "from": 588, + "to": 587 + }, + { + "from": 589, + "to": 587 + }, + { + "from": 240, + "to": 587 + }, + { + "from": 591, + "to": 590 + }, + { + "from": 592, + "to": 591 + }, + { + "from": 594, + "to": 593 + }, + { + "from": 595, + "to": 593 + }, + { + "from": 596, + "to": 593 + }, + { + "from": 597, + "to": 593 + }, + { + "from": 598, + "to": 593 + }, + { + "from": 599, + "to": 593 + }, + { + "from": 346, + "to": 593 + }, + { + "from": 241, + "to": 600 + }, + { + "from": 241, + "to": 601 + }, + { + "from": 240, + "to": 602 + }, + { + "from": 241, + "to": 602 + }, + { + "from": 589, + "to": 602 + }, + { + "from": 242, + "to": 602 + }, + { + "from": 604, + "to": 603 + }, + { + "from": 613, + "to": 612 + }, + { + "from": 614, + "to": 612 + }, + { + "from": 613, + "to": 616 + }, + { + "from": 614, + "to": 616 + }, + { + "from": 410, + "to": 646 + }, + { + "from": 411, + "to": 646 + }, + { + "from": 410, + "to": 647 + }, + { + "from": 411, + "to": 647 + }, + { + "from": 413, + "to": 648 + }, + { + "from": 410, + "to": 649 + }, + { + "from": 411, + "to": 649 + }, + { + "from": 410, + "to": 650 + }, + { + "from": 411, + "to": 650 + }, + { + "from": 410, + "to": 651 + }, + { + "from": 411, + "to": 651 + }, + { + "from": 410, + "to": 652 + }, + { + "from": 411, + "to": 652 + }, + { + "from": 410, + "to": 653 + }, + { + "from": 411, + "to": 653 + }, + { + "from": 411, + "to": 654 + }, + { + "from": 655, + "to": 654 + }, + { + "from": 657, + "to": 656 + }, + { + "from": 658, + "to": 656 + }, + { + "from": 659, + "to": 656 + }, + { + "from": 660, + "to": 656 + }, + { + "from": 183, + "to": 656 + }, + { + "from": 657, + "to": 661 + }, + { + "from": 658, + "to": 661 + }, + { + "from": 659, + "to": 661 + }, + { + "from": 660, + "to": 661 + }, + { + "from": 183, + "to": 661 + }, + { + "from": 657, + "to": 662 + }, + { + "from": 658, + "to": 662 + }, + { + "from": 659, + "to": 662 + }, + { + "from": 660, + "to": 662 + }, + { + "from": 183, + "to": 662 + }, + { + "from": 657, + "to": 663 + }, + { + "from": 658, + "to": 663 + }, + { + "from": 659, + "to": 663 + }, + { + "from": 660, + "to": 663 + }, + { + "from": 183, + "to": 663 + }, + { + "from": 657, + "to": 664 + }, + { + "from": 658, + "to": 664 + }, + { + "from": 659, + "to": 664 + }, + { + "from": 660, + "to": 664 + }, + { + "from": 183, + "to": 664 + }, + { + "from": 26, + "to": 665 + }, + { + "from": 666, + "to": 665 + }, + { + "from": 667, + "to": 665 + }, + { + "from": 676, + "to": 675 + }, + { + "from": 677, + "to": 675 + }, + { + "from": 678, + "to": 675 + }, + { + "from": 676, + "to": 679 + }, + { + "from": 677, + "to": 679 + }, + { + "from": 678, + "to": 679 + }, + { + "from": 446, + "to": 683 + }, + { + "from": 684, + "to": 683 + }, + { + "from": 687, + "to": 686 + }, + { + "from": 215, + "to": 686 + }, + { + "from": 216, + "to": 686 + }, + { + "from": 676, + "to": 694 + }, + { + "from": 677, + "to": 694 + }, + { + "from": 678, + "to": 694 + }, + { + "from": 676, + "to": 698 + }, + { + "from": 677, + "to": 698 + }, + { + "from": 678, + "to": 698 + }, + { + "from": 704, + "to": 703 + }, + { + "from": 705, + "to": 703 + }, + { + "from": 706, + "to": 703 + }, + { + "from": 132, + "to": 708 + }, + { + "from": 407, + "to": 708 + }, + { + "from": 709, + "to": 708 + }, + { + "from": 405, + "to": 708 + }, + { + "from": 28, + "to": 708 + }, + { + "from": 710, + "to": 708 + }, + { + "from": 711, + "to": 708 + }, + { + "from": 712, + "to": 708 + }, + { + "from": 346, + "to": 708 + }, + { + "from": 718, + "to": 717 + }, + { + "from": 687, + "to": 725 + }, + { + "from": 687, + "to": 242 + }, + { + "from": 730, + "to": 729 + }, + { + "from": 731, + "to": 729 + }, + { + "from": 732, + "to": 729 + }, + { + "from": 730, + "to": 733 + }, + { + "from": 294, + "to": 733 + }, + { + "from": 730, + "to": 734 + }, + { + "from": 294, + "to": 734 + }, + { + "from": 730, + "to": 735 + }, + { + "from": 294, + "to": 735 + }, + { + "from": 294, + "to": 736 + }, + { + "from": 730, + "to": 737 + }, + { + "from": 294, + "to": 737 + }, + { + "from": 743, + "to": 742 + }, + { + "from": 741, + "to": 742 + }, + { + "from": 756, + "to": 755 + }, + { + "from": 757, + "to": 755 + }, + { + "from": 758, + "to": 755 + }, + { + "from": 759, + "to": 755 + }, + { + "from": 599, + "to": 760 + }, + { + "from": 346, + "to": 760 + }, + { + "from": 30, + "to": 760 + }, + { + "from": 37, + "to": 760 + }, + { + "from": 767, + "to": 766 + }, + { + "from": 768, + "to": 766 + }, + { + "from": 769, + "to": 766 + }, + { + "from": 7, + "to": 6 + }, + { + "from": 227, + "to": 6 + }, + { + "from": 6, + "to": 786 + }, + { + "from": 786, + "to": 787 + }, + { + "from": 793, + "to": 792 + }, + { + "from": 171, + "to": 792 + }, + { + "from": 573, + "to": 792 + }, + { + "from": 794, + "to": 792 + }, + { + "from": 291, + "to": 795 + }, + { + "from": 292, + "to": 795 + }, + { + "from": 293, + "to": 795 + }, + { + "from": 294, + "to": 795 + }, + { + "from": 291, + "to": 796 + }, + { + "from": 292, + "to": 796 + }, + { + "from": 293, + "to": 796 + }, + { + "from": 294, + "to": 796 + }, + { + "from": 291, + "to": 797 + }, + { + "from": 292, + "to": 797 + }, + { + "from": 293, + "to": 797 + }, + { + "from": 294, + "to": 797 + }, + { + "from": 291, + "to": 798 + }, + { + "from": 292, + "to": 798 + }, + { + "from": 293, + "to": 798 + }, + { + "from": 294, + "to": 798 + }, + { + "from": 291, + "to": 800 + }, + { + "from": 292, + "to": 800 + }, + { + "from": 293, + "to": 800 + }, + { + "from": 294, + "to": 800 + }, + { + "from": 291, + "to": 802 + }, + { + "from": 292, + "to": 802 + }, + { + "from": 293, + "to": 802 + }, + { + "from": 294, + "to": 802 + }, + { + "from": 291, + "to": 803 + }, + { + "from": 292, + "to": 803 + }, + { + "from": 293, + "to": 803 + }, + { + "from": 294, + "to": 803 + }, + { + "from": 810, + "to": 809 + }, + { + "from": 647, + "to": 820 + }, + { + "from": 824, + "to": 823 + }, + { + "from": 834, + "to": 833 + }, + { + "from": 834, + "to": 835 + }, + { + "from": 834, + "to": 837 + }, + { + "from": 834, + "to": 838 + }, + { + "from": 169, + "to": 844 + }, + { + "from": 270, + "to": 844 + }, + { + "from": 571, + "to": 844 + }, + { + "from": 171, + "to": 844 + }, + { + "from": 846, + "to": 845 + }, + { + "from": 847, + "to": 845 + }, + { + "from": 571, + "to": 847 + }, + { + "from": 573, + "to": 847 + }, + { + "from": 419, + "to": 848 + }, + { + "from": 849, + "to": 848 + }, + { + "from": 571, + "to": 848 + }, + { + "from": 133, + "to": 848 + }, + { + "from": 26, + "to": 848 + }, + { + "from": 27, + "to": 848 + }, + { + "from": 28, + "to": 848 + }, + { + "from": 853, + "to": 852 + }, + { + "from": 854, + "to": 852 + }, + { + "from": 855, + "to": 852 + }, + { + "from": 856, + "to": 852 + }, + { + "from": 857, + "to": 852 + }, + { + "from": 299, + "to": 852 + }, + { + "from": 150, + "to": 852 + }, + { + "from": 151, + "to": 852 + }, + { + "from": 858, + "to": 852 + }, + { + "from": 859, + "to": 852 + }, + { + "from": 860, + "to": 852 + }, + { + "from": 154, + "to": 852 + }, + { + "from": 155, + "to": 852 + }, + { + "from": 520, + "to": 852 + }, + { + "from": 861, + "to": 852 + }, + { + "from": 862, + "to": 852 + }, + { + "from": 863, + "to": 852 + }, + { + "from": 149, + "to": 852 + }, + { + "from": 153, + "to": 852 + }, + { + "from": 152, + "to": 852 + }, + { + "from": 147, + "to": 852 + }, + { + "from": 864, + "to": 852 + }, + { + "from": 43, + "to": 852 + }, + { + "from": 44, + "to": 852 + }, + { + "from": 45, + "to": 852 + }, + { + "from": 865, + "to": 852 + }, + { + "from": 866, + "to": 852 + }, + { + "from": 867, + "to": 852 + }, + { + "from": 144, + "to": 852 + }, + { + "from": 868, + "to": 852 + }, + { + "from": 869, + "to": 852 + }, + { + "from": 870, + "to": 852 + }, + { + "from": 145, + "to": 852 + }, + { + "from": 871, + "to": 852 + }, + { + "from": 687, + "to": 875 + }, + { + "from": 589, + "to": 876 + }, + { + "from": 240, + "to": 876 + }, + { + "from": 888, + "to": 887 + }, + { + "from": 889, + "to": 887 + }, + { + "from": 891, + "to": 890 + }, + { + "from": 892, + "to": 890 + }, + { + "from": 893, + "to": 890 + }, + { + "from": 891, + "to": 894 + }, + { + "from": 892, + "to": 894 + }, + { + "from": 893, + "to": 894 + }, + { + "from": 891, + "to": 896 + }, + { + "from": 892, + "to": 896 + }, + { + "from": 893, + "to": 896 + }, + { + "from": 891, + "to": 897 + }, + { + "from": 892, + "to": 897 + }, + { + "from": 893, + "to": 897 + }, + { + "from": 398, + "to": 903 + }, + { + "from": 402, + "to": 904 + }, + { + "from": 406, + "to": 904 + }, + { + "from": 399, + "to": 905 + }, + { + "from": 413, + "to": 906 + }, + { + "from": 655, + "to": 907 + }, + { + "from": 406, + "to": 907 + }, + { + "from": 170, + "to": 907 + }, + { + "from": 168, + "to": 907 + }, + { + "from": 655, + "to": 908 + }, + { + "from": 406, + "to": 908 + }, + { + "from": 655, + "to": 909 + }, + { + "from": 406, + "to": 909 + }, + { + "from": 913, + "to": 912 + }, + { + "from": 914, + "to": 913 + }, + { + "from": 915, + "to": 913 + }, + { + "from": 178, + "to": 918 + }, + { + "from": 179, + "to": 918 + }, + { + "from": 180, + "to": 918 + }, + { + "from": 178, + "to": 919 + }, + { + "from": 179, + "to": 919 + }, + { + "from": 180, + "to": 919 + }, + { + "from": 921, + "to": 920 + }, + { + "from": 922, + "to": 920 + }, + { + "from": 178, + "to": 924 + }, + { + "from": 179, + "to": 924 + }, + { + "from": 180, + "to": 924 + }, + { + "from": 926, + "to": 926 + }, + { + "from": 927, + "to": 926 + }, + { + "from": 940, + "to": 939 + }, + { + "from": 945, + "to": 944 + }, + { + "from": 947, + "to": 946 + }, + { + "from": 948, + "to": 946 + }, + { + "from": 950, + "to": 949 + }, + { + "from": 951, + "to": 949 + }, + { + "from": 849, + "to": 952 + }, + { + "from": 667, + "to": 952 + }, + { + "from": 953, + "to": 952 + }, + { + "from": 26, + "to": 952 + }, + { + "from": 954, + "to": 952 + }, + { + "from": 35, + "to": 952 + }, + { + "from": 26, + "to": 955 + }, + { + "from": 35, + "to": 955 + }, + { + "from": 132, + "to": 955 + }, + { + "from": 667, + "to": 955 + }, + { + "from": 953, + "to": 955 + }, + { + "from": 242, + "to": 972 + }, + { + "from": 687, + "to": 976 + }, + { + "from": 294, + "to": 984 + }, + { + "from": 294, + "to": 985 + }, + { + "from": 294, + "to": 986 + }, + { + "from": 687, + "to": 987 + }, + { + "from": 756, + "to": 1010 + }, + { + "from": 756, + "to": 1011 + }, + { + "from": 1019, + "to": 1018 + }, + { + "from": 1020, + "to": 1018 + }, + { + "from": 890, + "to": 1031 + }, + { + "from": 1032, + "to": 1031 + }, + { + "from": 644, + "to": 1031 + }, + { + "from": 588, + "to": 1034 + }, + { + "from": 1038, + "to": 1040 + }, + { + "from": 291, + "to": 1042 + }, + { + "from": 292, + "to": 1042 + }, + { + "from": 293, + "to": 1042 + }, + { + "from": 294, + "to": 1042 + }, + { + "from": 291, + "to": 1043 + }, + { + "from": 292, + "to": 1043 + }, + { + "from": 293, + "to": 1043 + }, + { + "from": 294, + "to": 1043 + }, + { + "from": 291, + "to": 1044 + }, + { + "from": 292, + "to": 1044 + }, + { + "from": 293, + "to": 1044 + }, + { + "from": 294, + "to": 1044 + }, + { + "from": 291, + "to": 1045 + }, + { + "from": 292, + "to": 1045 + }, + { + "from": 293, + "to": 1045 + }, + { + "from": 294, + "to": 1045 + }, + { + "from": 291, + "to": 1046 + }, + { + "from": 292, + "to": 1046 + }, + { + "from": 293, + "to": 1046 + }, + { + "from": 294, + "to": 1046 + }, + { + "from": 291, + "to": 1047 + }, + { + "from": 292, + "to": 1047 + }, + { + "from": 293, + "to": 1047 + }, + { + "from": 294, + "to": 1047 + }, + { + "from": 99, + "to": 1051 + }, + { + "from": 1052, + "to": 1051 + }, + { + "from": 1053, + "to": 1051 + }, + { + "from": 1054, + "to": 1051 + }, + { + "from": 1055, + "to": 1051 + }, + { + "from": 98, + "to": 1051 + }, + { + "from": 99, + "to": 1056 + }, + { + "from": 1052, + "to": 1056 + }, + { + "from": 1053, + "to": 1056 + }, + { + "from": 1054, + "to": 1056 + }, + { + "from": 1055, + "to": 1056 + }, + { + "from": 98, + "to": 1056 + }, + { + "from": 99, + "to": 1063 + }, + { + "from": 1052, + "to": 1063 + }, + { + "from": 1053, + "to": 1063 + }, + { + "from": 1054, + "to": 1063 + }, + { + "from": 1055, + "to": 1063 + }, + { + "from": 98, + "to": 1063 + }, + { + "from": 1065, + "to": 1064 + }, + { + "from": 1066, + "to": 1064 + }, + { + "from": 1067, + "to": 1064 + }, + { + "from": 1068, + "to": 1064 + }, + { + "from": 1069, + "to": 1064 + }, + { + "from": 1070, + "to": 1064 + }, + { + "from": 1071, + "to": 1064 + }, + { + "from": 99, + "to": 1072 + }, + { + "from": 1052, + "to": 1072 + }, + { + "from": 1053, + "to": 1072 + }, + { + "from": 1054, + "to": 1072 + }, + { + "from": 1055, + "to": 1072 + }, + { + "from": 98, + "to": 1072 + }, + { + "from": 11, + "to": 1070 + }, + { + "from": 17, + "to": 1070 + }, + { + "from": 16, + "to": 1070 + }, + { + "from": 1073, + "to": 1070 + }, + { + "from": 241, + "to": 1070 + }, + { + "from": 1069, + "to": 1070 + }, + { + "from": 1070, + "to": 1070 + }, + { + "from": 1074, + "to": 1070 + }, + { + "from": 1066, + "to": 1070 + }, + { + "from": 687, + "to": 1075 + }, + { + "from": 16, + "to": 1071 + }, + { + "from": 17, + "to": 1071 + }, + { + "from": 1081, + "to": 1080 + }, + { + "from": 1082, + "to": 1080 + }, + { + "from": 553, + "to": 1088 + }, + { + "from": 1089, + "to": 1088 + }, + { + "from": 557, + "to": 1088 + }, + { + "from": 1090, + "to": 1088 + }, + { + "from": 1092, + "to": 1091 + }, + { + "from": 1093, + "to": 1091 + }, + { + "from": 1088, + "to": 1091 + }, + { + "from": 1094, + "to": 531 + }, + { + "from": 531, + "to": 1095 + }, + { + "from": 1102, + "to": 1102 + }, + { + "from": 1103, + "to": 1102 + }, + { + "from": 1107, + "to": 1108 + }, + { + "from": 1111, + "to": 1110 + }, + { + "from": 1111, + "to": 1112 + }, + { + "from": 731, + "to": 1111 + }, + { + "from": 1111, + "to": 1113 + }, + { + "from": 1111, + "to": 1114 + }, + { + "from": 1111, + "to": 1115 + }, + { + "from": 1117, + "to": 1116 + }, + { + "from": 1120, + "to": 1119 + }, + { + "from": 572, + "to": 1121 + }, + { + "from": 419, + "to": 1121 + }, + { + "from": 849, + "to": 1121 + }, + { + "from": 132, + "to": 1121 + }, + { + "from": 571, + "to": 1121 + }, + { + "from": 407, + "to": 1121 + }, + { + "from": 227, + "to": 1121 + }, + { + "from": 169, + "to": 1121 + }, + { + "from": 171, + "to": 1121 + }, + { + "from": 26, + "to": 1121 + }, + { + "from": 27, + "to": 1121 + }, + { + "from": 28, + "to": 1121 + }, + { + "from": 573, + "to": 1121 + }, + { + "from": 33, + "to": 1121 + }, + { + "from": 34, + "to": 1121 + }, + { + "from": 35, + "to": 1121 + }, + { + "from": 38, + "to": 1121 + }, + { + "from": 1124, + "to": 1123 + }, + { + "from": 784, + "to": 1123 + }, + { + "from": 291, + "to": 1125 + }, + { + "from": 292, + "to": 1125 + }, + { + "from": 293, + "to": 1125 + }, + { + "from": 294, + "to": 1125 + }, + { + "from": 291, + "to": 1126 + }, + { + "from": 292, + "to": 1126 + }, + { + "from": 293, + "to": 1126 + }, + { + "from": 294, + "to": 1126 + }, + { + "from": 291, + "to": 1127 + }, + { + "from": 292, + "to": 1127 + }, + { + "from": 293, + "to": 1127 + }, + { + "from": 294, + "to": 1127 + }, + { + "from": 291, + "to": 1128 + }, + { + "from": 292, + "to": 1128 + }, + { + "from": 293, + "to": 1128 + }, + { + "from": 294, + "to": 1128 + }, + { + "from": 291, + "to": 1131 + }, + { + "from": 292, + "to": 1131 + }, + { + "from": 293, + "to": 1131 + }, + { + "from": 294, + "to": 1131 + }, + { + "from": 1133, + "to": 1132 + }, + { + "from": 1135, + "to": 1134 + }, + { + "from": 1137, + "to": 1136 + }, + { + "from": 1145, + "to": 1144 + }, + { + "from": 687, + "to": 1146 + }, + { + "from": 1147, + "to": 1146 + }, + { + "from": 1152, + "to": 1151 + }, + { + "from": 1176, + "to": 1175 + }, + { + "from": 1179, + "to": 1178 + }, + { + "from": 1182, + "to": 1181 + }, + { + "from": 1183, + "to": 1181 + }, + { + "from": 1176, + "to": 1184 + }, + { + "from": 1183, + "to": 1184 + }, + { + "from": 55, + "to": 1188 + }, + { + "from": 1188, + "to": 1189 + }, + { + "from": 57, + "to": 1189 + }, + { + "from": 1193, + "to": 1192 + }, + { + "from": 1194, + "to": 1193 + }, + { + "from": 1206, + "to": 1205 + }, + { + "from": 1210, + "to": 1209 + }, + { + "from": 349, + "to": 1216 + }, + { + "from": 1218, + "to": 1217 + }, + { + "from": 1220, + "to": 1219 + }, + { + "from": 169, + "to": 1219 + }, + { + "from": 171, + "to": 1219 + }, + { + "from": 436, + "to": 1221 + }, + { + "from": 1222, + "to": 1221 + }, + { + "from": 1223, + "to": 1221 + }, + { + "from": 1224, + "to": 1221 + }, + { + "from": 169, + "to": 1221 + }, + { + "from": 171, + "to": 1221 + }, + { + "from": 1226, + "to": 1225 + }, + { + "from": 572, + "to": 1225 + }, + { + "from": 1220, + "to": 1225 + }, + { + "from": 169, + "to": 1225 + }, + { + "from": 171, + "to": 1225 + }, + { + "from": 1227, + "to": 1225 + }, + { + "from": 1226, + "to": 1228 + }, + { + "from": 572, + "to": 1228 + }, + { + "from": 1220, + "to": 1228 + }, + { + "from": 169, + "to": 1228 + }, + { + "from": 171, + "to": 1228 + }, + { + "from": 1227, + "to": 1228 + }, + { + "from": 1229, + "to": 1231 + }, + { + "from": 1234, + "to": 1233 + }, + { + "from": 1235, + "to": 1233 + }, + { + "from": 1237, + "to": 1236 + }, + { + "from": 1238, + "to": 1236 + }, + { + "from": 1240, + "to": 1239 + }, + { + "from": 1239, + "to": 1241 + }, + { + "from": 294, + "to": 1244 + }, + { + "from": 419, + "to": 1246 + }, + { + "from": 849, + "to": 1246 + }, + { + "from": 294, + "to": 1248 + }, + { + "from": 294, + "to": 1255 + }, + { + "from": 419, + "to": 1263 + }, + { + "from": 420, + "to": 1263 + }, + { + "from": 1264, + "to": 1263 + }, + { + "from": 849, + "to": 1263 + }, + { + "from": 1265, + "to": 1263 + }, + { + "from": 1267, + "to": 1266 + }, + { + "from": 1268, + "to": 1266 + }, + { + "from": 1266, + "to": 1269 + }, + { + "from": 1271, + "to": 1270 + }, + { + "from": 1270, + "to": 1270 + }, + { + "from": 1278, + "to": 1277 + }, + { + "from": 1279, + "to": 1277 + }, + { + "from": 1280, + "to": 1277 + }, + { + "from": 1292, + "to": 93 + }, + { + "from": 91, + "to": 93 + }, + { + "from": 1293, + "to": 93 + }, + { + "from": 1313, + "to": 1312 + }, + { + "from": 403, + "to": 1314 + }, + { + "from": 1317, + "to": 1316 + }, + { + "from": 132, + "to": 1317 + }, + { + "from": 169, + "to": 1317 + }, + { + "from": 407, + "to": 1317 + }, + { + "from": 573, + "to": 1317 + }, + { + "from": 169, + "to": 407 + }, + { + "from": 687, + "to": 1331 + }, + { + "from": 1147, + "to": 1331 + }, + { + "from": 589, + "to": 1332 + }, + { + "from": 242, + "to": 1332 + }, + { + "from": 1334, + "to": 1333 + }, + { + "from": 1335, + "to": 1333 + }, + { + "from": 1334, + "to": 1336 + }, + { + "from": 1335, + "to": 1336 + }, + { + "from": 1342, + "to": 1341 + }, + { + "from": 26, + "to": 1343 + }, + { + "from": 571, + "to": 1343 + }, + { + "from": 1345, + "to": 1346 + }, + { + "from": 1346, + "to": 1347 + }, + { + "from": 1052, + "to": 1350 + }, + { + "from": 26, + "to": 99 + }, + { + "from": 571, + "to": 99 + }, + { + "from": 572, + "to": 99 + }, + { + "from": 1351, + "to": 99 + }, + { + "from": 1354, + "to": 1353 + }, + { + "from": 1355, + "to": 1353 + }, + { + "from": 1359, + "to": 1358 + }, + { + "from": 465, + "to": 1358 + }, + { + "from": 1364, + "to": 1363 + }, + { + "from": 1365, + "to": 1366 + }, + { + "from": 1374, + "to": 1373 + }, + { + "from": 1378, + "to": 1377 + }, + { + "from": 1379, + "to": 1377 + }, + { + "from": 1387, + "to": 1386 + }, + { + "from": 1388, + "to": 1386 + }, + { + "from": 1387, + "to": 1389 + }, + { + "from": 1388, + "to": 1389 + }, + { + "from": 1387, + "to": 1390 + }, + { + "from": 1388, + "to": 1390 + }, + { + "from": 1387, + "to": 1391 + }, + { + "from": 1388, + "to": 1391 + }, + { + "from": 1387, + "to": 1392 + }, + { + "from": 1388, + "to": 1392 + }, + { + "from": 45, + "to": 44 + }, + { + "from": 43, + "to": 45 + }, + { + "from": 98, + "to": 1409 + }, + { + "from": 99, + "to": 1409 + }, + { + "from": 1410, + "to": 1409 + }, + { + "from": 1226, + "to": 9 + }, + { + "from": 1227, + "to": 9 + }, + { + "from": 1413, + "to": 9 + }, + { + "from": 1417, + "to": 1416 + }, + { + "from": 1418, + "to": 1416 + }, + { + "from": 1416, + "to": 1419 + }, + { + "from": 1418, + "to": 1419 + }, + { + "from": 345, + "to": 1422 + }, + { + "from": 1424, + "to": 1423 + }, + { + "from": 1423, + "to": 1425 + }, + { + "from": 246, + "to": 1438 + }, + { + "from": 1448, + "to": 1447 + }, + { + "from": 1237, + "to": 1451 + }, + { + "from": 1238, + "to": 1451 + }, + { + "from": 399, + "to": 1452 + }, + { + "from": 1453, + "to": 1454 + }, + { + "from": 1455, + "to": 1454 + }, + { + "from": 1453, + "to": 1455 + }, + { + "from": 1459, + "to": 1458 + }, + { + "from": 1460, + "to": 1458 + }, + { + "from": 1463, + "to": 1462 + }, + { + "from": 1476, + "to": 1475 + }, + { + "from": 1477, + "to": 1475 + }, + { + "from": 1478, + "to": 1475 + }, + { + "from": 1479, + "to": 1475 + }, + { + "from": 1480, + "to": 1475 + }, + { + "from": 1054, + "to": 1487 + }, + { + "from": 1488, + "to": 1487 + }, + { + "from": 345, + "to": 1487 + }, + { + "from": 1489, + "to": 1487 + }, + { + "from": 1052, + "to": 1487 + }, + { + "from": 1504, + "to": 1505 + }, + { + "from": 1509, + "to": 589 + }, + { + "from": 1510, + "to": 589 + }, + { + "from": 589, + "to": 589 + }, + { + "from": 1511, + "to": 589 + }, + { + "from": 1512, + "to": 589 + }, + { + "from": 1513, + "to": 589 + }, + { + "from": 1514, + "to": 589 + }, + { + "from": 1509, + "to": 240 + }, + { + "from": 1510, + "to": 240 + }, + { + "from": 1512, + "to": 240 + }, + { + "from": 1511, + "to": 240 + }, + { + "from": 240, + "to": 240 + }, + { + "from": 1513, + "to": 240 + }, + { + "from": 1516, + "to": 240 + }, + { + "from": 1524, + "to": 1523 + }, + { + "from": 950, + "to": 1528 + }, + { + "from": 1529, + "to": 1528 + }, + { + "from": 913, + "to": 1530 + }, + { + "from": 945, + "to": 1530 + }, + { + "from": 1528, + "to": 1530 + }, + { + "from": 402, + "to": 399 + }, + { + "from": 655, + "to": 402 + }, + { + "from": 410, + "to": 655 + }, + { + "from": 405, + "to": 655 + }, + { + "from": 132, + "to": 655 + }, + { + "from": 407, + "to": 655 + }, + { + "from": 1536, + "to": 1536 + }, + { + "from": 1537, + "to": 1536 + }, + { + "from": 1334, + "to": 1545 + }, + { + "from": 1335, + "to": 1545 + }, + { + "from": 1547, + "to": 1546 + }, + { + "from": 1334, + "to": 1546 + }, + { + "from": 1335, + "to": 1546 + }, + { + "from": 1547, + "to": 1548 + }, + { + "from": 1334, + "to": 1548 + }, + { + "from": 1335, + "to": 1548 + }, + { + "from": 1334, + "to": 1549 + }, + { + "from": 1335, + "to": 1549 + }, + { + "from": 1550, + "to": 1547 + }, + { + "from": 1551, + "to": 1547 + }, + { + "from": 1334, + "to": 1547 + }, + { + "from": 1552, + "to": 1547 + }, + { + "from": 1553, + "to": 1547 + }, + { + "from": 1551, + "to": 1334 + }, + { + "from": 1552, + "to": 1334 + }, + { + "from": 1335, + "to": 1334 + }, + { + "from": 1037, + "to": 1555 + }, + { + "from": 1564, + "to": 1563 + }, + { + "from": 291, + "to": 1565 + }, + { + "from": 292, + "to": 1565 + }, + { + "from": 293, + "to": 1565 + }, + { + "from": 294, + "to": 1565 + }, + { + "from": 1576, + "to": 1575 + }, + { + "from": 1575, + "to": 1577 + }, + { + "from": 1580, + "to": 1579 + }, + { + "from": 767, + "to": 1581 + }, + { + "from": 768, + "to": 1581 + }, + { + "from": 1582, + "to": 1581 + }, + { + "from": 1583, + "to": 1585 + }, + { + "from": 393, + "to": 1597 + }, + { + "from": 17, + "to": 1598 + }, + { + "from": 1601, + "to": 1600 + }, + { + "from": 1605, + "to": 1604 + }, + { + "from": 1606, + "to": 1605 + }, + { + "from": 291, + "to": 1607 + }, + { + "from": 292, + "to": 1607 + }, + { + "from": 293, + "to": 1607 + }, + { + "from": 294, + "to": 1607 + }, + { + "from": 291, + "to": 1610 + }, + { + "from": 292, + "to": 1610 + }, + { + "from": 293, + "to": 1610 + }, + { + "from": 294, + "to": 1610 + }, + { + "from": 1025, + "to": 1618 + }, + { + "from": 1619, + "to": 1618 + }, + { + "from": 1620, + "to": 1618 + }, + { + "from": 294, + "to": 1618 + }, + { + "from": 1621, + "to": 1618 + }, + { + "from": 568, + "to": 1618 + }, + { + "from": 1618, + "to": 1622 + }, + { + "from": 1625, + "to": 1624 + }, + { + "from": 1626, + "to": 1624 + }, + { + "from": 1630, + "to": 1629 + }, + { + "from": 1631, + "to": 1629 + }, + { + "from": 1418, + "to": 1633 + }, + { + "from": 1634, + "to": 1633 + }, + { + "from": 1636, + "to": 1635 + }, + { + "from": 1637, + "to": 1635 + }, + { + "from": 1631, + "to": 1639 + }, + { + "from": 1642, + "to": 1641 + }, + { + "from": 1631, + "to": 1641 + }, + { + "from": 1646, + "to": 1645 + }, + { + "from": 743, + "to": 1645 + }, + { + "from": 1647, + "to": 1646 + }, + { + "from": 1665, + "to": 1664 + }, + { + "from": 1668, + "to": 1667 + }, + { + "from": 1669, + "to": 1667 + }, + { + "from": 1670, + "to": 1667 + }, + { + "from": 1399, + "to": 1673 + }, + { + "from": 1279, + "to": 1674 + }, + { + "from": 1675, + "to": 1674 + }, + { + "from": 1677, + "to": 1676 + }, + { + "from": 1480, + "to": 1676 + }, + { + "from": 1678, + "to": 1676 + }, + { + "from": 1477, + "to": 1676 + }, + { + "from": 1679, + "to": 1676 + }, + { + "from": 1680, + "to": 1676 + }, + { + "from": 37, + "to": 614 + }, + { + "from": 30, + "to": 614 + }, + { + "from": 1683, + "to": 614 + }, + { + "from": 38, + "to": 614 + }, + { + "from": 769, + "to": 1684 + }, + { + "from": 846, + "to": 1685 + }, + { + "from": 846, + "to": 1686 + }, + { + "from": 1683, + "to": 1686 + }, + { + "from": 1688, + "to": 1687 + }, + { + "from": 1687, + "to": 1687 + }, + { + "from": 1594, + "to": 1695 + }, + { + "from": 1595, + "to": 1695 + }, + { + "from": 1516, + "to": 1696 + }, + { + "from": 1707, + "to": 1706 + }, + { + "from": 1708, + "to": 1706 + }, + { + "from": 1709, + "to": 1706 + }, + { + "from": 1717, + "to": 1716 + }, + { + "from": 1340, + "to": 1716 + }, + { + "from": 1724, + "to": 1725 + }, + { + "from": 1728, + "to": 1728 + }, + { + "from": 1729, + "to": 1728 + }, + { + "from": 1734, + "to": 1733 + }, + { + "from": 1738, + "to": 1737 + }, + { + "from": 1739, + "to": 1737 + }, + { + "from": 193, + "to": 1740 + }, + { + "from": 194, + "to": 1740 + }, + { + "from": 1742, + "to": 1741 + }, + { + "from": 1743, + "to": 1741 + }, + { + "from": 1745, + "to": 1744 + }, + { + "from": 1746, + "to": 1744 + }, + { + "from": 1748, + "to": 1747 + }, + { + "from": 1749, + "to": 1747 + }, + { + "from": 589, + "to": 1751 + }, + { + "from": 1756, + "to": 1755 + }, + { + "from": 1418, + "to": 1758 + }, + { + "from": 1763, + "to": 1762 + }, + { + "from": 1773, + "to": 1772 + }, + { + "from": 1774, + "to": 1773 + }, + { + "from": 1226, + "to": 1773 + }, + { + "from": 1775, + "to": 1773 + }, + { + "from": 1776, + "to": 1773 + }, + { + "from": 1413, + "to": 1773 + }, + { + "from": 1399, + "to": 1773 + }, + { + "from": 1784, + "to": 1783 + }, + { + "from": 321, + "to": 322 + }, + { + "from": 1802, + "to": 1801 + }, + { + "from": 1803, + "to": 1801 + }, + { + "from": 1804, + "to": 1801 + }, + { + "from": 1825, + "to": 1824 + }, + { + "from": 1826, + "to": 1824 + }, + { + "from": 17, + "to": 1824 + }, + { + "from": 1387, + "to": 1832 + }, + { + "from": 1388, + "to": 1832 + }, + { + "from": 1834, + "to": 1833 + }, + { + "from": 1835, + "to": 1833 + }, + { + "from": 1836, + "to": 1834 + }, + { + "from": 1837, + "to": 1834 + }, + { + "from": 1838, + "to": 1834 + }, + { + "from": 1839, + "to": 1834 + }, + { + "from": 1841, + "to": 1842 + }, + { + "from": 571, + "to": 1843 + }, + { + "from": 573, + "to": 1843 + }, + { + "from": 1844, + "to": 1843 + }, + { + "from": 1220, + "to": 1843 + }, + { + "from": 169, + "to": 1843 + }, + { + "from": 171, + "to": 1843 + }, + { + "from": 1855, + "to": 1854 + }, + { + "from": 1857, + "to": 1856 + }, + { + "from": 1854, + "to": 1857 + }, + { + "from": 1859, + "to": 1858 + }, + { + "from": 1858, + "to": 1858 + }, + { + "from": 1861, + "to": 1860 + }, + { + "from": 1871, + "to": 1870 + }, + { + "from": 1871, + "to": 1872 + }, + { + "from": 1875, + "to": 1874 + }, + { + "from": 1876, + "to": 1874 + }, + { + "from": 1877, + "to": 1874 + }, + { + "from": 1418, + "to": 1874 + }, + { + "from": 1874, + "to": 1878 + }, + { + "from": 1418, + "to": 1878 + }, + { + "from": 1642, + "to": 1880 + }, + { + "from": 1881, + "to": 1880 + }, + { + "from": 1882, + "to": 1880 + }, + { + "from": 1886, + "to": 1885 + }, + { + "from": 568, + "to": 1885 + }, + { + "from": 1887, + "to": 1885 + }, + { + "from": 1894, + "to": 1894 + }, + { + "from": 1890, + "to": 1894 + }, + { + "from": 1890, + "to": 1895 + }, + { + "from": 1890, + "to": 1899 + }, + { + "from": 1900, + "to": 1902 + }, + { + "from": 1923, + "to": 1922 + }, + { + "from": 571, + "to": 1922 + }, + { + "from": 26, + "to": 1923 + }, + { + "from": 132, + "to": 1923 + }, + { + "from": 1931, + "to": 1930 + }, + { + "from": 1933, + "to": 1932 + }, + { + "from": 1933, + "to": 1934 + }, + { + "from": 1931, + "to": 1935 + }, + { + "from": 1937, + "to": 1936 + }, + { + "from": 613, + "to": 1943 + }, + { + "from": 1951, + "to": 1950 + }, + { + "from": 1488, + "to": 1951 + }, + { + "from": 1052, + "to": 1951 + }, + { + "from": 1093, + "to": 1951 + }, + { + "from": 345, + "to": 1951 + }, + { + "from": 1092, + "to": 1951 + }, + { + "from": 1952, + "to": 1951 + }, + { + "from": 1953, + "to": 1951 + }, + { + "from": 1054, + "to": 1951 + }, + { + "from": 1954, + "to": 1951 + }, + { + "from": 1955, + "to": 1951 + }, + { + "from": 1489, + "to": 1951 + }, + { + "from": 1594, + "to": 1963 + }, + { + "from": 1595, + "to": 1963 + }, + { + "from": 1971, + "to": 1970 + }, + { + "from": 1830, + "to": 1970 + }, + { + "from": 1972, + "to": 1970 + }, + { + "from": 1973, + "to": 1970 + }, + { + "from": 1974, + "to": 1970 + }, + { + "from": 1970, + "to": 1975 + }, + { + "from": 1975, + "to": 1976 + }, + { + "from": 1987, + "to": 1986 + }, + { + "from": 419, + "to": 1988 + }, + { + "from": 849, + "to": 1988 + }, + { + "from": 1265, + "to": 1988 + }, + { + "from": 1987, + "to": 1988 + }, + { + "from": 1989, + "to": 1988 + }, + { + "from": 1988, + "to": 1988 + }, + { + "from": 420, + "to": 1988 + }, + { + "from": 1509, + "to": 1990 + }, + { + "from": 1512, + "to": 1990 + }, + { + "from": 1510, + "to": 1509 + }, + { + "from": 1511, + "to": 1509 + }, + { + "from": 506, + "to": 1995 + }, + { + "from": 506, + "to": 1996 + }, + { + "from": 399, + "to": 1997 + }, + { + "from": 1998, + "to": 1997 + }, + { + "from": 1999, + "to": 1997 + }, + { + "from": 1092, + "to": 2000 + }, + { + "from": 1093, + "to": 2000 + }, + { + "from": 2002, + "to": 2001 + }, + { + "from": 2001, + "to": 2001 + }, + { + "from": 914, + "to": 2003 + }, + { + "from": 1954, + "to": 2003 + }, + { + "from": 2005, + "to": 2004 + }, + { + "from": 2006, + "to": 2004 + }, + { + "from": 2004, + "to": 2007 + }, + { + "from": 2011, + "to": 2012 + }, + { + "from": 2012, + "to": 2013 + }, + { + "from": 2028, + "to": 2027 + }, + { + "from": 2026, + "to": 2028 + }, + { + "from": 1756, + "to": 2029 + }, + { + "from": 1387, + "to": 2031 + }, + { + "from": 1388, + "to": 2031 + }, + { + "from": 1459, + "to": 2033 + }, + { + "from": 2052, + "to": 2051 + }, + { + "from": 2056, + "to": 2057 + }, + { + "from": 1577, + "to": 2059 + }, + { + "from": 349, + "to": 2065 + }, + { + "from": 2069, + "to": 2068 + }, + { + "from": 1837, + "to": 2068 + }, + { + "from": 1510, + "to": 2070 + }, + { + "from": 1511, + "to": 2070 + }, + { + "from": 354, + "to": 2087 + }, + { + "from": 2088, + "to": 2087 + }, + { + "from": 2089, + "to": 2087 + }, + { + "from": 419, + "to": 354 + }, + { + "from": 2090, + "to": 354 + }, + { + "from": 2091, + "to": 354 + }, + { + "from": 2092, + "to": 354 + }, + { + "from": 420, + "to": 354 + }, + { + "from": 2093, + "to": 354 + }, + { + "from": 1999, + "to": 354 + }, + { + "from": 354, + "to": 2094 + }, + { + "from": 2088, + "to": 2094 + }, + { + "from": 2089, + "to": 2094 + }, + { + "from": 354, + "to": 2095 + }, + { + "from": 2088, + "to": 2095 + }, + { + "from": 1387, + "to": 2097 + }, + { + "from": 1388, + "to": 2097 + }, + { + "from": 2099, + "to": 2098 + }, + { + "from": 568, + "to": 2098 + }, + { + "from": 2103, + "to": 2102 + }, + { + "from": 2105, + "to": 2104 + }, + { + "from": 2106, + "to": 2104 + }, + { + "from": 2107, + "to": 2104 + }, + { + "from": 2104, + "to": 2103 + }, + { + "from": 2107, + "to": 2105 + }, + { + "from": 2105, + "to": 2106 + }, + { + "from": 769, + "to": 2107 + }, + { + "from": 2108, + "to": 2107 + }, + { + "from": 2109, + "to": 2107 + }, + { + "from": 2114, + "to": 2113 + }, + { + "from": 594, + "to": 2115 + }, + { + "from": 27, + "to": 2115 + }, + { + "from": 571, + "to": 2115 + }, + { + "from": 30, + "to": 2115 + }, + { + "from": 596, + "to": 2115 + }, + { + "from": 2120, + "to": 2119 + }, + { + "from": 1222, + "to": 2127 + }, + { + "from": 2128, + "to": 2127 + }, + { + "from": 1413, + "to": 2127 + }, + { + "from": 2130, + "to": 2129 + }, + { + "from": 2131, + "to": 2129 + }, + { + "from": 2137, + "to": 2136 + }, + { + "from": 2136, + "to": 2136 + }, + { + "from": 2138, + "to": 2136 + }, + { + "from": 2139, + "to": 2136 + }, + { + "from": 2140, + "to": 2138 + }, + { + "from": 16, + "to": 2151 + }, + { + "from": 17, + "to": 2151 + }, + { + "from": 2153, + "to": 2152 + }, + { + "from": 1226, + "to": 2154 + }, + { + "from": 793, + "to": 2154 + }, + { + "from": 1227, + "to": 2154 + }, + { + "from": 2157, + "to": 2156 + }, + { + "from": 556, + "to": 2156 + }, + { + "from": 793, + "to": 2156 + }, + { + "from": 1094, + "to": 2156 + }, + { + "from": 2159, + "to": 2158 + }, + { + "from": 2161, + "to": 2160 + }, + { + "from": 2162, + "to": 2160 + }, + { + "from": 2160, + "to": 2164 + }, + { + "from": 2170, + "to": 2169 + }, + { + "from": 2172, + "to": 2171 + }, + { + "from": 2173, + "to": 2172 + }, + { + "from": 144, + "to": 145 + }, + { + "from": 2178, + "to": 2177 + }, + { + "from": 1986, + "to": 2192 + }, + { + "from": 1988, + "to": 2192 + }, + { + "from": 709, + "to": 2192 + }, + { + "from": 687, + "to": 2193 + }, + { + "from": 1987, + "to": 2193 + }, + { + "from": 1987, + "to": 2194 + }, + { + "from": 1987, + "to": 2195 + }, + { + "from": 2197, + "to": 2196 + }, + { + "from": 2196, + "to": 2196 + }, + { + "from": 506, + "to": 2199 + }, + { + "from": 2203, + "to": 2202 + }, + { + "from": 2204, + "to": 2204 + }, + { + "from": 2205, + "to": 2204 + }, + { + "from": 2207, + "to": 2206 + }, + { + "from": 2210, + "to": 2209 + }, + { + "from": 914, + "to": 2211 + }, + { + "from": 2212, + "to": 2211 + }, + { + "from": 1954, + "to": 2211 + }, + { + "from": 915, + "to": 2211 + }, + { + "from": 2214, + "to": 2213 + }, + { + "from": 1529, + "to": 2213 + }, + { + "from": 2215, + "to": 1092 + }, + { + "from": 2216, + "to": 1092 + }, + { + "from": 573, + "to": 1092 + }, + { + "from": 553, + "to": 2215 + }, + { + "from": 557, + "to": 2215 + }, + { + "from": 26, + "to": 557 + }, + { + "from": 132, + "to": 557 + }, + { + "from": 294, + "to": 2229 + }, + { + "from": 294, + "to": 2231 + }, + { + "from": 294, + "to": 2232 + }, + { + "from": 294, + "to": 2235 + }, + { + "from": 294, + "to": 2236 + }, + { + "from": 294, + "to": 2237 + }, + { + "from": 2238, + "to": 2237 + }, + { + "from": 294, + "to": 2246 + }, + { + "from": 2250, + "to": 2249 + }, + { + "from": 2252, + "to": 2251 + }, + { + "from": 2256, + "to": 2255 + }, + { + "from": 2266, + "to": 2265 + }, + { + "from": 2267, + "to": 2265 + }, + { + "from": 933, + "to": 2269 + }, + { + "from": 1608, + "to": 2269 + }, + { + "from": 2271, + "to": 2270 + }, + { + "from": 2272, + "to": 2271 + }, + { + "from": 2274, + "to": 2273 + }, + { + "from": 131, + "to": 2272 + }, + { + "from": 573, + "to": 2272 + }, + { + "from": 2282, + "to": 2272 + }, + { + "from": 134, + "to": 2272 + }, + { + "from": 2283, + "to": 2272 + }, + { + "from": 135, + "to": 2272 + }, + { + "from": 2282, + "to": 2284 + }, + { + "from": 2284, + "to": 2285 + }, + { + "from": 2282, + "to": 2285 + }, + { + "from": 2283, + "to": 2285 + }, + { + "from": 131, + "to": 2286 + }, + { + "from": 135, + "to": 2286 + }, + { + "from": 134, + "to": 2286 + }, + { + "from": 573, + "to": 2286 + }, + { + "from": 2288, + "to": 2287 + }, + { + "from": 2289, + "to": 2287 + }, + { + "from": 1576, + "to": 2299 + }, + { + "from": 2302, + "to": 2301 + }, + { + "from": 2303, + "to": 2301 + }, + { + "from": 2311, + "to": 2310 + }, + { + "from": 2312, + "to": 2310 + }, + { + "from": 2311, + "to": 2313 + }, + { + "from": 2312, + "to": 2313 + }, + { + "from": 2318, + "to": 2317 + }, + { + "from": 2323, + "to": 2322 + }, + { + "from": 1448, + "to": 2334 + }, + { + "from": 2334, + "to": 2335 + }, + { + "from": 2348, + "to": 2347 + }, + { + "from": 2349, + "to": 2347 + }, + { + "from": 1763, + "to": 2353 + }, + { + "from": 1776, + "to": 2354 + }, + { + "from": 1222, + "to": 2354 + }, + { + "from": 573, + "to": 2354 + }, + { + "from": 1871, + "to": 2362 + }, + { + "from": 595, + "to": 2364 + }, + { + "from": 1510, + "to": 2364 + }, + { + "from": 598, + "to": 2364 + }, + { + "from": 1511, + "to": 2364 + }, + { + "from": 2365, + "to": 2364 + }, + { + "from": 2366, + "to": 2364 + }, + { + "from": 2369, + "to": 2371 + }, + { + "from": 2385, + "to": 2384 + }, + { + "from": 169, + "to": 2385 + }, + { + "from": 571, + "to": 2385 + }, + { + "from": 573, + "to": 2385 + }, + { + "from": 171, + "to": 2385 + }, + { + "from": 1348, + "to": 2386 + }, + { + "from": 2386, + "to": 2387 + }, + { + "from": 2387, + "to": 2388 + }, + { + "from": 2393, + "to": 2392 + }, + { + "from": 17, + "to": 2393 + }, + { + "from": 1756, + "to": 2395 + }, + { + "from": 1763, + "to": 2395 + }, + { + "from": 2397, + "to": 2396 + }, + { + "from": 2397, + "to": 2398 + }, + { + "from": 2399, + "to": 2398 + }, + { + "from": 2397, + "to": 2399 + }, + { + "from": 1685, + "to": 2399 + }, + { + "from": 2402, + "to": 2401 + }, + { + "from": 2403, + "to": 2401 + }, + { + "from": 1619, + "to": 2404 + }, + { + "from": 2405, + "to": 2404 + }, + { + "from": 2404, + "to": 2406 + }, + { + "from": 2178, + "to": 2409 + }, + { + "from": 180, + "to": 178 + }, + { + "from": 2109, + "to": 2415 + }, + { + "from": 687, + "to": 2422 + }, + { + "from": 1987, + "to": 2422 + }, + { + "from": 1988, + "to": 2423 + }, + { + "from": 2424, + "to": 2423 + }, + { + "from": 1987, + "to": 2425 + }, + { + "from": 2039, + "to": 2426 + }, + { + "from": 2427, + "to": 2426 + }, + { + "from": 2426, + "to": 2426 + }, + { + "from": 380, + "to": 2433 + }, + { + "from": 383, + "to": 2433 + }, + { + "from": 294, + "to": 2434 + }, + { + "from": 445, + "to": 2435 + }, + { + "from": 294, + "to": 2435 + }, + { + "from": 43, + "to": 2446 + }, + { + "from": 44, + "to": 2446 + }, + { + "from": 45, + "to": 2446 + }, + { + "from": 1756, + "to": 2447 + }, + { + "from": 1756, + "to": 2448 + }, + { + "from": 414, + "to": 2089 + }, + { + "from": 1999, + "to": 2089 + }, + { + "from": 2092, + "to": 2089 + }, + { + "from": 55, + "to": 2449 + }, + { + "from": 2449, + "to": 2450 + }, + { + "from": 57, + "to": 2450 + }, + { + "from": 678, + "to": 676 + }, + { + "from": 678, + "to": 677 + }, + { + "from": 2469, + "to": 2468 + }, + { + "from": 2470, + "to": 2468 + }, + { + "from": 676, + "to": 2471 + }, + { + "from": 677, + "to": 2471 + }, + { + "from": 678, + "to": 2471 + }, + { + "from": 676, + "to": 2474 + }, + { + "from": 677, + "to": 2474 + }, + { + "from": 678, + "to": 2474 + }, + { + "from": 198, + "to": 2476 + }, + { + "from": 199, + "to": 2476 + }, + { + "from": 200, + "to": 2476 + }, + { + "from": 596, + "to": 2481 + }, + { + "from": 2487, + "to": 2486 + }, + { + "from": 1453, + "to": 2498 + }, + { + "from": 1455, + "to": 2498 + }, + { + "from": 2499, + "to": 2498 + }, + { + "from": 2508, + "to": 2507 + }, + { + "from": 2509, + "to": 2507 + }, + { + "from": 2516, + "to": 2515 + }, + { + "from": 1958, + "to": 2517 + }, + { + "from": 1958, + "to": 2518 + }, + { + "from": 2520, + "to": 2519 + }, + { + "from": 2521, + "to": 2519 + }, + { + "from": 1958, + "to": 2522 + }, + { + "from": 1152, + "to": 2533 + }, + { + "from": 667, + "to": 2533 + }, + { + "from": 133, + "to": 2533 + }, + { + "from": 687, + "to": 2533 + }, + { + "from": 26, + "to": 2533 + }, + { + "from": 27, + "to": 2533 + }, + { + "from": 28, + "to": 2533 + }, + { + "from": 2533, + "to": 2534 + }, + { + "from": 2547, + "to": 2546 + }, + { + "from": 2548, + "to": 2546 + }, + { + "from": 2550, + "to": 2549 + }, + { + "from": 2364, + "to": 2549 + }, + { + "from": 2551, + "to": 2549 + }, + { + "from": 2552, + "to": 2549 + }, + { + "from": 2553, + "to": 2549 + }, + { + "from": 2550, + "to": 2554 + }, + { + "from": 1516, + "to": 2554 + }, + { + "from": 27, + "to": 2555 + }, + { + "from": 571, + "to": 2555 + }, + { + "from": 953, + "to": 2555 + }, + { + "from": 133, + "to": 2555 + }, + { + "from": 30, + "to": 2555 + }, + { + "from": 27, + "to": 2556 + }, + { + "from": 464, + "to": 2556 + }, + { + "from": 132, + "to": 2556 + }, + { + "from": 30, + "to": 2556 + }, + { + "from": 596, + "to": 2556 + }, + { + "from": 1552, + "to": 2559 + }, + { + "from": 2562, + "to": 2561 + }, + { + "from": 2563, + "to": 2561 + }, + { + "from": 2570, + "to": 2569 + }, + { + "from": 2569, + "to": 2571 + }, + { + "from": 1348, + "to": 2570 + }, + { + "from": 1348, + "to": 2572 + }, + { + "from": 2572, + "to": 2573 + }, + { + "from": 294, + "to": 2574 + }, + { + "from": 2576, + "to": 2575 + }, + { + "from": 1684, + "to": 2580 + }, + { + "from": 1683, + "to": 2397 + }, + { + "from": 1686, + "to": 2397 + }, + { + "from": 769, + "to": 2581 + }, + { + "from": 1582, + "to": 2581 + }, + { + "from": 2409, + "to": 2582 + }, + { + "from": 687, + "to": 2587 + }, + { + "from": 1987, + "to": 2587 + }, + { + "from": 1147, + "to": 2587 + }, + { + "from": 1986, + "to": 2589 + }, + { + "from": 2590, + "to": 2589 + }, + { + "from": 834, + "to": 2596 + }, + { + "from": 2617, + "to": 2616 + }, + { + "from": 1728, + "to": 2616 + }, + { + "from": 2618, + "to": 2616 + }, + { + "from": 2616, + "to": 2616 + }, + { + "from": 294, + "to": 2620 + }, + { + "from": 553, + "to": 2214 + }, + { + "from": 1090, + "to": 2214 + }, + { + "from": 557, + "to": 2214 + }, + { + "from": 2621, + "to": 2214 + }, + { + "from": 2622, + "to": 2214 + }, + { + "from": 294, + "to": 2623 + }, + { + "from": 553, + "to": 2622 + }, + { + "from": 557, + "to": 2622 + }, + { + "from": 667, + "to": 2622 + }, + { + "from": 2638, + "to": 2637 + }, + { + "from": 2637, + "to": 2639 + }, + { + "from": 1514, + "to": 2640 + }, + { + "from": 1074, + "to": 2640 + }, + { + "from": 1516, + "to": 2640 + }, + { + "from": 1509, + "to": 1514 + }, + { + "from": 2070, + "to": 1514 + }, + { + "from": 1512, + "to": 1514 + }, + { + "from": 2641, + "to": 1514 + }, + { + "from": 2647, + "to": 2646 + }, + { + "from": 2648, + "to": 2647 + }, + { + "from": 922, + "to": 2653 + }, + { + "from": 2657, + "to": 2656 + }, + { + "from": 2658, + "to": 2656 + }, + { + "from": 2657, + "to": 2661 + }, + { + "from": 2669, + "to": 2668 + }, + { + "from": 178, + "to": 179 + }, + { + "from": 1453, + "to": 2690 + }, + { + "from": 743, + "to": 2690 + }, + { + "from": 2691, + "to": 2690 + }, + { + "from": 1279, + "to": 2693 + }, + { + "from": 1675, + "to": 2693 + }, + { + "from": 888, + "to": 2694 + }, + { + "from": 889, + "to": 2694 + }, + { + "from": 2696, + "to": 2695 + }, + { + "from": 2697, + "to": 2695 + }, + { + "from": 1830, + "to": 2699 + }, + { + "from": 1974, + "to": 2699 + }, + { + "from": 614, + "to": 2749 + }, + { + "from": 1890, + "to": 2757 + }, + { + "from": 1891, + "to": 2757 + }, + { + "from": 2758, + "to": 2757 + }, + { + "from": 2759, + "to": 2757 + }, + { + "from": 2760, + "to": 2757 + }, + { + "from": 1899, + "to": 2757 + }, + { + "from": 2334, + "to": 2761 + }, + { + "from": 1448, + "to": 2763 + }, + { + "from": 2765, + "to": 2764 + }, + { + "from": 2340, + "to": 2764 + }, + { + "from": 1183, + "to": 2764 + }, + { + "from": 1742, + "to": 2770 + }, + { + "from": 1743, + "to": 2770 + }, + { + "from": 2772, + "to": 2771 + }, + { + "from": 2773, + "to": 2771 + }, + { + "from": 498, + "to": 501 + }, + { + "from": 2788, + "to": 2787 + }, + { + "from": 354, + "to": 2787 + }, + { + "from": 2789, + "to": 2787 + }, + { + "from": 2088, + "to": 2787 + }, + { + "from": 1055, + "to": 2794 + }, + { + "from": 2797, + "to": 2796 + }, + { + "from": 2798, + "to": 2797 + }, + { + "from": 1226, + "to": 2804 + }, + { + "from": 568, + "to": 2804 + }, + { + "from": 1773, + "to": 2804 + }, + { + "from": 1413, + "to": 2804 + }, + { + "from": 1399, + "to": 2804 + }, + { + "from": 419, + "to": 2813 + }, + { + "from": 849, + "to": 2813 + }, + { + "from": 132, + "to": 2813 + }, + { + "from": 407, + "to": 2813 + }, + { + "from": 573, + "to": 2813 + }, + { + "from": 169, + "to": 2813 + }, + { + "from": 171, + "to": 2813 + }, + { + "from": 26, + "to": 2813 + }, + { + "from": 27, + "to": 2813 + }, + { + "from": 28, + "to": 2813 + }, + { + "from": 30, + "to": 2813 + }, + { + "from": 33, + "to": 2813 + }, + { + "from": 34, + "to": 2813 + }, + { + "from": 35, + "to": 2813 + }, + { + "from": 37, + "to": 2813 + }, + { + "from": 38, + "to": 2813 + }, + { + "from": 760, + "to": 2814 + }, + { + "from": 346, + "to": 2814 + }, + { + "from": 2816, + "to": 2815 + }, + { + "from": 2817, + "to": 2815 + }, + { + "from": 1121, + "to": 2815 + }, + { + "from": 1110, + "to": 2840 + }, + { + "from": 1112, + "to": 2840 + }, + { + "from": 1111, + "to": 2840 + }, + { + "from": 1113, + "to": 2840 + }, + { + "from": 1114, + "to": 2840 + }, + { + "from": 1115, + "to": 2840 + }, + { + "from": 2841, + "to": 2840 + }, + { + "from": 2842, + "to": 2840 + }, + { + "from": 1110, + "to": 2843 + }, + { + "from": 1112, + "to": 2843 + }, + { + "from": 1111, + "to": 2843 + }, + { + "from": 1113, + "to": 2843 + }, + { + "from": 1114, + "to": 2843 + }, + { + "from": 1115, + "to": 2843 + }, + { + "from": 2841, + "to": 2843 + }, + { + "from": 2842, + "to": 2843 + }, + { + "from": 2657, + "to": 2844 + }, + { + "from": 1110, + "to": 2845 + }, + { + "from": 1112, + "to": 2845 + }, + { + "from": 1111, + "to": 2845 + }, + { + "from": 1113, + "to": 2845 + }, + { + "from": 1114, + "to": 2845 + }, + { + "from": 1115, + "to": 2845 + }, + { + "from": 2841, + "to": 2845 + }, + { + "from": 2842, + "to": 2845 + }, + { + "from": 1110, + "to": 2846 + }, + { + "from": 1112, + "to": 2846 + }, + { + "from": 1111, + "to": 2846 + }, + { + "from": 1113, + "to": 2846 + }, + { + "from": 1114, + "to": 2846 + }, + { + "from": 1115, + "to": 2846 + }, + { + "from": 2841, + "to": 2846 + }, + { + "from": 2842, + "to": 2846 + }, + { + "from": 2657, + "to": 580 + }, + { + "from": 2858, + "to": 2857 + }, + { + "from": 2859, + "to": 2858 + }, + { + "from": 2860, + "to": 2859 + }, + { + "from": 241, + "to": 2859 + }, + { + "from": 2548, + "to": 2861 + }, + { + "from": 11, + "to": 1066 + }, + { + "from": 17, + "to": 1066 + }, + { + "from": 16, + "to": 1066 + }, + { + "from": 1073, + "to": 1066 + }, + { + "from": 241, + "to": 1066 + }, + { + "from": 1074, + "to": 1066 + }, + { + "from": 16, + "to": 1067 + }, + { + "from": 17, + "to": 1067 + }, + { + "from": 2866, + "to": 2865 + }, + { + "from": 1973, + "to": 1971 + }, + { + "from": 26, + "to": 553 + }, + { + "from": 557, + "to": 553 + }, + { + "from": 132, + "to": 553 + }, + { + "from": 553, + "to": 2216 + }, + { + "from": 557, + "to": 2216 + }, + { + "from": 2869, + "to": 2870 + }, + { + "from": 2873, + "to": 2872 + }, + { + "from": 2878, + "to": 2879 + }, + { + "from": 1056, + "to": 2884 + }, + { + "from": 99, + "to": 2884 + }, + { + "from": 1052, + "to": 2884 + }, + { + "from": 1053, + "to": 2884 + }, + { + "from": 513, + "to": 2884 + }, + { + "from": 2916, + "to": 2915 + }, + { + "from": 2283, + "to": 2915 + }, + { + "from": 2918, + "to": 2917 + }, + { + "from": 2917, + "to": 2919 + }, + { + "from": 2925, + "to": 2924 + }, + { + "from": 240, + "to": 2924 + }, + { + "from": 27, + "to": 2924 + }, + { + "from": 30, + "to": 2924 + }, + { + "from": 708, + "to": 2924 + }, + { + "from": 1516, + "to": 2924 + }, + { + "from": 1990, + "to": 2927 + }, + { + "from": 2928, + "to": 2927 + }, + { + "from": 2929, + "to": 2927 + }, + { + "from": 2930, + "to": 2927 + }, + { + "from": 1516, + "to": 2927 + }, + { + "from": 198, + "to": 2937 + }, + { + "from": 199, + "to": 2937 + }, + { + "from": 200, + "to": 2937 + }, + { + "from": 2945, + "to": 413 + }, + { + "from": 410, + "to": 2945 + }, + { + "from": 405, + "to": 2945 + }, + { + "from": 411, + "to": 2945 + }, + { + "from": 132, + "to": 2945 + }, + { + "from": 407, + "to": 2945 + }, + { + "from": 2948, + "to": 2948 + }, + { + "from": 2949, + "to": 2948 + }, + { + "from": 2947, + "to": 2949 + }, + { + "from": 2949, + "to": 2949 + }, + { + "from": 947, + "to": 2952 + }, + { + "from": 2962, + "to": 2961 + }, + { + "from": 2964, + "to": 2963 + }, + { + "from": 2965, + "to": 2963 + }, + { + "from": 2963, + "to": 2966 + }, + { + "from": 496, + "to": 2967 + }, + { + "from": 2968, + "to": 2967 + }, + { + "from": 1855, + "to": 2974 + }, + { + "from": 17, + "to": 2977 + }, + { + "from": 1073, + "to": 2978 + }, + { + "from": 11, + "to": 2978 + }, + { + "from": 17, + "to": 2978 + }, + { + "from": 573, + "to": 2978 + }, + { + "from": 16, + "to": 2979 + }, + { + "from": 17, + "to": 2979 + }, + { + "from": 2985, + "to": 860 + }, + { + "from": 518, + "to": 860 + }, + { + "from": 519, + "to": 860 + }, + { + "from": 860, + "to": 860 + }, + { + "from": 154, + "to": 860 + }, + { + "from": 155, + "to": 860 + }, + { + "from": 1119, + "to": 2986 + }, + { + "from": 2987, + "to": 2986 + }, + { + "from": 2989, + "to": 2988 + }, + { + "from": 2988, + "to": 2988 + }, + { + "from": 419, + "to": 2990 + }, + { + "from": 849, + "to": 2990 + }, + { + "from": 132, + "to": 2990 + }, + { + "from": 571, + "to": 2990 + }, + { + "from": 407, + "to": 2990 + }, + { + "from": 227, + "to": 2990 + }, + { + "from": 26, + "to": 2990 + }, + { + "from": 27, + "to": 2990 + }, + { + "from": 28, + "to": 2990 + }, + { + "from": 33, + "to": 2990 + }, + { + "from": 34, + "to": 2990 + }, + { + "from": 35, + "to": 2990 + }, + { + "from": 572, + "to": 2990 + }, + { + "from": 2992, + "to": 2992 + }, + { + "from": 2993, + "to": 2992 + }, + { + "from": 3002, + "to": 3003 + }, + { + "from": 3004, + "to": 3003 + }, + { + "from": 3005, + "to": 3003 + }, + { + "from": 3006, + "to": 3003 + }, + { + "from": 3002, + "to": 3004 + }, + { + "from": 3006, + "to": 3004 + }, + { + "from": 3002, + "to": 3008 + }, + { + "from": 3003, + "to": 3008 + }, + { + "from": 3004, + "to": 3008 + }, + { + "from": 3009, + "to": 3008 + }, + { + "from": 3005, + "to": 3008 + }, + { + "from": 3006, + "to": 3008 + }, + { + "from": 3011, + "to": 3010 + }, + { + "from": 3010, + "to": 3012 + }, + { + "from": 2056, + "to": 3011 + }, + { + "from": 3013, + "to": 3011 + }, + { + "from": 2057, + "to": 3011 + }, + { + "from": 3014, + "to": 3014 + }, + { + "from": 2618, + "to": 3014 + }, + { + "from": 3015, + "to": 3014 + }, + { + "from": 2618, + "to": 3016 + }, + { + "from": 3017, + "to": 3016 + }, + { + "from": 3016, + "to": 3016 + }, + { + "from": 2618, + "to": 3018 + }, + { + "from": 3019, + "to": 3019 + }, + { + "from": 3020, + "to": 3019 + }, + { + "from": 3022, + "to": 3021 + }, + { + "from": 2618, + "to": 3021 + }, + { + "from": 3021, + "to": 3021 + }, + { + "from": 2618, + "to": 3023 + }, + { + "from": 3023, + "to": 3023 + }, + { + "from": 3024, + "to": 3023 + }, + { + "from": 3026, + "to": 3025 + }, + { + "from": 3027, + "to": 3025 + }, + { + "from": 3025, + "to": 3025 + }, + { + "from": 2548, + "to": 3050 + }, + { + "from": 3052, + "to": 3051 + }, + { + "from": 3053, + "to": 3054 + }, + { + "from": 3054, + "to": 3055 + }, + { + "from": 3057, + "to": 3056 + }, + { + "from": 3057, + "to": 3058 + }, + { + "from": 1054, + "to": 3064 + }, + { + "from": 3065, + "to": 3064 + }, + { + "from": 554, + "to": 3064 + }, + { + "from": 1052, + "to": 3064 + }, + { + "from": 98, + "to": 3066 + }, + { + "from": 99, + "to": 3066 + }, + { + "from": 3066, + "to": 3067 + }, + { + "from": 3068, + "to": 3067 + }, + { + "from": 98, + "to": 3069 + }, + { + "from": 99, + "to": 3069 + }, + { + "from": 1877, + "to": 3074 + }, + { + "from": 844, + "to": 3075 + }, + { + "from": 845, + "to": 3075 + }, + { + "from": 847, + "to": 3075 + }, + { + "from": 2534, + "to": 3075 + }, + { + "from": 2533, + "to": 3075 + }, + { + "from": 2817, + "to": 2816 + }, + { + "from": 1121, + "to": 2816 + }, + { + "from": 30, + "to": 2816 + }, + { + "from": 37, + "to": 2816 + }, + { + "from": 1364, + "to": 3076 + }, + { + "from": 1120, + "to": 1364 + }, + { + "from": 2816, + "to": 1364 + }, + { + "from": 731, + "to": 3079 + }, + { + "from": 841, + "to": 3079 + }, + { + "from": 3080, + "to": 3079 + }, + { + "from": 3099, + "to": 3098 + }, + { + "from": 147, + "to": 149 + }, + { + "from": 1670, + "to": 3121 + }, + { + "from": 1234, + "to": 3127 + }, + { + "from": 1237, + "to": 3127 + }, + { + "from": 1238, + "to": 3127 + }, + { + "from": 3128, + "to": 3127 + }, + { + "from": 1509, + "to": 3141 + }, + { + "from": 687, + "to": 3141 + }, + { + "from": 1512, + "to": 3141 + }, + { + "from": 2641, + "to": 3141 + }, + { + "from": 240, + "to": 3141 + }, + { + "from": 2070, + "to": 3141 + }, + { + "from": 1516, + "to": 3141 + }, + { + "from": 1990, + "to": 3144 + }, + { + "from": 2928, + "to": 3144 + }, + { + "from": 2929, + "to": 3144 + }, + { + "from": 2930, + "to": 3144 + }, + { + "from": 1990, + "to": 3145 + }, + { + "from": 2928, + "to": 3145 + }, + { + "from": 2929, + "to": 3145 + }, + { + "from": 2930, + "to": 3145 + }, + { + "from": 198, + "to": 3151 + }, + { + "from": 199, + "to": 3151 + }, + { + "from": 200, + "to": 3151 + }, + { + "from": 198, + "to": 3154 + }, + { + "from": 199, + "to": 3154 + }, + { + "from": 200, + "to": 3154 + }, + { + "from": 294, + "to": 3155 + }, + { + "from": 294, + "to": 3157 + }, + { + "from": 294, + "to": 3158 + }, + { + "from": 3160, + "to": 3159 + }, + { + "from": 3159, + "to": 3159 + }, + { + "from": 432, + "to": 3163 + }, + { + "from": 1147, + "to": 3163 + }, + { + "from": 215, + "to": 3163 + }, + { + "from": 589, + "to": 3170 + }, + { + "from": 240, + "to": 3170 + }, + { + "from": 3172, + "to": 3171 + }, + { + "from": 2816, + "to": 3181 + }, + { + "from": 2115, + "to": 3181 + }, + { + "from": 3182, + "to": 3181 + }, + { + "from": 3181, + "to": 3186 + }, + { + "from": 1477, + "to": 3196 + }, + { + "from": 1677, + "to": 3196 + }, + { + "from": 3198, + "to": 3197 + }, + { + "from": 3199, + "to": 3201 + }, + { + "from": 3200, + "to": 3201 + }, + { + "from": 3202, + "to": 3201 + }, + { + "from": 142, + "to": 3204 + }, + { + "from": 3206, + "to": 3205 + }, + { + "from": 3205, + "to": 3207 + }, + { + "from": 1094, + "to": 846 + }, + { + "from": 3209, + "to": 3208 + }, + { + "from": 57, + "to": 3208 + }, + { + "from": 55, + "to": 3209 + }, + { + "from": 16, + "to": 3211 + }, + { + "from": 17, + "to": 3211 + }, + { + "from": 3211, + "to": 3212 + }, + { + "from": 3216, + "to": 3215 + }, + { + "from": 2817, + "to": 3215 + }, + { + "from": 1121, + "to": 3215 + }, + { + "from": 3182, + "to": 3215 + }, + { + "from": 3182, + "to": 3217 + }, + { + "from": 27, + "to": 3219 + }, + { + "from": 28, + "to": 3219 + }, + { + "from": 711, + "to": 3219 + }, + { + "from": 708, + "to": 3219 + }, + { + "from": 33, + "to": 3219 + }, + { + "from": 34, + "to": 3219 + }, + { + "from": 1478, + "to": 3220 + }, + { + "from": 2804, + "to": 3220 + }, + { + "from": 3221, + "to": 3220 + }, + { + "from": 3231, + "to": 3231 + }, + { + "from": 3232, + "to": 3231 + }, + { + "from": 3235, + "to": 3234 + }, + { + "from": 3234, + "to": 3234 + }, + { + "from": 3237, + "to": 3236 + }, + { + "from": 3236, + "to": 3236 + }, + { + "from": 3239, + "to": 3238 + }, + { + "from": 3238, + "to": 3238 + }, + { + "from": 3240, + "to": 3240 + }, + { + "from": 3241, + "to": 3240 + }, + { + "from": 3242, + "to": 3242 + }, + { + "from": 3243, + "to": 3242 + }, + { + "from": 3247, + "to": 3246 + }, + { + "from": 3246, + "to": 3246 + }, + { + "from": 40, + "to": 3249 + }, + { + "from": 3250, + "to": 3249 + }, + { + "from": 687, + "to": 1147 + }, + { + "from": 3263, + "to": 3262 + }, + { + "from": 345, + "to": 3265 + }, + { + "from": 846, + "to": 3265 + }, + { + "from": 1094, + "to": 3265 + }, + { + "from": 1955, + "to": 3265 + }, + { + "from": 2161, + "to": 3267 + }, + { + "from": 3268, + "to": 3267 + }, + { + "from": 571, + "to": 1090 + }, + { + "from": 171, + "to": 1090 + }, + { + "from": 26, + "to": 666 + }, + { + "from": 667, + "to": 666 + }, + { + "from": 1089, + "to": 3269 + }, + { + "from": 134, + "to": 554 + }, + { + "from": 3276, + "to": 554 + }, + { + "from": 169, + "to": 554 + }, + { + "from": 573, + "to": 554 + }, + { + "from": 171, + "to": 554 + }, + { + "from": 3281, + "to": 3281 + }, + { + "from": 3282, + "to": 3281 + }, + { + "from": 593, + "to": 3291 + }, + { + "from": 760, + "to": 3291 + }, + { + "from": 27, + "to": 3291 + }, + { + "from": 30, + "to": 3291 + }, + { + "from": 599, + "to": 3291 + }, + { + "from": 346, + "to": 3291 + }, + { + "from": 687, + "to": 3293 + }, + { + "from": 687, + "to": 3294 + }, + { + "from": 2193, + "to": 3294 + }, + { + "from": 3257, + "to": 3294 + }, + { + "from": 3295, + "to": 3294 + }, + { + "from": 687, + "to": 3296 + }, + { + "from": 1147, + "to": 3296 + }, + { + "from": 3298, + "to": 3297 + }, + { + "from": 226, + "to": 3299 + }, + { + "from": 228, + "to": 3299 + }, + { + "from": 3309, + "to": 1488 + }, + { + "from": 571, + "to": 3309 + }, + { + "from": 572, + "to": 3309 + }, + { + "from": 573, + "to": 3309 + }, + { + "from": 1351, + "to": 3309 + }, + { + "from": 3065, + "to": 3309 + }, + { + "from": 169, + "to": 3309 + }, + { + "from": 171, + "to": 3309 + }, + { + "from": 3080, + "to": 3317 + }, + { + "from": 350, + "to": 3317 + }, + { + "from": 3318, + "to": 3317 + }, + { + "from": 3319, + "to": 3317 + }, + { + "from": 131, + "to": 3323 + }, + { + "from": 135, + "to": 3323 + }, + { + "from": 134, + "to": 3323 + }, + { + "from": 573, + "to": 3323 + }, + { + "from": 3325, + "to": 3324 + }, + { + "from": 1971, + "to": 3326 + }, + { + "from": 1830, + "to": 3326 + }, + { + "from": 1972, + "to": 3326 + }, + { + "from": 1973, + "to": 3326 + }, + { + "from": 1974, + "to": 3326 + }, + { + "from": 55, + "to": 3327 + }, + { + "from": 3327, + "to": 3328 + }, + { + "from": 57, + "to": 3328 + }, + { + "from": 1685, + "to": 3340 + }, + { + "from": 198, + "to": 3344 + }, + { + "from": 199, + "to": 3344 + }, + { + "from": 200, + "to": 3344 + }, + { + "from": 198, + "to": 3346 + }, + { + "from": 199, + "to": 3346 + }, + { + "from": 200, + "to": 3346 + }, + { + "from": 198, + "to": 3349 + }, + { + "from": 199, + "to": 3349 + }, + { + "from": 200, + "to": 3349 + }, + { + "from": 2548, + "to": 3350 + }, + { + "from": 3351, + "to": 3350 + }, + { + "from": 1192, + "to": 3352 + }, + { + "from": 420, + "to": 419 + }, + { + "from": 3363, + "to": 419 + }, + { + "from": 2051, + "to": 419 + }, + { + "from": 3364, + "to": 572 + }, + { + "from": 132, + "to": 572 + }, + { + "from": 407, + "to": 572 + }, + { + "from": 573, + "to": 572 + }, + { + "from": 169, + "to": 572 + }, + { + "from": 171, + "to": 572 + }, + { + "from": 1738, + "to": 3365 + }, + { + "from": 1739, + "to": 3365 + }, + { + "from": 198, + "to": 3367 + }, + { + "from": 199, + "to": 3367 + }, + { + "from": 200, + "to": 3367 + }, + { + "from": 3371, + "to": 3370 + }, + { + "from": 3372, + "to": 3370 + }, + { + "from": 3374, + "to": 3373 + }, + { + "from": 3373, + "to": 3375 + }, + { + "from": 3374, + "to": 3375 + }, + { + "from": 132, + "to": 2968 + }, + { + "from": 407, + "to": 2968 + }, + { + "from": 573, + "to": 2968 + }, + { + "from": 771, + "to": 2968 + }, + { + "from": 169, + "to": 2968 + }, + { + "from": 171, + "to": 2968 + }, + { + "from": 2968, + "to": 3376 + }, + { + "from": 1364, + "to": 3377 + }, + { + "from": 3182, + "to": 3377 + }, + { + "from": 2816, + "to": 3182 + }, + { + "from": 805, + "to": 3397 + }, + { + "from": 1094, + "to": 1683 + }, + { + "from": 55, + "to": 3403 + }, + { + "from": 3403, + "to": 3404 + }, + { + "from": 57, + "to": 3404 + }, + { + "from": 3407, + "to": 3406 + }, + { + "from": 3408, + "to": 3406 + }, + { + "from": 3409, + "to": 3406 + }, + { + "from": 3410, + "to": 3406 + }, + { + "from": 3196, + "to": 3406 + }, + { + "from": 3411, + "to": 3406 + }, + { + "from": 3412, + "to": 3406 + }, + { + "from": 3413, + "to": 3406 + }, + { + "from": 3414, + "to": 3406 + }, + { + "from": 3210, + "to": 3406 + }, + { + "from": 2392, + "to": 3406 + }, + { + "from": 3415, + "to": 3406 + }, + { + "from": 584, + "to": 3417 + }, + { + "from": 3418, + "to": 3417 + }, + { + "from": 1120, + "to": 3419 + }, + { + "from": 1119, + "to": 3419 + }, + { + "from": 571, + "to": 3419 + }, + { + "from": 613, + "to": 3419 + }, + { + "from": 144, + "to": 3418 + }, + { + "from": 145, + "to": 3418 + }, + { + "from": 518, + "to": 3418 + }, + { + "from": 519, + "to": 3418 + }, + { + "from": 150, + "to": 3418 + }, + { + "from": 151, + "to": 3418 + }, + { + "from": 152, + "to": 3418 + }, + { + "from": 153, + "to": 3418 + }, + { + "from": 44, + "to": 3418 + }, + { + "from": 45, + "to": 3418 + }, + { + "from": 3423, + "to": 3422 + }, + { + "from": 3424, + "to": 3422 + }, + { + "from": 1459, + "to": 3425 + }, + { + "from": 1460, + "to": 3425 + }, + { + "from": 914, + "to": 3429 + }, + { + "from": 3430, + "to": 3429 + }, + { + "from": 913, + "to": 3431 + }, + { + "from": 3433, + "to": 2210 + }, + { + "from": 3436, + "to": 3435 + }, + { + "from": 3435, + "to": 3435 + }, + { + "from": 3438, + "to": 3437 + }, + { + "from": 3437, + "to": 3437 + }, + { + "from": 3439, + "to": 3439 + }, + { + "from": 3440, + "to": 3439 + }, + { + "from": 3441, + "to": 3441 + }, + { + "from": 3442, + "to": 3441 + }, + { + "from": 3444, + "to": 3443 + }, + { + "from": 3443, + "to": 3443 + }, + { + "from": 3446, + "to": 3445 + }, + { + "from": 3445, + "to": 3445 + }, + { + "from": 3450, + "to": 3449 + }, + { + "from": 3449, + "to": 3449 + }, + { + "from": 3452, + "to": 3451 + }, + { + "from": 1226, + "to": 3453 + }, + { + "from": 793, + "to": 3453 + }, + { + "from": 1227, + "to": 3453 + }, + { + "from": 3453, + "to": 3454 + }, + { + "from": 553, + "to": 1952 + }, + { + "from": 955, + "to": 1952 + }, + { + "from": 557, + "to": 1952 + }, + { + "from": 915, + "to": 1952 + }, + { + "from": 111, + "to": 3470 + }, + { + "from": 111, + "to": 3471 + }, + { + "from": 110, + "to": 3474 + }, + { + "from": 111, + "to": 3474 + }, + { + "from": 593, + "to": 3480 + }, + { + "from": 599, + "to": 3480 + }, + { + "from": 760, + "to": 3480 + }, + { + "from": 3481, + "to": 3480 + }, + { + "from": 3482, + "to": 3480 + }, + { + "from": 346, + "to": 3480 + }, + { + "from": 2555, + "to": 3480 + }, + { + "from": 2556, + "to": 3480 + }, + { + "from": 3480, + "to": 3483 + }, + { + "from": 3485, + "to": 3484 + }, + { + "from": 1933, + "to": 3485 + }, + { + "from": 240, + "to": 3490 + }, + { + "from": 1516, + "to": 3490 + }, + { + "from": 1552, + "to": 3492 + }, + { + "from": 1552, + "to": 3493 + }, + { + "from": 88, + "to": 2765 + }, + { + "from": 99, + "to": 2765 + }, + { + "from": 1053, + "to": 2765 + }, + { + "from": 891, + "to": 3506 + }, + { + "from": 892, + "to": 3506 + }, + { + "from": 893, + "to": 3506 + }, + { + "from": 402, + "to": 3512 + }, + { + "from": 406, + "to": 3512 + }, + { + "from": 410, + "to": 3513 + }, + { + "from": 655, + "to": 3514 + }, + { + "from": 406, + "to": 3514 + }, + { + "from": 132, + "to": 3515 + }, + { + "from": 407, + "to": 3515 + }, + { + "from": 2173, + "to": 3515 + }, + { + "from": 405, + "to": 3515 + }, + { + "from": 3516, + "to": 3515 + }, + { + "from": 3063, + "to": 3515 + }, + { + "from": 410, + "to": 3515 + }, + { + "from": 411, + "to": 3515 + }, + { + "from": 406, + "to": 3515 + }, + { + "from": 655, + "to": 3515 + }, + { + "from": 655, + "to": 3516 + }, + { + "from": 406, + "to": 3516 + }, + { + "from": 655, + "to": 3517 + }, + { + "from": 406, + "to": 3517 + }, + { + "from": 402, + "to": 3518 + }, + { + "from": 419, + "to": 3519 + }, + { + "from": 655, + "to": 3519 + }, + { + "from": 406, + "to": 3519 + }, + { + "from": 420, + "to": 3519 + }, + { + "from": 1110, + "to": 3523 + }, + { + "from": 1112, + "to": 3523 + }, + { + "from": 1111, + "to": 3523 + }, + { + "from": 1113, + "to": 3523 + }, + { + "from": 1114, + "to": 3523 + }, + { + "from": 1115, + "to": 3523 + }, + { + "from": 2841, + "to": 3523 + }, + { + "from": 2842, + "to": 3523 + }, + { + "from": 3481, + "to": 3531 + }, + { + "from": 3364, + "to": 3531 + }, + { + "from": 132, + "to": 3531 + }, + { + "from": 2555, + "to": 3531 + }, + { + "from": 16, + "to": 1065 + }, + { + "from": 17, + "to": 1065 + }, + { + "from": 198, + "to": 3532 + }, + { + "from": 199, + "to": 3532 + }, + { + "from": 200, + "to": 3532 + }, + { + "from": 198, + "to": 3533 + }, + { + "from": 199, + "to": 3533 + }, + { + "from": 200, + "to": 3533 + }, + { + "from": 198, + "to": 3534 + }, + { + "from": 199, + "to": 3534 + }, + { + "from": 200, + "to": 3534 + }, + { + "from": 198, + "to": 3535 + }, + { + "from": 199, + "to": 3535 + }, + { + "from": 200, + "to": 3535 + }, + { + "from": 198, + "to": 3536 + }, + { + "from": 199, + "to": 3536 + }, + { + "from": 200, + "to": 3536 + }, + { + "from": 198, + "to": 3537 + }, + { + "from": 199, + "to": 3537 + }, + { + "from": 200, + "to": 3537 + }, + { + "from": 1410, + "to": 3268 + }, + { + "from": 552, + "to": 1410 + }, + { + "from": 3553, + "to": 3552 + }, + { + "from": 553, + "to": 914 + }, + { + "from": 557, + "to": 914 + }, + { + "from": 571, + "to": 914 + }, + { + "from": 3564, + "to": 3563 + }, + { + "from": 8, + "to": 3574 + }, + { + "from": 6, + "to": 3574 + }, + { + "from": 226, + "to": 3574 + }, + { + "from": 472, + "to": 3588 + }, + { + "from": 472, + "to": 3589 + }, + { + "from": 472, + "to": 3590 + }, + { + "from": 7, + "to": 8 + }, + { + "from": 227, + "to": 8 + }, + { + "from": 1348, + "to": 3604 + }, + { + "from": 731, + "to": 3604 + }, + { + "from": 564, + "to": 3604 + }, + { + "from": 3604, + "to": 1838 + }, + { + "from": 8, + "to": 3605 + }, + { + "from": 6, + "to": 3605 + }, + { + "from": 3607, + "to": 3606 + }, + { + "from": 3610, + "to": 3609 + }, + { + "from": 771, + "to": 497 + }, + { + "from": 3614, + "to": 3613 + }, + { + "from": 3613, + "to": 3615 + }, + { + "from": 291, + "to": 3626 + }, + { + "from": 292, + "to": 3626 + }, + { + "from": 293, + "to": 3626 + }, + { + "from": 294, + "to": 3626 + }, + { + "from": 291, + "to": 3627 + }, + { + "from": 292, + "to": 3627 + }, + { + "from": 293, + "to": 3627 + }, + { + "from": 294, + "to": 3627 + }, + { + "from": 291, + "to": 3628 + }, + { + "from": 292, + "to": 3628 + }, + { + "from": 293, + "to": 3628 + }, + { + "from": 294, + "to": 3628 + }, + { + "from": 291, + "to": 3629 + }, + { + "from": 292, + "to": 3629 + }, + { + "from": 293, + "to": 3629 + }, + { + "from": 294, + "to": 3629 + }, + { + "from": 291, + "to": 3630 + }, + { + "from": 292, + "to": 3630 + }, + { + "from": 293, + "to": 3630 + }, + { + "from": 294, + "to": 3630 + }, + { + "from": 3631, + "to": 2323 + }, + { + "from": 1896, + "to": 3631 + }, + { + "from": 3633, + "to": 3632 + }, + { + "from": 2072, + "to": 3632 + }, + { + "from": 3634, + "to": 3633 + }, + { + "from": 2072, + "to": 3633 + }, + { + "from": 2072, + "to": 3634 + }, + { + "from": 2408, + "to": 3637 + }, + { + "from": 3646, + "to": 3646 + }, + { + "from": 3647, + "to": 3646 + }, + { + "from": 3649, + "to": 3648 + }, + { + "from": 3648, + "to": 3648 + }, + { + "from": 3650, + "to": 3650 + }, + { + "from": 3651, + "to": 3650 + }, + { + "from": 3653, + "to": 3652 + }, + { + "from": 3652, + "to": 3652 + }, + { + "from": 3655, + "to": 3654 + }, + { + "from": 3654, + "to": 3654 + }, + { + "from": 3657, + "to": 3656 + }, + { + "from": 3656, + "to": 3656 + }, + { + "from": 2216, + "to": 3686 + }, + { + "from": 1488, + "to": 3687 + }, + { + "from": 3688, + "to": 3687 + }, + { + "from": 3689, + "to": 3687 + }, + { + "from": 28, + "to": 1955 + }, + { + "from": 571, + "to": 1955 + }, + { + "from": 573, + "to": 1955 + }, + { + "from": 1351, + "to": 1955 + }, + { + "from": 563, + "to": 2170 + }, + { + "from": 564, + "to": 2170 + }, + { + "from": 3702, + "to": 3701 + }, + { + "from": 1509, + "to": 241 + }, + { + "from": 1510, + "to": 241 + }, + { + "from": 687, + "to": 241 + }, + { + "from": 1508, + "to": 241 + }, + { + "from": 3257, + "to": 241 + }, + { + "from": 3295, + "to": 241 + }, + { + "from": 1513, + "to": 241 + }, + { + "from": 2070, + "to": 241 + }, + { + "from": 2366, + "to": 241 + }, + { + "from": 3707, + "to": 3706 + }, + { + "from": 3710, + "to": 3709 + }, + { + "from": 183, + "to": 657 + }, + { + "from": 657, + "to": 658 + }, + { + "from": 687, + "to": 3728 + }, + { + "from": 1147, + "to": 3728 + }, + { + "from": 26, + "to": 3729 + }, + { + "from": 419, + "to": 3729 + }, + { + "from": 420, + "to": 3729 + }, + { + "from": 667, + "to": 3729 + }, + { + "from": 1264, + "to": 3729 + }, + { + "from": 2878, + "to": 3733 + }, + { + "from": 1973, + "to": 3735 + }, + { + "from": 1971, + "to": 3736 + }, + { + "from": 1830, + "to": 3736 + }, + { + "from": 1972, + "to": 3736 + }, + { + "from": 1973, + "to": 3736 + }, + { + "from": 1974, + "to": 3736 + }, + { + "from": 1971, + "to": 3738 + }, + { + "from": 1830, + "to": 3738 + }, + { + "from": 3739, + "to": 3738 + }, + { + "from": 3736, + "to": 3738 + }, + { + "from": 1972, + "to": 3738 + }, + { + "from": 1973, + "to": 3738 + }, + { + "from": 1974, + "to": 3738 + }, + { + "from": 3193, + "to": 3742 + }, + { + "from": 6, + "to": 3743 + }, + { + "from": 786, + "to": 3743 + }, + { + "from": 787, + "to": 3743 + }, + { + "from": 226, + "to": 3743 + }, + { + "from": 228, + "to": 3743 + }, + { + "from": 229, + "to": 3743 + }, + { + "from": 419, + "to": 3746 + }, + { + "from": 411, + "to": 3746 + }, + { + "from": 420, + "to": 3746 + }, + { + "from": 399, + "to": 3747 + }, + { + "from": 226, + "to": 3747 + }, + { + "from": 3748, + "to": 3747 + }, + { + "from": 413, + "to": 3749 + }, + { + "from": 168, + "to": 3749 + }, + { + "from": 170, + "to": 3749 + }, + { + "from": 410, + "to": 3750 + }, + { + "from": 411, + "to": 3750 + }, + { + "from": 655, + "to": 3751 + }, + { + "from": 402, + "to": 3752 + }, + { + "from": 406, + "to": 3752 + }, + { + "from": 419, + "to": 1264 + }, + { + "from": 420, + "to": 1264 + }, + { + "from": 1263, + "to": 1264 + }, + { + "from": 849, + "to": 1264 + }, + { + "from": 1265, + "to": 1264 + }, + { + "from": 849, + "to": 711 + }, + { + "from": 132, + "to": 711 + }, + { + "from": 407, + "to": 711 + }, + { + "from": 709, + "to": 711 + }, + { + "from": 405, + "to": 711 + }, + { + "from": 1265, + "to": 711 + }, + { + "from": 26, + "to": 711 + }, + { + "from": 1263, + "to": 711 + }, + { + "from": 1264, + "to": 711 + }, + { + "from": 712, + "to": 711 + }, + { + "from": 599, + "to": 711 + }, + { + "from": 659, + "to": 3762 + }, + { + "from": 660, + "to": 3762 + }, + { + "from": 183, + "to": 3762 + }, + { + "from": 178, + "to": 3762 + }, + { + "from": 179, + "to": 3762 + }, + { + "from": 180, + "to": 3762 + }, + { + "from": 3774, + "to": 3773 + }, + { + "from": 1265, + "to": 3777 + }, + { + "from": 849, + "to": 3777 + }, + { + "from": 3780, + "to": 3782 + }, + { + "from": 3783, + "to": 3782 + }, + { + "from": 3785, + "to": 3553 + }, + { + "from": 3552, + "to": 3553 + }, + { + "from": 3553, + "to": 3785 + }, + { + "from": 3789, + "to": 3789 + }, + { + "from": 3790, + "to": 3789 + }, + { + "from": 3796, + "to": 3795 + }, + { + "from": 3801, + "to": 3800 + }, + { + "from": 241, + "to": 3805 + }, + { + "from": 3811, + "to": 3810 + }, + { + "from": 1936, + "to": 3811 + }, + { + "from": 419, + "to": 3820 + }, + { + "from": 3839, + "to": 1839 + }, + { + "from": 3840, + "to": 1839 + }, + { + "from": 3841, + "to": 3842 + }, + { + "from": 3843, + "to": 3840 + }, + { + "from": 1594, + "to": 3848 + }, + { + "from": 1595, + "to": 3848 + }, + { + "from": 506, + "to": 3851 + }, + { + "from": 2405, + "to": 3857 + }, + { + "from": 687, + "to": 588 + }, + { + "from": 1147, + "to": 588 + }, + { + "from": 588, + "to": 3868 + }, + { + "from": 588, + "to": 3869 + }, + { + "from": 3876, + "to": 3875 + }, + { + "from": 294, + "to": 3875 + }, + { + "from": 26, + "to": 3877 + }, + { + "from": 35, + "to": 3877 + }, + { + "from": 3883, + "to": 3882 + }, + { + "from": 3884, + "to": 3882 + }, + { + "from": 914, + "to": 1954 + }, + { + "from": 915, + "to": 1954 + }, + { + "from": 3887, + "to": 3887 + }, + { + "from": 3888, + "to": 3887 + }, + { + "from": 3890, + "to": 3889 + }, + { + "from": 3889, + "to": 3889 + }, + { + "from": 3892, + "to": 3891 + }, + { + "from": 3891, + "to": 3891 + }, + { + "from": 3894, + "to": 3893 + }, + { + "from": 3893, + "to": 3893 + }, + { + "from": 3896, + "to": 3895 + }, + { + "from": 3895, + "to": 3895 + }, + { + "from": 143, + "to": 3906 + }, + { + "from": 3906, + "to": 3906 + }, + { + "from": 157, + "to": 3906 + }, + { + "from": 143, + "to": 3908 + }, + { + "from": 156, + "to": 3908 + }, + { + "from": 157, + "to": 3908 + }, + { + "from": 143, + "to": 3909 + }, + { + "from": 156, + "to": 3909 + }, + { + "from": 157, + "to": 3909 + }, + { + "from": 143, + "to": 3910 + }, + { + "from": 156, + "to": 3910 + }, + { + "from": 157, + "to": 3910 + }, + { + "from": 3920, + "to": 3921 + }, + { + "from": 445, + "to": 3924 + }, + { + "from": 1987, + "to": 3924 + }, + { + "from": 1692, + "to": 3924 + }, + { + "from": 445, + "to": 3925 + }, + { + "from": 446, + "to": 3925 + }, + { + "from": 1513, + "to": 1152 + }, + { + "from": 169, + "to": 270 + }, + { + "from": 171, + "to": 270 + }, + { + "from": 26, + "to": 270 + }, + { + "from": 27, + "to": 270 + }, + { + "from": 28, + "to": 270 + }, + { + "from": 3501, + "to": 270 + }, + { + "from": 241, + "to": 3931 + }, + { + "from": 687, + "to": 3932 + }, + { + "from": 589, + "to": 3932 + }, + { + "from": 240, + "to": 3932 + }, + { + "from": 3936, + "to": 3935 + }, + { + "from": 3945, + "to": 3945 + }, + { + "from": 3965, + "to": 3964 + }, + { + "from": 436, + "to": 3965 + }, + { + "from": 890, + "to": 3972 + }, + { + "from": 1032, + "to": 3972 + }, + { + "from": 644, + "to": 3972 + }, + { + "from": 3973, + "to": 3974 + }, + { + "from": 1182, + "to": 3974 + }, + { + "from": 2340, + "to": 3974 + }, + { + "from": 1183, + "to": 3974 + }, + { + "from": 166, + "to": 1998 + }, + { + "from": 414, + "to": 3975 + }, + { + "from": 3977, + "to": 3976 + }, + { + "from": 3978, + "to": 3976 + }, + { + "from": 1844, + "to": 3976 + }, + { + "from": 1220, + "to": 3976 + }, + { + "from": 794, + "to": 3976 + }, + { + "from": 655, + "to": 3976 + }, + { + "from": 1990, + "to": 3979 + }, + { + "from": 2928, + "to": 3979 + }, + { + "from": 2929, + "to": 3979 + }, + { + "from": 2930, + "to": 3979 + }, + { + "from": 1516, + "to": 3979 + }, + { + "from": 1684, + "to": 3982 + }, + { + "from": 3983, + "to": 3982 + }, + { + "from": 166, + "to": 3985 + }, + { + "from": 1192, + "to": 921 + }, + { + "from": 1193, + "to": 921 + }, + { + "from": 1194, + "to": 921 + }, + { + "from": 1192, + "to": 3988 + }, + { + "from": 1193, + "to": 3988 + }, + { + "from": 1194, + "to": 3988 + }, + { + "from": 1192, + "to": 3989 + }, + { + "from": 1193, + "to": 3989 + }, + { + "from": 1194, + "to": 3989 + }, + { + "from": 1192, + "to": 3990 + }, + { + "from": 1193, + "to": 3990 + }, + { + "from": 1194, + "to": 3990 + }, + { + "from": 1192, + "to": 3991 + }, + { + "from": 1193, + "to": 3991 + }, + { + "from": 1194, + "to": 3991 + }, + { + "from": 1192, + "to": 3992 + }, + { + "from": 1193, + "to": 3992 + }, + { + "from": 1194, + "to": 3992 + }, + { + "from": 2696, + "to": 3995 + }, + { + "from": 2697, + "to": 3995 + }, + { + "from": 575, + "to": 4007 + }, + { + "from": 4010, + "to": 4009 + }, + { + "from": 294, + "to": 291 + }, + { + "from": 294, + "to": 292 + }, + { + "from": 294, + "to": 293 + }, + { + "from": 3796, + "to": 4014 + }, + { + "from": 705, + "to": 706 + }, + { + "from": 4027, + "to": 4026 + }, + { + "from": 4034, + "to": 4033 + }, + { + "from": 419, + "to": 26 + }, + { + "from": 849, + "to": 26 + }, + { + "from": 419, + "to": 28 + }, + { + "from": 849, + "to": 28 + }, + { + "from": 132, + "to": 28 + }, + { + "from": 407, + "to": 28 + }, + { + "from": 26, + "to": 28 + }, + { + "from": 35, + "to": 28 + }, + { + "from": 571, + "to": 30 + }, + { + "from": 572, + "to": 30 + }, + { + "from": 227, + "to": 30 + }, + { + "from": 26, + "to": 30 + }, + { + "from": 28, + "to": 30 + }, + { + "from": 35, + "to": 30 + }, + { + "from": 2130, + "to": 4057 + }, + { + "from": 2131, + "to": 4057 + }, + { + "from": 4061, + "to": 4060 + }, + { + "from": 11, + "to": 142 + }, + { + "from": 2060, + "to": 4066 + }, + { + "from": 2061, + "to": 4066 + }, + { + "from": 2062, + "to": 4066 + }, + { + "from": 4066, + "to": 1032 + }, + { + "from": 2060, + "to": 1032 + }, + { + "from": 2061, + "to": 1032 + }, + { + "from": 2062, + "to": 1032 + }, + { + "from": 588, + "to": 4069 + }, + { + "from": 464, + "to": 1510 + }, + { + "from": 133, + "to": 1510 + }, + { + "from": 291, + "to": 4071 + }, + { + "from": 292, + "to": 4071 + }, + { + "from": 293, + "to": 4071 + }, + { + "from": 294, + "to": 4071 + }, + { + "from": 291, + "to": 4072 + }, + { + "from": 292, + "to": 4072 + }, + { + "from": 293, + "to": 4072 + }, + { + "from": 294, + "to": 4072 + }, + { + "from": 291, + "to": 4073 + }, + { + "from": 292, + "to": 4073 + }, + { + "from": 293, + "to": 4073 + }, + { + "from": 294, + "to": 4073 + }, + { + "from": 291, + "to": 4074 + }, + { + "from": 292, + "to": 4074 + }, + { + "from": 293, + "to": 4074 + }, + { + "from": 294, + "to": 4074 + }, + { + "from": 291, + "to": 4075 + }, + { + "from": 292, + "to": 4075 + }, + { + "from": 293, + "to": 4075 + }, + { + "from": 294, + "to": 4075 + }, + { + "from": 291, + "to": 4076 + }, + { + "from": 292, + "to": 4076 + }, + { + "from": 293, + "to": 4076 + }, + { + "from": 294, + "to": 4076 + }, + { + "from": 291, + "to": 4077 + }, + { + "from": 292, + "to": 4077 + }, + { + "from": 293, + "to": 4077 + }, + { + "from": 294, + "to": 4077 + }, + { + "from": 2550, + "to": 4078 + }, + { + "from": 1890, + "to": 4091 + }, + { + "from": 1895, + "to": 4091 + }, + { + "from": 4092, + "to": 4091 + }, + { + "from": 4093, + "to": 4091 + }, + { + "from": 4094, + "to": 4091 + }, + { + "from": 589, + "to": 4113 + }, + { + "from": 240, + "to": 4113 + }, + { + "from": 4114, + "to": 4113 + }, + { + "from": 4115, + "to": 4113 + }, + { + "from": 1514, + "to": 4113 + }, + { + "from": 1516, + "to": 4113 + }, + { + "from": 1265, + "to": 405 + }, + { + "from": 849, + "to": 405 + }, + { + "from": 419, + "to": 1265 + }, + { + "from": 420, + "to": 1265 + }, + { + "from": 2051, + "to": 420 + }, + { + "from": 4116, + "to": 420 + }, + { + "from": 2052, + "to": 420 + }, + { + "from": 132, + "to": 7 + }, + { + "from": 169, + "to": 7 + }, + { + "from": 573, + "to": 7 + }, + { + "from": 171, + "to": 7 + }, + { + "from": 1226, + "to": 4120 + }, + { + "from": 3843, + "to": 4120 + }, + { + "from": 4126, + "to": 4127 + }, + { + "from": 3938, + "to": 4132 + }, + { + "from": 1836, + "to": 1835 + }, + { + "from": 1837, + "to": 1835 + }, + { + "from": 1838, + "to": 1835 + }, + { + "from": 1839, + "to": 1835 + }, + { + "from": 667, + "to": 1513 + }, + { + "from": 133, + "to": 1513 + }, + { + "from": 571, + "to": 2161 + }, + { + "from": 1509, + "to": 2161 + }, + { + "from": 169, + "to": 2161 + }, + { + "from": 171, + "to": 2161 + }, + { + "from": 1513, + "to": 2161 + }, + { + "from": 3689, + "to": 4143 + }, + { + "from": 2161, + "to": 4143 + }, + { + "from": 286, + "to": 4144 + }, + { + "from": 4144, + "to": 4145 + }, + { + "from": 4144, + "to": 4146 + }, + { + "from": 4144, + "to": 4147 + }, + { + "from": 4148, + "to": 4149 + }, + { + "from": 1163, + "to": 4162 + }, + { + "from": 4160, + "to": 4162 + }, + { + "from": 636, + "to": 4166 + }, + { + "from": 291, + "to": 4167 + }, + { + "from": 292, + "to": 4167 + }, + { + "from": 293, + "to": 4167 + }, + { + "from": 294, + "to": 4167 + }, + { + "from": 291, + "to": 4168 + }, + { + "from": 292, + "to": 4168 + }, + { + "from": 293, + "to": 4168 + }, + { + "from": 294, + "to": 4168 + }, + { + "from": 769, + "to": 3983 + }, + { + "from": 1241, + "to": 3983 + }, + { + "from": 2581, + "to": 3983 + }, + { + "from": 399, + "to": 4177 + }, + { + "from": 399, + "to": 4178 + }, + { + "from": 399, + "to": 4179 + }, + { + "from": 588, + "to": 4180 + }, + { + "from": 3868, + "to": 4180 + }, + { + "from": 2533, + "to": 4180 + }, + { + "from": 2534, + "to": 4180 + }, + { + "from": 2282, + "to": 4193 + }, + { + "from": 2283, + "to": 4193 + }, + { + "from": 849, + "to": 712 + }, + { + "from": 132, + "to": 712 + }, + { + "from": 407, + "to": 712 + }, + { + "from": 709, + "to": 712 + }, + { + "from": 405, + "to": 712 + }, + { + "from": 1265, + "to": 712 + }, + { + "from": 26, + "to": 712 + }, + { + "from": 1263, + "to": 712 + }, + { + "from": 1264, + "to": 712 + }, + { + "from": 711, + "to": 712 + }, + { + "from": 599, + "to": 712 + }, + { + "from": 226, + "to": 4197 + }, + { + "from": 228, + "to": 4197 + }, + { + "from": 229, + "to": 4197 + }, + { + "from": 27, + "to": 89 + }, + { + "from": 667, + "to": 89 + }, + { + "from": 142, + "to": 4215 + }, + { + "from": 393, + "to": 4215 + }, + { + "from": 730, + "to": 4217 + }, + { + "from": 732, + "to": 4217 + }, + { + "from": 731, + "to": 4217 + }, + { + "from": 294, + "to": 4217 + }, + { + "from": 730, + "to": 4220 + }, + { + "from": 732, + "to": 4220 + }, + { + "from": 731, + "to": 4220 + }, + { + "from": 294, + "to": 4220 + }, + { + "from": 730, + "to": 4221 + }, + { + "from": 732, + "to": 4221 + }, + { + "from": 731, + "to": 4221 + }, + { + "from": 294, + "to": 4221 + }, + { + "from": 2099, + "to": 4265 + }, + { + "from": 1222, + "to": 4265 + }, + { + "from": 1093, + "to": 4266 + }, + { + "from": 4267, + "to": 4266 + }, + { + "from": 3275, + "to": 4266 + }, + { + "from": 389, + "to": 4266 + }, + { + "from": 2157, + "to": 4266 + }, + { + "from": 551, + "to": 4266 + }, + { + "from": 666, + "to": 4266 + }, + { + "from": 3690, + "to": 4266 + }, + { + "from": 345, + "to": 4268 + }, + { + "from": 4266, + "to": 4268 + }, + { + "from": 551, + "to": 4268 + }, + { + "from": 389, + "to": 4268 + }, + { + "from": 3690, + "to": 4268 + }, + { + "from": 854, + "to": 4269 + }, + { + "from": 4270, + "to": 4269 + }, + { + "from": 856, + "to": 4269 + }, + { + "from": 857, + "to": 4269 + }, + { + "from": 858, + "to": 4269 + }, + { + "from": 4271, + "to": 4269 + }, + { + "from": 58, + "to": 4269 + }, + { + "from": 59, + "to": 4269 + }, + { + "from": 4133, + "to": 4269 + }, + { + "from": 4272, + "to": 4269 + }, + { + "from": 4273, + "to": 4269 + }, + { + "from": 1652, + "to": 4269 + }, + { + "from": 1656, + "to": 4269 + }, + { + "from": 1657, + "to": 4269 + }, + { + "from": 3315, + "to": 4269 + }, + { + "from": 1899, + "to": 4269 + }, + { + "from": 4274, + "to": 4269 + }, + { + "from": 4275, + "to": 4269 + }, + { + "from": 4276, + "to": 4269 + }, + { + "from": 4277, + "to": 4269 + }, + { + "from": 4262, + "to": 4269 + }, + { + "from": 4278, + "to": 4269 + }, + { + "from": 4279, + "to": 4269 + }, + { + "from": 3236, + "to": 4269 + }, + { + "from": 3238, + "to": 4269 + }, + { + "from": 4280, + "to": 4269 + }, + { + "from": 4281, + "to": 4269 + }, + { + "from": 4282, + "to": 4269 + }, + { + "from": 323, + "to": 4269 + }, + { + "from": 324, + "to": 4269 + }, + { + "from": 506, + "to": 4284 + }, + { + "from": 215, + "to": 4287 + }, + { + "from": 4288, + "to": 4287 + }, + { + "from": 4289, + "to": 4287 + }, + { + "from": 1636, + "to": 4287 + }, + { + "from": 687, + "to": 4289 + }, + { + "from": 1147, + "to": 4289 + }, + { + "from": 588, + "to": 4291 + }, + { + "from": 4289, + "to": 4291 + }, + { + "from": 588, + "to": 4292 + }, + { + "from": 4293, + "to": 1836 + }, + { + "from": 291, + "to": 4299 + }, + { + "from": 292, + "to": 4299 + }, + { + "from": 293, + "to": 4299 + }, + { + "from": 294, + "to": 4299 + }, + { + "from": 291, + "to": 4300 + }, + { + "from": 292, + "to": 4300 + }, + { + "from": 293, + "to": 4300 + }, + { + "from": 294, + "to": 4300 + }, + { + "from": 26, + "to": 346 + }, + { + "from": 27, + "to": 346 + }, + { + "from": 28, + "to": 346 + }, + { + "from": 33, + "to": 346 + }, + { + "from": 35, + "to": 346 + }, + { + "from": 38, + "to": 346 + }, + { + "from": 291, + "to": 4301 + }, + { + "from": 292, + "to": 4301 + }, + { + "from": 293, + "to": 4301 + }, + { + "from": 294, + "to": 4301 + }, + { + "from": 291, + "to": 4302 + }, + { + "from": 292, + "to": 4302 + }, + { + "from": 293, + "to": 4302 + }, + { + "from": 294, + "to": 4302 + }, + { + "from": 405, + "to": 4307 + }, + { + "from": 4308, + "to": 4307 + }, + { + "from": 4309, + "to": 4307 + }, + { + "from": 132, + "to": 4307 + }, + { + "from": 506, + "to": 4317 + }, + { + "from": 4332, + "to": 4333 + }, + { + "from": 4342, + "to": 4341 + }, + { + "from": 2962, + "to": 4347 + }, + { + "from": 2841, + "to": 4357 + }, + { + "from": 2842, + "to": 4357 + }, + { + "from": 4359, + "to": 4358 + }, + { + "from": 4359, + "to": 4360 + }, + { + "from": 562, + "to": 4359 + }, + { + "from": 2841, + "to": 4361 + }, + { + "from": 2842, + "to": 4361 + }, + { + "from": 508, + "to": 2841 + }, + { + "from": 508, + "to": 2842 + }, + { + "from": 3796, + "to": 4366 + }, + { + "from": 2039, + "to": 4370 + }, + { + "from": 960, + "to": 4370 + }, + { + "from": 4371, + "to": 4370 + }, + { + "from": 4372, + "to": 4370 + }, + { + "from": 4373, + "to": 4370 + }, + { + "from": 4374, + "to": 4370 + }, + { + "from": 4222, + "to": 4375 + }, + { + "from": 4374, + "to": 4375 + }, + { + "from": 4370, + "to": 4375 + }, + { + "from": 4375, + "to": 4375 + }, + { + "from": 4376, + "to": 4375 + }, + { + "from": 4372, + "to": 4375 + }, + { + "from": 4377, + "to": 4375 + }, + { + "from": 4372, + "to": 4372 + }, + { + "from": 960, + "to": 4372 + }, + { + "from": 4373, + "to": 4372 + }, + { + "from": 4378, + "to": 4372 + }, + { + "from": 4222, + "to": 4379 + }, + { + "from": 4378, + "to": 4379 + }, + { + "from": 960, + "to": 4379 + }, + { + "from": 4375, + "to": 4379 + }, + { + "from": 4376, + "to": 4379 + }, + { + "from": 4372, + "to": 4379 + }, + { + "from": 4373, + "to": 4379 + }, + { + "from": 4377, + "to": 4379 + }, + { + "from": 4370, + "to": 4380 + }, + { + "from": 4375, + "to": 4380 + }, + { + "from": 4379, + "to": 4380 + }, + { + "from": 1423, + "to": 4392 + }, + { + "from": 1425, + "to": 4392 + }, + { + "from": 20, + "to": 4392 + }, + { + "from": 21, + "to": 4392 + }, + { + "from": 4393, + "to": 4392 + }, + { + "from": 4394, + "to": 4392 + }, + { + "from": 1453, + "to": 4427 + }, + { + "from": 1455, + "to": 4427 + }, + { + "from": 2499, + "to": 4427 + }, + { + "from": 4432, + "to": 4431 + }, + { + "from": 4433, + "to": 4431 + }, + { + "from": 2402, + "to": 4434 + }, + { + "from": 2403, + "to": 4434 + }, + { + "from": 4436, + "to": 4435 + }, + { + "from": 4437, + "to": 4435 + }, + { + "from": 1477, + "to": 1479 + }, + { + "from": 7, + "to": 1479 + }, + { + "from": 3, + "to": 1479 + }, + { + "from": 1480, + "to": 1479 + }, + { + "from": 9, + "to": 1479 + }, + { + "from": 469, + "to": 4442 + }, + { + "from": 535, + "to": 534 + }, + { + "from": 2772, + "to": 4443 + }, + { + "from": 2771, + "to": 4444 + }, + { + "from": 687, + "to": 4451 + }, + { + "from": 1147, + "to": 4451 + }, + { + "from": 4011, + "to": 4456 + }, + { + "from": 3796, + "to": 4456 + }, + { + "from": 4472, + "to": 756 + }, + { + "from": 1685, + "to": 756 + }, + { + "from": 758, + "to": 757 + }, + { + "from": 756, + "to": 758 + }, + { + "from": 4473, + "to": 2207 + }, + { + "from": 914, + "to": 4474 + }, + { + "from": 1529, + "to": 4474 + }, + { + "from": 3430, + "to": 4474 + }, + { + "from": 915, + "to": 4474 + }, + { + "from": 294, + "to": 4475 + }, + { + "from": 294, + "to": 4476 + }, + { + "from": 294, + "to": 4477 + }, + { + "from": 294, + "to": 4478 + }, + { + "from": 4481, + "to": 4480 + }, + { + "from": 4484, + "to": 4483 + }, + { + "from": 4486, + "to": 4485 + }, + { + "from": 4488, + "to": 4487 + }, + { + "from": 4491, + "to": 4490 + }, + { + "from": 4493, + "to": 4492 + }, + { + "from": 407, + "to": 227 + }, + { + "from": 2656, + "to": 4503 + }, + { + "from": 687, + "to": 4505 + }, + { + "from": 215, + "to": 4505 + }, + { + "from": 216, + "to": 4505 + }, + { + "from": 687, + "to": 4512 + }, + { + "from": 4513, + "to": 4512 + }, + { + "from": 4514, + "to": 4512 + }, + { + "from": 687, + "to": 4516 + }, + { + "from": 1147, + "to": 4516 + }, + { + "from": 571, + "to": 4523 + }, + { + "from": 1217, + "to": 4523 + }, + { + "from": 1351, + "to": 4523 + }, + { + "from": 589, + "to": 4525 + }, + { + "from": 240, + "to": 4525 + }, + { + "from": 1630, + "to": 4527 + }, + { + "from": 4555, + "to": 4556 + }, + { + "from": 4546, + "to": 4562 + }, + { + "from": 4568, + "to": 4569 + }, + { + "from": 1855, + "to": 4570 + }, + { + "from": 4572, + "to": 4571 + }, + { + "from": 1418, + "to": 4571 + }, + { + "from": 1418, + "to": 4572 + }, + { + "from": 345, + "to": 2162 + }, + { + "from": 270, + "to": 2162 + }, + { + "from": 242, + "to": 2162 + }, + { + "from": 345, + "to": 4574 + }, + { + "from": 2162, + "to": 4574 + }, + { + "from": 572, + "to": 4575 + }, + { + "from": 419, + "to": 4575 + }, + { + "from": 849, + "to": 4575 + }, + { + "from": 132, + "to": 4575 + }, + { + "from": 571, + "to": 4575 + }, + { + "from": 407, + "to": 4575 + }, + { + "from": 227, + "to": 4575 + }, + { + "from": 169, + "to": 4575 + }, + { + "from": 171, + "to": 4575 + }, + { + "from": 27, + "to": 4575 + }, + { + "from": 28, + "to": 4575 + }, + { + "from": 30, + "to": 4575 + }, + { + "from": 573, + "to": 4575 + }, + { + "from": 33, + "to": 4575 + }, + { + "from": 34, + "to": 4575 + }, + { + "from": 37, + "to": 4575 + }, + { + "from": 38, + "to": 4575 + }, + { + "from": 687, + "to": 4576 + }, + { + "from": 270, + "to": 4576 + }, + { + "from": 419, + "to": 4577 + }, + { + "from": 849, + "to": 4577 + }, + { + "from": 132, + "to": 4577 + }, + { + "from": 571, + "to": 4577 + }, + { + "from": 407, + "to": 4577 + }, + { + "from": 227, + "to": 4577 + }, + { + "from": 169, + "to": 4577 + }, + { + "from": 171, + "to": 4577 + }, + { + "from": 573, + "to": 4577 + }, + { + "from": 4575, + "to": 4577 + }, + { + "from": 572, + "to": 4577 + }, + { + "from": 4589, + "to": 4590 + }, + { + "from": 4589, + "to": 4591 + }, + { + "from": 4605, + "to": 4604 + }, + { + "from": 4436, + "to": 4616 + }, + { + "from": 4437, + "to": 4616 + }, + { + "from": 2369, + "to": 4617 + }, + { + "from": 2773, + "to": 4618 + }, + { + "from": 4546, + "to": 4621 + }, + { + "from": 1594, + "to": 4621 + }, + { + "from": 3423, + "to": 4630 + }, + { + "from": 3424, + "to": 4630 + }, + { + "from": 2004, + "to": 2178 + }, + { + "from": 2007, + "to": 2178 + }, + { + "from": 4645, + "to": 4644 + }, + { + "from": 4644, + "to": 4646 + }, + { + "from": 3269, + "to": 4647 + }, + { + "from": 4267, + "to": 4647 + }, + { + "from": 2211, + "to": 4647 + }, + { + "from": 4647, + "to": 4648 + }, + { + "from": 294, + "to": 4649 + }, + { + "from": 294, + "to": 4650 + }, + { + "from": 294, + "to": 4651 + }, + { + "from": 294, + "to": 4652 + }, + { + "from": 294, + "to": 4653 + }, + { + "from": 294, + "to": 4654 + }, + { + "from": 294, + "to": 4655 + }, + { + "from": 2299, + "to": 4670 + }, + { + "from": 4677, + "to": 4676 + }, + { + "from": 4678, + "to": 4676 + }, + { + "from": 1265, + "to": 709 + }, + { + "from": 849, + "to": 709 + }, + { + "from": 419, + "to": 171 + }, + { + "from": 420, + "to": 171 + }, + { + "from": 2051, + "to": 171 + }, + { + "from": 4116, + "to": 171 + }, + { + "from": 2052, + "to": 171 + }, + { + "from": 4687, + "to": 4687 + }, + { + "from": 4692, + "to": 4692 + }, + { + "from": 432, + "to": 4693 + }, + { + "from": 1147, + "to": 4693 + }, + { + "from": 215, + "to": 4693 + }, + { + "from": 1387, + "to": 4694 + }, + { + "from": 1388, + "to": 4694 + }, + { + "from": 2100, + "to": 3415 + }, + { + "from": 291, + "to": 4701 + }, + { + "from": 292, + "to": 4701 + }, + { + "from": 293, + "to": 4701 + }, + { + "from": 294, + "to": 4701 + }, + { + "from": 291, + "to": 4702 + }, + { + "from": 292, + "to": 4702 + }, + { + "from": 293, + "to": 4702 + }, + { + "from": 294, + "to": 4702 + }, + { + "from": 291, + "to": 4703 + }, + { + "from": 292, + "to": 4703 + }, + { + "from": 293, + "to": 4703 + }, + { + "from": 294, + "to": 4703 + }, + { + "from": 291, + "to": 4704 + }, + { + "from": 292, + "to": 4704 + }, + { + "from": 293, + "to": 4704 + }, + { + "from": 294, + "to": 4704 + }, + { + "from": 568, + "to": 1642 + }, + { + "from": 2099, + "to": 1881 + }, + { + "from": 568, + "to": 1881 + }, + { + "from": 568, + "to": 1882 + }, + { + "from": 1642, + "to": 1882 + }, + { + "from": 55, + "to": 4708 + }, + { + "from": 4708, + "to": 4709 + }, + { + "from": 57, + "to": 4709 + }, + { + "from": 3250, + "to": 4724 + }, + { + "from": 4725, + "to": 3250 + }, + { + "from": 1826, + "to": 3250 + }, + { + "from": 849, + "to": 4729 + }, + { + "from": 7, + "to": 12 + }, + { + "from": 227, + "to": 12 + }, + { + "from": 3057, + "to": 4740 + }, + { + "from": 1418, + "to": 4743 + }, + { + "from": 568, + "to": 4749 + }, + { + "from": 1631, + "to": 4749 + }, + { + "from": 2974, + "to": 4753 + }, + { + "from": 4753, + "to": 4754 + }, + { + "from": 399, + "to": 4761 + }, + { + "from": 769, + "to": 4762 + }, + { + "from": 4762, + "to": 4763 + }, + { + "from": 4763, + "to": 1937 + }, + { + "from": 99, + "to": 4765 + }, + { + "from": 1052, + "to": 4765 + }, + { + "from": 1053, + "to": 4765 + }, + { + "from": 1054, + "to": 4765 + }, + { + "from": 1055, + "to": 4765 + }, + { + "from": 88, + "to": 4765 + }, + { + "from": 98, + "to": 4765 + }, + { + "from": 88, + "to": 4766 + }, + { + "from": 4767, + "to": 4766 + }, + { + "from": 99, + "to": 4766 + }, + { + "from": 1052, + "to": 4766 + }, + { + "from": 1053, + "to": 4766 + }, + { + "from": 4769, + "to": 4770 + }, + { + "from": 4771, + "to": 4770 + }, + { + "from": 4772, + "to": 4770 + }, + { + "from": 4773, + "to": 4770 + }, + { + "from": 4772, + "to": 4771 + }, + { + "from": 4772, + "to": 4774 + }, + { + "from": 4773, + "to": 4774 + }, + { + "from": 1092, + "to": 4267 + }, + { + "from": 1093, + "to": 4267 + }, + { + "from": 2212, + "to": 4267 + }, + { + "from": 665, + "to": 2212 + }, + { + "from": 666, + "to": 2212 + }, + { + "from": 2216, + "to": 2212 + }, + { + "from": 914, + "to": 2212 + }, + { + "from": 915, + "to": 2212 + }, + { + "from": 2215, + "to": 2212 + }, + { + "from": 410, + "to": 1844 + }, + { + "from": 405, + "to": 1844 + }, + { + "from": 132, + "to": 1844 + }, + { + "from": 407, + "to": 1844 + }, + { + "from": 168, + "to": 166 + }, + { + "from": 170, + "to": 166 + }, + { + "from": 1844, + "to": 168 + }, + { + "from": 1220, + "to": 168 + }, + { + "from": 3977, + "to": 168 + }, + { + "from": 3978, + "to": 168 + }, + { + "from": 794, + "to": 168 + }, + { + "from": 2153, + "to": 4782 + }, + { + "from": 3170, + "to": 4786 + }, + { + "from": 241, + "to": 4786 + }, + { + "from": 1074, + "to": 4786 + }, + { + "from": 4790, + "to": 4789 + }, + { + "from": 940, + "to": 4789 + }, + { + "from": 1117, + "to": 4789 + }, + { + "from": 4101, + "to": 4789 + }, + { + "from": 1594, + "to": 4791 + }, + { + "from": 1595, + "to": 4791 + }, + { + "from": 2622, + "to": 2621 + }, + { + "from": 414, + "to": 4809 + }, + { + "from": 410, + "to": 4813 + }, + { + "from": 419, + "to": 4813 + }, + { + "from": 420, + "to": 4813 + }, + { + "from": 4814, + "to": 4813 + }, + { + "from": 4815, + "to": 4813 + }, + { + "from": 506, + "to": 4822 + }, + { + "from": 506, + "to": 4823 + }, + { + "from": 506, + "to": 4824 + }, + { + "from": 4825, + "to": 4828 + }, + { + "from": 4826, + "to": 4828 + }, + { + "from": 4827, + "to": 4828 + }, + { + "from": 2212, + "to": 4829 + }, + { + "from": 1756, + "to": 4846 + }, + { + "from": 1756, + "to": 4848 + }, + { + "from": 1756, + "to": 4850 + }, + { + "from": 1756, + "to": 4851 + }, + { + "from": 1756, + "to": 4853 + }, + { + "from": 4855, + "to": 4854 + }, + { + "from": 2063, + "to": 4860 + }, + { + "from": 1509, + "to": 2928 + }, + { + "from": 2070, + "to": 2928 + }, + { + "from": 1512, + "to": 2928 + }, + { + "from": 2641, + "to": 2928 + }, + { + "from": 4886, + "to": 4885 + }, + { + "from": 4888, + "to": 4887 + }, + { + "from": 142, + "to": 4887 + }, + { + "from": 393, + "to": 4887 + }, + { + "from": 142, + "to": 4888 + }, + { + "from": 0, + "to": 393 + }, + { + "from": 132, + "to": 3977 + }, + { + "from": 407, + "to": 3977 + }, + { + "from": 132, + "to": 3978 + }, + { + "from": 407, + "to": 3978 + }, + { + "from": 3977, + "to": 4891 + }, + { + "from": 3271, + "to": 4891 + }, + { + "from": 132, + "to": 4891 + }, + { + "from": 3978, + "to": 4891 + }, + { + "from": 573, + "to": 4891 + }, + { + "from": 709, + "to": 4891 + }, + { + "from": 1844, + "to": 4891 + }, + { + "from": 169, + "to": 4891 + }, + { + "from": 4892, + "to": 4891 + }, + { + "from": 171, + "to": 4891 + }, + { + "from": 794, + "to": 4891 + }, + { + "from": 3977, + "to": 4894 + }, + { + "from": 3271, + "to": 4894 + }, + { + "from": 844, + "to": 4894 + }, + { + "from": 132, + "to": 4894 + }, + { + "from": 18, + "to": 4894 + }, + { + "from": 573, + "to": 4894 + }, + { + "from": 2429, + "to": 4894 + }, + { + "from": 1844, + "to": 4894 + }, + { + "from": 1220, + "to": 4894 + }, + { + "from": 169, + "to": 4894 + }, + { + "from": 171, + "to": 4894 + }, + { + "from": 794, + "to": 4894 + }, + { + "from": 3978, + "to": 4894 + }, + { + "from": 1278, + "to": 4897 + }, + { + "from": 1280, + "to": 4897 + }, + { + "from": 2099, + "to": 1222 + }, + { + "from": 4905, + "to": 4904 + }, + { + "from": 4906, + "to": 4905 + }, + { + "from": 4904, + "to": 4907 + }, + { + "from": 1871, + "to": 4926 + }, + { + "from": 2144, + "to": 4928 + }, + { + "from": 527, + "to": 4933 + }, + { + "from": 1933, + "to": 4934 + }, + { + "from": 527, + "to": 1931 + }, + { + "from": 1931, + "to": 1933 + }, + { + "from": 1933, + "to": 4935 + }, + { + "from": 1933, + "to": 4936 + }, + { + "from": 527, + "to": 4937 + }, + { + "from": 1933, + "to": 4938 + }, + { + "from": 4941, + "to": 4940 + }, + { + "from": 4945, + "to": 4944 + }, + { + "from": 4946, + "to": 4944 + }, + { + "from": 596, + "to": 4947 + }, + { + "from": 1177, + "to": 4948 + }, + { + "from": 4950, + "to": 4949 + }, + { + "from": 4954, + "to": 4953 + }, + { + "from": 1117, + "to": 940 + }, + { + "from": 4101, + "to": 940 + }, + { + "from": 1409, + "to": 4960 + }, + { + "from": 3268, + "to": 4960 + }, + { + "from": 144, + "to": 4965 + }, + { + "from": 145, + "to": 4965 + }, + { + "from": 146, + "to": 4965 + }, + { + "from": 148, + "to": 4965 + }, + { + "from": 149, + "to": 4965 + }, + { + "from": 150, + "to": 4965 + }, + { + "from": 151, + "to": 4965 + }, + { + "from": 152, + "to": 4965 + }, + { + "from": 147, + "to": 4965 + }, + { + "from": 153, + "to": 4965 + }, + { + "from": 154, + "to": 4965 + }, + { + "from": 155, + "to": 4965 + }, + { + "from": 44, + "to": 4965 + }, + { + "from": 45, + "to": 4965 + }, + { + "from": 1987, + "to": 4966 + }, + { + "from": 1987, + "to": 4967 + }, + { + "from": 1987, + "to": 4968 + }, + { + "from": 1988, + "to": 4968 + }, + { + "from": 709, + "to": 4968 + }, + { + "from": 506, + "to": 4969 + }, + { + "from": 506, + "to": 4970 + }, + { + "from": 506, + "to": 4971 + }, + { + "from": 506, + "to": 4972 + }, + { + "from": 506, + "to": 4973 + }, + { + "from": 506, + "to": 4974 + }, + { + "from": 3430, + "to": 950 + }, + { + "from": 2214, + "to": 4976 + }, + { + "from": 3430, + "to": 4976 + }, + { + "from": 144, + "to": 4977 + }, + { + "from": 145, + "to": 4977 + }, + { + "from": 146, + "to": 4977 + }, + { + "from": 147, + "to": 4977 + }, + { + "from": 148, + "to": 4977 + }, + { + "from": 149, + "to": 4977 + }, + { + "from": 150, + "to": 4977 + }, + { + "from": 151, + "to": 4977 + }, + { + "from": 152, + "to": 4977 + }, + { + "from": 153, + "to": 4977 + }, + { + "from": 154, + "to": 4977 + }, + { + "from": 155, + "to": 4977 + }, + { + "from": 44, + "to": 4977 + }, + { + "from": 45, + "to": 4977 + }, + { + "from": 3423, + "to": 4985 + }, + { + "from": 595, + "to": 2553 + }, + { + "from": 1510, + "to": 2553 + }, + { + "from": 598, + "to": 2553 + }, + { + "from": 1511, + "to": 2553 + }, + { + "from": 2365, + "to": 2553 + }, + { + "from": 2366, + "to": 2553 + }, + { + "from": 1756, + "to": 3614 + }, + { + "from": 3614, + "to": 4994 + }, + { + "from": 3614, + "to": 4995 + }, + { + "from": 5007, + "to": 5006 + }, + { + "from": 5008, + "to": 5006 + }, + { + "from": 5010, + "to": 5009 + }, + { + "from": 2618, + "to": 5009 + }, + { + "from": 5009, + "to": 5009 + }, + { + "from": 676, + "to": 5011 + }, + { + "from": 677, + "to": 5011 + }, + { + "from": 678, + "to": 5011 + }, + { + "from": 342, + "to": 3702 + }, + { + "from": 3, + "to": 2 + }, + { + "from": 9, + "to": 2 + }, + { + "from": 1834, + "to": 5020 + }, + { + "from": 1835, + "to": 5020 + }, + { + "from": 1684, + "to": 5022 + }, + { + "from": 3984, + "to": 5024 + }, + { + "from": 769, + "to": 5025 + }, + { + "from": 1684, + "to": 5026 + }, + { + "from": 2581, + "to": 5026 + }, + { + "from": 5032, + "to": 5033 + }, + { + "from": 1890, + "to": 5048 + }, + { + "from": 1891, + "to": 5048 + }, + { + "from": 1894, + "to": 5048 + }, + { + "from": 1895, + "to": 5048 + }, + { + "from": 4093, + "to": 5048 + }, + { + "from": 1898, + "to": 5048 + }, + { + "from": 1899, + "to": 5048 + }, + { + "from": 5048, + "to": 5048 + }, + { + "from": 1890, + "to": 5049 + }, + { + "from": 1891, + "to": 5049 + }, + { + "from": 1894, + "to": 5049 + }, + { + "from": 1895, + "to": 5049 + }, + { + "from": 4093, + "to": 5049 + }, + { + "from": 1898, + "to": 5049 + }, + { + "from": 1899, + "to": 5049 + }, + { + "from": 5048, + "to": 5049 + }, + { + "from": 1226, + "to": 5050 + }, + { + "from": 2804, + "to": 5050 + }, + { + "from": 1227, + "to": 5050 + }, + { + "from": 3221, + "to": 5050 + }, + { + "from": 3414, + "to": 5051 + }, + { + "from": 3221, + "to": 5051 + }, + { + "from": 3221, + "to": 5052 + }, + { + "from": 1399, + "to": 5052 + }, + { + "from": 1772, + "to": 5052 + }, + { + "from": 1773, + "to": 5052 + }, + { + "from": 3415, + "to": 5052 + }, + { + "from": 198, + "to": 5054 + }, + { + "from": 199, + "to": 5054 + }, + { + "from": 200, + "to": 5054 + }, + { + "from": 1226, + "to": 3221 + }, + { + "from": 568, + "to": 3221 + }, + { + "from": 1773, + "to": 3221 + }, + { + "from": 1413, + "to": 3221 + }, + { + "from": 1399, + "to": 3221 + }, + { + "from": 1226, + "to": 3 + }, + { + "from": 5058, + "to": 3 + }, + { + "from": 1227, + "to": 3 + }, + { + "from": 1510, + "to": 5068 + }, + { + "from": 2365, + "to": 5068 + }, + { + "from": 1511, + "to": 5068 + }, + { + "from": 2366, + "to": 5068 + }, + { + "from": 464, + "to": 595 + }, + { + "from": 133, + "to": 595 + }, + { + "from": 198, + "to": 5080 + }, + { + "from": 199, + "to": 5080 + }, + { + "from": 200, + "to": 5080 + }, + { + "from": 198, + "to": 5084 + }, + { + "from": 199, + "to": 5084 + }, + { + "from": 200, + "to": 5084 + }, + { + "from": 5089, + "to": 5088 + }, + { + "from": 3694, + "to": 5091 + }, + { + "from": 4432, + "to": 5094 + }, + { + "from": 4433, + "to": 5094 + }, + { + "from": 5095, + "to": 5095 + }, + { + "from": 3045, + "to": 5099 + }, + { + "from": 1983, + "to": 5099 + }, + { + "from": 687, + "to": 5103 + }, + { + "from": 1987, + "to": 5103 + }, + { + "from": 709, + "to": 5104 + }, + { + "from": 1988, + "to": 5104 + }, + { + "from": 3978, + "to": 5104 + }, + { + "from": 242, + "to": 5104 + }, + { + "from": 1987, + "to": 5105 + }, + { + "from": 1092, + "to": 5113 + }, + { + "from": 1529, + "to": 5113 + }, + { + "from": 1093, + "to": 5113 + }, + { + "from": 1091, + "to": 5113 + }, + { + "from": 5115, + "to": 5114 + }, + { + "from": 5116, + "to": 5115 + }, + { + "from": 5121, + "to": 5120 + }, + { + "from": 5127, + "to": 5126 + }, + { + "from": 5126, + "to": 5126 + }, + { + "from": 1756, + "to": 5141 + }, + { + "from": 676, + "to": 5152 + }, + { + "from": 677, + "to": 5152 + }, + { + "from": 678, + "to": 5152 + }, + { + "from": 3059, + "to": 5160 + }, + { + "from": 3057, + "to": 5160 + }, + { + "from": 3061, + "to": 5160 + }, + { + "from": 3062, + "to": 5160 + }, + { + "from": 687, + "to": 2916 + }, + { + "from": 2282, + "to": 2916 + }, + { + "from": 130, + "to": 2916 + }, + { + "from": 596, + "to": 2916 + }, + { + "from": 130, + "to": 2282 + }, + { + "from": 5163, + "to": 2282 + }, + { + "from": 571, + "to": 2282 + }, + { + "from": 30, + "to": 2282 + }, + { + "from": 596, + "to": 2282 + }, + { + "from": 130, + "to": 5166 + }, + { + "from": 135, + "to": 5166 + }, + { + "from": 571, + "to": 5166 + }, + { + "from": 849, + "to": 5166 + }, + { + "from": 28, + "to": 5166 + }, + { + "from": 573, + "to": 5163 + }, + { + "from": 130, + "to": 2283 + }, + { + "from": 571, + "to": 2283 + }, + { + "from": 1448, + "to": 5175 + }, + { + "from": 769, + "to": 5184 + }, + { + "from": 2108, + "to": 5184 + }, + { + "from": 2109, + "to": 5184 + }, + { + "from": 2580, + "to": 5184 + }, + { + "from": 1684, + "to": 5184 + }, + { + "from": 2581, + "to": 5184 + }, + { + "from": 1775, + "to": 1224 + }, + { + "from": 1226, + "to": 1224 + }, + { + "from": 1413, + "to": 1224 + }, + { + "from": 1776, + "to": 1224 + }, + { + "from": 5193, + "to": 5192 + }, + { + "from": 5194, + "to": 5192 + }, + { + "from": 3977, + "to": 5197 + }, + { + "from": 419, + "to": 5197 + }, + { + "from": 2090, + "to": 5197 + }, + { + "from": 270, + "to": 5197 + }, + { + "from": 4892, + "to": 5197 + }, + { + "from": 3271, + "to": 5197 + }, + { + "from": 1844, + "to": 5197 + }, + { + "from": 1220, + "to": 5197 + }, + { + "from": 420, + "to": 5197 + }, + { + "from": 709, + "to": 5197 + }, + { + "from": 169, + "to": 5197 + }, + { + "from": 171, + "to": 5197 + }, + { + "from": 1222, + "to": 5197 + }, + { + "from": 1989, + "to": 5197 + }, + { + "from": 794, + "to": 5197 + }, + { + "from": 436, + "to": 5197 + }, + { + "from": 1988, + "to": 5197 + }, + { + "from": 3978, + "to": 5197 + }, + { + "from": 1598, + "to": 5202 + }, + { + "from": 1274, + "to": 198 + }, + { + "from": 1276, + "to": 198 + }, + { + "from": 1274, + "to": 199 + }, + { + "from": 1276, + "to": 199 + }, + { + "from": 1274, + "to": 200 + }, + { + "from": 1276, + "to": 200 + }, + { + "from": 291, + "to": 5206 + }, + { + "from": 292, + "to": 5206 + }, + { + "from": 293, + "to": 5206 + }, + { + "from": 294, + "to": 5206 + }, + { + "from": 1875, + "to": 5207 + }, + { + "from": 1417, + "to": 5207 + }, + { + "from": 5208, + "to": 5207 + }, + { + "from": 1634, + "to": 5207 + }, + { + "from": 1226, + "to": 1223 + }, + { + "from": 1222, + "to": 1223 + }, + { + "from": 1775, + "to": 1223 + }, + { + "from": 169, + "to": 1223 + }, + { + "from": 171, + "to": 1223 + }, + { + "from": 1776, + "to": 1223 + }, + { + "from": 1413, + "to": 1223 + }, + { + "from": 1774, + "to": 5213 + }, + { + "from": 568, + "to": 5213 + }, + { + "from": 5221, + "to": 5220 + }, + { + "from": 5222, + "to": 5220 + }, + { + "from": 5221, + "to": 5225 + }, + { + "from": 410, + "to": 411 + }, + { + "from": 410, + "to": 406 + }, + { + "from": 148, + "to": 146 + }, + { + "from": 241, + "to": 5230 + }, + { + "from": 11, + "to": 5230 + }, + { + "from": 17, + "to": 5230 + }, + { + "from": 1074, + "to": 5230 + }, + { + "from": 614, + "to": 5235 + }, + { + "from": 5235, + "to": 5236 + }, + { + "from": 1871, + "to": 5243 + }, + { + "from": 1871, + "to": 5244 + }, + { + "from": 5254, + "to": 5253 + }, + { + "from": 5255, + "to": 5254 + }, + { + "from": 1348, + "to": 5255 + }, + { + "from": 4101, + "to": 5256 + }, + { + "from": 1595, + "to": 5256 + }, + { + "from": 4101, + "to": 5257 + }, + { + "from": 1595, + "to": 5257 + }, + { + "from": 4662, + "to": 5264 + }, + { + "from": 1476, + "to": 5270 + }, + { + "from": 1987, + "to": 5274 + }, + { + "from": 294, + "to": 5277 + }, + { + "from": 294, + "to": 5278 + }, + { + "from": 151, + "to": 5278 + }, + { + "from": 1408, + "to": 5278 + }, + { + "from": 3129, + "to": 5279 + }, + { + "from": 1532, + "to": 5280 + }, + { + "from": 5281, + "to": 5280 + }, + { + "from": 3977, + "to": 5281 + }, + { + "from": 3978, + "to": 5281 + }, + { + "from": 1844, + "to": 5281 + }, + { + "from": 1220, + "to": 5281 + }, + { + "from": 169, + "to": 5281 + }, + { + "from": 171, + "to": 5281 + }, + { + "from": 794, + "to": 5281 + }, + { + "from": 655, + "to": 5281 + }, + { + "from": 1220, + "to": 4892 + }, + { + "from": 132, + "to": 4892 + }, + { + "from": 169, + "to": 4892 + }, + { + "from": 573, + "to": 4892 + }, + { + "from": 171, + "to": 4892 + }, + { + "from": 398, + "to": 5324 + }, + { + "from": 4662, + "to": 5326 + }, + { + "from": 294, + "to": 5329 + }, + { + "from": 1226, + "to": 3414 + }, + { + "from": 1227, + "to": 3414 + }, + { + "from": 3221, + "to": 3414 + }, + { + "from": 4436, + "to": 5348 + }, + { + "from": 4437, + "to": 5348 + }, + { + "from": 5348, + "to": 2873 + }, + { + "from": 1344, + "to": 5367 + }, + { + "from": 1699, + "to": 5369 + }, + { + "from": 1973, + "to": 3739 + }, + { + "from": 91, + "to": 5371 + }, + { + "from": 92, + "to": 5371 + }, + { + "from": 93, + "to": 5371 + }, + { + "from": 5372, + "to": 5371 + }, + { + "from": 4234, + "to": 5371 + }, + { + "from": 95, + "to": 5371 + }, + { + "from": 1002, + "to": 5371 + }, + { + "from": 96, + "to": 5371 + }, + { + "from": 3827, + "to": 5371 + }, + { + "from": 2091, + "to": 2520 + }, + { + "from": 2092, + "to": 2520 + }, + { + "from": 1999, + "to": 2520 + }, + { + "from": 1958, + "to": 5380 + }, + { + "from": 5389, + "to": 5388 + }, + { + "from": 321, + "to": 5395 + }, + { + "from": 320, + "to": 5395 + }, + { + "from": 322, + "to": 5395 + }, + { + "from": 3481, + "to": 3216 + }, + { + "from": 3482, + "to": 3216 + }, + { + "from": 2115, + "to": 3216 + }, + { + "from": 594, + "to": 3482 + }, + { + "from": 27, + "to": 3482 + }, + { + "from": 132, + "to": 3482 + }, + { + "from": 30, + "to": 3482 + }, + { + "from": 596, + "to": 3482 + }, + { + "from": 3481, + "to": 5404 + }, + { + "from": 2115, + "to": 5404 + }, + { + "from": 571, + "to": 5404 + }, + { + "from": 2555, + "to": 5404 + }, + { + "from": 27, + "to": 5405 + }, + { + "from": 596, + "to": 5405 + }, + { + "from": 1220, + "to": 5412 + }, + { + "from": 1182, + "to": 5424 + }, + { + "from": 55, + "to": 5428 + }, + { + "from": 5436, + "to": 5435 + }, + { + "from": 5438, + "to": 5437 + }, + { + "from": 5435, + "to": 5438 + }, + { + "from": 419, + "to": 133 + }, + { + "from": 849, + "to": 133 + }, + { + "from": 667, + "to": 133 + }, + { + "from": 953, + "to": 133 + }, + { + "from": 1265, + "to": 133 + }, + { + "from": 420, + "to": 133 + }, + { + "from": 1265, + "to": 596 + }, + { + "from": 849, + "to": 596 + }, + { + "from": 464, + "to": 596 + }, + { + "from": 133, + "to": 596 + }, + { + "from": 5440, + "to": 5439 + }, + { + "from": 1673, + "to": 5443 + }, + { + "from": 2804, + "to": 5443 + }, + { + "from": 1772, + "to": 5443 + }, + { + "from": 1773, + "to": 5443 + }, + { + "from": 3221, + "to": 5443 + }, + { + "from": 5445, + "to": 5444 + }, + { + "from": 2487, + "to": 5445 + }, + { + "from": 1226, + "to": 2153 + }, + { + "from": 134, + "to": 2153 + }, + { + "from": 793, + "to": 2153 + }, + { + "from": 1227, + "to": 2153 + }, + { + "from": 5450, + "to": 5449 + }, + { + "from": 5452, + "to": 5451 + }, + { + "from": 5449, + "to": 5452 + }, + { + "from": 16, + "to": 5453 + }, + { + "from": 17, + "to": 5453 + }, + { + "from": 16, + "to": 5454 + }, + { + "from": 17, + "to": 5454 + }, + { + "from": 573, + "to": 5454 + }, + { + "from": 5453, + "to": 5455 + }, + { + "from": 5453, + "to": 5456 + }, + { + "from": 5453, + "to": 5457 + }, + { + "from": 16, + "to": 5458 + }, + { + "from": 17, + "to": 5458 + }, + { + "from": 5453, + "to": 5459 + }, + { + "from": 5453, + "to": 5460 + }, + { + "from": 5462, + "to": 5461 + }, + { + "from": 5463, + "to": 5461 + }, + { + "from": 3371, + "to": 5464 + }, + { + "from": 3372, + "to": 5464 + }, + { + "from": 5467, + "to": 5466 + }, + { + "from": 5468, + "to": 5466 + }, + { + "from": 419, + "to": 1120 + }, + { + "from": 849, + "to": 1120 + }, + { + "from": 1121, + "to": 1120 + }, + { + "from": 571, + "to": 1120 + }, + { + "from": 407, + "to": 1120 + }, + { + "from": 227, + "to": 1120 + }, + { + "from": 169, + "to": 1120 + }, + { + "from": 171, + "to": 1120 + }, + { + "from": 132, + "to": 1120 + }, + { + "from": 573, + "to": 1120 + }, + { + "from": 572, + "to": 1120 + }, + { + "from": 2723, + "to": 5485 + }, + { + "from": 2038, + "to": 5487 + }, + { + "from": 198, + "to": 5488 + }, + { + "from": 199, + "to": 5488 + }, + { + "from": 200, + "to": 5488 + }, + { + "from": 198, + "to": 5489 + }, + { + "from": 199, + "to": 5489 + }, + { + "from": 200, + "to": 5489 + }, + { + "from": 5491, + "to": 5492 + }, + { + "from": 169, + "to": 5492 + }, + { + "from": 5493, + "to": 5492 + }, + { + "from": 573, + "to": 5492 + }, + { + "from": 171, + "to": 5492 + }, + { + "from": 794, + "to": 5495 + }, + { + "from": 5495, + "to": 5496 + }, + { + "from": 5500, + "to": 5499 + }, + { + "from": 5498, + "to": 5499 + }, + { + "from": 294, + "to": 5505 + }, + { + "from": 294, + "to": 5506 + }, + { + "from": 294, + "to": 5508 + }, + { + "from": 294, + "to": 5509 + }, + { + "from": 294, + "to": 5510 + }, + { + "from": 294, + "to": 5511 + }, + { + "from": 5515, + "to": 5514 + }, + { + "from": 2563, + "to": 5518 + }, + { + "from": 2562, + "to": 2563 + }, + { + "from": 562, + "to": 5519 + }, + { + "from": 3694, + "to": 5519 + }, + { + "from": 2170, + "to": 5519 + }, + { + "from": 3843, + "to": 5519 + }, + { + "from": 4359, + "to": 5519 + }, + { + "from": 3840, + "to": 5519 + }, + { + "from": 447, + "to": 5523 + }, + { + "from": 5527, + "to": 5526 + }, + { + "from": 5525, + "to": 5527 + }, + { + "from": 553, + "to": 915 + }, + { + "from": 557, + "to": 915 + }, + { + "from": 571, + "to": 915 + }, + { + "from": 436, + "to": 1972 + }, + { + "from": 1222, + "to": 1972 + }, + { + "from": 1973, + "to": 1972 + }, + { + "from": 709, + "to": 1972 + }, + { + "from": 436, + "to": 1974 + }, + { + "from": 1222, + "to": 1974 + }, + { + "from": 1973, + "to": 1974 + }, + { + "from": 709, + "to": 1974 + }, + { + "from": 2878, + "to": 5545 + }, + { + "from": 354, + "to": 5545 + }, + { + "from": 2088, + "to": 5545 + }, + { + "from": 419, + "to": 35 + }, + { + "from": 849, + "to": 35 + }, + { + "from": 5558, + "to": 5557 + }, + { + "from": 5559, + "to": 5560 + }, + { + "from": 294, + "to": 5561 + }, + { + "from": 2773, + "to": 5562 + }, + { + "from": 1745, + "to": 5564 + }, + { + "from": 1746, + "to": 5564 + }, + { + "from": 594, + "to": 5574 + }, + { + "from": 596, + "to": 5574 + }, + { + "from": 198, + "to": 5579 + }, + { + "from": 199, + "to": 5579 + }, + { + "from": 200, + "to": 5579 + }, + { + "from": 2303, + "to": 2302 + }, + { + "from": 2302, + "to": 5593 + }, + { + "from": 419, + "to": 2987 + }, + { + "from": 849, + "to": 2987 + }, + { + "from": 132, + "to": 2987 + }, + { + "from": 571, + "to": 2987 + }, + { + "from": 407, + "to": 2987 + }, + { + "from": 227, + "to": 2987 + }, + { + "from": 2817, + "to": 2987 + }, + { + "from": 169, + "to": 2987 + }, + { + "from": 171, + "to": 2987 + }, + { + "from": 573, + "to": 2987 + }, + { + "from": 572, + "to": 2987 + }, + { + "from": 572, + "to": 2817 + }, + { + "from": 419, + "to": 2817 + }, + { + "from": 849, + "to": 2817 + }, + { + "from": 132, + "to": 2817 + }, + { + "from": 571, + "to": 2817 + }, + { + "from": 407, + "to": 2817 + }, + { + "from": 227, + "to": 2817 + }, + { + "from": 169, + "to": 2817 + }, + { + "from": 171, + "to": 2817 + }, + { + "from": 26, + "to": 2817 + }, + { + "from": 27, + "to": 2817 + }, + { + "from": 28, + "to": 2817 + }, + { + "from": 573, + "to": 2817 + }, + { + "from": 33, + "to": 2817 + }, + { + "from": 34, + "to": 2817 + }, + { + "from": 35, + "to": 2817 + }, + { + "from": 38, + "to": 2817 + }, + { + "from": 5599, + "to": 5598 + }, + { + "from": 2364, + "to": 5601 + }, + { + "from": 2551, + "to": 5601 + }, + { + "from": 2552, + "to": 5601 + }, + { + "from": 1512, + "to": 5601 + }, + { + "from": 2553, + "to": 5601 + }, + { + "from": 2552, + "to": 5602 + }, + { + "from": 2364, + "to": 5602 + }, + { + "from": 2553, + "to": 5602 + }, + { + "from": 1512, + "to": 5602 + }, + { + "from": 2551, + "to": 5602 + }, + { + "from": 1990, + "to": 5603 + }, + { + "from": 2928, + "to": 5603 + }, + { + "from": 2929, + "to": 5603 + }, + { + "from": 2930, + "to": 5603 + }, + { + "from": 5601, + "to": 5603 + }, + { + "from": 3574, + "to": 5604 + }, + { + "from": 5615, + "to": 5614 + }, + { + "from": 4401, + "to": 5615 + }, + { + "from": 658, + "to": 5620 + }, + { + "from": 659, + "to": 660 + }, + { + "from": 660, + "to": 183 + }, + { + "from": 26, + "to": 1094 + }, + { + "from": 419, + "to": 1094 + }, + { + "from": 1477, + "to": 1476 + }, + { + "from": 1479, + "to": 1476 + }, + { + "from": 1480, + "to": 1476 + }, + { + "from": 1475, + "to": 1476 + }, + { + "from": 5628, + "to": 5627 + }, + { + "from": 1477, + "to": 5627 + }, + { + "from": 5629, + "to": 5627 + }, + { + "from": 1480, + "to": 5630 + }, + { + "from": 5633, + "to": 5632 + }, + { + "from": 1121, + "to": 5633 + }, + { + "from": 26, + "to": 5633 + }, + { + "from": 27, + "to": 5633 + }, + { + "from": 28, + "to": 5633 + }, + { + "from": 33, + "to": 5633 + }, + { + "from": 34, + "to": 5633 + }, + { + "from": 35, + "to": 5633 + }, + { + "from": 346, + "to": 5633 + }, + { + "from": 5633, + "to": 5634 + }, + { + "from": 1955, + "to": 3689 + }, + { + "from": 2046, + "to": 5648 + }, + { + "from": 5653, + "to": 5652 + }, + { + "from": 5652, + "to": 5652 + }, + { + "from": 5655, + "to": 5654 + }, + { + "from": 5654, + "to": 5654 + }, + { + "from": 5656, + "to": 5656 + }, + { + "from": 5657, + "to": 5656 + }, + { + "from": 5659, + "to": 5658 + }, + { + "from": 5658, + "to": 5658 + }, + { + "from": 5660, + "to": 4272 + }, + { + "from": 4272, + "to": 4272 + }, + { + "from": 5676, + "to": 5675 + }, + { + "from": 5648, + "to": 5675 + }, + { + "from": 3262, + "to": 5678 + }, + { + "from": 1552, + "to": 1553 + }, + { + "from": 2282, + "to": 5689 + }, + { + "from": 130, + "to": 5689 + }, + { + "from": 2658, + "to": 5689 + }, + { + "from": 2657, + "to": 5690 + }, + { + "from": 2026, + "to": 5691 + }, + { + "from": 2027, + "to": 5691 + }, + { + "from": 2028, + "to": 5691 + }, + { + "from": 5019, + "to": 5698 + }, + { + "from": 2304, + "to": 5698 + }, + { + "from": 5700, + "to": 5699 + }, + { + "from": 2297, + "to": 5699 + }, + { + "from": 5209, + "to": 5699 + }, + { + "from": 5710, + "to": 5709 + }, + { + "from": 5725, + "to": 5724 + }, + { + "from": 5726, + "to": 5724 + }, + { + "from": 5727, + "to": 5724 + }, + { + "from": 834, + "to": 5729 + }, + { + "from": 841, + "to": 5729 + }, + { + "from": 3080, + "to": 5729 + }, + { + "from": 5737, + "to": 859 + }, + { + "from": 518, + "to": 859 + }, + { + "from": 519, + "to": 859 + }, + { + "from": 859, + "to": 859 + }, + { + "from": 154, + "to": 859 + }, + { + "from": 155, + "to": 859 + }, + { + "from": 436, + "to": 5745 + }, + { + "from": 1222, + "to": 5745 + }, + { + "from": 709, + "to": 5745 + }, + { + "from": 1176, + "to": 1803 + }, + { + "from": 5746, + "to": 1803 + }, + { + "from": 1804, + "to": 1803 + }, + { + "from": 5758, + "to": 5757 + }, + { + "from": 5756, + "to": 5758 + }, + { + "from": 5759, + "to": 5760 + }, + { + "from": 1226, + "to": 4293 + }, + { + "from": 3843, + "to": 4293 + }, + { + "from": 1227, + "to": 4293 + }, + { + "from": 596, + "to": 5765 + }, + { + "from": 594, + "to": 5766 + }, + { + "from": 596, + "to": 5766 + }, + { + "from": 594, + "to": 5767 + }, + { + "from": 596, + "to": 5767 + }, + { + "from": 594, + "to": 5768 + }, + { + "from": 596, + "to": 5768 + }, + { + "from": 198, + "to": 5769 + }, + { + "from": 199, + "to": 5769 + }, + { + "from": 200, + "to": 5769 + }, + { + "from": 198, + "to": 5771 + }, + { + "from": 199, + "to": 5771 + }, + { + "from": 200, + "to": 5771 + }, + { + "from": 2345, + "to": 5772 + }, + { + "from": 2005, + "to": 5781 + }, + { + "from": 291, + "to": 5784 + }, + { + "from": 292, + "to": 5784 + }, + { + "from": 293, + "to": 5784 + }, + { + "from": 294, + "to": 5784 + }, + { + "from": 294, + "to": 5787 + }, + { + "from": 1124, + "to": 5787 + }, + { + "from": 294, + "to": 5789 + }, + { + "from": 294, + "to": 5790 + }, + { + "from": 294, + "to": 5791 + }, + { + "from": 5467, + "to": 5794 + }, + { + "from": 5468, + "to": 5794 + }, + { + "from": 55, + "to": 5799 + }, + { + "from": 5799, + "to": 5800 + }, + { + "from": 57, + "to": 5800 + }, + { + "from": 5808, + "to": 5807 + }, + { + "from": 5806, + "to": 5810 + }, + { + "from": 5811, + "to": 5810 + }, + { + "from": 5812, + "to": 5810 + }, + { + "from": 5808, + "to": 5810 + }, + { + "from": 5813, + "to": 5810 + }, + { + "from": 5815, + "to": 5814 + }, + { + "from": 676, + "to": 5815 + }, + { + "from": 677, + "to": 5815 + }, + { + "from": 678, + "to": 5815 + }, + { + "from": 2969, + "to": 5816 + }, + { + "from": 2969, + "to": 5817 + }, + { + "from": 1478, + "to": 5823 + }, + { + "from": 11, + "to": 5823 + }, + { + "from": 1480, + "to": 5823 + }, + { + "from": 2, + "to": 5824 + }, + { + "from": 12, + "to": 5824 + }, + { + "from": 15, + "to": 5824 + }, + { + "from": 5823, + "to": 5824 + }, + { + "from": 1826, + "to": 5824 + }, + { + "from": 5825, + "to": 5824 + }, + { + "from": 1478, + "to": 5825 + }, + { + "from": 11, + "to": 5825 + }, + { + "from": 1480, + "to": 5825 + }, + { + "from": 2546, + "to": 2547 + }, + { + "from": 5840, + "to": 1206 + }, + { + "from": 5842, + "to": 5841 + }, + { + "from": 5841, + "to": 5841 + }, + { + "from": 5843, + "to": 4273 + }, + { + "from": 4273, + "to": 4273 + }, + { + "from": 5845, + "to": 5845 + }, + { + "from": 5846, + "to": 5845 + }, + { + "from": 5847, + "to": 5847 + }, + { + "from": 5848, + "to": 5847 + }, + { + "from": 5850, + "to": 5849 + }, + { + "from": 5849, + "to": 5849 + }, + { + "from": 5854, + "to": 5853 + }, + { + "from": 5853, + "to": 5853 + }, + { + "from": 5859, + "to": 5860 + }, + { + "from": 5880, + "to": 5881 + }, + { + "from": 57, + "to": 5885 + }, + { + "from": 1151, + "to": 5887 + }, + { + "from": 1410, + "to": 5887 + }, + { + "from": 4576, + "to": 5887 + }, + { + "from": 301, + "to": 57 + }, + { + "from": 3404, + "to": 57 + }, + { + "from": 5427, + "to": 57 + }, + { + "from": 3208, + "to": 57 + }, + { + "from": 1189, + "to": 57 + }, + { + "from": 56, + "to": 57 + }, + { + "from": 5888, + "to": 57 + }, + { + "from": 5800, + "to": 57 + }, + { + "from": 3328, + "to": 57 + }, + { + "from": 55, + "to": 57 + }, + { + "from": 4709, + "to": 57 + }, + { + "from": 2450, + "to": 57 + }, + { + "from": 1, + "to": 5891 + }, + { + "from": 1226, + "to": 5892 + }, + { + "from": 1227, + "to": 5892 + }, + { + "from": 5905, + "to": 5888 + }, + { + "from": 57, + "to": 5888 + }, + { + "from": 55, + "to": 5905 + }, + { + "from": 2819, + "to": 5913 + }, + { + "from": 2820, + "to": 5913 + }, + { + "from": 5914, + "to": 5913 + }, + { + "from": 3774, + "to": 5913 + }, + { + "from": 5915, + "to": 5913 + }, + { + "from": 1110, + "to": 5919 + }, + { + "from": 1112, + "to": 5919 + }, + { + "from": 1111, + "to": 5919 + }, + { + "from": 1113, + "to": 5919 + }, + { + "from": 1114, + "to": 5919 + }, + { + "from": 1115, + "to": 5919 + }, + { + "from": 2841, + "to": 5919 + }, + { + "from": 2842, + "to": 5919 + }, + { + "from": 1110, + "to": 5920 + }, + { + "from": 1112, + "to": 5920 + }, + { + "from": 1111, + "to": 5920 + }, + { + "from": 1113, + "to": 5920 + }, + { + "from": 1114, + "to": 5920 + }, + { + "from": 1115, + "to": 5920 + }, + { + "from": 2841, + "to": 5920 + }, + { + "from": 2842, + "to": 5920 + }, + { + "from": 1803, + "to": 5923 + }, + { + "from": 1804, + "to": 5923 + }, + { + "from": 1802, + "to": 5924 + }, + { + "from": 1803, + "to": 5924 + }, + { + "from": 1804, + "to": 5924 + }, + { + "from": 99, + "to": 5926 + }, + { + "from": 1052, + "to": 5926 + }, + { + "from": 1053, + "to": 5926 + }, + { + "from": 4337, + "to": 5926 + }, + { + "from": 1054, + "to": 5926 + }, + { + "from": 1055, + "to": 5926 + }, + { + "from": 98, + "to": 5926 + }, + { + "from": 5939, + "to": 5938 + }, + { + "from": 5938, + "to": 810 + }, + { + "from": 1990, + "to": 5947 + }, + { + "from": 2928, + "to": 5947 + }, + { + "from": 2929, + "to": 5947 + }, + { + "from": 2930, + "to": 5947 + }, + { + "from": 1081, + "to": 5948 + }, + { + "from": 1082, + "to": 5948 + }, + { + "from": 1990, + "to": 5950 + }, + { + "from": 2928, + "to": 5950 + }, + { + "from": 2929, + "to": 5950 + }, + { + "from": 2930, + "to": 5950 + }, + { + "from": 1510, + "to": 5952 + }, + { + "from": 2365, + "to": 5952 + }, + { + "from": 1511, + "to": 5952 + }, + { + "from": 2366, + "to": 5952 + }, + { + "from": 1990, + "to": 1082 + }, + { + "from": 2928, + "to": 1082 + }, + { + "from": 2929, + "to": 1082 + }, + { + "from": 2930, + "to": 1082 + }, + { + "from": 198, + "to": 5953 + }, + { + "from": 199, + "to": 5953 + }, + { + "from": 200, + "to": 5953 + }, + { + "from": 198, + "to": 5954 + }, + { + "from": 199, + "to": 5954 + }, + { + "from": 200, + "to": 5954 + }, + { + "from": 198, + "to": 5955 + }, + { + "from": 199, + "to": 5955 + }, + { + "from": 200, + "to": 5955 + }, + { + "from": 1065, + "to": 5957 + }, + { + "from": 1066, + "to": 5957 + }, + { + "from": 1067, + "to": 5957 + }, + { + "from": 1068, + "to": 5957 + }, + { + "from": 1069, + "to": 5957 + }, + { + "from": 1070, + "to": 5957 + }, + { + "from": 1071, + "to": 5957 + }, + { + "from": 17, + "to": 5958 + }, + { + "from": 294, + "to": 5962 + }, + { + "from": 226, + "to": 5971 + }, + { + "from": 3748, + "to": 5971 + }, + { + "from": 1225, + "to": 5972 + }, + { + "from": 1228, + "to": 5972 + }, + { + "from": 4527, + "to": 3412 + }, + { + "from": 1630, + "to": 3412 + }, + { + "from": 1631, + "to": 3412 + }, + { + "from": 1637, + "to": 3412 + }, + { + "from": 1226, + "to": 5973 + }, + { + "from": 1223, + "to": 5973 + }, + { + "from": 1224, + "to": 5973 + }, + { + "from": 1220, + "to": 5973 + }, + { + "from": 169, + "to": 5973 + }, + { + "from": 171, + "to": 5973 + }, + { + "from": 794, + "to": 5973 + }, + { + "from": 1226, + "to": 5974 + }, + { + "from": 849, + "to": 5974 + }, + { + "from": 215, + "to": 5974 + }, + { + "from": 1224, + "to": 5974 + }, + { + "from": 573, + "to": 5974 + }, + { + "from": 169, + "to": 5974 + }, + { + "from": 1630, + "to": 5974 + }, + { + "from": 171, + "to": 5974 + }, + { + "from": 1776, + "to": 5974 + }, + { + "from": 1413, + "to": 5974 + }, + { + "from": 1223, + "to": 5974 + }, + { + "from": 1636, + "to": 5974 + }, + { + "from": 1223, + "to": 5975 + }, + { + "from": 1224, + "to": 5975 + }, + { + "from": 1228, + "to": 5975 + }, + { + "from": 1225, + "to": 5975 + }, + { + "from": 1223, + "to": 5976 + }, + { + "from": 1225, + "to": 5976 + }, + { + "from": 1228, + "to": 5976 + }, + { + "from": 5977, + "to": 5978 + }, + { + "from": 5783, + "to": 5979 + }, + { + "from": 5783, + "to": 5980 + }, + { + "from": 5462, + "to": 5985 + }, + { + "from": 5463, + "to": 5985 + }, + { + "from": 294, + "to": 730 + } + ], + "nodes": [ + { + "dept": "CSE", + "description": "An introduction to the mathematical theory of computability. Formal languages. Finite automata and regular expression. Push-down automata and context-free languages. Computable or recursive functions: Turing machines, the halting problem. Undecidability. Credit not offered for both Math 166 and CSE 105. Equivalent to Math 166. ", + "edges_from": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "edges_to": [ + 393, + 10 + ], + "id": 0, + "label": "CSE 105", + "title": "Theory of Computability (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 0, + 5891 + ], + "id": 1, + "label": "CSE 12", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 9, + 3 + ], + "edges_to": [ + 0, + 5824, + 10 + ], + "id": 2, + "label": "CSE 21", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 1226, + 1227, + 5058 + ], + "edges_to": [ + 0, + 2, + 398, + 1479 + ], + "id": 3, + "label": "CSE 20", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 0 + ], + "id": 4, + "label": "MATH 184", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 0 + ], + "id": 5, + "label": "CSE 15L", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 227, + 7 + ], + "edges_to": [ + 0, + 786, + 3605, + 3574, + 3743 + ], + "id": 6, + "label": "MATH 100A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 169, + 171, + 132, + 573 + ], + "edges_to": [ + 0, + 226, + 6, + 1479, + 8, + 12, + 398 + ], + "id": 7, + "label": "MATH 109", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 227, + 7 + ], + "edges_to": [ + 0, + 3605, + 3574 + ], + "id": 8, + "label": "MATH 103A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1226, + 1227, + 1413 + ], + "edges_to": [ + 0, + 2, + 1479 + ], + "id": 9, + "label": "MATH 15A", + "title": "" + }, + { + "dept": "CSE", + "description": "Topics include private and public-key cryptography, block ciphers, data encryption, authentication, key distribution and certification, pseudorandom number generators, design and analysis of protocols, zero-knowledge proofs, and advanced protocols. Emphasizes rigorous mathematical approach including formal definitions of security goals and proofs of protocol security. ", + "edges_from": [ + 0, + 2, + 11, + 12, + 13, + 14, + 15 + ], + "edges_to": [], + "id": 10, + "label": "CSE 107", + "title": "Introduction to Modern Cryptography (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 5825, + 2978, + 10, + 1070, + 5230, + 142, + 1066, + 5823 + ], + "id": 11, + "label": "CSE 101", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 227, + 7 + ], + "edges_to": [ + 5824, + 10 + ], + "id": 12, + "label": "MATH 184A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 10 + ], + "id": 13, + "label": "MATH 15B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 10 + ], + "id": 14, + "label": "MATH 166", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5824, + 10 + ], + "id": 15, + "label": "MATH 154", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 11, + 2151, + 1065, + 1066, + 1067, + 5453, + 1070, + 1071, + 5458, + 2979, + 3211, + 5454 + ], + "id": 16, + "label": "MATH 176", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1824, + 2977, + 2978, + 1067, + 5958, + 5454, + 2151, + 1065, + 1066, + 11, + 5453, + 1070, + 1071, + 5458, + 2979, + 3211, + 5230, + 2393, + 1598 + ], + "id": 17, + "label": "CSE 100", + "title": "" + }, + { + "dept": "CSE", + "description": "Introduction to Probability and Statistics (4)", + "edges_from": [], + "edges_to": [ + 4894 + ], + "id": 18, + "label": "CSE 103", + "title": "A Practical" + }, + { + "dept": "GLBH", + "description": "Provides a foundational interdisciplinary understanding of complex global health issues and introduces major concepts and principles in global health. The course surveys the range of problems contributing to the global burden of disease and disability including infectious disease, mental illness, refugee and immigrant health, natural disasters, climate change, and food insecurity.", + "edges_from": [], + "edges_to": [], + "id": 19, + "label": "GLBH 20", + "title": "Introduction to Global Health (4)" + }, + { + "dept": "PHIL", + "description": "Introduction to nineteenth-century philosophy, focusing on skepticism", + "edges_from": [], + "edges_to": [ + 4392 + ], + "id": 20, + "label": "PHIL 33", + "title": "Philosophy between Reason and Despair (4)" + }, + { + "dept": "PHIL", + "description": "Beginning with the contrast between medieval and early modern thought,", + "edges_from": [], + "edges_to": [ + 4392 + ], + "id": 21, + "label": "PHIL 32", + "title": "Philosophy and the Rise of Modern Science (4)" + }, + { + "dept": "PHIL", + "description": "to Ancient Philosophy (4)", + "edges_from": [], + "edges_to": [], + "id": 22, + "label": "PHIL 31", + "title": "Introduction" + }, + { + "dept": "HIEU", + "description": "This course will be a comparative and thematic examination of the fascist movement and regimes in Europe from the 1920s to the 1940s. In particular, it will focus on the emergence of the two major fascist movements in Italy and Germany. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 23, + "label": "HIEU 172/272", + "title": "Comparative European Fascism (4)" + }, + { + "dept": "PHIL", + "description": "An exploration of central philosophical issues as they have been taken up in the diverse philosophical traditions of the Americas, such as indigenous philosophy, Latin American philosophy, American Pragmatism, and the Civil Rights movement, among others. Topics may include ethics, social and political philosophy, colonialism, philosophy of race and gender, environmentalism, and issues in philosophy of language.", + "edges_from": [], + "edges_to": [], + "id": 24, + "label": "PHIL 35", + "title": "Philosophy in the Americas (4)" + }, + { + "dept": "PHYS", + "description": "Project-based course developing tools and techniques of observational astrophysical research: photon counting, imaging, spectroscopy, astrometry; collecting data at the telescope; data reduction and analysis; probability functions; error analysis techniques; and scientific writing. ", + "edges_from": [ + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 26, + 27, + 28, + 29, + 30, + 31 + ], + "edges_to": [], + "id": 25, + "label": "PHYS 164", + "title": "Observational Astrophysics Research Lab (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 849, + 419 + ], + "edges_to": [ + 2817, + 1923, + 5633, + 270, + 3729, + 25, + 665, + 666, + 28, + 29, + 30, + 31, + 32, + 36, + 3877, + 553, + 557, + 2990, + 952, + 955, + 1343, + 1094, + 711, + 712, + 848, + 346, + 1121, + 99, + 2533, + 2813 + ], + "id": 26, + "label": "PHYS 2A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2817, + 5633, + 270, + 3219, + 25, + 3482, + 29, + 31, + 32, + 36, + 552, + 2990, + 5405, + 2115, + 848, + 89, + 346, + 3291, + 4575, + 1121, + 2533, + 2924, + 2555, + 2556, + 2813 + ], + "id": 27, + "label": "PHYS 2C", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 419, + 132, + 849, + 35, + 407, + 26 + ], + "edges_to": [ + 32, + 1121, + 130, + 1955, + 36, + 2533, + 2817, + 5633, + 5166, + 2990, + 2813, + 848, + 3219, + 708, + 270, + 25, + 346, + 4575, + 29, + 30, + 31 + ], + "id": 28, + "label": "PHYS 2B", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 34, + 35, + 37, + 38, + 26, + 27, + 28, + 30 + ], + "edges_to": [ + 25 + ], + "id": 29, + "label": "PHYS 163", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 35, + 572, + 227, + 26, + 571, + 28 + ], + "edges_to": [ + 32, + 2816, + 2115, + 36, + 614, + 2282, + 2924, + 2813, + 4575, + 3291, + 760, + 25, + 3482, + 2555, + 2556, + 29, + 31 + ], + "id": 30, + "label": "PHYS 2D", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 34, + 35, + 37, + 38, + 26, + 27, + 28, + 30 + ], + "edges_to": [ + 25 + ], + "id": 31, + "label": "PHYS 161", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 34, + 35, + 37, + 38, + 26, + 27, + 28, + 30 + ], + "edges_to": [ + 25 + ], + "id": 32, + "label": "PHYS 160", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 1121, + 36, + 2817, + 2990, + 2813, + 3219, + 5633, + 25, + 346, + 4575, + 29, + 31 + ], + "id": 33, + "label": "PHYS 4C", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 1121, + 36, + 2817, + 2990, + 2813, + 3219, + 5633, + 25, + 4575, + 29, + 31 + ], + "id": 34, + "label": "PHYS 4B", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 849, + 419 + ], + "edges_to": [ + 32, + 1121, + 36, + 3877, + 2817, + 2990, + 2813, + 5633, + 952, + 25, + 346, + 955, + 28, + 29, + 30, + 31 + ], + "id": 35, + "label": "PHYS 4A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 34, + 35, + 37, + 38, + 26, + 27, + 28, + 30 + ], + "edges_to": [ + 25 + ], + "id": 36, + "label": "PHYS 162", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 2816, + 36, + 614, + 2813, + 760, + 25, + 4575, + 29, + 31 + ], + "id": 37, + "label": "PHYS 4E", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 32, + 1121, + 36, + 614, + 2817, + 2813, + 25, + 346, + 4575, + 29, + 31 + ], + "id": 38, + "label": "PHYS 4D", + "title": "" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 228H.) Techniques for speeding up Internet implementations, including system restructuring, new algorithms, and hardware innovations. Topics include: models for protocols, systems and hardware; efficiency principles; applying these principles to deriving techniques for efficient implementation of common endnode and router functions. ", + "edges_from": [ + 40, + 41 + ], + "edges_to": [], + "id": 39, + "label": "CSE 222B", + "title": "Internet Algorithmics (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 41 + ], + "edges_to": [ + 3249, + 39 + ], + "id": 40, + "label": "CSE 222A", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 40, + 39 + ], + "id": 41, + "label": "CSE 123A", + "title": "" + }, + { + "dept": "CAT", + "description": "Individual independent research or creative project. Designated for Sixth College students to have the opportunity to work on a project supervised by a faculty member in a specific department, where the subject or content of the project cannot be represented by the academic department of the faculty member. ", + "edges_from": [ + 43, + 44, + 45 + ], + "edges_to": [], + "id": 42, + "label": "CAT 199", + "title": "Culture, Art, and Technology Independent Studies (4)" + }, + { + "dept": "CAT", + "description": "", + "edges_from": [], + "edges_to": [ + 42, + 45, + 2446, + 48, + 852, + 46 + ], + "id": 43, + "label": "CAT 1", + "title": "" + }, + { + "dept": "CAT", + "description": "", + "edges_from": [ + 45 + ], + "edges_to": [ + 4965, + 42, + 46, + 143, + 48, + 4977, + 852, + 2446, + 3418, + 156, + 157 + ], + "id": 44, + "label": "CAT 3", + "title": "" + }, + { + "dept": "CAT", + "description": "", + "edges_from": [ + 43 + ], + "edges_to": [ + 4965, + 42, + 44, + 46, + 143, + 48, + 4977, + 852, + 2446, + 3418, + 156, + 157 + ], + "id": 45, + "label": "CAT 2", + "title": "" + }, + { + "dept": "CAT", + "description": "Directed group studies or, in group, field studies of a creative project. Designated for Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive than individual special studies. ", + "edges_from": [ + 43, + 44, + 45 + ], + "edges_to": [], + "id": 46, + "label": "CAT 198", + "title": "Culture, Art, and Technology Directed Group Studies (4)" + }, + { + "dept": "CAT", + "description": "Undergraduate instructional assistance. Responsibilities in areas of learning and instruction. May collect course material and assist with course projects, digital workshops, and collection, organization and analysis of formative assessment data. ", + "edges_from": [], + "edges_to": [], + "id": 47, + "label": "CAT 195", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "CAT", + "description": "Supervised community-based or industry-based fieldwork. Designated for Sixth College students to have the opportunity to work on a community-based or industry-based project supervised by a faculty member and community or industry mentor in which the subject or content of the project cannot be represented by a specific academic department. Students will submit written evaluations each week of their ongoing field study. ", + "edges_from": [ + 43, + 44, + 45 + ], + "edges_to": [], + "id": 48, + "label": "CAT 197", + "title": "Culture, Art, and Technology Field Studies (4)" + }, + { + "dept": "CAT", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Culture, Art, and Technology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 49, + "label": "CAT 192", + "title": "Senior Seminar in Culture, Art, and Technology (1)" + }, + { + "dept": "SE", + "description": "Directed group study, on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 50, + "label": "SE 198", + "title": "Directed Study Group (4)" + }, + { + "dept": "SE", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 51, + "label": "SE 199", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "SE", + "description": "Teaching and tutorial assistance in a SE course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 52, + "label": "SE 195", + "title": "Teaching (2\u20134)" + }, + { + "dept": "SE", + "description": "An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, etc., under the supervision of a faculty member and industrial supervisor. Coordination of the Engineering Internship is conducted through UC San Diego\u2019s Academic Internship Program. ", + "edges_from": [], + "edges_to": [], + "id": 53, + "label": "SE 197", + "title": "Engineering Internship (1\u20134)" + }, + { + "dept": "BENG", + "description": "Development of design project in bioinformatics bioengineering. ", + "edges_from": [ + 55 + ], + "edges_to": [ + 56 + ], + "id": 54, + "label": "BENG 126A", + "title": "Design Development in Bioinformatics Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 1188, + 5799, + 3209, + 3403, + 302, + 2449, + 5428, + 54, + 57, + 4708, + 5905, + 3327 + ], + "id": 55, + "label": "BENG 187B", + "title": "" + }, + { + "dept": "BENG", + "description": "Implementation of design project in bioinformatics bioengineering. ", + "edges_from": [ + 57, + 54 + ], + "edges_to": [ + 57 + ], + "id": 56, + "label": "BENG 126B", + "title": "Design Implementation in Bioinformatics Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 5888, + 3328, + 1189, + 3208, + 3404, + 301, + 5800, + 2450, + 5427, + 55, + 56, + 4709 + ], + "edges_to": [ + 3328, + 5888, + 1189, + 3208, + 3404, + 301, + 5800, + 2450, + 56, + 5885, + 4709 + ], + "id": 57, + "label": "BENG 187C", + "title": "" + }, + { + "dept": "ANTH", + "description": "This course focuses on the debate about multiculturalism in American society. It examines the interaction of race, ethnicity, and class, historically and comparatively, and considers the problem of citizenship in relation to the growing polarization of multiple social identities.", + "edges_from": [], + "edges_to": [ + 90, + 4269 + ], + "id": 58, + "label": "ANTH 23", + "title": "Debating Multiculturalism: Race, Ethnicity, and Class in American Societies (4)" + }, + { + "dept": "ANTH", + "description": "Why does racism still matter? How is racism experienced in the United States and across the globe? With insights from the biology of human variation, archaeology, colonial history, and sociocultural anthropology, we examine how notions of race and ethnicity structure contemporary societies.", + "edges_from": [], + "edges_to": [ + 90, + 4269 + ], + "id": 59, + "label": "ANTH 21", + "title": "Race and Racisms (4)" + }, + { + "dept": "SOCI", + "description": "Examination of sociological theories for why people have religious beliefs. Also examines types of religious organizations, secularization, fundamentalism, religion and immigration, religion and politics, and religiously inspired violence and terrorism. The class will tend to focus on the American context. ", + "edges_from": [ + 60, + 61 + ], + "edges_to": [ + 60 + ], + "id": 60, + "label": "SOCI 154", + "title": "Religious Institutions in America (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 60 + ], + "id": 61, + "label": "SOCC 154", + "title": "" + }, + { + "dept": "SOCI", + "description": "A research-oriented course studying a specific city. Students will describe and analyze a local community of San Diego. Additional work on one citywide institution. Guest lecturers from San Diego organizations and government. Readings largely from city reports and news media. ", + "edges_from": [ + 62, + 63 + ], + "edges_to": [ + 62 + ], + "id": 62, + "label": "SOCI 155", + "title": "The City of San Diego (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 62 + ], + "id": 63, + "label": "SOCC 155", + "title": "" + }, + { + "dept": "SOCI", + "description": "Diverse sociological explanations of religious ideas and religious behavior. The social consequences of different kinds of religious beliefs and religious organizations. The influence of religion upon concepts of history, the natural world, human nature, and the social order. The significance of such notions as \u201csacred peoples\u201d and \u201csacred places.\u201d The religious-like character of certain political movements and certain sociocultural attitudes. ", + "edges_from": [ + 64, + 65 + ], + "edges_to": [ + 64 + ], + "id": 64, + "label": "SOCI 156", + "title": "Sociology of Religion (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 64 + ], + "id": 65, + "label": "SOCC 156", + "title": "" + }, + { + "dept": "SOCI", + "description": "Sacred texts, religious experiences, and ritual settings are explored from the perspective of sociological analysis. The types and dynamic of religious sects and institutions are examined. African and contemporary US religious data provide resources for lecture and comparative analysis. ", + "edges_from": [ + 66, + 67 + ], + "edges_to": [ + 66 + ], + "id": 66, + "label": "SOCI 157", + "title": "Religion in Contemporary Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 66 + ], + "id": 67, + "label": "SOCC 157", + "title": "" + }, + { + "dept": "SOCI", + "description": "Hollywood has had an ongoing obsession with mental illness. This course will examine a number of important or iconic films on this subject. By examining them against a background provided by relevant scholarly materials, we shall develop a critical perspective on these cultural artifacts. ", + "edges_from": [ + 68, + 69 + ], + "edges_to": [ + 68 + ], + "id": 68, + "label": "SOCI 150", + "title": "Madness and the Movies (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 68 + ], + "id": 69, + "label": "SOCC 150", + "title": "" + }, + { + "dept": "GPPA", + "description": "Why do public authorities inefficiently distribute scarce economic resources? What are the impacts of such inefficient distribution on welfare and economic development? And how do we design policies to limit inefficiencies in distribution? This course surveys the literature on distributive politics to address these questions.\u00a0Students may not receive credit for GPPA 405 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 70, + "label": "GPPA 405", + "title": "Managing the Distributive Politics of Public Policy (4)" + }, + { + "dept": "SOCI", + "description": "(Same as USP 133.) Primary focus on understanding and analyzing poverty and public policy. Analysis of how current debates and public policy initiatives mesh with alternative social scientific explorations of poverty. ", + "edges_from": [ + 72, + 71 + ], + "edges_to": [ + 71 + ], + "id": 71, + "label": "SOCI 152", + "title": "Social Inequality and Public Policy (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 71 + ], + "id": 72, + "label": "SOCC 152", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 73, + "label": "Linguistics/Heritage Languages (LIHL) 132F", + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + { + "dept": "SOCI", + "description": "The role of Islam in the society, culture, and politics of the Muslim people during the nineteenth and twentieth centuries; attempts by Muslim thinkers to accommodate or reject rival ideologies (such as nationalism and socialism); and a critical review of the relationship between Islam and the West. ", + "edges_from": [ + 74, + 75 + ], + "edges_to": [ + 74 + ], + "id": 74, + "label": "SOCI 158", + "title": "Islam in the Modern World (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 74 + ], + "id": 75, + "label": "SOCD 158", + "title": "" + }, + { + "dept": "SOCI", + "description": "Topics in Social Organizations and Institutions (4)", + "edges_from": [], + "edges_to": [], + "id": 76, + "label": "SOCI 159", + "title": "Special" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 77, + "label": "Linguistics/Heritage Languages (LIHL) 132P", + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Filipino. LIHL 132F, LIHL 132W, and LIHL 132P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 78, + "label": "Linguistics/Heritage Languages (LIHL) 132W", + "title": "Advanced Filipino for Filipino Speakers (4)" + }, + { + "dept": "HDP", + "description": "Topics Seminar in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 79, + "label": "HDP 160", + "title": "Special" + }, + { + "dept": "MATH", + "description": "Theory of computation and recursive function theory, Church\u2019s thesis, computability and undecidability. Feasible computability and complexity. Peano arithmetic and the incompleteness theorems, nonstandard models. ", + "edges_from": [ + 81 + ], + "edges_to": [], + "id": 80, + "label": "MATH 260B", + "title": "Mathematical Logic II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 80 + ], + "id": 81, + "label": "MATH 260A", + "title": "" + }, + { + "dept": "POLI", + "description": "This course analyzes the political system of China since 1949, including political institutions, the policy-making process, and the relationship between politics and economics. The main focus is on the post-Mao era of reform beginning in 1978.", + "edges_from": [], + "edges_to": [], + "id": 82, + "label": "POLI 130B", + "title": "Politics in the People\u2019s Republic of China (4)" + }, + { + "dept": "SE", + "description": "Independent study or research under direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 83, + "label": "SE 99H", + "title": "Independent Study (1)" + }, + { + "dept": "ANTH", + "description": "This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ", + "edges_from": [], + "edges_to": [], + "id": 84, + "label": "ANTH 147", + "title": "Understanding the Human Social Order: Anthropology and the Long-Term (4)" + }, + { + "dept": "HITO", + "description": "This course will examine the development of Gnostic Christianity in the first four centuries CE. Students will also explore similar non-Christian religious movements that claimed to have special knowledge (gnosis) of the self, the material world, and the divine.", + "edges_from": [], + "edges_to": [], + "id": 85, + "label": "HITO 103S", + "title": "Gnosis and Gnosticism (4)" + }, + { + "dept": "HIUS", + "description": "This course explores the emergence of a dominant ideology of womanhood in America in the early nineteenth century and contrasts the ideal with the historically diverse experience of women of different races and classes, from settlement to 1870. Topics include witchcraft, evangelicalism, cult of domesticity, sexuality, rise of industrial capitalism and the transformation of women\u2019s work, the Civil War, and the first feminist movement.", + "edges_from": [], + "edges_to": [], + "id": 86, + "label": "HIUS 156D", + "title": "American Women, American Womanhood (4)" + }, + { + "dept": "MAE", + "description": "Thermodynamic analysis of power cycles with application to combustion driven engines: internal combustion, diesel, and gas turbines. Thermodynamics of mixtures and chemical and phase equilibrium. Computational methods for calculating chemical equilibrium. Renumbered from MAE 110B. Students may not receive credit for MAE 110 and MAE 110B. ", + "edges_from": [ + 88, + 89 + ], + "edges_to": [], + "id": 87, + "label": "MAE 110", + "title": "Thermodynamic Systems (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4765, + 2765, + 4766, + 87 + ], + "id": 88, + "label": "MAE 110A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 27, + 667 + ], + "edges_to": [ + 87 + ], + "id": 89, + "label": "MAE 11", + "title": "" + }, + { + "dept": "ANSC", + "description": "Popular representations of South Asia abound in clich\u00e9s: poverty and luxury, cities and hamlets, ascetics and call centers. What do these clich\u00e9s do to our understanding of South Asia? How do we get beneath or beyond these representations? We will respond to these questions by exploring how people in South Asia live on a day-to-day basis, while also attending to how major historical events, such as colonialism and the Partition of India and Pakistan, shape contemporary life and politics. Program or materials fees may apply. ", + "edges_from": [ + 96, + 59, + 58, + 91, + 92, + 93, + 94, + 95 + ], + "edges_to": [], + "id": 90, + "label": "ANSC 191GS", + "title": "Everyday Life in South Asia: Beyond the Clich\u00e9s (4)" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 90, + 5371, + 93 + ], + "id": 91, + "label": "ANSC 148", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 90, + 5371 + ], + "id": 92, + "label": "ANTH 103", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [ + 91, + 1292, + 1293 + ], + "edges_to": [ + 90, + 5371 + ], + "id": 93, + "label": "ANSC 155", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 90 + ], + "id": 94, + "label": "ANTH 1", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 90, + 5371 + ], + "id": 95, + "label": "ANSC 164", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 90, + 5371 + ], + "id": 96, + "label": "ANSC 121", + "title": "" + }, + { + "dept": "MAE", + "description": "Overview of present day primary energy sources and availability; fossil fuel, renewable, and nuclear; heat engines; energy conservation, transportation, air pollution, and climate change. Students may not receive credit for both MAE 118 and MAE 118A. ", + "edges_from": [ + 98, + 99 + ], + "edges_to": [], + "id": 97, + "label": "MAE 118", + "title": "Introduction to Energy Systems (4)" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 1056, + 97, + 100, + 5926, + 1063, + 4765, + 1072, + 1409, + 3066, + 1051, + 3069 + ], + "id": 98, + "label": "CENG 101A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 26, + 571, + 572, + 1351 + ], + "edges_to": [ + 1056, + 97, + 100, + 5926, + 1063, + 2765, + 4765, + 1072, + 1409, + 2884, + 3066, + 1051, + 3069, + 4766 + ], + "id": 99, + "label": "MAE 101A", + "title": "" + }, + { + "dept": "MAE", + "description": "Basic principles of solar radiation\u2014diffuse and direct radiation; elementary solar energy engineering\u2014solar thermal and solar photovoltaic; basic principles of wind dynamics\u2014hydrodynamic laws, wind intermittency, Betz\u2019s law; elementary wind energy engineering; solar and wind energy perspectives; operating the California power grid with 33 percent renewable energy sources. Students may not receive credit for both MAE 118B and MAE 119. ", + "edges_from": [ + 98, + 99 + ], + "edges_to": [], + "id": 100, + "label": "MAE 119", + "title": "Introduction to Renewable Energy: Solar and Wind (4)" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in philosophy of mind with emphasis on classic texts or contemporary authors.\u00a0May be taken for credit three times with changed content.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 101, + "label": "PHIL 207", + "title": "Core Course in Philosophy of Mind (4)" + }, + { + "dept": "PHIL", + "description": "Introduction to philosophical methods of analysis through study of classic historical or contemporary texts. Writing intensive. Enrollment limited to entering graduate students.", + "edges_from": [], + "edges_to": [], + "id": 102, + "label": "PHIL 200", + "title": "Proseminar (4)" + }, + { + "dept": "PHIL", + "description": "An introduction to some central issues in ethical theory with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 103, + "label": "PHIL 202", + "title": "Core Course in Ethics (4)" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in philosophy of language with emphasis on classic texts or contemporary authors.\u00a0May be taken for credit three times with changed content. ", + "edges_from": [], + "edges_to": [], + "id": 104, + "label": "PHIL 208", + "title": "Core Course in Philosophy of Language (4)" + }, + { + "dept": "CLRE", + "description": "Scholars will select the appropriate sampling method and determine the sample size necessary for specific projects and adjust for confounding. Participants will be familiar with several specialized analytic techniques, including matched, cluster, and meta-analyses. They will also be familiar with methodological issues, unique to ecological, behavioral, and genetic studies. Class sessions may also be offered live via distance learning with established remote site. ", + "edges_from": [ + 106 + ], + "edges_to": [ + 576 + ], + "id": 105, + "label": "CLRE 257", + "title": "Epidemiology II (2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 576, + 105, + 357 + ], + "id": 106, + "label": "CLRE 251", + "title": "" + }, + { + "dept": "CLRE", + "description": "This course will review the ethics and basic regulatory issues for research involving human subjects, including\u00a0access and confidentiality. Scholars will prepare a mock submission to an IRB for peer review and practice and will also review their peers\u2019 proposals. Class sessions may also be offered live via distance learning with established remote site. ", + "edges_from": [ + 108 + ], + "edges_to": [ + 576 + ], + "id": 107, + "label": "CLRE 256", + "title": "Patient-Oriented Research II (2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 576, + 107, + 357 + ], + "id": 108, + "label": "CLRE 250", + "title": "" + }, + { + "dept": "CLRE", + "description": "This course provides an orientation to database design and management and covers key issues regarding data handling for clinical research and clinical trials. Scholars will also become familiar with technology assessment and decision-making methods and analysis. Class sessions may also be offered live via distance learning with established remote site.", + "edges_from": [], + "edges_to": [ + 576 + ], + "id": 109, + "label": "CLRE 255", + "title": "Data Management and Informatics (2)" + }, + { + "dept": "CLRE", + "description": "Scholars will understand and conduct advanced biostatistical analyses including: multiple linear and logistic regression, survival analysis, and Cox and extended Cox regression. The scholar will also be familiar with person-time rate analysis with Poisson regression and longitudinal data analysis in the presence of missing values and varying measurement times. Class sessions may also be offered live via distance learning with established remote site. ", + "edges_from": [ + 111 + ], + "edges_to": [ + 576, + 3474 + ], + "id": 110, + "label": "CLRE 254", + "title": "Biostatistics II (2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 576, + 3474, + 3470, + 110, + 3471 + ], + "id": 111, + "label": "CLRE 253", + "title": "" + }, + { + "dept": "CLRE", + "description": "Scholars will evaluate relevant outcomes in patient-oriented research from the patient (quality of life) and societal (economic) perspectives and locate potential resources for assessing the relevant outcomes in a wide variety of study designs. They will also be able to describe the relative strengths of different health services research approaches to a clinical problem. Finally, they will understand the components of clinical practice guidelines, including patient preferences, and how these guidelines both depend upon as well as inform patient-oriented research. Class sessions may also be offered live via distance learning with established remote site.", + "edges_from": [], + "edges_to": [ + 576 + ], + "id": 112, + "label": "CLRE 252", + "title": "Health Services Research (2)" + }, + { + "dept": "MUS", + "description": "Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 113, + "label": "MUS 234", + "title": "Symphonic Orchestra (4)" + }, + { + "dept": "MUS", + "description": "Performance of representative chamber music literature, instrumental and/or vocal, through coached rehearsal and seminar studies. Course may be repeated for credit since the literature studied varies from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 114, + "label": "MUS 230", + "title": "Chamber Music Performance (4)" + }, + { + "dept": "CLRE", + "description": "This course covers the key elements of scientific communication skills that are designed to enhance the clinical research\u2019s ability to be successful. Topics include secrets of making good oral presentations and engaging the audience, how to write and prepare abstracts, basics of grant writing and submission, and how grants are reviewed. Course includes mock grant study section. ", + "edges_from": [], + "edges_to": [], + "id": 115, + "label": "CLRE 259", + "title": "Scientific Communication Skills (2)" + }, + { + "dept": "CLRE", + "description": "Students participate in a series of seminars on professional development topics that will focus on skills and knowledge to enhance the ability of clinical researchers to be successful. Seminar topics may include research management, team building and collaboration, leadership skills, career development in the clinical research field, negotiation skills, research project management, and research budgeting/financial management. ", + "edges_from": [], + "edges_to": [ + 576 + ], + "id": 116, + "label": "CLRE 258", + "title": "Professional Development in Clinical Research (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 117, + "label": "Linguistics/Heritage Languages (LIHL) 114F", + "title": "Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "VIS", + "description": "Methodological investigation of and training in the practices of art museums, galleries, film and digital environments, public arts organizations, and the like. Instruction by museum and gallery curators and opportunities for participation in ongoing programs at local art institutions.", + "edges_from": [], + "edges_to": [], + "id": 118, + "label": "VIS 281", + "title": "Curatorial Practice (4)" + }, + { + "dept": "VIS", + "description": "Practice in writing about art (both one\u2019s own and others) accompanied by analysis of selected contemporary critical writings.", + "edges_from": [], + "edges_to": [], + "id": 119, + "label": "VIS 280", + "title": "Workshop in Critical Writing (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Vietnamese but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Vietnamese. LIHL 114F, LIHL 114W, and LIHL 114P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 120, + "label": "Linguistics/Heritage Languages (LIHL) 114W", + "title": "Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "ECE", + "description": "Fresnel and Fraunhofer diffraction theory. Optical resonators, interferometry. Gaussian beam propagation and transformation. Laser oscillation and amplification, Q-switching and mode locking of lasers, some specific laser systems. (Recommended prerequisites: ECE 107 and ECE 182 or equivalent, introductory quantum mechanics or ECE 183.) ", + "edges_from": [], + "edges_to": [ + 123 + ], + "id": 121, + "label": "ECE 240A", + "title": "Lasers and Optics (4)" + }, + { + "dept": "ECE", + "description": "Propagation of waves and rays in anisotropic media. Electro-optical switching and modulation. Acousto-optical deflection and modulation. Detection theory. Heterodyne detection, incoherent and coherent detection. (Recommended prerequisites: ECE 181, ECE 183 or equivalent.) ", + "edges_from": [ + 123 + ], + "edges_to": [], + "id": 122, + "label": "ECE 240C", + "title": "Optical Modulation and Detection (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 121 + ], + "edges_to": [ + 122 + ], + "id": 123, + "label": "ECE 240B", + "title": "" + }, + { + "dept": "HIUS", + "description": "134. Immigration and Ethnicity in Modern American Society (4)", + "edges_from": [], + "edges_to": [], + "id": 124, + "label": "HIUS 180/ETHN", + "title": "" + }, + { + "dept": "BIMM", + "description": "The BioClock Studio is an innovative course in which a team of undergraduate students, drawn from diverse disciplines, will work collaboratively to develop their scientific and communicative skills to produce creative educational materials that will enhance understanding of circadian biology. Students are expected to attend the annual Circadian Biology Symposium held each winter, to the extent course schedules allow, to conduct interviews with prominent scientists. BIMM 116 is not a prerequisite to enroll in BIMM 116B. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 125, + "label": "BIMM 116B", + "title": "BioClock Studio (4)" + }, + { + "dept": "BENG", + "description": "Structural and functional aspects of transport and blood-tissue exchange in key organs during circulatory shock, bacterial toxemia, hypertension. Physical and ultrastructural techniques used to analyze small-vessel dynamics. ", + "edges_from": [], + "edges_to": [], + "id": 126, + "label": "BENG 267", + "title": "Microcirculation in Health and Disease (4)" + }, + { + "dept": "TDDM", + "description": "Practical and conceptual studies of approaches to dance making. Compositional projects enable students to create short works for solo, duet, and small group situations with options to explore interdisciplinary collaboration, specific sites, text, political and societal issues, and advanced partner work. ", + "edges_from": [ + 128 + ], + "edges_to": [], + "id": 127, + "label": "TDDM 100", + "title": "Dance Making 1 (4)" + }, + { + "dept": "TDDM", + "description": "", + "edges_from": [], + "edges_to": [ + 129, + 127 + ], + "id": 128, + "label": "TDDM 1", + "title": "" + }, + { + "dept": "TDDM", + "description": "The study of compositional, ensemble, collaborative, and improvisational approaches to dance making. Structures, scores, tasks, imagination, timing, spontaneity, partnering skills, composing in the moment, shared authorship, and experimentation facilitate the development of movement vocabulary. ", + "edges_from": [ + 128 + ], + "edges_to": [], + "id": 129, + "label": "TDDM 101", + "title": "Dance Making 2 (4)" + }, + { + "dept": "NANO", + "description": "Introduction to NanoEngineering; nanoscale fabrication: nanolithography and self-assembly; characterization tools; nanomaterials and nanostructures: nanotubes, nanowires, nanoparticles, and nanocomposites; nanoscale and molecular electronics; nanotechnology in magnetic systems; nanotechnology in integrative systems; nanoscale optoelectronics; nanobiotechnology: biomimetic systems, nanomotors, nanofluidics, and nanomedicine. Priority enrollment given to NanoEngineering majors. ", + "edges_from": [ + 131, + 132, + 133, + 134, + 135, + 28 + ], + "edges_to": [ + 5689, + 2282, + 2283, + 2916, + 5166 + ], + "id": 130, + "label": "NANO 101", + "title": "Introduction to NanoEngineering (4)" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 2272, + 130, + 3323, + 2286 + ], + "id": 131, + "label": "CENG 15", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2945, + 130, + 1923, + 7, + 3977, + 3978, + 655, + 403, + 404, + 2968, + 3482, + 4891, + 28, + 4894, + 1317, + 553, + 2987, + 557, + 2990, + 1844, + 3515, + 572, + 708, + 711, + 712, + 3531, + 4307, + 4575, + 1120, + 1121, + 955, + 4892, + 2817, + 4577, + 2556, + 2813 + ], + "id": 132, + "label": "MATH 20C", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 419, + 420, + 1265, + 849, + 953, + 667 + ], + "edges_to": [ + 130, + 2533, + 1510, + 1513, + 848, + 595, + 596, + 2555 + ], + "id": 133, + "label": "CHEM 6B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2272, + 130, + 2153, + 554, + 2286, + 3323 + ], + "id": 134, + "label": "MAE 8", + "title": "" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [], + "edges_to": [ + 2272, + 130, + 3323, + 5166, + 2286 + ], + "id": 135, + "label": "NANO 15", + "title": "" + }, + { + "dept": "LTCS", + "description": "The course will explore the relation among cultural production, institutions, history, and ideology during selected historical periods. In considering different kinds of texts, relations of power and knowledge at different historical moments will be discussed. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 136, + "label": "LTCS 120", + "title": "Historical Perspectives on Culture (4)" + }, + { + "dept": "LTCS", + "description": "Perspectives on Immigration and Citizenship (4)", + "edges_from": [], + "edges_to": [], + "id": 137, + "label": "LTCS 125", + "title": "Cultural" + }, + { + "dept": "ECON", + "description": "Examination of recent econometric research; development of own research by students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 138, + "label": "ECON 222A-B-C", + "title": "Workshop in Econometrics (4-4-4)" + }, + { + "dept": "ANSC", + "description": "How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125GS and ANSC 125. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 139, + "label": "ANSC 125GS", + "title": "Gender, Sexuality, and Society (4)" + }, + { + "dept": "HIEU", + "description": "Students will exercise advanced German language skills to read and discuss materials in HIEU 154. Must be enrolled in HIEU 154.", + "edges_from": [], + "edges_to": [], + "id": 140, + "label": "HIEU 154XL", + "title": "HIEU 154 Foreign Language Section (4)" + }, + { + "dept": "CSE", + "description": "Modern advances in design and analysis of algorithms. Exact syllabus varies. Topics include approximation, randomized algorithms, probabilistic analysis, heuristics, online algorithms, competitive analysis, models of memory hierarchy, parallel algorithms, number-theoretic algorithms, cryptanalysis, computational geometry, computational biology, network algorithms, VLSI CAD algorithms. ", + "edges_from": [ + 142 + ], + "edges_to": [], + "id": 141, + "label": "CSE 203A", + "title": "Advanced Algorithms (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 11 + ], + "edges_to": [ + 4888, + 4887, + 3204, + 141, + 4215 + ], + "id": 142, + "label": "CSE 202", + "title": "" + }, + { + "dept": "LTWR", + "description": "Study and practice of poetry as artistic and communal expression. Techniques of composition (traditional forms, avant garde techniques, dramatic monologue, performance poetry, and new genre) studied through written and spoken examples of poetry. Students are required to attend at least three New Writing Series readings during the quarter. ", + "edges_from": [ + 44, + 45, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155 + ], + "edges_to": [ + 3906, + 3908, + 3909, + 3910, + 334, + 338, + 341, + 542 + ], + "id": 143, + "label": "LTWR 8B", + "title": "Writing Poetry (4)" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 4965, + 4977, + 143, + 145, + 852, + 3418, + 156, + 157 + ], + "id": 144, + "label": "MCWP 40", + "title": "" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [ + 144 + ], + "edges_to": [ + 4965, + 143, + 4977, + 852, + 3418, + 156, + 157 + ], + "id": 145, + "label": "MCWP 50", + "title": "" + }, + { + "dept": "WARR", + "description": "", + "edges_from": [ + 148 + ], + "edges_to": [ + 4965, + 4977, + 156, + 157, + 143 + ], + "id": 146, + "label": "WARR 11B", + "title": "" + }, + { + "dept": "WCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 4965, + 143, + 4977, + 852, + 149, + 156, + 157 + ], + "id": 147, + "label": "WCWP 10A", + "title": "" + }, + { + "dept": "WARR", + "description": "", + "edges_from": [], + "edges_to": [ + 4965, + 143, + 4977, + 146, + 156, + 157 + ], + "id": 148, + "label": "WARR 11A", + "title": "" + }, + { + "dept": "WCWP", + "description": "", + "edges_from": [ + 147 + ], + "edges_to": [ + 4965, + 143, + 4977, + 852, + 156, + 157 + ], + "id": 149, + "label": "WCWP 10B", + "title": "" + }, + { + "dept": "DOC", + "description": "", + "edges_from": [], + "edges_to": [ + 4965, + 143, + 4977, + 852, + 3418, + 156, + 157 + ], + "id": 150, + "label": "DOC 3", + "title": "" + }, + { + "dept": "DOC", + "description": "", + "edges_from": [], + "edges_to": [ + 4965, + 143, + 4977, + 852, + 3418, + 156, + 157, + 5278 + ], + "id": 151, + "label": "DOC 2", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 4965, + 299, + 143, + 4977, + 852, + 3418, + 156, + 157 + ], + "id": 152, + "label": "HUM 1", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 4965, + 299, + 143, + 4977, + 852, + 3418, + 156, + 157 + ], + "id": 153, + "label": "HUM 2", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 154, + 518 + ], + "edges_to": [ + 859, + 4965, + 860, + 143, + 4977, + 852, + 154, + 155, + 156, + 157 + ], + "id": 154, + "label": "MMW 12", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 154, + 155, + 518, + 519 + ], + "edges_to": [ + 859, + 4965, + 156, + 143, + 4977, + 852, + 155, + 860, + 157 + ], + "id": 155, + "label": "MMW 13", + "title": "" + }, + { + "dept": "LTWR", + "description": "Study of nonfictional prose in terms of genre and craft. Techniques of composition (journalism, essay, letters, reviews) will be studied through written examples of the genre. ", + "edges_from": [ + 44, + 45, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155 + ], + "edges_to": [ + 3908, + 3909, + 3910, + 334, + 335, + 338, + 339 + ], + "id": 156, + "label": "LTWR 8C", + "title": "Writing Nonfiction (4)" + }, + { + "dept": "LTWR", + "description": "Study of fiction in both theory and practice. Narrative technique studied in terms of subjectivity and atmosphere, description, dialogue, and the editing process will be introduced through readings from the history of the novel and short story. Students are required to attend at least three New Writing Series readings during the quarter. ", + "edges_from": [ + 44, + 45, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155 + ], + "edges_to": [ + 3906, + 3908, + 3909, + 3910, + 334, + 338, + 342, + 541, + 543 + ], + "id": 157, + "label": "LTWR 8A", + "title": "Writing Fiction (4)" + }, + { + "dept": "BIOM", + "description": "A selection of short courses in the biomedical and pharmacological sciences offered by resident experts. Topics will vary annually. Each short course will last one to two weeks, meeting five hours a week. ", + "edges_from": [], + "edges_to": [], + "id": 158, + "label": "BIOM 231", + "title": "Contemporary Topics in Pharmacology (2)" + }, + { + "dept": "BIOM", + "description": "Strategies such as positron emission tomography, magnetic resonance imaging, and ultrasound for nondestructively imaging molecular and cell biological events inside living animals and eventually human patients. Emphasis on detecting angiogenesis, apoptosis, and expression of tumor-specific genes. ", + "edges_from": [], + "edges_to": [], + "id": 159, + "label": "BIOM 232", + "title": "In vivo Cellular and Molecular Imaging (1)" + }, + { + "dept": "BIOM", + "description": "This class is taught by SBMRI program faculty, whose laboratories are actively involved in determining the three-dimensional structure of complex biological entities. The course covers basic principles of crystallization, cryo-electron microscopy, and NMR, and modern techniques for Ab-initio-structural analysis. ", + "edges_from": [], + "edges_to": [], + "id": 160, + "label": "BIOM 233", + "title": "Structural Biology in Cell Signaling and Drug Discovery (2)" + }, + { + "dept": "BIOM", + "description": "The course is designed to introduce or reintroduce histology and histopathology of the various organ systems to those who need to analyze mouse tissues as an essential part of their research. ", + "edges_from": [], + "edges_to": [], + "id": 161, + "label": "BIOM 234", + "title": "Practical Histopathology and Mouse Models of Human Diseases (2)" + }, + { + "dept": "BIOM", + "description": "This course provides an understanding of the evolving area of human genomics and correlation between an individual\u2019s or subpopulation\u2019s genetic makeup and their response to drugs. The information provides the student the basis for select prescribing and/or targeting drug development to improve drug therapy outcomes and reduce adverse drug responses. ", + "edges_from": [], + "edges_to": [], + "id": 162, + "label": "BIOM 235", + "title": "Pharmacogenomics (3)" + }, + { + "dept": "HIGR", + "description": "267A-B. Research Seminar in United States History (4-4)", + "edges_from": [], + "edges_to": [], + "id": 163, + "label": "HIGR", + "title": "" + }, + { + "dept": "ENVR", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 164, + "label": "ENVR 87", + "title": "Environmental Studies Freshman Seminar (1)" + }, + { + "dept": "ECON", + "description": "Application of econometric methods to such areas as labor supply, human capital, and financial time series. Concurrent enrollment in Econ 120C is permitted. ", + "edges_from": [ + 166 + ], + "edges_to": [], + "id": 165, + "label": "ECON 121", + "title": "Applied Econometrics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 168, + 170 + ], + "edges_to": [ + 3985, + 165, + 1998 + ], + "id": 166, + "label": "ECON 120C", + "title": "" + }, + { + "dept": "ECON", + "description": "Detailed study of the small sample and asymptotic properties of estimators commonly used in applied econometric work: multiple linear regression, instrumental variables, generalized method of moments, and maximum likelihood. Econometric computation using MATLAB. Recommended preparation: Econ 120C. ", + "edges_from": [ + 168, + 169, + 170, + 171 + ], + "edges_to": [], + "id": 167, + "label": "ECON 122", + "title": "Econometric Theory (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1220, + 3978, + 1844, + 794, + 3977 + ], + "edges_to": [ + 907, + 172, + 3749, + 166, + 167 + ], + "id": 168, + "label": "ECON 120B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2817, + 2987, + 7, + 270, + 1228, + 407, + 2968, + 4891, + 4892, + 4894, + 5281, + 1317, + 167, + 552, + 554, + 1223, + 1843, + 572, + 1219, + 1221, + 4577, + 1225, + 844, + 5197, + 2385, + 5973, + 5974, + 4575, + 1120, + 1121, + 3309, + 2161, + 5492, + 2813 + ], + "id": 169, + "label": "MATH 31AH", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 907, + 172, + 3749, + 166, + 167 + ], + "id": 170, + "label": "MATH 181B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 2051, + 4116, + 419, + 420, + 2052 + ], + "edges_to": [ + 2817, + 2987, + 7, + 270, + 792, + 1228, + 2968, + 4891, + 4892, + 4894, + 5281, + 167, + 554, + 1223, + 1843, + 572, + 1090, + 1219, + 1221, + 4577, + 1225, + 844, + 5197, + 2385, + 5973, + 5974, + 4575, + 1120, + 1121, + 3309, + 2161, + 5492, + 2813 + ], + "id": 171, + "label": "MATH 18", + "title": "" + }, + { + "dept": "ECON", + "description": "Interaction between economic forces and demographic changes are considered, as are demographic composition and analysis; fertility, mortality, and migration processes and trends. Course emphasizes the creation, evaluation, and interpretation of forecasts for states, regions, and subcounty areas. Econ 178 is recommended. ", + "edges_from": [ + 168, + 170 + ], + "edges_to": [], + "id": 172, + "label": "ECON 125", + "title": "Demographic Analysis and Forecasting (4)" + }, + { + "dept": "CSE", + "description": "Training in teaching methods in the field of computer science. This course examines theoretical and practical communication and teaching techniques particularly appropriate to computer science. ", + "edges_from": [], + "edges_to": [], + "id": 173, + "label": "CSE 599", + "title": "Teaching Methods in Computer Science (2)" + }, + { + "dept": "HIEU", + "description": "Selected topics in ancient Greek history. May be coscheduled with HIEU 160. May be taken for credit up to three times. Department approval required.", + "edges_from": [], + "edges_to": [], + "id": 174, + "label": "HIEU 260", + "title": "Topics in Ancient Greek History (4)" + }, + { + "dept": "SE", + "description": "The Senior Seminar is designed to allow senior undergraduates to meet with faculty members to explore an intellectual topic in structural engineering. Topics will vary from quarter to quarter. Enrollment is limited to twenty students with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 175, + "label": "SE 192", + "title": "Senior Seminar (1)" + }, + { + "dept": "TDGR", + "description": "This seminar explores the interaction of new media and technologies for collaboration, research, and creation in dance making and performance. ", + "edges_from": [], + "edges_to": [], + "id": 176, + "label": "TDGR 217", + "title": "New Media and Technology (4)" + }, + { + "dept": "ECON", + "description": "Covers various models in behavioral economics including self-control, bounded memory, belief manipulation, framing effects, and behavioral game theory. The course will also discuss their role in industrial organization, finance, and political economy, and their implications for welfare. ", + "edges_from": [ + 178, + 179, + 180 + ], + "edges_to": [], + "id": 177, + "label": "ECON 263", + "title": "Modeling Behavioral Economics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 180 + ], + "edges_to": [ + 177, + 3762, + 179, + 181, + 918, + 919, + 187, + 924 + ], + "id": 178, + "label": "ECON 200B", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 178 + ], + "edges_to": [ + 918, + 177, + 3762, + 181, + 182, + 919, + 187, + 924 + ], + "id": 179, + "label": "ECON 200C", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 3762, + 177, + 178, + 181, + 918, + 919, + 187, + 924 + ], + "id": 180, + "label": "ECON 200A", + "title": "" + }, + { + "dept": "ECON", + "description": "This course is intended to give students an introduction to the study of strategic interaction through a behavioral lens. We will review game theory experiments and analyze which theoretical predictions are validated and which are violated in practice. We will characterize the systematic violations of the theory that come from experiments and study how these behavioral regularities can be incorporated into new equilibrium concepts. ", + "edges_from": [ + 178, + 179, + 180 + ], + "edges_to": [], + "id": 181, + "label": "ECON 262", + "title": "Behavioral Game Theory (4)" + }, + { + "dept": "ECON", + "description": "This course covers theory and empirical applications in the following areas of industrial organization: mergers, vertical integration, and innovation. Optional topics include network effects, technology adoption, and regulation. ", + "edges_from": [ + 179, + 183 + ], + "edges_to": [], + "id": 182, + "label": "ECON 261", + "title": "Industrial Organization: Markets (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 660 + ], + "edges_to": [ + 662, + 657, + 656, + 664, + 3762, + 661, + 182, + 663, + 184 + ], + "id": 183, + "label": "ECON 220C", + "title": "" + }, + { + "dept": "ECON", + "description": "This course covers theory and empirical applications in the following areas of industrial organization: dynamic pricing, price discrimination, collusion, market power, discrete choice demand modeling, entry, asymmetric information, and search. ", + "edges_from": [ + 183 + ], + "edges_to": [], + "id": 184, + "label": "ECON 260", + "title": "Industrial Organization: Firms (4)" + }, + { + "dept": "ECON", + "description": "The course will cover any of a variety of topics in environmental", + "edges_from": [], + "edges_to": [], + "id": 185, + "label": "ECON 267", + "title": "Topics in Environmental and Resource Economics (4)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in natural resource economics. (Previously numbered Econ 242.) ", + "edges_from": [], + "edges_to": [], + "id": 186, + "label": "ECON 266", + "title": "Economics of Natural Resources (4)" + }, + { + "dept": "ECON", + "description": "Experimental findings by economists and psychologists of systematic departures from the classical model of decision making under risk and uncertainty. Issues of dynamic consistency in choice. Development, formal analysis and application of alternative models of risk preferences and beliefs. ", + "edges_from": [ + 178, + 179, + 180 + ], + "edges_to": [], + "id": 187, + "label": "ECON 265", + "title": "Alternative Choice Theory (4)" + }, + { + "dept": "ECON", + "description": "Design and interpretation of controlled experiments using human subjects. (Previously numbered Econ 207.) ", + "edges_from": [], + "edges_to": [], + "id": 188, + "label": "ECON 264", + "title": "Experimental Economics (4)" + }, + { + "dept": "EDS", + "description": "Second course in a two-course series. The elementary credential candidate performs student teaching in participating schools for seven to eight weeks full-time for each course (fifteen weeks total) under the supervision of a cooperating teacher and university supervisor. The student teaching experience offers professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Multiple Subject Teaching Credential. ", + "edges_from": [ + 190 + ], + "edges_to": [], + "id": 189, + "label": "EDS 369B", + "title": "Multiple Subject (Elementary) Student Teaching Practicum-II (9)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 189 + ], + "id": 190, + "label": "EDS 369A", + "title": "" + }, + { + "dept": "MUS", + "description": "Performance in an ensemble appropriate to student abilities and interests. Normally each section requires student participation for the whole academic year, with credit for participation each quarter. Sections of MUS 95W have included: African drumming, Korean percussion, Indian sitar and tabla, koto, and Indonesian flute. Not all sections will be offered every year. May be repeated for credit. Grading on participation level, individual testing, comparative papers on repertoire covered, etc. ", + "edges_from": [], + "edges_to": [], + "id": 191, + "label": "MUS 95", + "title": "Ensemble Performance (2)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1B. ", + "edges_from": [ + 193, + 194 + ], + "edges_to": [], + "id": 192, + "label": "Linguistics/Arabic (LIAB) 1BX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 192, + 1740 + ], + "id": 193, + "label": "LIAB 1A", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 192, + 1740 + ], + "id": 194, + "label": "LIAB 1AX", + "title": "" + }, + { + "dept": "LTAM", + "description": "Latino/a-Chicano/a Cultures: 1848\u20131960 (4)", + "edges_from": [], + "edges_to": [], + "id": 195, + "label": "LTAM 101", + "title": "Early" + }, + { + "dept": "TDGR", + "description": "Preparation, presentation, and discussion", + "edges_from": [], + "edges_to": [], + "id": 196, + "label": "TDGR 219", + "title": "Directing Process Studio (4)" + }, + { + "dept": "LTSP", + "description": "A sociolinguistic study of the popular dialects in the United States of America and their relation to other Latin American dialects. The course will cover phonological and syntactic differences between the dialects as well as the influences of English on the Southwest dialects. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 197, + "label": "LTSP 162", + "title": "Spanish Language in the United States (4)" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [ + 1274, + 1276 + ], + "edges_to": [ + 5769, + 5771, + 3344, + 3346, + 3349, + 543, + 3367, + 2476, + 5054, + 5953, + 5954, + 5955, + 197, + 201, + 202, + 5579, + 3532, + 3533, + 3534, + 3151, + 3536, + 3537, + 3154, + 5080, + 3535, + 5084, + 5488, + 5489, + 2937 + ], + "id": 198, + "label": "LTSP 50A", + "title": "" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [ + 1274, + 1276 + ], + "edges_to": [ + 5769, + 5771, + 3344, + 3346, + 3349, + 543, + 3367, + 2476, + 5054, + 5953, + 5954, + 5955, + 197, + 201, + 202, + 5579, + 3532, + 3533, + 3534, + 3151, + 3536, + 3537, + 3154, + 5080, + 3535, + 5084, + 5488, + 5489, + 2937 + ], + "id": 199, + "label": "LTSP 50B", + "title": "" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [ + 1274, + 1276 + ], + "edges_to": [ + 5769, + 5771, + 3344, + 3346, + 3349, + 543, + 3367, + 2476, + 5054, + 5953, + 5954, + 5955, + 197, + 201, + 202, + 5579, + 3532, + 3533, + 3534, + 3151, + 3536, + 3537, + 3154, + 5080, + 3535, + 5084, + 5488, + 5489, + 2937 + ], + "id": 200, + "label": "LTSP 50C", + "title": "" + }, + { + "dept": "LTSP", + "description": "A comparative study of the English and Spanish phonetic systems. Includes a study of the organs of articulation, manner of articulation stress and intonation patterns, as well as dialectal variations of Spanish. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 201, + "label": "LTSP 160", + "title": "Spanish Phonetics (4)" + }, + { + "dept": "LTSP", + "description": "A workshop designed to foster and encourage writing in Spanish of students working on short forms of fiction. The workshop will include discussions of techniques and intensive writing. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 202, + "label": "LTSP 166", + "title": "Creative Writing (4)" + }, + { + "dept": "MUS", + "description": "Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often-provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year. (Cross-listed with ETHN 179.) ", + "edges_from": [], + "edges_to": [], + "id": 203, + "label": "MUS 127", + "title": "Discover Jazz (4)" + }, + { + "dept": "MUS", + "description": "This course will examine the development of the Blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of Urban Blues and the close relationship of the Blues with Jazz, Rhythm and Blues, and Rock and Roll. (Cross-listed with ETHN 178.) ", + "edges_from": [], + "edges_to": [], + "id": 204, + "label": "MUS 126", + "title": "Blues: An Oral Tradition (4)" + }, + { + "dept": "MATH", + "description": "In recent years, topics have included applied complex analysis, special functions, and asymptotic methods. May be repeated for credit with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 205, + "label": "MATH 217", + "title": "Topics in Applied Mathematics (4)" + }, + { + "dept": "MATH", + "description": "Various topics in the mathematics of biological systems. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 206, + "label": "MATH 218", + "title": "Seminar in Mathematics of Biological Systems (1)" + }, + { + "dept": "POLI", + "description": "The use of real data to assess policy alternatives. Introduction to benefit/cost analysis, decision theory, and the valuation of public goods. Applications to health, environmental, and regulatory economic policy making.", + "edges_from": [], + "edges_to": [], + "id": 207, + "label": "POLI 168", + "title": "Policy Assessment (4)" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of policy analysis. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 208, + "label": "POLI 165", + "title": "Special Topic: Policy Analysis (4)" + }, + { + "dept": "POLI", + "description": "Politics are understood as the combination of individual preferences and decisions into collective choices. What are the issues involved in aggregating individual preferences, what is the choice of rules\u2014formal and informal\u2014for doing so.", + "edges_from": [], + "edges_to": [], + "id": 209, + "label": "POLI 163", + "title": "Analyzing Politics (4)" + }, + { + "dept": "POLI", + "description": "This course will explore contemporary environmental issues such as global warming, endangered species, and land use. Students will be asked to analyze various policy options and to write case analyses. Policies may be debated in class.", + "edges_from": [], + "edges_to": [], + "id": 210, + "label": "POLI 162", + "title": "Environmental Policy (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the biological, psychological, and social influences on the psychology of food and behavior. Topics may include taste preferences and aversions and how they are learned, how culture influences food selection, and food-related behaviors across the lifespan. ", + "edges_from": [], + "edges_to": [], + "id": 211, + "label": "PSYC 173", + "title": "Psychology of Food and Behavior (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of human sexuality research including diversity of sexual behavior and identities, sex and gender development, intimate relationships, and sexual dysfunction. Recommended preparation: completion of PSYC 1, 2, or 106. ", + "edges_from": [], + "edges_to": [], + "id": 212, + "label": "PSYC 172", + "title": "Psychology of Human Sexuality (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the neurobiology of learning and memory, from cognitive to molecular neuroscience, including human, animal, cellular, and molecular studies of memory. Topics include amnesia, intellectual disability, exceptional intelligence, aging, and Alzheimer\u2019s disease. ", + "edges_from": [ + 216, + 214, + 215 + ], + "edges_to": [], + "id": 213, + "label": "PSYC 171", + "title": "Neurobiology of Learning and Memory (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 213 + ], + "id": 214, + "label": "PSYC 181", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 4287, + 686, + 4693, + 5974, + 4505, + 3163, + 213 + ], + "id": 215, + "label": "PSYC 106", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 4505, + 213, + 686 + ], + "id": 216, + "label": "PSYC 2", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides a journey to the interface between neurophysiology and psychology. Topics include neuroimaging and neuroplasticity. ", + "edges_from": [], + "edges_to": [], + "id": 217, + "label": "PSYC 170", + "title": "Cognitive Neuropsychology (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how to foster creativity in individuals, groups, and organizations. Themes that cut across all three levels are highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 218, + "label": "PSYC 176", + "title": "Creativity (4)" + }, + { + "dept": "SE", + "description": "Teaching experience in an appropriate SE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. ", + "edges_from": [], + "edges_to": [], + "id": 219, + "label": "SE 501", + "title": "Teaching Experience (2)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of high-level visual perception, and of how visual perception intersects with attention, memory, and concepts. Topics may include an introduction to the visual system with an emphasis on high-level visual regions; object recognition, face recognition, scene recognition and reading; visual attention, including eye movements during scene perception and during reading; and visual working memory. ", + "edges_from": [], + "edges_to": [], + "id": 220, + "label": "PSYC 174", + "title": "Visual Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the use, abuse, liability, and psychotherapeutic effects of drugs on humans. ", + "edges_from": [], + "edges_to": [], + "id": 221, + "label": "PSYC 179", + "title": "Drugs, Addiction, and Mental Disorders (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an examination of human behavior in industrial, business, and organizational settings. Topics include psychological principles applied to selection, placement, management, and training; the effectiveness of individuals and groups within organizations, including leadership and control; conflict and cooperation; motivation; and organizational structure and design. ", + "edges_from": [], + "edges_to": [], + "id": 222, + "label": "PSYC 178", + "title": "Industrial Organizational Psychology (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in real analysis. In recent years, topics have included Fourier analysis, distribution theory, martingale theory, operator theory. May be taken for credit six times with consent of adviser. ", + "edges_from": [], + "edges_to": [ + 224 + ], + "id": 223, + "label": "MATH 247A", + "title": "Topics in Real Analysis (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in real analysis. Topics include: Fourier analysis, distribution theory, martingale theory, operator theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 223 + ], + "edges_to": [], + "id": 224, + "label": "MATH 247B", + "title": "Further Topics in Real Analysis (4)" + }, + { + "dept": "MAE", + "description": "The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 225, + "label": "MAE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MATH", + "description": "First course in a rigorous three-quarter sequence on real analysis. Topics include: the real number system, basic topology, numerical sequences and series, continuity. (Students may not receive credit for both Math 140A and Math 142A.) ", + "edges_from": [ + 227, + 7 + ], + "edges_to": [ + 3299, + 228, + 4197, + 3747, + 3574, + 5971, + 3743 + ], + "id": 226, + "label": "MATH 140A", + "title": "Foundations of Real Analysis I (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 407 + ], + "edges_to": [ + 1120, + 1121, + 226, + 6, + 4577, + 552, + 2987, + 12, + 398, + 8, + 2990, + 2817, + 30, + 4575 + ], + "id": 227, + "label": "MATH 31CH", + "title": "" + }, + { + "dept": "MATH", + "description": "Second course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation, the Riemann-Stieltjes integral, sequences and series of functions, power series, Fourier series, and special functions. (Students may not receive credit for both Math 140B and Math 142B.) ", + "edges_from": [ + 226 + ], + "edges_to": [ + 4197, + 3299, + 229, + 3743 + ], + "id": 228, + "label": "MATH 140B", + "title": "Foundations of Real Analysis II (4)" + }, + { + "dept": "MATH", + "description": "Third course in a rigorous three-quarter sequence on real analysis. Topics include: differentiation of functions of several real variables, the implicit and inverse function theorems, the Lebesgue integral, infinite-dimensional normed spaces. ", + "edges_from": [ + 228 + ], + "edges_to": [ + 4197, + 3743 + ], + "id": 229, + "label": "MATH 140C", + "title": "Foundations of Real Analysis III (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 201C and ECE 238C.) Classification of phase transformations; displacive and reconstructive transformations; classical and nonclassical theories of nucleation; Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories; interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ", + "edges_from": [], + "edges_to": [ + 487 + ], + "id": 230, + "label": "MAE 271C", + "title": "Phase Transformations (4)" + }, + { + "dept": "MAE", + "description": "State Diffusion and Reaction Kinetics (4)", + "edges_from": [], + "edges_to": [], + "id": 231, + "label": "MAE 271B", + "title": "Solid" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 201A and ECE 238A.) The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. ", + "edges_from": [], + "edges_to": [], + "id": 232, + "label": "MAE 271A", + "title": "Thermodynamics of Solids (4)" + }, + { + "dept": "NEU", + "description": "Specialized advanced topic areas in neurosciences will be addressed in an interactive seminar course format. A different specific topic will be considered each quarter as announced in advance. Students will each present an aspect of the topic area and participate in discussions. ", + "edges_from": [], + "edges_to": [], + "id": 233, + "label": "NEU 221", + "title": "Advanced Topics in Neurosciences (2)" + }, + { + "dept": "NEU", + "description": "This is a practical course designed to emphasize the relationships between experimental design, statistical methods, and biomedical research. The assumptions behind the statistical tests, their appropriate use, and examples of misuse will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 234, + "label": "NEU 225", + "title": "Statistical Methods and Experimental Design (2)" + }, + { + "dept": "HILA", + "description": "Topics may vary from year to year. May be repeated for credit. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 235, + "label": "HILA 171/271", + "title": "Topics in Latin American History Since 1910 (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design A (4)", + "edges_from": [], + "edges_to": [], + "id": 236, + "label": "EDS 287A", + "title": "Educational" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design C\u2014Qualitative Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 237, + "label": "EDS 287C", + "title": "Educational" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design B (4)", + "edges_from": [], + "edges_to": [], + "id": 238, + "label": "EDS 287B", + "title": "Educational" + }, + { + "dept": "BICD", + "description": "Formation and function of the mammalian immune system, molecular and cellular basis of the immune response, infectious diseases and autoimmunity. ", + "edges_from": [ + 240, + 241, + 242 + ], + "edges_to": [], + "id": 239, + "label": "BICD 140", + "title": "Immunology (4)" + }, + { + "dept": "BIBC", + "description": "", + "edges_from": [ + 1509, + 1510, + 1511, + 1512, + 1513, + 1516, + 240 + ], + "edges_to": [ + 3170, + 3141, + 876, + 587, + 2924, + 3490, + 239, + 240, + 4113, + 4525, + 602, + 3932 + ], + "id": 240, + "label": "BIBC 100", + "title": "" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [ + 1508, + 1509, + 1510, + 1513, + 687, + 2070, + 3257, + 2366, + 3295 + ], + "edges_to": [ + 1066, + 2859, + 1070, + 239, + 4786, + 244, + 5230, + 600, + 601, + 602, + 3931, + 3805 + ], + "id": 241, + "label": "BIMM 100", + "title": "" + }, + { + "dept": "BICD", + "description": "", + "edges_from": [ + 687 + ], + "edges_to": [ + 972, + 239, + 5104, + 2162, + 1332, + 602 + ], + "id": 242, + "label": "BICD 100", + "title": "" + }, + { + "dept": "ESYS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate college, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 243, + "label": "ESYS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "BICD", + "description": "This course focuses upon a molecular and immunological approach to study problems in modern medical research. The emphasis will be on novel approaches in medicine, including lymphocyte biology, cancer biology, and gene transfer. Material lab fees will apply. ", + "edges_from": [ + 241 + ], + "edges_to": [], + "id": 244, + "label": "BICD 145", + "title": "Laboratory in Molecular Medicine (4)" + }, + { + "dept": "HINE", + "description": "This course studies a period or theme in Jewish history. Topics will vary from year to year. ", + "edges_from": [], + "edges_to": [], + "id": 245, + "label": "HINE 170/270", + "title": "Special Topics in Jewish History (4)" + }, + { + "dept": "SE", + "description": "of Laminated Composite Structures I (4)", + "edges_from": [], + "edges_to": [ + 1438 + ], + "id": 246, + "label": "SE 253A", + "title": "Mechanics" + }, + { + "dept": "SE", + "description": "of Laminated Composite Structures II (4)", + "edges_from": [], + "edges_to": [], + "id": 247, + "label": "SE 253B", + "title": "Mechanics" + }, + { + "dept": "ANSC", + "description": "160. Nature, Culture, and Environmentalism (4)", + "edges_from": [], + "edges_to": [], + "id": 248, + "label": "ANSC", + "title": "" + }, + { + "dept": "PHIL", + "description": "An introduction to one or more central problems in the philosophy of science, or in the philosophy of one of the particular sciences, such as the nature of confirmation and explanation, the nature of scientific knowledge, reductionism, the unity of science, or realism and antirealism. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 249, + "label": "PHIL 204A", + "title": "Core Course in Philosophy of Science (4)" + }, + { + "dept": "HILA", + "description": "History of Women and Gender in Latin America (4)", + "edges_from": [], + "edges_to": [], + "id": 250, + "label": "HILA 124A", + "title": "" + }, + { + "dept": "MUIR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 251, + "label": "MUIR 1", + "title": "First Year Experience (2)" + }, + { + "dept": "TDGR", + "description": "Specific projects in theatre individually determined to meet the developing needs, interests, and abilities of MFA candidates. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 252, + "label": "TDGR 299", + "title": "Thesis Project (2\u201312)" + }, + { + "dept": "TDGR", + "description": "Selected material from following topics: Performance Theory, Dramatic Theory, Critical Theory, Cultural Studies. May be taken eight times as content varies. ", + "edges_from": [], + "edges_to": [], + "id": 253, + "label": "TDGR 292", + "title": "Cultural and Critical Theory (4)" + }, + { + "dept": "GPPA", + "description": "Good governance and public administration underpin the effective implementation of almost the entire development agenda. This course examines rigorous evidence on both the drivers and impact of (mis)governance in developing countries. Students may not receive credit for GPPA 404 and IRGN 490, Governance, Public Administration, and Development.", + "edges_from": [], + "edges_to": [], + "id": 254, + "label": "GPPA 404", + "title": "Governance, Public Administration, and Development (4)" + }, + { + "dept": "TDGR", + "description": "Literature and Theatre History Prior to 1900 (4)", + "edges_from": [], + "edges_to": [], + "id": 255, + "label": "TDGR 290", + "title": "Dramatic" + }, + { + "dept": "TDGR", + "description": "Literature and Theatre History 1900 to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 256, + "label": "TDGR 291", + "title": "Dramatic" + }, + { + "dept": "TDGR", + "description": "Taken each term by all graduate stage management students. The class focuses on the development of knowledge and skills necessary for the contemporary stage manager. Seminar format is augmented by lab work that may include departmental productions. ", + "edges_from": [], + "edges_to": [], + "id": 257, + "label": "TDGR 296", + "title": "Stage Management Practicum (4)" + }, + { + "dept": "TDGR", + "description": "Thesis research for MFA. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 258, + "label": "TDGR 297", + "title": "Thesis Research (2\u201312)" + }, + { + "dept": "TDGR", + "description": "Research and preparation of doctoral dissertation.", + "edges_from": [], + "edges_to": [], + "id": 259, + "label": "TDGR 294", + "title": "Dissertation Research (4\u201312)" + }, + { + "dept": "TDGR", + "description": "This course covers the artistic, aesthetic, and practical aspects of the actors\u2019 work as they develop and execute the character/role toward a fully realized production. ", + "edges_from": [], + "edges_to": [], + "id": 260, + "label": "TDGR 295", + "title": "Acting Practicum (2)" + }, + { + "dept": "TDGE", + "description": "Study and perform selected songs from American musical theatre. Open to all students. No audition required. Attendance at rehearsals and performance are mandatory. P/NP grades only. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 261, + "label": "TDGE 50", + "title": "Musical Theatre Chorus (2)" + }, + { + "dept": "HISC", + "description": "Study in the History of Science (4)", + "edges_from": [], + "edges_to": [], + "id": 262, + "label": "HISC 199", + "title": "Independent" + }, + { + "dept": "HISC", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 263, + "label": "HISC 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "SOCI", + "description": "(Same as USP 105.) Introduces students to the major approaches in the sociological study of cities and to what a sociological analysis can add to our understanding of urban processes. ", + "edges_from": [ + 264, + 265 + ], + "edges_to": [ + 264 + ], + "id": 264, + "label": "SOCI 153", + "title": "Urban Sociology (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 264 + ], + "id": 265, + "label": "SOCC 153", + "title": "" + }, + { + "dept": "HITO", + "description": "The majority of the world\u2019s citizens now live in cities; this course examines the evolution of housing architecture and finance in the twentieth-century context of rapid urbanization, dissolving empire, industrialization, and globalization. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 266, + "label": "HITO 180/280", + "title": "Housing in the Developing World (4)" + }, + { + "dept": "LTEN", + "description": "Tutorial; individual guided reading in an area not normally covered in courses. May be repeated for credit three times.(P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 267, + "label": "LTEN 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTEN", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 268, + "label": "LTEN 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "BENG", + "description": "Introduction to optics. Light propagation in tissue. Propagation modeling. Optical components. Laser concepts. Optical coherence tomography. Microscopic scattering. Tissue optics. Microscopy. Confocal microscopy. Polarization in tissue. Absorption, diffuse reflection, light scattering spectroscopy. Raman, fluorescence lifetime imaging. Photo-acoustic imaging. ", + "edges_from": [ + 270 + ], + "edges_to": [], + "id": 269, + "label": "BENG 141", + "title": "Biomedical Optics and Imaging (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 169, + 171, + 3501, + 26, + 27, + 28 + ], + "edges_to": [ + 4576, + 2162, + 844, + 269, + 5197 + ], + "id": 270, + "label": "BENG 100", + "title": "" + }, + { + "dept": "LTEN", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 271, + "label": "LTEN 192", + "title": "Senior Seminar in Literatures in English (1)" + }, + { + "dept": "LTEN", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "edges_from": [], + "edges_to": [], + "id": 272, + "label": "LTEN 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "PHIL", + "description": "A study of one or more of Hegel\u2019s major works, in particular, The Phenomenology of Spirit and The Philosophy of Right. Readings and discussion may also include other figures in the Idealist tradition\u2014such as Fichte, H\u00f6lderlin, and Schelling\u2014and critics of the Idealist tradition\u2014such as Marx and Kierkegaard. ", + "edges_from": [], + "edges_to": [], + "id": 273, + "label": "PHIL 107", + "title": "Hegel (4)" + }, + { + "dept": "TDHT", + "description": "Masterpieces of French farce and comedy from the seventeenth century to the twentieth century studied French theatrical and cultural contexts. Readings include plays by Moliere, Marivauz, Beaumarchais, and Feydeau. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 274, + "label": "TDHT 105", + "title": "French Comedy (4)" + }, + { + "dept": "TDHT", + "description": "Continuities and changes in Italian comedy from the Romans through the Renaissance and commedia dell\u2019arte to modern comedy. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 275, + "label": "TDHT 104", + "title": "Italian Comedy (4)" + }, + { + "dept": "TDHT", + "description": "In this course we will examine representative plays and playwrights who write about the \u201cAmerican\u201d experience from a variety of historical periods and diverse cultural communities. Playwrights will include Glaspell, O\u2019Neill, Williams, Hansberry, Valdez, Yamauchi, Parks, Kushner, Mamet, Greenberg, Hwang, Letts, and Cruz. Theatre companies will include The Group, Provincetown Players, San Francisco Mime Troupe, East/West Players, Teatro Campesino, Spiderwoman, and Cornerstone. TDHT 107 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 276, + "label": "TDHT 107", + "title": "American Theatre (4)" + }, + { + "dept": "TDHT", + "description": "in Dramatic Literature and Theatre History (4)", + "edges_from": [], + "edges_to": [], + "id": 277, + "label": "TDHT 101", + "title": "Topics" + }, + { + "dept": "TDHT", + "description": "This course examines pivotal dramatic works in the history of professional Asian American theatre in the United States (1960s to the present). Issues include interculturalism, the crossover between minority theatres and mainstream venues, and the performance of identity. TDHT 103 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 278, + "label": "TDHT 103", + "title": "Asian American Theatre (4)" + }, + { + "dept": "TDHT", + "description": "This course provides a survey of the contributions to the theatre arts made by African Americans. Analytic criteria will include the historical context in which the piece was crafted; thematic and stylistic issues; aesthetic theories and reception. TDHT 109 is an approved Diversity, Equity, and Inclusion (DEI) course. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 279, + "label": "TDHT 109", + "title": "African American Theatre (4)" + }, + { + "dept": "TDHT", + "description": "This course examines the works of Luis Valdez, playwright, director, screenwriter, film director, and founder of the Teatro Campesino. Readings include plays and essays by Valdez and critical books and articles about this important American theatre artist. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 280, + "label": "TDHT 108", + "title": "Luis Valdez (4)" + }, + { + "dept": "Soc/G", + "description": "Supervised teaching in lower-division contact classes, supplemented by seminar on methods in teaching sociology. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 281, + "label": "Soc/G 500", + "title": "Apprentice Teaching (2\u20134)" + }, + { + "dept": "LIGN", + "description": "(Same as Cognitive Science 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. As topics vary, may be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 282, + "label": "LIGN 238", + "title": "Topics in Cognitive Linguistics (0\u20134)" + }, + { + "dept": "PHIL", + "description": "to Philosophy: Knowledge and Its Limits (4)", + "edges_from": [], + "edges_to": [], + "id": 283, + "label": "PHIL 15", + "title": "Introduction" + }, + { + "dept": "PHIL", + "description": "to Philosophy: The Nature of Reality (4)", + "edges_from": [], + "edges_to": [], + "id": 284, + "label": "PHIL 14", + "title": "Introduction" + }, + { + "dept": "PHIL", + "description": "An introduction to philosophy which uses science fiction to make abstract philosophical problems vivid. Science fiction themes may include time travel, teleportation, virtual reality, super-intelligent robots, futuristic utopias, and parallel universes. These scenarios raise philosophical questions about knowledge, reality, ethics, and the mind.", + "edges_from": [], + "edges_to": [], + "id": 285, + "label": "PHIL 16", + "title": "Science Fiction and Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "Basic concepts and techniques in both informal and formal logic and reasoning, including a discussion of argument, inference, proof, and common fallacies, and an introduction to the syntax, semantics, and proof method in sentential (propositional) logic. May be used to fulfill general-education requirements for Warren and Eleanor Roosevelt Colleges.", + "edges_from": [], + "edges_to": [ + 4144 + ], + "id": 286, + "label": "PHIL 10", + "title": "Introduction to Logic (4)" + }, + { + "dept": "PHIL", + "description": "An inquiry into the nature of morality and its role in personal or social life by way of classical and/or contemporary works in ethics. May be used to fulfill general-education requirements for Muir and Marshall Colleges.", + "edges_from": [], + "edges_to": [], + "id": 287, + "label": "PHIL 13", + "title": "Introduction to Philosophy: Ethics (4)" + }, + { + "dept": "PHIL", + "description": "Strategies of scientific inquiry: how elementary logic, statistical inference, and experimental design are integrated to evaluate hypotheses in the natural and social sciences. May be used to fulfill general-education requirements for Marshall, Warren, and Eleanor Roosevelt Colleges.", + "edges_from": [], + "edges_to": [], + "id": 288, + "label": "PHIL 12", + "title": "Scientific Reasoning (4)" + }, + { + "dept": "LAWS", + "description": "This course will deal in depth each year with a different legal issue of contemporary significance, viewed from the perspectives of political science, history, sociology, and philosophy. Required for students completing the Law and Society minor. May be repeated for credit once, for a maximum total of eight units. ", + "edges_from": [], + "edges_to": [], + "id": 289, + "label": "LAWS 101", + "title": "Contemporary Legal Issues (4)" + }, + { + "dept": "COMM", + "description": "This course examines the challenges that arise in using feminist theory to understand black women\u2019s experience in Africa and the United States. It also looks at the mass media and popular culture as arenas of black feminist struggle. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 290, + "label": "COMM 138", + "title": "Black Women, Feminism, and Media (4)" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 294 + ], + "edges_to": [ + 4075, + 3628, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 5784, + 795, + 796, + 797, + 798, + 800, + 290, + 803, + 296, + 297, + 298, + 3627, + 300, + 3629, + 3630, + 1565, + 1607, + 4168, + 1610, + 4299, + 4300, + 802, + 4302, + 4301, + 5206, + 4167, + 4701, + 4702, + 4703, + 4704, + 1125, + 1126, + 1127, + 1128, + 4073, + 4074, + 1131, + 4076, + 4077, + 4072, + 4071, + 3626 + ], + "id": 291, + "label": "COMM 100B", + "title": "" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 294 + ], + "edges_to": [ + 4075, + 3628, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 5784, + 795, + 796, + 797, + 798, + 800, + 290, + 803, + 296, + 297, + 298, + 3627, + 300, + 3629, + 3630, + 1565, + 1607, + 4168, + 1610, + 4299, + 4300, + 802, + 4302, + 4301, + 5206, + 4167, + 4701, + 4702, + 4703, + 4704, + 1125, + 1126, + 1127, + 1128, + 4073, + 4074, + 1131, + 4076, + 4077, + 4072, + 4071, + 3626 + ], + "id": 292, + "label": "COMM 100C", + "title": "" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 294 + ], + "edges_to": [ + 4075, + 3628, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 5784, + 795, + 796, + 797, + 798, + 800, + 290, + 803, + 296, + 297, + 298, + 3627, + 300, + 3629, + 3630, + 1565, + 1607, + 4168, + 1610, + 4299, + 4300, + 802, + 4302, + 4301, + 5206, + 4167, + 4701, + 4702, + 4703, + 4704, + 1125, + 1126, + 1127, + 1128, + 4073, + 4074, + 1131, + 4076, + 4077, + 4072, + 4071, + 3626 + ], + "id": 293, + "label": "COMM 100A", + "title": "" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [], + "edges_to": [ + 5206, + 2574, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1565, + 291, + 4650, + 4651, + 3628, + 3629, + 3630, + 4655, + 2620, + 2623, + 1607, + 4168, + 1610, + 1618, + 3155, + 3157, + 3158, + 4701, + 4702, + 4703, + 4704, + 1125, + 1126, + 1127, + 1128, + 1131, + 4217, + 4220, + 4221, + 5784, + 5787, + 5277, + 5278, + 5791, + 2229, + 2231, + 2232, + 2235, + 2236, + 2237, + 2246, + 4299, + 4300, + 802, + 4302, + 4301, + 5329, + 803, + 730, + 1244, + 733, + 734, + 735, + 1248, + 737, + 1255, + 4649, + 3626, + 3627, + 4652, + 5506, + 4653, + 4654, + 795, + 796, + 797, + 798, + 800, + 290, + 3875, + 292, + 293, + 296, + 297, + 298, + 300, + 736, + 5962, + 4475, + 4476, + 4477, + 4478, + 5505, + 2434, + 2435, + 5508, + 5509, + 5510, + 5511, + 4167, + 5789, + 5790, + 5561, + 984, + 985, + 986, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077 + ], + "id": 294, + "label": "COMM 10", + "title": "" + }, + { + "dept": "PSYC", + "description": "Selected laboratory topics in the field of psychology. May be taken for credit two times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 295, + "label": "PSYC 193L", + "title": "Psychology Laboratory Topics (4)" + }, + { + "dept": "COMM", + "description": "Emergence of dissent in different societies, and relationship of dissent to movements of protest and social change. Movements studied include media concentration, antiwar, antiglobalization, death penalty, national liberation, and labor. Survey of dissenting voices seeking to explain the relationship of ideas to collective action and outcomes. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 296, + "label": "COMM 131", + "title": "Communication, Dissent, and the Formation of Social Movements (4)" + }, + { + "dept": "COMM", + "description": "Specialized study of communication, politics, and society with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 297, + "label": "COMM 132", + "title": "Advanced Topics in Communication, Politics, and Society (4)" + }, + { + "dept": "COMM", + "description": "Television is a contested site for negotiating the rationales of inclusion and exclusion associated with citizenship and national belonging. Historical and contemporary case studies within international comparative contexts consider regulation, civil rights, cultural difference, social movements, new technologies, and globalization. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 298, + "label": "COMM 133", + "title": "Television and Citizenship (4)" + }, + { + "dept": "HUM", + "description": "The revival of classical culture and values and the reaction against medieval ideas concerning the place of human beings in the world. The Protestant Reformation and its intellectual and political consequences. The philosophical background to the scientific revolution. Revelle students must take the course for a letter grade. Students may not receive credit for HUM 3 and HUM 3GS. ", + "edges_from": [ + 152, + 153 + ], + "edges_to": [ + 852 + ], + "id": 299, + "label": "HUM 3", + "title": "Renaissance, Reformation, and Early Modern Europe (4)" + }, + { + "dept": "COMM", + "description": "Students examine film and video media produced by black women filmmakers worldwide. This course will use readings from the writings of the filmmakers themselves as well as from film studies, women\u2019s studies, literature, sociology, and history. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 300, + "label": "COMM 137", + "title": "Black Women Filmmakers (4)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in genetic circuits bioengineering. ", + "edges_from": [ + 57, + 302 + ], + "edges_to": [ + 57 + ], + "id": 301, + "label": "BENG 128B", + "title": "Design Implementation in Genetic Circuits Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 55 + ], + "edges_to": [ + 301 + ], + "id": 302, + "label": "BENG 128A", + "title": "" + }, + { + "dept": "ANTH", + "description": "Major primate field studies will be studied to illustrate common features of primate behavior and behavioral diversity. Topics will include communication, female hierarchies, protocultural behavior, social learning and tool use, play, cognition, and self-awareness.", + "edges_from": [], + "edges_to": [], + "id": 303, + "label": "ANTH 42", + "title": "Primates in a Human-Dominated World (4)" + }, + { + "dept": "SOCI", + "description": "Course focuses on the development of capitalism as a worldwide process, with emphasis on its social and political consequences. Topics include: precapitalist societies, the rise of capitalism in the West, and the social and political responses to its expansion elsewhere. ", + "edges_from": [ + 304, + 305 + ], + "edges_to": [ + 304 + ], + "id": 304, + "label": "SOCI 179", + "title": "Social Change (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 304 + ], + "id": 305, + "label": "SOCD 179", + "title": "" + }, + { + "dept": "HILD", + "description": "Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, and rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration. Program or materials fees may apply. May be taken for credit up to three times. Students must apply and be accepted into the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 306, + "label": "HILD 7GS", + "title": "Race and Ethnicity in the Global World (4)" + }, + { + "dept": "SOCI", + "description": "An analysis of films and how they portray various aspects of American society and culture. ", + "edges_from": [ + 307, + 308 + ], + "edges_to": [ + 307 + ], + "id": 307, + "label": "SOCI 172", + "title": "Films and Society (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 307 + ], + "id": 308, + "label": "SOCB 172", + "title": "" + }, + { + "dept": "SOCI", + "description": "Scientific practices have had a tremendous impact on our understandings of gender. Gender relations have also significantly influenced the character of scientific inquiry. The course will consider how and why these two processes intertwine. ", + "edges_from": [], + "edges_to": [], + "id": 309, + "label": "SOCI 170", + "title": "Gender and Science (4)" + }, + { + "dept": "SOCI", + "description": "Does improved technology mean progress? Or, are environmental pollution and social alienation signs that technology is out of control? This class uncovers the social problems of key modern technologies such as automobile transport, factory farming, biotechnology, and nuclear power. ", + "edges_from": [ + 310, + 311 + ], + "edges_to": [ + 310 + ], + "id": 310, + "label": "SOCI 171", + "title": "Technology and Science (4)" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [], + "edges_to": [ + 310 + ], + "id": 311, + "label": "SOCI 168T", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Same as POLI 1420.) This course covers the definitions, history, and internationalization of terrorism; the interrelation of religion, politics and terror; and the representation of terrorism in the media. A number of organizations and their activities in Europe and the Middle East are examined. ", + "edges_from": [ + 312, + 313 + ], + "edges_to": [ + 312 + ], + "id": 312, + "label": "SOCI 177", + "title": "International Terrorism (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 312 + ], + "id": 313, + "label": "SOCD 177", + "title": "" + }, + { + "dept": "SOCI", + "description": "Surveys the development of nationality and citizenship law in historical and comparative perspective with an emphasis on the United States, Latin America, and Europe. Examines competing sociological accounts for national variation and convergence; consequences of the law; and local, transnational, and extraterritorial forms of citizenship. ", + "edges_from": [ + 314, + 315 + ], + "edges_to": [ + 314 + ], + "id": 314, + "label": "SOCI 175", + "title": "Nationality and Citizenship (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 314 + ], + "id": 315, + "label": "SOCD 175", + "title": "" + }, + { + "dept": "GPPA", + "description": "The health care sector is one of the largest, and continues to grow in most countries. However, it has major quality, safety, and efficiency problems. This course shows how to improve health care delivery. Topics include tools such as checklists, Six Sigma, lean processes, and design of experiments. Some discussion of pharmaceutical development and clinical trials. Students may not receive credit for GPPA 420 and IRGN 490, Innovation in Healthcare Operations.", + "edges_from": [], + "edges_to": [], + "id": 316, + "label": "GPPA 420", + "title": "Innovation in Healthcare Operations (4)" + }, + { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 317, + "label": "LTRU 1A", + "title": "First-Year Russian (5)" + }, + { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 318, + "label": "LTRU 1C", + "title": "First-Year Russian (5)" + }, + { + "dept": "LTRU", + "description": "First-year Russian, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 319, + "label": "LTRU 1B", + "title": "First-Year Russian (5)" + }, + { + "dept": "ETHN", + "description": "This discussion-based course will focus on the application of advanced research methods to the design of extensive, independent research-based projects. ", + "edges_from": [ + 321, + 322 + ], + "edges_to": [ + 5395 + ], + "id": 320, + "label": "ETHN 100H", + "title": "Honors Research Design (4)" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [ + 323, + 324, + 325 + ], + "edges_to": [ + 320, + 322, + 5395, + 327 + ], + "id": 321, + "label": "ETHN 100A", + "title": "" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [ + 321 + ], + "edges_to": [ + 320, + 5395, + 327 + ], + "id": 322, + "label": "ETHN 100B", + "title": "" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 321, + 4269 + ], + "id": 323, + "label": "ETHN 3", + "title": "" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 321, + 4269 + ], + "id": 324, + "label": "ETHN 2", + "title": "" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 321 + ], + "id": 325, + "label": "ETHN 1", + "title": "" + }, + { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "edges_from": [], + "edges_to": [], + "id": 326, + "label": "EDS 240A", + "title": "Research" + }, + { + "dept": "ETHN", + "description": "An intensive capstone experience for ethnic studies majors, this course combines an advanced exploration of praxis-based approaches to social justice with practicum-based independent campus, community, creative, or research projects. ", + "edges_from": [ + 321, + 322 + ], + "edges_to": [], + "id": 327, + "label": "ETHN 100C", + "title": "Social Justice Praxis\u00a0(4)" + }, + { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "edges_from": [], + "edges_to": [], + "id": 328, + "label": "EDS 240C", + "title": "Research" + }, + { + "dept": "COGS", + "description": "This seminar surveys current research in information visualization with the goal of preparing students to do original research. The focus is on the cognitive aspects of information design, dynamic representations, and computational techniques. Topics vary each time course is offered.", + "edges_from": [], + "edges_to": [], + "id": 329, + "label": "COGS 220", + "title": "Information Visualization (4)" + }, + { + "dept": "COGS", + "description": "This course is designed to open the doors for students who are interested in learning about the fundamental principles of visual perception and important applications of computer vision.", + "edges_from": [], + "edges_to": [], + "id": 330, + "label": "COGS 225", + "title": "Visual Computing (4)" + }, + { + "dept": "COGS", + "description": "(Cross-listed with CSE 219.) New societal challenges, cultural values, and technological opportunities are changing design\u2014and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. S/U grades only. May be taken for credit ninety-nine times.", + "edges_from": [], + "edges_to": [], + "id": 331, + "label": "COGS 229", + "title": "Design at Large (1)" + }, + { + "dept": "HIGR", + "description": "Introduction to methods, theories, and critiques of writing early modern global/world history. It seeks to familiarize students with the main historiographical debates and defining narratives about the first phase of intensifying global connectivity that commenced in the fifteenth century. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 332, + "label": "HIGR 280", + "title": "Global History: Approaches to the Early Modern Era (4)" + }, + { + "dept": "HIGR", + "description": "Introduction to methods, theories, and critiques of writing global/world history in the modern era. Will survey how scholars of diverse disciplinary backgrounds have analyzed global change since the nineteenth century. It assesses the methodological and theoretical contributions of several analysts, the concepts through which they have explained and typified modes of interaction across global space, and the problems posed by studying connectivity. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 333, + "label": "HIGR 281", + "title": "Global History: Approaches to the Modern Era (4)" + }, + { + "dept": "LTWR", + "description": "A workshop designed to encourage regular writing of all forms of personal experience narrative, including journals, autobiography, firsthand biography, and firsthand chronicle. Instructor and students will discuss student work as well as published personal narratives. May be taken for credit three times. ", + "edges_from": [ + 156, + 157, + 143 + ], + "edges_to": [ + 340 + ], + "id": 334, + "label": "LTWR 120", + "title": "Personal Narrative Workshop (4)" + }, + { + "dept": "LTWR", + "description": "Workshop focusing on the review, the op-ed piece, the column, the blurb, the profile, the interview, and \u201ccontent-providing\u201d for websites. We\u2019ll examine current examples of media writing; students will produce a body of work and critique one another\u2019s productions. May be taken for credit three times. ", + "edges_from": [ + 156 + ], + "edges_to": [], + "id": 335, + "label": "LTWR 121", + "title": "Media Writing Workshop (4)" + }, + { + "dept": "LTWR", + "description": "A workshop in writing about science for the public. Students will study and then construct metaphors or analogues that introduce readers to scientific perplexities. Completion of LTWR 8A, 8B, or 8C highly recommended. May be repeated for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 336, + "label": "LTWR 122", + "title": "Writing for the Sciences Workshop (4)" + }, + { + "dept": "CHEM", + "description": "This course explores teaching strategies specific to chemistry at the college level, and promotes the development of skills for facilitating active, student-centered learning in both lecture and laboratory settings. It is required for first-time teaching assistants. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 337, + "label": "CHEM 509", + "title": "Teaching Methods in Chemistry and Biochemistry (2)" + }, + { + "dept": "LTWR", + "description": "A writing workshop on the theory and practice of literary translation. Students will translate literary texts and workshop with the instructor and other course members. Selected readings in translation theory. May be taken for credit three times. ", + "edges_from": [ + 156, + 157, + 143 + ], + "edges_to": [], + "id": 338, + "label": "LTWR 124", + "title": "Translation of Literary Texts Workshop (4)" + }, + { + "dept": "LTWR", + "description": "A writing, reading, and critical-thinking workshop designed to produce nonfiction pieces that fall outside the limits of the essay form. Included are travel narratives, memoir, and information-based writing that transform their own materials into compelling literature. May be repeated for credit three times. ", + "edges_from": [ + 156 + ], + "edges_to": [], + "id": 339, + "label": "LTWR 126", + "title": "Creative Nonfiction Workshop (4)" + }, + { + "dept": "LTWR", + "description": "Workshop designed to critique and engage the means of distributing literature within culture. Publishing from \u201czine\u201d through mainstream publication; web publishings; readings and \u201cslams\u201d; publicity and funding; colloquia with writers; politics and literature; and the uses of performance and media. May be taken for credit three times. ", + "edges_from": [ + 342, + 341, + 334 + ], + "edges_to": [], + "id": 340, + "label": "LTWR 129", + "title": "Distributing Literature Workshop (4)" + }, + { + "dept": "LTWR", + "description": "", + "edges_from": [ + 143 + ], + "edges_to": [ + 340 + ], + "id": 341, + "label": "LTWR 102", + "title": "" + }, + { + "dept": "LTWR", + "description": "", + "edges_from": [ + 157 + ], + "edges_to": [ + 340, + 3702 + ], + "id": 342, + "label": "LTWR 100", + "title": "" + }, + { + "dept": "CHEM", + "description": "Under the supervision and mentorship of a course instructor, MS and PhD students serve as teaching assistants to undergraduate laboratory and lecture courses. To support teaching competency, regular meetings with the instructor and attendance at lectures are required. S/U grades only. May be taken for credit twelve times. ", + "edges_from": [], + "edges_to": [], + "id": 343, + "label": "CHEM 500", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "MATH", + "description": "A highly adaptive course designed to build on students\u2019 strengths while increasing overall mathematical understanding and skill. This multimodality course will focus on several topics of study designed to develop conceptual understanding and mathematical relevance: linear relationships; exponents and polynomials; rational expressions and equations; models of quadratic and polynomial functions and radical equations; exponential and logarithmic functions; and geometry and trigonometry. Workload credit only\u2014not for baccalaureate credit. ", + "edges_from": [], + "edges_to": [], + "id": 344, + "label": "MATH 2", + "title": "Introduction to College Mathematics (4)" + }, + { + "dept": "MAE", + "description": "Principles and practice of measurement and control and the design and conduct of experiments. Technical report writing. Lectures relate to dimensional analysis, error analysis, signal-to-noise problems, filtering, data acquisition and data reduction, as well as background of experiments and statistical analysis. Experiments relate to the use of electronic devices and sensors. ", + "edges_from": [ + 346 + ], + "edges_to": [ + 3265, + 4268, + 1422, + 1487, + 2162, + 4574, + 1951 + ], + "id": 345, + "label": "MAE 170", + "title": "Experimental Techniques (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 35, + 38, + 26, + 27, + 28 + ], + "edges_to": [ + 5633, + 3480, + 708, + 593, + 760, + 345, + 3291, + 2814 + ], + "id": 346, + "label": "PHYS 2CL", + "title": "" + }, + { + "dept": "HIEU", + "description": "Comparative study of Islam in Europe since 1945. Topics include indigenous populations; immigration; Islamic law/church-state questions; EU expansion/integration; gender issues; terrorism; Islamophobia; \u201cEuropeanizing\u201d Islam; the historical tradition of European-Muslim encounter and its present political/cultural issues. Graduate students will be required to do an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 347, + "label": "HIEU 182/282", + "title": "The Muslim Experience in Contemporary European Society (4)" + }, + { + "dept": "MGTF", + "description": "This course focuses on the means and methods of finance applied to social, economic, and environmental challenges of development. Financial innovations give rise to new intermediaries, new types of instruments, and new services or techniques to create jobs, build communities, and enable capital formation and economic growth. Students will discover why capital structure matters in aligning diverse interests into new business models to finance social and economic change. ", + "edges_from": [], + "edges_to": [], + "id": 348, + "label": "MGTF 458", + "title": "Financial Innovations for Economic Development (4)" + }, + { + "dept": "VIS", + "description": "A critical review of the principal strategies of investigation in past and present art-historical practice, a scrutiny of their contexts and underlying assumptions, and a look at alternative possibilities. The various traditions for formal and iconographic analysis as well as the categories of historical description will be studied. Required for all art history and criticism majors. ", + "edges_from": [ + 350 + ], + "edges_to": [ + 1216, + 2065 + ], + "id": 349, + "label": "VIS 112", + "title": "Art Historical Methods (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 349, + 3317 + ], + "id": 350, + "label": "VIS 23", + "title": "" + }, + { + "dept": "Soc/G", + "description": "Alternative theories of the relations of immigrants and host societies, and an examination on the debates on, and dynamic of, immigration expansion and restriction. Comparison of the bearing of liberal, communitarian, and ethnic citizenship discourses on the inclusion and exclusion of immigrants and their descendants. ", + "edges_from": [], + "edges_to": [], + "id": 351, + "label": "Soc/G 282", + "title": "Immigration and Citizen (4)" + }, + { + "dept": "Soc/G", + "description": "Develops central themes in medical sociology in order to understand twentieth- and twenty-first century medical practice and research. Topics include authority and expertise; health inequalities; managed care; health activism; biomedical knowledge production; and the construction of medical objects and subjects. ", + "edges_from": [], + "edges_to": [], + "id": 352, + "label": "Soc/G 284", + "title": "Contemporary Biomedicine (4)" + }, + { + "dept": "MGT", + "description": "Residential and commercial mortgage-backed securities markets and the market for structured real estate debt; the estimation of prices, yields, and various measures of investment performance; creating and structuring security issues; legal, regulatory, and institutional issues; derivative products (CDOs, CDSs, options, futures, etc.); and current political, economic, and policy issues. ", + "edges_from": [ + 354 + ], + "edges_to": [], + "id": 353, + "label": "MGT 157", + "title": "Real Estate Securitization (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [ + 419, + 420, + 2090, + 2091, + 2092, + 2093, + 1999 + ], + "edges_to": [ + 353, + 2787, + 2087, + 5545, + 2094, + 2095 + ], + "id": 354, + "label": "MGT 181", + "title": "" + }, + { + "dept": "Soc/G", + "description": "This seminar examines the place of scientific knowledge and information and communication technology in the transformation of capitalist economy and society. The class explores new interactions between science studies and social theory of advanced capitalism. ", + "edges_from": [], + "edges_to": [], + "id": 355, + "label": "Soc/G 288", + "title": "Knowledge Capitalism (4)" + }, + { + "dept": "POLI", + "description": "An exploration of the relationship between power and justice in modern society. Materials include classic and contemporary texts, films, and literature. POLI 13 is Lecture only, and POLI 13D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 13 and 13D.", + "edges_from": [], + "edges_to": [], + "id": 356, + "label": "POLI 13 or 13D", + "title": "Power and Justice (4)" + }, + { + "dept": "CLRE", + "description": "This experiential course builds on the knowledge gained in the core curriculum through hands-on lab and simulation-based exercises. Students will learn basic lab methods and communication skills pertinent to engaging subjects in clinical research. May be taken for credit four times. While students are required to take the course two times, the course would apply toward general elective requirements when taken a third and fourth time. ", + "edges_from": [ + 106, + 108 + ], + "edges_to": [], + "id": 357, + "label": "CLRE 270", + "title": "Experiential Learning in Clinical Research (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 358, + "label": "Linguistics/Heritage Languages (LIHL) 116W", + "title": "Arabic for Arabic Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 359, + "label": "Linguistics/Heritage Languages (LIHL) 116P", + "title": "Arabic for Arabic Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Arabic but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Arabic. LIHL 116F, LIHL 116W, and LIHL 116P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 360, + "label": "Linguistics/Heritage Languages (LIHL) 116F", + "title": "Arabic for Arabic Speakers (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students with basic knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 460A-B-C. Students may not get credit for any IRLA 460 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 361, + "label": "GPLA 460A-B-C", + "title": "Basic Bahasa Indonesia for Professional Proficiency (4-4-4)" + }, + { + "dept": "BENG", + "description": "Weekly seminars by faculty, visitors, postdoctoral", + "edges_from": [], + "edges_to": [], + "id": 362, + "label": "BENG 281", + "title": "Seminar in Bioengineering (1)" + }, + { + "dept": "BENG", + "description": "Weekly seminars by bioengineering faculty presenting their research. May be repeated for credit. Course does not apply toward MS or PhD graduation requirements. (S/U grades only.) (F)", + "edges_from": [], + "edges_to": [], + "id": 363, + "label": "BENG 282", + "title": "Seminar: Faculty Research (1)" + }, + { + "dept": "BIMM", + "description": "Genomics Research Initiative Laboratory II (4)", + "edges_from": [], + "edges_to": [], + "id": 364, + "label": "BIMM 170", + "title": "" + }, + { + "dept": "EDS", + "description": "Students will study discipline-specific principles of effective learning, including critical thinking, problem solving, collaboration, and group communication. Laboratory and hypothesis testing, library research and writing skills, and self-assessment. Students will explore concepts and procedures in mathematics, science, and economics. ", + "edges_from": [], + "edges_to": [], + "id": 365, + "label": "EDS 20S", + "title": "Introduction to Principles of Learning (4)" + }, + { + "dept": "HINE", + "description": "Growth of nationalism in relation to imperialism,", + "edges_from": [], + "edges_to": [], + "id": 366, + "label": "HINE 166/266", + "title": "Nationalism in the Middle East (4)" + }, + { + "dept": "ERC", + "description": "Senior thesis research project for students who have been accepted into the Eleanor Roosevelt College Individual Studies major. Project will be carried out under supervision of one or more faculty members. Depending on scope of the project, may be taken for four or eight units of credit in a single quarter, or eight units distributed over two quarters. ", + "edges_from": [], + "edges_to": [], + "id": 367, + "label": "ERC 196", + "title": "Honors Project (4)" + }, + { + "dept": "ERC", + "description": "The content of this independent study course, which may not duplicate any existing course on campus, will be determined by a supervising faculty member and tailored to fit specific content needs of students pursuing the Eleanor Roosevelt College Individual Studies major. ", + "edges_from": [], + "edges_to": [], + "id": 368, + "label": "ERC 199", + "title": "ERC Independent Studies (4)" + }, + { + "dept": "SIOC", + "description": "This is a preparatory mathematics class for climate sciences, specifically designed to review math concepts vital to understanding climate science in preparation for SIOC 210 and SIOC 217A. The course will use statistical methods to understand the observed climate records, calculus to investigate Earth\u2019s radiation budget, and vector rotation to introduce the dynamics and transport of the atmosphere and ocean. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 369, + "label": "SIOC 290S", + "title": "Climate Math (6)" + }, + { + "dept": "MATH", + "description": "of Teaching and Learning Mathematics I (4)", + "edges_from": [], + "edges_to": [], + "id": 370, + "label": "MATH 121A", + "title": "Foundations" + }, + { + "dept": "MATH", + "description": "of Teaching and Learning Math II (4)", + "edges_from": [], + "edges_to": [], + "id": 371, + "label": "MATH 121B", + "title": "Foundations" + }, + { + "dept": "LTEA", + "description": "An introduction to later Japanese (kogo) literature in translation. Will focus on several \u201cmodern\u201d works, placing their form in the historical context. No knowledge of Japanese required. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 372, + "label": "LTEA 132", + "title": "Later Japanese Literature in Translation (4)" + }, + { + "dept": "LTEA", + "description": "An introduction to Japanese films. Attention given to representative Japanese directors (e.g., Ozu), form (e.g., anime), genre (e.g. feminist revenge horror), or historical context in which films are produced. Priority may be given to Japanese studies majors and literature majors.", + "edges_from": [], + "edges_to": [], + "id": 373, + "label": "LTEA 138", + "title": "Japanese Films (4)" + }, + { + "dept": "HIUS", + "description": "The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism.", + "edges_from": [], + "edges_to": [], + "id": 374, + "label": "HIUS 140/ECON 158", + "title": "Economic History of the United States I (4)" + }, + { + "dept": "LTCS", + "description": "The role of race and culture within the history of empires; may select a single empire for consideration, such as France, Britain, United States, or Japan, or choose to examine the role of race and culture in comparative histories of colonialism. Repeatable for credit when readings and focus vary.", + "edges_from": [], + "edges_to": [], + "id": 375, + "label": "LTCS 141", + "title": "Special Topics in Race and Empire (4)" + }, + { + "dept": "ETHN", + "description": "American History in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 376, + "label": "ETHN 149", + "title": "African" + }, + { + "dept": "EDS", + "description": "and Professional Assessment (4)", + "edges_from": [], + "edges_to": [], + "id": 377, + "label": "EDS 204", + "title": "Technology" + }, + { + "dept": "EDS", + "description": "This course will review current literature on effective applications of technology in the classroom. Students will also become fluent in the use of productivity tools, presentation software, and web development for teaching and learning; critique software relevant to their area of teaching; and develop an educational activity based on their review of the literature that harnesses the power of technology. ", + "edges_from": [ + 379, + 380, + 381, + 382, + 383 + ], + "edges_to": [], + "id": 378, + "label": "EDS 203", + "title": "Technology, Teaching, and Learning (4)" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 378 + ], + "id": 379, + "label": "ED 79", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 2433, + 378 + ], + "id": 380, + "label": "ED 78", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 378 + ], + "id": 381, + "label": "ED 80", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 378 + ], + "id": 382, + "label": "ED 77", + "title": "" + }, + { + "dept": "ED", + "description": "", + "edges_from": [], + "edges_to": [ + 2433, + 378 + ], + "id": 383, + "label": "ED 76", + "title": "" + }, + { + "dept": "EDS", + "description": "to Resources for Teaching and Learning (4)", + "edges_from": [], + "edges_to": [], + "id": 384, + "label": "EDS 201", + "title": "Introduction" + }, + { + "dept": "ETHN", + "description": "This course critically examines the impact of the Vietnam War on refugees from Vietnam, Laos, and Cambodia. Focusing on everyday refugee life, it pays particular attention to how the refugees have created alternative memories, epistemologies, and lifeworlds.", + "edges_from": [], + "edges_to": [], + "id": 385, + "label": "ETHN 140", + "title": "Comparative Refugee Communities from Vietnam, Laos, and Cambodia (4)" + }, + { + "dept": "ETHN", + "description": "Martin Luther King was inspired by Gandhi, but in his own time, Gandhi was as controversial as he was revered. Nonviolence was not widely accepted as a form of political protest. This course explores Gandhi\u2019s complex legacy of nonviolence for places and peoples embroiled in conflict.", + "edges_from": [], + "edges_to": [], + "id": 386, + "label": "ETHN 141", + "title": "Gandhi in the Modern World: From Civil Rights to the Arab Spring (4)" + }, + { + "dept": "ETHN", + "description": "Race, and the Global Politics of Inequality (4)", + "edges_from": [], + "edges_to": [], + "id": 387, + "label": "ETHN 142", + "title": "Medicine," + }, + { + "dept": "ETHN", + "description": "This course is a historical survey of Chicana and Chicano media from roughly 1950 to the present. The goals of the course include learning about Chicana/o history, politics, and culture through different media and gaining the critical tools to analyze Chicana/o media and media more broadly.", + "edges_from": [], + "edges_to": [], + "id": 388, + "label": "ETHN 143", + "title": "Chicana/o Film and Media Studies (4)" + }, + { + "dept": "MAE", + "description": "Compressible flow, thermodynamics, and combustion", + "edges_from": [], + "edges_to": [ + 4266, + 4268 + ], + "id": 389, + "label": "MAE 113", + "title": "Fundamentals of Propulsion (4)" + }, + { + "dept": "CHEM", + "description": "Renumbered from CHEM 213. A discussion of the physical principles governing biomolecular structure and function. Experimental and theoretical approaches to understand protein dynamics, enzyme kinetics, and mechanisms will be covered. Students may only receive credit for one of the following: CHEM 213 or 213B. May be coscheduled with CHEM 113.", + "edges_from": [], + "edges_to": [], + "id": 390, + "label": "CHEM 213B", + "title": "Biophysical Chemistry of Macromolecules (4)" + }, + { + "dept": "CHEM", + "description": "A discussion of structures of nucleic acids and proteins and their larger assemblies. The theoretical basis for nucleic acid and protein structure, as well as methods of structure determination including X-ray crystallography, cryoEM, and computational modeling approaches will be covered. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 391, + "label": "CHEM 213A", + "title": "Structure of Biomolecules and Biomolecular Assemblies (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 208D) Mathematical logic as a tool in computer science. Propositional logic, resolution, first-order logic, completeness and incompleteness theorems with computational viewpoint, finite model theory, descriptive complexity, logic programming, nonmonotonic reasoning, temporal logic. Applications to databases, automatic theorem proving, program verification, and distributed systems. ", + "edges_from": [ + 393 + ], + "edges_to": [], + "id": 392, + "label": "CSE 205A", + "title": "Logic in Computer Science (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 0 + ], + "edges_to": [ + 392, + 4887, + 1597, + 4215 + ], + "id": 393, + "label": "CSE 200", + "title": "" + }, + { + "dept": "BIOM", + "description": "Participation in the symposia held by CARTA three times a year. Students shadow one of the speakers during public and private symposia. Students meet after each symposium and each writes a summary of the speaker\u2019s presentation and ensuring discussion. ", + "edges_from": [], + "edges_to": [], + "id": 394, + "label": "BIOM 218", + "title": "Current Topics in Anthropogeny (1)" + }, + { + "dept": "BIOM", + "description": "Overview of ethical issues in scientific research, conflicts of interest; national, statewide and campus issues and requirement; ethical issues in publications; authorship; retention of research records; tracing of research records; attribution; plagiarism; copyright considerations; primary, archival and meeting summary publications; ethical procedures and policies; NIH, NSF, California and UC San Diego; case studies and precedents in ethics. ", + "edges_from": [], + "edges_to": [], + "id": 395, + "label": "BIOM 219", + "title": "Ethics in Scientific Research (1)" + }, + { + "dept": "SOCI", + "description": "Small group study and research under the direction of an interested faculty member in an area not covered in regular sociology courses. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 396, + "label": "SOCI 98", + "title": "Directed Group Study (4)" + }, + { + "dept": "SOCI", + "description": "Individual study and research under the direction of an interested faculty member. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 397, + "label": "SOCI 99", + "title": "Independent Study (4)" + }, + { + "dept": "ECON", + "description": "Introduction to game theory. Analysis of people\u2019s decisions when the consequences of the decisions depend on what other people do. This course features applications in economics, political science, and law. ", + "edges_from": [ + 3, + 400, + 7, + 227, + 399 + ], + "edges_to": [ + 5324, + 903 + ], + "id": 398, + "label": "ECON 109", + "title": "Game Theory (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 402 + ], + "edges_to": [ + 3747, + 905, + 1452, + 1997, + 398, + 4177, + 4178, + 4179, + 4761, + 409 + ], + "id": 399, + "label": "ECON 100C", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 398 + ], + "id": 400, + "label": "MATH 20", + "title": "" + }, + { + "dept": "ECON", + "description": "Examines reasons for international economic agreements, their design, the strategic interactions that determine how the agreements are implemented and sustained, and consequences for global welfare and inequality. Draws on international economics, game theory, law and economics, and political economy to understand international economic agreements. These tools are used to understand multilateral trade and investment agreements, such as NAFTA, and international organizations, such as the WTO. ", + "edges_from": [ + 402, + 403 + ], + "edges_to": [], + "id": 401, + "label": "ECON 106", + "title": "International Economic Agreements (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 655 + ], + "edges_to": [ + 904, + 3752, + 399, + 401, + 403, + 404, + 3512, + 3518, + 415 + ], + "id": 402, + "label": "ECON 100B", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 410, + 411, + 132, + 402, + 406 + ], + "edges_to": [ + 401, + 1314, + 412, + 415 + ], + "id": 403, + "label": "ECON 102", + "title": "" + }, + { + "dept": "ECON", + "description": "Detailed treatment of antitrust policy: Sherman Act, price fixing, collusive practices, predatory pricing, price discrimination, double marginalization, exclusive territories, resale price maintenance, refusal to deal, and foreclosure. Theory of regulation and regulatory experience in electrical utilities, oil, telecommunications, broadcasting, etc. ", + "edges_from": [ + 402, + 132, + 405, + 406, + 407 + ], + "edges_to": [], + "id": 404, + "label": "ECON 107", + "title": "Economic Regulation and Antitrust Policy (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1265, + 849 + ], + "edges_to": [ + 2945, + 708, + 711, + 712, + 655, + 4307, + 404, + 1844, + 3515 + ], + "id": 405, + "label": "MATH 10C", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 410 + ], + "edges_to": [ + 904, + 907, + 908, + 909, + 3752, + 403, + 404, + 3512, + 3514, + 3515, + 3516, + 3517, + 3519 + ], + "id": 406, + "label": "ECON 2", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 169 + ], + "edges_to": [ + 2945, + 2817, + 3977, + 3978, + 655, + 404, + 2968, + 28, + 1317, + 2987, + 2990, + 1844, + 3515, + 572, + 708, + 711, + 712, + 4575, + 1120, + 1121, + 227, + 4577, + 2813 + ], + "id": 407, + "label": "MATH 31BH", + "title": "" + }, + { + "dept": "ECON", + "description": "Economics of industries with network effects", + "edges_from": [], + "edges_to": [], + "id": 408, + "label": "ECON 104", + "title": "Economics of Network Industries (4)" + }, + { + "dept": "ECON", + "description": "Theory of monopoly and oligopoly pricing, price discrimination, durable goods pricing, cartel behavior, price wars, strategic entry barriers, mergers, pro- and anti-competitive restraints on business. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 409, + "label": "ECON 105", + "title": "Industrial Organization and Firm Strategy (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 2945, + 4813, + 411, + 3750, + 646, + 647, + 649, + 650, + 651, + 652, + 653, + 655, + 403, + 1844, + 406, + 3513, + 3515 + ], + "id": 410, + "label": "ECON 1", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 410 + ], + "edges_to": [ + 2945, + 3746, + 3750, + 646, + 647, + 649, + 650, + 651, + 652, + 653, + 654, + 403, + 3515 + ], + "id": 411, + "label": "ECON 3", + "title": "" + }, + { + "dept": "ECON", + "description": "Analyzes exchange rates and the current account. Relates their joint determination to financial markets and the real-side macroeconomy using international macroeconomic models and presents empirical regularities. Discusses macroeconomic policies under different exchange rate regimes and implications for financial stability and current account sustainability. ", + "edges_from": [ + 403, + 413, + 414 + ], + "edges_to": [], + "id": 412, + "label": "ECON 103", + "title": "International Monetary Relations (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 2945 + ], + "edges_to": [ + 648, + 906, + 412, + 3749 + ], + "id": 413, + "label": "ECON 110B", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 2089, + 4809, + 412, + 3975 + ], + "id": 414, + "label": "ECON 173A", + "title": "" + }, + { + "dept": "ECON", + "description": "Examines theories of international trade in goods and services and relates the insights to empirical evidence. Explains international trade at the level of industries and firms and analyzes the consequences of trade for resource allocation, welfare, and the income distribution. Discusses sources of comparative advantage, motives for trade policies, and the effects of trade barriers and trading blocs on welfare and incomes. ", + "edges_from": [ + 402, + 403 + ], + "edges_to": [], + "id": 415, + "label": "ECON 101", + "title": "International Trade (4)" + }, + { + "dept": "VIS", + "description": "Eighteenth-century artists and critics were convinced that art could be a force to improve society. This course places Rococo and neoclassical artists such as Watteau, Fragonard, Tiepolo, Hogarth, Reynolds, Vig\u00e9e Le Brun, Blake, and David, within the context of art academies, colonialism, the Grand Tour, Enlightenment conceptualizations of history and nature, and the American and French Revolutions. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 416, + "label": "VIS 124BN", + "title": "Art and the Enlightenment (4)" + }, + { + "dept": "HIEU", + "description": "184/284. Yugoslavia: Before, During, and After (4)", + "edges_from": [], + "edges_to": [], + "id": 417, + "label": "HIEU", + "title": "" + }, + { + "dept": "ERC", + "description": "Undergraduate students will be provided with one hour of instruction on pedagogy of tutoring math in a public high school setting and placement in regional public high schools to provide five hours of one-on-one tutoring of math students under supervision of high school math teachers. P/NP grades only. May be taken for credit three times. ", + "edges_from": [ + 419, + 420 + ], + "edges_to": [], + "id": 418, + "label": "ERC 89", + "title": "Practicum in Math Tutoring (2)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 2051, + 3363, + 420 + ], + "edges_to": [ + 2817, + 2987, + 133, + 3729, + 26, + 28, + 418, + 35, + 171, + 2990, + 3519, + 1988, + 1094, + 4577, + 5197, + 4813, + 848, + 1246, + 4575, + 1120, + 1121, + 354, + 3820, + 1263, + 1264, + 1265, + 3746, + 2813 + ], + "id": 419, + "label": "MATH 20A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 2052, + 2051, + 4116 + ], + "edges_to": [ + 418, + 419, + 1988, + 133, + 1265, + 171, + 4813, + 354, + 5197, + 1263, + 1264, + 3729, + 3746, + 3519 + ], + "id": 420, + "label": "MATH 10A", + "title": "" + }, + { + "dept": "ECON", + "description": "Course introduces the household as a decision-making unit, and the contracts and institutions that emerge to compensate for imperfect markets. Emphasis is placed on data and identification strategies that can be used to measure the impact of policy interventions. ", + "edges_from": [], + "edges_to": [], + "id": 421, + "label": "ECON 241", + "title": "Microeconomics of Development (4)" + }, + { + "dept": "ECON", + "description": "The study of organizational effectiveness, in both the private and public sectors, bridges the gap between microeconomic analysis of individual and household behavior and macroeconomic analysis of economic aggregates such as capital and output. Topics covered include organizational capacity, leadership and management, staffing, incentives, contracting, finance, learning, market structure, regulations, and politics. ", + "edges_from": [], + "edges_to": [], + "id": 422, + "label": "ECON 243", + "title": "Organizational Economics of Development (4)" + }, + { + "dept": "ECON", + "description": "This course covers development accounting, growth accounting, human capital accumulation, skill-biased technological change, multisector growth models, structural transformation, urban-rural migration, misallocation, informality, technology adoption and diffusion, and other related topics. ", + "edges_from": [], + "edges_to": [], + "id": 423, + "label": "ECON 242", + "title": "Macroeconomics of Development (4)" + }, + { + "dept": "ECON", + "description": "This course covers the determinants of the pattern and volume of trade in goods and services, the interaction of international trade with income distribution and economic growth, and commercial policy. The emphasis is on theory, with some empirical illustration and motivation. ", + "edges_from": [], + "edges_to": [], + "id": 424, + "label": "ECON 245", + "title": "International Trade (4)" + }, + { + "dept": "ECON", + "description": "This course examines the empirical work in international trade or international macroeconomics. International trade topics include empirical tests of theories of international trade and international capital movements. International macroeconomic topics include empirical studies of exchange rate and relative price adjustments. ", + "edges_from": [], + "edges_to": [], + "id": 425, + "label": "ECON 247", + "title": "Empirical Topics in International Economics (4)" + }, + { + "dept": "ECON", + "description": "This course presents open-economy macroeconomics and international finance. Topics include theories of the exchange rate, foreign-exchange regimes, current account adjustments, and international portfolio investments. The course examines real and monetary explanations, and implications of international capital market integration. ", + "edges_from": [], + "edges_to": [], + "id": 426, + "label": "ECON 246", + "title": "International Macroeconomics (4)" + }, + { + "dept": "CHIN", + "description": "(2)", + "edges_from": [], + "edges_to": [], + "id": 427, + "label": "CHIN 269", + "title": "Conversational Mandarin for Medical Students\u2014Beginning" + }, + { + "dept": "NANO", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research, including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. Cross-listed with ECE 221, MAE 265B, and MATS 251B. Students may not receive credit for ECE 221 and MAE 265B and MATS 251B and NANO 251A. ", + "edges_from": [], + "edges_to": [], + "id": 428, + "label": "NANO 251A", + "title": "Magnetic Materials: Principles and Applications (4)" + }, + { + "dept": "MUS", + "description": "Concentrated inquiry into various problems not covered in the usual undergraduate courses. ", + "edges_from": [], + "edges_to": [], + "id": 429, + "label": "MUS 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "MUS", + "description": "Independent reading, research, or creative work under the direction of a faculty member, provided no course covering the material to be studied already exists, and the study area derives from previous course work. ", + "edges_from": [], + "edges_to": [], + "id": 430, + "label": "MUS 199", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of sensory and perceptual phenomena with an emphasis on their underlying physiological mechanisms. ", + "edges_from": [ + 432 + ], + "edges_to": [], + "id": 431, + "label": "PSYC 159", + "title": "Physiological Basis of Perception (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 3163, + 437, + 4693, + 431 + ], + "id": 432, + "label": "PSYC 102", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an examination of theories and empirical work pertaining to interpersonal relationships. Topics include attraction, jealousy, attachments, and love. ", + "edges_from": [], + "edges_to": [], + "id": 433, + "label": "PSYC 158", + "title": "Interpersonal Relationships (4)" + }, + { + "dept": "CHEM", + "description": "Independent study or research under the direction of a member", + "edges_from": [], + "edges_to": [], + "id": 434, + "label": "CHEM 99R", + "title": "Independent Study (1)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to psychology testing. Topics include psychometrics and statistical methods of test construction; application of psychological tests in industry, clinical practice, and applied settings; and controversies in the application of psychological tests. ", + "edges_from": [ + 436 + ], + "edges_to": [], + "id": 435, + "label": "PSYC 151", + "title": "Tests and Measurement (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1221, + 5197, + 5745, + 435, + 1972, + 1974, + 3965 + ], + "id": 436, + "label": "PSYC 60", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the neural basis of visual experience, or how our brain creates what we see in the world around us. ", + "edges_from": [ + 432, + 438 + ], + "edges_to": [], + "id": 437, + "label": "PSYC 150", + "title": "Cognitive Neuroscience of Vision (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 437 + ], + "id": 438, + "label": "PSYC 108", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of past and current theories of emotion. Topics include facial expressions associated with emotion, psychophysiology, evolutionary perspectives, and specific emotions such as anger, fear, and jealousy. ", + "edges_from": [], + "edges_to": [], + "id": 439, + "label": "PSYC 153", + "title": "Psychology of Emotion (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the concept of intelligence from multiple perspectives. Topics include how intelligence is measured and the role of this measurement on practical matters, the role of intelligence in comparative psychology, and attempts to analyze intelligence in terms of more fundamental cognitive processes. ", + "edges_from": [], + "edges_to": [], + "id": 440, + "label": "PSYC 152", + "title": "Conceptions of Intelligence (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an exploration of health, illness, treatment, and delivery of treatment as they relate to psychological concepts and research and considers how the social psychological perspective might be extended into medical fields. ", + "edges_from": [], + "edges_to": [], + "id": 441, + "label": "PSYC 155", + "title": "Social Psychology and Medicine (4)" + }, + { + "dept": "PSYC", + "description": "The course provides an extension of learning principles to human behavior. Topics include broad implications of a behavioral perspective, applied behavior analysis, and applications of behavioral principles to clinical disorders and to normal behavior in varied settings. ", + "edges_from": [], + "edges_to": [], + "id": 442, + "label": "PSYC 154", + "title": "Behavior Modification (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the psychology of happiness. Topics may include such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy\u2014youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless? ", + "edges_from": [], + "edges_to": [], + "id": 443, + "label": "PSYC 157", + "title": "Happiness (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of infant development. Students will critically evaluate scientific theories regarding infant cognitive, linguistic, and social behavior. Recommended preparation: PSYC 60. ", + "edges_from": [ + 445, + 446 + ], + "edges_to": [], + "id": 444, + "label": "PSYC 156", + "title": "Cognitive Development in Infancy (4)" + }, + { + "dept": "HDP", + "description": "", + "edges_from": [], + "edges_to": [ + 2435, + 3924, + 565, + 567, + 569, + 444, + 3925 + ], + "id": 445, + "label": "HDP 1", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 683, + 444, + 3925 + ], + "id": 446, + "label": "PSYC 101", + "title": "" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 213A.) Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves, Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ", + "edges_from": [], + "edges_to": [ + 5523 + ], + "id": 447, + "label": "MAE 273A", + "title": "Dynamic Behavior of Materials (4)" + }, + { + "dept": "MGT", + "description": "This course provides the theoretical underpinnings", + "edges_from": [], + "edges_to": [], + "id": 448, + "label": "MGT 226", + "title": "Theory of Industrial Organization and Business Strategy (4)" + }, + { + "dept": "MGT", + "description": "Introduction to formal and predictive approaches to incorporating", + "edges_from": [], + "edges_to": [], + "id": 449, + "label": "MGT 225", + "title": "Behavioral Economics (4)" + }, + { + "dept": "POLI", + "description": "Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally.", + "edges_from": [], + "edges_to": [], + "id": 450, + "label": "POLI 111B", + "title": "Global Justice in Theory and Action (4)" + }, + { + "dept": "GPPA", + "description": "Course builds on policy-making processes class by focusing on nonelected officials\u2019 role in setting and implementing policy. Ideally, elected officials make policies that unbiased, technically proficient bureaucrats carry out. Course provides insight into why the real world departs from this. Renumbered from IRGN 407. Students may not receive credit for GPPA 407 and IRGN 407.", + "edges_from": [], + "edges_to": [], + "id": 451, + "label": "GPPA 407", + "title": "Policy Implementation Process (4)" + }, + { + "dept": "POLI", + "description": "Study of types of social norms and practices, and how to change them. Illustrated with development examples such as the end of foot binding, female genital cutting, urban violence in Colombia, Serbian student revolution, early marriage, and other adverse gender norms.", + "edges_from": [], + "edges_to": [], + "id": 452, + "label": "POLI 111D", + "title": "Social Norms and Global Development (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in Roman history. May be taken for credit three times as topics will vary. ", + "edges_from": [], + "edges_to": [], + "id": 453, + "label": "HIEU 161/261", + "title": "Topics in Roman History (4)" + }, + { + "dept": "CHEM", + "description": "Independent literature or laboratory research by arrangement with, and under the direction of, a member of the Department of Chemistry and Biochemistry faculty. Students must register on a P/NP basis. ", + "edges_from": [ + 454 + ], + "edges_to": [ + 454 + ], + "id": 454, + "label": "CHEM 199", + "title": "Reading and Research (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by arrangement with a chemistry and biochemistry faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 456, + 457, + 458 + ], + "edges_to": [], + "id": 455, + "label": "CHEM 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "ESSC", + "description": "", + "edges_from": [], + "edges_to": [ + 462, + 455 + ], + "id": 456, + "label": "ESSC 197", + "title": "" + }, + { + "dept": "ESSC", + "description": "", + "edges_from": [], + "edges_to": [ + 462, + 455 + ], + "id": 457, + "label": "ESSC 198", + "title": "" + }, + { + "dept": "ESSC", + "description": "", + "edges_from": [], + "edges_to": [ + 462, + 455 + ], + "id": 458, + "label": "ESSC 199", + "title": "" + }, + { + "dept": "CHEM", + "description": "in Chemistry and Biochemistry (1)", + "edges_from": [], + "edges_to": [], + "id": 459, + "label": "CHEM 192", + "title": "Senior Seminar" + }, + { + "dept": "CHEM", + "description": "An introduction to teaching chemistry. Students are required to attend a weekly class on methods of teaching chemistry and will teach a discussion section of one of the lower-division chemistry courses. Attendance at lecture of the lower-division course in which the student is participating is required. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 460, + "label": "CHEM 195", + "title": "Methods of Teaching Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Selected topics in the field of chemistry. Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current subtitles will be listed on the Schedule of Classes. May be taken for credit up to four times as topics vary. Students may not receive credit for the same topic.", + "edges_from": [], + "edges_to": [], + "id": 461, + "label": "CHEM 194", + "title": "Special Topics in Chemistry (2 or 4)" + }, + { + "dept": "CHEM", + "description": "An internship program that provides work experience with public/private sector employers. Subject to the availability of positions, students will work in a local company under the supervision of a faculty member and site supervisor. P/NP grades only. May be taken for credit three times. ", + "edges_from": [ + 456, + 457, + 458 + ], + "edges_to": [], + "id": 462, + "label": "CHEM 197", + "title": "Chemistry Internship (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Independent literature or classroom research", + "edges_from": [], + "edges_to": [], + "id": 463, + "label": "CHEM 196", + "title": "Reading and Research in Chemical Education (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Second quarter of a three-quarter honors sequence intended for well-prepared science and engineering majors. Topics include: colligative properties, bulk material properties, chemical equilibrium, acids and bases, and thermodynamics. Three hours lecture and one hour recitation.", + "edges_from": [], + "edges_to": [ + 596, + 595, + 2556, + 1510 + ], + "id": 464, + "label": "CHEM 6BH", + "title": "Honors General Chemistry II (4)" + }, + { + "dept": "ANTH", + "description": "Course examines the birth of Olmec and Maya civilizations in the Formative period, the rise of city states during the Early Classic, the decline of the Classic Maya, and the resurgence of the Postclassic period. ", + "edges_from": [], + "edges_to": [ + 1358 + ], + "id": 465, + "label": "ANTH 202", + "title": "Olmec and Maya Archaeology (4)" + }, + { + "dept": "ANTH", + "description": "Course usually taught by visiting faculty in anthropological archaeology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes on", + "edges_from": [], + "edges_to": [], + "id": 466, + "label": "ANTH 201", + "title": "Special Topics in Anthropological Archaeology (4)" + }, + { + "dept": "PHYS", + "description": "This course deals with magnetized plasma. Topics include: Appleton-Hartree theory of waves in cold plasma, waves in warm plasma (Bernstein waves, cyclotron damping). MHD equations, MHD waves, low frequency modes, and the adiabatic theory of particle orbits. ", + "edges_from": [ + 468 + ], + "edges_to": [ + 469 + ], + "id": 467, + "label": "PHYS 218B", + "title": "Plasma Physics II (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 467 + ], + "id": 468, + "label": "PHYS 218A", + "title": "" + }, + { + "dept": "PHYS", + "description": "This course deals with the physics of confined plasmas with particular relevance to controlled fusion. Topics include: topology of magnetic fields, confined plasma equilibria, energy principles, ballooning and kink instabilities, resistive MHD modes (tearing, rippling and pressure-driven), gyrokinetic theory, microinstabilities and anomalous transport, and laser-plasma interactions relevant to inertial fusion. ", + "edges_from": [ + 467 + ], + "edges_to": [ + 4442 + ], + "id": 469, + "label": "PHYS 218C", + "title": "Plasma Physics III (4)" + }, + { + "dept": "FILM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 470, + "label": "FILM 87", + "title": "Film Studies Freshman Seminar (1)" + }, + { + "dept": "LATI", + "description": "Readings and discussion of substantive issues and research in Latin American studies. Topics may include the study of a specific society or a particular issue in comparative cross-national perspective. Topics will vary from year to year. ", + "edges_from": [ + 472 + ], + "edges_to": [], + "id": 471, + "label": "LATI 180", + "title": "Special Topics in Latin American Studies (4)" + }, + { + "dept": "LATI", + "description": "", + "edges_from": [], + "edges_to": [ + 3588, + 3589, + 3590, + 471 + ], + "id": 472, + "label": "LATI 50", + "title": "" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in epistemology with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 473, + "label": "PHIL 206A", + "title": "Core Course in Epistemology (4)" + }, + { + "dept": "MUS", + "description": "Individual or master class instruction in advanced instrumental/vocal performance. ", + "edges_from": [], + "edges_to": [], + "id": 474, + "label": "MUS 232", + "title": "Proseminar in Music Performance (1\u20134)" + }, + { + "dept": "HIEA", + "description": "The Chinese classics reading group translates into English (as a way of understanding and discussing) the Chinese classics and philosophy. Some classical Chinese is required. We consider every aspect of each text from individual words to the historical context.", + "edges_from": [], + "edges_to": [], + "id": 475, + "label": "HIEA 292", + "title": "Chinese Classics Reading Group (4)" + }, + { + "dept": "MATH", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshman. ", + "edges_from": [], + "edges_to": [], + "id": 476, + "label": "MATH 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "TDGR", + "description": "Seminar will deal with dramatization and adaptation of literary texts for the purpose of theatrical production. The class will study some significant examples of such practice from the past and, subsequently, students will develop their own projects of dramatization, adaptation, or modernization of texts. ", + "edges_from": [], + "edges_to": [], + "id": 477, + "label": "TDGR 258A", + "title": "Dramatization and Adaptation (4)" + }, + { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with TDGE 131.) This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America\u2019s First Peoples in Hollywood cinema. Carving spaces of \u201cvisual sovereignty\u201d (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for TDGE 131 and ETHN 163F.", + "edges_from": [], + "edges_to": [], + "id": 478, + "label": "ETHN 163F", + "title": "Playing Indian: Native American and First Nations Cinema (4)" + }, + { + "dept": "TDGR", + "description": "A seminar focusing on all aspects of the design profession, including current projects of graduate design students. The work may also include portfolio presentations, research presentations, and guest lecturers. ", + "edges_from": [], + "edges_to": [], + "id": 479, + "label": "TDGR 271", + "title": "Design Seminar (2)" + }, + { + "dept": "ETHN", + "description": "Decolonial Theory will focus on historical and contemporary intellectual work produced by activists from colonized regions of the world. This course will be international in scope, but attentive to local struggles.", + "edges_from": [], + "edges_to": [], + "id": 480, + "label": "ETHN 163E", + "title": "Decolonial Theory (4)" + }, + { + "dept": "TDGR", + "description": "This course explores advanced problems in scenic design through development and critique of creative class projects and production works-in-progress. ", + "edges_from": [], + "edges_to": [], + "id": 481, + "label": "TDGR 274", + "title": "Advanced Scenic Design (4)" + }, + { + "dept": "TDGR", + "description": "Creative projects and topics in lighting design to develop the student\u2019s techniques and professional practices. Work to include studies in design research, concepts, psychophysical considerations, collaboration, professional procedures and systems, paperwork, and organization. Various scales of production projects will be addressed by the student for presentation and critique, and may be theoretical or productions in the departmental calendar. ", + "edges_from": [], + "edges_to": [], + "id": 482, + "label": "TDGR 275", + "title": "Advanced Lighting Design (4)" + }, + { + "dept": "TDGR", + "description": "Projects in costume design, emphasizing script analysis, research, conceptualization, and visual expression. Studio work includes costume rendering in various media for specific plays. ", + "edges_from": [], + "edges_to": [], + "id": 483, + "label": "TDGR 276", + "title": "Advanced Costume Design (4)" + }, + { + "dept": "TDGR", + "description": "A course designed to expose the theatre design student to a variety of specialized topics, including millinery, pattern drafting and draping, scenic painting, model making, figure drawing, drafting, fitting, rendering. Topics will vary from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 484, + "label": "TDGR 278", + "title": "Special Topics in Theatre Design (1\u20136)" + }, + { + "dept": "TDGR", + "description": "This course covers the artistic, aesthetic, and practical aspects of the designers\u2019 work as they develop and execute the design toward a fully realized production. ", + "edges_from": [], + "edges_to": [], + "id": 485, + "label": "TDGR 279", + "title": "Design Practicum (4)" + }, + { + "dept": "ANSC", + "description": "Legal systems are central in (re)organizing social institutions, international arrangements, (in)equalities, and are an arena where linguistic practices predominate and define outcomes. With an anthropological approach to language, examine languages of the law, legal conceptions of language, and most importantly, the nature and structure of talk in a range of legal institutions and activities. Students will engage in direct anthropological fieldwork in local contexts involving the legal bureaucracy. ", + "edges_from": [], + "edges_to": [], + "id": 486, + "label": "ANSC 131", + "title": "Language, Law, and Social Justice (4)" + }, + { + "dept": "MATS", + "description": "Classification of phase transformations: displacive and reconstructive transformations: classical and nonclassical theories of nucleation: Becker-Doering, Volmer-Weber, lattice instabilities, spinodal decomposition. Growth theories: interface migration, stress effects, terrace-ledge mechanisms, epitaxial growth, kinetics, and mechanics. Precipitation. Order-disorder transformations. Solidification. Amorphization. ", + "edges_from": [ + 230 + ], + "edges_to": [], + "id": 487, + "label": "MATS 201C", + "title": "Phase Transformations (4)" + }, + { + "dept": "ANSC", + "description": "Course examines major institutions and culture patterns of traditional China, especially as studied through ethnographic sources. Topics include familism, religion, agriculture, social mobility, and personality. ", + "edges_from": [], + "edges_to": [], + "id": 488, + "label": "ANSC 136", + "title": "Traditional Chinese Society (4)" + }, + { + "dept": "ANSC", + "description": "Indigenous peoples in the Americas have long been dominated and exploited. They have also resisted and reworked the powerful forces affecting them. This course will trace this centuries-long contestation, focusing on ways anthropological representations have affected those struggles. ", + "edges_from": [], + "edges_to": [], + "id": 489, + "label": "ANSC 135", + "title": "Indigenous Peoples of Latin America (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 177.) This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries. Fulfills the race, ethnicity, and migration and global/transnational field requirements for the history major. Students may not receive credit for both ETHN 163I and HIUS 177. May be coscheduled with HIUS 277 and ETHN 273.", + "edges_from": [], + "edges_to": [], + "id": 490, + "label": "ETHN 163I", + "title": "Asian American Histography (4)" + }, + { + "dept": "HISC", + "description": "In 1784, Kant asked, \u201cWhat is Enlightenment?\u201d In this course we will pursue this question, which has remained hotly debated ever since. ", + "edges_from": [], + "edges_to": [], + "id": 491, + "label": "HISC 177", + "title": "Science and the Enlightenment (4)" + }, + { + "dept": "HISC", + "description": "This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.", + "edges_from": [], + "edges_to": [], + "id": 492, + "label": "HISC 176", + "title": "History of Medicine in East and Southeast Asia (4)" + }, + { + "dept": "SIOG", + "description": "Radioactive and stable isotope studies in geology and geochemistry, including geochronology, isotopes as tracers of magmatic processes, cosmic-ray produced isotopes as tracers in the crust and weathering cycle, isotopic evolution of the crust and mantle. Coscheduled with SIO 144. Course requires student presentation. Renumbered from SIO 252A. Students may not receive credit for both SIOG 252A and SIO 252A. ", + "edges_from": [], + "edges_to": [], + "id": 493, + "label": "SIOG 252A", + "title": "Introduction to Isotope Geochemistry (4)" + }, + { + "dept": "MATH", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 494, + "label": "MATH 168A", + "title": "Topics in Applied Mathematics\u2014Computer Science" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an advanced-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 412A-B-C. Students may not get credit for any IRLA 412 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 495, + "label": "GPLA 412A-B-C", + "title": "Advanced Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "DSC", + "description": "Builds on topics covered in DSC 20 and provides practical experience in composing larger computational systems through several significant programming projects using Java. Students will study advanced programming techniques including encapsulation, abstract data types, interfaces, algorithms and complexity, and data structures such as stacks, queues, priority queues, heaps, linked lists, binary trees, binary search trees, and hash tables. ", + "edges_from": [ + 497 + ], + "edges_to": [ + 2967 + ], + "id": 496, + "label": "DSC 30", + "title": "Data Structures and Algorithms for Data Science (4)" + }, + { + "dept": "DSC", + "description": "", + "edges_from": [ + 771 + ], + "edges_to": [ + 496 + ], + "id": 497, + "label": "DSC 20", + "title": "" + }, + { + "dept": "LTGK", + "description": "Study of ancient Greek, including grammar and reading.", + "edges_from": [], + "edges_to": [ + 500, + 501 + ], + "id": 498, + "label": "LTGK 1", + "title": "Beginning Greek (4)" + }, + { + "dept": "LIGN", + "description": "Probabilistic approaches to language knowledge, acquisition, and use. Quantitative analysis of linguistic data. Quantitative models in linguistic theory. Covers basic probability theory and tools of statistical analysis for language, including linear regression, ANOVA, generalized linear models (e.g., logistic regression), data visualization. Familiarity with probability theory highly encouraged.", + "edges_from": [], + "edges_to": [], + "id": 499, + "label": "LIGN 251", + "title": "Probabilistic Methods in Linguistics (4)" + }, + { + "dept": "LTGK", + "description": "Continuation of study of ancient Greek, including grammar and reading of texts. ", + "edges_from": [ + 498, + 501 + ], + "edges_to": [], + "id": 500, + "label": "LTGK 3", + "title": "Intermediate Greek (II) (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [ + 498 + ], + "edges_to": [ + 500 + ], + "id": 501, + "label": "LTGK 2", + "title": "" + }, + { + "dept": "LIGN", + "description": "(Same as CSE 256.) Introduction to modern statistical approaches to natural language processing: part-of-speech tagging, word-sense disambiguation and parsing, using Markov models, hidden Markov models, and probabilistic context-free grammars. Recommended prerequisites: one of LIGN 165, LIGN 245, CSE 151, CSE 250A, CSE 254. ", + "edges_from": [], + "edges_to": [], + "id": 502, + "label": "LIGN 256", + "title": "Statistical Natural Language Processing (4)" + }, + { + "dept": "LIGN", + "description": "The study of human language evolution from a variety of perspectives: anatomical, comparative, computational, cultural, experimental, generational, genetic, gestural, historical, neural, phonetic/phonological, pragmatic, semantic, semiotic, syntactic, etc. May be taken for credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 503, + "label": "LIGN 255", + "title": "Topics in Language Evolution (4)" + }, + { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [], + "edges_to": [], + "id": 504, + "label": "BGJC 207", + "title": "Journal Club in Neurobiology (1)" + }, + { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 505, + "label": "BGJC 208", + "title": "Journal Club in Plant Molecular Biology (1)" + }, + { + "dept": "BISP", + "description": "", + "edges_from": [], + "edges_to": [ + 1995, + 4969, + 4970, + 3851, + 1996, + 4971, + 4823, + 4973, + 4972, + 4974, + 4822, + 2199, + 4824, + 505, + 4284, + 4317 + ], + "id": 506, + "label": "BISP 199", + "title": "" + }, + { + "dept": "GLBH", + "description": "Illustrates and explores ecologic settings and frameworks for study and understanding of global health and international health policy. Students acquire understanding of diverse determinants and trends of disease in various settings and interrelationships between socio-cultural-economic development and health. ", + "edges_from": [], + "edges_to": [], + "id": 507, + "label": "GLBH 181", + "title": "Essentials of Global Health (4)" + }, + { + "dept": "VIS", + "description": "An in-depth exploration of the camera and image utilizing photographic digital technology. Emphasis is placed on developing fundamental control of the processes and materials through lectures, field, and lab experience. Basic discussion of image making included. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [ + 2841, + 2842 + ], + "id": 508, + "label": "VIS 60", + "title": "Introduction to Digital Photography (4)" + }, + { + "dept": "GPPS", + "description": "Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 256. Students may not receive credit for GPPS 256 and IRGN 256.\t\tMay be coscheduled with GPPS 456.", + "edges_from": [], + "edges_to": [], + "id": 509, + "label": "GPPS 256", + "title": "Program Design and Evaluation (4)" + }, + { + "dept": "HDP", + "description": "Students will take part in a weekly research seminar. In addition, they will plan and carry out a three-quarter research project under the guidance of a faculty member. The project will form the basis for their senior honors thesis. ", + "edges_from": [], + "edges_to": [], + "id": 510, + "label": "HDP 194A-B-C", + "title": "Honors Thesis (4-4-4)" + }, + { + "dept": "POLI", + "description": "An historical and topical survey of major issues in Russian-American relations, such as security arrangements in the post-Soviet space, the war on terrorism, arms control and nonproliferation, and international energy.", + "edges_from": [], + "edges_to": [], + "id": 511, + "label": "POLI 147B", + "title": "Russian-American Relations (4)" + }, + { + "dept": "HIUS", + "description": "The historical development of constitutional", + "edges_from": [], + "edges_to": [], + "id": 512, + "label": "HIUS 152B", + "title": "A Constitutional History of the United States since 1865 (4)" + }, + { + "dept": "MAE", + "description": "and Microscale Heat Transfer for Energy Conversion Applications I (4)", + "edges_from": [], + "edges_to": [ + 2884 + ], + "id": 513, + "label": "MAE 225A", + "title": "Nanoscale" + }, + { + "dept": "LTTH", + "description": "An introduction to modernist aesthetics with a focus on art and literary movements. Particular attention to be placed on relationships between modern literary movements (realism, imagism, surrealism) and their counterparts in visual arts, music, dance, and theatre, and the ways in which literary movements are components of or responses to issues of political and social identity. ", + "edges_from": [], + "edges_to": [], + "id": 514, + "label": "LTTH 255", + "title": "Modern Art Movements and Aesthetics (4)" + }, + { + "dept": "LTTH", + "description": "An overview of issues in modern critical theory as they pertain to writers. Will focus on issues of textuality, cultural forms, and aesthetics as they impact the process and meaning of writing. ", + "edges_from": [], + "edges_to": [], + "id": 515, + "label": "LTTH 250", + "title": "Writing and Theory (4)" + }, + { + "dept": "CHEM", + "description": "Reading and laboratory study of special topics for first-year graduate students under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 516, + "label": "CHEM 298", + "title": "Special Study in Chemistry (1\u20134)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 517, + "label": "CHEM 299", + "title": "Research in Chemistry (1\u201312)" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 859, + 154, + 155, + 860, + 3418 + ], + "id": 518, + "label": "MMW 2", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 859, + 3418, + 155, + 860 + ], + "id": 519, + "label": "MMW 3", + "title": "" + }, + { + "dept": "MMW", + "description": "MMW 11 explores human origins, the development of social organization, the strategies early peoples and societies used to negotiate their physical and social environments, and the rise of the ancient world\u2019s classical traditions (to ca. 100 BCE). Open to Eleanor Roosevelt College students only. Students may not receive credit for both MMW 1 and MMW 11. Must be taken for a letter grade to meet the requirement. (F)", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 520, + "label": "MMW 11", + "title": "Prehistory and Ancient Foundations (4)" + }, + { + "dept": "SOCI", + "description": "Group study of specific topics under the direction of an interested faculty member. Enrollment will be limited to a small group of students who have developed their topic and secured appropriate approval from the departmental committee on independent and group studies. These studies are to be conducted only in areas not covered in regular sociology courses. ", + "edges_from": [], + "edges_to": [], + "id": 521, + "label": "SOCI 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "SOCI", + "description": "Tutorial: individual study under the direction of an interested faculty member in an area not covered by the present course offerings. Approval must be secured from the departmental committee on independent studies. ", + "edges_from": [], + "edges_to": [], + "id": 522, + "label": "SOCI 199", + "title": "Independent Study (4)" + }, + { + "dept": "CHEM", + "description": "Formal seminars or informal sessions on topics of current interest in chemical physics as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 523, + "label": "CHEM 296", + "title": "Chemical Physics Seminar (2)" + }, + { + "dept": "CHEM", + "description": "Experimental methods and techniques involved in chemical research are introduced. Hands-on experience provides training for careers in industrial research and for future thesis research. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 524, + "label": "CHEM 297", + "title": "Experimental Methods in Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Formal seminars or informal puzzle sessions on topics of current interest in organic chemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 525, + "label": "CHEM 294", + "title": "Organic Chemistry Seminar (2)" + }, + { + "dept": "CHEM", + "description": "Formal seminars or informal puzzle sessions on topics of current interest in biochemistry, as presented by visiting lecturers, local researchers, or students. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 526, + "label": "CHEM 295", + "title": "Biochemistry Seminar (2)" + }, + { + "dept": "TDAC", + "description": "A beginning course in the fundamentals of acting: establishing a working vocabulary and acquiring the basic skills of the acting process. Through exercises, compositions, and improvisations, the student actor explores the imagination as the actor\u2019s primary resource, and the basic approach to text through action. ", + "edges_from": [], + "edges_to": [ + 4937, + 1931, + 4933 + ], + "id": 527, + "label": "TDAC 1", + "title": "Introduction to Acting (4)" + }, + { + "dept": "EDS", + "description": "Leadership Research Practicum (2)", + "edges_from": [], + "edges_to": [], + "id": 528, + "label": "EDS 293A", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Leadership Research Practicum (2)", + "edges_from": [], + "edges_to": [], + "id": 529, + "label": "EDS 293B", + "title": "Advanced" + }, + { + "dept": "ECE", + "description": "Power generation, system, and electronics. Topics include power semiconductor devices and characteristics, single-phase and three-phase half and full controlled AC-to-DC rectifiers, nonisolated/isolated DC-DC converters, power loss calculation, and thermal considerations, Snubber circuits. ", + "edges_from": [ + 531 + ], + "edges_to": [ + 532 + ], + "id": 530, + "label": "ECE 125A", + "title": "Introduction to Power Electronics I (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1094 + ], + "edges_to": [ + 530, + 1095 + ], + "id": 531, + "label": "ECE 121A", + "title": "" + }, + { + "dept": "ECE", + "description": "Design and control of DC-DC converters, PWM rectifiers, single-phase and three-phase inverters, power management, and power electronics applications in renewable energy systems, motion control, and lighting. ", + "edges_from": [ + 530 + ], + "edges_to": [], + "id": 532, + "label": "ECE 125B", + "title": "Introduction to Power Electronics II (4)" + }, + { + "dept": "ANTH", + "description": "A weekly research seminar where students share, read, and discuss in-depth research findings resulting from ANTH 196A and 196B along with selected background literature used in each individual thesis. Students are also taught how to turn their theses into brief presentations for both specialized and broader audiences. Students will be offered opportunities to present their findings at campus events and outreach events during the quarter. ", + "edges_from": [ + 534, + 535 + ], + "edges_to": [], + "id": 533, + "label": "ANTH 196C", + "title": "Honors Studies in Anthropology (4)" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [ + 535 + ], + "edges_to": [ + 533 + ], + "id": 534, + "label": "ANTH 196B", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 533, + 534 + ], + "id": 535, + "label": "ANTH 196A", + "title": "" + }, + { + "dept": "COGS", + "description": "This course is taken to focus the students\u2019 development of a thesis topic and research proposal. Students prepare an outline of thesis proposal and make an oral public presentation of the proposed topic prior to the end of the third year. S/U only.", + "edges_from": [], + "edges_to": [], + "id": 536, + "label": "COGS 205", + "title": "Introduction to Thesis Research (4)" + }, + { + "dept": "COGS", + "description": "This course surveys the development of symbolic and connectionist models of cognition. Selected readings from the late 1940s to the present are covered. Topics include: Turing machines, information theory, computational complexity, search, learning, symbolic artificial intelligence, and neural networks.", + "edges_from": [], + "edges_to": [], + "id": 537, + "label": "COGS 202", + "title": "Cognitive Science Foundations: Computational Modeling of Cognition (4)" + }, + { + "dept": "COGS", + "description": "Surveys a variety of theoretical and methodological approaches to the study of human cognition. Topics include language structure, language processing, concepts and categories, knowledge representation, analogy and metaphor, reasoning, planning and action, problem solving, learning and expertise, and emotion.", + "edges_from": [], + "edges_to": [], + "id": 538, + "label": "COGS 203", + "title": "Cognitive Science Foundations: Theories and Methods in the Study of Cognitive Phenomena (4)" + }, + { + "dept": "COGS", + "description": "This seminar emphasizes the conceptual basis of cognitive science, including representation, processing mechanisms, language, and the role of interaction among individuals, culture, and the environment. Current developments in each field are considered as they relate to issues in cognitive science. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 539, + "label": "COGS 200", + "title": "Cognitive Science Seminar (4)" + }, + { + "dept": "COGS", + "description": "Examination of the neurophysiological and neuroanatomical basis for perception, cognition, and learning. Lectures will focus on the dynamics of neural activity in cortical and subcortical structures as they relate to sensory processing, motor control, attention, arousal state, and memory.", + "edges_from": [], + "edges_to": [], + "id": 540, + "label": "COGS 201", + "title": "Systems Neuroscience (4)" + }, + { + "dept": "LTWR", + "description": "In this workshop, students will practice skills of narration, characterization, and style with particular attention to the demands of nonrealistic genres, especially the challenge of suspending disbelief in fictional environments that defy conventional logic. Readings and lectures will accompany writing exercises. May be taken for credit three times. ", + "edges_from": [ + 157 + ], + "edges_to": [], + "id": 541, + "label": "LTWR 106", + "title": "Science Fiction, Fantasy, and Irrealism Workshop (4)" + }, + { + "dept": "LTWR", + "description": "This workshop includes instruction on using software and writing basic computer code to allow students to create innovative web-based works that experiment with poetic form, draw on rich media resources, and provide more accessibility and interactivity for public audiences. May be taken up to three times for credit. ", + "edges_from": [ + 143 + ], + "edges_to": [], + "id": 542, + "label": "LTWR 103", + "title": "Digital Poetics Workshop (4)" + }, + { + "dept": "LTWR", + "description": "A workshop for students with interest in writing fiction in Spanish. Includes discussion of student work, together with analysis and discussion of representative examples of short fiction from the present and previous ages. A working knowledge of Spanish is required. May be taken for credit three times. ", + "edges_from": [ + 200, + 157, + 198, + 199 + ], + "edges_to": [], + "id": 543, + "label": "LTWR 101", + "title": "Writing Fiction in Spanish (4)" + }, + { + "dept": "LTEN", + "description": "Selected topics in the study of literary, dramatic, and other Elizabethan cultural texts. Emphasis will be upon articulations among a range of discourses, practices, and institutions. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 544, + "label": "LTEN 222", + "title": "Elizabethan Studies (4)" + }, + { + "dept": "HIUS", + "description": "This course examines the legal and cultural constructions of \u201cfreedom\u201d in American history, with a focus on its inherent limitations and exclusions. We will examine how marginalized groups have engaged in political struggles in pursuit of more expansive notions of freedom.", + "edges_from": [], + "edges_to": [], + "id": 545, + "label": "HIUS 265", + "title": "The Problem with Freedom (4)" + }, + { + "dept": "HLAW", + "description": "Assesses the major models for provision and financing of health care in the U.S. and the world today. Students gain an understanding of the health policy process and how health care is financed as well as learn to evaluate health policies according to range of criteria for cost, quality, and equity. Advantages and disadvantages of the various ways of organizing and financing health care are considered. Actions taken by employers, insurers, consumers, and government and the effects on physicians and provider organizations are analyzed. ", + "edges_from": [], + "edges_to": [], + "id": 546, + "label": "HLAW 215", + "title": "Comparative Study of Health-care Systems (3)" + }, + { + "dept": "HLAW", + "description": "Course examines bioethics from a clinical perspective using medical literature and case law to cover a range of topics such as the principles and theories of bioethics, truth telling and confidentiality, informed consent, research on animals and human subjects, technology and reproduction, surrogacy, abortion and fetal rights, maternal/fetal conflict, the right to die, physician-assisted suicide and euthanasia, medical decision making for incompetent patients, and the changing nature of the doctor-patient relationship. Medical ethical issues in health-care policy at the national and global level are also discussed including allocation of scarce medical resources, compulsory public health measures, clinical research in the developing world, and cross-cultural medical practice. ", + "edges_from": [], + "edges_to": [], + "id": 547, + "label": "HLAW 216", + "title": "Bioethics and Medical Practice (3)" + }, + { + "dept": "HLAW", + "description": "The course focuses on legal issues from the viewpoint of the administrator or chief clinical officer, including the patient record/HIT/HIPAA. The course gives emphasis to practical application and knowledge/skills to prepare the students for job search or career transition. ", + "edges_from": [], + "edges_to": [], + "id": 548, + "label": "HLAW 210", + "title": "Applied Health Law and Policy (3)" + }, + { + "dept": "HLAW", + "description": "Under the guidance of faculty, this survey course features a speaker series of experts covering a range of the most current topics in health policy and law. ", + "edges_from": [], + "edges_to": [], + "id": 549, + "label": "HLAW 213", + "title": "Current Topics in Health Policy and Law (3)" + }, + { + "dept": "HLAW", + "description": "Given at the discretion of the faculty, topics of interest in health law will be presented for in-depth review and discussion by visiting or resident faculty members. The module will cover seminar topics related to health-care issues. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 550, + "label": "HLAW 212", + "title": "Special Topics in Health Law (2)" + }, + { + "dept": "MAE", + "description": "Computer-aided analysis and design. Design methodology, tolerance analysis, Monte Carlo analysis, kinematics and computer-aided design of linkages, numerical calculations of moments of inertia, design of cams and cam dynamics; finite element analysis, design using Pro-E, Mechanica Motion and Mechanica Structures. ", + "edges_from": [ + 552, + 553, + 554, + 555, + 556, + 557 + ], + "edges_to": [ + 4266, + 4268 + ], + "id": 551, + "label": "MAE 150", + "title": "Computer-Aided Design (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 571, + 169, + 227, + 27, + 572, + 573 + ], + "edges_to": [ + 1410, + 551 + ], + "id": 552, + "label": "BENG 110", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 26, + 132, + 557 + ], + "edges_to": [ + 1088, + 1952, + 2214, + 2215, + 2216, + 551, + 914, + 915, + 2622 + ], + "id": 553, + "label": "MAE 130A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 169, + 171, + 3276, + 573, + 134 + ], + "edges_to": [ + 3064, + 551 + ], + "id": 554, + "label": "MAE 107", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 551 + ], + "id": 555, + "label": "SE 121", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 2156, + 551 + ], + "id": 556, + "label": "MAE 3", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 26, + 132 + ], + "edges_to": [ + 1088, + 1952, + 2214, + 2215, + 2216, + 553, + 551, + 914, + 915, + 2622 + ], + "id": 557, + "label": "SE 101A", + "title": "" + }, + { + "dept": "MAE", + "description": "This course will teach teams of students how to develop concepts and business plans in the design of new and innovative products. Emphasis will be placed on identifying user needs, concept generation, and prototype fabrication. ", + "edges_from": [], + "edges_to": [], + "id": 558, + "label": "MAE 154", + "title": "Product Design and Entrepreneurship (4)" + }, + { + "dept": "VIS", + "description": "Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 559, + "label": "VIS 131", + "title": "Special Projects in Media (4)" + }, + { + "dept": "VIS", + "description": "Specific content will vary each quarter. Areas will cover expertise of visiting faculty. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 560, + "label": "VIS 130", + "title": "Special Projects in Visual Arts (4)" + }, + { + "dept": "VIS", + "description": "Through discussions and readings, the class will examine the issues and aesthetics of installation art making. Using media familiar to them, students will produce several projects. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 561, + "label": "VIS 132", + "title": "Installation Production and Studio (4)" + }, + { + "dept": "VIS", + "description": "This course introduces students to studio-based project methodologies, including qualitative and quantitative design research, data visualization, production and exhibition methodologies, and complex collaborative project management. ", + "edges_from": [ + 563, + 564 + ], + "edges_to": [ + 5519, + 4359 + ], + "id": 562, + "label": "VIS 135", + "title": "Design Research Methods (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 562, + 2170 + ], + "id": 563, + "label": "VIS 30", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 562, + 3604, + 2170 + ], + "id": 564, + "label": "VIS 41", + "title": "" + }, + { + "dept": "HDP", + "description": "Examination of children\u2019s acquisition of language from babbling to the formation of sentences. Topics covered include: prelinguistic gestures, relationships between babbling and sound systems, speech perception, linking words with objects, rule overgeneralization, bilingualism, nature vs. nurture, individual differences, cultural differences. ", + "edges_from": [ + 445, + 566 + ], + "edges_to": [], + "id": 565, + "label": "HDP 120", + "title": "Language Development (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 565 + ], + "id": 566, + "label": "LIGN 4", + "title": "" + }, + { + "dept": "HDP", + "description": "(Same as COGS 110.) This course examines changes in thinking and perceiving the physical and social world from birth through childhood. Evidence of significant changes in encoding information, forming mental representations, and solving problems is culled from psychological research, cross-cultural studies, and cognitive science. ", + "edges_from": [ + 568, + 445 + ], + "edges_to": [], + "id": 567, + "label": "HDP 121", + "title": "The Developing Mind (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 1642, + 2098, + 5213, + 4749, + 1618, + 2804, + 3221, + 567, + 1881, + 1882, + 1885 + ], + "id": 568, + "label": "COGS 1", + "title": "" + }, + { + "dept": "HDP", + "description": "This course covers topics in social development research. Content will address general principles such as the mutual influences of caregivers and children upon each other and the interplay of person and context. Discussion areas will include attachment, parenting styles, gender differences, aggression, social cognition, social components of achievement motivation, and development of conscience. ", + "edges_from": [ + 445 + ], + "edges_to": [], + "id": 569, + "label": "HDP 122", + "title": "Social Development (4)" + }, + { + "dept": "HITO", + "description": "Course attached to six-unit internship taken by student participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial historical research paper. ", + "edges_from": [], + "edges_to": [], + "id": 570, + "label": "HITO 193/POLI 194/COM GEN 194/USP 194", + "title": "Research Seminar in Washington, DC (6)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2817, + 1922, + 2987, + 914, + 915, + 5166, + 5404, + 30, + 1955, + 552, + 4523, + 2990, + 1843, + 1343, + 1090, + 2115, + 4577, + 844, + 847, + 848, + 2385, + 3419, + 4575, + 1120, + 1121, + 99, + 2282, + 2283, + 3309, + 2161, + 2555 + ], + "id": 571, + "label": "MATH 20D", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 132, + 169, + 171, + 407, + 3364, + 573 + ], + "edges_to": [ + 1120, + 1121, + 99, + 4577, + 552, + 1225, + 2987, + 1228, + 3309, + 2990, + 2817, + 30, + 4575 + ], + "id": 572, + "label": "MATH 20E", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2817, + 2987, + 7, + 792, + 2968, + 4891, + 4892, + 4894, + 2978, + 1955, + 1317, + 552, + 554, + 5163, + 2354, + 1843, + 572, + 1120, + 1092, + 4577, + 5454, + 847, + 2385, + 5974, + 4575, + 2272, + 1121, + 3309, + 2286, + 5492, + 3323, + 2813 + ], + "id": 573, + "label": "MATH 20F", + "title": "" + }, + { + "dept": "CLRE", + "description": "Students conduct a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will include their course work in CLRE 295A-B and be presented as a final report that includes a complete description of the project including the study manual, study results, statistical analysis, and a discussion of the findings. Students will make an oral presentation of their ISP to their three-member ISP committee comprised of faculty and industry advisers. The ISP is an independent, creative, and scholarly activity, and students will be graded on their written and oral presentations. ", + "edges_from": [ + 575 + ], + "edges_to": [], + "id": 574, + "label": "CLRE 297", + "title": "Independent Study Project\u00a0(2)" + }, + { + "dept": "CLRE", + "description": "", + "edges_from": [], + "edges_to": [ + 574, + 4007 + ], + "id": 575, + "label": "CLRE 295A", + "title": "" + }, + { + "dept": "CLRE", + "description": "The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty and may also include industry advisers when appropriate. ", + "edges_from": [ + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 116 + ], + "edges_to": [], + "id": 576, + "label": "CLRE 296", + "title": "Independent Study Project (6)" + }, + { + "dept": "CLRE", + "description": "Faculty member directs student\u2019s study in development of mentorship and career plan as related to student\u2019s research specialization. Readings, assignments and formalized mentoring sessions designed to integrate and apply student\u2019s learning of clinical research theory and practice to individualized career development plan. ", + "edges_from": [], + "edges_to": [], + "id": 577, + "label": "CLRE 299", + "title": "Mentorship and Career Planning for Clinical Research Professionals (2)" + }, + { + "dept": "CLRE", + "description": "The ISP is the cornerstone of the MAS program. Students will be involved in a high-level clinical research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty, and may also include industry advisors when appropriate. ", + "edges_from": [], + "edges_to": [], + "id": 578, + "label": "CLRE 298", + "title": "Independent Study Project (4)" + }, + { + "dept": "NANO", + "description": "Experimental investigation of mechanical behavior of engineering materials. Laboratory exercises emphasize the fundamental relationship between microstructure and mechanical properties, and the evolution of the microstructure as a consequence of rate process. ", + "edges_from": [ + 580 + ], + "edges_to": [], + "id": 579, + "label": "NANO 174L", + "title": "Mechanical Behavior Laboratory (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 2657 + ], + "edges_to": [ + 579 + ], + "id": 580, + "label": "NANO 174", + "title": "" + }, + { + "dept": "COGR", + "description": "This course focuses on the political economy of communication and the social organization of key media institutions. There will be both descriptive and analytical concerns. The descriptive concern will emphasize the complex structure of communication industries and organizations, both historically and cross-nationally. The analytic focus will examine causal relationships between the economic and political structure of societies, the character of their media institutions, public opinion, and public attitudes and behaviors expressed in patterns of voting, consuming, and public participation. The nature of evidence and theoretical basis for such relationships will be critically explored. ", + "edges_from": [], + "edges_to": [], + "id": 581, + "label": "COGR 200A", + "title": "Introduction to the Study of Communication as Social Force (4)" + }, + { + "dept": "COGR", + "description": "This course focuses on questions of interpretation and meaning. This course will examine how people use texts to interpret the world and coordinate their activities in social groups. Students will study both theories of interpretation in the conventional sense and theories about the act of interpreting. ", + "edges_from": [], + "edges_to": [], + "id": 582, + "label": "COGR 200B", + "title": "Introduction to Study of Communication: Communication and Culture (4)" + }, + { + "dept": "POLI", + "description": "An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ", + "edges_from": [ + 584 + ], + "edges_to": [], + "id": 583, + "label": "POLI 28", + "title": "Ethics and Society II (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 3417, + 583 + ], + "id": 584, + "label": "POLI 27", + "title": "" + }, + { + "dept": "TDGR", + "description": "220B. Process II: Classical Text II (4)", + "edges_from": [], + "edges_to": [], + "id": 585, + "label": "TDGR", + "title": "" + }, + { + "dept": "TDGR", + "description": "for the Actor (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 586, + "label": "TDGR 211B", + "title": "Speech" + }, + { + "dept": "BIMM", + "description": "Basics of pharmacology such as drug absorption, distribution, metabolism, and elimination. Concepts in toxicology and pharmacognosy are used to survey the major drug categories. ", + "edges_from": [ + 240, + 588, + 589 + ], + "edges_to": [], + "id": 587, + "label": "BIMM 118", + "title": "Pharmacology (4)" + }, + { + "dept": "BIPN", + "description": "", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [ + 4291, + 4292, + 4069, + 1034, + 587, + 4180, + 3868, + 3869 + ], + "id": 588, + "label": "BIPN 100", + "title": "" + }, + { + "dept": "BIBC", + "description": "", + "edges_from": [ + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 589 + ], + "edges_to": [ + 3170, + 587, + 876, + 589, + 4525, + 4113, + 1332, + 1751, + 602, + 3932 + ], + "id": 589, + "label": "BIBC 102", + "title": "" + }, + { + "dept": "LATI", + "description": "Serving as team leaders, students design and execute analysis of data they have collected in Mexican and US field research sites, and coauthor a publishable article. Methods for organizing field data, advanced techniques of quantitative and qualitative data analysis, and report preparation conventions are covered. ", + "edges_from": [ + 591 + ], + "edges_to": [], + "id": 590, + "label": "LATI 222C", + "title": "Field Research Methods for Migration Studies: Data Analysis (4)" + }, + { + "dept": "LATI", + "description": "", + "edges_from": [ + 592 + ], + "edges_to": [ + 590 + ], + "id": 591, + "label": "LATI 222B", + "title": "" + }, + { + "dept": "LATI", + "description": "", + "edges_from": [], + "edges_to": [ + 591 + ], + "id": 592, + "label": "LATI 222A", + "title": "" + }, + { + "dept": "CHEM", + "description": "Laboratory course emphasizing classical quantitative chemical analysis techniques, including separation and gravimetric methods, as well as an introduction to instrumental analysis. Program or materials fees may apply. ", + "edges_from": [ + 594, + 595, + 596, + 597, + 598, + 599, + 346 + ], + "edges_to": [ + 3480, + 3291 + ], + "id": 593, + "label": "CHEM 100A", + "title": "Analytical Chemistry Laboratory (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2115, + 5574, + 5766, + 5767, + 5768, + 593, + 3482 + ], + "id": 594, + "label": "CHEM 6CH", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 464, + 133 + ], + "edges_to": [ + 593, + 2364, + 2553 + ], + "id": 595, + "label": "CHEM 7LM", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 464, + 1265, + 133, + 849 + ], + "edges_to": [ + 2115, + 2916, + 5765, + 5574, + 2481, + 5768, + 2282, + 5767, + 5766, + 593, + 4947, + 3482, + 2556, + 5405 + ], + "id": 596, + "label": "CHEM 6C", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 593 + ], + "id": 597, + "label": "CHEM 6BL", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 593, + 2364, + 2553 + ], + "id": 598, + "label": "CHEM 7L", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 3480, + 711, + 712, + 593, + 760, + 3291 + ], + "id": 599, + "label": "PHYS 2BL", + "title": "" + }, + { + "dept": "BIMM", + "description": "An introduction to eukaryotic virology, with emphasis on animal virus systems. Topics discussed include the molecular structure of viruses; the multiplication strategies of the major virus families; and viral latency, persistence, and oncology. ", + "edges_from": [ + 241 + ], + "edges_to": [], + "id": 600, + "label": "BIMM 114", + "title": "Virology (4)" + }, + { + "dept": "BIMM", + "description": "This course explores the mechanisms by which gene activity is regulated in eukaryotes, with an emphasis on transcriptional regulation and chromatin. Topics will include chromatin structure, histone modifications, chromatin dynamics, transcription factors, transcriptional elongation, enhancers, CpG methylation, heterochromatin, and epigenetics. ", + "edges_from": [ + 241 + ], + "edges_to": [], + "id": 601, + "label": "BIMM 112", + "title": "Regulation of Eukaryotic Gene Expressions (4)" + }, + { + "dept": "BIMM", + "description": "An examination of the molecular basis of human diseases. Course emphasizes inherited human disorders, and some important diseases caused by viruses. Focus on the application of genetic, biochemical, and molecular biological principles to an understanding of the diseases. ", + "edges_from": [ + 240, + 241, + 242, + 589 + ], + "edges_to": [], + "id": 602, + "label": "BIMM 110", + "title": "Molecular Basis of Human Disease (4)" + }, + { + "dept": "EDS", + "description": "This course provides a combination of seminar work and intensive field experience after the end of the spring quarter, during special summer session. Topics are introduced and analyzed in seminars and reinforced and expanded upon in field visits to historic and cultural sites in Cuba.\u00a0Additional fees may be required for travel expenses. ", + "edges_from": [ + 604 + ], + "edges_to": [], + "id": 603, + "label": "EDS 22S", + "title": "Education in Cuba\u2014Field Experience (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 603 + ], + "id": 604, + "label": "EDS 22", + "title": "" + }, + { + "dept": "EDS", + "description": "Advanced EDS students are prepared in effective methods of supervising the preparation of UC San Diego students serving as paraprofessionals in K\u201312 classrooms. Topics covered include: classroom management, interpersonal relations, supervision techniques, multicultural and multilingual education, politics in the school, and curriculum development. Each student serves as a discussion leader and conducts at least two workshops. ", + "edges_from": [], + "edges_to": [], + "id": 605, + "label": "EDS 195", + "title": "Apprentice Teaching (2\u20134)" + }, + { + "dept": "EDS", + "description": "Supervised research studies with individual topics selected according to students\u2019 special interests. Students will develop a research proposal and begin to gather and analyze data. ", + "edges_from": [], + "edges_to": [], + "id": 606, + "label": "EDS 190", + "title": "Research Practicum (1\u20136)" + }, + { + "dept": "EDS", + "description": "Individual guided reading and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 607, + "label": "EDS 199", + "title": "Special Studies (4)" + }, + { + "dept": "EDS", + "description": "Directed group study, guided reading, and study involving research and analysis of activities and services in multicultural education, bilingual education, the teaching-learning process, and other areas that are not covered by the present curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 608, + "label": "EDS 198", + "title": "Directed Group Study (4\u20132)" + }, + { + "dept": "ECE", + "description": "to Biomedical Imaging and Sensing (4)", + "edges_from": [], + "edges_to": [], + "id": 609, + "label": "ECE 187", + "title": "Introduction" + }, + { + "dept": "ECE", + "description": "(Conjoined with ECE 241BL) Labs: CO2 laser,", + "edges_from": [], + "edges_to": [], + "id": 610, + "label": "ECE 185", + "title": "Lasers and Modulators (4)" + }, + { + "dept": "ECE", + "description": "Processing and Holography (4)", + "edges_from": [], + "edges_to": [], + "id": 611, + "label": "ECE 184", + "title": "Optical Information" + }, + { + "dept": "ECE", + "description": "Quantum electronics, interaction of light and matter in atomic systems, semiconductors. Laser amplifiers and laser systems. Photodetection. Electrooptics and acoustooptics, photonic switching. Fiber optic communication systems. Labs: semiconductor lasers, semiconductor photodetectors. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 613, + 614 + ], + "edges_to": [], + "id": 612, + "label": "ECE 183", + "title": "Optical Electronics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 616, + 3419, + 612, + 1943 + ], + "id": 613, + "label": "ECE 107", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 38, + 1683, + 37, + 30 + ], + "edges_to": [ + 616, + 5235, + 612, + 2749 + ], + "id": 614, + "label": "ECE 103", + "title": "" + }, + { + "dept": "ECE", + "description": "Optics, Guided-Wave, and Fiber Optics (4)", + "edges_from": [], + "edges_to": [], + "id": 615, + "label": "ECE 182", + "title": "Electromagnetic" + }, + { + "dept": "ECE", + "description": "Ray optics, wave optics, beam optics, Fourier optics, and electromagnetic optics. Ray transfer matrix, matrices of cascaded optics, numerical apertures of step and graded index fibers. Fresnel and Fraunhofer diffractions, interference of waves. Gaussian and Bessel beams, the ABCD law for transmissions through arbitrary optical systems. Spatial frequency, impulse response and transfer function of optical systems, Fourier transform and imaging properties of lenses, holography. Wave propagation in various (inhomogeneous, dispersive, anisotropic or nonlinear) media. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 613, + 614 + ], + "edges_to": [], + "id": 616, + "label": "ECE 181", + "title": "Physical Optics and Fourier Optics (4)" + }, + { + "dept": "ECE", + "description": "Topics of special interest in electrical and computer engineering. Subject matter will not be repeated so it may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 617, + "label": "ECE 180", + "title": "Topics in Electrical and Computer Engineering (4)" + }, + { + "dept": "ECE", + "description": "Basics of technical public speaking, including speech organization, body language (eye contact, hand gestures, etc.), volume and rate, and design of technical slides. Students will practice technical public speaking, including speeches with PowerPoint slides and speaker introductions, and presenting impromptu speeches. Students may not receive credit for both ECE 189 and ENG 100E. ", + "edges_from": [], + "edges_to": [], + "id": 618, + "label": "ECE 189", + "title": "Technical Public Speaking (2)" + }, + { + "dept": "ECE", + "description": "Topics of special interest in electrical and computer engineering with laboratory. Subject matter will not be repeated so it may be taken for credit up to three times. ", + "edges_from": [], + "edges_to": [], + "id": 619, + "label": "ECE 188", + "title": "Topics in Electrical and Computer Engineering with Laboratory (4)" + }, + { + "dept": "LTCS", + "description": "This course will examine the representation and politics of", + "edges_from": [], + "edges_to": [], + "id": 620, + "label": "LTCS 165", + "title": "Special Topics: The Politics of Food (4)" + }, + { + "dept": "ETHN", + "description": "Directed study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 621, + "label": "ETHN 99", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "ETHN", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 622, + "label": "ETHN 98", + "title": "Directed Group Studies (1\u20134)" + }, + { + "dept": "ETHN", + "description": "in Racial and Ethnic Communities (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 623, + "label": "ETHN 97", + "title": "Field Studies" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 178.) A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 624, + "label": "ETHN 168", + "title": "Comparative Ethnic Literature (4)" + }, + { + "dept": "ETHN", + "description": "An examination of interactions among the peoples of western Europe, Africa, and the Americas that transformed the Atlantic basin into an interconnected \u201cAtlantic World.\u201d Topics will include maritime technology and the European Age of Discovery, colonization in the Americas, the beginnings of the transatlantic slave trade, and early development of plantation slavery in the New World. Students may not receive credit for both ETHN 170A and 169.", + "edges_from": [], + "edges_to": [], + "id": 625, + "label": "ETHN 169", + "title": "Origins of the Atlantic World, c. 1450\u20131650 (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 179.) This class explores (self) representations of Muslim and Arab Americans in US popular culture with a focus on the twentieth and twenty-first centuries. Topics include the racing of religion, \u201cthe war on terror\u201d in the media, feminism and Islam, immigration, race, and citizenship. May be repeated for credit three times when content varies.", + "edges_from": [], + "edges_to": [], + "id": 626, + "label": "ETHN 166", + "title": "Arab/Muslim American Identity and Culture (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 153.) This course will examine the media representations of African Americans from slavery through the twentieth century. Attention will be paid to the emergence and transmission of enduring stereotypes, and their relationship to changing social, political, and economic frameworks in the United States. The course will also consider African Americans\u2019 responses to and interpretations of these mediated images.", + "edges_from": [], + "edges_to": [], + "id": 627, + "label": "ETHN 164", + "title": "African Americans and the Mass Media (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 165.) This course will investigate the changing constructions of sex, gender, and sexuality in African American communities defined by historical period, region, and class. Topics will include the sexual division of labor, myths of black sexuality, the rise of black feminism, black masculinity, and queer politics.", + "edges_from": [], + "edges_to": [], + "id": 628, + "label": "ETHN 165", + "title": "Gender and Sexuality in African American Communities (4)" + }, + { + "dept": "ETHN", + "description": "Work with California native tribal groups, leaders, and members to identify common, pressing questions surrounding Indian law. In partnership with legal experts, develop and disseminate new media programs and useful documents accessible to native communities throughout California.", + "edges_from": [], + "edges_to": [], + "id": 629, + "label": "ETHN 162", + "title": "Practicum in California Tribal Law and Journalism\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "Focusing on transregional relationships to land and decolonization in the Pacific, Caribbean, and the Americas, this course is a comparative study of cultural and political phenomena that shape indigenous communities globally. We will examine enduring legacies of colonialism, nationalism, and Western normativities, and explore indigenous activism within the decolonial movement.", + "edges_from": [], + "edges_to": [], + "id": 630, + "label": "ETHN 160", + "title": "Global Indigenous Studies (4)" + }, + { + "dept": "ECON", + "description": "Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ", + "edges_from": [], + "edges_to": [], + "id": 631, + "label": "ECON 249A", + "title": "International Development Workshop I (1\u20134)" + }, + { + "dept": "ECON", + "description": "Presentation of recent research in international and development economics by faculty and graduate students, covering micro and macroeconomic aspect of both areas. Regular attendance is required. ", + "edges_from": [], + "edges_to": [], + "id": 632, + "label": "ECON 249C", + "title": "International Development Workshop III (1\u20134)" + }, + { + "dept": "ANBI", + "description": "The course examines the evolution of primate behaviors (e.g., group formation, dispersal, parenting, coalition formation) from a comparative behavioral, ecological, and evolutionary perspective. Observational methodology and analytical methods will also be discussed. Attendance in lab sections is required. ", + "edges_from": [], + "edges_to": [], + "id": 633, + "label": "ANBI 148", + "title": "Not by Genes Alone: The Ecology and Evolution of Primate Behavior (4)" + }, + { + "dept": "ANBI", + "description": "Learn the bones of your body; how bone pairs differ even within the body, between men, women, ethnic groups; and how nutrition and disease affect them. Course examines each bone and its relation with other bones and muscles that allow your movements. ", + "edges_from": [], + "edges_to": [], + "id": 634, + "label": "ANBI 143", + "title": "The Human Skeleton (4)" + }, + { + "dept": "ANBI", + "description": "The genotype of our ancestors had no agriculture or animal domestication, or rudimentary technology. Our modern diet contributes to heart disease, cancers, and diabetes. This course will outline the natural diet of primates and compare it with early human diets. ", + "edges_from": [], + "edges_to": [], + "id": 635, + "label": "ANBI 141", + "title": "The Evolution of Human Diet (4)" + }, + { + "dept": "ANBI", + "description": "Introduction to the organization of the brain of humans and apes. Overview of the theoretical perspectives on the evolution of the primate cortex and limbic system. Exposure to contemporary techniques applied to the comparative study of the hominoid brain. ", + "edges_from": [], + "edges_to": [ + 4166 + ], + "id": 636, + "label": "ANBI 140", + "title": "The Evolution of the Human Brain (4)" + }, + { + "dept": "ANBI", + "description": "The stable isotopes of carbon, nitrogen, oxygen, and hydrogen in animal tissues, plant tissues, and soils indicate aspects of diet and ecology. The course will introduce students to this approach for reconstructing paleo-diet, paleo-ecology, and paleo-climate. ", + "edges_from": [], + "edges_to": [], + "id": 637, + "label": "ANBI 146", + "title": "Stable Isotopes in Ecology (4)" + }, + { + "dept": "ANBI", + "description": "How are skeletal remains used to reconstruct human livelihoods throughout prehistory? The effects of growth, use, and pathology on morphology and the ways that skeletal remains are understood and interpreted by contemporary schools of thought. Recommend related course in human anatomy. ", + "edges_from": [], + "edges_to": [], + "id": 638, + "label": "ANBI 145", + "title": "Bioarchaeology\u00a0(4)" + }, + { + "dept": "ANBI", + "description": "This course will introduce students to the internal structure of the human body through dissection tutorials on CD-ROM. ", + "edges_from": [], + "edges_to": [], + "id": 639, + "label": "ANBI 144", + "title": "Human Anatomy (4)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in molecular and cell biology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 640, + "label": "BIOM 274", + "title": "Seminars in Molecular and Cell Biology (2)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in pharmacology and is designed to provoke critical discussion of the presented findings and the scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 641, + "label": "BIOM 275", + "title": "Seminars in Pharmacology (2)" + }, + { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in composition. Projects will be critically reviewed in seminar with fellow students and faculty composers. ", + "edges_from": [], + "edges_to": [], + "id": 642, + "label": "MUS 103D-E-F", + "title": "Honors Seminar in Composition (4-4-4)" + }, + { + "dept": "BIOM", + "description": "This course presents developments in cellular and molecular pathology research ongoing in the molecular pathology division of BMS. Each session comprises three fifteen-minute presentations from different faculty members. Discussion questions are fielded during or after each presentation. ", + "edges_from": [], + "edges_to": [], + "id": 643, + "label": "BIOM 277", + "title": "Seminars in Molecular Pathology (2)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in genetics and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [ + 3972, + 1031 + ], + "id": 644, + "label": "BIOM 272", + "title": "Seminars in Genetics (2)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in microbiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 645, + "label": "BIOM 273", + "title": "Seminars in Microbiology (2)" + }, + { + "dept": "ECON", + "description": "Survey of the Indian economy. Historical overview and perspective; political economy; democracy and development; economic growth; land, labor, and credit markets; poverty and inequality; health, education, and human development; technology and development; institutions and state capacity; contemporary policy issues and debates. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [], + "id": 646, + "label": "ECON 164", + "title": "The Indian Economy (4)" + }, + { + "dept": "ECON", + "description": "Socioeconomic development in the Arab world, Iran, and Turkey. Historical perspective; international trade and fuel resources; education, health, and gender gaps; unemployment and migration; population and environment; Islam and democracy. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [ + 820 + ], + "id": 647, + "label": "ECON 165", + "title": "Middle East Economics (4)" + }, + { + "dept": "ECON", + "description": "Long-run economic development and current economic issues of Southeast Asia. Topics include: economic growth, industrialization, financial development, demography, human capital and labor, inequality and poverty, corporate sector, institutions, and government. Designed to teach how to apply economics to the real world, with examples and case studies from Southeast Asian economies. Will start with general economic frameworks then use them to discuss issues from countries in Southeast Asia. ", + "edges_from": [ + 413 + ], + "edges_to": [], + "id": 648, + "label": "ECON 166", + "title": "Economics of Southeast Asia (4)" + }, + { + "dept": "ECON", + "description": "Survey of the Chinese economy. Topics such as economic growth, China\u2019s transition to a market economy, international trade, financial markets, labor markets, and industrial structure. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [], + "id": 649, + "label": "ECON 167", + "title": "Economics of China (4)" + }, + { + "dept": "ECON", + "description": "Examines the integration of Latin American and Caribbean countries into the global economy. Topics include trade in agricultural and manufactured goods, regional trade agreements, international capital flows to Latin America, financial vulnerabilities, and policy responses. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [], + "id": 650, + "label": "ECON 161", + "title": "Global Integration of Latin America (4)" + }, + { + "dept": "ECON", + "description": "Survey of the Mexican economy. Topics such as economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [], + "id": 651, + "label": "ECON 162", + "title": "Economics of Mexico (4)" + }, + { + "dept": "ECON", + "description": "Survey of the Japanese economy. Economic growth, business cycles, saving-investment balance, financial markets, fiscal and monetary policy, labor markets, industrial structure, international trade, and agricultural policy. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [], + "id": 652, + "label": "ECON 163", + "title": "Japanese Economy (4)" + }, + { + "dept": "ECON", + "description": "This course explores economic processes that shape the Israeli economy. Topics include: biblical economics, economics of religion, economic growth, income inequality and consumer protests, employment, globalization, inflation, the high-tech sector, terrorism, and education. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [], + "id": 653, + "label": "ECON 168", + "title": "Economics of Modern Israel (4)" + }, + { + "dept": "ECON", + "description": "This course covers long-run economic development and current economic issues of South Korea. Topics include: examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea\u2019s industrial structure, including the role of large enterprises (chaebol); role of government; and links between Korea and other countries. ", + "edges_from": [ + 411, + 655 + ], + "edges_to": [], + "id": 654, + "label": "ECON 169", + "title": "Economics of Korea (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 410, + 132, + 405, + 407 + ], + "edges_to": [ + 5281, + 3751, + 3976, + 907, + 908, + 909, + 654, + 402, + 3514, + 3515, + 3516, + 3517, + 3519 + ], + "id": 655, + "label": "ECON 100A", + "title": "" + }, + { + "dept": "ECON", + "description": "Topics include weak instruments, unit roots, break tests, switching models, set-based inference, maximum likelihood estimation and meaning of misspecified models, consistency, asymptotic normality, consistent covariance matrix estimation, and tests of model misspecification. ", + "edges_from": [ + 657, + 658, + 659, + 660, + 183 + ], + "edges_to": [], + "id": 656, + "label": "ECON 228", + "title": "Nonstandard Inference (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 183 + ], + "edges_to": [ + 656, + 658, + 661, + 662, + 663, + 664 + ], + "id": 657, + "label": "ECON 220D", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 657 + ], + "edges_to": [ + 656, + 5620, + 661, + 662, + 663, + 664 + ], + "id": 658, + "label": "ECON 220E", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 656, + 3762, + 660, + 661, + 662, + 663, + 664 + ], + "id": 659, + "label": "ECON 220A", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 659 + ], + "edges_to": [ + 183, + 656, + 3762, + 661, + 662, + 663, + 664 + ], + "id": 660, + "label": "ECON 220B", + "title": "" + }, + { + "dept": "ECON", + "description": "Topics include neural networks, kernels, series, splines, estimation of densities and spectra, smoothing parameter selection, semiparametric models, efficiency and adaptation, forecasting with nonlinear models, over-fit, computation, and interpretation. ", + "edges_from": [ + 657, + 658, + 659, + 660, + 183 + ], + "edges_to": [], + "id": 661, + "label": "ECON 227", + "title": "Nonparametric and Semiparametric Models (4)" + }, + { + "dept": "ECON", + "description": "Topics include Bayesian inference and decision theory, loss functions, estimation of dynamic stochastic general equilibrium models, nonlinear time series, state-space models, spatial-temporal models, and high-frequency data. ", + "edges_from": [ + 657, + 658, + 659, + 660, + 183 + ], + "edges_to": [], + "id": 662, + "label": "ECON 226", + "title": "Bayesian and Numerical Methods (4)" + }, + { + "dept": "ECON", + "description": "Topics include testing for rationality of forecasts, Mincer-Zarnowitz regressions, asymmetric loss functions, tests for equal (superior) predictive ability, multivariate forecasting. ", + "edges_from": [ + 657, + 658, + 659, + 660, + 183 + ], + "edges_to": [], + "id": 663, + "label": "ECON 225", + "title": "Forecasting (4)" + }, + { + "dept": "ECON", + "description": "Advanced topics in econometrics. Topics may vary from year to year, covering areas such as cross-section, time-series, panel, limited dependent variables, conditional quantile estimation, bootstrapping, and large- and small-sample distribution theory. ", + "edges_from": [ + 657, + 658, + 659, + 660, + 183 + ], + "edges_to": [], + "id": 664, + "label": "ECON 221", + "title": "Advanced Econometrics (4)" + }, + { + "dept": "SE", + "description": "Materials testing and/or processing for metals and alloys, polymers and composites, cements, and wood. Materials selection and structural design to meet functional and cost requirements. Structural construction and testing. Use of computer resources. ", + "edges_from": [ + 26, + 667, + 666 + ], + "edges_to": [ + 2212 + ], + "id": 665, + "label": "SE 2L", + "title": "Structural Materials Lab (1)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 26, + 667 + ], + "edges_to": [ + 665, + 4266, + 2212 + ], + "id": 666, + "label": "SE 2", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2533, + 1513, + 3729, + 89, + 952, + 665, + 666, + 955, + 2622, + 133 + ], + "id": 667, + "label": "CHEM 6A", + "title": "" + }, + { + "dept": "TMC", + "description": "Weekly seminar conducted by UC San Diego faculty and distinguished guest lecturers on topics related to the core curriculum: diversity, justice, and imagination. P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 668, + "label": "TMC 20", + "title": "Thurgood Marshall College Honors Seminar (1)" + }, + { + "dept": "PHYS", + "description": "Discussions of recent research in physics directed to the entire physics community. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 669, + "label": "PHYS 260", + "title": "Physics Colloquium (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research conducted by faculty members in the Department of Physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 670, + "label": "PHYS 261", + "title": "Seminar on Physics Research at UC San Diego (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of the application of the scientific method in the natural sciences. (S/U grades only.) May be taken for credit twenty-five times.", + "edges_from": [], + "edges_to": [], + "id": 671, + "label": "PHYS 264", + "title": "Scientific Method Seminar (1)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of problems of impulse control, which are important features of major psychiatric disorders and also of atypical patterns of behavior including pathological gambling, compulsive sex, eating, exercise, and shopping. Topics include development, major common features, treatment, and neurobiological basis of impulse control disorders. ", + "edges_from": [], + "edges_to": [], + "id": 672, + "label": "PSYC 188", + "title": "Impulse Control Disorders (4)" + }, + { + "dept": "MATH", + "description": "Various topics in differential geometry. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 673, + "label": "MATH 258", + "title": "Seminar in Differential Geometry (1)" + }, + { + "dept": "MATH", + "description": "Various topics in Lie groups and Lie algebras, including structure theory, representation theory, and applications. ", + "edges_from": [], + "edges_to": [], + "id": 674, + "label": "MATH 256", + "title": "Seminar in Lie Groups and Lie Algebras (1)" + }, + { + "dept": "MGTA", + "description": "Students will learn to design and run experiments to guide policy and business decisions. They will learn to distinguish between a correlation and a causal effect and also to critically evaluate causal claims based on nonexperimental data. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 675, + "label": "MGTA 458", + "title": "Experiments in Firms (4)" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [ + 678 + ], + "edges_to": [ + 5152, + 675, + 2471, + 2474, + 679, + 5011, + 694, + 5815, + 698 + ], + "id": 676, + "label": "MGTA 452", + "title": "" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [ + 678 + ], + "edges_to": [ + 5152, + 675, + 2471, + 2474, + 679, + 5011, + 694, + 5815, + 698 + ], + "id": 677, + "label": "MGTA 453", + "title": "" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [], + "edges_to": [ + 5152, + 675, + 676, + 677, + 679, + 2474, + 2471, + 5011, + 694, + 5815, + 698 + ], + "id": 678, + "label": "MGTA 451", + "title": "" + }, + { + "dept": "MGTA", + "description": "Decision making is difficult with scarce resources, inexact information, and conflicting stakeholder agendas (i.e., most of the time). Students will use advanced behavioral research to gain a competitive advantage, by improving their decisions and their understanding of how others decide. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 679, + "label": "MGTA 459", + "title": "Managerial Judgment and Decision-Making (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the applications of social psychological principles and findings to sports. Topics include motivation, level of aspiration, competition, cooperation, social comparison, and optimal arousal. Additional topics may include the perspective of spectators, discussing motivation and perceptions of success, streaks, and such. ", + "edges_from": [], + "edges_to": [], + "id": 680, + "label": "PSYC 139", + "title": "The Social Psychology of Sport (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of auditory perception. Topics may include the physiology of the auditory system, perception of pitch, loudness, and timbre, sound localization, perception of melodic and temporal patterns and musical illusions and paradoxes. Recommended preparation: ability to read musical notation. ", + "edges_from": [], + "edges_to": [], + "id": 681, + "label": "PSYC 138", + "title": "Sound and Music Perception (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of social cognition, which blends cognitive and social psychology to understand how people make sense of the social world. Topics may include social perception, inference, memory, motivation, affect, understanding the self, stereotypes, and cultural cognition. ", + "edges_from": [], + "edges_to": [], + "id": 682, + "label": "PSYC 137", + "title": "Social Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how children\u2019s thinking develops. Topics may include perception, concept formation, memory, problem solving, and social cognition. ", + "edges_from": [ + 684, + 446 + ], + "edges_to": [], + "id": 683, + "label": "PSYC 136", + "title": "Cognitive Development (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 683 + ], + "id": 684, + "label": "PSYC 105", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the biology and psychology of eating disorders such as anorexia nervosa, bulimia nervosa, and binge eating disorder. Abnormal, as well as normal, eating will be discussed from various perspectives including endocrinological, neurobiological, psychological, sociological, and evolutionary. ", + "edges_from": [], + "edges_to": [], + "id": 685, + "label": "PSYC 134", + "title": "Eating Disorders (4)" + }, + { + "dept": "PSYC", + "description": "This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. Cross-listed with BIMM 116. ", + "edges_from": [ + 216, + 215, + 687 + ], + "edges_to": [], + "id": 686, + "label": "PSYC 133", + "title": "Circadian Rhythms\u2014Biological Clocks (4)" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [], + "edges_to": [ + 3728, + 2193, + 4505, + 2587, + 4512, + 1075, + 4516, + 686, + 1331, + 4289, + 3141, + 588, + 976, + 725, + 987, + 3932, + 3293, + 3294, + 3296, + 4451, + 2916, + 2533, + 4576, + 875, + 5103, + 241, + 242, + 2422, + 1146, + 1147 + ], + "id": 687, + "label": "BILD 1", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course examines how hormones influence a variety of behaviors and how behavior reciprocally influences hormones. Specific topics covered include aggression, sex and sexuality, feeding, learning, memory, mood and neural mechanisms both in humans and nonhuman animals. Recommended preparation: completion of PSYC 106. ", + "edges_from": [], + "edges_to": [], + "id": 688, + "label": "PSYC 132", + "title": "Hormones and Behavior (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a review of research on delay of gratification. Topics include what makes it so tough, in what situations it is possible, who can do it, and the implications of this ability. ", + "edges_from": [], + "edges_to": [], + "id": 689, + "label": "PSYC 130", + "title": "Delay of Gratification (4)" + }, + { + "dept": "HIGR", + "description": "Social Evolution, and Intellectuals in the Andes: Mari\u00e1tegui, Haya de la", + "edges_from": [], + "edges_to": [], + "id": 690, + "label": "HIGR 252", + "title": "History," + }, + { + "dept": "SE", + "description": "Wave propagation in elastic media with emphasis on waves in unbound media and on uniform and layered half-spaces. Fundamental aspects of elastodynamics. Application to strong-motion seismology, earthquake engineering, dynamics of foundations, computational wave propagation, and nondestructive evaluations. ", + "edges_from": [], + "edges_to": [], + "id": 691, + "label": "SE 235", + "title": "Wave Propagation in Elastic Media (4)" + }, + { + "dept": "SE", + "description": "in Continuous Structural Elements (4)", + "edges_from": [], + "edges_to": [], + "id": 692, + "label": "SE 236", + "title": "Wave Propagation" + }, + { + "dept": "SE", + "description": "Techniques in Finite Elements (4)", + "edges_from": [], + "edges_to": [], + "id": 693, + "label": "SE 233", + "title": "Computational" + }, + { + "dept": "MGTA", + "description": "A decision support system consists of decision model, data, and user interface. This course covers the R and Shiny programming and design skills to develop a DSS that addresses a manager\u2019s decision-making needs. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 694, + "label": "MGTA 457", + "title": "Business Intelligence Systems (2)" + }, + { + "dept": "POLI", + "description": "Asian Thought in Comparative Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 695, + "label": "POLI 113A", + "title": "East" + }, + { + "dept": "POLI", + "description": "Examines philosophical traditions of ancient and modern China and Japan, to understand how these have been reflected in Chinese and Japanese development. Course will be in English; however, students with Chinese or Japanese language skills will have opportunity to use these. Graduate students will be required to complete a seminar-length research paper; undergraduate students will write a paper. ", + "edges_from": [], + "edges_to": [], + "id": 696, + "label": "POLI 113B", + "title": "Chinese and Japanese Political Thought I (4)" + }, + { + "dept": "POLI", + "description": "A continuation of 113B, which follows political philosophical themes in China and Japan through the twentieth century. Important topics include Buddhism and Confucianism as they changed in each context in response to internal and external stimuli. ", + "edges_from": [], + "edges_to": [], + "id": 697, + "label": "POLI 113C", + "title": "Chinese and Japanese Political Thought II (4)" + }, + { + "dept": "MGTA", + "description": "Students will pursue their capstone experience as part of a team to solve practical business problems faced by companies. Each team will work as external consultants on a project to create value for a client company. Student may not receive credit for both MGTA 454 and MGTA 454A or MGTA 454B. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 698, + "label": "MGTA 454", + "title": "Business Analytics Capstone Project (4)" + }, + { + "dept": "HIGR", + "description": "Introduction to the bibliography, methodology, and ancillary disciplines for the study of ancient history together with readings and discussion on selected topics within the field. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 699, + "label": "HIGR 254", + "title": "Historical Scholarship in Ancient History (4)" + }, + { + "dept": "USP", + "description": "Introduction to teaching activities associated with course. Responsibilities include preparing reading materials assigned by the instructor, attending course lectures, meeting at least one hour per week with the instructor, assisting instructor in grading, and preparing a summary report to the instructor. ", + "edges_from": [], + "edges_to": [], + "id": 700, + "label": "USP 195", + "title": "Teaching Apprentice\u2014Undergraduate (2\u20134)" + }, + { + "dept": "USP", + "description": "(Same as Cognitive Science 194, Communication 194, Earth Science 194, History 193, Political Science 194, Sociology E/194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "edges_from": [], + "edges_to": [], + "id": 701, + "label": "USP 194", + "title": "Research Seminar in Washington, DC (4)" + }, + { + "dept": "USP", + "description": "Introduction to Geographic Information Systems and using GIS to make decisions: acquiring data and organizing data in useful formats, demographic mapping, geocoding. Selected exercises examine crime data, political campaigns, banking and environmental planning, patterns of bank lending and finance. ", + "edges_from": [], + "edges_to": [], + "id": 702, + "label": "USP 191", + "title": "GIS for Urban and Community Planning (4)" + }, + { + "dept": "USP", + "description": "Each student enrolled will be required to write an honors essay, a substantial research paper on a current urban policy issue, under the supervision of a member of the faculty. Most often the essay will be based on their previous fieldwork courses and internship. This essay and other written exercises, as well as class participation, will be the basis of the final grade for the course. The seminar will rotate from year to year among the faculty in urban studies and planning. ", + "edges_from": [ + 704, + 705, + 706 + ], + "edges_to": [], + "id": 703, + "label": "USP 190", + "title": "Senior Honors Seminar (4)" + }, + { + "dept": "GPA", + "description": "", + "edges_from": [], + "edges_to": [ + 703 + ], + "id": 704, + "label": "GPA 3", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 706, + 703 + ], + "id": 705, + "label": "USP 186", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [ + 705 + ], + "edges_to": [ + 703 + ], + "id": 706, + "label": "USP 187", + "title": "" + }, + { + "dept": "USP", + "description": "Using the San Diego region as a case study, students will be introduced to the process of collecting, evaluating, and presenting urban and regional data using a variety of methods, including aggregate data analysis, historical research, and ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 707, + "label": "USP 193", + "title": "San Diego Community Research (4)" + }, + { + "dept": "PHYS", + "description": "Third quarter of a three-quarter introductory physics course geared toward life-science majors. The physics of oscillations and waves, vibrating strings and sound, the behavior of systems under combined thermal and electric forces, and the interaction of light with matter as illustrated through optics and quantum mechanics. Examples from biology, sports, medicine, and current events. ", + "edges_from": [ + 132, + 709, + 710, + 711, + 712, + 405, + 407, + 346, + 28 + ], + "edges_to": [ + 3219, + 2924 + ], + "id": 708, + "label": "PHYS 1C", + "title": "Waves, Optics, and Modern Physics (3)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1265, + 849 + ], + "edges_to": [ + 5104, + 708, + 711, + 712, + 5197, + 2192, + 4968, + 1972, + 1974, + 5745, + 4891 + ], + "id": 709, + "label": "MATH 11", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 708 + ], + "id": 710, + "label": "PHYS 1CL", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 132, + 709, + 1265, + 712, + 599, + 1263, + 1264, + 849, + 405, + 407, + 26 + ], + "edges_to": [ + 712, + 3219, + 708 + ], + "id": 711, + "label": "PHYS 1B", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 132, + 709, + 1265, + 599, + 711, + 1263, + 1264, + 849, + 405, + 407, + 26 + ], + "edges_to": [ + 708, + 711 + ], + "id": 712, + "label": "PHYS 1BL", + "title": "" + }, + { + "dept": "USP", + "description": "Reading and research programs and field-study projects to be arranged between student and instructor, depending on the student\u2019s needs and the instructor\u2019s advice in terms of these needs. ", + "edges_from": [], + "edges_to": [], + "id": 713, + "label": "USP 199", + "title": "Independent Study (2\u20134)" + }, + { + "dept": "USP", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 714, + "label": "USP 198", + "title": "Directed Group Study (2\u20134)" + }, + { + "dept": "ANTH", + "description": "This seminar will focus on a close and intensive reading of Maurice Merleau-Ponty\u2019s masterwork, The Phenomenology of Perception. Emphasis will be placed on the relevance of this work for theory, method, and practice in the social sciences. ", + "edges_from": [], + "edges_to": [], + "id": 715, + "label": "ANTH 221", + "title": "Phenomenology of Perception (4)" + }, + { + "dept": "ANTH", + "description": "This is an interdisciplinary seminar examining the place of the body and embodiment in contemporary culture and culture theory. ", + "edges_from": [], + "edges_to": [], + "id": 716, + "label": "ANTH 220", + "title": "The Human Body in Discourse and Experience (4)" + }, + { + "dept": "ANTH", + "description": "The course teaches techniques of long-term, intensive interviewing in fieldwork settings with an emphasis on psychodynamic inference and its usefulness in different cultural settings. ", + "edges_from": [ + 718 + ], + "edges_to": [], + "id": 717, + "label": "ANTH 223", + "title": "Anthropological Interviewing (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 717 + ], + "id": 718, + "label": "ANGR 223", + "title": "" + }, + { + "dept": "ANTH", + "description": "The study of subjectivity has emerged as an anthropological focal point for theorizing the interconnections among culture, experience, and power. This seminar explores the shaping of the lived experience and structures of knowledge that reciprocally produce forms of subjectivity. ", + "edges_from": [], + "edges_to": [], + "id": 719, + "label": "ANTH 222", + "title": "Anthropological Studies of Subjectivity (4)" + }, + { + "dept": "PHYS", + "description": "This is a one-quarter general physics course for nonscience majors. Topics covered are motion, energy, heat, waves, electric current, radiation, light, atoms and molecules, nuclear fission and fusion. This course emphasizes concepts with minimal mathematical formulation. Recommended preparation: college algebra.", + "edges_from": [], + "edges_to": [], + "id": 720, + "label": "PHYS 10", + "title": "Concepts in Physics (4)" + }, + { + "dept": "ANTH", + "description": "A critical analysis of ethnographic and theoretical texts focusing on the sociocultural study of gender. We will also draw on studies of gender and feminist theory from other disciplines (e.g., history, philosophy) to illuminate issues relevant to anthropology. ", + "edges_from": [], + "edges_to": [], + "id": 721, + "label": "ANTH 224", + "title": "The Anthropology of Gender and Sexuality (4)" + }, + { + "dept": "PHYS", + "description": "A course covering energy fundamentals, energy use in an industrial society and the impact of large-scale energy consumption. It addresses topics on fossil fuel, heat engines, solar energy, nuclear energy, energy conservation, transportation, air pollution and global effects. Concepts and quantitative analysis.", + "edges_from": [], + "edges_to": [], + "id": 722, + "label": "PHYS 12", + "title": "Energy and the Environment (4)" + }, + { + "dept": "ANTH", + "description": "Directed to graduate students planning ethnographic work in Christian societies, this course explore", + "edges_from": [], + "edges_to": [], + "id": 723, + "label": "ANTH 226", + "title": "Ethnography of Christianity (4)" + }, + { + "dept": "ANTH", + "description": "This seminar is an in-depth analysis of cultural meaning, personal experience, and therapeutic process in ritual healing, emphasizing performative/persuasive aspects of the relation between religion and health in comparative, cross-cultural perspective. ", + "edges_from": [], + "edges_to": [], + "id": 724, + "label": "ANTH 229", + "title": "Religion and Healing (4)" + }, + { + "dept": "BICD", + "description": "Course implements key concepts in genetics and genomics such as performing and interpreting results of genetic crosses, analyzing mutations and their phenotypic consequences, analyzing the genetic basis of quantitative traits, and analyzing genome sequences in relation to phenotypic variation. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 100. ", + "edges_from": [ + 687 + ], + "edges_to": [], + "id": 725, + "label": "BICD 101", + "title": "Eucaryotic Genetics Laboratory (4)" + }, + { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in analyzing existing data sets. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 726, + "label": "FPM 280C", + "title": "Practicum in Health Behavior III (4)" + }, + { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor in preparing manuscripts using data from a specific health behavior intervention. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 727, + "label": "FPM 280B", + "title": "Practicum in Health Behavior II (4)" + }, + { + "dept": "FPM", + "description": "Students will learn about grant writing, project management, and preparation of manuscripts for publication and presentations for scientific meetings, and also work individually with a faculty mentor to learn how to conduct a health behavior intervention. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 728, + "label": "FPM 280A", + "title": "Practicum in Health Behavior I (4)" + }, + { + "dept": "COMM", + "description": "Specialized study in production with topics to be determined by the instructor for any given quarter. Students will use studio, editing rooms, cameras to construct a variety of in or outside studio productions that can include YouTube, Documentary shorts, Vimeo, with topics that show the effects on social issues. May be taken for credit three times. ", + "edges_from": [ + 730, + 731, + 732 + ], + "edges_to": [], + "id": 729, + "label": "COMM 101T", + "title": "MPL: Topics in Production (4)" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [ + 294 + ], + "edges_to": [ + 737, + 4221, + 729, + 4217, + 4220, + 733, + 734, + 735 + ], + "id": 730, + "label": "COMM 101", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 3079, + 1111, + 3604, + 729, + 4217, + 4220, + 4221 + ], + "id": 731, + "label": "VIS 70N", + "title": "" + }, + { + "dept": "COGN", + "description": "", + "edges_from": [], + "edges_to": [ + 729, + 4220, + 4221, + 4217 + ], + "id": 732, + "label": "COGN 22", + "title": "" + }, + { + "dept": "COMM", + "description": "This is a practical course on ethnographic fieldwork\u2014obtaining informed consent interviewing, negotiating, formulating a research topic, finding relevant literature, writing a research paper, and assisting others with their research. May be taken for credit three times. Students will not receive credit for COMT 112 and COMM 101E. ", + "edges_from": [ + 730, + 294 + ], + "edges_to": [], + "id": 733, + "label": "COMM 101E", + "title": "MPL: Ethnographic Methods for Media Production (4)" + }, + { + "dept": "COMM", + "description": "Prepare students to edit on nonlinear editing facilities and introduce aesthetic theories of editing: time code editing, time line editing on the Media 100, digital storage and digitization of audio and video, compression, resolution, and draft mode editing. By the end of the course students will be able to demonstrate mastery of the digital editing facilities. May be taken for credit three times. Students will not receive credit for COMT 100 and COMM 101D. ", + "edges_from": [ + 730, + 294 + ], + "edges_to": [], + "id": 734, + "label": "COMM 101D", + "title": "MPL: Nonlinear/Digital Editing (4)" + }, + { + "dept": "COMM", + "description": "Digital video is the medium used in this class both as a production technology and as a device to explore the theory and practice of documentary production. Technical demonstrations, lectures, production exercises, and readings will emphasize the interrelation between production values and ethics, problems of representation, and documentary history. May be taken for credit three times. Students will not receive credit for COMT 120 and COMM 101K. ", + "edges_from": [ + 730, + 294 + ], + "edges_to": [], + "id": 735, + "label": "COMM 101K", + "title": "MPL: Documentary Sketchbook (4)" + }, + { + "dept": "COMM", + "description": "This course introduces students to computers as media of communication. Each quarter students participate in a variety of networking activities designed to show the interactive potential of the medium. Fieldwork designed to teach basic methods is combined with readings designed to build a deeper theoretical understanding of computer-based communication. Students will not receive credit for COMT 111A and COMM 101M. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 736, + "label": "COMM 101M", + "title": "MPL: Communication and Computers (4)" + }, + { + "dept": "COMM", + "description": "Advanced seminar in sound production, design, editing. Students create projects by recording original sounds, editing on a Pro-Tools system. We consider the potential of sound in film, radio, TV, and the web by reviewing work and reading sound theory. May be taken for credit three times. Students will not receive credit for COMT 121 and COMM 101N. ", + "edges_from": [ + 730, + 294 + ], + "edges_to": [], + "id": 737, + "label": "COMM 101N", + "title": "MPL: Sound Production and Manipulation (4)" + }, + { + "dept": "CSE", + "description": "Bioinformatics III: Functional Genomics (4)", + "edges_from": [], + "edges_to": [], + "id": 738, + "label": "CSE 283/BENG 203", + "title": "" + }, + { + "dept": "NEU", + "description": "This course will blend research and clinical perspectives to allow comprehensive learning of CNS diseases. For each two-week disease block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.", + "edges_from": [], + "edges_to": [], + "id": 739, + "label": "NEU 270A", + "title": "Neurobiology of Disease: Mechanisms of Neurodegeneration (4)" + }, + { + "dept": "NEU", + "description": "This course will blend research and clinical perspectives to allow comprehensive learning of CNS neurodevelopmental disorders. For each two-week block, students will read, present, and discuss current research publications which will be paired with a lecture by a research scientist who will describe the major features of each disorder, hypothesis being explored, and the state of therapeutics. The following session will involve a physician presenting an adult patient with the condition, and students will have the opportunity to ask questions of both the physician and the patient. Priority enrollment given to PhD and MD students. MS and undergraduate enrollment permission to be granted by the instructor.", + "edges_from": [], + "edges_to": [], + "id": 740, + "label": "NEU 270B", + "title": "Neurobiology of Disease: Neurodevelopmental Disorders (4)" + }, + { + "dept": "ECE", + "description": "The course reinforces students\u2019 intuitive, theoretical, and computational understanding of probability and statistics, and builds on these foundations to introduce more advanced concepts useful in both data science research and practice. The following topics will be covered: basics, convergence, estimation, and hypothesis testing. Python programs, examples, and visualizations will be used throughout the course. ", + "edges_from": [], + "edges_to": [ + 742 + ], + "id": 741, + "label": "ECE 225A", + "title": "Probability and Statistics for Data Science (4)" + }, + { + "dept": "ECE", + "description": "In many data science problems, there is only limited information on statistical properties of the data. This course develops the concept of universal probability that can be used as a proxy for the unknown distribution of data and provides a unified framework for several data science problems, including compression, portfolio selection, prediction, and classification. ", + "edges_from": [ + 741, + 743 + ], + "edges_to": [], + "id": 742, + "label": "ECE 225B", + "title": "Universal Probability and Its Applications in Data Science (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2690, + 1645, + 742 + ], + "id": 743, + "label": "ECE 250", + "title": "" + }, + { + "dept": "TDGR", + "description": "A guided reading course focusing exclusively on very recent plays in an attempt to become aware of what is being written now. Course may be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 744, + "label": "TDGR 256", + "title": "Contemporary Plays (1\u20134)" + }, + { + "dept": "ANSC", + "description": "This course examines societies and cultures of the Caribbean in anthropological and historical perspective. Topics include slavery, emancipation, indentureship, kinship, race, ethnicity, class, gender, politics, food, religion, music, festivals, popular culture, migration, globalization, and tourism. ", + "edges_from": [], + "edges_to": [], + "id": 745, + "label": "ANSC 110", + "title": "Societies and Cultures of the Caribbean (4)" + }, + { + "dept": "ANSC", + "description": "Young people draw on language as well as clothing and music to display identities in contemporary societies. We examine the relation of language to race, class, gender, and ethnicity in youth identity construction, especially in multilingual and multiracial societies. ", + "edges_from": [], + "edges_to": [], + "id": 746, + "label": "ANSC 113", + "title": "Language, Style, and Youth Identities (4)" + }, + { + "dept": "TDGR", + "description": "This course is open to any graduate student who wants to expand their knowledge and experience of writing for performance. Open to graduate students who wish to incorporate writing into their creative and research practice. S/U grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 747, + "label": "TDGR 255", + "title": "Writing for Performance (4)" + }, + { + "dept": "TDGR", + "description": "The seminar will deal with all dramaturgical issues pertaining to departmental productions: production research, textual and analysis, translation, adaptation, rehearsal process, and critique. Concurrently with the dramaturgy issues of the given year, the seminar will discuss possible choices of plays for future production seasons. ", + "edges_from": [], + "edges_to": [], + "id": 748, + "label": "TDGR 252", + "title": "Dramaturgy Seminar (4)" + }, + { + "dept": "TDGR", + "description": "Students enrolled in this course will work on productions in the function of a dramaturg. This will entail preparation of texts, research, participation at rehearsals, etc. ", + "edges_from": [], + "edges_to": [], + "id": 749, + "label": "TDGR 253", + "title": "Dramaturgy Practicum (1\u20136)" + }, + { + "dept": "ANSC", + "description": "This course contrasts mainstream Anglo-American conceptualizations of transgenderism with ethnographic accounts of the experiences and practices of gender expansive people of color (African, Native, Asian/Pacific Islander, and Latinx Americans) in the U.S. and abroad. It will question the idea of transgenderism as a crossing from one gender to another one, the distinction between gender identity and sexuality, and the analytic of intersectionality. Students will not receive credit for both CGS 117 and ANSC 117. ", + "edges_from": [], + "edges_to": [], + "id": 750, + "label": "ANSC 117", + "title": "Transgenderisms (4)" + }, + { + "dept": "TDGR", + "description": "Creative writing project developing original scripts from outline to the final play. Plays may vary depending on the quarter, but will include writing of a realistic one-act, a nonrealistic one-act, a one-act documentary or dramatization of fiction, a full-length play. ", + "edges_from": [], + "edges_to": [], + "id": 751, + "label": "TDGR 251", + "title": "Playwriting Practicum (2)" + }, + { + "dept": "ANSC", + "description": "Communication, and the Body (4)", + "edges_from": [], + "edges_to": [], + "id": 752, + "label": "ANSC 119", + "title": "Gesture," + }, + { + "dept": "ANSC", + "description": "An introduction to the study of cultural patterns of thought, action, and expression, in relation to language. We consider comparatively semiotics and structuralism, cognition and categorization, universals versus particulars, ideologies of stasis and change, cultural reconstruction, and ethnopoetics. ", + "edges_from": [], + "edges_to": [], + "id": 753, + "label": "ANSC 118", + "title": "Language and Culture (4)" + }, + { + "dept": "HILA", + "description": "How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.", + "edges_from": [], + "edges_to": [], + "id": 754, + "label": "HILA 114D", + "title": "Dictatorship in Latin America (4)" + }, + { + "dept": "ECE", + "description": "Digital communication theory including performance of various modulation techniques, effects of inter-symbol interference, adaptive equalization, spread spectrum communication. ", + "edges_from": [ + 756, + 757, + 758, + 759 + ], + "edges_to": [], + "id": 755, + "label": "ECE 258A\u2013B", + "title": "Digital Communication (4-4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 4472, + 1685 + ], + "edges_to": [ + 1010, + 755, + 758, + 1011 + ], + "id": 756, + "label": "ECE 154A", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 758 + ], + "edges_to": [ + 755 + ], + "id": 757, + "label": "ECE 154C", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 756 + ], + "edges_to": [ + 755, + 757 + ], + "id": 758, + "label": "ECE 154B", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 755 + ], + "id": 759, + "label": "ECE 254", + "title": "" + }, + { + "dept": "PHYS", + "description": "One hour of lecture and three hours of laboratory. Experiments to be chosen from refraction, diffraction and interference of microwaves, Hall effect, thermal band gap, optical spectra, coherence of light, photoelectric effect, e/m ratio of particles, radioactive decays, and plasma physics. Program or materials fees may apply. ", + "edges_from": [ + 346, + 37, + 30, + 599 + ], + "edges_to": [ + 3480, + 3291, + 2814 + ], + "id": 760, + "label": "PHYS 2DL", + "title": "Physics Laboratory\u2014Modern Physics (2)" + }, + { + "dept": "MSED", + "description": "Students will work on an independent research project under the supervision of MSED faculty.", + "edges_from": [], + "edges_to": [], + "id": 761, + "label": "MSED 298", + "title": "Research Project (2\u201312)" + }, + { + "dept": "LIGN", + "description": "Issues of language representation and neural instantiation that arise in studies of neural imaging, language disorders, multilingualism and second language acquisition, animal communication, and the origins and evolution of language. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 762, + "label": "LIGN 272", + "title": "Topics in Neurolinguistics (4)" + }, + { + "dept": "LIGN", + "description": "Investigation of problems in psycholinguistics\u2014the study of how humans learn, represent, comprehend, and produce language\u2014from a computational perspective. Research article readings covering word-level, sentence-level, and discourse-level processing. Prior background in psycholinguistics and/or computational linguistics highly recommended.", + "edges_from": [], + "edges_to": [], + "id": 763, + "label": "LIGN 274", + "title": "Computational Psycholinguistics (4)" + }, + { + "dept": "BENG", + "description": "Multiscale Biology (4)", + "edges_from": [], + "edges_to": [], + "id": 764, + "label": "BENG 276/Chem 276/Math 276/Pharm 276", + "title": "Numerical Analysis in" + }, + { + "dept": "LIGN", + "description": "Language acquisition is central to theories about human development, cognition, brain organization, and language origins and change. Topics include the role of input and critical periods on language outcome and processing, neural organization, and sign language creation. ", + "edges_from": [], + "edges_to": [], + "id": 765, + "label": "LIGN 279", + "title": "Topics in Language Acquisition (4)" + }, + { + "dept": "MUS", + "description": "This course will introduce basic voicings and voice leading, stylistically appropriate accompaniment, and basic chord substitution. For majors with a Jazz and the Music of the African diaspora emphasis to be taken concurrently with MUS 2C. ", + "edges_from": [ + 768, + 769, + 767 + ], + "edges_to": [], + "id": 766, + "label": "MUS 2JK", + "title": "Jazz Keyboard (2)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1581, + 766 + ], + "id": 767, + "label": "MUS 2AK", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1581, + 766 + ], + "id": 768, + "label": "MUS 2BK", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 5184, + 5025, + 3983, + 1684, + 2581, + 4762, + 2107, + 766 + ], + "id": 769, + "label": "MUS 2C", + "title": "" + }, + { + "dept": "MSED", + "description": "Survey of recent literature highlighting critical issues in science education research. Specific focus on research in biology education, chemistry education, and physics education. Theoretical perspectives and research methodology (both qualitative and quantitative) used to understand learning will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 770, + "label": "MSED 290", + "title": "Issues in Science Education Research (4)" + }, + { + "dept": "DSC", + "description": "This introductory course develops computational thinking and tools necessary to answer questions that arise from large-scale datasets. This course emphasizes an end-to-end approach to data science, introducing programming techniques in Python that cover data processing, modeling, and analysis. ", + "edges_from": [], + "edges_to": [ + 2968, + 497 + ], + "id": 771, + "label": "DSC 10", + "title": "Principles of Data Science (4)" + }, + { + "dept": "MSED", + "description": "Topics in Math and Science Education (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 772, + "label": "MSED 297", + "title": "Special" + }, + { + "dept": "MSED", + "description": "In this course, the graduate student will teach or assist a teacher in a K\u201312 setting. The graduate student will have the mentorship of the classroom teacher as well as the supervision of an MSED faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 773, + "label": "MSED 294", + "title": "Teaching Practicum (4)" + }, + { + "dept": "MSED", + "description": "Each practicum lasts five weeks and is designed to inform students about a faculty member\u2019s research program. Assignment as a research assistant may be used as one practicum. This course should be taken during the first year. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 774, + "label": "MSED 295", + "title": "MSED Orientation Practicum (1\u20133)" + }, + { + "dept": "GLBH", + "description": "Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will focus on identifying critical global health policy challenges and solving them using a multidisciplinary approach that takes into account the perspectives of various stakeholders. ", + "edges_from": [], + "edges_to": [], + "id": 775, + "label": "GLBH 160", + "title": "Global Health Policy (4)" + }, + { + "dept": "MATS", + "description": "Group discussion of research activities and progress of group members. ", + "edges_from": [], + "edges_to": [], + "id": 776, + "label": "MATS 295", + "title": "Research Conference (2)" + }, + { + "dept": "Soc/G", + "description": "An introduction for entering graduate students to the range and variety of research and scholarly interest of the department\u2019s faculty. Through this introduction students will be better able to relate their own research interests and professional objectives to the ongoing work of faculty. ", + "edges_from": [], + "edges_to": [], + "id": 777, + "label": "Soc/G 208", + "title": "Faculty Research Seminar (2)" + }, + { + "dept": "MATS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 778, + "label": "MATS 296", + "title": "Independent Study (4)" + }, + { + "dept": "BGGN", + "description": "This course provides a hands-on introduction to the computer-based analysis of genomic and biomolecular data. Major topics include sequencing technologies, genome informatics, structural bioinformatics, and transcriptomics. Students completing this course will be able to evaluate new genomic and biomolecular information using existing software and will have experience in combining bioinformatic approaches to answer biological questions. Enrollment restricted to the following major codes: BI77, BI78, and BS75. Course limited to PhD level students.", + "edges_from": [], + "edges_to": [], + "id": 779, + "label": "BGGN 213", + "title": "Foundations of Bioinformatics (4)" + }, + { + "dept": "BGGN", + "description": "The goal of the course is to provide an introduction to modern evolutionary biology using quantitative approaches. The course will focus on mathematical modeling, experimental, and genomic approaches to study evolution.", + "edges_from": [], + "edges_to": [], + "id": 780, + "label": "BGGN 212", + "title": "Introduction to Quantitative Evolutionary Biology (4)" + }, + { + "dept": "BGGN", + "description": "Introduces students to advanced concepts of modern biology (e.g. molecular and cell biology, biochemistry, genomics, and epigenomics, etc.). Current experimental approaches (including high-throughput sequencing, microarray technology, RNAi, proteomic technologies, ChIP-seq) are discussed using primary research papers. The course provides training in critical analysis of scientific papers, data interpretation, scientific writing, and experimental design. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.", + "edges_from": [], + "edges_to": [], + "id": 781, + "label": "BGGN 211", + "title": "Recent Advances and Experimental Approaches in Modern Biology (4)" + }, + { + "dept": "BGGN", + "description": "For incoming doctoral students in neurobiology, computational neurobiology, and neurosciences. During first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ", + "edges_from": [], + "edges_to": [], + "id": 782, + "label": "BGGN 210", + "title": "Neurobiology Boot Camp (4)" + }, + { + "dept": "BGGN", + "description": "Fundamentals behind and practical application of biostatistics, including central tendency and variability, hypothesis testing, inferential techniques (parametric and nonparametric), correlation and regression. Practice examples taken from the laboratory bench and primary literature. Training in the use of biostatistical software. ", + "edges_from": [], + "edges_to": [], + "id": 783, + "label": "BGGN 216", + "title": "Graduate Biostatistics (4)" + }, + { + "dept": "SOCI", + "description": "A continuation of Sociology/L 1A. The focus here is on socialization processes, culture, social reproduction and social control, and collective action. As in 1A, materials include both theoretical statements and case studies. While 1B may be taken as an independent course, it is recommended that students take 1A and 1B in sequence, as the latter builds on the former. Will not receive credit for SOCI 2 and SOCL 1B.", + "edges_from": [], + "edges_to": [ + 1123 + ], + "id": 784, + "label": "SOCI 2", + "title": "The Study of Society (4)" + }, + { + "dept": "BGGN", + "description": "The course goal is to discuss and work through examples where quantitative biology approaches were necessary to yield novel biological insights. Problems will be presented with a historic perspective to instill a philosophy for when, how, and why q-bio approaches are most effective. The course may also appeal to physics and engineering graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 785, + "label": "BGGN 214", + "title": "Introduction to Q-Biology (4)" + }, + { + "dept": "MATH", + "description": "Second course in a rigorous three-quarter introduction to the methods and basic structures of higher algebra. Topics include: rings (especially polynomial rings) and ideals, unique factorization, fields; linear algebra from perspective of linear transformations on vector spaces, including inner product spaces, determinants, diagonalization. (Students may not receive credit for both Math 100B and Math 103B.) ", + "edges_from": [ + 6 + ], + "edges_to": [ + 787, + 3743 + ], + "id": 786, + "label": "MATH 100B", + "title": "Abstract Algebra II (4)" + }, + { + "dept": "MATH", + "description": "Third course in a rigorous three-quarter introduction to the methods and basic structures of higher algebra. Topics include: linear transformations, including Jordan canonical form and rational canonical form; Galois theory, including the insolvability of the quintic. ", + "edges_from": [ + 786 + ], + "edges_to": [ + 3743 + ], + "id": 787, + "label": "MATH 100C", + "title": "Abstract Algebra III (4)" + }, + { + "dept": "LTFR", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 788, + "label": "LTFR 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "MATH", + "description": "Two- and three-dimensional Euclidean geometry", + "edges_from": [], + "edges_to": [], + "id": 789, + "label": "MATH 153", + "title": "Geometry for Secondary Teachers (4)" + }, + { + "dept": "LTFR", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 790, + "label": "LTFR 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "LTFR", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 791, + "label": "LTFR 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "ECE", + "description": "The linear least squares problem, including constrained and unconstrained quadratic optimization and the relationship to the geometry of linear transformations. Introduction to nonlinear optimization. Applications to signal processing, system identification, robotics, and circuit design. Recommended preparation: ECE 100. ", + "edges_from": [ + 793, + 794, + 171, + 573 + ], + "edges_to": [], + "id": 792, + "label": "ECE 174", + "title": "Introduction to Linear and Nonlinear Optimization with Applications (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 792, + 2153, + 2154, + 2156, + 3453 + ], + "id": 793, + "label": "ECE 15", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 5281, + 3976, + 5197, + 168, + 5973, + 5495, + 792, + 4891, + 4894 + ], + "id": 794, + "label": "ECE 109", + "title": "" + }, + { + "dept": "COMM", + "description": "An examination of the questions that developments in robotics pose to the scholars of communication: How do we communicate when our interlocutors are nonhumans? How do we study objects that are claimed to be endowed with social and affective character? ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 795, + "label": "COMM 174", + "title": "Communication and Social Machines (4)" + }, + { + "dept": "COMM", + "description": "This course examines the cultural politics of consumption across time and cultures through several concepts: commodity fetishism; conspicuous consumption; taste; class; and identity formation; consumption\u2019s psychological, phenomenological, and poetic dimensions; and contemporary manifestations of globalization and consumer activism. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 796, + "label": "COMM 175", + "title": "Cultures of Consumption (4)" + }, + { + "dept": "COMM", + "description": "The secularization thesis\u2014that as society becomes more modern and standards of living rise, the importance of religion will diminish and be confined to the private sphere\u2014may be wrong. We address religion, communication, culture, and politics in the United States. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 797, + "label": "COMM 176", + "title": "Communication and Religion (4)" + }, + { + "dept": "COMM", + "description": "Explores theories and narratives of cultural power, contemporary practices of resistance. Texts from a wide range of disciplines consider how domination is enacted, enforced, and what modes of resistance are employed to contend with uses and abuses of political power. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 798, + "label": "COMM 177", + "title": "Culture, Domination, and Resistance (4)" + }, + { + "dept": "POLI", + "description": "Relations After the Cold War: Theory and Prospect (4)", + "edges_from": [], + "edges_to": [], + "id": 799, + "label": "POLI 145C", + "title": "International" + }, + { + "dept": "COMM", + "description": "Survey of the communication practices found in environment controversies. The sociological aspects of environmental issues will provide background for the investigation of environmental disputes in particular contested areas, such as scientific institutions, communities, workplaces, governments, popular culture, and the media. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 800, + "label": "COMM 171", + "title": "Environmental Communication (4)" + }, + { + "dept": "POLI", + "description": "This course examines the domestic and international aspects of the drug trade. It will investigate the drug issues from the perspectives of consumers, producers, traffickers, money launderers, and law enforcement. Course material covers the experience of the United States, Latin America, Turkey, Southeast Asia, Western Europe, and Japan.", + "edges_from": [], + "edges_to": [], + "id": 801, + "label": "POLI 145A", + "title": "International Politics and Drugs (4)" + }, + { + "dept": "COMM", + "description": "In this class we will look closely at the everyday ways in which we interact with technology to discuss sociocultural character of objects, built environments; situated, distributed, and embodied character of knowledges; use of multimodal semiotic resources, talk, gesture, body orientation, and gaze in interaction with technology. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 802, + "label": "COMM 173", + "title": "Interaction with Technology (4)" + }, + { + "dept": "COMM", + "description": "Considers globalization\u2019s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 803, + "label": "COMM 179", + "title": "Global Nature/Global Culture (4)" + }, + { + "dept": "VIS", + "description": "Italian artists and critics of the fourteenth through sixteenth centuries were convinced that they were participating in a revival of the arts unparalleled since antiquity. Focusing primarily on Italy, this course traces the emergence in painting, sculpture and architecture, of an art based on natural philosophy, optical principles, and humanist values, which embodied the highest intellectual achievement and deepest spiritual beliefs of the age. Artists treated include Giotto, Donatello, Masaccio, Brunelleschi, Jan van Eyck, Mantegna, Botticelli, Leonardo da Vinci, Michelangelo, Raphael, Bramante, Durer, and Titian. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 804, + "label": "VIS 122AN", + "title": "Renaissance Art (4)" + }, + { + "dept": "GLBH", + "description": "Course will consist of intensive reading and discussion in fields related to each student\u2019s primary interest and building on their Global Health Field Experience. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ", + "edges_from": [], + "edges_to": [ + 3397 + ], + "id": 805, + "label": "GLBH 150A", + "title": "Global Health Capstone Seminar I (4)" + }, + { + "dept": "HIEU", + "description": "This course examines English responses to the French Revolution, industrialization, and engagement with other cultures during the eighteenth and nineteenth centuries. Readings from high, popular, and folk literature, both serious and satirical, illuminate life in the London metropolis. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 806, + "label": "HIEU 140GS", + "title": "Art and Society in Nineteenth-Century London (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100C or after successful completion of Econ 100C with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 807, + "label": "ECON 100CH", + "title": "Honors Microeconomics C (1)" + }, + { + "dept": "ANAR", + "description": "Concerns the latest developments in digital data capture, analyses, curation, and dissemination for cultural heritage. Introduction to geographic information systems (GIS), spatial analysis, and digital technologies applied to documentation and promotion of cultural heritage and tourism. Lectures and lab exercises. ", + "edges_from": [], + "edges_to": [], + "id": 808, + "label": "ANAR 121", + "title": "Cyber-Archaeology and World Digital Cultural Heritage (4)" + }, + { + "dept": "LTKO", + "description": "This course will help students develop intermediate-level skills in the Korean language. Upon completion of this course, students are expected to have good command of Korean in various daily conversational situations. ", + "edges_from": [ + 810 + ], + "edges_to": [], + "id": 809, + "label": "LTKO 2A-B-C", + "title": "Intermediate Korean: Second Year I-II-III (5-5-5)" + }, + { + "dept": "LTKO", + "description": "", + "edges_from": [ + 5938 + ], + "edges_to": [ + 809 + ], + "id": 810, + "label": "LTKO 1C", + "title": "" + }, + { + "dept": "ANAR", + "description": "This course explores the archaeology of Asia from the first humans through the rise of state societies. Topics include the environmental setting, pioneer migrations, hunting and gathering societies, plant and animal domestication, and the development of metallurgy, agriculture, technology, trade, and warfare in early civilizations. We consider how ancient political, intellectual, and artistic achievements shape the archaeological heritage in present-day Asia. ", + "edges_from": [], + "edges_to": [], + "id": 811, + "label": "ANAR 124", + "title": "Archaeology of Asia (4)" + }, + { + "dept": "140A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 812, + "label": "140A-B-C", + "title": "Fourth-Year Japanese" + }, + { + "dept": "CHEM", + "description": "Topics of special interest in analytical chemistry. May include, but is not limited to, chemical separation, sample introductions, mass analyzers, ionization schemes, and current state-of-the-art applications in environmental and biological chemistry.", + "edges_from": [], + "edges_to": [], + "id": 813, + "label": "CHEM 271", + "title": "Special Topics in Analytical Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 173. ", + "edges_from": [], + "edges_to": [], + "id": 814, + "label": "CHEM 273", + "title": "Atmospheric Chemistry (4)" + }, + { + "dept": "GPPA", + "description": "This course will focus on three dimensions of Chinese environmental and energy policy. First, we will introduce the causes and consequences of environmental and energy problems. Second, we will examine Chinese environmental and energy governance: institutions, laws, and regulations for environmental protection, energy production and consumption. Third, we will explore the practices of the Chinese government to address the emerging environmental and energy options, focusing on climate change. Renumbered from IRGN 467. Students may not receive credit for GPPA 467 and IRGN 467.", + "edges_from": [], + "edges_to": [], + "id": 815, + "label": "GPPA 467", + "title": "Chinese Environmental and Energy Policy (4)" + }, + { + "dept": "CHEM", + "description": "Introduces mathematical tools", + "edges_from": [], + "edges_to": [], + "id": 816, + "label": "CHEM 276", + "title": "Numerical Analysis in Multiscale Biology (4)" + }, + { + "dept": "TMC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 817, + "label": "TMC 1", + "title": "First Year Experience (2)" + }, + { + "dept": "WCWP", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching in Warren College Writing courses, under the supervision of the program director. (S/U grade only.) ", + "edges_from": [], + "edges_to": [], + "id": 818, + "label": "WCWP 500", + "title": "Apprentice Teaching in WCWP (2 or 4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 819, + "label": "Linguistics/Heritage Languages (LIHL) 134W", + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "ECON", + "description": "This course will cover certain country experiences and certain topics in more depth than in Econ 165. Students will also have the opportunity to choose countries and topics of particular interest to them for further reading and as subjects for a presentation and brief paper. ", + "edges_from": [ + 647 + ], + "edges_to": [], + "id": 820, + "label": "ECON 165T", + "title": "Advanced Topics in Middle East Economics (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 821, + "label": "Linguistics/Heritage Languages (LIHL) 134P", + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Vietnamese. LIHL 134F, LIHL 134W, and LIHL 134P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 822, + "label": "Linguistics/Heritage Languages (LIHL) 134F", + "title": "Advanced Vietnamese for Vietnamese Speakers (4)" + }, + { + "dept": "EDS", + "description": "Students use their placements in local schools and educational settings to examine leadership research and practice topics raised in the Leadership core courses and Research and Evaluation Design/Methods courses. This is the second course in a three-course series. ", + "edges_from": [ + 824 + ], + "edges_to": [], + "id": 823, + "label": "EDS 291B", + "title": "Leadership Research Practicum (2)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 823 + ], + "id": 824, + "label": "EDS 291A", + "title": "" + }, + { + "dept": "CHEM", + "description": "Theoretical basis of quantum", + "edges_from": [], + "edges_to": [], + "id": 825, + "label": "CHEM 230A", + "title": "Quantum Mechanics I (4)" + }, + { + "dept": "CHEM", + "description": "Mechanics II (4)", + "edges_from": [], + "edges_to": [], + "id": 826, + "label": "CHEM 230B", + "title": "Quantum" + }, + { + "dept": "WARR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 827, + "label": "WARR 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "WARR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 828, + "label": "WARR 1", + "title": "First Year Experience (2)" + }, + { + "dept": "LTEN", + "description": "Consideration of one or more major figures, texts, or trends in the Victorian period. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 829, + "label": "LTEN 246", + "title": "Victorian Literature (4)" + }, + { + "dept": "LTEN", + "description": "Consideration of some of the principal writers and movements in nineteenth-century American literature. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 830, + "label": "LTEN 245", + "title": "Nineteenth-Century American Studies (4)" + }, + { + "dept": "HIUS", + "description": "Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 831, + "label": "HIUS 286", + "title": "Topics in US Economic History (4)" + }, + { + "dept": "GPIM", + "description": "This research-oriented class introduces: (a) frameworks from organization theory and strategy on innovation, corporate renewal, and system change; (b) the specific situation of Japan, including Japan\u2019s national system of innovation, research consortia and industrial policy, business models, HR practices, VC, and entrepreneurship. Ongoing changes toward open innovation and new management of technology in Japan are the subject of student research projects. May not receive credit for GPIM 410 and IRGN 490. Japan Lab.", + "edges_from": [], + "edges_to": [], + "id": 832, + "label": "GPIM 410", + "title": "Innovation and Entrepreneurship in Japan (4)" + }, + { + "dept": "VIS", + "description": "This collection of courses gathers, under one cover, films that are strongly marked by period, geography, and the culture within which they received their dominating local quality. These courses pay particular attention to the stamp of place\u2014climate, dress, habitation, language, music, politics\u2014as well as the filmic moves that helped color such works as environmental. The series takes in the following subjects: Third World films, the Munich films (the new wave of Germans who made their first features in Munich following 1967), Japanese movies, films of the American thirties and their relationship to current thought, American Westerns, ethnographic film, Brazil\u2019s Cinema Novo, etc. Specific topics to be covered will vary with the instructor. May be repeated twice for credit. Materials fees required. ", + "edges_from": [ + 834 + ], + "edges_to": [], + "id": 833, + "label": "VIS 152", + "title": "Film in Social Context (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 833, + 835, + 2596, + 837, + 838, + 5729 + ], + "id": 834, + "label": "VIS 84", + "title": "" + }, + { + "dept": "VIS", + "description": "An inquiry into a specialized alternative history of film, consisting of experimental works made outside the conventions of the movie industry that are closer in their style and nature to experimental work in painting, poetry, the sciences, etc., than to the mainstream theatrical cinema. Materials fees required. ", + "edges_from": [ + 834 + ], + "edges_to": [], + "id": 835, + "label": "VIS 151", + "title": "History of the Experimental Film (4)" + }, + { + "dept": "GPIM", + "description": "This seminar examines the ability of firms to increase shareholder value through improved environmental performance. Topics include product differentiation, strategic use of regulations, the \u201cPorter hypothesis,\u201d and environmental management systems. Readings include case studies and research articles. Renumbered from IRGN 413. Students may not receive credit for GPIM 413 and IRGN 413.", + "edges_from": [], + "edges_to": [], + "id": 836, + "label": "GPIM 413", + "title": "Corporate Strategy and the Environment (4)" + }, + { + "dept": "VIS", + "description": "This course introduces students to the developing history of cinema in the Latin American region. It explores the multiple authors and film movements that engage cinema as an art form in relation to issues of modernization, development, and political and social crisis. It will regard the history of cinema in the subcontinent as a force generating important cultural transformations within the complex, conflictual processes of modernization. Students may not receive credit for both VIS 156 and VIS 125F. ", + "edges_from": [ + 834 + ], + "edges_to": [], + "id": 837, + "label": "VIS 156", + "title": "Latino American Cinema (4)" + }, + { + "dept": "VIS", + "description": "Examines the work of a single director or group of directors, considering the aesthetic, social, political, and/or historical aspects of the body of films and, if relevant, the directors\u2019 broader sphere of creative production, which may include photography, art practice, writing, and/or other contributions besides film directing. May be taken up to two times for credit. Materials fees required. ", + "edges_from": [ + 834 + ], + "edges_to": [], + "id": 838, + "label": "VIS 155", + "title": "The Director Series (4)" + }, + { + "dept": "VIS", + "description": "Close examination of a group of films on the level of form, technique, style, and/or poetics. Emphasis will be placed on collective film viewing, in-class discussion, and formal and/or narrative analysis. Specific topics to be covered will vary by quarter and instructor. May be taken up to two times for credit.", + "edges_from": [], + "edges_to": [], + "id": 839, + "label": "VIS 154", + "title": "Hard Look at the Movies (4)" + }, + { + "dept": "GPIM", + "description": "This course provides an introduction to derivative assets such as options, futures, and swap contracts. The main emphasis is on their valuation, use in hedging, and role as components of liabilities that mitigate risk and agency problems in business firms. Renumbered from IRGN 419. Students may not receive credit for GPIM 419 and IRGN 419.", + "edges_from": [], + "edges_to": [], + "id": 840, + "label": "GPIM 419", + "title": "Risk Management (4)" + }, + { + "dept": "VIS", + "description": "Aims to provide historical context for computer arts by examining the interaction between the arts, media technologies, and sciences in different historical periods. Topics vary (e.g., Renaissance perspective, futurism and technology, and computer art of the 1950s and 1960s). Materials fees required. ", + "edges_from": [], + "edges_to": [ + 5729, + 3079 + ], + "id": 841, + "label": "VIS 159", + "title": "History of Art and Technology (4)" + }, + { + "dept": "VIS", + "description": "Photography is so ubiquitous a part of our culture that it seems to defy any simple historical definition. Accordingly, this course presents a doubled account of the medium; it explores both the historical and cultural specificity of a singular photography as well as some of the multitude of photographies that inhabit our world. Will examine a number of the most important photographic themes from the past two hundred years. ", + "edges_from": [], + "edges_to": [], + "id": 842, + "label": "VIS 158", + "title": "Histories of Photography (4)" + }, + { + "dept": "COGS", + "description": "Specific topics in cognitive science are discussed. (May be repeated when topics vary.)", + "edges_from": [], + "edges_to": [], + "id": 843, + "label": "COGS 260", + "title": "Seminar on Special Topics (1\u20134)" + }, + { + "dept": "BENG", + "description": "A combined lecture and laboratory course that provides an introductory treatment of probability theory, including distribution functions, moments, and random variables. Practical applications include estimation of means and variances, hypothesis testing, sampling theory, and linear regression. ", + "edges_from": [ + 169, + 571, + 171, + 270 + ], + "edges_to": [ + 3075, + 4894 + ], + "id": 844, + "label": "BENG 134", + "title": "Measurements, Statistics, and Probability (4)" + }, + { + "dept": "BENG", + "description": "Discrete systems: linearity, convolution, impulse, and step responses. Linear systems properties. Difference equations. Fourier Series. Continuous FS. Discrete FS. Periodic signals, filtering, and FT. Discrete FT examples. Frequency response of linear systems. Sampling. Relationship between FT, DFT. Laplace Transform. LT and inverse LT. ", + "edges_from": [ + 846, + 847 + ], + "edges_to": [ + 3075 + ], + "id": 845, + "label": "BENG 135", + "title": "Biomedical Signals and Systems (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1094 + ], + "edges_to": [ + 3265, + 845, + 1686, + 1685 + ], + "id": 846, + "label": "ECE 45", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 571, + 573 + ], + "edges_to": [ + 3075, + 845 + ], + "id": 847, + "label": "BENG 133", + "title": "" + }, + { + "dept": "BENG", + "description": "An\u00a0introduction to physical principles that govern biological matter and processes, with engineering examples. Thermodynamic principles, structural basis of life, molecular reactions and kinetics, and models to illustrate biological phenomena. ", + "edges_from": [ + 571, + 419, + 133, + 849, + 26, + 27, + 28 + ], + "edges_to": [], + "id": 848, + "label": "BENG 130", + "title": "Biotechnology Thermodynamics and Kinetics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2817, + 133, + 2990, + 26, + 28, + 35, + 2987, + 5166, + 952, + 3777, + 1988, + 709, + 711, + 712, + 848, + 596, + 5974, + 1246, + 4575, + 1120, + 1121, + 1263, + 1264, + 4577, + 4729, + 2813, + 405 + ], + "id": 849, + "label": "MATH 20B", + "title": "" + }, + { + "dept": "HITO", + "description": "The course will explore the cultural, religious, and social relationships between the three major religious groups in the medieval Mediterranean: Muslims, Christians, and Jews from the sixth through sixteenth centuries AD.", + "edges_from": [], + "edges_to": [], + "id": 850, + "label": "HITO 101", + "title": "Jews, Christians, and Muslims (4)" + }, + { + "dept": "DSGN", + "description": "Students study, research, and implement project under the direction of a member of the faculty. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ", + "edges_from": [], + "edges_to": [], + "id": 851, + "label": "DSGN 299", + "title": "Independent Project (2 or 4)" + }, + { + "dept": "HITO", + "description": "This course explores Jewish women\u2019s experiences from the seventeenth century to the present, covering Europe, the United States, and Israel. Examines work, marriage, motherhood, spirituality, education, community, and politics across three centuries and three continents.\u00a0", + "edges_from": [ + 43, + 520, + 144, + 145, + 147, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 299, + 44, + 45, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871 + ], + "edges_to": [], + "id": 852, + "label": "HITO 106", + "title": "Love and Family in the Jewish Past (4)" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 853, + "label": "HILD 14", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852, + 4269 + ], + "id": 854, + "label": "HILD 7A", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 855, + "label": "HILD 12", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852, + 4269 + ], + "id": 856, + "label": "HILD 7C", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852, + 4269 + ], + "id": 857, + "label": "HILD 7B", + "title": "" + }, + { + "dept": "DOC", + "description": "", + "edges_from": [], + "edges_to": [ + 852, + 4269 + ], + "id": 858, + "label": "DOC 1", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 155, + 518, + 519, + 5737, + 154, + 859 + ], + "edges_to": [ + 859, + 852 + ], + "id": 859, + "label": "MMW 14", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [ + 518, + 519, + 2985, + 154, + 155, + 860 + ], + "edges_to": [ + 860, + 852 + ], + "id": 860, + "label": "MMW 15", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 861, + "label": "HILD 11", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 862, + "label": "HUM 5", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 863, + "label": "HILD 10", + "title": "" + }, + { + "dept": "HUM", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 864, + "label": "HUM 4", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 865, + "label": "HILD 2B", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 866, + "label": "HILD 2C", + "title": "" + }, + { + "dept": "HILD", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 867, + "label": "HILD 2A", + "title": "" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 868, + "label": "MCWP 41", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 869, + "label": "MMW 22", + "title": "" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 870, + "label": "MMW 21", + "title": "" + }, + { + "dept": "MCWP", + "description": "", + "edges_from": [], + "edges_to": [ + 852 + ], + "id": 871, + "label": "MCWP 125", + "title": "" + }, + { + "dept": "HITO", + "description": "Topics include the political emancipation of the Jews of Europe; the emergence of Reform, Conservative, and Modern Orthodox Judaism; Hasidism; modern anti-Semitism; Jewish socialism; Zionism; the Holocaust; the American Jewish community; the State of Israel.", + "edges_from": [], + "edges_to": [], + "id": 872, + "label": "HITO 105", + "title": "Jewish Modernity from 1648 to 1948 (4)" + }, + { + "dept": "HITO", + "description": "Jews and Judaism in the Ancient and Medieval Worlds (4)", + "edges_from": [], + "edges_to": [], + "id": 873, + "label": "HITO 104", + "title": "The" + }, + { + "dept": "GPPS", + "description": "Are authoritarian regimes fundamentally different from democratic ones? If so, how are they different and what are the political and economic implications of such differences? This course will explore the different logics of authoritarian politics, followed by an investigation of the growth and inequality implications of those politics. Renumbered from IRGN 481. Students may not receive credit for GPPS 481 and IRGN 481.", + "edges_from": [], + "edges_to": [], + "id": 874, + "label": "GPPS 481: The Political Economy of Authoritarian Regimes (4)", + "title": "" + }, + { + "dept": "BIMM", + "description": "This course explores the molecular and cellular pathways that become dysregulated during carcinogenesis. We will synthesize principles from genetics and molecular, cellular, and developmental biology to investigate how normal cells evolve into tumors. We will examine how tissues distinct from the tumor itself can participate in both facilitating and fighting tumor growth and explore historical and current approaches employed to inhibit tumorigenesis. ", + "edges_from": [ + 687 + ], + "edges_to": [], + "id": 875, + "label": "BIMM 134", + "title": "Biology of Cancer (4)" + }, + { + "dept": "BIMM", + "description": "Prokaryotic cell biology will be discussed primarily from physiological and biochemical standpoints with a focus on conceptual understanding, integration, and mechanism. Topics will vary from year to year but will include the following themes: bioenergetics, cell polarity, cell adhesion, the molecular basis of morphogenesis and differentiation, prokaryotic motility and behavior, rotary and linear molecular machines, bacterial organelles, pheromones and messengers, circadian rhythms, biological warfare, and bioremediation. ", + "edges_from": [ + 240, + 589 + ], + "edges_to": [], + "id": 876, + "label": "BIMM 130", + "title": "Microbial Physiology (4)" + }, + { + "dept": "LTCS", + "description": "Introduction to a script programming language (like Python + NLTK or R) and its usages in the processing of literary and historical digital corpora.", + "edges_from": [], + "edges_to": [], + "id": 877, + "label": "LTCS 180", + "title": "Programming for the Humanities (4)" + }, + { + "dept": "ETHN", + "description": "Through in-depth studies of housing segregation, urban renewal and displacement, neighborhood race effects, and the location of hazards and amenities, this course examines how space becomes racialized and how race becomes spatialized in the contemporary United States.", + "edges_from": [], + "edges_to": [], + "id": 878, + "label": "ETHN 104", + "title": "Race, Space, and Segregation (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 104.) This course will examine the city as a crucible of ethnic identity, exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present.", + "edges_from": [], + "edges_to": [], + "id": 879, + "label": "ETHN 105", + "title": "Ethnic Diversity and the City (4)" + }, + { + "dept": "ETHN", + "description": "Using interdisciplinary approaches, this course examines some of the contexts in which the conditions of life and death become sites of political, economic, and cultural significance, and how categories of difference impact access to the protections of \u2018humanity.\u2019", + "edges_from": [], + "edges_to": [], + "id": 880, + "label": "ETHN 106", + "title": "Life, Death, and the Human (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 130.) This is a research course examining social, economic, and political issues in ethnic and racial communities through a variety of research methods that may include interviews and archival, library, and historical research.", + "edges_from": [], + "edges_to": [], + "id": 881, + "label": "ETHN 107", + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + { + "dept": "ETHN", + "description": "An upper-division lecture course studying representations of ethnicity in the American cinema. Topics include ethnic images as narrative devices, the social implications of ethnic images, and the role of film in shaping and reflecting societal power relations.", + "edges_from": [], + "edges_to": [], + "id": 882, + "label": "ETHN 101", + "title": "Ethnic Images in Film (4)" + }, + { + "dept": "ETHN", + "description": "This course examines the role of science and technology in forming popular conceptions of race, gender and class, and vice versa. We also consider how some populations benefit from the results of experimentation while others come to be its subjects.", + "edges_from": [], + "edges_to": [], + "id": 883, + "label": "ETHN 102", + "title": "Science and Technology in Society: Race/Gender/Class (4)" + }, + { + "dept": "ETHN", + "description": "This course will examine the concept of environmental racism, the empirical evidence of its widespread existence, and the efforts by government, residents, workers, and activists to combat it. We will examine those forces that create environmental injustices in order to understand its causes as well as its consequences. Students are expected to learn and apply several concepts and social scientific theories to the course material.", + "edges_from": [], + "edges_to": [], + "id": 884, + "label": "ETHN 103", + "title": "Environmental Racism (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 151.) Aggrieved groups often generate distinctive forms of cultural expression by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States.", + "edges_from": [], + "edges_to": [], + "id": 885, + "label": "ETHN 108", + "title": "Race, Culture, and Social Change (4)" + }, + { + "dept": "ETHN", + "description": "This course explores collective mobilizations for resources, recognition, and power by members of aggrieved racialized groups, past and present. Emphasis will be placed on the conditions that generate collective movements, the strategies and ideologies that these movements have developed, and on the prospect for collective mobilization for change within aggrieved communities in the present and future.", + "edges_from": [], + "edges_to": [], + "id": 886, + "label": "ETHN 109", + "title": "Race and Social Movements (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1B. ", + "edges_from": [ + 888, + 889 + ], + "edges_to": [], + "id": 887, + "label": "Linguistics/Spanish (LISP) 1BX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 2694, + 887 + ], + "id": 888, + "label": "LISP 1A", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 2694, + 887 + ], + "id": 889, + "label": "LISP 1AX", + "title": "" + }, + { + "dept": "BIOM", + "description": "This course will examine the basic principles of genetics and genomics. We will focus on classic discoveries and examples of approaches to current experimental problems. Emphasis areas will vary but general topics include Mendelian inheritance, imprinting, cytogenetics, genome structure, genetic variation, linkage and recombination, complex traits, statistical genetics, population genetics, genomic tools and methodology, medical genetics, model organisms. ", + "edges_from": [ + 891, + 892, + 893 + ], + "edges_to": [ + 3972, + 1031 + ], + "id": 890, + "label": "BIOM 252", + "title": "Genetics and Genomics (3)" + }, + { + "dept": "BIOM", + "description": "", + "edges_from": [], + "edges_to": [ + 896, + 897, + 890, + 3506, + 894 + ], + "id": 891, + "label": "BIOM 200B", + "title": "" + }, + { + "dept": "BIOM", + "description": "", + "edges_from": [], + "edges_to": [ + 896, + 897, + 890, + 3506, + 894 + ], + "id": 892, + "label": "BIOM 201", + "title": "" + }, + { + "dept": "BIOM", + "description": "", + "edges_from": [], + "edges_to": [ + 896, + 897, + 890, + 3506, + 894 + ], + "id": 893, + "label": "BIOM 200A", + "title": "" + }, + { + "dept": "BIOM", + "description": "This course will examine the innate and adaptive immune responses of humans to microbial infection. In parallel, we will explore the virulence mechanisms through which certain medically important viruses, bacteria, fungi, and parasites subvert host defense to produce infectious disease. Emphasis will be placed on basic molecular genetic and cellular approaches to understanding microbial pathogenesis and host susceptibility, including progress toward novel antibiotic and immune stimulatory therapies. ", + "edges_from": [ + 891, + 892, + 893 + ], + "edges_to": [], + "id": 894, + "label": "BIOM 253", + "title": "Pathogens and Host Defense (3)" + }, + { + "dept": "BIOM", + "description": "This course outlines a current understanding of genetic mechanisms that underlie carcinogenesis and their impact on cell proliferation, differentiation, angiogenesis, metastasis, and survival. The topics of tumor histopathology, the tumor stem cell phenotype, and cancer drug design are also addressed. ", + "edges_from": [], + "edges_to": [], + "id": 895, + "label": "BIOM 256", + "title": "Molecular Pathology of Cancer (3)" + }, + { + "dept": "BIOM", + "description": "This course will examine the basic principles of molecular and cellular biology and their impact on medicine focusing on classic discoveries and examples of approaches to current experimental problems. Emphasis areas will vary but will include genes and genomics, chromosome biology and nuclear structure, transcriptional regulation, RNA processing, cell cycle control, cell growth and death, cell differentiation and stem cell biology, molecular motors and motility, membrane trafficking and signaling. ", + "edges_from": [ + 891, + 892, + 893 + ], + "edges_to": [], + "id": 896, + "label": "BIOM 254", + "title": "Molecular and Cell Biology (3)" + }, + { + "dept": "BIOM", + "description": "Molecular basis of drug action; basis of disease; drug invention. Topics may include: basic principles, autonomic nervous system; CV, pulmonary, diabetes, cancer therapy, pharmacotherapy of CNS disease (depression, etc.) pain, infections (bacterial, viral, malarial). Students that have taken both 255A and 255B cannot take 255 for credit. ", + "edges_from": [ + 891, + 892, + 893 + ], + "edges_to": [], + "id": 897, + "label": "BIOM 255", + "title": "Molecular Basis of Drug Action and Disease Therapy (3)" + }, + { + "dept": "ENG", + "description": "Examines the engineering/entrepreneurism interface. Discovery, development, and implementation of new product ideas. Understanding markets, competitors, and selling innovations. Cultivating effective working relationships between research, engineering, manufacturing, and marketing elements of an organization. Priority enrollment given to engineering majors.", + "edges_from": [], + "edges_to": [], + "id": 898, + "label": "ENG 201", + "title": "Venture Mechanics (4)" + }, + { + "dept": "ENG", + "description": "Course includes the examination of business plans developed by early stage technology businesses. Students expected to work on the development of business plans for real, innovative business organizations. Will explore all of the business research and analysis that needs to be undertaken in order to develop a complete business plan. Completion of ENG 201 or ENG 202 preferred.", + "edges_from": [], + "edges_to": [], + "id": 899, + "label": "ENG 203", + "title": "Applied Innovations (4)" + }, + { + "dept": "ENG", + "description": "Case studies of start-ups, strategic technology management, practice in use of industrial decision-making tools, and speakers from successful firms combined with experience in making management decisions dynamically in a competitive computer-simulated enterprise. Field study of ongoing processes in a local high technology company. Priority enrollment given to engineering majors.", + "edges_from": [], + "edges_to": [], + "id": 900, + "label": "ENG 202", + "title": "Enterprise Dynamics (4)" + }, + { + "dept": "ENG", + "description": "Corporate Entrepreneurship for Global Competitiveness (4)", + "edges_from": [], + "edges_to": [], + "id": 901, + "label": "ENG 207", + "title": "" + }, + { + "dept": "ENG", + "description": "Learn basics of start-up through a series of lectures, workshops, and assignments. Students will learn to effectively communicate the values of their ideas to investors and partners. Learn to validate market potential of a technology. ", + "edges_from": [], + "edges_to": [], + "id": 902, + "label": "ENG 208", + "title": "Basics of Entrepreneurism and Technology Commercialization (4)" + }, + { + "dept": "ECON", + "description": "Course will study economic models in which standard economic rationality assumptions are combined with psychologically plausible assumptions on behavior. We consider whether the new models improve ability to predict and understand phenomena including altruism, trust and reciprocity, procrastination, and self-control. ", + "edges_from": [ + 398 + ], + "edges_to": [], + "id": 903, + "label": "ECON 142", + "title": "Behavioral Economics (4)" + }, + { + "dept": "ECON", + "description": "Provides an overview of the physician, hospital, and pharmaceutical segments of the health sector. Uses models of physician behavior, for-profit and nonprofit institutions to understand the trade-offs facing health-sector regulators and the administrators of public and private insurance arrangements. ", + "edges_from": [ + 402, + 406 + ], + "edges_to": [], + "id": 904, + "label": "ECON 140", + "title": "Economics of Health Producers (4)" + }, + { + "dept": "ECON", + "description": "Demand for health care and health insurance, employer-provision of health insurance and impact on wages and job changes. Cross-country comparisons of health systems. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 905, + "label": "ECON 141", + "title": "Economics of Health Consumers (4)" + }, + { + "dept": "ECON", + "description": "Theory of business cycles and techniques used by governments to stabilize an economy. Discussion of recent economic experience. ", + "edges_from": [ + 413 + ], + "edges_to": [], + "id": 906, + "label": "ECON 146", + "title": "Economic Stabilization (4)" + }, + { + "dept": "ECON", + "description": "Examination of issues in education using theoretical and empirical approaches from economics. Analysis of decisions to invest in education. Consideration of various market structures in education, including school choice and school finance programs. ", + "edges_from": [ + 168, + 170, + 406, + 655 + ], + "edges_to": [], + "id": 907, + "label": "ECON 147", + "title": "Economics of Education (4)" + }, + { + "dept": "ECON", + "description": "Examines conservation of biodiversity from an economic perspective. Topics include valuing biodiversity, defining successful conservation, and evaluating the cost effectiveness of policies such as conservation payments, ecotourism, and privatization. Emphasis on forests, coral reefs, elephants, tigers, and sea turtles. ", + "edges_from": [ + 406, + 655 + ], + "edges_to": [], + "id": 908, + "label": "ECON 144", + "title": "Economics of Conservation (4)" + }, + { + "dept": "ECON", + "description": "Economic issues associated with oceans. Economics of managing renewable resources in the oceans, with an emphasis on fisheries, economics of conservation and biodiversity preservation for living marine resources, with an emphasis on whales, dolphins, sea turtles, and coral reefs. ", + "edges_from": [ + 406, + 655 + ], + "edges_to": [], + "id": 909, + "label": "ECON 145", + "title": "Economics of Ocean Resources (4)" + }, + { + "dept": "PHYS", + "description": "Directed research on MS dissertation topic.", + "edges_from": [], + "edges_to": [], + "id": 910, + "label": "PHYS 295", + "title": "MS Thesis Research in Materials Physics (1\u201312)" + }, + { + "dept": "HIEU", + "description": "Topics will vary from year to year. Graduate", + "edges_from": [], + "edges_to": [], + "id": 911, + "label": "HIEU 178/278", + "title": "Soviet History (4)" + }, + { + "dept": "SE", + "description": "Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ", + "edges_from": [ + 913 + ], + "edges_to": [], + "id": 912, + "label": "SE 182", + "title": "Foundation Engineering (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 914, + 915 + ], + "edges_to": [ + 912, + 1530, + 3431 + ], + "id": 913, + "label": "SE 181", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 553, + 571, + 557 + ], + "edges_to": [ + 1954, + 2211, + 2212, + 3429, + 913, + 2003, + 4474 + ], + "id": 914, + "label": "SE 110A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 553, + 571, + 557 + ], + "edges_to": [ + 1952, + 1954, + 2211, + 2212, + 913, + 4474 + ], + "id": 915, + "label": "MAE 131A", + "title": "" + }, + { + "dept": "MATH", + "description": "Combinatorics and Algorithms III (4)", + "edges_from": [], + "edges_to": [], + "id": 916, + "label": "MATH 261C", + "title": "Probabilistic" + }, + { + "dept": "ECON", + "description": "Advanced calculus review for new graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 917, + "label": "ECON 205", + "title": "Mathematics for Economists (4)" + }, + { + "dept": "ECON", + "description": "This course reviews the theoretical foundations for the analysis of contractual interaction and it covers a selection of game-theoretic models and applications. The course is intended to provide a foundation for theoretical research on contracts as well as applied research on topics in behavioral/experimental, development, environmental, international, and labor economics, law and economics, and macroeconomics. ", + "edges_from": [ + 178, + 179, + 180 + ], + "edges_to": [], + "id": 918, + "label": "ECON 204", + "title": "Contract Theory (4)" + }, + { + "dept": "ECON", + "description": "Further topics in consumer and producer theory, intertemporal optimization, and decision making under uncertainty. (Previously numbered Econ 200D.) ", + "edges_from": [ + 178, + 179, + 180 + ], + "edges_to": [], + "id": 919, + "label": "ECON 206", + "title": "Decisions (4)" + }, + { + "dept": "ECON", + "description": "An intensive examination of selected topics in economic theory. Course topic nonrepetitive in a three-year cycle. ", + "edges_from": [ + 921, + 922 + ], + "edges_to": [], + "id": 920, + "label": "ECON 201", + "title": "Advanced Economic Theory (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1192, + 1193, + 1194 + ], + "edges_to": [ + 920 + ], + "id": 921, + "label": "ECON 213", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 920, + 2653 + ], + "id": 922, + "label": "ECON 207", + "title": "" + }, + { + "dept": "POLI", + "description": "An analysis of the dynamics of the Chinese Revolution from the fall of the Qing Dynasty (1644\u20131911) to the present. Emphasis is placed on the relationship between political thought and the dynamics of the revolutionary process.", + "edges_from": [], + "edges_to": [], + "id": 923, + "label": "POLI 131C", + "title": "The Chinese Revolution (4)" + }, + { + "dept": "ECON", + "description": "Further topics in game theory and the economics of information. (Previously numbered Econ 200F.) ", + "edges_from": [ + 178, + 179, + 180 + ], + "edges_to": [], + "id": 924, + "label": "ECON 208", + "title": "Games and Information (4)" + }, + { + "dept": "PHYS", + "description": "Directed research on dissertation topic.", + "edges_from": [], + "edges_to": [], + "id": 925, + "label": "PHYS 299", + "title": "Thesis Research in Physics (1\u201312)" + }, + { + "dept": "SOCI", + "description": "Some people do much better than others in the world of work. Causes and consequences of this inequality will be examined: How do characteristics of individuals (e.g., class, gender, race, education, talent) and characteristics of jobs affect market outcomes? ", + "edges_from": [ + 926, + 927 + ], + "edges_to": [ + 926 + ], + "id": 926, + "label": "SOCI 148E", + "title": "Inequality and Jobs (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 926 + ], + "id": 927, + "label": "SOCC 148L", + "title": "" + }, + { + "dept": "PHYS", + "description": "Computing in Science and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 928, + "label": "PHYS 244", + "title": "Parallel" + }, + { + "dept": "PHYS", + "description": "Models (4)", + "edges_from": [], + "edges_to": [], + "id": 929, + "label": "PHYS 242", + "title": "Computational Physics II: PDE and Matrix" + }, + { + "dept": "PHYS", + "description": "Introduction to methods of stochastic modeling and simulation. Topics include: random variables; stochastic processes; Markov processes; one-step processes; the Fokker-Planck equation and Brownian motion; the Langevin approach; Monte-Carlo methods; fluctuations and the Boltzmann equation; and stochastic differential equations.", + "edges_from": [], + "edges_to": [], + "id": 930, + "label": "PHYS 243", + "title": "Stochastic Methods (4)" + }, + { + "dept": "PHYS", + "description": "Project-based computational physics laboratory course with student\u2019s choice of Fortran90/95 or C/C++. Applications from materials science to the structure of the early universe are chosen from molecular dynamics, classical and quantum Monte Carlo methods, physical Langevin/Fokker-Planck processes, and other modern topics.", + "edges_from": [], + "edges_to": [], + "id": 931, + "label": "PHYS 241", + "title": "Computational Physics I: Probabilistic Models and Simulations (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 175.) Mathematical background", + "edges_from": [], + "edges_to": [], + "id": 932, + "label": "MATH 275", + "title": "Numerical Methods for Partial Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 174.) Floating point", + "edges_from": [], + "edges_to": [ + 2269 + ], + "id": 933, + "label": "MATH 274", + "title": "Numerical Methods for Physical Modeling (4)" + }, + { + "dept": "MATH", + "description": "(Cross-listed with BENG 276/CHEM 276.) Introduces", + "edges_from": [], + "edges_to": [], + "id": 934, + "label": "MATH 276", + "title": "Numerical Analysis in Multiscale Biology (4)" + }, + { + "dept": "MUS", + "description": "Performance of new music of the twentieth century. Normally offered winter quarter only. Required a minimum of one time for all music majors. May be taken two times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 935, + "label": "MUS 133", + "title": "Projects in New Music Performance (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 179.) Mathematical models of physical", + "edges_from": [], + "edges_to": [], + "id": 936, + "label": "MATH 279", + "title": "Projects in Computational and Applied Mathematics (4)" + }, + { + "dept": "MUS", + "description": "Instruction in the preparation of small group performances of representative instrumental and vocal chamber music literature. May be taken for credit six times, after which students must enroll for zero units. ", + "edges_from": [], + "edges_to": [], + "id": 937, + "label": "MUS 130", + "title": "Chamber Music Performance (2\u20134/0)" + }, + { + "dept": "MUS", + "description": "Master class instruction in advanced improvisation performance for declared majors and minors only or consent of instructor. Audition required at first class meeting. May be repeated six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 938, + "label": "MUS 131", + "title": "Advanced Improvisation Performance (4/0)" + }, + { + "dept": "GPCO", + "description": "This capstone is intended as a culminating intellectual experience for students, particularly those in economics-oriented tracks. Students will learn to analyze \u201cwhat works,\u201d integrating a technical understanding of innovation with rigorous statistical analysis. The first half of the course focuses on building a set of science/engineering tools, and the second half on building statistical tools of analysis. Renumbered from IRCO 468. Students may not receive credit for GPCO 468 and IRCO 468. ", + "edges_from": [ + 940 + ], + "edges_to": [], + "id": 939, + "label": "GPCO 468: Evaluating Technological Innovation (4)", + "title": "" + }, + { + "dept": "GPEC", + "description": "", + "edges_from": [ + 1117, + 4101 + ], + "edges_to": [ + 939, + 4789 + ], + "id": 940, + "label": "GPEC 446", + "title": "" + }, + { + "dept": "HIEU", + "description": "This course treats the history of Rome from the foundation of the city in the eighth century BC until the end of the Flavian dynasty in 96 AD. It focuses particularly on the political, social, and cultural elements that fueled Roman development and expansion.", + "edges_from": [], + "edges_to": [], + "id": 941, + "label": "HIEU 102", + "title": "Roman History (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview and training in the use of psychophysiological methods to investigate the cognitive and emotional process involved in understanding and reacting to other people. Students will develop individual research questions and actively participate in designing and conducting the experiments. ", + "edges_from": [], + "edges_to": [], + "id": 942, + "label": "PSYC 114", + "title": "Psychophysiological Perspectives on the Social Mind Laboratory (4)" + }, + { + "dept": "SE", + "description": "The course deals with cable structures from a structural mechanics point of view. The theoretical and practical aspects of the application of cables to moorings, guyed structures, suspension bridges, cable-stayed bridges, and suspended membranes are discussed. ", + "edges_from": [], + "edges_to": [], + "id": 943, + "label": "SE 215", + "title": "Cable Structures (4)" + }, + { + "dept": "SE", + "description": "Analysis and design of unreinforcced and reinforced masonry structure using advanced analytical techniques and design philosophies. Material properties, stability, and buckling of unreinforced masonry. Flexural strength, shear strength, stiffness, and ductility of reinforced masonry elements. Design for seismic loads. ", + "edges_from": [ + 945 + ], + "edges_to": [], + "id": 944, + "label": "SE 214", + "title": "Masonry Structures (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 944, + 1530 + ], + "id": 945, + "label": "SE 151A", + "title": "" + }, + { + "dept": "SE", + "description": "Design and analysis of bridge structures, construction methods, load conditions. Load paths and distribution of dead and live loads. Service, strength, and extreme event limit states and other load and resistance factor design (LRFD) principles. Design of pre-stressed concrete bridges. Special problems in analysis\u2014concrete box girders, curved and skewed bridges, environmental and seismic loads. Conceptual/preliminary bridge design project. Recommended preparation: SE 223 (Advanced Seismic Design of Structures). ", + "edges_from": [ + 947, + 948 + ], + "edges_to": [], + "id": 946, + "label": "SE 213", + "title": "Bridge Design (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 2952, + 946 + ], + "id": 947, + "label": "SE 201A", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 946 + ], + "id": 948, + "label": "SE 211", + "title": "" + }, + { + "dept": "SE", + "description": "Load and Resistance Factor Design (LRFD) philosophy. Behavior and design of steel elements for global and local buckling. Background of seismic codes. Ductility requirements and capability design concept. Seismic design of steel moment frames and braced frames. ", + "edges_from": [ + 950, + 951 + ], + "edges_to": [], + "id": 949, + "label": "SE 212", + "title": "Advanced Structural Steel Design (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 3430 + ], + "edges_to": [ + 1528, + 949 + ], + "id": 950, + "label": "SE 150", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 949 + ], + "id": 951, + "label": "SE 201", + "title": "" + }, + { + "dept": "MAE", + "description": "Atomic structure and physical properties of engineering materials including metals, ceramics, glasses, polymers, and composite materials. Defects and phase diagram of materials. Material testing and processing. Program or materials fees may apply. ", + "edges_from": [ + 35, + 849, + 953, + 26, + 667, + 954 + ], + "edges_to": [], + "id": 952, + "label": "MAE 21", + "title": "Aerospace Materials Science (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 952, + 955, + 133, + 2555 + ], + "id": 953, + "label": "CHEM 6AH", + "title": "" + }, + { + "dept": "MC", + "description": "", + "edges_from": [], + "edges_to": [ + 952 + ], + "id": 954, + "label": "MC 25", + "title": "" + }, + { + "dept": "MAE", + "description": "The structure of materials: metals, ceramics, glasses, semiconductors, superconductors, and polymers to produce desired, useful properties. Atomic structures. Defects in materials, phase diagrams, microstructural control. Mechanical and electrical properties are discussed. Time temperature transformation diagrams. Diffusion. ", + "edges_from": [ + 953, + 26, + 35, + 132, + 667 + ], + "edges_to": [ + 1952 + ], + "id": 955, + "label": "MAE 20", + "title": "Elements of Materials Science (4)" + }, + { + "dept": "POLI", + "description": "Our understanding of politics, power, conflict, and quality continue to be challenged and transformed by considering gender as it intersects with nationality, race, class, and ethnicity. We will consider the importance of gender in each of the subfields of political science.", + "edges_from": [], + "edges_to": [], + "id": 956, + "label": "POLI 115A", + "title": "Gender and Politics (4)" + }, + { + "dept": "LTWL", + "description": "A lecture/discussion course designed to explore a variety of topics in medieval literatures and cultures. Topics may include a genre or combination of genres (e.g., drama, romance, lyric, allegory), or a central theme (e.g., the Crusades or courtly love).", + "edges_from": [], + "edges_to": [], + "id": 957, + "label": "LTWL 111", + "title": "Medieval Studies (4)" + }, + { + "dept": "LTWL", + "description": "A study of fiction written for the young adult in various cultures and periods. Consideration will be given to the young adult hero in fiction. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 958, + "label": "LTWL 116", + "title": "Adolescent Literature (4)" + }, + { + "dept": "LTWL", + "description": "A study of literature written for children in various cultures and periods. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 959, + "label": "LTWL 114", + "title": "Children\u2019s Literature (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with AESE 278A, CSE 278A, and ECE 205.) Comprehensive introduction to system and event complexity, software and systems engineering practices for complexity management, agile and plan-driven development, development and management processes and process models, data-, information- and knowledge-management, basics of distributed data and computation. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [], + "edges_to": [ + 4370, + 4379, + 4372 + ], + "id": 960, + "label": "MAE 277A", + "title": "Complexity and Large-Scale Systems (4)" + }, + { + "dept": "USP", + "description": "Roles of the urban designer, preparing schematic proposals and performance statements, identifying opportunities for and constraints on designers. Each student will prepare a practical exercise in urban design using various urban design methods. ", + "edges_from": [], + "edges_to": [], + "id": 961, + "label": "USP 179", + "title": "Urban Design, Theory, and Practice (4)" + }, + { + "dept": "ESYS", + "description": "This course explores the impacts of human, social, economic, and industrial activity on the environment. It highlights the central roles in ensuring sustainable development played by market forces, technological innovation, and government regulation on local, national, and global scales. ", + "edges_from": [], + "edges_to": [], + "id": 962, + "label": "ESYS 103/MAE 124", + "title": "Environmental Challenges: Science and Solutions (4)" + }, + { + "dept": "USP", + "description": "This course is designed to introduce the student to the theory and practice of urban design, the form of the built environment, and how it is created. There is an emphasis on the development within a larger urban context. ", + "edges_from": [], + "edges_to": [], + "id": 963, + "label": "USP 177", + "title": "Urban Design Practicum (4)" + }, + { + "dept": "USP", + "description": "This course explores governance and planning challenges in the California/Baja California binational region. What are the roles of federal, state, and local governments in addressing issues of transportation, land use, water/wastewater management, and safety and security? ", + "edges_from": [], + "edges_to": [], + "id": 964, + "label": "USP 176", + "title": "Binational Regional Governance (4)" + }, + { + "dept": "USP", + "description": "Introduction to the theory and practice of context-sensitive site analysis, including site selection and programming, site inventory and analysis, and conceptual design. Demonstrates uses of GIS-based sketch planning tools for suitability analysis and project visualization in real world settings. ", + "edges_from": [], + "edges_to": [], + "id": 965, + "label": "USP 175", + "title": "Site Analysis: Opportunities and Constraints (4)" + }, + { + "dept": "USP", + "description": "and Planning Reconsidered (4)", + "edges_from": [], + "edges_to": [], + "id": 966, + "label": "USP 174", + "title": "Regional Governance" + }, + { + "dept": "USP", + "description": "The analysis of the evolution of city designs over time; study of the forces that influence the form and content of a city: why cities change; comparison of urban planning and architecture in Europe and the United States. ", + "edges_from": [], + "edges_to": [], + "id": 967, + "label": "USP 173", + "title": "History of Urban Planning and Design (4)" + }, + { + "dept": "USP", + "description": "This course examines the use of graphic techniques and tools to explain research, data analysis, and convey ideas with a focus on the built environment. Visual communication for planners/designers using traditional graphic media, electronic media, and visualization are explored. ", + "edges_from": [], + "edges_to": [], + "id": 968, + "label": "USP 172", + "title": "Graphics, Visual Communication, and Urban Information" + }, + { + "dept": "USP", + "description": "Sustainable development is a concept invoked by an increasingly wide range of scholars, activists, and organizations dedicated to promoting environmentally sound approaches to economic development. This course critically examines the diverse, often contradictory, interests in sustainability. It provides a transdisciplinary overview of emergent theories and practices. ", + "edges_from": [], + "edges_to": [], + "id": 969, + "label": "USP 171", + "title": "Sustainable Development (4)" + }, + { + "dept": "USP", + "description": "This course will explore the different factors and processes that shape a sustainable city. Contemporary green planning techniques and values will be evaluated. The course will also discuss planning, designing, and implementation of sustainable facilities that will reduce sprawl. ", + "edges_from": [], + "edges_to": [], + "id": 970, + "label": "USP 170", + "title": "Sustainable Planning (4)" + }, + { + "dept": "ANTH", + "description": "Human society evolved in the context of face-to-face interaction. The course will examine methods and theoretical approaches to different modalities of interaction\u2014especially speech, gesture, and gaze\u2014their mutual integration, and their relevance to ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 971, + "label": "ANTH 247", + "title": "Multimodal Interaction (4)" + }, + { + "dept": "BICD", + "description": "Plant immunity protects against pathogens and enables symbioses. This course explores the agents of plant disease, the genetics of inherited immunity, mechanisms of pathogenesis and defense, the coordination of plant immunity by plant hormones, and the regulation of symbioses. ", + "edges_from": [ + 242 + ], + "edges_to": [], + "id": 972, + "label": "BICD 124", + "title": "Plant Innate Immunity (4)" + }, + { + "dept": "ANTH", + "description": "This seminar compares the distinct urban and expansive state phenomena of the highland Wari and Tiwanaku cultures (AD 500\u20131000) with emphasis on their formative origins and the ideological, agrarian, and technological foundations of Middle Horizon political development. ", + "edges_from": [], + "edges_to": [], + "id": 973, + "label": "ANTH 245", + "title": "The Middle Horizon (4)" + }, + { + "dept": "ANTH", + "description": "This seminar examines the prehistory of the Andean region from the peopling of the New World through the formation of Archaic, Preceramic, and Initial periods; the Chavin Horizon; and the Nasca and Moche States of the Early Intermediate Period. ", + "edges_from": [], + "edges_to": [], + "id": 974, + "label": "ANTH 244", + "title": "Andean Prehistory: Origins of Chiefdoms and States (4)" + }, + { + "dept": "ANTH", + "description": "Why is mental health a global concern? This anthropological course reviews globalization, culture, and mental health. We examine issues of social suffering, stigma, and economic burden associated with mental illness, gender inequality, political violence, \u201cglobal security,\u201d pharmaceutical and illegal drugs. ", + "edges_from": [], + "edges_to": [], + "id": 975, + "label": "ANTH 243", + "title": "Mental Health as Global Health Priority (4)" + }, + { + "dept": "BICD", + "description": "Introduction to the biology of plants with a particular focus on the underlying genetic and molecular mechanisms controlling plant development. Topics include the role of plant hormones and stem cells in the formation of embryos, roots, flowers, and fruit. ", + "edges_from": [ + 687 + ], + "edges_to": [], + "id": 976, + "label": "BICD 120", + "title": "Molecular Basis of Plant Development (4)" + }, + { + "dept": "BICD", + "description": "Techniques in plant cell and tissue culture, plant transformation, genetic selection and screening of mutants, host pathogen interactions, gene regulation, organelle isolation, membrane transport. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Recommended preparation: BICD 120. Material lab fees will apply. ", + "edges_from": [], + "edges_to": [], + "id": 977, + "label": "BICD 123", + "title": "Plant Molecular Genetics and Biotechnology Laboratory (4)" + }, + { + "dept": "ANTH", + "description": "This seminar will focus on classic and contemporary studies of Southeast Asia, concentrating on Thailand, Indonesia, and the Philippines. Particular attention will be paid to the impact of the state and global forces on Southeast Asian cultural and social dynamics. Formerly known as ANGR 240. Students may not receive credit for both ANGR 240 and ANTH 240.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 978, + "label": "ANTH 240", + "title": "Culture and Politics in Southeast Asia (4)" + }, + { + "dept": "ANTH", + "description": "This course examines gender and mental health by considering social, cultural, and biological explanations for problems such as depression, trauma, anxiety, drugs/alcohol use. Cross-cultural similarities and differences of gender are considered with respect to etiology, epidemiology, symptomatology, treatment, and recovery. ", + "edges_from": [], + "edges_to": [], + "id": 979, + "label": "ANTH 249", + "title": "Gender and Mental Health (4)" + }, + { + "dept": "ANTH", + "description": "This seminar investigates global health from the perspective of medical anthropology on disease and illness; cultural conceptions of health; doctor-patient interaction; illness experience; medical science and technology; mental health; infectious disease; and health-care inequalities by ethnicity, gender, and socioeconomic status. ", + "edges_from": [], + "edges_to": [], + "id": 980, + "label": "ANTH 248", + "title": "Global Health and Cultural Diversity (4)" + }, + { + "dept": "LTEN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 981, + "label": "LTEN 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "LTGK", + "description": "Directed group study in areas of Greek literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 982, + "label": "LTGK 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "HIUS", + "description": "This course will focus on the transformation of work and leisure and development of consumer culture. Students will consider connections between culture, class relations, gender ideology, and politics. Topics will include labor radicalism, Taylorism, the development of organized sports, the rise of department stores, and the transformation of middle-class sexual culture of the Cold War.", + "edges_from": [], + "edges_to": [], + "id": 983, + "label": "HIUS 131D", + "title": "Cultural History from the Civil War to the Present (4)" + }, + { + "dept": "COMM", + "description": "This course increases our awareness of the ways we interpret or make understanding from movies to enrich and increase the means by which one can enjoy and comprehend movies. We will talk about movies and explore a range of methods and approaches to film interpretation. Readings will emphasize major and diverse theorists, including Bazin, Eisenstein, Cavell, and Mulvey. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 984, + "label": "COMM 103F", + "title": "CM: How to Read a Film (4)" + }, + { + "dept": "COMM", + "description": "This course considers the social, cultural, economic, and technological contexts that have shaped electronic media, from the emergence of radio and television to their convergence through the Internet, and how these pervasive forms of audiovisual culture have impacted American society. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 985, + "label": "COMM 103E", + "title": "CM: History of Electronic Media (4)" + }, + { + "dept": "COMM", + "description": "History of nonfiction film and video. Through film and written texts we survey the nonfiction film genre, considering technological innovations, ethical issues, and formal movements related to these representations of the \u201creal.\u201d Students write a research paper in lieu of a final. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 986, + "label": "COMM 103D", + "title": "CM: Documentary History and Theory (4)" + }, + { + "dept": "BIBC", + "description": "Course will provide an overview of energy production and utilization and the consequences of this on the economy and environment. The course will introduce renewable energy technologies including biofuels, and explores the social, economic, and political aspects of energy use. ", + "edges_from": [ + 687 + ], + "edges_to": [], + "id": 987, + "label": "BIBC 140", + "title": "Our Energy Future\u2014Sustainable Energy Solutions (4)" + }, + { + "dept": "CHEM", + "description": "This seminar will present topics in chemistry at a level appropriate for first-year students.", + "edges_from": [], + "edges_to": [], + "id": 988, + "label": "CHEM 87", + "title": "Freshman Seminar in Chemistry and Biochemistry (1)" + }, + { + "dept": "MAE", + "description": "Teaching experience in an appropriate MAE undergraduate course under direction of the faculty member in charge of the course. Lecturing one hour per week in either a problem-solving section or regular lecture. (S/U grade only.) ", + "edges_from": [], + "edges_to": [], + "id": 989, + "label": "MAE 501", + "title": "Teaching Experience (2)" + }, + { + "dept": "HIUS", + "description": "This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.", + "edges_from": [], + "edges_to": [], + "id": 990, + "label": "HIUS 113/ETHN 154", + "title": "History of Mexican America (4)" + }, + { + "dept": "TDGR", + "description": "A unifying approach to acting skills (voice, movement, and speech) designed to result in providing the graduating actor with a daily regimen appropriate for professional work. ", + "edges_from": [], + "edges_to": [], + "id": 991, + "label": "TDGR 239", + "title": "Skills (4)" + }, + { + "dept": "RELI", + "description": "The course is an introductory study of cinema and religion. It explores how cinema depicts religion and spiritual experience. A number of films will be studied to understand how cinematic and religious narratives and practices overlap and, at times, diverge in complex ways. ", + "edges_from": [], + "edges_to": [], + "id": 992, + "label": "RELI 150", + "title": "Religion and Cinema (4)" + }, + { + "dept": "RELI", + "description": "This course explores intersections between religious discourse and ecological discourse by considering texts from both that treat the human world as irreducibly interconnected with more-than-human worlds of nature and \"spirit.\" Themes include the ambivalence of wildness; the critique of anthropocentrism (human-centeredness); and the question of how religious emphasis on \"knowing (one\u2019s) place\" can create a sense of either human exceptionality, above nature, or embeddedness, within nature. ", + "edges_from": [], + "edges_to": [], + "id": 993, + "label": "RELI 151", + "title": "Deep Ecology: Knowing Place (4)" + }, + { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among Hispanic-Americans. The course examines changing religious traditions and ritual practices among Hispanic-Americans with a focus on Catholicism and (evangelical) Protestantism. ", + "edges_from": [], + "edges_to": [], + "id": 994, + "label": "RELI 153", + "title": "Hispanic-American Religions (4)" + }, + { + "dept": "TDGR", + "description": "An advanced studio for graduate actors and directors, this work will explore a single text from the modern theatre under the direction of a master teacher-artist. Concentration will be on multiple possible modes of encountering a text, varieties of interpretation and performance realization, and the development of a theatre ensemble. ", + "edges_from": [], + "edges_to": [], + "id": 995, + "label": "TDGR 230", + "title": "Acting Process III: Actors\u2019 Studio (2\u20134)" + }, + { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among African-Americans. The course examines changing religious traditions and ritual practices among African-Americans since slavery to the present era. ", + "edges_from": [], + "edges_to": [], + "id": 996, + "label": "RELI 155", + "title": "African-American Religions (4)" + }, + { + "dept": "TDGR", + "description": "This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will rehearse and perform in simulated studio setting. ", + "edges_from": [], + "edges_to": [], + "id": 997, + "label": "TDGR 233", + "title": "Acting for the Camera (1)" + }, + { + "dept": "ANSC", + "description": "Course aims to explore the ways in which historicity can be turned to a critical field of inquiry and reflection. Shows how the past isn\u2019t something that \u201chas happened,\u201d but that actively lingers\u00a0and invades the present, both inviting and constraining possible futures. Challenges the assumptions and practices of each modern discipline, affecting key concepts, methods, modes of analysis, and narrative forms that both anthropologists and historians have used. ", + "edges_from": [], + "edges_to": [], + "id": 998, + "label": "ANSC 177", + "title": "Step Into Anthrohistory: The Past and Its Hold on the Future (4)" + }, + { + "dept": "ANSC", + "description": "Examines interdisciplinary field of Critical Military Studies (CMS), led by sociocultural anthropologist research on aspects of militarism and on specific military forces in varied geographical and historical context. Focuses on changing strategies and doctrines into specific forms of military practice in regards to the way past conflicts inform current approaches and tactics. Also looks at field research conducted by social scientists on behalf of the US military, drawing on local experts in San Diego. ", + "edges_from": [], + "edges_to": [], + "id": 999, + "label": "ANSC 176", + "title": "The Meaning of Political Violence (4)" + }, + { + "dept": "ANSC", + "description": "This course considers together the economic, political, social, and cultural dimensions of capitalist relations on the planet. Focuses on the current trajectory of capitalism, especially its changing margins and centers. Emphasizes new research on money, paid and unpaid work, and the material concerns of water, energy, food, and shelter. ", + "edges_from": [], + "edges_to": [], + "id": 1000, + "label": "ANSC 175", + "title": "Money, Work, and Nature: The Anthropology of Capitalism (4)" + }, + { + "dept": "ANSC", + "description": "This course examines ideologies surrounding intersections of sex and money as well as ethnographies of sex workers in diverse contexts throughout the world. ", + "edges_from": [], + "edges_to": [], + "id": 1001, + "label": "ANSC 174", + "title": "Sex and Money: The Anthropology of Sex Work (4)" + }, + { + "dept": "ANSC", + "description": "This practicum course will explore anthropology\u2019s traditional methodology, ethnography, through texts, films, and literature, and give students practical experience through a quarter-long case study. ", + "edges_from": [], + "edges_to": [ + 5371 + ], + "id": 1002, + "label": "ANSC 173", + "title": "Ethnography in Practice (4)" + }, + { + "dept": "ANSC", + "description": "Examines methods for employing iconic recording techniques into ethnographic field research, with an emphasis on digital audio and video recording technologies and analysis. ", + "edges_from": [], + "edges_to": [], + "id": 1003, + "label": "ANSC 171", + "title": "Multimodal Methods in Ethnography (4)" + }, + { + "dept": "ANSC", + "description": "What is modernity? How does it shape human experience? Using selected works of art, film, literature, anthropology, philosophy and social theory, the course explores conceptions of self, identity, and culture that characterize modernity. ", + "edges_from": [], + "edges_to": [], + "id": 1004, + "label": "ANSC 170", + "title": "Modernity and Human Experience (4)" + }, + { + "dept": "EDS", + "description": "This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for both EDS 115GS and EDS 115. ", + "edges_from": [], + "edges_to": [], + "id": 1005, + "label": "EDS 115GS", + "title": "Cognitive Development and Education (4)" + }, + { + "dept": "HISC", + "description": "Science and law are two of the most powerful establishments of modern Western culture. Science organizes our knowledge of the world; law directs our action in it. Will explore the historical roots of the interplay between them.", + "edges_from": [], + "edges_to": [], + "id": 1006, + "label": "HISC 131", + "title": "Science, Technology, and Law (4)" + }, + { + "dept": "HISC", + "description": "Major technological developments in the twentieth century, including the rise and decline of technologies, unexpected hazards and unanticipated consequences, and why some technologies fail.", + "edges_from": [], + "edges_to": [], + "id": 1007, + "label": "HISC 130", + "title": "Technology in the Twentieth Century (4)" + }, + { + "dept": "TDGE", + "description": "Group studies, readings, projects, and discussions in theatre history, problems of production and performance, and similarly appropriate subjects. ", + "edges_from": [], + "edges_to": [], + "id": 1008, + "label": "TDGE 198", + "title": "Directed Group Studies (0-2-4)" + }, + { + "dept": "TDGE", + "description": "Qualified students will pursue a special project in theatre history, problems of production and performance, and similarly appropriate topics. ", + "edges_from": [], + "edges_to": [], + "id": 1009, + "label": "TDGE 199", + "title": "Special Projects (0-2-4)" + }, + { + "dept": "ECE", + "description": "Experiments in the modulation and demodulation of baseband and passband signals. Statistical characterization of signals and impairments. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 756 + ], + "edges_to": [], + "id": 1010, + "label": "ECE 157A", + "title": "Communications Systems Laboratory I (4)" + }, + { + "dept": "ECE", + "description": "Advanced projects in communication systems. Students will plan and implement design projects in the laboratory, updating progress weekly and making plan/design adjustments based upon feedback. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 756 + ], + "edges_to": [], + "id": 1011, + "label": "ECE 157B", + "title": "Communications Systems Laboratory II (4)" + }, + { + "dept": "TDGE", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in theatre and dance (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 1012, + "label": "TDGE 192", + "title": "Senior Seminar in Theatre and Dance (1)" + }, + { + "dept": "ENVR", + "description": "An interdisciplinary course focusing on one of a variety of topics related to environmental studies such as environmental policy and politics, foreign study in environmental problems, environmental history, nature writers, ethics and the environment. May be repeated three times for credit as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 1013, + "label": "ENVR 102", + "title": "Selected Topics in Environmental Studies (4)" + }, + { + "dept": "TDTR", + "description": "The study of the theoretical aspects of dance education, including an analysis of movement concepts for all ages. Development of basic technique training in all forms, curriculum planning, social awareness, and problem solving. Fundamental elements of cognitive and kinetic learning skills. ", + "edges_from": [], + "edges_to": [], + "id": 1014, + "label": "TDTR 104", + "title": "Dance Theory and Pedagogy (4)" + }, + { + "dept": "SOCI", + "description": "The environment as a socially and technically shaped milieu in which competing values and interests play out. Relation of humanity to nature, conflicts between preservation and development, environmental pollution and contested illnesses. Will not receive credit for SOCI 149 and SOCC 149.", + "edges_from": [], + "edges_to": [], + "id": 1015, + "label": "SOCI 149", + "title": "Sociology of the Environment (4)" + }, + { + "dept": "MATH", + "description": "Metric spaces and contraction mapping theorem;", + "edges_from": [], + "edges_to": [], + "id": 1016, + "label": "MATH 241A-B", + "title": "Functional Analysis (4-4)" + }, + { + "dept": "LIGN", + "description": "Discussion of a topic of current phonological interest, with a focus on descriptive, analytical, and theoretical issues in phonology and phonological theory.", + "edges_from": [], + "edges_to": [], + "id": 1017, + "label": "LIGN 215", + "title": "Topics in Phonology (4)" + }, + { + "dept": "LIGN", + "description": "This course examines recent developments in controversial areas of phonetics. Topics will vary and will address issues in speech production (articulation, acoustics), speech perception, phonetic theory, and the relationship between phonetics and phonology. May be taken for credit two times. ", + "edges_from": [ + 1019, + 1020 + ], + "edges_to": [], + "id": 1018, + "label": "LIGN 214", + "title": "Topics in Phonetics (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 1018 + ], + "id": 1019, + "label": "LIGN 211", + "title": "" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 1018 + ], + "id": 1020, + "label": "LIGN 210", + "title": "" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 146.) An introductory course to HIV taught through a medical student format, with emphasis on research and experiential learning, including observation of physicians providing care for patients from diverse socioeconomic and cultural backgrounds, and who may be underinsured or uninsured, homeless, and/or immigrants. Students may not receive credit for ANSC 146 and GLBH 146.", + "edges_from": [], + "edges_to": [], + "id": 1021, + "label": "GLBH 146", + "title": "A Global Health Perspective on HIV (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 147.) Examines interactions of culture, health, and environment. Rural and urban human ecologies, their energy foundations, sociocultural systems, and characteristic health and environmental problems are explored. The role of culture and human values in designing solutions will be investigated. Students may not receive credit for GLBH 147 and ANSC 147.", + "edges_from": [], + "edges_to": [], + "id": 1022, + "label": "GLBH 147", + "title": "Global Health and the Environment (4)" + }, + { + "dept": "HILD", + "description": "Lectures and discussions surveying the topics of race, slavery, demographic patterns, ethnic variety, rural and urban life in the United States, with special focus on European, Asian, and Mexican immigration.", + "edges_from": [], + "edges_to": [], + "id": 1023, + "label": "HILD 7A-B-C", + "title": "Race and Ethnicity in the United States (4-4-4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 148.) Introduction to global health from the perspective of medical anthropology on disease and illness, cultural conceptions of health, doctor-patient interaction, illness experience, medical science and technology, mental health, infectious disease, and health-care inequalities by ethnicity, gender, and socioeconomic status. Students may not receive credit for GLBH 148 and ANSC 148.", + "edges_from": [], + "edges_to": [], + "id": 1024, + "label": "GLBH 148", + "title": "Global Health and Cultural Diversity (4)" + }, + { + "dept": "USP", + "description": "This course charts the development of urban communities across the United States both temporally and geographically. It examines the patterns of cleavage, conflict, convergence of interest, and consensus that have structured urban life. Social, cultural, and economic forces will be analyzed for the roles they have played in shaping the diverse communities of America\u2019s cities.", + "edges_from": [], + "edges_to": [ + 1618 + ], + "id": 1025, + "label": "USP 1", + "title": "History of US Urban Communities (4)" + }, + { + "dept": "BGGN", + "description": "The course will introduce students to a variety of signal transduction pathways and their function in the regulation of cellular processes. Special emphasis will be given to signaling cascades regulating immunological responses and alterations of signaling pathways during oncogenesis. Open only to students enrolled in a graduate degree program. Letter grades only.", + "edges_from": [], + "edges_to": [], + "id": 1026, + "label": "BGGN 230", + "title": "Graduate Signal Transduction (4)" + }, + { + "dept": "USP", + "description": "An introduction to the sociological study of cities, focusing on urban society in the United States. Students in the course will examine theoretical approaches to the study of urban life; social stratification in the city; urban social and cultural systems\u2013ethnic communities, suburbia, family life in the city, religion, art, and leisure.", + "edges_from": [], + "edges_to": [], + "id": 1027, + "label": "USP 3", + "title": "The City and Social Theory (4)" + }, + { + "dept": "USP", + "description": "Examines cities and the environment in a global context. Emphasizes how the world\u2019s economy and the earth\u2019s ecology are increasingly interdependent. Focuses on biophysical and ethicosocial concerns rooted in the contemporary division of labor among cities, Third World industrialization, and the post-industrial transformation of US cities.", + "edges_from": [], + "edges_to": [], + "id": 1028, + "label": "USP 2", + "title": "Urban World System (4)" + }, + { + "dept": "USP", + "description": "This course introduces students to the terminology, concepts, and basic practices of real estate finance and development. It surveys real estate law, appraisal, marketing, brokerage, management, finance, investment analysis, and taxation.", + "edges_from": [], + "edges_to": [], + "id": 1029, + "label": "USP 5", + "title": "Introduction to the Real Estate and Development Process (4)" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with PATH 234, MED 234, BIOM 238.) This course is designed to train those who need to analyze mouse models of human disease that are an essential part of their research. Sessions will include hematology, chemistry, histology, and immunohistochemistry methods used in the phenotyping assays. (Quarter offered varies and course is not offered every year.) ", + "edges_from": [], + "edges_to": [], + "id": 1030, + "label": "BGGN 234", + "title": "Practical Histopathology and Mouse Models of Human Disease (2)" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with BIOM 262, CMM 262.) This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages.\u00a0", + "edges_from": [ + 1032, + 890, + 644 + ], + "edges_to": [], + "id": 1031, + "label": "BGGN 237", + "title": "Quantitative Methods in Genetics (4)" + }, + { + "dept": "BGGN", + "description": "", + "edges_from": [ + 4066, + 2060, + 2061, + 2062 + ], + "edges_to": [ + 3972, + 1031 + ], + "id": 1032, + "label": "BGGN 223", + "title": "" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with BIOM 222, CMM 225, MED 225, Chem 237.) Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.", + "edges_from": [], + "edges_to": [], + "id": 1033, + "label": "BGGN 236", + "title": "Advanced Glycobiology (4)" + }, + { + "dept": "BIPN", + "description": "Course focuses on physiological aspects of the human reproductive systems. Emphasis will be on cellular and systems physiology. Topics will include: reproductive endocrinology, gametogenesis, fertilization and implantation, pregnancy and parturition, development of reproductive systems, and reproductive pathologies. Students may not receive credit for both BIPN 134 and BICD 134. ", + "edges_from": [ + 588 + ], + "edges_to": [], + "id": 1034, + "label": "BIPN 134", + "title": "Human Reproduction (4)" + }, + { + "dept": "NANO", + "description": "Basic engineering principles of nanofabrication. Topics include: photo-electronbeam and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Cross-listed with CENG 208. Students may not receive credit for both NANO 208 and CENG 208. ", + "edges_from": [], + "edges_to": [], + "id": 1035, + "label": "NANO 208", + "title": "Nanofabrication (4)" + }, + { + "dept": "NANO", + "description": "Each graduate student in NANO is expected to attend three seminars per quarter, of his or her choice, dealing with current topics in chemical engineering. Topics will vary. Cross-listed with CENG 205. S/U grades only. May be taken for credit four times.", + "edges_from": [], + "edges_to": [], + "id": 1036, + "label": "NANO 200", + "title": "Graduate Seminar in Chemical Engineering (1)" + }, + { + "dept": "NANO", + "description": "Understanding nanotechnology, broad implications, miniaturization: scaling laws; nanoscale physics; types and properties of nanomaterials; nanomechanical oscillators, nano(bio)electronics, nanoscale heat transfer; fluids at the nanoscale; machinery cell; applications of nanotechnology and nanobiotechnology. Students may not receive credit for both NANO 201 and CENG 211. ", + "edges_from": [], + "edges_to": [ + 1555 + ], + "id": 1037, + "label": "NANO 201", + "title": "Introduction to NanoEngineering (4)" + }, + { + "dept": "NANO", + "description": "Development of quantitative understanding of the different intermolecular forces between atoms and molecules and how these forces give rise to interesting phenomena at the nanoscale, such as flocculation, wetting, self-assembly in biological (natural) and synthetic systems. Cross-listed with CENG 212. Students may not receive credit for both NANO 202 and CENG 212. ", + "edges_from": [], + "edges_to": [ + 1040 + ], + "id": 1038, + "label": "NANO 202", + "title": "Intermolecular and Surface Forces (4)" + }, + { + "dept": "NANO", + "description": "Nanoscale synthesis\u2014top-down and bottom-up; chemical vapor deposition; plasma processes; soft-lithography; self-assembly; layer-by-layer. Characterization; microscopy; scanning probe microscopes; profilometry; reflectometry and ellipsometry; X-ray diffraction; spectroscopies (EDX, SIMS, Mass spec, Raman, XPS); particle size analysis; electrical, optical. Cross-listed with CENG 213. Students may not receive credit for both NANO 203 and CENG 213. ", + "edges_from": [], + "edges_to": [], + "id": 1039, + "label": "NANO 203", + "title": "Nanoscale Synthesis and Characterization (4)" + }, + { + "dept": "NANO", + "description": "This course will introduce students to analytical and numerical methods such as statistical mechanisms, molecular simulations, and finite differences and finite element modeling through their application to NanoEngineering problems involving polymer and colloiod self-assembly, absorption, phase separation, and diffusion. Cross-listed with CENG 214. Students may not receive credit for both NANO 204 and CENG 214. ", + "edges_from": [ + 1038 + ], + "edges_to": [], + "id": 1040, + "label": "NANO 204", + "title": "Nanoscale Physics and Modeling (4)" + }, + { + "dept": "NANO", + "description": "Scaling issues and hierarchical assembly of nanoscale components into higher order structures which retain desired properties at microscale and macroscale levels. Novel ways to combine top-down and bottom-up processes for integration of heterogeneous components into higher order structures. Cross-listed with CENG 215. Students may not receive credit for both NANO 205 and CENG 215. ", + "edges_from": [], + "edges_to": [], + "id": 1041, + "label": "NANO 205", + "title": "Nanosystems Integration (4)" + }, + { + "dept": "COMM", + "description": "The conflict between the state of Israel and the group of people known as Palestinians is arguably the most intractable conflict in the world today. This course is a critical engagement with debates about this conflict, and the different representations of these debates. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1042, + "label": "COMM 158", + "title": "Representations of the Israeli/Palestinian Conflict (4)" + }, + { + "dept": "COMM", + "description": "Explores tourism encounters around the world to question the discourses, imaginaries, and social practices involved in the construction, consumption, and reproduction of stereotypical representations of otherness (place, nature, culture, bodies). ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1043, + "label": "COMM 159", + "title": "Tourism, Power, and Place (4)" + }, + { + "dept": "COMM", + "description": "This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1044, + "label": "COMM 152", + "title": "Global Economy and Consumer Culture (4)" + }, + { + "dept": "COMM", + "description": "This course examines how buildings, cities, towns, gardens, neighborhoods, roads, bridges, and other bits of infrastructure communicate. We consider both the materiality and language like properties of physical things in order to understand how built environments are represented, experienced, and remembered. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1045, + "label": "COMM 153", + "title": "Architecture as Communication (4)" + }, + { + "dept": "COMM", + "description": "Analysis of the forces propelling the Information Age. An examination of the differential benefits and costs, and a discussion of the presentation in the general media of the Information Age. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1046, + "label": "COMM 151", + "title": "The Information Age: Fact and Fiction (4)" + }, + { + "dept": "COMM", + "description": "Develop a critical understanding of the history, politics, and poetics of the Latino barrio as a distinct urban form. Course covers key concepts such as the production of space, landscapes of power, spatial apartheid, everyday urbanism, urban renewal, and gentrification. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1047, + "label": "COMM 155", + "title": "Latino Space, Place, and Culture (4)" + }, + { + "dept": "LTTH", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 1048, + "label": "LTTH 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "POLI", + "description": "This seminar provides perspectives on the theories and politics of European integration. Analysis will focus on the development of the European Union, the functioning of core institutions, and the challenges of creating a supranational political regime. ", + "edges_from": [], + "edges_to": [], + "id": 1049, + "label": "POLI 244A", + "title": "European Integration (4)" + }, + { + "dept": "VIS", + "description": "An in depth look at the art of Leonardo da Vinci with special emphasis on his training in Florence, interactions with Bramante, and the response to his work by Raphael. ", + "edges_from": [], + "edges_to": [], + "id": 1050, + "label": "VIS 122CN", + "title": "Leonardo da Vinci in Context (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with CENG 221B.) Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. ", + "edges_from": [ + 98, + 99, + 1052, + 1053, + 1054, + 1055 + ], + "edges_to": [], + "id": 1051, + "label": "MAE 221B", + "title": "Mass Transfer (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1056, + 2884, + 5926, + 1350, + 1063, + 1487, + 1072, + 3064, + 1051, + 4765, + 4766, + 1951 + ], + "id": 1052, + "label": "MAE 101C", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1056, + 2884, + 5926, + 1063, + 2765, + 1072, + 1051, + 4765, + 4766 + ], + "id": 1053, + "label": "MAE 101B", + "title": "" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 1056, + 5926, + 1063, + 1487, + 1072, + 3064, + 1051, + 4765, + 1951 + ], + "id": 1054, + "label": "CENG 101B", + "title": "" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 1056, + 5926, + 1063, + 2794, + 1072, + 1051, + 4765 + ], + "id": 1055, + "label": "CENG 101C", + "title": "" + }, + { + "dept": "MAE", + "description": "(Cross-listed with CENG 221A.) Conduction, convection, and radiation heat transfer. Development of energy conservation equations. Analytical and numerical solutions to transport problems. Specific topics and applications vary. ", + "edges_from": [ + 98, + 99, + 1052, + 1053, + 1054, + 1055 + ], + "edges_to": [ + 2884 + ], + "id": 1056, + "label": "MAE 221A", + "title": "Heat Transfer (4)" + }, + { + "dept": "HIEA", + "description": "Chinese society, thought, religion, culture, economy and politics from the Shang through the Song dynasties, through primary and secondary sources. Topics vary; may be repeated for credit. Requirements differ for undergraduate, MA and PhD students. Graduate students will be required to submit a more substantial piece of work or an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 1057, + "label": "HIEA 168/268", + "title": "Topics in Classical and Medieval Chinese History (4)" + }, + { + "dept": "TDHT", + "description": "An introduction to the fundamental techniques of analyzing dramatic texts. Focus is on the student\u2019s ability to describe textual elements and their relationships to each other as well as on strategies for writing critically about drama. ", + "edges_from": [], + "edges_to": [], + "id": 1058, + "label": "TDHT 10", + "title": "Introduction to Play Analysis (4)" + }, + { + "dept": "POLI", + "description": "How has warfighting evolved over the centuries? How has it varied across cultures? What has war been like for soldiers and civilians? How do societies mobilize for war, and how do they change in the short and long term from fighting? ", + "edges_from": [], + "edges_to": [], + "id": 1059, + "label": "POLI 143A", + "title": "War and Society (4)" + }, + { + "dept": "HISC", + "description": "Examines evolutionary theory before Darwin, the development of the theory of natural selection, the ongoing challenge from Lamarckism, nineteenth-century social Darwinism, the emergence of the neo-Darwinist synthesis, and the recent controversies over evolutionary psychology and creationism. Graduate students are expected to submit an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 1060, + "label": "HISC 173/273", + "title": "Seminar on Darwin and Darwinisms (4)" + }, + { + "dept": "ANAR", + "description": "Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the Department of Anthropology website. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 1061, + "label": "ANAR 100", + "title": "Special Topics in Anthropological Archaeology (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100A or after successful completion of Econ 100A with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 1062, + "label": "ECON 100AH", + "title": "Honors Microeconomics A (1)" + }, + { + "dept": "CENG", + "description": "Conduction, convection, and radiation heat transfer development of energy conservation equations. Analytical and numerical solutions to heat transport problems. Specific topics and applications vary. Cross-listed with MAE 221A. ", + "edges_from": [ + 98, + 99, + 1052, + 1053, + 1054, + 1055 + ], + "edges_to": [], + "id": 1063, + "label": "CENG 221A", + "title": "Heat Transfer (4)" + }, + { + "dept": "CSE", + "description": "This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, Hidden Markov models/support victor machines/neural network/profiles. Protein structure prediction, functional characterization or proteins, functional genomics/proteomics, metabolic pathways/gene networks. Cross-listed with BIMM 184/BENG 184/Chem 184. ", + "edges_from": [ + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071 + ], + "edges_to": [], + "id": 1064, + "label": "CSE 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 1064, + 5957 + ], + "id": 1065, + "label": "CHEM 182", + "title": "" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [ + 1073, + 241, + 11, + 16, + 17, + 1074 + ], + "edges_to": [ + 1064, + 5957, + 1070 + ], + "id": 1066, + "label": "BIMM 181", + "title": "" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 1064, + 5957 + ], + "id": 1067, + "label": "BIMM 182", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 1064, + 5957 + ], + "id": 1068, + "label": "BENG 182", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 1064, + 5957, + 1070 + ], + "id": 1069, + "label": "BENG 181", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 1073, + 241, + 1066, + 11, + 1069, + 1070, + 16, + 17, + 1074 + ], + "edges_to": [ + 1064, + 5957, + 1070 + ], + "id": 1070, + "label": "CSE 181", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 1064, + 5957 + ], + "id": 1071, + "label": "CSE 182", + "title": "" + }, + { + "dept": "CENG", + "description": "Fundamentals of diffusive and convective mass transfer and mass transfer with chemical reaction. Development of mass conservation equations. Analytical and numerical solutions to mass transport problems. Specific topics and applications will vary. Cross-listed with MAE 221B. ", + "edges_from": [ + 98, + 99, + 1052, + 1053, + 1054, + 1055 + ], + "edges_to": [], + "id": 1072, + "label": "CENG 221B", + "title": "Mass Transfer (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1066, + 2978, + 1070 + ], + "id": 1073, + "label": "MATH 188", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2640, + 1066, + 4786, + 1070, + 5230 + ], + "id": 1074, + "label": "CHEM 114C", + "title": "" + }, + { + "dept": "CSE", + "description": "Topics include an overview of various aspects of bioinformatics and will simultaneously introduce students to programming in Python. The assessments in the course represent various programming challenges and include solving diverse biological problems using popular bioinformatics tools. ", + "edges_from": [ + 687 + ], + "edges_to": [], + "id": 1075, + "label": "CSE 180", + "title": "Biology Meets Computing (4)" + }, + { + "dept": "CSE", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. May be used to meet teaching experience requirement for candidates for the PhD degree. Number of units for credit depends on number of hours devoted to class or section assistance. ", + "edges_from": [], + "edges_to": [], + "id": 1076, + "label": "CSE 500", + "title": "Teaching Assistantship (2\u20134)" + }, + { + "dept": "CHEM", + "description": "and Properties of Organic Molecules (4)", + "edges_from": [], + "edges_to": [], + "id": 1077, + "label": "CHEM 256", + "title": "Structure" + }, + { + "dept": "CHEM", + "description": "A comprehensive survey of modern bioorganic and natural products chemistry. Topics include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 157. ", + "edges_from": [], + "edges_to": [], + "id": 1078, + "label": "CHEM 257", + "title": "Biorganic and Natural Products Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "A qualitative approach to the mechanisms of various organic reactions; substitutions, additions, eliminations, condensations, rearrangements, oxidations, reductions, free-radical reactions, and photochemistry. Includes considerations of molecular structure and reactivity, synthetic methods, spectroscopic tools, and stereochemistry. The topics emphasized will vary from year to year. This is the first quarter of the advanced organic chemistry sequence. May be coscheduled with CHEM 154. ", + "edges_from": [], + "edges_to": [], + "id": 1079, + "label": "CHEM 254", + "title": "Mechanisms of Organic Reactions (4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 155.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper and/or exam beyond that expected of students in CHEM 155. (May not be offered every year.) ", + "edges_from": [ + 1081, + 1082 + ], + "edges_to": [], + "id": 1080, + "label": "CHEM 255", + "title": "Synthesis of Complex Molecules (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 1080, + 5948 + ], + "id": 1081, + "label": "CHEM 252", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 2928, + 2929, + 2930, + 1990 + ], + "edges_to": [ + 1080, + 5948 + ], + "id": 1082, + "label": "CHEM 152", + "title": "" + }, + { + "dept": "CHEM", + "description": "The course focuses on the discovery and development of modern antibiotics. We will discuss the discovery, synthesis, medicinal chemistry, mechanism of action studies, and preclinical as well as clinical development of drugs that are currently being used in the therapy of bacterial infections. Emphasis will be given to compounds approved over the last three decades and investigational drugs that are in clinical trials.", + "edges_from": [], + "edges_to": [], + "id": 1083, + "label": "CHEM 253", + "title": "Antibiotics (4)" + }, + { + "dept": "CHEM", + "description": "Course offers training in responsible conduct of research in chemistry and biochemistry, as well as presentation skills, teamwork, and other survival skills for a career in research. Objectives include learning rules, issues, and resources for research ethics; understanding the value of ethical decision-making; and creating a positive disposition toward learning about research ethics. The course is designed to meet federal grant requirements for training in the responsible conduct of research. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 1084, + "label": "CHEM 250", + "title": "Research Survival Skills (2)" + }, + { + "dept": "CHEM", + "description": "Group discussion of research activities and progress of the group members. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1085, + "label": "CHEM 251", + "title": "Research Conference (2)" + }, + { + "dept": "CHEM", + "description": "Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be strongly emphasized. Students will be required to write and submit a paper that reviews a recent research publication that reports the structure determination by spectroscopic methods of natural products. May be coscheduled with CHEM 158. ", + "edges_from": [], + "edges_to": [], + "id": 1086, + "label": "CHEM 258", + "title": "Applied Spectroscopy (4)" + }, + { + "dept": "CHEM", + "description": "Various advanced topics in organic chemistry. Includes but is not limited to: advanced kinetics, advanced spectroscopy, computational chemistry, heterocyclic chemistry, medicinal chemistry, organotransition metal chemistry, polymers, solid-phase synthesis/combinatorial chemistry, stereochemistry, and total synthesis classics.", + "edges_from": [], + "edges_to": [], + "id": 1087, + "label": "CHEM 259", + "title": "Special Topics in Organic Chemistry (2\u20134)" + }, + { + "dept": "SE", + "description": "Introduction to engineering computing. Interpolation, integration, differentiation. Ordinary differential equations. Nonlinear algebraic equations. Systems of linear algebraic equations. Representation of data in the computer. Use of computer resources. ", + "edges_from": [ + 553, + 1090, + 557, + 1089 + ], + "edges_to": [ + 1091 + ], + "id": 1088, + "label": "SE 121A", + "title": "Introduction to Computing for Engineers (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 1088, + 3269 + ], + "id": 1089, + "label": "SE 1", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 571, + 171 + ], + "edges_to": [ + 1088, + 2214 + ], + "id": 1090, + "label": "SE 9", + "title": "" + }, + { + "dept": "SE", + "description": "Exploration of numerical algorithms in engineering computations. Centered around computing projects. Matrix eigenvalue problems, boundary value problems, solution of systems of nonlinear algebraic equations, optimization. Use of computer resources. ", + "edges_from": [ + 1088, + 1092, + 1093 + ], + "edges_to": [ + 5113 + ], + "id": 1091, + "label": "SE 121B", + "title": "Computing Projects in Structural Engineering (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 2216, + 573, + 2215 + ], + "edges_to": [ + 2000, + 5113, + 1091, + 4267, + 1951 + ], + "id": 1092, + "label": "SE 101C", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1091, + 4266, + 4267, + 2000, + 5113, + 1951 + ], + "id": 1093, + "label": "MAE 130C", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 26, + 419 + ], + "edges_to": [ + 3265, + 531, + 2156, + 846, + 1683 + ], + "id": 1094, + "label": "ECE 35", + "title": "" + }, + { + "dept": "ECE", + "description": "Principles of electro-mechanical energy conversion, balanced three-phase systems, fundamental concepts of magnetic circuits, single-phase transformers, and the steady-state performance of DC and induction machines. Students may not receive credit for both ECE 121B and ECE 121. ", + "edges_from": [ + 531 + ], + "edges_to": [], + "id": 1095, + "label": "ECE 121B", + "title": "Energy Conversion (4)" + }, + { + "dept": "LTWR", + "description": "A close look at sentence-level features of written discourse\u2013stylistics and sentence grammars. Students will review recent research on these topics and experiment in their own writing with various stylistic and syntactic options. ", + "edges_from": [], + "edges_to": [], + "id": 1096, + "label": "LTWR 143", + "title": "Stylistics and Grammar (4)" + }, + { + "dept": "LTWR", + "description": "A review of the history of the development of alphabets and writing systems. Survey of the rise of literacy since the fifteenth century and analysis of continuing literacy problems in developed and developing countries.", + "edges_from": [], + "edges_to": [], + "id": 1097, + "label": "LTWR 140", + "title": "History of Writing (4)" + }, + { + "dept": "HLAW", + "description": "This course presents a comprehensive view of modern issues at the intersection of health care and law, with an emphasis on improving understanding and synergy between the professions. The course stresses foundational understanding of how health law and policy is formulated and the application of health law and policy in current practice. A portion of the class is devoted to group work where students select and study issues in depth to build a framework for resolving enduring challenges in the field. A variety of timely topics on the health law system and procedures/processes, such as Medicare and Medi-Cal coverage, are introduced to reinforce understanding. Part B emphasizes \u201cpublic\u201d law\u2014the law concerning government\u2019s own activities and programs, such as Medicare and Medicaid. ", + "edges_from": [], + "edges_to": [], + "id": 1098, + "label": "HLAW 207B", + "title": "Principles of Health Law and Policy B (4.5)" + }, + { + "dept": "LTWR", + "description": "Wide reading in current theory and practice of teaching writing in schools and colleges. Careful attention to various models of classroom writing instruction and to different approaches in the individual conference. Students in this course may observe instruction in the UC San Diego college writing programs or tutor freshman students in those programs. ", + "edges_from": [], + "edges_to": [], + "id": 1099, + "label": "LTWR 144", + "title": "The Teaching of Writing (4)" + }, + { + "dept": "HLAW", + "description": "The course offers a broad introduction to the legal aspects of American health care, through an in-depth analysis of selected contemporary issues at the intersection of health care and legal systems. It draws heavily on the experiences of the participants as well as the faculty. The course attends to how and why the law came to be (legal policy), how it is used (legal process), and how it affects the shape, cost, and quality of health care in America (legal impact). Part A emphasizes \u201cprivate\u201d law topics\u2014the legal environment within which the private participants in health care interact with each other. ", + "edges_from": [], + "edges_to": [], + "id": 1100, + "label": "HLAW 207A", + "title": "Principles in Health Law and Policy A (4.5)" + }, + { + "dept": "LTWR", + "description": "Hybrid workshop offering writing students a working knowledge of literary theory while exposing literature students to practical techniques from poetry, fiction, and nonfiction to refresh their writing of theoretical nonfiction texts. Discussion of student work and published work. ", + "edges_from": [], + "edges_to": [], + "id": 1101, + "label": "LTWR 148", + "title": "Theory for Writers/Writing for Theory (4)" + }, + { + "dept": "SOCI", + "description": "A sociological examination of the era of the 1960s in America, its social and political movements, its cultural expressions, and debates over its significance, including those reflected in video documentaries. Comparisons will also be drawn with events in other countries. ", + "edges_from": [ + 1102, + 1103 + ], + "edges_to": [ + 1102 + ], + "id": 1102, + "label": "SOCI 187E", + "title": "The Sixties (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 1102 + ], + "id": 1103, + "label": "SOCD 187S", + "title": "" + }, + { + "dept": "CHEM", + "description": "Interacting systems at equilibrium, both classical (liquids)", + "edges_from": [], + "edges_to": [], + "id": 1104, + "label": "CHEM 232B", + "title": "Statistical Mechanics II (4)" + }, + { + "dept": "CHEM", + "description": "Derivation of thermodynamics", + "edges_from": [], + "edges_to": [], + "id": 1105, + "label": "CHEM 232A", + "title": "Statistical Mechanics I (4)" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of comparative politics. May be repeated for credit three times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 1106, + "label": "POLI 138D", + "title": "Special Topics in Comparative Politics (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in differential geometry. In recent years, topics have included Morse theory and general relativity. May be taken for credit six times with consent of adviser. ", + "edges_from": [], + "edges_to": [ + 1108 + ], + "id": 1107, + "label": "MATH 257A", + "title": "Topics in Differential Geometry (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in differential geometry. Topics include Morse theory and general relativity. May be taken for credit three times with consent of adviser. ", + "edges_from": [ + 1107 + ], + "edges_to": [], + "id": 1108, + "label": "MATH 257B", + "title": "Further Topics in Differential Geometry (4)" + }, + { + "dept": "GPIM", + "description": "This course examines the current business environment in Latin America, taking into account political, economic, and cultural factors. The course will be based on case studies, supplemented with guest lectures from business executives and discussions of selected readings. Students will be required to develop a business plan as a major part of the grade for the course. Renumbered from IRGN 436. Students may not receive credit for both GPIM 436 and IRGN 436.", + "edges_from": [], + "edges_to": [], + "id": 1109, + "label": "GPIM 436", + "title": "Doing Business in Latin America (4)" + }, + { + "dept": "VIS", + "description": "Sound design plays an increasing role in media production and has opened up new structural possibilities for narrative strategies. A critical and historical review of sound design and a production methodology component. Critical papers and soundtracks for short film projects will be required. Two production-course limitation. ", + "edges_from": [ + 1111 + ], + "edges_to": [ + 5920, + 3523, + 2840, + 2843, + 2845, + 2846, + 5919 + ], + "id": 1110, + "label": "VIS 178", + "title": "Sound\u2014Theory and Production (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 731 + ], + "edges_to": [ + 5920, + 2843, + 2840, + 3523, + 1110, + 1112, + 1113, + 1114, + 1115, + 2845, + 2846, + 5919 + ], + "id": 1111, + "label": "VIS 174", + "title": "" + }, + { + "dept": "VIS", + "description": "The evolving aims and grammars of editing practice in film and digital media will be examined. These histories will create a context for exploring contemporary editing strategies. The production projects will be centered on digital editing practice. Two production-course limitation. ", + "edges_from": [ + 1111 + ], + "edges_to": [ + 5920, + 3523, + 2840, + 2843, + 2845, + 2846, + 5919 + ], + "id": 1112, + "label": "VIS 175", + "title": "Editing\u2014Theory and Production (4)" + }, + { + "dept": "VIS", + "description": "Script writing, reading, and analysis of traditional and experimental media productions. The emphasis will be on the structural character of the scripting process and its language. Students will write several short scripts along with analytical papers. Two production-course limitation. ", + "edges_from": [ + 1111 + ], + "edges_to": [ + 5920, + 3523, + 2840, + 2843, + 2845, + 2846, + 5919 + ], + "id": 1113, + "label": "VIS 177", + "title": "Scripting Strategies (4)" + }, + { + "dept": "VIS", + "description": "A technical foundation and creative theoretical context for film production will be provided. Students will produce a short film with post-synchronized sounds and final mixed-track. Two production-course limitation. ", + "edges_from": [ + 1111 + ], + "edges_to": [ + 5920, + 3523, + 2840, + 2843, + 2845, + 2846, + 5919 + ], + "id": 1114, + "label": "VIS 176", + "title": "16mm Filmmaking (4)" + }, + { + "dept": "VIS", + "description": "A digital image is not a film image, and this reality and its technological and conceptual implications are what this course will attempt to map out, exploring its possibilities and the massive overhaul of media aesthetics it implies. Two production-course limitation. ", + "edges_from": [ + 1111 + ], + "edges_to": [ + 5920, + 3523, + 2840, + 2843, + 2845, + 2846, + 5919 + ], + "id": 1115, + "label": "VIS 171", + "title": "Digital Cinema\u2014Theory and Production (4)" + }, + { + "dept": "GPIM", + "description": "Introduction to operations and technology, including services, manufacturing, and R&D. How organizations produce useful outputs that meet customer needs. Capital cost, variable cost, speed, lead time, robustness, including process analysis, supply chains, total quality, and process improvement. Case studies, simulations, and lectures. Renumbered from IRGN 438. Students may not receive credit for GPIM 438 and IRGN 438. ", + "edges_from": [ + 1117 + ], + "edges_to": [], + "id": 1116, + "label": "GPIM 438", + "title": "Operations and Technology Management (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 940, + 1116, + 4789 + ], + "id": 1117, + "label": "GPCO 453", + "title": "" + }, + { + "dept": "Soc/G", + "description": "An examination of theories accounting for the causes and consequences of social movements, including a discussion of the strengths and weaknesses of such theories for understanding historically specific revolutions, rebellions, and violent and nonviolent forms of protest in various parts of the world. ", + "edges_from": [], + "edges_to": [], + "id": 1118, + "label": "Soc/G 222", + "title": "Social Movements (4)" + }, + { + "dept": "PHYS", + "description": "Electromagnetic waves, radiation theory; application to optics; motion of charged particles in electromagnetic fields; relation of electromagnetism to relativistic concepts. ", + "edges_from": [ + 1120 + ], + "edges_to": [ + 2986, + 3419 + ], + "id": 1119, + "label": "PHYS 100C", + "title": "Electromagnetism III (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 1121, + 419, + 132, + 169, + 171, + 849, + 227, + 407, + 571, + 572, + 573 + ], + "edges_to": [ + 3419, + 1364, + 1119 + ], + "id": 1120, + "label": "PHYS 100B", + "title": "" + }, + { + "dept": "PHYS", + "description": "Coulomb\u2019s law, electric fields, electrostatics; conductors and dielectrics; steady currents, elements of circuit theory. ", + "edges_from": [ + 33, + 34, + 419, + 132, + 38, + 35, + 169, + 171, + 28, + 27, + 849, + 227, + 407, + 26, + 571, + 572, + 573 + ], + "edges_to": [ + 2816, + 1120, + 3215, + 5633, + 2815 + ], + "id": 1121, + "label": "PHYS 100A", + "title": "Electromagnetism I (4)" + }, + { + "dept": "Soc/G", + "description": "This course discusses the relationship between state and society in a comparative perspective. The focus is on the interaction among states, domestic economic elites, and external economic and political processes in the determination of different developmental paths. Analytically, it includes topics such as characteristics and functions of the state in different types of society throughout history (with an emphasis on the varieties of capitalist and socialist state), the autonomy of the state and its causes in different settings, and developmental and predatory consequences of state activity. Readings will include both theoretical and empirical materials, the latter dealing mostly with nineteenth- and twentieth-century Europe and twentieth-century Latin America. ", + "edges_from": [], + "edges_to": [], + "id": 1122, + "label": "Soc/G 226", + "title": "Political Sociology (4)" + }, + { + "dept": "Soc/G", + "description": "Ethnographic recording of field data in written and audiovisual formats, including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual data in terms of styles, format, and approaches. Graduate students are required to submit a fifteen-page mid-term paper comparing a written and an audiovisual ethnography and a final video ethnography with a project abstract. ", + "edges_from": [ + 784, + 1124 + ], + "edges_to": [], + "id": 1123, + "label": "Soc/G 227", + "title": "Ethnographic Film: Media Methods (6)" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [], + "edges_to": [ + 1123, + 5787 + ], + "id": 1124, + "label": "SOCI 1", + "title": "" + }, + { + "dept": "COMM", + "description": "Analyze forms of social issue media production, photography, audio/radio, arts, crafts, web, print zines, political documentary. Students work with several forms of media making: video, audio, web design, and a project in their chosen format. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1125, + "label": "COMM 120I", + "title": "AMP: Social Issues in Media Production (4)" + }, + { + "dept": "COMM", + "description": "An examination of how the media present society\u2019s members and activities in stereotypical formats. Reasons for and consequences of this presentation are examined. Student responsibilities will be (a) participation in measurement and analysis of stereotype presentations. (b) investigating techniques for assessing both cognitive and behavioral effects of such scripted presentations on the users of media. Students will not receive credit for COMT 105 and COMM 120M. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1126, + "label": "COMM 120M", + "title": "AMP: Media Stereotypes (4)" + }, + { + "dept": "COMM", + "description": "Designed for students working in student news organizations or off-campus internships or jobs in news, public relations, or public information. A workshop in news writing and news analysis. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1127, + "label": "COMM 120N", + "title": "AMP: News Media Workshop (4)" + }, + { + "dept": "COMM", + "description": "This course develops critical understanding of educational uses of digital media through firsthand experience in public educational settings, and readings/discussions of challenges, benefits, and pitfalls of educational applications of media technology. Three hours/week of fieldwork required. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1128, + "label": "COMM 120P", + "title": "AMP: Digital Media in Education (4)" + }, + { + "dept": "COGS", + "description": "This course provides a rigorous treatment of hypothesis testing, statistical inference, model fitting, and exploratory data analysis techniques used in the cognitive and neural sciences. Students will acquire an understanding of mathematical foundations and hands-on experience in applying these methods using Matlab.", + "edges_from": [], + "edges_to": [], + "id": 1129, + "label": "COGS 243", + "title": "Statistical Inference and Data Analysis (2 or 4)" + }, + { + "dept": "COGS", + "description": "(Same as Neurosciences 241.) This course will cover ethical issues that arise in academia, including: dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss \u201csurvival\u201d issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. S/U only.", + "edges_from": [], + "edges_to": [], + "id": 1130, + "label": "COGS 241", + "title": "Ethics and Survival Skills in Academia (3)" + }, + { + "dept": "COMM", + "description": "Practice, history, and theory of writing for digital media. Text combines with images, sounds, movement, and interaction. New network technologies (e-mail, blogs, wikis, and virtual worlds) create new audience relationships. Computational processes enable texts that are dynamically configured and more. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1131, + "label": "COMM 120W", + "title": "AMP: Writing for Digital Media (4)" + }, + { + "dept": "ANTH", + "description": "Core seminar focuses on motives, values, cognition, and qualities of personal experience. ", + "edges_from": [ + 1133 + ], + "edges_to": [], + "id": 1132, + "label": "ANTH 280C", + "title": "Core Seminar in Psychological Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1132 + ], + "id": 1133, + "label": "ANGR 280C", + "title": "" + }, + { + "dept": "ANTH", + "description": "Seminar focuses on the development of archaeological theory. Required of archaeological and biological anthropology graduate students, sociocultural students may take this course to fulfill core distribution requirement. ", + "edges_from": [ + 1135 + ], + "edges_to": [], + "id": 1134, + "label": "ANTH 280D", + "title": "Core Seminar in Anthropological Archaeology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1134 + ], + "id": 1135, + "label": "ANGR 280D", + "title": "" + }, + { + "dept": "ANTH", + "description": "This seminar will examine the central problems and concepts of biological anthropology, laying the foundation for first-year graduate students in Biological Anthropology as well as providing an overview of the field for graduate students in other areas of anthropology. ", + "edges_from": [ + 1137 + ], + "edges_to": [], + "id": 1136, + "label": "ANTH 280E", + "title": "Core Seminar in Biological Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1136 + ], + "id": 1137, + "label": "ANGR 280E", + "title": "" + }, + { + "dept": "ANTH", + "description": "Examines the theoretical and methodological foundations and principal research questions of linguistic anthropology, providing the fundamentals for graduate study in this area. Required for students specializing in linguistic anthropology and open to other students. Course formerly numbered as ANTH 263. Students will not receive credit for both ANTH 263 and ANTH 280F. ", + "edges_from": [], + "edges_to": [], + "id": 1138, + "label": "ANTH 280F", + "title": "Core Seminar in Linguistic Anthropology (4)" + }, + { + "dept": "HITO", + "description": "The course examines multiform mystical traditions in world religions and cultures, including Greco-Roman philosophy, Judaism, Christianity, Islam, Hinduism, and Buddhism by studying classics of mystical literature and secondary sources; also addressed are mystical beliefs and practices in contemporary society.", + "edges_from": [], + "edges_to": [], + "id": 1139, + "label": "HITO 124", + "title": "Mystical Traditions (4)" + }, + { + "dept": "HITO", + "description": "This course will examine the different ways that attitudes toward children have changed throughout history. By focusing on the way that the child was understood, we will examine the changing role of the family, the role of culture in human development, and the impact of industrialization and modern institutions on the child and childhood.", + "edges_from": [], + "edges_to": [], + "id": 1140, + "label": "HITO 126", + "title": "A History of Childhood (4)" + }, + { + "dept": "CSE", + "description": "Undergraduate research for completing an honors project under the supervision of a CSE faculty member. May be taken across multiple quarters. Students should enroll for a letter grade. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 1141, + "label": "CSE 199H", + "title": "CSE Honors Thesis Research for Undergraduates (4)" + }, + { + "dept": "TDGR", + "description": "This seminar focuses on concepts that inform creation, performance, research, and critical analysis of current and emerging dance making practices with varying content by faculty. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 1142, + "label": "TDGR 215A", + "title": "Special Topics in Dance Making (4)" + }, + { + "dept": "ECE", + "description": "Advanced topics in coding theory. Course contents vary by instructor. Example course topics: Coded-modulation for bandwidth-efficient data transmission; advanced algebraic and combinatorial coding theory; space-time coding for wireless communications; constrained coding for digital recording. Students who have taken ECE 259CN may not receive credit for ECE 259C. ", + "edges_from": [], + "edges_to": [], + "id": 1143, + "label": "ECE 259C", + "title": "Advanced Topics in Coding (4)" + }, + { + "dept": "ECE", + "description": "Convolutional codes, maximum-likelihood (ML) decoding, maximum a-posteriori (MAP) decoding, parallel and serial concatenation architectures, turbo codes, repeat-accumulate (RA) codes, the turbo principle, turbo decoding, graph-based codes, message-passing decoding, low-density parity check codes, threshold analysis, applications. Students who have taken ECE 259BN may not receive credit for ECE 259B. (Recommended prerequisites: ECE 154A-B-C.) ", + "edges_from": [ + 1145 + ], + "edges_to": [], + "id": 1144, + "label": "ECE 259B", + "title": "Probabilistic Coding (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1144 + ], + "id": 1145, + "label": "ECE 259A", + "title": "" + }, + { + "dept": "BISP", + "description": "Course will examine different aspects of a current topic in biology and will include several speakers. Each speaker will introduce the scientific foundation of the chosen theme (\u201cbench\u201d), describe practical applications of their subject (\u201cbedside\u201d), and consider social and ethical implications of the topic (\u201cbeyond\u201d). The theme of the course will vary from year to year, and speakers will come from a variety of disciplines relevant to the theme. May be taken for credit three times. ", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [], + "id": 1146, + "label": "BISP 170", + "title": "Bioscholars Seminar: From Bench to Bedside and Beyond (2)" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [ + 687 + ], + "edges_to": [ + 3296, + 4289, + 3163, + 4516, + 4451, + 588, + 3728, + 1331, + 4693, + 1146, + 2587 + ], + "id": 1147, + "label": "BILD 2", + "title": "" + }, + { + "dept": "ECE", + "description": "Quantum states and quantum transport of electrons;", + "edges_from": [], + "edges_to": [], + "id": 1148, + "label": "ECE 212BN", + "title": "Nanoelectronics (4)" + }, + { + "dept": "ETHN", + "description": "This is an independent research or individual guided tutorial in an area not covered by present course offerings. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course.", + "edges_from": [], + "edges_to": [], + "id": 1149, + "label": "ETHN 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "ETHN", + "description": "Open to graduate students conducting doctoral thesis research. This course may be repeated for an indefinite number of times due to the independent nature of thesis research and writing.", + "edges_from": [], + "edges_to": [], + "id": 1150, + "label": "ETHN 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "BENG", + "description": "Experimental study of real and simulated systems and their controls (examples will include electrical, biological, and biomechanical systems). Projects consist of identification, input-output analysis, design, and implementation of analog controls. Laboratory examples will include electrical circuit design and analysis, analysis of living tissues such as bone, analysis and manipulation of cells (bacteria in chemostat). Program or materials fees may apply.\u00a0", + "edges_from": [ + 1152 + ], + "edges_to": [ + 5887 + ], + "id": 1151, + "label": "BENG 152", + "title": "BioSystems Engineering Laboratory (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 1513 + ], + "edges_to": [ + 2533, + 1151 + ], + "id": 1152, + "label": "BENG 102", + "title": "" + }, + { + "dept": "PHIL", + "description": "Social justice issues as they arise across the borders of nation-states. Topics may include nationalism and cosmopolitanism, theories of just war and just warfare, issues of migration and immigration, global distributive justice and fair trade, and international cooperation in the face of global problems such as climate change and human rights violations. ", + "edges_from": [], + "edges_to": [], + "id": 1153, + "label": "PHIL 139", + "title": "Global Justice (4)" + }, + { + "dept": "PHIL", + "description": "A study of the nature and significance of responsibility. Possible topics include: freedom, determinism, and responsibility; moral luck; responsibility and reactive attitudes such as blame and forgiveness; responsibility and situationism; moral and criminal responsibility; responsibility and excuse; insanity and psychopathy, immaturity, addiction, provocation, and duress. ", + "edges_from": [], + "edges_to": [], + "id": 1154, + "label": "PHIL 138", + "title": "Responsibility (4)" + }, + { + "dept": "PHIL", + "description": "Central problems in epistemology such as skepticism; a priori knowledge; knowledge of other minds; self-knowledge; the problem of induction; foundationalist, coherence, and causal theories of knowledge. ", + "edges_from": [], + "edges_to": [], + "id": 1155, + "label": "PHIL 132", + "title": "Epistemology (4)" + }, + { + "dept": "PHIL", + "description": "An in-depth study of some central problem, figure, or tradition in metaphysics. May be repeated for credit with change of content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 1156, + "label": "PHIL 131", + "title": "Topics in Metaphysics (4)" + }, + { + "dept": "PHIL", + "description": "Central problems in metaphysics, such as free will and determinism, the mind-body problem, personal identity, causation, primary and secondary qualities, the nature of universals, necessity, and identity. ", + "edges_from": [], + "edges_to": [], + "id": 1157, + "label": "PHIL 130", + "title": "Metaphysics (4)" + }, + { + "dept": "PHIL", + "description": "The nature of action and psychological explanation. Topics include action individuation, reasons as causes, psychological laws, freedom and responsibility, weakness of will, self-deception, and the emotions. ", + "edges_from": [], + "edges_to": [], + "id": 1158, + "label": "PHIL 137", + "title": "Moral Psychology (4)" + }, + { + "dept": "PHIL", + "description": "Different conceptions of the nature of mind and its relation to the physical world. Topics include identity theories, functionalism, eliminative materialism, internalism and externalism, subjectivity, other minds, consciousness, self-knowledge, perception, memory, and imagination. ", + "edges_from": [], + "edges_to": [], + "id": 1159, + "label": "PHIL 136", + "title": "Philosophy of Mind (4)" + }, + { + "dept": "PHIL", + "description": "Examination of contemporary debates about meaning, reference, truth, and thought. Topics include descriptional theories of reference, sense and reference, compositionality, truth, theories of meaning, vagueness, metaphor, and natural and formal languages. ", + "edges_from": [], + "edges_to": [], + "id": 1160, + "label": "PHIL 134", + "title": "Philosophy of Language (4)" + }, + { + "dept": "LTWL", + "description": "19A-B-C. Introduction to the Ancient Greeks and Romans (4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 1161, + "label": "LTWL", + "title": "" + }, + { + "dept": "EDS", + "description": "This course series addresses special topics in education research and data analysis. Students explore a faculty-specified qualitative research method and analytic approach. Approaches may include case studies, video analysis, mixed methods, naturalistic observations, ethnography, and netnography. The assigned readings include scholarship on the practice and philosophical underpinnings of the specified qualitative research approach and examples of published qualitative studies. ", + "edges_from": [], + "edges_to": [], + "id": 1162, + "label": "EDS 265", + "title": "Special Topics in Qualitative Methods (4)" + }, + { + "dept": "EDS", + "description": "This course provides an introduction to qualitative approaches in education research. Students explore various qualitative methods and analytic strategies and gain hands-on experiences analyzing qualitative data collected on topics relevant to the study of education. The assigned readings include scholarship on the philosophical underpinnings and practice of qualitative research and varied examples of published qualitative research studies. ", + "edges_from": [], + "edges_to": [ + 4162 + ], + "id": 1163, + "label": "EDS 264", + "title": "Introduction to Qualitative Analysis (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 152.) Examination of hip-hop\u2019s technology, lyrics, and dance and its influences in graffiti, film, music video, fiction, advertising, gender, corporate investment, government, and censorship with a critical focus on race, gender, and popular culture and the politics of creative expression.", + "edges_from": [], + "edges_to": [], + "id": 1164, + "label": "ETHN 128", + "title": "Hip-Hop: The Politics of Culture (4)" + }, + { + "dept": "EDS", + "description": "This course series addresses special topics in quantitative education research and data analysis. Students explore a faculty-specified quantitative research method and analytic approach. Approaches may include social network analysis, hierarchical linear modeling, latent class analysis, and structural equation modeling. The readings include scholarship on the practice and philosophical underpinnings of the specified quantitative research approach and examples of published quantitative studies. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1165, + "label": "EDS 266", + "title": "Special Topics in Quantitative Methods (4)" + }, + { + "dept": "EDS", + "description": "This seminar will examine basic approaches to the study of human development, drawing on theory, research, and methods from multiple disciplines to study how children and adults develop within the context of cultural communities. It includes discussion of cultural practices as mediators on developmental outcomes, notions of universals and diversity, and individualism and familism. We will discuss the complex ways that individual and sociocultural factors interact in learning and development.", + "edges_from": [], + "edges_to": [], + "id": 1166, + "label": "EDS 263", + "title": "Developmental Theory and Culture (4)" + }, + { + "dept": "ETHN", + "description": "A survey of Asian American cultural expressions in literature, art, and music to understand the social experiences that helped forge Asian American identity. Topics: culture conflict, media portrayals, assimilation pressures, the model minority myth, and interethnic and class relations.", + "edges_from": [], + "edges_to": [], + "id": 1167, + "label": "ETHN 122", + "title": "Asian American Culture and Identity (4)" + }, + { + "dept": "ETHN", + "description": "This course will examine the development of Asian American politics by studying the historical and contemporary factors, such as political and economic exclusion, that have contributed to the importance and complexity of ethnicity as a mobilizing force in politics.", + "edges_from": [], + "edges_to": [], + "id": 1168, + "label": "ETHN 123", + "title": "Asian American Politics (4)" + }, + { + "dept": "ETHN", + "description": "Performance: The Politics of Popular Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 1169, + "label": "ETHN 120", + "title": "Race and" + }, + { + "dept": "ETHN", + "description": "The course will study changes in Asian American communities as a result of renewed immigration since 1965; the influx of refugees from Vietnam, Kampuchea, and Laos; the impact of contemporary social movements on Asian Americans\u2019 current economic, social, and political status.", + "edges_from": [], + "edges_to": [], + "id": 1170, + "label": "ETHN 121", + "title": "Contemporary Asian American History (4)" + }, + { + "dept": "ETHN", + "description": "This course compares the historical and contemporary social, political, and economic experiences of Filipino and Vietnamese Americans, paying particular attention to the impact of US wars in the Philippines and in Vietnam on their respective lives.", + "edges_from": [], + "edges_to": [], + "id": 1171, + "label": "ETHN 126", + "title": "Comparative Filipino and Vietnamese American Identities and Communities (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 112.) This course explores the nexus of sex, race, ethnicity, gender, and nation and considers their influence on identity, sexuality, migration, movement, and borders and other social, cultural, and political issues that these constructs affect.", + "edges_from": [], + "edges_to": [], + "id": 1172, + "label": "ETHN 127", + "title": "Sexuality and Nation (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 181.) Selected topics in the literature by men and women of Asian descent who live and write in the United States. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1173, + "label": "ETHN 124", + "title": "Asian American Literature (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 124.) Explore how Asian Americans were involved in the political, economic and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.", + "edges_from": [], + "edges_to": [], + "id": 1174, + "label": "ETHN 125", + "title": "Asian American History (4)" + }, + { + "dept": "MAE", + "description": "This course will introduce the advanced graduate student to the topics of mechanical and thermodynamic analyses of cellular membranes, lipid bilayers, and the study of synthetic vesicles. ", + "edges_from": [ + 1176 + ], + "edges_to": [], + "id": 1175, + "label": "MAE 264", + "title": "Mechanics and Thermodynamics of Biological Membranes (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1184, + 1803, + 1175 + ], + "id": 1176, + "label": "MAE 209", + "title": "" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 252.) This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "edges_from": [], + "edges_to": [ + 4948 + ], + "id": 1177, + "label": "MAE 266", + "title": "Biomaterials and Medical Devices (4)" + }, + { + "dept": "AESE", + "description": "Students will work collaboratively on a team project, mostly in a lab setting, to demonstrate their grasp of the material in the entire project sequence. ", + "edges_from": [ + 1179 + ], + "edges_to": [], + "id": 1178, + "label": "AESE 279B", + "title": "Architecture-based Enterprise Systems Engineering Capstone Team Project (3)" + }, + { + "dept": "AESE", + "description": "", + "edges_from": [], + "edges_to": [ + 1178 + ], + "id": 1179, + "label": "AESE 279A", + "title": "" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 260.) Computational methods for MatSci will be discussed, dealing with atomic scale empirical or semiempirical potentials. How and why to develop such potentials for metallic materials will be a focus of the course. Molecular dynamics and Monte Carlo methods will be covered in detail. Applications of these techniques to some example problems in materials science, mechanical deformation, dislocation interactions, nucleation/growth of phases, melting solidification structures, and point defects are presented.", + "edges_from": [], + "edges_to": [], + "id": 1180, + "label": "MAE 260", + "title": "Fundamentals and Applications of Computational Materials Science (4)" + }, + { + "dept": "MAE", + "description": "Topics in the mechanics of blood flow including analytical solutions for flow in deformable vessels, one-dimensional equations, cardiovascular anatomy, lumped parameter models, vascular trees, scaling laws, and an introduction to the biomechanics and treatment of adult and congenital cardiovascular diseases. ", + "edges_from": [ + 1182, + 1183 + ], + "edges_to": [], + "id": 1181, + "label": "MAE 261", + "title": "Cardiovascular Fluid Mechanics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 5424, + 1181, + 3974 + ], + "id": 1182, + "label": "MAE 290A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1184, + 2764, + 1181, + 3974 + ], + "id": 1183, + "label": "MAE 210A", + "title": "" + }, + { + "dept": "MAE", + "description": "Fluids phenomena relevant to the function, environment, and dynamics of biological cells. Topics include: low-Reynolds number flows, cell motility, internal cellular flows, development and morphogenesis, hydrodynamics of suspensions and polymers, rheology, diffusion, hydrodynamics of deformable bodies (vesicles, membranes, filaments), cells under shear flow. ", + "edges_from": [ + 1176, + 1183 + ], + "edges_to": [], + "id": 1184, + "label": "MAE 262", + "title": "Biological Fluid Mechanics (4)" + }, + { + "dept": "MAE", + "description": "Methods in Cell Mechanics (4)", + "edges_from": [], + "edges_to": [], + "id": 1185, + "label": "MAE 263", + "title": "Experimental" + }, + { + "dept": "LTTH", + "description": "Directed group study, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.)", + "edges_from": [], + "edges_to": [], + "id": 1186, + "label": "LTTH 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTTH", + "description": "Individual reading in an area not covered in courses currently offered by the department. (P/NP only.)", + "edges_from": [], + "edges_to": [], + "id": 1187, + "label": "LTTH 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "BENG", + "description": "Development of design project in tissue engineering. ", + "edges_from": [ + 55 + ], + "edges_to": [ + 1189 + ], + "id": 1188, + "label": "BENG 169A", + "title": "Design Development in Tissue Engineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in tissue engineering. ", + "edges_from": [ + 57, + 1188 + ], + "edges_to": [ + 57 + ], + "id": 1189, + "label": "BENG 169B", + "title": "Design Implementation in Tissue Engineering (3)" + }, + { + "dept": "ANBI", + "description": "A weekly forum for presentation and discussion of work in anthropology and cognitive neuroscience by faculty, students, and guest speakers. P/NP only. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. ", + "edges_from": [], + "edges_to": [], + "id": 1190, + "label": "ANBI 109", + "title": "Brain Mind Workshop (2)" + }, + { + "dept": "ECON", + "description": "Study of the determinants of economic fluctuations, inflation, and interest rates with particular focus on the effects of monetary policy. Overview of key methods and findings of empirical research in macroeconomics. Recommended preparation: Econ 220D. Prerequisite: graduate standing and Econ 210A-B-C.", + "edges_from": [], + "edges_to": [], + "id": 1191, + "label": "ECON 210D", + "title": "Monetary Economics and Business Cycles (4)" + }, + { + "dept": "ECON", + "description": "Basic facts and time series for macroeconomics. Modern theories of short-run fluctuations: sources of business cycle and the evolution of income, employment, interest rate, and prices. Monetary and fiscal policy theories in the presence of real and nominal rigidities. ", + "edges_from": [ + 1193 + ], + "edges_to": [ + 3992, + 3988, + 3989, + 3990, + 3991, + 3352, + 921 + ], + "id": 1192, + "label": "ECON 210C", + "title": "Macroeconomics C (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1194 + ], + "edges_to": [ + 1192, + 3988, + 3989, + 3990, + 3991, + 3992, + 921 + ], + "id": 1193, + "label": "ECON 210B", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 1193, + 3988, + 3989, + 3990, + 3991, + 3992, + 921 + ], + "id": 1194, + "label": "ECON 210A", + "title": "" + }, + { + "dept": "SOCI", + "description": "A series of case studies of the relations between society and modern science, technology, and medicine. Global warming, reproductive medicine, AIDS, and other topical cases prompt students to view science-society interactions as problematic and complex. Will not receive credit for SOCI 30 and SOCL 30.", + "edges_from": [], + "edges_to": [], + "id": 1195, + "label": "SOCI 30", + "title": "Science, Technology, and Society (4)" + }, + { + "dept": "MUS", + "description": "A study of opera masterworks that often coincide with operas presented in the San Diego Opera season. Class consists of lectures, listening labs, live performances, and opera on video. ", + "edges_from": [], + "edges_to": [], + "id": 1196, + "label": "MUS 12", + "title": "Opera (4)" + }, + { + "dept": "MUS", + "description": "Through surveying selected musical traditions and practices from around the world, this course explores the ways in which music both reflects and affects social, cultural, and ecological relationships. Specific case studies will be covered through lectures, films, and listening sessions. ", + "edges_from": [], + "edges_to": [], + "id": 1197, + "label": "MUS 13", + "title": "Worlds of Music (4)" + }, + { + "dept": "MUS", + "description": "A course on folk music of the world, covered through lectures, films, and listening sessions devoted to detailed discussion of music indigenous to varying countries/areas of the world. Topics vary from year to year. May be repeated once for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1198, + "label": "MUS 11", + "title": "Folk Music (4)" + }, + { + "dept": "MUS", + "description": "This course will explore The Beatles from musical, cultural, historical, technological, and critical angles. It will place them in context, examining their assorted confluences and wide influences. The group will be critically examined as artists, innovators, and public personalities. Listening, watching, and discussion will provide a broader, deeper, and more personal understanding of the group\u2019s enduring appeal. ", + "edges_from": [], + "edges_to": [], + "id": 1199, + "label": "MUS 16", + "title": "The Beatles (4)" + }, + { + "dept": "MUS", + "description": "This class presents a broad chronological overview of the development of hip-hop as a musical form from the late 1970s through today. It examines the development of the style in relation to direct context and to earlier African American musical and cultural forms and considers the technological and legal issues that have impacted its development. The class is listening intensive and students will be expected to know and recognize essential structures and production techniques. ", + "edges_from": [], + "edges_to": [], + "id": 1200, + "label": "MUS 17", + "title": "Hip-Hop (4)" + }, + { + "dept": "MUS", + "description": "This course offers opportunities to prepare oneself for experiences with new music (through preview lectures), hear performances (by visiting or faculty artists), to discuss each event informally with a faculty panel: an effort to foster informed listening to the new in music. ", + "edges_from": [], + "edges_to": [], + "id": 1201, + "label": "MUS 14", + "title": "Contemporary Music (4)" + }, + { + "dept": "MUS", + "description": "A course on popular music from different time periods, covered through lectures, films, and listening sessions. Topics vary from year to year. May be repeated once for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1202, + "label": "MUS 15", + "title": "Popular Music (4)" + }, + { + "dept": "MUS", + "description": "A survey of Eastern European Jewish folk music, Yiddish theatre and popular song, and their transition to America. Credit not allowed for MUS 18 and JUDA 18. (Cross-listed with JUDA 18.) ", + "edges_from": [], + "edges_to": [], + "id": 1203, + "label": "MUS 18", + "title": "Klezmer Music (4)" + }, + { + "dept": "PHYS", + "description": "Gaseous nebulae, molecular clouds, ionized", + "edges_from": [], + "edges_to": [], + "id": 1204, + "label": "PHYS 224", + "title": "Physics of the Interstellar Medium (4)" + }, + { + "dept": "EDS", + "description": "Last course in a three-course sequence. It provides pedagogical methods for multiple subject teaching. General teaching methods are integrated into a single intercurricular course of study by emphasizing activity/inquiry techniques of instruction. ", + "edges_from": [ + 1206 + ], + "edges_to": [], + "id": 1205, + "label": "EDS 361C", + "title": "Innovative Instructional Practices III (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [ + 5840 + ], + "edges_to": [ + 1205 + ], + "id": 1206, + "label": "EDS 361B", + "title": "" + }, + { + "dept": "PHYS", + "description": "The structure and dynamics of galaxies. Topics include potential theory, the theory of stellar orbits, self-consistent equilibria of stellar systems, stability and dynamics of stellar systems including relaxation and approach to equilibrium. Collisions between galaxies, galactic evolution, dark matter, and galaxy formation.", + "edges_from": [], + "edges_to": [], + "id": 1207, + "label": "PHYS 226", + "title": "Galaxies and Galactic Dynamics (4)" + }, + { + "dept": "PHYS", + "description": "An advanced survey of topics in physical cosmology. The Friedmann models and the large-scale structure of the universe, including the observational determination of Ho (the Hubble constant) and qo (the deceleration parameter). Galaxy number counts. A systematic exposition of the physics of the early universe, including vacuum phase transitions; inflation; the generation of net baryon number, fluctuations, topological defects and textures. Primordial nucleosynthesis, both standard and nonstandard models. Growth and decay of adiabatic and isocurvature density fluctuations. Discussion of dark matter candidates and constraints from observation and experiment. Nucleocosmo-chronology and the determination of the age of the universe.", + "edges_from": [], + "edges_to": [], + "id": 1208, + "label": "PHYS 227", + "title": "Cosmology (4)" + }, + { + "dept": "PHYS", + "description": "Study of group theoretical methods with applications to problems in high energy, atomic, and condensed matter physics. Representation theory, tensor methods, Clebsh-Gordan series. Young tableaux. The course will cover discrete groups, Lie groups and Lie algebras, with emphasis on permutation, orthogonal, and unitary groups. ", + "edges_from": [ + 1210 + ], + "edges_to": [], + "id": 1209, + "label": "PHYS 220", + "title": "Group Theoretical Methods in Physics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 1209 + ], + "id": 1210, + "label": "PHYS 212C", + "title": "" + }, + { + "dept": "PHYS", + "description": "Energy generation, flow, hydrostatic equilibrium,", + "edges_from": [], + "edges_to": [], + "id": 1211, + "label": "PHYS 223", + "title": "Stellar Structure and Evolution (4)" + }, + { + "dept": "GPEC", + "description": "Effects of fiscal and monetary policies on aggregate variables such as output, nominal and real interest rates, price level, and employment. Additional topics include the inflation/ unemployment trade-off, budget deficit, and economic growth. Renumbered from IRGN 431. Students may not receive credit for GPEC 431 and IRGN 431.", + "edges_from": [], + "edges_to": [], + "id": 1212, + "label": "GPEC 431", + "title": "Fiscal and Monetary Policy (4)" + }, + { + "dept": "GPEC", + "description": "The goals of the course are to help students acquire analytic skills used in the study of labor economics and international migration. We examine the causes of immigration, the consequences of immigration for wages and employment in sending and receiving countries, and policies governing high-skilled immigration, undocumented immigration, and refugees. Students produce an original project that demonstrates their master of quantitative tools used in economics. Renumbered from IRGN 432. Students may not receive credit for GPEC 432 and IRGN 432.", + "edges_from": [], + "edges_to": [], + "id": 1213, + "label": "GPEC 432", + "title": "Immigration and Immigration Policy (4)" + }, + { + "dept": "PHYS", + "description": "Astrophysics and Compact Objects (4)", + "edges_from": [], + "edges_to": [], + "id": 1214, + "label": "PHYS 228", + "title": "High-Energy" + }, + { + "dept": "GPEC", + "description": "This course helps students master analytical tools used by international economists. Topics covered include the causes of international trade, how trade agreements affect global commerce, and the labor-market consequences of globalization. The course is intensive in the use of data. Students produce an original econometrics project that demonstrates their quantitative aptitude in economics. Renumbered from IRGN 435. Students may not receive credit for GPEC 435 and IRGN 435.", + "edges_from": [], + "edges_to": [], + "id": 1215, + "label": "GPEC 435", + "title": "Topics in International Trade (4)" + }, + { + "dept": "VIS", + "description": "Using a wide range of nineteenth-century texts, this course will offer close discussions of romantic criticism and aesthetic philosophy (ideas of originality, genius, and nature); the conditions of \u201cmodern life;\u201d realism and naturalism; science and photography; and questions of form, expression, symbolism, and history. This is a seminar course. Recommended preparation: two upper-division art history courses. ", + "edges_from": [ + 349 + ], + "edges_to": [], + "id": 1216, + "label": "VIS 113AN", + "title": "History of Criticism I: Early Modern (4)" + }, + { + "dept": "MATH", + "description": "Rounding and discretization errors. Calculation of roots of polynomials and nonlinear equations. Interpolation. Approximation of functions. Knowledge of programming recommended. ", + "edges_from": [ + 1218 + ], + "edges_to": [ + 4523 + ], + "id": 1217, + "label": "MATH 170B", + "title": "Introduction to Numerical Analysis: Approximation and Nonlinear Equations (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1217 + ], + "id": 1218, + "label": "MATH 170A", + "title": "" + }, + { + "dept": "COGS", + "description": "Statistical methods for analyzing behavioral data. A mathematically sophisticated course covering both classical and Bayesian statistical methods for estimation, hypothesis testing, regression, and model comparison. Emphasis on both mathematical understanding of statistical methods as well as common applications. ", + "edges_from": [ + 169, + 171, + 1220 + ], + "edges_to": [], + "id": 1219, + "label": "COGS 118D", + "title": "Mathematical Statistics for Behavioral Data Analysis (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5281, + 1219, + 5412, + 3976, + 1225, + 1228, + 5197, + 168, + 1843, + 5973, + 4892, + 4894 + ], + "id": 1220, + "label": "MATH 180A", + "title": "" + }, + { + "dept": "COGS", + "description": "This course will cover theoretical foundations and practical applications of signal processing to neural data. Topics include EEG/field potential methods (filtering, Fourier (spectral) analysis, coherence) and spike train analysis (reverse correlation, spike sorting, multielectrode recordings). Some applications to neural imaging (optical microscopy, fMRI) data will also be discussed. ", + "edges_from": [ + 1222, + 1223, + 1224, + 169, + 171, + 436 + ], + "edges_to": [], + "id": 1221, + "label": "COGS 118C", + "title": "Neural Signal Processing (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 2099 + ], + "edges_to": [ + 1221, + 1223, + 4265, + 5197, + 2127, + 5745, + 2354, + 1972, + 1974 + ], + "id": 1222, + "label": "COGS 14B", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 1413, + 1222, + 169, + 1226, + 171, + 1775, + 1776 + ], + "edges_to": [ + 5976, + 5975, + 1221, + 5974, + 5973 + ], + "id": 1223, + "label": "COGS 109", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 1776, + 1226, + 1413, + 1775 + ], + "edges_to": [ + 5975, + 1221, + 5974, + 5973 + ], + "id": 1224, + "label": "COGS 108", + "title": "" + }, + { + "dept": "COGS", + "description": "This course, with Cognitive Science 118A, forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118B include: maximum likelihood estimation, Bayesian parameter estimation, clustering, principal component analysis, and some application areas. ", + "edges_from": [ + 1227, + 1220, + 169, + 1226, + 171, + 572 + ], + "edges_to": [ + 5976, + 5972, + 5975 + ], + "id": 1225, + "label": "COGS 118B", + "title": "Introduction to Machine Learning II (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3, + 5892, + 4293, + 1223, + 1224, + 1225, + 2154, + 1228, + 1773, + 2153, + 5974, + 2804, + 3221, + 3414, + 9, + 4120, + 5050, + 3453, + 5973 + ], + "id": 1226, + "label": "CSE 11", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3, + 5892, + 4293, + 1225, + 2154, + 1228, + 2153, + 3414, + 9, + 5050, + 3453 + ], + "id": 1227, + "label": "CSE 8B", + "title": "" + }, + { + "dept": "COGS", + "description": "This course with COGS 118B forms a rigorous introduction to machine learning. Cognitive Science 118A-B may be taken in either order. Topics in 118A include: regression, nearest neighborhood, decision tree, support vector machine, and ensemble classifiers. ", + "edges_from": [ + 1227, + 1220, + 169, + 1226, + 171, + 572 + ], + "edges_to": [ + 5976, + 5972, + 5975 + ], + "id": 1228, + "label": "COGS 118A", + "title": "Introduction to Machine Learning I (4)" + }, + { + "dept": "SE", + "description": "for Structural and Aerospace Engineering (4)", + "edges_from": [], + "edges_to": [ + 1231 + ], + "id": 1229, + "label": "SE 271", + "title": "Solid Mechanics" + }, + { + "dept": "SE", + "description": "Overview of inelastic behavior of materials. Models of plasticity, viscoplasticity, viscoelasticity. Micromechanics and modeling of damage. Fatigue phenomena. Fracture mechanics. Processes and models of the failure of materials. Students may not receive credit for SE 273 and MAE 231C. ", + "edges_from": [], + "edges_to": [], + "id": 1230, + "label": "SE 273", + "title": "Inelasticity (4)" + }, + { + "dept": "SE", + "description": "Development, formulation, and application of field equations of elasticity and variational principles for structural applications in civil and aerospace area. Use of plane stress and plane strain formulation, solution of typical boundary value problems. ", + "edges_from": [ + 1229 + ], + "edges_to": [], + "id": 1231, + "label": "SE 272", + "title": "Theory of Elasticity (4)" + }, + { + "dept": "SE", + "description": "Finite Element Methods for Solid Mechanics (4)", + "edges_from": [], + "edges_to": [], + "id": 1232, + "label": "SE 274", + "title": "Nonlinear" + }, + { + "dept": "SE", + "description": "This course will provide an overview of the latest technology for evaluating and improving the accuracy and validity of linear and nonlinear finite element models, solution verification, finite element model validation, sensitivity analysis, uncertainty analysis, and test-analysis correlation. ", + "edges_from": [ + 1234, + 1235 + ], + "edges_to": [], + "id": 1233, + "label": "SE 277", + "title": "Error Control in Finite Element Analysis (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1233, + 3127 + ], + "id": 1234, + "label": "MAE 232B", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 1233 + ], + "id": 1235, + "label": "SE 232B", + "title": "" + }, + { + "dept": "SE", + "description": "Meshfree approximation theories (moving least-squares, reproducing kernel, partition of unity, radial basis), Galerkin meshfree methods, collocation meshfree methods, imposition of boundary conditions, domain integration, stability, nonlinear meshfree method for hyperelasticity and plasticity, meshfree methods for fracture and plate/shell problems.\u00a0", + "edges_from": [ + 1237, + 1238 + ], + "edges_to": [], + "id": 1236, + "label": "SE 279", + "title": "Meshfree Methods for Linear and Nonlinear Mechanics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1451, + 1236, + 3127 + ], + "id": 1237, + "label": "MAE 232A", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 1451, + 1236, + 3127 + ], + "id": 1238, + "label": "SE 276A", + "title": "" + }, + { + "dept": "MUS", + "description": "This course, second in a three-quarter sequence, focuses on understanding music theory and in developing musical ability through rhythm, ear training, and sight singing exercises. Topics include major and minor scales, seventh-chords, transposition, compound meter and rudiments of musical form. ", + "edges_from": [ + 1240 + ], + "edges_to": [ + 1241 + ], + "id": 1239, + "label": "MUS 1B", + "title": "Fundamentals of Music B (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1239 + ], + "id": 1240, + "label": "MUS 1A", + "title": "" + }, + { + "dept": "MUS", + "description": "This course, third in a three-quarter sequence, offers solid foundation in musical literacy through exercises such as harmonic and melodic dictation, sight singing exercises and rhythm in various meters. Topics include complex rhythm, harmony, and basic keyboard skills. ", + "edges_from": [ + 1239 + ], + "edges_to": [ + 3983 + ], + "id": 1241, + "label": "MUS 1C", + "title": "Fundamentals of Music C (4)" + }, + { + "dept": "LTSP", + "description": "Consideration of one or more major figures, texts, trends, or problems in Spanish American prose. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1242, + "label": "LTSP 258", + "title": "Spanish American Prose (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1A. ", + "edges_from": [], + "edges_to": [], + "id": 1243, + "label": "Linguistics/Italian (LIIT) 1AX", + "title": "Analysis of Italian (2.5)" + }, + { + "dept": "COMM", + "description": "Movement is central to our lives. This course draws on the latest research into how we travel, trade, and move. Diverse topics will be covered, including kids in cars, the New York subway, and theories of mobility. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 1244, + "label": "COMM 105M", + "title": "CT: Mobile Communication (4)" + }, + { + "dept": "POLI", + "description": "Independent work by graduate students engaged in research and writing of second-year paper and doctoral dissertation, under direct supervision of advisor.", + "edges_from": [], + "edges_to": [], + "id": 1245, + "label": "POLI 299", + "title": "Dissertation Research (1\u201312)" + }, + { + "dept": "MAE", + "description": "Computer programming in Matlab with elementary numerical analysis of engineering problems. Arithmetic and logical operations, arrays, graphical presentation of computations, symbolic mathematics, solutions of equations, and introduction to data structures. ", + "edges_from": [ + 849, + 419 + ], + "edges_to": [], + "id": 1246, + "label": "MAE 08", + "title": "Matlab Programming for Engineering Analysis (4)" + }, + { + "dept": "MAE", + "description": "An introduction to topics in aeronautical and astronautical engineering including aerodynamics, propulsion, flight mechanics, structures, materials, orbital mechanics, design, mission planning, and environments. General topics include historical background, career opportunities, engineering ethics, and professionalism. ", + "edges_from": [], + "edges_to": [], + "id": 1247, + "label": "MAE 02", + "title": "Introduction to Aerospace Engineering (4)" + }, + { + "dept": "COMM", + "description": "Course considers computer games both as media and as sites of communication. Games are studied through hands-on play and texts from a variety of disciplinary perspectives. Course encompasses commercial, academic, and independent games. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 1248, + "label": "COMM 105G", + "title": "CT: Computer Games Studies (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SE 7.) Spatial visualization is the ability to manipulate 2-D and 3-D shapes in one\u2019s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ", + "edges_from": [], + "edges_to": [], + "id": 1249, + "label": "MAE 07", + "title": "Spatial Visualization (1)" + }, + { + "dept": "MATH", + "description": "Thesis Research for Undergraduates (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 1250, + "label": "MATH 199H", + "title": "Honors" + }, + { + "dept": "MAE", + "description": "Introductory course for nonengineering majors. Use of computers in solving problems; applications from life sciences, physical sciences, and engineering. Students run existing computer programs and complete some programming in BASIC. ", + "edges_from": [], + "edges_to": [], + "id": 1251, + "label": "MAE 05", + "title": "Quantitative Computer Skills (4)" + }, + { + "dept": "LTWL", + "description": "This course examines histories and theories of cinema and Islam. It offers an overview on intersections between film and religious experience in various Muslim cultures, and how such experiences are ultimately grounded in shifting historical and social settings.", + "edges_from": [], + "edges_to": [], + "id": 1252, + "label": "LTWL 134", + "title": "Cinema and Islam (4)" + }, + { + "dept": "LTWL", + "description": "This course explores the writings of Buddhists who actively engage with the problems of the world: social, environmental, economic, political. We will examine the historical development of engaged Buddhism in light of traditional Buddhist concepts of morality, interdependence, and liberation.", + "edges_from": [], + "edges_to": [], + "id": 1253, + "label": "LTWL 136", + "title": "Socially Engaged Buddhism (4)" + }, + { + "dept": "LTWL", + "description": "Selected topics, texts, and problems in the study of religion. May be repeated for credit when content varies.", + "edges_from": [], + "edges_to": [], + "id": 1254, + "label": "LTWL 138", + "title": "Critical Religion Studies (4)" + }, + { + "dept": "COMM", + "description": "This course examines photographic technologies as a set of instruments and practices that modern societies have developed and used to tell stories about themselves and make particular claims about truth and reality, focusing on the domains of science, policing, journalism, advertising, and self-expression. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 1255, + "label": "COMM 105P", + "title": "CT: Photographic Technologies (4)" + }, + { + "dept": "EDS", + "description": "Revisit students\u2019 learning difficulties in mathematics in more depth to prepare students to make meaningful observations of how K\u201312 teachers deal with these difficulties. Explore how instruction can use students\u2019 knowledge to pose problems that stimulate students\u2019 intellectual curiosity.", + "edges_from": [], + "edges_to": [], + "id": 1256, + "label": "EDS 30/Math 95", + "title": "Introduction to Math Teaching (2)" + }, + { + "dept": "USP", + "description": "This course covers the methods and procedures utilized in development from inception to completion. Topics include initial planning, project feasibility and decision-making, partnerships, financing, design, entitlement and approvals, site acquisition, construction management, project completion, leasing, and asset management. ", + "edges_from": [], + "edges_to": [], + "id": 1257, + "label": "USP 151", + "title": "Real Estate Planning and Development (4)" + }, + { + "dept": "USP", + "description": "This course reviews the legal issues, processes, and institutions involved in real estate. Topics include principles of real property law, legislative and judicial institutions, land use and environmental regulation, financial instruments, property transactions, and forms of investment and development entities. ", + "edges_from": [], + "edges_to": [], + "id": 1258, + "label": "USP 150", + "title": "Real Estate and Development Law and Regulation (4)" + }, + { + "dept": "USP", + "description": "This course examines the analysis of demand for real estate products and site-specific real estate development projects. Consideration is given to relevant factors such as economic change, social attitudes, and changing laws. ", + "edges_from": [], + "edges_to": [], + "id": 1259, + "label": "USP 153", + "title": "Real Estate and Development Market Analysis (4)" + }, + { + "dept": "USP", + "description": "This course investigates the institutions, instruments, and structures by which investment in real estate is financed. It reviews capital markets, the sources and uses of real estate funds, and the role of government in real estate finance. ", + "edges_from": [], + "edges_to": [], + "id": 1260, + "label": "USP 152", + "title": "Real Estate Development Finance and Investment (4)" + }, + { + "dept": "USP", + "description": "This course compares real estate markets in Asia, Europe, the Middle East, and Latin America. It explores the factors that affect these regions\u2019 real estate economies including finance in city systems, emerging markets, development trends, demographic shifts, and urban planning. ", + "edges_from": [], + "edges_to": [], + "id": 1261, + "label": "USP 155", + "title": "Real Estate Development in Global and Comparative Perspective (4)" + }, + { + "dept": "USP", + "description": "(Same as Political Science 111B.) Discuss the idea of justice from multiple perspectives: theory, philosophy, institutions, markets, social mobilization, politics, and environment. Examine the assets and capabilities of diverse justice-seeking organizations and movements aimed at improving quality of life and place locally, regionally, and globally. ", + "edges_from": [], + "edges_to": [], + "id": 1262, + "label": "USP 154", + "title": "Global Justice in Theory and Action (4)" + }, + { + "dept": "PHYS", + "description": "Physics laboratory course to accompany Physics 1A. Experiments in Mechanics. ", + "edges_from": [ + 1264, + 849, + 419, + 420, + 1265 + ], + "edges_to": [ + 1264, + 712, + 711 + ], + "id": 1263, + "label": "PHYS 1AL", + "title": "Mechanics Laboratory (2)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 849, + 419, + 420, + 1265, + 1263 + ], + "edges_to": [ + 712, + 3729, + 711, + 1263 + ], + "id": 1264, + "label": "PHYS 1A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 419, + 420 + ], + "edges_to": [ + 3777, + 1988, + 709, + 711, + 712, + 1263, + 1264, + 596, + 405, + 133 + ], + "id": 1265, + "label": "MATH 10B", + "title": "" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in several complex variables. In recent years, topics have included formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [ + 1267, + 1268 + ], + "edges_to": [ + 1269 + ], + "id": 1266, + "label": "MATH 221A", + "title": "Topics in Several Complex Variables (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1266 + ], + "id": 1267, + "label": "MATH 200A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1266 + ], + "id": 1268, + "label": "MATH 220C", + "title": "" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in several complex variables. Topics include: formal and convergent power series, Weierstrass preparation theorem, Cartan-Ruckert theorem, analytic sets, mapping theorems, domains of holomorphy, proper holomorphic mappings, complex manifolds and modifications. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 1266 + ], + "edges_to": [], + "id": 1269, + "label": "MATH 221B", + "title": "Further Topics in Several Complex Variables (4)" + }, + { + "dept": "SOCI", + "description": "This course examines major formulations of the relationship between law and culture in the sociological literature. Topics include formal law versus embedded law, law and morality, law and the self, legal consciousness, the rule of law, and the construction of legality. ", + "edges_from": [ + 1270, + 1271 + ], + "edges_to": [ + 1270 + ], + "id": 1270, + "label": "SOCI 160E", + "title": "Law and Culture (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 1270 + ], + "id": 1271, + "label": "SOCB 160L", + "title": "" + }, + { + "dept": "NEU", + "description": "Laboratory research under the supervision of individual members of the faculty of the neurosciences department in one or a combination of neurosciences disciplines, e.g., neuroanatomy, neurophysiology, neurochemistry, neuropharmacology. (P/NP grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 1272, + "label": "NEU 199", + "title": "Independent Research (2 or 4)" + }, + { + "dept": "LTSP", + "description": "Spanish: Spanish for Bilingual Speakers (4)", + "edges_from": [], + "edges_to": [], + "id": 1273, + "label": "LTSP 2D", + "title": "Intermediate/Advanced" + }, + { + "dept": "LTSP", + "description": "Readings and Composition for Bilingual Speakers (4)", + "edges_from": [], + "edges_to": [ + 200, + 198, + 199 + ], + "id": 1274, + "label": "LTSP 2E", + "title": "Advanced" + }, + { + "dept": "LTSP", + "description": "Spanish II: Readings and Composition (5)", + "edges_from": [], + "edges_to": [], + "id": 1275, + "label": "LTSP 2B", + "title": "Intermediate" + }, + { + "dept": "LTSP", + "description": "Spanish III: Cultural Topics and Composition (4)", + "edges_from": [], + "edges_to": [ + 200, + 198, + 199 + ], + "id": 1276, + "label": "LTSP 2C", + "title": "Intermediate" + }, + { + "dept": "LTSP", + "description": "Course is taught in Spanish, emphasizing the development of reading ability, listening comprehension, and writing skills. It includes grammar review, weekly compositions, and class discussions. Successful completion of LTSP 2A satisfies the requirement for language proficiency in Revelle College. ", + "edges_from": [ + 1280, + 1278, + 1279 + ], + "edges_to": [], + "id": 1277, + "label": "LTSP 2A", + "title": "Intermediate Spanish I: Foundations (5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 4897, + 1277 + ], + "id": 1278, + "label": "LISP 1DX", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 1674, + 1277, + 2693 + ], + "id": 1279, + "label": "LISP 1C", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 4897, + 1277 + ], + "id": 1280, + "label": "LISP 1D", + "title": "" + }, + { + "dept": "ANTH", + "description": "The seminar will follow recent advances and key discoveries in the coastal and maritime archaeology of Israel and the eastern Mediterranean from the Neolithic period to the end of the classical period. Topics include methodologies of underwater excavations and surveys, sunken Neolithic villages of the Carmel coast, archaeology and geoarchaeology of Canaanite and Phoenician harbors, shipwrecks of the eastern Mediterranean and maritime trade, the Anthropocene, sea level changes, and paleoclimate. ", + "edges_from": [], + "edges_to": [], + "id": 1281, + "label": "ANTH 265", + "title": "Marine and Coastal Archaeology: Israel and the Neighboring Lands (4)" + }, + { + "dept": "ANTH", + "description": "This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANBI 134. ", + "edges_from": [], + "edges_to": [], + "id": 1282, + "label": "ANTH 264", + "title": "Human Evolutionary Genetics (4)" + }, + { + "dept": "ANTH", + "description": "Despite being foundational to the discipline of anthropology, ethnographic methods are often mystifying to graduate students. Students are expected to simply go into their respective field sites armed with a notebook, voice recorder, and hope. Drawing on feminist and decolonial epistemologies, we will examine, critique, and reconstruct ethnography\u2019s dilemmas, changing forms, and ethical stakes as we understand it as a particular mode of writing and representation. ", + "edges_from": [], + "edges_to": [], + "id": 1283, + "label": "ANTH 267", + "title": "Decolonizing Ethnography: Ethics, Politics, and Praxis (4)" + }, + { + "dept": "ANTH", + "description": "This course interrogates the association of romantic love with modernity, egalitarianism, and choice. The focus is on how cultural political economy shapes desires and structures relationships. We consider how race, class, nation, gender, and sexuality reinforce or undermine status hierarchies. For example, we examine the concept of racial and transnational hypergamy, in which women, men, and trans people from lower status ethnic groups and developing countries \u201cmarry up.\u201d ", + "edges_from": [], + "edges_to": [], + "id": 1284, + "label": "ANTH 266", + "title": "Anthropology of Love (4)" + }, + { + "dept": "ANTH", + "description": "This seminar examines medical, psychological, and psychiatric anthropology through reading, discussion, and presentation of work 1) essential to the development of and 2) exemplifying the state of the art in these related fields. May be taken for credit up to two times. ", + "edges_from": [], + "edges_to": [], + "id": 1285, + "label": "ANTH 260", + "title": "Seminar in Medical and Psychological Anthropology (4)" + }, + { + "dept": "ANTH", + "description": "This graduate seminar discusses recent publications on topics related to human evolution and health in modern and ancient populations, using data beyond traditional genetics, including the microbiome, various levels of epigenetic regulation (DNA and histone modifications, micro and non-coding RNAs), telomeres, hormonal influences on the genome (e.g., cortisol, oxytocin), and gender-biased selection in reproductive success under stressful environments. ", + "edges_from": [], + "edges_to": [], + "id": 1286, + "label": "ANTH 263", + "title": "Beyond the Genome (4)" + }, + { + "dept": "ANTH", + "description": "Anthropology has long analyzed the relations between culture, economics, and politics. This seminar will examine these issues through ethnographic and historical accounts, engaging contemporary theory and debates. S/U grades only. May be taken for credit ten times. ", + "edges_from": [], + "edges_to": [], + "id": 1287, + "label": "ANTH 262", + "title": "Critical Anthropology Workshop (4)" + }, + { + "dept": "TDGR", + "description": "One-on-one laboratory workshop that examines practical applications of accents, speech and voice work, dialect, movement and combat work specific and ancillary to the productions in which the students have been cast. ", + "edges_from": [], + "edges_to": [], + "id": 1288, + "label": "TDGR 212", + "title": "Acting Practicum (2)" + }, + { + "dept": "ANSC", + "description": "What can we learn by looking at a society\u2019s ideas about marriage, intimate relationships, and family? Why do these \u201cprivate\u201d institutions draw so much public scrutiny and debate? How are they linked to concepts of national progress, individualism, religion, status, or morality? We will explore these questions in Western and non-Western contexts through such topics as polygamy, same-sex marriage, transnational marriage, and the global impact of Western ideas of love and companionate marriage. ", + "edges_from": [], + "edges_to": [], + "id": 1289, + "label": "ANSC 159", + "title": "The Anthropology of Marriage (4)" + }, + { + "dept": "ANSC", + "description": "Starting at the crisis of 2008, but with beginnings in the early 1980s, the theme of this course is the dynamic mechanisms that lead to crisis, systemic and otherwise. It will deal with historical and archaeological discussions of particular cases of breakdowns, collapses, and transformations. It also deals extensively with crisis misrecognition and its causes from moral dramas, witchcraft epidemics, intimate violence, overt conflict, ethnicity, etc. ", + "edges_from": [], + "edges_to": [], + "id": 1290, + "label": "ANSC 158", + "title": "Comparative Anthropology of Crisis (4)" + }, + { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with TDHT 120.) This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for TDHT 120 and ETHN 163G.", + "edges_from": [], + "edges_to": [], + "id": 1291, + "label": "ETHN 163G", + "title": "Indigenous Theatre and Performance (4)" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 93 + ], + "id": 1292, + "label": "ANTH 101", + "title": "" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 93 + ], + "id": 1293, + "label": "ANSC 123", + "title": "" + }, + { + "dept": "ANSC", + "description": "How and why is gender important to religious practices, doctrines, and ideologies? Focusing on modern Islam, Christianity, and Judaism, we will look at women\u2019s involvement in religious movements as well as religious debates over issues of gender, sexuality, and marriage. ", + "edges_from": [], + "edges_to": [], + "id": 1294, + "label": "ANSC 154", + "title": "Gender and Religion (4)" + }, + { + "dept": "ANSC", + "description": "This course examines historical and cultural dimensions of madness as depicted in iconic and popular films such as \u201cOne Flew Over the Cuckoo\u2019s Nest,\u201d \u201cGirl Interrupted,\u201d \u201cSilver Linings Playbook,\u201d along with ethnographic and artistic films that utilize anthropological approaches. ", + "edges_from": [], + "edges_to": [], + "id": 1295, + "label": "ANSC 156", + "title": "Mad Films: Cultural Studies of Mental Illness in Cinema (4)" + }, + { + "dept": "ANSC", + "description": "This course examines ethnographies of the US-Mexican borderlands to understand how the binational relationship shapes social life on both sides of the border. Topics discussed will include the maquiladora industry, drug trafficking, militarization, migration, tourism, missionary work, feminicide, and prostitution. ", + "edges_from": [], + "edges_to": [], + "id": 1296, + "label": "ANSC 151", + "title": "U.S.-Mexico Border Ethnographies (4)" + }, + { + "dept": "ANSC", + "description": "This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcome in non-European and North American countries are explored. ", + "edges_from": [], + "edges_to": [], + "id": 1297, + "label": "ANSC 150", + "title": "Culture and Mental Health (4)" + }, + { + "dept": "HISC", + "description": "Explores the origin of clinical method, the hospital, internal surgery, and the medical laboratory, as well as the historical roots of debates over health-care reform, genetic determinism, and the medicalization of society.", + "edges_from": [], + "edges_to": [], + "id": 1298, + "label": "HISC 115", + "title": "History of Modern Medicine (4)" + }, + { + "dept": "HISC", + "description": "The Origin of Species by means of Natural Selection, and its scientific, intellectual, and political legacies. Topics include social Darwinism, eugenics, Nazi racial hygiene, population control, neo-Malthusianism in the modern environmental movement.", + "edges_from": [], + "edges_to": [], + "id": 1299, + "label": "HISC 114", + "title": "The Darwinian Legacy (4)" + }, + { + "dept": "HISC", + "description": "A survey of the history of the neurosciences from the seventeenth century to the present, exploring the political, philosophical, cultural, aesthetic and ethical aspects of research into the workings of the human brain.", + "edges_from": [], + "edges_to": [], + "id": 1300, + "label": "HISC 117", + "title": "History of the Neurosciences (4)" + }, + { + "dept": "HISC", + "description": "The story behind the postwar rise of bioethics\u2014medical", + "edges_from": [], + "edges_to": [], + "id": 1301, + "label": "HISC 116", + "title": "History of Bioethics (4)" + }, + { + "dept": "HISC", + "description": "Development of nuclear science and weapons\u20141930s to present\u2014including the discovery of radioactivity and fission, the Manhattan project, the bombings of Hiroshima and Nagasaki and end of WWII, the H-bomb, and legacies of nuclear proliferation, environmental damage, and radioactive waste.", + "edges_from": [], + "edges_to": [], + "id": 1302, + "label": "HISC 111", + "title": "The Atomic Bomb and the Atomic Age (4)" + }, + { + "dept": "HISC", + "description": "There was no such thing as a single, unchanging relationship between science and religion, and this is a course about it. Topics include the \u201cConflict Thesis,\u201d natural theology, the Galileo Affair, Darwinism, the antievolution crusade, creationism, secularization, atheism, and psychoanalysis. +", + "edges_from": [], + "edges_to": [], + "id": 1303, + "label": "HISC 110", + "title": "Historical Encounters of Science and Religion (4)" + }, + { + "dept": "HISC", + "description": "This course explores contemporary issues in biology, ethics, and society. We will start by examining early cases of biopolitics, like social Darwinism and eugenics, and proceed to more recent issues, such as genetic engineering, patenting life, and the pharmaceutical industry.", + "edges_from": [], + "edges_to": [], + "id": 1304, + "label": "HISC 119", + "title": "Biology and Society (4)" + }, + { + "dept": "HISC", + "description": "Analyzes the history of sexology as a series of episodes in the science of human difference, from the European reception of the first translation of the Kama Sutra in 1883 to the search for the \u201cgay gene\u201d in the 1990s.", + "edges_from": [], + "edges_to": [], + "id": 1305, + "label": "HISC 118", + "title": "History of Sexology (4)" + }, + { + "dept": "LTEN", + "description": "A lecture/discussion course exploring the rich and varied achievements of Shakespeare\u2019s later plays, including the major tragedies and late romances. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare\u2019s theatre and his society.", + "edges_from": [], + "edges_to": [], + "id": 1306, + "label": "LTEN 113", + "title": "Shakespeare II: The Jacobean Period (4)" + }, + { + "dept": "LTEN", + "description": "A lecture/discussion course exploring the development of Shakespeare\u2019s dramatic powers in comedy, history, and tragedy, from the early plays to the middle of his career. Dramatic forms, themes, characters, and styles will be studied in the contexts of Shakespeare\u2019s theatre and his society.", + "edges_from": [], + "edges_to": [], + "id": 1307, + "label": "LTEN 112", + "title": "Shakespeare I: The Elizabethan Period (4)" + }, + { + "dept": "LTEN", + "description": "Major literary works of the Renaissance, an exciting period of social and cultural transformation in England as elsewhere in Europe. Topics may include a central theme (e.g., humanism, reformation, revolution), a genre (e.g., pastoral), or comparison with other arts and sciences. May be repeated up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1308, + "label": "LTEN 110", + "title": "Topics: The Renaissance (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1309, + "label": "LTEN 117", + "title": "Topics: The Seventeenth Century (4)" + }, + { + "dept": "LIGN", + "description": "Modularity and models of language processing, basic neurophysiology,", + "edges_from": [], + "edges_to": [], + "id": 1310, + "label": "LIGN 181", + "title": "Language Processing in the Brain (4)" + }, + { + "dept": "LIGN", + "description": "The mind/body problem, modularity,", + "edges_from": [], + "edges_to": [], + "id": 1311, + "label": "LIGN 180", + "title": "Language Representation in the Brain (4)" + }, + { + "dept": "PHYS", + "description": "Special theory of relativity, covariant formulation of electrodynamics, radiation from current distributions and accelerated charges, multipole radiation fields, waveguides and resonant cavities. ", + "edges_from": [ + 1313 + ], + "edges_to": [], + "id": 1312, + "label": "PHYS 203B", + "title": "Advanced Classical Electrodynamics II (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 1312 + ], + "id": 1313, + "label": "PHYS 203A", + "title": "" + }, + { + "dept": "ECON", + "description": "This course presents a selection of empirical applications and advanced topics that build on the material covered in Econ 102, Globalization. Students have the opportunity to analyze global trade and capital market data and to prepare a presentation and brief paper on a specific topic. ", + "edges_from": [ + 403 + ], + "edges_to": [], + "id": 1314, + "label": "ECON 102T", + "title": "Advanced Topic in Globalization (2)" + }, + { + "dept": "ENVR", + "description": "Explores the diverse ecosystems of coastal San Diego County (salt marsh, rocky intertidal, sandy beach, etc.) in the classroom and in the field with attention to basic principles of field ecology, natural history, and techniques for collecting ecological data. Course and/or materials fee may apply. ", + "edges_from": [], + "edges_to": [], + "id": 1315, + "label": "ENVR 120", + "title": "Coastal Ecology (4)" + }, + { + "dept": "MATH", + "description": "Unconstrained optimization: linear least squares; randomized linear least squares; method(s) of steepest descent; line-search methods; conjugate-gradient method; comparing the efficiency of methods; randomized/stochastic methods; nonlinear least squares; norm minimization methods. Convex constrained optimization: optimality conditions; convex programming; Lagrangian relaxation; the method of multipliers; the alternating direction method of multipliers; minimizing combinations of norms. ", + "edges_from": [ + 1317 + ], + "edges_to": [], + "id": 1316, + "label": "MATH 173B", + "title": "Optimization Methods for Data Science II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 169, + 132, + 573, + 407 + ], + "edges_to": [ + 1316 + ], + "id": 1317, + "label": "MATH 173A", + "title": "" + }, + { + "dept": "MATH", + "description": "Elementary number theory with applications. Topics include", + "edges_from": [], + "edges_to": [], + "id": 1318, + "label": "MATH 104A", + "title": "Number Theory I (4)" + }, + { + "dept": "MATH", + "description": "II (4)", + "edges_from": [], + "edges_to": [], + "id": 1319, + "label": "MATH 104B", + "title": "Number Theory" + }, + { + "dept": "MATH", + "description": "Topics in algebraic and analytic number theory, with an advanced", + "edges_from": [], + "edges_to": [], + "id": 1320, + "label": "MATH 104C", + "title": "Number Theory III (4)" + }, + { + "dept": "ANAR", + "description": "The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500\u20131000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Course is offered during summer Study Abroad. Students may not receive credit for both ANAR 157 and ANAR 157S. ", + "edges_from": [], + "edges_to": [], + "id": 1321, + "label": "ANAR 157S", + "title": "Early Empires of the Andes: The Middle Horizon (4)" + }, + { + "dept": "LIGN", + "description": "Advanced material in special areas of the study of meaning and its relation to formal aspects of human language. May be taken for credit three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1322, + "label": "LIGN 235", + "title": "Topics in Semantics (2\u20134)" + }, + { + "dept": "LIGN", + "description": "Theories of semantic structure. The relation of meaning to grammar, and how it is to be accommodated in an overall model of linguistic organization. The application of formal semantics to the description of natural language.", + "edges_from": [], + "edges_to": [], + "id": 1323, + "label": "LIGN 230", + "title": "Semantics (4)" + }, + { + "dept": "LIGN", + "description": "(Same as Psychology 235.) This course will explore the development of concepts and linguistic meaning via classic case studies in semantics, including word learning, quantifier acquisition, and the foundations of mathematics. The course will draw on evidence from linguistics, the philosophy of language, and developmental psychology.", + "edges_from": [], + "edges_to": [], + "id": 1324, + "label": "LIGN 232", + "title": "Semantic Development (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 129.) This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. Students may not receive credit for GLBH 129 and ANSC 129.", + "edges_from": [], + "edges_to": [], + "id": 1325, + "label": "GLBH 129", + "title": "Meaning and Healing (4)" + }, + { + "dept": "MAE", + "description": "Competition\u2014Design, Build, and Fly Aircraft (1)", + "edges_from": [], + "edges_to": [], + "id": 1326, + "label": "MAE 92A", + "title": "Design" + }, + { + "dept": "NANO", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1327, + "label": "NANO 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "ANAR", + "description": "This course will examine archaeological evidence for the development of societies in the South American continent. From the initial arrival of populations through to the Inca period and the arrival of the Spaniards. ", + "edges_from": [], + "edges_to": [], + "id": 1328, + "label": "ANAR 156", + "title": "The Archaeology of South America (4)" + }, + { + "dept": "ANAR", + "description": "The civilizations of Wari and Tiwanaku built the first empires of Andean South America long before the Inca. Middle Horizon (AD 500\u20131000) mythohistory, urbanism, state origins, art, technology, agriculture, colonization, trade, and conquest are explored using ethnohistory and archaeological sources. Students may not receive credit for both ANAR 157S and ANAR 157. ", + "edges_from": [], + "edges_to": [], + "id": 1329, + "label": "ANAR 157", + "title": "Early Empires of the Andes: The Middle Horizon (4)" + }, + { + "dept": "ANAR", + "description": "Introduction to the archaeology of the ancient culture of Mexico from the early Olmec culture through the Postclassic Aztec, Tarascan, Zapotec, and Mixtec states. Agriculture; trade and exchange; political and social organization; kinship networks; religious system, ideology, and worldviews. ", + "edges_from": [], + "edges_to": [], + "id": 1330, + "label": "ANAR 154", + "title": "The Aztecs and their Ancestors (4)" + }, + { + "dept": "BIPN", + "description": "Coverage of the history of research, diagnosis, and treatment of common neuropsychiatric disorders. Comparisons will be made between primary research data and existing treatments, and on developing skills to digest scientific literature aimed at understanding the neuroscience of disease. ", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [], + "id": 1331, + "label": "BIPN 152", + "title": "The Healthy and Diseased Brain (4)" + }, + { + "dept": "BIPN", + "description": "Course will be taught from a research perspective, highlighting the biological pathways impacted by different neurological diseases. Each disease covered will be used to illustrate a key molecular/cellular pathway involved in proper neurological function. ", + "edges_from": [ + 242, + 589 + ], + "edges_to": [], + "id": 1332, + "label": "BIPN 150", + "title": "Diseases of the Nervous System (4)" + }, + { + "dept": "FMPH", + "description": "This practicum provides hand-on experience with biomedical research and data analysis. Working within a specific biomedical domain (e.g., cancer, genomics, or physical activity research), students will conduct original data analysis, and prepare or substantially contribute to a final project report. May be taken for credit up to five times. ", + "edges_from": [ + 1334, + 1335 + ], + "edges_to": [], + "id": 1333, + "label": "FMPH 241", + "title": "Biostatistics Rotation (3)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 1552, + 1335, + 1551 + ], + "edges_to": [ + 1545, + 1546, + 1547, + 1548, + 1549, + 1333, + 1336 + ], + "id": 1334, + "label": "FMPH 222", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [ + 1545, + 1546, + 1548, + 1549, + 1333, + 1334, + 1336 + ], + "id": 1335, + "label": "FMPH 221", + "title": "" + }, + { + "dept": "FMPH", + "description": "Biostatistics elective courses will be taught under this course heading. Courses will have a varying focus each year/quarter. Topics will include random field theory and image analysis, advanced statistical computing, Bayesian methods, and others. May be taken for credit up to three times. ", + "edges_from": [ + 1334, + 1335 + ], + "edges_to": [], + "id": 1336, + "label": "FMPH 242", + "title": "Advanced Topics in Biostatistics (4)" + }, + { + "dept": "NANO", + "description": "Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. Cross-listed with MATS 227, MAE 251 and Chem 222.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1337, + "label": "NANO 227", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "PHIL", + "description": "An investigation of a selected philosophical topic through", + "edges_from": [], + "edges_to": [], + "id": 1338, + "label": "PHIL 90", + "title": "Basic Problem in Philosophy (4)" + }, + { + "dept": "POLI", + "description": "This course examines the most critical areas in contemporary world politics. While the emphasis will be placed on American involvement in each crisis, an effort will be made to acquaint the student with its historical and political background. ", + "edges_from": [], + "edges_to": [], + "id": 1339, + "label": "POLI 142P", + "title": "Crisis Areas in World Politics (4)" + }, + { + "dept": "INTL", + "description": "Politics, and International Change (4)", + "edges_from": [], + "edges_to": [ + 1716 + ], + "id": 1340, + "label": "INTL 102", + "title": "Economics," + }, + { + "dept": "TDGR", + "description": "Advanced voice training designed to help the actor fuse voice, emotion, and body into a fully realized reflection of the text. (S/U grades only.) ", + "edges_from": [ + 1342 + ], + "edges_to": [], + "id": 1341, + "label": "TDGR 224A-B", + "title": "Voice for Theatre II (3-3)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1341 + ], + "id": 1342, + "label": "TDGR 224A", + "title": "" + }, + { + "dept": "SE", + "description": "Fluid statics, hydrostatic forces; integral and differential forms of conservation equations for mass, momentum, and energy; Bernoulli equation; dimensional analysis; viscous pipe flow; external flow, boundary layers; open channel flow. ", + "edges_from": [ + 26, + 571 + ], + "edges_to": [], + "id": 1343, + "label": "SE 115", + "title": "Fluid Mechanics for Structural Engineering (4)" + }, + { + "dept": "MUS", + "description": "Individual or master class instruction in advanced instrumental performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [ + 5367 + ], + "id": 1344, + "label": "MUS 132", + "title": "Proseminar in Music Performance (4)" + }, + { + "dept": "MAE", + "description": "Topics in mathematical analysis, with the emphasis on those of use in applications. The topics may include: metric spaces, open and closed sets, compact sets, continuity, differentiation, series of functions and uniform convergence, convex sets and functions, transforms, and Stokes theorem. ", + "edges_from": [], + "edges_to": [ + 1346 + ], + "id": 1345, + "label": "MAE 289A", + "title": "Mathematical Analysis for Applications (4)" + }, + { + "dept": "MAE", + "description": "Topics in real analysis, with the emphasis on those of use in applications.\u00a0May include: countable/uncountable, open and closed sets, topology, Borel sets, sigma algebras, measurable functions, integration (Lebesgue), absolute continuity, function spaces, and fixed-point theorems. ", + "edges_from": [ + 1345 + ], + "edges_to": [ + 1347 + ], + "id": 1346, + "label": "MAE 289B", + "title": "Real Analysis for Applications (4)" + }, + { + "dept": "MAE", + "description": "Topics in functional analysis, with the emphasis on those of use in applications. May include: function spaces, linear functionals, dual spaces, reflexivity, linear operators, strong and weak convergence, Hahn-Banach Theorem, nonlinear functionals, differential calculus of variations, Pontryagin Maximum Principle. Students cannot obtain credit for MAE 289C if they have taken MAE 289. ", + "edges_from": [ + 1346 + ], + "edges_to": [], + "id": 1347, + "label": "MAE 289C", + "title": "Functional Analysis and Applications (4)" + }, + { + "dept": "VIS", + "description": "A practical introduction to the studio art major and a conceptual introduction to how diverse strategies of art making are produced, analyzed, and critiqued. Introduces historical and contemporary topics in painting, drawing, sculpture, installation, and performance art and field-based practices. Required for all studio majors and minors including transfer students. Must be taken in residence at UC San Diego. ", + "edges_from": [], + "edges_to": [ + 3604, + 2386, + 2572, + 2570, + 5255 + ], + "id": 1348, + "label": "VIS 80", + "title": "Introduction to the Studio Major (4)" + }, + { + "dept": "VIS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 1349, + "label": "VIS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MAE", + "description": "Course builds on the MAE fluids sequence, offering more advanced concepts in conduction, convection, radiation, and heat exchanger design. This course covers numerical methods in conduction, boiling, condensation and evaporation analysis, natural and turbulent convection, spectral and directional radiative transfer, heatpipes, thermal design of spacecraft, heat exchanger analysis and design. ", + "edges_from": [ + 1052 + ], + "edges_to": [], + "id": 1350, + "label": "MAE 101D", + "title": "Intermediate Heat Transfer (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1955, + 99, + 3309, + 4523 + ], + "id": 1351, + "label": "MATH 21D", + "title": "" + }, + { + "dept": "HIUS", + "description": "112A. History of Native Americans in the United States I (4)", + "edges_from": [], + "edges_to": [], + "id": 1352, + "label": "HIUS 108A/ETHN", + "title": "" + }, + { + "dept": "ANAR", + "description": "(Cross-listed with SIO 167.) As specialists in human timescales, archaeologists are trained to identify subtle details that are often imperceptible for other geoscientists. This course is designed to train archaeologists to identify the natural processes affecting the archaeological record, and geoscientists to identify the influence of human behavior over land surfaces. The course, which includes lectures, laboratory training, and field observations, focuses on the articulation of sedimentology and human activity. Students may not receive credit for both ANAR 167 and SIO 167. ", + "edges_from": [ + 1354, + 1355 + ], + "edges_to": [], + "id": 1353, + "label": "ANAR 167", + "title": "Geoarchaeology in Theory and Practice (6)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 1353 + ], + "id": 1354, + "label": "SIO 50", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 1353 + ], + "id": 1355, + "label": "ANTH 3", + "title": "" + }, + { + "dept": "ANAR", + "description": "(Cross-listed with SIO 166.) Introduction to the multidisciplinary tools for paleoenvironmental analysis\u2014from ecology, sedimentology, climatology, zoology, botany, chemistry, and others\u2014and provides the theory and method to investigate the dynamics between human behavior and natural processes. This socioecodynamic perspective facilitates a nuanced understanding of topics such as resource overexploitation, impacts on biodiversity, social vulnerability, sustainability, and responses to climate change. Students may not receive credit for ANAR 166 and SIO 166. ", + "edges_from": [], + "edges_to": [], + "id": 1356, + "label": "ANAR 166", + "title": "Introduction to Environmental Archaeology\u2014Theory and Method of Socioecodynamics and Human Paleoecology (4)" + }, + { + "dept": "ANAR", + "description": "This course will follow the interaction between humans and the sea in cultures that formed the biblical world of the second and first millennium BCE: the Canaanites, Israelites, Egyptians, Phoenicians, Philistines, and cultures of the Aegean Sea. Themes discussed will be maritime matters in the Canaanite and biblical narrative, key discoveries in maritime coastal archaeology of the eastern Mediterranean, shipwrecks: Canaanite, Phoenician, and Aegean, Egyptian ports, and Egyptian sea adventures. ", + "edges_from": [], + "edges_to": [], + "id": 1357, + "label": "ANAR 165", + "title": "Marine and Coastal Archaeology and the Biblical Seas (4)" + }, + { + "dept": "ANAR", + "description": "This course considers in detail a particular region or archaeological site within the Maya area.\u00a0Content will cover primary literature on Maya archaeology, epigraphy, and art history. Course content will vary based on the specific region/site. May be taken for credit three times. ", + "edges_from": [ + 465, + 1359 + ], + "edges_to": [], + "id": 1358, + "label": "ANAR 160", + "title": "Ancient Maya: Archaeological Problems and Perspectives (4)" + }, + { + "dept": "ANAR", + "description": "", + "edges_from": [], + "edges_to": [ + 1358 + ], + "id": 1359, + "label": "ANAR 153", + "title": "" + }, + { + "dept": "LTCS", + "description": "The course will explore work in cultural studies, feminist studies, and queer theory of scientific practices altering social relations, cultural identities, and conceptions of \u201cnature.\u201d Issues may include the AIDS pandemic, genetic research, electronic communities, reproductive technologies, and other topics. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1360, + "label": "LTCS 256", + "title": "Cultural Studies of Technoscience (4)" + }, + { + "dept": "LTCS", + "description": "This seminar will be organized around any of various topic areas relating to cultural studies. These might include studies in colonialism, historicism, gender, sexuality, social institutions, popular culture, subaltern practices, etc. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1361, + "label": "LTCS 250", + "title": "Topics in Cultural Studies (4)" + }, + { + "dept": "MUIR", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1362, + "label": "MUIR 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "PHYS", + "description": "The constituents of matter (quarks and leptons) and their interactions (strong, electromagnetic, and weak). Symmetries and conservation laws. Fundamental processes involving quarks and leptons. Unification of weak and electromagnetic interactions. Particle-astrophysics and the Big Bang. ", + "edges_from": [ + 1364 + ], + "edges_to": [], + "id": 1363, + "label": "PHYS 154", + "title": "Elementary Particle Physics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 1120, + 2816 + ], + "edges_to": [ + 3377, + 1363, + 3076 + ], + "id": 1364, + "label": "PHYS 130B", + "title": "" + }, + { + "dept": "TDDE", + "description": "Introductory course that explores a variety of digital rendering methods for artistic 2-D, 3-D, and moving graphics visualization in theatre and performance design. Course objective is to synthesize and expand traditional drawing and painting methods with modern digital media-based applications. ", + "edges_from": [], + "edges_to": [ + 1366 + ], + "id": 1365, + "label": "TDDE 169A", + "title": "Digital Rendering for Theatre and Performance Design I (4)" + }, + { + "dept": "TDDE", + "description": "A continuation of TDDE 169A. Studio course explores advanced digital rendering methods for artistic 2-D, 3-D, and moving graphics for theatre and performance design. Focus will be on advanced techniques in the process of visualization from conception to production. ", + "edges_from": [ + 1365 + ], + "edges_to": [], + "id": 1366, + "label": "TDDE 169B", + "title": "Digital Rendering for Theatre and Performance Design II (4)" + }, + { + "dept": "CHEM", + "description": "Topics of special interest will be presented. Examples include NMR, solid-state chemistry, phase transitions, stochastic processes, scattering theory, nonequilibrium processes, tensor transformations, and advanced topics in statistical mechanics, thermodynamics, and chemical kinetics. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 1367, + "label": "CHEM 239", + "title": "Special Topics in Chemical Physics (2 or 4)" + }, + { + "dept": "CHEM", + "description": "Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena and the density matrices. Instrumentation, measurement, and interpretation. ", + "edges_from": [], + "edges_to": [], + "id": 1368, + "label": "CHEM 235", + "title": "Molecular Spectroscopy (4)" + }, + { + "dept": "CHEM", + "description": "Explore physical and analytical chemistry of surfaces. Topics include chemisorption and physisorption, sticking probabilities, adsorption isotherms, and passivation of semiconductors.", + "edges_from": [], + "edges_to": [], + "id": 1369, + "label": "CHEM 236", + "title": "Chemical Dynamics on Surfaces (4)" + }, + { + "dept": "CHEM", + "description": "Classical kinetics, transition state theory, unimolecular decomposition,", + "edges_from": [], + "edges_to": [], + "id": 1370, + "label": "CHEM 231", + "title": "Chemical Kinetics and Molecular Reaction Dynamics (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 125.) This course introduces students to the history of Asian American social movements from the late-nineteenth century to the present, with an emphasis on inter-ethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anticolonial movements, redress, hate crimes, and police brutality. Students may not receive credit for HIUS 125 and ETHN 163J.", + "edges_from": [], + "edges_to": [], + "id": 1371, + "label": "ETHN 163J", + "title": "Asian American Social Movements (4)" + }, + { + "dept": "TDGR", + "description": "Individual or small group directed study.", + "edges_from": [], + "edges_to": [], + "id": 1372, + "label": "TDGR 293", + "title": "Directed Studies (4\u201312)" + }, + { + "dept": "GPCO", + "description": "Using class exercises, this capstone class introduces the fundamentals of business strategy, based on case studies requiring market and corporate analysis, and the principles of negotiation. Students apply analytic problem-solving skills in a strategy consulting project with a real-world client company. Renumbered from IRCO 463. Students may not receive credit for GPCO 463 and IRCO 463. ", + "edges_from": [ + 1374 + ], + "edges_to": [], + "id": 1373, + "label": "GPCO 463", + "title": "Strategy and Negotiation (4)" + }, + { + "dept": "GPIM", + "description": "", + "edges_from": [], + "edges_to": [ + 1373 + ], + "id": 1374, + "label": "GPIM 474", + "title": "" + }, + { + "dept": "GPCO", + "description": "The capstone paper should demonstrate mastery of the three components of a public policy program: 1) development of the methodologies for rigorous data collection and policy analysis; 2) an in-depth understanding of the regulatory and legal politics and processes surrounding the student\u2019s chosen policy area; and 3) mastery of the details of the particular issue area and policies intended or that were intended as solutions. Paper may focus on policy interest of the student or of a client. Letter grades only. Renumbered from IRCO 462. Students may not receive credit for GPCO 462 and IRCO 462. ", + "edges_from": [], + "edges_to": [], + "id": 1375, + "label": "GPCO 462", + "title": "Public Policy Capstone (4)" + }, + { + "dept": "GPCO", + "description": "This capstone is designed to test the analytic skills of students, using them to explain complex real-world problems: security, persistent recurring conflict, persistent inequality and intergenerational debt, women\u2019s rights, environmental change, energy/resource systems, and financial contagion. Emphasis will be placed on determining the nature and dimension of the problem, exploring a range of solutions and assessing the capacity of public institutions. Renumbered from IRCO 467. Students may not receive credit for GPCO 467 and IRCO 467. ", + "edges_from": [], + "edges_to": [], + "id": 1376, + "label": "GPCO 467", + "title": "Policy Responses to Global Problems (4)" + }, + { + "dept": "GPCO", + "description": "The course will emphasize real world application of theories and methods of policy analysis to projects with real clients in the area of energy and the environment. The class will include case studies and seminar-style discussions of topics such as project finance and management of regulatory risk. Most of the class will be devoted to work in small teams with clients seeking strategic guidance. Students are expected to produce final projects suitable for senior management and governing boards. ", + "edges_from": [ + 1378, + 1379 + ], + "edges_to": [], + "id": 1377, + "label": "GPCO 466", + "title": "Real World Projects in Energy and the Environment (4)" + }, + { + "dept": "GPPS", + "description": "", + "edges_from": [], + "edges_to": [ + 1377 + ], + "id": 1378, + "label": "GPPS 428", + "title": "" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 1377 + ], + "id": 1379, + "label": "GPCO 400", + "title": "" + }, + { + "dept": "VIS", + "description": "Apprentice teaching in undergraduate courses given by the Department of Visual Arts. Graduate students are required to teach a minimum of one quarter (four units) within the department to fulfill degree requirements.", + "edges_from": [], + "edges_to": [], + "id": 1380, + "label": "VIS 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "VIS", + "description": "Training in teaching methods in the field of visual arts. This course examines theoretical and practical communication and teaching techniques particularly appropriate to studio and production-style courses. Open to VA75, VA76, and VA77 major codes.", + "edges_from": [], + "edges_to": [], + "id": 1381, + "label": "VIS 502", + "title": "Graduate Teaching in Visual Arts (4)" + }, + { + "dept": "POLI", + "description": "Training in teaching methods in the field of political science. Examines evidence-based research on undergraduate teaching and learning with emphasis on effective teaching techniques appropriate to political science. Covers TA training, syllabus design, and effective teaching strategies. ", + "edges_from": [], + "edges_to": [], + "id": 1382, + "label": "POLI 599", + "title": "Teaching Methods in Political Science (2)" + }, + { + "dept": "GPEC", + "description": "The course looks at clean energy and related technologies, including a high-level understanding of the science, policy, and market forces governing innovation. Students will develop an understanding of the renewable energy sector and the market variability of new technology. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 418. Students may not receive credit for GPEC 418 and IRGN 418.", + "edges_from": [], + "edges_to": [], + "id": 1383, + "label": "GPEC 418", + "title": "Green Technology (4)" + }, + { + "dept": "LTEN", + "description": "in Literary Research and Criticism (4)", + "edges_from": [], + "edges_to": [], + "id": 1384, + "label": "LTEN 281", + "title": "Practicum" + }, + { + "dept": "TDGR", + "description": "Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ", + "edges_from": [], + "edges_to": [], + "id": 1385, + "label": "TDGR 225A-B", + "title": "Singing for the Actor II (1-1)" + }, + { + "dept": "LTFR", + "description": "Major literary works and problems of the eighteenth century. May be repeated for credit as topics vary. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 1386, + "label": "LTFR 123", + "title": "Eighteenth Century (4)" + }, + { + "dept": "LTFR", + "description": "", + "edges_from": [], + "edges_to": [ + 1832, + 1386, + 1389, + 1390, + 1391, + 1392, + 2097, + 4694, + 2031 + ], + "id": 1387, + "label": "LTFR 116", + "title": "" + }, + { + "dept": "LTFR", + "description": "", + "edges_from": [], + "edges_to": [ + 1832, + 1386, + 1389, + 1390, + 1391, + 1392, + 2097, + 4694, + 2031 + ], + "id": 1388, + "label": "LTFR 115", + "title": "" + }, + { + "dept": "LTFR", + "description": "This course will cover major literary works and problems of seventeenth-century French literature. May be taken for credit three times as topics vary. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 1389, + "label": "LTFR 122", + "title": "Topics in Seventeenth-Century French Literature (4)" + }, + { + "dept": "LTFR", + "description": "Major literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of the period. Medieval texts in modern French translation. May be repeated for credit as topics vary. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 1390, + "label": "LTFR 121", + "title": "The Middle Ages and the Renaissance (4)" + }, + { + "dept": "LTFR", + "description": "Major literary works and problems of the twentieth century. May be repeated for credit as topics vary. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 1391, + "label": "LTFR 125", + "title": "Twentieth Century (4)" + }, + { + "dept": "LTFR", + "description": "Major literary works of the nineteenth century. May be repeated for credit as topics vary. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 1392, + "label": "LTFR 124", + "title": "Nineteenth Century (4)" + }, + { + "dept": "VIS", + "description": "of Criticism III: Contemporary (1950\u2013Present) (4)", + "edges_from": [], + "edges_to": [], + "id": 1393, + "label": "VIS 113CN", + "title": "History" + }, + { + "dept": "GPIM", + "description": "Examination of public policy analysis, such as cost-benefit analysis and project evaluation, for use in policy formation. Sustainable development will receive particular attention. Case studies emphasizing the environment, agriculture and food, and economic development will be included. Renumbered from IRGN 457. Students may not receive credit for GPIM 457 and IRGN 457.", + "edges_from": [], + "edges_to": [], + "id": 1394, + "label": "GPIM 457", + "title": "Cost-Benefit Analysis (4)" + }, + { + "dept": "GPIM", + "description": "This course will use tools and case studies to illustrate the promise and challenges of analyzing big data sets. Emphasis will be on solving problems rather than testing hypothesis. Renumbered from IRGN 452. Students may not receive credit for GPIM 452 and IRGN 452.", + "edges_from": [], + "edges_to": [], + "id": 1395, + "label": "GPIM 452", + "title": "Big Data Analytics (4)" + }, + { + "dept": "Soc/G", + "description": "This course provides an accessible, graduate level introduction to social network analysis as a theoretical and methodological approach\u2014one takes relationships rather than individuals as the fundamental unit of analysis. While the course will focus on concepts and applications rather than statistical models, students will also become acquainted with basic analytic techniques as well as learn how to collect, store, inspect, and visualize original network data. ", + "edges_from": [], + "edges_to": [], + "id": 1396, + "label": "Soc/G 209", + "title": "Social Networks (4)" + }, + { + "dept": "MATH", + "description": "A hands-on introduction to the use of a variety of open-source mathematical software packages, as applied to a diverse range of topics within pure and applied mathematics. Most of these packages are built on the Python programming language, but no prior experience with mathematical software or computer programming is expected. All software will be accessed using the CoCalc web platform (", + "edges_from": [], + "edges_to": [], + "id": 1397, + "label": "MATH 157", + "title": "Introduction to Mathematical Software (4)" + }, + { + "dept": "MATH", + "description": "This course will give students experience", + "edges_from": [], + "edges_to": [], + "id": 1398, + "label": "MATH 152", + "title": "Applicable Mathematics and Computing (4)" + }, + { + "dept": "DSGN", + "description": "A project-based course examining how principles from cognitive science apply to the design of things simple (doors) and complex (new technology). Learn about affordances, constraints, mappings, and conceptual models. Learn observational and design skills. Become a human-centered design thinker.", + "edges_from": [], + "edges_to": [ + 1673, + 5052, + 2804, + 1773, + 3221 + ], + "id": 1399, + "label": "DSGN 1", + "title": "Design of Everyday Things (4)" + }, + { + "dept": "Soc/G", + "description": "Research will be conducted in field settings. The primary focus will be on mastering the problems and technical skills associated with the conduct of ethnographic and participant observational studies. ", + "edges_from": [], + "edges_to": [], + "id": 1400, + "label": "Soc/G 203", + "title": "Field Methods (4)" + }, + { + "dept": "Soc/G", + "description": "Techniques of gathering and analyzing transcripts of naturally occurring conversations, interviews, discourse in institutional settings, public political discourse, and text of historical materials. ", + "edges_from": [], + "edges_to": [], + "id": 1401, + "label": "Soc/G 204", + "title": "Text and Discourse Analysis (4)" + }, + { + "dept": "Soc/G", + "description": "This course covers some of the elementary techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ", + "edges_from": [], + "edges_to": [], + "id": 1402, + "label": "Soc/G 205", + "title": "Quantitative Methods I (4)" + }, + { + "dept": "Soc/G", + "description": "The course covers some of the more advanced techniques used 1) to select random samples, 2) to detect statistical patterns in the sample data, and 3) to determine whether any patterns found in sample data are statistically significant. The course also stresses the benefits and drawbacks of survey and aggregate data and some common ways in which these data are used incorrectly. ", + "edges_from": [], + "edges_to": [], + "id": 1403, + "label": "Soc/G 206", + "title": "Quantitative Methods II (4)" + }, + { + "dept": "Soc/G", + "description": "A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time. ", + "edges_from": [], + "edges_to": [], + "id": 1404, + "label": "Soc/G 207", + "title": "Comparative-Historical Methods (4)" + }, + { + "dept": "EDS", + "description": "This online course develops educators\u2019 knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124AR and EDS 124A. ", + "edges_from": [], + "edges_to": [], + "id": 1405, + "label": "EDS 124AR", + "title": "Teaching Computation in the Digital World (4)" + }, + { + "dept": "GLBH", + "description": "Offers global health students the opportunity to intern and gain credit for their global health field experience requirement. Students will intern and work with a faculty adviser to elaborate on the intellectual analysis and critique of the field experience. Students must complete the AIP application process and have the consent of a faculty adviser. May be taken for credit up to two times. Must be taken for a letter grade to fulfill requirements for the global health major or minor.", + "edges_from": [], + "edges_to": [], + "id": 1406, + "label": "GLBH 197", + "title": "Global Health Academic Internship Program (4)" + }, + { + "dept": "CHEM", + "description": "Survey of the chemistry of semiconductors, superconductors, molecular magnetic materials, zeolites, fast ion conductors, electronically conducting polymers and ceramics. Synthetic techniques such as molecular precursor design, the sol-gel process, electrosynthesis, and high-temperature thermolysis will be covered. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 1407, + "label": "CHEM 228", + "title": "Solid State Chemistry (4)" + }, + { + "dept": "POLI", + "description": "This course is designed as a broad introduction to the study of law as a social institution and its relations to other institutions in society. The focus will be less on the substance of law (legal doctrine and judicial opinions) than on the process of law\u2013how legal rules both reflect and shape basic social values and their relation to social, political, and economic conflicts within society.", + "edges_from": [], + "edges_to": [ + 5278 + ], + "id": 1408, + "label": "POLI 40", + "title": "Introduction to Law and Society (4)" + }, + { + "dept": "BENG", + "description": "Mass transfer in solids, liquids, and gases with application to biological systems. Free and facilitated diffusion. Convective mass transfer. Diffusion-reaction phenomena. Active transport. Biological mass transfer coefficients. Steady and unsteady state. Flux-force relationships. (Credit not allowed for both CENG 101C and BENG 103B.) ", + "edges_from": [ + 98, + 99, + 1410 + ], + "edges_to": [ + 4960 + ], + "id": 1409, + "label": "BENG 103B", + "title": "Bioengineering Mass Transfer (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 552 + ], + "edges_to": [ + 1409, + 3268, + 5887 + ], + "id": 1410, + "label": "BENG 112A", + "title": "" + }, + { + "dept": "Linguistics/American", + "description": "This course concentrates on those language", + "edges_from": [], + "edges_to": [], + "id": 1411, + "label": "Linguistics/American Sign Language (LISL) 5A, 5B, 5C", + "title": "Fundamentals of American Sign Language (5)" + }, + { + "dept": "HITO", + "description": "An examination of the history of emotions from the early modern period to the present with a focus on Europe and North America. Analysis of different approaches to emotions as well as of specific emotions (love, honor, shame, fear, guilt).", + "edges_from": [], + "edges_to": [], + "id": 1412, + "label": "HITO 140", + "title": "History of Emotions (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1223, + 1224, + 9, + 1773, + 2127, + 2804, + 3221, + 5974 + ], + "id": 1413, + "label": "CSE 8A", + "title": "" + }, + { + "dept": "NEU", + "description": "Participation in the department teaching program is required of all students working toward a PhD. In general, students are not expected to teach in the first year, but are required to serve as teaching assistants or tutors for one quarter at any time during their subsequent years of training. The amount of teaching required is equivalent to the duties expected of a 50 percent assistant for one quarter. ", + "edges_from": [], + "edges_to": [], + "id": 1414, + "label": "NEU 500", + "title": "Apprenticeship Teaching (1\u20134)" + }, + { + "dept": "Classics", + "description": "Supervised independent research. Subject varies.", + "edges_from": [], + "edges_to": [], + "id": 1415, + "label": "Classics 280", + "title": "Independent Study (4)" + }, + { + "dept": "TDDE", + "description": "A hands-on course develops craft skills and solution-finding process in design including script analysis, concept sketches, research, and scale model making. An exploration of fundamental ways of seeing and understanding visual design. ", + "edges_from": [ + 1417, + 1418 + ], + "edges_to": [ + 1419 + ], + "id": 1416, + "label": "TDDE 101", + "title": "Theatre Process\u2014Scenery (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 1416, + 5207 + ], + "id": 1417, + "label": "TDPR 1", + "title": "" + }, + { + "dept": "TDDE", + "description": "", + "edges_from": [], + "edges_to": [ + 1633, + 4743, + 1416, + 1419, + 1874, + 1878, + 4571, + 4572, + 1758 + ], + "id": 1418, + "label": "TDDE 1", + "title": "" + }, + { + "dept": "TDDE", + "description": "An advanced course based on the \u201cpractice\u201d of scenic design, dealing with the solution finding process, from text to idea to realized work. ", + "edges_from": [ + 1416, + 1418 + ], + "edges_to": [], + "id": 1419, + "label": "TDDE 102", + "title": "Advanced Scenic Design (4)" + }, + { + "dept": "VIS", + "description": "This survey course follows the parallel tracks of the sacred and secular in art and architecture from Constantine to the Crusades. Highlights include the emergence of Christian art, visual culture of the courts, development of monasteries, fall and rise of towns and cities, and arts of ritual. The thematic juxtaposition of different media and medieval people speaking in their own voices yields a multidimensional image of society in which the medieval experience is made as concrete as possible. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 1420, + "label": "VIS 121AN", + "title": "Art and Experience in the Middle Ages (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 1421, + "label": "Linguistics/Heritage Languages (LIHL) 137P", + "title": "Advanced Persian for Persian Speakers (4)" + }, + { + "dept": "BENG", + "description": "A laboratory course demonstrating basic concepts of biomechanics, bioengineering design, and experimental procedures involving animal tissue. Sources of error and experimental limitations. Computer data acquisition, modeling, statistical analysis. Experiments on artery, muscle and heart mechanics, action potentials, viscoelasticity, electrocardiography, hemorheology. Course materials fees may apply. ", + "edges_from": [ + 345 + ], + "edges_to": [], + "id": 1422, + "label": "BENG 172", + "title": "Bioengineering Laboratory (4)" + }, + { + "dept": "PHIL", + "description": "An examination of seventeenth- and eighteenth-century philosophy, focusing on major works of Descartes, Locke, and Hume. Philosophy 110, Philosophy 111, and Philosophy 112 should be taken in order. ", + "edges_from": [ + 1424 + ], + "edges_to": [ + 4392, + 1425 + ], + "id": 1423, + "label": "PHIL 111", + "title": "History of Philosophy: Early Modern (4)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 1423 + ], + "id": 1424, + "label": "PHIL 110", + "title": "" + }, + { + "dept": "PHIL", + "description": "An examination of late eighteenth and nineteenth-century philosophy, focusing on major works of Kant and Hegel. Philosophy 110, Philosophy 111, and Philosophy 112 should be taken in order. ", + "edges_from": [ + 1423 + ], + "edges_to": [ + 4392 + ], + "id": 1425, + "label": "PHIL 112", + "title": "History of Philosophy: Late Modern (4)" + }, + { + "dept": "PHIL", + "description": "This course provides an introduction to the techniques of philosophical inquiry through detailed study of selected philosophical texts and through extensive training in philosophical writing based on those texts. Enrollment limited and restricted to majors; must be taken for letter grade. May not be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1426, + "label": "PHIL 115", + "title": "Philosophical Methods Seminar (4)" + }, + { + "dept": "POLI", + "description": "Explores empirical research in international relations with special emphasis on international conflict. Topics covered include theories on the causes of war, the distribution of power and conflict, formal and informal alignment, interdependence and conflict, linkages between domestic and international processes, and issues of research design. Students who have previously taken 247 may not take this course for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1427, + "label": "POLI 247A", + "title": "Quantitative International Relations (4)" + }, + { + "dept": "EDS", + "description": "This course explores topical issues in the field of leadership. It focuses on recent developments that have broad implications for research and practice in educational leadership. Course topics will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 1428, + "label": "EDS 286", + "title": "Advanced Topics in Leadership (4)" + }, + { + "dept": "EDS", + "description": "This course addresses interdisciplinary influences on leadership practice within learning organizations. Contributions from scholars in futures\u2019 studies, including those influenced by modernism and postmodernism, will be used to explore topics such as long-range planning, demographic trends, technology, and brain theory. ", + "edges_from": [], + "edges_to": [], + "id": 1429, + "label": "EDS 285", + "title": "Leadership for the Future (4)" + }, + { + "dept": "EDS", + "description": "This course will investigate the skills and dispositions needed for students to lead the development of learning organizations. Faculty will teach and model concepts of working with people within educational organizations and programs. Emphasis will be placed on individual\u2019s team development and facilitation, organizational communications, adult learning, and professional development. ", + "edges_from": [], + "edges_to": [], + "id": 1430, + "label": "EDS 284", + "title": "Leadership for Organizational Development (4)" + }, + { + "dept": "EDS", + "description": "This course will present multiple theories of organizational change, explore group processes and identify models of decision making, and analyze human motivation theories. Establishing and nurturing a purpose-driven organization, while dealing with competing demands, will be discussed. A major emphasis in this course is on people as agents of change and on the creation of high-quality ethical and productive workplaces where employees can achieve success and satisfaction, while advancing the mission of the educational organization. ", + "edges_from": [], + "edges_to": [], + "id": 1431, + "label": "EDS 283", + "title": "Leadership for Organizational Change (4)" + }, + { + "dept": "EDS", + "description": "This course will address theories and practices for achieving schools and classrooms that are informed by and built around the participation of diverse communities and cultures. The emphasis is on how leadership intersects with sociohistorical and sociocultural theories that suggest that the organization of schools and instruction is critical to student inclusion and outcomes. A basic premise of this course is that a socially just learning theory begins with using all of the resources and knowledge of families, communities, and cultures in formulating policy and practice. ", + "edges_from": [], + "edges_to": [], + "id": 1432, + "label": "EDS 282", + "title": "Leadership for a Diverse Society (4)" + }, + { + "dept": "EDS", + "description": "This course will explore various models of curriculum and instruction in response to students\u2019 learning needs. It also will examine models of school organization and the leader\u2019s role and responsibility in developing a school culture that promotes student achievement, using evidence-based decision making. A major emphasis will be on evaluating research on which theories and practice are based. ", + "edges_from": [], + "edges_to": [], + "id": 1433, + "label": "EDS 281", + "title": "Leadership for Learning (4)" + }, + { + "dept": "EDS", + "description": "This course will present the evolution of leadership thought and theory, with an emphasis on the distinction between, and interrelatedness of, effective management and leadership. The ethics of leadership practice and epistemological perspectives of emerging leadership styles will be explored, and students will have opportunities to reflect on the nature of leadership as it is practiced in educational settings. Applying critical, self-reflective leadership practice through structured activities is also an element of this course.", + "edges_from": [], + "edges_to": [], + "id": 1434, + "label": "EDS 280", + "title": "Rethinking Leadership (4)" + }, + { + "dept": "MAE", + "description": "Tools for the design of cooperative control strategies for", + "edges_from": [], + "edges_to": [], + "id": 1435, + "label": "MAE 247", + "title": "Cooperative Control of Multi-agent Systems (4)" + }, + { + "dept": "MAE", + "description": "Modeling, solving, and analyzing planning problems for single robots or agents. Configuration space for motion planning, sampling-based motion planning, combinatorial motion planning, feedback motion planning, differential models, and nonholonomic constraints. Basic decision-theory and dynamic programming, sensor and information spaces.", + "edges_from": [], + "edges_to": [], + "id": 1436, + "label": "MAE 242", + "title": "Robot Motion Planning (4)" + }, + { + "dept": "ANBI", + "description": "All human endeavors are subject to human biases. We\u2019ll cover several issues that are subject to such biases: \u201crace\u201d concept; transfer of human remains to Native American tribal members; nonhuman primate testing; and use of human materials, including cell lines. ", + "edges_from": [], + "edges_to": [], + "id": 1437, + "label": "ANBI 120", + "title": "Ethical Dilemmas in Biological Anthropology (4)" + }, + { + "dept": "SE", + "description": "Strengthening of existing reinforced concrete structures with fiber reinforced composites. Mechanics of Fiber Reinforced Plastic lamina, bond strength of FRP-to-concrete joints, shear and flexural strengthening of beams and walls, increased strength and ductility of axially loaded columns, and seismic retrofit of columns. Use of computer resources. ", + "edges_from": [ + 246 + ], + "edges_to": [], + "id": 1438, + "label": "SE 254", + "title": "FRPs in Civil Structures (4)" + }, + { + "dept": "BIOM", + "description": "Reading of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. ", + "edges_from": [], + "edges_to": [], + "id": 1439, + "label": "BIOM 296", + "title": "Directed Reading (1\u20134)" + }, + { + "dept": "BIOM", + "description": "Papers describing recent progress in signal transduction from the cell-surface to the nucleus will be chosen from recent research literature. Two papers will be discussed and criticized in detail each week for one hour. ", + "edges_from": [], + "edges_to": [], + "id": 1440, + "label": "BIOM 297", + "title": "Progress in Signal Transduction (1)" + }, + { + "dept": "BIOM", + "description": "Current literature in molecular pharmacology and molecular biology is reviewed. Two papers are chosen per week for oral presentation by students. Faculty critique the student presentations. ", + "edges_from": [], + "edges_to": [], + "id": 1441, + "label": "BIOM 294", + "title": "Pharmacology and Molecular Biology Journal Club (0\u20131)" + }, + { + "dept": "BIOM", + "description": "Student, faculty, and fellow discussion groups on research projects. Students are expected to present research findings to fellows, other PhD students, and faculty.", + "edges_from": [], + "edges_to": [], + "id": 1442, + "label": "BIOM 295", + "title": "Pharmacology Research Discussions (0\u20131)" + }, + { + "dept": "BIOM", + "description": "Reading and laboratory study of special topics under the direction of a faculty member. Exact subject matter to be arranged in individual cases. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 1443, + "label": "BIOM 298", + "title": "Directed Study (1\u201312)" + }, + { + "dept": "BIOM", + "description": "Independent study or research. ", + "edges_from": [], + "edges_to": [], + "id": 1444, + "label": "BIOM 299", + "title": "Independent Study or Research (1\u201312)" + }, + { + "dept": "VIS", + "description": "This seminar explores movement and exchange between Mediterranean cities with diverse political, social, ethnic, and religious roots and the new modes of art, architecture, and intellectual discourse that this diversity fostered. In addition to medieval sources, readings include art historical and theoretical texts from a variety of periods and fields that frame the implications of multiculturalism for historical and contemporary categories of perception and for the analysis of visual culture. Recommended preparation: VIS 20 or VIS 112 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 1445, + "label": "VIS 121H", + "title": "Medieval Multiculturalism (4)" + }, + { + "dept": "VIS", + "description": "This course surveys the changes in art and architecture caused by the rise of new religions after the ancient world demise, a period of upheaval and contention often known as the \u201cClash of Gods.\u201d How did Christianity come to dominate Europe with its churches and monasteries and then Islam with its mosques in the Middle East and North Africa? Studying the role of religion in the formation of artistic styles will show a dynamic interaction between the visual cultures of Christianity and Islam. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 1446, + "label": "VIS 121B", + "title": "Church and Mosque: Medieval Art and Architecture between Christianity and Islam (4)" + }, + { + "dept": "MAE", + "description": "Least Squares and Maximum Likelihood Estimation methods, Gauss-Markov models, State Estimation and Kalman Filtering, prediction and smoothing. The extended Kalman filter. ", + "edges_from": [ + 1448 + ], + "edges_to": [], + "id": 1447, + "label": "MAE 288B", + "title": "Optimal Estimation (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 5175, + 2763, + 2334, + 1447 + ], + "id": 1448, + "label": "MAE 280A", + "title": "" + }, + { + "dept": "MAE", + "description": "Deterministic methods: Pontryagin\u2019s Maximum Principle, dynamic programming, calculus of variations. Stochastic methods: Gauss-Markov processes, Linear Quadratic control, Markov chains. Linear Quadratic Gaussian Control and the Separation Principle. ", + "edges_from": [], + "edges_to": [], + "id": 1449, + "label": "MAE 288A", + "title": "Optimal Control (4)" + }, + { + "dept": "SE", + "description": "Fluid-Structure Interaction (4)", + "edges_from": [], + "edges_to": [], + "id": 1450, + "label": "SE 278B", + "title": "Computational" + }, + { + "dept": "SE", + "description": "Development and application of advanced computational techniques for fluid flow. Stabilized and variational multiscale methods for finite element and related discretizations are stressed. Applications involve advection-diffusion equations and systems, and incompressible and compressible Navier-Stokes equations. Turbulence modeling will also be covered. ", + "edges_from": [ + 1237, + 1238 + ], + "edges_to": [], + "id": 1451, + "label": "SE 278A", + "title": "Finite Elements for Fluid Mechanics (4)" + }, + { + "dept": "ECON", + "description": "Selected topics in microeconomics. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 1452, + "label": "ECON 182", + "title": "Topics in Microeconomics (4)" + }, + { + "dept": "ECE", + "description": "Bayesian decision theory; parameter estimation; maximum likelihood; the bias-variance trade-off; Bayesian estimation; the predictive distribution; conjugate and noninformative priors; dimensionality and dimensionality reduction; principal component analysis; Fisher\u2019s linear discriminant analysis; density estimation; parametric vs. kernel-based methods; expectation-maximization; applications. (Recommended prerequisites: ECE 109.) ", + "edges_from": [], + "edges_to": [ + 2498, + 4427, + 2690, + 1454, + 1455 + ], + "id": 1453, + "label": "ECE 271A", + "title": "Statistical Learning I (4)" + }, + { + "dept": "ECE", + "description": "Foundations of deep learning. Deep learning architectures and learning algorithms. Feedforward, convolutional, and recurrent networks. Regularization. Applications to vision, speech, or text processing. ", + "edges_from": [ + 1453, + 1455 + ], + "edges_to": [], + "id": 1454, + "label": "ECE 271C", + "title": "Deep Learning and Applications (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1453 + ], + "edges_to": [ + 2498, + 4427, + 1454 + ], + "id": 1455, + "label": "ECE 271B", + "title": "" + }, + { + "dept": "HIGR", + "description": "Graduate Seminar in Premodern Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 1456, + "label": "HIGR 218A", + "title": "" + }, + { + "dept": "HIGR", + "description": "Graduate Seminar in Premodern Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 1457, + "label": "HIGR 218B", + "title": "" + }, + { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1C. ", + "edges_from": [ + 1459, + 1460 + ], + "edges_to": [], + "id": 1458, + "label": "Linguistics/Italian (LIIT) 1CX", + "title": "Analysis of Italian (2.5)" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 2033, + 1458, + 3425 + ], + "id": 1459, + "label": "LIIT 1B", + "title": "" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 3425, + 1458 + ], + "id": 1460, + "label": "LIIT 1BX", + "title": "" + }, + { + "dept": "MUS", + "description": "Individual instruction on intermediate level in instrumental technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1461, + "label": "MUS 32", + "title": "Instrumental/Vocal Instruction (2)" + }, + { + "dept": "TDGR", + "description": "Students will develop the concept for an original piece for television or film and will write the screenplay. Student work will be discussed in seminar at each phase of the development. ", + "edges_from": [ + 1463 + ], + "edges_to": [], + "id": 1462, + "label": "TDGR 257A-B", + "title": "Screenwriting (4-4)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1462 + ], + "id": 1463, + "label": "TDGR 250", + "title": "" + }, + { + "dept": "HIEU", + "description": "Ancient travel into unexplored regions of the world and the discovery of new civilizations. Look at actual voyages, focusing on the remarkable figures who braved the unknown, the objects of their journeys, and their crude equipment and knowledge.", + "edges_from": [], + "edges_to": [], + "id": 1464, + "label": "HIEU 112S", + "title": "Ancient Explorers (4)" + }, + { + "dept": "PHYS", + "description": "An introduction to mathematical methods used in theoretical physics. Topics include: a review of complex variable theory, applications of the Cauchy residue theorem, asymptotic series, method of steepest descent, Fourier and Laplace transforms, series solutions for ODE\u2019s and related special functions, Sturm Liouville theory, variational principles, boundary value problems, and Green\u2019s function techniques.", + "edges_from": [], + "edges_to": [], + "id": 1465, + "label": "PHYS 201", + "title": "Mathematical Physics (5)" + }, + { + "dept": "Classics", + "description": "Examines ways in which classical texts and ideas have been received and", + "edges_from": [], + "edges_to": [], + "id": 1466, + "label": "Classics 200B", + "title": "Historical Perspectives on Classical Antiquity (4)" + }, + { + "dept": "Classics", + "description": "Cultural Contexts (4)", + "edges_from": [], + "edges_to": [], + "id": 1467, + "label": "Classics 200C", + "title": "Greece and Rome in Their Contemporary" + }, + { + "dept": "Classics", + "description": "An introduction to contemporary literary theory, focusing on important", + "edges_from": [], + "edges_to": [], + "id": 1468, + "label": "Classics 200A", + "title": "Contemporary Literary Theory and the Classics (4)" + }, + { + "dept": "SOCI", + "description": "U.S. (4)", + "edges_from": [], + "edges_to": [], + "id": 1469, + "label": "SOCI 10", + "title": "American Society: Social Structure and Culture in the" + }, + { + "dept": "GPEC", + "description": "This course will begin by examining financial systems in poor countries. We will investigate how microfinance contracts overcome problems which had previously barred the extension of business credit in many environments. Renumbered from IRGN 417. Students may not receive credit for GPEC 417 and IRGN 417.", + "edges_from": [], + "edges_to": [], + "id": 1470, + "label": "GPEC 417", + "title": "Microfinance (4)" + }, + { + "dept": "GPEC", + "description": "This course examines the theoretical and empirical questions around the supply and demand markets, and the use for energy in firms and households. We will consider the environmental consequences and regulations of use. The course emphasizes the application of economic theory to energy issues. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 414. Students may not receive credit for GPEC 414 and IRGN 414. ", + "edges_from": [], + "edges_to": [], + "id": 1471, + "label": "GPEC 414", + "title": "The Economics of Energy Policy (4)" + }, + { + "dept": "GPEC", + "description": "This course explores the rationales and consequences of trade-related government interventions from an economic perspective. We will cover classical trade theory, \u201cnew\u201d trade theory, the process of global multilateral trade integration, and the political economy roots of trade policy. Non-GPS graduate students may enroll with consent of instructor. Renumbered from IRGN 415. Students may not receive credit for GPEC 415 and IRGN 415.", + "edges_from": [], + "edges_to": [], + "id": 1472, + "label": "GPEC 415", + "title": "The Economics of Trade Policy (4)" + }, + { + "dept": "GPEC", + "description": "This course studies the economic development, current economic issues, and future prospects and challenges of East Asia, broadly defined as China, Japan, Korea, and Southeast Asia. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies in the region. Renumbered from IRGN 412. Students may not receive credit for GPEC 412 and IRGN 412.", + "edges_from": [], + "edges_to": [], + "id": 1473, + "label": "GPEC 412", + "title": "Comparative Development of the East Asian Economies (4)" + }, + { + "dept": "GPEC", + "description": "Why has China been growing so fast in the past few decades? Does the authoritarianism select competent leaders? How do firms and households behave in such a quasi-market economy? The course is designed to investigate these topical questions and provide students with a general overview of existing research on China\u2019s development. May not receive credit for GPEC 411 and IRGN 490, Topics in China\u2019s Development.", + "edges_from": [], + "edges_to": [], + "id": 1474, + "label": "GPEC 411", + "title": "Topics in China\u2019s Development (4)" + }, + { + "dept": "CSE", + "description": "Hands-on computer architecture project aiming to familiarize students with instruction set architecture, and design of process. Control and memory systems. ", + "edges_from": [ + 1480, + 1476, + 1477, + 1478, + 1479 + ], + "edges_to": [ + 1476 + ], + "id": 1475, + "label": "CSE 141L", + "title": "Project in Computer Architecture (2)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 1480, + 1475, + 1477, + 1479 + ], + "edges_to": [ + 1475, + 5270 + ], + "id": 1476, + "label": "CSE 141", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1475, + 1476, + 1479, + 1676, + 5627, + 3196 + ], + "id": 1477, + "label": "CSE 140", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 5825, + 1475, + 3220, + 5823 + ], + "id": 1478, + "label": "CSE 110", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 1480, + 9, + 3, + 1477, + 7 + ], + "edges_to": [ + 1475, + 1476 + ], + "id": 1479, + "label": "CSE 140L", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 5825, + 1475, + 1476, + 1479, + 1676, + 5630, + 5823 + ], + "id": 1480, + "label": "CSE 30", + "title": "" + }, + { + "dept": "SE", + "description": "Requirements for strain measurements, electrical resistance strain gages, fiberoptic strain gages, wave propagation, ultrasonic testing, impact-echo, acoustic emission, infrared thermography, vibrational testing. Applications to materials characterization, defect detection, and health monitoring of structural components. Recommended preparation: SE 101A, SE 110A or MAE 131A, and SE 110B or MAE 131B. ", + "edges_from": [], + "edges_to": [], + "id": 1481, + "label": "SE 252", + "title": "Experimental Mechanics and NDE (4)" + }, + { + "dept": "SE", + "description": "Fundamental and advanced concepts of stability analysis for earth slopes and retaining walls with soil backfill. Topics: shear strength, effective/total stress analysis, infinite/finite slopes, reinforced soil slopes, lateral earth pressure, retaining wall design and reinforced soil retaining walls. Recommended preparation: SE 181 or equivalent background. ", + "edges_from": [], + "edges_to": [], + "id": 1482, + "label": "SE 250", + "title": "Stability of Earth Slopes and Retaining Walls (4)" + }, + { + "dept": "SE", + "description": "Introduction to textile structure and behavior, mechanics of yarns and fabrics as relevant to structural composites and geotechnical applications. Mechanics of textiles and fabric-based composites. Applications in fiber reinforced composites, coated textile structures, geotextiles.", + "edges_from": [], + "edges_to": [], + "id": 1483, + "label": "SE 255", + "title": "Textile Composite Structures (4)" + }, + { + "dept": "HUM", + "description": "Selected topics in the history, literature, and thought of Mediterranean antiquity and its successor-cultures. Emphasis on identifying both common themes and cultural distinctiveness. Discussion of pedagogical approaches to this material. Required of all graduate instructional assistants in the humanities sequence. ", + "edges_from": [], + "edges_to": [], + "id": 1484, + "label": "HUM 200", + "title": "Seminar in the Humanities (4)" + }, + { + "dept": "LTSP", + "description": "Special topics in practical criticism involving social and economic historical perspectives. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 1485, + "label": "LTSP 272", + "title": "Literature and Society Studies (4)" + }, + { + "dept": "MATH", + "description": "Various topics in optimization and applications. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 1486, + "label": "MATH 278C", + "title": "Seminar in Optimization (1)" + }, + { + "dept": "MAE", + "description": "Analysis of aerospace engineering systems using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine. Students operate facilities, obtain data, complete engineering analysis and write major reports. ", + "edges_from": [ + 1488, + 345, + 1052, + 1054, + 1489 + ], + "edges_to": [], + "id": 1487, + "label": "MAE 175A", + "title": "Aerospace Engineering Laboratory I (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 3309 + ], + "edges_to": [ + 3687, + 1951, + 1487 + ], + "id": 1488, + "label": "MAE 143B", + "title": "" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [ + 1951, + 1487 + ], + "id": 1489, + "label": "CENG 120", + "title": "" + }, + { + "dept": "LTWL", + "description": "Course sets out to explore the history and theory of Iranian films in the context of the country\u2019s political, cultural, and religious settings since 1945. Students are expected to watch and discuss Iranian films, particularly the postrevolutionary films of Kiarostami and Mokhbalbaf.", + "edges_from": [], + "edges_to": [], + "id": 1490, + "label": "LTWL 157", + "title": "Iranian Film (4)" + }, + { + "dept": "LTWL", + "description": "The study of the construction of sexual differences in literature and culture. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1491, + "label": "LTWL 155", + "title": "Gender Studies (4)" + }, + { + "dept": "LTWL", + "description": "Explores the various cross-cultural historical, philosophical, and aesthetic ideas which formed the basis of most twentieth-century literature. Literature from the Americas, Europe, Asia, and Africa will be studied through lectures and the reading of texts in English translation. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1492, + "label": "LTWL 150", + "title": "Modernity and Literature (4)" + }, + { + "dept": "LTWL", + "description": "This course examines the role of Information Communication Technologies (ICTs) such as the Internet, mobile, and satellite TV in the reshaping of the Middle East and North Africa. It will focus on how ICTs like the Internet are changing culture, politics, and religion in the region and implication of such transformations.", + "edges_from": [], + "edges_to": [], + "id": 1493, + "label": "LTWL 159", + "title": "Digital Middle East: Culture, Politics, and Religion (4)" + }, + { + "dept": "USP", + "description": "(Same as SOCI 152.) Primary focus on understanding", + "edges_from": [], + "edges_to": [], + "id": 1494, + "label": "USP 133", + "title": "Social Inequality and Public Policy (4)" + }, + { + "dept": "USP", + "description": "(Same as ETHN 188.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived. ", + "edges_from": [], + "edges_to": [], + "id": 1495, + "label": "USP 132", + "title": "African Americans, Religion, and the City (4)" + }, + { + "dept": "USP", + "description": "Craft breweries are emerging as a significant part of the economy in US cities. This course examines the rise and impact of craft breweries in city life with a focus on tourism, urban culture, local job growth, and urban revitalization. ", + "edges_from": [], + "edges_to": [], + "id": 1496, + "label": "USP 131", + "title": "Culture, Tourism, and the Urban Economy: Case Studies of Craft Breweries" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of political theory. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 1497, + "label": "POLI 119A", + "title": "Special Topics in Political Theory (4)" + }, + { + "dept": "USP", + "description": "Community Development Policy and Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 1498, + "label": "USP 137", + "title": "Housing and" + }, + { + "dept": "USP", + "description": "Provides an overview of collaborative leadership and considers consensus organizing as both a tactical and strategic approach to effective community building and development. Examines how various communities have approached collaborative leadership, consensus organizing, and community building. ", + "edges_from": [], + "edges_to": [], + "id": 1499, + "label": "USP 136", + "title": "Collaborative Community Leadership (4)" + }, + { + "dept": "USP", + "description": "Latina Immigrant Workers in the Global Economy (4)", + "edges_from": [], + "edges_to": [], + "id": 1500, + "label": "USP 135", + "title": "Asian and" + }, + { + "dept": "USP", + "description": "This course examines the integration of youth development and community development in theory and practice as a strategy for addressing adultism. Analyze cases through a cultural lens where local, national, and international youth movements have helped make community development more responsive, inclusive, and culturally sensitive. ", + "edges_from": [], + "edges_to": [], + "id": 1501, + "label": "USP 134", + "title": "Community Youth Development (4)" + }, + { + "dept": "USP", + "description": "This course explores emerging trends in urban design and economic development and their interrelationship. The course focuses on selected community projects and also considers urban governance structures. Various research methods will be applied to urban problems. ", + "edges_from": [], + "edges_to": [], + "id": 1502, + "label": "USP 139", + "title": "Urban Design and Economic Development (4)" + }, + { + "dept": "USP", + "description": "This course focuses on strategies that policy makers and planners use in their efforts to foster healthy economies. Topics include theories of urban economic development, analytical techniques for describing urban economies, and the politics and planning of economic development. ", + "edges_from": [], + "edges_to": [], + "id": 1503, + "label": "USP 138", + "title": "Urban Economic Development (4)" + }, + { + "dept": "ETHN", + "description": "History and theory: Introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization. Study of Plains Indian drawings from 1860 to 1890 will allow the class to create new approaches to designing a museum exhibition.", + "edges_from": [], + "edges_to": [ + 1505 + ], + "id": 1504, + "label": "ETHN 114A", + "title": "Representing Native America (4)" + }, + { + "dept": "ETHN", + "description": "The class will work in teams to design all aspects of an actual museum exhibition of Plains Indian drawings from 1860 to 1890, turning theory into practice. In some quarters, the exhibition will be installed in a San Diego museum directly after completion of the course. ", + "edges_from": [ + 1504 + ], + "edges_to": [], + "id": 1505, + "label": "ETHN 114B", + "title": "Representing Native America\u2014Exhibition Design (4)" + }, + { + "dept": "USP", + "description": "(Same as ETHN 107.) This is a research course examining social, economic, and political issues in ethnic and racial communities through fieldwork. Topics are examined through a variety of research methods that may include interviews and archival, library, and historical research. ", + "edges_from": [], + "edges_to": [], + "id": 1506, + "label": "USP 130", + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + { + "dept": "BENG", + "description": "Biotech is a special breed of business, especially in start-up and early phases. Whether you are considering joining a biotech start-up or want to be successful in a life-science organization, it pays to understand this unique business model. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies. The format is highly interactive and learning is enhanced by means of exercises, team presentations, and case studies. ", + "edges_from": [], + "edges_to": [], + "id": 1507, + "label": "BENG 225", + "title": "BioBusiness: Starting, Growing, and Harvesting a Biotech Company (4)" + }, + { + "dept": "BIBC", + "description": "Introductory laboratory course in current principles and techniques applicable", + "edges_from": [], + "edges_to": [ + 241 + ], + "id": 1508, + "label": "BIBC 103", + "title": "Biochemical Techniques (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 1510, + 1511 + ], + "edges_to": [ + 2928, + 3141, + 1990, + 2161, + 1514, + 589, + 240, + 241 + ], + "id": 1509, + "label": "CHEM 40B", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 464, + 133 + ], + "edges_to": [ + 5952, + 1509, + 5068, + 589, + 240, + 241, + 2070, + 2553, + 2364 + ], + "id": 1510, + "label": "CHEM 40A", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5952, + 1509, + 5068, + 589, + 240, + 2070, + 2553, + 2364 + ], + "id": 1511, + "label": "CHEM 140A", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2928, + 5602, + 3141, + 1990, + 5601, + 1514, + 589, + 240 + ], + "id": 1512, + "label": "CHEM 140B", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 667, + 133 + ], + "edges_to": [ + 240, + 241, + 1152, + 589, + 2161 + ], + "id": 1513, + "label": "BENG 120", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 1512, + 2641, + 1509, + 2070 + ], + "edges_to": [ + 2640, + 4113, + 589 + ], + "id": 1514, + "label": "CHEM 114B", + "title": "" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 1515, + "label": "Linguistics/Portuguese (LIPO) 1AX", + "title": "Analysis of Portuguese (2.5)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 1696, + 2640, + 3490, + 3141, + 3979, + 2924, + 2927, + 240, + 4113, + 2554 + ], + "id": 1516, + "label": "CHEM 114A", + "title": "" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 110A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110A or after successful completion of Econ 110A with A\u2013or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 1517, + "label": "ECON 110AH", + "title": "Honors Macroeconomics A (1)" + }, + { + "dept": "HLAW", + "description": "This course series focuses on developing students\u2019 research and scholarly writing skills for their Independent Study Projects (ISP). Topics include refining the research question, collecting/analyzing data, understanding research methodology, forming the ISP committee, and producing a viable ISP proposal. ", + "edges_from": [], + "edges_to": [], + "id": 1518, + "label": "HLAW 298A-C", + "title": "Health Law Research Forum (1-1-1)" + }, + { + "dept": "ANTH", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ", + "edges_from": [], + "edges_to": [], + "id": 1519, + "label": "ANTH 287", + "title": "Ethnography Practicum (4)" + }, + { + "dept": "ANTH", + "description": "This workshop is designed for third and fourth year students writing grant proposals for dissertation research. Students will learn grant writing, research methods, ethics, and budgets. Students will be expected to share their work with each other. ", + "edges_from": [], + "edges_to": [], + "id": 1520, + "label": "ANTH 285", + "title": "Grants Writing Practicum (4)" + }, + { + "dept": "ANTH", + "description": "This workshop is designed for second year students writing their MA theses. It includes study of thesis and article writing styles, standards of documentation, and argumentation. Students will be expected to share their work with each other. ", + "edges_from": [], + "edges_to": [], + "id": 1521, + "label": "ANTH 284", + "title": "Master Writing Practicum (4)" + }, + { + "dept": "HIUS", + "description": "This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries. Program or materials fees may apply. Students must apply and be accepted into the Global Seminars Program. Students may not receive credit for HIUS 133 and HIUS 133GS.", + "edges_from": [], + "edges_to": [], + "id": 1522, + "label": "HIUS 133GS", + "title": "The Golden Age of Piracy (4)" + }, + { + "dept": "ANTH", + "description": "Field and laboratory training for graduate students in archaeology. Students will design and implement archaeological fieldwork or analyze data collected in the field. ", + "edges_from": [ + 1524 + ], + "edges_to": [], + "id": 1523, + "label": "ANTH 288", + "title": "Archaeology Practicum (12)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 1523 + ], + "id": 1524, + "label": "ANGR 288", + "title": "" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1525, + "label": "LTEN 138", + "title": "The British Novel: 1680\u20131790 (4)" + }, + { + "dept": "LTEN", + "description": "Selected topics concerned with modern British literature; study of various authors, issues, and trends in literatures of the British Isles from the mid-1850s through the present day. May be taken up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1526, + "label": "LTEN 130", + "title": "Modern British Literature (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1527, + "label": "LTEN 132", + "title": "Modern Irish Literature (4)" + }, + { + "dept": "SE", + "description": "Part I of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 1529, + 950 + ], + "edges_to": [ + 1530 + ], + "id": 1528, + "label": "SE 140A", + "title": "Professional Issues and Design for Civil Structures I (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 1528, + 5113, + 4474, + 2213 + ], + "id": 1529, + "label": "SE 130B", + "title": "" + }, + { + "dept": "SE", + "description": "Part II of multidisciplinary team experience to design, analyze, build, and test civil/geotechnical engineering components and systems considering codes, regulations, alternative design solutions, economics, sustainability, constructability, reliability, and aesthetics. Professionalism, technical communication, project management, teamwork, and ethics in engineering practice. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 1528, + 913, + 945 + ], + "edges_to": [], + "id": 1530, + "label": "SE 140B", + "title": "Professional Issues and Design for Civil Structures II (4)" + }, + { + "dept": "VIS", + "description": "This seminar will address and critique various approaches to studying the art of non-Western societies with respect to their own aesthetic and cultural systems. Students are encouraged to explore comparative philosophies of art and test paradigms of Western aesthetic scholarship. Recommended preparation: VIS 21A or 21B or 112 or two upper-division courses in art history strongly recommended. ", + "edges_from": [], + "edges_to": [], + "id": 1531, + "label": "VIS 117E", + "title": "Problems in Ethnoaesthetics (4)" + }, + { + "dept": "MATH", + "description": "to Numerical Optimization: Linear Programming (4)", + "edges_from": [], + "edges_to": [ + 5280 + ], + "id": 1532, + "label": "MATH 171A", + "title": "Introduction" + }, + { + "dept": "MATH", + "description": "to Numerical Optimization: Nonlinear Programming (4)", + "edges_from": [], + "edges_to": [], + "id": 1533, + "label": "MATH 171B", + "title": "Introduction" + }, + { + "dept": "VIS", + "description": "Examines the philosophical debates that locate the Americas in relation to the modern world. ", + "edges_from": [], + "edges_to": [], + "id": 1534, + "label": "VIS 117F", + "title": "Theorizing the Americas (4)" + }, + { + "dept": "VIS", + "description": "and Non-Western Rituals and Ceremonies (4)", + "edges_from": [], + "edges_to": [], + "id": 1535, + "label": "VIS 117I", + "title": "Western" + }, + { + "dept": "ANAR", + "description": "Introduction to archaeology of Mesoamerica, taught through visits to important ancient cities and museums of Mexico and Central America. Complementary to ANAR 154. Itinerary and subject will vary, so course may be taken more than once. Course/program fees may apply. ", + "edges_from": [ + 1536, + 1537 + ], + "edges_to": [ + 1536 + ], + "id": 1536, + "label": "ANAR 155S", + "title": "Study Abroad: Ancient Mesoamerica (4)" + }, + { + "dept": "ANRG", + "description": "", + "edges_from": [], + "edges_to": [ + 1536 + ], + "id": 1537, + "label": "ANRG 106", + "title": "" + }, + { + "dept": "GLBH", + "description": "Selected topics in global health. Content will vary from quarter to quarter. May be taken for credit up to four times.", + "edges_from": [], + "edges_to": [], + "id": 1538, + "label": "GLBH 100", + "title": "Special Topics in Global Health (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 101.) Examines aging as a process of human development from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. Students may not receive credit for GLBH 101 and ANSC 101.", + "edges_from": [], + "edges_to": [], + "id": 1539, + "label": "GLBH 101", + "title": "Aging: Culture and Health in Late Life Human Development (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 105.) Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health care systems in developed, underdeveloped, and developing countries. In addition, we'll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems\u2014multi-drug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: GLBH 105, ANSC 105, ANSC 105S, or ANSC 105GS.", + "edges_from": [], + "edges_to": [], + "id": 1540, + "label": "GLBH 105", + "title": "Global Health and Inequality (4)" + }, + { + "dept": "GPIM", + "description": "This course examines how high-tech companies develop successful products. Emphasizes interplay between business and technology issues, including marketing, finance, manufacturing, prototyping, testing, and design. Student teams develop novel products, from concept to working prototype, including a business plan for launching the product. Discussion of concurrent engineering, rapid prototyping, industrial design, and other design methodologies. Renumbered from IRGN 444. Students may not receive credit for GPIM 444 and IRGN 444.", + "edges_from": [], + "edges_to": [], + "id": 1541, + "label": "GPIM 444", + "title": "Product Development (4)" + }, + { + "dept": "HUM", + "description": "Individually guided readings or projects in area of humanities not normally covered in standard curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 1542, + "label": "HUM 199", + "title": "Special Studies (2\u20134)" + }, + { + "dept": "HUM", + "description": "An introduction to teaching humanities. Students are required to attend weekly discussions on methods of teaching humanities and will teach discussion sections of one of the humanities courses. Attendance at lecture of the course in which the student is participating is required. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1543, + "label": "HUM 195", + "title": "Methods of Teaching Humanities (4)" + }, + { + "dept": "BGGN", + "description": "(4\u201312)", + "edges_from": [], + "edges_to": [], + "id": 1544, + "label": "BGGN 271", + "title": "Advanced Experimental Methods in Biology" + }, + { + "dept": "FMPH", + "description": "This graduate course covers concepts, methods, and applications of multivariate data analysis, including multivariate regression, principal components, clustering and functional analysis. Data analysis will be emphasized. ", + "edges_from": [ + 1334, + 1335 + ], + "edges_to": [], + "id": 1545, + "label": "FMPH 227", + "title": "Applied Multivariate Statistical Analysis (4)" + }, + { + "dept": "FMPH", + "description": "An introduction to inference and causal modeling for observational data, including propensity score adjustment, inverse probability weighting, instrumental variables, and sensitivity analysis. Data analysis and computation will be required. ", + "edges_from": [ + 1547, + 1334, + 1335 + ], + "edges_to": [], + "id": 1546, + "label": "FMPH 226", + "title": "Statistical Methods for Observational Studies (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 1552, + 1553, + 1334, + 1550, + 1551 + ], + "edges_to": [ + 1546, + 1548 + ], + "id": 1547, + "label": "FMPH 223", + "title": "" + }, + { + "dept": "FMPH", + "description": "The graduate class will cover modern statistical inference including non-parametric statistics, estimating equations, resampling methods, and statistical learning. Data analysis and computation will be emphasized. ", + "edges_from": [ + 1547, + 1334, + 1335 + ], + "edges_to": [], + "id": 1548, + "label": "FMPH 225", + "title": "Advanced Topics in Biostatistical Inference (4)" + }, + { + "dept": "FMPH", + "description": "The graduate class will cover statistical aspects of clinical trial design, monitoring, analysis, and ethics of human subjects research. Data analysis and computation will be emphasized. ", + "edges_from": [ + 1334, + 1335 + ], + "edges_to": [], + "id": 1549, + "label": "FMPH 224", + "title": "Clinical Trials (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1547 + ], + "id": 1550, + "label": "MATH 281B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1547, + 1334 + ], + "id": 1551, + "label": "MATH 281A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3492, + 3493, + 1547, + 1553, + 1334, + 2559 + ], + "id": 1552, + "label": "MATH 282A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1552 + ], + "edges_to": [ + 1547 + ], + "id": 1553, + "label": "MATH 282B", + "title": "" + }, + { + "dept": "NANO", + "description": "The structure and operational principles of different nature biomotors will be discussed. Related bio-inspired efforts aimed at developing artificial nanomotors will also be covered, along with the prospects of using biomotors and synthetic nanomotors in engineering environments.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1554, + "label": "NANO 244", + "title": "Nanomachines and Nanorobots (4)" + }, + { + "dept": "NANO", + "description": "An introduction to the nano electronics and nanospintronics; fundamentals of semiconductors; electronic band structure theory, electron transport in semiconductors and nano structures, nano devices. ", + "edges_from": [ + 1037 + ], + "edges_to": [], + "id": 1555, + "label": "NANO 245", + "title": "Nanoelectronics (4)" + }, + { + "dept": "NANO", + "description": "This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nano materials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nano composites, and applications in biomedicine and food science. Cross-listed with Chem 241.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1556, + "label": "NANO 241", + "title": "Organic Nanomaterials (4)" + }, + { + "dept": "MGT", + "description": "Preparation and interpretation", + "edges_from": [], + "edges_to": [], + "id": 1557, + "label": "MGT 131A", + "title": "Intermediate Accounting A (4)" + }, + { + "dept": "NANO", + "description": "Introduction to nanomedicine; diffusion and drug dispersion; diffusion in biological systems; drug permeation through biological barriers; drug transport by fluid motion; pharmacokinetics of drug distribution; drug delivery systems; nanomedicine in practice: cancers, cardiovascular diseases, immune diseases, and skin diseases. Cross-listed with CENG 207. Students may not receive credit for both NANO 243 and CENG 207. ", + "edges_from": [], + "edges_to": [], + "id": 1558, + "label": "NANO 243", + "title": "Nanomedicine (4)" + }, + { + "dept": "ETHN", + "description": "A Genealogy of Critical Racial and Ethnic Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 1559, + "label": "ETHN 200A", + "title": "Departures:" + }, + { + "dept": "ETHN", + "description": "This course uses model studies to explore how comparative and relational problems are posed as research projects, how research questions are constructed, and how they employ theory to frame the project and establish what is at stake in the research. ", + "edges_from": [], + "edges_to": [], + "id": 1560, + "label": "ETHN 200B", + "title": "Formulations: Interdisciplinarity and Knowledge Production in Ethnic Studies (4)" + }, + { + "dept": "ETHN", + "description": "(Proseminar): Research in Ethnic Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 1561, + "label": "ETHN 200C", + "title": "Projects" + }, + { + "dept": "COMM", + "description": "(Same as PS 194, USP 194, Hist 193, SocE 194, Erth 194.) Course attached to six-unit internship taken by students participating in the UCDC program. Involves weekly seminar meetings with faculty and teaching assistants and a substantial research paper. ", + "edges_from": [], + "edges_to": [], + "id": 1562, + "label": "COMM 194", + "title": "Research Seminar in Washington, D.C. (4)" + }, + { + "dept": "COMM", + "description": "Specialized study in general communication with topics to be determined by the instructor for any given quarter. May be repeated for credit. ", + "edges_from": [ + 1564 + ], + "edges_to": [], + "id": 1563, + "label": "COMM 193", + "title": "Advanced Topics in Communication: General (2)" + }, + { + "dept": "AIP", + "description": "", + "edges_from": [], + "edges_to": [ + 1563 + ], + "id": 1564, + "label": "AIP 197", + "title": "" + }, + { + "dept": "COMM", + "description": "The junior seminar entails a detailed examination of a specific topic from the field of communication, exploring in greater depth theories and methods introduced in the core communication curriculum. Seminars are limited to thirty students, with a heavy focus on class participation. Students complete a research project with a significant final product (typically a research paper). Students will not receive credit for both COGN 150 and COMM 190. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1565, + "label": "COMM 190", + "title": "Junior Seminar in Communication (4)" + }, + { + "dept": "COMM", + "description": "Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1566, + "label": "COMM 198", + "title": "Directed Group Study in Communication (4)" + }, + { + "dept": "COMM", + "description": "Independent study and research under the direction of a member of the faculty. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1567, + "label": "COMM 199", + "title": "Independent Study in Communication (4)" + }, + { + "dept": "VIS", + "description": "(Cross-listed with HIEU 124GS.) Language and culture study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fees may be required. Students may not receive credit for both VIS 122E and VIS 122GS or both HIEU 124 and HIEU 124GS.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1568, + "label": "VIS 122GS", + "title": "The City in Italy (4)" + }, + { + "dept": "ANAR", + "description": "An introductory survey of the archaeology, history, art, and architecture of ancient Egypt that focuses on the men and women who shaped Western civilization. ", + "edges_from": [], + "edges_to": [], + "id": 1569, + "label": "ANAR 144", + "title": "Pharaohs, Mummies, and Pyramids: Introduction to Egyptology (4)" + }, + { + "dept": "ANAR", + "description": "What should we eat and how should we farm to guide a sustainable future? This course will examine what humans evolved to eat and how we began to first cultivate the foods we rely on today. After a survey of traditional farming methods around the world, we will examine how farming systems have changed since the Green Revolution and its successes and failures. The final part of class will focus on the last twenty years, when humans began to modify plant life at the genetic level. Students may not receive credit for ANAR 146 and SIO 146. ", + "edges_from": [], + "edges_to": [], + "id": 1570, + "label": "ANAR 146", + "title": "Feeding the World (4)" + }, + { + "dept": "ANAR", + "description": "Israel is a land-bridge between Africa and Asia. Course highlights the prehistory of the Levant and its interconnections from the Paleolithic to the rise of the earliest cities in anthropological perspective. ", + "edges_from": [], + "edges_to": [], + "id": 1571, + "label": "ANAR 141", + "title": "Prehistory of the Holy Land (4)" + }, + { + "dept": "ANAR", + "description": "The relationship between archaeological data, historical research, the Hebrew Bible, and anthropological theory are explored along with new methods and current debates in Levantine archaeology. ", + "edges_from": [], + "edges_to": [], + "id": 1572, + "label": "ANAR 143", + "title": "Biblical Archaeology\u2014Fact or Fiction (4)" + }, + { + "dept": "ANAR", + "description": "The emergence and consolidation of the state in ancient Israel is explored by using archaeological data, biblical texts, and anthropological theories. The social and economic processes responsible for the rise and collapse of ancient Israel are investigated. Recommended preparation: ANTH 3. ", + "edges_from": [], + "edges_to": [], + "id": 1573, + "label": "ANAR 142", + "title": "The Rise and Fall of Ancient Israel (4)" + }, + { + "dept": "MAE", + "description": "Principles of Mechanical Design I (4)", + "edges_from": [], + "edges_to": [], + "id": 1574, + "label": "MAE 156A", + "title": "Fundamental" + }, + { + "dept": "ECE", + "description": "This course covers the growth, characterization, and heterojunction properties of III-V compound semiconductors and group-IV heterostructures for the subsequent courses on electronic and photonic device applications. Topics include epitaxial growth techniques, electrical properties of heterojunctions, transport and optical properties of quantum wells and superlattices. ", + "edges_from": [ + 1576 + ], + "edges_to": [ + 1577 + ], + "id": 1575, + "label": "ECE 236A", + "title": "III-V Compound Semiconductor Materials (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2299, + 1575 + ], + "id": 1576, + "label": "ECE 230A", + "title": "" + }, + { + "dept": "ECE", + "description": "Absorption and emission of radiation in semiconductors. Radiative transition and nonradiative recombination. Laser, modulators, and photodetector devices will be discussed. (Recommended prerequisites: ECE 230A and ECE 230C or equivalent.) ", + "edges_from": [ + 1575 + ], + "edges_to": [ + 2059 + ], + "id": 1577, + "label": "ECE 236B", + "title": "Optical Processes in Semiconductors (4)" + }, + { + "dept": "MAE", + "description": "Principles of Mechanical Design II (4)", + "edges_from": [], + "edges_to": [], + "id": 1578, + "label": "MAE 156B", + "title": "Fundamental" + }, + { + "dept": "AUD", + "description": "Physiological and anatomical substrates of auditory and vestibular disorders including influences of neurological disorders. Topics include peripheral and central disorders, congenital disorders due to infections, as well as acquired ototoxic, noise-induced, infective, autoimmune, age-associated disorders, and traumatic disorders. ", + "edges_from": [ + 1580 + ], + "edges_to": [], + "id": 1579, + "label": "AUD 256", + "title": "Pathophysiology of the Auditory and Vestibular Systems (4)" + }, + { + "dept": "AUD", + "description": "", + "edges_from": [], + "edges_to": [ + 1579 + ], + "id": 1580, + "label": "AUD 255", + "title": "" + }, + { + "dept": "MUS", + "description": "Primarily intended for music majors. Development of basic skills: perception and notation of pitch and temporal relationships. Introduction to functional harmony. Studies in melodic writing. Drills in sight singing, rhythmic reading, and dictation. ", + "edges_from": [ + 768, + 1582, + 767 + ], + "edges_to": [], + "id": 1581, + "label": "MUS 2A-B-C", + "title": "Basic Musicianship (4-4-4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1581, + 2581 + ], + "id": 1582, + "label": "MUS 2CK", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1585 + ], + "id": 1583, + "label": "PSYC 115A", + "title": "Laboratory in Cognitive Psychology I (4)" + }, + { + "dept": "HINE", + "description": "Study in Near Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 1584, + "label": "HINE 199", + "title": "Independent" + }, + { + "dept": "PSYC", + "description": "This course is designed to extend the training of PSYC 115A in the design, execution, and analysis of cognitive psychology experiments. Students may not receive credit for both PSYC 115 and PSYC 115B. ", + "edges_from": [ + 1583 + ], + "edges_to": [], + "id": 1585, + "label": "PSYC 115B", + "title": "Laboratory in Cognitive Psychology II (4)" + }, + { + "dept": "CHEM", + "description": "Overview of new systems biology \u201c-omics\u201d approached to lipid metabolism and cell signaling, including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Cross-listed with BIOM 209 and PHAR 208. Recommended preparation: one quarter of undergraduate biochemistry.", + "edges_from": [], + "edges_to": [], + "id": 1586, + "label": "CHEM 210", + "title": "Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)" + }, + { + "dept": "CHEM", + "description": "A discussion of current topics in chemical biology including mechanistic aspects of enzymes and cofactors, use of modified enzymes to alter biochemical pathways, chemical intervention in cellular processes, and natural product discovery. ", + "edges_from": [], + "edges_to": [], + "id": 1587, + "label": "CHEM 216", + "title": "Chemical Biology (4)" + }, + { + "dept": "CHEM", + "description": "Selected topics in RNA structure and function, such as the ribosome, ribozyme, antibiotics, splicing and RNA interference, as they relate to the RNA role in gene expression and regulation. Emphasis on techniques to study the dynamics of macromolecular complexes and the mechanism of RNA catalysis. ", + "edges_from": [], + "edges_to": [], + "id": 1588, + "label": "CHEM 217", + "title": "RNA Structure, Function, and Biology (4)" + }, + { + "dept": "CHEM", + "description": "This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 114D. ", + "edges_from": [], + "edges_to": [], + "id": 1589, + "label": "CHEM 214", + "title": "Molecular and Cellular Biochemistry (4)" + }, + { + "dept": "GPCO", + "description": "This course introduces students to the methods of policy analysis and decision-making theory, including methods to assemble panel data to capture the impact of new policy on observable data, decision-making theory, uncertainty, decision criteria, expected utility, and risk. Renumbered from IRCO 407. Students may not receive credit for GPCO 407 and IRCO 407. ", + "edges_from": [], + "edges_to": [], + "id": 1590, + "label": "GPCO 407", + "title": "Policy Analysis and Decision Theory (4)" + }, + { + "dept": "GPCO", + "description": "This course introduces principles of taxation and expenditure analysis, public budgeting, and assessment of budget priorities. It will introduce students to concepts related to how public finance affects the private economy, how governments raise funds (and account for their expenditures to the public, foreign investors, and international organizations), and the major public policy tools for governing public finance. Renumbered from IRCO 406. Students may not receive credit for GPCO 406 and IRCO 406. ", + "edges_from": [], + "edges_to": [], + "id": 1591, + "label": "GPCO 406", + "title": "Public Finance and Taxation (4)" + }, + { + "dept": "GPCO", + "description": "This course studies the structure of American government and the political dimensions of policy problems. Emphasis will be on the study of institutions and the influences and constraints on decision-making, interaction between branches of government, government and society, and the international context in which US policy makers must work. Attention will be given to considering the United States with a comparative perspective. Renumbered from IRCO 405. Students may not receive credit for GPCO 405 and IRCO 405. ", + "edges_from": [], + "edges_to": [], + "id": 1592, + "label": "GPCO 405", + "title": "Policy and Political Decision-Making in the U.S. (4)" + }, + { + "dept": "GPCO", + "description": "Builds on GPCO 410, Microeconomics for Policy and Management. Applies economic reasoning to public issues, policies, and programs with a focus on the logic of when and how policy makers intervene in the market. It considers incentives and organizations; models of economic behavior, including markets, the absence of markets, and interventions; the price system; policy objectives and instruments. Renumbered from IRCO 404. Students may not receive credit for GPCO 404 and IRCO 404. ", + "edges_from": [], + "edges_to": [], + "id": 1593, + "label": "GPCO 404", + "title": "Market Failures and Policy Interventions (4)" + }, + { + "dept": "GPCO", + "description": "The theory and mechanics of international economics. Included will be such topics as real trade theory, international movements of capital, the effects of trade and capital flows on domestic economies, and policies toward trade and foreign investment. Renumbered from IRCO 403. Students may not receive credit for GPCO 403 and IRCO 403. ", + "edges_from": [], + "edges_to": [ + 3848, + 1963, + 4621, + 4791, + 1695 + ], + "id": 1594, + "label": "GPCO 403", + "title": "International Economics (4)" + }, + { + "dept": "GPCO", + "description": "This course introduces microeconomics, emphasizing applications to public policy. We examine tools such as marginal analysis and game theory to understand markets, the behavior of individuals and firms, and what role policy plays when markets fail to maximize social welfare. Renumbered from IRCO 401. Students may not receive credit for GPCO 401 and IRCO 401. ", + "edges_from": [], + "edges_to": [ + 3848, + 5257, + 1963, + 5256, + 4791, + 1695 + ], + "id": 1595, + "label": "GPCO 401", + "title": "Microeconomics for Policy and Management (4)" + }, + { + "dept": "ENVR", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. ", + "edges_from": [], + "edges_to": [], + "id": 1596, + "label": "ENVR 500", + "title": "Apprentice Teaching in Environmental Studies (4)" + }, + { + "dept": "CSE", + "description": "Theory of databases. Theory of query languages, dependency theory, deductive databases, incomplete information, complex objects, object-oriented databases, and more. Connections to logic and complexity theory including finite model theory and descriptive complexity. ", + "edges_from": [ + 393 + ], + "edges_to": [], + "id": 1597, + "label": "CSE 233", + "title": "Database Theory (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 264D.) Database models including relational, hierarchic, and network approaches. Implementation of databases including query languages and system architectures. ", + "edges_from": [ + 17 + ], + "edges_to": [ + 5202 + ], + "id": 1598, + "label": "CSE 232", + "title": "Principles of Database Systems (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 264C.) Advanced material in", + "edges_from": [], + "edges_to": [], + "id": 1599, + "label": "CSE 231", + "title": "Advanced Compiler Design (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 273.) Functional versus imperative programming. Type systems and polymorphism; the ML language. Higher order functions, lazy evaluation. Abstract versus concrete syntax, structural and well-founded induction. The lambda calculus, reduction strategies, combinators. Denotational semantics, elementary domain theory. ", + "edges_from": [ + 1601 + ], + "edges_to": [], + "id": 1600, + "label": "CSE 230", + "title": "Principles of Programming Languages (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1600 + ], + "id": 1601, + "label": "CSE 130", + "title": "" + }, + { + "dept": "HIUS", + "description": "Study in United States History (4)", + "edges_from": [], + "edges_to": [], + "id": 1602, + "label": "HIUS 199", + "title": "Independent" + }, + { + "dept": "HIUS", + "description": "Directed group study on United States history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 1603, + "label": "HIUS 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MATH", + "description": "Third course in algebra from a computational perspective. Groups, rings, linear algebra, rational and Jordan forms, unitary and Hermitian matrices, matrix decompositions, perturbation of eigenvalues, group representations, symmetric functions, fast Fourier transform, commutative algebra, Grobner basis, finite fields. ", + "edges_from": [ + 1605 + ], + "edges_to": [], + "id": 1604, + "label": "MATH 202C", + "title": "Applied Algebra III (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1606 + ], + "edges_to": [ + 1604 + ], + "id": 1605, + "label": "MATH 202B", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1605 + ], + "id": 1606, + "label": "MATH 202A", + "title": "" + }, + { + "dept": "COMM", + "description": "Examines the complex relationship between mass media and the consumers and viewers they target. This course covers theories about audiences, reading practices of audiences, the economics of audiences, and the role of audiences in the digital era. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1607, + "label": "COMM 134", + "title": "Media Audiences (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 274.) Floating point", + "edges_from": [], + "edges_to": [ + 2269 + ], + "id": 1608, + "label": "MATH 174", + "title": "Numerical Methods for Physical Modeling (4)" + }, + { + "dept": "MATH", + "description": "Methods for Partial Differential Equations (4)", + "edges_from": [], + "edges_to": [], + "id": 1609, + "label": "MATH 175", + "title": "Numerical" + }, + { + "dept": "COMM", + "description": "Transmedia is a mode of production in which a text or story unfolds across multiple media platforms. Exploring all the facets of this widespread phenomenon\u2014historical, aesthetic, industrial, theoretical, and practical. This course explores and critically analyzes the art and economics of contemporary transmedia. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 1610, + "label": "COMM 136", + "title": "Transmedia (4)" + }, + { + "dept": "Soc/G", + "description": "Will examine the controversies surrounding the construction of the modern citizen and the good society of the liberal outlook, and their alternatives in the communitarian, social-democratic, nationalist, feminist, and multiculturalist perspectives. ", + "edges_from": [], + "edges_to": [], + "id": 1611, + "label": "Soc/G 269", + "title": "The Citizenship Debates (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 109) This survey course explores six topics: 1) the state\u2019s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California\u2019s role in national politics.", + "edges_from": [], + "edges_to": [], + "id": 1612, + "label": "POLI 103A", + "title": "California Government and Politics (4)" + }, + { + "dept": "Soc/G", + "description": "Course examines social construction of gender focusing on recent contributions to the field, including micro- and macro-level topics, i.e., social psychological issues in the development of gender, gender stratification in the labor force, gender and social protest, feminist methodologies. ", + "edges_from": [], + "edges_to": [], + "id": 1613, + "label": "Soc/G 267", + "title": "Sociology of Gender (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 115) This course examines how", + "edges_from": [], + "edges_to": [], + "id": 1614, + "label": "POLI 103C", + "title": "Politics and Policymaking in San Diego (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 113) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ", + "edges_from": [], + "edges_to": [], + "id": 1615, + "label": "POLI 103B", + "title": "Politics and Policymaking in Los Angeles (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 116) This course surveys public finance and administration. It focuses upon California local governments\u2014cities, counties, and special districts\u2014and also examines state and federal relationships. Topics explored include revenue, expenditure, indebtedness, policy responsibilities, and administrative organization and processes. ", + "edges_from": [], + "edges_to": [], + "id": 1616, + "label": "POLI 103D", + "title": "California Local Government: Finance and Administration (4)" + }, + { + "dept": "CAT", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 1617, + "label": "CAT 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "COMM", + "description": "Hands-on course introduces design as political activity. How will differently designed objects, environments perpetuate, interrupt status quo. Examine design, architecture, media activism, workday life. Examine ambiguous problems, take and give feedback, create prototypes to engage communities, broader publics. Students see design as part of longer-term social transformations. ", + "edges_from": [ + 1025, + 294, + 1619, + 1620, + 1621, + 568 + ], + "edges_to": [ + 1622 + ], + "id": 1618, + "label": "COMM 124A", + "title": "Critical Design Practice/Advanced Studio (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 1618, + 2404 + ], + "id": 1619, + "label": "POLI 10", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 1618 + ], + "id": 1620, + "label": "POLI 10D", + "title": "" + }, + { + "dept": "ESYS", + "description": "", + "edges_from": [], + "edges_to": [ + 1618 + ], + "id": 1621, + "label": "ESYS 10", + "title": "" + }, + { + "dept": "COMM", + "description": "Course builds on understanding design as political activity. Group work to design quarter-long projects that explore political role of design, include design in built environments, organizations, media technologies. Deepened capacities to design in public, for publics, with publics. May be taken for credit three times. ", + "edges_from": [ + 1618 + ], + "edges_to": [], + "id": 1622, + "label": "COMM 124B", + "title": "Critical Design Practice/Topic Studio (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit three times when topics vary. Recommended preparation: may require shop skills. ", + "edges_from": [], + "edges_to": [], + "id": 1623, + "label": "DSGN 161", + "title": "Design Project (4)" + }, + { + "dept": "HLAW", + "description": "Students will be involved in a high-level applied research project. The project will cover an area of health law related to topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee of faculty and may include industry advisors when appropriate. ", + "edges_from": [ + 1625, + 1626 + ], + "edges_to": [], + "id": 1624, + "label": "HLAW 299", + "title": "Independent Study Project in Health Law (3)" + }, + { + "dept": "HLAW", + "description": "", + "edges_from": [], + "edges_to": [ + 1624 + ], + "id": 1625, + "label": "HLAW 298C", + "title": "" + }, + { + "dept": "HLAW", + "description": "", + "edges_from": [], + "edges_to": [ + 1624 + ], + "id": 1626, + "label": "HLAW 298A", + "title": "" + }, + { + "dept": "HLAW", + "description": "Faculty member will direct a student\u2019s study in selected professional development topics in health law. Specific content will be tailored to the student\u2019s particular needs and area of interest. Students must make arrangements with the program and individual faculty member prior to enrolling in the course each time. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 1627, + "label": "HLAW 298", + "title": "Directed Studies in Health Law (2)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit three times when topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 1628, + "label": "DSGN 160", + "title": "Special Topics in Design (4)" + }, + { + "dept": "COGS", + "description": "Evidence for genetic mediation of behavioral and neural differences, mechanisms that may mediate these effects, and the roles of the environment and experience are discussed. ", + "edges_from": [ + 1630, + 1631 + ], + "edges_to": [], + "id": 1629, + "label": "COGS 178", + "title": "Genes, Brains, and Behavior (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 3412, + 1629, + 5974, + 4527 + ], + "id": 1630, + "label": "COGS 107B", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 4749, + 1641, + 3412, + 1629, + 1639 + ], + "id": 1631, + "label": "COGS 107A", + "title": "" + }, + { + "dept": "COGS", + "description": "Survey the theory and practice of using electrical", + "edges_from": [], + "edges_to": [], + "id": 1632, + "label": "COGS 179", + "title": "Electrophysiology of Cognition (4)" + }, + { + "dept": "TDDE", + "description": "One of three classes in theatre process. The course aims to develop basic skills in lighting design through practical projects, lab work and lecture. These emphasize collaborating, manipulating light and color, and developing craft skills. ", + "edges_from": [ + 1418, + 1634 + ], + "edges_to": [], + "id": 1633, + "label": "TDDE 121", + "title": "Theatre Process\u2014Lighting Design (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 1633, + 5207 + ], + "id": 1634, + "label": "TDPR 3", + "title": "" + }, + { + "dept": "COGS", + "description": "This course will provide an interactive and hands-on introduction to rhythms and large-scale electrical potentials of the brain. Topics will include the resonance properties of neurons, rhythmic interactions between neurons, the coordination of activity across large populations of neurons that is measurable in the local field potential (LFP) and electroencephalogram (EEG), the advantages of temporally coordinated neural activity, and relevant insights about the brain and cognitive disorders. ", + "edges_from": [ + 1636, + 1637 + ], + "edges_to": [], + "id": 1635, + "label": "COGS 170", + "title": "Brain Waves Across Scales (4)" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1635, + 5974, + 4287 + ], + "id": 1636, + "label": "BILD 12", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 1635, + 3412 + ], + "id": 1637, + "label": "COGS 17", + "title": "" + }, + { + "dept": "COGS", + "description": "This class will examine the neuroanatomy, physiology, and functional correlates of the human mirror neuron system and its putative role in social cognition, e.g., action understanding, empathy, and theory of mind. We will examine the developmental, neuroimaging, electrophysiological, as well as clinical evidence, for and against this hypothesis. ", + "edges_from": [], + "edges_to": [], + "id": 1638, + "label": "COGS 171", + "title": "Mirror Neuron System (4)" + }, + { + "dept": "COGS", + "description": "A review of the patterns of impaired and intact cognitive abilities present in brain-damaged patients in terms of damage to one or more components of a model of normal cognitive functioning. ", + "edges_from": [ + 1631 + ], + "edges_to": [], + "id": 1639, + "label": "COGS 172", + "title": "Brain Disorders and Cognition (4)" + }, + { + "dept": "COGS", + "description": "This course explores how drugs interact with the brain/mind and culture. It covers evolutionary and historical perspectives, brain chemistry, pharmacology, expectancies and placebo effects, and models of addiction. It also provides a biopsychosocial survey of commonly used and abused substances. ", + "edges_from": [], + "edges_to": [], + "id": 1640, + "label": "COGS 174", + "title": "Drugs: Brain, Mind, and Culture (4)" + }, + { + "dept": "COGS", + "description": "This course will review the literature that correlates brain rhythms in the human EEG with aspects of cognition, behavioral states, neuropsycho-pharmacology, and psychopathology in order to understand the psychological and neurophysiological underpinnings of these experiences. ", + "edges_from": [ + 1642, + 1631 + ], + "edges_to": [], + "id": 1641, + "label": "COGS 175", + "title": "The Neuropsychological Basis of Alternate States of Consciousness (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 568 + ], + "edges_to": [ + 1880, + 1641, + 1882 + ], + "id": 1642, + "label": "COGS 101A", + "title": "" + }, + { + "dept": "COGS", + "description": "This course will combine an examination of the neural character of quiet and active sleep states and their potential functions with an examination of the different mechanisms by which the brain mediates attention to specific features of the world. ", + "edges_from": [], + "edges_to": [], + "id": 1643, + "label": "COGS 176", + "title": "From Sleep to Attention (4)" + }, + { + "dept": "COGS", + "description": "The course examines features of neural dynamics that map spatial and temporal relationships. Lectures will cover interval timing, mapping of item-to-observer position, mapping of observer-to-world position, and the conjunction of spatial and temporal coding in hippocampus. ", + "edges_from": [], + "edges_to": [], + "id": 1644, + "label": "COGS 177", + "title": "Space and Time in the Brain (4)" + }, + { + "dept": "ECE", + "description": "The course aims to provide a broad coverage of key results, techniques, and open problems in network information theory. Topics include background (information measures and typical sequences, point-to-point communication) and single-hop networks (multiple access channels, degraded broadcast channels, interference channels, channels with state, general broadcast channels, Gaussian vector channels, distributed lossless source coding, source coding with side information). ", + "edges_from": [ + 1646, + 743 + ], + "edges_to": [], + "id": 1645, + "label": "ECE 255C", + "title": "Network Information Theory (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1647 + ], + "edges_to": [ + 1645 + ], + "id": 1646, + "label": "ECE 255B", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1646 + ], + "id": 1647, + "label": "ECE 255A", + "title": "" + }, + { + "dept": "ETHN", + "description": "This course offers scholars of race, gender, and sexuality an introduction to spatial theory and geographic methodologies. Particular attention will be given to theories of spatial formation, the interplay of social and spatial mobility and containment, and alternative spatio-political imaginaries. ", + "edges_from": [], + "edges_to": [], + "id": 1648, + "label": "ETHN 252", + "title": "Race, Gender, and Space (4)" + }, + { + "dept": "ETHN", + "description": "This seminar explores the centrality of race to the formation of the discipline of psychoanalysis as well as the relevance of psychoanalysis to the study of race, gender, and sexuality. We will read key texts by Freud, Lacan, and Fanon and follow the development of their ideas in the works of late twentieth and twenty-first century scholars like Spillers, Marriott, Judy, Seshadri-Crooks, Eng, and Mercer. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 1649, + "label": "ETHN 255", + "title": "Race and Psychoanalysis (4)" + }, + { + "dept": "ETHN", + "description": "This course studies the body cross-culturally as the site for the construction of gender, sex, ethnic, and racial identities. ", + "edges_from": [], + "edges_to": [], + "id": 1650, + "label": "ETHN 256", + "title": "Gender, Sexuality, and Race (4)" + }, + { + "dept": "EDS", + "description": "This course introduces prospective secondary teachers to the cognitive, social, and emotional development of adolescents, including developmental learning theory, the teaching/learning process, effective learning environments, and cross-cultural variation in development. Implications for classroom practice are drawn.", + "edges_from": [], + "edges_to": [], + "id": 1651, + "label": "EDS 118", + "title": "Adolescent Development and Education (4)" + }, + { + "dept": "EDS", + "description": "(Same as SOCI 117) The mutual influence of language, culture, and education will be explored; explanations of students\u2019 school successes and failures that employ linguistic and cultural variables will be considered; bilingualism and cultural transmission through education. Students may not receive credit for EDS 117 and SOCI 117 and EDS 117GS. ", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 1652, + "label": "EDS 117", + "title": "Language, Culture, and Education (4)" + }, + { + "dept": "EDS", + "description": "College students tutoring college students. Curriculum: basic applied learning principles, specifying objectives, planning and designing instruction, testing, evaluation, interpersonal communication skills, study skills. Objectives will be specified for each area. Competency will be assessed by project completion and practicum feedback. This course is not creditable toward professional preparation requirements for the multiple subject credential. ", + "edges_from": [], + "edges_to": [], + "id": 1653, + "label": "EDS 116", + "title": "The Psychology of Teaching and Structures of Information for Human Learning (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with TDAC 120.) An intensive theatre practicum designed to generate theatre created by an ensemble, with particular emphasis upon the analysis of text. Students will explore and analyze scripts and authors. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell\u2019arte. May be taken for credit two times.", + "edges_from": [], + "edges_to": [], + "id": 1654, + "label": "ETHN 146A", + "title": "Ensemble (4)" + }, + { + "dept": "EDS", + "description": "Development and learning are increasingly supported by interactive computing environments. This course will explore technology-supported learning environments, looking at the ways they can be used to promote effective development, learning, and teaching. ", + "edges_from": [], + "edges_to": [], + "id": 1655, + "label": "EDS 114", + "title": "Cognitive Development and Interactive Computing Environments (4)" + }, + { + "dept": "EDS", + "description": "An overview of the experiences, challenges, and opportunities for educating Chicano/Latino students. This course unpacks the socioeconomic and systematic factors that underlie these data. Further, to understand this persistent phenomenon and explore approaches to altering the current pathway of this group, this course will provide a comprehensive overview of Chicana/o-Latina/o students at every state in the P-20 education continuum. ", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 1656, + "label": "EDS 113", + "title": "Chicanas/os and Latinos in Education: Policy, Practice, and Challenges to Equity (4)" + }, + { + "dept": "EDS", + "description": "Students will read, discuss, and analyze past and present urban education demographics, resources, policies, practices, and outcomes to deepen their knowledge and critique of issues in urban education. ", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 1657, + "label": "EDS 112", + "title": "Urban Education in the United States (4)" + }, + { + "dept": "EDS", + "description": "This course examines how early education programs collaborate with socioculturally diverse families to support child development. Theories will examine social learning, family socialization, risk and resilience, and community engagement and how these theories are enacted in schools, communities, and families. Course assignments will support undergraduates to utilize families\u2019 beliefs, strengths, and resources to support children\u2019s learning with opportunities to engage with them. ", + "edges_from": [], + "edges_to": [], + "id": 1658, + "label": "EDS 111", + "title": "Child, Family, and Community Partnerships with Schools (4)" + }, + { + "dept": "PHIL", + "description": "A study of philosophical themes contained in selected fiction, drama, or poetry, and the philosophical issues that arise in the interpretation, appreciation, and criticism of literature. ", + "edges_from": [], + "edges_to": [], + "id": 1659, + "label": "PHIL 177", + "title": "Philosophy and Literature (4)" + }, + { + "dept": "PHIL", + "description": "Central issues in philosophical aesthetics such as the nature of art and aesthetic experience, the grounds of artistic interpretation and evaluation, artistic representation, and the role of the arts in education, culture, and politics. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 1660, + "label": "PHIL 175", + "title": "Aesthetics (4)" + }, + { + "dept": "PHIL", + "description": "An in-depth exploration of an issue in bioethics. Topics will vary, and may include the ethics of genetic engineering, mental capacity and genuinely informed consent, the just distribution of health care, the ethics of geo-engineering, and the ethics of climate change and health. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 1661, + "label": "PHIL 173", + "title": "Topics in Bioethics (4)" + }, + { + "dept": "EDS", + "description": "Course focuses on challenges that confront college students in their second year of higher education and solutions. Emphasis on historically underrepresented students of color with more complex adjustment to college. Analysis of national trends from research including High-Impact Practices. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1662, + "label": "EDS 23", + "title": "Success and Satisfaction in the Second Year of Higher Education: Research Trends and Conclusions (2)" + }, + { + "dept": "PHIL", + "description": "A philosophical investigation of the topics of race and racism. The role of \u201crace\u201d in ordinary speech. The ethics of racial discourse. Anthropological and biological conceptions of race. The social and political significance of racial categories. Post-racialist conceptions of race. ", + "edges_from": [], + "edges_to": [], + "id": 1663, + "label": "PHIL 170", + "title": "Philosophy and Race (4)" + }, + { + "dept": "PHIL", + "description": "Continuation of Philosophy 178 in the careful, line-by-line translation of passages of advanced difficulty from German philosophical texts, both classic (Kant, Fichte, Hegel, Schopenhauer) and contemporary (Heidegger, Wittgenstein, Habermas). May be repeated for credit as topics vary. ", + "edges_from": [ + 1665 + ], + "edges_to": [], + "id": 1664, + "label": "PHIL 179", + "title": "Topics in German Philosophy Translation\u2014Advanced (2)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 1664 + ], + "id": 1665, + "label": "PHIL 178", + "title": "" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 411A-B-C. Students may not get credit for any IRLA 411 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 1666, + "label": "GPLA 411A-B-C", + "title": "Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "MAE", + "description": "Collisionless magnetic reconnection, interactions of relativistic laser field with plasma, plasma in astrophysics, computational plasma physics. ", + "edges_from": [ + 1668, + 1669, + 1670 + ], + "edges_to": [], + "id": 1667, + "label": "MAE 228", + "title": "Selected Topics in Plasma Physics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1667 + ], + "id": 1668, + "label": "MAE 217C", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1667 + ], + "id": 1669, + "label": "MAE 217B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3121, + 1667 + ], + "id": 1670, + "label": "MAE 217A", + "title": "" + }, + { + "dept": "LTTH", + "description": "Selected topics in critical theory such as a particular mode of literary theory; comparative study of theories of text and image; a problem or theme in the history of theory; and issues involved in the relationship between fiction and other discourses (science, law, history, philosophy, music). Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1671, + "label": "LTTH 150", + "title": "Topics in Critical Theory (4)" + }, + { + "dept": "WARR", + "description": "Students will gain a fundamental understanding of all stages of the writing process and will develop the necessary skills to serve as productive mentors for their peers. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 1672, + "label": "WARR 189", + "title": "Academic Mentoring and the Writing Process (2)" + }, + { + "dept": "DSGN", + "description": "Explores cognitive principles of thinking through making. Introduces methods and tools for prototyping user experiences. Students make various prototypes and participate in weekly critique sessions. Topics: experience design, rapid prototyping, sketching, bodystorming, cardboard modeling, UI hacking, and design theory. ", + "edges_from": [ + 1399 + ], + "edges_to": [ + 5443 + ], + "id": 1673, + "label": "DSGN 100", + "title": "Information Design (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Spanish. Must be taken in conjunction with LISP 1D. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 1675, + 1279 + ], + "edges_to": [], + "id": 1674, + "label": "Linguistics/Spanish (LISP) 1DX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 1674, + 2693 + ], + "id": 1675, + "label": "LISP 1CX", + "title": "" + }, + { + "dept": "ECE", + "description": "A transistor-level view of digital integrated circuits. CMOS combinational logic, ratioed logic, noise margins, rise and fall delays, power dissipation, transmission gates. Short channel MOS model, effects on scaling. Sequential circuits, memory and array logic circuits. Three hours of lecture, one hour of discussion, three hours of laboratory. ", + "edges_from": [ + 1477, + 1480, + 1677, + 1678, + 1679, + 1680 + ], + "edges_to": [], + "id": 1676, + "label": "ECE 108", + "title": "Digital Circuits (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3196, + 1676 + ], + "id": 1677, + "label": "ECE 25", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1676 + ], + "id": 1678, + "label": "CSE 65", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1676 + ], + "id": 1679, + "label": "CSE 45", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 1676 + ], + "id": 1680, + "label": "ECE 30", + "title": "" + }, + { + "dept": "CENG", + "description": "Thermodynamic behavior of pure substances", + "edges_from": [], + "edges_to": [], + "id": 1681, + "label": "CENG 102", + "title": "Chemical Engineering Thermodynamics (4)" + }, + { + "dept": "MATS", + "description": "Each graduate student in the Materials Science and Engineering Program is expected to attend a weekly seminar in materials science or related areas. MS students must enroll for three quarters, PhD students for six quarters, as of fall 1995. (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 1682, + "label": "MATS 200", + "title": "Graduate Seminar (0)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1094 + ], + "edges_to": [ + 1686, + 614, + 2397 + ], + "id": 1683, + "label": "ECE 65", + "title": "" + }, + { + "dept": "MUS", + "description": "Study of tonal harmony and counterpoint. Analysis of Bach chorales and other music from the Baroque period. Musicianship studies: sight-singing, dictation, and keyboard skills. ", + "edges_from": [ + 769 + ], + "edges_to": [ + 5184, + 5026, + 2580, + 5022, + 3982 + ], + "id": 1684, + "label": "MUS 101B", + "title": "Music Theory and Practice II (4)" + }, + { + "dept": "ECE", + "description": "Complex variables. Singularities and residues. Signal and system analysis in continuous and discrete time. Fourier series and transforms. Laplace and z-transforms. Linear Time Invariant Systems. Impulse response, frequency response, and transfer functions. Poles and zeros. Stability. Convolution. Sampling. Aliasing. ", + "edges_from": [ + 846 + ], + "edges_to": [ + 756, + 3340, + 2399 + ], + "id": 1685, + "label": "ECE 101", + "title": "Linear Systems Fundamentals (4)" + }, + { + "dept": "ECE", + "description": "Linear active circuit and system design. Topics include frequency response; use of Laplace transforms; design and stability of filters using operational amplifiers. Integrated lab and lecture involves analysis, design, simulation, and testing of circuits and systems. Program or materials fees may apply. ", + "edges_from": [ + 1683, + 846 + ], + "edges_to": [ + 2397 + ], + "id": 1686, + "label": "ECE 100", + "title": "Linear Electronic Systems (4)" + }, + { + "dept": "ANSC", + "description": "Examines physical and mental health sequalae of internal and transnational movement of individuals and populations due to warfare, political violence, natural disaster, religious persecution, poverty and struggle for economic survival, and social suffering of communities abandoned by migrants and refugees. May be coscheduled with ANTH 238. ", + "edges_from": [ + 1688, + 1687 + ], + "edges_to": [ + 1687 + ], + "id": 1687, + "label": "ANSC 144", + "title": "Immigrant and Refugee Health (4)" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 1687 + ], + "id": 1688, + "label": "ANTH 238", + "title": "" + }, + { + "dept": "MUS", + "description": "Individual instruction on intermediate level in vocal technique and repertory. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in MUS 32VM. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 1689, + "label": "MUS 32V", + "title": "Vocal Instruction (1)" + }, + { + "dept": "ANTH", + "description": "Course will provide an introduction to bones as a tissue, to different bones in the body, and the ligaments and muscles surrounding major joints. You will learn how the skeleton, ligaments, and muscles support our mode of locomotion; the differences between male and female skeletons; and the differences across human populations. You\u2019ll see how nutrition and disease can affect bones. Course examines functional areas within the body.", + "edges_from": [], + "edges_to": [], + "id": 1690, + "label": "ANTH 5", + "title": "The Human Machine: The Skeleton Within (4)" + }, + { + "dept": "ANTH", + "description": "How does one\u2019s language mutually interact with the social, cultural, and conceptual worlds one inhabits and mutually constructs with others? This course will introduce the comparative study of social life through the lens of the uniquely human capacity for language.", + "edges_from": [], + "edges_to": [], + "id": 1691, + "label": "ANTH 4", + "title": "Words and Worlds: Introduction to the Anthropology of Language (4)" + }, + { + "dept": "ANTH", + "description": "An introduction to human evolution from the perspective of physical anthropology, including evolutionary theory and the evolution of the primates, hominids, and modern humans. Emphasis is placed on evidence from fossil remains and behavioral studies of living primates.", + "edges_from": [], + "edges_to": [ + 3924 + ], + "id": 1692, + "label": "ANTH 2", + "title": "Human Origins (4)" + }, + { + "dept": "MUS", + "description": "Group instruction in instrumental or vocal technique and repertory. Intermediate level. Intended for students who make an important contribution to Department of Music ensembles. ", + "edges_from": [], + "edges_to": [], + "id": 1693, + "label": "MUS 32G", + "title": "Group Instrumental Instruction (2)" + }, + { + "dept": "SOCI", + "description": "This introductory course is specifically designed for premedical students and will provide them with a broad introduction to sociological concepts and research, particularly as applied to medicine.", + "edges_from": [], + "edges_to": [], + "id": 1694, + "label": "SOCI 70", + "title": "General Sociology for Premedical Students (4)" + }, + { + "dept": "GPEC", + "description": "A broad survey of the Japanese economy, together with in-depth examination of some distinctively Japanese phenomena such as savings behavior, financial structure, industrial organization, and labor markets. Renumbered from IRGN 471. Students may not receive credit for GPEC 471 and IRGN 471. ", + "edges_from": [ + 1594, + 1595 + ], + "edges_to": [], + "id": 1695, + "label": "GPEC 471", + "title": "Japanese Economy (4)" + }, + { + "dept": "CHEM", + "description": "This special-topics course is designed for first-year graduate students in biochemistry. Topics presented in recent years have included protein processing, the chemical modification of proteins, the biosynthesis and function of glycoproteins, lipid biochemistry and membrane structure, and bioenergetics. ", + "edges_from": [ + 1516 + ], + "edges_to": [], + "id": 1696, + "label": "CHEM 219A", + "title": "Special Topics in Biochemistry (4)" + }, + { + "dept": "HIEU", + "description": "How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D.", + "edges_from": [], + "edges_to": [], + "id": 1697, + "label": "HIEU 132D", + "title": "Germany from Luther to Bismarck (4)" + }, + { + "dept": "HINE", + "description": "A survey of the history of the Middle East, in particular, the Ottoman Empire, from 1200\u20131800. The course examines the emergence of a new political and religious order following the Mongol conquests and its long-lasting effect on the region. +", + "edges_from": [], + "edges_to": [], + "id": 1698, + "label": "HINE 109", + "title": "History of the Middle East (1200\u20131800): The Ottoman Empire (4)" + }, + { + "dept": "MUS", + "description": "Individual instruction in advanced vocal performance. For declared music majors and minors. Students must be simultaneously enrolled in a performance ensemble or nonperformance music course and in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ", + "edges_from": [], + "edges_to": [ + 5369 + ], + "id": 1699, + "label": "MUS 132V", + "title": "Proseminar in Vocal Instruction (4)" + }, + { + "dept": "LTWL", + "description": "The course will center on writers or movements of international literary, cultural, or ideological significance. The texts studied, if foreign, may be read either in the original language or in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1700, + "label": "LTWL 176", + "title": "Literature and Ideas (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Japanese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 410A-B-C. Students may not get credit for any IRLA 410 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 1701, + "label": "GPLA 410A-B-C", + "title": "Low Intermediate Japanese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "MGT", + "description": "This course covers econometric methods including the linear regression", + "edges_from": [], + "edges_to": [], + "id": 1702, + "label": "MGT 287", + "title": "Empirical Finance (4)" + }, + { + "dept": "MGT", + "description": "This course covers most powerful tools in finance, i.e., which are", + "edges_from": [], + "edges_to": [], + "id": 1703, + "label": "MGT 286", + "title": "Continuous-Time Finance (4)" + }, + { + "dept": "USP", + "description": "(Same as POLI 103C.) This course examines how major policy decisions are made in San Diego. In analyses the region\u2019s power structure (including the roles of nongovernmental organizations and the media), governance systems and reform efforts, and the politics of major infrastructure projects. ", + "edges_from": [], + "edges_to": [], + "id": 1704, + "label": "USP 115", + "title": "Politics and Policymaking in San Diego (4)" + }, + { + "dept": "USP", + "description": "Local Government: Finance and Administration (4)", + "edges_from": [], + "edges_to": [], + "id": 1705, + "label": "USP 116", + "title": "California" + }, + { + "dept": "USP", + "description": "(Same as POLI 102JJ.) To be taken with the approval of the Political Science 102J instructor, this course allows students to do original field research on topics in urban politics. This course is offered in Summer Session II subsequent to a spring 102J course. May not be used to fulfill any major or minor requirements in politics science or urban studies and planning. ", + "edges_from": [ + 1707, + 1708, + 1709 + ], + "edges_to": [], + "id": 1706, + "label": "USP 111", + "title": "Field Research in Urban Politics (4)" + }, + { + "dept": "???", + "description": "", + "edges_from": [], + "edges_to": [ + 1706 + ], + "id": 1707, + "label": "??? Science 102J", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 1706 + ], + "id": 1708, + "label": "USP 110", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 1706 + ], + "id": 1709, + "label": "USP 110P", + "title": "" + }, + { + "dept": "USP", + "description": "(Same as POLI 103B.) This course examines politics and policymaking in the five-county Los Angeles region. It explores the historical development of the city, suburbs, and region; politics, power, and governance; and major policy challenges facing the city and metropolitan area. ", + "edges_from": [], + "edges_to": [], + "id": 1710, + "label": "USP 113", + "title": "Politics and Policymaking in Los Angeles (4)" + }, + { + "dept": "ETHN", + "description": "of Native Americans in the United States II (4)", + "edges_from": [], + "edges_to": [], + "id": 1711, + "label": "ETHN 112B", + "title": "History" + }, + { + "dept": "ETHN", + "description": "of Native Americans in the United States I (4)", + "edges_from": [], + "edges_to": [], + "id": 1712, + "label": "ETHN 112A", + "title": "History" + }, + { + "dept": "INTL", + "description": "Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 1713, + "label": "INTL 197", + "title": "Internship (1)" + }, + { + "dept": "PSYC", + "description": "in Communication and Information Processing (1)", + "edges_from": [], + "edges_to": [], + "id": 1714, + "label": "PSYC 280", + "title": "Seminar" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of current theoretical and empirical issues in the neurobiological study of auditory perception and cognition. Example topics include auditory stream segregation, localization, natural stimulus coding, pattern recognition and communication in multiple species. ", + "edges_from": [], + "edges_to": [], + "id": 1715, + "label": "PSYC 282", + "title": "Auditory Neuroscience (4)" + }, + { + "dept": "INTL", + "description": "Required seminar for International Studies seniors. Readings and discussion of topics in international and comparative studies from an interdisciplinary perspective. Emphasis on independent work and completion of a research paper. ", + "edges_from": [ + 1340, + 1717 + ], + "edges_to": [], + "id": 1716, + "label": "INTL 190", + "title": "Seminar in International Studies (4)" + }, + { + "dept": "INTL", + "description": "", + "edges_from": [], + "edges_to": [ + 1716 + ], + "id": 1717, + "label": "INTL 101", + "title": "" + }, + { + "dept": "POLI", + "description": "An analysis of the political system of the Federal Republic of Germany with an emphasis on the party system, elections, executive-legislative relations, and federalism. Comparisons will be made with other West European democracies and the Weimar Republic.", + "edges_from": [], + "edges_to": [], + "id": 1718, + "label": "POLI 120B", + "title": "The German Political System (4)" + }, + { + "dept": "POLI", + "description": "This course will examine the consequences of social and economic change in France. Specific topics will include institutional development under a semi-presidential system, parties, and elections.", + "edges_from": [], + "edges_to": [], + "id": 1719, + "label": "POLI 120C", + "title": "Politics in France (4)" + }, + { + "dept": "POLI", + "description": "An examination of various paths of European political development through consideration of the conflicts that shaped these political systems: the commercialization of agriculture; religion and the role of the church; the army and the state bureaucracy; and industrialization. Stress will be on alternative paradigms and on theorists.", + "edges_from": [], + "edges_to": [], + "id": 1720, + "label": "POLI 120A", + "title": "Political Development of Western Europe (4)" + }, + { + "dept": "POLI", + "description": "Emphasis will be placed on the interaction between British political institutions and processes and contemporary policy problems: the economy, social policy, foreign affairs. The course assumes no prior knowledge of British politics and comparisons with the United States will be drawn.", + "edges_from": [], + "edges_to": [], + "id": 1721, + "label": "POLI 120G", + "title": "British Politics (4)" + }, + { + "dept": "POLI", + "description": "Consideration of political, economic, and security factors that have kept Germany at the center of European developments for more than a century.", + "edges_from": [], + "edges_to": [], + "id": 1722, + "label": "POLI 120D", + "title": "Germany: Before, During, and After Division (4)" + }, + { + "dept": "POLI", + "description": "Introduction to the politics and societies of the Scandinavian states (Denmark, Finland, Norway, and Sweden). Focuses on historical development, political culture, constitutional arrangements, political institutions, parties and interest groups, the Scandinavian welfare states, and foreign policy. ", + "edges_from": [], + "edges_to": [], + "id": 1723, + "label": "POLI 120E", + "title": "Scandinavian Politics (4)" + }, + { + "dept": "USP", + "description": "This course introduces students to major concepts, demographic trends, and the diversity of the aging experience. Through site visits, community-based research, and interactions with elders, students will understand the social and structural determinants of health and well-being across the life course. ", + "edges_from": [], + "edges_to": [ + 1725 + ], + "id": 1724, + "label": "USP 141A", + "title": "Life Course Scholars Research and Core Fundamentals" + }, + { + "dept": "USP", + "description": "In this course, students deepen and apply their knowledge of policy, research, practice, and diverse perspectives on aging. Students participate in collaborative learning and research with local elders, and develop and implement a capstone \"healthy aging project\" in the community. ", + "edges_from": [ + 1724 + ], + "edges_to": [], + "id": 1725, + "label": "USP 141B", + "title": "Life Course Scholars Capstone Project" + }, + { + "dept": "POLI", + "description": "This course will provide a comparative perspective on the development and functioning of the Italian political system. It includes analysis of political institutions, ideological traditions, parties and elections, political elites in the policy process, and the evolving importance of Italy within European integration.", + "edges_from": [], + "edges_to": [], + "id": 1726, + "label": "POLI 120I", + "title": "Politics in Italy (4)" + }, + { + "dept": "POLI", + "description": "This course offers a systematic study of civil wars, electoral violence, anti-immigrant violence, genocides, coups, riots, and rebel groups in sub-Saharan Africa. It will explore why some regions experience certain types of violence and others do not.", + "edges_from": [], + "edges_to": [], + "id": 1727, + "label": "POLI 120N", + "title": "Contention and Conflict in Africa (4)" + }, + { + "dept": "SOCI", + "description": "The study of the unique and universal aspects of the Holocaust. Special attention will be paid to the nature of discrimination and racism, those aspects of modernity that make genocide possible, the relationship among the perpetrators, the victims and the bystanders, and the teaching, memory, and denial of the Holocaust. ", + "edges_from": [ + 1728, + 1729 + ], + "edges_to": [ + 1728, + 2616 + ], + "id": 1728, + "label": "SOCI 178", + "title": "The Holocaust (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 1728 + ], + "id": 1729, + "label": "SOCD 178", + "title": "" + }, + { + "dept": "MATH", + "description": "Error analysis of the numerical solution of linear equations and least squares problems for the full rank and rank deficient cases. Error analysis of numerical methods for eigenvalue problems and singular value problems. Iterative methods for large sparse systems of linear equations. ", + "edges_from": [], + "edges_to": [], + "id": 1730, + "label": "MATH 270A", + "title": "Numerical Linear Algebra (4)" + }, + { + "dept": "POLI", + "description": "This course examines reasons why we can be cautiously optimistic about development, growth, peace and democratization in Africa. Sample cases include Botswana\u2019s resource blessing, postconflict reconstruction in Uganda, and democratization in Ghana, Benin, and Niger.", + "edges_from": [], + "edges_to": [], + "id": 1731, + "label": "POLI 120P", + "title": "Africa\u2019s Success Stories (4)" + }, + { + "dept": "POLI", + "description": "This course introduces students to the comparative study of ethnic politics. It examines the relationships between ethnicity on one hand, and mobilization, political contestation, violence, trust, and pork on the other. It draws from analysis from a variety of contexts and regions, such as sub-Saharan Africa, Eastern Europe, North America, South Asia, and Western Europe. ", + "edges_from": [], + "edges_to": [], + "id": 1732, + "label": "POLI 120Q", + "title": "Ethnic Politics (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 257A/BENG 202.) Introduction to methods for sequence analysis. Applications to genome and proteome sequences. Protein structure, sequence-structure analysis. ", + "edges_from": [ + 1734 + ], + "edges_to": [], + "id": 1733, + "label": "CSE 282/BENG 202", + "title": "Bioinformatics II: Sequence and Structure Analysis\u2014Methods and Applications (4)" + }, + { + "dept": "PHARM", + "description": "", + "edges_from": [], + "edges_to": [ + 1733 + ], + "id": 1734, + "label": "PHARM 201", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 1735, + "label": "Linguistics/Arabic (LIAB) 1A", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "ANTH", + "description": "This course examines new media fandoms through the representation and reception of gender and sexuality in Korean media consumed around the world by highlighting how Korean images are differently interpreted by other national groups. Contrasting various understandings of masculinity, homosexuality, and transgenderism, we explore how the meanings attached to gender and sexuality are not fixed by the productive frame of Korean society, but cocreated and reimagined by international audiences.", + "edges_from": [], + "edges_to": [], + "id": 1736, + "label": "ANTH 44", + "title": "Gender, Sexuality, and New Media Fandom in the Korean Wave (4)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1CX. ", + "edges_from": [ + 1738, + 1739 + ], + "edges_to": [], + "id": 1737, + "label": "Linguistics/Arabic (LIAB) 1C", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 1737, + 3365 + ], + "id": 1738, + "label": "LIAB 1BX", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 1737, + 3365 + ], + "id": 1739, + "label": "LIAB 1B", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1BX. ", + "edges_from": [ + 193, + 194 + ], + "edges_to": [], + "id": 1740, + "label": "Linguistics/Arabic (LIAB) 1B", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1EX. ", + "edges_from": [ + 1742, + 1743 + ], + "edges_to": [], + "id": 1741, + "label": "Linguistics/Arabic (LIAB) 1E", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 2770, + 1741 + ], + "id": 1742, + "label": "LIAB 1D", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 2770, + 1741 + ], + "id": 1743, + "label": "LIAB 1DX", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIAB 1DX. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 1745, + 1746 + ], + "edges_to": [], + "id": 1744, + "label": "Linguistics/Arabic (LIAB) 1D", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 1744, + 5564 + ], + "id": 1745, + "label": "LIAB 1CX", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 1744, + 5564 + ], + "id": 1746, + "label": "LIAB 1C", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "A course to increase the proficiency level of students who have completed LIAB 1E/1EX or who are at an equivalent level. Attention to listening comprehension, conversation, vocabulary building, reading, grammar analysis, and culture. ", + "edges_from": [ + 1748, + 1749 + ], + "edges_to": [], + "id": 1747, + "label": "Linguistics/Arabic (LIAB) 1F", + "title": "Intermediate Arabic Conversation and Analysis (4)" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 1747 + ], + "id": 1748, + "label": "LIAB 1E", + "title": "" + }, + { + "dept": "LIAB", + "description": "", + "edges_from": [], + "edges_to": [ + 1747 + ], + "id": 1749, + "label": "LIAB 1EX", + "title": "" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 1750, + "label": "Linguistics/Portuguese (LIPO) 1CX", + "title": "Analysis of Portuguese (2.5)" + }, + { + "dept": "BIBC", + "description": "Elaborates the relationship between diet and human metabolism, physiology, health, and disease. Covers the functions of carbohydrates, lipids, proteins, vitamins, and minerals, and discusses dietary influences on cardiovascular disease, diabetes, obesity, and cancer. ", + "edges_from": [ + 589 + ], + "edges_to": [], + "id": 1751, + "label": "BIBC 120", + "title": "Nutrition (4)" + }, + { + "dept": "HIEA", + "description": "Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China\u2019s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 170.", + "edges_from": [], + "edges_to": [], + "id": 1752, + "label": "HIEA 270", + "title": "Love and Marriage in Chinese History (4)" + }, + { + "dept": "PHYS", + "description": "Directed group study on a topic, or in a field not included in the regular departmental curriculum. P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 1753, + "label": "PHYS 98", + "title": "Directed Group Study (2)" + }, + { + "dept": "PHYS", + "description": "Independent reading or research on a topic by special arrangement with a faculty member. P/NP grading only. ", + "edges_from": [], + "edges_to": [], + "id": 1754, + "label": "PHYS 99", + "title": "Independent Study (2)" + }, + { + "dept": "LIGN", + "description": "Surveys aspects of Spanish phonetics, phonology, morphology, and syntax. Topics include dialect differences between Latin American and Peninsular Spanish (both from a historical and contemporary viewpoint), gender classes, verbal morphology, and clause structure. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 1755, + "label": "LIGN 143", + "title": "The Structure of Spanish (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 4848, + 1755, + 2029, + 4846, + 2447, + 2448, + 4850, + 4851, + 4853, + 2395, + 3614, + 5141 + ], + "id": 1756, + "label": "LIGN 101", + "title": "" + }, + { + "dept": "TDGE", + "description": "This course examines recent movies by Native American/First Nations artists that labor to deconstruct and critique reductive stereotypes about America\u2019s First Peoples in Hollywood cinema. Carving spaces of \u201cvisual sovereignty\u201d (Raheja), these films propose complex narratives and characterizations of indigeneity. Students may not receive credit for both TDGE 131 and ETHN 163F. ", + "edges_from": [], + "edges_to": [], + "id": 1757, + "label": "TDGE 131", + "title": "Playing Indian: Native American and First Nations Cinema (4)" + }, + { + "dept": "TDGE", + "description": "An exploration of fundamental ways of seeing and thinking about the performance space. A look at the design process as it reflects styles and attitudes through an examination of text/image/meaning/message in theatre, dance, opera, and visual arts. With a special emphasis on the \u201csolution-finding process\u201d in design, as a leap from text to context, to finalized design. ", + "edges_from": [ + 1418 + ], + "edges_to": [], + "id": 1758, + "label": "TDGE 133", + "title": "Visual Ideas (4)" + }, + { + "dept": "TDGE", + "description": "This class examines disability in the performative context, exploring the representation of people with disabilities and the struggle for access and inclusion. The frame of advocacy, understanding, and creative collaboration will deepen the historical perspective on disability. ", + "edges_from": [], + "edges_to": [], + "id": 1759, + "label": "TDGE 134", + "title": "Disability and Performative Exploration: Struggle for Inclusion (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "A communicative introduction to Italian for students with no prior exposure, with attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1A/1AX. ", + "edges_from": [], + "edges_to": [], + "id": 1760, + "label": "Linguistics/Italian (LIIT) 5AS", + "title": "Fundamentals of Italian I (5)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1761, + "label": "LTEN 159", + "title": "Contemporary American Literature (4)" + }, + { + "dept": "LIGN", + "description": "A discourse-centered examination of ASL verbal arts: rhyme, meter, rhythm, handedness, nonmanual signals, and spatial mapping; creation of scene and mood; properties of character, dialogue, narration, and voice; cultural tropes; poetic constructions in everyday genres; transcription, body memory and performance. ", + "edges_from": [ + 1763 + ], + "edges_to": [], + "id": 1762, + "label": "LIGN 144", + "title": "Discourse Analysis: American Sign Language and Performing Arts (4)" + }, + { + "dept": "LISL", + "description": "", + "edges_from": [], + "edges_to": [ + 2353, + 1762, + 2395 + ], + "id": 1763, + "label": "LISL 1C", + "title": "" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1764, + "label": "LTEN 157", + "title": "Captivity and Prison Narratives (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1765, + "label": "LTEN 156", + "title": "American Literature from the Civil War to World War I (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1766, + "label": "LTEN 155", + "title": "Interactions between American Literature and the Visual Arts (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1767, + "label": "LTEN 154", + "title": "The American Renaissance (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1768, + "label": "LTEN 153", + "title": "The Revolutionary War and the Early National Period in US Literature (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1769, + "label": "LTEN 152", + "title": "The Origins of American Literature (4)" + }, + { + "dept": "HILA", + "description": "Inside or outside the household, women have always worked. Where do we find Latin American women? How has the labor market changed? How was and is women\u2019s work perceived? What were the consequences of changing work patterns on family life? ", + "edges_from": [], + "edges_to": [], + "id": 1770, + "label": "HILA 164/264", + "title": "Women\u2019s Work and Family Life in Latin America (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1771, + "label": "LTEN 150", + "title": "Gender, Text, and Culture (4)" + }, + { + "dept": "COGS", + "description": "This course follows up on the basics of multimedia design taught in Cognitive Science 187A. Students will probe more deeply into selective topics, such as animation, navigation, graphical display of information, and narrative coherence. ", + "edges_from": [ + 1773 + ], + "edges_to": [ + 5443, + 5052 + ], + "id": 1772, + "label": "COGS 187B", + "title": "Practicum in Professional Web Design (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 1413, + 1226, + 1774, + 1775, + 1776, + 1399 + ], + "edges_to": [ + 2804, + 5443, + 5052, + 1772, + 3221 + ], + "id": 1773, + "label": "COGS 187A", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 1773, + 5213 + ], + "id": 1774, + "label": "COGS 10", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 1224, + 1773, + 1223 + ], + "id": 1775, + "label": "COGS 18", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1224, + 2354, + 1773, + 5974, + 1223 + ], + "id": 1776, + "label": "CSE 7", + "title": "" + }, + { + "dept": "BENG", + "description": "Introduction to the nonlinear dynamics of neurons and neural systems using bifurcation theory and chaotic motions, at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells. Laboratory exercises will accompany the lectures. ", + "edges_from": [], + "edges_to": [], + "id": 1777, + "label": "BENG 260/BGGN 260/PHYS 279", + "title": "Neurodynamics (4)" + }, + { + "dept": "PHIL", + "description": "Central issues about the justification, proper functions, and limits of the state through classic texts in the history of political philosophy by figures such as Plato, Aristotle, Hobbes, Locke, Rousseau, Mill, and Marx. ", + "edges_from": [], + "edges_to": [], + "id": 1778, + "label": "PHIL 166", + "title": "Classics in Political Philosophy (4)" + }, + { + "dept": "LTRU", + "description": "Author in Russian Literature in Translation (4)", + "edges_from": [], + "edges_to": [], + "id": 1779, + "label": "LTRU 123", + "title": "Single" + }, + { + "dept": "DSGN", + "description": "Independent literature or laboratory research by arrangement with and under direction of a design faculty member. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 1780, + "label": "DSGN 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design are discussed. P/NP grades only. May be taken for credit four times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1781, + "label": "DSGN 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "RELI", + "description": "Topical studies in the history of religion in American society, ranging from the Puritans to the New Age. ", + "edges_from": [], + "edges_to": [], + "id": 1782, + "label": "RELI 134", + "title": "Topics in American Religion (4)" + }, + { + "dept": "MATH", + "description": "Spline curves, NURBS, knot insertion, spline interpolation, illumination models, radiosity, and ray tracing. ", + "edges_from": [ + 1784 + ], + "edges_to": [], + "id": 1783, + "label": "MATH 155B", + "title": "Topics in Computer Graphics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 1783 + ], + "id": 1784, + "label": "MATH 155A", + "title": "" + }, + { + "dept": "PHIL", + "description": "A study of issues in analytical jurisprudence such as the nature of law, the relation between law and morality, and the nature of legal interpretation and issues in normative jurisprudence such as the justification of punishment, paternalism and privacy, freedom of expression, and affirmative action. ", + "edges_from": [], + "edges_to": [], + "id": 1785, + "label": "PHIL 168", + "title": "Philosophy of Law (4)" + }, + { + "dept": "BGGN", + "description": "This course offers training in writing about students\u2019 own research; presenting the background to their thesis, preparing a figure, analyzing, and discussing data in a written form. Using published literature on scientific writing, students will practice revising their own writing and providing constructive feedback to their peers. Letter grades only.\u00a0Enrollment restricted to MS students only in the following major code: BI84.", + "edges_from": [], + "edges_to": [], + "id": 1786, + "label": "BGGN 293", + "title": "Scientific Writing in Biology (2)" + }, + { + "dept": "BGGN", + "description": "Students meet experienced science professionals from a wide variety", + "edges_from": [], + "edges_to": [], + "id": 1787, + "label": "BGGN 292", + "title": "Professional Pathways in Biological Sciences (1)" + }, + { + "dept": "BGGN", + "description": "Students present and discuss papers on", + "edges_from": [], + "edges_to": [], + "id": 1788, + "label": "BGGN 290", + "title": "Advances in Cellular and Molecular Mechanisms (1)" + }, + { + "dept": "BGGN", + "description": "Group and individual discussion of research activities and of current literature. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1789, + "label": "BGGN 297", + "title": "Research Conference (1\u20133)" + }, + { + "dept": "BGGN", + "description": "Students learn effective ways of presenting their research to biologists and to the general public. Examples of posters and research talks will be analyzed and discussed. Students will practice short and extended oral presentations of their research. As a final project, students will prepare and present a poster of their research in the biological sciences Student Research Showcase. Letter grades only. Enrollment restricted to MS students only in the following major code: BI84.", + "edges_from": [], + "edges_to": [], + "id": 1790, + "label": "BGGN 295", + "title": "Scientific Presentation in Biology (2)" + }, + { + "dept": "BGGN", + "description": "Directed research on dissertation topic. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1791, + "label": "BGGN 299", + "title": "Thesis Research in Biology (1\u201312)" + }, + { + "dept": "BGGN", + "description": "An introduction to contemporary laboratory techniques and research interests through independent, original projects under the direction of individual faculty members. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 1792, + "label": "BGGN 298", + "title": "Laboratory Projects in Biology (3\u201312)" + }, + { + "dept": "BIPN", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 1793, + "label": "BIPN 194", + "title": "Advanced Topics in Modern Biology: Physiology and Neuroscience (2)" + }, + { + "dept": "HIAF", + "description": "Plant and animal domestication, ironworking and the distribution of ethnic/language groups, urbanization, regional and long-distance commerce, and the rise of medieval kingdoms.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 1794, + "label": "HIAF 123", + "title": "West Africa from Earliest Times to 1800 (4)" + }, + { + "dept": "HIAF", + "description": "The origins and the interaction between the peoples of South Africa. Special attention will be devoted to industrial development, urbanization, African and Afrikaner nationalism, and the origin and development of apartheid and its consequences.", + "edges_from": [], + "edges_to": [], + "id": 1795, + "label": "HIAF 120", + "title": "History of South Africa (4)" + }, + { + "dept": "ENG", + "description": "Offered in the fall quarter, ENG 1 focuses on study skills, academic planning, time management, and the use of campus and community resources to help achieve academic, personal, and professional goals. It also presents engineering both as a field of study and as a profession. Activities include presentations by student organization officers and various UC San Diego organizations. Students may not receive credit for both ENG 1 and ECE 1A.", + "edges_from": [], + "edges_to": [], + "id": 1796, + "label": "ENG 1", + "title": "Orientation to Engineering I (1)" + }, + { + "dept": "ENG", + "description": "Offered in the spring quarter, ENG 3 focuses on leadership, engineering as a profession, personal and professional development, ethics, preparation for graduate school, resume development, and job offer evaluation. Activities include presentations by UC San Diego staff and panel discussions with practicing professionals from industry. Students may not receive credit for both ENG 3 and ECE 1C.", + "edges_from": [], + "edges_to": [], + "id": 1797, + "label": "ENG 3", + "title": "Orientation to Engineering III (1)" + }, + { + "dept": "ENG", + "description": "Academic and personal planning, time management, study skills, and paths to personal growth. Activities include individual and collaborative exercises, self-assessments, maintenance of a personal journal, and a final project.", + "edges_from": [], + "edges_to": [], + "id": 1798, + "label": "ENG 2", + "title": "Orientation to Engineering II (1)" + }, + { + "dept": "EDS", + "description": "in ASL-English Bilingual Education (4)", + "edges_from": [], + "edges_to": [], + "id": 1799, + "label": "EDS 240B", + "title": "Research" + }, + { + "dept": "POLI", + "description": "to Political Science: International Relations (4)", + "edges_from": [], + "edges_to": [], + "id": 1800, + "label": "POLI 12 or 12D", + "title": "Introduction" + }, + { + "dept": "MAE", + "description": "Linear wave propagation; plane waves; reflection and refraction; dispersion induced by geometry and by material properties. Application of integral transform methods. Selected topics in nonlinear elastic, anelastic, and anisotropic wave propagation. ", + "edges_from": [ + 1802, + 1803, + 1804 + ], + "edges_to": [], + "id": 1801, + "label": "MAE 238", + "title": "Stress Waves in Solids (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1801, + 5924 + ], + "id": 1802, + "label": "MAE 231C", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 1176, + 5746, + 1804 + ], + "edges_to": [ + 1801, + 5923, + 5924 + ], + "id": 1803, + "label": "MAE 231B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 5923, + 1801, + 1803, + 5924 + ], + "id": 1804, + "label": "MAE 231A", + "title": "" + }, + { + "dept": "HILA", + "description": "The course surveys Chile\u2019s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his/her own choosing and develop the topic for class presentation and a final paper. Graduate students are expected to submit a more substantial piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 1805, + "label": "HILA 163/263", + "title": "The History of Chile 1880\u2013Present (4)" + }, + { + "dept": "EDS", + "description": "Directed research on dissertation topic for students who have been admitted to candidacy for the EdD or PhD program. May be taken for credit up to four times for a maximum of forty-eight units. ", + "edges_from": [], + "edges_to": [], + "id": 1806, + "label": "EDS 299", + "title": "Dissertation Research (1\u201312)" + }, + { + "dept": "POLI", + "description": "Course looks at elections in consolidating democracies with an eye to evaluating existing theories of elections with new data. Also explores new empirical patterns in countries around the world, especially Africa, Latin America, Eastern Europe, and the Soviet successor states. ", + "edges_from": [], + "edges_to": [], + "id": 1807, + "label": "POLI 224A", + "title": "Elections in Consolidating Democracies (4)" + }, + { + "dept": "NANO", + "description": "Introduction to DNA nanotechnology. Topics include basic design principles for DNA nanostructures and DNA origami, DNA nanomotors, computing, and the use of DNA nanotechnology in organizing other materials, nanofabrication, biosensing, and drug delivery.", + "edges_from": [], + "edges_to": [], + "id": 1808, + "label": "NANO 268", + "title": "DNA Nanotechnology (4)" + }, + { + "dept": "NANO", + "description": "Fundamentals of photovoltaic energy conversion; limiting efficiencies, loss mechanisms. Nanoscale effects in semiconductor, thin film, and organic photovoltaics. Emphasis on emerging nanotechnologies including nanowires, heterostructures, hybrid materials, quantum dots, transparent conducting materials, and plasmonics.", + "edges_from": [], + "edges_to": [], + "id": 1809, + "label": "NANO 269", + "title": "Engineering Solar Cells at the Nanoscale (4)" + }, + { + "dept": "MUS", + "description": "Music of the African Diaspora: Special Topics Seminar (4)", + "edges_from": [], + "edges_to": [], + "id": 1810, + "label": "MUS 150", + "title": "Jazz and the" + }, + { + "dept": "MUS", + "description": "Aggrieved groups generate distinctive cultural expressions by turning negative ascription into positive affirmation and by transforming segregation into congregation. This course examines the role of cultural expressions in struggles for social change by these communities inside and outside the United States. (Cross-listed with ETHN 108.) ", + "edges_from": [], + "edges_to": [], + "id": 1811, + "label": "MUS 151", + "title": "Race, Culture, and Social Change (4)" + }, + { + "dept": "MUS", + "description": "Examination of hip-hop\u2019s music, technology, lyrics, and its influence in graffiti, film, music video, fiction, advertising, gender, corporate investment, government and censorship with a critical focus on race, gender, popular culture, and the politics of creative expression. (Cross-listed with ETHN 128.) ", + "edges_from": [], + "edges_to": [], + "id": 1812, + "label": "MUS 152", + "title": "Hip Hop: The Politics of Culture (4)" + }, + { + "dept": "MUS", + "description": "Examination of media representations of African Americans from slavery to the present focusing on emergence and transmission of enduring stereotypes, their relationship to changing social, political, and economic frameworks, and African Americans\u2019 responses to and interpretations of these mediated images. (Cross-listed with ETHN 164.) ", + "edges_from": [], + "edges_to": [], + "id": 1813, + "label": "MUS 153", + "title": "African Americans and the Mass Media (4)" + }, + { + "dept": "NANO", + "description": "This course illustrates how the ability to tailor the properties of nanomaterials can be used for designing powerful sensing and biosensing devices. Nanosensors based on metal nanoparticles, semiconductor nanowires and nanocrystals, and carbon nanotubes will be covered.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1814, + "label": "NANO 262", + "title": "Nanosensors (4)" + }, + { + "dept": "NANO", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Introduction to thin film and nanomagnetism, including interfacial magnetism, coupling and magneto-transport. Application of nanomagnetism in devices including magnetic recording, MRAM, magnetic processing, and biomedical engineering.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1815, + "label": "NANO 263", + "title": "Magnetic Nanodevices (4)" + }, + { + "dept": "NANO", + "description": "Chemical reaction kinetics coupled with material and energy transport processes for fabrication of nanostructured materials and devices. Chemical vapor deposition, etching, and patterning of films. Nanoparticle, nanofiber, and nanotube growth. Theory, simulation, and reactor design.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1816, + "label": "NANO 260", + "title": "Nanofabrication Reaction Engineering (4)" + }, + { + "dept": "NANO", + "description": "Examines the role nanotechnology will play in addressing the many scientific and engineering challenges for new energy production. Topics include nanotechnology\u2019s role in improving photovoltaics, fuel-cells, batteries, energy transmission, and conversion of renewable (green) and nonrenewable sources.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1817, + "label": "NANO 261", + "title": "Nanoscale Energy Technology (4)" + }, + { + "dept": "NANO", + "description": "Application of quantum mechanical modeling methods (both solid state and computational chemistry) in the study of materials and nanostructures; density functional theory (DFT) and approximations; Hartree-Fock and beyond HF approximations; hybrid density functional theory; beyond DFT (GW, TDDFT); ab initio molecular dynamics; materials properties (mechanical, electrochemical, electronic, transport, nano-scale effects on properties) from quantum mechanical simulations; high-throughput computation.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1818, + "label": "NANO 266", + "title": "Quantum Mechanical Modeling of Materials and Nanostructures (4)" + }, + { + "dept": "NANO", + "description": "Course covers concept in nano and solid-state chemistry for graduate students, with the objective of understanding nanomaterials from a chemical perspective. Topics include descriptive crystal chemistry, structure determination, free electron gas and dimensional solids, tight-binding approximation, band structure. Recommended preparation: Background equivalent to NANO 203.", + "edges_from": [], + "edges_to": [], + "id": 1819, + "label": "NANO 264", + "title": "Solid-State and Nanochemistry (4)" + }, + { + "dept": "NANO", + "description": "The thermodynamics and statistical mechanics of solids. Basic concepts, equilibrium properties of alloy systems, thermodynamic information from phase diagrams, surfaces and interfaces, crystalline defects. Cross-listed with MATS 201A, MAE 271A and ECE 238A.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1820, + "label": "NANO 265", + "title": "Thermodynamics of Solids (4)" + }, + { + "dept": "LTAF", + "description": "Survey of various genres of African and oral literary traditions. Oral narrative genres, investigation of proverb, riddle, praise poetry, and epic. Development and use of a methodology to analyze aspects of performance, composition, and education in oral traditional systems.", + "edges_from": [], + "edges_to": [], + "id": 1821, + "label": "LTAF 110", + "title": "African Oral Literature (4)" + }, + { + "dept": "MATH", + "description": "Manifolds, differential forms, homology, deRham\u2019s theorem. Riemannian geometry, harmonic forms. Lie groups and algebras, connections in bundles, homotopy sequence of a bundle, Chern classes. Applications selected from Hamiltonian and continuum mechanics, electromagnetism, thermodynamics, special and general relativity, Yang-Mills fields. ", + "edges_from": [], + "edges_to": [], + "id": 1822, + "label": "MATH 259A-B-C", + "title": "Geometrical Physics (4-4-4)" + }, + { + "dept": "CSE", + "description": "Survey of testing and analysis methods. Introduction to advanced topics in area as well as traditional production methods. Topics include inspections and reviews, formal analysis, verification and validation standards, nonstatistical testing, statistical-testing and reliability models, coverage methods, testing and analysis tools, and organization management and planning. Methods special to special development approaches such as object-oriented testing will also be described. ", + "edges_from": [], + "edges_to": [], + "id": 1823, + "label": "CSE 211", + "title": "Software Testing and Analysis (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 264A.) General principles in modern software engineering. Both theoretical and practical topics are covered. Theoretical topics include proofs of correctness, programming language semantics, and theory of testing. Practical topics include structured programming, modularization techniques, design of languages for reliable programming, and software tools. ", + "edges_from": [ + 1825, + 1826, + 17 + ], + "edges_to": [], + "id": 1824, + "label": "CSE 210", + "title": "Principles of Software Engineering (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1824 + ], + "id": 1825, + "label": "CSE 131A", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 1824, + 5824, + 3250 + ], + "id": 1826, + "label": "CSE 120", + "title": "" + }, + { + "dept": "CSE", + "description": "Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Cross-listed with COGS 230. ", + "edges_from": [], + "edges_to": [], + "id": 1827, + "label": "CSE 216", + "title": "Research Topics in Human-Computer Interaction (4)" + }, + { + "dept": "CSE", + "description": "New societal challenges, cultural values, and technological opportunities are changing design\u2014and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. Cross-listed with COGS 229. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1828, + "label": "CSE 219", + "title": "Design at Large (1)" + }, + { + "dept": "CSE", + "description": "Topics in Software Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 1829, + "label": "CSE 218", + "title": "Advanced" + }, + { + "dept": "FMPH", + "description": "This course explores historical and current interactions, achievements, and challenges of primary care and public health. It will analyze the impact of common medical conditions such as obesity, diabetes, mental health disorders, and others on individuals, their families, and society. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 50. Students may not receive credit for FPMU 50 and FMPH 50. ", + "edges_from": [], + "edges_to": [ + 3736, + 1970, + 2699, + 3738, + 3326 + ], + "id": 1830, + "label": "FMPH 50", + "title": "Primary Care and Public Health (4)" + }, + { + "dept": "PHIL", + "description": "Contemporary debates about the study of the mind-brain as studied in one or more of the empirical cognitive sciences. May include questions about the different strategies of explanation invoked, the conceptions of representation employed, the connections between theoretical models developed. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 1831, + "label": "PHIL 250A", + "title": "Philosophy of the Cognitive Sciences (4)" + }, + { + "dept": "LTFR", + "description": "A course on changing topics such as France during the 1960s, contemporary social and cultural structures (the school system, economy, political parties), myths of America in France, etc. May be repeated for credit as topics vary. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 1832, + "label": "LTFR 164", + "title": "Topics in Modern French Culture (4)" + }, + { + "dept": "MUS", + "description": "Continuation of MUS 160A or VIS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: MUS 160B, VIS 160B, ICAM 160B. ", + "edges_from": [ + 1834, + 1835 + ], + "edges_to": [], + "id": 1833, + "label": "MUS 160B", + "title": "Senior Project in Computing Arts II (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 1836, + 1837, + 1838, + 1839 + ], + "edges_to": [ + 1833, + 5020 + ], + "id": 1834, + "label": "MUS 160A", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 1836, + 1837, + 1838, + 1839 + ], + "edges_to": [ + 1833, + 5020 + ], + "id": 1835, + "label": "VIS 160A", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 4293 + ], + "edges_to": [ + 1834, + 1835 + ], + "id": 1836, + "label": "VIS 141B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1834, + 1835, + 2068 + ], + "id": 1837, + "label": "MUS 172", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 3604 + ], + "edges_to": [ + 1834, + 1835 + ], + "id": 1838, + "label": "VIS 147B", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 3840, + 3839 + ], + "edges_to": [ + 1834, + 1835 + ], + "id": 1839, + "label": "VIS 145B", + "title": "" + }, + { + "dept": "MAE", + "description": "03. Introduction to Engineering Graphics and Design (4)", + "edges_from": [], + "edges_to": [], + "id": 1840, + "label": "MAE", + "title": "" + }, + { + "dept": "MATH", + "description": "Topological spaces, subspaces, products, sums", + "edges_from": [], + "edges_to": [ + 1842 + ], + "id": 1841, + "label": "MATH 190", + "title": "Introduction to Topology (4)" + }, + { + "dept": "MATH", + "description": "Topics to be chosen by the instructor from the fields of differential algebraic, geometric, and general topology. ", + "edges_from": [ + 1841 + ], + "edges_to": [], + "id": 1842, + "label": "MATH 191", + "title": "Topics in Topology (4)" + }, + { + "dept": "MATH", + "description": "Introduction to the mathematics of financial models. Basic probabilistic models and associated mathematical machinery will be discussed, with emphasis on discrete time models. Concepts covered will include conditional expectation, martingales, optimal stopping, arbitrage pricing, hedging, European and American options. ", + "edges_from": [ + 1220, + 169, + 171, + 1844, + 571, + 573 + ], + "edges_to": [], + "id": 1843, + "label": "MATH 194", + "title": "The Mathematics of Finance (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 410, + 132, + 405, + 407 + ], + "edges_to": [ + 5281, + 3976, + 5197, + 168, + 1843, + 4891, + 4894 + ], + "id": 1844, + "label": "ECON 120A", + "title": "" + }, + { + "dept": "MATH", + "description": "Students will be responsible for and teach a class section of a lower-division mathematics course. They will also attend a weekly meeting on teaching methods. (Does not count toward a minor or major.) ", + "edges_from": [], + "edges_to": [], + "id": 1845, + "label": "MATH 195", + "title": "Introduction to Teaching in Mathematics (4)" + }, + { + "dept": "MATH", + "description": "A variety of topics and current research results in mathematics will be presented by guest lecturers and students under faculty direction. May be taken for P/NP grade only. ", + "edges_from": [], + "edges_to": [], + "id": 1846, + "label": "MATH 196", + "title": "Student Colloquium (1)" + }, + { + "dept": "MATH", + "description": "An enrichment program which provides work", + "edges_from": [], + "edges_to": [], + "id": 1847, + "label": "MATH 197", + "title": "Mathematics Internship (2 or 4)" + }, + { + "dept": "MATH", + "description": "Independent reading in advanced mathematics by individual students. Three periods. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1848, + "label": "MATH 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "Soc/G", + "description": "Analysis of enduring topics in the study of race and ethnicity, including stratification, discrimination conflict, immigration, assimilation, and politics. Other topics include racial and ethnic identity and the social construction of race and ethnic categories. A special focus is on the role of \u2018culture\u2019 and \u2018structure\u2019 for explaining race/ethnic differentiation. ", + "edges_from": [], + "edges_to": [], + "id": 1849, + "label": "Soc/G 244", + "title": "Sociology of Race and Ethnicity (4)" + }, + { + "dept": "Soc/G", + "description": "This course studies social constructions of gender within economic opportunities and constraints. We read classical sociological theory on this topic; feminist critiques; and newer research on careers, organizations, and markets. ", + "edges_from": [], + "edges_to": [], + "id": 1850, + "label": "Soc/G 245", + "title": "Gender, Work, and the Economy (4)" + }, + { + "dept": "Soc/G", + "description": "Surveys major theories of the development and functioning of the welfare state, addressing the roles of economic development, political institutions, stratification, and culture. The course focuses on the development of the US social provision in comparison with other advanced industrial societies.", + "edges_from": [], + "edges_to": [], + "id": 1851, + "label": "Soc/G 246", + "title": "The Welfare State (4)" + }, + { + "dept": "Soc/G", + "description": "An examination of changing Western responses from the age of Bedlam to the age of Prozac. Topics include: the rise and decline of the total institution; the emergence of psychiatry; changing cultural meanings of madness; and the therapeutics of mental disorder. ", + "edges_from": [], + "edges_to": [], + "id": 1852, + "label": "Soc/G 247", + "title": "Madness and Society (4)" + }, + { + "dept": "Soc/G", + "description": "An examination of the sociological literature on social control, looking at theoretical developments over time and examining the contemporary literature dealing with social control in historical and comparative perspective. ", + "edges_from": [], + "edges_to": [], + "id": 1853, + "label": "Soc/G 243", + "title": "Sociology of Social Control (4)" + }, + { + "dept": "MATH", + "description": "First course in graduate-level number theory. Local fields: valuations and metrics on fields; discrete valuation rings and Dedekind domains; completions; ramification theory; main statements of local class field theory. ", + "edges_from": [ + 1855 + ], + "edges_to": [ + 1857 + ], + "id": 1854, + "label": "MATH 204A", + "title": "Number Theory I (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 4570, + 2974, + 1854 + ], + "id": 1855, + "label": "MATH 200C", + "title": "" + }, + { + "dept": "MATH", + "description": "Third course in graduate-level number theory. Zeta and L-functions; Dedekind zeta functions; Artin L-functions; the class-number formula and generalizations; density theorems. ", + "edges_from": [ + 1857 + ], + "edges_to": [], + "id": 1856, + "label": "MATH 204C", + "title": "Number Theory III (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 1854 + ], + "edges_to": [ + 1856 + ], + "id": 1857, + "label": "MATH 204B", + "title": "" + }, + { + "dept": "SOCI", + "description": "An examination of how the understanding of language can guide and inform sociological inquiries and a critical evaluation of key sociological approaches to language, including ethnomethodology, frame analysis, sociolinguistics, structuralism and poststructuralism, and others. ", + "edges_from": [ + 1858, + 1859 + ], + "edges_to": [ + 1858 + ], + "id": 1858, + "label": "SOCI 118E", + "title": "Sociology of Language (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 1858 + ], + "id": 1859, + "label": "SOCB 118L", + "title": "" + }, + { + "dept": "LHCO", + "description": "The Independent Study Project (ISP) is the cornerstone of the MAS Program. Students will be involved in a high-level applied research project that integrates what they have learned in their formal course work. The ISP will be an independent and creative scholarly activity in an area related to one or more of the topics covered in the formal curriculum. Students\u2019 work will be evaluated by a committee consisting of faculty and, when appropriate, industry advisers.\t\t", + "edges_from": [ + 1861 + ], + "edges_to": [], + "id": 1860, + "label": "LHCO 298", + "title": "Independent Study Project in the Management of Health Care (4)" + }, + { + "dept": "LHCO", + "description": "", + "edges_from": [], + "edges_to": [ + 1860 + ], + "id": 1861, + "label": "LHCO 218", + "title": "" + }, + { + "dept": "ECE", + "description": "This course will introduce basic concepts", + "edges_from": [], + "edges_to": [], + "id": 1862, + "label": "ECE 172A", + "title": "Introduction to Intelligent Systems: Robotics and Machine Intelligence (4)" + }, + { + "dept": "LTWL", + "description": "Literary and socio-historical considerations of the diverse writings that developed into the New Testament. Topics include Jewish origins of the \u201cJesus movement\u201d within Greco-Roman culture; varying patterns of belief/practice among earliest communities; oral tradition and development of canon.", + "edges_from": [], + "edges_to": [], + "id": 1863, + "label": "LTWL 158A", + "title": "Topics in the New Testament (4)" + }, + { + "dept": "LTWL", + "description": "Topics in Early Christian Texts and Cultures (4)", + "edges_from": [], + "edges_to": [], + "id": 1864, + "label": "LTWL 158B", + "title": "" + }, + { + "dept": "LTWL", + "description": "A survey of the Christian texts that comprise the fatalities of the battles defining Christian canon: e.g., apocryphal acts, noncanonical gospels, and \u201cGnostic\u201d texts. Considers the social communities, theological views, religious identities, and practices reflected in largely forgotten texts.", + "edges_from": [], + "edges_to": [], + "id": 1865, + "label": "LTWL 158C", + "title": "Topics in Other Christianities (4)" + }, + { + "dept": "FPM", + "description": "This course is an introduction to microarray technology and analysis of gene expression data. This ten-lecture course will cover a range of microarray topics including platform types. Image processing, experimental design, and statistical analysis and application in medicine and health sciences.", + "edges_from": [], + "edges_to": [], + "id": 1866, + "label": "FPM 237", + "title": "Microarray Technology and Informatics (2)" + }, + { + "dept": "FPM", + "description": "Clinical nutrition is the study of nutrition and diet as related to the prevention and treatment of human disease. Nutrition is an interdisciplinary field of study, built on a foundation of biomedical and behavioral sciences. This course emphasizes class discussion of clinical topics and assigned readings in current areas of research and practice (i.e., diet and cancer, vitamin and other diet supplements), with case studies and illustrative class exercises.", + "edges_from": [], + "edges_to": [], + "id": 1867, + "label": "FPM 233", + "title": "Clinical Nutrition (2)" + }, + { + "dept": "FPM", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1868, + "label": "FPM 231", + "title": "Exposure Assessment and Biomarkers in Epidemiology (2)" + }, + { + "dept": "FPM", + "description": "Introduction to clinical ambulatory medicine where students spend one afternoon per week in a physician\u2019s practice participating in patient care commensurate with their training. Students may opt to continue the course over successive quarters or enroll full time during the summer for up to four weeks. S/U grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 1869, + "label": "FPM 238", + "title": "Introduction to Clinical Family Medicine (1-7)" + }, + { + "dept": "TDHD", + "description": "The study of dance forms from a global perspective. An analysis and understanding of international dance traditions and their connections to religion, ritual, folklore, custom, festive celebration, popular culture, art, and political movements. ", + "edges_from": [ + 1871 + ], + "edges_to": [], + "id": 1870, + "label": "TDHD 175", + "title": "Cultural Perspectives on Dance (4)" + }, + { + "dept": "TDTR", + "description": "", + "edges_from": [], + "edges_to": [ + 1870, + 1872, + 2362, + 5243, + 5244, + 4926 + ], + "id": 1871, + "label": "TDTR 10", + "title": "" + }, + { + "dept": "TDHD", + "description": "An in-depth exposure to an important topic in dance history, theory, aesthetics, and criticism. Topics vary from quarter to quarter. ", + "edges_from": [ + 1871 + ], + "edges_to": [], + "id": 1872, + "label": "TDHD 176", + "title": "Dance History\u2014Special Topics (4)" + }, + { + "dept": "CHEM", + "description": "Seminar series on the current topics in the field of environmental chemistry. Emphasis is on current research topics in atmospheric, oceanic, and geological environments. ", + "edges_from": [], + "edges_to": [], + "id": 1873, + "label": "CHEM 270A-B-C", + "title": "Current Topics in Environmental Chemistry (2-2-2)" + }, + { + "dept": "TDDE", + "description": "A hands-on course on the process of sound design from conception to planning and implementation. The course will concentrate equally on the technical and artistic aspects of the sound design process and will include a survey of modern audio technologies. ", + "edges_from": [ + 1418, + 1875, + 1876, + 1877 + ], + "edges_to": [ + 1878 + ], + "id": 1874, + "label": "TDDE 141", + "title": "Theatre Process\u2014Sound Design (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 1874, + 5207 + ], + "id": 1875, + "label": "TDPR 5", + "title": "" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 1874 + ], + "id": 1876, + "label": "TDPR 6", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 1874, + 3074 + ], + "id": 1877, + "label": "MUS 173", + "title": "" + }, + { + "dept": "TDDE", + "description": "This course focuses on advancing students in their artistic and technical skills in sound design. A large-scale project will be identified with special attention given to text analysis and technical specification of the sound design. ", + "edges_from": [ + 1874, + 1418 + ], + "edges_to": [], + "id": 1878, + "label": "TDDE 142", + "title": "Advanced Sound Design (4)" + }, + { + "dept": "COGS", + "description": "A comprehensive survey of theory, method and research findings", + "edges_from": [], + "edges_to": [], + "id": 1879, + "label": "COGS 156", + "title": "Language Development (4)" + }, + { + "dept": "COGS", + "description": "Explores how humans (and other species) process music, including pitch, meter, emotion, motor aspects, links to language, brain activity. Students should have experience reading musical notation. ", + "edges_from": [ + 1881, + 1642, + 1882 + ], + "edges_to": [], + "id": 1880, + "label": "COGS 157", + "title": "Music and the Mind (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 568, + 2099 + ], + "edges_to": [ + 1880 + ], + "id": 1881, + "label": "COGS 101C", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 568, + 1642 + ], + "edges_to": [ + 1880 + ], + "id": 1882, + "label": "COGS 101B", + "title": "" + }, + { + "dept": "COGS", + "description": "Neural bases of language use in normal adults, and neural bases of language and communication development in normal children. Evidence on the language and communication deficits in adults (especially aphasia and dementia) and children (specific language impairment, focal brain injury, retardation, and autism). ", + "edges_from": [], + "edges_to": [], + "id": 1883, + "label": "COGS 154", + "title": "Communication Disorders in Children and Adults (4)" + }, + { + "dept": "COGS", + "description": "Spontaneous gestures and their relationship", + "edges_from": [], + "edges_to": [], + "id": 1884, + "label": "COGS 155", + "title": "Gesture and Cognition (4)" + }, + { + "dept": "COGS", + "description": "How the human mind/brain creates mathematics: embodiment, innovation, and creativity. The emergence and power of abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero. Cognitive approaches that connect mathematics to human thought in general. ", + "edges_from": [ + 568, + 1886, + 1887 + ], + "edges_to": [], + "id": 1885, + "label": "COGS 152", + "title": "Cognitive Foundations of Mathematics (4)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 1885 + ], + "id": 1886, + "label": "PHIL 1", + "title": "" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 1885 + ], + "id": 1887, + "label": "PSYC 1", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1888, + "label": "COGS 153", + "title": "Language Comprehension (4)" + }, + { + "dept": "COGS", + "description": "Human thought and meaning are deeply tied to the capacity for mapping conceptual domains onto each other, inducing common schemas and performing mental simulation. This course examines major aspects of this cognitive activity including metaphor, conceptual blending, and embodied cognition. ", + "edges_from": [], + "edges_to": [], + "id": 1889, + "label": "COGS 151", + "title": "Analogy and Conceptual Systems (4)" + }, + { + "dept": "EDS", + "description": "Students are placed in local schools and work with students in classrooms and the community. Students work on educational activities with K\u201312 students a minimum of four hours/week. P/NP grades only. May be taken for credit twelve times. Corequisites: One of the following courses must be taken concurrently: EDS 128A-B, or 129A-B-C, 130, 131, 134, 136, 137, 138, 140, or 141. ", + "edges_from": [], + "edges_to": [ + 2757, + 1894, + 1895, + 1899, + 5048, + 5049, + 4091 + ], + "id": 1890, + "label": "EDS 139", + "title": "Practicum in Teaching and Learning (2)" + }, + { + "dept": "EDS", + "description": "to Academic Tutoring at Charter Schools (4)", + "edges_from": [], + "edges_to": [ + 5048, + 5049, + 2757 + ], + "id": 1891, + "label": "EDS 138", + "title": "Introduction" + }, + { + "dept": "ETHN", + "description": "This seminar examines critical engagements between scholarship from postcolonial, feminist and other radical Marxist traditions. We focus on philosophical and political debates stemming from issues of race and gender, tracing them in Marx\u2019s texts and their historical contexts. ", + "edges_from": [], + "edges_to": [], + "id": 1892, + "label": "ETHN 275", + "title": "Marxist Thought (4)" + }, + { + "dept": "ETHN", + "description": "This seminar will explore indigenous epistemologies, their ontological dimensions, the methodological issues surrounding related research, and their significance in relation to the production of knowledge and the histories, presents, and futures of Native American and Indigenous people. ", + "edges_from": [], + "edges_to": [], + "id": 1893, + "label": "ETHN 270", + "title": "Indigenous Epistemologies and their Disruptions (4)" + }, + { + "dept": "EDS", + "description": "This course investigates early child development (birth through eight years) and education and the role of high quality early education on reducing inequities among diverse populations. Field experience and seminar focus on applying research and theory to experiences in early childhood classrooms (P\u20133). ", + "edges_from": [ + 1890, + 1894 + ], + "edges_to": [ + 5048, + 5049, + 1894 + ], + "id": 1894, + "label": "EDS 131", + "title": "Early Childhood Development and Education (4)" + }, + { + "dept": "EDS", + "description": "This course focuses on the role of undergraduate mentors in raising academic expectations for students and families traditionally underrepresented at the university. The relationship between the school and community, the social and political organization of elementary schools, and the academic achievement of elementary children are examined. ", + "edges_from": [ + 1890 + ], + "edges_to": [ + 5048, + 5049, + 4091 + ], + "id": 1895, + "label": "EDS 130", + "title": "Introduction to Academic Mentoring of Elementary/School Students (4)" + }, + { + "dept": "LTLA", + "description": "Study of Latin, including grammar and reading.", + "edges_from": [], + "edges_to": [ + 3631 + ], + "id": 1896, + "label": "LTLA 1", + "title": "Beginning Latin (4)" + }, + { + "dept": "EDS", + "description": "The \u201cHands-On Lab\u201d enables UC San Diego students to practice inquiry-based instructional strategies with elementary or high school students in authentic laboratory situations supervised be EDS faculty members. The hands-on lessons provide early teaching experience in science for undergraduates exploring teaching as a career. All lessons are based on the California content standards in science. Recommended preparation: knowledge of STEM field subject matter. ", + "edges_from": [], + "edges_to": [], + "id": 1897, + "label": "EDS 132", + "title": "Hands-On Seminar (4)" + }, + { + "dept": "EDS", + "description": "to Discipline-Specific Teaching and Learning (4)", + "edges_from": [], + "edges_to": [ + 5048, + 5049 + ], + "id": 1898, + "label": "EDS 137", + "title": "Introduction" + }, + { + "dept": "EDS", + "description": "This course focuses on the role of undergraduate tutors in building academic resiliency in secondary students traditionally underrepresented at the university. The relationship between the school and community, the social and political organization of secondary schools, the philosophical, sociological, and political issues which relate to the US secondary educational system, and the academic achievement of secondary children are examined. ", + "edges_from": [ + 1890 + ], + "edges_to": [ + 5048, + 5049, + 2757, + 4269 + ], + "id": 1899, + "label": "EDS 136", + "title": "Introduction to Academic Tutoring of Secondary School Students (4)" + }, + { + "dept": "ECE", + "description": "Congestion control, convex programming and dual controller, fair end-end rate allocation, max-min fair vs. proportional fairness. Markov Chains and recurrence, Lyapunov-Foster theorem, rate stable switch scheduling, stable (back-pressure) routing versus minimum delay routing versus shortest path routing. ", + "edges_from": [], + "edges_to": [ + 1902 + ], + "id": 1900, + "label": "ECE 257A", + "title": "Multiuser Communication Systems (4)" + }, + { + "dept": "ECE", + "description": "Elements of spatial point processes. Spatial", + "edges_from": [], + "edges_to": [], + "id": 1901, + "label": "ECE 257C", + "title": "Stochastic Wireless Networks Models (4)" + }, + { + "dept": "ECE", + "description": "This course will focus on the principles, architectures, and analytical methodologies for design of multiuser wireless networks. Topics to be covered include cellular approaches, call processing, digital modulation, MIMO technology, broadband networks, ad-hoc networks, and wireless packet access. (Recommended prerequisites: ECE 159A and 154B, or equivalent.) ", + "edges_from": [ + 1900 + ], + "edges_to": [], + "id": 1902, + "label": "ECE 257B", + "title": "Principles of Wireless Networks (4)" + }, + { + "dept": "HILA", + "description": "Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptation, late colonial growth, and the onset of independence.", + "edges_from": [], + "edges_to": [], + "id": 1903, + "label": "HILA 100D", + "title": "Latin America: Colonial Transformation (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 132.) This course details the history of African American migration to urban areas after World War I and World War II and explores the role of religion in their lives as well as the impact that their religious experiences had upon the cities in which they lived.", + "edges_from": [], + "edges_to": [], + "id": 1904, + "label": "ETHN 188", + "title": "African Americans, Religion, and the City (4)" + }, + { + "dept": "ETHN", + "description": "A reading and discussion course that explores special topics in ethnic studies. Themes will vary from quarter to quarter; therefore, course may be repeated three times as long as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1905, + "label": "ETHN 189", + "title": "Special Topics in Ethnic Studies (4)" + }, + { + "dept": "ETHN", + "description": "An analysis of black cultural and intellectual", + "edges_from": [], + "edges_to": [], + "id": 1906, + "label": "ETHN 184", + "title": "Black Intellectuals in the Twentieth Century (4)" + }, + { + "dept": "ETHN", + "description": "While discourse analysis has transformed numerous disciplines, a gap separates perspectives that envision discourse as practices that construct inequality from approaches that treat discourse as everyday language. This course engages both perspectives critically in analyzing law, medicine, and popular culture.", + "edges_from": [], + "edges_to": [], + "id": 1907, + "label": "ETHN 185", + "title": "Discourse, Power, and Inequality (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 187.) The construction and articulation of Latinx sexualities will be explored in this course through interdisciplinary and comparative perspectives. We will discuss how immigration, class, and norms of ethnicity, race, and gender determine the construction, expression, and reframing of Latinx sexualities.", + "edges_from": [], + "edges_to": [], + "id": 1908, + "label": "ETHN 187", + "title": "Latinx Sexualities\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 167.) This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences.", + "edges_from": [], + "edges_to": [], + "id": 1909, + "label": "ETHN 180", + "title": "Topics in Mexican American History (4)" + }, + { + "dept": "ETHN", + "description": "This course focuses on race, gender, and sexuality in twentieth- and twenty-first-century fantasy and science fiction. We will study literature, film, music, television, video games, and the Internet in order to situate such speculative visions in historical and transmedia contexts.", + "edges_from": [], + "edges_to": [], + "id": 1910, + "label": "ETHN 182", + "title": "Race, Gender, and Sexuality in Fantasy and Science Fiction\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 114.) Gender is often neglected in studies of ethnic/racial politics. This seminar explores the relationship of race, ethnicity, class, and gender by examining the participation of working class women of color in community politics and how they challenge mainstream political theory.", + "edges_from": [], + "edges_to": [], + "id": 1911, + "label": "ETHN 183", + "title": "Gender, Race, Ethnicity, and Class (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in energy conservation, heat conduction, convection, radiation, heat transfer in ducts, external boundary layer, and heat exchangers. ", + "edges_from": [], + "edges_to": [], + "id": 1912, + "label": "MAE 202", + "title": "Thermal Processes (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in kinematics, conservation laws, constitutive equation of linear elastic solids, plasticity, and viscoelasticity. ", + "edges_from": [], + "edges_to": [], + "id": 1913, + "label": "MAE 203", + "title": "Solid Mechanics and Materials (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in probability and stochastic processes, linear control and estimation including optimal linear control, nonlinear stabilization, and optimal control and estimation for nonlinear systems. ", + "edges_from": [], + "edges_to": [], + "id": 1914, + "label": "MAE 200", + "title": "Controls (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in kinematics, equations of motion, dimensional analysis, laminar and irrotational flow, vorticity dynamics, and boundary layers. ", + "edges_from": [], + "edges_to": [], + "id": 1915, + "label": "MAE 201", + "title": "Mechanics of Fluids (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in primary energy sources, availability and variability, fossil fuels, renewables and nuclear, energy dependent energy sources, heat engine, energy conservation, exergy, transportation, air pollution, and climate change. ", + "edges_from": [], + "edges_to": [], + "id": 1916, + "label": "MAE 206", + "title": "Energy Systems (4)" + }, + { + "dept": "MAE", + "description": "A course to be given at the discretion of the faculty in which topics of current interest in engineering will be presented. ", + "edges_from": [], + "edges_to": [], + "id": 1917, + "label": "MAE 207", + "title": "Topics in Engineering Science (4)" + }, + { + "dept": "MAE", + "description": "This course covers topics in robotics, dynamics, kinematics, mechatronics, control, locomotion, and manipulation. ", + "edges_from": [], + "edges_to": [], + "id": 1918, + "label": "MAE 204", + "title": "Robotics (4)" + }, + { + "dept": "MAE", + "description": "Each graduate student in MAE is expected to attend one seminar per quarter, of his or her choice, dealing with current topics in fluid mechanics, solid mechanics, applied plasma physics and fusion, chemical engineering, applied ocean sciences, energy and combustion, environmental engineering, or materials science, and dynamics and controls. Topics will vary. (S/U grades only)", + "edges_from": [], + "edges_to": [], + "id": 1919, + "label": "MAE 205", + "title": "Graduate Seminar (1)" + }, + { + "dept": "EDS", + "description": "This first course in a three-course series", + "edges_from": [], + "edges_to": [], + "id": 1920, + "label": "EDS 288A", + "title": "Advanced Research and Evaluation Methods A\u2014Quantitative Methods (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods B\u2014Qualitative Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 1921, + "label": "EDS 288B", + "title": "Advanced" + }, + { + "dept": "NANO", + "description": "Newton\u2019s laws of motion. Kinematic and kinetic \u200bdescription of particle motion. Angular momentum. Energy and work principles. Motion of the system of interconnected particles.\u00a0Mass center. Degrees of freedom. Equations of planar motion of rigid bodies. Energy methods. Lagrange\u2019s equations of motion. Introduction to vibration. Free and forced vibrations of a single degree of freedom system. Undamped and damped vibrations. Application to NanoEngineering problems.\u00a0", + "edges_from": [ + 571, + 1923 + ], + "edges_to": [], + "id": 1922, + "label": "NANO 141B", + "title": "Engineering Mechanics II: Analysis of Motion (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 26, + 132 + ], + "edges_to": [ + 1922 + ], + "id": 1923, + "label": "NANO 141A", + "title": "" + }, + { + "dept": "CENG", + "description": "Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1924, + "label": "CENG 296", + "title": "Independent Study in Chemical Engineering (4)" + }, + { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced I (4)", + "edges_from": [], + "edges_to": [], + "id": 1925, + "label": "CHIN 182A", + "title": "Introduction" + }, + { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced II (4)", + "edges_from": [], + "edges_to": [], + "id": 1926, + "label": "CHIN 182B", + "title": "Introduction" + }, + { + "dept": "CHIN", + "description": "to Classical Chinese\u2014Advanced III (4)", + "edges_from": [], + "edges_to": [], + "id": 1927, + "label": "CHIN 182C", + "title": "Introduction" + }, + { + "dept": "ANAR", + "description": "Introduction to the archaeology, history, art, architecture, and hieroglyphs of ancient Egypt. Taught in the field through visits to important temples, pyramids, palaces, and museums in Egypt. Complementary to ANAR 144.\u00a0Course/program fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 1928, + "label": "ANAR 145S", + "title": "Study Abroad: Egypt of the Pharaohs (4)" + }, + { + "dept": "ANBI", + "description": "132. Conservation and the Human Predicament (4)", + "edges_from": [], + "edges_to": [], + "id": 1929, + "label": "ANBI", + "title": "" + }, + { + "dept": "TDAC", + "description": "An exploration of the wide array of physical skills necessary for the actor. Using techniques derived from mime, clowning, sports, acrobatics, and improvisation, students will investigate their individual physical potential as well as their sense of creativity and imagination. ", + "edges_from": [ + 1931 + ], + "edges_to": [], + "id": 1930, + "label": "TDAC 115", + "title": "Movement for Actors (4)" + }, + { + "dept": "TDAC", + "description": "", + "edges_from": [ + 527 + ], + "edges_to": [ + 1930, + 1933, + 1935 + ], + "id": 1931, + "label": "TDAC 101", + "title": "" + }, + { + "dept": "TDAC", + "description": "An in-depth study seminar focused on special issues in acting as they relate to contemporary theatre. Of particular interest to students who plan to pursue a career in this area of theatre. ", + "edges_from": [ + 1933 + ], + "edges_to": [], + "id": 1932, + "label": "TDAC 112", + "title": "Senior Seminar in Acting (4)" + }, + { + "dept": "TDAC", + "description": "", + "edges_from": [ + 1931 + ], + "edges_to": [ + 4934, + 4935, + 4936, + 4938, + 1932, + 1934, + 3485 + ], + "id": 1933, + "label": "TDAC 102", + "title": "" + }, + { + "dept": "TDAC", + "description": "This course is designed to aid the actor in the transition from stage to film work. Examination of film production and its physical characteristics and the acting style needed for work in film and television. Students will perform in simulated studio setting on camera. ", + "edges_from": [ + 1933 + ], + "edges_to": [], + "id": 1934, + "label": "TDAC 110", + "title": "Acting for the Camera (4)" + }, + { + "dept": "TDAC", + "description": "Intensive workshop for actors and directors designed to \u201cfree the voice,\u201d with special emphasis on characteristics and vocal flexibility in a wide range of dramatic texts. This proven method combines experimental and didactic learning with selected exercises, texts, tapes, films, and total time commitment. ", + "edges_from": [ + 1931 + ], + "edges_to": [], + "id": 1935, + "label": "TDAC 111", + "title": "Freeing the Voice (4)" + }, + { + "dept": "MUS", + "description": "First part in composition course sequence. Individual projects will be reviewed in seminar. Techniques of instrumentation will be developed through examination of scores and creative application. Assignments will include short exercises and analysis, and final project for standard ensemble. ", + "edges_from": [ + 1937 + ], + "edges_to": [ + 3811 + ], + "id": 1936, + "label": "MUS 103A", + "title": "Seminar in Composition I (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 4763 + ], + "edges_to": [ + 1936 + ], + "id": 1937, + "label": "MUS 33C", + "title": "" + }, + { + "dept": "MDE", + "description": "This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues, and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 1938, + "label": "MDE 266", + "title": "Biomaterials for Medical Device Design (4)" + }, + { + "dept": "MATS", + "description": "Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands verses bonds, free electron theory. ", + "edges_from": [], + "edges_to": [], + "id": 1939, + "label": "MATS 227", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "VIS", + "description": "What is the place of visual art in modern Western culture? This course will address: visual art and radical politics in Courbet and the generation of 1848; Impressionism, Paris, and the cult of la vie moderne; Gauguin, Van Gogh, and the quest for \u201cvisionary\u201d painting; Cezanne and the reformulation of painting in terms of pure sensation; the divergent paths of Matisse and Picasso in 1906. The twentieth century follows the emergence of different interpretations of modernity in the USSR, Germany, and France. ", + "edges_from": [], + "edges_to": [], + "id": 1940, + "label": "VIS 125C", + "title": "Modern Art in the West, 1850\u20131950 (4)" + }, + { + "dept": "PHIL", + "description": "Introduction to Mexican philosophy with discussion of the work of such figures as Las Casas, Sor Juana Ines de la Cruz, Vasconcelos, Uranga, Zea, Villoro, Dussel, Hierro, Lara, and Hurtado. Topics may include historical movements, such as scholasticism, positivism, Mexican existentialism, and indigenous thought, as well as contemporary developments and the relationship to philosophy in the United States, Europe, and elsewhere.", + "edges_from": [], + "edges_to": [], + "id": 1941, + "label": "PHIL 155", + "title": "Mexican Philosophy (4)" + }, + { + "dept": "ECE", + "description": "General introduction to planetary bodies,", + "edges_from": [], + "edges_to": [], + "id": 1942, + "label": "ECE 120", + "title": "Solar System Physics (4)" + }, + { + "dept": "ECE", + "description": "The electromagnetic and systems engineering of radio antennas for terrestrial wireless and satellite communications. Antenna impedance, beam pattern, gain, and polarization. Dipoles, monopoles, paraboloids, phased arrays. Power and noise budgets for communication links. Atmospheric propagation and multipath. ", + "edges_from": [ + 613 + ], + "edges_to": [], + "id": 1943, + "label": "ECE 123", + "title": "Antenna Systems Engineering (4)" + }, + { + "dept": "PHIL", + "description": "An introduction to elementary neuroanatomy and neurophysiology and an examination of theoretical issues in cognitive neuroscience and their implications for traditional philosophical conceptions of the relation between mind and body, perception, consciousness, understanding, emotion, and the self. ", + "edges_from": [], + "edges_to": [], + "id": 1944, + "label": "PHIL 151", + "title": "Philosophy of Neuroscience (4)" + }, + { + "dept": "PHIL", + "description": "Theoretical, empirical, methodological, and", + "edges_from": [], + "edges_to": [], + "id": 1945, + "label": "PHIL 150", + "title": "Philosophy of the Cognitive Sciences (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical issues of method and substance in the social sciences, such as causal and interpretive models of explanation, structuralism and methodological individualism, value neutrality, and relativism. ", + "edges_from": [], + "edges_to": [], + "id": 1946, + "label": "PHIL 152", + "title": "Philosophy of Social Science (4)" + }, + { + "dept": "ECE", + "description": "Linear least Squares (batch, recursive, total, sparse, pseudoinverse, QR, SVD); Statistical figures of merit (bias, consistency, Cramer-Rao lower-bound, efficiency); Maximum likelihood estimation (MLE); Sufficient statistics; Algorithms for computing the MLE including the Expectation Maximation (EM) algorithm. The problem of missing information; the problem of outliers. (Recommended prerequisites: ECE 109 and ECE 153.) ", + "edges_from": [], + "edges_to": [], + "id": 1947, + "label": "ECE 275A", + "title": "Parameter Estimation I (4)" + }, + { + "dept": "ECE", + "description": "The Bayesian statistical framework; Parameter and state estimation of", + "edges_from": [], + "edges_to": [], + "id": 1948, + "label": "ECE 275B", + "title": "Parameter Estimation II (4)" + }, + { + "dept": "BENG", + "description": "An enrichment program available to a limited number of lower-division undergraduate students, which provides work experience with industry, government offices, and hospitals. The internship is coordinated through UC San Diego\u2019s Academic Internship Program under the supervision of a faculty member and an industrial, government, or hospital employee. ", + "edges_from": [], + "edges_to": [], + "id": 1949, + "label": "BENG 97", + "title": "Internship/Field Studies (1\u20134)" + }, + { + "dept": "MAE", + "description": "Design and analysis of original experiments in mechanical engineering. Students research projects using experimental facilities in undergraduate laboratories: wind tunnel, water channel, vibration table, and testing machine and control systems. Students propose and design experiments, obtain data, complete engineering analysis and write a major report. ", + "edges_from": [ + 1951 + ], + "edges_to": [], + "id": 1950, + "label": "MAE 171B", + "title": "Mechanical Engineering Laboratory II (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 1952, + 1953, + 1954, + 1955, + 1092, + 1093, + 1488, + 1489, + 345, + 1052, + 1054 + ], + "edges_to": [ + 1950 + ], + "id": 1951, + "label": "MAE 171A", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 553, + 955, + 915, + 557 + ], + "edges_to": [ + 1951 + ], + "id": 1952, + "label": "MAE 160", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1951 + ], + "id": 1953, + "label": "MAE 131B", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 914, + 915 + ], + "edges_to": [ + 2003, + 2211, + 1951 + ], + "id": 1954, + "label": "SE 110B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 571, + 28, + 573, + 1351 + ], + "edges_to": [ + 3265, + 3689, + 1951 + ], + "id": 1955, + "label": "MAE 140", + "title": "" + }, + { + "dept": "BENG", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1956, + "label": "BENG 98", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "BENG", + "description": "Independent reading or research by arrangement with a bioengineering faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1957, + "label": "BENG 99", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "MGT", + "description": "Preparation and interpretation", + "edges_from": [], + "edges_to": [ + 2522, + 5380, + 2517, + 2518 + ], + "id": 1958, + "label": "MGT 131B", + "title": "Intermediate Accounting B (4)" + }, + { + "dept": "GPEC", + "description": "This course analyzes multilateral environmental agreements and negotiating positions of key countries on climate change, biodiversity conservation, sustainable development, and other subjects. It explores the challenges countries face to balance economic development objectives with global environmental concerns. Renumbered from IRGN 458. Students may not receive credit for GPEC 458 and IRGN 458.", + "edges_from": [], + "edges_to": [], + "id": 1959, + "label": "GPEC 458", + "title": "International Environmental Policy and Politics (4)" + }, + { + "dept": "NANO", + "description": "Course is designed to give NanoEngineering students from a variety of backgrounds a working knowledge of biochemistry and molecular biology. While the course offers biochemistry basics and key themes in molecular biology, it will emphasize the role of engineering innovations.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 1960, + "label": "NANO 242", + "title": "Biochemisty and Molecular Biology (4)" + }, + { + "dept": "GPEC", + "description": "The course will cover the various aspects of the concept and application of sustainable development: the ways in which sustainable development can be measured, methods for the evaluation of environmental damages and benefits, and the role of discounting. We will analyze several cases demonstrating failure of the market. Renumbered from IRGN 453. Students may not receive credit for GPEC 453 and IRGN 453.", + "edges_from": [], + "edges_to": [], + "id": 1961, + "label": "GPEC 453", + "title": "Sustainable Development (4)" + }, + { + "dept": "GPEC", + "description": "This course will cover topics such as: economic growth in the long run; cross-country differences in income, labor supply, human capital, investment, and welfare; development accounting; technology adoption; misallocation and total-factor productivity; rural-urban income gaps and migration; structural transformation; and competition and productivity. Student may not receive credit for GPEC 450 and IRGN 490, Macroeconomics of Development. GPCO 401 and GPCO 403 are recommended.", + "edges_from": [], + "edges_to": [], + "id": 1962, + "label": "GPEC 450", + "title": "Macroeconomics of Development (4)" + }, + { + "dept": "GPEC", + "description": "This course examines comparative patterns of industrialization and agricultural modernization with a focus on certain common features of the modernization process and widely varying endowments, policies, and experiences, of different countries. Renumbered from IRGN 451. Students may not receive credit for GPEC 451 and IRGN 451. ", + "edges_from": [ + 1594, + 1595 + ], + "edges_to": [], + "id": 1963, + "label": "GPEC 451", + "title": "Economic Development (4)" + }, + { + "dept": "GPEC", + "description": "This course introduces students to the basic competencies and practical skills of a development practitioner. Lectures will be grounded in a practical, multi-sectorial approach that focuses on the interrelationship of the social sciences, health sciences, and natural sciences. It emphasizes a \u201cdifferential diagnosis for development\u201d through case studies of developing countries. Students will be asked to use both STATA and GIS to analyze household survey data to identify poverty hot spots. May not receive credit for GPEC 455 and the IRGN 490 course of the same title. Assumes competence in both STATA and GIS.", + "edges_from": [], + "edges_to": [], + "id": 1964, + "label": "GPEC 455", + "title": "Integrated Development Practice (4)" + }, + { + "dept": "HITO", + "description": "An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.", + "edges_from": [], + "edges_to": [], + "id": 1965, + "label": "HITO 133D", + "title": "War and Society: The Second World War (4)" + }, + { + "dept": "LTEA", + "description": "The course will focus on a few representative masterpieces of Chinese literature in its classical age, with emphasis on the formal conventions and the social or intellectual presuppositions that are indispensable to their understanding. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1966, + "label": "LTEA 110A", + "title": "Classical Chinese Fiction in Translation (4)" + }, + { + "dept": "LTEA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 1967, + "label": "LTEA 110C", + "title": "Contemporary Chinese Fiction in Translation (4)" + }, + { + "dept": "LTEA", + "description": "A survey of representative works of the modern period from 1919 to 1949. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1968, + "label": "LTEA 110B", + "title": "Modern Chinese Fiction in Translation (4)" + }, + { + "dept": "SOCI", + "description": "Interrelationships between law and society, in the U.S. and other parts of the world. We examine law\u2019s norms, customs, culture, and institutions, and explain the proliferation of lawyers in the U.S. and the expansion of legal \u201crights\u201d worldwide. Will not receive credit for SOCI 50 and SOCL 50.", + "edges_from": [], + "edges_to": [], + "id": 1969, + "label": "SOCI 50", + "title": "Introduction to Law and Society (4)" + }, + { + "dept": "FMPH", + "description": "This is the first of a three-part honors series that serves as the culminating experience for the BS in public health (BSPH) majors. Students review, reinforce, and complement skills and knowledge gained throughout the BSPH program, and prepare a proposal integrating critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1971, + 1972, + 1973, + 1830, + 1974 + ], + "edges_to": [ + 1975 + ], + "id": 1970, + "label": "FMPH 196A", + "title": "Public Health Honors Practicum I (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 1973 + ], + "edges_to": [ + 3736, + 1970, + 3738, + 3326 + ], + "id": 1971, + "label": "FMPH 110", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 436, + 1973, + 1222, + 709 + ], + "edges_to": [ + 3736, + 1970, + 3738, + 3326 + ], + "id": 1972, + "label": "FMPH 102", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [ + 1970, + 1971, + 1972, + 1974, + 3735, + 3736, + 3738, + 3739, + 3326 + ], + "id": 1973, + "label": "FMPH 40", + "title": "" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 436, + 1973, + 1222, + 709 + ], + "edges_to": [ + 3736, + 1970, + 2699, + 3738, + 3326 + ], + "id": 1974, + "label": "FMPH 101", + "title": "" + }, + { + "dept": "FMPH", + "description": "This is the second of a three-part honors series that serves as the culminating experience for the BS in public health majors. This course represents an experiential learning opportunity at a pre-approved community site. Under supervision of public health faculty and pertinent site representatives, students will refine and implement the public health proposal developed in the first part of the honors series. Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1970 + ], + "edges_to": [ + 1976 + ], + "id": 1975, + "label": "FMPH 196B", + "title": "Public Health Honors Practicum II (4)" + }, + { + "dept": "FMPH", + "description": "This is the third of a three-part honors series that serves as the culminating experience for the BS in public health majors. Students will analyze, interpret, and contextualize findings from their projects completed in the series. Oral and written communication will focus on disseminating public health information in diverse formats, and will include a presentation and an honors thesis. Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1975 + ], + "edges_to": [], + "id": 1976, + "label": "FMPH 196C", + "title": "Public Health Honors Practicum III (4)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 1977, + "label": "Linguistics/Hindi (LIHI) 1D", + "title": "Hindi Conversation (2.5)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 1978, + "label": "Linguistics/Hindi (LIHI) 1A", + "title": "Hindi Conversation (2.5)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 1979, + "label": "Linguistics/Hindi (LIHI) 1B", + "title": "Hindi Conversation (2.5)" + }, + { + "dept": "LTWL", + "description": "Seminar in Literatures of the World (1)", + "edges_from": [], + "edges_to": [], + "id": 1980, + "label": "LTWL 192", + "title": "Senior" + }, + { + "dept": "LTWL", + "description": "Explorations in critical theory and method. This course, designed to prepare students to write an honors thesis, is open only to literature majors invited into the department\u2019s Honors Program.", + "edges_from": [], + "edges_to": [], + "id": 1981, + "label": "LTWL 191", + "title": "Honors Seminar (4)" + }, + { + "dept": "LTWL", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "edges_from": [], + "edges_to": [], + "id": 1982, + "label": "LTWL 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "LTWL", + "description": "An advanced seminar open to all literature majors in their senior year. Required for those interested in the Honors Program. It offers an integrative experience by considering key facets of the discipline, including literary theory/historiography, knowledge of neighboring disciplines, and relevance of literature/culture studies in various professions outside of academia. ", + "edges_from": [], + "edges_to": [ + 5099 + ], + "id": 1983, + "label": "LTWL 194", + "title": "Capstone Course for Literature Majors (4)" + }, + { + "dept": "LTWL", + "description": "Tutorial; individual guided reading in areas of literature (in translation) not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1984, + "label": "LTWL 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTWL", + "description": "Research seminars and research, under the direction of faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 1985, + "label": "LTWL 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "BIEB", + "description": "This course emphasizes principles shaping organisms, habitats, and ecosystems. Topics covered include population regulation, physiological ecology, competition, predation, and human exploitation. This will be an empirical look at general principles in ecology and conservation with emphasis on the unique organisms and habitats of California. ", + "edges_from": [ + 1987 + ], + "edges_to": [ + 2192, + 2589 + ], + "id": 1986, + "label": "BIEB 102", + "title": "Introductory Ecology-Organisms and Habitat (4)" + }, + { + "dept": "BILD", + "description": "", + "edges_from": [], + "edges_to": [ + 1986, + 5105, + 1988, + 4966, + 4967, + 4968, + 5103, + 2193, + 2194, + 2195, + 3924, + 2422, + 2425, + 5274, + 2587 + ], + "id": 1987, + "label": "BILD 3", + "title": "" + }, + { + "dept": "BIEB", + "description": "An interactive introduction to estimation, hypothesis testing, and statistical reasoning. Emphasis on the conceptual and logical basis of statistical ideas. Focus on randomization rather than parametric techniques. Topics include describing data, sampling, bootstrapping, and significance. Mandatory one-hour weekly section. Students may not receive credit for both BIEB 100 and SIO 187. ", + "edges_from": [ + 419, + 1988, + 1989, + 1265, + 849, + 1987, + 420 + ], + "edges_to": [ + 5104, + 1988, + 4968, + 5197, + 2192, + 2423 + ], + "id": 1988, + "label": "BIEB 100", + "title": "Biostatistics (4)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 1988, + 5197 + ], + "id": 1989, + "label": "SIO 187", + "title": "" + }, + { + "dept": "CHEM", + "description": "Renumbered from CHEM 140C. Continuation of CHEM 40A, Organic Chemistry I and CHEM 40B, Organic Chemistry II. Organic chemistry of biologically important molecules: carboxylic acids, carbohydrates, proteins, fatty acids, biopolymers, natural products. Students may only receive credit for one of the following: CHEM 40C, 40CH, 140C, or 140CH. ", + "edges_from": [ + 1512, + 1509 + ], + "edges_to": [ + 5603, + 3144, + 3145, + 3979, + 2927, + 1082, + 5947, + 5950 + ], + "id": 1990, + "label": "CHEM 40C", + "title": "Organic Chemistry III (4)" + }, + { + "dept": "ECE", + "description": "The Freshman Seminar program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 1991, + "label": "ECE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "LTGM", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1992, + "label": "LTGM 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTGM", + "description": "Tutorial; individual guided reading in areas of German literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 1993, + "label": "LTGM 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTGM", + "description": "These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 1994, + "label": "LTGM 190", + "title": "Seminars in German Culture (4)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 1995, + "label": "BGRD 222", + "title": "Research Discussion in Evolutionary Molecular Ecology (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 1996, + "label": "BGRD 221", + "title": "Research Discussion in Behavioral Ecology (1)" + }, + { + "dept": "ECON", + "description": "Applied theory and case-based class requiring students to develop hypothesis-driven, problem-solving skills. Students will work in teams and will develop management consultant skills by applying microeconomic theory, marketing, accounting, and econometric analyses to real-world business problems. Presentation of student analyses both orally and in writing. ", + "edges_from": [ + 1999, + 1998, + 399 + ], + "edges_to": [], + "id": 1997, + "label": "ECON 177L", + "title": "Applied Management Laboratory (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 166 + ], + "edges_to": [ + 1997 + ], + "id": 1998, + "label": "ECON 176", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 2520, + 2089, + 354, + 1997 + ], + "id": 1999, + "label": "ECON 4", + "title": "" + }, + { + "dept": "SE", + "description": "A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. MATLAB-based exercise. Term project. Use of computer resources. ", + "edges_from": [ + 1092, + 1093 + ], + "edges_to": [], + "id": 2000, + "label": "SE 165", + "title": "Structural Health Monitoring (4)" + }, + { + "dept": "SOCI", + "description": "This course examines how the US legal system has responded to workplace inequality and demands for employee rights. Particular attention is given to racial, gender, religious, and disability discrimination, as well as the law\u2019s role in regulating unions, the global economy, and sweatshop labor. ", + "edges_from": [ + 2001, + 2002 + ], + "edges_to": [ + 2001 + ], + "id": 2001, + "label": "SOCI 140F", + "title": "Law and the Workplace (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 2001 + ], + "id": 2002, + "label": "SOCC 140F", + "title": "" + }, + { + "dept": "SE", + "description": "Damage detection, materials characterization. Introduction to nondestructive evaluation. Impedance-based methods, ultrasonics, acoustic, thermography, shearography, liquid penetrant, proof testing, stress coatings, vibrational techniques. ", + "edges_from": [ + 914, + 1954 + ], + "edges_to": [], + "id": 2003, + "label": "SE 163", + "title": "Nondestructive Evaluation (4)" + }, + { + "dept": "LTIT", + "description": "A second-year course in Italian language and literature. Conversation, composition, grammar review, and an introduction to literary and nonliterary texts. ", + "edges_from": [ + 2005, + 2006 + ], + "edges_to": [ + 2178, + 2007 + ], + "id": 2004, + "label": "LTIT 2A", + "title": "Intermediate Italian I (5)" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 2004, + 5781 + ], + "id": 2005, + "label": "LIIT 1C", + "title": "" + }, + { + "dept": "LTIT", + "description": "", + "edges_from": [], + "edges_to": [ + 2004 + ], + "id": 2006, + "label": "LTIT 1C", + "title": "" + }, + { + "dept": "LTIT", + "description": "Continuation of second-year Italian language and literature. Reading, writing, conversation, grammar review, and an introduction to literary genres and contemporary Italian culture and society. ", + "edges_from": [ + 2004 + ], + "edges_to": [ + 2178 + ], + "id": 2007, + "label": "LTIT 2B", + "title": "Intermediate Italian II (5)" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1350\u20131683). Topics covered: the rise of the Ottoman Empire, conquest of the Balkans, the Ottoman system of rule, religious life, rural and urban society, law and order, and material culture.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2008, + "label": "HIEU 116A", + "title": "Greece and the Balkans in the Age of Ottoman Expansion (4)" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1683\u20131914). Topics covered: social and economic development in the eighteenth century, nationalism, independence wars, state-nation formation, interstate relations, the Eastern Question, rural society, urbanization, emigration, and the Balkan Wars. Students may not get credit for both HIEU 116B and HIEU 117A.", + "edges_from": [], + "edges_to": [], + "id": 2009, + "label": "HIEU 116B", + "title": "Greece and the Balkans in the Age of Nationalism (4)" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1914\u20132001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD.", + "edges_from": [], + "edges_to": [], + "id": 2010, + "label": "HIEU 116C", + "title": "Greece and the Balkans during the Twentieth Century (4)" + }, + { + "dept": "MATH", + "description": "Survey of discretization techniques for elliptic partial differential equations, including finite difference, finite element and finite volume methods. Lax-Milgram Theorem and LBB stability. A priori error estimates. Mixed methods. Convection-diffusion equations. Systems of elliptic PDEs. ", + "edges_from": [], + "edges_to": [ + 2012 + ], + "id": 2011, + "label": "MATH 272A", + "title": "Numerical Partial Differential Equations I (4)" + }, + { + "dept": "MATH", + "description": "Survey of solution techniques for partial differential equations. Basic iterative methods. Preconditioned conjugate gradients. Multigrid methods. Hierarchical basis methods. Domain decomposition. Nonlinear PDEs. Sparse direct methods. ", + "edges_from": [ + 2011 + ], + "edges_to": [ + 2013 + ], + "id": 2012, + "label": "MATH 272B", + "title": "Numerical Partial Differential Equations II (4)" + }, + { + "dept": "MATH", + "description": "Time dependent (parabolic and hyperbolic) PDEs. Method of lines. Stiff systems of ODEs. Space-time finite element methods. Adaptive meshing algorithms. A posteriori error estimates. ", + "edges_from": [ + 2012 + ], + "edges_to": [], + "id": 2013, + "label": "MATH 272C", + "title": "Numerical Partial Differential Equations III (4)" + }, + { + "dept": "HINE", + "description": "Great Stories from the Hebrew Bible/Foreign Language (1)", + "edges_from": [], + "edges_to": [], + "id": 2014, + "label": "HINE 112AL", + "title": "" + }, + { + "dept": "POLI", + "description": "Power, a crucial part of politics, can be, and often is, abused. This course discusses the nature of power and surveys a variety of abuses, including agenda manipulation, rent extraction, fraud, extortion, corruption, exploitation, and gross political oppression. ", + "edges_from": [], + "edges_to": [], + "id": 2015, + "label": "POLI 122D", + "title": "Abuse of Power (4)" + }, + { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the twentieth century: agrarian reforms, unionization, industrialization by import substitution, the political left, social development, and international relations. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ", + "edges_from": [], + "edges_to": [], + "id": 2016, + "label": "HILA 169/269", + "title": "Scholarship on Latin American History in the Twentieth Century (4)" + }, + { + "dept": "COGR", + "description": "The visual is an increasingly important component of communication in everyday life. This course covers post-1968 theories of visual culture in domains such as art, film, news, the media, popular culture, medicine, sciences, and many other aspects of everyday life. ", + "edges_from": [], + "edges_to": [], + "id": 2017, + "label": "COGR 248", + "title": "Visual Culture (4)" + }, + { + "dept": "COGR", + "description": "Media technologies from books to electronic media. Consideration of both technological design processes and shifting uses of media. Reflection on media and broader patterns of technological innovation. Attention to the distinctive role of media in technological change. ", + "edges_from": [], + "edges_to": [], + "id": 2018, + "label": "COGR 243", + "title": "Media Technologies (4)" + }, + { + "dept": "COGR", + "description": "Examination of historical and contemporary reorderings of space, time, and experience through culture and commerce, social movements, war and trade, communication institutions and practices. Considers various disciplinary modes of analyzing the forms of life produced by these processes as well as the possibilities for intervention and transformation. ", + "edges_from": [], + "edges_to": [], + "id": 2019, + "label": "COGR 242", + "title": "Globalization (4)" + }, + { + "dept": "COGR", + "description": "Geographies as media of political cultural communication. Not simply mapping but also territorial engineering as a way of constituting geographical significance. Cross-mapping practices\u2014intersecting representational practices\u2014as political forms of communication. Geographies as visual practices of power. ", + "edges_from": [], + "edges_to": [], + "id": 2020, + "label": "COGR 241", + "title": "Geography and Communication (4)" + }, + { + "dept": "COGR", + "description": "(Cross-listed with HIGR 273.) This course will explore the development and cultural manifestations of consumerism in the nineteenth and twentieth centuries. Topics will include the rise of museums, the development of mass market journalism and literature, advertising, and the growth of commercial amusements. Readings will focus primarily, but not exclusively, on the United States. Students will be encouraged to think comparatively. ", + "edges_from": [], + "edges_to": [], + "id": 2021, + "label": "COGR 240", + "title": "The Culture of Consumption (4)" + }, + { + "dept": "COGR", + "description": "Course explores the potential and constraints specific to writing for one or more media forms. Approaches include writing exercises, studying media, reading theoretical and historical texts, and project work. ", + "edges_from": [], + "edges_to": [], + "id": 2022, + "label": "COGR 247", + "title": "Writing for Media (4)" + }, + { + "dept": "COGR", + "description": "Course provides an introduction to the design, evaluation, and development of media that invite and structure play. This includes digital and nondigital games, as well as related forms. Exercises, readings, and projects are required. ", + "edges_from": [], + "edges_to": [], + "id": 2023, + "label": "COGR 246", + "title": "Playable Media (4)" + }, + { + "dept": "COGR", + "description": "Course explores human-technology interaction, social constructivism, actor-network theory, gender and technology, critical and cultural studies of science and technology, and public understandings of science and technology. Emphasis on what STS can contribute to the study of media and communication. ", + "edges_from": [], + "edges_to": [], + "id": 2024, + "label": "COGR 245", + "title": "Science and Technology Studies and Communication (4)" + }, + { + "dept": "COGR", + "description": "Course traces theoretical approaches to the study of culture from the Birmingham School to poststructuralist critiques of power, resistance, consumption, and pleasure. Students combine critical theory and empirical research in order to interpret the cultural politics of everyday life. ", + "edges_from": [], + "edges_to": [], + "id": 2025, + "label": "COGR 244", + "title": "Cultural Studies (4)" + }, + { + "dept": "MUS", + "description": "A hands-on encounter with several important works from the classic electronic repertory, showing a representative subset of the electronic techniques available to musicians. Students who have taken MUS 271 for credit may not take MUS 271A for credit. ", + "edges_from": [], + "edges_to": [ + 5691, + 2028 + ], + "id": 2026, + "label": "MUS 271A", + "title": "Survey of Electronic Music Techniques I (4)" + }, + { + "dept": "MUS", + "description": "A continuation of 271A and B, with emphasis on compositional techniques (e.g., computer-aided composition, production, spatialization). ", + "edges_from": [ + 2028 + ], + "edges_to": [ + 5691 + ], + "id": 2027, + "label": "MUS 271C", + "title": "Survey of Electronic Music Techniques III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 2026 + ], + "edges_to": [ + 5691, + 2027 + ], + "id": 2028, + "label": "MUS 271B", + "title": "" + }, + { + "dept": "LIGN", + "description": "An introduction to the context-dependent aspects of language meaning. Topics include given versus new information, Gricean maxims and rules of conversation, presupposition, implicature, reference and cognitive status, discourse coherence and structure, and speech acts. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 2029, + "label": "LIGN 160", + "title": "Pragmatics (4)" + }, + { + "dept": "LIGN", + "description": "An introduction to the fundamental concepts of computational linguistics, in which we study natural language syntax and semantics from an interpretation perspective, describe methods for programming computer systems to perform such interpretation, and survey applications of computational linguistics technology. ", + "edges_from": [], + "edges_to": [], + "id": 2030, + "label": "LIGN 165", + "title": "Computational Linguistics (4)" + }, + { + "dept": "LTFR", + "description": "An examination of one or more major or minor genres of French literature: for example, drama, novel, poetry, satire, prose poem, essay. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 2031, + "label": "LTFR 142", + "title": "Topics in Literary Genres in French (4)" + }, + { + "dept": "LTEN", + "description": "Fiction II\u2014Since Middle James (4)", + "edges_from": [], + "edges_to": [], + "id": 2032, + "label": "LTEN 174", + "title": "American" + }, + { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1B/1BX, 5BS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1C/1CX. ", + "edges_from": [ + 1459 + ], + "edges_to": [], + "id": 2033, + "label": "Linguistics/Italian (LIIT) 5CS", + "title": "Fundamentals of Italian III (5)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2034, + "label": "LTEN 171", + "title": "Comparative Issues in Latino/a Immigration in US Literature (4)" + }, + { + "dept": "LTEN", + "description": "Poetry II\u2014Whitman through the Modernists (4)", + "edges_from": [], + "edges_to": [], + "id": 2035, + "label": "LTEN 172", + "title": "American" + }, + { + "dept": "LTSP", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 2036, + "label": "LTSP 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "LTEN", + "description": "A lecture-discussion course that juxtaposes the experience of two or more US ethnic groups and examines their relationship with the dominant culture. Students will analyze a variety of texts representing the history of ethnicity in this country. Topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 2037, + "label": "LTEN 178", + "title": "Comparative Ethnic Literature (4)" + }, + { + "dept": "MGT", + "description": "By taking an analytical approach to the study of marketing problems, this course provides an understanding of customers and competitors as a basis for developing, pricing, promoting, and distributing goods and services that satisfy customer and organizational objectives. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 5487 + ], + "id": 2038, + "label": "MGT 407", + "title": "Marketing (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, introduces principles of effective teamwork and leadership and of strategic managerial communication. Provides an introduction to case study and to ethical issues confronting managers in technology or science-driven firms. Develops managerial communication skills. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 2426, + 4370 + ], + "id": 2039, + "label": "MGT 406", + "title": "Leadership Skills, Values, and Teamwork in Technology Firms (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, this course will introduce students to the tools and concepts of microeconomics to analyze decision problems within technology driven firms through the coverage of microeconomic concepts relevant to managerial decision making. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2040, + "label": "MGT 405", + "title": "Managerial Economics (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, students will be introduced to the basic concepts and methods used in financial statements. The course highlights the linkages between accounting information and management planning, decision making, and control. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2041, + "label": "MGT 404", + "title": "Accounting (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, students will be introduced to key techniques for using data to make informed management decisions. Covers probability, statistics, decision analysis, and optimization techniques. Emphasizes managerial applications in such areas as operations management, marketing, and finance. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2042, + "label": "MGT 403", + "title": "Quantitative Analysis (4)" + }, + { + "dept": "MGT", + "description": "Course focuses on various management communications platforms. Students will learn strategies to establish competence, build trust, motivate and inspire, and achieve commitment to action. Participants will develop, present, and receive intensive peer feedback for both written communications and presentations. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2043, + "label": "MGT 402", + "title": "Management Communications (1)" + }, + { + "dept": "MGT", + "description": "The Professional Seminar presents up-to-date research, professional skills development, and experts and business leaders as speakers. Topics may vary by term. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 2044, + "label": "MGT 401", + "title": "Professional Seminar (1)" + }, + { + "dept": "MGT", + "description": "Strategy (4)", + "edges_from": [], + "edges_to": [], + "id": 2045, + "label": "MGT 409", + "title": "Organizational" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, this course will focus on basic business financial concepts with particular attention to challenges of finance in start-up and small- and medium-sized enterprises. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 5648 + ], + "id": 2046, + "label": "MGT 408", + "title": "Finance (4)" + }, + { + "dept": "LIGN", + "description": "Directed research on dissertation topic for students who have been admitted to candidacy for the PhD degree. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2047, + "label": "LIGN 299", + "title": "Doctoral Research (1\u201312)" + }, + { + "dept": "LIGN", + "description": "Individual research. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 2048, + "label": "LIGN 296", + "title": "Directed Research (1\u20138)" + }, + { + "dept": "LIGN", + "description": "Gathering and interpreting data, formulating research questions and hypotheses, making the predictions of hypotheses explicit, finding relevant evidence, and organizing research results into suitable form for presentation in abstracts, talks, and research papers. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 2049, + "label": "LIGN 293", + "title": "Research Practicum (0\u20134)" + }, + { + "dept": "LTEU", + "description": "An introduction to Russia\u2019s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present.", + "edges_from": [], + "edges_to": [], + "id": 2050, + "label": "LTEU 154", + "title": "Russian Culture (4)" + }, + { + "dept": "MATH", + "description": "Review of polynomials. Graphing functions and relations: graphing rational functions, effects of linear changes of coordinates. Circular functions and right triangle trigonometry. Reinforcement of function concept: exponential, logarithmic, and trigonometric functions. Vectors. Conic sections. Polar coordinates. (No credit given if taken after Math 1A/10A or 2A/20A. Two units of credit given if taken after Math 3C.) ", + "edges_from": [ + 2052 + ], + "edges_to": [ + 419, + 420, + 171 + ], + "id": 2051, + "label": "MATH 4C", + "title": "Precalculus for Science and Engineering (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2051, + 420, + 171 + ], + "id": 2052, + "label": "MATH 3C", + "title": "" + }, + { + "dept": "ANSC", + "description": "Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Students must apply to the Study Abroad UC San Diego program online at", + "edges_from": [], + "edges_to": [], + "id": 2053, + "label": "ANSC 106S", + "title": "Global Health: Indigenous Medicines in Latin America\u2014Study Abroad (4)" + }, + { + "dept": "PSYC", + "description": "Instruction on organizing, writing, and presenting empirical research papers. Students will learn fundamentals of writing style, data presentation, and time management. This course is intended for psychology graduate students in service of preparation of their first-year papers and talks. ", + "edges_from": [], + "edges_to": [], + "id": 2054, + "label": "PSYC 202", + "title": "Writing and Presenting Academic Research Papers (4)" + }, + { + "dept": "PSYC", + "description": "This seminar provides a selective overview of the scientific study of emotion. We will discuss various theoretical perspectives on emotion and will focus on specific topics such as emotion regulation, affect in social interactions, individual differences, and particular emotions (e.g., embarrassment, envy, and jealousy). ", + "edges_from": [], + "edges_to": [], + "id": 2055, + "label": "PSYC 205", + "title": "Emotion (4)" + }, + { + "dept": "PSYC", + "description": "This course provides training in applying advanced statistical methods to experimental design. Emphasis will be placed on the developing skills in statistical problem-solving, using computer applications, and writing scientific reports. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [], + "edges_to": [ + 2057, + 3011 + ], + "id": 2056, + "label": "PSYC 111A", + "title": "Research Methods I (6)" + }, + { + "dept": "PSYC", + "description": "This course builds upon the material of PSYC 111A. Students will participate in data collection, data organization, statistical analysis and graphical analysis, with emphasis placed on developing scientific report writing, presentations, and critical thinking about experimental methods. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [ + 2056 + ], + "edges_to": [ + 3011 + ], + "id": 2057, + "label": "PSYC 111B", + "title": "Research Methods II (6)" + }, + { + "dept": "PSYC", + "description": "This course is designed to teach the basics of mathematical modeling. Topics include when, why, and how to use signal detection theory (an essential theory for anyone interested in attention, perception, memory, or decision making), how to analyze reaction time distributions (instead of simply measuring mean RT), how to engage in the fine art of model comparison, and how to avoid creating models that are more complex than the data they seek to explain.", + "edges_from": [], + "edges_to": [], + "id": 2058, + "label": "PSYC 206", + "title": "Mathematical Modeling (4)" + }, + { + "dept": "ECE", + "description": "The physics and circuit applications of heterojunction field effect transistors (HFETs) and heterojunction bipolar transistors (HBTs). Operating principles of FETs and BJTs are reviewed, and opportunities for improving their performance with suitable material choices and bandgap engineering are highlighted. SiGe and III-V HBTs, III-V FETs, and current research areas are covered. Microwave characteristics, models and representative circuit applications. Students who have already completed ECE 236C and/or D should not enroll in this course. Recommended preparation: ECE 230B or equivalent course with emphasis on physics of solid-state electronic devices. ", + "edges_from": [ + 1577 + ], + "edges_to": [], + "id": 2059, + "label": "ECE 236C", + "title": "Heterojunction Field Effect Transistors (4)" + }, + { + "dept": "BGGN", + "description": "The course will cover post-translational control mechanisms governing cellular activity. The course will traverse molecular and systems-level approaches aimed at understanding the governing principles of post-translation regulation and the consequences of improper regulation. The format includes lectures and discussion of selected papers. Enrollment restricted to the following major codes: BI77 and BI78.", + "edges_from": [], + "edges_to": [ + 1032, + 4066 + ], + "id": 2060, + "label": "BGGN 220F", + "title": "Shaping Cellular Function through Post-Translational Regulation (2)" + }, + { + "dept": "BGGN", + "description": "The course covers mechanisms of gene regulation at the post-transcriptional level, including RNA processing, translation, and mRNA turnover. The format includes lectures and discussion of selected papers. Enrollment restricted to the following major codes: BI77 and BI78.", + "edges_from": [], + "edges_to": [ + 1032, + 4066 + ], + "id": 2061, + "label": "BGGN 220E", + "title": "Post-Transcriptional Gene Regulation (2)" + }, + { + "dept": "BGGN", + "description": "The course covers chromatin structure and dynamics as well as the regulation of transcription initiation by RNA polymerase II. The format includes lectures and discussion of selected papers. Enrollment restricted to the following major codes: BI77 and BI78.", + "edges_from": [], + "edges_to": [ + 1032, + 4066 + ], + "id": 2062, + "label": "BGGN 220D", + "title": "Chromatin Structure and Transcriptional Regulation (2)" + }, + { + "dept": "BENG", + "description": "Fundamentals of Fourier transform and linear systems theory including convolution, sampling, noise, filtering, image reconstruction and visualization with an emphasis on applications to biomedical imaging. Examples from optical imaging, CT, MR, ultrasound, nuclear, PET, and radiography. ", + "edges_from": [], + "edges_to": [ + 4860 + ], + "id": 2063, + "label": "BENG 280A", + "title": "Principles of Biomedical Imaging (4)" + }, + { + "dept": "BENG", + "description": "Application of biomedical imaging to the measurement of structure, function, and dynamics of organ systems from the microscopic to the organ level. Emphasis on detailed evaluation and comparison of specific imaging modalities. ", + "edges_from": [], + "edges_to": [], + "id": 2064, + "label": "BENG 280B", + "title": "Comparative Biomedical Imaging (4)" + }, + { + "dept": "VIS", + "description": "These seminar courses provide the opportunity for in-depth study of a particular work, artist, subject, period, or issue. Courses offered under this heading may reflect the current research interests of the instructor or treat a controversial theme in the field of art history and criticism. Active student research and classroom participation are expected. Enrollment is limited and preference will be given to majors. The letters following 129 in the course number designate the particular area of art history or theory concerned. Students may take courses with the same number but of different content more than once for credit, with consent of the instructor and/or the program adviser. May be taken three times for credit. ", + "edges_from": [ + 349 + ], + "edges_to": [], + "id": 2065, + "label": "VIS 129A\u2013F", + "title": "Seminar in Art Criticism and Theory (4)" + }, + { + "dept": "NANO", + "description": "This course will cover fundamental concepts and laboratory techniques to study the chemical and physical properties of colloids and nanoparticles. Topics covered include: colloid and surface forces, Brownian motion, aggregation, steric stabilization, optical characterization techniques, and self-assembly. Recent developments in colloids and nanotechnology will be discussed throughout the course.", + "edges_from": [], + "edges_to": [], + "id": 2066, + "label": "NANO 280", + "title": "Colloids and Nanoparticles (4)" + }, + { + "dept": "MUS", + "description": "(Formerly MUS 163.) Selected topics in music", + "edges_from": [], + "edges_to": [], + "id": 2067, + "label": "MUS 176", + "title": "Music Technology Seminar (4)" + }, + { + "dept": "MUS", + "description": "Fundamentals of programming music software in C and C++. DSP implementation of oscillators, filters, delay, reverb and spectral processing; programming techniques specific to audio and MIDI and simple GUI design for parameter control and signal display. Implementation using a plug-in or external programming interface such as for VST, Audio Unit, PD, or Max/MSP. May be taken for credit two times. ", + "edges_from": [ + 2069, + 1837 + ], + "edges_to": [], + "id": 2068, + "label": "MUS 177", + "title": "Music Programming (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2068 + ], + "id": 2069, + "label": "MUS 161", + "title": "" + }, + { + "dept": "CHEM", + "description": "Organic chemistry course for honors-level students with a strong background in chemistry. Similar to CHEM 40B but emphasizes mechanistic aspects of reactions and effects of molecular structure on reactivity. Renumbered from CHEM 140BH. Students may only receive credit for one of the following: CHEM 40B, 140B, 40BH, or 140BH. ", + "edges_from": [ + 1510, + 1511 + ], + "edges_to": [ + 2928, + 241, + 1514, + 3141 + ], + "id": 2070, + "label": "CHEM 40BH", + "title": "Honors Organic Chemistry (4)" + }, + { + "dept": "MUS", + "description": "Survey of psychoacoustical", + "edges_from": [], + "edges_to": [], + "id": 2071, + "label": "MUS 175", + "title": "Musical Psychoacoustics (4)" + }, + { + "dept": "MUS", + "description": "(Formerly MUS 160A.) An introduction to", + "edges_from": [], + "edges_to": [ + 3632, + 3633, + 3634 + ], + "id": 2072, + "label": "MUS 170", + "title": "Musical Acoustics (4)" + }, + { + "dept": "MUS", + "description": "(Formerly MUS 160C.) A practical introduction to computer techniques for desktop audio editing, MIDI control, and real-time music algorithms using the MAX programming environment. Recommended preparation: completion of MUS 170. ", + "edges_from": [], + "edges_to": [], + "id": 2073, + "label": "MUS 171", + "title": "Computer Music I (4)" + }, + { + "dept": "COGS", + "description": "Independent literature or laboratory research by arrangement with and under direction of a Department of Cognitive Science faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 2074, + "label": "COGS 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "COGS", + "description": "Special topics in cognitive science are discussed. P/NP grades only. (May be repeated when topics vary.)", + "edges_from": [], + "edges_to": [], + "id": 2075, + "label": "COGS 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "COGS", + "description": "The department faculty and the Students for Cognitive and Neurosciences (SCANS) offer this seminar exploring issues in cognitive science. It includes informal faculty research presentations, investigations of topics not covered in the curriculum, and discussions on graduate school and careers. (May be repeated when topics vary.) (Will not be offered in 2017\u201318.)", + "edges_from": [], + "edges_to": [], + "id": 2076, + "label": "COGS 91", + "title": "SCANS Presents (1)" + }, + { + "dept": "COGS", + "description": "Psychological resiliency will be addressed both scientifically and pragmatically. Students will explore the way cognitive and behavioral factors contribute to one\u2019s ability to cope with the stresses of life and emerge from them stronger than before. P/NP only. (Will not be offered in 2017\u201318.)", + "edges_from": [], + "edges_to": [], + "id": 2077, + "label": "COGS 92", + "title": "Resiliency in the Face of Adversity (2)" + }, + { + "dept": "HINE", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 2078, + "label": "HINE 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MGT", + "description": "This course introduces students to the psychometric, legal, ethical, and practical considerations of using tests and measurements for evidence-based decision-making in the workplace. Emphasis is given to selection and performance measurements for individual, team, business unit and organization-wide use in marketing, STEM, and operations. Student teams will develop managerial recommendations following company specific research and analysis.", + "edges_from": [], + "edges_to": [], + "id": 2079, + "label": "MGT 52", + "title": "Test and Measurement in the Workplace (4)" + }, + { + "dept": "ANAR", + "description": "Archaeology of Hunters-Gatherers (4)", + "edges_from": [], + "edges_to": [], + "id": 2080, + "label": "ANAR 181", + "title": "The" + }, + { + "dept": "ANAR", + "description": "This course examines the ways in which archaeologists study ancient artifacts, contexts, and their distribution in time and space to interpret ancient cultures. It will cover basic techniques of collections and field research with particular concentration on the quantitative contextual, spatial, stylistic, and technological analyses of artifacts and ecofacts from ongoing UC San Diego field projects in archaeology.", + "edges_from": [], + "edges_to": [], + "id": 2081, + "label": "ANAR 180", + "title": "Archaeology Workshop: Advanced Lab Work in Archaeology (4)" + }, + { + "dept": "ANAR", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2082, + "label": "ANAR 183", + "title": "Chiefdoms, States, and the Emergence of Civilizations (4)" + }, + { + "dept": "ANAR", + "description": "Varying theoretical models and available archaeological evidence are examined to illuminate the socio-evolutionary transition from nomadic hunter-gathering groups to fully sedentary agricultural societies in the Old and New Worlds. Archaeology concentration course. Recommended preparation: ANTH 3. ", + "edges_from": [], + "edges_to": [], + "id": 2083, + "label": "ANAR 182", + "title": "Origins of Agriculture and Sedentism (4)" + }, + { + "dept": "ANAR", + "description": "Field study in Jordan. Examines how cultural systems interact with deserts by examining technology, economic organization, kinship and religion in relation to environmental variables through time. Program fees may apply.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2084, + "label": "ANAR 185", + "title": "Middle East Desert Cultural Ecology (4)" + }, + { + "dept": "ANAR", + "description": "In what ways were ancient empires different from modern ones? We discuss theories of imperialism and examine cross-cultural similarities and differences in the strategies ancient empires used to expand and explore how they produced, acquired, and distributed wealth. ", + "edges_from": [], + "edges_to": [], + "id": 2085, + "label": "ANAR 184", + "title": "Empires in Archaeological Perspective (4)" + }, + { + "dept": "ANAR", + "description": "The course uses a comparative perspective to examine changes in how human societies organized themselves after the end of the last Ice Age across the world and the impact that those changes had on the planet\u2019s natural environment. ", + "edges_from": [], + "edges_to": [], + "id": 2086, + "label": "ANAR 186", + "title": "The Human Era: The Archaeology of the Anthropocene (4)" + }, + { + "dept": "MGT", + "description": "Examines financial theory and empirical evidence useful for making investment decisions. Portfolio theory, equilibrium models, and market efficiency are examined for stock securities and fixed income instruments. Risk adjusted ROIs for capital investments\u2019 impact on stock prices and free options will also be studied. ", + "edges_from": [ + 2088, + 2089, + 354 + ], + "edges_to": [], + "id": 2087, + "label": "MGT 183", + "title": "Financial Investments (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 5545, + 2095, + 2787, + 2094, + 2087 + ], + "id": 2088, + "label": "MGT 187", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 2092, + 414, + 1999 + ], + "edges_to": [ + 2094, + 2087 + ], + "id": 2089, + "label": "ECON 173B", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 354, + 5197 + ], + "id": 2090, + "label": "MGT 3", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2520, + 354 + ], + "id": 2091, + "label": "MGT 5", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2520, + 2089, + 354 + ], + "id": 2092, + "label": "MGT 4", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 354 + ], + "id": 2093, + "label": "MGT 45", + "title": "" + }, + { + "dept": "MGT", + "description": "Focuses on role of financial institutions, implications for firm financing and valuation as well as the Federal Reserve, financial regulation, the money supply process, and monetary policy. Mechanisms through which monetary policy affects businesses and credit channels will be covered. ", + "edges_from": [ + 2088, + 2089, + 354 + ], + "edges_to": [], + "id": 2094, + "label": "MGT 184", + "title": "Money and Banking (4)" + }, + { + "dept": "MGT", + "description": "This course provides students with an overview of the investment banking industry, including IPOs, equity offerings, debt offerings, valuation, mergers and acquisition, private equity, asset securitization, prime brokerage, sales and trading, and market making. Emphasis of the class will be on traditional corporate finance, which includes equity and debt offerings as well as mergers and acquisitions. ", + "edges_from": [ + 2088, + 354 + ], + "edges_to": [], + "id": 2095, + "label": "MGT 185", + "title": "Investment Banking (4)" + }, + { + "dept": "CSE", + "description": "Computer graphics techniques for creating realistic images. Topics include ray tracing, global illumination, subsurface scattering, and participating media. CSE 168 or equivalent recommended.", + "edges_from": [], + "edges_to": [], + "id": 2096, + "label": "CSE 272", + "title": "Advanced Image Synthesis (4)" + }, + { + "dept": "LTFR", + "description": "Examines one or more periods, themes, authors, and approaches in French literature. Topics will vary with instructor. May be repeated for credit. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 2097, + "label": "LTFR 141", + "title": "Topics in Literatures in French (4)" + }, + { + "dept": "COGS", + "description": "Cognitive processes extend beyond the boundaries of the person to include the environment, artifacts, social interactions, and culture. Major themes include the philosophy and history of cognitive science, the role of artifacts in human cognition, and theories of socially distributed, embodied, and extended cognition. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ", + "edges_from": [ + 568, + 2099 + ], + "edges_to": [], + "id": 2098, + "label": "COGS 102A", + "title": "Distributed Cognition (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 4265, + 2098, + 1222, + 1881 + ], + "id": 2099, + "label": "COGS 14A", + "title": "" + }, + { + "dept": "COGS", + "description": "This course examines memory, reasoning, language understanding, learning, and planning directly in everyday, real-world settings. The course work includes projects in which students make observations of real-world activity and analyze their cognitive significance. ", + "edges_from": [], + "edges_to": [ + 3415 + ], + "id": 2100, + "label": "COGS 102B", + "title": "Cognitive Ethnography (4)" + }, + { + "dept": "CSE", + "description": "Selected topics in computer graphics, with an emphasis on recent developments. Possible topics include computer animation, shape modeling and analysis, image synthesis, appearance modeling, and real-time rendering. CSE 168 or CSE 169 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 2101, + "label": "CSE 274", + "title": "Selected Topics in Graphics (2\u20134)" + }, + { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. Third course of a yearlong sequence; continuation of 137E. ", + "edges_from": [ + 2103 + ], + "edges_to": [], + "id": 2102, + "label": "MUS 137F", + "title": "Seminar in Jazz Studies III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 2104 + ], + "edges_to": [ + 2102 + ], + "id": 2103, + "label": "MUS 137E", + "title": "" + }, + { + "dept": "MUS", + "description": "Advanced individual projects for senior music majors pursuing honors in jazz and music of the African diaspora. Projects will be critically reviewed in seminar with fellow students and jazz faculty. First course of a yearlong sequence. ", + "edges_from": [ + 2105, + 2106, + 2107 + ], + "edges_to": [ + 2103 + ], + "id": 2104, + "label": "MUS 137D", + "title": "Seminar in Jazz Studies I (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 2107 + ], + "edges_to": [ + 2104, + 2106 + ], + "id": 2105, + "label": "MUS 137B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 2105 + ], + "edges_to": [ + 2104 + ], + "id": 2106, + "label": "MUS 137C", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 769, + 2108, + 2109 + ], + "edges_to": [ + 2104, + 2105 + ], + "id": 2107, + "label": "MUS 137A", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 5184, + 2107 + ], + "id": 2108, + "label": "MUS 2B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 5184, + 2107, + 2415 + ], + "id": 2109, + "label": "MUS 2A", + "title": "" + }, + { + "dept": "HITO", + "description": "172/272. War in the Twentieth Century: A Psychological Approach (4)", + "edges_from": [], + "edges_to": [], + "id": 2110, + "label": "HITO", + "title": "" + }, + { + "dept": "MMW", + "description": "MMW 121, the first of two required courses for ERC transfer students, addresses\u00a0themes and topics from the premodern world (from antiquity to the eighteenth century) and strengthens students\u2019 analytical, research, and writing skills. Students may not receive credit for MMW 21 and 121. Students who previously took MMW 21 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ", + "edges_from": [], + "edges_to": [], + "id": 2111, + "label": "MMW 121", + "title": "Exploring the Premodern World (4)" + }, + { + "dept": "MMW", + "description": "MMW 122, the second of two required courses for ERC transfer students, addresses specific themes and topics from the modern world (from the eighteenth century to the present) and strengthens transfer students\u2019 analytical, research, and writing skills. Students may not receive credit for MMW 22 and 122. Students who previously took MMW 22 and received a grade of D or F should contact Eleanor Roosevelt College academic advising for guidance. ", + "edges_from": [], + "edges_to": [], + "id": 2112, + "label": "MMW 122", + "title": "Exploring the Modern World (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in algebraic geometry. Topics will be drawn from current research and may include Hodge theory, higher dimensional geometry, moduli of vector bundles, abelian varieties, deformation theory, intersection theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 2114 + ], + "edges_to": [], + "id": 2113, + "label": "MATH 206B", + "title": "Further Topics in Algebraic Geometry (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2113 + ], + "id": 2114, + "label": "MATH 206A", + "title": "" + }, + { + "dept": "CHEM", + "description": "With CHEM 131 and 132, CHEM 130 is part of the Physical Chemistry sequence taught over three quarters. Recommended as the first course of the sequence. Key topics covered in this course include quantum mechanics, atomic and molecular spectroscopy, and molecular structure. Students may not receive credit for both CHEM 130, 133, or 126. ", + "edges_from": [ + 571, + 594, + 27, + 596, + 30 + ], + "edges_to": [ + 3216, + 5404, + 3181 + ], + "id": 2115, + "label": "CHEM 130", + "title": "Chemical Physics: Quantum Mechanics (4)" + }, + { + "dept": "MAE", + "description": "Materials: Principles and Applications (4)", + "edges_from": [], + "edges_to": [], + "id": 2116, + "label": "MAE 265B", + "title": "Magnetic" + }, + { + "dept": "MAE", + "description": "and Photonic Properties of Materials (4)", + "edges_from": [], + "edges_to": [], + "id": 2117, + "label": "MAE 265A", + "title": "Electronic" + }, + { + "dept": "TDGE", + "description": "An introduction to fundamental concepts in drama and performance. Students will attend performances and learn about how the theatre functions as an art and as an industry in today\u2019s world. ", + "edges_from": [], + "edges_to": [], + "id": 2118, + "label": "TDGE 1", + "title": "Introduction to Theatre (4)" + }, + { + "dept": "ANTH", + "description": "Anthropology graduate students participate in the undergraduate teaching program during one quarter anytime in the first four years of residence. Teaching may be in the anthropology department or other departments or programs on campus. Equivalent to duties expected of a 50 percent TA. Enrollment in four units documents the PhD requirement. S/U grades only. ", + "edges_from": [ + 2120 + ], + "edges_to": [], + "id": 2119, + "label": "ANTH 500", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2119 + ], + "id": 2120, + "label": "ANGR 500", + "title": "" + }, + { + "dept": "HIEA", + "description": "Selected topics in East Asian History. Course may be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2121, + "label": "HIEA 144", + "title": "Topics in East Asian History (4)" + }, + { + "dept": "LTCO", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 2122, + "label": "LTCO 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "EDS", + "description": "Universities are exploring new ways to convey the relevance of research directly to interested stakeholders beyond the academy. In this course, students will learn and practice a variety of strategies and tools for communicating their scholarship to a range of audiences, actively participate in discussion of education equity and access, and co-construct meaningful partnerships with education stakeholders. S/U grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 2123, + "label": "EDS 259", + "title": "Communicating Research (2)" + }, + { + "dept": "LTCO", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 2124, + "label": "LTCO 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "LTCO", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 2125, + "label": "LTCO 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "EDS", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2126, + "label": "EDS 150", + "title": "Chancellor\u2019s Associates Scholars Program Transfer Introductory Course (2)" + }, + { + "dept": "COGS", + "description": "Data science is multidisciplinary, covering computer science, statistics, cognitive science and psychology, data visualization, artificial intelligence, and machine learning, among others. This course teaches critical skills needed to pursue a data science career using hands-on programming and experimental challenges. ", + "edges_from": [ + 2128, + 1413, + 1222 + ], + "edges_to": [], + "id": 2127, + "label": "COGS 133", + "title": "Data Science in Practice (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 2127 + ], + "id": 2128, + "label": "COGS 9", + "title": "" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversion sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIPO 1DX. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 2130, + 2131 + ], + "edges_to": [], + "id": 2129, + "label": "Linguistics/Portuguese (LIPO) 1D", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "LIPO", + "description": "", + "edges_from": [], + "edges_to": [ + 2129, + 4057 + ], + "id": 2130, + "label": "LIPO 1C", + "title": "" + }, + { + "dept": "LIPO", + "description": "", + "edges_from": [], + "edges_to": [ + 2129, + 4057 + ], + "id": 2131, + "label": "LIPO 1CX", + "title": "" + }, + { + "dept": "HIEU", + "description": "This course examines the history of Greece and the Balkans (1914\u20132001). Topics covered: World War I, population exchanges, authoritarianism, modernization, World War II, civil wars, Cold War, Greek-Turkish relations, Cyprus, collapse of communism, 1990s conflicts, and EU expansion. Students may not get credit for both HIEU 116C and HIEU 116CD, or HIEU 116CD and HIEU 117B.", + "edges_from": [], + "edges_to": [], + "id": 2132, + "label": "HIEU 116CD", + "title": "Greece and the Balkans during the Twentieth Century (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 2133, + "label": "Linguistics/Portuguese (LIPO) 1A", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 2134, + "label": "Linguistics/Portuguese (LIPO) 1B", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Small conversation sections taught entirely", + "edges_from": [], + "edges_to": [], + "id": 2135, + "label": "Linguistics/Portuguese (LIPO) 1C", + "title": "Portuguese Conversation (2.5)" + }, + { + "dept": "ECE", + "description": "The coherent processing of data collected from sensors distributed in space for signal enhancement and noise rejection purposes or wavefield directionality estimation. Conventional and adaptive beamforming. Matched field processing. Sparse array design and processing techniques. Applications to acoustics, geophysics, and electromagnetics. Cross-listed with SIO 207D. (Recommended prerequisites: ECE 251A.) ", + "edges_from": [ + 2136, + 2137, + 2138, + 2139 + ], + "edges_to": [ + 2136 + ], + "id": 2136, + "label": "ECE 251D", + "title": "Array Processing (4)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 2136 + ], + "id": 2137, + "label": "SIO 207D", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 2140 + ], + "edges_to": [ + 2136 + ], + "id": 2138, + "label": "ECE 251C", + "title": "" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 2136 + ], + "id": 2139, + "label": "SIO 207C", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2138 + ], + "id": 2140, + "label": "ECE 251B", + "title": "" + }, + { + "dept": "ECE", + "description": "Discrete random signals; conventional (FFT based) spectral estimation. Coherence and transfer function estimation; model-based spectral estimation; linear prediction and AR modeling. Levinson-Durbin algorithm and lattice filters, minimum variance spectrum estimation. Cross-listed with SIO 207B. SIO 207A is intended for graduate students who have not had an undergraduate course in DSP. (Recommended prerequisites: ECE 153 in addition to either ECE 161 or 161A and SIO 207A or equivalent background.) ", + "edges_from": [], + "edges_to": [], + "id": 2141, + "label": "ECE 251A", + "title": "Digital Signal Processing I (4)" + }, + { + "dept": "AUD", + "description": "Independent research on topics relevant to audiology, consisting of literature review, data collection. Faculty supervision and mentoring on practical elements of research design and methodology. The course will consist of laboratory experience, focused on practical elements of research and design and methodology. ", + "edges_from": [], + "edges_to": [], + "id": 2142, + "label": "AUD 298", + "title": "Independent Research (3)" + }, + { + "dept": "AUD", + "description": "Individual investigation and preparation of the doctoral project for the AuD degree will be performed under the supervision of an experienced research mentor. ", + "edges_from": [], + "edges_to": [], + "id": 2143, + "label": "AUD 299", + "title": "Doctoral Project (3)" + }, + { + "dept": "AUD", + "description": "Presentations and discussion of clinical cases and issues related to clinical practice. Students\u2019 clinical experiences are discussed relative to medical and audiological assessment and management. This course may be taken more than once. ", + "edges_from": [], + "edges_to": [ + 4928 + ], + "id": 2144, + "label": "AUD 291", + "title": "Clinical Case Studies/Staffing (1)" + }, + { + "dept": "AUD", + "description": "Participation in specific faculty research activities. Become familiar with research methods and objectives of a faculty\u2019s research project. Participate in data collection and analysis at the discretion of the faculty investigator. ", + "edges_from": [], + "edges_to": [], + "id": 2145, + "label": "AUD 296", + "title": "Research Practicum (3)" + }, + { + "dept": "COGR", + "description": "A doctoral student in communication is required to assist in teaching undergraduate Department of Communication courses for a total of six quarters. One meeting per week with the instructor, one meeting per week with the assigned sections, and attendance at the lecture of the undergraduate course in which he or she is participating are part of this requirement.", + "edges_from": [], + "edges_to": [], + "id": 2146, + "label": "COGR 500", + "title": "Practice Teaching in Communication (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "for the Social Sciences: Social Movements (2.0)", + "edges_from": [], + "edges_to": [], + "id": 2147, + "label": "Linguistics/Portuguese (LIPO) 15", + "title": "Intermediate Brazilian Portuguese" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Portuguese for the Social Sciences: Ethnicity (2.0)", + "edges_from": [], + "edges_to": [], + "id": 2148, + "label": "Linguistics/Portuguese (LIPO) 17", + "title": "Intermediate Brazilian" + }, + { + "dept": "Classics", + "description": "Subject matter variable; mainly but not exclusively major literary topics.", + "edges_from": [], + "edges_to": [], + "id": 2149, + "label": "Classics 220", + "title": "Classics Graduate Seminar (4)" + }, + { + "dept": "TDMV", + "description": "The study of theatrical tap dance. Various styles of tap\u2014 such as classical, rhythm, and musical theatre\u2014will be introduced. Emphasis on rhythm, coordination, timing, and theatrical style. Includes basic through intermediate tap movement. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2150, + "label": "TDMV 11", + "title": "Theatrical Tap (2)" + }, + { + "dept": "CSE", + "description": "Design and implementation of interactive World Wide Web clients using helper applications and plug-ins.\u00a0The main language covered will be Java. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [], + "id": 2151, + "label": "CSE 134B", + "title": "Web Client Languages (4)" + }, + { + "dept": "ECE", + "description": "This course covers the fundamentals of using the Python language effectively for data analysis. Students learn the underlying mechanics and implementation specifics of Python and how to effectively utilize the many built-in data structures and algorithms. The course introduces key modules for data analysis such as Numpy, Pandas, and Matplotlib. Participants learn to leverage and navigate the vast Python ecosystem to find codes and communities of individual interest. ", + "edges_from": [ + 2153 + ], + "edges_to": [], + "id": 2152, + "label": "ECE 143", + "title": "Programming for Data Analysis (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 793, + 1226, + 1227, + 134 + ], + "edges_to": [ + 2152, + 4782 + ], + "id": 2153, + "label": "ECE 16", + "title": "" + }, + { + "dept": "ECE", + "description": "Develop, debug, and test LabVIEW VIs, solve problems using LabVIEW, use data acquisition, and perform signal processing and instrument control in LabVIEW applications. Groups of students will build an elevator system from laser-cut and 3-D printed parts; integrate sensors, motors, and servos; and program using state-machine architecture in LabVIEW. Students will have the opportunity to take the National Instruments Certified LabVIEW Associate Developer (CLAD) exam at the end of the quarter. Program or materials fees may apply. ", + "edges_from": [ + 793, + 1226, + 1227 + ], + "edges_to": [], + "id": 2154, + "label": "ECE 144", + "title": "LabVIEW Programming: Design and Applications (4)" + }, + { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1A. ", + "edges_from": [], + "edges_to": [], + "id": 2155, + "label": "Linguistics/French (LIFR) 1AX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "ECE", + "description": "Fundamentals of autonomous vehicles. Working in small teams, students will develop 1:8 scale autonomous cars that must perform on a simulated city track. Topics include: robotics system integration, computer vision, algorithms for navigation, on-vehicle vs. off-vehicle computation, computer learning systems such as neural networks, locomotion systems, vehicle steering, dead reckoning, odometry, sensor fusion, GPS auto-pilot limitations, wiring, and power distribution and management. Cross-listed with MAE 148. Students may not receive credit for ECE 148 and MAE 148. Program or materials fees may apply. ", + "edges_from": [ + 793, + 556, + 2157, + 1094 + ], + "edges_to": [], + "id": 2156, + "label": "ECE 148", + "title": "Introduction to Autonomous Vehicles (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4266, + 2156 + ], + "id": 2157, + "label": "MAE 2", + "title": "" + }, + { + "dept": "MATS", + "description": "Analysis of the near surface of materials via ion, electron, and X-ray spectroscopes. Topics to be covered include particle solid interactions. Rutherford Backscattering, secondary ion mass spectroscopy, electron energy loss spectroscopy, particle induced X-ray emission, Auger electron spectroscopy, extended X-ray absorption fine structure and channeling. ", + "edges_from": [ + 2159 + ], + "edges_to": [], + "id": 2158, + "label": "MATS 243", + "title": "Modern Materials Analysis (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2158 + ], + "id": 2159, + "label": "ECE 237", + "title": "" + }, + { + "dept": "BENG", + "description": "Engineering, biochemical, and physiological considerations in the design of bioreactor processes: enzyme kinetics, mass transfer limitations, microbial growth, and product formation kinetics. Fermentation reactor selection, design, scale-up, control. Quantitative bioengineering analysis and design of biochemical processes and experiments on biomolecules. ", + "edges_from": [ + 2161, + 2162 + ], + "edges_to": [ + 2164 + ], + "id": 2160, + "label": "BENG 161A", + "title": "Bioreactor Engineering (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 169, + 171, + 571, + 1509, + 1513 + ], + "edges_to": [ + 2160, + 3267, + 4143 + ], + "id": 2161, + "label": "BENG 123", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 345, + 242, + 270 + ], + "edges_to": [ + 2160, + 4574 + ], + "id": 2162, + "label": "BENG 160", + "title": "" + }, + { + "dept": "MDE", + "description": "This course gives an introduction to digital signal processing (DSP) techniques and data-based parameter estimation (DBPE) techniques for the measurement, filtering, and analysis of experimental data obtained with embedded systems in medical devices. ", + "edges_from": [], + "edges_to": [], + "id": 2163, + "label": "MDE 240", + "title": "Embedded System Design (4)" + }, + { + "dept": "BENG", + "description": "Commercial production of biochemical commodity products. Application of genetic control systems and mutant populations. Recombinant DNA and eucaryotic proteins in E. coli and other host organisms. Product recovery operations, including the design of bioseparation processes of filtration, adsorption, chromatography, and crystallization. Bioprocess economics. Human recombinant erythropoietin as an example, from genomic cloning to CHO cell expression, to bioreactor manufacturing and purification of medical products for clinical application. ", + "edges_from": [ + 2160 + ], + "edges_to": [], + "id": 2164, + "label": "BENG 161B", + "title": "Biochemical Engineering (4)" + }, + { + "dept": "TDGE", + "description": "Seminar on a topic in theatre or dance on a level appropriate for first-year students, conducted in an informal, small group setting limited to ten to twenty students. Topics will vary. ", + "edges_from": [], + "edges_to": [], + "id": 2165, + "label": "TDGE 87", + "title": "Freshman Seminar in Theatre and Dance (1)" + }, + { + "dept": "TDGE", + "description": "An introduction to dance movement and understanding your body. A contemporary approach to dancing and its many genres as an expressive medium and form of communication. A movement course but no dance training or background in dance needed. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2166, + "label": "TDGE 89", + "title": "Dance Movement Exploration (4)" + }, + { + "dept": "LTTH", + "description": "A critical and interpretive review of some of the major documents in criticism from the classical period to the present time.", + "edges_from": [], + "edges_to": [], + "id": 2167, + "label": "LTTH 110", + "title": "History of Criticism (4)" + }, + { + "dept": "HIEU", + "description": "This course covers the Middle Byzantine Empire from the seventh to the eleventh century, examining the impact of Islam; Iconoclasm; the conversion of the Slavs and the rise of Bulgaria and Russia; religious and intellectual developments; court culture and ceremonial. Students cannot receive credit for both HIEU 104 and HIEU 104B. Recommended preparation: HIEU 104A.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2168, + "label": "HIEU 104B", + "title": "The Byzantine Empire, 7th\u201311th centuries (4)" + }, + { + "dept": "VIS", + "description": "This course will explore design strategies that engage peoples\u2019 shifting geopolitical boundaries, bioregional and ecosystems, urban structures and landscapes, and recontextualize the city as a site of investigation by developing new ways of intervening into expanded notions of urban space, including virtual communities and new speculations of urbanity. ", + "edges_from": [ + 2170 + ], + "edges_to": [], + "id": 2169, + "label": "VIS 101A", + "title": "Designing Urban Ecologies (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 563, + 564 + ], + "edges_to": [ + 2169, + 5519 + ], + "id": 2170, + "label": "VIS 101", + "title": "" + }, + { + "dept": "ESYS", + "description": "The seminar provides a venue for the development, presentation, and evaluation of the Environmental Systems Integrative Project. The seminar will include work on research methods as well as paper presentation skills. ", + "edges_from": [ + 2172 + ], + "edges_to": [], + "id": 2171, + "label": "ESYS 190B", + "title": "Environmental Systems Senior Seminar (4)" + }, + { + "dept": "ESYS", + "description": "", + "edges_from": [ + 2173 + ], + "edges_to": [ + 2171 + ], + "id": 2172, + "label": "ESYS 190A", + "title": "" + }, + { + "dept": "ESYS", + "description": "", + "edges_from": [], + "edges_to": [ + 3515, + 2172 + ], + "id": 2173, + "label": "ESYS 103", + "title": "" + }, + { + "dept": "MAE", + "description": "Engineering Design (4)", + "edges_from": [], + "edges_to": [], + "id": 2174, + "label": "MAE 126B", + "title": "Environmental" + }, + { + "dept": "HIEU", + "description": "European Society and Social Thought, 1870\u20131989 (4)", + "edges_from": [], + "edges_to": [], + "id": 2175, + "label": "HIEU 136B", + "title": "" + }, + { + "dept": "LTWL", + "description": "This class investigates yoga as a practice aimed at integrating the body, intellect, and spirit. It considers a range of sources and representations, from foundational works in classical Sanskrit through the sometimes kitschy, sometimes serious, spirituality of contemporary pop culture.", + "edges_from": [], + "edges_to": [], + "id": 2176, + "label": "LTWL 169", + "title": "Yoga, Body, and Transformation (4)" + }, + { + "dept": "LTIT", + "description": "Politics, literature, and cultural issues of twentieth-century Italy. May be repeated for credit when topics vary. ", + "edges_from": [ + 2178 + ], + "edges_to": [], + "id": 2177, + "label": "LTIT 122", + "title": "Studies in Modern Italian Culture (4)" + }, + { + "dept": "LTIT", + "description": "", + "edges_from": [ + 2004, + 2007 + ], + "edges_to": [ + 2177, + 2409 + ], + "id": 2178, + "label": "LTIT 50", + "title": "" + }, + { + "dept": "EDS", + "description": "Performance Assessment Portfolio (4)", + "edges_from": [], + "edges_to": [], + "id": 2179, + "label": "EDS 206", + "title": "Teaching" + }, + { + "dept": "VIS", + "description": "Covering the evolution of architecture and urban developments in South and North Korea since 1953. The course will examine how both states have shaped the political, economic, and cultural conditions. In particular, we will compare the apartment block communities, national identity architecture, and thematic architecture for entertainment and political propaganda. Looking at how traditional Korean architecture and urban structures were modified for modern life and political economy. ", + "edges_from": [], + "edges_to": [], + "id": 2180, + "label": "VIS 127I", + "title": "Architecture and Urbanism of Korea (4)" + }, + { + "dept": "VIS", + "description": "Surveys the key works and developments in the modern art and visual culture of Japan from Edo and Meiji to the present and of China from the early-twentieth century to contemporary video, performance, and installation art. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 2181, + "label": "VIS 127N", + "title": "Twentieth-Century Art in China and Japan (4)" + }, + { + "dept": "VIS", + "description": "Course will survey major trends in the arts of China from a thematic point of view, explore factors behind the making of works of art, including political and religious meanings, and examine contexts for art in contemporary cultural phenomena. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 2182, + "label": "VIS 127B", + "title": "Arts of China (4)" + }, + { + "dept": "VIS", + "description": "Course will explore Chinese art of the twentieth century. By examining artworks in different media, we will investigate the most compelling of the multiple realities that Chinese artists have constructed for themselves. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 2183, + "label": "VIS 127C", + "title": "Arts of Modern China (4)" + }, + { + "dept": "VIS", + "description": "The course will examine the theories and practices of contemporary art in South Korea, and its systems of cultural productions and disseminations. Highlighting the work of representative artists, institutions, and events, focuses will be on the predominance of governmental and corporate sponsorships, and how its cultural system is positioned for national and global presence, as well as the emergence alternative art spaces that promote the decentralization of cultural programs. Course is part of Korean studies minor program. ", + "edges_from": [], + "edges_to": [], + "id": 2184, + "label": "VIS 127A", + "title": "Contemporary Arts in South Korea (4)" + }, + { + "dept": "VIS", + "description": "Explore the development of Buddhist art and architecture in Japan. Focus on the role of art in Buddhist practice and philosophy and the function of syncretic elements in Japanese Buddhist art. ", + "edges_from": [], + "edges_to": [], + "id": 2185, + "label": "VIS 127F", + "title": "Japanese Buddhist Art (4)" + }, + { + "dept": "VIS", + "description": "Explore representations of figures and landscapes from the dawn of Chinese painting through the Yuan dynasty, with stress on developments in style and subject matter and relationships to contemporary issues in philosophy, religion, government, society, and culture. ", + "edges_from": [], + "edges_to": [], + "id": 2186, + "label": "VIS 127D", + "title": "Early Chinese Painting (4)" + }, + { + "dept": "VIS", + "description": "Explores major schools and artists of the Ming and Qing periods, including issues surrounding court patronage of professional painters, revitalization of art through reviving ancient styles, commercialization\u2019s challenges to scholar-amateur art, and the influences of the West. ", + "edges_from": [], + "edges_to": [], + "id": 2187, + "label": "VIS 127E", + "title": "Later Chinese Painting (4)" + }, + { + "dept": "VIS", + "description": "Course is a survey of the visual arts of Japan, considering how the arts developed in the context of Japan\u2019s history and discussing how art and architecture were used for philosophical, religious, and material ends. Recommended preparation: VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 2188, + "label": "VIS 127P", + "title": "Arts of Japan (4)" + }, + { + "dept": "VIS", + "description": "Explore major trends in Japanese pictorial art from the seventh century to the nineteenth century, with focus on function, style, and subject matter, and with particular emphasis on the relationship between Japanese art and that of continental Asia. ", + "edges_from": [], + "edges_to": [], + "id": 2189, + "label": "VIS 127Q", + "title": "Japanese Painting and Prints (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 147.) An advanced introduction to historical and contemporary black feminisms in the United States and transnationally. Students will explore the theory and practice of black feminists/womanists and analyze the significance of black feminism to contemporary understandings of race, class, gender, and sexuality.", + "edges_from": [], + "edges_to": [], + "id": 2190, + "label": "ETHN 147", + "title": "Black Feminisms, Past and Present\u00a0(4)" + }, + { + "dept": "HIEU", + "description": "A study of the origin and development of early Christian thought, literature, and institution from the New Testament period to the Council of Chalcedon.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2191, + "label": "HIEU 105", + "title": "The Early Christian Church (4)" + }, + { + "dept": "BIEB", + "description": "A laboratory course to familiarize students with ecological problem solving and methods. Students will perform outdoor fieldwork and use a computer for data exploration and analysis. Fieldwork can be expected in this course. Associated travel may be required, and students are responsible for their own transportation. Students may need to provide and use their own laptop. Material lab fees will apply. ", + "edges_from": [ + 1986, + 1988, + 709 + ], + "edges_to": [], + "id": 2192, + "label": "BIEB 121", + "title": "Ecology Laboratory (4)" + }, + { + "dept": "BIEB", + "description": "Theory and practice of molecular biology techniques used in evolutionary and ecological research. Includes isolation and genotyping of DNA, PCR, and its applications. Phylogenetics, biodiversity, bioinformatics, and evolutionary and ecological analysis of molecular data. Material lab fees will apply. Students may not enroll in and receive credit for both BIMM 101 and BIEB 123. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. ", + "edges_from": [ + 1987, + 687 + ], + "edges_to": [ + 3294 + ], + "id": 2193, + "label": "BIEB 123", + "title": "Molecular Methods in Evolution and Ecology Lab (4)" + }, + { + "dept": "BIEB", + "description": "This course begins with an introduction to plant population biology including whole-plant growth and physiology. We then focus on three classes of ecological interactions: plant-plant competition, plant-herbivore coevolution, and plant reproductive ecology including animal pollination and seed dispersal. ", + "edges_from": [ + 1987 + ], + "edges_to": [], + "id": 2194, + "label": "BIEB 126", + "title": "Plant Ecology (4)" + }, + { + "dept": "BIEB", + "description": "Course begins with a survey of insect diversity and phylogenetic relationships. Course then addresses issues such as population dynamics (including outbreaks), movement and migration, competition, predation, herbivory, parasitism, insect defense, mimicry complexes, and sociality. Course also includes discussions of pest management, evolution of insecticide resistance, insect-borne diseases, and how insects are responding to global change. ", + "edges_from": [ + 1987 + ], + "edges_to": [], + "id": 2195, + "label": "BIEB 128", + "title": "Insect Diversity (4)" + }, + { + "dept": "SOCI", + "description": "A survey of theoretical and empirical studies concerning the workings of the scientific community and its relations with the wider society. Special attention will be given to the institutionalization of the scientific role and to the social constitution of scientific knowledge. ", + "edges_from": [ + 2196, + 2197 + ], + "edges_to": [ + 2196 + ], + "id": 2196, + "label": "SOCI 168E", + "title": "Sociology of Science (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 2196 + ], + "id": 2197, + "label": "SOCC 168E", + "title": "" + }, + { + "dept": "POLI", + "description": "to Political Science: American Politics (4)", + "edges_from": [], + "edges_to": [], + "id": 2198, + "label": "POLI 10 or 10D", + "title": "Introduction" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 2199, + "label": "BGRD 205", + "title": "Research Discussion in Plant Membrane Biology (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 2200, + "label": "PSYC 267C", + "title": "Advanced Topics in Behavior Medicine III (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 2201, + "label": "PSYC 267B", + "title": "Advanced Topics in Behavior Medicine II (1)" + }, + { + "dept": "RELI", + "description": "Second quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196BH. ", + "edges_from": [ + 2203 + ], + "edges_to": [], + "id": 2202, + "label": "RELI 196BH", + "title": "Honors Thesis in Religion (4)" + }, + { + "dept": "RELI", + "description": "", + "edges_from": [], + "edges_to": [ + 2202 + ], + "id": 2203, + "label": "RELI 196A", + "title": "" + }, + { + "dept": "AESE", + "description": "Focuses on analytic techniques supporting rational business decision making, providing systematic approaches to complex decision situations. Addresses analysis of conflicting objectives and use of tools such as value trees, decision trees, influence diagrams, and value hierarchies, Bayesian networks, and data mining. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 2204, + 2205 + ], + "edges_to": [ + 2204 + ], + "id": 2204, + "label": "AESE 241", + "title": "Decision and Risk Analysis (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2204 + ], + "id": 2205, + "label": "MGT 241", + "title": "" + }, + { + "dept": "PHYS", + "description": "An introduction to the modern theory of dynamical systems and applications thereof. Topics include maps and flows, bifurcation theory and normal form analysis, chaotic attractors in dissipative systems, Hamiltonian dynamics and the KAM theorem, and time series analysis. Examples from real physical systems will be stressed throughout. ", + "edges_from": [ + 2207 + ], + "edges_to": [], + "id": 2206, + "label": "PHYS 221A", + "title": "Nonlinear and Nonequilibrium Dynamics of Physical Systems (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 4473 + ], + "edges_to": [ + 2206 + ], + "id": 2207, + "label": "PHYS 200B", + "title": "" + }, + { + "dept": "ECE", + "description": "An advanced reading or research project performed under the direction of an ECE faculty member. Must contain enough design to satisfy the ECE program\u2019s four-unit design requirement. Must be taken for a letter grade. May extend over two quarters with a grade assigned at completion for both quarters. ", + "edges_from": [], + "edges_to": [], + "id": 2208, + "label": "ECE 193H", + "title": "Honors Project (4\u20138)" + }, + { + "dept": "LTKO", + "description": "This course is designed to develop cultural understanding and professional/academic level reading skill for students with coverage of materials on Korean language history from the fifteenth century to the present, previous and current writing systems, and Korean language structure. May be taken for credit three times as topics vary. ", + "edges_from": [ + 2210 + ], + "edges_to": [], + "id": 2209, + "label": "LTKO 149", + "title": "Readings in Korean Language History and Structure (4)" + }, + { + "dept": "LTKO", + "description": "", + "edges_from": [ + 3433 + ], + "edges_to": [ + 2209 + ], + "id": 2210, + "label": "LTKO 3", + "title": "" + }, + { + "dept": "SE", + "description": "Introduction to advanced composite materials and their applications. Fiber and matrix properties, micromechanics, stiffness, ply-by-ply stress, hygrothermal behavior, and failure prediction. Lab activity will involve design, analysis, fabrication, and testing of composite structure. Program or materials fees may apply. ", + "edges_from": [ + 914, + 915, + 2212, + 1954 + ], + "edges_to": [ + 4647 + ], + "id": 2211, + "label": "SE 142", + "title": "Design of Composite Structures (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 2215, + 2216, + 914, + 915, + 665, + 666 + ], + "edges_to": [ + 2211, + 4267, + 4829 + ], + "id": 2212, + "label": "SE 160A", + "title": "" + }, + { + "dept": "SE", + "description": "Introduction to concepts, procedures, and key issues of engineering design. Problem formulation, concept design, configuration design, parametric design, and documentation. Project management, team working, ethics, and human factors. Term project in model structure design. Program or materials fees may apply. ", + "edges_from": [ + 1529, + 2214 + ], + "edges_to": [], + "id": 2213, + "label": "SE 140", + "title": "Structures and Materials Laboratory (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 553, + 1090, + 557, + 2622, + 2621 + ], + "edges_to": [ + 4976, + 2213 + ], + "id": 2214, + "label": "SE 103", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 553, + 557 + ], + "edges_to": [ + 2212, + 1092 + ], + "id": 2215, + "label": "SE 101B", + "title": "" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 553, + 557 + ], + "edges_to": [ + 2212, + 1092, + 3686 + ], + "id": 2216, + "label": "MAE 130B", + "title": "" + }, + { + "dept": "POLI", + "description": "(Same as LTCO 287.) A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. ", + "edges_from": [], + "edges_to": [], + "id": 2217, + "label": "POLI 213", + "title": "Culture and Political Theory (4)" + }, + { + "dept": "POLI", + "description": "(Same as Soc/G 202.) Themes important for social theory at the turn of the twenty-first century: Marxism, Gramsci, Althusser, critical theory (Adorno, Habermas), interpretation (Geertz), social systems (Parson), poststructuralism (Foucault), postmodernism, and social constructivism (Bourdieu). ", + "edges_from": [], + "edges_to": [], + "id": 2218, + "label": "POLI 212", + "title": "Contemporary Sociological Theory (4)" + }, + { + "dept": "POLI", + "description": "Normative approaches to liberty, equality, justice, and democracy, mostly Anglo-American and empirical approaches to justice. Thinkers such as Rawls, Habermas, Nozick, Dworkin, Raz, Roemer, Elster, Ostrom, Bowles, and Gintis may be considered. ", + "edges_from": [], + "edges_to": [], + "id": 2219, + "label": "POLI 216", + "title": "Contemporary Liberal and Democratic Theory (4)" + }, + { + "dept": "POLI", + "description": "An examination of selected texts in Marxist and post-Marxist political philosophy, with a focus on the theme of individual and collective identity including issues concerning alienation, consciousness, and ideology. ", + "edges_from": [], + "edges_to": [], + "id": 2220, + "label": "POLI 214", + "title": "Marxist and Post-Marxist Political Philosophy (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to behavioral psychology. Topics include classical conditioning, operant conditioning, animal learning, and motivation and behavior modification.", + "edges_from": [], + "edges_to": [], + "id": 2221, + "label": "PSYC 4", + "title": "General Psychology: Behavioral Foundations (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to theories and research results in developmental psychology, covering infancy through adulthood.", + "edges_from": [], + "edges_to": [], + "id": 2222, + "label": "PSYC 7", + "title": "General Psychology: Developmental Foundations (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to social psychology. Topics may include emotion, aesthetics, behavioral medicine, person perception, attitudes and attitude change, and behavior in social organizations.", + "edges_from": [], + "edges_to": [], + "id": 2223, + "label": "PSYC 6", + "title": "General Psychology: Social Foundations (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the basic concepts of cognitive psychology. Topics include perception, attention, memory, language, and thought. The relation of cognitive psychology to cognitive science and to neuropsychology is also covered.", + "edges_from": [], + "edges_to": [], + "id": 2224, + "label": "PSYC 3", + "title": "General Psychology: Cognitive Foundations (4)" + }, + { + "dept": "COGR", + "description": "Approaches to Culture/Mind (4)", + "edges_from": [], + "edges_to": [], + "id": 2225, + "label": "COGR 261", + "title": "Mediational" + }, + { + "dept": "TWS", + "description": "21-22-23-24-25-26. Third World Literatures (4-4-4-4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 2226, + "label": "TWS", + "title": "" + }, + { + "dept": "COGR", + "description": "This course is an introduction to the art of writing a research proposal. We will concentrate on proposals for ethnographic fieldwork, although the skills learned will be useful for many other purposes. The proposal writing process will be broken into component parts. Class time will be spent discussing these parts in greater detail and commenting on one another\u2019s work. By the end of the quarter students will have produced a research proposal of their own. ", + "edges_from": [], + "edges_to": [], + "id": 2227, + "label": "COGR 263", + "title": "Writing Research Proposals (4)" + }, + { + "dept": "COGR", + "description": "This seminar focuses on how differences between groups of people, and the patterns of power, exclusion and conflict resulting from such differences, become embedded in geographical landscapes. The course examines place-based sites of difference, power, and conflict beginning with the map, and moving through such spatial environments as the body, the city, the nation, the landscape, the reservation, culminating in borderland conflict here in our own backyard. ", + "edges_from": [], + "edges_to": [], + "id": 2228, + "label": "COGR 262", + "title": "Geographies of Difference, Exclusion and Conflict (4)" + }, + { + "dept": "COMM", + "description": "This course concentrates on one area of law specific to the concerns of communication: the relationship between privacy, personhood, and bodily autonomy. Using a combination of legal texts, court cases, and theoretical literature, we will consider the changing nature of each dimension of this relationship as the courts have been called upon to adjudicate conflicting claims and visions in matters of reproduction, sexual identity, genetic engineering, and the commodification of body parts. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2229, + "label": "COMM 114N", + "title": "CSI: Communication and the Law: The Body in Law (4)" + }, + { + "dept": "COMM", + "description": "Specialized study in community-based and/or participatory design research with topics to be determined by the instructor, for any given quarter. Students who choose the option to do fieldwork for any given course, need to register for COMM 114K. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2230, + "label": "COMM 114K", + "title": "CSI: Community Fieldwork (2)" + }, + { + "dept": "COMM", + "description": "Examine food justice from multiple analytical and theoretical perspectives: race, class, diversity, equity, legal-institutional, business, ethical, ecological, scientific, cultural, and socio-technical. Compare political strategies of food justice organizations/movements aimed at creating healthy and sustainable food systems locally and globally.\u00a0", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2231, + "label": "COMM 114J", + "title": "CSI: Food Justice (4)" + }, + { + "dept": "COMM", + "description": "Course explores the roles of media technologies in activist campaigns, social movements. Blending theory, historical case studies, and project-based group work, students will investigate possibilities and limitations of attempts to enroll new and old media technologies in collective efforts to make social change. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2232, + "label": "COMM 114I", + "title": "CSI: Media Technologies and Social Movements (4)" + }, + { + "dept": "LTEU", + "description": "Attention given to historical and cultural contexts. Topics to be considered include the concept of nature, the reaction to science, the role of the imagination.", + "edges_from": [], + "edges_to": [], + "id": 2233, + "label": "LTEU 110", + "title": "European Romanticism (4)" + }, + { + "dept": "LTEU", + "description": "This course focuses on nineteenth-century European realism in historical and cultural context. Topics include definitions of realism, the impact of urbanization and industrialization on literary forms and themes, and relations between realism in literature and the visual arts. May be repeated up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2234, + "label": "LTEU 111", + "title": "European Realism (4)" + }, + { + "dept": "COMM", + "description": "This course introduces students to different theories of globalization and of gender. Against this theoretical background, students critically examine the gendered (and racialized) nature of labor in the production of material, social, and cultural goods in the global economy. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2235, + "label": "COMM 114E", + "title": "CSI: Gender, Labor, and Culture in the Global Economy (4)" + }, + { + "dept": "COMM", + "description": "Does \u201cnew media\u201d deliver on its promise to expand access to public participation? We will analyze, produce, and counter narratives about media, youth, and democracy. The course should interest students who care about politics, human development, community engagement, or human computer interaction. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2236, + "label": "COMM 114D", + "title": "CSI: New Media, Youth, and Democracy (4)" + }, + { + "dept": "COMM", + "description": "Consider \u201cconstitutions\u201d as meaning-making, world-building mechanisms and practices. Explore how constitutions work: as interpretive instruments designed to frame, organize, guide human thought, action, and systems (according to certain rules or principles often represented as divine in origin and universal in effect) and; as ongoing, dynamic interpretative processes that nevertheless congeal in objects, bodies, and social arrangements and are thus considered binding or unalterable. ", + "edges_from": [ + 2238, + 294 + ], + "edges_to": [], + "id": 2237, + "label": "COMM 114C", + "title": "CSI: On Constitutions (4)" + }, + { + "dept": "COGN", + "description": "", + "edges_from": [], + "edges_to": [ + 2237 + ], + "id": 2238, + "label": "COGN 20", + "title": "" + }, + { + "dept": "LTEN", + "description": "to the Literature of the United States, 1865 to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 2239, + "label": "LTEN 26", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to African American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 2240, + "label": "LTEN 27", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to the Literature of the United States, Beginnings to 1865 (4)", + "edges_from": [], + "edges_to": [], + "id": 2241, + "label": "LTEN 25", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to the Literature of the British Isles: 1660\u20131832 (4)", + "edges_from": [], + "edges_to": [], + "id": 2242, + "label": "LTEN 22", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to the Literature of the British Isles: 1832\u2013Present (4)", + "edges_from": [], + "edges_to": [], + "id": 2243, + "label": "LTEN 23", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to the Literature of the British Isles: Pre-1660 (4)", + "edges_from": [], + "edges_to": [], + "id": 2244, + "label": "LTEN 21", + "title": "Introduction" + }, + { + "dept": "LTEN", + "description": "to Asian American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 2245, + "label": "LTEN 28", + "title": "Introduction" + }, + { + "dept": "COMM", + "description": "This course will explore the role that \u201cpublic history\u201d\u2014history as created for general audiences\u2014plays in communicating cultural and national identities by examining museum exhibitions, their controversies, and how material objects mediate interpretations of the past. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2246, + "label": "COMM 114P", + "title": "CSI: Public History and Museum Studies (4)" + }, + { + "dept": "LIGN", + "description": "Africa is home to an astonishing variety of languages. This course investigates the characteristics of the major language families as well as population movements and language contact, and how governments attempt to regulate language use. ", + "edges_from": [], + "edges_to": [], + "id": 2247, + "label": "LIGN 108", + "title": "Languages of Africa (4)" + }, + { + "dept": "LIGN", + "description": "The interpretation of language in understanding the law: 1) the language of courtroom interaction (hearsay, jury instructions); 2) written legal language (contracts, ambiguity, legal fictions); 3) language-based issues in the law (First Amendment, libel and slander). ", + "edges_from": [], + "edges_to": [], + "id": 2248, + "label": "LIGN 105", + "title": "Law and Language (4)" + }, + { + "dept": "ANTH", + "description": "Independent study and research under the direction of a member of the faculty. Student may take this course twice for credit. Please note: majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "edges_from": [ + 2250 + ], + "edges_to": [], + "id": 2249, + "label": "ANTH 199", + "title": "Independent Study (2\u20134)" + }, + { + "dept": "ANPR", + "description": "", + "edges_from": [], + "edges_to": [ + 2249 + ], + "id": 2250, + "label": "ANPR 199", + "title": "" + }, + { + "dept": "ANTH", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum by special arrangement with a faculty member. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "edges_from": [ + 2252 + ], + "edges_to": [], + "id": 2251, + "label": "ANTH 198", + "title": "Directed Group Study (2\u20134)" + }, + { + "dept": "ANPR", + "description": "", + "edges_from": [], + "edges_to": [ + 2251 + ], + "id": 2252, + "label": "ANPR 198", + "title": "" + }, + { + "dept": "HIUS", + "description": "112B. History of Native Americans in the United States II (4)", + "edges_from": [], + "edges_to": [], + "id": 2253, + "label": "HIUS 108B/ETHN", + "title": "" + }, + { + "dept": "ANTH", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in anthropology (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and consent of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 2254, + "label": "ANTH 192", + "title": "Senior Seminar in Anthropology (1)" + }, + { + "dept": "ANTH", + "description": "Individually arranged field studies giving practical experience outside the university. Student may take this course twice for credit. Please note: Majors may only apply eight units of approved P/NP credit toward the major, and minors may only apply four units of P/NP credit toward the minor. Please contact the department for a list of courses you may take on a P/NP basis and apply toward the major or minor. ", + "edges_from": [ + 2256 + ], + "edges_to": [], + "id": 2255, + "label": "ANTH 197", + "title": "Field Studies (4)" + }, + { + "dept": "ANPR", + "description": "", + "edges_from": [], + "edges_to": [ + 2255 + ], + "id": 2256, + "label": "ANPR 197", + "title": "" + }, + { + "dept": "ANTH", + "description": "Course gives students experience in teaching of anthropology at the lower-division level. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Course not counted toward minor or major.\u00a0P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2257, + "label": "ANTH 195", + "title": "Instructional Apprenticeship in Anthropology (4)" + }, + { + "dept": "MGT", + "description": "Provides an understanding of relationships among shareholders, managers, and boards. Focuses on the office of the chief executive officer and on the board of directors, including the roles and responsibilities of directors, and the legal, economic, managerial, and psychological issues they confront. Students may not earn credit for both MGT 421 and MGT 211. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2258, + "label": "MGT 421", + "title": "CEO, the Board of Directors, and Corporate Governance (4)" + }, + { + "dept": "MGT", + "description": "Examines methods of conflict resolution needed for effective management in a constantly changing business environment. Applies these tools to the broad spectrum of negotiation problems faced by the manager and professional. Includes simulations, role playing, and cases. Students may not earn credit for both MGT 420 and MGT 260. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2259, + "label": "MGT 420", + "title": "Negotiation (4)" + }, + { + "dept": "MGT", + "description": "This course focuses on fostering and maintaining creativity in entrepreneurial ventures and in general management more broadly. Reading materials, cases, classroom, and home exercises will help students understand and be able to use creativity in their own working lives. Students may not earn credit for both MGT 422 and MGT 222. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2260, + "label": "MGT 422", + "title": "Creativity and Innovation (4)" + }, + { + "dept": "MGT", + "description": "Builds on core management courses and deals with identifying and assessing new technological and product opportunities. Assessment methods and frameworks will be introduced for technologies and opportunities. Various business models to profitably address the market opportunities will also be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 2261, + "label": "MGT 425", + "title": "Opportunity and Business Model Analysis (2)" + }, + { + "dept": "MGT", + "description": "Provides practical techniques to help structure decision problems and analyze them quantitatively. Techniques help thinking clearly about objectives, alternatives, consequences, and uncertainties, and enable logical judgments with other types of information. Letter grades only. Students may not earn credit for both MGT 427 and MGT 240. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2262, + "label": "MGT 427", + "title": "Decision Analysis (4)" + }, + { + "dept": "MGT", + "description": "Students will learn to develop a workforce that performs at the highest level through strategies and practices that recruit productive people, build commitment, foster innovation, and inspire and empower motivated employees to deliver results. Letter grades only. Students may not earn credit for both MGT 426 and MGT 262. Students may not receive credit for both MGT 426 and MGT 269 with the course subtitle Creating a High-Performing Workplace. ", + "edges_from": [], + "edges_to": [], + "id": 2263, + "label": "MGT 426", + "title": "Creating a High-Performing Workplace (2)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in corporate governance. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 429 and MGT 219 if courses have same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2264, + "label": "MGT 429", + "title": "Topics in Corporate Governance (2 or 4)" + }, + { + "dept": "TDGR", + "description": "Advanced work in phonetics and articulation. Intensive study of stage dialects to prepare actor for variety of roles. ", + "edges_from": [ + 2266, + 2267 + ], + "edges_to": [], + "id": 2265, + "label": "TDGR 221A-B", + "title": "Speech for the Actor II (3-3)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2265 + ], + "id": 2266, + "label": "TDGR 221B", + "title": "" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2265 + ], + "id": 2267, + "label": "TDGR 221A", + "title": "" + }, + { + "dept": "GPIM", + "description": "This course introduces basic concepts of international business decision making. It covers entry modes, headquarter tasks and organization charts, strategic planning for foreign subsidiaries, international HR management and payroll, international taxation, and an introduction to transfer pricing. Renumbered from IRGN 470. Students may not receive credit for GPIM 470 and IRGN 470.", + "edges_from": [], + "edges_to": [], + "id": 2268, + "label": "GPIM 470", + "title": "International Business (4)" + }, + { + "dept": "MATH", + "description": "(Conjoined with Math 279.) Mathematical models of physical systems arising in science and engineering, good models and well-posedness, numerical and other approximation techniques, solution algorithms for linear and nonlinear approximation problems, scientific visualizations, scientific software design and engineering, project-oriented. Graduate students will do an extra paper, project, or presentation per instructor. ", + "edges_from": [ + 1608, + 933 + ], + "edges_to": [], + "id": 2269, + "label": "MATH 179", + "title": "Projects in Computational and Applied Mathematics (4)" + }, + { + "dept": "NANO", + "description": "Principles of product quality assurance in design and production. Professional ethics. Safety and design for the environment. Culmination of team design projects initiated in NANO 120A with a working prototype designed for a real engineering application. ", + "edges_from": [ + 2271 + ], + "edges_to": [], + "id": 2270, + "label": "NANO 120B", + "title": "NanoEngineering System Design II (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 2272 + ], + "edges_to": [ + 2270 + ], + "id": 2271, + "label": "NANO 120A", + "title": "" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 131, + 134, + 135, + 2282, + 2283, + 573 + ], + "edges_to": [ + 2271 + ], + "id": 2272, + "label": "NANO 110", + "title": "" + }, + { + "dept": "CHIN", + "description": "Course designed to improve conversational Chinese for students interested in medicine and health care. Course aims for stronger Chinese proficiency within a medical environment. ", + "edges_from": [ + 2274 + ], + "edges_to": [], + "id": 2273, + "label": "CHIN 169B", + "title": "Medical Chinese II (4)" + }, + { + "dept": "CHIN", + "description": "", + "edges_from": [], + "edges_to": [ + 2273 + ], + "id": 2274, + "label": "CHIN 169A", + "title": "" + }, + { + "dept": "PHIL", + "description": "A course designed to satisfy the requirement that graduate students should serve as teaching assistants, either in the Department of Philosophy or in one of the writing programs offered by the various colleges. Each PhD candidate must teach the equivalent of quarter time for three academic quarters. Students are permitted to sign up as TAs for a maximum of eighteen quarters.", + "edges_from": [], + "edges_to": [], + "id": 2275, + "label": "PHIL 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "BENG", + "description": "Senior Seminar I: Professional Issues in Bioengineering (2)", + "edges_from": [], + "edges_to": [], + "id": 2276, + "label": "BENG 191/291", + "title": "" + }, + { + "dept": "HIAF", + "description": "This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 261.", + "edges_from": [], + "edges_to": [], + "id": 2277, + "label": "HIAF 161", + "title": "Special Topics in African History (4)" + }, + { + "dept": "TDGR", + "description": "Advanced Photoshop techniques will be explored and applied to the creation of multimedia projects. ", + "edges_from": [], + "edges_to": [], + "id": 2278, + "label": "TDGR 269B", + "title": "Photoshop II (4)" + }, + { + "dept": "TDGR", + "description": "Course will introduce the basic functions and applications of Photoshop as they may be applied to theatrical design. Emphasis on using Photoshop as an artistic tool. ", + "edges_from": [], + "edges_to": [], + "id": 2279, + "label": "TDGR 269A", + "title": "Photoshop I (4)" + }, + { + "dept": "Soc/G", + "description": "This course provides an overview of the classical and current debates in the economic sociology literature. It presents theories of the rise of industrial economics and addresses how economic activities are constituted and influenced by institutions, culture, and social structure. ", + "edges_from": [], + "edges_to": [], + "id": 2280, + "label": "Soc/G 264", + "title": "Economic Sociology (4)" + }, + { + "dept": "Soc/G", + "description": "Seminar in the Sociology of Art (4)", + "edges_from": [], + "edges_to": [], + "id": 2281, + "label": "Soc/G 263", + "title": "Graduate" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 571, + 130, + 5163, + 596, + 30 + ], + "edges_to": [ + 2272, + 4193, + 2916, + 2284, + 2285, + 5689 + ], + "id": 2282, + "label": "NANO 102", + "title": "" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 130, + 571 + ], + "edges_to": [ + 2272, + 4193, + 2915, + 2285 + ], + "id": 2283, + "label": "NANO 104", + "title": "" + }, + { + "dept": "NANO", + "description": "Fundamentals and practice of methods to image, measure, and analyze materials and devices that are structured at the nanometer scale. Optical and electron microscopy; scanning probe methods; photon-, ion-, electron-probe methods, spectroscopic, magnetic, electrochemical, and thermal methods. ", + "edges_from": [ + 2282 + ], + "edges_to": [ + 2285 + ], + "id": 2284, + "label": "NANO 111", + "title": "Characterization of NanoEngineering Systems (4)" + }, + { + "dept": "NANO", + "description": "Introduction to methods for fabricating materials and devices in NanoEngineering. Nano-particle, -vesicle, -tube, and -wire synthesis. Top-down methods including chemical vapor deposition, conventional and advanced lithography, doping, and etching. Bottom-up methods including self-assembly. Integration of heterogeneous structures into functioning devices. ", + "edges_from": [ + 2282, + 2283, + 2284 + ], + "edges_to": [], + "id": 2285, + "label": "NANO 112", + "title": "Synthesis and Fabrication of NanoEngineering Systems (4)" + }, + { + "dept": "NANO", + "description": "Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with CENG 114. Students may not receive credit for both NANO 114 and CENG 114. ", + "edges_from": [ + 131, + 573, + 134, + 135 + ], + "edges_to": [], + "id": 2286, + "label": "NANO 114", + "title": "Probability and Statistical Methods for Engineers (4)" + }, + { + "dept": "HIUS", + "description": "In this seminar, we will examine the shifting boundary between what constitutes a public and a private concern in twentieth-century US history. We will consider issues such as civil rights, immigration, health care, and the regulation of financial institutions. ", + "edges_from": [ + 2288, + 2289 + ], + "edges_to": [], + "id": 2287, + "label": "HIUS 185/285", + "title": "In the Public Interest (4)" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2287 + ], + "id": 2288, + "label": "HIUS 185", + "title": "" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2287 + ], + "id": 2289, + "label": "HIUS 285", + "title": "" + }, + { + "dept": "LTEN", + "description": "A study in depth of the works of major American writers. May be repeated up to three times for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2290, + "label": "LTEN 176", + "title": "Major American Writers (4)" + }, + { + "dept": "LTAM", + "description": "Reading of representative works in Latin American literature with a view to literary analysis (form, theme, meaning), the developmental processes of the literature, and the many contexts: historical, social, cultural. Texts may be read in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2291, + "label": "LTAM 110", + "title": "Latin American Literature in Translation (4)" + }, + { + "dept": "LTAM", + "description": "Comparative survey of Caribbean literatures from the Spanish, French, English, and Dutch Caribbean. Literary texts trace historical paradigms including the development of plantation slavery, emancipation, the quest for nationhood, migration, and transnational identities. Films and music may complement discussion.", + "edges_from": [], + "edges_to": [], + "id": 2292, + "label": "LTAM 111", + "title": "Comparative Caribbean Discourse (4)" + }, + { + "dept": "HIEU", + "description": "The social, political, and cultural transformation of late-medieval Italy from the heyday of mercantile expansion before the plague to the dissolution of the Italian state system with the French invasions of 1494. Special focus upon family, associational life and factionalism in the city, the development of the techniques of capitalist accumulation, and the spread of humanism.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2293, + "label": "HIEU 120", + "title": "The Renaissance in Italy (4)" + }, + { + "dept": "HIEU", + "description": "This course treats the history of the Greek world from the Mycenaeans to the aftermath of the Peloponnesian War. It focuses on the rise of the polis, the development of the Athenian democracy and imperialism, and the Peloponnesian War. +", + "edges_from": [], + "edges_to": [], + "id": 2294, + "label": "HIEU 122", + "title": "Ancient Greece from the Bronze Age to the Peloponnesian War (4)" + }, + { + "dept": "HIEU", + "description": "This course explores the dramatic political, social, and cultural changes in the Greek world and the Eastern Mediterranean from the fourth century BCE and the rise of Alexander the Great to the death of Cleopatra. +", + "edges_from": [], + "edges_to": [], + "id": 2295, + "label": "HIEU 123", + "title": "Ancient Greece from Classical Athens to Cleopatra (4)" + }, + { + "dept": "HIEU", + "description": "The intellectual and social history of the Reformation and Counter-Reformation from the French invasions to the Edict of Nantes. Emphasis is upon reform from below and above, the transformation of grass-roots spirituality into institutional control.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2296, + "label": "HIEU 125", + "title": "Reformation Europe (4)" + }, + { + "dept": "TDDR", + "description": "Discussion and research into the duties, responsibilities, and roles of a stage manager. Work to include studies in script analysis, communication, rehearsal procedures, performance skills, and style and conceptual approach to theatre. THGE or TDGE 1, THAC or TDAC 1, and THDE or TDDE 1 recommended.", + "edges_from": [], + "edges_to": [ + 5699 + ], + "id": 2297, + "label": "TDDR 101", + "title": "Stage Management (4)" + }, + { + "dept": "HIEU", + "description": "This course looks at the phenomenon of sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries.", + "edges_from": [], + "edges_to": [], + "id": 2298, + "label": "HIEU 127", + "title": "Sport in the Modern World (4)" + }, + { + "dept": "ECE", + "description": "Physics of solid-state electronic devices, including p-n diodes, Schottky diodes, field-effect transistors, bipolar transistors, pnpn structures. Computer simulation of devices, scaling characteristics, high frequency performance, and circuit models. ", + "edges_from": [ + 1576 + ], + "edges_to": [ + 4670 + ], + "id": 2299, + "label": "ECE 230B", + "title": "Solid State Electronics II (4)" + }, + { + "dept": "HIEU", + "description": "This course surveys the historical and cultural significance of Paris from about 1500 to the present. The focus is on interactions between political, architectural, and urban evolutions, and the changing populations of Paris in times of war, revolutions, and peace.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2300, + "label": "HIEU 129", + "title": "Paris, Past and Present (4)" + }, + { + "dept": "ECE", + "description": "Radio frequency integrated circuits: low-noise amplifiers, AGCs, mixers, filters, voltage-controlled oscillators. BJT and CMOS technologies for radio frequency and microwave applications. Device modeling for radio frequency applications. Design and device tradeoffs of linearity, noise, power dissipation, and dynamic range. Current research topics in the field. ", + "edges_from": [ + 2302, + 2303 + ], + "edges_to": [], + "id": 2301, + "label": "ECE 265B", + "title": "Communication Circuit Design II (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 2303 + ], + "edges_to": [ + 5593, + 2301 + ], + "id": 2302, + "label": "ECE 265A", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2301, + 2302 + ], + "id": 2303, + "label": "ECE 166", + "title": "" + }, + { + "dept": "TDDR", + "description": "This is an introductory class in the process of understanding the play script. The class will focus on analyzing the story and the underlying dramatic structure in terms of dramatic action. Objectives, actions, choices, given circumstances, and character will be examined. ", + "edges_from": [], + "edges_to": [ + 5698 + ], + "id": 2304, + "label": "TDDR 108", + "title": "Text Analysis for Actors and Directors (4)" + }, + { + "dept": "POLI", + "description": "Survey of theories, with empirical cases explaining origins of the modern state. ", + "edges_from": [], + "edges_to": [], + "id": 2305, + "label": "POLI 220C", + "title": "Origins of the State (4)" + }, + { + "dept": "POLI", + "description": "This is a second course in comparative politics designed as a preparation for the field examination. It will focus on the comparative study of political institutions. ", + "edges_from": [], + "edges_to": [], + "id": 2306, + "label": "POLI 220B", + "title": "Comparative Politics: Institutions (4)" + }, + { + "dept": "POLI", + "description": "This course will provide a general literature review in comparative politics to serve as preparation for the field examination. ", + "edges_from": [], + "edges_to": [], + "id": 2307, + "label": "POLI 220A", + "title": "Comparative Politics: State and Society (4)" + }, + { + "dept": "MUS", + "description": "This seminar introduces the central theories, methods, and approaches used to study the music of contemporary cultures, in their local contexts. In addition to surveying key writings, students will document music from their local environment. ", + "edges_from": [], + "edges_to": [], + "id": 2308, + "label": "MUS 110", + "title": "Introduction to Ethnomusicology Seminar (4)" + }, + { + "dept": "MUS", + "description": "A study of particular regional music in their repertory, cultural context, and interaction with other traditions. Topics vary. May be taken for credit up to three times. ", + "edges_from": [], + "edges_to": [], + "id": 2309, + "label": "MUS 111", + "title": "Topics/World Music Traditions (4)" + }, + { + "dept": "MUS", + "description": "This course will address topics in medieval, Renaissance, and Baroque music; topics will vary from year to year. May be repeated five times for credit. ", + "edges_from": [ + 2312, + 2311 + ], + "edges_to": [], + "id": 2310, + "label": "MUS 112", + "title": "Topics in European Music Before 1750 (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2313, + 2310 + ], + "id": 2311, + "label": "MUS 8", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [], + "edges_to": [ + 2313, + 2310 + ], + "id": 2312, + "label": "MUS 4", + "title": "" + }, + { + "dept": "MUS", + "description": "This course will focus on Western music between 1750 and the early twentieth century; topics will vary from year to year. May be repeated five times for credit. ", + "edges_from": [ + 2312, + 2311 + ], + "edges_to": [], + "id": 2313, + "label": "MUS 113", + "title": "Topics in Classic, Romantic, and Modern Music (4)" + }, + { + "dept": "MUS", + "description": "An exploration of materials and methods used in the music of our time. There will be an extra discussion group for music majors. May be repeated once for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2314, + "label": "MUS 114", + "title": "Music of the Twentieth Century (4)" + }, + { + "dept": "MUS", + "description": "A survey of the biographical, historical, sociological, and political issues affecting woman musicians, their creativity, their opportunities, and their perception by others. It compares and contrasts the work of women composers, performers, patrons, teachers, and writers on music from the Middle Ages through the present. ", + "edges_from": [], + "edges_to": [], + "id": 2315, + "label": "MUS 115", + "title": "Women in Music (4)" + }, + { + "dept": "MUS", + "description": "This course examines special topics in popular music from various sociopolitical, aesthetic, and performance perspectives. Readings include recent literature in cultural studies, musicology, and/or performance practice. Topics vary. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2316, + "label": "MUS 116", + "title": "Popular Music Studies Seminar (4)" + }, + { + "dept": "MGT", + "description": "Project-based course, requiring identification and completion of major project assessing potential business value of emerging or potential technology or science. Students work individually or in teams. Periodic class meetings include presentation of interim and final reports. Letter grades only. ", + "edges_from": [ + 2318 + ], + "edges_to": [], + "id": 2317, + "label": "MGT 414B", + "title": "Lab to Market Workshop II (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2317 + ], + "id": 2318, + "label": "MGT 414A", + "title": "" + }, + { + "dept": "VIS", + "description": "Art and Civilization of the Ancient Maya (4)", + "edges_from": [], + "edges_to": [], + "id": 2319, + "label": "VIS 126BN", + "title": "The" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2320, + "label": "LTLA 104", + "title": "Latin Prose (4)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2321, + "label": "LTLA 105", + "title": "Topics in Latin Literature (4)" + }, + { + "dept": "LTLA", + "description": "Reading and discussion of selections from representative authors of one or more periods. Review of grammar as needed. ", + "edges_from": [ + 2323 + ], + "edges_to": [], + "id": 2322, + "label": "LTLA 100", + "title": "Introduction to Latin Literature (4)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [ + 3631 + ], + "edges_to": [ + 2322 + ], + "id": 2323, + "label": "LTLA 3", + "title": "" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2324, + "label": "LTLA 102", + "title": "Latin Poetry (4)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2325, + "label": "LTLA 103", + "title": "Latin Drama (4)" + }, + { + "dept": "CSE", + "description": "Learning methods for applications. Content may include data preparation, regression and classification algorithms, support vector machines, random forests, class imbalance, overfitting, decision theory, recommender systems and collaborative filtering, text mining, analyzing social networks and social media, protecting privacy, A/B testing. Recommended preparation: CSE 103 or similar. ", + "edges_from": [], + "edges_to": [], + "id": 2326, + "label": "CSE 255", + "title": "Data Mining and Predictive Analytics (4)" + }, + { + "dept": "CSE", + "description": "Learning algorithms based on statistics. Possible topics include minimum-variance unbiased estimators, maximum likelihood estimation, likelihood ratio tests, resampling methods, linear logistic regression, feature selection, regularization, dimensionality reduction, manifold detection. An upper-division undergraduate course on probability and statistics such as Math 183 or 186, or any graduate course on statistics, pattern recognition, or machine learning is recommended. ", + "edges_from": [], + "edges_to": [], + "id": 2327, + "label": "CSE 254", + "title": "Statistical Learning (4)" + }, + { + "dept": "CSE", + "description": "Probability density estimation, perceptrons, multilayer neural networks, radial basis function networks, support vector machines, error functions, data preprocessing. Possible topics include unsupervised learning methods, recurrent networks, and mathematical learning theory. Recommended preparation: CSE 250B or equivalent. ", + "edges_from": [], + "edges_to": [], + "id": 2328, + "label": "CSE 253", + "title": "Neural Networks for Pattern Recognition (4)" + }, + { + "dept": "CSE", + "description": "A weekly meeting featuring local (and occasional external) speakers discussing their current research in Artificial Intelligence Neural Networks, and Genetic Algorithms. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2329, + "label": "CSE 259", + "title": "Seminar in Artificial Intelligence (1)" + }, + { + "dept": "CSE", + "description": "Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. Recommended preparation: No previous background in machine learning is required, but students should be comfortable with programming (all example code will be in Python), and with basic optimization and linear algebra. ", + "edges_from": [], + "edges_to": [], + "id": 2330, + "label": "CSE 258", + "title": "Recommender Systems and Web Mining (4)" + }, + { + "dept": "MGT", + "description": "Students will study alternative organizational structures, their stakeholders and corporate cultures, and their use in meeting strategic enterprise priorities facing a company. This course provides students with insights into motivational factors, communications networks, organizational cultures, and alternative leadership styles. The concept of change management and its challenges is also studied along with power and influence. Course previously listed as: Organizational Leadership. ", + "edges_from": [], + "edges_to": [], + "id": 2331, + "label": "MGT 164", + "title": "Business and Organizational Leadership (4)" + }, + { + "dept": "MGT", + "description": "Ethics and Corporate Responsibility (4)", + "edges_from": [], + "edges_to": [], + "id": 2332, + "label": "MGT 166", + "title": "Business" + }, + { + "dept": "MGT", + "description": "Social entrepreneurs create innovative solutions to solve challenging social and environmental issues affecting the world around them. In this course, students will learn how to apply entrepreneurial business and innovative skills to effectively tackle global issues impacting society such as environmental degradation, rural health care availability, educational improvements in economically disadvantaged regions of the world, famine in an era of obesity, and clean water development. ", + "edges_from": [], + "edges_to": [], + "id": 2333, + "label": "MGT 167", + "title": "Social Entrepreneurship (4)" + }, + { + "dept": "MAE", + "description": "Existence and uniqueness of solutions of EDE\u2019s, sensitivity equations. Stability, direct and converse Lyapunov theorems, LaSalle\u2019s theorem, linearization, invariance theorems. Center manifold theorem. Stability of perturbed systems with vanishing and nonvanishing perturbations, input-to-state ability, comparison method. Input-output stability. Perturbation theory and averaging. Singular perturbations. Circle and Popov criteria. ", + "edges_from": [ + 1448 + ], + "edges_to": [ + 2761, + 2335 + ], + "id": 2334, + "label": "MAE 281A", + "title": "Nonlinear Systems (4)" + }, + { + "dept": "MAE", + "description": "Small gain theorem, passivity. Describing functions. Nonlinear controllability, feedback linearization, input-state and input-output linearization, zero dynamics. Stabilization, Brockett\u2019s necessary conditions (local), control Lyapunov functions, Sontag\u2019s formula (global). Integrator back stepping, forwarding. Inverse optimality, stability margins. Disturbance attenuation, deterministic and stochastic, nonlinear H-infinity. Nonlinear observers. ", + "edges_from": [ + 2334 + ], + "edges_to": [], + "id": 2335, + "label": "MAE 281B", + "title": "Nonlinear Control (4)" + }, + { + "dept": "HIEA", + "description": "171/271. Society and Culture in Premodern China (4)", + "edges_from": [], + "edges_to": [], + "id": 2336, + "label": "HIEA", + "title": "" + }, + { + "dept": "GPPS", + "description": "This course will examine characteristics and distinctive aspects of contemporary Korean society and politics. Emphasis will be placed on continuity and change in social values, political culture and leadership, economic growth and its impact, and democratization and its future prospects. Renumbered from IRGN 484. Students may not receive credit for GPPS 484 and IRGN 484.", + "edges_from": [], + "edges_to": [], + "id": 2337, + "label": "GPPS 484", + "title": "Korean Politics (4)" + }, + { + "dept": "CONT", + "description": "A workshop for potential discussion leaders", + "edges_from": [], + "edges_to": [], + "id": 2338, + "label": "CONT 196", + "title": "Contemporary Issues Workshop (2)" + }, + { + "dept": "POLI", + "description": "This course examines contemporary issues in Latino politics in the U.S.; comparisons of racial and ethnic group experiences in the U.S.; Latino access to the political system through political participation. ", + "edges_from": [], + "edges_to": [], + "id": 2339, + "label": "POLI 105A", + "title": "Latino Politics in the U.S. (4)" + }, + { + "dept": "MAE", + "description": "Potential flows, boundary layers, low-Reynolds", + "edges_from": [], + "edges_to": [ + 2764, + 3974 + ], + "id": 2340, + "label": "MAE 210B", + "title": "Fluid Mechanics II (4)" + }, + { + "dept": "MAE", + "description": "Flow instabilities, linear stability theory;", + "edges_from": [], + "edges_to": [], + "id": 2341, + "label": "MAE 210C", + "title": "Fluid Mechanics III (4)" + }, + { + "dept": "CONT", + "description": "Group studies, readings, projects, and discussions in areas of contemporary concern. Course is set up so that students may work together as a group in an area of contemporary concern whereby the group emphasis would be more beneficial and constructive than individual studies. May be taken for credit three times for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 2342, + "label": "CONT 198", + "title": "Group Studies in Contemporary Issues (2 or 4)" + }, + { + "dept": "RELI", + "description": "The senior seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in religion at the upper-division level. Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.", + "edges_from": [], + "edges_to": [], + "id": 2343, + "label": "RELI 192", + "title": "Senior Seminar in Religion (1)" + }, + { + "dept": "FPM", + "description": "Course will present theory and methods for developing scales to assess health behavior constructs (e.g., self-efficacy, social support). ", + "edges_from": [], + "edges_to": [], + "id": 2344, + "label": "FPM 278", + "title": "Scale Development for Behavioral Health Measurement (4)" + }, + { + "dept": "FPM", + "description": "The UC San Diego Student-Run Free Clinic Project operates in partnership with two community programs for the homeless and an inner-city elementary school. Students participate in didactic sessions learning principles of working with the underserved and are supervised in clinical, health education, and administrative roles at the clinic sites. S/U grades only. ", + "edges_from": [], + "edges_to": [ + 5772 + ], + "id": 2345, + "label": "FPM 272", + "title": "Community Advocacy (4)" + }, + { + "dept": "FPM", + "description": "To improve knowledge about health and illness within cultural contexts, including review and discussions of epidemiologic studies describing health indicators/beliefs/practices. Students interact with experts in cross-cultural health research to explore ethnicity/culture in health care delivery and utilization, and disease risk. ", + "edges_from": [], + "edges_to": [], + "id": 2346, + "label": "FPM 270", + "title": "Cultural Perceptions of Health and Disease (4)" + }, + { + "dept": "FPM", + "description": "This course focuses on critical analyses of success and failure of behavior theories as applied to interventions in multiple fields (e.g. smoking, dietary behavior, and physical activity). It covers individual and population approaches to behavior change. ", + "edges_from": [ + 2348, + 2349 + ], + "edges_to": [], + "id": 2347, + "label": "FPM 277", + "title": "Health Behavior Interventions II (4)" + }, + { + "dept": "PU", + "description": "", + "edges_from": [], + "edges_to": [ + 2347 + ], + "id": 2348, + "label": "PU 76", + "title": "" + }, + { + "dept": "PU", + "description": "", + "edges_from": [], + "edges_to": [ + 2347 + ], + "id": 2349, + "label": "PU 75", + "title": "" + }, + { + "dept": "FPM", + "description": "Course will include a discussion of intervention goals suggested by major theories of health behavior change.\u00a0Common communication modes and messages will be studied, including examples using small group settings, mass media, legislation, and telephone counseling. ", + "edges_from": [], + "edges_to": [], + "id": 2350, + "label": "FPM 276", + "title": "Health Behavior Interventions I (4)" + }, + { + "dept": "ANAR", + "description": "Study Abroad program that examines the origins and history of ancient Mediterranean civilizations from the late Neolithic period through the Classical era. During the course, students will visit some of the most important archaeological sites in the world, from the ancient megalithic temples of Malta, to Phoenician colonies of the early Iron Age, to the Carthaginian and Greek cities of Sicily, and ending with Roman Pompeii and Herculaneum, destroyed by the eruption of Vesuvius in AD 79. Students are required to apply for this Study Abroad course. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 2351, + "label": "ANAR 135S", + "title": "Ancient Mediterranean Civilization (8)" + }, + { + "dept": "HIUS", + "description": "131. Social and Economic History of the Southwest II (4)", + "edges_from": [], + "edges_to": [], + "id": 2352, + "label": "HIUS 159/ETHN", + "title": "" + }, + { + "dept": "LIGN", + "description": "An examination of sociolinguistic research on Deaf communities throughout the world, including: sociohistorical contexts for phonological, lexical and syntactic variation, contact between languages, multilingualism, language policies and planning, second language learning, language attitudes, and discourse analysis of specific social contexts. Course will be conducted in ASL. ", + "edges_from": [ + 1763 + ], + "edges_to": [], + "id": 2353, + "label": "LIGN 146", + "title": "Sociolinguistics in Deaf Communities (4)" + }, + { + "dept": "COGS", + "description": "This course will help students in the behavioral sciences (cognitive science, psychology, linguistics, neuroscience, and related fields) learn how to program experiments and analyze and present data. ", + "edges_from": [ + 1776, + 573, + 1222 + ], + "edges_to": [], + "id": 2354, + "label": "COGS 119", + "title": "Programming for Experimental Research (4)" + }, + { + "dept": "COGS", + "description": "(Cross-listed with HDP 121.)", + "edges_from": [], + "edges_to": [], + "id": 2355, + "label": "COGS 110", + "title": "The Developing Mind (4)" + }, + { + "dept": "COGS", + "description": "This course provides an overview of neurological", + "edges_from": [], + "edges_to": [], + "id": 2356, + "label": "COGS 115", + "title": "Neurological Development and Cognitive Change (4)" + }, + { + "dept": "ETHN", + "description": "This course is a forum for the presentation of recent research by guests, faculty, and students. This course may be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 2357, + "label": "ETHN 230", + "title": "Departmental Colloquium (1)" + }, + { + "dept": "TDGR", + "description": "An intensive studio examination of problems and potentials", + "edges_from": [], + "edges_to": [], + "id": 2358, + "label": "TDGR 220A", + "title": "Process II: Classical Text I (4)" + }, + { + "dept": "TDGR", + "description": "An intensive studio examination of problems and potentials", + "edges_from": [], + "edges_to": [], + "id": 2359, + "label": "TDGR 220C", + "title": "Process II: Classical Text III (4)" + }, + { + "dept": "HIEA", + "description": "Study in East Asian History (4)", + "edges_from": [], + "edges_to": [], + "id": 2360, + "label": "HIEA 199", + "title": "Independent" + }, + { + "dept": "HIEA", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. May be taken for credit up to three times. Department approval required.", + "edges_from": [], + "edges_to": [], + "id": 2361, + "label": "HIEA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "TDTR", + "description": "An overview and analysis of movement theory systems that offer approaches that improve movement quality, prevent injuries, aid in habilitation, develop mental focus and kinesthetic control, establish a positive body language, and develop vocabulary for creative research. ", + "edges_from": [ + 1871 + ], + "edges_to": [], + "id": 2362, + "label": "TDTR 15", + "title": "Dance Movement and Analysis (4)" + }, + { + "dept": "ANSC", + "description": "Gesture, Communication, and the Body (4)", + "edges_from": [], + "edges_to": [], + "id": 2363, + "label": "ANSC 119GS", + "title": "" + }, + { + "dept": "CHEM", + "description": "Organic chemistry laboratory for chemistry majors; non-majors with strong background in CHEM 40A or 140A may also enroll, though preference will be given to majors. Similar to CHEM 43A, but emphasizes instrumental methods of product identification, separation, and analysis. A materials fee is required. Students must pass a safety exam. CHEM 43AM is renumbered from CHEM 143AH. Students may only receive credit for one of the following: CHEM 43AM, 143AM, 43A, or 143A. ", + "edges_from": [ + 1510, + 1511, + 595, + 598, + 2365, + 2366 + ], + "edges_to": [ + 5601, + 5602, + 2549 + ], + "id": 2364, + "label": "CHEM 43AM", + "title": "Organic Chemistry Laboratory for Majors (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5952, + 2553, + 2364, + 5068 + ], + "id": 2365, + "label": "CHEM 140AH", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5952, + 241, + 2364, + 5068, + 2553 + ], + "id": 2366, + "label": "CHEM 40AH", + "title": "" + }, + { + "dept": "EDS", + "description": "in Education Research and Design (2)", + "edges_from": [], + "edges_to": [], + "id": 2367, + "label": "EDS 233B", + "title": "Topics" + }, + { + "dept": "EDS", + "description": "Current topics and issues in education and educational research methodology, including action research, participant observation, ethnography, and survey research. This is the first in a two-course series. ", + "edges_from": [], + "edges_to": [], + "id": 2368, + "label": "EDS 233A", + "title": "Topics in Education Research and Design (2)" + }, + { + "dept": "PHYS", + "description": "The first quarter of a three-quarter course on field theory and elementary particle physics. Topics covered include the relation between symmetries and conservation laws, the calculation of cross sections and reaction rates, covariant perturbation theory, and quantum electrodynamics.", + "edges_from": [], + "edges_to": [ + 4617, + 2371 + ], + "id": 2369, + "label": "PHYS 215A", + "title": "Particles and Fields I (4)" + }, + { + "dept": "PHYS", + "description": "Modern applications of the renormalization", + "edges_from": [], + "edges_to": [], + "id": 2370, + "label": "PHYS 215C", + "title": "Particles and Fields III (4)" + }, + { + "dept": "PHYS", + "description": "Gauge theory quantization by means of path integrals, SU(3) symmetry and the quark model, spontaneous symmetry breakdown, introduction to QCD and the Glashow-Weinberg-Salam model of weak interactions, basic issues of renormalization. ", + "edges_from": [ + 2369 + ], + "edges_to": [], + "id": 2371, + "label": "PHYS 215B", + "title": "Particles and Fields II (4)" + }, + { + "dept": "Classics", + "description": "Covers various technical skills essential for research and pedagogy in classics, including use of digital resources (e.g., bibliographical databases). Provides an introduction to important disciplinary subfields, such as textual criticism and epigraphy. Selection of topics will be at instructor\u2019s discretion.", + "edges_from": [], + "edges_to": [], + "id": 2372, + "label": "Classics 201", + "title": "Research and Pedagogical Tools for Classicists (4)" + }, + { + "dept": "HIEU", + "description": "An analysis of the volatile course of German history from unification to the collapse of the Nazi dictatorship. Focus is on domestic developments inside Germany as well as on their impact on European and global politics in the twentieth century. Students may not receive credit for both HIEU 154 and HIEU 154GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 2373, + "label": "HIEU 154GS", + "title": "Modern Germany: From Bismarck to Hitler (4)" + }, + { + "dept": "MUS", + "description": "Meetings on group basis with faculty composer in sessions devoted to the study of composition. ", + "edges_from": [], + "edges_to": [], + "id": 2374, + "label": "MUS 203D", + "title": "Advanced Projects in Composition (1\u20134)" + }, + { + "dept": "ENG", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2375, + "label": "ENG 100L", + "title": "Design for Development Lab (2)" + }, + { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "edges_from": [], + "edges_to": [], + "id": 2376, + "label": "MUS 203A", + "title": "Advanced Projects in Composition (6)" + }, + { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "edges_from": [], + "edges_to": [], + "id": 2377, + "label": "MUS 203B", + "title": "Advanced Projects in Composition (6)" + }, + { + "dept": "MUS", + "description": "Meetings and laboratory sessions devoted to the study of composition in small groups. Consent of instructor required.", + "edges_from": [], + "edges_to": [], + "id": 2378, + "label": "MUS 203C", + "title": "Advanced Projects in Composition (6)" + }, + { + "dept": "AWP", + "description": "Under the supervision of an instructor, students will serve as peer mentors in analytical writing courses. Students will gain a fundamental understanding of the writing process and will develop the necessary skills to serve as productive writing mentors for their peers. ", + "edges_from": [], + "edges_to": [], + "id": 2379, + "label": "AWP 195", + "title": "Academic Mentoring in Writing (2)" + }, + { + "dept": "ENG", + "description": "An introduction to the practice of human-centered design and team engineering within a humanitarian context. Includes a group project designing a solution for a local or global nonprofit organization. Topics include: design process, contextual listening, project management, needs and capacity assessment, stakeholder analysis, ethical issues, models of leadership, gender and cultural issues, sustainable community development, and social entrepreneurship. ENG 100D is the gateway course for the Global TIES program, but it is open to all undergraduate students. Please go to", + "edges_from": [], + "edges_to": [], + "id": 2380, + "label": "ENG 100D", + "title": "Design for Development (4)" + }, + { + "dept": "ENG", + "description": "Principles and procedures of technical writing and professional communication. The course is ideal for students pursuing careers in science and/or engineering and covers organizing information, writing for technical forms such as proposals and abstracts, and designing visual aids.", + "edges_from": [], + "edges_to": [], + "id": 2381, + "label": "ENG 100C", + "title": "Technical Writing/Communication for Engineers and Scientist (2)" + }, + { + "dept": "ENG", + "description": "Engineering leadership attitudes,", + "edges_from": [], + "edges_to": [], + "id": 2382, + "label": "ENG 100B", + "title": "Engineering Leadership (2)" + }, + { + "dept": "ENG", + "description": "Introduction to theory and practice of team", + "edges_from": [], + "edges_to": [], + "id": 2383, + "label": "ENG 100A", + "title": "Team Engineering (2)" + }, + { + "dept": "MATH", + "description": "Existence and uniqueness of solutions to differential equations. Local and global theorems of continuity and differentiability. ", + "edges_from": [ + 2385 + ], + "edges_to": [], + "id": 2384, + "label": "MATH 130B", + "title": "Ordinary Differential Equations II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 169, + 171, + 571, + 573 + ], + "edges_to": [ + 2384 + ], + "id": 2385, + "label": "MATH 130A", + "title": "" + }, + { + "dept": "VIS", + "description": "A studio course focusing on the problems involved in transferring ideas and information into three-dimensions. Course will explore materials and construction as dictated by the intended object. Specific problems to be investigated will be determined by the individual professor. ", + "edges_from": [ + 1348 + ], + "edges_to": [ + 2387 + ], + "id": 2386, + "label": "VIS 107A", + "title": "Sculpture: Making the Object (4)" + }, + { + "dept": "VIS", + "description": "A studio course in which the student will investigate a wider variety of technical and conceptual issues as well as materials involved in contemporary art practice related to sculpture. ", + "edges_from": [ + 2386 + ], + "edges_to": [ + 2388 + ], + "id": 2387, + "label": "VIS 107B", + "title": "Sculpture: Practices and Genre (4)" + }, + { + "dept": "VIS", + "description": "A studio course in sculpture emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. Students may not receive credit for both VIS 107C and VIS 107CN. ", + "edges_from": [ + 2387 + ], + "edges_to": [], + "id": 2388, + "label": "VIS 107C", + "title": "Sculpture: Portfolio Projects (4)" + }, + { + "dept": "Jewish", + "description": "Acquisition of basic vocabulary, fundamentals of Hebrew grammar, conversation, and reading.", + "edges_from": [], + "edges_to": [], + "id": 2389, + "label": "Jewish Studies 1", + "title": "Beginning Hebrew (5)" + }, + { + "dept": "Jewish", + "description": "Vocabulary, grammar, conversation, introduction to literary and nonliterary texts.", + "edges_from": [], + "edges_to": [], + "id": 2390, + "label": "Jewish Studies 3", + "title": "Intermediate Hebrew, Continued (5)" + }, + { + "dept": "Jewish", + "description": "Continued study of vocabulary and grammar, emphasis on fluency in conversation, and reading.", + "edges_from": [], + "edges_to": [], + "id": 2391, + "label": "Jewish Studies 2", + "title": "Intermediate Hebrew (5)" + }, + { + "dept": "CSE", + "description": "Design of databases, transactions, use of trigger facilities and datablades. Performance measuring, organization of index structures. ", + "edges_from": [ + 2393 + ], + "edges_to": [ + 3406 + ], + "id": 2392, + "label": "CSE 132B", + "title": "Database Systems Applications (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 17 + ], + "edges_to": [ + 2392 + ], + "id": 2393, + "label": "CSE 132A", + "title": "" + }, + { + "dept": "PHIL", + "description": "Directed individual study by special arrangement with and under the supervision of a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2394, + "label": "PHIL 199", + "title": "Directed Individual Study (4)" + }, + { + "dept": "LIGN", + "description": "The study of how sign languages are structured, and how they are understood and produced by adults. Topics include the contrast between gesture and language, sign language acquisition, brain processing, sociolinguistics, and the role of sign language in reading. ", + "edges_from": [ + 1763, + 1756 + ], + "edges_to": [], + "id": 2395, + "label": "LIGN 148", + "title": "Psycholinguistics of Sign Language (4)" + }, + { + "dept": "ECE", + "description": "VLSI digital systems. Circuit characterization, performance estimation, and optimization. Circuits for alternative logic styles and clocking schemes. Subsystems include ALUs, memory, processor arrays, and PLAs. Techniques for gate arrays, standard cell, and custom design. Design and simulation using CAD tools. ", + "edges_from": [ + 2397 + ], + "edges_to": [], + "id": 2396, + "label": "ECE 165", + "title": "Digital Integrated Circuit Design (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 1683, + 1686 + ], + "edges_to": [ + 2396, + 2398, + 2399 + ], + "id": 2397, + "label": "ECE 102", + "title": "" + }, + { + "dept": "ECE", + "description": "Design of linear and nonlinear analog integrated circuits including operational amplifiers, voltage regulators, drivers, power stages, oscillators, and multipliers. Use of feedback and evaluation of noise performance. Parasitic effects of integrated circuit technology. Laboratory simulation and testing of circuits. ", + "edges_from": [ + 2397, + 2399 + ], + "edges_to": [], + "id": 2398, + "label": "ECE 164", + "title": "Analog Integrated Circuit Design (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [ + 2397, + 1685 + ], + "edges_to": [ + 2398 + ], + "id": 2399, + "label": "ECE 163", + "title": "" + }, + { + "dept": "PHIL", + "description": "Under the supervision of the instructor, student will lead one discussion section of a lower-division philosophy class. The student must attend the lecture for the class and meet regularly with the instructor. Applications are available in the Department of Philosophy. ", + "edges_from": [], + "edges_to": [], + "id": 2400, + "label": "PHIL 195", + "title": "Introduction to Teaching Philosophy (4)" + }, + { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1C. ", + "edges_from": [ + 2402, + 2403 + ], + "edges_to": [], + "id": 2401, + "label": "Linguistics/French (LIFR) 1CX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2401, + 4434 + ], + "id": 2402, + "label": "LIFR 1B", + "title": "" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 2401, + 4434 + ], + "id": 2403, + "label": "LIFR 1BX", + "title": "" + }, + { + "dept": "POLI", + "description": "(Same as USP 101) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ", + "edges_from": [ + 1619, + 2405 + ], + "edges_to": [ + 2406 + ], + "id": 2404, + "label": "POLI 160AA", + "title": "Introduction to Policy Analysis (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 3857, + 2404 + ], + "id": 2405, + "label": "POLI 11", + "title": "" + }, + { + "dept": "POLI", + "description": "In this course, students will use their knowledge of the political and economic foundations of public policy making to conduct research in a wide variety of public policy problems. ", + "edges_from": [ + 2404 + ], + "edges_to": [], + "id": 2406, + "label": "POLI 160AB", + "title": "Introduction to Policy Analysis (4)" + }, + { + "dept": "PHYS", + "description": "This course covers topics not traditionally taught as part of a normal physics curriculum, but nonetheless useful extensions to the classic pedagogy. Example topics may include estimation, nuclear physics, fluid mechanics, and scaling relationships.", + "edges_from": [], + "edges_to": [], + "id": 2407, + "label": "PHYS 281", + "title": "Extensions in Physics (1\u20133)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in mathematical logic. Topics chosen from recursion theory, model theory, and set theory. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [ + 3637 + ], + "id": 2408, + "label": "MATH 267A", + "title": "Topics in Mathematical Logic (4)" + }, + { + "dept": "LTIT", + "description": "Reading and discussion of selections from representative authors. Review of grammar as needed. May be repeated for credit three times when topics vary. ", + "edges_from": [ + 2178 + ], + "edges_to": [ + 2582 + ], + "id": 2409, + "label": "LTIT 100", + "title": "Introduction to Literatures in Italian (4)" + }, + { + "dept": "ETHN", + "description": "This course examines the effects of war and militarism on women\u2019s lives, focusing in particular on the experiences of Vietnamese women during and in the aftermath of the Vietnam War. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 2410, + "label": "ETHN 173GS", + "title": "Gender, Sexuality, and War (4)" + }, + { + "dept": "ANSC", + "description": "Drawing insight from anti-colonial and queer of color critique, this course critically examines the demands capitalism makes on us to perform gender, and how that relates to processes of exploitation and racialization. We will explore alternatives and develop strategies for navigating jobs in this system. Students may receive credit for one of the following: CGS 120, CGS 180 and ANSC 180. CGS 120 is renumbered from CGS 180. ", + "edges_from": [], + "edges_to": [], + "id": 2411, + "label": "ANSC 180", + "title": "Capitalism and Gender (4)" + }, + { + "dept": "Jewish", + "description": "Further reading and analysis of Hebrew literature from a range of periods. Advanced grammar and vocabulary. Course taught in Hebrew and in English.", + "edges_from": [], + "edges_to": [], + "id": 2412, + "label": "Jewish Studies 102", + "title": "Intermediate Hebrew Texts (4)" + }, + { + "dept": "Jewish", + "description": "Synthesis of fluency, reading, and grammatical skills. Reading of texts from a range of periods.", + "edges_from": [], + "edges_to": [], + "id": 2413, + "label": "Jewish Studies 103", + "title": "Advanced Hebrew Texts (4)" + }, + { + "dept": "Jewish", + "description": "Reading and analysis of texts from Biblical through modern authors, study of advanced vocabulary and grammar. Course taught in Hebrew and in English.", + "edges_from": [], + "edges_to": [], + "id": 2414, + "label": "Jewish Studies 101", + "title": "Introduction to Hebrew Texts (4)" + }, + { + "dept": "MUS", + "description": "Scales, chords, harmonic progressions, transposition, and simple pieces. ", + "edges_from": [ + 2109 + ], + "edges_to": [], + "id": 2415, + "label": "MUS 2AK-BK-CK", + "title": "Basic Keyboard (2-2-2)" + }, + { + "dept": "VIS", + "description": "This research seminar, centered on a series of critical, thematic, theoretical, and/or historical issues that cut across subdisciplinary specializations, provides outstanding advanced students with the opportunity to undertake graduate-level research. The first part of a two-part sequence completed by Art History Honors Directed Group Study (VIS 129H). ", + "edges_from": [], + "edges_to": [], + "id": 2416, + "label": "VIS 129G", + "title": "Art History Honors Seminar (4)" + }, + { + "dept": "VIS", + "description": "The second part of the honors program sequence, this course provides a forum for students engaged in research and writing to develop their ideas with the help of a faculty adviser and in conjunction with similarly engaged students. ", + "edges_from": [], + "edges_to": [], + "id": 2417, + "label": "VIS 129H", + "title": "Art History Honors Directed Group Study (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at a low-intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 400A-B-C. Students may not get credit for any IRLA 400 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 2418, + "label": "GPLA 400A-B-C", + "title": "Low Intermediate Chinese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "BILD", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 2419, + "label": "BILD 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "LIGN", + "description": "History of thought on language", + "edges_from": [], + "edges_to": [], + "id": 2420, + "label": "LIGN 155", + "title": "Evolution of Language (4)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Italian, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 2421, + "label": "LIGN 506", + "title": "Apprentice Teaching of Italian (1\u20134)" + }, + { + "dept": "BIEB", + "description": "Modern sequencing technology has revolutionized our ability to detect how genomes vary in space among individuals, populations, and communities, and over time. This course will review methods and concepts in ecological and evolutionary genomics that help us understand these differences, including their relevance to health (human microbiome, cancer evolution), evolutionary history (ancestor reconstruction, human evolution), and the environment (effect of climate change). ", + "edges_from": [ + 1987, + 687 + ], + "edges_to": [], + "id": 2422, + "label": "BIEB 146", + "title": "Genome Diversity and Dynamics (4)" + }, + { + "dept": "BIEB", + "description": "An introduction to computer modeling in evolution and ecology. Students will use the computer language \u201cR\u201d to write code to analyze ecological and evolutionary processes. Topics include natural selection, genetic drift, community ecology, game theory, and chaos. Students will use their own laptop computers. ", + "edges_from": [ + 2424, + 1988 + ], + "edges_to": [], + "id": 2423, + "label": "BIEB 143", + "title": "Computer Modeling in Evolution and Ecology (4)" + }, + { + "dept": "BIEB", + "description": "", + "edges_from": [], + "edges_to": [ + 2423 + ], + "id": 2424, + "label": "BIEB 150", + "title": "" + }, + { + "dept": "BIEB", + "description": "An introduction to the patterns of geographic distribution and natural history of plants and animals living in terrestrial and marine ecosystems. We will explore: ecological and evolutionary processes responsible for generating and maintaining biological diversity; and the nature of extinction both in past and present ecosystem. ", + "edges_from": [ + 1987 + ], + "edges_to": [], + "id": 2425, + "label": "BIEB 140", + "title": "Biodiversity (4)" + }, + { + "dept": "AESE", + "description": "Addresses critical processes and frameworks required to build effective business relationships internally and externally. Focuses on the skills required by functional or technical leaders to envision strategic value and create business development strategies aligned with organizational needs. This workshop meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ", + "edges_from": [ + 2426, + 2427, + 2039 + ], + "edges_to": [ + 2426 + ], + "id": 2426, + "label": "AESE 261", + "title": "Managing Stakeholder Relationships (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2426 + ], + "id": 2427, + "label": "MGT 261", + "title": "" + }, + { + "dept": "SE", + "description": "Aided Structural Design (4)", + "edges_from": [], + "edges_to": [], + "id": 2428, + "label": "SE 120", + "title": "Engineering Graphics & Computer" + }, + { + "dept": "SE", + "description": "Probability theory. Statistics, data analysis and inferential statistics, distributions, confidence intervals. Introduction to structural reliability and random phenomena. Applications to components and systems. ", + "edges_from": [], + "edges_to": [ + 4894 + ], + "id": 2429, + "label": "SE 125", + "title": "Statistics, Probability and Reliability (4)" + }, + { + "dept": "POLI", + "description": "This course will study various theories purporting to explain why states succeed or fall at creating institutions by international governance and what effects, if any, those institutions have. ", + "edges_from": [], + "edges_to": [], + "id": 2430, + "label": "POLI 232", + "title": "International Organization (4)" + }, + { + "dept": "POLI", + "description": "An interdisciplinary seminar covering origins, consequences, and characteristics of worker migration from Third World countries (especially Mexico, Central America, and the Caribbean basin) to the United States, from the nineteenth century to the present. ", + "edges_from": [], + "edges_to": [], + "id": 2431, + "label": "POLI 236", + "title": "Immigration Policy and Politics (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 2432, + "label": "Linguistics/Spanish (LISP) 1A", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "EDS", + "description": "This course examines the development of cognition, thinking, and language from infancy to adolescence with implications for education. Topics include learning theories, executive function, memory and language, as well as impacts of technology, poverty, diversity, and bilingualism. Course content focuses on addressing achievement gaps. Students may not receive credit for both EDS 115 and EDS 115GS. ", + "edges_from": [ + 380, + 383 + ], + "edges_to": [], + "id": 2433, + "label": "EDS 115", + "title": "Cognitive Development and Education (4)" + }, + { + "dept": "COMM", + "description": "The interaction of language and culture in human communication. New and old languages, standard and dialect, dominant and endangered are the special focus. Selected languages as examples of how languages exist in contemporary contexts. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2434, + "label": "COMM 112G", + "title": "IM: Language and Globalization (4)" + }, + { + "dept": "COMM", + "description": "Our understanding of childhood as a stage of innocence is a modern idea. The idea of childhood has not been constant; different cultures, communities, and classes have shaped the integration of children according to their own standards. We examine the different ways that attitudes toward children have changed, how these attitudes have been connected to an understanding of the human being, and how the desires of society and parents are manifested in what they think the child should be. ", + "edges_from": [ + 445, + 294 + ], + "edges_to": [], + "id": 2435, + "label": "COMM 112C", + "title": "IM: The Idea of Childhood (4)" + }, + { + "dept": "LTEU", + "description": "Intensive examination of the major ideas of all three writers, with special attention to the literary styles and problematic aspects of their work.", + "edges_from": [], + "edges_to": [], + "id": 2436, + "label": "LTEU 139", + "title": "Marx/Nietzsche/Freud (4)" + }, + { + "dept": "LTEU", + "description": "These seminars are devoted to a variety of special topics, including the works of single authors, genre studies, problems in literary history, relations between literature and the history of ideas, literary criticism, literature and society, and the like.", + "edges_from": [], + "edges_to": [], + "id": 2437, + "label": "LTEU 137", + "title": "Seminars in German Culture (4)" + }, + { + "dept": "LTEU", + "description": "One or more aspects of German literature, such as major authors, the contemporary novel, nineteenth-century poetry, German expressionism. Texts may be read in English or the original language. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2438, + "label": "LTEU 130", + "title": "German Literature in Translation (4)" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of empirical and theoretical issues in a specialized area of vision or visual perception. Emphasis most likely will be on a topic of ongoing vision research at UC San Diego. S/U grades only. May be taken for credit eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 2439, + "label": "PSYC 223", + "title": "Current Directions in Vision (1)" + }, + { + "dept": "PSYC", + "description": "A survey of the functional neuroanatomical, neurodevelopmental, neurophysiological, and pharmacological correlates of psychological phenomena. ", + "edges_from": [], + "edges_to": [], + "id": 2440, + "label": "PSYC 222", + "title": "Proseminar in Biological Psychology (5)" + }, + { + "dept": "PSYC", + "description": "Fundamentals of vision, audition, and other senses. Emphasis will be upon psychophysical approaches to the study of these sensory modalities, as well as some essential aspects of their neurophysiological bases. ", + "edges_from": [], + "edges_to": [], + "id": 2441, + "label": "PSYC 221", + "title": "Proseminar in Sensation and Perception (5)" + }, + { + "dept": "PSYC", + "description": "An introduction to social psychology. Psychology and the law, health psychology, attitudes, emotions, person perception and aggression are some of the topics to be covered. ", + "edges_from": [], + "edges_to": [], + "id": 2442, + "label": "PSYC 220", + "title": "Proseminar in Social Psychology (5)" + }, + { + "dept": "PSYC", + "description": "A weekly seminar series focused on understanding recent advances in the relationship between neural systems and behavior using a variety of experimental approaches (single unit recording, comp neuro, evolutionary bio, psychophysics, comparative anatomy, lesion work, psychopharm, fMRI, EEG, TMS, etc.). May be taken for credit twenty-four times. ", + "edges_from": [], + "edges_to": [], + "id": 2443, + "label": "PSYC 224", + "title": "Current Directions in Cognitive Neural Systems (CNS) (1)" + }, + { + "dept": "PSYC", + "description": "This course will address the psychology of happiness. The discussions and readings, consisting largely of original research articles, will explore such questions as: What is happiness? How do we measure it, and how do we tell who has it? What is the biology of happiness and what is its evolutionary significance? What makes people happy\u2014youth, fortune, marriage, chocolate? Is the pursuit of happiness pointless?", + "edges_from": [], + "edges_to": [], + "id": 2444, + "label": "PSYC 229", + "title": "Happiness (4)" + }, + { + "dept": "CAT", + "description": "Students initiate, plan, and carry out community-based and/or research-based projects that connect classroom-based experiences and knowledge to the outlying community, and that explicitly explore the interplay of culture, art, and technology. ", + "edges_from": [], + "edges_to": [], + "id": 2445, + "label": "CAT 124", + "title": "Sixth College Practicum (4)" + }, + { + "dept": "CAT", + "description": "Upper-division composition course in public rhetoric and practical communication, including oral presentation, writing in print formats, and digital content creation. This course also focuses on how writing can support and extend experiential learning before, during or after students do their practicum project. ", + "edges_from": [ + 43, + 44, + 45 + ], + "edges_to": [], + "id": 2446, + "label": "CAT 125", + "title": "Public Rhetoric and Practical Communication (4)" + }, + { + "dept": "LIGN", + "description": "What universal principles determine how words combine into phrases and sentences? Introduction to research methods and results. Emphasis on how argumentation in problem-solving can be used in the development of theories of language. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 2447, + "label": "LIGN 121", + "title": "Syntax I (4)" + }, + { + "dept": "LIGN", + "description": "How do some languages express with one word complex meanings that English needs several words to express? Discovery of underlying principles of word formation through problem solving and analysis of data from a wide variety of languages. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 2448, + "label": "LIGN 120", + "title": "Morphology (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in molecular bioengineering. ", + "edges_from": [ + 55 + ], + "edges_to": [ + 2450 + ], + "id": 2449, + "label": "BENG 139A", + "title": "Design Development in Molecular Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in molecular bioengineering. ", + "edges_from": [ + 2449, + 57 + ], + "edges_to": [ + 57 + ], + "id": 2450, + "label": "BENG 139B", + "title": "Design Implementation in Molecular Bioengineering (3)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in operations. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 449 and MGT 279 when the course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 2451, + "label": "MGT 449", + "title": "Topics in Operations and Technology (2 or 4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in international business. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 443 and MGT 229 when the course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 2452, + "label": "MGT 443", + "title": "Topics in International Business (2 or 4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in management and decision sciences. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 442 and MGT 249 with same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2453, + "label": "MGT 442", + "title": "Topics in Decision Sciences (2 or 4)" + }, + { + "dept": "MGT", + "description": "(Cross-listed with SPPS 273, PHAR 210, and BIOM 267). This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ", + "edges_from": [], + "edges_to": [], + "id": 2454, + "label": "MGT 447", + "title": "Drug Discovery, Development, and Commercialization (3)" + }, + { + "dept": "MGT", + "description": "Addresses the complex role of regulation in business innovation. Includes legal issues such as how to structure a business, whether to seek intellectual property protection, when and how to raise capital or formulate exit strategies, how to make employment decisions. ", + "edges_from": [], + "edges_to": [], + "id": 2455, + "label": "MGT 445", + "title": "Regulation and Innovation (4)" + }, + { + "dept": "MGT", + "description": "Advanced topics of special interest in business strategy. Instructional methods include face-to-face lecture sessions and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 444 and MGT 251 when the subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 2456, + "label": "MGT 444", + "title": "Topics in Business Strategy (2 or 4)" + }, + { + "dept": "MDE", + "description": "Introduction to the basic definitions of continuum mechanics and their mathematical formulation at the graduate level with applications to problems in medicine and biology. ", + "edges_from": [], + "edges_to": [], + "id": 2457, + "label": "MDE 209", + "title": "Mechanics and Transport Phenomena for Biomedical Device Design (4)" + }, + { + "dept": "PHIL", + "description": "S/U grades permitted.", + "edges_from": [], + "edges_to": [], + "id": 2458, + "label": "PHIL 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "AWP", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching of analytical writing, especially with regards to courses that fulfill the UC Entry Level Writing Requirement (ELWR). The course is required of all graduate teaching assistants who are engaged in or supporting instruction in the Analytical Writing Program. The course is potentially open to other graduate students seeking expertise in writing pedagogy, contingent upon the approval of the director. May be taken for credit up to eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 2459, + "label": "AWP 500", + "title": "Apprentice Teaching in the Analytical Writing Program (1\u20134)" + }, + { + "dept": "PHIL", + "description": "Each enrolled student produces a research essay ready for publication, presents it to students and faculty, and offers critiques of other students\u2019 presentations. Units will vary according to enrollment in course. To be taken in fall quarter of third year of philosophy graduate study.", + "edges_from": [], + "edges_to": [], + "id": 2460, + "label": "PHIL 292", + "title": "Writing Workshop (1\u20133)" + }, + { + "dept": "PHIL", + "description": "Supervised study of individually selected philosophical topics. S/U grades permitted.", + "edges_from": [], + "edges_to": [], + "id": 2461, + "label": "PHIL 290", + "title": "Directed Independent Study (4)" + }, + { + "dept": "PHIL", + "description": "Advanced individual research studies under", + "edges_from": [], + "edges_to": [], + "id": 2462, + "label": "PHIL 295", + "title": "Research Topics (1\u201312)" + }, + { + "dept": "Linguistics/French", + "description": "This course concentrates on those language skills essential for communication: listening comprehension, conversation, reading, writing, and grammar analysis. UC San Diego students: LIFR 5A is equivalent to LIFR 1A/1AX, LIFR 5B to LIFR 1B/1BX, LIFR 5C to LIFR 1C/1CX, and LIFR 5D to LIFR 1D/1DX. Enrollment is limited. ", + "edges_from": [], + "edges_to": [], + "id": 2463, + "label": "Linguistics/French (LIFR) 5B, 5C, 5D", + "title": "Fundamentals of French (5)" + }, + { + "dept": "HIGR", + "description": "Readings in modern scholarship concerning ancient Greek or Roman history. Topics will vary. May be taken for credit six times.", + "edges_from": [], + "edges_to": [], + "id": 2464, + "label": "HIGR 259", + "title": "Special Topics in Ancient History (4)" + }, + { + "dept": "HIGR", + "description": "Introduction to the bibliography, methodology, and ancillary disciplines for the study of medieval history together with readings and discussion on selected topics within the field. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 2465, + "label": "HIGR 258", + "title": "Historical Scholarship in Medieval History (4)" + }, + { + "dept": "RELI", + "description": "Research Study for Undergraduates (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 2466, + "label": "RELI 199", + "title": "Independent" + }, + { + "dept": "CLRE", + "description": "This course provides skills in designing and carrying out a qualitative study useful for program management (planning, monitoring, and evaluation) and ensuring quality in health-care delivery. The methods included in the course are a sample of commonly used qualitative methods: structured and unstructured interviews, participatory learning methods, group and individual methods. ", + "edges_from": [], + "edges_to": [], + "id": 2467, + "label": "CLRE 232", + "title": "Qualitative Research (2)" + }, + { + "dept": "RELI", + "description": "A faculty member will direct a student in advanced readings on a topic not generally included in the Program for the Study of Religion\u2019s curriculum. Students must make arrangements with the program and individual faculty. May be repeated for credit up to three times for credit. ", + "edges_from": [ + 2469, + 2470 + ], + "edges_to": [], + "id": 2468, + "label": "RELI 197", + "title": "Directed Advanced Readings (4)" + }, + { + "dept": "RELI", + "description": "", + "edges_from": [], + "edges_to": [ + 2468 + ], + "id": 2469, + "label": "RELI 110A", + "title": "" + }, + { + "dept": "RELI", + "description": "", + "edges_from": [], + "edges_to": [ + 2468 + ], + "id": 2470, + "label": "RELI 110B", + "title": "" + }, + { + "dept": "MGTA", + "description": "This course focuses on improving the performance of production and service operations, as well as supply chains, through the combination of data and analytical tools including statistics, forecasting, and optimization. Students will learn to employ analytics in capacity and distribution facility planning and contracting; how to determine data collection requirements for dynamic management of inventory levels; and how to improve revenue management under demand learning. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 2471, + "label": "MGTA 456", + "title": "Supply Chain Analytics (4)" + }, + { + "dept": "HIGR", + "description": "An in-depth examination of original readings written in the Roman period. Topics will vary. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 2472, + "label": "HIGR 256", + "title": "Readings in Ancient Roman History (4)" + }, + { + "dept": "HIGR", + "description": "An in-depth examination of selected topics in ancient Greek history. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 2473, + "label": "HIGR 255", + "title": "Readings in Ancient Greek History (4)" + }, + { + "dept": "MGTA", + "description": "Many firms have extensive information about customers\u2019 choices and how they react to marketing campaigns, but few have the expertise to efficiently act on such information. In this course, students will learn a scientific approach to marketing with hands-on use of technologies such as databases, analytics, and computing systems to collect, analyze, and act on customer information. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 2474, + "label": "MGTA 455", + "title": "Customer Analytics (4)" + }, + { + "dept": "LTSP", + "description": "Development of Latin American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 2475, + "label": "LTSP 130B", + "title": "" + }, + { + "dept": "LTSP", + "description": "An introduction to the major movements and periods of Spanish literary history, centered on close readings of representative texts, but aimed at providing a sense of the scope of Spanish literature and its relation to the course of Spain\u2019s cultural and social history. This course fulfills the pre-1900 requirement for Spanish literature majors. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 2476, + "label": "LTSP 130A", + "title": "Development of Spanish Literature (4)" + }, + { + "dept": "EDS", + "description": "Education specialist credential candidate performs student teaching in participating schools for a minimum of seven weeks full-time under the supervision of a cooperating teacher and university supervisor. The field experience provides professional preparation and diversified teaching responsibilities for post-baccalaureate students pursuing the California Deaf and Hard of Hearing Specialist and BCLAD Credential. ", + "edges_from": [], + "edges_to": [], + "id": 2477, + "label": "EDS 349", + "title": "Deaf Education Specialist Student Teaching Practicum (9)" + }, + { + "dept": "MAE", + "description": "Space mission concepts, architectures, and analysis. Mission geometry. Astrodynamics. Orbit and constellation design. Space environment. Payload and spacecraft design and sizing. Power sources and distribution. Thermal management. Structural design. Guidance and navigation. Space propulsion. Orbital debris and survivability. Cost modeling and risk analysis. ", + "edges_from": [], + "edges_to": [], + "id": 2478, + "label": "MAE 181", + "title": "Space Mission Analysis and Design (4)" + }, + { + "dept": "TDDM", + "description": "The study of dance and performance creation in relation to the environment, political activism, happenings, and ritual. Students explore ideas within the unique attributes of architecture, natural landscapes, public spaces, visual art, historic landmarks, and cultural contexts. Recommended preparation: No prior dance experience needed. Open to all levels. ", + "edges_from": [], + "edges_to": [], + "id": 2479, + "label": "TDDM 5", + "title": "Site Specific Dance and Performance (4)" + }, + { + "dept": "HIGR", + "description": "Guided and supervised reading in the literature of the several fields of history. This course may be repeated for an indefinite number of times due to the independent nature of the content of the course. (S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 2480, + "label": "HIGR 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "NANO", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers,\u00a0photoresists, and polymers for medicine. Cross-listed with CENG 134.\u00a0Students may not receive credit for both\u00a0CENG\u00a0134 and\u00a0NANO\u00a0134. ", + "edges_from": [ + 596 + ], + "edges_to": [], + "id": 2481, + "label": "NANO 134", + "title": "Polymeric Materials (4)" + }, + { + "dept": "BENG", + "description": "Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. ", + "edges_from": [], + "edges_to": [], + "id": 2482, + "label": "BENG 247A/ECE 247A/NANO 247A", + "title": "Advanced Biophotonics (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. May be taken for credit eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 2483, + "label": "DSGN 260", + "title": "Advanced Topics in Design (4)" + }, + { + "dept": "DSGN", + "description": "Special topics in design. S/U grades only. May be taken for credit three times. Recommended preparation: may require maker-lab or shop skills. ", + "edges_from": [], + "edges_to": [], + "id": 2484, + "label": "DSGN 261", + "title": "Advanced Design Project (4)" + }, + { + "dept": "LTAM", + "description": "An analysis of the readings and appropriations of European and US traditions by Latin American, Caribbean, and Filipino writers. The course addresses philosophies, ideologies, and cultural movements and explores the specific literary strategies used by authors in constructing their particular \u201ccosmovisi\u00f3n.\u201d", + "edges_from": [], + "edges_to": [], + "id": 2485, + "label": "LTAM 130", + "title": "Reading North by South (4)" + }, + { + "dept": "TDPW", + "description": "Basic principles of screenwriting using scenario composition, plot points, character study, story conflict, with emphasis on visual action and strong dramatic movement. May be taken for credit two times. ", + "edges_from": [ + 2487 + ], + "edges_to": [], + "id": 2486, + "label": "TDPW 104", + "title": "Screenwriting (4)" + }, + { + "dept": "TDPW", + "description": "", + "edges_from": [], + "edges_to": [ + 5445, + 2486 + ], + "id": 2487, + "label": "TDPW 1", + "title": "" + }, + { + "dept": "HIEU", + "description": "This course is a survey of the political, social, and cultural history of the ancient Mediterranean. It focuses on the ancient empires in the Near East (Sumer, Babylon, Assyria, Persia), Egypt, Greece, and Rome. +", + "edges_from": [], + "edges_to": [], + "id": 2488, + "label": "HIEU 106", + "title": "Egypt, Greece, and Rome (4)" + }, + { + "dept": "HIEU", + "description": "Cross-listed with RELI 147. This course explores the history of how Western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. Students may not receive credit for both HIEU 107 and RELI 147.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2489, + "label": "HIEU 107", + "title": "Pagan Europe and its Christian Aftermath (4)" + }, + { + "dept": "HIEU", + "description": "A survey course of the history of the Byzantine state from the reign of Constantine to the fall of Constantinople. This course will emphasize the importance of the Byzantine state within a larger European focus, its relationship to the emerging Arab states, its political and cultural contributions to Russia and the late medieval west.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2490, + "label": "HIEU 104", + "title": "Byzantine Empire (4)" + }, + { + "dept": "HINE", + "description": "Course will analyze and compare major myths", + "edges_from": [], + "edges_to": [], + "id": 2491, + "label": "HINE 113", + "title": "Ancient Near East Mythology (4)" + }, + { + "dept": "HINE", + "description": "A survey of the Middle East from the rise of Islam to the region\u2019s economic, political, and cultural integration into the West (mid-nineteenth century). Emphasis on socioeconomic and political change in the early Arab empires and the Ottoman state.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2492, + "label": "HINE 114", + "title": "History of the Islamic Middle East (4)" + }, + { + "dept": "HIEU", + "description": "This course discusses the history of imperial Rome and its successor states between the second and seventh centuries AD. It considers whether the Roman Empire fell or if one should instead speak of Roman continuity amidst political and religious change.", + "edges_from": [], + "edges_to": [], + "id": 2493, + "label": "HIEU 103", + "title": "Decline and Fall of the Roman Empire (4)" + }, + { + "dept": "MUS", + "description": "Repertoire is drawn from the classic symphonic literature of the eighteenth, nineteenth, and twentieth centuries with a strong emphasis on recently composed and new music. Distinguished soloists, as well as The La Jolla Symphony Chorus, frequently appear with the orchestra. The La Jolla Symphony Orchestra performs two full-length programs each quarter, each program being performed twice. May be repeated six times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2494, + "label": "MUS 134", + "title": "Symphonic Orchestra (4)" + }, + { + "dept": "HINE", + "description": "Middle East in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 2495, + "label": "HINE 118", + "title": "The" + }, + { + "dept": "HINE", + "description": "Mid-East Policy Post-WWII (4)", + "edges_from": [], + "edges_to": [], + "id": 2496, + "label": "HINE 119", + "title": "US" + }, + { + "dept": "HIEU", + "description": "This course will explore the history of nationalism as idea and political movement in European history, from the French Revolution to the present.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2497, + "label": "HIEU 109", + "title": "Blood, Soil, Boundaries: Nationalism in Europe (4)" + }, + { + "dept": "ECE", + "description": "A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BNFO 285 and ECE 204 and BENG 285. Cross-listed with BNFO 285 and BENG 285. ", + "edges_from": [ + 2499, + 1453, + 1455 + ], + "edges_to": [], + "id": 2498, + "label": "ECE 204", + "title": "Statistical Learning in Bioinformatics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2498, + 4427 + ], + "id": 2499, + "label": "MATH 283", + "title": "" + }, + { + "dept": "ECE", + "description": "Fundamentals of Fourier transform and linear systems theory including convolution, sampling, noise, filtering, image reconstruction, and visualization with an emphasis on applications to biomedical imaging. Examples from optical imaging, CT, MR, ultrasound, nuclear, PET, and radiography. ", + "edges_from": [], + "edges_to": [], + "id": 2500, + "label": "ECE 207", + "title": "Principles of Biomedical Imaging (4)" + }, + { + "dept": "ECE", + "description": "Group discussion of research activities and progress of group members. (Consent of instructor is strongly recommended.) (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2501, + "label": "ECE 200", + "title": "Research Conference (2)" + }, + { + "dept": "ECE", + "description": "The class will cover fundamental physical principles of biological processes at the molecular, cellular, tissue and organ levels that are related to human physiology and diseases. Topics include energetics and dynamics of biological systems, physical factors of environment, and the kinetics of biological systems. ", + "edges_from": [], + "edges_to": [], + "id": 2502, + "label": "ECE 201", + "title": "Introduction to Biophysics (4)" + }, + { + "dept": "ECE", + "description": "This course will cover basic cellular and electrochemical processes, membrane potentials, ionic currents, nerve cell conductance, extracellular and intracellular stimulation, neural probe technology materials and devices, diagnostic and drug delivery devices, material/physiological considerations, biosensors, microfluids, optical, magnetic and electrical screening. ", + "edges_from": [], + "edges_to": [], + "id": 2503, + "label": "ECE 202", + "title": "Medical Devices and Interfaces (4)" + }, + { + "dept": "ECE", + "description": "Integrated circuit analysis and design for medical devices. Introduction to subthreshold conduction in MOS transistor and its similarities to biomolecular transport. Design of instrumentation amplifiers, sensors, and electrical stimulation interfaces. Transcutaneous wireless power transfer and electromagnetic effects on tissue. Recommended preparation: ECE 164 or BENG 186B or equivalent. ", + "edges_from": [], + "edges_to": [], + "id": 2504, + "label": "ECE 203", + "title": "Biomedical Integrated Circuits and Systems (4)" + }, + { + "dept": "ECE", + "description": "Evolutionary biology (e.g., the study of the tree of life) uses computational methods from statistics and machine learning. We cover methods of broad use in many fields and apply them to biology, focusing on scalability to big genomic data. Topics include dynamic programming, continuous time Markov models, hidden Markov models, statistical inference of phylogenies, sequence alignment, uncertainty (e.g., bootstrapping), and heterogeneity (e.g., phylogenetic mixture models). ", + "edges_from": [], + "edges_to": [], + "id": 2505, + "label": "ECE 208", + "title": "Computational Evolutionary Biology (4)" + }, + { + "dept": "COGR", + "description": "Different approaches to conducting historical research in communication. Such approaches may include the social history of communication technology; structuralist and poststructuralist accounts of language, media, and collective memory; and new historicist treatments of cultural history. Sources, documentation, and the nature of argument from historical evidence are emphasized. ", + "edges_from": [], + "edges_to": [], + "id": 2506, + "label": "COGR 201D", + "title": "Historical Methods for Communication Research (4)" + }, + { + "dept": "GPCO", + "description": "Capstone class: Students collaborate on long-term projects analyzing important political, economic, and business issues in the Pacific regions using the tools acquired through other courses at GPS. Renumbered from IRCO 483. Students may not receive credit for GPCO 483 and IRCO 483. ", + "edges_from": [ + 2508, + 2509 + ], + "edges_to": [], + "id": 2507, + "label": "GPCO 483", + "title": "Workshop on Policy Issues in the Pacific Rim (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 2507 + ], + "id": 2508, + "label": "GPCO 482", + "title": "" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 2507 + ], + "id": 2509, + "label": "GPCO 481", + "title": "" + }, + { + "dept": "SXTH", + "description": "Weekly seminars with faculty members from a variety of disciplines (chosen by the provost to match the interests of participating students). This seminar provides students with opportunities to learn more about research and scholarly activities being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2510, + "label": "SXTH 20", + "title": "Freshmen Honors Seminar (1)" + }, + { + "dept": "MGT", + "description": "The modern workplace includes people different in culture, gender, age, language, religion, education, and more. Students will learn why diverse teams make better decisions and are often integral to the success of organizations. Topics include challenges of diversity, and the impact of emotional, social, and cultural intelligence on team success. Content will include significant attention to the experiences of Asian Americans and African Americans as members and leaders of such diverse teams.", + "edges_from": [], + "edges_to": [], + "id": 2511, + "label": "MGT 18", + "title": "Managing Diverse Teams (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in entrepreneurship. Examples of course topics include (but are not limited to): venture capital funding process, entrepreneurial business development and marketing, workplace climate and morale, and developing a capable workforce. Instructional methods include face-to-face lecture, case presentation, assigned reading and group discussion. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2512, + "label": "MGT 129", + "title": "Topics in Entrepreneurship (2)" + }, + { + "dept": "MGT", + "description": "Course examines management of personal financial assets: savings and checking accounts, fixed assets, and credit cards. Budgeting, loan applications, payment terms, and statement reconciliation will be covered as will credit ratings, cash management, compound interest, bank operations, and contract obligations.", + "edges_from": [], + "edges_to": [], + "id": 2513, + "label": "MGT 12", + "title": "Personal Financial Management (4)" + }, + { + "dept": "MGT", + "description": "Course examines the ethical foundation for choices individuals make every day both in the workplace and in their private lives, the connection between economic and ethical obligations with examples related to privacy, reporting, whistle-blowing, workplace relationships, confidentiality, and intellectual property.", + "edges_from": [], + "edges_to": [], + "id": 2514, + "label": "MGT 16", + "title": "Personal Ethics at Work (4)" + }, + { + "dept": "MGT", + "description": "This course will focus on three major components: 1) what matters (the purpose of ethics in the accounting profession); 2) why ethics matter (the reasons, skills, and abilities that make a difference); and 3) how a professional \u201cwalks the walk.\u201d The course provides students with the opportunity to gain knowledge, awareness, and recognition of ethical terms, theories, codes, etc. Students will be given the opportunity to practice making choices and exercise professional judgment. ", + "edges_from": [ + 2516 + ], + "edges_to": [], + "id": 2515, + "label": "MGT 146", + "title": "Ethics in Accounting (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2515 + ], + "id": 2516, + "label": "MGT 132", + "title": "" + }, + { + "dept": "MGT", + "description": "Addresses issues faced in government and not-for-profit accounting. Students will gain insight into how and why these issues may have been resolved either similarly or differently from the for-profit business sector. Focus will be placed on how revenue and expense recognition, asset and liability valuation, the scope of the reporting entity, reporting cash flows, etc., differ in comparison to for-profit business accounting. ", + "edges_from": [ + 1958 + ], + "edges_to": [], + "id": 2517, + "label": "MGT 147", + "title": "Not-For-Profit and Government Accounting (4)" + }, + { + "dept": "MGT", + "description": "Course covers key forensic accounting concepts including fraudulent financial reporting, money laundering, business valuation, and litigation support. Learning objectives are the application of analytical accounting and communication skills in identifying and presenting financial issues in both criminal or civil litigation. ", + "edges_from": [ + 1958 + ], + "edges_to": [], + "id": 2518, + "label": "MGT 143", + "title": "Forensic Accounting (4)" + }, + { + "dept": "MGT", + "description": "This course helps students understand the complexities involved in international deals. Examines current financial reporting practices for business entities engaged in international activities. Focuses on policy issues such as foreign currency translation, global inflation, transfer pricing, complying with reporting requirements, taxation, and international accounting and auditing standards. ", + "edges_from": [ + 2520, + 2521 + ], + "edges_to": [], + "id": 2519, + "label": "MGT 148", + "title": "Mergers and Acquisitions (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [ + 2091, + 2092, + 1999 + ], + "edges_to": [ + 2519 + ], + "id": 2520, + "label": "MGT 137", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2519 + ], + "id": 2521, + "label": "MGT 136", + "title": "" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in accounting. Examples of course topics include (but are not limited to): corporate valuation and forecasting, global taxation and business strategy, current issues in the practice and regulation of auditing. May be taken for credit two times for a maximum of eight credits if the topics are substantially different. ", + "edges_from": [ + 1958 + ], + "edges_to": [], + "id": 2522, + "label": "MGT 149", + "title": "Topics in Accounting (4)" + }, + { + "dept": "MAE", + "description": "Identification and Control (4)", + "edges_from": [], + "edges_to": [], + "id": 2523, + "label": "MAE 283B", + "title": "Approximate" + }, + { + "dept": "MAE", + "description": "Identification: Theory and Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 2524, + "label": "MAE 283A", + "title": "Parametric" + }, + { + "dept": "HIEU", + "description": "Examines existentialism as a way of thinking from the late nineteenth to mid-twentieth century. Explores the historical context of existentialism in Germany and France, e.g., World War II, the Holocaust, fascism, and communism. Selections from Heidegger, Sartre, Camus, and de Beauvoir.", + "edges_from": [], + "edges_to": [], + "id": 2525, + "label": "HIEU 146S", + "title": "The Meaning of Life in the Modern World: Existentialism, Fascism, and Genocide (4)" + }, + { + "dept": "ANSC", + "description": "The course considers how social life is constituted and negotiated through language and interaction. How do people establish, maintain, and alter social relationships through face-to-face talk, and how do different modalities of interaction (including discourse and gesture) affect social life? ", + "edges_from": [], + "edges_to": [], + "id": 2526, + "label": "ANSC 127", + "title": "Discourse, Interaction, and Social Life (4)" + }, + { + "dept": "COGS", + "description": "This course will allow cognitive science honors", + "edges_from": [], + "edges_to": [], + "id": 2527, + "label": "COGS 190B", + "title": "Honors Studies in Cognitive Science (4)" + }, + { + "dept": "GPPS", + "description": "This course will analyze how the domestic politics of each country, their international negotiations, and their interaction concerning economic issues have affected the US-Japan relationship. Both the politics of cooperation and integration, and trade friction and conflict will be addressed in part through study of specific cases. Renumbered from IRGN 460. Students may not receive credit for GPPS 460 and IRGN 460.", + "edges_from": [], + "edges_to": [], + "id": 2528, + "label": "GPPS 460", + "title": "The Politics of US-Japan Economic Relations (4)" + }, + { + "dept": "GPPS", + "description": "This course provides an introduction to five Southeast Asian countries: Indonesia, Thailand, Malaysia, the Philippines, and Vietnam. The focus will be on the national level of political and economic issues in these countries. In addition, a number of region-wide issues will also be examined such as: Chinese business groups and networks; clientelism and corruption; regional trade and investment linkages; democratization; and the implications of political change for future economic development. Renumbered from IRGN 463. Students may not receive credit for GPPS 463 and IRGN 463.", + "edges_from": [], + "edges_to": [], + "id": 2529, + "label": "GPPS 463", + "title": "Politics of Southeast Asia (4)" + }, + { + "dept": "GPPS", + "description": "Analyzes the particular environment in which nonprofit organizations define and achieve their objectives. Management tools are applied to existing nonprofits and to student projects. Renumbered from IRGN 465. Students may not receive credit for GPPS 465 and IRGN 465.", + "edges_from": [], + "edges_to": [], + "id": 2530, + "label": "GPPS 465", + "title": "Management of Nonprofit Organizations (4)" + }, + { + "dept": "HIEU", + "description": "Ancient Mediterranean conceptions of emotional and physical love through analysis of ancient romantic poetry, love letters, and romance novels. Students learn to interpret primary sources and to conduct independent critical assessment of documents and ideas.", + "edges_from": [], + "edges_to": [], + "id": 2531, + "label": "HIEU 108S", + "title": "Sex and Romance in the Ancient World (4)" + }, + { + "dept": "GPPS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2532, + "label": "GPPS 469", + "title": "Comparative Grand Strategy and Defense Policy (4)" + }, + { + "dept": "BENG", + "description": "Introductory mammalian physiology for bioengineering students, with emphasis on control mechanisms and engineering principles. Basic cell functions; biological control systems; muscle; neural; endocrine, and circulatory systems. Not intended for premedical bioengineering students. Credit not allowed for both BIPN 100 and BENG 140A. ", + "edges_from": [ + 1152, + 667, + 133, + 687, + 26, + 27, + 28 + ], + "edges_to": [ + 3075, + 4180, + 2534 + ], + "id": 2533, + "label": "BENG 140A", + "title": "Bioengineering Physiology (4)" + }, + { + "dept": "BENG", + "description": "Introductory mammalian physiology for bioengineering students, with emphasis on control mechanisms and engineering principles. Digestive, respiratory, renal, and reproductive systems; regulation of metabolism, and defense mechanisms. (Credit not allowed for both BIPN 102 and BENG 140B.) ", + "edges_from": [ + 2533 + ], + "edges_to": [ + 3075, + 4180 + ], + "id": 2534, + "label": "BENG 140B", + "title": "Bioengineering Physiology (4)" + }, + { + "dept": "EDS", + "description": "The course, designed for graduate students serving as teaching assistants in teacher education courses, includes discussion of teaching theory and practice, instructional materials, organization of discussion sections, liaison with participating schools, and methods of evaluation/grading under the supervision of the instructor of the course. S/U grades only. May be taken for credit five times.", + "edges_from": [], + "edges_to": [], + "id": 2535, + "label": "EDS 500", + "title": "Apprentice Teaching in Education (2\u20134)" + }, + { + "dept": "POLI", + "description": "Statistics for Political Science and Public Policy (4)", + "edges_from": [], + "edges_to": [], + "id": 2536, + "label": "POLI 170A", + "title": "Introductory" + }, + { + "dept": "EDS", + "description": "Foundations of Teaching and Learning Science (4)", + "edges_from": [], + "edges_to": [], + "id": 2537, + "label": "EDS 122/Chem 187", + "title": "" + }, + { + "dept": "CENG", + "description": "299. Graduate Research in Chemical Engineering (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 2538, + "label": "CENG", + "title": "" + }, + { + "dept": "FPM", + "description": "This course will provide an overview of the problem of cancer and its avoidable causes. It covers some of the hottest topics currently facing cancer prevention professional as they try to prevent cancer from occurring in the first place and delay its progression.", + "edges_from": [], + "edges_to": [], + "id": 2539, + "label": "FPM 257", + "title": "Cancer: Cause and Prevention (2)" + }, + { + "dept": "HIUS", + "description": "The course addresses the causes, course, and consequences of the US Civil War. We will explore such themes as how Unionists and Confederates mobilized their populations and dealt with dissension, the war\u2019s effects on gender and race relations, and the transformation of the federal government.", + "edges_from": [], + "edges_to": [], + "id": 2540, + "label": "HIUS 112", + "title": "The US Civil War (4)" + }, + { + "dept": "HIUS", + "description": "A lecture course that explores the evolution of the interaction between the United States and the world from 1914 to the present, with special attention to the era of the Great Depression, the Cold War, Vietnam, and the post 9/11 war on terror.", + "edges_from": [], + "edges_to": [], + "id": 2541, + "label": "HIUS 111", + "title": "America and the World: World War I to the Present (4)" + }, + { + "dept": "HIUS", + "description": "A lecture course that explores the evolution of the interaction between the United States and the world from the American Revolution to the First World War, with particular emphasis upon the role of diplomacy, war, and economic change.", + "edges_from": [], + "edges_to": [], + "id": 2542, + "label": "HIUS 110", + "title": "America and the World: Revolution to World War I (4)" + }, + { + "dept": "HIUS", + "description": "This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification.", + "edges_from": [], + "edges_to": [], + "id": 2543, + "label": "HIUS 117", + "title": "History of Los Angeles (4)" + }, + { + "dept": "HIUS", + "description": "Constructions of sex and sexuality in the United States from the time of precontact Native America to the present, focusing on sexual behaviors, sexual ideologies, and the uses of sexuality for social control.", + "edges_from": [], + "edges_to": [], + "id": 2544, + "label": "HIUS 115", + "title": "History of Sexuality in the United States (4)" + }, + { + "dept": "HIUS", + "description": "This course explores the history of Jews in America from the colonial period to the present, focusing on both the development of Jewish communities primarily as a result of immigration and evolving relations between Jews and the larger American society.", + "edges_from": [], + "edges_to": [], + "id": 2545, + "label": "HIUS 118", + "title": "How Jews Became American (4)" + }, + { + "dept": "POLI", + "description": "Individual placements for field learning integrated with political science. A written contract involving all parties with learning objectives, a project outline, and a means of supervision and progress evaluation must be filed with the faculty adviser and department undergraduate coordinator prior to the beginning of the internship. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 2547, + 2548 + ], + "edges_to": [ + 2547 + ], + "id": 2546, + "label": "POLI 197SD", + "title": "Local Internship in Political Science (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [ + 2546 + ], + "edges_to": [ + 2546 + ], + "id": 2547, + "label": "POLI 194SD", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 3050, + 2546, + 2861, + 3350 + ], + "id": 2548, + "label": "POLI 30", + "title": "" + }, + { + "dept": "CHEM", + "description": "Synthesis, analysis, and physical characterization of inorganic chemical compounds. Program or materials fees may apply. Recommended preparation: concurrent or prior enrollment in CHEM 120B. ", + "edges_from": [ + 2552, + 2553, + 2364, + 2550, + 2551 + ], + "edges_to": [], + "id": 2549, + "label": "CHEM 123", + "title": "Advanced Inorganic Chemistry Laboratory (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2554, + 2549, + 4078 + ], + "id": 2550, + "label": "CHEM 120A", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5601, + 5602, + 2549 + ], + "id": 2551, + "label": "CHEM 143AM", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5601, + 5602, + 2549 + ], + "id": 2552, + "label": "CHEM 143A", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 1510, + 1511, + 595, + 598, + 2365, + 2366 + ], + "edges_to": [ + 5601, + 5602, + 2549 + ], + "id": 2553, + "label": "CHEM 43A", + "title": "" + }, + { + "dept": "CHEM", + "description": "The roles of metal ions in biological systems, with emphasis on transition metal ions in enzymes that transfer electrons, bind oxygen, and fix nitrogen. Also included are metal complexes in medicine, toxicity, and metal ion storage and transport. May be coscheduled with CHEM 225. ", + "edges_from": [ + 1516, + 2550 + ], + "edges_to": [], + "id": 2554, + "label": "CHEM 125", + "title": "Bioinorganic Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "With CHEM 127, CHEM 126 condenses Physical Chemistry into two quarters. They may be taken in either order. The emphasis is on biochemical and environmental applications. Quantum mechanics and molecular structure, spectroscopy. Students may receive credit for only one of the following: CHEM 126, 133, or 130. ", + "edges_from": [ + 571, + 27, + 133, + 30, + 953 + ], + "edges_to": [ + 3480, + 3531, + 5404 + ], + "id": 2555, + "label": "CHEM 126", + "title": "Physical Chemistry: Quantum Mechanics (4)" + }, + { + "dept": "CHEM", + "description": "With CHEM 126, CHEM 127 condenses Physical Chemistry into two quarters. They may be taken in either order. The emphasis is on biochemical and environmental applications. Thermodynamics, first and second laws, thermochemistry, chemical equilibrium, solutions, kinetic theory, reaction kinetics. Students may not receive credit for both CHEM 127 and 131. ", + "edges_from": [ + 464, + 596, + 27, + 132, + 30 + ], + "edges_to": [ + 3480 + ], + "id": 2556, + "label": "CHEM 127", + "title": "Physical Chemistry: Thermodynamics (4)" + }, + { + "dept": "MATH", + "description": "Various topics in probability and statistics. ", + "edges_from": [], + "edges_to": [], + "id": 2557, + "label": "MATH 288", + "title": "Seminar in Probability and Statistics (1)" + }, + { + "dept": "HIEA", + "description": "Examines ideas and practices of love and marriage in Chinese history, including changes and continuities in China\u2019s twentieth-century revolution and reform. Course readings range from literary and philosophical sources to personal records from the classical age to the modern era. Department approval required. May be coscheduled with HIEA 270. +", + "edges_from": [], + "edges_to": [], + "id": 2558, + "label": "HIEA 170", + "title": "Love and Marriage in Chinese History (4)" + }, + { + "dept": "MATH", + "description": "Survival analysis is an important tool in many areas of applications including biomedicine, economics, engineering. It deals with the analysis of time to events data with censoring. This course discusses the concepts and theories associated with survival data and censoring, comparing survival distributions, proportional hazards regression, nonparametric tests, competing risk models, and frailty models. The emphasis is on semiparametric inference, and material is drawn from recent literature. ", + "edges_from": [ + 1552 + ], + "edges_to": [], + "id": 2559, + "label": "MATH 284", + "title": "Survival Analysis (4)" + }, + { + "dept": "MATH", + "description": "Elements of stochastic processes, Markov chains, hidden Markov models, martingales, Brownian motion, Gaussian processes. Recommended preparation: completion of undergraduate probability theory (equivalent to Math 180A) highly recommended. ", + "edges_from": [], + "edges_to": [], + "id": 2560, + "label": "MATH 285", + "title": "Stochastic Processes (4)" + }, + { + "dept": "MATH", + "description": "Review of continuous martingale theory. Stochastic integration for continuous semimartingales. Existence and uniqueness theory for stochastic differential equations. Strong Markov property. Selected applications. ", + "edges_from": [ + 2562, + 2563 + ], + "edges_to": [], + "id": 2561, + "label": "MATH 286", + "title": "Stochastic Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2561, + 2563 + ], + "id": 2562, + "label": "MATH 280A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 2562 + ], + "edges_to": [ + 2561, + 5518 + ], + "id": 2563, + "label": "MATH 280B", + "title": "" + }, + { + "dept": "ANTH", + "description": "This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the \u201cfoundational\u201d culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207. ", + "edges_from": [], + "edges_to": [], + "id": 2564, + "label": "ANTH 207", + "title": "Eastern Mediterranean Archaeology\u2014New Perspectives (4)" + }, + { + "dept": "ANTH", + "description": "This graduate seminar examines how racial and ethnic categories are constructed, how contemporary societies manage difference through multicultural policies, and how discourses and institutions of citizenship can act as sites of contestation over inclusion and exclusion. ", + "edges_from": [], + "edges_to": [], + "id": 2565, + "label": "ANTH 206", + "title": "Race, Ethnicity, and Citizenship (4)" + }, + { + "dept": "TMC", + "description": "Individual, independent research, or creative work intended to satisfy Marshall College graduation requirement. Designated for Marshall College students, topics are supervised by Marshall faculty in association with the honors seminar and honors projects. A written application describing the project is required. See Office of the Provost. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2566, + "label": "TMC 199", + "title": "Marshall College Special Project (1\u20134)" + }, + { + "dept": "TMC", + "description": "College Directed Group Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 2567, + "label": "TMC 198", + "title": "Thurgood Marshall" + }, + { + "dept": "ANTH", + "description": "This course, intended for first-year anthropology graduate students, examines the contemporary practice of anthropology. We discuss the construction of a multiple-year research project including how to differentiate theory and evidence, the contours of anthropological interest, the question of audience, and rhetorical style. We analyze nine recent ethnographies as possible models for our own practice. ", + "edges_from": [], + "edges_to": [], + "id": 2568, + "label": "ANTH 204", + "title": "Contemporary Anthropology (4)" + }, + { + "dept": "VIS", + "description": "A continuation of VIS 105A. A studio course in which the student will investigate a wider variety of technical and conceptual issues involved in contemporary art practice related to drawing. ", + "edges_from": [ + 2570 + ], + "edges_to": [ + 2571 + ], + "id": 2569, + "label": "VIS 105B", + "title": "Drawing: Practices and Genre (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 1348 + ], + "edges_to": [ + 2569 + ], + "id": 2570, + "label": "VIS 105A", + "title": "" + }, + { + "dept": "VIS", + "description": "A studio course in drawing, emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ", + "edges_from": [ + 2569 + ], + "edges_to": [], + "id": 2571, + "label": "VIS 105C", + "title": "Drawing: Portfolio Projects (4)" + }, + { + "dept": "VIS", + "description": "This course treats Chinese calligraphy as a multidimensional point of departure for aesthetic, cultural, and political concerns. This conceptually based course combines fundamental studio exercises with unconventional explorations. Students are exposed to both traditional and experimental forms of this unique art and encouraged to learn basic aesthetic grammars. There are no Chinese language requirements for this course. ", + "edges_from": [ + 1348 + ], + "edges_to": [ + 2573 + ], + "id": 2572, + "label": "VIS 105D", + "title": "Art Forms and Chinese Calligraphy (4)" + }, + { + "dept": "VIS", + "description": "This course concerns East\u2013West aesthetic interactions. What are the conceptual possibilities when calligraphy, an ancient form of Chinese art, is combined with installation, a contemporary artistic Western practice? Emphasis is placed on such issues as cultural hybridity, globalization, multiculturalism, and commercialization. ", + "edges_from": [ + 2572 + ], + "edges_to": [], + "id": 2573, + "label": "VIS 105E", + "title": "Chinese Calligraphy as Installation (4)" + }, + { + "dept": "COMM", + "description": "Examine science communication as a profession and unique form of storytelling. Identify who does science communication, how, why, and with what impacts. Highlight science communication\u2019s role in democracy, power, public reason, technological trajectories, the sustainability transition, and shifting university-community relations. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2574, + "label": "COMM 114T CSI: Science Communication (4)", + "title": "" + }, + { + "dept": "TDGR", + "description": "An advanced course in the art of movement for the theatre, building on the knowledge gained in Theatre 213. (S/U grades only.) ", + "edges_from": [ + 2576 + ], + "edges_to": [], + "id": 2575, + "label": "TDGR 223A-B", + "title": "Movement for Theatre II (3-3)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 2575 + ], + "id": 2576, + "label": "TDGR 223A", + "title": "" + }, + { + "dept": "AUD", + "description": "Differential diagnosis and treatment of auditory and vestibular disorders, audiological components of neuro-otology, as well as interactions between the audiologist and neuro-otologist in a clinical setting. ", + "edges_from": [], + "edges_to": [], + "id": 2577, + "label": "AUD 257", + "title": "Ear Diseases and Treatment (3)" + }, + { + "dept": "SXTH", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2578, + "label": "SXTH 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "SXTH", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2579, + "label": "SXTH 1", + "title": "First Year Experience (2)" + }, + { + "dept": "MUS", + "description": "Tonal harmony and counterpoint. Analysis of larger classical forms: Sonata, Variation, Minuet and Trio, Rondo. Musicianship studies: sight-singing, dictation, and keyboard skills. ", + "edges_from": [ + 1684 + ], + "edges_to": [ + 5184 + ], + "id": 2580, + "label": "MUS 101C", + "title": "Music Theory and Practice III (4)" + }, + { + "dept": "MUS", + "description": "Study of modal counterpart in the style of the sixteenth century. Two-voice species counterpoint studies. Analysis of music of the period. Musicianship studies: sight-singing, dictation, and keyboard skills. ", + "edges_from": [ + 769, + 1582 + ], + "edges_to": [ + 5184, + 5026, + 3983 + ], + "id": 2581, + "label": "MUS 101A", + "title": "Music Theory and Practice I (4)" + }, + { + "dept": "LTIT", + "description": "Analysis of Italian essays, journalism, literature. Intensive practice in writing and Italian conversation. ", + "edges_from": [ + 2409 + ], + "edges_to": [], + "id": 2582, + "label": "LTIT 161", + "title": "Advanced Stylistics and Conversation (4)" + }, + { + "dept": "BGGN", + "description": "To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. Second course in series. ", + "edges_from": [], + "edges_to": [], + "id": 2583, + "label": "BGGN 238B", + "title": "Integrative Microbiology II (4)" + }, + { + "dept": "BGGN", + "description": "To introduce students with structural and functional properties of microorganisms and with the role of microbes in the world. Course will emphasize the integrative aspects of microbiology. First course in series. ", + "edges_from": [], + "edges_to": [], + "id": 2584, + "label": "BGGN 238A", + "title": "Integrative Microbiology I (4)" + }, + { + "dept": "HIUS", + "description": "Colloquium on select topics in culture and politics in the United States. Topics will vary from quarter to quarter. Graduate students will be required to submit an additional piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 2585, + "label": "HIUS 188/288", + "title": "Topics in Culture and Politics (4)" + }, + { + "dept": "BENG", + "description": "Laboratory research rotation for first-year BENG PhD students. Students will write a final paper. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2586, + "label": "BENG 298L", + "title": "Laboratory Research Rotation (4)" + }, + { + "dept": "BILD", + "description": "This course will examine diversity, equity, and inclusion beginning with a biological framework. Focus will be on how underlying biological differences have been used to support bias and prejudice against particular groups such as women, African Americans, and Latinos. This course is approved to meet the campus Diversity, Equity, and Inclusion (DEI) requirement. ", + "edges_from": [ + 1147, + 1987, + 687 + ], + "edges_to": [], + "id": 2587, + "label": "BILD 60", + "title": "Exploring Issues of Diversity, Equity, and Inclusion in Relation to Human Biology (4)" + }, + { + "dept": "HIEA", + "description": "We read primary and secondary sources to explore the experiences, worldview, and relationships of Ming men and women, variously including emperors and empresses, scholar-officials, upper-class wives, merchants, weavers, painters, eunuchs, Daoists, fighting monks, farmers, actors, gardeners, courtesans, soldiers, and pirates. +", + "edges_from": [], + "edges_to": [], + "id": 2588, + "label": "HIEA 124", + "title": "Life in Ming China (1369\u20131644) (4)" + }, + { + "dept": "BIEB", + "description": "Laboratory exercises will introduce students to quantitative methods of visual, auditory, and olfactory signal analysis and to lab and field studies of animal signaling. ", + "edges_from": [ + 1986, + 2590 + ], + "edges_to": [], + "id": 2589, + "label": "BIEB 167", + "title": "Animal Communication Lab (4)" + }, + { + "dept": "BIEB", + "description": "", + "edges_from": [], + "edges_to": [ + 2589 + ], + "id": 2590, + "label": "BIEB 166", + "title": "" + }, + { + "dept": "LTGM", + "description": "The development of major forms and modes of German literary prose. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2591, + "label": "LTGM 130", + "title": "German Literary Prose (4)" + }, + { + "dept": "LTGM", + "description": "The development of major forms and modes of German verse. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2592, + "label": "LTGM 132", + "title": "German Poetry (4)" + }, + { + "dept": "LTGM", + "description": "A survey of German cinema from the late 1960s to the early 1980s. Focus on films by such directors as Fassbinder, Herzog, Kluge, Schl\u04e7ndorff, von Trotta, and Wenders viewed in historical and cultural context. May be taken credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2593, + "label": "LTGM 134", + "title": "New German Cinema (4)" + }, + { + "dept": "TDHT", + "description": "Experience firsthand New York history as a performing arts cultural capital. In addition to studying New York performance history and literature, attend performances accompanied by lecture/discussion. Get backstage tours, meet important players, and learn how productions go from vision to reality. Program or materials fees may apply. Contact the Department of Theatre and Dance for application for TDHT 190. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2594, + "label": "TDHT 190", + "title": "The New York Theatre and Dance Scene (4)" + }, + { + "dept": "MAE", + "description": "Astrodynamics, orbital motion, perturbations, coordinate systems and frames of reference. Geosynchronous orbits, stationkeeping. Orbital maneuvers, fuel consumption, guidance systems. Observation instrument point, tracking, control. Basic rocket dynamics. Navigation, telemetry, re-entry, and aero-assisted maneuvers. Mission design. Students perform analyses based on mission requirements. ", + "edges_from": [], + "edges_to": [], + "id": 2595, + "label": "MAE 180A", + "title": "Spacecraft Guidance I (4)" + }, + { + "dept": "VIS", + "description": "This course will explore the path of the deliberately \u201cunreal\u201d in movies. Fantasy in film will be considered both in terms of its psychological manifestations and also in terms of imaginary worlds created in such willfully antirealistic genres as science fiction, horror, and musical films. Offered in Summer Session only. Program or materials fees may apply. May be taken for credit three times. ", + "edges_from": [ + 834 + ], + "edges_to": [], + "id": 2596, + "label": "VIS 194S", + "title": "Fantasy in Film (4)" + }, + { + "dept": "CSE", + "description": "to Synthesis Methodologies in VLSI CAD (4)", + "edges_from": [], + "edges_to": [], + "id": 2597, + "label": "CSE 243A", + "title": "Introduction" + }, + { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of American politics. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 2598, + "label": "POLI 259", + "title": "Special Topics in American Politics (4)" + }, + { + "dept": "POLI", + "description": "This course is designed to acquaint graduate students with the central themes and issues in the study of voting in national elections. ", + "edges_from": [], + "edges_to": [], + "id": 2599, + "label": "POLI 257", + "title": "Voting and Elections (4)" + }, + { + "dept": "MATH", + "description": "Group actions, factor groups, polynomial rings, linear algebra, rational and Jordan canonical forms, unitary and Hermitian matrices, Sylow theorems, finitely generated abelian groups, unique factorization, Galois theory, solvability by radicals, Hilbert Basis Theorem, Hilbert Nullstellensatz, Jacobson radical, semisimple Artinian rings. ", + "edges_from": [], + "edges_to": [], + "id": 2600, + "label": "MATH 200A-B-C", + "title": "Algebra (4-4-4)" + }, + { + "dept": "POLI", + "description": "Examines central works on the development of political institutions in US cities; analyses of community power structures; who governs, why, and to what ends; processes and prospects for minority empowerment; the prominence of \u201cgrowth machines\u201d; the political economy of contemporary cities. ", + "edges_from": [], + "edges_to": [], + "id": 2601, + "label": "POLI 255", + "title": "Urban Politics (4)" + }, + { + "dept": "POLI", + "description": "This course examines the historical evolution of the American state with particular attention to theories of political development. Special topics include the development of the party system, electoral and policy realignments, and the evolution of national political institutions. ", + "edges_from": [], + "edges_to": [], + "id": 2602, + "label": "POLI 254", + "title": "American Political Development (4)" + }, + { + "dept": "POLI", + "description": "This seminar will survey the existing literature in state politics with an eye toward proposing new research designs. Topics will include the variation across states in electoral systems, campaign finance laws, political culture, legislative institutions, judicial arrangements, and policy outcomes. ", + "edges_from": [], + "edges_to": [], + "id": 2603, + "label": "POLI 253", + "title": "Research in State Politics (4)" + }, + { + "dept": "POLI", + "description": "Theoretical and empirical perspectives on voting and other forms of political participation, parties, interest groups, and public opinion in the United States. ", + "edges_from": [], + "edges_to": [], + "id": 2604, + "label": "POLI 252", + "title": "American Politics: Behavior (4)" + }, + { + "dept": "POLI", + "description": "A critical examination of major contributions to the theoretical and empirical literature on the US Congress, presidency, and federal bureaucracy. ", + "edges_from": [], + "edges_to": [], + "id": 2605, + "label": "POLI 251", + "title": "American Political Institutions (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 2606, + "label": "Linguistics/Heritage Languages (LIHL) 139W", + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 2607, + "label": "Linguistics/Heritage Languages (LIHL) 139P", + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + { + "dept": "COGR", + "description": "History, politics, social organization, and ideology of the American news media. Special attention will be paid to: historical origins of journalism as a profession and \u201cobjective reporting\u201d as ideology; empirical studies of print and TV journalism as social institutions; and news coverage of Vietnam and its implications for theories of the news media.", + "edges_from": [], + "edges_to": [], + "id": 2608, + "label": "COGR 220", + "title": "The News Media (4)" + }, + { + "dept": "COGR", + "description": "This course examines the legal and policy framework for free speech in the United States. We cover First Amendment case law, free speech theory, copyright, and the different legal and regulatory treatment historically accorded print, broadcasting, cable television, telephone, and Internet. ", + "edges_from": [], + "edges_to": [], + "id": 2609, + "label": "COGR 223", + "title": "Communication Law and Policy (4)" + }, + { + "dept": "Soc/G", + "description": "Advanced Approaches to Science Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 2610, + "label": "Soc/G 255D", + "title": "" + }, + { + "dept": "Soc/G", + "description": "(Same as Phil 209C, HIGR 240, and COGR 225C.) A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required of all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 2611, + "label": "Soc/G 255C", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "Soc/G", + "description": "(Same as Phil 209B, HIGR 239, and COGR 225B.) Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 2612, + "label": "Soc/G 255B", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "Soc/G", + "description": "(Same as Phil 209A, HIGR 238, and COGR 225A.) Study and discussion of classic work in history of science, sociology of science, and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 2613, + "label": "Soc/G 255A", + "title": "Introduction to Science Studies (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Hindi. LIHL 139F, LIHL 139W, and LIHL 139P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 2614, + "label": "Linguistics/Heritage Languages (LIHL) 139F", + "title": "Advanced Hindi for Hindi Speakers (4)" + }, + { + "dept": "PSYC", + "description": "This seminar examines issues in the psychology of judgment and decision making. Topics include the heuristics and biases approach, overconfidence, framing effects, intertemporal choice, and rationality. ", + "edges_from": [], + "edges_to": [], + "id": 2615, + "label": "PSYC 209", + "title": "Judgment and Decision Making (4)" + }, + { + "dept": "SOCI", + "description": "Methods for interpreting diaries, letters, and testaments written by victims and perpetrators of the Holocaust. Students use these sources for original research about life in hiding, ghettos, and death camps. Includes techniques for making comparisons and for generalizing from evidence. ", + "edges_from": [ + 1728, + 2617, + 2618, + 2616 + ], + "edges_to": [ + 2616 + ], + "id": 2616, + "label": "SOCI 106M", + "title": "Holocaust Diaries (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 2616 + ], + "id": 2617, + "label": "SOCA 106M", + "title": "" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [], + "edges_to": [ + 3014, + 3016, + 3018, + 3021, + 3023, + 5009, + 2616 + ], + "id": 2618, + "label": "SOCI 60", + "title": "" + }, + { + "dept": "LTEU", + "description": "Author in Russian Literature in Translation (4)", + "edges_from": [], + "edges_to": [], + "id": 2619, + "label": "LTEU 158", + "title": "Single" + }, + { + "dept": "COMM", + "description": "This course examines the ways in which various communicative channels mediate human action and thought. A basic premise of the course is that human thought is shaped in important ways by the communicative devices used to communicate. There is a particular emphasis on how thought develops, both historically and in the individual. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2620, + "label": "COMM 110T", + "title": "LLC: Language, Thought, and Media (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 2622 + ], + "edges_to": [ + 2214 + ], + "id": 2621, + "label": "SE 104L", + "title": "" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 553, + 667, + 557 + ], + "edges_to": [ + 2621, + 2214 + ], + "id": 2622, + "label": "SE 104", + "title": "" + }, + { + "dept": "COMM", + "description": "This course examines forms of communication that affect people\u2019s everyday lives. Focusing on ways that ethnic communities transmit and acquire information and interact with mainstream institutions, we examine a variety of alternative local media, including murals, graffiti, newsletters, and community radio. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 2623, + "label": "COMM 110M", + "title": "LLC: Communication and Community (4)" + }, + { + "dept": "LTKO", + "description": "in Korean Literature and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 2624, + "label": "LTKO 100", + "title": "Readings" + }, + { + "dept": "MGT", + "description": "Students will use latest research in management, marketing, finance, strategy, and operations to analyze current business problems posed by real companies and will recommend to senior management strategies that resolve the problem(s) presented in the project. Students may not earn credit for both MGT464 and MGT224. Students may not receive credit for both MGT 224 and MGT 221 Topics in Innovation with the course subtitle Projects in Business Innovation. ", + "edges_from": [], + "edges_to": [], + "id": 2625, + "label": "MGT 464", + "title": "Projects in Business Innovation (4)" + }, + { + "dept": "MGT", + "description": "This elective engages students in the process of commercializing technology through experiential learning. Students will gain an increased understanding of commercialization, including introducing a new product into the market, customer development, and market selection. Students will be required to incorporate the latest research methods for identifying customers, analyzing markets, and developing strategies for market entry and growth. Lectures and a student group project will be conducted. Students may not earn credit for both MGT 463 and MGT 223. Also, students may not receive credit for both MGT 463 and MGT 221 Topics in Innovation course with the subtitle Projects in Technology Commercialization. ", + "edges_from": [], + "edges_to": [], + "id": 2626, + "label": "MGT 463", + "title": "Projects in Technology Commercialization (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in accounting. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not receive credit for both MGT 239 and MGT 469. ", + "edges_from": [], + "edges_to": [], + "id": 2627, + "label": "MGT 469", + "title": "Topics in Accounting (2 or 4)" + }, + { + "dept": "AWP", + "description": "This course will introduce critical thinking, reading, writing, speaking, and listening practices appropriate to college-level work. It will prepare students who may not be familiar with the learning expectations of American universities to fully join the academic conversation. Students may not receive credit for AWP 10 and LTWR 4.", + "edges_from": [], + "edges_to": [], + "id": 2628, + "label": "AWP 10", + "title": "Language and Learning in the American Academy (4)" + }, + { + "dept": "POLI", + "description": "This seminar explores debates over ideals, institutions, and identities in American political thought. Themes and topics will vary. Readings will include political pamphlets, philosophical treatises, court decisions, and works of literature. ", + "edges_from": [], + "edges_to": [], + "id": 2629, + "label": "POLI 110ED", + "title": "Seminar in American Political Thought (4)" + }, + { + "dept": "POLI", + "description": "Political Thought from Revolution to Civil War (4)", + "edges_from": [], + "edges_to": [], + "id": 2630, + "label": "POLI 110EA", + "title": "American" + }, + { + "dept": "POLI", + "description": "Political Thought: Contemporary Debates (4)", + "edges_from": [], + "edges_to": [], + "id": 2631, + "label": "POLI 110EC", + "title": "American" + }, + { + "dept": "POLI", + "description": "Political Thought from Civil War to Civil Rights (4)", + "edges_from": [], + "edges_to": [], + "id": 2632, + "label": "POLI 110EB", + "title": "American" + }, + { + "dept": "PHIL", + "description": "This course meets regularly to discuss primary or secondary literature in the area of German philosophy (including Kant, Fichte, Hegel, etc.). The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Nongraduate students may enroll with consent of instructor. S/U grades only. May be taken for credit nine times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 2633, + "label": "PHIL 275", + "title": "German Philosophy Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "This course meets weekly to provide training in reading and translating philosophical German. Students prepare in advance written translations of assigned passages. The course helps train graduate students preparing to take the Departmental German Exam. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 2634, + "label": "PHIL 276", + "title": "German Translation Workshop (1\u20132)" + }, + { + "dept": "PHIL", + "description": "This course meets biweekly with students reading and presenting material from the phenomenological literature. The course is designed both for students doing active research in phenomenology and for those seeking to gain some familiarity with that tradition. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 2635, + "label": "PHIL 277", + "title": "Phenomenology Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "Methods in Contemporary Philosophy (1\u20132)", + "edges_from": [], + "edges_to": [], + "id": 2636, + "label": "PHIL 278", + "title": "Topics and" + }, + { + "dept": "FPM", + "description": "This second quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or III). ", + "edges_from": [ + 2638 + ], + "edges_to": [ + 2639 + ], + "id": 2637, + "label": "FPM 258B", + "title": "Public Health Doctoral Lecture Series II (2)" + }, + { + "dept": "FPM", + "description": "", + "edges_from": [], + "edges_to": [ + 2637 + ], + "id": 2638, + "label": "FPM 258A", + "title": "" + }, + { + "dept": "FPM", + "description": "This third quarter of a three quarter sequence combines didactic instruction, interactive sessions and student presentations. Topics cover study design, ethics, data analysis and management techniques, and qualitative research will be presented. Focus: lectures (different from I or II). ", + "edges_from": [ + 2637 + ], + "edges_to": [], + "id": 2639, + "label": "FPM 258C", + "title": "Public Health Doctoral Lecture Series III (2)" + }, + { + "dept": "CHEM", + "description": "This course represents a continuation of 114C, or an introductory course for first- and second-year graduate students, and covers topics in molecular and cellular biochemistry. Emphasis will be placed on contemporary approaches to the isolation and characterization of mammalian genes and proteins, and molecular genetic approaches to understanding eukaryotic development and human disease. May be coscheduled with CHEM 214. ", + "edges_from": [ + 1514, + 1516, + 1074 + ], + "edges_to": [], + "id": 2640, + "label": "CHEM 114D", + "title": "Molecular and Cellular Biochemistry (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 2928, + 1514, + 3141 + ], + "id": 2641, + "label": "CHEM 140BH", + "title": "" + }, + { + "dept": "ECE", + "description": "Basic physics and chemistry for the interaction of photons with matter, including both biological and synthetic materials; use of photonic radiation pressure for manipulation of objects and materials; advanced optoelectronic detection systems, devices and methods, including time resolved fluorescent and chemiluminescent methods, fluorescent energy transfer (FRET) techniques, quantum dots, and near-field optical techniques; underlying mechanisms of the light sensitive biological systems, including chloroplasts for photosynthetic energy conversion and the basis of vision processes. Cross-listed with BENG 247A and NANO 247A. ", + "edges_from": [], + "edges_to": [], + "id": 2642, + "label": "ECE 247A", + "title": "Advanced BioPhotonics (4)" + }, + { + "dept": "ECE", + "description": "Topics to be covered will include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology used in microarrays and biosensor devices, and focus on problems related to making highly integrated devices (lab-on-a-chip, in-vivo biosensors, etc.) from heterogeneous materials and components. Cross-listed with BENG 247B and NANO 247B. ", + "edges_from": [], + "edges_to": [], + "id": 2643, + "label": "ECE 247B", + "title": "BioElectronics (4)" + }, + { + "dept": "ECE", + "description": "Topics include: nanosensors and nanodevices for both clinical diagnostics and biowarfare (bioterror) agent detection; nanostructures for drug delivery; nanoarrays and nanodevices; use of nanoanalytical devices and systems; methods and techniques for modification or functionalization of nanoparticles and nanostructures with biological molecules; nanostructural aspects of fuel cells and bio-fuel cells; potential use of DNA and other biomolecules for computing and ultra-high-density data storage. Cross-listed with BENG 247C and NANO 247C. ", + "edges_from": [], + "edges_to": [], + "id": 2644, + "label": "ECE 247C", + "title": "BioNanotechnology (4)" + }, + { + "dept": "Revelle", + "description": "Weekly seminars with a faculty member for Revelle undergraduates interested in the science of mindfulness and how to use it for stress management, interpersonal skills, performance improvement, and to increase the sense of well-being. ", + "edges_from": [], + "edges_to": [], + "id": 2645, + "label": "Revelle 12", + "title": "Practicing the Science of Mindfulness (1)" + }, + { + "dept": "CHIN", + "description": "Continuation of CHIN 165B. Basic training in oral and written communication skills for business, including introduction to modern business terminology and social conventions. ", + "edges_from": [ + 2647 + ], + "edges_to": [], + "id": 2646, + "label": "CHIN 165C", + "title": "Business Chinese (4)" + }, + { + "dept": "CHIN", + "description": "", + "edges_from": [ + 2648 + ], + "edges_to": [ + 2646 + ], + "id": 2647, + "label": "CHIN 165B", + "title": "" + }, + { + "dept": "CHIN", + "description": "", + "edges_from": [], + "edges_to": [ + 2647 + ], + "id": 2648, + "label": "CHIN 165A", + "title": "" + }, + { + "dept": "MATH", + "description": "Random vectors, multivariate densities, covariance matrix, multivariate", + "edges_from": [], + "edges_to": [], + "id": 2649, + "label": "MATH 180B", + "title": "Introduction to Stochastic Processes I (4)" + }, + { + "dept": "MATH", + "description": "Markov chains in discrete and continuous time, random walk, recurrent events. If time permits, topics chosen from stationary normal processes, branching processes, queuing theory. ", + "edges_from": [], + "edges_to": [], + "id": 2650, + "label": "MATH 180C", + "title": "Introduction to Stochastic Processes II (4)" + }, + { + "dept": "SE", + "description": "253C. Mechanics of Laminated Anisotropy Plates and Shells (4)", + "edges_from": [], + "edges_to": [], + "id": 2651, + "label": "SE", + "title": "" + }, + { + "dept": "HINE", + "description": "This course introduces the students to contemporary Israeli society. Among the topics explored: Israeli-Arab conflict; relations between European, Arab, Russian, and Ethiopian Jews; between secular and religious Jews; between Jews and Arabs; and between Israel and World Jewry.", + "edges_from": [], + "edges_to": [], + "id": 2652, + "label": "HINE 135GS", + "title": "Introduction to Contemporary Israeli Society and Culture (4)" + }, + { + "dept": "ECON", + "description": "An examination of recent research in economic theory, including topics in general equilibrium, welfare economics, duality, and social choice; development of related research topics by both graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ", + "edges_from": [ + 922 + ], + "edges_to": [], + "id": 2653, + "label": "ECON 202A-B-C", + "title": "Workshop in Economic Theory (0\u20134/0\u20134/0\u20134)" + }, + { + "dept": "HITO", + "description": "The Cold War is often understood as a superpower rivalry between the U.S. and the Soviet Union. Yet, the second half of the twentieth century witnessed civil wars, revolutions, decolonization movements, and state violence throughout the world that do not fit in this bipolar framework. Focusing on these other events, this course reexamines the Cold War in global and comparative perspective, with a particular focus on political developments in Asia, Africa, and Latin America.", + "edges_from": [], + "edges_to": [], + "id": 2654, + "label": "HITO 115/115GS", + "title": "The Global Cold War (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2655, + "label": "BENG 296", + "title": "Independent Study (4)" + }, + { + "dept": "NANO", + "description": "Materials and microstructures changes. Understanding of diffusion to enable changes in the chemical distribution and microstructure of materials, rates of diffusion. Phase transformations, effects of temperature and driving force on transformations and microstructure. ", + "edges_from": [ + 2657, + 2658 + ], + "edges_to": [ + 4503 + ], + "id": 2656, + "label": "NANO 158", + "title": "Phase Transformations and Kinetics (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [], + "edges_to": [ + 2656, + 580, + 5690, + 2844, + 2661 + ], + "id": 2657, + "label": "NANO 108", + "title": "" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [], + "edges_to": [ + 2656, + 5689 + ], + "id": 2658, + "label": "NANO 148", + "title": "" + }, + { + "dept": "CSE", + "description": "Introduction to algorithms and top-down problem solving. Introduction to the C language, including functions, arrays, and standard libraries. Basic skills for using a PC graphical user interface operating system environment. File maintenance utilities are covered. A student may not receive credit for CSE 5A after receiving credit for CSE 11 or CSE 8B. Recommended preparation: A familiarity with high school-level algebra is expected, but this course assumes no prior programming knowledge. ", + "edges_from": [], + "edges_to": [], + "id": 2659, + "label": "CSE 5A", + "title": "Introduction to Programming I (4)" + }, + { + "dept": "NANO", + "description": "Basic principles of synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 166. ", + "edges_from": [], + "edges_to": [], + "id": 2660, + "label": "NANO 156", + "title": "Nanomaterials (4)" + }, + { + "dept": "NANO", + "description": "Introduction to mechanics of rigid and deformable bodies. Continuum and atomistic models, interatomic forces and intermolecular interactions. Nanomechanics, material defects, elasticity, plasticity, creep, and fracture. Composite materials, nanomaterials, biological materials. ", + "edges_from": [ + 2657 + ], + "edges_to": [], + "id": 2661, + "label": "NANO 150", + "title": "Mechanics of Nanomaterials (4)" + }, + { + "dept": "VIS", + "description": "Examines human interface as it informs or transforms how we read and participate in culture at large. Concepts such as subject/author/object relationships, abstraction, metaphor, analogy, visualization, and complexity are discussed to establish context.", + "edges_from": [], + "edges_to": [], + "id": 2662, + "label": "VIS 215", + "title": "Human Interface (4)" + }, + { + "dept": "VIS", + "description": "An investigation of the world of artifacts (\u201cworks of art\u201d and others) and how they function as agents of communication and modifiers of consciousness. Contemporary perspectives drawn from the fields of art theory, anthropology, contemporary art, and semiotics will be utilized.", + "edges_from": [], + "edges_to": [], + "id": 2663, + "label": "VIS 216", + "title": "The Object (4)" + }, + { + "dept": "VIS", + "description": "A critical examination of the practices of self-defined communities (e.g., Bauhaus, Shaker, surrealists), which have attempted to change the social and spiritual quality of life by aesthetic means and of communities and subcultures defined by other means.", + "edges_from": [], + "edges_to": [], + "id": 2664, + "label": "VIS 217", + "title": "Communities and Subcultures (4)" + }, + { + "dept": "VIS", + "description": "This seminar addresses the space between narrative work generated from a factual base and that generated from a fictional one. Special attention will be given to discussing work that confounds the assumed gap between the two.", + "edges_from": [], + "edges_to": [], + "id": 2665, + "label": "VIS 211", + "title": "Fact and Fiction (4)" + }, + { + "dept": "VIS", + "description": "This seminar will engage the space between personal and larger histories. How is one\u2019s own past both intertwined with and determined by larger social histories?", + "edges_from": [], + "edges_to": [], + "id": 2666, + "label": "VIS 212", + "title": "History and Memory (4)" + }, + { + "dept": "VIS", + "description": "An exploration of what public space is and how it operates, with a view toward an expanded context for considering how public artwork can operate within it. Included are areas such as mass media, activism, community action, computer networks, ecology, and alternative forums.", + "edges_from": [], + "edges_to": [], + "id": 2667, + "label": "VIS 213", + "title": "Public Space (4)" + }, + { + "dept": "MATH", + "description": "Continued study on mathematical modeling in the physical and social sciences, using advanced techniques that will expand upon the topics selected and further the mathematical theory presented in Math 111A. ", + "edges_from": [ + 2669 + ], + "edges_to": [], + "id": 2668, + "label": "MATH 111B", + "title": "Mathematical Modeling II (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 2668 + ], + "id": 2669, + "label": "MATH 111A", + "title": "" + }, + { + "dept": "VIS", + "description": "Examines a topic of special interest to permanent and visiting faculty that is not addressed in the regular curriculum. As in other Art Practice/Theory seminars, students will both produce work and read and write critically about the topic. Topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 2670, + "label": "VIS 219", + "title": "Special Topics in Art Practice/Theory (4)" + }, + { + "dept": "VIS", + "description": "to the Art of the Americas or Africa and Oceania (4)", + "edges_from": [], + "edges_to": [], + "id": 2671, + "label": "VIS 21A", + "title": "Introduction" + }, + { + "dept": "VIS", + "description": "Survey of the major artistic trends of India, China, and Japan, taking a topical approach to important developments in artistic style and subject matter to highlight the art of specific cultures and religions. Students may not receive credit for VIS 21 and VIS 21B. ", + "edges_from": [], + "edges_to": [], + "id": 2672, + "label": "VIS 21B", + "title": "Introduction to Asian Art (4)" + }, + { + "dept": "COGR", + "description": "Introduction to Science Studies: Part 1 (4)", + "edges_from": [], + "edges_to": [], + "id": 2673, + "label": "COGR 225A", + "title": "" + }, + { + "dept": "COGR", + "description": "A forum for the presentation and discussion of research in progress in science studies by graduate students, faculty, and visitors. Students must attend the colloquium series for their entire first and second years. They receive course credit in one quarter each year. ", + "edges_from": [], + "edges_to": [], + "id": 2674, + "label": "COGR 225C", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "COGR", + "description": "Study and discussion of a selected topic in the science studies field with an emphasis on the development of research and writing skills. The topic varies from year to year. ", + "edges_from": [], + "edges_to": [], + "id": 2675, + "label": "COGR 225B", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "COGR", + "description": "Introduction to Science Studies Part II (4)", + "edges_from": [], + "edges_to": [], + "id": 2676, + "label": "COGR 225D", + "title": "" + }, + { + "dept": "HIEU", + "description": "Selected topics in ancient Greek history. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2677, + "label": "HIEU 160", + "title": "Topics in Ancient Greek History (4)" + }, + { + "dept": "LIGN", + "description": "Teaching, Head Teaching Assistant (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 2678, + "label": "LIGN 509", + "title": "Apprentice" + }, + { + "dept": "LIGN", + "description": "Teaching of Language/Directed Study (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 2679, + "label": "LIGN 508", + "title": "Apprentice" + }, + { + "dept": "HINE", + "description": "Cross-listed with JUDA 130. This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. Students may not receive credit for both HINE 130 and JUDA 130. (Formerly known as JUDA 100A.) ", + "edges_from": [], + "edges_to": [], + "id": 2680, + "label": "HINE 130", + "title": "Introduction to the Old Testament: The Historical Books (4)" + }, + { + "dept": "HINE", + "description": "Cross-listed with JUDA 131. This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Students may not receive credit for both HINE 131 and JUDA 131. (Formerly known as JUDA 100B.) ", + "edges_from": [], + "edges_to": [], + "id": 2681, + "label": "HINE 131", + "title": "Introduction to the Old Testament: The Poetic Books (4)" + }, + { + "dept": "LIGN", + "description": "Teaching of American Sign Language (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 2682, + "label": "LIGN 503", + "title": "Apprentice" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in the department\u2019s linguistics courses, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. The student must be serving as a teaching assistant in a LIGN course to receive credit.", + "edges_from": [], + "edges_to": [], + "id": 2683, + "label": "LIGN 502", + "title": "Apprentice Teaching of Linguistics (1\u20134)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Spanish, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 2684, + "label": "LIGN 507", + "title": "Apprentice Teaching of Spanish (1\u20134)" + }, + { + "dept": "BENG", + "description": "An overview of heart, vascular development and associated diseases from a molecular biological perspective. Current approaches for generating mouse models of cardiovascular disease and recently developed technologies for physiological assessment in small animal models will be presented. (W)", + "edges_from": [], + "edges_to": [], + "id": 2685, + "label": "BENG 238/MED 238", + "title": "Molecular Biology of the Cardiovascular System (4)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in German, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 2686, + "label": "LIGN 505", + "title": "Apprentice Teaching of German (1\u20134)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in French, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 2687, + "label": "LIGN 504", + "title": "Apprentice Teaching of French (1\u20134)" + }, + { + "dept": "TDGR", + "description": "A survey/history of artistic and cultural stylistic change as embodied in clothing from early Western civilization to the contemporary period. ", + "edges_from": [], + "edges_to": [], + "id": 2688, + "label": "TDGR 273", + "title": "Fashioning the Body (4)" + }, + { + "dept": "ECE", + "description": "Machine learning has received enormous interest. To learn from data we use probability theory, which has been a mainstay of statistics and engineering for centuries. The class will focus on implementations for physical problems. Topics: Gaussian probabilities, linear models for regression, linear models for classification, neural networks, kernel methods, support vector machines, graphical models, mixture models, sampling methods, and sequential estimation.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 2689, + "label": "ECE 228", + "title": "Machine Learning for Physical Applications (4)" + }, + { + "dept": "ECE", + "description": "This course aims to present the mathematical and computational challenges for holistic content/algorithm/hardware codesign of an efficient deep learning framework. Participants will discuss selected topics including DNNs, CNNs, and RNNs in both supervised and unsupervised settings. Special emphasis will be on optimizing DL physical performance on different hardware platforms. The hardware platforms include CPU-CPU and CPU-GPU architectures. ", + "edges_from": [ + 2691, + 1453, + 743 + ], + "edges_to": [], + "id": 2690, + "label": "ECE 226", + "title": "Optimization and Acceleration of Deep Learning on Various Hardware Platforms (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 2690 + ], + "id": 2691, + "label": "ECE 269", + "title": "" + }, + { + "dept": "ECE", + "description": "A course on network science driven by data analysis. The class will focus on both theoretical and empirical analysis performed on real data, including technological networks, social networks, information networks, biological networks, economic networks, and financial networks. Students will be exposed to a number of state-of-the-art software libraries for network data analysis and visualization via the Python notebook environment. Previous Python programming experience recommended. ", + "edges_from": [], + "edges_to": [], + "id": 2692, + "label": "ECE 227", + "title": "Big Network Data (4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in Spanish. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LISP 1DX. Successful completion of LISP 1D and LISP 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 1675, + 1279 + ], + "edges_to": [], + "id": 2693, + "label": "Linguistics/Spanish (LISP) 1D", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1BX. ", + "edges_from": [ + 888, + 889 + ], + "edges_to": [], + "id": 2694, + "label": "Linguistics/Spanish (LISP) 1B", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LISP 1CX. ", + "edges_from": [ + 2696, + 2697 + ], + "edges_to": [], + "id": 2695, + "label": "Linguistics/Spanish (LISP) 1C", + "title": "Spanish Conversation (2.5)" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 3995, + 2695 + ], + "id": 2696, + "label": "LISP 1B", + "title": "" + }, + { + "dept": "LISP", + "description": "", + "edges_from": [], + "edges_to": [ + 3995, + 2695 + ], + "id": 2697, + "label": "LISP 1BX", + "title": "" + }, + { + "dept": "ECE", + "description": "The basis of magnetism: classical and quantum mechanical points of view. Different kinds of magnetic materials. Magnetic phenomena including anisotropy, magnetostriction, domains, and magnetization dynamics. Current frontiers of nanomagnetics research including thin films and particles. Optical, data storage, and biomedical engineering applications of soft and hard magnetic materials. ", + "edges_from": [], + "edges_to": [], + "id": 2698, + "label": "ECE 221", + "title": "Magnetic Materials: Principles and Applications (4)" + }, + { + "dept": "FMPH", + "description": "This core public health course addresses the fundamentals of environmental and occupational health, including identification of hazards, basic toxicology, risk assessment, prevention/protection, and regulatory/control policies. Specific environmental and occupational hazards and relevant case studies will be presented. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 130. Students may not receive credit for FPMU 130 and FMPH 130. ", + "edges_from": [ + 1974, + 1830 + ], + "edges_to": [], + "id": 2699, + "label": "FMPH 130", + "title": "Environmental and Occupational Health (4)" + }, + { + "dept": "ANSC", + "description": "What is love? This course explores evolutionary, historical, philosophical, physiological, psychological, sociological, political-economic, and anthropological perspectives on love. We examine how love has evolved, study various aspects considered biological or cultural, and address contemporary debates around the nature and uses of love, including topics such as monogamy, arranged marriage, companionship, interracial relationships, and online dating. ", + "edges_from": [], + "edges_to": [], + "id": 2700, + "label": "ANSC 132", + "title": "Sex and Love (4)" + }, + { + "dept": "ANSC", + "description": "The religious world of ordinary precommunist times, with some reference to major Chinese religious traditions. Recommended preparation: background in premodern Chinese history. ", + "edges_from": [], + "edges_to": [], + "id": 2701, + "label": "ANSC 137", + "title": "Chinese Popular Religion (4)" + }, + { + "dept": "MATS", + "description": "Thermally activated processes, Boltzmann factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick\u2019s laws, diffusion mechanisms, Kirkendall effect, Boltzman-Matano analysis, high diffusivity paths. ", + "edges_from": [], + "edges_to": [], + "id": 2702, + "label": "MATS 201B", + "title": "Solid State Diffusion and Reaction Kinetics (4)" + }, + { + "dept": "MATS", + "description": "The thermodynamics and statistical mechanics of solids. Basic concepts; equilibrium properties of alloy systems; thermodynamic information from phase diagrams, surfaces, and interfaces; crystalline defects. ", + "edges_from": [], + "edges_to": [], + "id": 2703, + "label": "MATS 201A", + "title": "Thermodynamics of Solids (4)" + }, + { + "dept": "CSE", + "description": "Research. ", + "edges_from": [], + "edges_to": [], + "id": 2704, + "label": "CSE 299", + "title": "Research (1\u201316)" + }, + { + "dept": "CSE", + "description": "Open to properly qualified graduate students who wish to pursue a problem through advanced study under the direction of a member of the staff. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2705, + "label": "CSE 298", + "title": "Independent Study (1\u201316)" + }, + { + "dept": "MGT", + "description": "Outlines frameworks and tools for formulating strategy to manage technology and think strategically in fast-moving industries (e.g., high tech, biotech, and clean tech). Students will gain insights into technology, strategy, and markets, especially how disruptive technologies create opportunities for startups and transform established firms, and how technology firms achieve competitive advantage through tech-enabled innovations. Illustrated by case studies on cutting-edge startups industry leaders. ", + "edges_from": [], + "edges_to": [], + "id": 2706, + "label": "MGT 127", + "title": "Innovation and Technology Strategy (4)" + }, + { + "dept": "MGT", + "description": "The service sector is the fastest-growing sector of the economy. This course will help students prepare for the transition to a service economy and identify career and entrepreneurial opportunities in the service industry. Students will learn how services differ from goods and gain understanding of the innovation process in the service industry. The course will also address trends of services getting systematized, industrialized, and professionalized for greater productivity and scalability. ", + "edges_from": [], + "edges_to": [], + "id": 2707, + "label": "MGT 128", + "title": "Innovation in Service Enterprises (4)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 2708, + "label": "CSE 290", + "title": "Seminar" + }, + { + "dept": "CSE", + "description": "Project in Computer Science and Engineering (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 2709, + "label": "CSE 293", + "title": "Special" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 282.) Computer science and engineering faculty will present one-hour seminars of the current research work in their areas of interest. ", + "edges_from": [], + "edges_to": [], + "id": 2710, + "label": "CSE 292", + "title": "Faculty Research Seminar (1)" + }, + { + "dept": "CSE", + "description": "Advanced study and analysis of active research in computer science and computer engineering. Discussion of current research and literature in the research specialty of the staff member teaching the course. ", + "edges_from": [], + "edges_to": [], + "id": 2711, + "label": "CSE 294", + "title": "Research Meeting in CSE (2)" + }, + { + "dept": "GPPS", + "description": "This course examines the interplay between structural factors, institutions, and key actors in politics and society in order to understand the democratization of and contemporary democratic politics in Latin America. May not receive credit for GPPS 446 and the IRGN 490 course with the same title.", + "edges_from": [], + "edges_to": [], + "id": 2712, + "label": "GPPS 446", + "title": "Democratization in Latin America (4)" + }, + { + "dept": "20A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2713, + "label": "20A-B-C", + "title": "Second-Year Japanese" + }, + { + "dept": "GPPS", + "description": "This course focuses on contemporary Cuba, its politics, economics, and foreign policy, and assesses the social gains of the revolution and the challenges of reforming socialism. The course also takes a brief look at the origins of the revolution and the role of Castro, explores Cuba-related social media, and examines current US-Cuba relations. Recommended preparation: Spanish proficiency is recommended. Renumbered from IRGN 445. Students may not receive credit for GPPS 445 and IRGN 445.", + "edges_from": [], + "edges_to": [], + "id": 2714, + "label": "GPPS 445", + "title": "Cuba: Revolution and Reform (4)" + }, + { + "dept": "GPPS", + "description": "This course surveys the major contours of intellectual debates and conceptual frameworks that structure the field of international security studies. It introduces students to important strategic thinkers in order to analyze issues in the use of force. Topics include the development of strategic thought, theories on the course of war, the organizational and political nature of militaries, assessment of military effectiveness, and the peculiar problems of nuclear and unconventional warfare. Renumbered from IRGN 442. Students may not receive credit for GPPS 442 and IRGN 442.", + "edges_from": [], + "edges_to": [], + "id": 2715, + "label": "GPPS 442", + "title": "Foundations of Strategic Studies (4)" + }, + { + "dept": "GPPS", + "description": "This course goes beyond the debates of the role of the market and the state in the process of economic growth and political development, seeking to provide an understanding of the complex interaction between political incentives, regulatory decisions, and their implementation. Non-GPS graduate students may enroll with consent of instructor.\u00a0Students may not receive credit for both renumbered from IRGN 441. Students may not receive credit for GPPS 441 and IRGN 441.", + "edges_from": [], + "edges_to": [], + "id": 2716, + "label": "GPPS 441", + "title": "Government and Regulation (4)" + }, + { + "dept": "GPPS", + "description": "To explore the roles that civil society/NGOs/the third sector can play in advancing political, social, and economic progress in developing countries. To consider the strengths and weaknesses, capacities, and limitations of NGOs in developing countries. To provide students with experience in evaluating NGOs and in making professional recommendations to enhance their ability to make a difference. To prepare students to take leadership roles\u2014whether in government, the private sector, or NGOs\u2014in promoting civil-society participation in development. Renumbered from IRGN 448. Students may not receive credit for GPPS 448 and IRGN 448.", + "edges_from": [], + "edges_to": [], + "id": 2717, + "label": "GPPS 448", + "title": "Civil Society and Development (4)" + }, + { + "dept": "GPPS", + "description": "Analysis of the interests, structure, and procedures of the main executive branch agencies involved in the formulation of foreign policy, and of the roles of Congress, the media, public opinion, and nongovernmental actors. Case studies and \u201cdaily briefings\u201d to prepare students to perform professionally in the foreign policy arena. Renumbered from IRGN 449. Students may not receive credit for GPPS 449 and IRGN 449.", + "edges_from": [], + "edges_to": [], + "id": 2718, + "label": "GPPS 449", + "title": "The Making of US Foreign Policy (4)" + }, + { + "dept": "CAT", + "description": "to Special Projects/Topics (2 or 4)", + "edges_from": [], + "edges_to": [], + "id": 2719, + "label": "CAT 24", + "title": "Introduction" + }, + { + "dept": "CHIN", + "description": "Continuation introduction of basic", + "edges_from": [], + "edges_to": [], + "id": 2720, + "label": "CHIN 10BM", + "title": "First Year Chinese\u2014Mandarin speakers II (5)" + }, + { + "dept": "CHIN", + "description": "Continuation of basic Chinese for students", + "edges_from": [], + "edges_to": [], + "id": 2721, + "label": "CHIN 10BN", + "title": "First Year Chinese\u2014Non-native speakers II (5)" + }, + { + "dept": "CHIN", + "description": "Continuation introduction of basic", + "edges_from": [], + "edges_to": [], + "id": 2722, + "label": "CHIN 10BD", + "title": "First Year Chinese\u2014Dialect speakers II (5)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in differential equations. In recent years, topics have included Riemannian geometry, Ricci flow, and geometric evolution. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [ + 5485 + ], + "id": 2723, + "label": "MATH 237A", + "title": "Topics in Differential Equations (4)" + }, + { + "dept": "ENVR", + "description": "Examines global and regional environmental issues. The approach is to consider the scientific basis for policy options. Simple principles of chemistry and biology are introduced. The scope of problems includes: air and water pollution, climate modification, solid waste disposal, hazardous waste treatment, and environmental impact assessment. ", + "edges_from": [], + "edges_to": [], + "id": 2724, + "label": "ENVR 30", + "title": "Environmental Issues: Natural Sciences (4)" + }, + { + "dept": "LTAF", + "description": "This course traces the rise of modern literature in traditional African societies disrupted by the colonial and neocolonial experience. Contemporary films by African and Western artists will provide an additional insight into the complex social self-images of the continent.", + "edges_from": [], + "edges_to": [], + "id": 2725, + "label": "LTAF 120", + "title": "Literature and Film of Modern Africa (4)" + }, + { + "dept": "MAE", + "description": "to Turbulence and Turbulent Mixing (4)", + "edges_from": [], + "edges_to": [], + "id": 2726, + "label": "MAE 214A", + "title": "Introduction" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2727, + "label": "LTRU 104C", + "title": "Advanced Practicum in Russian (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2728, + "label": "LTRU 104B", + "title": "Advanced Practicum in Russian: Analysis of Text and Film (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2729, + "label": "LTRU 104A", + "title": "Advanced Practicum in Russian (4)" + }, + { + "dept": "HMNR", + "description": "Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections\u2014against genocide, torture, enslavement, political persecution, etc.\u2014and their violation, from early Cold War to the present.", + "edges_from": [], + "edges_to": [], + "id": 2730, + "label": "HMNR 101/ANSC 140", + "title": "Human Rights II: Contemporary Issues (4)" + }, + { + "dept": "MGT", + "description": "In this course, the student will continue work on the original research", + "edges_from": [], + "edges_to": [], + "id": 2731, + "label": "MGT 293D", + "title": "Original Research Presentation (4)" + }, + { + "dept": "MGT", + "description": "In this course, the student will continue work on the literature review", + "edges_from": [], + "edges_to": [], + "id": 2732, + "label": "MGT 293B", + "title": "Literature Review and Critique Presentation (4)" + }, + { + "dept": "MGT", + "description": "In this course, the student will work on identifying and developing", + "edges_from": [], + "edges_to": [], + "id": 2733, + "label": "MGT 293C", + "title": "Original Research Paper (4)" + }, + { + "dept": "MGT", + "description": "This course will require the student to identify and critique the", + "edges_from": [], + "edges_to": [], + "id": 2734, + "label": "MGT 293A", + "title": "Literature Review and Critique Paper (4)" + }, + { + "dept": "HIUS", + "description": "History from 1865 to 1917 (4)", + "edges_from": [], + "edges_to": [], + "id": 2735, + "label": "HIUS 131", + "title": "Cultural" + }, + { + "dept": "HIUS", + "description": "History from 1607 to 1865 (4)", + "edges_from": [], + "edges_to": [], + "id": 2736, + "label": "HIUS 130", + "title": "Cultural" + }, + { + "dept": "HIUS", + "description": "This interdisciplinary lecture course focuses on the history and literature of global piracy in the English-speaking world from Sir Francis Drake to Blackbeard and how this Golden Age was remembered in the popular fiction of the nineteenth and twentieth centuries.\u00a0Students may not receive credit for HIUS 133 and HIUS 133GS.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2737, + "label": "HIUS 133", + "title": "The Golden Age of Piracy (4)" + }, + { + "dept": "HIUS", + "description": "This course focuses on the role the Atlantic played in bringing together in both volatile and beneficial ways the remarkably different cultures of four continents from the Columbian Exchange to the Haitian Revolution. Students may not receive credit for HIUS 135 and 135A or 135B.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2738, + "label": "HIUS 135", + "title": "The Atlantic World, 1492\u20131803 (4)" + }, + { + "dept": "HIUS", + "description": "Bebop to Hip-Hop: African American Cultural History since 1945 (4)", + "edges_from": [], + "edges_to": [], + "id": 2739, + "label": "HIUS 134", + "title": "From" + }, + { + "dept": "CHEM", + "description": "The application of techniques to study protein", + "edges_from": [], + "edges_to": [], + "id": 2740, + "label": "CHEM 108", + "title": "Protein Biochemistry Laboratory (6)" + }, + { + "dept": "CHEM", + "description": "This laboratory will introduce students to the tools of molecular biology", + "edges_from": [], + "edges_to": [], + "id": 2741, + "label": "CHEM 109", + "title": "Recombinant DNA Laboratory (6)" + }, + { + "dept": "HIEA", + "description": "This course traces the peninsula\u2019s division into two rival", + "edges_from": [], + "edges_to": [], + "id": 2742, + "label": "HIEA 151", + "title": "The Two Koreas, 1945\u2013Present (4)" + }, + { + "dept": "HIEA", + "description": "This course examines Korea\u2019s entrance into the modern world. It", + "edges_from": [], + "edges_to": [], + "id": 2743, + "label": "HIEA 150", + "title": "Modern Korea, 1800\u20131945 (4)" + }, + { + "dept": "HIEA", + "description": "This course explores the cultural and social structures that dominated twentieth-century Korea: imperialism, ethnonationalism, heteropatriarchy, capitalism, socialism, and militarism. It also uses individual and collective engagements with these hegemonic structures to demonstrate contentious interactions between individuals and society.", + "edges_from": [], + "edges_to": [], + "id": 2744, + "label": "HIEA 153", + "title": "Social and Cultural History of Twentieth-Century Korea (4)" + }, + { + "dept": "HIEA", + "description": "This course places the Korean diaspora in national, regional, and global frames from the imperial age to our globalized present. It traces migrant experiences and community formations on the peninsula and in Japan, the United States, China, and the former USSR.", + "edges_from": [], + "edges_to": [], + "id": 2745, + "label": "HIEA 152", + "title": "History and Cultures of the Korean Diaspora (4)" + }, + { + "dept": "LHCO", + "description": "Students will learn statistical methods and their most common applications in healthcare management. Topics covered include data presentation, sampling, the development and use of confidence intervals, hypothesis testing, analysis of variance and simple regression. We will also explore elementary probability theory and decision making under uncertainty. Students who have taken LHCO 208 may not receive credit for LHCO 212. ", + "edges_from": [], + "edges_to": [], + "id": 2746, + "label": "LHCO 212", + "title": "Statistics and Applied Decision Making (2)" + }, + { + "dept": "HIUS", + "description": "This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation.", + "edges_from": [], + "edges_to": [], + "id": 2747, + "label": "HIUS 129/USP 106", + "title": "The History of Race and Ethnicity in American Cities (4)" + }, + { + "dept": "LHCO", + "description": "Students will learn the use of financial information within a healthcare organization. Topics covered will include capital structure, working capital and cash management, the time value of money, and capital budgeting. ", + "edges_from": [], + "edges_to": [], + "id": 2748, + "label": "LHCO 213", + "title": "Financial Accounting and Analysis (2)" + }, + { + "dept": "ECE", + "description": "Laboratory fabrication of diodes and field effect transistors covering photolithography, oxidation, diffusion, thin film deposition, etching and evaluation of devices. (Course materials and/or program fees may apply.) ", + "edges_from": [ + 614 + ], + "edges_to": [], + "id": 2749, + "label": "ECE 136L", + "title": "Microelectronics Laboratory (4)" + }, + { + "dept": "LHCO", + "description": "Covers core body of knowledge and skills of project management specific to the healthcare industry. Students learn how to define, plan, and execute a project on time, on budget and within performance specifications. Topics include project life cycle, definition, and charter creation; assembling high performance teams; risk analysis; and project closure. ", + "edges_from": [], + "edges_to": [], + "id": 2750, + "label": "LHCO 217", + "title": "Project Management for Healthcare Professionals (2)" + }, + { + "dept": "LHCO", + "description": "Describes the critical knowledge and skills needed to be effective leaders in today\u2019s complex healthcare environment. Sessions cover conflict resolution, leadership and negotiation skills, strategic planning, and ethics. Guest speakers include business leaders and entrepreneurs from the local healthcare industry. ", + "edges_from": [], + "edges_to": [], + "id": 2751, + "label": "LHCO 216", + "title": "Healthcare Leadership (4)" + }, + { + "dept": "LHCO", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2752, + "label": "LHCO 215", + "title": "Modern Health Care (2)" + }, + { + "dept": "LHCO", + "description": "This course focuses on developing effective business communication skills for professionals in managerial/senior roles in health care. Writing scenarios include: preparing briefings and updates using presentation software and/or briefing packets; organizing data; constructing proposals and reports; solicitations; coordinating projects via e-mail; and drafting and editing group documents. On-the-job examples from the student\u2019s workplace are used throughout the course. ", + "edges_from": [], + "edges_to": [], + "id": 2753, + "label": "LHCO 214", + "title": "Practical Business Communication Skills for Healthcare Professionals (2)" + }, + { + "dept": "LHCO", + "description": "Students learn and apply concepts and techniques of business process analysis and improvements as building blocks for operations improvement strategies in health care. Students will analyze and improve processes in various contexts using different process improvement tools from simple process-mapping to computer-based process-modeling. Use of fundamental and sophisticated analytical techniques to design and manage efficient and effective operations and processes will be covered. The importance of balancing technical/analytical and organizational/behavioral aspects of business process improvements will be highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 2754, + "label": "LHCO 219", + "title": "Process Improvement in Health Care (4)" + }, + { + "dept": "LTCO", + "description": "A consideration of a representative selection of works relating to a theme, form, or literary genre. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 2755, + "label": "LTCO 274", + "title": "Genre Studies (4)" + }, + { + "dept": "POLI", + "description": "(Same as SIO 109.) Climate change is an urgent global problem affecting the lives of hundreds of millions of people, now and for the foreseeable future. This course will empower students to confront climate change as critical actors to innovate creative cross-disciplinary solutions. Students may not receive credit for POLI 117 and SIO 109. ", + "edges_from": [], + "edges_to": [], + "id": 2756, + "label": "POLI 117", + "title": "Bending the Curve: Solutions to Climate Change (4)" + }, + { + "dept": "EDS", + "description": "This course series is for undergraduates who are exploring a career in teaching secondary school. Topics addressed include: theories of teaching and learning processes and motivation for science, mathematics, and English instruction. EDS 129A focuses on the analysis of the needs of individual learners and small group instruction techniques; EDS 129B emphasizes the various roles of the classroom teacher and planning individual lessons; and EDS 129C emphasizes the assessment of student work and longer-range curriculum planning. ", + "edges_from": [ + 1890, + 1891, + 2758, + 2759, + 2760, + 1899 + ], + "edges_to": [], + "id": 2757, + "label": "EDS 129 A-B-C", + "title": "Introduction to Teaching and Learning (Secondary) (4-4-4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2757 + ], + "id": 2758, + "label": "EDS 129B", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2757 + ], + "id": 2759, + "label": "EDS 129C", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2757 + ], + "id": 2760, + "label": "EDS 129A", + "title": "" + }, + { + "dept": "MAE", + "description": "Definition of hybrid system. Examples in mechanics, vision, and multi-agent systems. Trajectories of hybrid systems. Chattering, Zeno phenomena. Stability analysis. Arbitrary switching: common Lyapunov functions. Slow switching: dwell time. State-dependent switching: multiple Lyapunov functions, Invariance Principle. Hybrid control design. Applications. ", + "edges_from": [ + 2334 + ], + "edges_to": [], + "id": 2761, + "label": "MAE 286", + "title": "Hybrid Systems (4)" + }, + { + "dept": "MAE", + "description": "of Distributed Parameter Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 2762, + "label": "MAE 287", + "title": "Control" + }, + { + "dept": "MAE", + "description": "Multivariable feedback systems: transfer function matrices, Smith-McMillan form, poles, zeros, principal gains, operator norms, limits on performance. Model uncertainties, stability and performance robustness. Design of robust controllers, H_inf and mu synthesis. Controller reduction. ", + "edges_from": [ + 1448 + ], + "edges_to": [], + "id": 2763, + "label": "MAE 284", + "title": "Robust and Multivariable Control (4)" + }, + { + "dept": "MAE", + "description": "Acoustofluidics is a burgeoning field reliant on high frequency acoustics and underpinning many new developments and devices at micro to nano scales. First the basics, piezoelectricity, microfluidics, acoustics, and device metrology. Then, new physics arising from the unusually large accelerations (10^7 to 10^9 m/s^2) induced by acoustic waves. Finally, how various phenomena of acoustofluidics at small scales can be used in designing practical devices. ", + "edges_from": [ + 2340, + 2765, + 1183 + ], + "edges_to": [], + "id": 2764, + "label": "MAE 285", + "title": "Design of Micro/Nanoacoustofluidic Devices (4)" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [ + 88, + 99, + 1053 + ], + "edges_to": [ + 2764 + ], + "id": 2765, + "label": "CENG 210A", + "title": "" + }, + { + "dept": "CENG", + "description": "Understanding nanotechnology,", + "edges_from": [], + "edges_to": [], + "id": 2766, + "label": "CENG 211", + "title": "Introduction to NanoEngineering (4)" + }, + { + "dept": "CENG", + "description": "Development of quantitative understanding of the different", + "edges_from": [], + "edges_to": [], + "id": 2767, + "label": "CENG 212", + "title": "Intermolecular and Surface Forces (4)" + }, + { + "dept": "CENG", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 2768, + "label": "CENG 213", + "title": "Nanoscale Synthesis and Characterization" + }, + { + "dept": "CENG", + "description": "and Modeling (4)", + "edges_from": [], + "edges_to": [], + "id": 2769, + "label": "CENG 214", + "title": "Nanoscale Physics" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1E. ", + "edges_from": [ + 1742, + 1743 + ], + "edges_to": [], + "id": 2770, + "label": "Linguistics/Arabic (LIAB) 1EX", + "title": "Arabic Conversation (2.5)" + }, + { + "dept": "PHYS", + "description": "Deals with collective effects in solids arising from interactions between constituents. Topics include electron-electron and electron-phonon interactions, screening, band structure effects, Landau Fermi liquid theory. Magnetism in metals and insulators, superconductivity; occurrence, phenomenology, and microscopic theory. ", + "edges_from": [ + 2772, + 2773 + ], + "edges_to": [ + 4444 + ], + "id": 2771, + "label": "PHYS 211B", + "title": "Solid-State Physics II (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 4443, + 2771 + ], + "id": 2772, + "label": "PHYS 211A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 4618, + 2771, + 5562 + ], + "id": 2773, + "label": "PHYS 210A", + "title": "" + }, + { + "dept": "ANSC", + "description": "Why are so many people poor? What does poverty mean for those who live it and for those who try to help them? This course examines the field of international development, to understand the discourses and practices that governments, aid agencies, and communities have tried. To what extent are these practices linked to colonial legacies, race, and class? Looking to new innovations in participatory and compassionate development, this will prepare students for critical engagement with development. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 2774, + "label": "ANSC 192GS", + "title": "Rethinking Poverty and Development (4)" + }, + { + "dept": "PHIL", + "description": "Topics may include the nature and limits of state authority, liberty and equality, distributive justice, liberalism and its critics (e.g., feminists, libertarians, and others), or issues in jurisprudence. The focus may be on classic texts or contemporary authors. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 2775, + "label": "PHIL 267", + "title": "Political Philosophy (4)" + }, + { + "dept": "AUD", + "description": "Theory and practice of cochlear implantation with focus on audiological management of patients after implantation. Current concepts regarding the activation of primary auditory neurons by electrical stimulation and indications for cochlear implantation and surgical procedures are described. ", + "edges_from": [], + "edges_to": [], + "id": 2776, + "label": "AUD 276", + "title": "Cochlear Implants and Other Implantable Sensory Aids (3)" + }, + { + "dept": "AUD", + "description": "Advanced technical aspects of assessing and fitting amplification devices for the hearing impaired. Intensive hands-on training to develop skills necessary for audiology clinical placement. ", + "edges_from": [], + "edges_to": [], + "id": 2777, + "label": "AUD 274", + "title": "Advanced Technical Aspects of Hearing Amplification (4)" + }, + { + "dept": "AUD", + "description": "Methods and procedures required for monitoring of evoked auditory responses in the operating room. The indications for the use of intraoperative monitoring and difficulties unique to this setting. The course will include the opportunity to observe auditory potential monitoring in the operating room. ", + "edges_from": [], + "edges_to": [], + "id": 2778, + "label": "AUD 275", + "title": "Intraoperative Monitoring (3)" + }, + { + "dept": "AUD", + "description": "Central auditory processing assessment and management for pediatrics and adults. Focus on behavioral tests assessing dichotic listening, temporal processes, pattern recognition, performance with competing and degraded signals. ", + "edges_from": [], + "edges_to": [], + "id": 2779, + "label": "AUD 272", + "title": "Central Auditory Processing Assessment and Management (4)" + }, + { + "dept": "AUD", + "description": "This course describes procedures and requirements for newborn hearing screening, and the detection and clinical management of congenital auditory disorders. Observations of newborn screening in a neonatal ICU environment. ", + "edges_from": [], + "edges_to": [], + "id": 2780, + "label": "AUD 270", + "title": "Newborn Hearing Screening and Management (3)" + }, + { + "dept": "AUD", + "description": "Detailed anatomy of the temporal bone, cranial nerves and basic neurophysiology for audiologists. Radiographic and magnetic resonance imaging of the temporal bone will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 2781, + "label": "AUD 271", + "title": "Temporal Bone Anatomy (3)" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with no background.", + "edges_from": [], + "edges_to": [], + "id": 2782, + "label": "CHIN 100CN", + "title": "Third Year Chinese\u2014Non-native speakers III (4)" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "edges_from": [], + "edges_to": [], + "id": 2783, + "label": "CHIN 100CM", + "title": "Third Year Chinese\u2014Mandarin speakers III (4)" + }, + { + "dept": "EDS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Topics vary from quarter to quarter. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2784, + "label": "EDS 87", + "title": "Freshman Seminar in Education Studies (1)" + }, + { + "dept": "HIAF", + "description": "This colloquium is intended for students with sufficient background in African history. Topics, which vary from year to year, will include traditional political, economic, and religious systems, and theory and practice of indirect rule, decolonization, African socialism, and pan-Africanism. May be taken for credit up to five times. Department approval required; may be coscheduled with HIAF 161.", + "edges_from": [], + "edges_to": [], + "id": 2785, + "label": "HIAF 261", + "title": "Special Topics in African History (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2786, + "label": "LIGN 252", + "title": "Advanced Probabilistic Models of Language (4)" + }, + { + "dept": "MGT", + "description": "Build a business plan. Establish intellectual property rights. Provide financial projections and determine financing needs. Explore investment sourcing, business valuation, and harvesting opportunities. Determine operational plans and key employee requirements. ", + "edges_from": [ + 2088, + 354, + 2788, + 2789 + ], + "edges_to": [], + "id": 2787, + "label": "MGT 121B", + "title": "Innovation to Market B (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2787 + ], + "id": 2788, + "label": "MGT 121A", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 2787 + ], + "id": 2789, + "label": "MGT 111", + "title": "" + }, + { + "dept": "MGT", + "description": "This course covers the basic concepts and important models used in", + "edges_from": [], + "edges_to": [], + "id": 2790, + "label": "MGT 285", + "title": "Financial Economics (4)" + }, + { + "dept": "BILD", + "description": "Course introduces students to some of the research approaches employed by physicians and scientists at the UC San Diego School of Medicine to investigate the etiology, biology, prevention and treatment of human diseases, including cancer, diabetes, and others. P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 2791, + "label": "BILD 40", + "title": "Introduction to Biomedical Research (2)" + }, + { + "dept": "LTWL", + "description": "Studies in specialized literary, philosophic, and artistic movements, approaches to literature, literary ideas, historical moments, etc. LTWL 172 and LTWL 172GS may be taken for credit for a combined total of three times.", + "edges_from": [], + "edges_to": [], + "id": 2792, + "label": "LTWL 172", + "title": "Special Topics in Literature (4)" + }, + { + "dept": "CENG", + "description": "Integration\u00a0(4)", + "edges_from": [], + "edges_to": [], + "id": 2793, + "label": "CENG 215", + "title": "Nanosystems" + }, + { + "dept": "CENG", + "description": "Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching).\u00a0", + "edges_from": [ + 1055 + ], + "edges_to": [], + "id": 2794, + "label": "CENG 157", + "title": "Process Technology in the Semiconductor Industry (4)" + }, + { + "dept": "TDMV", + "description": "Ballet for Contemporary Dance (4)", + "edges_from": [], + "edges_to": [], + "id": 2795, + "label": "TDMV 112", + "title": "Advanced" + }, + { + "dept": "TDMV", + "description": "A contemporary approach to ballet technique, terminology, and performance at the advanced level. Introduces more complex choreographic variations and skills. Individual and group composition will be examined and aesthetic criticism applied. May be taken for credit six times. ", + "edges_from": [ + 2797 + ], + "edges_to": [], + "id": 2796, + "label": "TDMV 111", + "title": "Advanced Ballet (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [ + 2798 + ], + "edges_to": [ + 2796 + ], + "id": 2797, + "label": "TDMV 110", + "title": "" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 2797 + ], + "id": 2798, + "label": "TDMV 1", + "title": "" + }, + { + "dept": "HIEU", + "description": "Selected topics in Byzantine history. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 2799, + "label": "HIEU 162/262", + "title": "Topics in Byzantine History (4)" + }, + { + "dept": "HITO", + "description": "Study on History Topics (1, 2, 3, 4)", + "edges_from": [], + "edges_to": [], + "id": 2800, + "label": "HITO 99", + "title": "Independent" + }, + { + "dept": "HIGR", + "description": "Provides instruction in academic professionalization, including qualifying exams; prospectus/grant writing; conference presentations; publishing articles/books; job market; and tenure review. Weekly readings, writing assignments, discussion, and peer review develop skills necessary for success as graduate students and future faculty.", + "edges_from": [], + "edges_to": [], + "id": 2801, + "label": "HIGR 208", + "title": "Graduate Professional Development (4)" + }, + { + "dept": "HIGR", + "description": "Readings and critical analysis of selected topics and important works in the history of Spain. May be repeated as content changes. Proficiency in Spanish required to repeat course, but not for first time taken. An IP grade will be awarded at the end of the first quarter. Final grade will not be given until the end of the second quarter.", + "edges_from": [], + "edges_to": [], + "id": 2802, + "label": "HIGR 227A-B", + "title": "Seminar in Spanish History (4-4)" + }, + { + "dept": "EDS", + "description": "Talking Culture, Culture Talking: Voices of Diversity (4)", + "edges_from": [], + "edges_to": [], + "id": 2803, + "label": "EDS 278/COGR 278", + "title": "" + }, + { + "dept": "CSE", + "description": "Introduces fundamental methods and principles for designing, implementing, and evaluating user interfaces. Topics: user-centered design, rapid prototyping, experimentation, direct manipulation, cognitive principles, visual design, social software, software tools. Learn by doing: Work with a team on a quarter-long design project. Cross-listed with COGS 120. Students may not receive credit for COGS 120 and CSE 170. Recommended preparation: Basic familiarity with HTML. ", + "edges_from": [ + 568, + 1226, + 1399, + 1773, + 1413 + ], + "edges_to": [ + 5050, + 5443, + 3220 + ], + "id": 2804, + "label": "CSE 170", + "title": "Interaction Design (5)" + }, + { + "dept": "POLI", + "description": "This course covers advanced topics in the design and implementation of field surveys and interviews. Questionnaire design and survey techniques for sensitive topics such as list experiments will be developed, as well as sampling methodologies to achieve representivity.", + "edges_from": [], + "edges_to": [], + "id": 2805, + "label": "POLI 275", + "title": "Interviews, Survey Design, and Sampling (4)" + }, + { + "dept": "POLI", + "description": "This class explores statistical and computational methods to enable students to use text as a data source in the social sciences. Hands-on examples and a final project will equip students to work with text data in their own research. ", + "edges_from": [], + "edges_to": [], + "id": 2806, + "label": "POLI 274", + "title": "Text as Data (4)" + }, + { + "dept": "POLI", + "description": "Use of advanced quantitative techniques in political science. Students will use political science data to complete small exercises and a major project. Students may not receive credit for both 271B and 271. ", + "edges_from": [], + "edges_to": [], + "id": 2807, + "label": "POLI 271", + "title": "Advanced Statistical Applications (4)" + }, + { + "dept": "POLI", + "description": "This course reviews essential calculus and linear algebra and introduces probability theory (probability rules, random variables, univariate and multivariate distributions) and mathematical statistics (sampling distributions, estimation and inference frameworks). ", + "edges_from": [], + "edges_to": [], + "id": 2808, + "label": "POLI 270", + "title": "Mathematical and Statistical Foundations (4)" + }, + { + "dept": "POLI", + "description": "This course covers designs and methods of causal inference, including randomized experiments, cross-sectional and longitudinal designs, and other tools such as sensitivity analysis and randomization inference. These methods are illustrated with examples in political science and positive political economy. ", + "edges_from": [], + "edges_to": [], + "id": 2809, + "label": "POLI 273", + "title": "Causal Inference (4)" + }, + { + "dept": "POLI", + "description": "Provides students a solid understanding of Bayesian inference and Markov chain Monte Carlo methods. Topics covered include Bayesian treatment of the linear model, Markov chain Monte Carlo methods, assessing model adequacy, and hierarchical models. ", + "edges_from": [], + "edges_to": [], + "id": 2810, + "label": "POLI 272", + "title": "Bayesian Methods (4)" + }, + { + "dept": "POLI", + "description": "This course offers selected topics in quantitative methodology. Content may vary each time the course is offered. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 2811, + "label": "POLI 279", + "title": "Special Topics in Methodology (4)" + }, + { + "dept": "POLI", + "description": "This course introduces the formal literature on economic models of voting and electoral politics. It reviews models that look at elections as I) mechanisms for preference aggregation, II) mechanisms for information aggregation, and III) mechanisms for selecting and incentivizing politicians. ", + "edges_from": [], + "edges_to": [], + "id": 2812, + "label": "POLI 278", + "title": "Political Economy Models of Elections (4)" + }, + { + "dept": "PHYS", + "description": "From time to time a member of the regular faculty or a resident visitor will give a self-contained short course on a topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. Course may be taken for credit up to two times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in Physics 139 will have the duplicate credit removed from their academic record. ", + "edges_from": [ + 33, + 34, + 419, + 132, + 37, + 38, + 169, + 171, + 849, + 35, + 407, + 26, + 27, + 28, + 573, + 30 + ], + "edges_to": [], + "id": 2813, + "label": "PHYS 139", + "title": "Physics Special Topics (4)" + }, + { + "dept": "PHYS", + "description": "A project-oriented laboratory course utilizing state-of-the-art experimental techniques in materials science. The course prepares students for research in a modern condensed matter-materials science laboratory. Under supervision, the students develop their own experimental ideas after investigating current research literature. With the use of sophisticated state-of-the-art instrumentation students conduct research, write a research paper, and make verbal presentations. Program or materials fees may apply. ", + "edges_from": [ + 760, + 346 + ], + "edges_to": [], + "id": 2814, + "label": "PHYS 133", + "title": "Condensed Matter/Materials Science Laboratory (4)" + }, + { + "dept": "PHYS", + "description": "Quantum mechanics and gravity. Electromagnetism from gravity and extra dimensions. Unification of forces. Quantum black holes. Properties of strings and branes. ", + "edges_from": [ + 2816, + 2817, + 1121 + ], + "edges_to": [], + "id": 2815, + "label": "PHYS 137", + "title": "String Theory (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 2817, + 37, + 30, + 1121 + ], + "edges_to": [ + 1364, + 3181, + 3182, + 2815 + ], + "id": 2816, + "label": "PHYS 130A", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 33, + 34, + 419, + 132, + 38, + 35, + 169, + 171, + 28, + 27, + 849, + 227, + 407, + 26, + 571, + 572, + 573 + ], + "edges_to": [ + 2816, + 3215, + 2987, + 2815 + ], + "id": 2817, + "label": "PHYS 110A", + "title": "" + }, + { + "dept": "HILD", + "description": "Explores the history of public health, from the plague hospitals of Renaissance Italy to the current and future prospects for global health initiatives, emphasizing the complex biological, cultural, and social dimensions of health, sickness, and medicine across time and space.", + "edges_from": [], + "edges_to": [], + "id": 2818, + "label": "HILD 30", + "title": "History of Public Health (4)" + }, + { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "edges_from": [], + "edges_to": [ + 5913 + ], + "id": 2819, + "label": "MATH 210A", + "title": "Mathematical" + }, + { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "edges_from": [], + "edges_to": [ + 5913 + ], + "id": 2820, + "label": "MATH 210B", + "title": "Mathematical" + }, + { + "dept": "POLI", + "description": "Political Parties and Interest Groups (4)", + "edges_from": [], + "edges_to": [], + "id": 2821, + "label": "POLI 137A", + "title": "Comparative" + }, + { + "dept": "PSYC", + "description": "This seminar provides an overview of the past and current research on the neurobiology of actions in normal and diseased states such as addiction, Parkinson\u2019s, and other psychiatric disorders. ", + "edges_from": [], + "edges_to": [], + "id": 2822, + "label": "PSYC 268", + "title": "Neurobiology of Action (4)" + }, + { + "dept": "PSYC", + "description": "This seminar will cover", + "edges_from": [], + "edges_to": [], + "id": 2823, + "label": "PSYC 266", + "title": "Psychology of Reading (4)" + }, + { + "dept": "PSYC", + "description": "Concentrates on what psychology has to contribute to the understanding of illness, its treatment, and the social context in which these processes occur. Topics: psychological factors in the etiology and treatment of illness, doctor-patient roles, and communication. ", + "edges_from": [], + "edges_to": [], + "id": 2824, + "label": "PSYC 265", + "title": "Social Psychology and Medicine (4)" + }, + { + "dept": "PSYC", + "description": "This graduate seminar addresses the science behind mindfulness. Topics include the effects of mindfulness practice on neural processing, psychological well-being, and prosocial behavior. A particular emphasis will be placed on the implications of mindfulness practices/effects on society and education. ", + "edges_from": [], + "edges_to": [], + "id": 2825, + "label": "PSYC 263", + "title": "Science of Mindfulness (4)" + }, + { + "dept": "PSYC", + "description": "The vertebrate brain contains a network of strongly interconnected structures that play essential roles in the regulation of social behavior. In this seminar we will read and discuss primary literature that details the structure and behavioral functions of this network.", + "edges_from": [], + "edges_to": [], + "id": 2826, + "label": "PSYC 262", + "title": "Functional Construction of the Vertebrate Brain\u2019s Social Behavior Network (4)" + }, + { + "dept": "PSYC", + "description": "This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language. Cross-listed with LIGN 283. ", + "edges_from": [], + "edges_to": [], + "id": 2827, + "label": "PSYC 260", + "title": "Language and Conceptual Development (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in marketing. Instructional methods include face-to-face lecture, case presentations, assigned readings, and group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 489 and MGT 209 if the course has the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 2828, + "label": "MGT 489", + "title": "Topics in Marketing (2 or 4)" + }, + { + "dept": "MGT", + "description": "Offers a pragmatic view into the world of sales, from its strategic importance to the day-to-day creation and management of a sales organization. Students will also have the opportunity to develop and practice their own sales skills. Letter grades only. Students may not earn credit for both MGT 480 and MGT 206. Also, students may not receive credit for MGT 480 and MGT 209 Topics in Marketing with the course subtitle Sales and Sales Management. ", + "edges_from": [], + "edges_to": [], + "id": 2829, + "label": "MGT 480", + "title": "Sales and Sales Management (4)" + }, + { + "dept": "TDGR", + "description": "This seminar focuses on the specific considerations that support and sustain a professional career as a contemporary dance maker and performer. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 2830, + "label": "TDGR 218A", + "title": "Professional Practices (4)" + }, + { + "dept": "HIGR", + "description": "This course will introduce students to the monographic literature and the main historiographic controversies of modern Korean history.", + "edges_from": [], + "edges_to": [], + "id": 2831, + "label": "HIGR 214", + "title": "Historical Scholarship on Modern Korean History (4)" + }, + { + "dept": "HIGR", + "description": "Scholarship on Modern East Asian History (4)", + "edges_from": [], + "edges_to": [], + "id": 2832, + "label": "HIGR 212", + "title": "Historical" + }, + { + "dept": "HIGR", + "description": "Scholarship on Modern Japanese History (4)", + "edges_from": [], + "edges_to": [], + "id": 2833, + "label": "HIGR 211", + "title": "Historical" + }, + { + "dept": "HIGR", + "description": "Scholarship on Modern Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 2834, + "label": "HIGR 210", + "title": "Historical" + }, + { + "dept": "EDS", + "description": "Examines the underlying mathematical concepts of the elementary school mathematics curriculum and related pedagogical implications for teaching. Topics include number concepts, algebraic thinking, geometry, and data collection and analysis. ", + "edges_from": [], + "edges_to": [], + "id": 2835, + "label": "EDS 385", + "title": "Elementary School Mathematics Content and Pedagogy (4)" + }, + { + "dept": "EDS", + "description": "This course satisfies the Commission on Teacher Credentialing requirements for Special Education. Topics include: teaching methods for accommodating special-needs students in the regular classroom, developing an Individual Education Plan, characteristics of special-needs students, lesson planning to accommodate individual differences, and legislated mandates. ", + "edges_from": [], + "edges_to": [], + "id": 2836, + "label": "EDS 382", + "title": "Inclusive Educational Practices (4)" + }, + { + "dept": "EDS", + "description": "This course satisfies the Commission on Teacher Credentialing requirement for Health Education. Topics include: physical education, substance abuse, sex education, cardio-pulmonary resuscitation, nutrition, and first aid. ", + "edges_from": [], + "edges_to": [], + "id": 2837, + "label": "EDS 381", + "title": "Health Education (4)" + }, + { + "dept": "CENG", + "description": "Principles of chemical process design and", + "edges_from": [], + "edges_to": [], + "id": 2838, + "label": "CENG 124A", + "title": "Chemical Plant and Process Design I (4)" + }, + { + "dept": "MGTF", + "description": "This course is aimed at developing analytical and transferable skills in the area of management of monetary policy and banking and nonbanking financial institutions, issues of credit and financial regulation. Making the connection with real life is the primary focus of this course. ", + "edges_from": [], + "edges_to": [], + "id": 2839, + "label": "MGTF 420", + "title": "Money and Banking (4)" + }, + { + "dept": "VIS", + "description": "Film/video production will be framed through the script writing process, focusing on the problems of longer duration, density, and adaptation from other media. Students will both read and analyze both historical and contemporary scripts and produce a thirty- to sixty-minute script. Recommended preparation: VIS 177 Scripting Strategies. Two production-course limitation. ", + "edges_from": [ + 2841, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 2842 + ], + "edges_to": [], + "id": 2840, + "label": "VIS 184", + "title": "Advanced Scripting (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 508 + ], + "edges_to": [ + 5920, + 3523, + 4357, + 4361, + 2840, + 2843, + 2845, + 2846, + 5919 + ], + "id": 2841, + "label": "VIS 164", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 508 + ], + "edges_to": [ + 5920, + 3523, + 4357, + 4361, + 2840, + 2843, + 2845, + 2846, + 5919 + ], + "id": 2842, + "label": "VIS 165", + "title": "" + }, + { + "dept": "VIS", + "description": "Through instruction and discussion, the class will focus on guiding students through advanced production on a senior project. Students will be expected to initiate and complete production on at least one portfolio-level project. May be taken for credit two times. Two production-course limitation. ", + "edges_from": [ + 2841, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 2842 + ], + "edges_to": [], + "id": 2843, + "label": "VIS 185", + "title": "Senior Media Projects (4)" + }, + { + "dept": "NANO", + "description": "Experimental investigation of physical properties of materials such as: thermal expansion coefficient, thermal conductivity, glass transitions in polymers, resonant vibrational response, longitudinal and shear acoustic wave speeds, Curie temperatures, UV-VIS absorption and reflection. ", + "edges_from": [ + 2657 + ], + "edges_to": [], + "id": 2844, + "label": "NANO 100L", + "title": "Physical Properties of Materials Lab (4)" + }, + { + "dept": "VIS", + "description": "Advanced course to gain sophisticated control of lighting and sound recording techniques with understanding of theoretical implications and interrelation between production values and subject matter. Interactions between sound and image in various works in film, video, or installation. Two production-course limitation. ", + "edges_from": [ + 2841, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 2842 + ], + "edges_to": [], + "id": 2845, + "label": "VIS 181", + "title": "Sound and Lighting (4)" + }, + { + "dept": "VIS", + "description": "Film/video editing and problems of editing from theoretical and practical points-of-view. Films and tapes analyzed on a frame-by-frame, shot-by-shot basis. Edit stock material and generate own materials for editing final project. Aesthetic and technical similarities/differences of film/video. Recommended preparation: VIS 175 Editing-Theory and Production strongly recommended. Two production-course limitation. ", + "edges_from": [ + 2841, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 2842 + ], + "edges_to": [], + "id": 2846, + "label": "VIS 182", + "title": "Advanced Editing (4)" + }, + { + "dept": "HIEA", + "description": "This course analyzes the history of the PRC from 1949 to the present. Special emphasis is placed on the problem of post-revolutionary institutionalization, the role of ideology, the tension between city and countryside, Maoism, the Great Leap Forward, the Cultural Revolution.", + "edges_from": [], + "edges_to": [], + "id": 2847, + "label": "HIEA 132", + "title": "Mao\u2019s China, 1949\u20131976 (4)" + }, + { + "dept": "BENG", + "description": "282. Bioinformatics II: Introduction to Bioinformatics Algorithms (4)", + "edges_from": [], + "edges_to": [], + "id": 2848, + "label": "BENG 202/CSE", + "title": "" + }, + { + "dept": "MUS", + "description": "The purpose of this seminar is to bring together performance students, faculty, and guests for discussion, presentation of student and faculty projects, performances by guest artists, and master classes with different members of the performance faculty. ", + "edges_from": [], + "edges_to": [], + "id": 2849, + "label": "MUS 245", + "title": "Focus on Performance (2)" + }, + { + "dept": "ANTH", + "description": "This course examines conceptions of race from evolutionary and sociocultural perspectives. We will critically examine how patterns of current human genetic variation map onto conceptions of race. We will also focus on the history of the race concept and explore ways in which biomedical researchers and physicians use racial categories today. Finally, we will examine the social construction of race, and the experiences and consequences of racism on health in the United States and internationally.", + "edges_from": [], + "edges_to": [], + "id": 2850, + "label": "ANTH 43", + "title": "Introduction to Biology and Culture of Race (4)" + }, + { + "dept": "HIEU", + "description": "Intellectual History, 1780\u20131870 (4)", + "edges_from": [], + "edges_to": [], + "id": 2851, + "label": "HIEU 142", + "title": "European" + }, + { + "dept": "HIEU", + "description": "Intellectual History, 1870\u20131945 (4)", + "edges_from": [], + "edges_to": [], + "id": 2852, + "label": "HIEU 143", + "title": "European" + }, + { + "dept": "HIEU", + "description": "This course explores the diverse history of women from the French Revolution to the present, with an emphasis on the variety of women\u2019s experience, the formation of gender identities, and the shifting relationship between gender and power over the course of the modern period. Topics include women and citizenship, science and gender, feminist movements, and the evolution of women\u2019s work.", + "edges_from": [], + "edges_to": [], + "id": 2853, + "label": "HIEU 140", + "title": "History of Women and Gender in Europe: From the French Revolution to the Present (4)" + }, + { + "dept": "HIEU", + "description": "European imperialism, alliances, and the outbreak of the First World War. The postwar settlement and its breakdown. The advent of Hitler and the disarray of the western democracies. The Second World War and the emergence of the super powers.", + "edges_from": [], + "edges_to": [], + "id": 2854, + "label": "HIEU 141", + "title": "European Diplomatic History, 1870\u20131945 (4)" + }, + { + "dept": "HIEU", + "description": "A consideration of the political, social, and cultural crisis that faced Western liberal democracies in the interwar period, with emphasis on the mass movements that opposed bourgeois liberalism from both the left and the right.", + "edges_from": [], + "edges_to": [], + "id": 2855, + "label": "HIEU 146", + "title": "Fascism, Communism, and the Crisis of Liberal Democracy: Europe 1919\u20131945 (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in European history. Course may be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2856, + "label": "HIEU 144", + "title": "Topics in European History (4)" + }, + { + "dept": "BENG", + "description": "Mathematical models of reconstructed reaction networks and simulation of their emergent properties. Classical kinetic theory, stochastic simulation methods and constraints-based models. Methods that are scalable and integrate multiple cellular processes will be emphasized. Existing genome-scale models will be described and computations performed. Emphasis will be on studying the genotype-phenotype relationship in an in silico model driven fashion. Comparisons with phenotypic data will be emphasized. ", + "edges_from": [ + 2858 + ], + "edges_to": [], + "id": 2857, + "label": "BENG 213", + "title": "Systems Biology and Bioengineering III: Building and Simulating Large-Scale In Silico Models (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 2859 + ], + "edges_to": [ + 2857 + ], + "id": 2858, + "label": "BENG 212", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 241, + 2860 + ], + "edges_to": [ + 2858 + ], + "id": 2859, + "label": "BENG 211", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 2859 + ], + "id": 2860, + "label": "BENG 230A", + "title": "" + }, + { + "dept": "POLI", + "description": "Students conduct directed research as part of a principal investigator\u2019s project and under the supervision of a department mentor. Students may conduct research with a department mentor for up to two quarters. This course is part of the Research Apprenticeship program in political science. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 2548 + ], + "edges_to": [], + "id": 2861, + "label": "POLI 198RA", + "title": "Research Apprenticeship (4)" + }, + { + "dept": "BIMM", + "description": "This advanced course covers the application", + "edges_from": [], + "edges_to": [], + "id": 2862, + "label": "BIMM 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "BIMM", + "description": "This course emphasizes the hands-on application", + "edges_from": [], + "edges_to": [], + "id": 2863, + "label": "BIMM 185", + "title": "Bioinformatics Laboratory (Advanced) (4)" + }, + { + "dept": "MATH", + "description": "Nonparametrics: tests, regression, density estimation, bootstrap and jackknife. Introduction to statistical computing using S plus. ", + "edges_from": [], + "edges_to": [], + "id": 2864, + "label": "MATH 281C", + "title": "Mathematical Statistics (4)" + }, + { + "dept": "MDE", + "description": "Second in a two-quarter series focusing on finalizing and completing a business plan. In this course, you will study and analyze (1) start-up proposals, (2) the genesis of the biotech industry, (3) biotech categories and growth strategies, (4) the process of spinning out viable product concepts from academia, (5) financing techniques, (6) business development, (7) acquisition/IPO valuation methods, and (8) potentially disruptive technologies to finalize your business plan. Students may not receive credit for both MDE 225 and MDE 225B. ", + "edges_from": [ + 2866 + ], + "edges_to": [], + "id": 2865, + "label": "MDE 225B", + "title": "Biobusiness: Small to Large II (2)" + }, + { + "dept": "MDE", + "description": "", + "edges_from": [], + "edges_to": [ + 2865 + ], + "id": 2866, + "label": "MDE 225A", + "title": "" + }, + { + "dept": "HILA", + "description": "This course surveys guerrilla movements in Latin America from the Cuban Revolution through the Zapatista movement in Mexico, comparing and contrasting the origins, trajectories, and legacies of armed insurgencies, and focusing on the politics of defining \u201cinsurgents,\u201d \u201crevolutionaries,\u201d and \u201cterrorists.\u201d", + "edges_from": [], + "edges_to": [], + "id": 2867, + "label": "HILA 133S", + "title": "Guerrillas and Revolution in Latin America (4)" + }, + { + "dept": "POLI", + "description": "This course reviews the origins and development of the European Community/European Union and its institutions, theories of integration and the challenges inherent in the creation of a supranational political regime.", + "edges_from": [], + "edges_to": [], + "id": 2868, + "label": "POLI 120H", + "title": "European Integration (4)" + }, + { + "dept": "MATH", + "description": "Approximation and Nonlinear Equations (4)", + "edges_from": [], + "edges_to": [ + 2870 + ], + "id": 2869, + "label": "MATH 270B", + "title": "Numerical" + }, + { + "dept": "MATH", + "description": "Initial value problems (IVP) and boundary value problems (BVP) in ordinary differential equations. Linear methods for IVP: one and multistep methods, local truncation error, stability, convergence, global error accumulation. Runge-Kutta (RK) Methods for IVP: RK methods, predictor-corrector methods, stiff systems, error indicators, adaptive time-stepping. Finite difference, finite volume, collocation, spectral, and finite element methods for BVP; a priori and a posteriori error analysis, stability, convergence, adaptivity. ", + "edges_from": [ + 2869 + ], + "edges_to": [], + "id": 2870, + "label": "MATH 270C", + "title": "Numerical Ordinary Differential Equations (4)" + }, + { + "dept": "VIS", + "description": "Explores the art and expressive culture of American Indians of far western United States, including California and Pacific Northwest. Social and cultural contexts of artistic traditions and their relations to the lifeways, ceremonialism, beliefs, and creative visions of their makers. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126CN and VIS 126HN. ", + "edges_from": [], + "edges_to": [], + "id": 2871, + "label": "VIS 126HN", + "title": "Pacific Coast American Indian Art (4)" + }, + { + "dept": "LTFR", + "description": "Third course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. It also introduces the student to basic techniques of literary analysis. ", + "edges_from": [ + 2873 + ], + "edges_to": [], + "id": 2872, + "label": "LTFR 50", + "title": "Intermediate French III: Textual Analysis (4)" + }, + { + "dept": "LTFR", + "description": "", + "edges_from": [ + 5348 + ], + "edges_to": [ + 2872 + ], + "id": 2873, + "label": "LTFR 2B", + "title": "" + }, + { + "dept": "HILA", + "description": "This course surveys the history of the native peoples of Mexico and the Andes from Iberian contact to the late colonial period (1492\u20131800). It focuses on changes and continuities in postconquest society, exploring topics such as gender, sexuality, and resistance.", + "edges_from": [], + "edges_to": [], + "id": 2874, + "label": "HILA 134", + "title": "Indians of Colonial Latin America (4)" + }, + { + "dept": "VIS", + "description": "Topics for this seminar concern Native American art history from ancient to contemporary times. Seminars may focus on archaeological and art historical approaches, philosophy and aesthetics, archaeoastronomy, and cultural contexts. Issues of globalization and transculturation may be examined as well. May be taken up to three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 2875, + "label": "VIS 260", + "title": "Seminar in North American Indian Art (4)" + }, + { + "dept": "HILA", + "description": "A century of Mexican history, 1821\u20131924: the", + "edges_from": [], + "edges_to": [], + "id": 2876, + "label": "HILA 131", + "title": "A History of Mexico (4)" + }, + { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS.", + "edges_from": [], + "edges_to": [], + "id": 2877, + "label": "HILA 132", + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + { + "dept": "MGT", + "description": "Defining markets for products and services, segmenting these markets, and targeting critical customers within segments. Strategies to position products and services within segments. The critical role of pricing as well as market research, product management, promotion, selling, and customer support. ", + "edges_from": [], + "edges_to": [ + 5545, + 3733, + 2879 + ], + "id": 2878, + "label": "MGT 103", + "title": "Product Marketing and Management (4)" + }, + { + "dept": "MGT", + "description": "Examines the sales function from strategic competitive importance to the firm to required direct sales skills of individual salespersons. Major subject areas covered are: the sales process, recruitment and training, organization and focus, \u201cterritories,\u201d evaluation and compensation. ", + "edges_from": [ + 2878 + ], + "edges_to": [], + "id": 2879, + "label": "MGT 106", + "title": "Sales and Sales Management (4)" + }, + { + "dept": "HIGR", + "description": "Research Seminar in Middle Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 2880, + "label": "HIGR 275B", + "title": "" + }, + { + "dept": "TWS", + "description": "In an attempt to explore and study some unique processes and aspects of community life, students will engage in research in field settings. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies.", + "edges_from": [], + "edges_to": [], + "id": 2881, + "label": "TWS 197", + "title": "Fieldwork (4)" + }, + { + "dept": "GPPS", + "description": "This course acquaints students with the leading theories on the causes and consequences of civil war since 1945 and the challenges associated with rebuilding social structures after catastrophic collapse. It will also provide a number of hands-on examples of how \u201cnew media\u201d work to speed the process of political mobilization, coalition formation, the persistence of clandestine networks, and issues of transparency and translation, with particular implications for urban warfare and insurgency. Renumbered from IRGN 429. Students may not receive credit for GPPS 42 and IRGN 429.", + "edges_from": [], + "edges_to": [], + "id": 2882, + "label": "GPPS 429", + "title": "Geopolitics, Insurgency, and Weak States (4)" + }, + { + "dept": "TWS", + "description": "Seminars will be organized on the basis of topics with readings, discussions, and papers. Specific subjects to be covered will change each quarter depending on particular interest of instructors or students. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 2883, + "label": "TWS 190", + "title": "Undergraduate Seminars (4)" + }, + { + "dept": "MAE", + "description": "Energy conversion and coupled transport processes; electron and phonons, equilibrium and non-equilibrium energy transfer in nanostructures. Ballistic-diffusive treatment, thermal radiation issues in nanomaterials, near-field energy transfer, molecular dynamics, and experimental methods. ", + "edges_from": [ + 1056, + 513, + 99, + 1052, + 1053 + ], + "edges_to": [], + "id": 2884, + "label": "MAE 225B", + "title": "Nanoscale and Microscale Heat Transfer for Energy Conversion Applications II (4)" + }, + { + "dept": "GPPS", + "description": "This course will introduce students to the major techniques for managing international problems through legal and administrative regulation. The class will offer an overview of the main theories relevant to policy, such as the choice and design of treaties and other legal instruments. Cases will be drawn from economics, finance, development, security, human rights, and environment. Renumbered from IRGN 427. Students may not receive credit for IRGN 427 and GPPS 427.", + "edges_from": [], + "edges_to": [], + "id": 2885, + "label": "GPPS 427", + "title": "International Law and Regulation (4)" + }, + { + "dept": "GPPS", + "description": "This course focuses on the relationships between workers, employers, and governments in global supply chains. How is work and labor regulated in various industries and parts of the world? How has this changed over time? When have workers become important political forces and how have governments and capital owners responded? How and why? What will the future of work look like? May not receive credit for GPPS 420 and the IRGN 490 course with the same title.", + "edges_from": [], + "edges_to": [], + "id": 2886, + "label": "GPPS 420", + "title": "Workers and Labor in Global Markets (4)" + }, + { + "dept": "GPPS", + "description": "The importance of inequality in income, wealth, and access to resources and opportunities can hardly be overstated. This course has several objectives: (1) to understand the measurement of inequality; (2) to understand the level of inequality in the United States versus other industrialized nations; (3) to see how political scientists and economists understand its causes and effects; (4) to understand why some think inequality is to their advantage; (5) to develop the tools and data for normative evaluations. May not receive credit for GPPS 421 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 2887, + "label": "GPPS 421", + "title": "The Politics of Economic Inequality (4)" + }, + { + "dept": "TWS", + "description": "Tutorial, individual guided reading and research projects (to be arranged between student and instructor) in an area not normally covered in courses currently being offered in the department. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2888, + "label": "TWS 199", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "GPPS", + "description": "Nongovernmental organizations monitor compliance with norms through shareholder activism, consumer pressures, political protest, creating \u201cbrands,\u201d and legal action. Course examines these strategies to determine what works best, and how organizations and individuals can influence corporations to \u201cdo the right thing.\u201d Renumbered from IRGN 423. Students may not receive credit for IRGN 423 and GPPS 423.", + "edges_from": [], + "edges_to": [], + "id": 2889, + "label": "GPPS 423", + "title": "Corporate Social Responsibility (4)" + }, + { + "dept": "PSYC", + "description": "This seminar introduces the various subdisciplines in psychology and their research methods, and also explores career and graduate school opportunities. This includes informal presentations by faculty, graduate students, and other professionals.", + "edges_from": [], + "edges_to": [], + "id": 2890, + "label": "PSYC 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "PSYC", + "description": "Selected topics in the field of psychology. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 2891, + "label": "PSYC 93", + "title": "Topics in Psychology (4)" + }, + { + "dept": "COGS", + "description": "This course introduces students to multiple methods to investigate cognition and behavior in natural settings. Students will learn about ethnography, videography (video data collection, coding, and analysis), surveys design and conducting interviews, and how to move from observations to modeling.", + "edges_from": [], + "edges_to": [], + "id": 2892, + "label": "COGS 13", + "title": "Field Methods: Studying Cognition in the Wild (4)" + }, + { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "edges_from": [], + "edges_to": [], + "id": 2893, + "label": "CHIN 20BM", + "title": "Second Year Chinese\u2014Mandarin speakers II (4)" + }, + { + "dept": "COGS", + "description": "This course uses the study of swearing to introduce topics in language: how children learn it, why it changes over time, and how people pronounce and understand it. Students who believe they could be offended by the study of swearing and other taboo language might not find this course appropriate for them.", + "edges_from": [], + "edges_to": [], + "id": 2894, + "label": "COGS 15", + "title": "What the *#!?: An Uncensored Introduction to Language (4)" + }, + { + "dept": "HIEU", + "description": "For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?", + "edges_from": [], + "edges_to": [], + "id": 2895, + "label": "HIEU 159S", + "title": "Three Centuries of Zionism 1648\u20131948 (4)" + }, + { + "dept": "PSYC", + "description": "Independent study or research under direction of a member of the faculty. May be taken up to three times for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 2896, + "label": "PSYC 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "HIUS", + "description": "The historical development of constitutional thought and practice in the United States from the era of the American Revolution through the Civil War, with special attention to the role of the Supreme Court under Chief Justices Marshall and Taney.", + "edges_from": [], + "edges_to": [], + "id": 2897, + "label": "HIUS 152A", + "title": "A Constitutional History of the United States to 1865 (4)" + }, + { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "edges_from": [], + "edges_to": [], + "id": 2898, + "label": "CHIN 20BD", + "title": "Second Year Chinese\u2014Dialect speakers II (4)" + }, + { + "dept": "HIEU", + "description": "This course covers the Later Byzantine Empire from the eleventh through the fifteenth century, examining the eleventh century crisis; the rise of the West and the Crusades; the Komnenian revolution; Slavic empires; the Palaiologan Renaissance; Mongols and Ottomans; the Byzantine diaspora. Students cannot receive credit for both HIEU 104 and HIEU 104C. Recommended preparation: HIEU 104A and/or HIEU 104B.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2899, + "label": "HIEU 104C", + "title": "The Byzantine Empire, 11th\u201315th centuries (4)" + }, + { + "dept": "HINE", + "description": "A close reading of select poetic passages from the Hebrew Bible/Old Testament.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2900, + "label": "HINE 112B", + "title": "Great Poems from the Hebrew Bible (4)" + }, + { + "dept": "HIEU", + "description": "This course is devoted to the Early Byzantine Empire from Constantine through the challenges and transformations of the seventh century, examining the rise and triumph of Christianity, war, diplomacy, the rise of Islam, climate change, epidemic and natural disasters. Students cannot receive credit for both HIEU 104 and HIEU 104A. Recommended preparation: HIEU 105.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2901, + "label": "HIEU 104A", + "title": "The Byzantine Empire, 3rd\u20137th centuries (4)" + }, + { + "dept": "CSE", + "description": "Automation and Prototyping for Embedded Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 2902, + "label": "CSE 237D", + "title": "Design" + }, + { + "dept": "CSE", + "description": "Embedded system technologies including processors, DSP, memory, and software. System interfacing basics, communication strategies, sensors, and actuators. Mobile and wireless technology in embedded systems. Using predesigned hardware and software components. Design case studies in wireless, multimedia, and/or networking domains. ", + "edges_from": [], + "edges_to": [], + "id": 2903, + "label": "CSE 237A", + "title": "Introduction to Embedded Computing (4)" + }, + { + "dept": "CSE", + "description": "and Testing of Embedded Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 2904, + "label": "CSE 237C", + "title": "Validation" + }, + { + "dept": "CSE", + "description": "Embedded computing elements, device interfaces,", + "edges_from": [], + "edges_to": [], + "id": 2905, + "label": "CSE 237B", + "title": "Software for Embedded Systems (4)" + }, + { + "dept": "FPM", + "description": "Focus on disseminating and scaling up health interventions in real-world settings. Interactive didactic sessions and guest lectures on implementation of research principles, approaches, and methods. Will design a proposal to implement or scale-up a clinical or public health intervention.", + "edges_from": [], + "edges_to": [], + "id": 2906, + "label": "FPM 291", + "title": "Dissemination and Implementation Science in Health: An Introduction (4)" + }, + { + "dept": "HIUS", + "description": "Women, American Womanhood 1870 to Present (4)", + "edges_from": [], + "edges_to": [], + "id": 2907, + "label": "HIUS 157", + "title": "American" + }, + { + "dept": "HIUS", + "description": "Women, American Womanhood (4)", + "edges_from": [], + "edges_to": [], + "id": 2908, + "label": "HIUS 156", + "title": "American" + }, + { + "dept": "HIUS", + "description": "Zoot Suits to Hip-Hop: Race and Popular Culture since World War II (4)", + "edges_from": [], + "edges_to": [], + "id": 2909, + "label": "HIUS 155", + "title": "From" + }, + { + "dept": "HIUS", + "description": "Survey of politicized criminal trials and", + "edges_from": [], + "edges_to": [], + "id": 2910, + "label": "HIUS 153", + "title": "American Political Trials (4)" + }, + { + "dept": "HIUS", + "description": "The history of American law and legal institutions. This course examines race relations and law, the rise of big business, the origins of the modern welfare state during the Great Depression, the crisis of civil liberties produced by two world wars and McCarthyism, and the Constitutional revolution wrought by the Warren Court. HIUS 150 is not a prerequisite for HIUS 151.", + "edges_from": [], + "edges_to": [], + "id": 2911, + "label": "HIUS 151", + "title": "American Legal History since 1865 (4)" + }, + { + "dept": "HIUS", + "description": "The history of American law and legal institutions. This quarter focuses on crime and punishment in the colonial era, the emergence of theories of popular sovereignty, the forging of the Constitution and American federalism, the relationship between law and economic change, and the crisis of slavery and Union.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 2912, + "label": "HIUS 150", + "title": "American Legal History to 1865 (4)" + }, + { + "dept": "HIEU", + "description": "This course examines how Athenians during different epochs have dealt and still deal with the realities of everyday life and death. The topics covered by the course include work, war, religion, politics, and death. Students must apply and be accepted into the Global Seminar Program. +", + "edges_from": [], + "edges_to": [], + "id": 2913, + "label": "HIEU 114GS", + "title": "Athens: A City in History (4)" + }, + { + "dept": "INTL", + "description": "Independent research connected to an internship with an organization relevant to the career interests of a student of international studies. Topic of the required research to be determined by the supervising faculty member. P/NP grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 2914, + "label": "INTL 97", + "title": "Internship (1)" + }, + { + "dept": "NANO", + "description": "Fundamentals in optical imaging and spectroscopy at the nanometer scale. Diffraction-limited techniques, near-field methods, multi-photon imaging and spectroscopy, Raman techniques, Plasmon-enhanced methods, scan-probe techniques, novel sub-diffraction-limit imaging techniques, and energy transfer methods. ", + "edges_from": [ + 2283, + 2916 + ], + "edges_to": [], + "id": 2915, + "label": "NANO 146", + "title": "Nanoscale Optical Microscopy and Spectroscopy (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 2282, + 596, + 130, + 687 + ], + "edges_to": [ + 2915 + ], + "id": 2916, + "label": "NANO 103", + "title": "" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the second of a three-course series. ", + "edges_from": [ + 2918 + ], + "edges_to": [ + 2919 + ], + "id": 2917, + "label": "EDS 262B", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 2917 + ], + "id": 2918, + "label": "EDS 262A", + "title": "" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third of a three-course series. ", + "edges_from": [ + 2917 + ], + "edges_to": [], + "id": 2919, + "label": "EDS 262C", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "HITO", + "description": "In this course we compare the Jewish experience to other religious minorities in American history. Topics include motives and rates of immigration, education and work patterns, religious experiences, women\u2019s roles, family life, and representations in popular and high culture.", + "edges_from": [], + "edges_to": [], + "id": 2920, + "label": "HITO 164/264", + "title": "Jews and Other Ethnics in the American Past (4)" + }, + { + "dept": "NEU", + "description": "Independent Study Project (ISP) (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 2921, + "label": "NEU 298", + "title": "Neurosciences" + }, + { + "dept": "NEU", + "description": "Independent study. (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 2922, + "label": "NEU 299", + "title": "Neurosciences Research (1\u201312)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 164.)", + "edges_from": [], + "edges_to": [], + "id": 2923, + "label": "CHEM 164", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 265; cross-listed with BIMM 162/BGGN 262.) Biological macromolecules and supramolecular complexes as well as organelles, and small cells are being examined in three dimensions by modern electron cryomicroscopy and image reconstruction techniques. The basic principles of transmission electron microscopy and 3D image reconstruction are discussed. CHEM 265/BGGN 262 students will be required to complete an additional assignment/exam beyond that expected of students in CHEM 165/BIMM 162. ", + "edges_from": [ + 708, + 1516, + 2925, + 240, + 27, + 30 + ], + "edges_to": [], + "id": 2924, + "label": "CHEM 165", + "title": "3D Electron Microscopy of Macromolecules (4)" + }, + { + "dept": "BIBC", + "description": "", + "edges_from": [], + "edges_to": [ + 2924 + ], + "id": 2925, + "label": "BIBC 110", + "title": "" + }, + { + "dept": "LATI", + "description": "A team-taught course wherein members of the faculty group in Latin American Studies present diverse disciplinary and thematic approaches to the region. Topics vary from year to year. Grades are based on discussions and on a series of analytical papers. ", + "edges_from": [], + "edges_to": [], + "id": 2926, + "label": "LATI 200", + "title": "Core Seminar on Interdisciplinary Research and Methodology in Latin American Studies (4)" + }, + { + "dept": "CHEM", + "description": "Basics of medicinal chemistry, emphasizing rigorous descriptions of receptor-protein structure, interactions, and dynamics; their implications for drug development; and an integrated treatment of pharmacodynamic and pharmacokinetic considerations in drug design. Treats computational approaches as well as practical experimental approaches. ", + "edges_from": [ + 2928, + 2929, + 2930, + 1516, + 1990 + ], + "edges_to": [], + "id": 2927, + "label": "CHEM 167", + "title": "Medicinal Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 1512, + 2641, + 1509, + 2070 + ], + "edges_to": [ + 5603, + 3144, + 3145, + 3979, + 2927, + 1082, + 5947, + 5950 + ], + "id": 2928, + "label": "CHEM 40CH", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5603, + 3144, + 3145, + 3979, + 2927, + 1082, + 5947, + 5950 + ], + "id": 2929, + "label": "CHEM 140C", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 5603, + 3144, + 3145, + 3979, + 2927, + 1082, + 5947, + 5950 + ], + "id": 2930, + "label": "CHEM 140CH", + "title": "" + }, + { + "dept": "HIEA", + "description": "Examines women\u2019s roles and experiences in the twentieth-century Chinese revolution, the ways in which women participated in the process of historical change, the question of to what extent the revolution \u201cliberated\u201d women from \u201cConfucian tradition.\u201d", + "edges_from": [], + "edges_to": [], + "id": 2931, + "label": "HIEA 138", + "title": "Women and the Chinese Revolution (4)" + }, + { + "dept": "HIEA", + "description": "and the Family in Chinese History (4)", + "edges_from": [], + "edges_to": [], + "id": 2932, + "label": "HIEA 137", + "title": "Women" + }, + { + "dept": "HIEA", + "description": "of Thought and Religion in China: Daoism (4)", + "edges_from": [], + "edges_to": [], + "id": 2933, + "label": "HIEA 136", + "title": "History" + }, + { + "dept": "HIEA", + "description": "of Thought and Religion in China: Buddhism (4)", + "edges_from": [], + "edges_to": [], + "id": 2934, + "label": "HIEA 135", + "title": "History" + }, + { + "dept": "HIEA", + "description": "of Thought and Religion in China: Confucianism (4)", + "edges_from": [], + "edges_to": [], + "id": 2935, + "label": "HIEA 134", + "title": "History" + }, + { + "dept": "HIEA", + "description": "China: Cultural History (4)", + "edges_from": [], + "edges_to": [], + "id": 2936, + "label": "HIEA 133", + "title": "Twentieth-Century" + }, + { + "dept": "LTSP", + "description": "Analysis of selected materials that represent the cultural and political relationship between Spain and its colonies. Close reading of literary texts and historical documents. Specific periods covered will fall between the origins of empire in the early sixteenth century to the demise of imperial Spain in 1898; topics may include cultural exchanges between Spain and Latin America, the Philippines, or the US Southwest. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 2937, + "label": "LTSP 116", + "title": "Representations of Spanish Colonialism (4)" + }, + { + "dept": "HIEA", + "description": "An exploration of the formative period of the twentieth-century Chinese Revolution: the New Culture Movement, modern urban culture, the nature of Nationalist (Guomindang) rule, war with Japan, revolutionary nationalism, and the Chinese Communist rise to power.", + "edges_from": [], + "edges_to": [], + "id": 2938, + "label": "HIEA 131", + "title": "China in War and Revolution, 1911\u20131949 (4)" + }, + { + "dept": "HIEA", + "description": "From the Opium War to the 1911 Revolution. Key topics include ethnic identity under Manchu rule, the impact of Western imperialism, the Taiping and other rebellions, overseas Chinese, social change and currents of reform, and the rise of Chinese nationalism.", + "edges_from": [], + "edges_to": [], + "id": 2939, + "label": "HIEA 130", + "title": "End of the Chinese Empire, 1800\u20131911 (4)" + }, + { + "dept": "POLI", + "description": "The political impact of major religious traditions\u2014including Christianity, Islam, Hinduism, and Confucianism\u2014around the world. ", + "edges_from": [], + "edges_to": [], + "id": 2940, + "label": "POLI 136", + "title": "Religion and Politics (4)" + }, + { + "dept": "POLI", + "description": "Political development has dominated the study of comparative politics among US academicians since the revival of the Cold War in 1947. This course examines critically this paradigm and its Western philosophical roots in the context of the experience of modern China.", + "edges_from": [], + "edges_to": [], + "id": 2941, + "label": "POLI 132", + "title": "Political Development and Modern China (4)" + }, + { + "dept": "ECE", + "description": "Processing Technology Laboratory (4)", + "edges_from": [], + "edges_to": [], + "id": 2942, + "label": "ECE 138L", + "title": "Microstructuring" + }, + { + "dept": "CENG", + "description": "Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with NANO 230. Students may not receive credit for both CENG 230 and NANO 230. ", + "edges_from": [], + "edges_to": [], + "id": 2943, + "label": "CENG 230", + "title": "Synchrotron Characterization of Nanomaterials (4)" + }, + { + "dept": "HIUS", + "description": "Explore how Asian Americans were involved in the political, economic, and cultural formation of United States society. Topics include migration; labor systems; gender, sexuality and social organization; racial ideologies and anti-Asian movements; and nationalism and debates over citizenship.", + "edges_from": [], + "edges_to": [], + "id": 2944, + "label": "HIUS 124/ETHN 125", + "title": "Asian American History (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 410, + 411, + 132, + 405, + 407 + ], + "edges_to": [ + 413 + ], + "id": 2945, + "label": "ECON 110A", + "title": "" + }, + { + "dept": "BICD", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 2946, + "label": "BICD 194", + "title": "Advanced Topics in Modern Biology: Cellular Development (2)" + }, + { + "dept": "MSED", + "description": "The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three-quarter sequence. ", + "edges_from": [], + "edges_to": [ + 2949 + ], + "id": 2947, + "label": "MSED 296A", + "title": "Theories and Applications of Mathematics and Science Education (4)" + }, + { + "dept": "MSED", + "description": "The course is designed to cover several major themes in mathematics and science education. It will address theories and applications of cognition, teaching and learning, and curriculum, with particular emphasis on international perspectives. This is a three quarter sequence. ", + "edges_from": [ + 2948, + 2949 + ], + "edges_to": [ + 2948 + ], + "id": 2948, + "label": "MSED 296C", + "title": "Theories and Applications of Mathematics and Science Education (4)" + }, + { + "dept": "MSED", + "description": "", + "edges_from": [ + 2947, + 2949 + ], + "edges_to": [ + 2948, + 2949 + ], + "id": 2949, + "label": "MSED 296B", + "title": "" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "edges_from": [], + "edges_to": [], + "id": 2950, + "label": "CHIN 100AM", + "title": "Third Year Chinese\u2014Mandarin speakers I (4)" + }, + { + "dept": "CHIN", + "description": "Intermediate", + "edges_from": [], + "edges_to": [], + "id": 2951, + "label": "CHIN 100AN", + "title": "Third Year Chinese\u2014Non-native speakers I (4)" + }, + { + "dept": "SE", + "description": "The course emphasizes the principles behind modern nonlinear structural analysis software. It deals with the theory, computer implementation, and applications of methods of material and geometric nonlinear analysis. Emphasis is on 2D and 3D frame structures modeled using 1D (beam-column) elements. Use of computer resources. ", + "edges_from": [ + 947 + ], + "edges_to": [], + "id": 2952, + "label": "SE 201B", + "title": "Nonlinear Structural Analysis (4)" + }, + { + "dept": "HINE", + "description": "Revolution in Historical Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 2953, + "label": "HINE 126", + "title": "Iranian" + }, + { + "dept": "BILD", + "description": "Fundamentals of human genetics and introduction to modern genetic technology", + "edges_from": [], + "edges_to": [], + "id": 2954, + "label": "BILD 20", + "title": "Human Genetics in Modern Society (4)" + }, + { + "dept": "PHIL", + "description": "Contemporary themes and problems in science studies. Focus on recent literature in the history, philosophy, and sociology of science, technology, and medicine.", + "edges_from": [], + "edges_to": [], + "id": 2955, + "label": "PHIL 209D", + "title": "Advanced Approaches to Science Studies (4)" + }, + { + "dept": "BILD", + "description": "A survey of our understanding of the basic", + "edges_from": [], + "edges_to": [], + "id": 2956, + "label": "BILD 22", + "title": "Human Nutrition (4)" + }, + { + "dept": "PHIL", + "description": "Study and discussion of classic work in history of science, philosophy of science, and of work that attempts to develop a unified science studies approach. Required of all students in the Science Studies Program.", + "edges_from": [], + "edges_to": [], + "id": 2957, + "label": "PHIL 209A", + "title": "Introduction to Science Studies (4)" + }, + { + "dept": "BILD", + "description": "Introduction to the elements of human physiology and the functioning of the various organ systems. The course presents a broad, yet detailed, analysis of human physiology, with particular emphasis toward understanding disease processes. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 26 after receiving credit for BIPN 100.", + "edges_from": [], + "edges_to": [], + "id": 2958, + "label": "BILD 26", + "title": "Human Physiology (4)" + }, + { + "dept": "PHIL", + "description": "Study and discussion of selected topics in the science studies field. Required of all students in the Science Studies Program. The topic varies from year to year and students may, therefore, repeat the course for credit. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 2959, + "label": "PHIL 209B", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "USP", + "description": "This course explores how economics contributes to understanding and solving urban problems using a \u201clearn by doing\u201d approach. Economic analysis will be applied to several important issues that planners and developers must deal with, such as land markets, housing, and zoning.", + "edges_from": [], + "edges_to": [], + "id": 2960, + "label": "USP 15", + "title": "Applied Urban Economics for Planning and Development (4)" + }, + { + "dept": "BENG", + "description": "Development, morphogenesis, growth, and remodeling of tissues and organs in health and disease. Integrative metabolism and biomechanics of cells and extracellular matrix at tissue, organ, and organism scales. Bioengineering restoration of tissues and organs. Industry applications and regulations. ", + "edges_from": [ + 2962 + ], + "edges_to": [], + "id": 2961, + "label": "BENG 241C", + "title": "Tissue Engineering and Regenerative Medicine: Development and Growth (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 2961, + 4347 + ], + "id": 2962, + "label": "BENG 241A", + "title": "" + }, + { + "dept": "TDMV", + "description": "Designed to provide training in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an intermediate technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ", + "edges_from": [ + 2964, + 2965 + ], + "edges_to": [ + 2966 + ], + "id": 2963, + "label": "TDMV 130", + "title": "Intermediate Jazz (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 2963 + ], + "id": 2964, + "label": "TDMV 3", + "title": "" + }, + { + "dept": "THDA", + "description": "", + "edges_from": [], + "edges_to": [ + 2963 + ], + "id": 2965, + "label": "THDA 3", + "title": "" + }, + { + "dept": "TDMV", + "description": "Further development in the technique of jazz dance, while placing the art form in its historical context as an American vernacular form. Builds an advanced technical jazz level with a focus on style, musicality, dynamics, and performance. May be taken for credit six times. ", + "edges_from": [ + 2963 + ], + "edges_to": [], + "id": 2966, + "label": "TDMV 133", + "title": "Advanced Jazz Dance (4)" + }, + { + "dept": "DSC", + "description": "The marriage of data, computation, and inferential thinking, or \u201cdata science,\u201d is redefining how people and organizations solve challenging problems and understand the world. This course bridges lower- and upper-division data science courses as well as methods courses in other fields. Students master the data science life-cycle and learn many of the fundamental principles and techniques of data science spanning algorithms, statistics, machine learning, visualization, and data systems. ", + "edges_from": [ + 496, + 2968 + ], + "edges_to": [], + "id": 2967, + "label": "DSC 80", + "title": "The Practice and Application of Data Science (4)" + }, + { + "dept": "DSC", + "description": "", + "edges_from": [ + 771, + 132, + 169, + 171, + 407, + 573 + ], + "edges_to": [ + 3376, + 2967 + ], + "id": 2968, + "label": "DSC 40A", + "title": "" + }, + { + "dept": "TDMV", + "description": "An introduction to the basic technique of hip-hop, studied to enhance an understanding of the historical cultural content of the American form hip-hop and street dances in current choreography. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [ + 5816, + 5817 + ], + "id": 2969, + "label": "TDMV 138", + "title": "Beginning Hip-Hop (2)" + }, + { + "dept": "MUS", + "description": "Consideration and development of pedagogical methods appropriate to undergraduate teaching. ", + "edges_from": [], + "edges_to": [], + "id": 2970, + "label": "MUS 501", + "title": "Apprentice Teaching\u2014Nondepartmental (4)" + }, + { + "dept": "MUS", + "description": "Participation in the undergraduate teaching program is required of all graduate students at the equivalent of 25 percent time for three quarters (six units is required for all graduate students). ", + "edges_from": [], + "edges_to": [], + "id": 2971, + "label": "MUS 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 2972, + "label": "LTEN 158", + "title": "Modern American Literature (4)" + }, + { + "dept": "POLI", + "description": "This internship is attached to the UCDC Program. Students participating in the UCDC Program are placed in an internship in the Washington, DC, area requiring approximately seventeen to twenty-three hours per week. ", + "edges_from": [], + "edges_to": [], + "id": 2973, + "label": "POLI 197I", + "title": "Political Science Washington Internship (6, 8)" + }, + { + "dept": "MATH", + "description": "Introduction to algebraic geometry. Topics chosen from: varieties and their properties, sheaves and schemes and their properties. May be taken for credit up to three times. ", + "edges_from": [ + 1855 + ], + "edges_to": [ + 4753 + ], + "id": 2974, + "label": "MATH 203A", + "title": "Algebraic Geometry I (4)" + }, + { + "dept": "COGS", + "description": "Special topics in cognitive science are discussed. (May be repeated when topics vary.) ", + "edges_from": [], + "edges_to": [], + "id": 2975, + "label": "COGS 160", + "title": "Upper-Division Seminar on Special Topics (4)" + }, + { + "dept": "POLI", + "description": "(Same as USP107) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the \u201cnew\u201d ethnic politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race.", + "edges_from": [], + "edges_to": [], + "id": 2976, + "label": "POLI 102E", + "title": "Urban Politics (4)" + }, + { + "dept": "CSE", + "description": "Current methods for data mining and predictive analytics. Emphasis is on studying real-world data sets, building working systems, and putting current ideas from machine learning research into practice. ", + "edges_from": [ + 17 + ], + "edges_to": [], + "id": 2977, + "label": "CSE 158", + "title": "Recommender Systems and Web Mining (4)" + }, + { + "dept": "CSE", + "description": "The goal of computer vision is to compute scene and object properties from images and video. This introductory course includes feature detection, image segmentation, motion estimation, object recognition, and 3-D shape reconstruction through stereo, photometric stereo, and structure from motion. ", + "edges_from": [ + 1073, + 11, + 573, + 17 + ], + "edges_to": [], + "id": 2978, + "label": "CSE 152", + "title": "Introduction to Computer Vision (4)" + }, + { + "dept": "CSE", + "description": "Construction of computational models that \u201cdo the same things people do,\u201d in terms of perception, categorization, memory, language, action, etc. and typically in a fashion that is plausibly carried out by the neural networks in our brains. The model must fit behavioral, neurophysiological, and/or neuropsychological data. Recommended preparation: background knowledge in computer science, cognitive science, psychology, or neuroscience, and a basic understanding of the most fundamental concepts of differential calculus, linear algebra, and statistics. Computer programming skills may be useful to some students as they conduct their term projects, but such skills are not required. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [], + "id": 2979, + "label": "CSE 153", + "title": "Cognitive Modeling (4)" + }, + { + "dept": "CSE", + "description": "to Artificial Intelligence: Search and Reasoning (4)", + "edges_from": [], + "edges_to": [], + "id": 2980, + "label": "CSE 150", + "title": "Introduction" + }, + { + "dept": "CSE", + "description": "to Artificial Intelligence: Statistical Approaches (4)", + "edges_from": [], + "edges_to": [], + "id": 2981, + "label": "CSE 151", + "title": "Introduction" + }, + { + "dept": "HLAW", + "description": "Students will learn fundamental principles and concepts of global health policy, law, and governance. The course will emphasize that global health policy challenges require a multidisciplinary approach involving a broad set of stakeholders and that local, national, and global health policy are all intertwined. ", + "edges_from": [], + "edges_to": [], + "id": 2982, + "label": "HLAW 219A", + "title": "Global Health Policy A: Foundations (3)" + }, + { + "dept": "SOCI", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in sociology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 2983, + "label": "SOCI 192", + "title": "Senior Seminar in Sociology (1)" + }, + { + "dept": "HLAW", + "description": "This course examines advanced current topics in global health policy using a combination of instruction, student participation, and policy simulation. Topics examined are cross-cutting across local, national, regional, and international health policy-making with practical examples of why more coordinated global health governance is needed. ", + "edges_from": [], + "edges_to": [], + "id": 2984, + "label": "HLAW 219B", + "title": "Global Health Policy B: Advanced Topics (3)" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 860 + ], + "id": 2985, + "label": "MMW 6", + "title": "" + }, + { + "dept": "PHYS", + "description": "This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 216. ", + "edges_from": [ + 2987, + 1119 + ], + "edges_to": [], + "id": 2986, + "label": "PHYS 116", + "title": "Fluid Dynamics for Physicists (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 2817, + 419, + 132, + 169, + 171, + 849, + 227, + 407, + 571, + 572, + 573 + ], + "edges_to": [ + 2986 + ], + "id": 2987, + "label": "PHYS 110B", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Same as PS 194, COGN 194, ERTH 194, HIST 193, USP 194.) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "edges_from": [ + 2988, + 2989 + ], + "edges_to": [ + 2988 + ], + "id": 2988, + "label": "SOCI 194", + "title": "Research Seminar in Washington, DC (4)" + }, + { + "dept": "SOCE", + "description": "", + "edges_from": [], + "edges_to": [ + 2988 + ], + "id": 2989, + "label": "SOCE 194", + "title": "" + }, + { + "dept": "PHYS", + "description": "The linear theory of ocean surface waves, including group velocity, wave dispersion, ray theory, wave measurement and prediction, shoaling waves, giant waves, ship wakes, tsunamis, and the physics of the surf zone. Cross-listed with SIO 111. Students cannot earn credit for both Physics 111 and SIO 111. ", + "edges_from": [ + 33, + 34, + 419, + 132, + 35, + 572, + 27, + 849, + 227, + 407, + 26, + 571, + 28 + ], + "edges_to": [], + "id": 2990, + "label": "PHYS 111", + "title": "Introduction to Ocean Waves (4)" + }, + { + "dept": "HILD", + "description": "A survey of contemporary issues concerning law and society, with emphasis on historical analysis and context. Satisfies the lower-division requirement for the law and society minor.", + "edges_from": [], + "edges_to": [], + "id": 2991, + "label": "HILD 50", + "title": "Introduction to Law and Society (4)" + }, + { + "dept": "MBC", + "description": "Building on the knowledge and experience gained from the entire curriculum of the master\u2019s in Marine Biodiversity and Conservation (MAS-MBC) program, students will design and present a specific marine conservation project. ", + "edges_from": [ + 2992, + 2993 + ], + "edges_to": [ + 2992 + ], + "id": 2992, + "label": "MBC 296", + "title": "Capstone Independent Study Project (6)" + }, + { + "dept": "SIOB", + "description": "", + "edges_from": [], + "edges_to": [ + 2992 + ], + "id": 2993, + "label": "SIOB 286", + "title": "" + }, + { + "dept": "PSYC", + "description": "Discussion of theories and experiments investigating language production, comprehension, or acquisition.", + "edges_from": [], + "edges_to": [], + "id": 2994, + "label": "PSYC 244", + "title": "Special Topics in Psycholinguistics (4)" + }, + { + "dept": "PSYC", + "description": "We often learn through observations or from testimony from others. Occasionally, we learn simply by thinking. How do we generate insights in the absence of new information from the external world? This course examines the cognitive capacities involved in learning by thinking, including thought experiments, deduction, analogy, imagination, and learning by explaining. This discussion-based seminar will take a cognitive science approach, emphasizing cognitive development. ", + "edges_from": [], + "edges_to": [], + "id": 2995, + "label": "PSYC 247", + "title": "Learning by Thinking in Children (and Adults) (4)" + }, + { + "dept": "PSYC", + "description": "This seminar focuses on the interplay between emotion and cognition. We will consider how emotion influences perception, reasoning, memory, and judgment, and how cognitive processes can have emotional consequences. We will also discuss physiological and neural underpinnings of affective influence and debate more general issues such as emotion and rationality. ", + "edges_from": [], + "edges_to": [], + "id": 2996, + "label": "PSYC 246", + "title": "Emotion and Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This hands-on programming course focuses on the design, implementation, and analysis of online experiments, particularly using Amazon\u2019s Mechanical Turk. Topics include experimental design and counterbalancing, stimulus presentation and timing, response collection using the mouse and keyboard, and debugging experiments written in JavaScript and HTML/CSS. Course work will include individual projects. Recommended preparation: Graduate students who have not programmed at all should speak with the professor beforehand. ", + "edges_from": [], + "edges_to": [], + "id": 2997, + "label": "PSYC 241", + "title": "Programming Web-Based Experiments for Psychology Research (4)" + }, + { + "dept": "PSYC", + "description": "This course will explore", + "edges_from": [], + "edges_to": [], + "id": 2998, + "label": "PSYC 240", + "title": "The Primate Brain (4)" + }, + { + "dept": "PSYC", + "description": "This course deals with perception of sound, particularly music, and focuses on unusual aspects of music perception, including musical illusions and absolute pitch. Relationships between music and language will be explored, and there will be discussions concerning the evolutionary origins of these two forms of communication. ", + "edges_from": [], + "edges_to": [], + "id": 2999, + "label": "PSYC 243", + "title": "Sound and Music Perception (4)" + }, + { + "dept": "PSYC", + "description": "Current Directions in Developmental Psychology (1)", + "edges_from": [], + "edges_to": [], + "id": 3000, + "label": "PSYC 242", + "title": "" + }, + { + "dept": "VIS", + "description": "Explores various strategies exhibited in a wide range of contemporary art practices engaging in the representation of personality, spirituality, and the physical self.", + "edges_from": [], + "edges_to": [], + "id": 3001, + "label": "VIS 218N", + "title": "Imaging Selves and Others (4)" + }, + { + "dept": "SIOC", + "description": "Thermodynamics and statics of dry and moist air, atmospheric composition, Earth radiation budget, vertical structure of the atmosphere, global energy balance, thermodynamic feedbacks in the climate system. Renumbered from SIO 217A. ", + "edges_from": [], + "edges_to": [ + 3008, + 3003, + 3004 + ], + "id": 3002, + "label": "SIOC 217A", + "title": "Atmospheric and Climate Sciences I (4)" + }, + { + "dept": "SIOC", + "description": "Radiative, physical, and dynamical processes that govern the mean state, variability, and change of the atmosphere and climate including greenhouse gases, clouds and aerosols, convection and precipitation, general circulation, and coupled atmosphere-ocean interactions. Renumbered from SIO 217C. ", + "edges_from": [ + 3002, + 3004, + 3005, + 3006 + ], + "edges_to": [ + 3008 + ], + "id": 3003, + "label": "SIOC 217C", + "title": "Atmospheric and Climate Sciences III (4)" + }, + { + "dept": "SIOC", + "description": "", + "edges_from": [ + 3002, + 3006 + ], + "edges_to": [ + 3008, + 3003 + ], + "id": 3004, + "label": "SIOC 217B", + "title": "" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 3008, + 3003 + ], + "id": 3005, + "label": "SIO 217B", + "title": "" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 3008, + 3003, + 3004 + ], + "id": 3006, + "label": "SIO 217A", + "title": "" + }, + { + "dept": "130A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3007, + "label": "130A-B-C", + "title": "Third-Year Japanese" + }, + { + "dept": "SIOC", + "description": "Atmospheric chemistry that impacts climate change, including photochemical reactions, ozone chemistry, and aerosol evolution in the troposphere and stratosphere. Atmospheric applications of catalytic cycles, heterogeneous chemistry, and microphysical processes will include the ozone hole, urban smog, and aerosol-cloud interactions. Renumbered from SIO 217D. Students may not receive credit for both SIOC 217D and SIO 217D. ", + "edges_from": [ + 3009, + 3002, + 3003, + 3004, + 3005, + 3006 + ], + "edges_to": [], + "id": 3008, + "label": "SIOC 217D", + "title": "Atmospheric and Climate Sciences IV (4)" + }, + { + "dept": "SIO", + "description": "", + "edges_from": [], + "edges_to": [ + 3008 + ], + "id": 3009, + "label": "SIO 217C", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides the opportunity for students to continue to carry out their research projects. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [ + 3011 + ], + "edges_to": [ + 3012 + ], + "id": 3010, + "label": "PSYC 194B", + "title": "Honors Thesis II (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 2056, + 2057, + 3013 + ], + "edges_to": [ + 3010 + ], + "id": 3011, + "label": "PSYC 194A", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides the opportunity for students to complete their research, write their honors thesis, and present their results at the Honors Poster Session. Must be taken for a letter grade for the Psychology Honors Program. ", + "edges_from": [ + 3010 + ], + "edges_to": [], + "id": 3012, + "label": "PSYC 194C", + "title": "Honors Thesis III (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 3011 + ], + "id": 3013, + "label": "PSYC 110", + "title": "" + }, + { + "dept": "SOCI", + "description": "Students test their own sociological research hypotheses using data from recent American and international social surveys and state-of-the-art computer software. Application of classical scientific method, interpretation of statistical results, and clear presentation of research findings. ", + "edges_from": [ + 2618, + 3014, + 3015 + ], + "edges_to": [ + 3014 + ], + "id": 3014, + "label": "SOCI 109", + "title": "Analysis of Sociological Data (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3014 + ], + "id": 3015, + "label": "SOCA 109", + "title": "" + }, + { + "dept": "SOCI", + "description": "Translation of research goals into a research design, including probability sampling, questionnaire construction, data collection (including interviewing techniques), data processing, coding, and preliminary tabulation of data. Statistical methods of analysis will be limited primarily to percentaging. ", + "edges_from": [ + 3016, + 3017, + 2618 + ], + "edges_to": [ + 3016 + ], + "id": 3016, + "label": "SOCI 108", + "title": "Survey Research Design (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3016 + ], + "id": 3017, + "label": "SOCA 108", + "title": "" + }, + { + "dept": "SOCI", + "description": "Social network analysts view society as a web of relationships rather than a mere aggregation of individuals. In this course, students will learn how to collect, analyze, and visualize social network data, as well as utilize these techniques to answer an original sociological research question. ", + "edges_from": [ + 2618 + ], + "edges_to": [], + "id": 3018, + "label": "SOCI 102", + "title": "Network Data and Methods (4)" + }, + { + "dept": "SOCI", + "description": "Major figures and schools in sociology from the early nineteenth century onwards, including Marx, Tocqueville, Durkheim, and Weber. The objective of the course is to provide students with a background in classical social theory, and to show its relevance to contemporary sociology. ", + "edges_from": [ + 3019, + 3020 + ], + "edges_to": [ + 3019 + ], + "id": 3019, + "label": "SOCI 100", + "title": "Classical Sociological Theory (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3019 + ], + "id": 3020, + "label": "SOCA 100", + "title": "" + }, + { + "dept": "SOCI", + "description": "Epidemiology is the statistical study of disease, and epidemiological methods are a powerful tool for understanding the causes of certain diseases, e.g., AIDS, scurvy, cholera, and lung cancer. These fundamental epidemiological methods will be taught. ", + "edges_from": [ + 2618, + 3021, + 3022 + ], + "edges_to": [ + 3021 + ], + "id": 3021, + "label": "SOCI 107", + "title": "Epidemiological Methods: Statistical Study of Disease (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3021 + ], + "id": 3022, + "label": "SOCA 107", + "title": "" + }, + { + "dept": "SOCI", + "description": "A broad-based consideration of the use of historical materials in sociological analysis, especially as this facilitates empirically oriented studies across different societies and through time, and their application in student research projects. ", + "edges_from": [ + 3024, + 2618, + 3023 + ], + "edges_to": [ + 3023 + ], + "id": 3023, + "label": "SOCI 106", + "title": "Comparative and Historical Methods (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3023 + ], + "id": 3024, + "label": "SOCA 106", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Conjoined with Soc/G 227.) Ethnographic recording of field data in written and audiovisual formats including film, video, and CD-ROM applications. Critical assessment of ethnographies and audiovisual ethnographic videotape. ", + "edges_from": [ + 3025, + 3026, + 3027 + ], + "edges_to": [ + 3025 + ], + "id": 3025, + "label": "SOCI 105", + "title": "Ethnographic Film: Media Methods (6)" + }, + { + "dept": "G", + "description": "", + "edges_from": [], + "edges_to": [ + 3025 + ], + "id": 3026, + "label": "G ??? 227", + "title": "" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3025 + ], + "id": 3027, + "label": "SOCA 105", + "title": "" + }, + { + "dept": "SOCI", + "description": "Research: Methods of Participant Observation (4)", + "edges_from": [], + "edges_to": [], + "id": 3028, + "label": "SOCI 104", + "title": "Field" + }, + { + "dept": "CSE", + "description": "Exploration of topics in mathematics and engineering", + "edges_from": [], + "edges_to": [], + "id": 3029, + "label": "CSE 4GS", + "title": "Mathematical Beauty in Rome (4)" + }, + { + "dept": "HDP", + "description": "Apprentice in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 3030, + "label": "HDP 195", + "title": "Instructional" + }, + { + "dept": "HDP", + "description": "This course combines lectures on research methodology (three hours/week) with an applied field research experience (four hours/week) conducted at a preapproved study site. Required: completion of a field notebook, review paper, oral presentation, and final paper. Students must submit the pre-enrollment questionnaire one academic year prior to enrollment. See", + "edges_from": [], + "edges_to": [], + "id": 3031, + "label": "HDP 191", + "title": "Field Research in Human Development (6)" + }, + { + "dept": "HDP", + "description": "Research in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 3032, + "label": "HDP 193", + "title": "Advanced" + }, + { + "dept": "HDP", + "description": "Study in Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 3033, + "label": "HDP 199", + "title": "Independent" + }, + { + "dept": "COGS", + "description": "Students engage in discussions of reading of recent research in an area designated and directed by the instructor and also participate in the design and execution of original research. Students are expected to demonstrate oral and written competence in presenting original research. ", + "edges_from": [], + "edges_to": [], + "id": 3034, + "label": "COGS 291", + "title": "Laboratory Research (1\u20134)" + }, + { + "dept": "COGS", + "description": "Laboratory rotations provide students with experience in the various experimental methods used in cognitive science. ", + "edges_from": [], + "edges_to": [], + "id": 3035, + "label": "COGS 290", + "title": "Cognitive Science Laboratory Rotation (2)" + }, + { + "dept": "HIGR", + "description": "Cross-listed as Communication 225B, Philosophy 209B, and Sociology 255B. Study and discussion of selected topics in the science studies field. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ", + "edges_from": [], + "edges_to": [], + "id": 3036, + "label": "HIGR 239", + "title": "Seminar in Science Studies (4)" + }, + { + "dept": "HIGR", + "description": "Cross-listed as Communication 225A, Philosophy 209A, and Sociology 255A. Study and discussion of classic work in history of science, sociology of science and philosophy of science, and of work that attempts to develop a unified science studies approach. Required for all students in the Science Studies Program. ", + "edges_from": [], + "edges_to": [], + "id": 3037, + "label": "HIGR 238", + "title": "Introduction to Science Studies (4)" + }, + { + "dept": "COGS", + "description": "Students are provided directed research on their dissertation topic by faculty advisers.", + "edges_from": [], + "edges_to": [], + "id": 3038, + "label": "COGS 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "HIGR", + "description": "This graduate seminar examines the archaeology of the eastern Mediterranean world from the Neolithic through Ottoman times. The seminar is thematically organized examining current methods and theories that apply to state-of-the-art research in one of the \u201cfoundational\u201d culture-historical regions in the world. Topics may include: archaeometry, archaeometallurgy, colonization, dating methods, settlement patterns and survey methodology, paleoclimate reconstruction, and geoarchaeology. Students may not receive credit for HIGR 234 and ANTH 207.", + "edges_from": [], + "edges_to": [], + "id": 3039, + "label": "HIGR 234", + "title": "Eastern Mediterranean Archaeology: New Perspectives (4)" + }, + { + "dept": "HIGR", + "description": "Cross-listed with SIO 201. Intensive study of specific problems in the history of the ocean sciences, and of related earth and atmospheric sciences, in the modern period. Topics vary from year to year, and students may therefore repeat the course for credit.", + "edges_from": [], + "edges_to": [], + "id": 3040, + "label": "HIGR 237", + "title": "Topics in the History of Ocean Sciences (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 3041, + "label": "EDS 261A", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 3042, + "label": "EDS 261C", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 3043, + "label": "EDS 261B", + "title": "Advanced" + }, + { + "dept": "LTWR", + "description": "Undergraduate instruction assistance. A student will 1) assist TA in editing students\u2019 writing for LTWR 8A-B-C during class and outside of class; and 2) prepare a paper and report for the professor at the end of the quarter. May be taken for credit up to two times. ", + "edges_from": [], + "edges_to": [], + "id": 3044, + "label": "LTWR 195", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "LTWR", + "description": "An advanced seminar open to all writing majors in their senior year. Required for those interested in the Honors Program. It offers an integrative experience by considering key facets of the discipline and profession, including relationships between aesthetics/culture and politics, genre writing, craft/technique, literary theories/theories of writing, and distribution/publication. ", + "edges_from": [], + "edges_to": [ + 5099 + ], + "id": 3045, + "label": "LTWR 194", + "title": "Capstone Course for Writing Majors (4)" + }, + { + "dept": "LTWR", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral exam. ", + "edges_from": [], + "edges_to": [], + "id": 3046, + "label": "LTWR 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "LTWR", + "description": "Tutorial; individual guidance in areas of writing not normally covered in courses. (P/NP grades only.) May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3047, + "label": "LTWR 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTWR", + "description": "Directed group study in areas of writing not normally covered in courses. (P/NP grades only.) Repeatable for credit when areas of study vary.", + "edges_from": [], + "edges_to": [], + "id": 3048, + "label": "LTWR 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "ECE", + "description": "Optical fibers, waveguides, laser communication", + "edges_from": [], + "edges_to": [], + "id": 3049, + "label": "ECE 243B", + "title": "Optical Fiber Communication (4)" + }, + { + "dept": "POLI", + "description": "Preparation of a major paper from research conducted while participating in the Research Apprenticeship (POLI 198RA). Presentations to and participation in weekly seminar meetings also required. Students can enroll in POLI 194RA only if they have previously taken or are simultaneously enrolled in 198RA. ", + "edges_from": [ + 2548 + ], + "edges_to": [], + "id": 3050, + "label": "POLI 194RA", + "title": "Research Apprenticeship Seminar (4)" + }, + { + "dept": "SE", + "description": "This course will treat quantitative aspects of the flow of uncontaminated groundwater as it influences the practice of geotechnical engineering. We will cover flow through porous media, generalized Darcy\u2019s law, groundwater modeling, confined and unconfined systems, well hydraulics, land subsidence, and construction dewatering.\u00a0", + "edges_from": [ + 3052 + ], + "edges_to": [], + "id": 3051, + "label": "SE 226", + "title": "Geotechnical Groundwater Engineering (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 3051 + ], + "id": 3052, + "label": "SE 241", + "title": "" + }, + { + "dept": "MDE", + "description": "Introduction of project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. ", + "edges_from": [], + "edges_to": [ + 3054 + ], + "id": 3053, + "label": "MDE 260A", + "title": "Design and Implementation of Medical Device Technology I (1)" + }, + { + "dept": "MDE", + "description": "Second of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will begin to design a medical device and an engineering strategy. ", + "edges_from": [ + 3053 + ], + "edges_to": [ + 3055 + ], + "id": 3054, + "label": "MDE 260B", + "title": "Design and Implementation of Medical Device Technology II (2)" + }, + { + "dept": "MDE", + "description": "Third of a three-quarter sequence, project-based course in medical device engineering, medical product regulation, quality systems and standards, engineering project management, and business development. Students will complete and implement their medical device design and engineering strategy. ", + "edges_from": [ + 3054 + ], + "edges_to": [], + "id": 3055, + "label": "MDE 260C", + "title": "Design and Implementation of Medical Device Technology III (1)" + }, + { + "dept": "MGTF", + "description": "Develop theories of behavior motivated by psychology to describe various features of financial markets. Examine how the insights from behavioral finance complement the traditional paradigm and shed light on investors\u2019 trading patterns, the behavior of asset prices, and corporate finance. Letter grades only. ", + "edges_from": [ + 3057 + ], + "edges_to": [], + "id": 3056, + "label": "MGTF 406", + "title": "Behavioral Finance (4)" + }, + { + "dept": "MGTF", + "description": "", + "edges_from": [], + "edges_to": [ + 3056, + 5160, + 3058, + 4740 + ], + "id": 3057, + "label": "MGTF 402", + "title": "" + }, + { + "dept": "MGTF", + "description": "Covering the fundamentals of corporate finance and their application to valuation (including the WACC approach, APV approach, multiples, and real option valuation). We focus on important areas of corporate finance, including capital structure, real options, and financial distress and bankruptcy. Letter grades only. ", + "edges_from": [ + 3057 + ], + "edges_to": [], + "id": 3058, + "label": "MGTF 407", + "title": "Valuation in Corporate Finance (4)" + }, + { + "dept": "MGTF", + "description": "Bridging the gap between theoretical financial models and the real world. Covering the major accomplishments of empirical finance. Empirical exercises and analysis of real financial data will help students to truly appreciate the content of the course. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 5160 + ], + "id": 3059, + "label": "MGTF 404", + "title": "Financial Econometrics and Empirical Methods (4)" + }, + { + "dept": "MGTF", + "description": "Introduction to state-of-the-art forecasting methods in finance. Students will learn to estimate forecasting models based on past values of the predicted variable(s), surveys, market information, and other economic data. Participants will become critical consumers of forecasts reported in the media. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3060, + "label": "MGTF 405", + "title": "Business Forecasting (4)" + }, + { + "dept": "MGTF", + "description": "Introduces ways to identify, measure, estimate, and control risks in the context of risk management as applied in fixed income, foreign exchange, and equity markets. Reviews the pricing and hedging applications of derivatives, such as futures, options, and CDSs. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 5160 + ], + "id": 3061, + "label": "MGTF 403", + "title": "Advanced Financial Risk Management (4)" + }, + { + "dept": "MGTF", + "description": "Overview of financial accounting reporting, with a primary focus on the analysis of economic events and their effect on the major financial statements (balance sheet, income statement, and statement of cash flows). Learn the nature and purpose of accounting methods. Letter grades only. Students may not receive credit for both MGTF 401 and MGT 404. ", + "edges_from": [], + "edges_to": [ + 5160 + ], + "id": 3062, + "label": "MGTF 401", + "title": "Financial Accounting (4)" + }, + { + "dept": "MAE", + "description": "Challenges: Science and Solutions (4)", + "edges_from": [], + "edges_to": [ + 3515 + ], + "id": 3063, + "label": "MAE 124", + "title": "Environmental" + }, + { + "dept": "MAE", + "description": "Introduction to groundwater flow. Pollution transport through the water table. Fundamentals of flow. Single- and multi-phase flow. Darcy law. Well hydraulics. Diffusion and dispersion. Gravity currents and plumes in porous media. Chemistry of fluid-solid interactions. Fundamentals of adsorption and surface reactions. ", + "edges_from": [ + 3065, + 554, + 1052, + 1054 + ], + "edges_to": [], + "id": 3064, + "label": "MAE 123", + "title": "Introduction to Transport in Porous Media (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3064, + 3309 + ], + "id": 3065, + "label": "MAE 105", + "title": "" + }, + { + "dept": "MAE", + "description": "Introduction to the air and aquatic environments. Buoyancy, stratification, and rotation. Earth surface energy balance. Introduction to the atmospheric boundary layer. Advection and diffusion. Turbulent diffusion and dispersion in rivers and in the atmospheric boundary layer. Surface waves and internal gravity waves. ", + "edges_from": [ + 98, + 99 + ], + "edges_to": [ + 3067 + ], + "id": 3066, + "label": "MAE 122", + "title": "Flow and Transport in the Environment (4)" + }, + { + "dept": "MAE", + "description": "Overview of air pollution and wastes and their impact. Characteristics of air pollutants. Air pollution transport. Atmospheric stability. Plume rise and dispersion. Meteorological data. Selecting the appropriate air quality model and case studies. Modeling complex terrain situations. Current air quality modeling issues. Laws and regulations to control air pollution. ", + "edges_from": [ + 3066, + 3068 + ], + "edges_to": [], + "id": 3067, + "label": "MAE 121", + "title": "Air Pollution Transport and Dispersion Modeling (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3067 + ], + "id": 3068, + "label": "MAE 125A", + "title": "" + }, + { + "dept": "MAE", + "description": "Overview of basic fission and fusion processes. Elementary fission reactor physics and engineering; environmental and waste disposal issues. Survey of fusion technology issues and perspectives. May not receive credit for both MAE 118C and MAE 120. ", + "edges_from": [ + 98, + 99 + ], + "edges_to": [], + "id": 3069, + "label": "MAE 120", + "title": "Introduction to Nuclear Energy (4)" + }, + { + "dept": "PHIL", + "description": "Central issues in contemporary philosophy of language, such as the nature of linguistic meaning, truth, content, reference, the syntax and semantics of various linguistic constructions, presupposition, speech acts, the epistemology of language understanding and language learning, the mental/psychological basis of linguistic understanding and use. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3070, + "label": "PHIL 234", + "title": "Philosophy of Language (4)" + }, + { + "dept": "PHIL", + "description": "Contemporary debates on the nature, function, and operation of the mental. May include questions about the mind-body relation, mental causation, perception, consciousness, and mental representation. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3071, + "label": "PHIL 236", + "title": "Philosophy of Mind (4)" + }, + { + "dept": "PHIL", + "description": "Topics may include identity, personal identity, universals and particulars, modality and possible worlds, causation, reduction, supervenience, freedom and determinism, space and time, and realism versus antirealism. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3072, + "label": "PHIL 230", + "title": "Metaphysics (4)" + }, + { + "dept": "PHIL", + "description": "This seminar will cover issues such as rival accounts of knowledge, justification, and warrant, traditional and contemporary perspectives on empiricism, rationalism, and pragmatism, and skepticism. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3073, + "label": "PHIL 232", + "title": "Epistemology (4)" + }, + { + "dept": "MUS", + "description": "Advanced topics in music technology and its application to composition and/or performance. Offerings vary according to faculty availability and interest. May be repeated for credit. ", + "edges_from": [ + 1877 + ], + "edges_to": [], + "id": 3074, + "label": "MUS 267", + "title": "Advanced Music Technology Seminar (4)" + }, + { + "dept": "BENG", + "description": "Quantitative description of physiological systems, e.g., electrical and mechanical properties of muscle (skeletal and cardiac). Modeling and simulation of properties. Kidney, transport, and models. Neural circuits and models. ", + "edges_from": [ + 2533, + 844, + 845, + 2534, + 847 + ], + "edges_to": [], + "id": 3075, + "label": "BENG 189", + "title": "Physiological Systems Engineering (4)" + }, + { + "dept": "PHYS", + "description": "Quantized electromagnetic fields and introductory quantum optics. Symmetry and conservation laws. Introductory many-body physics. Density matrix, quantum coherence and dissipation. The relativistic electron. Three-hour lecture, one-hour discussion session. ", + "edges_from": [ + 1364 + ], + "edges_to": [], + "id": 3076, + "label": "PHYS 130C", + "title": "Quantum Physics III (4)" + }, + { + "dept": "VIS", + "description": "Advanced studies in the secular and religious art traditions of China. From year to year, the seminar may focus on early China (Neolithic to the end of the T\u2019ang dynasty), on later dynasties (Sung, Yuan, Ming) or on art of the People\u2019s Republic. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3077, + "label": "VIS 258", + "title": "Seminar in Chinese Art (4)" + }, + { + "dept": "VIS", + "description": "Historical and theoretical problems in the art of Mexico, Central, and South America art from the colonial period to today, as well as from the Hispanic traditions of the American Southwest. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3078, + "label": "VIS 259", + "title": "Seminar in Latin American Art (4)" + }, + { + "dept": "VIS", + "description": "Research seminar in media history, theory, and/or criticism. Potential topics: digital media aesthetics, television or radio, new media, theory of photography and/or other image forms in digital era. Focus on a specific period, theme, or context. Class devoted to discussion of readings in connection with viewing of media and related forms. Students will gain advanced knowledge of a specialized aspect of media history, theory, or criticism in a setting that promotes research, reports, and writing. ", + "edges_from": [ + 3080, + 841, + 731 + ], + "edges_to": [], + "id": 3079, + "label": "VIS 151A", + "title": "Seminar in Media History and Theory (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 5729, + 3317, + 3079 + ], + "id": 3080, + "label": "VIS 22", + "title": "" + }, + { + "dept": "VIS", + "description": "European art from late antiquity through the fourteenth century and the historical processes by which \u201cmedieval\u201d art has been constructed as a category. Topics may include devotional vision and the sacred image; medieval comic genres; neo-medievalism, fifteenth century to today. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3081, + "label": "VIS 251", + "title": "Seminar in Medieval Art (4)" + }, + { + "dept": "VIS", + "description": "Concentrates on the art of the Renaissance in Italy and the North through a changing series of topics, e.g., Vision and Composition in Perspective; The Sistine Chapel; Envisioning Jan Van Eyck; Renaissance Print Making; Leonardo da Vinci\u2019s La Gioconda. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3082, + "label": "VIS 252", + "title": "Seminar in Renaissance Art (4)" + }, + { + "dept": "VIS", + "description": "European and American Art, ca. 1850 to 1960. Questions in Impressionism and Postimpressionism; The Cubist Revolution: Marcel Duchamp and the Anti-Formalist Tradition; American Modernism; Reckoning with Abstract Art; Issues of Dada and Surrealism; Soviet Avant-Gardes. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3083, + "label": "VIS 254", + "title": "Seminar in Modern Art (4)" + }, + { + "dept": "VIS", + "description": "Thematic and critical discussions of recent US and international art, 1960s to the present. Art/Text; Mixed Media Practices; Conceptual Art; Art After Appropriation; Global Art at the Millennium; New Genres of Public Art; Mike Kelly and the Conceptual Vernacular: Art and Activism. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3084, + "label": "VIS 255", + "title": "Seminar in Contemporary Art (4)" + }, + { + "dept": "VIS", + "description": "Topics in media (photography, film, video) and new media, contemporary or historical. Coverage may be broad or addressed to a particular topic such as Film Remakes; Silent Cinema; Photography and Social Movements; The Language of New Media. ", + "edges_from": [], + "edges_to": [], + "id": 3085, + "label": "VIS 256", + "title": "Seminar in Media and New Media (4)" + }, + { + "dept": "VIS", + "description": "Topics relating to the art and civilizations of Pre-Columbian Mexico and Central America, either specifically art historical (such as iconographic, formal, and stylistic analysis) or encompassing a spectrum of interdisciplinary and cultural/historical problems. May be taken three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3086, + "label": "VIS 257", + "title": "Seminar in Meso-American Art (4)" + }, + { + "dept": "CSE", + "description": "Study in Computer Science and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 3087, + "label": "CSE 99", + "title": "Independent" + }, + { + "dept": "BENG", + "description": "Mechanical properties of structures involved in movement (muscles, tendons, bones). Models of neuromuscular adaptation to chronic electrical stimulation, voluntary exercise, surgical overload, spinal cord injury, denervation, limb immobilization, exercise-induced injury and muscle regeneration. Stem cells in muscle function and plasticity. ", + "edges_from": [], + "edges_to": [], + "id": 3088, + "label": "BENG 233", + "title": "Neuromuscular Physiology and Biomechanics (4)" + }, + { + "dept": "BENG", + "description": "An overview of the musculoskeletal system from a bioengineering perspective. Health, injury, disease of bone, cartilage, tendon, ligament, meniscus, synovium, intervertebral disc, skeletal muscle, peripheral nerve. Mechanisms and models underlying current and future therapies. ", + "edges_from": [], + "edges_to": [], + "id": 3089, + "label": "BENG 232", + "title": "Musculoskeletal Health, Injury, and Disease (4)" + }, + { + "dept": "BENG", + "description": "This course will introduce quantitative fluorescence microscopy techniques for imaging, manipulating, and quantifying the spatiotemporal characteristics of molecular events in live cells. A laboratory component will be integrated with students organized into small teams for projects. Recommended preparation: basic optics at the level of ECE 181, introductory molecular and cellular biology at the level of BIMM 100 and BICD 110, respectively. ", + "edges_from": [], + "edges_to": [], + "id": 3090, + "label": "BENG 235", + "title": "Molecular Imaging and Quantitation in Living Cells (4)" + }, + { + "dept": "MUS", + "description": "Assisting in the instruction of an undergraduate music class under the direct and constant supervision of a faculty member. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3091, + "label": "MUS 195", + "title": "Instructional Assistance (2)" + }, + { + "dept": "CSE", + "description": "A seminar providing an overview of a topic of current research interest to the instructor. The goal is to present a specialized topic in computer science and engineering students. May be taken for credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3092, + "label": "CSE 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (2)", + "edges_from": [], + "edges_to": [], + "id": 3093, + "label": "CSE 91", + "title": "Perspectives" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 3094, + "label": "Linguistics/Hindi (LIHI) 1AX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120B or after successful completion of Econ 120B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 3095, + "label": "ECON 120BH", + "title": "Honors Econometrics B (1)" + }, + { + "dept": "ECE", + "description": "Study of wireless networked systems from a system design perspective, covering the protocol stack from physical to network layer with a focus on energy. Topics include digital communications, networking and programming, and a basic knowledge of these is recommended. ", + "edges_from": [], + "edges_to": [], + "id": 3096, + "label": "ECE 267", + "title": "Wireless Embedded and Networked Systems (4)" + }, + { + "dept": "ECE", + "description": "The course gives an overview of areas of security and protection of modern hardware, embedded systems, and IoTs. Covers essential cryptographic methodologies and blocks required for building a secure system. Topics include low overhead security, physical and side-channel attacks, physical security primitives, physical security and proofs of presence, hardware-based secure program execution, scalable implementation of secure functions, emerging technologies, and rising threats. Recommended preparation: Programming in a standard programming language. Undergraduate level knowledge of the IC design flow and digital designs.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3097, + "label": "ECE 268", + "title": "Security of Hardware Embedded Systems (4)" + }, + { + "dept": "ECE", + "description": "Thermally activated processes. Boltzman factor, homogeneous and heterogeneous reactions, solid state diffusion, Fick\u2019s law, diffusion mechanisms, Kirkendall effects, Boltzmann-Manato analysis, high diffusivity paths. Cross-listed with Materials Science 201B and MAE 271B. ", + "edges_from": [ + 3099 + ], + "edges_to": [], + "id": 3098, + "label": "ECE 238B", + "title": "Solid State Diffusion and Reaction Kinetics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3098 + ], + "id": 3099, + "label": "ECE 238A", + "title": "" + }, + { + "dept": "HIEU", + "description": "The political, economic, and intellectual history of the Roman world from the foundation of Rome to the disintegration of the Western empire. This course will emphasize the importance of the political and cultural contributions of Rome to modern society. +", + "edges_from": [], + "edges_to": [], + "id": 3100, + "label": "HIEU 102A", + "title": "Ancient Roman Civilization (4)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in business and addresses the new frontiers in the industry. Topics may include intellectual property, consumer behavior, market research, analytics, and spreadsheet modeling, etc. May be taken for credit three times. Instructional methods include face-to-face lecture, case presentation, assigned reading, and group discussion. ", + "edges_from": [], + "edges_to": [], + "id": 3101, + "label": "MGT 119", + "title": "Topics in Business (4)" + }, + { + "dept": "LTEA", + "description": "and Sexuality in Korean Literature and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 3102, + "label": "LTEA 143", + "title": "Gender" + }, + { + "dept": "LTEA", + "description": "Film, Literature, and Popular Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 3103, + "label": "LTEA 142", + "title": "Korean" + }, + { + "dept": "LTEA", + "description": "A survey of modern Korean prose fiction and poetry from 1945 to the 1990s. Examination of literary representations of national division, the Korean War, accelerated industrialization, authoritarian rule, and the labor/agrarian movements.", + "edges_from": [], + "edges_to": [], + "id": 3104, + "label": "LTEA 141", + "title": "Modern Korean Literature in Translation from 1945 to Present (4)" + }, + { + "dept": "LTEA", + "description": "Korean Literature in Translation from Colonial Period (4)", + "edges_from": [], + "edges_to": [], + "id": 3105, + "label": "LTEA 140", + "title": "Modern" + }, + { + "dept": "LTEA", + "description": "American Literature and Other Literatures of Korean Diaspora (4)", + "edges_from": [], + "edges_to": [], + "id": 3106, + "label": "LTEA 144", + "title": "Korean" + }, + { + "dept": "LTCS", + "description": "A reading of recent theory on popular culture and a study of particular texts dealing with popular cultural practices, both contemporary and noncontemporary, as sites of conflict and struggle. LTCS 110 and LTCS 110GS may be taken for credit for a combined total of three times.", + "edges_from": [], + "edges_to": [], + "id": 3107, + "label": "LTCS 110", + "title": "Popular Culture (4)" + }, + { + "dept": "LTCS", + "description": "Topics in Popular Culture in Historical Context (4)", + "edges_from": [], + "edges_to": [], + "id": 3108, + "label": "LTCS 111", + "title": "Special" + }, + { + "dept": "GPPS", + "description": "This course uses major banking, debt, and currency crises as lenses for focusing on the governance of international monetary and financial relations. It traces regional and global exchange regimes and cross-border financial flows beginning with the gold standard and Great Depression through the rise of regional currency blocs, the Euro, and the role of \"reserve currencies.\" The course concludes by investigating the politics and distributional consequences of banking and financial regulation. Renumbered from IRGN 402. Students may not receive credit for IRGN 402 and GPPS 402.", + "edges_from": [], + "edges_to": [], + "id": 3109, + "label": "GPPS 402", + "title": "International Political Economy: Money and Finance (4)" + }, + { + "dept": "GPPS", + "description": "This course examines China\u2019s efforts to become a world-class technological and military power, focusing on the technological foundations of its security as it relates to long-term economic and strategic competitiveness and the sources of its growing technological innovation. Topics will include: Imperial and Maoist legacies; political economy of security and technology; ideologies and organizing strategies that China employs in moving up the innovation ladder; and others. Renumbered from IRGN 403. Students may not receive credit for IRGN 403 and GPPS 403.", + "edges_from": [], + "edges_to": [], + "id": 3110, + "label": "GPPS 403", + "title": "Chinese Security, Technology, and Innovation (4)" + }, + { + "dept": "GPPS", + "description": "International relations and developing international political economies of nations bordering the Pacific. Topics include: the \u201cPacific Basin\u201d concept; the United States and \u201chegemonic-stability\u201d theory; legacies of the Korean War and Sino-Soviet dispute; immigration patterns and their consequences; and Japan\u2019s foreign policy. Renumbered from IRGN 400. Students may not receive credit for GPPS 400 and IRGN 400.", + "edges_from": [], + "edges_to": [], + "id": 3111, + "label": "GPPS 400", + "title": "International Relations of Asia-Pacific (4)" + }, + { + "dept": "GPPS", + "description": "Post-2003 civil wars are different from previous ones in striking ways. First, the majority are situated in Muslim-majority countries. Second, most of the rebel groups espouse radical Islamist ideas. Third, of these groups, most are pursuing transnational rather than national goals. Current theory explains a great deal, but not everything. For example, it does not account for information and communication technology. These innovations are critical to understanding the new civil wars. Renumbered from IRGN 401. Students may not receive credit for GPPS 401 and IRGN 401.", + "edges_from": [], + "edges_to": [], + "id": 3112, + "label": "GPPS 401", + "title": "The New \u201cNew\u201d Civil Wars (4)" + }, + { + "dept": "GPPS", + "description": "China\u2019s role in the global economy and its implications for regimes of global governance. Topics include trade, lending, investments, the globalization of state-owned enterprises, currency internationalization, participation in regional and international organizations, and China\u2019s economic diplomacy and foreign policy. We will ask whether China contributes to or threatens the liberal economic order; what governments and policy actors can do to engage China in a productive and peaceful fashion. Students may not receive credit for GPPS 406 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 3113, + "label": "GPPS 406", + "title": "China in the Global Economic Order (4)" + }, + { + "dept": "GPPS", + "description": "This course examines the nature, evolution, dynamics, and key elements of China\u2019s approach and engagement with the international system, especially in the twenty-first century, with a focus on national security and defense. Topics include: understanding the structure and process of Chinese decision making; the nature of Chinese policies and strategies; the evolution of Chinese military power; the rise of the Chinese national security state; Chinese grand strategy, and US-China relations. May not receive credit for GPPS 407 and the IRGN 490 with the same title.", + "edges_from": [], + "edges_to": [], + "id": 3114, + "label": "GPPS 407", + "title": "The International Relations and National Security of China (4)" + }, + { + "dept": "GPPS", + "description": "This course will analyze post-1949 Chinese politics, including political institutions, the policy making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 404. Students may not receive credit for IRGN 404 and GPPS 404.", + "edges_from": [], + "edges_to": [], + "id": 3115, + "label": "GPPS 404", + "title": "Chinese Politics (4)" + }, + { + "dept": "GPPS", + "description": "Can the United States and China manage to develop a constructive relationship or are they headed toward a hostile relationship? This course addresses this question by examining the domestic and international influences on the foreign policies of both countries and key issues in the bilateral relationship. Students also do policy projects. Renumbered from IRGN 405. Students may not receive credit for IRGN 405 and GPPS 405.", + "edges_from": [], + "edges_to": [], + "id": 3116, + "label": "GPPS 405", + "title": "US-China Relations (4)" + }, + { + "dept": "GPPS", + "description": "This course will consider major security issues on the Korean peninsula, including the evolution of the US-South Korea alliance and the management of the current nuclear crisis. A distinctive feature of the course will be a consideration of the political economy of recent developments on the peninsula, particularly with respect to North Korea, and an extended discussion of the logic and strategy of engagement. Renumbered from IRGN 408. Students may not receive credit for IRGN 408 and GPPS 408.", + "edges_from": [], + "edges_to": [], + "id": 3117, + "label": "GPPS 408", + "title": "Korean Security (4)" + }, + { + "dept": "CSE", + "description": "Discussion on problems of current research", + "edges_from": [], + "edges_to": [], + "id": 3118, + "label": "CSE 239A", + "title": "Topics/Seminar in Databases (1\u20134)" + }, + { + "dept": "GPPS", + "description": "The course is designed to develop the analytical tools to assess how foreign aid is allocated and whether it is effective. We will ask the following key questions: (1) Why do states give foreign aid?; (2) Is foreign aid effective?; (3) How do donors allocate foreign aid?; (4) What are the differences between bilateral and multilateral aid?; and, (5) Are there unintended consequences of foreign aid? The readings will consist of both seminal and recent works in political science and economics. May not receive credit for GPPS 450 and the IRGN 490 with the same course title.", + "edges_from": [], + "edges_to": [], + "id": 3119, + "label": "GPPS 450", + "title": "The Political Economy of Foreign Aid (4)" + }, + { + "dept": "HILA", + "description": "This course will focus on several instances of US aggression in Latin America since 1898, covering military invasions, covert actions, and economic forms of coercion. Specific case studies will include events in Mexico in 1914, Cuba in 1933 and 1959\u20131962, Guatemala in 1954, and Chile in 1973.", + "edges_from": [], + "edges_to": [], + "id": 3120, + "label": "HILA 118", + "title": "Subverting Sovereignty: US Aggression in Latin America, 1898\u2013Present (4)" + }, + { + "dept": "MAE", + "description": "Propagation and absorption of laser beam in plasma, ablation pressure. Laser scattering and laser-plasma instabilities (stimulated Raman and Brillouin scattering, filamentation and decay instabilities). Electron heat transport, mechanisms of magnetic field generation. ", + "edges_from": [ + 1670 + ], + "edges_to": [], + "id": 3121, + "label": "MAE 218B", + "title": "Introduction to High Energy Density Physics (Laser-Plasma Interactions) (4)" + }, + { + "dept": "MAE", + "description": "to High Energy Density Physics (MHD and Pinches) (4)", + "edges_from": [], + "edges_to": [], + "id": 3122, + "label": "MAE 218A", + "title": "Introduction" + }, + { + "dept": "HILA", + "description": "Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.", + "edges_from": [], + "edges_to": [], + "id": 3123, + "label": "HILA 110", + "title": "Lord and Peasant in Latin America (4)" + }, + { + "dept": "HILA", + "description": "The development of family structures and relations among different ethnic groups. State and economy define and are defined by family relations. Thus this family approach also provides an understanding to broader socioeconomic processes and cultural issues.", + "edges_from": [], + "edges_to": [], + "id": 3124, + "label": "HILA 117", + "title": "Indians, Blacks, and Whites: Family Relations in Latin America (4)" + }, + { + "dept": "HILA", + "description": "How did dictatorships come about? Who were the authoritarian leaders? How did they organize their regimes and what were the consequences? Recent publications on dictators in Latin America allow for comparisons across countries and throughout time to answer these questions.", + "edges_from": [], + "edges_to": [], + "id": 3125, + "label": "HILA 114", + "title": "Dictatorships in Latin America (4)" + }, + { + "dept": "HILA", + "description": "A survey of the development of urban forms of Latin America and of the role that cities played in the region as administrative and economic centers. After a brief survey of pre-Columbian centers, the lectures will trace the development of cities as outposts of the Iberian empires and as \u201ccity-states\u201d that formed the nuclei of new nations after 1810. The course concentrates primarily on the cities of South America, but some references will be made to Mexico City. It ends with a discussion of modern social ills and Third World urbanization. Lima, Santiago de Chile, Buenos Aires, Rio de Janeiro, and Sao Paulo are its principal examples.", + "edges_from": [], + "edges_to": [], + "id": 3126, + "label": "HILA 115", + "title": "The Latin American City, a History (4)" + }, + { + "dept": "SE", + "description": "Techniques of computation with the finite element method. Preprocessing (geometry, mesh generation, boundary conditions), solution methods (statics including contact, dynamics, buckling), and postprocessing (visualization, error estimation, interpretation of results). Hands-on exercises with commercial and open-source software. Use of computer resources. ", + "edges_from": [ + 3128, + 1234, + 1237, + 1238 + ], + "edges_to": [], + "id": 3127, + "label": "SE 280", + "title": "Finite Element Computations in Solid Mechanics (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 3127 + ], + "id": 3128, + "label": "SE 276B", + "title": "" + }, + { + "dept": "EDS", + "description": "First course in a two-course sequence. Provides a theoretical and practical grounding in various pedagogical techniques for teaching in bilingual settings. Course covers principles of bilingualism and bilingual pedagogy; transfer between primary and target languages as appropriate to the language(s) of emphasis. Candidates study methods for teaching primary and target languages in a variety of program models; curriculum/assessment practices; and approaches for interacting with families/communities. ", + "edges_from": [], + "edges_to": [ + 5279 + ], + "id": 3129, + "label": "EDS 352A", + "title": "Bilingual Instructional Practices I (2)" + }, + { + "dept": "WCWP", + "description": "An upper-division workshop course in argumentation and research with particular attention to analyzing and constructing academic arguments. A course specially designed for and required of transfer students who enter Warren College through the TAG, IGETC, or another articulation agreement. The course must be taken for a letter grade to fulfill this requirement. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3130, + "label": "WCWP 100", + "title": "Academic Writing (4)" + }, + { + "dept": "ERC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3131, + "label": "ERC 1", + "title": "First Year Experience (2)" + }, + { + "dept": "HIUS", + "description": "This seminar will examine racial formation in relation to US wars in American history. Topics include \u201cmanifest destiny\u201d and the frontier; radicalism and the \u201cRed Scare\u201d; the border patrol; civil rights movements; the \u201cwar on drugs\u201d and mass incarceration. ", + "edges_from": [], + "edges_to": [], + "id": 3132, + "label": "HIUS 174", + "title": "Race Wars in American Culture (4)" + }, + { + "dept": "HIUS", + "description": "This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.", + "edges_from": [], + "edges_to": [], + "id": 3133, + "label": "HIUS 177", + "title": "Asian American Historiography (4)" + }, + { + "dept": "ERC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3134, + "label": "ERC 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "ECON", + "description": "Controlled reading and discussion with adviser; literature survey. May be repeated for credit. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 3135, + "label": "ECON 291", + "title": "Advanced Field Advising (4)" + }, + { + "dept": "POLI", + "description": "This course provides an overview of previous and current efforts to explain political and economic development in non-Western settings.", + "edges_from": [], + "edges_to": [], + "id": 3136, + "label": "POLI 231E", + "title": "Politics of Development (4)" + }, + { + "dept": "ECON", + "description": "(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 3137, + "label": "ECON 297", + "title": "Independent Study (1\u20135)" + }, + { + "dept": "MAE", + "description": "Element Methods in Solid Mechanics III (4)", + "edges_from": [], + "edges_to": [], + "id": 3138, + "label": "MAE 232C", + "title": "Finite" + }, + { + "dept": "POLI", + "description": "Comparative analysis of attempts by the United States and other industrialized countries to initiate, regulate and reduce immigration from Third World countries. Social and economic factors shaping outcomes of immigration policies, public opinion toward immigrants, anti-immigration movements, and immigration policy reform options in industrialized countries. ", + "edges_from": [], + "edges_to": [], + "id": 3139, + "label": "POLI 150A", + "title": "Politics of Immigration (4)" + }, + { + "dept": "LTWR", + "description": "Research for master\u2019s thesis. Offered for repeated registration. Open only to MFA students. ", + "edges_from": [], + "edges_to": [], + "id": 3140, + "label": "LTWR 295", + "title": "MFA Thesis (1\u201312)" + }, + { + "dept": "CHEM", + "description": "The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field, starting from basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. May be coscheduled with CHEM 242. CHEM 40C and at least one course in either general biology, molecular biology, or cell biology is strongly encouraged. ", + "edges_from": [ + 1509, + 1512, + 1516, + 687, + 240, + 2641, + 2070 + ], + "edges_to": [], + "id": 3141, + "label": "CHEM 142", + "title": "Introduction to Glycosciences (4)" + }, + { + "dept": "NEU", + "description": "Neurosciences group faculty members and graduate students will present and discuss ongoing research. Attendance will be mandatory for first- and second-year graduate students. Faculty, advanced graduate students, medical students, postdoctoral trainees, and other interested parties are encouraged to attend. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 3142, + "label": "NEU 276", + "title": "Neuroscience Research Rounds (1)" + }, + { + "dept": "NEU", + "description": "An examination of the molecular and biochemical bases of drug and transmitter action. The course is devoted to receptor mechanisms, neuropharmacology, and drug action on excitable tissues. ", + "edges_from": [], + "edges_to": [], + "id": 3143, + "label": "NEU 277", + "title": "Neuropsychopharmacology (4)" + }, + { + "dept": "CHEM", + "description": "Methodology of mechanistic organic chemistry; integration of rate expression, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. May be coscheduled with CHEM 246. ", + "edges_from": [ + 2928, + 2929, + 2930, + 1990 + ], + "edges_to": [], + "id": 3144, + "label": "CHEM 146", + "title": "Kinetics and Mechanism of Organic Reactions (4)" + }, + { + "dept": "CHEM", + "description": "Fundamentals of the chemistry and biochemistry of petroleum and biofuel technologies. This course explores chemical identity and properties, metabolic pathways and engineering, refining processes, and analytical techniques related to current and future biofuels. ", + "edges_from": [ + 2928, + 2929, + 2930, + 1990 + ], + "edges_to": [], + "id": 3145, + "label": "CHEM 145", + "title": "Chemistry and Biochemistry of Biofuels (4)" + }, + { + "dept": "HIEA", + "description": "and Cultural History of Twentieth-Century Japan (4)", + "edges_from": [], + "edges_to": [], + "id": 3146, + "label": "HIEA 115", + "title": "Social" + }, + { + "dept": "HIEA", + "description": "Examines social, cultural, political, and economic transformations and continuities in Japan since World War II. Emphases will differ by instructor.", + "edges_from": [], + "edges_to": [], + "id": 3147, + "label": "HIEA 114", + "title": "Postwar Japan (4)" + }, + { + "dept": "HIEA", + "description": "By examining the roles of ghosts in Japanese belief systems in a nonscientific age, this course addresses topics including folk beliefs and ghost stories, religiosity, early science, tools of amelioration and authoritative knowledge, and the relationship between myth and history.", + "edges_from": [], + "edges_to": [], + "id": 3148, + "label": "HIEA 117", + "title": "Ghosts in Japan (4)" + }, + { + "dept": "HIEA", + "description": "Survey of relations between Japan and the United States in the nineteenth and twentieth centuries. Although the focus will be on these nation-states, the course will be framed within the global transformation of societies. Topics include cultural frameworks, political and economic changes, colonialism and imperialism, and migration.", + "edges_from": [], + "edges_to": [], + "id": 3149, + "label": "HIEA 116", + "title": "Japan-U.S. Relations (4)" + }, + { + "dept": "HIEA", + "description": "Twelfth to Mid-Nineteenth Centuries (4)", + "edges_from": [], + "edges_to": [], + "id": 3150, + "label": "HIEA 111", + "title": "Japan:" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Argentine, Paraguayan, Uruguayan, and Chilean literatures, such as gaucho poetry, the realist novel, modern urban narratives, and the Borges School, etc. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3151, + "label": "LTSP 134", + "title": "Literature of the Southern Cone (4)" + }, + { + "dept": "HIEA", + "description": "Fifteen-Year War in Asia and the Pacific (4)", + "edges_from": [], + "edges_to": [], + "id": 3152, + "label": "HIEA 113", + "title": "The" + }, + { + "dept": "HIEA", + "description": "From the Mid-Nineteenth Century through the US Occupation (4)", + "edges_from": [], + "edges_to": [], + "id": 3153, + "label": "HIEA 112", + "title": "Japan:" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in the literatures of Guatemala, El Salvador, Nicaragua, Honduras, Costa Rica, and Panama, such as the anti-imperialist novel, indigenismo, guerrilla poetry, and testimonio. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3154, + "label": "LTSP 138", + "title": "Central American Literature (4)" + }, + { + "dept": "COMM", + "description": "How do political contests and debates come to be organized on and around bodies? In what sense is the natural body a sign system and how does its organization represent and reproduce cultural values, moral assumptions, social relations, and economic rationales? This course examines these and other questions through political, historical, and media analysis. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 3155, + "label": "COMM 108A", + "title": "POB: Introduction (4)" + }, + { + "dept": "SOCI", + "description": "Sociology of Mental Illness: A Historical Approach (4)", + "edges_from": [], + "edges_to": [], + "id": 3156, + "label": "SOCI 136E", + "title": "" + }, + { + "dept": "COMM", + "description": "Historical and cultural aspects of media, information, imaging technology use in biomedical research, clinical care, health communication to constructions of gender and identity. We approach the subject through audiovisual texts and writings from fields including science and technology studies and cultural studies. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 3157, + "label": "COMM 108G", + "title": "POB: Gender and Biomedicine (4)" + }, + { + "dept": "COMM", + "description": "Cultural and historical ways of defining and understanding disability relative to communication and assistive technologies, including the impact of digital technologies and the Americans with Disabilities Act. Course use of audiovisual texts and writings from fields including science and technology studies, and cultural studies. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 3158, + "label": "COMM 108D", + "title": "POB: Disability (4)" + }, + { + "dept": "SOCI", + "description": "This course will focus on recent developments in the mental illness sector and on the contemporary sociological literature on mental illness. Developments in England as well as the United States will be examined. ", + "edges_from": [ + 3160, + 3159 + ], + "edges_to": [ + 3159 + ], + "id": 3159, + "label": "SOCI 136F", + "title": "Sociology of Mental Illness in Contemporary Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3159 + ], + "id": 3160, + "label": "SOCC 136B", + "title": "" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of international relations. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 3161, + "label": "POLI 154", + "title": "Special Topics in International Relations (4)" + }, + { + "dept": "LTWL", + "description": "A study of folk and fairy tales from various cultures, from the point of view of literary form, psychological meaning, and cultural function. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3162, + "label": "LTWL 110B", + "title": "Folk and Fairy Tales (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural system that controls them, emphasizing broad fundamental relationships between brain and behavior across species. Cross-listed with BIPN 189. Students may not receive credit for PSYC 189 and BIPN 189. ", + "edges_from": [ + 432, + 1147, + 215 + ], + "edges_to": [], + "id": 3163, + "label": "PSYC 189", + "title": "Brain, Behavior, and Evolution (4)" + }, + { + "dept": "POLI", + "description": "Surveys the theory and function", + "edges_from": [], + "edges_to": [], + "id": 3164, + "label": "POLI 151", + "title": "International Organizations (4)" + }, + { + "dept": "POLI", + "description": "This course introduces students to the role of the EU as a foreign policy actor. Topics include the development of the EU\u2019s trade policy, foreign aid policy, security policy, as well as case studies of EU foreign policy.", + "edges_from": [], + "edges_to": [], + "id": 3165, + "label": "POLI 153", + "title": "The European Union in World Politics (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an examination of visual, auditory, and tactile illusions and examines how they arise from interactions between perceptual and cognitive systems. ", + "edges_from": [], + "edges_to": [], + "id": 3166, + "label": "PSYC 182", + "title": "Illusions and the Brain (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the period of human adolescence, including the physical, cognitive, social, and emotional changes that take place during this developmental transition. ", + "edges_from": [], + "edges_to": [], + "id": 3167, + "label": "PSYC 180", + "title": "Adolescence (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how children learn to reason about the social world. Topics may include theory of mind, social categorization and stereotyping, moral reasoning, and cultural learning. Recommended preparation: PSYC 101. ", + "edges_from": [], + "edges_to": [], + "id": 3168, + "label": "PSYC 187", + "title": "Development of Social Cognition (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the experimental analysis of choice behavior, with an emphasis on the types of choice involved in self-control. A central interest will be the conditions under which decision-making is optimal. ", + "edges_from": [], + "edges_to": [], + "id": 3169, + "label": "PSYC 184", + "title": "Choice and Self-Control (4)" + }, + { + "dept": "BICD", + "description": "The structure and function of cells and cell organelles, cell growth and division, motility, cell differentiation and specialization. ", + "edges_from": [ + 240, + 589 + ], + "edges_to": [ + 4786 + ], + "id": 3170, + "label": "BICD 110", + "title": "Cell Biology (4)" + }, + { + "dept": "ANTH", + "description": "A forum to present work by faculty, students, and guests. Course will be offered quarterly. ", + "edges_from": [ + 3172 + ], + "edges_to": [], + "id": 3171, + "label": "ANTH 230", + "title": "Department Colloquium (1)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3171 + ], + "id": 3172, + "label": "ANGR 230", + "title": "" + }, + { + "dept": "CENG", + "description": "Introduction to microbiology as relevant to the main topic, biological reactor analysis. Fermentation and enzyme technology. ", + "edges_from": [], + "edges_to": [], + "id": 3173, + "label": "CENG 254", + "title": "Biochemical Engineering Fundamentals (4)" + }, + { + "dept": "CENG", + "description": "Fundamentals of electrochemistry and electrochemical engineering. Structure of the double layer, cell potential and electrochemical thermodynamics, charge transfer kinetics, electrochemical transport phenomena, and introduction to colloidal chemistry. Applications such as corrosion prevention, electroplating, reactor design, batteries, and fuel cells. ", + "edges_from": [], + "edges_to": [], + "id": 3174, + "label": "CENG 255", + "title": "Electrochemical Engineering (4)" + }, + { + "dept": "CENG", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3175, + "label": "CENG 256", + "title": "Biomaterials and Biomimetics (4)" + }, + { + "dept": "CENG", + "description": "Brief introduction to solid-state materials and devices. Crystal growth and purification. Thin film technology. Application of chemical processing to the manufacture of semiconductor devices. Topics to be covered: physics of solids, unit operations of solid-state materials (bulk crystal growth, oxidation, vacuum science, chemical and physical vapor deposition, epitaxy, doping, etching).\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3176, + "label": "CENG 257", + "title": "Process Technology in the Semiconductor Industry (4)" + }, + { + "dept": "HIUS", + "description": "This course introduces students to the history of Asian American social movements from the late nineteenth century to the present, with an emphasis on interethnic, cross-racial, and transnational practices. Topics include immigration reform, antiwar and anti-colonial movements, redress, hate crimes, and police brutality.", + "edges_from": [], + "edges_to": [], + "id": 3177, + "label": "HIUS 125/ETHN 163J", + "title": "Asian American Social Movements (4)" + }, + { + "dept": "CENG", + "description": "Analysis of chemical rate processes; complex kinetic systems. Chemical reactor properties in steady state and transient operations; optimal design policies. The interaction of chemical and physical transport processes in affecting reactor design and operating characteristics. Uniqueness/multiplicity and stability in reactor systems. Applications of the heterogeneous reactor systems. ", + "edges_from": [], + "edges_to": [], + "id": 3178, + "label": "CENG 252", + "title": "Chemical Reaction Engineering (4)" + }, + { + "dept": "CENG", + "description": "Physics and chemistry of heterogeneous catalysis. Adsorption/desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with NANO 259. Students may not receive credit for both CENG 253 and NANO 259. ", + "edges_from": [], + "edges_to": [], + "id": 3179, + "label": "CENG 253", + "title": "Heterogeneous Catalysis (4)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1A. ", + "edges_from": [], + "edges_to": [], + "id": 3180, + "label": "Linguistics/Arabic (LIAB) 1AX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "PHYS", + "description": "Physics of the solid-state. Binding mechanisms, crystal structures and symmetries, diffraction, reciprocal space, phonons, free and nearly free electron models, energy bands, solid-state thermodynamics, kinetic theory and transport, semiconductors. ", + "edges_from": [ + 2816, + 2115, + 3182 + ], + "edges_to": [ + 3186 + ], + "id": 3181, + "label": "PHYS 152A", + "title": "Condensed Matter Physics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 2816 + ], + "edges_to": [ + 3217, + 3377, + 3181, + 3215 + ], + "id": 3182, + "label": "PHYS 140A", + "title": "" + }, + { + "dept": "COGS", + "description": "Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. Applications must be submitted to and approved by the department. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3183, + "label": "COGS 195", + "title": "Instructional Apprenticeship in Cognitive Science (4)" + }, + { + "dept": "COGS", + "description": "This independent study course is for small groups of advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3184, + "label": "COGS 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "COGS", + "description": "This independent study course is for individual, advanced students who wish to complete a one- quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3185, + "label": "COGS 199", + "title": "Special Project (2 or 4)" + }, + { + "dept": "PHYS", + "description": "Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ", + "edges_from": [ + 3181 + ], + "edges_to": [], + "id": 3186, + "label": "PHYS 152B", + "title": "Electronic Materials (4)" + }, + { + "dept": "AUD", + "description": "Observations in UC San Diego Otology clinic. Learn about procedures for taking histories and performing clinical examinations, patient treatment, and patient education from otologists. ", + "edges_from": [], + "edges_to": [], + "id": 3187, + "label": "AUD 236", + "title": "Preceptorship in Neuro-Otology (2)" + }, + { + "dept": "HILA", + "description": "A broad historical overview of Hispanic American women\u2019s history of focusing on the issues of gender, sexuality, and the family as they relate to women, as well as the historiographical issues in Latin American and Chicana women\u2019s history.", + "edges_from": [], + "edges_to": [], + "id": 3188, + "label": "HILA 161/261", + "title": "History of Women in Latin America (4)" + }, + { + "dept": "CONT", + "description": "This course will examine disability in the case of individuals with an intellectual or physical disability. Faced with ableism, intentional or unintentional, people with disabilities often experience difficulties in society. Using ableism provides an effective way of addressing ableist discrimination. The course will develop students\u2019 awareness of the challenges of disability in current society. Winter quarter only.", + "edges_from": [], + "edges_to": [], + "id": 3189, + "label": "CONT 68", + "title": "Disability, Race, and Diversity (4)" + }, + { + "dept": "Classics", + "description": "F,W,S. Required of and limited to teaching", + "edges_from": [], + "edges_to": [], + "id": 3190, + "label": "Classics 399", + "title": "University Teaching (4-4-4)" + }, + { + "dept": "CENG", + "description": "Principles of chemical reactor analysis and", + "edges_from": [], + "edges_to": [], + "id": 3191, + "label": "CENG 113", + "title": "Chemical Reaction Engineering (4)" + }, + { + "dept": "BENG", + "description": "(Conjoined with BENG 191.) Instills skills", + "edges_from": [], + "edges_to": [], + "id": 3192, + "label": "BENG 291/191", + "title": "Senior Seminar I: Professional Issues in Bioengineering (2)" + }, + { + "dept": "CHEM", + "description": "Introduction to the material world of atoms and small inorganic molecules. Intended for nonscience majors. Students may not receive credit for both CHEM 4 and CHEM 11.", + "edges_from": [], + "edges_to": [ + 3742 + ], + "id": 3193, + "label": "CHEM 11", + "title": "The Periodic Table (4)" + }, + { + "dept": "CHEM", + "description": "Introduction to biochemistry for nonscience majors. Topics include carbohydrates, lipids, amino acids and proteins, with an introduction to metabolic pathways in human physiology.", + "edges_from": [], + "edges_to": [], + "id": 3194, + "label": "CHEM 13", + "title": "Chemistry of Life (4)" + }, + { + "dept": "HIUS", + "description": "This colloquium studies the racial representation of Mexican Americans in the United States from the nineteenth century to the present, examining critically the theories and methods of the humanities and social sciences. ", + "edges_from": [], + "edges_to": [], + "id": 3195, + "label": "HIUS 167/267/ETHN 180", + "title": "Topics in Mexican American History (4)" + }, + { + "dept": "ECE", + "description": "Advanced topics in digital circuits and systems. Use of computers and design automation tools. Hazard elimination, synchronous/asynchronous FSM synthesis, synchronization and arbitration, pipelining and timing issues. Problem sets and design exercises. A large-scale design project. Simulation and/or rapid prototyping. ", + "edges_from": [ + 1477, + 1677 + ], + "edges_to": [ + 3406 + ], + "id": 3196, + "label": "ECE 111", + "title": "Advanced Digital Design Project (4)" + }, + { + "dept": "MATS", + "description": "Main focus is the large deformations and instabilities in soft materials, such as elastomers, gels, and biomaterials. Some contents in thermodynamics and finite deformation theory are reviewed and summarized. Fundamental theories are applied to study the mechanics of gels, electroactive polymers, and biomaterials. This course intends to use soft material as an example to illustrate how to study the interaction between mechanics and other fields in materials (e.g., electric field, chemical field). Students may not receive credit for both MAE 276 and MATS 231. ", + "edges_from": [ + 3198 + ], + "edges_to": [], + "id": 3197, + "label": "MATS 231", + "title": "Mechanics of Soft Materials (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 3197 + ], + "id": 3198, + "label": "MAE 276", + "title": "" + }, + { + "dept": "TDPF", + "description": "in Performance\u2014Winter Production (2\u20134)", + "edges_from": [], + "edges_to": [ + 3201 + ], + "id": 3199, + "label": "TDPF 161", + "title": "Studies" + }, + { + "dept": "TDPF", + "description": "in Performance\u2014Fall Production (2\u20134)", + "edges_from": [], + "edges_to": [ + 3201 + ], + "id": 3200, + "label": "TDPF 160", + "title": "Studies" + }, + { + "dept": "TDPF", + "description": "The study and aesthetic examination of major choreographic works by dance faculty or distinguished guest artists. Students will experience the creative process, staging, production, and performance of a complete dance work in conjunction with a conceptual study of its form and content. Audition is required. May be taken for credit four times. ", + "edges_from": [ + 3200, + 3202, + 3199 + ], + "edges_to": [], + "id": 3201, + "label": "TDPF 163", + "title": "Dance Repertory (1\u20134)" + }, + { + "dept": "TDPF", + "description": "", + "edges_from": [], + "edges_to": [ + 3201 + ], + "id": 3202, + "label": "TDPF 162", + "title": "" + }, + { + "dept": "TDGE", + "description": "This course is designed to establish a clear understanding of the fundamentals of effective oral communication. The methodologies explore the integration of relaxation, concentration, organization, and clear voice and diction as applied to various public speaking modes. ", + "edges_from": [], + "edges_to": [], + "id": 3203, + "label": "TDGE 25", + "title": "Public Speaking (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 206B.) The course focuses on algorithmic aspects of modern bioinformatics and covers the following topics: computational gene hunting, sequencing, DNA arrays, sequence comparison, pattern discovery in DNA, genome rearrangements, molecular evolution, computational proteomics, and others. ", + "edges_from": [ + 142 + ], + "edges_to": [], + "id": 3204, + "label": "CSE 280A", + "title": "Algorithms in Computational Biology (4)" + }, + { + "dept": "LATI", + "description": "Students will collect survey and qualitative data among Mexican migrants to the United States and potential migrants, participate in team research, organize data collected for analysis, and submit a detailed outline of an article to be based on field data. Students may not receive credit for both SOCI 122B and LATI 122B. Recommended: advanced competency in conversational Spanish. ", + "edges_from": [ + 3206 + ], + "edges_to": [ + 3207 + ], + "id": 3205, + "label": "LATI 122B", + "title": "Field Research Methods for Migration Studies: Practicum (12)" + }, + { + "dept": "LATI", + "description": "", + "edges_from": [], + "edges_to": [ + 3205 + ], + "id": 3206, + "label": "LATI 122A", + "title": "" + }, + { + "dept": "LATI", + "description": "Continuation of SOCI 122B. Students analyze primary data they have collected in field research sites and coauthor an article for publication. Methods for organizing and processing field data, techniques of quantitative data analysis, and report preparation conventions will be covered. Students may not receive credit for both SOCI 122C and LATI 122C. ", + "edges_from": [ + 3205 + ], + "edges_to": [], + "id": 3207, + "label": "LATI 122C", + "title": "Field Research Methods for Migration Studies: Data Analysis (4)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in molecular systems bioengineering. ", + "edges_from": [ + 3209, + 57 + ], + "edges_to": [ + 57 + ], + "id": 3208, + "label": "BENG 127B", + "title": "Design Implementation in Molecular Systems Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 55 + ], + "edges_to": [ + 3208 + ], + "id": 3209, + "label": "BENG 127A", + "title": "" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 131B.) Introduction to the compilation of programming languages,", + "edges_from": [], + "edges_to": [ + 3406 + ], + "id": 3210, + "label": "CSE 131", + "title": "Compiler Construction (4)" + }, + { + "dept": "CSE", + "description": "Database, data warehouse, and data cube design; SQL programming and querying with emphasis on analytics; online analytics applications, visualizations, and data exploration; performance tuning. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 3212 + ], + "id": 3211, + "label": "CSE 135", + "title": "Online Database Analytics Applications (4)" + }, + { + "dept": "CSE", + "description": "Design and implementation of very large-scale, web-based applications. Topics covered typically include modeling organizational needs, design and revision management, J2EE or similar software platforms, web server and application server functionality, reuse of object-oriented components, model-view-controller and other design patterns, clustering, load-balancing, fault-tolerance, authentication, and usage accounting. ", + "edges_from": [ + 3211 + ], + "edges_to": [], + "id": 3212, + "label": "CSE 136", + "title": "Enterprise-Class Web Applications (4)" + }, + { + "dept": "CSE", + "description": "in Computer Architecture (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 3213, + "label": "CSE 249A", + "title": "Topics/Seminar" + }, + { + "dept": "CSE", + "description": "Topics of special interest in VLSI to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3214, + "label": "CSE 249B", + "title": "Topics/Seminar in VLSI (1\u20134)" + }, + { + "dept": "PHYS", + "description": "This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. ", + "edges_from": [ + 3216, + 2817, + 3182, + 1121 + ], + "edges_to": [], + "id": 3215, + "label": "PHYS 175", + "title": "Biological Physics (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 3481, + 3482, + 2115 + ], + "edges_to": [ + 3215 + ], + "id": 3216, + "label": "CHEM 132", + "title": "" + }, + { + "dept": "PHYS", + "description": "A quantitative approach to gene regulation including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. ", + "edges_from": [ + 3182 + ], + "edges_to": [], + "id": 3217, + "label": "PHYS 176", + "title": "Quantitative Molecular Biology (4)" + }, + { + "dept": "PHYS", + "description": "The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from: chemotaxis as a model system; signal transduction networks and cellular information processing; mechanics of the membrane; cytoskeletal dynamics; nonlinear Calcium waves. May be scheduled with Physics 277. ", + "edges_from": [], + "edges_to": [], + "id": 3218, + "label": "PHYS 177", + "title": "Physics of the Cell (4)" + }, + { + "dept": "PHYS", + "description": "The principles and clinical applications of medical diagnostic instruments, including electromagnetic measurements, spectroscopy, microscopy; ultrasounds, X-rays, MRI, tomography, lasers in surgery, fiber optics in diagnostics. ", + "edges_from": [ + 33, + 34, + 708, + 711, + 27, + 28 + ], + "edges_to": [], + "id": 3219, + "label": "PHYS 170", + "title": "Medical Instruments: Principles and Practice (4)" + }, + { + "dept": "CSE", + "description": "Robotics has the potential to improve well-being for millions of people and support caregivers and to aid the clinical workforce. We bring together engineers, clinicians, and end-users to explore this exciting new field. The course is project-based, interactive, and hands-on, and involves working closely with stakeholders to develop prototypes that solve real-world problems. Students will explore the latest research in health care robotics, human-robot teaming, and health design. Program or materials fees may apply. ", + "edges_from": [ + 2804, + 3221, + 1478 + ], + "edges_to": [], + "id": 3220, + "label": "CSE 176A", + "title": "Maker Topics: Health Care Robotics (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 568, + 1226, + 1399, + 1773, + 1413 + ], + "edges_to": [ + 5443, + 3220, + 3414, + 5050, + 5051, + 5052 + ], + "id": 3221, + "label": "COGS 120", + "title": "" + }, + { + "dept": "PHYS", + "description": "A selection of experiments in contemporary", + "edges_from": [], + "edges_to": [], + "id": 3222, + "label": "PHYS 173", + "title": "Modern Physics Laboratory: Biological and Quantum Physics (4)" + }, + { + "dept": "HIGR", + "description": "Research seminar in medieval history with selected topics in medieval history.", + "edges_from": [], + "edges_to": [], + "id": 3223, + "label": "HIGR 223B", + "title": "Research Seminar in Medieval History (4)" + }, + { + "dept": "HIGR", + "description": "Research seminar in medieval history with selected topics in medieval history.", + "edges_from": [], + "edges_to": [], + "id": 3224, + "label": "HIGR 223A", + "title": "Research Seminar in Medieval History (4)" + }, + { + "dept": "PHYS", + "description": "Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. ", + "edges_from": [], + "edges_to": [], + "id": 3225, + "label": "PHYS 178", + "title": "Biophysics of Neurons and Networks (4)" + }, + { + "dept": "COGR", + "description": "This course will draw on theorists who examine human nature as constituted by social, material, and historical circumstances. This course considers the media in relation to the ontogenetic and historical development of the human being and an examination of the individual as socially constituted in a language-using medium. The role of new communication technologies as part of research methodologies is explored in lecture-seminar. ", + "edges_from": [], + "edges_to": [], + "id": 3226, + "label": "COGR 200C", + "title": "Introduction to the Study of Communication: Communication and the Individual (4)" + }, + { + "dept": "POLI", + "description": "The relationship between the United States and Japan has been described as \u201cthe most important in the world, bar none.\u201d This course will examine US-Japan security and economic relations in the postwar period from the Occupation and Cold War alliance through the severe bilateral trade friction of the 1980s and 1990s to the present relationship and how it is being transformed by the forces of globalization, regionalization, and multilateralism.", + "edges_from": [], + "edges_to": [], + "id": 3227, + "label": "POLI 133G", + "title": "Postwar US-Japan Relations (4)" + }, + { + "dept": "POLI", + "description": "This course discusses the following major topics in three East Asian countries (Japan, South Korea, and the Philippines) from a comparative perspective: (a) economic and political development; (b) political institutions; and (c) policies.", + "edges_from": [], + "edges_to": [], + "id": 3228, + "label": "POLI 133D", + "title": "Political Institutions of East Asian Countries (4)" + }, + { + "dept": "POLI", + "description": "Politics: A Developmental Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 3229, + "label": "POLI 133A", + "title": "Japanese" + }, + { + "dept": "POLI", + "description": "This course is primarily about the politics and political economy of South Korea, but will also briefly look at politics and political economy of North Korea as well as foreign and unification policies of the two Koreas. ", + "edges_from": [], + "edges_to": [], + "id": 3230, + "label": "POLI 133J", + "title": "Korean Politics (4)" + }, + { + "dept": "SOCI", + "description": "An examination of a central concern of classical social theory: the relationship between economy and society, with special attention (theoretically and empirically) on the problem of the origins of modern capitalism. The course will investigate the role of technology and economic institutions in society; the influence of culture and politics on economic exchange, production, and consumption; the process of rationalization and the social division of labor; contemporary economic problems and the welfare state. ", + "edges_from": [ + 3232, + 3231 + ], + "edges_to": [ + 3231 + ], + "id": 3231, + "label": "SOCI 121", + "title": "Economy and Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3231 + ], + "id": 3232, + "label": "SOCC 121", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course takes a social network approach to the study of society, examining the complex web of relationships\u2014 platonic, familial, professional, romantic\u2014in which individual behavior is embedded. Special emphasis is placed on the unprecedented opportunities created by contemporary social media (e.g. Facebook, mobile phones, online dating websites) for answering fundamental sociological questions. ", + "edges_from": [], + "edges_to": [], + "id": 3233, + "label": "SOCI 122", + "title": "Social Networks (4)" + }, + { + "dept": "SOCI", + "description": "Immigration from a comparative, historical, and cultural perspective. Topics include: factors influencing amount of immigration and destination of immigrants; varying modes of incorporation of immigrants; immigration policies and rights; the impact of immigration on host economies; refugees; assimilation; and return migration. ", + "edges_from": [ + 3234, + 3235 + ], + "edges_to": [ + 3234 + ], + "id": 3234, + "label": "SOCI 125", + "title": "Sociology of Immigration (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3234 + ], + "id": 3235, + "label": "SOCB 125", + "title": "" + }, + { + "dept": "SOCI", + "description": "Examination of the role that race and ethnicity play in immigrant group integration. Topics include theories of integration, racial and ethnic identity formation, racial and ethnic change, immigration policy, public opinion, comparisons between contemporary and historical waves of immigration. ", + "edges_from": [ + 3236, + 3237 + ], + "edges_to": [ + 3236, + 4269 + ], + "id": 3236, + "label": "SOCI 127", + "title": "Immigration, Race, and Ethnicity (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3236 + ], + "id": 3237, + "label": "SOCB 127", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Same as EDS 126.) The social organization of education in the U.S. and other societies; the functions of education for individuals and society; the structure of schools; educational decision making; educational testing; socialization and education; formal and informal education; cultural transmission. ", + "edges_from": [ + 3238, + 3239 + ], + "edges_to": [ + 4269, + 3238 + ], + "id": 3238, + "label": "SOCI 126", + "title": "Social Organization of Education (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3238 + ], + "id": 3239, + "label": "SOCC 126", + "title": "" + }, + { + "dept": "SOCI", + "description": "An examination of historical and social influences on family life. Analyzes contemporary families in the United States, the influences of gender, class, and race, and current issues such as divorce, domestic violence, and the feminization of poverty. ", + "edges_from": [ + 3240, + 3241 + ], + "edges_to": [ + 3240 + ], + "id": 3240, + "label": "SOCI 129", + "title": "The Family (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3240 + ], + "id": 3241, + "label": "SOCC 129", + "title": "" + }, + { + "dept": "SOCI", + "description": "Course focuses on the different types of social structures and political systems in Latin America. Topics include positions in the world economy, varieties of class structure and ethnic cleavages, political regimes, mobilization and legitimacy, class alignments, reform and revolution. ", + "edges_from": [ + 3242, + 3243 + ], + "edges_to": [ + 3242 + ], + "id": 3242, + "label": "SOCI 188D", + "title": "Latin America: Society and Politics (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 3242 + ], + "id": 3243, + "label": "SOCD 188D", + "title": "" + }, + { + "dept": "SOCI", + "description": "Community and Social Change in Africa (4)", + "edges_from": [], + "edges_to": [], + "id": 3244, + "label": "SOCI 188E", + "title": "" + }, + { + "dept": "SOCI", + "description": "Modern Jewish Societies and Israeli Society (4)", + "edges_from": [], + "edges_to": [], + "id": 3245, + "label": "SOCI 188F", + "title": "" + }, + { + "dept": "SOCI", + "description": "The social structure of the People\u2019s Republic of China since 1949, including a consideration of social organization at various levels: the economy, the policy, the community, and kinship institutions. ", + "edges_from": [ + 3246, + 3247 + ], + "edges_to": [ + 3246 + ], + "id": 3246, + "label": "SOCI 188G", + "title": "Chinese Society (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 3246 + ], + "id": 3247, + "label": "SOCD 188B", + "title": "" + }, + { + "dept": "SOCI", + "description": "In this course we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war. ", + "edges_from": [], + "edges_to": [], + "id": 3248, + "label": "SOCI 188I", + "title": "The Israeli-Palestinian Conflict (4)" + }, + { + "dept": "CSE", + "description": "Efficient primitives for distributed operating systems and high-performance network servers, including concurrent and event-driven server architectures, remote procedure calls, and load shedding. Distributed naming, directory, and storage services, replication for fault tolerance, and security in distributed systems. ", + "edges_from": [ + 40, + 3250 + ], + "edges_to": [], + "id": 3249, + "label": "CSE 223B", + "title": "Distributed Computing and Systems (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 1826, + 4725 + ], + "edges_to": [ + 3249, + 4724 + ], + "id": 3250, + "label": "CSE 221", + "title": "" + }, + { + "dept": "COGR", + "description": "This seminar will introduce key issues and readings in our understanding of time. Time is historical, not natural. We will examine ways that modern time structures and orders human interaction. ", + "edges_from": [], + "edges_to": [], + "id": 3251, + "label": "COGR 284", + "title": "Time (4)" + }, + { + "dept": "COGR", + "description": "Political economy is an older interdisciplinary approach explaining how the state, political environment, law, and economic system influence one another. The course engages classic texts, with attention to issues in the political economy of communication toward the end. ", + "edges_from": [], + "edges_to": [], + "id": 3252, + "label": "COGR 283", + "title": "Political Economy (4)" + }, + { + "dept": "COGR", + "description": "Approaching reading from a historical perspective, the course concentrates on two analytic frames to connect memory to texts: ideas about \u201cthe memory palace,\u201d locating memories in things, and figured worlds theory, treating objects as forms of intellectual scaffolding and memory. ", + "edges_from": [], + "edges_to": [], + "id": 3253, + "label": "COGR 282", + "title": "Reading and Memory (4)" + }, + { + "dept": "COGR", + "description": "In this course we review how we might go about studying and thinking about the everyday life both as a concept and as a domain of study. The course will have a balance of both theoretical and empirical work. ", + "edges_from": [], + "edges_to": [], + "id": 3254, + "label": "COGR 281", + "title": "Understanding Everyday Life (4)" + }, + { + "dept": "COGR", + "description": "This course is a project course in which students prepare a production or experiment using one of the forms of media. The course is designed to allow students to experiment in a communication form other than the usual oral presentation in class or a term paper. Students can do a video production, a coordinated photographic essay or exhibit, a computer instructional game, a published newspaper or magazine article directed at a special audience, a theatrical presentation, or some form other than those listed. ", + "edges_from": [], + "edges_to": [], + "id": 3255, + "label": "COGR 280", + "title": "Advanced Workshop in Communication Media (4)" + }, + { + "dept": "COGS", + "description": "This practicum for graduate students provides experience in teaching undergraduate cognitive science courses. S/U only.", + "edges_from": [], + "edges_to": [], + "id": 3256, + "label": "COGS 500", + "title": "Teaching Apprenticeship (1\u20134)" + }, + { + "dept": "BILD", + "description": "Students gain hands-on experience and learn the theoretical basis of lab techniques common to a variety of biological disciplines such as biochemistry, molecular biology, cell biology, and bioinformatics. Students will work in groups, learning how to collect, analyze, and present data while using the scientific method to conduct inquiry-based laboratory experiments. Material lab fees will apply.", + "edges_from": [], + "edges_to": [ + 241, + 3294 + ], + "id": 3257, + "label": "BILD 4", + "title": "Introductory Biology Lab (2)" + }, + { + "dept": "BILD", + "description": "An introduction to the basic principles of plant and animal development, emphasizing the similar strategies by which diverse organisms develop. Practical applications of developmental principles as well as ethical considerations arising from these technologies will be discussed.", + "edges_from": [], + "edges_to": [], + "id": 3258, + "label": "BILD 7", + "title": "The Beginning of Life (4)" + }, + { + "dept": "SE", + "description": "Concrete (4)", + "edges_from": [], + "edges_to": [], + "id": 3259, + "label": "SE 151B", + "title": "Design of Prestressed" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3260, + "label": "Linguistics/Heritage Languages (LIHL) 115F", + "title": "Korean for Korean Speakers (4)" + }, + { + "dept": "MATH", + "description": "Methods in Physics and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 3261, + "label": "MATH 210C", + "title": "Mathematical" + }, + { + "dept": "ECE", + "description": "Integrated photonic devices and components made using silicon, compound semiconductors, thin-film crystals, and dielectric materials. Design, analysis, and applications of components (e.g., waveguides, micro-resonators, couplers, modulators, lasers, and detectors) for use in communications, sensing, metrology, and other areas. ", + "edges_from": [ + 3263 + ], + "edges_to": [ + 5678 + ], + "id": 3262, + "label": "ECE 241B", + "title": "Integrated Photonics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3262 + ], + "id": 3263, + "label": "ECE 241A", + "title": "" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3264, + "label": "Linguistics/Heritage Languages (LIHL) 115W", + "title": "Korean for Korean Speakers (4)" + }, + { + "dept": "BENG", + "description": "Biophysical phenomena, transducers, and electronics as related to the design of biomedical instrumentation. Potentiometric and amperometric signals and amplifiers. Biopotentials, membrane potentials, chemical sensors. Electrical safety. Mechanical transducers for displacement, force, and pressure. Temperature sensors. Flow sensors. Light-based instrumentation. ", + "edges_from": [ + 345, + 1955, + 1094, + 846 + ], + "edges_to": [], + "id": 3265, + "label": "BENG 186B", + "title": "Principles of Bioinstrumentation Design (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Korean but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Korean. LIHL 115F, LIHL 115W, and LIHL 115P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3266, + "label": "Linguistics/Heritage Languages (LIHL) 115P", + "title": "Korean for Korean Speakers (4)" + }, + { + "dept": "BENG", + "description": "Fundamentals of materials science as applied to bioengineering design. Natural and synthetic polymeric materials. Materials characterization and design. Wound repair, blood clotting, foreign body response, transplantation biology, biocompatibility of materials, tissue engineering. Artificial organs and medical devices. Government regulations. Patenting. Economic impact. Ethical issues. A term project and oral presentation are required. ", + "edges_from": [ + 2161, + 3268 + ], + "edges_to": [], + "id": 3267, + "label": "BENG 186A", + "title": "Principles of Biomaterials Design (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 1410 + ], + "edges_to": [ + 4960, + 3267 + ], + "id": 3268, + "label": "BENG 112B", + "title": "" + }, + { + "dept": "SE", + "description": "Use of computer graphics (CAD software) to communicate engineering designs. Includes visualization, sketching, 2D and 3D graphics standards, dimensioning, tolerance, assemblies, and prototyping/testing with light manufacturing methods. Project/system management software, i.e., building information modeling (BIM), will be introduced. Use of computer resources. ", + "edges_from": [ + 1089 + ], + "edges_to": [ + 4647 + ], + "id": 3269, + "label": "SE 3", + "title": "Graphical Communication for Engineering Design (4)" + }, + { + "dept": "SE", + "description": "Spatial visualization is the ability to manipulate 2D and 3D shapes in one\u2019s mind. In this course, students will perform exercises that increase their spatial visualization skills. P/NP grades only. Students may not receive credit for SE 7 and MAE 7. ", + "edges_from": [], + "edges_to": [], + "id": 3270, + "label": "SE 7", + "title": "Spatial Visualization (1)" + }, + { + "dept": "MAE", + "description": "Probability theory, conditional probability, Bayes theorem,", + "edges_from": [], + "edges_to": [ + 4891, + 5197, + 4894 + ], + "id": 3271, + "label": "MAE 108", + "title": "Probability and Statistical Methods for Mechanical Engineering (4)" + }, + { + "dept": "GPIM", + "description": "Traders in financial markets can have very different motivations. Some trade for personal reasons, perhaps to invest savings, to buy a house, to pay tuition for a child, or to provide recreational enjoyment. Some might possess value relevant private information about a security, or think they do. Some professional traders serve as counterparties for these other trader types. One of the central themes in this course is that institutions and experience matter, even when no trader possesses value relevant prior information. Students may not receive credit for GPIM 482 and IRGN 490, Governance, Public Administration, and Development.", + "edges_from": [], + "edges_to": [], + "id": 3272, + "label": "GPIM 482", + "title": "Market Microstructure (4)" + }, + { + "dept": "GPIM", + "description": "Game theory in economics is a very serious business. A game is defined by a complete set of rules that govern who plays the game, the decisions they confront, their state of knowledge at decision points, and the outcomes resulting from their decisions. It is a sometimes-maddening field in which intuitively obvious strategies can be inferior, credible threats have no credibility, and flipping a coin might be the best decision. This course offers a careful study of game theory basics with the intention of leading to a coherent set of insights into real-world strategic concerns. Students may not receive credit for GPIM 481 and IRGN 490, Game Theory and Strategy via Economics Experiments.", + "edges_from": [], + "edges_to": [], + "id": 3273, + "label": "GPIM 481", + "title": "Game Theory and Strategy via Economics Experiments (4)" + }, + { + "dept": "GPIM", + "description": "Markets that function well have five features: well defined and protected property rights; trust among market participants; adequate information flows; limited spillover effects from other market participants and stakeholders; and viable competition. These properties will be illustrated with economic experiments and through class discussion. Students may not receive credit for GPIM 480 and IRGN 480.", + "edges_from": [], + "edges_to": [], + "id": 3274, + "label": "GPIM 480", + "title": "Comparative Market Institutions (4)" + }, + { + "dept": "MAE", + "description": "Basic relations describing flow field around", + "edges_from": [], + "edges_to": [ + 4266 + ], + "id": 3275, + "label": "MAE 104", + "title": "Aerodynamics (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 554 + ], + "id": 3276, + "label": "MAE 9", + "title": "" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics from the history of Greek philosophy. Usually centers on works by Plato or Aristotle. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3277, + "label": "PHIL 210", + "title": "Greek Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics from philosophers of the sixteenth and seventeenth centuries: Descartes, Spinoza, Leibniz, or Locke. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3278, + "label": "PHIL 214", + "title": "Early Modern Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics from philosophers of the eighteenth century: for example, Kant or Hume. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3279, + "label": "PHIL 215", + "title": "Eighteenth-Century Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "A study of the historical development of the analytical movement, with emphasis on major texts. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3280, + "label": "PHIL 218", + "title": "Contemporary Analytical Philosophy (4)" + }, + { + "dept": "SOCI", + "description": "This course provides students with tools to conduct original research using qualitative interviews. Students will learn how to prepare, conduct, and analyze qualitative interviews. Special emphasis will be placed on the presentation of research in written form. ", + "edges_from": [ + 3281, + 3282 + ], + "edges_to": [ + 3281 + ], + "id": 3281, + "label": "SOCI 104Q", + "title": "Qualitative Interviewing (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 3281 + ], + "id": 3282, + "label": "SOCA 104Q", + "title": "" + }, + { + "dept": "MUS", + "description": "Students will collaborate with faculty and guest artists in", + "edges_from": [], + "edges_to": [], + "id": 3283, + "label": "MUS 200", + "title": "Contemporary Chamber Opera Performance (4)" + }, + { + "dept": "MUS", + "description": "Advanced performance of new music with members of the performance faculty (SONOR). Students taking this course do not need to take MUS 201 that quarter. Enrollment by consent of instructor/director of SONOR. ", + "edges_from": [], + "edges_to": [], + "id": 3284, + "label": "MUS 202", + "title": "Advanced Projects in Performance (1\u20134)" + }, + { + "dept": "MUS", + "description": "The purpose of this seminar is to bring in the entire population of the graduate composition program (all students and faculty) for in-depth discussion of critical issues in music theory and composition. Each meeting will feature a formal presentation by either a student, faculty member, or visitor, followed by lively and challenging debate on relevant issues. ", + "edges_from": [], + "edges_to": [], + "id": 3285, + "label": "MUS 204", + "title": "Focus on Composition (2)" + }, + { + "dept": "MUS", + "description": "Meets on a biweekly basis to facilitate presentations by advanced students and invited guests and to encourage in-depth discussion between students, faculty, and visitors about theoretical and artistic issues of interest. Participation is required of all enrolled IS students until advanced to candidacy. Others are welcome to participate. ", + "edges_from": [], + "edges_to": [], + "id": 3286, + "label": "MUS 205", + "title": "Focus on Integrative Studies (2)" + }, + { + "dept": "MUS", + "description": "Seminars growing out of current faculty interests. The approach tends to be speculative and includes individual projects or papers as well as assigned readings. In the past, such areas as new instrumental and vocal resources, mixed media, and compositional linguistics have been offered. ", + "edges_from": [], + "edges_to": [], + "id": 3287, + "label": "MUS 206", + "title": "Experimental Studies Seminar (4)" + }, + { + "dept": "MUS", + "description": "Seminars on subject areas relating to the established dimensions of music and in which theoreticians have produced a substantial body of work. These include studies in analysis, timbre, rhythm, notation, and psychoacoustics. Offerings vary depending on faculty availability and interest. Analytical paper required. ", + "edges_from": [], + "edges_to": [], + "id": 3288, + "label": "MUS 207", + "title": "Theoretical Studies Seminar (4)" + }, + { + "dept": "MUS", + "description": "Advanced integrated studies in music theory; composition and styles study through analysis and performance. This course is intended primarily for doctoral students and may be taken by MA students only with special approval of MA adviser and course instructor. A major research or analytical publishable paper required. ", + "edges_from": [], + "edges_to": [], + "id": 3289, + "label": "MUS 209", + "title": "Advanced Music Theory and Practice (4)" + }, + { + "dept": "POLI", + "description": "Selected topics to introduce students to current issues and trends in political science. May not be used to fulfill any major or minor requirements in political science. P/NP grades only. May be taken for credit four times.", + "edges_from": [], + "edges_to": [], + "id": 3290, + "label": "POLI 90", + "title": "Undergraduate Seminar (4)" + }, + { + "dept": "CHEM", + "description": "Hands-on laboratory course focuses on development of correct laboratory work habits and methodologies for the operation of modern analytical instrumentation. Gas chromatography, mass spectrometry, high performance liquid chromatography, ion chromatography, atomic absorption spectroscopy, fluorescence spectrometry, infrared spectrometry. Lecture focuses on fundamental theoretical principles, applications, and limitations of instrumentation used for qualitative and quantitative analysis. Program or materials fees may apply. Students may not receive credit for both CHEM 100B and 10. ", + "edges_from": [ + 593, + 599, + 760, + 346, + 27, + 30 + ], + "edges_to": [], + "id": 3291, + "label": "CHEM 100B", + "title": "Instrumental Chemistry Laboratory (5)" + }, + { + "dept": "ANTH", + "description": "Graduate students will visit key sites representing the three major approaches to studying human origins: fossils evidence, comparison with nonhumans, and study of human foragers. Visits will be combined with lectures, discussion, and brief training in conducting relevant field research. ", + "edges_from": [], + "edges_to": [], + "id": 3292, + "label": "ANTH 289S", + "title": "Tanzania Anthropogeny Study Tour (1\u20134)" + }, + { + "dept": "BIMM", + "description": "Course considers problems in biology that were solved using quantitative biology approaches. Problems will range from the molecular to the population level. Students will learn about the scientific method and process, and how to apply it. ", + "edges_from": [ + 687 + ], + "edges_to": [], + "id": 3293, + "label": "BIMM 140", + "title": "Quantitative Principles in Biology (4)" + }, + { + "dept": "BIMM", + "description": "Bioinformatics is the analysis of big data in the biosciences. This course provides a hands-on introduction to the computer-based analysis of biomolecular and genomic data. Major topic areas include advances in sequencing technologies, genome resequencing and variation analysis, transcriptomics, structural bioinformatics, and personal genomics. This course will utilize free, web-based bioinformatics tools and no programming skills are required. ", + "edges_from": [ + 2193, + 3295, + 3257, + 687 + ], + "edges_to": [], + "id": 3294, + "label": "BIMM 143", + "title": "Bioinformatics Laboratory (4)" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [], + "edges_to": [ + 241, + 3294 + ], + "id": 3295, + "label": "BIMM 101", + "title": "" + }, + { + "dept": "BIMM", + "description": "Course will provide students with the computational tools and problem-solving skills that are increasingly important to the biosciences. Students learn to program in a modern general-purpose programming language and write their own programs to explore a variety of applications in biology including simulations, sequence analysis, phylogenetics, among others. Students will use their own laptop computers. ", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [], + "id": 3296, + "label": "BIMM 149", + "title": "Computation for Biologists (4)" + }, + { + "dept": "INTL", + "description": "Open only to seniors who have completed INTL 190H. Completion of an honors thesis under the supervision of a member of the International Studies faculty. ", + "edges_from": [ + 3298 + ], + "edges_to": [], + "id": 3297, + "label": "INTL 196H", + "title": "International Studies Honors Program (4)" + }, + { + "dept": "INTL", + "description": "", + "edges_from": [], + "edges_to": [ + 3297 + ], + "id": 3298, + "label": "INTL 190H", + "title": "" + }, + { + "dept": "MATH", + "description": "Complex numbers and functions. Cauchy theorem and its applications, calculus of residues, expansions of analytic functions, analytic continuation, conformal mapping and Riemann mapping theorem, harmonic functions. Dirichlet principle, Riemann surfaces. ", + "edges_from": [ + 226, + 228 + ], + "edges_to": [], + "id": 3299, + "label": "MATH 220A-B-C", + "title": "Complex Analysis (4-4-4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which general topics of interest in electrical and computer engineering will be presented by visiting or resident faculty members. May be taken for credit six times provided each course is a different topic. ", + "edges_from": [], + "edges_to": [], + "id": 3300, + "label": "ECE 289", + "title": "Special Topics in Electrical and Computer Engineering (4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in computer engineering will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 3301, + "label": "ECE 284", + "title": "Special Topics in Computer Engineering (4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in signal and image processing or robotics and control systems will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 3302, + "label": "ECE 285", + "title": "Special Topics in Signal and Image Processing/Robotics and Control Systems (4)" + }, + { + "dept": "ECE", + "description": "Class discusses both fundamental and state-of-the-art research topics in computational statistics and machine learning. Topics vary based upon current research and have included: nonparametric Bayesian models; sampling methods for inference in graphical models; Markov Chain Monte Carlo (MCMC) methods. ", + "edges_from": [], + "edges_to": [], + "id": 3303, + "label": "ECE 286", + "title": "State-of-the-Art Topics in Computational Statistics and Machine Learning (4)" + }, + { + "dept": "ECE", + "description": "in Communication Theory and Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 3304, + "label": "ECE 287", + "title": "Special Topics" + }, + { + "dept": "ECE", + "description": "in Electronic Devices and Materials/Applied Physics (4)", + "edges_from": [], + "edges_to": [], + "id": 3305, + "label": "ECE 280", + "title": "Special Topics" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in nanoscience and nanotechnology will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 3306, + "label": "ECE 281", + "title": "Special Topics in Nanoscience/Nanotechnology (4)" + }, + { + "dept": "ECE", + "description": "A course to be given at the discretion of the faculty at which topics of interest in photonics, optoelectronic materials, devices, systems, and applications will be presented by visiting or resident faculty members. Subject matter will not be repeated, may be taken for credit more than once. ", + "edges_from": [], + "edges_to": [], + "id": 3307, + "label": "ECE 282", + "title": "Special Topics in Photonics/Applied Optics (4)" + }, + { + "dept": "ECE", + "description": "in Electronic Circuits and Systems (4)", + "edges_from": [], + "edges_to": [], + "id": 3308, + "label": "ECE 283", + "title": "Special Topics" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [ + 1351, + 169, + 171, + 3065, + 571, + 572, + 573 + ], + "edges_to": [ + 1488 + ], + "id": 3309, + "label": "MAE 143A", + "title": "" + }, + { + "dept": "ANTH", + "description": "This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens\u2019 efforts to promote social change in contemporary democracies. ", + "edges_from": [], + "edges_to": [], + "id": 3310, + "label": "ANTH 242", + "title": "Anthropology of Latin America (4)" + }, + { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. ", + "edges_from": [], + "edges_to": [], + "id": 3311, + "label": "ANSC 105", + "title": "Global Health and Inequality (4)" + }, + { + "dept": "LTCS", + "description": "This course examines the cultural practices of revolutionary societies from the French Revolution to present time. It focuses on China, Cuba, Russia, and Iran and explores how various cultural practices are produced in the course of building revolutionary societies.", + "edges_from": [], + "edges_to": [], + "id": 3312, + "label": "LTCS 134", + "title": "Culture and Revolution (4)" + }, + { + "dept": "LTCS", + "description": "Topics in Social Identities and the Media (4)", + "edges_from": [], + "edges_to": [], + "id": 3313, + "label": "LTCS 132", + "title": "Special" + }, + { + "dept": "LTCS", + "description": "Studies of cultural dimensions of immigration and citizenship. This course examines the diverse cultural texts\u2014literature, law, film, music, the televisual images, etc., that both shape and are shaped by immigration and the idea of citizenship in different national and historical contexts.", + "edges_from": [], + "edges_to": [], + "id": 3314, + "label": "LTCS 133", + "title": "Globalization and Culture (4)" + }, + { + "dept": "LTCS", + "description": "Race/Ethnicity, Class, and Culture (4)", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 3315, + "label": "LTCS 130", + "title": "Gender," + }, + { + "dept": "LTCS", + "description": "in Queer Cultures/Queer Subcultures (4)", + "edges_from": [], + "edges_to": [], + "id": 3316, + "label": "LTCS 131", + "title": "Topics" + }, + { + "dept": "VIS", + "description": "This course offers new approaches to understanding Michelangelo\u2019s greatest creations. By considering how each work relates to the setting for which it was intended, by regarding critical literature and artistic borrowings as evidence about the works, and by studying the thought of the spiritual reformers who counseled Michelangelo, new interpretations emerge which show the artist to be a deeply religious man who invested his works with both public and private meanings. ", + "edges_from": [ + 3080, + 3318, + 350, + 3319 + ], + "edges_to": [], + "id": 3317, + "label": "VIS 122D", + "title": "Michelangelo (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 3317 + ], + "id": 3318, + "label": "VIS 20", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 3317 + ], + "id": 3319, + "label": "VIS 21", + "title": "" + }, + { + "dept": "CHEM", + "description": "This seminar connects first-year students with the chemistry community (peers, staff, faculty, and other researchers) as they explore learning resources, study strategies, professional development, and current areas of active research. With an emphasis on academic and career planning, the series will feature guest lectures by UC San Diego faculty and staff, as well as industrial scientists and representatives from professional organizations such as the American Chemical Society (ACS). P/NP grades only.", + "edges_from": [], + "edges_to": [], + "id": 3320, + "label": "CHEM 1", + "title": "The Scope of Chemistry and Biochemistry (1)" + }, + { + "dept": "CHEM", + "description": "Offers less-well prepared science majors the fundamental skills necessary to succeed in CHEM 6. Emphasizes quantitative problems. Topics include nomenclature, stoichiometry, basic reactions, bonding, and the periodic table. May not receive credit for both CHEM 4 and CHEM 11. Includes a laboratory/discussion each week. Recommended: concurrent enrollment in MATH 3C, 4C or 10A or higher.", + "edges_from": [], + "edges_to": [], + "id": 3321, + "label": "CHEM 4", + "title": "Basic Chemistry (4)" + }, + { + "dept": "AWP", + "description": "AWP 1 provides underprepared writers the opportunity to develop their critical thinking and writing abilities. At the end of AWP 1, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 1. Students may take AWP 1 and ELWR 1 a combined total of three times to earn a passing grade of C or better to satisfy the UC Entry Level Writing Requirement.", + "edges_from": [], + "edges_to": [], + "id": 3322, + "label": "AWP 1", + "title": "Analytical Writing (4)" + }, + { + "dept": "CENG", + "description": "Probability theory, conditional probability, Bayes theorem, discrete random variables, continuous random variables, expectation and variance, central limit theorem, graphical and numerical presentation of data, least squares estimation and regression, confidence intervals, testing hypotheses. Cross-listed with\u00a0NANO\u00a0114. Students may not receive credit for both CENG 114 and NANO 114. ", + "edges_from": [ + 131, + 573, + 134, + 135 + ], + "edges_to": [], + "id": 3323, + "label": "CENG 114", + "title": "Probability and Statistical Methods for Engineers (4)" + }, + { + "dept": "FMPH", + "description": "Practicum participants will interpret and contextualize findings from the experiential learning program planned in 180A and completed during 180B. Oral and written presentations will focus on disseminating public health information in diverse formats. Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180C. Students may not receive credit for FPMU 180C and FMPH 180C. ", + "edges_from": [ + 3325 + ], + "edges_to": [], + "id": 3324, + "label": "FMPH 180C", + "title": "Public Health Advanced Practicum III (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [ + 3324 + ], + "id": 3325, + "label": "FMPH 180B", + "title": "" + }, + { + "dept": "FMPH", + "description": "Emphasizes key public health concepts including program planning, research design, and written/oral communication skills. Practicum done in combination with research, internship, or overseas experiences, completed after FMPH 180A. Open to public health majors with upper-division standing.Must be taken for a letter grade to be applied to the public health major. Renumbered from FPMU 180A. Students may not receive credit for FPMU 180A and FMPH 180A. ", + "edges_from": [ + 1971, + 1972, + 1973, + 1830, + 1974 + ], + "edges_to": [], + "id": 3326, + "label": "FMPH 180A", + "title": "Public Health Advanced Practicum I (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in cardiac bioengineering. ", + "edges_from": [ + 55 + ], + "edges_to": [ + 3328 + ], + "id": 3327, + "label": "BENG 148A", + "title": "Design Development in Cardiac Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in cardiac bioengineering. ", + "edges_from": [ + 57, + 3327 + ], + "edges_to": [ + 57 + ], + "id": 3328, + "label": "BENG 148B", + "title": "Design Implementation in Cardiac Bioengineering (3)" + }, + { + "dept": "HIEA", + "description": "Through primary and secondary readings on the lives of individual prominent and ordinary men and women from China\u2019s past, we explore the relation of the individual to social structures and accepted norms; personal relationships; and the creation of historical sources. +", + "edges_from": [], + "edges_to": [], + "id": 3329, + "label": "HIEA 129", + "title": "Faces of the Chinese Past (4)" + }, + { + "dept": "SOCI", + "description": "Honors Seminar: Supervised Thesis Research (4)", + "edges_from": [], + "edges_to": [], + "id": 3330, + "label": "SOCI 196B", + "title": "" + }, + { + "dept": "SOCI", + "description": "Honors Seminar: Advanced Studies in Sociology (4)", + "edges_from": [], + "edges_to": [], + "id": 3331, + "label": "SOCI 196A", + "title": "" + }, + { + "dept": "HIEA", + "description": "The impact of modern transformations on female roles and gender relations in China, Japan, and Korea, focusing on the late imperial/early modern periods through the twentieth century.", + "edges_from": [], + "edges_to": [], + "id": 3332, + "label": "HIEA 125", + "title": "Women and Gender in East Asia (4)" + }, + { + "dept": "HIEA", + "description": "Imperial Chinese Culture and Society (4)", + "edges_from": [], + "edges_to": [], + "id": 3333, + "label": "HIEA 122", + "title": "Late" + }, + { + "dept": "LTEA", + "description": "A survey of different genres of traditional Chinese poetry from various periods.", + "edges_from": [], + "edges_to": [], + "id": 3334, + "label": "LTEA 100A", + "title": "Classical Chinese Poetry in Translation (4)" + }, + { + "dept": "LTEA", + "description": "A survey of Chinese poetry written in the vernacular from 1918 to 1949.", + "edges_from": [], + "edges_to": [], + "id": 3335, + "label": "LTEA 100B", + "title": "Modern Chinese Poetry in Translation (4)" + }, + { + "dept": "LTEA", + "description": "Contemporary Chinese Poetry in Translation (4)", + "edges_from": [], + "edges_to": [], + "id": 3336, + "label": "LTEA 100C", + "title": "" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in finance. (Previously numbered Econ 214A.)", + "edges_from": [], + "edges_to": [], + "id": 3337, + "label": "ECON 270", + "title": "Finance\u2014Core Asset Pricing (4)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in finance. (Previously numbered Econ 214C.)", + "edges_from": [], + "edges_to": [], + "id": 3338, + "label": "ECON 272", + "title": "Finance\u2014Theory and Testing of Intertemporal Asset Pricing Models (4)" + }, + { + "dept": "MATH", + "description": "Topics from partially ordered sets, Mobius functions, simplicial complexes and shell ability. Enumeration, formal power series and formal languages, generating functions, partitions. Lagrange inversion, exponential structures, combinatorial species. Finite operator methods, q-analogues, Polya theory, Ramsey theory. Representation theory of the symmetric group, symmetric functions and operations with Schur functions.", + "edges_from": [], + "edges_to": [], + "id": 3339, + "label": "MATH 264A-B-C", + "title": "Combinatorics (4-4-4)" + }, + { + "dept": "ECE", + "description": "Review of discrete-time systems and signals, Discrete-Time Fourier Transform and its properties, the Fast Fourier Transform, design of Finite Impulse Response (FIR) and Infinite Impulse Response (IIR) filters, implementation of digital filters. ", + "edges_from": [ + 1685 + ], + "edges_to": [], + "id": 3340, + "label": "ECE 161A", + "title": "Introduction to Digital Signal Processing (4)" + }, + { + "dept": "ECE", + "description": "Sampling and quantization of baseband signals;", + "edges_from": [], + "edges_to": [], + "id": 3341, + "label": "ECE 161B", + "title": "Digital Signal Processing I (4)" + }, + { + "dept": "HITO", + "description": "Topics will examine lesbian, gay, bisexual, transgender, and queer identities, communities, culture, and politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 3342, + "label": "HITO 165/265", + "title": "Topics\u2014LGBT History (4)" + }, + { + "dept": "ETHN", + "description": "An intensive survey of social and cultural theory, focusing on how constructions of science, language, politics, and social inequality shaped early modernity, romantic nationalism, Marxism, cultural relativity, psychoanalysis, and fin de si\u00e8cle social thought. The second quarter surveys poststructuralist, postmodern, feminist, subaltern studies, globalization, and other critiques. ETHN 257A is not a prerequisite for ETHN 257B.", + "edges_from": [], + "edges_to": [], + "id": 3343, + "label": "ETHN 257A-B", + "title": "Social Theory (4-4)" + }, + { + "dept": "LTSP", + "description": "This course will study the representations of a variety of social issues (immigration, racism, class differences, violence, inter/intra-ethnic relations, etc.) in works written in Spanish by Latino/a and Chicano/a writers. May be taken up to two times for credit when topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3344, + "label": "LTSP 154", + "title": "Latino/a and Chicano/a Literature (4)" + }, + { + "dept": "MATH", + "description": "Topics in algebraic and analytic number theory, such as: L-functions, sieve methods, modular forms, class field theory, p-adic L-functions and Iwasawa theory, elliptic curves and higher dimensional abelian varieties, Galois representations and the Langlands program, p-adic cohomology theories, Berkovich spaces, etc. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 3345, + "label": "MATH 205", + "title": "Topics in Number Theory (4)" + }, + { + "dept": "LTSP", + "description": "Cross-disciplinary study of late twentieth-century Chicano/a-Latino/a literature, the visual and performing arts, film, or other cultural practices. Representative areas of study are social movements, revolution, immigration, globalization, gender and sexuality, cultures of the U.S.-Mexican border, and Chicano/a-Mexicano/a literary relations. May be taken up to two times for credit when topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3346, + "label": "LTSP 151", + "title": "Topics in Chicano/a-Latino/a Cultures (4)" + }, + { + "dept": "MATH", + "description": "Various topics in algebraic geometry. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 3347, + "label": "MATH 208", + "title": "Seminar in Algebraic Geometry (1)" + }, + { + "dept": "MATH", + "description": "Various topics in number theory. ", + "edges_from": [], + "edges_to": [], + "id": 3348, + "label": "MATH 209", + "title": "Seminar in Number Theory (1)" + }, + { + "dept": "LTSP", + "description": "An introduction to methodological and historical trends in Latin American and Caribbean cultural and literary studies. This course includes cultural representations from Latin America and the Caribbean such as film, literature, art, music, and/or photography. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3349, + "label": "LTSP 159", + "title": "Methodological Approaches to the Study of History and Culture in Latin America and the Caribbean (4)" + }, + { + "dept": "POLI", + "description": "An accelerated course in computer programming and data analytics for collecting, analyzing, and understanding data in the social world. Students engage in hands-on learning with applied social science problems, developing statistical and computational skills for sophisticated data manipulation, analysis, visualization. ", + "edges_from": [ + 2548, + 3351 + ], + "edges_to": [], + "id": 3350, + "label": "POLI 172", + "title": "Advanced Social Data Analytics (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 3350 + ], + "id": 3351, + "label": "POLI 30D", + "title": "" + }, + { + "dept": "ECON", + "description": "Examination of recent research in macroeconomics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.) ", + "edges_from": [ + 1192 + ], + "edges_to": [], + "id": 3352, + "label": "ECON 212A-B-C", + "title": "Workshop in Macroeconomics (0\u20134/0\u20134/0\u20134)" + }, + { + "dept": "POLI", + "description": "This class explores how we can make policy recommendations using data. We attempt to establish causal relationships between policy intervention and outcomes based on statistical evidence. Hands-on examples will be provided throughout the course. ", + "edges_from": [], + "edges_to": [], + "id": 3353, + "label": "POLI 171", + "title": "Making Policy with Data (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of psychological findings relevant to designing \u201cuser-friendly\u201d computers and devices and improving aviation and traffic safety. Topics include human perception as it pertains to displays and image compression, human memory limitations relevant to usability, and nature of human errors. ", + "edges_from": [], + "edges_to": [], + "id": 3354, + "label": "PSYC 161", + "title": "Engineering Psychology (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the intersection between psychology and the legal system, covering a broad range of forensically relevant issues. Topics may include false memories, false confessions, eyewitness reliability, lie detection, DNA exonerations of the wrongfully convicted, jury decision making, and neuroscience and the law Recommended preparation: PSYC 60. ", + "edges_from": [], + "edges_to": [], + "id": 3355, + "label": "PSYC 162", + "title": "Psychology and the Law (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the scientific study of law making and societal reaction to law breaking activity. Topics include major theories accounting for criminal behavior, the relationship between drugs and crime, the effects of penalties on recidivism, and the psychological effects of incarceration. ", + "edges_from": [], + "edges_to": [], + "id": 3356, + "label": "PSYC 164", + "title": "Criminology (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of the major trends and figures in the development of psychology as a field. Topics may include the mind-body problem, nativism vs. empiricism, and the genesis of behaviorism. ", + "edges_from": [], + "edges_to": [], + "id": 3357, + "label": "PSYC 166", + "title": "History of Psychology (4)" + }, + { + "dept": "PSYC", + "description": "This seminar explores how psychologists think about and study the imagination\u2014the capacity to mentally transcend time, place, and circumstance to think about what might have been, plan and anticipate the future, create and become absorbed in fictional worlds, and consider alternatives to actual experiences. You will learn how to evaluate psychological evidence, and how to read, interpret, discuss, present, and write about scientific literature. PC25, PC26, PS28, PC29, PC30, PC31, PC32, PC33, PC34, PC35, HD01, HD02, HD25, HD26, or CG32 major only.", + "edges_from": [], + "edges_to": [], + "id": 3358, + "label": "PSYC 167", + "title": "Science of Imagination (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of psychological disorders in children. Topics may include anxiety disorders, depressive and bipolar disorders, communication and learning disorders, conduct problems, autism, and other conditions. Emphasis is placed on symptomatology, assessment, etiological factors, epidemiology, and treatment. ", + "edges_from": [], + "edges_to": [], + "id": 3359, + "label": "PSYC 168", + "title": "Psychological Disorders of Childhood (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the neural mechanisms underlying perception, memory, language, and other mental capacities. Topics include how brain damage affects these capacities and how patients with brain lesions can contribute to our understanding of the normal brain. ", + "edges_from": [], + "edges_to": [], + "id": 3360, + "label": "PSYC 169", + "title": "Brain Damage and Mental Function (4)" + }, + { + "dept": "MAE", + "description": "Build, and Test Race Car (1)", + "edges_from": [], + "edges_to": [], + "id": 3361, + "label": "MAE 93", + "title": "Design Competition\u2014Design," + }, + { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum. P/NP grades only. May be taken for credit two times. Credit may not be received for a course numbered 97, 98, or 99 subsequent to receiving credit for a course numbered 197, 198, or 199. ", + "edges_from": [], + "edges_to": [], + "id": 3362, + "label": "MAE 98", + "title": "Directed Group Study (2)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 419 + ], + "id": 3363, + "label": "MATH 2C", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3531, + 572 + ], + "id": 3364, + "label": "MATH 21C", + "title": "" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1C. ", + "edges_from": [ + 1738, + 1739 + ], + "edges_to": [], + "id": 3365, + "label": "Linguistics/Arabic (LIAB) 1CX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "NEU", + "description": "This course is to introduce graduate students in the neurosciences to research methods used in electron microscopy (EM) through one hour of formal lecture, one hour of seminar, three hours of demonstration, and three hours of supervised laboratory work per week. Students will become familiar with sectioning EM, scanning EM, and freeze-fracture EM. ", + "edges_from": [], + "edges_to": [], + "id": 3366, + "label": "NEU 259", + "title": "Workshop in Electron Microscopy (4)" + }, + { + "dept": "LTSP", + "description": "Close reading of the 1605 and 1615 texts with special attention to the social and cultural background of the early seventeenth century in Spain. This course fulfills the pre-1900 requirement for Spanish literature majors. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3367, + "label": "LTSP 119C", + "title": "Cervantes: Don Quixote (4)" + }, + { + "dept": "HILA", + "description": "Examination of the historical roots of population problems, social conflict, and revolution in Latin America, with emphasis on man-land relationships. Special emphasis on modern reform efforts and on Mexico, Cuba, Brazil, and Argentina. Lecture, discussion, reading, and films.", + "edges_from": [], + "edges_to": [], + "id": 3368, + "label": "HILA 113D", + "title": "Lord and Peasant in Latin America (4)" + }, + { + "dept": "POLI", + "description": "An examination of the dynamics of the Russian Revolution from 1905 through the Stalinist period and recent years in light of theories of revolutionary change. Emphasis is placed on the significance of political thought, socioeconomic stratification, and culturo-historical conditions.", + "edges_from": [], + "edges_to": [], + "id": 3369, + "label": "POLI 130AD", + "title": "The Politics of the Russian Revolution (4)" + }, + { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1C. ", + "edges_from": [ + 3371, + 3372 + ], + "edges_to": [], + "id": 3370, + "label": "Linguistics/German (LIGM) 1CX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5464, + 3370 + ], + "id": 3371, + "label": "LIGM 1B", + "title": "" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5464, + 3370 + ], + "id": 3372, + "label": "LIGM 1BX", + "title": "" + }, + { + "dept": "TDGR", + "description": "The second of the three-part introductory stage management series, this course further explores the stage manager\u2019s process, focusing on the technical rehearsal period through the opening of a production. ", + "edges_from": [ + 3374 + ], + "edges_to": [ + 3375 + ], + "id": 3373, + "label": "TDGR 280B", + "title": "Stage Management 2 (4)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3373, + 3375 + ], + "id": 3374, + "label": "TDGR 280A", + "title": "" + }, + { + "dept": "TDGR", + "description": "The final course in the three-part introductory stage management series focuses on the stage manager\u2019s role once a production has opened. The course will also address topics such as new plays, touring, dance, multimedia productions, and music. ", + "edges_from": [ + 3373, + 3374 + ], + "edges_to": [], + "id": 3375, + "label": "TDGR 280C", + "title": "Stage Management 3 (4)" + }, + { + "dept": "DSC", + "description": "This course will introduce the theoretical foundations of data science. Students will become familiar with mathematical language for expressing data analysis problems and solution strategies, and will receive training in probabilistic reasoning, mathematical modeling of data, and algorithmic problem-solving. DSC 40B introduces fundamental topics in combinatorics, graph theory, probability, and continuous and discrete algorithms with applications to data analysis. DSC 40A-B connect to DSC 10, 20, and 30 by providing the theoretical foundation for the methods that underlie data science. ", + "edges_from": [ + 2968 + ], + "edges_to": [], + "id": 3376, + "label": "DSC 40B", + "title": "Theoretical Foundations of Data Science II (4)" + }, + { + "dept": "PHYS", + "description": "Applications of the theory of ideal quantum gases in condensed matter physics, nuclear physics and astrophysics; advanced thermodynamics, the third law, chemical equilibrium, low temperature physics; kinetic theory and transport in nonequilibrium systems; introduction to critical phenomena including mean field theory. ", + "edges_from": [ + 1364, + 3182 + ], + "edges_to": [], + "id": 3377, + "label": "PHYS 140B", + "title": "Statistical and Thermal Physics II (4)" + }, + { + "dept": "LTEN", + "description": "This course will focus on contemporary literature of the English-speaking Caribbean. The parallels and contrasts of this Third World literature with those of the Spanish- and French-speaking Caribbean will also be explored.", + "edges_from": [], + "edges_to": [], + "id": 3378, + "label": "LTEN 188", + "title": "Contemporary Caribbean Literature (4)" + }, + { + "dept": "LTEN", + "description": "Postcolonial Literatures (4)", + "edges_from": [], + "edges_to": [], + "id": 3379, + "label": "LTEN 189", + "title": "Twentieth-Century" + }, + { + "dept": "LTEN", + "description": "Introduction to the literature in English by the Chicano population, the men and women of Mexican descent who live and write in the United States. Primary focus on the contemporary period.", + "edges_from": [], + "edges_to": [], + "id": 3380, + "label": "LTEN 180", + "title": "Chicano Literature in English (4)" + }, + { + "dept": "LTEN", + "description": "Selected topics in the literature by men and women of Asian descent who live and write in the United States. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3381, + "label": "LTEN 181", + "title": "Asian American Literature (4)" + }, + { + "dept": "LTEN", + "description": "Analysis and discussion of the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characteristics of African American narrative and the cultural and social circumstances that influence their development.", + "edges_from": [], + "edges_to": [], + "id": 3382, + "label": "LTEN 183", + "title": "African American Prose (4)" + }, + { + "dept": "LTEN", + "description": "An intensive examination of a characteristic theme, special issue, or period in African American literature. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3383, + "label": "LTEN 185", + "title": "Themes in African American Literature (4)" + }, + { + "dept": "LTEN", + "description": "The Harlem Renaissance (1917\u201339) focuses on the emergence of the \u201cNew Negro\u201d and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.", + "edges_from": [], + "edges_to": [], + "id": 3384, + "label": "LTEN 186", + "title": "Literature of the Harlem Renaissance (4)" + }, + { + "dept": "GLBH", + "description": "Course gives students experience in teaching global health courses. Students, under direction of instructor, lead discussion sections, attend lectures, review course readings, and meet regularly to prepare course materials and to evaluate examinations and papers. Students will need to apply for the undergraduate instructional apprentice position through ASES, fulfill the Academic Senate regulations, and receive the approval of the department, instructor, department chair, and Academic Senate. May be taken for credit up to two times. Course cannot be used to fulfill requirements for the global health major or minor.", + "edges_from": [], + "edges_to": [], + "id": 3385, + "label": "GLBH 195", + "title": "Instructional Apprenticeship in Global Health (4)" + }, + { + "dept": "COGS", + "description": "Introductory-level course that will give students insight into the fundamental concepts of algorithmic thinking and design. The course will provide the students with first-person, hands-on experience programming a web crawler and simple physical robots.", + "edges_from": [], + "edges_to": [], + "id": 3386, + "label": "COGS 8", + "title": "Hands-on Computing (4)" + }, + { + "dept": "ANTH", + "description": "286. Topics in Anthropological Archaeology (4)", + "edges_from": [], + "edges_to": [], + "id": 3387, + "label": "ANTH", + "title": "" + }, + { + "dept": "BENG", + "description": "A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ", + "edges_from": [], + "edges_to": [], + "id": 3388, + "label": "BENG 283/Chem 283/BIOM 283", + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + { + "dept": "COGS", + "description": "This course is an introduction to the neuroscience behind the principles of economic decision-making. The topics in this course are aimed at exploring the underlying cognitive and neural mechanisms that drive the decisions behind traditional economic models.", + "edges_from": [], + "edges_to": [], + "id": 3389, + "label": "COGS 2", + "title": "Cognitive NeuroEconomics (4)" + }, + { + "dept": "COGS", + "description": "Covers the fundamental concepts that underlie all programming languages and provides an introduction to the essential information about algorithms and data structures. Students design and implement web applications using HTML5, CSS3, JavaScript, and Photoshop. No previous programming experience is required.", + "edges_from": [], + "edges_to": [], + "id": 3390, + "label": "COGS 3", + "title": "Introduction to Computing (4)" + }, + { + "dept": "ECE", + "description": "Teaching and tutorial activities associated with courses and seminars. Number of units for credit depends on number of hours devoted to class or section assistance. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3391, + "label": "ECE 501", + "title": "Teaching (1\u20134)" + }, + { + "dept": "PHIL", + "description": "An introduction to central topics in metaphysics with emphasis on classic texts or contemporary authors. May be taken for credit three times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3392, + "label": "PHIL 205A", + "title": "Core Course in Metaphysics (4)" + }, + { + "dept": "ENVR", + "description": "Instructor will define assistant\u2019s responsibilities in preparing class presentations, leading students\u2019 discussions, and evaluating students\u2019 work. May be taken two times for credit.", + "edges_from": [], + "edges_to": [], + "id": 3393, + "label": "ENVR 195", + "title": "Apprentice Teaching (0-4)" + }, + { + "dept": "Soc/G", + "description": "A discussion of major themes in the work of Tocqueville and Marx. ", + "edges_from": [], + "edges_to": [], + "id": 3394, + "label": "Soc/G 201A", + "title": "Classical Sociological Theory I (4)" + }, + { + "dept": "ENVR", + "description": "Independent study in a topic not generally covered in the regular curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 3395, + "label": "ENVR 199", + "title": "Independent Study (4)" + }, + { + "dept": "ENVR", + "description": "Directed group research and study, normally with a focus on areas not otherwise covered in the curriculum. ", + "edges_from": [], + "edges_to": [], + "id": 3396, + "label": "ENVR 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "GLBH", + "description": "Course will be a workshop with critical input from all participants focused on preparing a senior thesis. The course is oriented toward producing a senior thesis that serves as credential for students applying for postgraduate or professional training. ", + "edges_from": [ + 805 + ], + "edges_to": [], + "id": 3397, + "label": "GLBH 150B", + "title": "Global Health Capstone Seminar II (4)" + }, + { + "dept": "TDHT", + "description": "Focusing on the contemporary evolution of Chicano dramatic literature, this course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant \u201cactors,\u201d plays, and documentaries for their contributions to the developing Chicano theatre movement. (Cross-listed with Ethnic Studies 132.) No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 3398, + "label": "TDHT 110", + "title": "Chicano Dramatic Literature (4)" + }, + { + "dept": "TDHT", + "description": "Course examines the plays of leading Cuban American, Puerto Rican, and Chicano playwrights in an effort to understand the experience of these Hispanic American groups in the United States. (Cross-listed with Ethnic Studies 133.) No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 3399, + "label": "TDHT 111", + "title": "Hispanic American Dramatic Literature (4)" + }, + { + "dept": "TDHT", + "description": "The class will explore the musical\u2019s origins, evolution, components, and innovators, with emphasis on adaptation and the roles of the director and choreographer. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 3400, + "label": "TDHT 114", + "title": "American Musical Theatre (4)" + }, + { + "dept": "TDHT", + "description": "Evolution of directing theory from 1850 to the present with reference to the work of internationally influential directors such as Saxe-Meiningen, Antoine, Stanislavski, Meyerhold, Brecht, and Brook, among others. No prior knowledge in theatre history is needed. ", + "edges_from": [], + "edges_to": [], + "id": 3401, + "label": "TDHT 115", + "title": "History and Theory of Directing (4)" + }, + { + "dept": "TDHT", + "description": "Introduces theatre and dance students to the practice of contemporary production dramaturgy. Students learn strategies for applying the results of textual analysis and cultural research to the production process. ", + "edges_from": [], + "edges_to": [], + "id": 3402, + "label": "TDHT 119", + "title": "Production Dramaturgy (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in cell systems bioengineering. ", + "edges_from": [ + 55 + ], + "edges_to": [ + 3404 + ], + "id": 3403, + "label": "BENG 129A", + "title": "Design Development in Cell Systems Bioengineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in cell systems bioengineering. ", + "edges_from": [ + 57, + 3403 + ], + "edges_to": [ + 57 + ], + "id": 3404, + "label": "BENG 129B", + "title": "Design Implementation in Cell Systems Bioengineering (3)" + }, + { + "dept": "CSE", + "description": "This course will cover software engineering", + "edges_from": [], + "edges_to": [], + "id": 3405, + "label": "CSE 112", + "title": "Advanced Software Engineering (4)" + }, + { + "dept": "CSE", + "description": "Explores emerging opportunities enabled by cheap sensors and networked computing devices. Small research projects will be conducted in teams, culminating in project presentations at the end of the term. Section will cover material relevant to the project, such as research methods, software engineering, teamwork, and project management. ", + "edges_from": [ + 3210, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 2392, + 3196 + ], + "edges_to": [], + "id": 3406, + "label": "CSE 118", + "title": "Ubiquitous Computing (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3406 + ], + "id": 3407, + "label": "ECE 191", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3406 + ], + "id": 3408, + "label": "ECE 192", + "title": "" + }, + { + "dept": "COMT", + "description": "", + "edges_from": [], + "edges_to": [ + 3406 + ], + "id": 3409, + "label": "COMT 111B", + "title": "" + }, + { + "dept": "COMT", + "description": "", + "edges_from": [], + "edges_to": [ + 3406 + ], + "id": 3410, + "label": "COMT 115", + "title": "" + }, + { + "dept": "ICAM", + "description": "", + "edges_from": [], + "edges_to": [ + 3406 + ], + "id": 3411, + "label": "ICAM 160B", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 1631, + 1637, + 1630, + 4527 + ], + "edges_to": [ + 3406 + ], + "id": 3412, + "label": "COGS 184", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3406 + ], + "id": 3413, + "label": "ECE 118", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 1226, + 1227, + 3221 + ], + "edges_to": [ + 5051, + 3406 + ], + "id": 3414, + "label": "COGS 121", + "title": "" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [ + 2100 + ], + "edges_to": [ + 5052, + 3406 + ], + "id": 3415, + "label": "COGS 102C", + "title": "" + }, + { + "dept": "ECON", + "description": "Examination of recent research in applied economics; development of own research by graduate students and faculty. Course may be repeated an unlimited number of times. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 3416, + "label": "ECON 235A-B-C", + "title": "Workshop in Applied Economics (0\u20134/0\u20134/0\u20134)" + }, + { + "dept": "PHIL", + "description": "An examination of a single set of major contemporary social, political, or economic issues (e.g., environmental ethics, international ethics) in light of ethical and moral principles and values. Warren College students must take course for a letter grade in order to satisfy the Warren College general-education requirement. ", + "edges_from": [ + 584, + 3418 + ], + "edges_to": [], + "id": 3417, + "label": "PHIL 28", + "title": "Ethics and Society II (4)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [ + 518, + 519, + 44, + 45, + 144, + 145, + 150, + 151, + 152, + 153 + ], + "edges_to": [ + 3417 + ], + "id": 3418, + "label": "PHIL 27", + "title": "" + }, + { + "dept": "PHYS", + "description": "Particle motions, plasmas as fluids, waves, diffusion, equilibrium and stability, nonlinear effects, controlled fusion. Cross-listed with MAE 117A.\u00a0Students cannot earn credit for both Physics 151 and MAE 117A. ", + "edges_from": [ + 1120, + 571, + 613, + 1119 + ], + "edges_to": [], + "id": 3419, + "label": "PHYS 151", + "title": "Elementary Plasma Physics (4)" + }, + { + "dept": "PHIL", + "description": "An inquiry into fundamental questions at the intersection", + "edges_from": [], + "edges_to": [], + "id": 3420, + "label": "PHIL 25", + "title": "Science, Philosophy, and the Big Questions (4)" + }, + { + "dept": "PHIL", + "description": "An exploration of the interaction between scientific theory", + "edges_from": [], + "edges_to": [], + "id": 3421, + "label": "PHIL 26", + "title": "Science, Society, and Values (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1BX. ", + "edges_from": [ + 3424, + 3423 + ], + "edges_to": [], + "id": 3422, + "label": "Linguistics/Italian (LIIT) 1B", + "title": "Italian Conversation (2.5)" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 4985, + 4630, + 3422 + ], + "id": 3423, + "label": "LIIT 1A", + "title": "" + }, + { + "dept": "LIIT", + "description": "", + "edges_from": [], + "edges_to": [ + 4630, + 3422 + ], + "id": 3424, + "label": "LIIT 1AX", + "title": "" + }, + { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIIT 1CX. ", + "edges_from": [ + 1459, + 1460 + ], + "edges_to": [], + "id": 3425, + "label": "Linguistics/Italian (LIIT) 1C", + "title": "Italian Conversation (2.5)" + }, + { + "dept": "Linguistics/Italian", + "description": "Small conversation sections taught", + "edges_from": [], + "edges_to": [], + "id": 3426, + "label": "Linguistics/Italian (LIIT) 1D", + "title": "Italian Conversation (2.5)" + }, + { + "dept": "MATH", + "description": "Introduction to the probabilistic method. Combinatorial applications of the linearity of expectation, second moment method, Markov, Chebyschev, and Azuma inequalities, and the local limit lemma. Introduction to the theory of random graphs. ", + "edges_from": [], + "edges_to": [], + "id": 3427, + "label": "MATH 261A", + "title": "Probabilistic Combinatorics and Algorithms (4)" + }, + { + "dept": "MATH", + "description": "Combinatorics and Algorithms II (4)", + "edges_from": [], + "edges_to": [], + "id": 3428, + "label": "MATH 261B", + "title": "Probabilistic" + }, + { + "dept": "SE", + "description": "Elements of seismicity and seismology. Seismic hazards. Dynamic analysis of structures underground motion. Elastic and inelastic response spectra. Modal analysis, nonlinear time-history analysis. Earthquake resistant design. Seismic detailing. ", + "edges_from": [ + 914, + 3430 + ], + "edges_to": [], + "id": 3429, + "label": "SE 180", + "title": "Earthquake Engineering (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 4976, + 4474, + 3429, + 950 + ], + "id": 3430, + "label": "SE 130A", + "title": "" + }, + { + "dept": "SE", + "description": "Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. ", + "edges_from": [ + 913 + ], + "edges_to": [], + "id": 3431, + "label": "SE 184", + "title": "Ground Improvement (4)" + }, + { + "dept": "HIUS", + "description": "The course investigates race, resistance, and culture in the United States since the late nineteenth century. It interrogates how working-class whites, African Americans, Latinos, Asian Americans, and others have simultaneously challenged, shaped, and assimilated into US society. May be coscheduled with HIUS 268. ", + "edges_from": [], + "edges_to": [], + "id": 3432, + "label": "HIUS 168/268", + "title": "Race, Resistance, and Cultural Politics (4)" + }, + { + "dept": "LTKO", + "description": "", + "edges_from": [], + "edges_to": [ + 2210 + ], + "id": 3433, + "label": "LTKO 2C", + "title": "" + }, + { + "dept": "SOCI", + "description": "Society, and Social Justice (4)", + "edges_from": [], + "edges_to": [], + "id": 3434, + "label": "SOCI 147", + "title": "Organizations," + }, + { + "dept": "SOCI", + "description": "Focusing on American history, this course explores violence in the light of three major themes: struggles over citizenship and nationhood; the drawing and maintenance of racial, ethnic, and gender boundaries; and the persistence of notions of \u201cmasculinity\u201d and its relation to violence. ", + "edges_from": [ + 3435, + 3436 + ], + "edges_to": [ + 3435 + ], + "id": 3435, + "label": "SOCI 145", + "title": "Violence and Society (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3435 + ], + "id": 3436, + "label": "SOCB 145", + "title": "" + }, + { + "dept": "SOCI", + "description": "The organization, development, and mission of social control agencies in the nineteenth and twentieth centuries, with emphasis on crime and madness; agency occupations (police, psychiatrists, correctional work, etc.); theories of control movements. ", + "edges_from": [ + 3437, + 3438 + ], + "edges_to": [ + 3437 + ], + "id": 3437, + "label": "SOCI 144", + "title": "Forms of Social Control (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3437 + ], + "id": 3438, + "label": "SOCC 144", + "title": "" + }, + { + "dept": "SOCI", + "description": "Traditional and modern theories of suicide will be reviewed and tested. The study of suicide will be treated as one method for investigating the influence of society on the individual. ", + "edges_from": [ + 3440, + 3439 + ], + "edges_to": [ + 3439 + ], + "id": 3439, + "label": "SOCI 143", + "title": "Suicide (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3439 + ], + "id": 3440, + "label": "SOCB 143", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course studies the major forms of behavior seen as rule violations by large segments of our society and analyzes the major theories trying to explain them, as well as processes of rule making, rule enforcing, techniques of neutralization, stigmatization and status degradation, and rule change. ", + "edges_from": [ + 3441, + 3442 + ], + "edges_to": [ + 3441 + ], + "id": 3441, + "label": "SOCI 142", + "title": "Social Deviance (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3441 + ], + "id": 3442, + "label": "SOCB 142", + "title": "" + }, + { + "dept": "SOCI", + "description": "A study of the social origins of criminal law, the administration of justice, causes, and patterns of criminal behavior, and the prevention and control of crime, including individual rehabilitation and institutional change, and the politics of legal, police, and correctional reform. ", + "edges_from": [ + 3443, + 3444 + ], + "edges_to": [ + 3443 + ], + "id": 3443, + "label": "SOCI 141", + "title": "Crime and Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3443 + ], + "id": 3444, + "label": "SOCC 141", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course analyzes the functions of law in society, the social sources of legal change, social conditions affecting the administration of justice, and the role of social science in jurisprudence. ", + "edges_from": [ + 3445, + 3446 + ], + "edges_to": [ + 3445 + ], + "id": 3445, + "label": "SOCI 140", + "title": "Sociology of Law (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3445 + ], + "id": 3446, + "label": "SOCC 140", + "title": "" + }, + { + "dept": "HIUS", + "description": "Religion and Law in American History: Civil War to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 3447, + "label": "HIUS 155B", + "title": "" + }, + { + "dept": "HIUS", + "description": "Selected problems in the history of the relationship between religious beliefs and practice and legal institutions in the Anglo American world. Topics include the English background, religion in the age of the American Revolution and the antebellum period.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 3448, + "label": "HIUS 155A", + "title": "Religion and Law in American History: Foundations to the Civil War (4)" + }, + { + "dept": "SOCI", + "description": "Course focuses on the interaction between state and society. It discusses central concepts of political sociology (social cleavages, mobilization, the state, legitimacy), institutional characteristics, causes, and consequences of contemporary political regimes (liberal democracies, authoritarianism, communism), and processes of political change. ", + "edges_from": [ + 3449, + 3450 + ], + "edges_to": [ + 3449 + ], + "id": 3449, + "label": "SOCI 148", + "title": "Political Sociology (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3449 + ], + "id": 3450, + "label": "SOCC 148", + "title": "" + }, + { + "dept": "HDP", + "description": "Seminar for graduating HDP seniors. Readings and discussion of special topics in human development. Provides advanced-level study on subfields of human development. Topics vary quarterly. (May repeat when topics vary.) ", + "edges_from": [ + 3452 + ], + "edges_to": [], + "id": 3451, + "label": "HDP 150", + "title": "Senior Seminar (4)" + }, + { + "dept": "HDP", + "description": "", + "edges_from": [], + "edges_to": [ + 3451 + ], + "id": 3452, + "label": "HDP 181", + "title": "" + }, + { + "dept": "ECE", + "description": "Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ", + "edges_from": [ + 793, + 1226, + 1227 + ], + "edges_to": [ + 3454 + ], + "id": 3453, + "label": "ECE 140A", + "title": "The Art of Product Engineering I (4)" + }, + { + "dept": "ECE", + "description": "Building on a solid foundation of electrical and computer engineer skills, this course strives to broaden student skills in software, full-stack engineering, and concrete understanding of methods related to the realistic development of a commercial product. Students will research, design, and develop an IOT device to serve an emerging market. ", + "edges_from": [ + 3453 + ], + "edges_to": [], + "id": 3454, + "label": "ECE 140B", + "title": "The Art of Product Engineering II (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3455, + "label": "Linguistics/Heritage Languages (LIHL) 117P", + "title": "Persian for Persian Speakers (4)" + }, + { + "dept": "BIOM", + "description": "This course includes attendance at seminars in physiology and is designed to provoke critical discussion of the presented findings and scientific approaches in a small group setting. ", + "edges_from": [], + "edges_to": [], + "id": 3456, + "label": "BIOM 276", + "title": "Seminars in Physiology (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3457, + "label": "Linguistics/Heritage Languages (LIHL) 117W", + "title": "Persian for Persian Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Persian but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Persian. LIHL 117F, LIHL 117W, and LIHL 117P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3458, + "label": "Linguistics/Heritage Languages (LIHL) 117F", + "title": "Persian for Persian Speakers (4)" + }, + { + "dept": "MAE", + "description": "Pressure and shear waves in infinite solids. Reflection and diffraction. Rayleigh and Love waves in semi-infinite space. Impulse load on a half space. Waveguides and group velocity. ", + "edges_from": [], + "edges_to": [], + "id": 3459, + "label": "MAE 167", + "title": "Wave Dynamics in Materials (4)" + }, + { + "dept": "MAE", + "description": "Basic principles of synthesis techniques, processing, microstructural control and unique physical properties of materials in nanodimensions. Nanowires, quantum dots, thin films, electrical transport, optical behavior, mechanical behavior, and technical applications of nanomaterials. ", + "edges_from": [], + "edges_to": [], + "id": 3460, + "label": "MAE 166", + "title": "Nanomaterials (4)" + }, + { + "dept": "MAE", + "description": "and Failure Analysis of Engineering Components (4)", + "edges_from": [], + "edges_to": [], + "id": 3461, + "label": "MAE 165", + "title": "Fatigue" + }, + { + "dept": "HIUS", + "description": "This course explains the origin of the Atlantic as a zone of interaction for Europeans, indigenous Americans, and Africans, and evaluates the consequences of the interaction over several centuries by exploring contests over political power and economic/demographic change. Graduate students will submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 3462, + "label": "HIUS 178/278 The Atlantic World, 1400\u20131800 (4)", + "title": "" + }, + { + "dept": "LTRU", + "description": "Second-year Russian grammar, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 3463, + "label": "LTRU 2A", + "title": "Second-Year Russian (5)" + }, + { + "dept": "LTRU", + "description": "Second-year Russian grammar, with attention to reading, writing, and speaking.", + "edges_from": [], + "edges_to": [], + "id": 3464, + "label": "LTRU 2B", + "title": "Second-Year Russian (5)" + }, + { + "dept": "VIS", + "description": "A critical examination of the work of one of the most radical twentieth-century artists. In Duchamp\u2019s four-dimensional perspective, the ideas of art-object, artist, and art itself are deconstructed. The Large Glass and Etant Donn\u00e9es are the twin foci of an oeuvre without boundaries in which many twentieth-century avant-garde devices such as chance techniques, conceptual art, and the fashioning of fictive identities, are invented. ", + "edges_from": [], + "edges_to": [], + "id": 3465, + "label": "VIS 125DN", + "title": "Marcel Duchamp (4)" + }, + { + "dept": "Soc/G", + "description": "Open to graduate students engaged in thesis research. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3466, + "label": "Soc/G 299", + "title": "Thesis Research (1\u201312)" + }, + { + "dept": "Soc/G", + "description": "Tutorial individual guides study and/or independent research in an area not covered by present course offerings. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3467, + "label": "Soc/G 298", + "title": "Independent Study (1\u20138)" + }, + { + "dept": "Soc/G", + "description": "A research seminar in special topics of interest to available staff, provides majors and minors in sociology with research experience in close cooperation with faculty. (S/U grades permitted.) ", + "edges_from": [], + "edges_to": [], + "id": 3468, + "label": "Soc/G 290", + "title": "Graduate Seminar (4)" + }, + { + "dept": "CLRE", + "description": "The objective of the course is to provide students instruction in contemporary methods and statistical analyses in behavioral science research. Will teach hands-on practical skills in developing and validating assessment measures, designing clinical trials in behavioral sciences, dissemination and implementation methods, and meta-analysis. ", + "edges_from": [], + "edges_to": [], + "id": 3469, + "label": "CLRE 268", + "title": "Behavioral Science Research Methods (2)" + }, + { + "dept": "CLRE", + "description": "Course will introduce the R Statistical Platform and help to build proficiency for data analysis. Students will perform their own analysis of the data, using linear regression methods, ANOVA, logistic regression, and regression methods for survival data. They will understand the assumptions, areas of applicability, and limitations of these statistical methods. ", + "edges_from": [ + 111 + ], + "edges_to": [], + "id": 3470, + "label": "CLRE 262", + "title": "Analyzing Medical Data Using \u201cR\u201d (2)" + }, + { + "dept": "CLRE", + "description": "The class will introduce statistical methods and techniques for analyzing medical data from longitudinal studies using PASW/SPSS software. Students will understand the challenges and statistical issues for designing and analyzing longitudinal studies, recognize and use longitudinal data analysis methods and perform analysis. ", + "edges_from": [ + 111 + ], + "edges_to": [], + "id": 3471, + "label": "CLRE 263", + "title": "Longitudinal Data Analysis (2)" + }, + { + "dept": "CLRE", + "description": "Faculty member will direct a student\u2019s study in selected professional development topics in clinical research. Specific content will be tailored to the student\u2019s particular needs and interests. Students must make arrangements with the program and individual faculty member prior to enrolling in the course. ", + "edges_from": [], + "edges_to": [], + "id": 3472, + "label": "CLRE 260", + "title": "Directed Studies in Clinical Research (2)" + }, + { + "dept": "CLRE", + "description": "The course provides an introduction to the use of decision sciences in health care. Student will be able to construct and evaluate an appropriate decision analysis probability tree, value health outcomes, use sensitivity analysis and understand how to conduct a cost-effectiveness analysis. ", + "edges_from": [], + "edges_to": [], + "id": 3473, + "label": "CLRE 264", + "title": "Clinical Decision Analysis (2)" + }, + { + "dept": "CLRE", + "description": "This course will expose and familiarize students with important advanced statistical methods such as methods for numeric outcomes (Linear regression), nonlinear regression, methods for binary outcomes (Logistic regression), methods for counts (Poisson regression) and categorical outcomes (Log-linear models). ", + "edges_from": [ + 110, + 111 + ], + "edges_to": [], + "id": 3474, + "label": "CLRE 265", + "title": "Advanced Regression Methods (2)" + }, + { + "dept": "MUS", + "description": "This course will give practical experience in conducting a variety of works from various eras of instrumental and/or vocal music. Students will study problems of instrumental or vocal techniques, formal and expressive analysis of the music, and manners of rehearsal. Required of all graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 3475, + "label": "MUS 228", + "title": "Conducting (4)" + }, + { + "dept": "MUS", + "description": "A seminar to give practical experience in orchestration. Students will study works from various eras of instrumental music and will demonstrate their knowledge by orchestrating works in the styles of these various eras, learning the capabilities, timbre, and articulation of all the instruments in the orchestra. ", + "edges_from": [], + "edges_to": [], + "id": 3476, + "label": "MUS 229", + "title": "Seminar in Orchestration (4)" + }, + { + "dept": "VIS", + "description": "Directed group study on specific topics not covered at present in the normal curriculum. Used as an experimental testing of courses that may be given regular course numbers if proved successful. Special arrangement with faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3477, + "label": "VIS 298", + "title": "Directed Group Study (1\u201312)" + }, + { + "dept": "VIS", + "description": "Graduate-level research under the direct guidance of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3478, + "label": "VIS 299", + "title": "Graduate Research (1\u20134)" + }, + { + "dept": "VIS", + "description": "Individual research with the student\u2019s individual faculty adviser in preparation for their comprehensive exhibitions for the MFA degree or qualifying exam for the PhD. These units are intended to be with the chair of the student\u2019s review committee. For the MFA degree, these units can only be taken after completing the First Year Review. (Required, MFA, PhD)", + "edges_from": [], + "edges_to": [], + "id": 3479, + "label": "VIS 295", + "title": "Individual Studies for Graduate Students (1\u201312)" + }, + { + "dept": "CHEM", + "description": "Laboratory course in experimental physical chemistry. Program or materials fees may apply. ", + "edges_from": [ + 593, + 599, + 760, + 3481, + 3482, + 2555, + 2556, + 346 + ], + "edges_to": [ + 3483 + ], + "id": 3480, + "label": "CHEM 105A", + "title": "Physical Chemistry Laboratory (4)" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 3480, + 3216, + 3531, + 5404 + ], + "id": 3481, + "label": "CHEM 133", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [ + 596, + 594, + 27, + 132, + 30 + ], + "edges_to": [ + 3480, + 3216 + ], + "id": 3482, + "label": "CHEM 131", + "title": "" + }, + { + "dept": "CHEM", + "description": "Laboratory course in experimental physical chemistry. Program or materials fees may apply. ", + "edges_from": [ + 3480 + ], + "edges_to": [], + "id": 3483, + "label": "CHEM 105B", + "title": "Physical Chemistry Laboratory (4)" + }, + { + "dept": "TDAC", + "description": "A continuation of TDAC 103A. Working from Meisner technique, students will learn to deepen and detail their objectives, spontaneous response, and deep listening skills. Focus on the process that will lead to scene work using this technique. ", + "edges_from": [ + 3485 + ], + "edges_to": [], + "id": 3484, + "label": "TDAC 103B", + "title": "Acting Intensive II (4)" + }, + { + "dept": "TDAC", + "description": "", + "edges_from": [ + 1933 + ], + "edges_to": [ + 3484 + ], + "id": 3485, + "label": "TDAC 103A", + "title": "" + }, + { + "dept": "LTTH", + "description": "This seminar, regularly offered in the winter quarter, introduces various literary theories that are essential for graduate studies in the field of literature and other related fields. The list of readings is decided by the course instructor in consultation with the department. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3486, + "label": "LTTH 210B", + "title": "Introduction to Literary Theory (4)" + }, + { + "dept": "LTTH", + "description": "This course, regularly offered in the spring quarter, prepares students for dissertation research, publication, conference presentation, and job search. The course is required in one of the first three years of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3487, + "label": "LTTH 210C", + "title": "Practicum in Literary Professionalization (4)" + }, + { + "dept": "BIMM", + "description": "An introduction to virus structures, how they are determined,", + "edges_from": [], + "edges_to": [], + "id": 3488, + "label": "BIMM 164", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "LTTH", + "description": "This proseminar, regularly offered in the fall quarter, consists of seven or eight guest lectures by the literature faculty and introduces their research and methodologies. This proseminar is organized by a literature faculty member or the director of doctoral studies. The course is required in the first year of the Department of Literature doctoral program. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3489, + "label": "LTTH 210A", + "title": "Proseminar on Literary Scholarship (4)" + }, + { + "dept": "BIMM", + "description": "The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells.\u00a0The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed. Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BGGN 262/Chem 265. Note: Students may not receive credit for both BIMM 162 and Chem 165. Recommended preparation: Phys 1C or 2C. ", + "edges_from": [ + 240, + 1516 + ], + "edges_to": [], + "id": 3490, + "label": "BIMM 162", + "title": "3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)" + }, + { + "dept": "MATH", + "description": "Topics include regression methods: (penalized) linear regression", + "edges_from": [], + "edges_to": [], + "id": 3491, + "label": "MATH 287D", + "title": "Statistical Learning (4)" + }, + { + "dept": "MATH", + "description": "Discussion of finite parameter schemes in the Gaussian and non-Gaussian context. Estimation for finite parameter schemes. Stationary processes and their spectral representation. Spectral estimation. Students who have not taken Math 282A may enroll with consent of instructor. ", + "edges_from": [ + 1552 + ], + "edges_to": [], + "id": 3492, + "label": "MATH 287A", + "title": "Time Series Analysis (4)" + }, + { + "dept": "MATH", + "description": "Bivariate and more general multivariate normal distribution. Study of tests based on Hotelling\u2019s T2. Principal components, canonical correlations, and factor analysis will be discussed as well as some competing nonparametric methods, such as cluster analysis. Students who have not taken Math 282A may enroll with consent of instructor. ", + "edges_from": [ + 1552 + ], + "edges_to": [], + "id": 3493, + "label": "MATH 287B", + "title": "Multivariate Analysis (4)" + }, + { + "dept": "MATH", + "description": "Nonparametric function (spectrum, density,", + "edges_from": [], + "edges_to": [], + "id": 3494, + "label": "MATH 287C", + "title": "Advanced Time Series Analysis (4)" + }, + { + "dept": "LTCS", + "description": "A medical humanities course that examines compelling written and cinematic accounts of health issues confronting contemporary societies such as environmental pollution, contaminated food supply, recreational drug use, HIV/AIDS, cancer, chronic conditions (allergies, diabetes, obesity, arthritis), famine, natural disasters, and war. May be taken for credit two times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3495, + "label": "LTCS 155", + "title": "Health, Illness, and Global Culture (4)" + }, + { + "dept": "LTCS", + "description": "The course will examine one or more forms of cultural production or cultural practice from a variety of theoretical and historical perspectives. Topics may include: contemporary debates on culture, genres of popular music/fiction/film, AIDS and culture, the history of sexuality, subcultural styles, etc. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3496, + "label": "LTCS 150", + "title": "Topics in Cultural Studies (4)" + }, + { + "dept": "150A-B-C", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3497, + "label": "150A-B-C", + "title": "Advanced Japanese" + }, + { + "dept": "VIS", + "description": "A critical survey discussing the crisis of the Enlightenment, romanticism, realism and naturalism, academic art and history painting, representations of the New World, the Pre-Raphaelites, impressionism, international symbolism, postimpressionism, and the beginnings of modernism. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 3498, + "label": "VIS 124CN", + "title": "Nineteenth-Century Art (4)" + }, + { + "dept": "BIOM", + "description": "Advanced discussions following on \u201cIntroduction to Anthropogeny.\u201d Online \u201cMuseum of Comparative Anthropogeny (MOCA)\u201d will serve as major scaffold for this in-depth course. MOCA (", + "edges_from": [], + "edges_to": [], + "id": 3499, + "label": "BIOM 229", + "title": "Advanced Anthropogeny (2)" + }, + { + "dept": "BIOM", + "description": "Drug discovery is an emerging science available to academic investigators. This course provides an overview of these drug discovery techniques, including high through-put screening, cell-based screening, computational methods of lead compound discovery, and chemical methods of optimization. ", + "edges_from": [], + "edges_to": [], + "id": 3500, + "label": "BIOM 228", + "title": "Modern Drug Discovery Technologies (2)" + }, + { + "dept": "BENG", + "description": "An introduction to bioengineering that includes lectures and hands-on laboratory for design projects. The principles of problem definition, engineering inventiveness, team design, prototyping, and testing, as well as information access, engineering standards, communication, ethics, and social responsibility will be emphasized. P/NP grades only. ", + "edges_from": [], + "edges_to": [ + 270 + ], + "id": 3501, + "label": "BENG 1", + "title": "Introduction to Bioengineering (2)" + }, + { + "dept": "BENG", + "description": "Introduction to Matlab is designed to give students fluency in Matlab, including popular toolboxes. Consists of interactive lectures with a computer running Matlab for each student. Topics: variables, operations, and plotting; visualization and programming; and solving equations and curve fitting. ", + "edges_from": [], + "edges_to": [], + "id": 3502, + "label": "BENG 2", + "title": "Introductory Computer Programming and Matlab (2)" + }, + { + "dept": "SIOC", + "description": "This is a course in social media for the climate sciences. Students will develop a broad understanding of how to use social media to listen to, respond to, and engage in online climate science discussions. Students will learn to use digital technology to actively engage with constituents. Students will learn how social media can be used effectively for communications. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3503, + "label": "SIOC 291S", + "title": "@Climate (6)" + }, + { + "dept": "BIOM", + "description": "Advanced elective for graduate/medical students who have had core courses in cell biology or biochemistry. Expert faculty will present a coordinated overview of the field of glycobiology, which explores the structure, synthesis, and functions of sugar chains in biological systems.", + "edges_from": [], + "edges_to": [], + "id": 3504, + "label": "BIOM 222", + "title": "Essentials of Glycobiology (2)" + }, + { + "dept": "BIOM", + "description": "This course provides an overview of the use of mouse models in biomedical research. Sessions will cover general mouse biology, genetics, technologies for generating mutant mice and will focus on model selection, methodological approaches, data interpretation, experimental design, and ethics of animal research. Student participation and discussion will be encouraged. ", + "edges_from": [], + "edges_to": [], + "id": 3505, + "label": "BIOM 227", + "title": "Mouse Models of Human Disease (2)" + }, + { + "dept": "BIOM", + "description": "The course covers recent advances in research into hormone action, molecular endocrinology, lipid, lipoprotein, and carbohydrate metabolism, and reproductive medicine. ", + "edges_from": [ + 891, + 892, + 893 + ], + "edges_to": [], + "id": 3506, + "label": "BIOM 226", + "title": "Hormone Action (3)" + }, + { + "dept": "BIOM", + "description": "An overview of the current state of research into human origins with illustration of the spatial and temporal scales: from million-year-old phylogenies to millisecond physiological processes, and from human societies dispersed across continents to cells and molecules. ", + "edges_from": [], + "edges_to": [], + "id": 3507, + "label": "BIOM 225", + "title": "Introduction to Anthropogeny (2)" + }, + { + "dept": "BIOM", + "description": "Each quarter will focus on an important area of cancer research such as immunology (fall), growth regulation (winter), and cancer genetics (spring). One-hour lecture coordinated with a one-hour seminar with the opportunity to meet with the invited speaker. ", + "edges_from": [], + "edges_to": [], + "id": 3508, + "label": "BIOM 224", + "title": "Topics in Cancer Research (2)" + }, + { + "dept": "LTGM", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 3509, + "label": "LTGM 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "SOCI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminar topics will vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 3510, + "label": "SOCI 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "LTGM", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 3511, + "label": "LTGM 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical analysis of labor markets. Topics include: labor supply, labor demand, human capital investment, wage inequality, labor mobility, immigration, labor market discrimination, labor unions and unemployment. ", + "edges_from": [ + 402, + 406 + ], + "edges_to": [], + "id": 3512, + "label": "ECON 139", + "title": "Labor Economics (4)" + }, + { + "dept": "ECON", + "description": "This course will investigate differences in economic outcomes on the basis of race, gender, ethnicity, religion, and sexual orientation. We will study economic theories of discrimination, empirical work testing those theories, and policies aimed at alleviating group-level differences in economic outcomes. ", + "edges_from": [ + 410 + ], + "edges_to": [], + "id": 3513, + "label": "ECON 138", + "title": "Economics of Discrimination (4)" + }, + { + "dept": "ECON", + "description": "Addresses environmental issues that transcend national boundaries, such as climate change, biodiversity loss, over-fishing. Examines why international agreements are required, how they are negotiated and implemented, and studies their effectiveness. Explores whether more effective environmental treaties could be designed. ", + "edges_from": [ + 406, + 655 + ], + "edges_to": [], + "id": 3514, + "label": "ECON 133", + "title": "International Environmental Agreements (4)" + }, + { + "dept": "ECON", + "description": "Energy from an economic perspective. Fuel cycles for coal, hydro, nuclear, oil, and solar energy. Emphasis on efficiency and control of pollution. Comparison of energy use across sectors and across countries. Global warming. Role of energy in the international economy. ", + "edges_from": [ + 132, + 407, + 655, + 405, + 406, + 3063, + 410, + 411, + 3516, + 2173 + ], + "edges_to": [], + "id": 3515, + "label": "ECON 132", + "title": "Energy Economics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 406, + 655 + ], + "edges_to": [ + 3515 + ], + "id": 3516, + "label": "ECON 131", + "title": "" + }, + { + "dept": "ECON", + "description": "Course uses basic microeconomic tools to discuss a wide variety of public issues, including the war on drugs, global warming, natural resources, health care and safety regulation. Appropriate for majors who have not completed Econ 100A-B-C and students from other departments. ", + "edges_from": [ + 406, + 655 + ], + "edges_to": [], + "id": 3517, + "label": "ECON 130", + "title": "Public Policy (4)" + }, + { + "dept": "ECON", + "description": "A practical yet theory-based study of the firm\u2019s role in managing workers, including issues related to hiring, education and training, promotions, layoffs and buyouts, and the overarching role that worker compensation plays in all of these. ", + "edges_from": [ + 402 + ], + "edges_to": [], + "id": 3518, + "label": "ECON 136", + "title": "Human Resources (4)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with USP 102.) Economic analysis of why cities develop, patterns of land use in cities, why cities suburbanize, and the pattern of urban commuting. The course also examines problems of urban congestion, air pollution, zoning, poverty, crime, and discusses public policies to deal with them. Credit not allowed for both Econ 135 and USP 102. ", + "edges_from": [ + 419, + 420, + 406, + 655 + ], + "edges_to": [], + "id": 3519, + "label": "ECON 135", + "title": "Urban Economics (4)" + }, + { + "dept": "RELI", + "description": "An introduction to key topics in the study of religion through the analysis of religious texts, artifacts, and/or practices. The intent is to develop basic strategies of interpretation for undertaking a critical, disciplined study of religion.", + "edges_from": [], + "edges_to": [], + "id": 3520, + "label": "RELI 1", + "title": "Introduction to Religion (4)" + }, + { + "dept": "RELI", + "description": "An introduction to the comparative study of religion, focusing on religious traditions of global significance. Although historical aspects of these traditions will be studied, emphasis will be placed on religious beliefs and practices as manifested in the contemporary world.", + "edges_from": [], + "edges_to": [], + "id": 3521, + "label": "RELI 2", + "title": "Comparative World Religions (4)" + }, + { + "dept": "LTWL", + "description": "Consideration of pedagogical methods appropriate to undergraduate teaching in literature courses under the supervision of instructor of course. Doctoral students in literature are required to participate in undergraduate teaching for a minimum of twelve units (two to four units per quarter) prior to completion of the PhD degree.", + "edges_from": [], + "edges_to": [], + "id": 3522, + "label": "LTWL 500", + "title": "Apprentice Teaching in Literature (2 or 4)" + }, + { + "dept": "VIS", + "description": "Exploration of concepts in representational artworks by critically examining \u201cfound\u201d vs. \u201cmade\u201d recorded material. Advanced film/video, photography, computing work. Issues of narrative and structure; attention to formal aspects of media work emphasized. Two production-course limitation. ", + "edges_from": [ + 2841, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 2842 + ], + "edges_to": [], + "id": 3523, + "label": "VIS 180A", + "title": "Documentary Evidence and the Construction of Authenticity in Current Media Practices (4)" + }, + { + "dept": "VIS", + "description": "and Allegory in Current Media Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 3524, + "label": "VIS 180B", + "title": "Fiction" + }, + { + "dept": "POLI", + "description": "Introductory reading seminar on Latin American politics to acquaint students with leading schools of thought, provide critical perspective on premises and methodology, and identify themes for further inquiry. Themes include authoritarianism, revolution, democratization, regional conflict, and emergence of middle-level powers. ", + "edges_from": [], + "edges_to": [], + "id": 3525, + "label": "POLI 235A", + "title": "Latin American Politics (4)" + }, + { + "dept": "ECON", + "description": "Theoretical and empirical issues in labor economics. (Previously numbered Econ 236A-B.) ", + "edges_from": [], + "edges_to": [], + "id": 3526, + "label": "ECON 250", + "title": "Labor Economics (4)" + }, + { + "dept": "MUS", + "description": "This course presents selected topics in music and consists of lecture and listening sessions. No prior technical knowledge is necessary. The course will be offered during summer session.", + "edges_from": [], + "edges_to": [], + "id": 3527, + "label": "MUS 80", + "title": "Special Topics in Music (1\u20134 )" + }, + { + "dept": "MUS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 3528, + "label": "MUS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "CHEM", + "description": "of Teaching and Learning Science (4)", + "edges_from": [], + "edges_to": [], + "id": 3529, + "label": "CHEM 187", + "title": "Foundations" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BIMM 184/BENG 184/CSE 184.)", + "edges_from": [], + "edges_to": [], + "id": 3530, + "label": "CHEM 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "CHEM", + "description": "Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. ", + "edges_from": [ + 3481, + 132, + 2555, + 3364 + ], + "edges_to": [], + "id": 3531, + "label": "CHEM 185", + "title": "Introduction to Computational Chemistry (4)" + }, + { + "dept": "LTSP", + "description": "This course will examine issues of gender, sexuality, and culture in Spanish, Latin American, and/or Chicana/o literatures. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3532, + "label": "LTSP 175", + "title": "Gender, Sexuality, and Culture (4)" + }, + { + "dept": "LTSP", + "description": "Study of the relationships between cultural production (literature, film, popular cultures), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, revolution. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3533, + "label": "LTSP 174", + "title": "Topics in Culture and Politics (4)" + }, + { + "dept": "LTSP", + "description": "This course will focus on a variety of Latin American and/or Spanish intra- and international migrations throughout the world and on the literature produced by these exiles or immigrants. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3534, + "label": "LTSP 177", + "title": "Literary and Historical Migrations (4)" + }, + { + "dept": "LTSP", + "description": "Study of literature as a means through which the nation has been imagined and as a site of debates over national identity and citizenship. Course materials may focus on Spain and/or Latin America. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3535, + "label": "LTSP 176", + "title": "Literature and Nation (4)" + }, + { + "dept": "LTSP", + "description": "Focus on the interaction between literary expression and the study of society, covering issues such as the sociology of literature, the historical novel, literature and social change, the writer as the intellectual. May be taken for credit three times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3536, + "label": "LTSP 171", + "title": "Studies in Peninsular and/or Latin American Literature and Society (4)" + }, + { + "dept": "LTSP", + "description": "Selected readings in recent cultural and literary theory. Students will be exposed to a variety of methodologies drawn from the Latin American, European, and US traditions. May be taken up to two times for credit when topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 3537, + "label": "LTSP 170", + "title": "Contemporary Theories of Cultural Production (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with EDS 123.) In the lecture", + "edges_from": [], + "edges_to": [], + "id": 3538, + "label": "CHEM 188", + "title": "Capstone Seminar in Science Education (4)" + }, + { + "dept": "LTSP", + "description": "Themes in Latin American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 3539, + "label": "LTSP 172", + "title": "Indigenista" + }, + { + "dept": "POLI", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 3540, + "label": "POLI 99H", + "title": "Independent Study (1)" + }, + { + "dept": "POLI", + "description": "The Senior Seminar is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in political science at the upper-division level. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 3541, + "label": "POLI 192", + "title": "Senior Seminar in Political Science (1)" + }, + { + "dept": "POLI", + "description": "(Same as Com/Gen 194; USP 194, HITO 193, SocE 194, COGS 194) Course attached to six-unit internship taken by students participating in the UCDC Program. Involves weekly seminar meetings with faculty and teaching assistant and a substantial research paper. ", + "edges_from": [], + "edges_to": [], + "id": 3542, + "label": "POLI 194", + "title": "Research Seminar in Washington, DC (4)" + }, + { + "dept": "POLI", + "description": "Teaching and tutorial activities associated with courses and seminars. Limited to advanced political science majors with at least a 3.5 GPA in upper-division political science courses. P/NP grades only. May be taken for credit two times, but only four units may be used for major credit. ", + "edges_from": [], + "edges_to": [], + "id": 3543, + "label": "POLI 195", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "POLI", + "description": "Directed group study in an area not presently covered by the departmental curriculum. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3544, + "label": "POLI 198", + "title": "Directed Group Study (2-4)" + }, + { + "dept": "POLI", + "description": "Independent reading in advanced political science by individual students. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3545, + "label": "POLI 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to research on language acquisition and its relationship to conceptual development. Topics include theoretical foundations (e.g., learning mechanisms, theories of concepts) and empirical case studies, including word learning, syntax and semantics, and language and thought. Recommended preparation: completion of a course in language/linguistics, cognition, or cognitive development. ", + "edges_from": [], + "edges_to": [], + "id": 3546, + "label": "PSYC 146", + "title": "Language and Conceptual Development (4)" + }, + { + "dept": "PSYC", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 3547, + "label": "PSYC 147", + "title": "Gender" + }, + { + "dept": "PSYC", + "description": "This course will provide a survey of current research and theory concerning human memory and amnesia from both cognitive and neuropsychological perspectives. Topics may include short-term (working) memory, encoding and retrieval, episodic and semantic memory, interference and forgetting, false memory, eyewitness memory, emotion and memory, famous case studies of amnesia, and the effects of aging and dementia on memory. ", + "edges_from": [], + "edges_to": [], + "id": 3548, + "label": "PSYC 144", + "title": "Memory and Amnesia (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of language comprehension and production. Topics include animal communication, language development, and language disorders. Recommended preparation: completion of a course in language, cognition, or philosophy of the mind. ", + "edges_from": [], + "edges_to": [], + "id": 3549, + "label": "PSYC 145", + "title": "Psychology of Language (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a survey of research on consciousness from an experimental psychology perspective. Special emphasis will be placed on cognitive, neuro-imaging, and clinical/psychiatric investigative techniques, and on the scientific assessment of the mind-body problem. ", + "edges_from": [], + "edges_to": [], + "id": 3550, + "label": "PSYC 142", + "title": "Psychology of Consciousness (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the behavioral approach, including basic principles, self-control, clinical applications, and the design of cultures. ", + "edges_from": [], + "edges_to": [], + "id": 3551, + "label": "PSYC 143", + "title": "Control and Analysis of Human Behavior (4)" + }, + { + "dept": "PSYC", + "description": "This course provides training in applying the principles of human behavior, including choice behavior, self-control, and reasoning. ", + "edges_from": [ + 3553 + ], + "edges_to": [ + 3553 + ], + "id": 3552, + "label": "PSYC 140", + "title": "Human Behavior Laboratory (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 3552, + 3785 + ], + "edges_to": [ + 3552, + 3785 + ], + "id": 3553, + "label": "PSYC 120", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course provides insight into the question of whether important aspects of human behavior can be explained as resulting from natural selection. Topics include sex differences, selfishness and altruism, homicide and violence, and context effects of human reasoning. ", + "edges_from": [], + "edges_to": [], + "id": 3554, + "label": "PSYC 141", + "title": "Evolution and Human Nature (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of judgment and decision making, which is broadly concerned with preferences, subjective probability, and how they are combined to arrive at decisions. History and current topics will be covered. ", + "edges_from": [], + "edges_to": [], + "id": 3555, + "label": "PSYC 148", + "title": "Psychology of Judgment and Decision (4)" + }, + { + "dept": "LIGN", + "description": "Language in American culture and society.", + "edges_from": [], + "edges_to": [], + "id": 3556, + "label": "LIGN 8", + "title": "Languages and Cultures in America (4)" + }, + { + "dept": "LIGN", + "description": "The role of language in thought, myth, ritual, advertising, politics, and the law. Language variation, change, and loss; multilingualism, pidginization and creolization; language planning, standardization, and prescriptivism; writing systems. ", + "edges_from": [], + "edges_to": [], + "id": 3557, + "label": "LIGN 3", + "title": "Language as a Social and Cultural Phenomenon (4)" + }, + { + "dept": "LIGN", + "description": "Introduction to the study of language through the investigation of invented languages, whether conscious (Elvish, Klingon, Esperanto) or unconscious (creoles, twin/sibling languages). Students will participate in the invention of a language fragment. Topics discussed include language structure, history, culture, and writing systems. ", + "edges_from": [], + "edges_to": [], + "id": 3558, + "label": "LIGN 5", + "title": "The Linguistics of Invented Languages (4)" + }, + { + "dept": "LIGN", + "description": "Deaf history since the eighteenth century. The structure of American Sign Language and comparison with oral languages. ASL poetry and narrative and Deaf people\u2019s system of cultural knowledge. Basic questions concerning the nature of language and its relation to culture. ", + "edges_from": [], + "edges_to": [], + "id": 3559, + "label": "LIGN 7", + "title": "Sign Language and Its Culture (4)" + }, + { + "dept": "PHYS", + "description": "This is a two-quarter course on gravitation and the general theory of relativity. The first quarter is intended to be offered every year and may be taken independently of the second quarter. The second quarter will be offered in alternate years. Topics covered in the first quarter include special relativity, differential geometry, the equivalence principle, the Einstein field equations, and experimental and observational tests of gravitation theories. The second quarter will focus on more advanced topics, including gravitational collapse, Schwarzschild and Kerr geometries, black holes, gravitational radiation, cosmology, and quantum gravitation.", + "edges_from": [], + "edges_to": [], + "id": 3560, + "label": "PHYS 225A-B", + "title": "General Relativity (4-4)" + }, + { + "dept": "AAS", + "description": "This course will cover the experiences of peoples of African descent in the U.S. and broader African Diaspora from the vantage points of cultural production, political practice, socioeconomic conditions, and the overall struggle for social justice along intersecting lines of race, gender, and class. Topics reviewed include slavery (and slave rebellion), Reconstruction, Jim Crow apartheid, the Great Migration and Harlem Renaissance, and the Civil Rights and Black Power Movements.", + "edges_from": [], + "edges_to": [], + "id": 3561, + "label": "AAS 10", + "title": "Introduction to African American Studies (4)" + }, + { + "dept": "ANTH", + "description": "This seminar deals with recent developments in the anthropology of the political: contemporary forms of power and governance; the formation of the subject; imperial regimes and colonial/postcolonial orders; \u201cgovernmentality\u201d; global process and the contemporary transformations of the state and governance. ", + "edges_from": [], + "edges_to": [], + "id": 3562, + "label": "ANTH 218", + "title": "Anthropology of the State and Governance (4)" + }, + { + "dept": "ANTH", + "description": "The focus here is \u201cpolitics,\u201d broadly constructed, in various societies. Analysis is from the perspective of the recourses deployed by all involved, including but not limited to power, with emphasis on the role of culture and social structure. ", + "edges_from": [ + 3564 + ], + "edges_to": [], + "id": 3563, + "label": "ANTH 219", + "title": "Seminar in Political Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3563 + ], + "id": 3564, + "label": "ANGR 219", + "title": "" + }, + { + "dept": "ANTH", + "description": "Examines the worldwide resurgence of religion in the context of migration, missionization, the media, postcolonialism, and personal mobility in contemporary global culture. ", + "edges_from": [], + "edges_to": [], + "id": 3565, + "label": "ANTH 210", + "title": "Religion and Globalization (4)" + }, + { + "dept": "ANTH", + "description": "With special attention to the relationship between theory and data, this course deals with psychoanalytic approaches to the study of religion through a close examination of key ethnographic and historical studies of religious systems and experience. ", + "edges_from": [], + "edges_to": [], + "id": 3566, + "label": "ANTH 211", + "title": "Psychoanalysis and Religion (4)" + }, + { + "dept": "ANTH", + "description": "A critical exploration of timely and/or controversial topics in biological anthropology. Course will vary in title and content. ", + "edges_from": [], + "edges_to": [], + "id": 3567, + "label": "ANTH 212", + "title": "Advanced Topics in Biological Anthropology (4)" + }, + { + "dept": "ANTH", + "description": "This seminar examines intersection of anthropology and psychiatry. Topics include cultural conceptions and social determinants of anxiety, depression, trauma, and psychosis, corporeal experience and manifestation of illness, transnational variation in course and outcome, global circulation of psychiatric knowledge/practice and pharmaceuticals. ", + "edges_from": [], + "edges_to": [], + "id": 3568, + "label": "ANTH 213", + "title": "Anthropology and Mental Health (4)" + }, + { + "dept": "ANTH", + "description": "This seminar considers three major tropes for cultivating human relations\u2014being together, living together, and working together. In examining recent inquiries into kinship, environment, and labor, we explore each of these tropes as concrete channels of human relation along which such qualities as love, attachment, stigma, and threat might travel. How do people consider themselves related, and what are the potentials of those relations? ", + "edges_from": [], + "edges_to": [], + "id": 3569, + "label": "ANTH 214", + "title": "Kin, Land, and Labor-Cultivating Relations (4)" + }, + { + "dept": "ANTH", + "description": "A critical exploration of timely and/or controversial topics in sociocultural anthropology. Course will vary in title and content. ", + "edges_from": [], + "edges_to": [], + "id": 3570, + "label": "ANTH 215", + "title": "Advanced Topics in Sociocultural Anthropology (4)" + }, + { + "dept": "ANTH", + "description": "Pentecostal and charismatic Christianity have recently expanded around the globe. This course explores the cultural and social processes facilitating their spread and examines how these kinds of Christianity shape social life, politics, gender relations, and economic practices in convert societies. ", + "edges_from": [], + "edges_to": [], + "id": 3571, + "label": "ANTH 216", + "title": "Global Pentecostalism (4)" + }, + { + "dept": "ANTH", + "description": "The opposition between materiality and ideology structures our practice as social scientists and as neoliberal citizens. This course explores the underpinnings of this division, its current manifestations, and attempts to trouble it analytically, methodologically, and politically. ", + "edges_from": [], + "edges_to": [], + "id": 3572, + "label": "ANTH 217", + "title": "Materiality (4)" + }, + { + "dept": "ESYS", + "description": "Provides an introduction to environmental systems. Faculty members from departments in the natural sciences, geosciences, and social sciences will offer perspectives in these areas. (F)", + "edges_from": [], + "edges_to": [], + "id": 3573, + "label": "ESYS 90", + "title": "Perspectives on Environmental Issues (1)" + }, + { + "dept": "MATH", + "description": "An introduction to recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ", + "edges_from": [ + 8, + 226, + 6 + ], + "edges_to": [ + 5604 + ], + "id": 3574, + "label": "MATH 160A", + "title": "Elementary Mathematical Logic I (4)" + }, + { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1A. ", + "edges_from": [], + "edges_to": [], + "id": 3575, + "label": "Linguistics/German (LIGM) 1AX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "POLI", + "description": "An examination of some of the ideas and values", + "edges_from": [], + "edges_to": [], + "id": 3576, + "label": "POLI 110T", + "title": "Modern Political Ideologies (4)" + }, + { + "dept": "POLI", + "description": "This course will examine the historical development of the ideal of democracy from Periclean Athens to the present in the light of criticism by such thinkers as Plato, Tocqueville, and Mosca and difficulties encountered in efforts to realize the ideal.", + "edges_from": [], + "edges_to": [], + "id": 3577, + "label": "POLI 110H", + "title": "Democracy and Its Critics (4)" + }, + { + "dept": "POLI", + "description": "Leading political theories of liberal democracy since 1950. What is the meaning of political liberty? Political equality is the equality of what? Course will consider thinkers such as J.S. Mill, Berlin, Rawls, Dworkin, Taylor, Sen, Nussbaum, G. Cohen, Petit.", + "edges_from": [], + "edges_to": [], + "id": 3578, + "label": "POLI 110K", + "title": "Liberty and Equality (4)" + }, + { + "dept": "POLI", + "description": "This course examines how power has been conceived and contested during the course of American history. The course explores the changes that have occurred in political rhetoric and strategies as America has moved from a relatively isolated agrarian and commercial republic to a military and industrial empire.", + "edges_from": [], + "edges_to": [], + "id": 3579, + "label": "POLI 110J", + "title": "Power in American Society (4)" + }, + { + "dept": "POLI", + "description": "Leading theories of environmental justice, ethics, and politics since 1960. Thinkers such as Dauvergne, Dobson, Dryzek, Eckersley, Latour, Plumwood, and Simon on ecosystems, climate change, sustainability, preservation, human welfare, nonhuman animals, place, feminism, state, market, and green political movements. ", + "edges_from": [], + "edges_to": [], + "id": 3580, + "label": "POLI 110M", + "title": "Green Political Thought (4)" + }, + { + "dept": "POLI", + "description": "Nationalist ideologies. Examination of the rhetoric of nationalist mobilization. Theories about the relationship between nationalist movements and democracy, capitalism, warfare, and the state. ", + "edges_from": [], + "edges_to": [], + "id": 3581, + "label": "POLI 110N", + "title": "Theories of Nationalism (4)" + }, + { + "dept": "POLI", + "description": "and Saints: Political Thought from Plato to Augustine (4)", + "edges_from": [], + "edges_to": [], + "id": 3582, + "label": "POLI 110A", + "title": "Citizens" + }, + { + "dept": "POLI", + "description": "and Reaction: Political Thought from Kant to Nietzsche (4)", + "edges_from": [], + "edges_to": [], + "id": 3583, + "label": "POLI 110C", + "title": "Revolution" + }, + { + "dept": "POLI", + "description": "The course deals with the period that marks the rise and triumph of the modern state. Central topics include the gradual emergence of human rights and the belief in individual autonomy. Readings from Machiavelli, Hobbes, Locke, Rousseau, and others.", + "edges_from": [], + "edges_to": [], + "id": 3584, + "label": "POLI 110B", + "title": "Sovereigns, Subjects, and the Modern State: Political Thought from Machiavelli to Rousseau (4)" + }, + { + "dept": "POLI", + "description": "This course explores theories of politics that are oriented beyond state borders. Key topics include international order, cosmopolitanism, human rights, just war, global justice, mitigation, citizenship, identity, and commercial society. The course examines thinkers from classical antiquity to contemporary times.", + "edges_from": [], + "edges_to": [], + "id": 3585, + "label": "POLI 110G", + "title": "International Political Thought (4)" + }, + { + "dept": "BIBC", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 3586, + "label": "BIBC 194", + "title": "Advanced Topics in Modern Biology: Biochemistry (2)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 3587, + "label": "Linguistics/Hindi (LIHI) 1CX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "LATI", + "description": "Guided and supervised reading of the literature on Latin America in the interdisciplinary areas of anthropology, communications, economics, history, literature, political science, and sociology. For students majoring in Latin American Studies, reading will focus around potential topics for senior papers; for honors students in Latin American Studies, reading will culminate in formulation of a prospectus for the research thesis. ", + "edges_from": [ + 472 + ], + "edges_to": [], + "id": 3588, + "label": "LATI 199", + "title": "Individual Study (4)" + }, + { + "dept": "LATI", + "description": "Research seminar on selected topics in the study of Latin America; all students will be required to prepare and present independent research papers. (Honors students will present drafts of senior research theses, of no less than fifty pages in length; non-honors students will present final versions of analytical papers of approximately twenty-five to forty pages in length.) ", + "edges_from": [ + 472 + ], + "edges_to": [], + "id": 3589, + "label": "LATI 190", + "title": "Senior Seminar (4)" + }, + { + "dept": "LATI", + "description": "Independent reading and research under direction of a member of the faculty group in Latin American Studies; goal is to provide honors students with an opportunity to complete senior research thesis (to be defended before three-person interdisciplinary faculty committee). ", + "edges_from": [ + 472 + ], + "edges_to": [], + "id": 3590, + "label": "LATI 191", + "title": "Honors Seminar (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the diversity of emotional experience in human societies and the contribution of the study of emotion to understanding culture and human nature. ", + "edges_from": [], + "edges_to": [], + "id": 3591, + "label": "ANSC 128", + "title": "Culture and Emotion (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the nature of healing across cultures, with special emphasis on religious and ritual healing. ", + "edges_from": [], + "edges_to": [], + "id": 3592, + "label": "ANSC 129", + "title": "Meaning and Healing (4)" + }, + { + "dept": "TDGR", + "description": "Seminar acquaints doctoral students of all levels with research methods, theoretical models, publishing protocol, professional preparation, and pedagogical approaches particular to theatre and performance studies. Course assignments are tailored to students\u2019 scholarly interests and progress toward degree. ", + "edges_from": [], + "edges_to": [], + "id": 3593, + "label": "TDGR 289", + "title": "Introduction to Doctoral Studies (4)" + }, + { + "dept": "TDGR", + "description": "A weekly seminar in which all graduate stage managers participate. Includes discussions of problems encountered on current productions, paperwork, methodology, and production approaches. ", + "edges_from": [], + "edges_to": [], + "id": 3594, + "label": "TDGR 288", + "title": "Stage Management Seminar (4)" + }, + { + "dept": "ANSC", + "description": "Explores religious life in various cultures. Topics addressed include the problem of religious meaning, psychocultural aspects of religious experience, religious conversion and revitalization, contrasts between traditional and world religions, religion and social change. ", + "edges_from": [], + "edges_to": [], + "id": 3595, + "label": "ANSC 120", + "title": "Anthropology of Religion (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the role of communicative practices and language differences in organizing social life. Topics include social action through language; child language socialization; language and social identity (ethnicity, gender, class); interethnic communication; language ideologies; and language and power in social institutions and everyday life. ", + "edges_from": [], + "edges_to": [], + "id": 3596, + "label": "ANSC 122", + "title": "Language in Society (4)" + }, + { + "dept": "TDGR", + "description": "A course for MFA students in stage management. Topics will focus on various aspects of theatre administration, and advanced stage management, including nonprofit theatre, commercial theatre, advanced problems, venues, musicals/dance, production management, theatre development, business problems, and theatre marketing. ", + "edges_from": [], + "edges_to": [], + "id": 3597, + "label": "TDGR 286", + "title": "Special Topics in Stage Management (1\u20136)" + }, + { + "dept": "ANSC", + "description": "This course introduces the concept of culture and the debates surrounding it. Cultural anthropology asks how people create meaning and order in society, how culture intersects with power, and how national and global forces impact local meanings and practices. ", + "edges_from": [], + "edges_to": [], + "id": 3598, + "label": "ANSC 124", + "title": "Cultural Anthropology (4)" + }, + { + "dept": "ANSC", + "description": "How are gender and sexuality shaped by cultural ideologies, social institutions, and social change? We explore their connections to such dimensions of society as kinship and family, the state, religion, and popular culture. We also examine alternative genders/sexualities cross-culturally. Students may not receive credit for ANSC 125 and ANSC 125GS. ", + "edges_from": [], + "edges_to": [], + "id": 3599, + "label": "ANSC 125", + "title": "Gender, Sexuality, and Society (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the diversity of practices of child-rearing, socialization, and enculturation across cultures, and the role of culture in the development of personality, morality, spirituality, sexuality, emotion, and cognition. ", + "edges_from": [], + "edges_to": [], + "id": 3600, + "label": "ANSC 126", + "title": "Childhood and Adolescence (4)" + }, + { + "dept": "TDGR", + "description": "Creative projects to develop student\u2019s techniques and professional", + "edges_from": [], + "edges_to": [], + "id": 3601, + "label": "TDGR 282", + "title": "Advanced Sound Design (4)" + }, + { + "dept": "HISC", + "description": "in Twentieth-Century Science and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 3602, + "label": "HISC 165", + "title": "Topics" + }, + { + "dept": "HISC", + "description": "A selection of topics from physical, biological, or medical writings up to 1500. Emphasis on analysis of primary sources and contexts. Topics vary from year to year. Graduate students will be expected to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 3603, + "label": "HISC 169", + "title": "Topics in Pre-Renaissance Science (4)" + }, + { + "dept": "VIS", + "description": "Develop artworks and installations that utilize digital electronics. Techniques in digital electronic construction and computer interfacing for interactive control of sound, lighting, and electromechanics. Construction of devices that responsively adapt artworks to conditions involving viewer participation, space activation, machine intelligence. Recommended preparation: CSE 8A strongly recommended. Program or materials fees may apply. Purchase of components kit required. Two production-course limitation. ", + "edges_from": [ + 564, + 731, + 1348 + ], + "edges_to": [ + 1838 + ], + "id": 3604, + "label": "VIS 147A", + "title": "Electronic Technologies for Art I (4)" + }, + { + "dept": "MATH", + "description": "Second course in a two-quarter introduction to abstract algebra with some applications. Emphasis on rings and fields. Topics include: definitions and basic properties of rings, fields, and ideals, homomorphisms, irreducibility of polynomials. (Students may not receive credit for both Math 100B and Math 103B.) ", + "edges_from": [ + 8, + 6 + ], + "edges_to": [], + "id": 3605, + "label": "MATH 103B", + "title": "Modern Algebra II (4)" + }, + { + "dept": "MDE", + "description": "Case studies of integrative physiology to understand how this information is used in designing combination medical devices and instruments for diagnosis or research. Students may not receive credit for both MDE 231A and MDE 231. ", + "edges_from": [ + 3607 + ], + "edges_to": [], + "id": 3606, + "label": "MDE 231B", + "title": "Fundamentals of Physiology and Anatomy II (2)" + }, + { + "dept": "MDE", + "description": "", + "edges_from": [], + "edges_to": [ + 3606 + ], + "id": 3607, + "label": "MDE 231A", + "title": "" + }, + { + "dept": "TDPW", + "description": "Project in Playwriting/Screenwriting (4)", + "edges_from": [], + "edges_to": [], + "id": 3608, + "label": "TDPW 190", + "title": "Major" + }, + { + "dept": "LIGN", + "description": "Descriptive and theoretical problems in morphology. Theoretical and empirical consequences of alternative analyses. May be taken for credit three times. ", + "edges_from": [ + 3610 + ], + "edges_to": [], + "id": 3609, + "label": "LIGN 248", + "title": "Topics in Morphology (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [], + "edges_to": [ + 3609 + ], + "id": 3610, + "label": "LIGN 220", + "title": "" + }, + { + "dept": "TDMV", + "description": "An in-depth investigation of the role and aesthetics of performer/dancer in a fully staged independent project resulting in a dance performance choreographed by faculty or students. May be taken for credit two times.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3611, + "label": "TDMV 190", + "title": "Major Project as Performer (4)" + }, + { + "dept": "TDGE", + "description": "Students explore a variety of issues: screenwriting, directing, cinematography, and editing; the intersection of comedy and tragedy in Allen\u2019s works; recurring themes; and critical responses. Students view thirteen films and write two three-page essays and one ten-page research paper. ", + "edges_from": [], + "edges_to": [], + "id": 3612, + "label": "TDGE 122", + "title": "The Films of Woody Allen (4)" + }, + { + "dept": "LIGN", + "description": "Techniques of discovering the structure of a language through elicitation of data from native speaker consultants. Phonemic, morphemic, and syntactic analysis. ", + "edges_from": [ + 3614 + ], + "edges_to": [ + 3615 + ], + "id": 3613, + "label": "LIGN 240", + "title": "Field Methods (4)" + }, + { + "dept": "LIGN", + "description": "", + "edges_from": [ + 1756 + ], + "edges_to": [ + 4994, + 4995, + 3613 + ], + "id": 3614, + "label": "LIGN 110", + "title": "" + }, + { + "dept": "LIGN", + "description": "Fieldwork continuing the research of the previous quarter; student-directed elicitations on topics of interest. ", + "edges_from": [ + 3613 + ], + "edges_to": [], + "id": 3615, + "label": "LIGN 241", + "title": "Fieldwork (4)" + }, + { + "dept": "LIGN", + "description": "Introduction to computational corpus tools for performing empirically grounded linguistic investigations. Annotated and unannotated corpora; annotation schemes. Searching using regular expressions. UNIX tools. The PERL programming language. Publically available language processing systems.", + "edges_from": [], + "edges_to": [], + "id": 3616, + "label": "LIGN 245", + "title": "Computational Corpus Linguistics (4)" + }, + { + "dept": "LIGN", + "description": "Advanced material covering particular topics relating to the theoretical analysis of the pragmatics of natural languages. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 3617, + "label": "LIGN 247", + "title": "Topics in Pragmatics (2\u20134)" + }, + { + "dept": "TDGE", + "description": "Great films and the performance of the actors in them are analyzed in their historical, cinematic, or theatrical contexts. This course examines the actor\u2019s contribution to classic cinema and the social and aesthetic forces at work in film. ", + "edges_from": [], + "edges_to": [], + "id": 3618, + "label": "TDGE 125", + "title": "Topics in Theatre and Film (4)" + }, + { + "dept": "HITO", + "description": "The course analyzes mutual influences and exchanges between the United States and Germany from the late nineteenth to the mid-twentieth century. Topics include imperialism and racism, social thought and intellectual migration, economic relations, feminism, and youth cultures, war, and occupation. Graduate students must complete an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 3619, + "label": "HITO 168/268", + "title": "The U.S. and Germany from the 1890s to the 1960s: Transitional Relations and Competing Modernities (4)" + }, + { + "dept": "TDGE", + "description": "A select survey of eight to ten exceptional offbeat, frequently low-budget films from the last sixty years that have attained cult status. The mix includes Tod Browning\u2019s Freaks (1932) to John Water\u2019s Pink Flamingos (1973). Aspects of bad taste, cinematic irony, and theatrical invention will be highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 3620, + "label": "TDGE 124", + "title": "Cult Films: Weirdly Dramatic (4)" + }, + { + "dept": "VIS", + "description": "This course examines the significant topics in art practice, theory, and history that are shaping contemporary art thinking. A wide range of media extending across studio art practice, digital media, performative practices, and public culture will be considered as interrelated components. This course is required for visual arts transfer students. Students may not receive credit for both VIS 11 and VIS 111. This course is offered only one time each year during winter quarter. ", + "edges_from": [], + "edges_to": [], + "id": 3621, + "label": "VIS 11", + "title": "Introduction to Visual Arts (4)" + }, + { + "dept": "VIS", + "description": "Designed around presentations by visiting artists, critics, and scientists involved with contemporary issues related to computer arts and design. Lectures by the instructor and contextual readings provide background material for the visitor presentations. Program or materials fees may apply. Students may not receive credit for both VIS 10 and ICAM 110. This course is offered only one time each year. ", + "edges_from": [], + "edges_to": [], + "id": 3622, + "label": "VIS 10", + "title": "Computing in the Arts Lecture Series (4)" + }, + { + "dept": "CHIN", + "description": "Bachelor\u2019s thesis, under the direction", + "edges_from": [], + "edges_to": [], + "id": 3623, + "label": "CHIN 196", + "title": "Directed Thesis Research (4)" + }, + { + "dept": "CHIN", + "description": "Group Study in Chinese Studies (2 or 4)", + "edges_from": [], + "edges_to": [], + "id": 3624, + "label": "CHIN 198", + "title": "Directed" + }, + { + "dept": "CHIN", + "description": "or 4)", + "edges_from": [], + "edges_to": [], + "id": 3625, + "label": "CHIN 199", + "title": "Independent Study in Chinese Studies (2" + }, + { + "dept": "COMM", + "description": "How does media representation of race, nation, and violence work? Taking multicultural California as our site, we will explore how social power is embedded in a variety of visual texts, and how media not only represents but also reproduces conflict. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 3626, + "label": "COMM 129", + "title": "Race, Nation, and Violence in Multicultural California (4)" + }, + { + "dept": "COMM", + "description": "Concepts, possibilities, and dilemmas inherent in the notion of global citizenship. Formulate goals and instructional strategies for global education, expected competence of individuals within society. Examine roles that communication and curriculum play in the formation of identity, language use, and civic responsibility of global citizens. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 3627, + "label": "COMM 128", + "title": "Education and Global Citizenship (4)" + }, + { + "dept": "COMM", + "description": "This course will explore the problem of self-expression for members of various ethnic and cultural groups. Of special interest is how writers find ways of describing themselves in the face of others\u2019 sometimes overwhelming predilection to describe them. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 3628, + "label": "COMM 127", + "title": "Problem of Voice (4)" + }, + { + "dept": "COMM", + "description": "A course that analyzes the influence of media on children\u2019s behavior and thought processes. The course takes a historical perspective, beginning with children\u2019s print literature, encompassing movies, music, television, and computers. Students will study specific examples of media products intended for children and apply various analytic techniques, including content analysis and experimentation to these materials. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 3629, + "label": "COMM 126", + "title": "Children and Media (4)" + }, + { + "dept": "COMM", + "description": "How have politics, media, and society made visible features of life that were once hidden? From the women\u2019s health movement to gay liberation to laws requiring public disclosure, frankness challenges civility, privacy, and taste. How can this be understood? ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 3630, + "label": "COMM 125", + "title": "Transparent Society (4)" + }, + { + "dept": "LTLA", + "description": "", + "edges_from": [ + 1896 + ], + "edges_to": [ + 2323 + ], + "id": 3631, + "label": "LTLA 2", + "title": "" + }, + { + "dept": "MUS", + "description": "Third class in a yearlong sequence. Surveys hardware and software resources in an advanced analog/digital and media studio. Required course for use of the studio. Topics include: electronic and computer music, digital and analog audio signal mixing and manipulation, studio devices, interfacing, compositional applications, MIDI synchronization, performance and studio techniques, and student projects. 174C focuses on MIDI, synchronization, and sound-for-picture. ", + "edges_from": [ + 2072, + 3633 + ], + "edges_to": [], + "id": 3632, + "label": "MUS 174C", + "title": "Audio/MlDI Studio Techniques III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 2072, + 3634 + ], + "edges_to": [ + 3632 + ], + "id": 3633, + "label": "MUS 174B", + "title": "" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 2072 + ], + "edges_to": [ + 3633 + ], + "id": 3634, + "label": "MUS 174A", + "title": "" + }, + { + "dept": "COMM", + "description": "Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ", + "edges_from": [], + "edges_to": [], + "id": 3635, + "label": "COMM 196A", + "title": "Honors Seminar in Communication (4)" + }, + { + "dept": "COMM", + "description": "Preparation of an honors thesis, which can be either a research paper or a media production project. Open to students who have been admitted to the honors program. Grades will be awarded upon completion of the two-quarter sequence. ", + "edges_from": [], + "edges_to": [], + "id": 3636, + "label": "COMM 196B", + "title": "Honors Seminar in Communication (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in mathematical logic. Topics chosen from recursion theory, model theory, and set theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 2408 + ], + "edges_to": [], + "id": 3637, + "label": "MATH 267B", + "title": "Further Topics in Mathematical Logic (4)" + }, + { + "dept": "MUS", + "description": "All students enrolled in voice lessons (32V,", + "edges_from": [], + "edges_to": [], + "id": 3638, + "label": "MUS 32VM", + "title": "Vocal Master Class (1)" + }, + { + "dept": "MATH", + "description": "Supervised teaching as part of the mathematics instructional program on campus (or, in special cases such as the CTF program, off campus). ", + "edges_from": [], + "edges_to": [], + "id": 3639, + "label": "MATH 500", + "title": "Apprentice Teaching (1 to 4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 3640, + "label": "PSYC 269C", + "title": "Advanced Topics in Sound and Music Perception III (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 3641, + "label": "PSYC 269B", + "title": "Advanced Topics in Sound and Music Perception II (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in sound and music perception. S/U grades only.\u00a0May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 3642, + "label": "PSYC 269A", + "title": "Advanced Topics in Sound and Music Perception I (1)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3643, + "label": "LTRU 110B", + "title": "Survey of Russian and Soviet Literature in Translation, 1860\u20131917 (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3644, + "label": "LTRU 110C", + "title": "Survey of Russian and Soviet Literature in Translation, 1917\u2013present (4)" + }, + { + "dept": "LTRU", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3645, + "label": "LTRU 110A", + "title": "Survey of Russian and Soviet Literature in Translation, 1800\u20131860 (4)" + }, + { + "dept": "SOCI", + "description": "Will survey the liberal, communitarian, social-democratic, nationalist, feminist, post-nationalist, and multicultural views on the construction of the modern citizen and good society. ", + "edges_from": [ + 3646, + 3647 + ], + "edges_to": [ + 3646 + ], + "id": 3646, + "label": "SOCI 169", + "title": "Citizenship, Community, and Culture (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 3646 + ], + "id": 3647, + "label": "SOCD 169", + "title": "" + }, + { + "dept": "SOCI", + "description": "This class examines how science has been mobilized in the development of nuclear weapons and other weapons of mass destruction. The class applies sociological concepts to the analysis of modern technological violence. ", + "edges_from": [ + 3648, + 3649 + ], + "edges_to": [ + 3648 + ], + "id": 3648, + "label": "SOCI 167", + "title": "Science and War (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3648 + ], + "id": 3649, + "label": "SOCC 167", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course provides a general introduction to the development of the sociology of knowledge, and will explore questions concerning social determination of consciousness as well as theoretical ways to articulate a critique of ideology. ", + "edges_from": [ + 3650, + 3651 + ], + "edges_to": [ + 3650 + ], + "id": 3650, + "label": "SOCI 166", + "title": "Sociology of Knowledge (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3650 + ], + "id": 3651, + "label": "SOCB 166", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course explores concepts, theory and empirical research related to demographic, sociopsychological, and institutional aspects of the different stages of human development. It considers social influences on opportunities and constraints by gender, class, race/ethnicity, and historical period. ", + "edges_from": [ + 3652, + 3653 + ], + "edges_to": [ + 3652 + ], + "id": 3652, + "label": "SOCI 161", + "title": "Sociology of the Life Course (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3652 + ], + "id": 3653, + "label": "SOCB 161", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course will examine the concept of culture, its \u201cdisintegration\u201d in the twentieth century, and the repercussions on the integration of the individual. We will look at this process from a variety of perspectives, each focusing on one cultural fragment (e.g., knowledge, literature, religion) and all suggesting various means to reunify culture and consequently the individual. ", + "edges_from": [ + 3654, + 3655 + ], + "edges_to": [ + 3654 + ], + "id": 3654, + "label": "SOCI 160", + "title": "Sociology of Culture (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 3654 + ], + "id": 3655, + "label": "SOCB 160", + "title": "" + }, + { + "dept": "SOCI", + "description": "Provides a global sociological perspective on the development and consequences of laws regulating migration within and across nation-state borders. The ability of the nation-state to control migration using law and its policy instruments. The effects of different legal statuses on political and socioeconomic outcomes. ", + "edges_from": [ + 3656, + 3657 + ], + "edges_to": [ + 3656 + ], + "id": 3656, + "label": "SOCI 163", + "title": "Migration and the Law (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3656 + ], + "id": 3657, + "label": "SOCC 163", + "title": "" + }, + { + "dept": "SOCI", + "description": "An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. Students may not receive credit for both SOCI 162 and SOCB 162. ", + "edges_from": [], + "edges_to": [], + "id": 3658, + "label": "SOCI 162", + "title": "Popular Culture (4)" + }, + { + "dept": "COGS", + "description": "Graduate-level seminar studying the design of programming tools from a human-centered perspective, relying primarily on the latest research literature combined with classical theory in cognitive science and human-computer interaction. Course work involves critical reading, discussion, and programming projects. Letter grades only. Recommended preparation: Cognitive Science 120 or CSE 170.", + "edges_from": [], + "edges_to": [], + "id": 3659, + "label": "COGS 231", + "title": "Design Seminar on Human-Centered Programming (4)" + }, + { + "dept": "COGS", + "description": "(Cross-listed with CSE 216.) Prepares students to conduct original HCI research by reading and discussing seminal and cutting-edge research papers. Topics include design, social software, input techniques, mobile, and ubiquitous computing. Student pairs perform a quarter-long mini research project that leverages campus research efforts. Letter grades only.", + "edges_from": [], + "edges_to": [], + "id": 3660, + "label": "COGS 230", + "title": "Topics in Human-Computer Interaction (4)" + }, + { + "dept": "HIGR", + "description": "Independent work by graduate students engaged in research and writing of doctoral theses. This course may be repeated for an indefinite number of times due to the independent nature of thesis writing and research. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 3661, + "label": "HIGR 299", + "title": "PhD Thesis Direction (1\u201312)" + }, + { + "dept": "COGS", + "description": "This course focuses on aspects of individual and socially distributed cognition. Empirical examples are drawn from natural and experimental settings that presuppose, tacitly or explicitly, socially distributed knowledge among participants. The class examines the way locally managed, pragmatic conditions influence how decisions are framed.", + "edges_from": [], + "edges_to": [], + "id": 3662, + "label": "COGS 234", + "title": "Distributed Cognition (4)" + }, + { + "dept": "HIGR", + "description": "For students advanced to candidacy to the doctorate. Discussion, criticism, and revision of drafts of chapters of theses and of work to be submitted for publication.", + "edges_from": [], + "edges_to": [], + "id": 3663, + "label": "HIGR 295", + "title": "Thesis Seminar (4)" + }, + { + "dept": "COGS", + "description": "(Same as Linguistics 238.) Basic concepts, empirical findings, and recent developments in cognitive and functional linguistics. Language viewed dynamically in relation to conceptualization, discourse, meaning construction, and cognitive processing. (As topics vary, may be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 3664, + "label": "COGS 238", + "title": "Topics in Cognitive Linguistics (1\u20134)" + }, + { + "dept": "BENG", + "description": "Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices; nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles; nanostructures with biological molecules; nanostructural aspects of fuel cells, biofuel cells; potential use of DNA, other biomolecules. ", + "edges_from": [], + "edges_to": [], + "id": 3665, + "label": "BENG 247C/ECE 247C/NANO 247C", + "title": "Bionanotechnology (4)" + }, + { + "dept": "COGR", + "description": "Review and critique of studies employing discourse analysis, focusing on the ways that \u201cdiscourse\u201d is identified, recorded, and reported. A working notion of discourse will develop from works representing diverse disciplinary approaches. Students will record, transcribe, and report on segments of talk in an everyday setting. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ", + "edges_from": [], + "edges_to": [], + "id": 3666, + "label": "COGR 201C", + "title": "Discourse Analysis (4)" + }, + { + "dept": "COGR", + "description": "A supervised and coordinated group project will allow students to develop competence in a variety of ethnographic approaches to communication. Subjects covered include choosing a fieldwork site, setting or process for participation; entry and development of relationships; techniques of observation, interviewing, note taking, and transcription. Course may also include photography and video as research tools. All participant observation and interviewing strategies fall under the review of the Committee on Human Subjects. ", + "edges_from": [], + "edges_to": [], + "id": 3667, + "label": "COGR 201B", + "title": "Ethnographic Methods for Communication Research (4)" + }, + { + "dept": "TDGR", + "description": "The intensive study of the dramatic and fictional", + "edges_from": [], + "edges_to": [], + "id": 3668, + "label": "TDGR 210C", + "title": "Process I\u2014Part III (4)" + }, + { + "dept": "TDGR", + "description": "Intensive studio examination of realistic", + "edges_from": [], + "edges_to": [], + "id": 3669, + "label": "TDGR 210B", + "title": "Process I\u2014Part II (4)" + }, + { + "dept": "TDGR", + "description": "The actors focus on the nature of the acting", + "edges_from": [], + "edges_to": [], + "id": 3670, + "label": "TDGR 210A", + "title": "Process I\u2014Part I (4)" + }, + { + "dept": "ECON", + "description": "The study and development of effective pedagogical materials and techniques in economics. Students who hold appointments as teaching assistants must enroll in this course, but it is open to other students as well. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 3671, + "label": "ECON 500A-B-C", + "title": "Teaching Methods in Economics (4-4-4)" + }, + { + "dept": "COGR", + "description": "The logic of comparative analysis and its role in communication research. Scientific inference in qualitative research. Selection of cases. Problems of translation across cultures. ", + "edges_from": [], + "edges_to": [], + "id": 3672, + "label": "COGR 201J", + "title": "Comparative Analysis (4)" + }, + { + "dept": "COGR", + "description": "Training in genealogical analysis based on Foucault and Nietzsche. Weekly exercises in genealogical methods, and class discussions of findings. A final paper: a genealogy of an object, practice, utterance, or discourse. ", + "edges_from": [], + "edges_to": [], + "id": 3673, + "label": "COGR 201N", + "title": "Genealogical Analysis (4)" + }, + { + "dept": "COGR", + "description": "History uses methodology of quantitative analysis of media content. Includes conceptual issues concerning the quantification of meaning and practical procedures for coding and data analysis. Students read examples of studies using content analysis and carry out their own pilot analyses. ", + "edges_from": [], + "edges_to": [], + "id": 3674, + "label": "COGR 201M", + "title": "Content Analysis (4)" + }, + { + "dept": "COGR", + "description": "Historical and ethnographic studies of information systems\u2014the design and use of information and communication technologies in their social, ethical, political, and organizational dimensions. Objects of study range from the invention of file folders to e-mail use and distributed databases as communication systems. ", + "edges_from": [], + "edges_to": [], + "id": 3675, + "label": "COGR 201L", + "title": "Qualitative Analysis of Information Systems (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3676, + "label": "Linguistics/Heritage Languages (LIHL) 119P", + "title": "Hindi for Hindi Speakers (4)" + }, + { + "dept": "COGS", + "description": "This course is affiliated with the honors program (190A-B-C) and is required of honors students during spring quarter. Its aim is to prepare students to present research results to an audience. Emphasis will be on the oral presentation (organization, wording, graphics), but there will also be some discussion about written research reports. Seminar style format with occasional short lectures wherein students will practice oral presentations and provide constructive criticism to each other. ", + "edges_from": [], + "edges_to": [], + "id": 3677, + "label": "COGS 190D", + "title": "Preparation for Thesis Presentation (1)" + }, + { + "dept": "COGS", + "description": "This course will provide honors candidates", + "edges_from": [], + "edges_to": [], + "id": 3678, + "label": "COGS 190C", + "title": "Honors Thesis in Cognitive Science (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family media/arts; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3679, + "label": "Linguistics/Heritage Languages (LIHL) 119W", + "title": "Hindi for Hindi Speakers (4)" + }, + { + "dept": "COGS", + "description": "This course prepares students for the Cognitive", + "edges_from": [], + "edges_to": [], + "id": 3680, + "label": "COGS 190A", + "title": "Pre-Honors Project in Cognitive Science (4)" + }, + { + "dept": "HIUS", + "description": "This course introduces students to the field of Asian American history, with an emphasis on historiographical shifts and debates. It includes a wide range of topics and methodologies that cross disciplinary boundaries.", + "edges_from": [], + "edges_to": [], + "id": 3681, + "label": "HIUS 277", + "title": "Asian American Historiography (4)" + }, + { + "dept": "HIUS", + "description": "This seminar will examine racial formation in relation to US wars in American history. Topics include \u201cmanifest destiny\u201d and the frontier; radicalism and the \u201cRed Scare\u201d; the border patrol; civil rights movements; the \u201cwar on drugs,\u201d and mass incarceration.", + "edges_from": [], + "edges_to": [], + "id": 3682, + "label": "HIUS 274", + "title": "Race Wars in American Culture (4)" + }, + { + "dept": "LTEN", + "description": "and Eighteenth-Century English Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 3683, + "label": "LTEN 231", + "title": "Restoration" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Hindi but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Hindi. LIHL 119F, LIHL 119W, and LIHL 119P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3684, + "label": "Linguistics/Heritage Languages (LIHL) 119F", + "title": "Hindi for Hindi Speakers (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with ECE 156.) Characteristics of chemical, biological, seismic and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust censor fabrics; current experience with low power, low-cost sensor deployments. Students may not receive credit for both MAE 149 and ECE 156. May be coscheduled with SIOC 238. ", + "edges_from": [], + "edges_to": [], + "id": 3685, + "label": "MAE 149", + "title": "Sensor Networks (4)" + }, + { + "dept": "MAE", + "description": "This course is an introduction to robotic planning algorithms and programming. Topics: sensor-based planning (bug algorithms), motion planning via decomposition and search (basic search algorithms on graphs, A*), the configuration-space concept, free configuration spaces via sampling, collision detection algorithms, (optimal) planning via sampling (probabilistic trees), environment roadmaps, and (extended) Kalman filtering for robot localization and environment mapping (SLAM). ", + "edges_from": [ + 2216 + ], + "edges_to": [], + "id": 3686, + "label": "MAE 145", + "title": "Introduction to Robotic Planning and Estimation (4)" + }, + { + "dept": "MAE", + "description": "Each student builds, models, programs, and controls an unstable robotic system built around a small Linux computer. Review/synthesis of: A) modern physical and electrical CAD. B) dynamics, signals and systems, linear circuits; PWMs, H-bridges, quadrature encoders. C) embedded Linux, C, graphical programming; multithreaded applications; bus communication to supporting ICs. D) classical control theory in both continuous-time (CT) and discrete-time (DT); interconnection of CT and DT elements. Program or materials fees may apply. ", + "edges_from": [ + 1488, + 3688, + 3689 + ], + "edges_to": [], + "id": 3687, + "label": "MAE 144", + "title": "Embedded Control and Robotics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 3687 + ], + "id": 3688, + "label": "ECE 171A", + "title": "" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 1955 + ], + "edges_to": [ + 4143, + 3687 + ], + "id": 3689, + "label": "BENG 122A", + "title": "" + }, + { + "dept": "MAE", + "description": "and Control of Aerospace Vehicles (4)", + "edges_from": [], + "edges_to": [ + 4266, + 4268 + ], + "id": 3690, + "label": "MAE 142", + "title": "Dynamics" + }, + { + "dept": "VIS", + "description": "A studio course for serious art students at the advanced level. Stress will be placed on individual creative problems. Specific orientation of this course will vary with the instructor. Topics may include film, video, photography, painting, performance, etc. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3691, + "label": "VIS 108", + "title": "Advanced Projects in Art (4)" + }, + { + "dept": "VIS", + "description": "Individual or group projects over one or two quarters. Specific project organized by the student(s) will be realized during this course with instructor acting as a close adviser/critic. Concept papers/scripts must be completed by the instructor prior to enrollment. Two production-course limitation. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 3692, + "label": "VIS 109", + "title": "Advanced Projects in Media (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3693, + "label": "Linguistics/Heritage Languages (LIHL) 137W", + "title": "Advanced Persian for Persian Speakers (4)" + }, + { + "dept": "VIS", + "description": "This course is about the expansion of contemporary visual arts practice into a field of environmental, architectural, and urban sites. It foregrounds public engagement and political inquiry, explores new forms of research and community-based knowledge production, and develops strategies for visualizing the dynamics of contemporary urban life. ", + "edges_from": [], + "edges_to": [ + 5091, + 5519 + ], + "id": 3694, + "label": "VIS 100", + "title": "Introduction to Public Culture (4)" + }, + { + "dept": "VIS", + "description": "Introduction to urban inequality across the Tijuana\u2013San Diego region, and the border flows that make the marginalized neighborhoods within this geography of conflict into sites of socioeconomic and cultural productivity, laboratories to rethink the gap between wealth and poverty. ", + "edges_from": [], + "edges_to": [], + "id": 3695, + "label": "VIS 102", + "title": "Cross-Border Urbanizations (4)" + }, + { + "dept": "HDP", + "description": "Foundations of Human Development (4)", + "edges_from": [], + "edges_to": [], + "id": 3696, + "label": "HDP 133", + "title": "Sociocultural" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Persian. LIHL 137F, LIHL 137W, and LIHL 137P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3697, + "label": "Linguistics/Heritage Languages (LIHL) 137F", + "title": "Advanced Persian for Persian Speakers (4)" + }, + { + "dept": "MATH", + "description": "Applications of the residue theorem. Conformal", + "edges_from": [], + "edges_to": [], + "id": 3698, + "label": "MATH 120B", + "title": "Applied Complex Analysis (4)" + }, + { + "dept": "MATH", + "description": "Complex numbers and functions. Analytic functions, harmonic functions,", + "edges_from": [], + "edges_to": [], + "id": 3699, + "label": "MATH 120A", + "title": "Elements of Complex Analysis (4)" + }, + { + "dept": "HIUS", + "description": "149. African American History in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 3700, + "label": "HIUS 139/ETHN", + "title": "" + }, + { + "dept": "LTWR", + "description": "A continuation of LTWR 104A in which fiction writers complete the novella manuscripts they began during the previous quarter. Each student will produce a novella of at least fifty revised pages by the end of the quarter. We will continue to read and discuss published novellas with a particular emphasis on narrative strategy, structure, and revision. Two-quarter sequence; students must complete LTWR 104A and LTWR 104B in order to receive final grade in both courses. ", + "edges_from": [ + 3702 + ], + "edges_to": [], + "id": 3701, + "label": "LTWR 104B", + "title": "The Novella II (4)" + }, + { + "dept": "LTWR", + "description": "", + "edges_from": [ + 342 + ], + "edges_to": [ + 3701 + ], + "id": 3702, + "label": "LTWR 104A", + "title": "" + }, + { + "dept": "BENG", + "description": "Training (4)", + "edges_from": [], + "edges_to": [], + "id": 3703, + "label": "BENG 295", + "title": "Bioengineering Design Project and Industrial" + }, + { + "dept": "BENG", + "description": "Independent work by graduate students engaged in research and writing theses. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3704, + "label": "BENG 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "BENG", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3705, + "label": "BENG 298", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "MGT", + "description": "Provides hands-on experience in venture investing. Direct involvement in all stages of managing the Rady Venture Fund, including sourcing applicants, performing initial analysis, due diligence, investment negotiation, monitoring of the portfolio. Students have substantial input into fund investment decisions. Students may not earn credit for both MGT 496B and MGT 289B. They are course equivalents. S/U grades only. ", + "edges_from": [ + 3707 + ], + "edges_to": [], + "id": 3706, + "label": "MGT 496B", + "title": "Venture Capital Management II (2)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 3706 + ], + "id": 3707, + "label": "MGT 496A", + "title": "" + }, + { + "dept": "TDDE", + "description": "Project in Design/Theatre Production (4)", + "edges_from": [], + "edges_to": [], + "id": 3708, + "label": "TDDE 190", + "title": "Major" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in probability and statistics. Topics include: Markov processes, martingale theory, stochastic processes, stationary and Gaussian processes, ergodic theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 3710 + ], + "edges_to": [], + "id": 3709, + "label": "MATH 289B", + "title": "Further Topics in Probability and Statistics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 3709 + ], + "id": 3710, + "label": "MATH 289A", + "title": "" + }, + { + "dept": "MATH", + "description": "An introduction to various quantitative methods and statistical techniques for analyzing data\u2014in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. Recommended preparation: familiarity with linear algebra and mathematical statistics highly recommended. ", + "edges_from": [], + "edges_to": [], + "id": 3711, + "label": "MATH 289C", + "title": "Exploratory Data Analysis and Inference (4)" + }, + { + "dept": "ERC", + "description": "This weekly seminar focuses on the skills required to write an upper-division research paper and prepare for a winter quarter internship through Academic Internship Program. The structure of the seminar is informal, giving students the opportunity to participate in interactive discussions based on required reading and faculty speakers. ", + "edges_from": [], + "edges_to": [], + "id": 3712, + "label": "ERC 188", + "title": "Transfer Seminar: The Research University (1)" + }, + { + "dept": "MAE", + "description": "This course will reintroduce the math fundamentals necessary for success in the engineering graduate program in MAE. Topics will include calculus, ODE\u2019s, vector calculus, linear algebra, probability and PDE\u2019s. ", + "edges_from": [], + "edges_to": [], + "id": 3713, + "label": "MAE 208", + "title": "Mathematics for Engineers (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Methods C\u2014Quantitative Methods (4)", + "edges_from": [], + "edges_to": [], + "id": 3714, + "label": "EDS 288C", + "title": "Advanced" + }, + { + "dept": "LTCS", + "description": "Topics in Screening Race/Ethnicity, Gender and Sexuality (4)", + "edges_from": [], + "edges_to": [], + "id": 3715, + "label": "LTCS 172", + "title": "Special" + }, + { + "dept": "LTCS", + "description": "This course focuses on the critical study of representations of violence, such as war, genocide, sexual violence, and crime, across a range of media, including literature, film, photography, and other forms of visual culture. Repeatable for credit when readings and focus vary.", + "edges_from": [], + "edges_to": [], + "id": 3716, + "label": "LTCS 173", + "title": "Topics in Violence and Visual Culture (4)" + }, + { + "dept": "LTCS", + "description": "The course will focus on visual practices and discourses in their intersection and overlap, from traditional media, print, and photography to film, video, TV, computers, medical scanners, and the Internet.", + "edges_from": [], + "edges_to": [], + "id": 3717, + "label": "LTCS 170", + "title": "Visual Culture (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 183.) A colloquium dealing with special topics in the history of people of African descent in the United States. Themes will vary from quarter to quarter. Requirements will vary for undergraduate, MA, and PhD students. Graduate students will be required to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 3718, + "label": "ETHN 159", + "title": "Topics in African American History (4)" + }, + { + "dept": "ETHN", + "description": "This course examines Native American intellectuals\u2019 work. It provides a broad historical perspective on the development of twentieth-century Native American political thinking and discusses the recurring issues, problems, and themes inherent to Indian-white relations, as seen from Indian perspectives.", + "edges_from": [], + "edges_to": [], + "id": 3719, + "label": "ETHN 158", + "title": "Native American Intellectuals in the Twentieth Century (4)" + }, + { + "dept": "HIUS", + "description": "New York City breathes history. Whether it is in the music,", + "edges_from": [], + "edges_to": [], + "id": 3720, + "label": "HIUS 123/USP 167", + "title": "History of New York City (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 136.) This course traces the history of the institution of United States citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.", + "edges_from": [], + "edges_to": [], + "id": 3721, + "label": "ETHN 153", + "title": "Citizenship and Civil Rights in the Twentieth Century\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "In this course, students explore the relationship between race, class, and law as it applies to civil rights both in a historical and a contemporary context. Topics include racism and the law, history of the Fourteenth Amendment, equal protection, school desegregation, and affirmative action.", + "edges_from": [], + "edges_to": [], + "id": 3722, + "label": "ETHN 152", + "title": "Law and Civil Rights (4)" + }, + { + "dept": "ETHN", + "description": "This course will survey the political effects of immigration, ethnic mobilization, and community building in America, and the contemporary role of ethnicity in politics and intergroup relations.", + "edges_from": [], + "edges_to": [], + "id": 3723, + "label": "ETHN 151", + "title": "Ethnic Politics in America (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 150.) Examines the role of the visual in power relations; the production of what we \u201csee\u201d regarding race and sexuality; the interconnected history of the casta system, plantation slavery, visuality, and contemporary society; decolonial and queer counternarratives to visuality.", + "edges_from": [], + "edges_to": [], + "id": 3724, + "label": "ETHN 150", + "title": "Visuality, Sexuality, and Race (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with USP 149.) This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes.", + "edges_from": [], + "edges_to": [], + "id": 3725, + "label": "ETHN 157", + "title": "Madness and Urbanization\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "This course considers rationales for and responses to American military expansion as well as its social, environmental, and cultural consequences.\u00a0We will examine racialized, gendered, and sexualized aspects of militarized institutions and practices, including militarized colonialism, tourism, and sex work. ", + "edges_from": [], + "edges_to": [], + "id": 3726, + "label": "ETHN 155", + "title": "US Militarism\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with HIUS 113.) This course explores the history of the largest minority population in the United States, focusing on the legacies of the Mexican War, the history\u00a0of Mexican immigration and US-Mexican relations, and the struggle for citizenship and civil rights.", + "edges_from": [], + "edges_to": [], + "id": 3727, + "label": "ETHN 154", + "title": "History of Mexican America (4)" + }, + { + "dept": "ESYS", + "description": "This course surveys biochemical and physiological processes governing the relationship between organisms and their environments, such as those involved in element cycling and cellular homeostasis. The course introduces biological perspectives on human activities ranging from antibiotic use to genetic engineering. ", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [], + "id": 3728, + "label": "ESYS 101", + "title": "Environmental Biology (4)" + }, + { + "dept": "ESYS", + "description": "Earth\u2019s dynamic physical systems interact in complex ways with profound impact on our environment. Processes such as volcanism and weathering enable geochemical exchange between solid and fluid (ocean and atmosphere) systems. Sea level and climate changes interface with tectonic processes. ", + "edges_from": [ + 1264, + 26, + 419, + 420, + 667 + ], + "edges_to": [], + "id": 3729, + "label": "ESYS 102", + "title": "The Solid and Fluid Earth (4)" + }, + { + "dept": "HIGR", + "description": "Research Seminar in Middle Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 3730, + "label": "HIGR 275A", + "title": "" + }, + { + "dept": "ANBI", + "description": "Attitudes toward other individuals (and species) are often shaped by their apparent \u201cintelligence.\u201d This course discusses the significance of brain size/complexity, I.Q. tests, communication in marine mammals and apes, complex behavioral tactics, and the evolution of intelligence. ", + "edges_from": [], + "edges_to": [], + "id": 3731, + "label": "ANBI 159", + "title": "Biological and Cultural Perspectives on Intelligence (4)" + }, + { + "dept": "EDS", + "description": "Reading, writing, and speaking exercises will introduce students to the teaching conventions and learning expectations of American universities. Students will use writing as a means of academic inquiry to explore the culture of higher education in the United States and will gain practice with appropriate style, structure, and mechanics. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3732, + "label": "EDS 21S", + "title": "Writing and Learning\u2014Triton Transition (4)" + }, + { + "dept": "MGT", + "description": "Principles and decisions to be considered in overall communications and promotion strategy for traditional channels and emerging social networks. Decisions on promotional mix, ad design, implementation and evaluation for establishing brand equity, measure brand performance and sustaining brand equity. ", + "edges_from": [ + 2878 + ], + "edges_to": [], + "id": 3733, + "label": "MGT 105", + "title": "Product Promotion and Brand Management (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3734, + "label": "FMPH 199", + "title": "Independent Study (2\u20134)" + }, + { + "dept": "FMPH", + "description": "Selected topics in the field of public health. Must be taken for a letter grade to be applied to the public health major. May be taken for credit up to three times. ", + "edges_from": [ + 1973 + ], + "edges_to": [], + "id": 3735, + "label": "FMPH 191", + "title": "Topics in Public Health (4)" + }, + { + "dept": "FMPH", + "description": "This is the first of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will integrate the skills and knowledge gained throughout the BSPH program and learn critical elements of public health research and practice.Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1971, + 1972, + 1973, + 1830, + 1974 + ], + "edges_to": [ + 3738 + ], + "id": 3736, + "label": "FMPH 193", + "title": "Public Capstone I (4)" + }, + { + "dept": "FMPH", + "description": "Introduction to teaching in a public health course. As an undergraduate instructional apprentice, students will attend the lectures of the course, weekly meetings with students of the course, and weekly meetings with the course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. Renumbered from FPMU 195. FMPH 195 and/or FPMU 195 may be taken for credit for a combined total of two times. ", + "edges_from": [], + "edges_to": [], + "id": 3737, + "label": "FMPH 195", + "title": "Instruction in Public Health (4)" + }, + { + "dept": "FMPH", + "description": "This is the second of a two-part capstone series that serves as the culminating experience for the BS in public health (BSPH) majors. Students will interpret and contextualize findings from their projects completed in the first part of the series. Oral and written presentations will focus on disseminating public health information in diverse formats.Must be taken for a letter grade to be applied to the public health major. ", + "edges_from": [ + 1830, + 1971, + 1972, + 1973, + 1974, + 3736, + 3739 + ], + "edges_to": [], + "id": 3738, + "label": "FMPH 194", + "title": "Public Capstone II (4)" + }, + { + "dept": "FMPH", + "description": "", + "edges_from": [ + 1973 + ], + "edges_to": [ + 3738 + ], + "id": 3739, + "label": "FMPH 120", + "title": "" + }, + { + "dept": "BIOM", + "description": "Laboratory rotations provide first-year students with experience in the various experimental methods used in biomedical sciences. ", + "edges_from": [], + "edges_to": [], + "id": 3740, + "label": "BIOM 202", + "title": "Biomedical Sciences Research Rotation (3)" + }, + { + "dept": "BIOM", + "description": "Overview of new systems biology \u201comics\u201d approaches to lipid metabolism and cell signaling including interrogating gene and lipid databases, techniques for lipidomics, and implications for profiling and biomarker discovery in blood and tissues relevant to inflammatory and other human diseases. Recommended: one quarter of undergraduate biochemistry. ", + "edges_from": [], + "edges_to": [], + "id": 3741, + "label": "BIOM 209", + "title": "Lipid Cell Signaling Genomics, Proteomics, and Metabolomics (2)" + }, + { + "dept": "CHEM", + "description": "Introduction to molecular bonding and structure and chemical reactions, including organic molecules and synthetic polymers. Intended for nonscience majors. Cannot be taken for credit after any organic chemistry course. ", + "edges_from": [ + 3193 + ], + "edges_to": [], + "id": 3742, + "label": "CHEM 12", + "title": "Molecules and Reactions (4)" + }, + { + "dept": "MATH", + "description": "Point set topology, including separation axioms, compactness, connectedness. Algebraic topology, including the fundamental group, covering spaces, homology and cohomology. Homotopy or applications to manifolds as time permits. ", + "edges_from": [ + 226, + 228, + 229, + 6, + 786, + 787 + ], + "edges_to": [], + "id": 3743, + "label": "MATH 290A-B-C", + "title": "Topology (4-4-4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "This course concentrates on those language", + "edges_from": [], + "edges_to": [], + "id": 3744, + "label": "Linguistics/Spanish (LISP) 5A, 5B, 5C, 5D", + "title": "Fundamentals of Spanish (5)" + }, + { + "dept": "LTEN", + "description": "Consideration of one or more major figures, texts, performance, or trends in literature and culture of Africa and/or the African Diaspora. Various theories and methodologies may be applied to the representations being studied. May be taken three times for credit as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3745, + "label": "LTEN 258", + "title": "Studies in Anglophone African and/or African Diaspora Literature and Culture (4)" + }, + { + "dept": "ECON", + "description": "Financial structure of the US economy. Bank behavior. Monetary control. ", + "edges_from": [ + 420, + 419, + 411 + ], + "edges_to": [], + "id": 3746, + "label": "ECON 111", + "title": "Monetary Economics (4)" + }, + { + "dept": "ECON", + "description": "Mathematical concepts and techniques used in advanced economic analysis; applications to selected aspects of economic theory. ", + "edges_from": [ + 226, + 3748, + 399 + ], + "edges_to": [], + "id": 3747, + "label": "ECON 113", + "title": "Mathematical Economics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5971, + 3747 + ], + "id": 3748, + "label": "MATH 142A", + "title": "" + }, + { + "dept": "ECON", + "description": "Examines time series methods for data analysis with an emphasis on macroeconomic applications. Students are provided with an overview of fundamental time series techniques, hands-on experience in applying them to real-world macroeconomic data, and expertise in performing empirical tests of policy-relevant macroeconomic theories, such as the permanent income hypothesis, the Keynesian fiscal multiplier, and the Phillips curve. ", + "edges_from": [ + 168, + 170, + 413 + ], + "edges_to": [], + "id": 3749, + "label": "ECON 112", + "title": "Macroeconomic Data Analysis (4)" + }, + { + "dept": "ECON", + "description": "Impact of immigration on the US economy. Empirical evidence on the labor market and fiscal impacts of immigration. Consequences of US immigration policies on the economy. ", + "edges_from": [ + 410, + 411 + ], + "edges_to": [], + "id": 3750, + "label": "ECON 114", + "title": "Economics of Immigration (4)" + }, + { + "dept": "ECON", + "description": "Models of the economic growth of developed economies. ", + "edges_from": [ + 655 + ], + "edges_to": [], + "id": 3751, + "label": "ECON 117", + "title": "Economic Growth (4)" + }, + { + "dept": "ECON", + "description": "Introduction to the economics of less developed countries, covering their international trade, human resources, urbanization, agriculture, income distribution, political economy, and environment. ", + "edges_from": [ + 402, + 406 + ], + "edges_to": [], + "id": 3752, + "label": "ECON 116", + "title": "Economic Development (4)" + }, + { + "dept": "ECON", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 3753, + "label": "ECON 119", + "title": "Law and Economics: Contracts and Corporations" + }, + { + "dept": "ECON", + "description": "Economics: Torts, Property, and Crime (4)", + "edges_from": [], + "edges_to": [], + "id": 3754, + "label": "ECON 118", + "title": "Law and" + }, + { + "dept": "ERC", + "description": "A seminar intended for exposing undergraduate students, especially freshmen and sophomores, to exciting research programs conducted by the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 3755, + "label": "ERC 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "ERC", + "description": "Individual project on a topic chosen by the student, done under direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3756, + "label": "ERC 92", + "title": "Honors Project (2)" + }, + { + "dept": "TWS", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 3757, + "label": "TWS 198", + "title": "Directed Group Studies (2 or 4)" + }, + { + "dept": "COGS", + "description": "How damaged and normal brains influence the way humans solve problems, remember or forget, pay attention to things; how they affect our emotions, and the way we use language in daily life.", + "edges_from": [], + "edges_to": [], + "id": 3758, + "label": "COGS 11", + "title": "Minds and Brains (4)" + }, + { + "dept": "COGS", + "description": "Do people who speak different languages think differently? Does learning new languages change the way you think? Are some thoughts unthinkable without language? Course will bring together ideas and findings from psychology, linguistics, anthropology, neuroscience, and philosophy.", + "edges_from": [], + "edges_to": [], + "id": 3759, + "label": "COGS 12", + "title": "Language, Culture, and Cognition (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Spanish language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 441A-B-C. Students may not get credit for any IRLA 441 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 3760, + "label": "GPLA 441A-B-C", + "title": "Intermediate Spanish Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "ECON", + "description": "Governments serve functions key to economic development, including correcting market failures, raising taxes, delivering services, and protecting property rights. Correspondingly, research in development economics is increasingly focused on how institutions affect development. Generally, the aim of the course is to provide PhD students a complete introduction to the growing literature in this area. Students may not receive credit for Econ 237 and POLI 231E. ", + "edges_from": [], + "edges_to": [], + "id": 3761, + "label": "ECON 237", + "title": "Political Economy: Microeconomic Perspectives (4)" + }, + { + "dept": "ECON", + "description": "Exploration of existing theoretical literature evaluating the efficiency and distribution effects of income and commodity taxes. Characterization of an \u201coptimal\u201d tax structure, and examination of problems faced in tax administration. Scrutiny of behavioral responses to existing tax structures. ", + "edges_from": [ + 179, + 178, + 659, + 180, + 183, + 660 + ], + "edges_to": [], + "id": 3762, + "label": "ECON 230", + "title": "Public Economics: Taxation (4)" + }, + { + "dept": "ECON", + "description": "Public Goods and Externalities (4)", + "edges_from": [], + "edges_to": [], + "id": 3763, + "label": "ECON 231", + "title": "Public Economics:" + }, + { + "dept": "ECON", + "description": "Redistribution and Social Insurance (4)", + "edges_from": [], + "edges_to": [], + "id": 3764, + "label": "ECON 232", + "title": "Public Economics:" + }, + { + "dept": "CHIN", + "description": "Continuation of second year of basic Chinese for students with", + "edges_from": [], + "edges_to": [], + "id": 3765, + "label": "CHIN 20BN", + "title": "Second Year Chinese\u2014Non-native speakers II (4)" + }, + { + "dept": "TMC", + "description": "This course is designed to study, discuss, and analyze the history and current role of public service in the United States. Students will be introduced to the different roles held by the three sectors of the American economic structure (government, business, and nonprofit/public service) with opportunity to provide a critical analysis of those roles within American society.", + "edges_from": [], + "edges_to": [], + "id": 3766, + "label": "TMC 15", + "title": "Introduction to Public Service in America (4)" + }, + { + "dept": "MATH", + "description": "Differential manifolds, Sard theorem, tensor bundles, Lie derivatives, DeRham theorem, connections, geodesics, Riemannian metrics, curvature tensor and sectional curvature, completeness, characteristic classes. Differential manifolds immersed in Euclidean space. ", + "edges_from": [], + "edges_to": [], + "id": 3767, + "label": "MATH 250A-B-C", + "title": "Differential Geometry (4-4-4)" + }, + { + "dept": "MUIR", + "description": "A course of independent work on a research or creative project to satisfy a Muir graduation requirement. (Only Muir students who have had Muir Special Project proposals approved may enroll in this course.) Students wishing to enroll must submit a written request with a description of the project. (Muir students must submit the Muir Special Project 199 form to the major advisor and to the Office of the Provost by the seventh week of the quarter prior to the quarter in which the 199 is to be undertaken. For information on other requirements, consult the provost\u2019s office.) ", + "edges_from": [], + "edges_to": [], + "id": 3768, + "label": "MUIR 199", + "title": "Muir Special Project (4\u201316)" + }, + { + "dept": "MATH", + "description": "Various topics in real analysis. ", + "edges_from": [], + "edges_to": [], + "id": 3769, + "label": "MATH 248", + "title": "Seminar in Real Analysis (1)" + }, + { + "dept": "LTSP", + "description": "Senior thesis research and writing for students who have been accepted for the Literature Honors Program and who have completed LTWL 191. Oral Exam. ", + "edges_from": [], + "edges_to": [], + "id": 3770, + "label": "LTSP 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "LTSP", + "description": "Tutorial: individual guided reading in areas of Spanish literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3771, + "label": "LTSP 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 3772, + "label": "LTSP 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MATH", + "description": "In recent years, topics have included Fourier analysis in Euclidean spaces, groups, and symmetric spaces. May be repeated for credit with consent of adviser as topics vary. ", + "edges_from": [ + 3774 + ], + "edges_to": [], + "id": 3773, + "label": "MATH 242", + "title": "Topics in Fourier Analysis (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5913, + 3773 + ], + "id": 3774, + "label": "MATH 240C", + "title": "" + }, + { + "dept": "MATH", + "description": "Various topics in functional analysis. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 3775, + "label": "MATH 243", + "title": "Seminar in Functional Analysis (1)" + }, + { + "dept": "MATH", + "description": "Various topics in mathematical physics and partial differential equations. ", + "edges_from": [], + "edges_to": [], + "id": 3776, + "label": "MATH 278B", + "title": "Seminar in Mathematical Physics/PDE (1)" + }, + { + "dept": "PHYS", + "description": "Survey of physics for nonscience majors with strong mathematical background, including calculus. Physics 11 describes the laws of motion, gravity, energy, momentum, and relativity. A laboratory component consists of two experiments with gravity and conservation principles. ", + "edges_from": [ + 1265, + 849 + ], + "edges_to": [], + "id": 3777, + "label": "PHYS 11", + "title": "Survey of Physics (4)" + }, + { + "dept": "PSYC", + "description": "This course provides basic information about the nature of reading. Topics include word recognition, eye movements, inner speech, sentence processing, memory for text, learning to read, methods for teaching reading, reading disabilities and dyslexia, and speed-reading. Recommended preparation: completion of PSYC 105 or PSYC 145. ", + "edges_from": [], + "edges_to": [], + "id": 3778, + "label": "PSYC 128", + "title": "Psychology of Reading (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of how we perceive the world. Topics include classic studies in perception, discussion of the view that perception is \u201clogical,\u201d and new insights into the neural mechanisms underlying perception. ", + "edges_from": [], + "edges_to": [], + "id": 3779, + "label": "PSYC 129", + "title": "Logic of Perception (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an introduction to the history, purpose, and recent changes to the Diagnostic and Statistical Manual of Mental Disorders along with appropriate evidence-based interventions. Other topics include psychiatric emergencies, crisis management, and ethics. Recommended preparation: Completion of PSYC 100. ", + "edges_from": [], + "edges_to": [ + 3782 + ], + "id": 3780, + "label": "PSYC 124", + "title": "Clinical Assessment and Treatment (4)" + }, + { + "dept": "PSYC", + "description": "This course provides a fundamental understanding of brain-behavior relationships as applied to the practice of clinical neuropsychology. Major topics include functional neuroanatomy, principles of neuropsychological assessment and diagnosis, and the neuropsychological presentation of common neurologic and psychiatric conditions. ", + "edges_from": [], + "edges_to": [], + "id": 3781, + "label": "PSYC 125", + "title": "Clinical Neuropsychology (4)" + }, + { + "dept": "PSYC", + "description": "This course provides experience with clients in a community mental health care setting, under professional supervision. Seminar-based instruction also provides a framework for understanding theoretical, practical, and ethical issues related to client care. ", + "edges_from": [ + 3780, + 3783 + ], + "edges_to": [], + "id": 3782, + "label": "PSYC 126", + "title": "Practicum in Community Mental Health Care (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 3782 + ], + "id": 3783, + "label": "PSYC 100", + "title": "" + }, + { + "dept": "MATH", + "description": "Various topics in computational and applied mathematics. ", + "edges_from": [], + "edges_to": [], + "id": 3784, + "label": "MATH 278A", + "title": "Seminar in Computational and Applied Mathematics (1)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 3553 + ], + "edges_to": [ + 3553 + ], + "id": 3785, + "label": "PSYC 121", + "title": "" + }, + { + "dept": "PSYC", + "description": "This course focuses on approaches to the study of behavior and its underlying fundamental units of analysis in human and nonhuman animals. Students may not receive credit for both PSYC 122 and PSYC 103. ", + "edges_from": [], + "edges_to": [], + "id": 3786, + "label": "PSYC 122", + "title": "Mechanisms of Animal Behavior (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an understanding of how the frontal lobes allow us to engage in complex mental processes. Topics may include anatomy and theory of prefrontal function, frontal lobe clinical syndromes, pharmacology and genetics, emotion control, and cognitive training. ", + "edges_from": [], + "edges_to": [], + "id": 3787, + "label": "PSYC 123", + "title": "Cognitive Control and Frontal Lobe Function (4)" + }, + { + "dept": "PHYS", + "description": "Thesis Research for Undergraduates (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 3788, + "label": "PHYS 199H", + "title": "Honors" + }, + { + "dept": "SOCI", + "description": "History, politics, social organization, and ideology of the American news media. This course,165A, surveys the development of the news media as an institution, from earliest newspapers to modern mass news media. ", + "edges_from": [ + 3789, + 3790 + ], + "edges_to": [ + 3789 + ], + "id": 3789, + "label": "SOCI 165A", + "title": "American News Media (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3789 + ], + "id": 3790, + "label": "SOCC 165A", + "title": "" + }, + { + "dept": "SE", + "description": "Review of probability theory and random processes. Fundamentals of structural reliability theory. First- and second-order, and simulation methods of reliability analysis. Structural component and system reliability. Reliability sensitivity measures. Bayesian reliability analysis methods. Bases for probabilistic design codes. Use of computer resources. Recommended preparation: basic knowledge of probability theory (e.g., SE 125). ", + "edges_from": [], + "edges_to": [], + "id": 3791, + "label": "SE 224", + "title": "Structural Reliability and Risk Analysis (4)" + }, + { + "dept": "SE", + "description": "Influence of soil conditions on ground motion characteristics; dynamic behavior of soils, computation of ground response using wave propagation analysis and finite element analysis; evaluation and mitigation of soil liquefaction; soil-structure interaction; lateral pressures on earth retaining structures; analysis of slope stability. Recommended preparation: SE 181 or equivalent. ", + "edges_from": [], + "edges_to": [], + "id": 3792, + "label": "SE 222", + "title": "Geotechnical Earthquake Engineering (4)" + }, + { + "dept": "SE", + "description": "Modal analysis. Nonlinear response spectra. Performance based seismic design. Nonlinear time history analyses. Capacity design. Structural walls. Coupled walls. Rocking walls. Base isolation. Recommended preparation: grade of B+ or higher in SE 211 and SE 201B.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 3793, + "label": "SE 223", + "title": "Advanced Seismic Design of Structures (4)" + }, + { + "dept": "SE", + "description": "Concepts, advantages, and limitations of seismic isolation techniques; fundamentals of dynamic response under seismic excitation; spectral analysis; damping; energy approach; application to buildings and structures. ", + "edges_from": [], + "edges_to": [], + "id": 3794, + "label": "SE 220", + "title": "Seismic Isolation and Energy Dissipation (4)" + }, + { + "dept": "SE", + "description": "Introduction to plate tectonics and seismology. Rupture mechanism, measures of magnitude and intensity, earthquake occurrence and relation to geologic, tectonic processes. Probabilistic seismic hazard analysis. Strong earthquake ground motion; site effects on ground motion; structural response; soil-structure interaction; design criteria; code requirements. Use of computer resources. ", + "edges_from": [ + 3796 + ], + "edges_to": [], + "id": 3795, + "label": "SE 221", + "title": "Earthquake Engineering (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 4456, + 3795, + 4366, + 4014 + ], + "id": 3796, + "label": "SE 203", + "title": "" + }, + { + "dept": "HINE", + "description": "A close reading of select prose narratives from the Hebrew Bible/Old Testament.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 3797, + "label": "HINE 112A", + "title": "Great Stories from the Hebrew Bible (4)" + }, + { + "dept": "NEU", + "description": "For incoming doctoral students in neurobiology, computational neurosciences, and neurosciences. During the first two weeks in September, students commit to ten to fifteen hours per day in lectures and laboratories in electrophysiology, cellular anatomy, molecular biology, optical imaging, and computational neurobiology. Students also attend weekly seminars during fall quarter. ", + "edges_from": [], + "edges_to": [], + "id": 3798, + "label": "NEU 210", + "title": "Neurobiology Boot Camp (4)" + }, + { + "dept": "ANTH", + "description": "Recent decades have witnessed the dramatic rise of religious movements worldwide, posing challenges to secular models of modernity. We will study the sociocultural and political implications of this phenomenon comparatively, focusing especially on new forms of Islamic and Christian practice. ", + "edges_from": [], + "edges_to": [], + "id": 3799, + "label": "ANTH 239", + "title": "Contemporary Religious Movements (4)" + }, + { + "dept": "ANTH", + "description": "Examination of the actual operation of culture with attention to the importance of cultural products and social structures. Course goal is to develop skill in understanding the influence, direct and indirect, of culture and behavior. ", + "edges_from": [ + 3801 + ], + "edges_to": [], + "id": 3800, + "label": "ANTH 234", + "title": "Dynamics of Culture (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3800 + ], + "id": 3801, + "label": "ANGR 234", + "title": "" + }, + { + "dept": "ANTH", + "description": "This graduate seminar will attend to the theory and praxis of social justice. Social justice is primarily concerned with the ways in which wealth and privileges are distributed in society. This course explores the ideologies and logics of wealth distribution at various points in history and in different places across the globe. The ways in which we understand basic human needs and the distribution of entitlements are also critical components of theories of social justice. ", + "edges_from": [], + "edges_to": [], + "id": 3802, + "label": "ANTH 235", + "title": "Theories of Social Justice (4)" + }, + { + "dept": "ANTH", + "description": "Indexing a social identity is an achievement; it takes work. But what kind? This course examines Peircean semiotics as a theory of labor, putting it into conversation with traditional Marxist and practice-based conceptualizations of labor. ", + "edges_from": [], + "edges_to": [], + "id": 3803, + "label": "ANTH 232", + "title": "Labor and Semiotics (4)" + }, + { + "dept": "ANTH", + "description": "This seminar takes up Marx\u2019s varied critiques of capitalist forms, categories, doctrines, practices, and tendencies and brings them to bear on contemporary conditions. In particular, the seminar examines what may be understood as Marx\u2019s ontology, epistemology, and ethico-political stance. ", + "edges_from": [], + "edges_to": [], + "id": 3804, + "label": "ANTH 233", + "title": "Critical Studies of Capitalism (4)" + }, + { + "dept": "BICD", + "description": "Stem cells maintain homeostasis of nearly all organ systems and the regenerative capacity of certain organisms. Course explores the paradigm of the tissue-specific stem cell, the cellular mechanisms of tissue regeneration, the evolution of stem cells and regenerative capacity over time, the basis of induced pluripotency, and how these basic processes can inform new approaches to human health. ", + "edges_from": [ + 241 + ], + "edges_to": [], + "id": 3805, + "label": "BICD 112", + "title": "Stem Cells and Regeneration (4)" + }, + { + "dept": "ETHN", + "description": "Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)", + "edges_from": [], + "edges_to": [], + "id": 3806, + "label": "ETHN 135A", + "title": "Early" + }, + { + "dept": "ETHN", + "description": "Latino/a-Chicano/a Cultural Production: 1960 to Present (4)", + "edges_from": [], + "edges_to": [], + "id": 3807, + "label": "ETHN 135B", + "title": "Contemporary" + }, + { + "dept": "LIGN", + "description": "A rigorous analysis of symbolic systems and their interpretations. Students will learn to encode and decode information using progressively more sophisticated methods; topics covered include ancient and modern phonetic writing systems, hieroglyphics, computer languages, and ciphers (secret codes). ", + "edges_from": [], + "edges_to": [], + "id": 3808, + "label": "LIGN 17", + "title": "Making and Breaking Codes (4)" + }, + { + "dept": "VIS", + "description": "A critical survey outlining the major avant-gardes after 1900: fauvism, cubism, metaphysical painting, futurism, Dadaism, surrealism, neoplasticism, purism, the Soviet avant-garde, socialist realism, and American art before abstract expressionism. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 3809, + "label": "VIS 125A", + "title": "Twentieth-Century Art (4)" + }, + { + "dept": "MUS", + "description": "Third part in composition course sequence. A mixture of individual lessons as well as group meetings, with discussion of topics germane to the development of composers, including musical aesthetics and contemporary orchestration techniques. Final performance of students\u2019 work will take place at the end of the quarter. ", + "edges_from": [ + 3811 + ], + "edges_to": [], + "id": 3810, + "label": "MUS 103C", + "title": "Seminar in Composition III (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 1936 + ], + "edges_to": [ + 3810 + ], + "id": 3811, + "label": "MUS 103B", + "title": "" + }, + { + "dept": "AAS/ANSC", + "description": "(Cross-listed with ANSC 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for AAS 185 and ANSC 185.", + "edges_from": [], + "edges_to": [], + "id": 3812, + "label": "AAS/ANSC 185", + "title": "#BlackLivesMatter (4)" + }, + { + "dept": "POLI", + "description": "The course explores the modes of political thinking found in arts, especially in drama and literature. It may include ends and means, political leadership, and political economy. Students may not receive credit for both POLI 112CS and POLI 112C. ", + "edges_from": [], + "edges_to": [], + "id": 3813, + "label": "POLI 112C", + "title": "Political Theory and Artistic Vision (4)" + }, + { + "dept": "POLI", + "description": "An introduction to theories of political behavior developed with the assumptions and methods of economics. General emphasis will be upon theories linking individual behavior to institutional patterns. Specific topics to be covered will include collective action, leadership, voting, and bargaining.", + "edges_from": [], + "edges_to": [], + "id": 3814, + "label": "POLI 112A", + "title": "Economic Theories of Political Behavior (4)" + }, + { + "dept": "Linguistics/Portuguese", + "description": "(LIPO) 16. Intermediate", + "edges_from": [], + "edges_to": [], + "id": 3815, + "label": "Linguistics/Portuguese", + "title": "" + }, + { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing health-care systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems\u2014multidrug resistance to antibiotics, gender violence, human trafficking, etc. Students may receive credit for one of the following: ANSC 105GS, ANSC 105S, ANSC 105, or GLBH 105. Program or materials fees may apply. Students must apply at", + "edges_from": [], + "edges_to": [], + "id": 3816, + "label": "ANSC 105GS", + "title": "Global Health and Inequality (4)" + }, + { + "dept": "CENG", + "description": "Principles of analysis and design of systems", + "edges_from": [], + "edges_to": [], + "id": 3817, + "label": "CENG 122", + "title": "Separation Processes (4)" + }, + { + "dept": "HIEA", + "description": "This course will examine selected topics in modern Korean history through both primary sources (in translation) and secondary sources. Topics will vary year to year.", + "edges_from": [], + "edges_to": [], + "id": 3818, + "label": "HIEA 280", + "title": "Topics in Modern Korean History (4)" + }, + { + "dept": "BENG", + "description": "Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.). Form heterogeneous materials and components. ", + "edges_from": [], + "edges_to": [], + "id": 3819, + "label": "BENG 247B/ECE 247B/NANO 247B", + "title": "Bioelectronics (4)" + }, + { + "dept": "MATH", + "description": "Students will develop skills in analytical thinking as they solve and present solutions to challenging mathematical problems in preparation for the William Lowell Putnam Mathematics Competition, a national undergraduate mathematics examination held each year. Students must sit for at least one half of the Putnam exam (given the first Saturday in December) to receive a passing grade. P/NP grades only. May be taken for credit up to four times.\u00a0", + "edges_from": [ + 419 + ], + "edges_to": [], + "id": 3820, + "label": "MATH 96", + "title": "Putnam Seminar (1)" + }, + { + "dept": "MATH", + "description": "(Cross-listed with EDS 30.) Revisit students\u2019 learning", + "edges_from": [], + "edges_to": [], + "id": 3821, + "label": "MATH 95", + "title": "Introduction to Teaching Math (2)" + }, + { + "dept": "TDGR", + "description": "Boundaries: Design Improvisations (4)", + "edges_from": [], + "edges_to": [], + "id": 3822, + "label": "TDGR 262", + "title": "Crossing" + }, + { + "dept": "TDGR", + "description": "The collaborative process of new-play development through readings, rehearsals, and public performance. MFA actors, designers, directors, playwrights, and stage managers enroll in one section and collaborate in creating the annual festival of full-length and one-act plays. ", + "edges_from": [], + "edges_to": [], + "id": 3823, + "label": "TDGR 260", + "title": "New-Play Festival (4)" + }, + { + "dept": "ANSC", + "description": "Drawing on medical anthropology ethnography, students will explore a variety of forms of healing among rural and urban indigenous communities. A particular focus on intercultural health will allow the students to analyze contemporary medical landscapes where patients encounter indigenous and Western medicine. Students will learn about the complexities of urban and rural indigenous healing settings and their sociopolitical significance in contexts of state biomedical interventions. Students may not receive credit for ANSC 106 and ANSC 106S. Freshmen and sophomores cannot enroll without consent of the instructor.", + "edges_from": [], + "edges_to": [], + "id": 3824, + "label": "ANSC 106", + "title": "Global Health: Indigenous Medicines in Latin America (4)" + }, + { + "dept": "TDGR", + "description": "Course will cover multiple applications of storyboarding as a tool of communication and expression; comic books, theatre, opera, film, TV, and commercial applications will be explored. Individual and team assignments will be given to develop the basic vocabulary and techniques. ", + "edges_from": [], + "edges_to": [], + "id": 3825, + "label": "TDGR 268", + "title": "Storyboarding (4)" + }, + { + "dept": "ANSC", + "description": "Course usually taught by visiting faculty in sociocultural anthropology. Course will vary in title and content. When offered, the current description and title is found in the current Schedule of Classes and the anthropology department website. (Can be taken a total of four times as topics vary.) ", + "edges_from": [], + "edges_to": [], + "id": 3826, + "label": "ANSC 100", + "title": "Special Topics in Sociocultural Anthropology (4)" + }, + { + "dept": "ANSC", + "description": "Examines aging as process of human development, from local and global perspectives. Focuses on the interrelationships of social, cultural, psychological, and health factors that shape the experience and well-being of aging populations. Students explore the challenges and wisdom of aging. ", + "edges_from": [], + "edges_to": [ + 5371 + ], + "id": 3827, + "label": "ANSC 101", + "title": "Aging: Culture and Health in Late Life Human Development (4)" + }, + { + "dept": "HISC", + "description": "Selected topics in the history of science. Course can be taken for credit up to three times as topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 3828, + "label": "HISC 144", + "title": "Topics in Science Studies (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major examines topics in contemporary studio art practice. The course is divided among research, discussion, projects, field trips to galleries, and visiting artists, and will encourage student work to engage in a dialogue with the issues raised. ", + "edges_from": [], + "edges_to": [], + "id": 3829, + "label": "VIS 110A", + "title": "Contemporary Issues and Practices (4)" + }, + { + "dept": "VIS", + "description": "This class is for the advanced visual arts major who is interested in taking the next steps toward becoming a professional visual artist. Students will become familiar with artist\u2019s residencies and graduate programs and what they offer. Of most importance will be developing the portfolio and the artist statement, as well as becoming more familiar with the contemporary art world. Two production-based limitation. ", + "edges_from": [], + "edges_to": [], + "id": 3830, + "label": "VIS 110B", + "title": "Professional Practice in the Visual Arts (4)" + }, + { + "dept": "VIS", + "description": "This is a course for the advanced visual arts major that explores the use of the maquette, or sketch, in the process of developing, proposing, and planning visual works in various media for public projects, site specific works, grants, exhibition proposals, etc. The student will work on synthesizing ideas and representing them in alternate forms that deal with conception, fabrication, and presentation. ", + "edges_from": [], + "edges_to": [], + "id": 3831, + "label": "VIS 110C", + "title": "Proposals, Plans, Presentations (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major explores narrative in art practice. The course will explore the construction of real and fictive narratives across a variety of disciplines with an emphasis on illustration, the graphic novel, comics, and other forms of drawing practice. Studio work is complemented by in-depth study of the gaze, subjectivity, memory, and imagination. After guided assignments, emphasis is on self-directed projects. ", + "edges_from": [], + "edges_to": [], + "id": 3832, + "label": "VIS 110D", + "title": "Visual Narrative (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major takes painting, sculpture, and related media out of the studio/gallery and into the public sphere by examining the contemporary history of public artworks with traditional and nontraditional site-specific work, focusing on production, critical discussion, and writing. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 3833, + "label": "VIS 110E", + "title": "Art in Public Spaces/Site-Specific Art (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major expands the idea contained in a singular work, or object, into the use of multiple objects, images, and media that redefines the idea as well as the space for which it is intended. Examination of historic, modern, and contemporary works will influence discussion of student project development and execution. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 3834, + "label": "VIS 110F", + "title": "Installation: Cross-Disciplinary Projects (4)" + }, + { + "dept": "VIS", + "description": "This course for the advanced visual arts major explores the natural and altered environment as a basis for subject as well as placement of work pertaining to the environment. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 3835, + "label": "VIS 110G", + "title": "The Natural and Altered Environment (4)" + }, + { + "dept": "VIS", + "description": "This class is for the advanced visual arts major devoted to the study and practice of the multiple ways in which writing and other forms of visible language have been incorporated into contemporary and traditional artworks, including artists\u2019 books, collaging and poster art, literature and poetry, typographical experiments, and calligraphies. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 3836, + "label": "VIS 110H", + "title": "Art and Text (4)" + }, + { + "dept": "VIS", + "description": "The dematerialization of the performer into media-based image\u2014video, film, slides, still photographs, and using the camera as a spy, a coconspirator, a friend, or a foe\u2014employing time lags, spatial derangement, image destruction, along with narrative, text, and history, to invent time-based pieces that break new ground while being firmly rooted in an understanding of the rich body of work done in this area over the last three decades. ", + "edges_from": [], + "edges_to": [], + "id": 3837, + "label": "VIS 110I", + "title": "Performing for the Camera (4)" + }, + { + "dept": "VIS", + "description": "This is a studio art course for the advanced visual arts major with a focus on the intersection of digital rendering and drawing, painting, sculpture, and performance. Structured as core lectures and labs, studio production, reading, and critical theory focused on contemporary art engaged with technology, as well as artists\u2019 responses to its demands. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 3838, + "label": "VIS 110K", + "title": "Digital Studio (4)" + }, + { + "dept": "ICAM", + "description": "", + "edges_from": [], + "edges_to": [ + 1839 + ], + "id": 3839, + "label": "ICAM 102", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 3843 + ], + "edges_to": [ + 5519, + 1839 + ], + "id": 3840, + "label": "VIS 145A", + "title": "" + }, + { + "dept": "VIS", + "description": "This is a course for the advanced studio major who is selected based on a proven record of engagement, productivity, and self-discipline as well as a clear trajectory of their work. The intent is to help refine and expand the student\u2019s studio practice toward a unified portfolio and artist\u2019s statement as well as develop experience in participation and organization of group and solo exhibitions. ", + "edges_from": [], + "edges_to": [ + 3842 + ], + "id": 3841, + "label": "VIS 110M", + "title": "Studio Honors I (4)" + }, + { + "dept": "VIS", + "description": "The second advanced studio course in the Honors Program in Studio, the successful completion of which will lead toward an honors degree in the studio major. The course builds on the critical and technical issues raised in Studio Honors I. ", + "edges_from": [ + 3841 + ], + "edges_to": [], + "id": 3842, + "label": "VIS 110N", + "title": "Studio Honors II (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [], + "edges_to": [ + 3840, + 4120, + 4293, + 5519 + ], + "id": 3843, + "label": "VIS 142", + "title": "" + }, + { + "dept": "FMPH", + "description": "This course requires attendance and participation in the Division of Biostatistics seminar series and journal club. Students will critically read the assigned articles and participate in biweekly journal clubs. Students are also required to lead at least one journal club discussion. ", + "edges_from": [], + "edges_to": [], + "id": 3844, + "label": "FMPH 290", + "title": "Biostatistics Journal Club and Seminar (1)" + }, + { + "dept": "FMPH", + "description": "Topics of special interest in public health. Topics may vary from quarter to quarter. May be taken for credit up to twelve times for a maximum of forty-eight units.", + "edges_from": [], + "edges_to": [], + "id": 3845, + "label": "FMPH 291", + "title": "Special Topics in Public Health (1\u20134)" + }, + { + "dept": "HILA", + "description": "This course examines factors that shed light on Brazil\u2019s label as a rising nation. In part, we will cover Brazil\u2019s two dictatorships, labor struggles, racial issues, immigration from Asia and Europe, environmental concerns, and emergence as economic and political powerhouse.", + "edges_from": [], + "edges_to": [], + "id": 3846, + "label": "HILA 121B", + "title": "History of Brazil, 1889 to Present (4)" + }, + { + "dept": "HILA", + "description": "This course covers many of the most transformative and fascinating social, political, and racial phenomena in Brazilian society through 1889, including indigenous life, Portuguese colonization, slavery and abolition, royal exile, independence and Empire, the birth of the Republic, war, social unrest, and ideals of modernization. +", + "edges_from": [], + "edges_to": [], + "id": 3847, + "label": "HILA 121A", + "title": "History of Brazil through 1889 (4)" + }, + { + "dept": "GPEC", + "description": "This course examines the economic policies implemented by Latin American countries over the last half century, focusing on their role in the process of economic development in the region, and considers the central role of politics in shaping policy. Renumbered from IRGN 409. Students may not receive credit for GPEC 409 and IRGN 409. ", + "edges_from": [ + 1594, + 1595 + ], + "edges_to": [], + "id": 3848, + "label": "GPEC 409", + "title": "Economic Policy in Latin America (4)" + }, + { + "dept": "GLBH", + "description": "Independent study opportunity for students to work with global health affiliated faculty on relevant research or to elaborate the intellectual analysis and critique of their global health field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 3849, + "label": "GLBH 199", + "title": "Independent Study in Global Health Field Experience (4)" + }, + { + "dept": "GLBH", + "description": "Directed group study for students to delve deeper into global health topics or elaborate the intellectual analysis and critique of their field experience. For students enrolled in the global health major or minor. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 3850, + "label": "GLBH 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "BGJC", + "description": "Weekly presentations and discussions pertaining to research results reported in recently published literature. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 3851, + "label": "BGJC 213", + "title": "Journal Club in Computational Neurobiology (1)" + }, + { + "dept": "Soc/G", + "description": "A discussion of major themes in the work of Weber and Durkheim. ", + "edges_from": [], + "edges_to": [], + "id": 3852, + "label": "Soc/G 201B", + "title": "Classical Sociological Theory II (4)" + }, + { + "dept": "ECE", + "description": "Computational techniques for numerical analysis", + "edges_from": [], + "edges_to": [], + "id": 3853, + "label": "ECE 222C", + "title": "Applied Electromagnetic Theory\u2014Computational Methods for Electromagnetics (4)" + }, + { + "dept": "ECE", + "description": "Electromagnetic Theory\u2014Electromagnetics (4)", + "edges_from": [], + "edges_to": [], + "id": 3854, + "label": "ECE 222B", + "title": "Applied" + }, + { + "dept": "PHIL", + "description": "A study of selected texts or topics in the history of philosophy. Usually the focus will be on a single major text. May be taken for credit nine times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 3855, + "label": "PHIL 201A", + "title": "Core Course in History (4)" + }, + { + "dept": "ECE", + "description": "Review of 222A\u2013B. Fourier transform, waveguide", + "edges_from": [], + "edges_to": [], + "id": 3856, + "label": "ECE 222D", + "title": "Advanced Antenna Design (4)" + }, + { + "dept": "POLI", + "description": "Comparative analysis of contemporary political systems and developmental profiles of selected Latin American countries, with special reference to the ways in which revolutionary and counter-revolutionary movements have affected the political, economic, and social structures observable in these countries today. Analyzes the performance of \u201crevolutionary\u201d governments in dealing with problems of domestic political management, reducing external economic dependency, redistributing wealth, creating employment, and extending social services. Introduction to general theoretical works on Latin American politics and development. ", + "edges_from": [ + 2405 + ], + "edges_to": [], + "id": 3857, + "label": "POLI 134AA", + "title": "Comparative Politics of Latin America (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 100B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 100B or after successful completion of Econ 100B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 3858, + "label": "ECON 100BH", + "title": "Honors Microeconomics B (1)" + }, + { + "dept": "BGGN", + "description": "Intensive lecture-, seminar-, and laboratory-based course", + "edges_from": [], + "edges_to": [], + "id": 3859, + "label": "BGGN 208", + "title": "Biological Sciences Graduate Boot Camp (4)" + }, + { + "dept": "BGGN", + "description": "in the Division of Biological Sciences (2)", + "edges_from": [], + "edges_to": [], + "id": 3860, + "label": "BGGN 200", + "title": "Graduate School Fundamentals: Introduction to Graduate Studies" + }, + { + "dept": "BGGN", + "description": "Introduction to the computational methods most frequently used in neuroscience research. Aimed at first-year graduate students in neuroscience and related disciplines. Minimal quantitative background will be assumed. Topics include Poisson processes, Markov Chains, auto- and cross-correlation analysis, Fourier/Spectral analysis, principal components/linear algebra, signal detection theory, information theory, Bayes Theorem, hypothesis testing. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 3861, + "label": "BGGN 201", + "title": "Methods in Computational Neuroscience (3)" + }, + { + "dept": "BGGN", + "description": "Discussions cover professional preparation for future scientists. Topics include: how to read/write/publish papers, to write grant and fellowship proposals, to give oral presentations, and how to apply for research positions. Behind-the-scenes look at reviewing papers, grant and fellowship proposals. Discussions of career options in biological sciences will be included. Scientific content is in the area of eukaryotic gene expression, but knowledge is applicable to all areas of biology. Undergraduate students with senior standing may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 3862, + "label": "BGGN 202", + "title": "Professional Development for Biologists (2)" + }, + { + "dept": "BGGN", + "description": "The course teaches different topics on theory and key concepts in ecology, behavior, and evolution. Students will read materials in depth, attend weekly discussions, and explore relevant topics, theories, and models with advanced analytical tools. S/U grades only. May be taken for credit three times when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 3863, + "label": "BGGN 203", + "title": "Topics in Ecology, Behavior, and Evolution (3)" + }, + { + "dept": "BGGN", + "description": "This course teaches a different topic each", + "edges_from": [], + "edges_to": [], + "id": 3864, + "label": "BGGN 204", + "title": "Topics in Community and Population Ecology (3)" + }, + { + "dept": "BGGN", + "description": "Learn effective ways of communicating science to nonscientists. Develop an understanding of how people\u2019s views of science and background knowledge can influence their learning and develop methods to tailor communication for different audiences. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3865, + "label": "BGGN 205", + "title": "Communicating Science to the Public (2)" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with SOMI 226.) Lectures, reading, and discussions about the responsible conduct and reporting of research, working with others in science, and social responsibilities; the course is designed as an option for meeting current federal regulations. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3866, + "label": "BGGN 207", + "title": "Scientific Ethics (1)" + }, + { + "dept": "BIPN", + "description": "Course addresses the human body\u2019s response to exercise, addressing energy metabolism and the effects of both acute and chronic exercise on function in several important organ systems. Designing training regimes and the role of exercise in health will be considered. ", + "edges_from": [], + "edges_to": [], + "id": 3867, + "label": "BIPN 108", + "title": "Biology and Medicine of Exercise (4)" + }, + { + "dept": "BIPN", + "description": "Course completes a survey of organ systems begun in BIPN 100 by considering the respiratory and gastrointestinal systems. Consideration is given to interactions of these systems in weight and temperature regulation, exercise physiology, stress, and pregnancy and reproduction. Note: Students may not receive credit for both BIPN 102 and BENG 140B. ", + "edges_from": [ + 588 + ], + "edges_to": [ + 4180 + ], + "id": 3868, + "label": "BIPN 102", + "title": "Human Physiology II (4)" + }, + { + "dept": "BIPN", + "description": "Experiments are performed on membrane physiology, nerve and muscle function, hormone actions, cardiovascular physiology, and renal function. Subjects include experimental animals. Students will perform a research project and present their results in a symposium at the end of the quarter. Attendance at the first lecture/lab is required. Nonattendance may result in the student being dropped from the course roster. Material lab fees will apply. ", + "edges_from": [ + 588 + ], + "edges_to": [], + "id": 3869, + "label": "BIPN 105", + "title": "Animal Physiology Lab (6)" + }, + { + "dept": "BIPN", + "description": "This course examines the physiological adaptation", + "edges_from": [], + "edges_to": [], + "id": 3870, + "label": "BIPN 106", + "title": "Comparative Physiology (4)" + }, + { + "dept": "SOCI", + "description": "We examine cultural production in Japan and abroad, national and transnational political-economic and social influences, the idea of Japan in the West, and the idea of the West in Japan. ", + "edges_from": [], + "edges_to": [], + "id": 3871, + "label": "SOCI 123 Japanese Culture Inside/Out: A Transnational Perspective (4)", + "title": "" + }, + { + "dept": "NANO", + "description": "Introduction to NanoEngineering lab-based skills. Hands-on training and experimentation with nanofabrication techniques, integration, and analytical tools. This class is for NANO majors who are incoming freshmen, to be taken their first year.\u00a0This class is for NanoEngineering majors who are incoming freshmen, to be taken their first year. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3872, + "label": "NANO 4", + "title": "Experience\u00a0NanoEngineering\u00a0(1)" + }, + { + "dept": "PHYS", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in Physics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors.", + "edges_from": [], + "edges_to": [], + "id": 3873, + "label": "PHYS 192", + "title": "Senior Seminar in Physics (1)" + }, + { + "dept": "NANO", + "description": "Overview of NanoEngineering. Presentations and discussions of basic knowledge and career opportunities in nanotechnology for professional development. Introduction to campus library resources. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3874, + "label": "NANO 1", + "title": "NanoEngineering Seminar (1)" + }, + { + "dept": "COMM", + "description": "How visual images contribute to our understanding of the world and ourselves. Theoretical approaches from media studies, art history, gender studies, and social theory will be used to analyze cultures of science, art, mass media, and everyday life. ", + "edges_from": [ + 3876, + 294 + ], + "edges_to": [], + "id": 3875, + "label": "COMM 107", + "title": "Visual Culture (4)" + }, + { + "dept": "COMM", + "description": "", + "edges_from": [], + "edges_to": [ + 3875 + ], + "id": 3876, + "label": "COMM 108", + "title": "" + }, + { + "dept": "PHYS", + "description": "Undergraduate seminars organized around the research interests of various faculty members. P/NP grades only. ", + "edges_from": [ + 26, + 35 + ], + "edges_to": [], + "id": 3877, + "label": "PHYS 191", + "title": "Undergraduate Seminar on Physics (1)" + }, + { + "dept": "PHYS", + "description": "Directed group study on a topic or in a field not included in the regular departmental curriculum. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3878, + "label": "PHYS 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "PHYS", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3879, + "label": "PHYS 199", + "title": "Research for Undergraduates (2 or 4)" + }, + { + "dept": "CSE", + "description": "Comprehensive introduction to computer vision", + "edges_from": [], + "edges_to": [], + "id": 3880, + "label": "CSE 252A", + "title": "Computer Vision I (4)" + }, + { + "dept": "CSE", + "description": "Comprehensive introduction to computer vision", + "edges_from": [], + "edges_to": [], + "id": 3881, + "label": "CSE 252B", + "title": "Computer Vision II (4)" + }, + { + "dept": "CSE", + "description": "Selected topics in computer vision and statistical pattern recognition, with an emphasis on recent developments. Possible topics include: grouping and segmentation, object recognition and tracking, multiple view geometry, kernel-based methods, dimensionality reduction, and mixture models. ", + "edges_from": [ + 3883, + 3884 + ], + "edges_to": [], + "id": 3882, + "label": "CSE 252C", + "title": "Selected Topics in Vision and Learning (1\u20134)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3882 + ], + "id": 3883, + "label": "CSE 250B", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3882 + ], + "id": 3884, + "label": "CSE 252", + "title": "" + }, + { + "dept": "ANAR", + "description": "This course explores in detail the rise of the world\u2019s earliest cities and states in Mesopotamia and the ancient Near East during the fourth millennium B.C. ", + "edges_from": [], + "edges_to": [], + "id": 3885, + "label": "ANAR 138", + "title": "Mesopotamia: The Emergence of Civilization (4)" + }, + { + "dept": "SOCI", + "description": "and Indigenous Peoples in Latin America (4)", + "edges_from": [], + "edges_to": [], + "id": 3886, + "label": "SOCI 182", + "title": "Ethnicity" + }, + { + "dept": "SOCI", + "description": "This course examines the nature and dynamics of modern western society in the context of the historical process by which this type of society has emerged over the last several centuries. The aim of the course is to help students think about what kind of society they live in, what makes it the way it is, and how it shapes their lives. ", + "edges_from": [ + 3888, + 3887 + ], + "edges_to": [ + 3887 + ], + "id": 3887, + "label": "SOCI 181", + "title": "Modern Western Society (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 3887 + ], + "id": 3888, + "label": "SOCD 181", + "title": "" + }, + { + "dept": "SOCI", + "description": "An examination of the nature of protests and violence, particularly as they occur in the context of larger social movements. The course will further examine those generic facets of social movements having to do with their genesis, characteristic forms of development, relationship to established political configurations, and gradual fading away. ", + "edges_from": [ + 3889, + 3890 + ], + "edges_to": [ + 3889 + ], + "id": 3889, + "label": "SOCI 180", + "title": "Social Movements and Social Protest (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3889 + ], + "id": 3890, + "label": "SOCC 180", + "title": "" + }, + { + "dept": "SOCI", + "description": "Exploration of contemporary African urbanization and social change via film, including 1) transitional African communities, 2) social change in Africa, 3) Western vs. African filmmakers\u2019 cultural codes. Ideological and ethnographic representations, aesthetics, social relations, and market demand for African films are analyzed. ", + "edges_from": [ + 3891, + 3892 + ], + "edges_to": [ + 3891 + ], + "id": 3891, + "label": "SOCI 187", + "title": "African Societies through Film (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 3891 + ], + "id": 3892, + "label": "SOCD 187", + "title": "" + }, + { + "dept": "SOCI", + "description": "Social development is more than sheer economic growth. It entails improvements in the overall quality of human life, particularly in terms of access to health, education, employment, and income for the poorer sectors of the population. Course examines the impact of globalization on the prospects for attaining these goals in developing countries. ", + "edges_from": [ + 3893, + 3894 + ], + "edges_to": [ + 3893 + ], + "id": 3893, + "label": "SOCI 185", + "title": "Globalization and Social Development (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 3893 + ], + "id": 3894, + "label": "SOCD 185", + "title": "" + }, + { + "dept": "SOCI", + "description": "This class will examine issues of masculinity and femininity through analysis of films. Emphasis is on contemporary American society and will include varying issues such as race, class, and sexualities; worlds of work; romance, marriage, and family. ", + "edges_from": [ + 3896, + 3895 + ], + "edges_to": [ + 3895 + ], + "id": 3895, + "label": "SOCI 184", + "title": "Gender and Film (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 3895 + ], + "id": 3896, + "label": "SOCC 184", + "title": "" + }, + { + "dept": "CHEM", + "description": "Course in computational methods building on a background in mathematics and physical chemistry. Brief introduction and background in computational theory, molecular mechanics, semi-empirical methods, and ab initio-based methods of increasing elaboration. Emphasis on applications and reliability. May be coscheduled with CHEM 185. ", + "edges_from": [], + "edges_to": [], + "id": 3897, + "label": "CHEM 285", + "title": "Introduction to Computational Chemistry (4)" + }, + { + "dept": "SOCI", + "description": "Topics in Comparative-Historical Sociology (4)", + "edges_from": [], + "edges_to": [], + "id": 3898, + "label": "SOCI 189", + "title": "Special" + }, + { + "dept": "CHEM", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 3899, + "label": "CHEM 280", + "title": "Applied Bioinformatics" + }, + { + "dept": "CHEM", + "description": "A laboratory course combining hands-on mass spectrometry and", + "edges_from": [], + "edges_to": [], + "id": 3900, + "label": "CHEM 283", + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + { + "dept": "GPPA", + "description": "This course explores three topics: 1) democracy, which is primarily about procedural justice; 2) social policy, which is primarily about distributive justice; and, 3) corruption, which is a breach of formal justice. We will consider potential conflicts and reconciliation between justice and development, approaching various issues not just theoretically and conceptually, but also empirically and quantitatively. The course uses cross-national quantitative studies and case studies. Renumbered from IRGN 450. Students may not receive credit for GPPA 450 and IRGN 450.", + "edges_from": [], + "edges_to": [], + "id": 3901, + "label": "GPPA 450", + "title": "Justice, Policy, and Development (4)" + }, + { + "dept": "POLI", + "description": "and Latin America: Political and Economic Relations (4)", + "edges_from": [], + "edges_to": [], + "id": 3902, + "label": "POLI 146A", + "title": "The U.S." + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in behavior medicine. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 3903, + "label": "PSYC 267A", + "title": "Advanced Topics in Behavior Medicine I (1)" + }, + { + "dept": "MAE", + "description": "Basics of stratified flows.", + "edges_from": [], + "edges_to": [], + "id": 3904, + "label": "MAE 224A", + "title": "Environmental Fluid Dynamics I (4)" + }, + { + "dept": "MAE", + "description": "Plumes and thermals. Application", + "edges_from": [], + "edges_to": [], + "id": 3905, + "label": "MAE 224B", + "title": "Environmental Fluid Dynamics II (4)" + }, + { + "dept": "LTWR", + "description": "A workshop and survey of experimental approaches to the writing and production of performance works in a range of literary genres. Emphasis will be placed on the integration of written texts with nonverbal elements from the visual arts, theatre, and music. ", + "edges_from": [ + 3906, + 157, + 143 + ], + "edges_to": [ + 3906 + ], + "id": 3906, + "label": "LTWR 119", + "title": "Writing for Performance (4)" + }, + { + "dept": "LTWR", + "description": "A workshop designed to encourage writing of original screenplays and adaptations. There will be discussion of study work, together with analysis of discussion of representative examples of screen writing. May be taken up to three times for credit. ", + "edges_from": [], + "edges_to": [], + "id": 3907, + "label": "LTWR 110", + "title": "Screen Writing (4)" + }, + { + "dept": "LTWR", + "description": "This course is an introduction to modes of writing from other cultural systems vastly different from the cultural-aesthetic assumptions of Anglo American writing. While disclosing the limitations of the English language, this course attempts to provide new language strategies for students. May be taken for credit three times. ", + "edges_from": [ + 156, + 157, + 143 + ], + "edges_to": [], + "id": 3908, + "label": "LTWR 113", + "title": "Intercultural Writing Workshop (4)" + }, + { + "dept": "LTWR", + "description": "This workshop explores writing for which the traditional generic distinctions of prose/poetry, fiction/documentary, narrative/discourse do not apply. Students taking this course will be asked to challenge the boundaries of literature to discover new forms and modes of expression. May be taken for credit three times. ", + "edges_from": [ + 156, + 157, + 143 + ], + "edges_to": [], + "id": 3909, + "label": "LTWR 115", + "title": "Experimental Writing Workshop (4)" + }, + { + "dept": "LTWR", + "description": "From illuminated manuscripts to digital literature, from alphabets to concrete poems, from artists\u2019 books to comics, this course explores the histories and techniques of combinatory image/word literary arts. The course may emphasize specific movements or genres. May be taken for credit three times. ", + "edges_from": [ + 156, + 157, + 143 + ], + "edges_to": [], + "id": 3910, + "label": "LTWR 114", + "title": "Graphic Texts Workshop (4)" + }, + { + "dept": "VIS", + "description": "This seminar will examine key moments in the interaction between the world of art and the world of ideas; the goal is to start students thinking about the entire theory-practice relation as it connects with their own projects and research. ", + "edges_from": [], + "edges_to": [], + "id": 3911, + "label": "VIS 117G", + "title": "Critical Theory and Visual Practice (4)" + }, + { + "dept": "LTEN", + "description": "in US Minority Literatures and Cultures (4)", + "edges_from": [], + "edges_to": [], + "id": 3912, + "label": "LTEN 254", + "title": "Topics" + }, + { + "dept": "LTEN", + "description": "A survey of selected responses to imperialism and colonialism as presented in cultural texts produced by colonized or once-colonized peoples. Related issues to be examined: gender dynamics, class, representing others, mimicry, language, cultural theory, and the politics of literary genres. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3913, + "label": "LTEN 256", + "title": "Postcolonial Discourses (4)" + }, + { + "dept": "LTEN", + "description": "in Modern American Literature and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 3914, + "label": "LTEN 252", + "title": "Studies" + }, + { + "dept": "TDGR", + "description": "This course is designed to enhance dance practitioners\u2019 understanding of pedagogical processes. Candidates will develop strategies to generate course material that functions in multiple contexts. These contexts may include university teaching, professional workshops, master classes, and artist residencies. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 3915, + "label": "TDGR 216A", + "title": "Pedagogical Practices (4)" + }, + { + "dept": "LTEN", + "description": "New developments in the study of literature in diverse frameworks, including but not limited to: globalization, queer theory, diaspora studies, environmentalism, world literary systems, international literary awards, transnational feminism, literary markets, human rights discourse, and translation studies. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 3916, + "label": "LTEN 259", + "title": "Transnational Literary Studies (4)" + }, + { + "dept": "PSYC", + "description": "This is a series of weekly seminars on current trends in neuropsychology. The seminars will deal with the concept of \u201clocalization\u201d of function in different parts of the brain and the effects of damage to these parts on cognitive functions such as perception, memory and language. Active student participation will be encouraged in preparing these seminars. ", + "edges_from": [], + "edges_to": [], + "id": 3917, + "label": "PSYC 252", + "title": "Cognitive Neuroscience (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on entertainment/culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3918, + "label": "Linguistics/Heritage Languages (LIHL) 135P", + "title": "Advanced Korean for Korean Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on media/arts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean. LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3919, + "label": "Linguistics/Heritage Languages (LIHL) 135W", + "title": "Advanced Korean for Korean Speakers (4)" + }, + { + "dept": "TDGE", + "description": "The Honors thesis is designed to give theatre and dance majors the opportunity to undertake advanced creative research in an area of specialization (directing, history, pedagogy, performance, playwriting, or stage management), culminating in the writing of a thesis and the oral or performative presentation of the thesis to the members of the student\u2019s Honors Committee. Application available with the theatre and dance undergraduate coordinator. This is a two-quarter research project. Students enroll in the winter and spring quarters of their senior year. Deadline to apply is fall quarter of the student\u2019s senior year. ", + "edges_from": [], + "edges_to": [ + 3921 + ], + "id": 3920, + "label": "TDGE 196A", + "title": "Honors Study in Theatre and Dance (4)" + }, + { + "dept": "TDGE", + "description": "A continuation of TDGE 196A. Theatre and dance Honors students complete thesis work in directing, history, pedagogy, performance, playwriting, or stage management under the close supervision of a faculty member. All students enrolled will present their thesis work during a departmental showcase event at the end of the spring quarter. ", + "edges_from": [ + 3920 + ], + "edges_to": [], + "id": 3921, + "label": "TDGE 196B", + "title": "Honors Study in Theatre and Dance (4)" + }, + { + "dept": "COGS", + "description": "An applied hands-on programming course that focuses on the design, implementation and analysis of experiments. Topics include experiment design, stimulus presentation, response collection, file manipulation, data analysis, display, and presentation. Course work includes both team and individual projects. Graduate students who have not programmed at all should speak with the professor beforehand.", + "edges_from": [], + "edges_to": [], + "id": 3922, + "label": "COGS 219", + "title": "Programming for Behavioral Sciences (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language function required for advanced oral communication, reading, writing, and cultural understanding in professional contexts, with emphasis on domestic culture. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Korean LIHL 135F, LIHL 135W, and LIHL 135P may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 3923, + "label": "Linguistics/Heritage Languages (LIHL) 135F", + "title": "Advanced Korean for Korean Speakers (4)" + }, + { + "dept": "HDP", + "description": "The course will examine the human evolutionary past to inform our understanding of the biological, cognitive, and sociocultural aspects of growth and change across the lifespan. Lectures and readings will draw from diverse fields to situate our understanding of human development within its broader evolutionary context. Areas of focus will include but are not limited to human longevity, biology of growth, theory of mind, and social and biological development in cross-species comparison. ", + "edges_from": [ + 1987, + 1692, + 445 + ], + "edges_to": [], + "id": 3924, + "label": "HDP 111", + "title": "Evolutionary Principles in Human Development (4)" + }, + { + "dept": "HDP", + "description": "The purpose of this course is to familiarize students with basic mechanisms of brain and behavioral development from embryology through aging. Multiple levels of analysis will be discussed, including the effects of hormones on behavior, developmental events at the level of cells, structures, and neural systems, and the neural basis of cognition, social, perceptual, and language development. ", + "edges_from": [ + 445, + 446 + ], + "edges_to": [], + "id": 3925, + "label": "HDP 110", + "title": "Brain and Behavioral Development (4)" + }, + { + "dept": "HIUS", + "description": "This course traces the history of the institution of US citizenship in the last century, tracing changing notions of racial, cultural, and gender differences, the evolution of the civil rights struggle, and changes in laws governing citizenship and access to rights.", + "edges_from": [], + "edges_to": [], + "id": 3926, + "label": "HIUS 136/ETHN 153", + "title": "Citizenship and Civil Rights in the Twentieth Century (4)" + }, + { + "dept": "HITO", + "description": "This course introduces students to the history of modern Vietnam, starting with the Tay Son rebellion in the late eighteenth century and ending with the economic reforms of the 1980s. Topics include the expansion and consolidation of the French colonial state, the rise of anti-colonialism and nationalism, the development of Vietnamese communism, World War II, and the First and Second Indochina Wars. A special emphasis will be focused on the place of Vietnam within wider regional and global histories.", + "edges_from": [], + "edges_to": [], + "id": 3927, + "label": "HITO 114", + "title": "History of Modern Vietnam (4)" + }, + { + "dept": "HITO", + "description": "How did cars come to dominate the world? This course provides a survey of the world since 1900 to the near future through the history of cars and their impacts on politics, economics, society, and the environment.", + "edges_from": [], + "edges_to": [], + "id": 3928, + "label": "HITO 116", + "title": "Car Wars: A Global History of the World since 1900 through Cars (4)" + }, + { + "dept": "HITO", + "description": "This course examines the interaction between", + "edges_from": [], + "edges_to": [], + "id": 3929, + "label": "HITO 117", + "title": "World History 1200\u20131800 (4)" + }, + { + "dept": "PHYS", + "description": "An exploration of life in the Universe. Topics include defining life; the origin, development, and fundamental characteristics of life on Earth; searches for life elsewhere in the solar system and other planetary systems; space exploration; and identifying extraterrestrial intelligence. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 3930, + "label": "PHYS 13", + "title": "Life in the Universe (4)" + }, + { + "dept": "BIMM", + "description": "Course will consider the organization and function of prokaryotic genomes including content, DNA supercoiling, histone-like proteins, chromosomal dynamics (short-term and long-term), extrachromosomal elements, bacterial sex, transduction, transformation, mobile elements (transposon), epigenetic change, adaptive and directed mutation, transcription and its regulation, sensory transduction, bacterial differentiation, symbiosis, and pathogenesis. ", + "edges_from": [ + 241 + ], + "edges_to": [], + "id": 3931, + "label": "BIMM 122", + "title": "Microbial Genetics (4)" + }, + { + "dept": "BIMM", + "description": "A discussion of the structure, growth, physiology, molecular genetics, genomics, and ecology of prokaryotic microorganisms, with emphasis on the genetic and metabolic diversity of bacteria and Archaea and their interactions with hosts and the environment. ", + "edges_from": [ + 240, + 589, + 687 + ], + "edges_to": [], + "id": 3932, + "label": "BIMM 120", + "title": "Microbiology (4)" + }, + { + "dept": "BIMM", + "description": "Course emphasizes fundamental principles of microbiology, including comparative", + "edges_from": [], + "edges_to": [], + "id": 3933, + "label": "BIMM 121", + "title": "Laboratory in Microbiology (6)" + }, + { + "dept": "BIMM", + "description": "Encompasses the increasingly important areas", + "edges_from": [], + "edges_to": [], + "id": 3934, + "label": "BIMM 124", + "title": "Medical Microbiology (4)" + }, + { + "dept": "ANTH", + "description": "A seminar given to acquaint students with the techniques and problems of fieldwork. Students carry out ethnographic field research in a local community group under faculty supervision. ", + "edges_from": [ + 3936 + ], + "edges_to": [], + "id": 3935, + "label": "ANTH 283A", + "title": "Fieldwork Seminar (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 3935 + ], + "id": 3936, + "label": "ANGR 283A", + "title": "" + }, + { + "dept": "ANSC", + "description": "This course will provide an anthropological perspective on Chinese culture in Taiwan from its earliest settlement to the present, including distinctive Taiwanese variants of traditional Chinese marriage and family life, institutions, festivals, agricultural practices, etc. ", + "edges_from": [], + "edges_to": [], + "id": 3937, + "label": "ANSC 111", + "title": "The Chinese Heritage in Taiwan (4)" + }, + { + "dept": "PHYS", + "description": "A hands-on laboratory course in which the students learn and use experimental techniques, including optics, electronics, chemistry, machining, and computer interface, to design and develop simple instruments for quantitative characterization of living systems. Lab classes will comprise five two-week modules. ", + "edges_from": [], + "edges_to": [ + 4132 + ], + "id": 3938, + "label": "PHYS 270A", + "title": "Experimental Techniques for Quantitative Biology (4)" + }, + { + "dept": "TDGR", + "description": "A one-quarter course covering the hour-long format (five weeks) and situation comedies (five weeks). Includes study and discussion of television script format and structure. Students will create the concept and structure for spec scripts in each genre. ", + "edges_from": [], + "edges_to": [], + "id": 3939, + "label": "TDGR 254", + "title": "Television Writing (4)" + }, + { + "dept": "EDS", + "description": "This course examines special topics in P\u201312 education from a variety of theoretical and pedagogical perspectives. Topics will address pertinent and current issues related to P\u201312", + "edges_from": [], + "edges_to": [], + "id": 3940, + "label": "EDS 180", + "title": "Topics in Education Studies (4)" + }, + { + "dept": "ECE", + "description": "Students design, build, and race an autonomous car using principles in electrical engineering and computer science: circuit design, control theory, digital signal processing, embedded systems, microcontrollers, electromagnetism, and programming. ", + "edges_from": [], + "edges_to": [], + "id": 3941, + "label": "ECE 194", + "title": "Viacar Design Project (4)" + }, + { + "dept": "ECE", + "description": "Teaching and tutorial activities associated with courses and seminars. Not more than four units of ECE 195 may be used for satisfying graduation requirements. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3942, + "label": "ECE 195", + "title": "Teaching (2 or 4)" + }, + { + "dept": "ECE", + "description": "Groups of students work to build and demonstrate at least three engineering projects at the beginning, intermediate, and advanced levels. The final project consists of either a new project designed by the student team or extension of an existing project. The student teams also prepare a manual as part of their documentation of the final project. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 3943, + "label": "ECE 196", + "title": "Engineering Hands-on Group Project (4)" + }, + { + "dept": "ECE", + "description": "Directed study and research at laboratories and observatories away from the campus. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3944, + "label": "ECE 197", + "title": "Field Study in Electrical and Computer Engineering (4, 8, 12, or 16)" + }, + { + "dept": "ECE", + "description": "Students complete a project comprising at least 50 percent or more engineering design to satisfy the following features: student creativity, open-ended formulation of a problem statement/specifications, consideration of alternative solutions/realistic constraints. Written final report required. ", + "edges_from": [ + 3945 + ], + "edges_to": [ + 3945 + ], + "id": 3945, + "label": "ECE 190", + "title": "Engineering Design (4)" + }, + { + "dept": "ANSC", + "description": "An introduction to the languages and cultures of speakers of the Mayan family of languages, with emphasis on linguistic structures, ethnography, and the social history of the region. The course will concentrate on linguistic and ethnographic literature of a single language or sub-branch, emphasizing commonalities with the family and region as a whole. ", + "edges_from": [], + "edges_to": [], + "id": 3946, + "label": "ANSC 116", + "title": "Languages of the Americas: Mayan (4)" + }, + { + "dept": "ECE", + "description": "Topics in electrical and computer engineering whose study involves reading and discussion by a small group of students under direction of a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3947, + "label": "ECE 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "ECE", + "description": "Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 3948, + "label": "ECE 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "HIEU", + "description": "A study of the social, intellectual, and political currents in French history from the end of the French Revolution to the eve of the First World War. Lectures, slides, films, readings, and discussions.", + "edges_from": [], + "edges_to": [], + "id": 3949, + "label": "HIEU 153A", + "title": "Nineteenth-Century France (4)" + }, + { + "dept": "CHIN", + "description": "160/260. Late Imperial and Twentieth-Century Chinese Historical Texts", + "edges_from": [], + "edges_to": [], + "id": 3950, + "label": "CHIN", + "title": "" + }, + { + "dept": "LTCS", + "description": "Directed group research, under the guidance of a member of the faculty, in an area not covered in courses currently offered by the department. (P/NP only.) ", + "edges_from": [], + "edges_to": [], + "id": 3951, + "label": "LTCS 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTCS", + "description": "Individual reading in an area not covered in courses currently offered by the department. (P/NP only.) ", + "edges_from": [], + "edges_to": [], + "id": 3952, + "label": "LTCS 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "MDE", + "description": "Computer-aided analysis and design with applications to medical devices. Solid model representation, finite element analysis for strength and deformation, material selection, kinematics, statistical analysis, and visualization of analytical results. Software packages used will include 3D CAD, FEA solvers, and student generated code. Analytical methods will be applied to case studies of medical devices. ", + "edges_from": [], + "edges_to": [], + "id": 3953, + "label": "MDE 292", + "title": "Computer Aided Design of Medical Devices (4)" + }, + { + "dept": "ETHN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 3954, + "label": "ETHN 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ETHN", + "description": "The development of the Atlantic slave trade and the spread of racial slavery in the Americas before 1800. Explores the diversity of slave labor in the Americas and the different slave cultures African Americans produced under the constraints of slavery. Students may not receive credit for both ETHN 170 and 170B.", + "edges_from": [], + "edges_to": [], + "id": 3955, + "label": "ETHN 170", + "title": "Slavery and the Atlantic World (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 183.) Students will analyze and discuss the novel, the personal narrative, and other prose genres, with particular emphasis on the developing characters of Afro-American narrative and the cultural and social circumstances that influence their development.", + "edges_from": [], + "edges_to": [], + "id": 3956, + "label": "ETHN 172", + "title": "Afro-American Prose (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 186.) The Harlem Renaissance (1917\u201339) focuses on the emergence of the \u201cNew Negro\u201d and the impact of this concept on black literature, art, and music. Writers studied include Claude McKay, Zora N. Hurston, and Langston Hughes. Special emphasis on new themes and forms.", + "edges_from": [], + "edges_to": [], + "id": 3957, + "label": "ETHN 175", + "title": "Literature of the Harlem Renaissance (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with LTEN 185.) This course focuses on the influence of slavery upon African American writers. Our concern is not upon what slavery was but upon what it is within the works and what these texts reveal about themselves, their authors, and their audiences.", + "edges_from": [], + "edges_to": [], + "id": 3958, + "label": "ETHN 174", + "title": "Themes in Afro-American Literature (4)" + }, + { + "dept": "ETHN", + "description": "This course considers the history of listening to the music of the world in Western culture. We will critically examine how the history of perception directs us to listen for familiar and different sounds in music. No musical training required.", + "edges_from": [], + "edges_to": [], + "id": 3959, + "label": "ETHN 177", + "title": "Listening to the World (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 127.) Offers an introduction to jazz, including important performers and their associated styles and techniques. Explores the often provocative role jazz has played in American and global society, the diverse perceptions and arguments that have surrounded its production and reception, and how these have been inflected by issues of race, class, gender, and sexuality. Specific topics vary from year to year.\u00a0May be taken for credit two times. Students may receive a combined total of eight units for MUS 127 and ETHN 179.", + "edges_from": [], + "edges_to": [], + "id": 3960, + "label": "ETHN 179", + "title": "Discover Jazz (4)" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with MUS 126.) This course will examine the development of the blues from its roots in work-songs and the minstrel show to its flowering in the Mississippi Delta to the development of urban blues and the close relationship of the blues with jazz, rhythm and blues, and rock and roll.", + "edges_from": [], + "edges_to": [], + "id": 3961, + "label": "ETHN 178", + "title": "Blues: An Oral Tradition (4)" + }, + { + "dept": "EDS", + "description": "This course explores topical issues in education. It focuses on recent developments that have broad implications for research and practice in teaching and learning. Course topics will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 3962, + "label": "EDS 232", + "title": "Special Topics in Education (4)" + }, + { + "dept": "EDS", + "description": "Topics in Instructional Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 3963, + "label": "EDS 231", + "title": "Advanced" + }, + { + "dept": "PSYC", + "description": "This course provides hands-on research experience. Lecture topics will include experimental and nonexperimental designs, research ethics, data analysis, and causal inference. Students will design original research projects, collect and analyze data, and write a full APA-style report, including a brief literature review relevant to their design. This course builds on PSYC 70 by applying design principles to students\u2019 own research questions and ideas. ", + "edges_from": [ + 3965 + ], + "edges_to": [], + "id": 3964, + "label": "PSYC 71", + "title": "Laboratory in Psychological Research Methods (4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 436 + ], + "edges_to": [ + 3964 + ], + "id": 3965, + "label": "PSYC 70", + "title": "" + }, + { + "dept": "TWS", + "description": "This course will investigate novelistic and dramatic treatments of European society in the era of nineteenth-century imperialism, Third World societies under the impact of colonialism, and the position of national minorities inside the United States to the present day. Attention will center on the interplay between the aesthetic merits and social-historical-philosophical content of the works read.", + "edges_from": [], + "edges_to": [], + "id": 3966, + "label": "TWS 132", + "title": "Literature and Third World Societies (4)" + }, + { + "dept": "ANBI", + "description": "Conservation on a human-dominated planet is a complex topic. Sometimes a picture is worth a thousand words. This course explores how films about conservation and the human predicament tackle current problems. What makes them effective and what makes them \u201cfail\u201d? We view one film a week and discuss it based on articles and books about that week\u2019s topic. Corequisite: must be enrolled in ANBI 132.", + "edges_from": [], + "edges_to": [], + "id": 3967, + "label": "ANBI 174", + "title": "Conservation and the Media: Film Lab (4)" + }, + { + "dept": "ANBI", + "description": "Models of human evolution combine science and myth. This course examines methods used in reconstructions of human evolution. Models such as \u201cman the hunter\u201d and \u201cwoman the gatherer\u201d are examined in light of underlying assumptions, and cultural ideals. ", + "edges_from": [], + "edges_to": [], + "id": 3968, + "label": "ANBI 175", + "title": "Paleofantasy: The Evidence for Our Early Ancestors (4)" + }, + { + "dept": "ANBI", + "description": "The last divide between humans and other animals is in the area of cognition. A comparative perspective to explore recent radical reinterpretations of the cognitive abilities of different primate species, including humans and their implications for the construction of evolutionary scenarios. ", + "edges_from": [], + "edges_to": [], + "id": 3969, + "label": "ANBI 173", + "title": "How Monkeys See the World (4)" + }, + { + "dept": "BIOM", + "description": "This elective is designed to increase knowledge of the drug discovery, development, regulatory, and commercialization process. Students will have an increased understanding of how an investigational agent eventually becomes an approved drug for patient use. Lectures and a student group project will be conducted for this elective. ", + "edges_from": [], + "edges_to": [], + "id": 3970, + "label": "BIOM 267", + "title": "Drug Discovery, Development, and Commercialization (3)" + }, + { + "dept": "BIOM", + "description": "Lectures on the molecular and cellular mechanisms of pathogenesis. Topics will include Alzheimer\u2019s disease, cell surface and unclear receptors in disease, signal transduction by oncogenes in cancer cells, AIDS, human diseases affecting glycosylation pathways, rheumatoid arthritis, and arteriosclerosis. ", + "edges_from": [], + "edges_to": [], + "id": 3971, + "label": "BIOM 264", + "title": "Molecular and Cellular Basis of Disease (2)" + }, + { + "dept": "BIOM", + "description": "This advanced problem-oriented course will examine experimental design, laboratory methods, and quantitative analytical tools used in genetic and genomic research. Students will analyze supplied data using a variety of software packages. ", + "edges_from": [ + 1032, + 890, + 644 + ], + "edges_to": [], + "id": 3972, + "label": "BIOM 262", + "title": "Quantitative Methods in Genetics (4)" + }, + { + "dept": "MAE", + "description": "Methods for Differential Equations (4)", + "edges_from": [], + "edges_to": [ + 3974 + ], + "id": 3973, + "label": "MAE 290B", + "title": "Numerical" + }, + { + "dept": "MAE", + "description": "Numerical methods in fluid dynamics and convective transport processes. Numerical solution of the Euler and Navier-Stokes equation. Additional topics will vary according to instructor. Examples include eigenvalue problems in hydrodynamic stability, vortex methods, spectral and panel methods. Students may not receive credit for both MAE 290C and MAE 223. ", + "edges_from": [ + 2340, + 3973, + 1182, + 1183 + ], + "edges_to": [], + "id": 3974, + "label": "MAE 290C", + "title": "Computational Fluid Dynamics (4)" + }, + { + "dept": "ECON", + "description": "Risk measures, hedging techniques, value of risk to firms, estimation of optimal hedge ratio, risk management with options and futures. Econ 171 is recommended. ", + "edges_from": [ + 414 + ], + "edges_to": [], + "id": 3975, + "label": "ECON 174", + "title": "Financial Risk Management (4)" + }, + { + "dept": "ECON", + "description": "Decision making when the consequences are uncertain. Decision trees, payoff tables, decision criteria, expected utility theory, risk aversion, sample information. ", + "edges_from": [ + 1220, + 3977, + 3978, + 655, + 1844, + 794 + ], + "edges_to": [], + "id": 3976, + "label": "ECON 171", + "title": "Decisions Under Uncertainty (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 132, + 407 + ], + "edges_to": [ + 5281, + 3976, + 5197, + 168, + 4891, + 4894 + ], + "id": 3977, + "label": "MATH 183", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 132, + 407 + ], + "edges_to": [ + 5281, + 3976, + 5197, + 5104, + 168, + 4891, + 4894 + ], + "id": 3978, + "label": "MATH 186", + "title": "" + }, + { + "dept": "CHEM", + "description": "Practical methods to make drugs currently in use and to design future drugs. Treats both chemical synthesis and biologics like monoclonal antibodies. Topics include fragment-based screening, solid phase synthesis, directed evolution, and bioconjugation as well as efficacy, metabolism, and toxicity. ", + "edges_from": [ + 2928, + 2929, + 2930, + 1516, + 1990 + ], + "edges_to": [], + "id": 3979, + "label": "CHEM 168", + "title": "Drug Synthesis and Design (4)" + }, + { + "dept": "HILA", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members.", + "edges_from": [], + "edges_to": [], + "id": 3980, + "label": "HILA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "HILA", + "description": "Study in Latin American History (4)", + "edges_from": [], + "edges_to": [], + "id": 3981, + "label": "HILA 199", + "title": "Independent" + }, + { + "dept": "MUS", + "description": "Second part of intensive historical, analytical, and cultural-aesthetic examination of music in Western culture from the ninth through the twenty-first centuries. Considers both instrumental and vocal repertories, from the Baroque to the Romantic, c. 1600\u20131830. ", + "edges_from": [ + 1684, + 3983 + ], + "edges_to": [], + "id": 3982, + "label": "MUS 120B", + "title": "History of Music in Western Culture II (4)" + }, + { + "dept": "MUS", + "description": "", + "edges_from": [ + 769, + 2581, + 1241 + ], + "edges_to": [ + 3982 + ], + "id": 3983, + "label": "MUS 120A", + "title": "" + }, + { + "dept": "MUS", + "description": "Third part of intensive historical, analytical,", + "edges_from": [], + "edges_to": [ + 5024 + ], + "id": 3984, + "label": "MUS 120C", + "title": "History of Music in Western Culture III (4)" + }, + { + "dept": "ECON", + "description": "Survey of theoretical and practical aspects of statistical and economic forecasting. Such topics as long-run and short-run horizons, leading indicator analysis, econometric models, technological and population forecasts, forecast evaluation, and the use of forecasts for public policy. Concurrent enrollment in Econ 120C is permitted. ", + "edges_from": [ + 166 + ], + "edges_to": [], + "id": 3985, + "label": "ECON 178", + "title": "Economic and Business Forecasting (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "(2.5)", + "edges_from": [], + "edges_to": [], + "id": 3986, + "label": "Linguistics/Italian (LIIT) 1DX", + "title": "Analysis of Italian" + }, + { + "dept": "SOCI", + "description": "of Sexuality and Sexual Identities (4)", + "edges_from": [], + "edges_to": [], + "id": 3987, + "label": "SOCI 119", + "title": "Sociology" + }, + { + "dept": "ECON", + "description": "Covers various topics in macroeconomics at the frontiers of research, including theory, computation, and empirical work. Emphasis depends on the instructor. Students will read the latest working papers and publications in the covered areas. ", + "edges_from": [ + 1192, + 1193, + 1194 + ], + "edges_to": [], + "id": 3988, + "label": "ECON 211", + "title": "Advanced Macroeconomics (4-4-4)" + }, + { + "dept": "ECON", + "description": "This course covers advanced computation techniques that are widely used in macroeconomics, finance, and other fields. Students will learn a range of numerical methods for handling systems of equations, integration, optimization, and other problems. ", + "edges_from": [ + 1192, + 1193, + 1194 + ], + "edges_to": [], + "id": 3989, + "label": "ECON 216", + "title": "Computation for Macroeconomics (4)" + }, + { + "dept": "ECON", + "description": "While understanding how the macro economy behaves in the ideal, frictionless setting is indispensable; most of the interesting issues in macro arise as a consequence of some sort of friction or missing market. In this course, we will study some models based on real frictions and financial frictions. Topics covered include convex and nonconvex adjustment costs, housing markets and investment decisions, and financial crises. ", + "edges_from": [ + 1192, + 1193, + 1194 + ], + "edges_to": [], + "id": 3990, + "label": "ECON 217", + "title": "Real Frictions and Financial Frictions (4)" + }, + { + "dept": "ECON", + "description": "This course focuses on applied macroeconomics, including econometric testing of macroeconomic theories and empirical measurement guided by theoretical insights. Topics will vary from year to year depending on the latest developments in research. Students will complete the course with a broader understanding of a number of leading topics in macroeconomics as well as a toolkit of estimation and simulation programs. Recommended preparation: Econ 220D. ", + "edges_from": [ + 1192, + 1193, + 1194 + ], + "edges_to": [], + "id": 3991, + "label": "ECON 214", + "title": "Applied Macroeconomics (4)" + }, + { + "dept": "ECON", + "description": "This course focuses on theoretical models and empirical analysis aimed at understanding and directing macroeconomic policy, including monetary, fiscal, and structural policies. ", + "edges_from": [ + 1192, + 1193, + 1194 + ], + "edges_to": [], + "id": 3992, + "label": "ECON 215", + "title": "Macroeconomic Policy (4)" + }, + { + "dept": "ECON", + "description": "This course will cover numerical analysis of dynamic macroeconomic models. Topics include numerical techniques, dynamic programming, linear systems, solution algorithms, and applications to dynamic general equilibrium. ", + "edges_from": [], + "edges_to": [], + "id": 3993, + "label": "ECON 219", + "title": "Readings in Macroeconomics (4)" + }, + { + "dept": "MUS", + "description": "The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music and music humanities majors every quarter a student is a declared music major. Four units or four quarters of enrollment are required of all undergraduate ICAM music majors who choose the MUS 43. Department Seminar option for their Visitor Series requirement. P/NP grades only. May be taken for credit up to twelve times.", + "edges_from": [], + "edges_to": [], + "id": 3994, + "label": "MUS 43", + "title": "Department Seminar (1)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1C. ", + "edges_from": [ + 2696, + 2697 + ], + "edges_to": [], + "id": 3995, + "label": "Linguistics/Spanish (LISP) 1CX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "PHYS", + "description": "Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, Physics 279.", + "edges_from": [], + "edges_to": [], + "id": 3996, + "label": "PHYS 279", + "title": "Neurodynamics (4)" + }, + { + "dept": "PHYS", + "description": "Information processing by nervous system through physical reasoning and mathematical analysis. A review of the biophysics of neurons and synapses and fundamental limits to signaling by nervous systems is followed by essential aspects of the dynamics of phase coupled neuronal oscillators, the dynamics and computational capabilities of recurrent neuronal networks, and the computational capability of layered networks. Recommended preparation: a working knowledge of calculus and linear algebra.", + "edges_from": [], + "edges_to": [], + "id": 3997, + "label": "PHYS 278", + "title": "Biophysics of Neurons and Networks (4)" + }, + { + "dept": "PHYS", + "description": "This course discusses how living systems acquire information on their environment and exploit it to generate structures and perform functions. Biological sensing of concentrations, reaction-diffusion equations, the Turing mechanism, and applications of information theory to cellular transduction pathways and animal behavior will be presented. Recommended preparation: familiarity with probabilities at the level of undergraduate statistical mechanics and major cellular processes; basic knowledge of information theory.", + "edges_from": [], + "edges_to": [], + "id": 3998, + "label": "PHYS 273", + "title": "Information Theory and Pattern Formation in Biological Systems (4)" + }, + { + "dept": "Linguistics", + "description": "19. Directed Study\u2014Language (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 3999, + "label": "Linguistics (LIDS)", + "title": "" + }, + { + "dept": "PHYS", + "description": "The use of dynamic systems and nonequilibrium statistical mechanics to understand the biological cell. Topics chosen from chemotaxis as a model system, signal transduction networks and cellular information processing, mechanics of the membrane, cytoskeletal dynamics, nonlinear Calcium waves. The graduate version will include a report at the level of a research paper. May be scheduled with Physics 177. Recommended preparation: an introductory course in biology is helpful but not necessary.", + "edges_from": [], + "edges_to": [], + "id": 4000, + "label": "PHYS 277", + "title": "Physics of the Cell (4)" + }, + { + "dept": "PHYS", + "description": "A quantitative approach to gene regulation, including transcriptional and posttranscriptional control of gene expression, as well as feedback and stochastic effects in genetic circuits. These topics will be integrated into the control of bacterial growth and metabolism. Recommended preparation: an introductory course in biology is helpful but not necessary.", + "edges_from": [], + "edges_to": [], + "id": 4001, + "label": "PHYS 276", + "title": "Quantitative Molecular Biology (4)" + }, + { + "dept": "PHYS", + "description": "This course teaches how quantitative models derived from statistical physics can be used to build quantitative, intuitive understanding of biological phenomena. Case studies include ion channels, cooperative binding, gene regulation, protein folding, molecular motor dynamics, cytoskeletal assembly, and biological electricity. Recommended preparation: an introduction to statistical mechanics, at least at the level of Physics 140A or Chemistry 132.", + "edges_from": [], + "edges_to": [], + "id": 4002, + "label": "PHYS 275", + "title": "Fundamentals of Biological Physics (4)" + }, + { + "dept": "PHYS", + "description": "The course explores genetic diversity within biological populations.\u00a0Genetics fundamentals, mutation/selection equilibria, speciation, Wright-Fisher model, Kimura\u2019s neutral theory,\u00a0Luria-Delbr\u00fcck\u00a0test, the coalescent theory, evolutionary games and statistical methods for quantifying genetic observables such as SNPs, copy number variations, etc., will be discussed.\u00a0Recommended preparation: familiarity with probabilities and PDEs at the undergraduate level; an introduction to basic evolutionary processes.", + "edges_from": [], + "edges_to": [], + "id": 4003, + "label": "PHYS 274", + "title": "Stochastic Processes in Population Genetics (4)" + }, + { + "dept": "MATH", + "description": "Various topics in logic. ", + "edges_from": [], + "edges_to": [], + "id": 4004, + "label": "MATH 268", + "title": "Seminar in Logic (1)" + }, + { + "dept": "MATH", + "description": "Various topics in combinatorics. ", + "edges_from": [], + "edges_to": [], + "id": 4005, + "label": "MATH 269", + "title": "Seminar in Combinatorics (1)" + }, + { + "dept": "EDS", + "description": "121B. Foundations of Teaching and Learning Math II (4)", + "edges_from": [], + "edges_to": [], + "id": 4006, + "label": "EDS 121B/Math", + "title": "" + }, + { + "dept": "CLRE", + "description": "Students present a research-in-progress talk related to their ongoing ISP work. They will submit an institutional review board (IRB) proposal/report including a master\u2019s protocol that would be submitted to the IRB. This will consist of the data management plans including case report forms, data analysis plans, sample size calculations, and budget. Mentorship and career development topics will be discussed by guest speakers from academia and industry. ", + "edges_from": [ + 575 + ], + "edges_to": [], + "id": 4007, + "label": "CLRE 295B", + "title": "Independent Study Project (ISP) Seminar Series B (2)" + }, + { + "dept": "PSYC", + "description": "This course provides a comprehensive overview of the field of social psychology, covering a review of the field\u2019s founding principles, classic findings, and a survey of recent findings. Topics will include social perception, attributions and attitudes, stereotypies, social influence, group dynamics, and aggressive and prosocial tendencies. ", + "edges_from": [], + "edges_to": [], + "id": 4008, + "label": "PSYC 104", + "title": "Social Psychology (4)" + }, + { + "dept": "CONT", + "description": "CAMP students continue service learning in underserved local communities by working as paraprofessionals mentoring high school students to prepare for college application and attendance under the guidance of school counselors and the instructor. May be taken for credit two times. ", + "edges_from": [ + 4010 + ], + "edges_to": [], + "id": 4009, + "label": "CONT 150B", + "title": "College Academic Mentor Program Field Study (2)" + }, + { + "dept": "CONT", + "description": "", + "edges_from": [], + "edges_to": [ + 4009 + ], + "id": 4010, + "label": "CONT 150A", + "title": "" + }, + { + "dept": "SE", + "description": "in Structural Engineering (4)", + "edges_from": [], + "edges_to": [ + 4456 + ], + "id": 4011, + "label": "SE 200", + "title": "Applied Mathematics" + }, + { + "dept": "SE", + "description": "Static, dynamic, and energy-based techniques and predicting elastic stability. Linear and nonlinear analysis of classical and shear deformable beams and plates. Ritz, Galerkin, and finite element approaches for frames and reinforced shells. Nonconservative aerodynamic (divergence flutter) and follower forces. Recommended preparation: SE 101A-C and SE 110A or equivalent background in solid mechanics and structural dynamics. ", + "edges_from": [], + "edges_to": [], + "id": 4012, + "label": "SE 202", + "title": "Structural Stability (4)" + }, + { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 4013, + "label": "EDS 342A", + "title": "ASL-English" + }, + { + "dept": "SE", + "description": "Advanced analytical techniques to understand nonlinearity in mechanical vibration. Phase plane analysis instability, and bifurcations. Application in nonlinear structural resonance. Introduction to chaotic dynamics, advanced time series analysis, and using chaotic dynamics in applications such as structural damage assessment. ", + "edges_from": [ + 3796 + ], + "edges_to": [], + "id": 4014, + "label": "SE 205", + "title": "Nonlinear Mechanical Vibrations (4)" + }, + { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 4015, + "label": "EDS 342C", + "title": "ASL-English" + }, + { + "dept": "EDS", + "description": "Bilingual Education Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 4016, + "label": "EDS 342B", + "title": "ASL-English" + }, + { + "dept": "HITO", + "description": "Medieval and early modern origins of constitutional ideas and institutions. The question of the course is: Where did the ideas and institutions embodied in the constitutions of the U.S. (1787) and of France (1791) come from? Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit a more substantial piece of work.", + "edges_from": [], + "edges_to": [], + "id": 4017, + "label": "HITO 274", + "title": "The Foundations of Constitutional Law (4)" + }, + { + "dept": "LTWL", + "description": "A study of various bodies of myth: their content, form, and meaning. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4018, + "label": "LTWL 100", + "title": "Mythology (4)" + }, + { + "dept": "LTWL", + "description": "Greek and Roman literature in translation. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4019, + "label": "LTWL 106", + "title": "The Classical Tradition (4)" + }, + { + "dept": "USP", + "description": "(Same as SOCI 183.) How does where you grow up affect where you end up? This course explores \u201cwho gets what where and why,\u201d by examining spatial inequalities in life chances across regions, rural and urban communities, and divergent local economies in the U.S. We will \u201cplace\u201d places within their economic, socio-cultural, and historical contexts. Readings and exercises will uncover spatial variation in inequalities by race/ethnicity, immigrant status, gender, class, and LGBTQIA status that national averages obscure. Students may not receive credit for SOCI 183 and USP 183. ", + "edges_from": [], + "edges_to": [], + "id": 4020, + "label": "USP 183", + "title": "The Geography of American Opportunity (4)" + }, + { + "dept": "USP", + "description": "Introduction to the history and current state of urban transportation planning, including the relationship between transportation and urban form; role of automotive, mass transit, and alternative modes; methods for transportation systems analysis; decision-making, regulatory, and financing mechanisms; and public attitudes. ", + "edges_from": [], + "edges_to": [], + "id": 4021, + "label": "USP 180", + "title": "Transportation Planning (4)" + }, + { + "dept": "USP", + "description": "Livable cities rely on balanced transportation systems that can mitigate the negative impacts of car-oriented environment and society. This course will explore the role of public transit in creating a balanced transportation system. A variety of public transportation systems will be analyzed. ", + "edges_from": [], + "edges_to": [], + "id": 4022, + "label": "USP 181", + "title": "Public Transportation (4)" + }, + { + "dept": "USP", + "description": "An undergraduate course designed to cover various aspects of Urban Planning. May be taken for credit up to two times. ", + "edges_from": [], + "edges_to": [], + "id": 4023, + "label": "USP 189", + "title": "Special Topics in Urban Planning (4)" + }, + { + "dept": "ANTH", + "description": "Students writing their dissertations present work-in-progress and receive structured peer and mentor feedback. Supervising or coparticipating faculty lead workshops about doctoral completion, publication, and other professionalization processes. S/U grades only. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 4024, + "label": "ANTH 254", + "title": "Dissertation Practicum (4)" + }, + { + "dept": "ANTH", + "description": "This course explores the nature of human social systems over the long term. Returning to the original project of anthropology in the broadest sense, we examine the origins and reproduction of the state, social classes, multiethnic configurations, and political economies. ", + "edges_from": [], + "edges_to": [], + "id": 4025, + "label": "ANTH 255", + "title": "Understanding the Human Social Order (4)" + }, + { + "dept": "ANTH", + "description": "We will review the neural basis of cognition in humans and other primates. Neurobiological findings will be related to contributions from various subfields of anthropology. Brain/mind associations will be explored in the context of hominid evolution. ", + "edges_from": [ + 4027 + ], + "edges_to": [], + "id": 4026, + "label": "ANTH 256", + "title": "Seminar on Brain Evolution\u00a0(4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4026 + ], + "id": 4027, + "label": "ANGR 256", + "title": "" + }, + { + "dept": "ANTH", + "description": "This seminar critically examines social, cultural, and psychological theories of the person, and their relationship to conceptions of the person found in moral political and religious discourses. It explores the role of concepts of the person in ethnographic research. Formerly known as ANGR 257. ", + "edges_from": [], + "edges_to": [], + "id": 4028, + "label": "ANTH 257", + "title": "Mind, Self, and Identity (4)" + }, + { + "dept": "ANTH", + "description": "This graduate seminar will explore the theories and critiques of the contemporary human rights framework, through history and ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 4029, + "label": "ANTH 250", + "title": "The Anthropology of Human Rights (4)" + }, + { + "dept": "ANTH", + "description": "How is the idea of modernity experienced in diverse cultural and historical settings? This seminar focuses on ethnographic representations of modernity, exploring such topics as globalization, mass media, consumerism, gender and modernity, modern religious movements, and theories of modernity. ", + "edges_from": [], + "edges_to": [], + "id": 4030, + "label": "ANTH 251", + "title": "The Ethnography of Modernity (4)" + }, + { + "dept": "ANTH", + "description": "This seminar will consider the theoretical constructions and deployments of neoliberalism, which has produced an assemblage of capitalist restructuring, transformed governance, and newly produced subjectivities. ", + "edges_from": [], + "edges_to": [], + "id": 4031, + "label": "ANTH 252", + "title": "Interrogating Neoliberalism (4)" + }, + { + "dept": "ANTH", + "description": "This course pulls on classical Western social theory as well as recent ethnographies to examine the role of sympathetic engagement in liberal governance. We also interrogate the role anthropology has played as liberalism\u2019s witness in this regard. ", + "edges_from": [], + "edges_to": [], + "id": 4032, + "label": "ANTH 253", + "title": "Who Cares? Sympathy and the Conduct of Liberalism (4)" + }, + { + "dept": "ANTH", + "description": "Specialized scientific techniques are increasingly important to archaeology. This seminar examines chronometric date techniques, site-formation processes, and geoarchaeology and pedology, chemical analyses of soils, zooarchaeology, palaeoethnobotany, and how land-use strategies can be inferred from archaeological remains. ", + "edges_from": [ + 4034 + ], + "edges_to": [], + "id": 4033, + "label": "ANTH 258", + "title": "Analytical Methods in Archaeology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4033 + ], + "id": 4034, + "label": "ANGR 258", + "title": "" + }, + { + "dept": "ANTH", + "description": "This seminar in psychological/psychiatric anthropology takes a comparative approach to the study of gender and mental health. Culture and feminist theory is employed to address questions of gender in relation to various problems, such as depression, anxiety, and eating disorders. ", + "edges_from": [], + "edges_to": [], + "id": 4035, + "label": "ANTH 259", + "title": "Gender and Mental Health (4)" + }, + { + "dept": "NEU", + "description": "Independent clinical study for medical students (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 4036, + "label": "NEU 496", + "title": "Clinical Independent Study (1\u201321)" + }, + { + "dept": "HIUS", + "description": "103. The American City in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 4037, + "label": "HIUS 148/USP", + "title": "" + }, + { + "dept": "MSED", + "description": "Students will do independent study and research in preparation of their doctoral dissertation under the supervision of MSED faculty.", + "edges_from": [], + "edges_to": [], + "id": 4038, + "label": "MSED 299", + "title": "Reading and Research (1\u201312)" + }, + { + "dept": "CHEM", + "description": "Independent literature or laboratory research", + "edges_from": [], + "edges_to": [], + "id": 4039, + "label": "CHEM 99", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "POLI", + "description": "An introduction to Marxist thought from its roots in the Western tradition through its development in non-Western contexts. Emphasis is placed on how adaptations were made in Marxism to accommodate the specific challenges of each environment.", + "edges_from": [], + "edges_to": [], + "id": 4040, + "label": "POLI 114B", + "title": "Marxist Political Thought (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with EDS 31.) Explores routine challenges and exceptional", + "edges_from": [], + "edges_to": [], + "id": 4041, + "label": "CHEM 96", + "title": "Introduction to Teaching Science (2)" + }, + { + "dept": "POLI", + "description": "Guided and supervised reading in the literature of the several fields of political science.", + "edges_from": [], + "edges_to": [], + "id": 4042, + "label": "POLI 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "TDGR", + "description": "A seminar focusing on the current directing projects of all graduate directing students. Depending upon individual student needs, the work may include play selection, historical or sociological research, and discussion of emerging directorial concepts, the rehearsal process, and post-production evaluation. ", + "edges_from": [], + "edges_to": [], + "id": 4043, + "label": "TDGR 240", + "title": "Directing Seminar (1\u20136)" + }, + { + "dept": "TDGR", + "description": "Lab (4)", + "edges_from": [], + "edges_to": [], + "id": 4044, + "label": "TDGR 243", + "title": "Director/Playwright/Choreographer" + }, + { + "dept": "TDGR", + "description": "Students enrolled in this course will work on productions in the function of a director. This will include staging, creative interpretation, blocking, etc. ", + "edges_from": [], + "edges_to": [], + "id": 4045, + "label": "TDGR 245", + "title": "Directing Practicum (4)" + }, + { + "dept": "TDGR", + "description": "A course where playwrights and actors work together to develop", + "edges_from": [], + "edges_to": [], + "id": 4046, + "label": "TDGR 244", + "title": "New Plays Workshop (2)" + }, + { + "dept": "HIEU", + "description": "Language and cultural study in Italy. Course considers the social, political, economic, and religious aspects of civic life that gave rise to the unique civic art, the architecture of public buildings, and the design of the urban environment of such cities as Florence, Venice, or Rome. Course materials fee may be required. Students may not receive credit for both HIEU 124 and HIEU 124GS. Students must apply and be accepted into the Global Seminar Program.", + "edges_from": [], + "edges_to": [], + "id": 4047, + "label": "HIEU 124GS", + "title": "The City Italy (4)" + }, + { + "dept": "ANSC", + "description": "This course explores contemporary cultural life in South Asia by examining selected works of literature, film, and ethnography. ", + "edges_from": [], + "edges_to": [], + "id": 4048, + "label": "ANSC 165", + "title": "Contemporary South Asia (4)" + }, + { + "dept": "ANSC", + "description": "Explores films from China, India, Japan and other Asian countries. Popular, documentary, and ethnographic films are examined for what they reveal about family life, gender, politics, religion, social change and everyday experience in South Asia. ", + "edges_from": [], + "edges_to": [], + "id": 4049, + "label": "ANSC 166", + "title": "Film and Culture in Asia (4)" + }, + { + "dept": "ANSC", + "description": "This course examines the use of language difference in negotiating identity in bilingual and bidialectal communities, and in structuring interethnic relations. It addresses social tensions around language variation and the social significance of language choices in several societies. ", + "edges_from": [], + "edges_to": [], + "id": 4050, + "label": "ANSC 162", + "title": "Language, Identity, and Community (4)" + }, + { + "dept": "ANSC", + "description": "This course explores experiences of the human life cycle\u2014birth, death, love, family relations, coming of age, suffering, the quest for identity, the need for meaning\u2014from diverse cultural perspectives. Examines anthropological thought concerning what it means to be human. ", + "edges_from": [], + "edges_to": [], + "id": 4051, + "label": "ANSC 168", + "title": "The Human Condition (4)" + }, + { + "dept": "ANSC", + "description": "Examines the role of culture in the way people perceive and interact with the natural environment. Combines reading of select anthropological studies with training in ethnographic research methods. Students develop a research project and analyze data. Limit: fifteen students. ", + "edges_from": [], + "edges_to": [], + "id": 4052, + "label": "ANSC 169", + "title": "Culture and Environment: Research Seminar and Practicum (4)" + }, + { + "dept": "HIGR", + "description": "Scholarship on European History, 1715\u20131850 (4)", + "edges_from": [], + "edges_to": [], + "id": 4053, + "label": "HIGR 221", + "title": "Historical" + }, + { + "dept": "COGS", + "description": "This course is designed for students interested in learning about basic tools and technologies for dealing with big image data in the sense of collecting, crawling, processing, and classifying images, focusing on matching, hashing, deep learning, and online learning.", + "edges_from": [], + "edges_to": [], + "id": 4054, + "label": "COGS 283", + "title": "Big Visual Data Processing (4)" + }, + { + "dept": "HIGR", + "description": "An introduction to the historiography and major debates in modern German history from the Wilhelmine period to the present. Readings and discussion focus on the critical evaluation of sources, methodologies, and shifting interpretations of Germany\u2019s volatile transition to modernity.", + "edges_from": [], + "edges_to": [], + "id": 4055, + "label": "HIGR 224", + "title": "Readings in Twentieth-Century German History (4)" + }, + { + "dept": "TDGR", + "description": "Professional Preparation for the Actor (4)", + "edges_from": [], + "edges_to": [], + "id": 4056, + "label": "TDGR 231A", + "title": "" + }, + { + "dept": "Linguistics/Portuguese", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in Portuguese. Must be taken in conjunction with LIPO 1D. Successful completion of LIPO 1D and LIPO 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 2130, + 2131 + ], + "edges_to": [], + "id": 4057, + "label": "Linguistics/Portuguese (LIPO) 1DX", + "title": "Analysis of Portuguese (2.5)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4058, + "label": "CSE 291", + "title": "Topics" + }, + { + "dept": "LIGN", + "description": "A forum for discussion of current issues. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 4059, + "label": "LIGN 200", + "title": "Research Forum (2)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in topology. Topics include generalized cohomology theory, spectral sequences, K-theory, homotophy theory. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 4061 + ], + "edges_to": [], + "id": 4060, + "label": "MATH 291B", + "title": "Further Topics in Topology (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 4060 + ], + "id": 4061, + "label": "MATH 291A", + "title": "" + }, + { + "dept": "GPPS", + "description": "This course will analyze post-1949 Chinese politics, including political institutions, the policy-making process, and citizen political behavior. Special attention will be given to the prospects for political reform in China. Renumbered from IRGN 261. Students may not receive credit for GPPS 204 and IRGN 261. May be coscheduled with GPPS 404.", + "edges_from": [], + "edges_to": [], + "id": 4062, + "label": "GPPS 204", + "title": "Chinese Politics (4)" + }, + { + "dept": "BGGN", + "description": "This course covers graduate level lectures on developmental biology, emphasizing the use of genetically tractable model systems. Discussion of recent research articles is an integral aspect of this course. Students are introduced to classical experiments and given detailed coverage of recent fundamental findings in developmental biology. ", + "edges_from": [], + "edges_to": [], + "id": 4063, + "label": "BGGN 228", + "title": "Graduate Developmental Biology (4)" + }, + { + "dept": "BGGN", + "description": "This course consists of a review of fundamental concepts together with an in-depth analysis of the structure, genetics, multiplication and oncogenicity of animal viruses. Particular emphasis will be given to the DNA and RNA tumor viruses. The format of this section includes lectures and discussion of selected papers. ", + "edges_from": [], + "edges_to": [], + "id": 4064, + "label": "BGGN 226", + "title": "Graduate Animal Virology (4)" + }, + { + "dept": "BGGN", + "description": "The course is devoted to immunology and is organized as a combined lecture-tutorial course stressing classical as well as current literature. Each week will compose an independent section. Topics will include cellular interactions involved in the immune response and the molecular biology unique to lymphoid factor and receptors. ", + "edges_from": [], + "edges_to": [], + "id": 4065, + "label": "BGGN 225", + "title": "Graduate Immunology (4)" + }, + { + "dept": "BGGN", + "description": "Coverage of modern cell biology. Topics may include structure and function of membranes; ion pumps, ion channels, transmembrane signaling; receptor-mediated endocytosis; protein targeting; the role of RER and Golgi apparatus; the biosynthesis of intracellular organelles in animal and plant cells; the cytoskeleton, motility, molecular motors, and cell-cell interactions; mitosis and the control of cell division; and cell-signaling mechanisms and discussions on molecular approaches to cell biology. ", + "edges_from": [ + 2060, + 2061, + 2062 + ], + "edges_to": [ + 1032 + ], + "id": 4066, + "label": "BGGN 222", + "title": "Graduate Cell Biology (6)" + }, + { + "dept": "BGGN", + "description": "Provides a broad, advanced-level coverage of modern molecular biology for first-year graduate students. Topics include prokaryotic and eukaryotic gene structure and regulation, chromatin structure, DNA replication, translation, mechanisms of transcription, and an introduction to viruses. Open only to students enrolled in a graduate degree program. Letter grades only.", + "edges_from": [], + "edges_to": [], + "id": 4067, + "label": "BGGN 220", + "title": "Graduate Molecular Biology (6)" + }, + { + "dept": "CHIN", + "description": "and Trade (4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 4068, + "label": "CHIN 186A-B-C", + "title": "Readings in Chinese Economics, Politics," + }, + { + "dept": "BIPN", + "description": "Normal function and diseases of the major hormone systems of the body including the hypothalamus/pituitary axis, the thyroid gland, reproduction and sexual development, metabolism and the pancreas, bone and calcium metabolism, and the adrenal glands. Students may not receive credit for both BIPN 120 and BICD 150. ", + "edges_from": [ + 588 + ], + "edges_to": [], + "id": 4069, + "label": "BIPN 120", + "title": "Endocrinology (4)" + }, + { + "dept": "ECE", + "description": "Topics include how devices such as iPods and iPhones generate, transmit, receive and process information (music, images, video, etc.), the relationship between technology and issues such as privacy and \u201cnet-neutrality,\u201d and current topics related to information technology. ", + "edges_from": [], + "edges_to": [], + "id": 4070, + "label": "ECE 85", + "title": "iTunes 101: A Survey of Information Technology (4)" + }, + { + "dept": "COMM", + "description": "Contributions of the field of communication to the study of surveillance and risk. Critical and legal perspectives on consumer research, copyright enforcement, the surveillance capacity of Information and Communication Technologies (ICTs), closed-circuit television, interactive media, and the \u201crhetorics of surveillance\u201d in television and film. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4071, + "label": "COMM 166", + "title": "Surveillance, Media, and the Risk Society (4)" + }, + { + "dept": "COMM", + "description": "This course aims to unveil the vast and largely hidden infrastructures silently shaping how digital communication take place in contemporary societies as well as the visible and invisible geographic of power and inequality these infrastructures are helping to create. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4072, + "label": "COMM 164", + "title": "Behind the Internet: Invisible Geographies of Power and Inequality (4)" + }, + { + "dept": "COMM", + "description": "This course examines some of the changing cultural, social, technological, and political meanings; practices; and aspirations that together constitute what is and has been called freedom. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4073, + "label": "COMM 163", + "title": "Concepts of Freedom (4)" + }, + { + "dept": "COMM", + "description": "We examine how people interact with products of popular culture, production of cultural goods by looking at conditions in cultural industries. We examine film, music, publishing, focusing on how production is organized, what kind of working conditions arise, how products are distributed. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4074, + "label": "COMM 162", + "title": "Advanced Studies in Cultural Industries (4)" + }, + { + "dept": "COMM", + "description": "The character and forms of international communications. Emerging structures of international communications. The United States as the foremost international communicator. Differential impacts of the free flow of information and the unequal roles and needs of developed and developing economies in international communications. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4075, + "label": "COMM 160", + "title": "Political Economy and International Communication (4)" + }, + { + "dept": "COMM", + "description": "The relationship between small groups and dominant culture is studied by exploring the world of deaf people who have for the past twenty years begun to speak as a cultural group. Issues of language, communication, self-representation, and social structure are examined. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4076, + "label": "COMM 169", + "title": "Deaf Culture in the U.S. (4)" + }, + { + "dept": "COMM", + "description": "This course is designed to introduce students to multiple settings where bilingualism is the mode of communication. Examination of how such settings are socially constructed and culturally based. Language policy, bilingual education, and linguistic minorities, as well as field activities included. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4077, + "label": "COMM 168", + "title": "Bilingual Communication (4)" + }, + { + "dept": "CHEM", + "description": "A continuation of the discussion of structure, bonding, and reactivity with emphasis on transition metals and other elements using filled d orbitals to form bonds. Coordination chemistry in terms of valence bond, crystal field, and molecular orbital theory. The properties and reactivities of transition metal complexes including organometallic compounds. ", + "edges_from": [ + 2550 + ], + "edges_to": [], + "id": 4078, + "label": "CHEM 120B", + "title": "Inorganic Chemistry II (4)" + }, + { + "dept": "CSE", + "description": "Theoretical foundations of machine learning. Topics include concentration of measure, the PAC model, uniform convergence bounds, and VC dimension. Possible topics include online learning, learning with expert advice, multiarmed bandits, and boosting. Recommended preparation: CSE 103 and CSE 101 or similar course. ", + "edges_from": [], + "edges_to": [], + "id": 4079, + "label": "CSE 250C", + "title": "Machine Learning Theory (4)" + }, + { + "dept": "CSE", + "description": "Methods based on probability theory for reasoning and learning under uncertainty. Content may include directed and undirected probabilistic graphical models, exact and approximate inference, latent variables, expectation-maximization, hidden Markov models, Markov decision processes, applications to vision, robotics, speech, and/or text. Recommended preparation: CSE 103 or similar course. ", + "edges_from": [], + "edges_to": [], + "id": 4080, + "label": "CSE 250A", + "title": "Principles of Artificial Intelligence: Probabilistic Reasoning and Learning (4)" + }, + { + "dept": "ANAR", + "description": "Our campus houses some of the earliest human settlements in North America. This course reviews the archaeology, climate, and environment of the sites and outlines research aimed at understanding the lives of these early peoples. ", + "edges_from": [], + "edges_to": [], + "id": 4081, + "label": "ANAR 118", + "title": "Archaeology of the UC San Diego Campus (4)" + }, + { + "dept": "ANAR", + "description": "This course provides students with a broad understanding of the most current sea level change research that has been conducted around the globe. Students will be introduced to the general terminology used in this field, coastal shallow marine and deep sea sea-level indicators, and their degree of uncertainty, along with corresponding dating methods. An emphasis will be given to sea-level studies conducted in Israel and neighboring lands. ", + "edges_from": [], + "edges_to": [], + "id": 4082, + "label": "ANAR 116", + "title": "Sea Level Change\u2014The Israel Case in World Perspective (4)" + }, + { + "dept": "ANAR", + "description": "The archaeological field and laboratory class will take place in the field in San Diego or adjacent counties. This course is a hands-on introduction to the research design of interdisciplinary archaeological projects and techniques of data collection, including survey, excavation, or laboratory analysis. May be taken for credit up to two times. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4083, + "label": "ANAR 117", + "title": "Archaeological Field and Lab Class, Southern California (4)" + }, + { + "dept": "ANAR", + "description": "Israel, like California, is located on a complex tectonic boundary, which is responsible for a history of earthquakes, volcanism, and tsunamis. How great is the risk today and what will be the regional impact of a major earthquake? We will try to answer these questions by understanding the basic geology of Israel and reviewing the history of natural disasters as recorded by archaeology and historical documentation. ", + "edges_from": [], + "edges_to": [], + "id": 4084, + "label": "ANAR 114", + "title": "Environmental Hazards in Israel (4)" + }, + { + "dept": "ANAR", + "description": "Students will develop a broad understanding of the morphological features that are identified in coastal systems, and the short- and long-term processes that shape them through time. Students will become familiar with terminology, approaches, and methodologies used in coastal geomorphological research, which are relevant for today\u2019s study of climate and environmental change, with a focus on coastal sedimentary environments and an emphasis on the coast of Israel from ancient times until today. ", + "edges_from": [], + "edges_to": [], + "id": 4085, + "label": "ANAR 115", + "title": "Coastal Geomorphology and Environmental Change\u2014Perspectives from Israel and the South-Eastern Mediterranean (4)" + }, + { + "dept": "SIO", + "description": "295LS. Introduction to Marine Biodiversity and Conservation\u2014Lab (8)", + "edges_from": [], + "edges_to": [], + "id": 4086, + "label": "SIO", + "title": "" + }, + { + "dept": "ANAR", + "description": "As part of the broad discipline of anthropology, archaeology provides the long chronological record needed for investigating human and social evolution. The theories and methods used in this field are examined. (Archaeology core sequence course.) Recommended preparation: ANTH 3. ", + "edges_from": [], + "edges_to": [], + "id": 4087, + "label": "ANAR 111", + "title": "Foundations of Archaeology (4)" + }, + { + "dept": "LTCS", + "description": "and Historical Analysis of Cultural Texts (4)", + "edges_from": [], + "edges_to": [], + "id": 4088, + "label": "LTCS 225", + "title": "Interdisciplinary" + }, + { + "dept": "LTCS", + "description": "This course will consider various theoretical approaches to film texts (historical-materialist, feminist, psychoanalytic, semiotic) as well as the history of film, the political economy of film production and distribution, exhibition practices, and spectatorship in national and transnational contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4089, + "label": "LTCS 222", + "title": "Topics in Theory and History of Film (4)" + }, + { + "dept": "COGR", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287. ", + "edges_from": [], + "edges_to": [], + "id": 4090, + "label": "COGR 285", + "title": "Ethnography Practicum (4)" + }, + { + "dept": "EDS", + "description": "This course series is for undergraduates who are exploring a career in elementary school teaching. Topics addressed include: theories of teaching and learning; research on cognition and motivation; and the cultural context of classroom teaching and learning. EDS 128A focuses on the learner in the teaching-learning interaction and EDS 128B focuses on the teacher in the teaching-learning interaction. ", + "edges_from": [ + 1890, + 4092, + 4093, + 4094, + 1895 + ], + "edges_to": [], + "id": 4091, + "label": "EDS 128 A-B", + "title": "Introduction to Teaching and Learning (Elementary) (4-4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4091 + ], + "id": 4092, + "label": "EDS 128A", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 5048, + 5049, + 4091 + ], + "id": 4093, + "label": "EDS 134", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4091 + ], + "id": 4094, + "label": "EDS 128B", + "title": "" + }, + { + "dept": "CHEM", + "description": "A survey of inorganic chemistry to prepare for graduate research in the field, including a detailed introduction to nuclear magnetic resonance (NMR), followed by applications of NMR to structural and mechanistic problems in inorganic chemistry.", + "edges_from": [], + "edges_to": [], + "id": 4095, + "label": "CHEM 262", + "title": "Inorganic Chemistry and NMR (4)" + }, + { + "dept": "GPPA", + "description": "Course on the challenges of improving cyber security in the United States and globally. Topics to include the technical challenges involving cyber security, an understanding of the range of threats, fundamental problems of designing prudent national policies that are politically feasible, and the possibilities and limitations regarding the designing of prudent cooperative strategies. Renumbered from IRGN 477. Students may not receive credit for GPPA 477 and IRGN 477.", + "edges_from": [], + "edges_to": [], + "id": 4096, + "label": "GPPA 477", + "title": "Cyber Security (4)" + }, + { + "dept": "CHEM", + "description": "Students will review basic principles of light and electron", + "edges_from": [], + "edges_to": [], + "id": 4097, + "label": "CHEM 260", + "title": "Light and Electron Microscopy of Cells and Tissue (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BGGN", + "edges_from": [], + "edges_to": [], + "id": 4098, + "label": "CHEM 265", + "title": "3D Electron Microscopy of Macromolecules (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with BGGN 264.) An introduction of virus structures,", + "edges_from": [], + "edges_to": [], + "id": 4099, + "label": "CHEM 264", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "HIUS", + "description": "Examine the development of apocalyptic Jewish movements in the Second Temple period and the influence these movements had on Rabbinic Judaism and early Christianity.", + "edges_from": [], + "edges_to": [], + "id": 4100, + "label": "HIUS 106S", + "title": "Apocalyptic Judaism (4)" + }, + { + "dept": "GPCO", + "description": "The course introduces the theory and application of econometric regression for policy analysis. Students will learn the underlying mathematical formalism, basic data management and coding skills, and appropriate interpretation and meaningful presentation of results. Renumbered from IRCO 454. Students may not receive credit for GPCO 454 and IRCO 454. ", + "edges_from": [], + "edges_to": [ + 5256, + 5257, + 940, + 4789 + ], + "id": 4101, + "label": "GPCO 454", + "title": "Quantitative Methods II (4)" + }, + { + "dept": "HIUS", + "description": "American Foreign Relations, since 1900 (4)", + "edges_from": [], + "edges_to": [], + "id": 4102, + "label": "HIUS 106B", + "title": "" + }, + { + "dept": "HIUS", + "description": "Course examines range of public and private interactions between the United States and the world, from the founding of the republic to the Spanish-American War. Topics include origins of federal foreign policy making power, territorial and commercial and ideological expansionism.", + "edges_from": [], + "edges_to": [], + "id": 4103, + "label": "HIUS 106A", + "title": "American Foreign Relations, to 1900 (4)" + }, + { + "dept": "POLI", + "description": "Examination of effects of national policies and international collaboration on public and private international financial institutions, in particular the management of international debt crises, economic policy coordination, and the role of international lender of last resort.", + "edges_from": [], + "edges_to": [], + "id": 4104, + "label": "POLI 144D", + "title": "International Political Economy: Money and Finance (4)" + }, + { + "dept": "POLI", + "description": "Examines theories of trade and protectionism, focusing both on relations among advanced industrial nations and on relations between developed and developing countries. Topics include standard and strategic trade theory, nontariff barriers to trade, export-led growth strategies, regional trade agreements, and the future of the WTO.", + "edges_from": [], + "edges_to": [], + "id": 4105, + "label": "POLI 144E", + "title": "The Politics of International Trade (4)" + }, + { + "dept": "POLI", + "description": "of International Trade and Finance (4)", + "edges_from": [], + "edges_to": [], + "id": 4106, + "label": "POLI 144F", + "title": "The Politics" + }, + { + "dept": "10A-B-C", + "description": "(No prior study of Japanese language is required for 10A.) Prerequisites", + "edges_from": [], + "edges_to": [], + "id": 4107, + "label": "10A-B-C", + "title": "First-Year Japanese" + }, + { + "dept": "LTEN", + "description": "The study of writing produced over an extended period of time by members of an identifiable cultural formation as defined (e.g., by political/social ideology, class, religion, ethnicity, or sexual preference). May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4108, + "label": "LTEN 272", + "title": "Cultural Traditions in English (4)" + }, + { + "dept": "LTEN", + "description": "Consideration of one or more genres present in English and/or American literature; for instance, the ballad, landscape poetry, comedy, satire, the familiar essay. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4109, + "label": "LTEN 271", + "title": "Genres in English (4)" + }, + { + "dept": "TDGR", + "description": "Voice exercises designed", + "edges_from": [], + "edges_to": [], + "id": 4110, + "label": "TDGR 214C", + "title": "Voice for Theatre I\u2014Part III (3)" + }, + { + "dept": "TDGR", + "description": "II\u2014Part I (3)", + "edges_from": [], + "edges_to": [], + "id": 4111, + "label": "TDGR 214B", + "title": "Voice for Theatre" + }, + { + "dept": "TDGR", + "description": "Voice exercises designed to \u201cfree the voice\u201d with emphasis", + "edges_from": [], + "edges_to": [], + "id": 4112, + "label": "TDGR 214A", + "title": "Voice for Theatre I\u2014Part I (3)" + }, + { + "dept": "BIOM", + "description": "Molecular and cellular mechanisms underlie the actions of environmental toxicants. This course will investigate approaches to study the impact of environmental toxicants on human health. Other modern approaches that are being implemented to detect and remediate environmental toxicants will also be examined. BGGN 256, BIOM 266 and Chem 266 students will be required to complete an additional paper and/or exam beyond that expected of students in Chem 166 and BIMM 166. ", + "edges_from": [ + 1514, + 1516, + 589, + 240, + 4114, + 4115 + ], + "edges_to": [], + "id": 4113, + "label": "BIOM 266", + "title": "Environmental and Molecular Toxicology (4)" + }, + { + "dept": "BIMM", + "description": "", + "edges_from": [], + "edges_to": [ + 4113 + ], + "id": 4114, + "label": "BIMM 166", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 4113 + ], + "id": 4115, + "label": "CHEM 166", + "title": "" + }, + { + "dept": "Math", + "description": "", + "edges_from": [], + "edges_to": [ + 171, + 420 + ], + "id": 4116, + "label": "Math Level 2", + "title": "" + }, + { + "dept": "CSE", + "description": "Introduces the concepts and skills necessary to effectively use information technology. Includes basic concepts and some practical skills with computer and networks. ", + "edges_from": [], + "edges_to": [], + "id": 4117, + "label": "CSE 3", + "title": "Fluency in Information Technology (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120A. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120A or after successful completion of Econ 120A with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 4118, + "label": "ECON 120AH", + "title": "Honors Econometrics A (1)" + }, + { + "dept": "SE", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 4119, + "label": "SE 168", + "title": "Structural System Testing and Model Correlation" + }, + { + "dept": "VIS", + "description": "Students develop artworks and performances in current virtual environments. Projects may be done individually or in groups in multiplayer games, immersive life platforms, or mixed reality projects and performances. Exploration of theoretical issues involved will underlie acquisition of techniques utilized in the construction of virtual environments. Materials fees required. ", + "edges_from": [ + 1226, + 3843 + ], + "edges_to": [], + "id": 4120, + "label": "VIS 143", + "title": "Virtual Environments (4)" + }, + { + "dept": "VIS", + "description": "Artistic practice is a site of critical intervention. Through individual \u201cPractice Diagrams,\u201d students will visualize the issues, motivations, positions, and procedures that inspire and problematize their work, seeking to discover and mobilize new tools, spaces of research, and media experimentation. ", + "edges_from": [], + "edges_to": [], + "id": 4121, + "label": "VIS 148", + "title": "Visualizing Art Practice (4)" + }, + { + "dept": "MATH", + "description": "Second course in linear algebra from a computational yet geometric point", + "edges_from": [], + "edges_to": [], + "id": 4122, + "label": "MATH 102", + "title": "Applied Linear Algebra (4)" + }, + { + "dept": "Soc/G", + "description": "Issues in the Sociology of Knowledge (4)", + "edges_from": [], + "edges_to": [], + "id": 4123, + "label": "Soc/G 232", + "title": "Advanced" + }, + { + "dept": "Soc/G", + "description": "Foundation of the Study of Science, Technology, and Medicine (4)", + "edges_from": [], + "edges_to": [], + "id": 4124, + "label": "Soc/G 234", + "title": "Intellectual" + }, + { + "dept": "Soc/G", + "description": "of the Sociology of Scientific Knowledge (4)", + "edges_from": [], + "edges_to": [], + "id": 4125, + "label": "Soc/G 238", + "title": "Survey" + }, + { + "dept": "ECE", + "description": "Introduction to pattern recognition and machine", + "edges_from": [], + "edges_to": [ + 4127 + ], + "id": 4126, + "label": "ECE 175A", + "title": "Elements of Machine Intelligence: Pattern Recognition and Machine Learning (4)" + }, + { + "dept": "ECE", + "description": "Bayes\u2019 rule as a probabilistic reasoning engine; graphical models as knowledge encoders; conditional independence and D-Separation; Markov random fields; inference in graphical models; sampling methods and Markov Chain Monte Carlo (MCMC); sequential data and the Viterbi and BCJR algorithms; The Baum-Welsh algorithm for Markov Chain parameter estimation. ", + "edges_from": [ + 4126 + ], + "edges_to": [], + "id": 4127, + "label": "ECE 175B", + "title": "Elements of Machine Intelligence: Probabilistic Reasoning and Graphical Models (4)" + }, + { + "dept": "COGS", + "description": "(Cross-listed", + "edges_from": [], + "edges_to": [], + "id": 4128, + "label": "COGS 279", + "title": "Electrophysiology of Cognition (4)" + }, + { + "dept": "COGS", + "description": "Evidence for the heritability and for the association of genetic variants with behavioral and neural phenotypes will be reviewed. Integrative models of gene-environment interaction will be discussed. Guest faculty will describe their own work in this area.", + "edges_from": [], + "edges_to": [], + "id": 4129, + "label": "COGS 278", + "title": "Genetics and Individuality (4)" + }, + { + "dept": "COGS", + "description": "The discovery of mirror neurons in the monkey brain raised the possibility that \u201cmirroring\u201d constitutes instances of mental simulation. In this seminar, we will examine the neural basis of social cognition and specifically the relationship between mirroring processes and cognition.", + "edges_from": [], + "edges_to": [], + "id": 4130, + "label": "COGS 277", + "title": "Mirroring in Social Cognition (4)" + }, + { + "dept": "VIS", + "description": "Art after abstract expressionism: happenings, postpainterly abstraction, minimalism, performance, earth art, conceptual art, neo-expressionism, postconceptualism and development in the 1990s, including non-Western contexts. We also explore the relation of these tendencies to postmodernism, feminism, and ideas of postcoloniality. Recommended preparation: VIS 20 or 22 recommended. ", + "edges_from": [], + "edges_to": [], + "id": 4131, + "label": "VIS 125BN", + "title": "Contemporary Art (4)" + }, + { + "dept": "PHYS", + "description": "A project-oriented laboratory course in which students are guided to develop their own ideas and tools, along with using state-of-art instruments to investigate a biological problem of current interest, under the direction of a faculty member. A range of current topics in quantitative biology is available, including microbiology, molecular and cell biology, developmental biology, synthetic biology, and evolution. This course may be repeated up to ten times for credit as long as the student works on a different project. ", + "edges_from": [ + 3938 + ], + "edges_to": [], + "id": 4132, + "label": "PHYS 270B", + "title": "Quantitative Biology Laboratory (4)" + }, + { + "dept": "HITO", + "description": "Explore contrasts and parallels between African Americans and Jews from the seventeenth century to the present. Investigate slavery, the Civil War, shared music, political movements, urban geography, and longings to return to a homeland in Africa or Palestine.", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4133, + "label": "HITO 136", + "title": "Jews and African Americans:\u00a0Slavery, Diaspora, Ghetto (4)" + }, + { + "dept": "HITO", + "description": "Law\u2014War Crimes and Genocide (4)", + "edges_from": [], + "edges_to": [], + "id": 4134, + "label": "HITO 134", + "title": "International" + }, + { + "dept": "HITO", + "description": "An examination of the Second World War in Europe, Asia, and the United States. Focus will be on the domestic impact of the war on the belligerent countries as well as on the experiences of ordinary soldiers and civilians.", + "edges_from": [], + "edges_to": [], + "id": 4135, + "label": "HITO 133", + "title": "War and Society: The Second World War (4)" + }, + { + "dept": "ECON", + "description": "Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ", + "edges_from": [], + "edges_to": [], + "id": 4136, + "label": "ECON 191A", + "title": "Senior Essay Seminar A (4)" + }, + { + "dept": "ECON", + "description": "Senior essay seminar for students with superior records in department majors. Students must complete Econ 191A and Econ 191B in consecutive quarters. ", + "edges_from": [], + "edges_to": [], + "id": 4137, + "label": "ECON 191B", + "title": "Senior Essay Seminar B (4)" + }, + { + "dept": "BGGN", + "description": "Through analysis of issues related to student learning, teaching practices, and equity and inclusion in the classroom, students will develop philosophies and scholarship of teaching as they advance in apprentice teaching under mentorship of faculty. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4138, + "label": "BGGN 504", + "title": "Scholarship of Teaching and Learning in Biological Sciences (1)" + }, + { + "dept": "BGGN", + "description": "Students will explore selected areas of research on the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. Students will apply their understanding of this research through apprentice teaching under mentorship of faculty. Course restricted to Division of Biological Sciences doctoral students as part of the practical training in college teaching. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4139, + "label": "BGGN 502", + "title": "Evidence-Based Teaching and Learning in Biological Sciences (1)" + }, + { + "dept": "BGGN", + "description": "Through interactive discussions, students will explore topics such as how people learn, evidence-based teaching practices, professional ethics, and equity and inclusion in the classroom. Students will also participate in apprentice teaching under mentorship of faculty. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4140, + "label": "BGGN 500", + "title": "Introduction to College Biology Education (4)" + }, + { + "dept": "ANTH", + "description": "Continuation of seminars held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4141, + "label": "ANTH 281B", + "title": "Introductory Seminar (1)" + }, + { + "dept": "ANTH", + "description": "These seminars are held in the first two quarters of the first year of graduate study. Faculty members will present an account of their current research and interests. When appropriate a short preliminary reading list will be given for the particular lecture. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4142, + "label": "ANTH 281A", + "title": "Introductory Seminar (1)" + }, + { + "dept": "BENG", + "description": "Computational modeling of molecular bioengineering phenomena: excitable cells, regulatory networks, and transport. Application of ordinary, stochastic, and partial differential equations. Introduction to data analysis techniques: power spectra, wavelets, and nonlinear time series analysis. ", + "edges_from": [ + 3689, + 2161 + ], + "edges_to": [], + "id": 4143, + "label": "BENG 125", + "title": "Modeling and Computation in Bioengineering (4)" + }, + { + "dept": "PHIL", + "description": "The syntax, semantics, and proof-theory of first-order predicate logic with identity, emphasizing both conceptual issues and practical skills (e.g., criteria for logical truth, consistency, and validity; the application of logical methods to everyday as well as scientific reasoning). ", + "edges_from": [ + 286 + ], + "edges_to": [ + 4145, + 4146, + 4147 + ], + "id": 4144, + "label": "PHIL 120", + "title": "Symbolic Logic I (4)" + }, + { + "dept": "PHIL", + "description": "Topics vary from year to year. They include: Metalogic (Mathematical Logic), Modal Logic, Foundations of Logic, Foundations of Set Theory, G\u00f6del\u2019s Incompleteness Theorems, and others. ", + "edges_from": [ + 4144 + ], + "edges_to": [], + "id": 4145, + "label": "PHIL 122", + "title": "Advanced Topics in Logic (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical issues underlying standard and nonstandard logics, the nature of logical knowledge, the relation between logic and mathematics, the revisability of logic, truth and logic, ontological commitment and ontological relativity, logical consequence, etc. May be repeated for credit with change in content and approval of instructor. ", + "edges_from": [ + 4144 + ], + "edges_to": [], + "id": 4146, + "label": "PHIL 123", + "title": "Philosophy of Logic (4)" + }, + { + "dept": "PHIL", + "description": "The character of logical and mathematical truth and knowledge; the relations between logic and mathematics; the significance of Godel\u2019s Incompleteness Theorem; Platonism, logicism, and more recent approaches. ", + "edges_from": [ + 4144 + ], + "edges_to": [], + "id": 4147, + "label": "PHIL 124", + "title": "Philosophy of Mathematics (4)" + }, + { + "dept": "ECE", + "description": "Diffusion equations, linear and nonlinear estimation and detection, random fields, optimization of stochastic dynamic systems, applications of stochastic optimization to problems. (Recommended prerequisites: ECE 250.) ", + "edges_from": [], + "edges_to": [ + 4149 + ], + "id": 4148, + "label": "ECE 272A", + "title": "Stochastic Processes in Dynamic Systems I (4)" + }, + { + "dept": "ECE", + "description": "Continuous and discrete random processes, Markov models and hidden Markov models, Martingales, linear and nonlinear estimation. Applications in mathematical finance and real options. ", + "edges_from": [ + 4148 + ], + "edges_to": [], + "id": 4149, + "label": "ECE 272B", + "title": "Stochastic Processes in Dynamic Systems II (4)" + }, + { + "dept": "ETHN", + "description": "Examination of local responses to global change and social disruption through the examination of organic movements in indigenous societies. In-depth analysis of the Kuna Indians of San Blas, Panama; Maya-Zapatistas of Chiapas, Mexico; and Micronesians of the western Pacific.", + "edges_from": [], + "edges_to": [], + "id": 4150, + "label": "ETHN 117", + "title": "Organic Social Movements (4)" + }, + { + "dept": "ETHN", + "description": "This course considers dark agencies, queer threats, and how they seep through cracks in containers meant to disable them. This class will be writing intensive with an artistic production component. Recommended: ETHN 100 is recommended prior to enrollment in this course.", + "edges_from": [], + "edges_to": [], + "id": 4151, + "label": "ETHN 115", + "title": "Monsters, Orphans, and\u00a0Robots\u00a0(4)" + }, + { + "dept": "ETHN", + "description": "This course considers decolonial theories of education in relation to classroom pedagogy, focusing on US urban high schools.", + "edges_from": [], + "edges_to": [], + "id": 4152, + "label": "ETHN 113", + "title": "Decolonizing Education (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 205A.) Point, line, and planar defects in crystalline solids, including vacancies, self interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements.", + "edges_from": [], + "edges_to": [], + "id": 4153, + "label": "MAE 272", + "title": "Imperfections in Solids (4)" + }, + { + "dept": "ETHN", + "description": "This course analyzes Native American written and oral traditions. Students will read chronicles and commentaries on published texts, historic speeches, trickster narratives, oratorical and prophetic tribal epics, and will delve into the methodological problems posed by tribal literature in translation.", + "edges_from": [], + "edges_to": [], + "id": 4154, + "label": "ETHN 111", + "title": "Native American Literature (4)" + }, + { + "dept": "ETHN", + "description": "Places Native Americans/indigenous people\u2019s ways of living, knowing, and understanding the world in relation to settler-immigrant societies in North America.\u00a0Students gain analytical tools for thinking about world views through themes of cosmology, land, kinship, and identity formation.", + "edges_from": [], + "edges_to": [], + "id": 4155, + "label": "ETHN 110", + "title": "Cultural Worldviews of Indigenous America (4)" + }, + { + "dept": "EDS", + "description": "Educational Research and Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 4156, + "label": "EDS 250", + "title": "Equitable" + }, + { + "dept": "EDS", + "description": "This course explores formal and informal learning environments with documented records of successful student engagement. Using an array of curriculum and learning theories, students investigate new and traditional pedagogical practices, curricula, and learning environments for elements of transformative practices. Students critique current literature on teaching for change as it applies to the contexts they chose to study, and identify new possibilities for teaching and learning in diverse student contexts. Letter grades only.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4157, + "label": "EDS 251", + "title": "Transforming Learning Environments (4)" + }, + { + "dept": "EDS", + "description": "The course focuses on factors that shape the unequal distribution of educational opportunities for marginalized groups. Students will interrogate societal and school structures, and underlying socio-cultural processes that impact engagement and outcomes for marginalized groups or students. Students will explore theories on student success and failure, family and community connections, and identity formation in relation to transforming outcomes. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4158, + "label": "EDS 252", + "title": "Transforming Inequities in Student Outcomes (4)" + }, + { + "dept": "EDS", + "description": "This course exposes students to past and present systemic policies that influence the practices and efficiency of the P\u201320 system. Students will explore the barriers and facilitators of successful policy interventions at the local, state, and federal levels of education policy. Attention is given to each segment of the educational continuum, exposing students to strategies for transforming the educational system to ensure equitable opportunities to learn and achieve. ", + "edges_from": [], + "edges_to": [], + "id": 4159, + "label": "EDS 253", + "title": "Transforming Educational Systems and Policy (4)" + }, + { + "dept": "EDS", + "description": "Introduction to quantitative concepts, descriptive statistics, and fundamentals of statistical inference in social science. Emphasis on applying statistical concepts\u2014how to select the appropriate statistical techniques, execute those techniques, examine assumptions necessary for the techniques to work appropriately, interpret analytic results, and summarize findings in a professional manner. Hands-on computer-based practice of quantitative analyses will be an integral part of the course. Letter grades only. ", + "edges_from": [], + "edges_to": [ + 4162 + ], + "id": 4160, + "label": "EDS 254", + "title": "Introduction to Research Design and Quantitative Data Analysis (4)" + }, + { + "dept": "EDS", + "description": "In this course, students will extend their knowledge of statistical methods based on the general linear model, including correlation, regression, analysis of variance, and analysis of covariance to address questions that emerge in educational and social science research. Students will address a variety of substantive research questions by analyzing data and fitting increasingly sophisticated analytic models. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4161, + "label": "EDS 255", + "title": "Advanced Quantitative Data Analysis (4)" + }, + { + "dept": "EDS", + "description": "This course offers an introduction to mixed methods research in education studies. Participants will learn how qualitative and quantitative data can be integrated to capture the perspectives of individuals and organizations to answer complex research questions. The course will cover formulating research questions, collecting and analyzing different types of data, choosing appropriate mixed methods designs, and interpreting mixed methods results. Letter grades only. ", + "edges_from": [ + 4160, + 1163 + ], + "edges_to": [], + "id": 4162, + "label": "EDS 256", + "title": "Introduction to Mixed Methods Research Design and Analysis (4)" + }, + { + "dept": "ETHN", + "description": "This course examines the diversity of today\u2019s immigrants\u2014their social origins and contexts of exit and their adaptation experiences and contexts of incorporation.", + "edges_from": [], + "edges_to": [], + "id": 4163, + "label": "ETHN 118", + "title": "Contemporary Immigration Issues (4)" + }, + { + "dept": "ANBI", + "description": "Primate (and other vertebrate) conservation involves a variety of methods: field (e.g., population and habitat assessment), computer (e.g., population genetic models), and increasingly the web (e.g. interactive GIS and databases). Course takes problem-solving approach to learning some of these methods. ", + "edges_from": [], + "edges_to": [], + "id": 4164, + "label": "ANBI 114", + "title": "Methods in Primate Conservation (4)" + }, + { + "dept": "ANBI", + "description": "Major stages of human evolution including the fossil evidence for biological and cultural changes through time. ", + "edges_from": [], + "edges_to": [], + "id": 4165, + "label": "ANBI 111", + "title": "Human Evolution (4)" + }, + { + "dept": "ANBI", + "description": "Cytoarchitecture reveals the fundamental structural organization of the human brain and stereology extracts quantitative information in a three-dimensional space. Students will learn the principles of both fields and their applications. ", + "edges_from": [ + 636 + ], + "edges_to": [], + "id": 4166, + "label": "ANBI 112", + "title": "Methods in Human Comparative Neuroscience (4)" + }, + { + "dept": "COMM", + "description": "Course examines several different ways of telling stories as a form of communication: our own life and about the lives of others. There are also the occasions that the life stories of ordinary people are told at and celebrated, for example, funerals, Festschrifts, retirement dinners, fiftieth-anniversary parties, and retrospective art shows. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4167, + "label": "COMM 170", + "title": "Biography and Life Stories (4)" + }, + { + "dept": "COMM", + "description": "Specialized advanced study in mediation and interaction with topics to be determined by the instructor for any given quarter. May be taken three times for credit. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4168, + "label": "COMM 172", + "title": "Advanced Topics in Mediation and Interaction (4)" + }, + { + "dept": "LAWS", + "description": "Through lectures and discussions on several controversial topics, students are introduced to the subjects taught in the first year of law school. They learn briefing, case analysis, and the Socratic method of instruction, engage in role-playing exercises, and take law-school examinations. ", + "edges_from": [], + "edges_to": [], + "id": 4169, + "label": "LAWS 102S", + "title": "Crimes, Civil Wrongs, and Constitution (4)" + }, + { + "dept": "BIOM", + "description": "Informal presentations on topics of current interest in glycobiology as represented in the current scientific literature. ", + "edges_from": [], + "edges_to": [], + "id": 4170, + "label": "BIOM 246", + "title": "Current Literature in Glycobiology (1)" + }, + { + "dept": "BIOM", + "description": "This course will focus on critical reading and understanding current areas in cell and molecular biology. The exact topic will vary, but will include such topics as protein trafficking, cell division, intracellular movement, cell interaction, and cell cycle.", + "edges_from": [], + "edges_to": [], + "id": 4171, + "label": "BIOM 240", + "title": "Critical Reading in Cell Biology (3)" + }, + { + "dept": "BIOM", + "description": "Intended for graduate students interested in principles of classical and molecular genetics. Will attend weekly genetics seminar and participate in didactic/discussion preparatory session. ", + "edges_from": [], + "edges_to": [], + "id": 4172, + "label": "BIOM 242", + "title": "Seminar in Genetics (1)" + }, + { + "dept": "ENG", + "description": "This course examines the complexity of integrating components of product engineering, marketing and client requirements into a single engineering system. Case studies explore successes and failures in engineered systems and how to detect and avoid potential failures using strong leadership skills, systemic analysis and thinking. ", + "edges_from": [], + "edges_to": [], + "id": 4173, + "label": "ENG 210", + "title": "Systems Engineering (4)" + }, + { + "dept": "ENG", + "description": "This course is designed to teach leadership in teaching and learning at the college/university level. Students will learn through readings on engineering leadership, proposal development, ethics, and cognitive science, and thorough practical experience writing and developing course and project development plans. ", + "edges_from": [], + "edges_to": [], + "id": 4174, + "label": "ENG 211", + "title": "Engineering Leadership in Academia (4)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with HIUS 141.) The United States as a modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism. Credit not allowed for both Econ 159 and HIUS 141. ", + "edges_from": [], + "edges_to": [], + "id": 4175, + "label": "ECON 159", + "title": "Economic History of the United States II (4)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with HIUS 140.) The United States as a raw materials producer, as an agrarian society, and as an industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and nineteenth- and early twentieth-century transformations of American capitalism. Credit not allowed for both Econ 158 and HIUS 140. ", + "edges_from": [], + "edges_to": [], + "id": 4176, + "label": "ECON 158", + "title": "Economic History of the United States I (4)" + }, + { + "dept": "ECON", + "description": "Overview of the public sector in the United States and the scope of government intervention in economic life. Theory of public goods and externalities. Discussion of specific expenditure programs such as education and national defense. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 4177, + "label": "ECON 151", + "title": "Public Economics: Expenditures I (4)" + }, + { + "dept": "ECON", + "description": "Overview of the existing national tax structure in the United States, its effects on individual and firm decisions, and the resulting efficiency costs and distributional consequences. The course concludes with an examination of several commonly proposed tax reforms. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 4178, + "label": "ECON 150", + "title": "Public Economics: Taxation (4)" + }, + { + "dept": "ECON", + "description": "Overview of the public sector in the United States and the justifications for government intervention in economic life. Theory of income redistribution and social insurance. Applications to current policy in such areas as health insurance, welfare, unemployment insurance, and Social Security. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 4179, + "label": "ECON 152", + "title": "Public Economics: Expenditures II (4)" + }, + { + "dept": "BENG", + "description": "Introduction on the integration of bioengineering and clinical medicine through lectures and rotations with clinical faculty. Students will work with clinical mentors and course faculty to identify areas where engineering can improve diagnostics, clinical practice, and/or treatment. ", + "edges_from": [ + 3868, + 588, + 2533, + 2534 + ], + "edges_to": [], + "id": 4180, + "label": "BENG 193", + "title": "Clinical Bioengineering (4)" + }, + { + "dept": "MATH", + "description": "Formulation and analysis of algorithms for constrained optimization. Optimality conditions; linear and quadratic programming; interior methods; penalty and barrier function methods; sequential quadratic programming methods. ", + "edges_from": [], + "edges_to": [], + "id": 4181, + "label": "MATH 271A-B-C", + "title": "Numerical Optimization (4-4-4)" + }, + { + "dept": "Linguistics/Spanish", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Spanish. Must be taken with LISP 1A. ", + "edges_from": [], + "edges_to": [], + "id": 4182, + "label": "Linguistics/Spanish (LISP) 1AX", + "title": "Analysis of Spanish (2.5)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research in nuclear physics, principally in the field of elementary particles. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4183, + "label": "PHYS 251", + "title": "High-Energy Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussion of current research in physics of the solid state and of other condensed matter. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4184, + "label": "PHYS 250", + "title": "Condensed Matter Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of recent research in astrophysics and space physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4185, + "label": "PHYS 253", + "title": "Astrophysics and Space Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussions of recent research in plasma physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4186, + "label": "PHYS 252", + "title": "Plasma Physics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Discussion of recent research in biological physics and quantitative biology by current graduate students. (S/U grades only.) May be taken for credit thirty times.", + "edges_from": [], + "edges_to": [], + "id": 4187, + "label": "PHYS 255", + "title": "Biophysics Research Talks (1)" + }, + { + "dept": "PHYS", + "description": "Presentation of current research in biological physics and quantitative biology by invited speakers from the United States and abroad. (S/U grades only.) May be taken for credit thirty times.", + "edges_from": [], + "edges_to": [], + "id": 4188, + "label": "PHYS 254", + "title": "Biophysics Seminar (1)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research in high-energy physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4189, + "label": "PHYS 257", + "title": "High-Energy Physics Special Topics Seminar (0\u20131)" + }, + { + "dept": "PHYS", + "description": "Critical analysis of classic and current literature in quantitative biology, involving written critiques and group discussion. (S/U grades only.) May be taken for credit thirty times.", + "edges_from": [], + "edges_to": [], + "id": 4190, + "label": "PHYS 256", + "title": "Critical Reading in Quantitative Biology (1)" + }, + { + "dept": "PHYS", + "description": "Discussions of current research in astrophysics and space physics. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4191, + "label": "PHYS 258", + "title": "Astrophysics and Space Physics Special Topics Seminar (0\u20131)" + }, + { + "dept": "HIGR", + "description": "Research seminar in ancient history. Selected topics in ancient Greek and Roman history.", + "edges_from": [], + "edges_to": [], + "id": 4192, + "label": "HIGR 260A", + "title": "Research Seminar in Ancient History (4)" + }, + { + "dept": "NANO", + "description": "Introduction to physical principles of electrical, dielectric, and magnetic properties. Semiconductors, control of defects, thin film, and nanocrystal growth, electronic and optoelectronic devices. Processing-microstructure-property relations of dielectric materials, including piezoelectric, pyroelectric and ferroelectric, and magnetic materials. ", + "edges_from": [ + 2282, + 2283 + ], + "edges_to": [], + "id": 4193, + "label": "NANO 168", + "title": "Electrical, Dielectric, and Magnetic Properties of Engineering Materials (4)" + }, + { + "dept": "SE", + "description": "Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ", + "edges_from": [], + "edges_to": [], + "id": 4194, + "label": "SE 262", + "title": "Aerospace Structures Repair (4)" + }, + { + "dept": "SE", + "description": "Advanced topics in the design of weight-critical aerospace structures. Topics include: static, dynamic and environmental load definitions; metallics and polymeric composite material selection; semi-monocoque analysis techniques, and bolted/bonded connections. Design procedures for sizing the structural components of aircraft and spacecraft will be reviewed.", + "edges_from": [], + "edges_to": [], + "id": 4195, + "label": "SE 261", + "title": "Aerospace Engineering Design (4)" + }, + { + "dept": "SE", + "description": "This course examines the properties, physics, mechanisms, and design of smart and multifunctional materials; data acquisition and operating principles of sensor technologies; smart materials (piezoresistive, piezoelectric, magnetorheological, and shape memory materials); nanotechnology-enabled multifunctional materials; and applications for structural health monitoring. Use of computer resources. ", + "edges_from": [], + "edges_to": [], + "id": 4196, + "label": "SE 266", + "title": "Smart and Multifunctional Materials (4)" + }, + { + "dept": "MATH", + "description": "Lebesgue integral and Lebesgue measure, Fubini theorems, functions of bounded variations, Stieltjes integral, derivatives and indefinite integrals, the spaces L and C, equi-continuous families, continuous linear functionals general measures and integrations. ", + "edges_from": [ + 226, + 228, + 229 + ], + "edges_to": [], + "id": 4197, + "label": "MATH 240A-B-C", + "title": "Real Analysis (4-4-4)" + }, + { + "dept": "SE", + "description": "A modern paradigm of structural health monitoring as it applies to structural and mechanical systems is presented. Concepts in data acquisition, feature extraction, data normalization, and statistical modeling will be introduced in an integrated context. Matlab-based exercises. Term project. ", + "edges_from": [], + "edges_to": [], + "id": 4198, + "label": "SE 265", + "title": "Structural Health Monitoring (4)" + }, + { + "dept": "SE", + "description": "Dynamic/model testing of structures: test planning/execution, actuation, sensing, and data acquisition, signal processing, data conditioning, test troubleshooting. Methods of updating finite element structural models to correlate with dynamic test results. Model/test correlation assessment in industrial practice. Recommended preparation: vibrations, finite element analysis, and knowledge of Matlab. ", + "edges_from": [], + "edges_to": [], + "id": 4199, + "label": "SE 268", + "title": "Structural System Testing and Model Correlation (4)" + }, + { + "dept": "POLI", + "description": "An examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on computational social science. ", + "edges_from": [], + "edges_to": [], + "id": 4200, + "label": "POLI 288", + "title": "Multidisciplinary Methods in Political Science: Computational Social Science (4)" + }, + { + "dept": "POLI", + "description": "Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on biology. ", + "edges_from": [], + "edges_to": [], + "id": 4201, + "label": "POLI 289", + "title": "Multidisciplinary Methods in Political Science: Biology (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in international law and regulation: development and presentation of research projects by graduate students; presentation of research by faculty. Third-year students present dissertation prospectus, candidates make yearly presentations of dissertation research. S/U grades only. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 4202, + "label": "POLI 280", + "title": "Workshop: International Law and Regulation (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in American politics: development and presentation of research projects by graduate students, presentations of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4203, + "label": "POLI 281", + "title": "Workshop: American Politics (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in comparative politics, development and presentation of research projects by graduate students; presentations of research projects by faculty. Third-year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4204, + "label": "POLI 282", + "title": "Workshop: Comparative Politics (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in international relations, development and presentation of research projects by graduate students, presentations of research projects by faculty. Third year students present dissertation prospectus; candidates make yearly presentation of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4205, + "label": "POLI 283", + "title": "Workshop: International Relations (4)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in political methodology; development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4206, + "label": "POLI 286", + "title": "Workshop: Methodology (4)" + }, + { + "dept": "POLI", + "description": "Examination of research in the natural sciences that may be applied to problems in political science, development and presentation of research projects by graduate students and faculty, special emphasis on social networks. ", + "edges_from": [], + "edges_to": [], + "id": 4207, + "label": "POLI 287", + "title": "Multidisciplinary Methods in Political Science: Social Networks (4)" + }, + { + "dept": "VIS", + "description": "Study of the philosophical concepts of the function of art and visual culture and the criteria for its evaluation in diverse epochs and cultures. May be taught as an historical overview or comparative study or focus a single topic or theorist.", + "edges_from": [], + "edges_to": [], + "id": 4208, + "label": "VIS 243", + "title": "Aesthetic Theory (4)" + }, + { + "dept": "LTWL", + "description": "to Semiotics and Applications (4)", + "edges_from": [], + "edges_to": [], + "id": 4209, + "label": "LTWL 128", + "title": "Introduction" + }, + { + "dept": "LTWL", + "description": "What is wisdom? Does wisdom refer to a specific type of discourse; a literary genre; a specific content that holds true transculturally and transtemporally? This class will consider these questions by reading literature from diverse times and places.", + "edges_from": [], + "edges_to": [], + "id": 4210, + "label": "LTWL 129", + "title": "Wisdom: The Literature of Authority (4)" + }, + { + "dept": "LTWL", + "description": "An exploration of the genre\u2014past and present, in literature and the visual media\u2014as a cultural response to scientific and technological change, as modern mythmaking, and as an enterprise serving a substantial fan subculture. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4211, + "label": "LTWL 124", + "title": "Science Fiction (4)" + }, + { + "dept": "LTWL", + "description": "A study of representations of the vampire through a variety of methodological perspectives with an emphasis on historical context and cultural symbolism.", + "edges_from": [], + "edges_to": [], + "id": 4212, + "label": "LTWL 123", + "title": "Vampires in Literature (4)" + }, + { + "dept": "LTWL", + "description": "A study of various popular forms\u2014such as pop music, cult books, film, fashion, magazines, graphic arts\u2014within a broader cultural context. Focus may be on a particular genre (e.g., best sellers) or era (e.g., the sixties). May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4213, + "label": "LTWL 120", + "title": "Popular Literature and Culture (4)" + }, + { + "dept": "USP", + "description": "(Same as HIUS 117.) This course examines the history of Los Angeles from the early nineteenth century to the present. Particular issues to be addressed include urbanization, ethnicity, politics, technological change, and cultural diversification. ", + "edges_from": [], + "edges_to": [], + "id": 4214, + "label": "USP 168", + "title": "History of Los Angeles (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 207C) Introduction to the algorithmic theory of point lattices (aka algorithmic geometry of numbers), and some of its most important applications in cryptography and cryptanalysis. Topics usually include: LLL basis reduction algorithm, cryptanalysis of broadcast RSA, hardness of approximating lattice problems. ", + "edges_from": [ + 393, + 142 + ], + "edges_to": [], + "id": 4215, + "label": "CSE 206A", + "title": "Lattice Algorithms and Applications (4)" + }, + { + "dept": "VIS", + "description": "The art of the Early Renaissance in Northern Europe is marked by what appears to be striking conflict: on the one hand, a new love of nature and the pleasures of court society, and on the other, an intensified spirituality and focus on personal devotion. This course explores these provocative crosscurrents in works by master painters like Jan van Eyck and Hieronymus Bosch as well as in lesser known mass-produced objects of everyday use. ", + "edges_from": [], + "edges_to": [], + "id": 4216, + "label": "VIS 123AN", + "title": "Between Spirit and Flesh (4)" + }, + { + "dept": "COMM", + "description": "This course offers students the opportunity to produce and engage in critical discussions around various television production formats. We will study and produce a variety of projects, including public service announcements, panel programs, scripted drama, and performance productions. May be taken for credit three times. ", + "edges_from": [ + 730, + 731, + 732, + 294 + ], + "edges_to": [], + "id": 4217, + "label": "COMM 102M", + "title": "MMPP: Studio Television (6)" + }, + { + "dept": "COMM", + "description": "A combined lecture/lab in a specially designed after-school setting in southeastern San Diego working with children and adults. Students design new media and produce special projects, and explore issues related to human development, social justice, and community life. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4218, + "label": "COMM 102C", + "title": "MMPP: Practicum in New Media and Community Life (6)" + }, + { + "dept": "COMM", + "description": "A combined lecture/lab course on after-school learning, social change, and community-based research. Students are expected to participate in a supervised after-school setting at one of four community labs in San Diego County. Students will learn ethnographic field methods, develop culturally relevant curriculum, and work in diverse settings. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4219, + "label": "COMM 102D", + "title": "MMPP: Practicum in Child Development (6)" + }, + { + "dept": "COMM", + "description": "An introduction to the techniques and conventions common in television production with equal emphasis on method and content. Studio sessions provide students with opportunities to experiment in framing subject matter through a variety of cinematographic methods. May be taken for credit three times. ", + "edges_from": [ + 730, + 731, + 732, + 294 + ], + "edges_to": [], + "id": 4220, + "label": "COMM 102P", + "title": "MMPP: Television Analysis and Production (6)" + }, + { + "dept": "COMM", + "description": "An advanced television course that examines the history, form, and function of the television documentary in American society. Experimentation with documentary techniques and styles requires prior knowledge of television or film production. Laboratory sessions apply theory and methods in the documentary genre via technological process. Integrates research, studio, and field experience of various media components. May be taken for credit three times. ", + "edges_from": [ + 730, + 731, + 732, + 294 + ], + "edges_to": [], + "id": 4221, + "label": "COMM 102T", + "title": "MMPP: Television Documentary (6)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with AESE 278C, CSE 278C, and ECE 206.) Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [], + "edges_to": [ + 4379, + 4375 + ], + "id": 4222, + "label": "MAE 278A", + "title": "Modeling, Simulation, and Analysis (4)" + }, + { + "dept": "POLI", + "description": "Readings in historical and contemporary feminist theory; development of gender as a category of political analysis; alternative perspectives on core concepts and categories in feminist thought. ", + "edges_from": [], + "edges_to": [], + "id": 4223, + "label": "POLI 116A", + "title": "Feminist Theory (4)" + }, + { + "dept": "ECE", + "description": "Antennas, waves, polarization. Friis transmission and Radar equations, dipoles, loops, slots, ground planes, traveling wave antennas, array theory, phased arrays, impedance, frequency independent antennas, microstrip antennas, cell phone antennas, system level implications such as MIMO, multi-beam and phased array systems. (Recommended prerequisites: ECE107 or an equivalent undergraduate course in electromagnetics.) ", + "edges_from": [], + "edges_to": [], + "id": 4224, + "label": "ECE 222A", + "title": "Antennas and Their System Applications (4)" + }, + { + "dept": "ANTH", + "description": "This seminar studies the dynamics of climate change and human responses through time. Topics include research methods in socioecodynamics, human responses to change in different sociopolitical and economic contexts, and lessons from the past that can inform the present. Students may not receive credit for ANTH 270 and SIOG 270. ", + "edges_from": [], + "edges_to": [], + "id": 4225, + "label": "ANTH 270", + "title": "The Archaeology of Climate Change\u2014Social Adaptation and Vulnerability in Temporal Perspective (4)" + }, + { + "dept": "RELI", + "description": "This course introduces the students to historical and social developments of Islam in the United States. Tracing Islam back to the African slaves, the course examines various Muslim communities in the United States, with a focus on African-American Muslims, especially Malcolm X. ", + "edges_from": [], + "edges_to": [], + "id": 4226, + "label": "RELI 149", + "title": "Islam in America (4)" + }, + { + "dept": "RELI", + "description": "The course surveys women\u2019s formal and informal roles and activities in a number of faiths, examining how women\u2019s agency and activism may be constrained or fostered by religious ideologies and norms in various historical and political contexts. Examples are drawn from a range of male-centered (Islam, Judaism, Christianity, Buddhism) and woman-centered religions (Sande, Afro-Brazilian, Z-ar Cult), and newly formed theologies (Womanist, Native American, and Mujerista; New Age feminist spiritualities). ", + "edges_from": [], + "edges_to": [], + "id": 4227, + "label": "RELI 148", + "title": "Religion and Women\u2019s Activisms (4)" + }, + { + "dept": "TDGR", + "description": "Selected professional opportunities in repertory and commercial theatre, designed to engage the student in particular creative responsibilities under the guidance of master artist-teachers. Student is expected to give biweekly reports detailing his/her experience with the professional company. ", + "edges_from": [], + "edges_to": [], + "id": 4228, + "label": "TDGR 229", + "title": "Theatre Externship (6\u201312)" + }, + { + "dept": "ANSC", + "description": "This course will examine the overarching legacies of colonialism, the persistence of indigenous peoples and cultures, the importance of class and land reform, the effects of neoliberalism, and citizens\u2019 efforts to promote social change in contemporary democracies. ", + "edges_from": [], + "edges_to": [], + "id": 4229, + "label": "ANSC 142", + "title": "Anthropology of Latin America (4)" + }, + { + "dept": "TDGR", + "description": "Assisting faculty with productions off-campus.\u00a0Perform research necessary for project. Assist with preproduction meetings and other work. Observe and participate in any or all phases of the production process from preproduction through closing. ", + "edges_from": [], + "edges_to": [], + "id": 4230, + "label": "TDGR 226", + "title": "Stage Managing Assistantship (4\u201312)" + }, + { + "dept": "RELI", + "description": "This interdisciplinary course will explore the historical and theoretical relationship between public sphere and religion, particularly focusing on the manifestation of religious power, public ritual, and sacred theatricality in everyday spaces of life. ", + "edges_from": [], + "edges_to": [], + "id": 4231, + "label": "RELI 141", + "title": "Public Sphere and Religion (4)" + }, + { + "dept": "ANSC", + "description": "This course explores the interrelationships of language, politics, and identity in the United States: the ways that language mediates politics and identity, the ways that the connection between identity and language is inherently political, and the ways that political language inevitably draws on identity in both subtle and explicit ways. ", + "edges_from": [], + "edges_to": [], + "id": 4232, + "label": "ANSC 141", + "title": "Language, Politics, and Identity (4)" + }, + { + "dept": "RELI", + "description": "This course explores the history of how western Europe was converted from its indigenous pagan religions to the imported religion we know as Christianity. We will discuss conversion by choice and by force, partial or blended conversions, and the relationships between belief and culture. ", + "edges_from": [], + "edges_to": [], + "id": 4233, + "label": "RELI 147", + "title": "Pagan Europe and Its Christian Aftermath (4)" + }, + { + "dept": "ANSC", + "description": "Examines interactions of culture, health, and environment. Rural and urban human ecologies, their energy foundations, sociocultural systems, and characteristic health and environmental problems are explored. The role of culture and human values in designing solutions will be investigated. ", + "edges_from": [], + "edges_to": [ + 5371 + ], + "id": 4234, + "label": "ANSC 147", + "title": "Global Health and the Environment (4)" + }, + { + "dept": "TDGR", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 4235, + "label": "TDGR 221", + "title": "Graduate Studio: Contemporary Movement Practices" + }, + { + "dept": "RELI", + "description": "Christianity frequently finds definition in contradistinction to an \u201cOther\u201d characterized as immoral, irrational, and malevolent. This class investigates how devils and demons as constructions of the \u201cOther\u201d have contributed to Christianity\u2019s growth and identity formation throughout history. ", + "edges_from": [], + "edges_to": [], + "id": 4236, + "label": "RELI 144", + "title": "Devils and Demons in Christianity (4)" + }, + { + "dept": "HISC", + "description": "Technology as an agent of change. How have humans harnessed the power of nature? What factors have contributed to successes and failures? How has technology changed human life? How should we evaluate the quality of these changes?", + "edges_from": [], + "edges_to": [], + "id": 4237, + "label": "HISC 102", + "title": "Technology in World History (4)" + }, + { + "dept": "HISC", + "description": "and Science in Historical Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 4238, + "label": "HISC 103", + "title": "Gender" + }, + { + "dept": "HISC", + "description": "A cultural history of the formation of early modern science in the sixteenth and seventeenth centuries: the social forms of scientific life; the construction and meaning of the new cosmologies from Copernicus to Newton; the science of politics and the politics of science; the origins of experimental practice; how Sir Isaac Newton restored law and order to the West.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4239, + "label": "HISC 106", + "title": "The Scientific Revolution (4)" + }, + { + "dept": "HISC", + "description": "The development of the modern conception of the sciences, and of the modern social and institutional structure of scientific activity, chiefly in Europe, during the eighteenth and nineteenth centuries.", + "edges_from": [], + "edges_to": [], + "id": 4240, + "label": "HISC 107", + "title": "The Emergence of Modern Science (4)" + }, + { + "dept": "HISC", + "description": "Historical aspects of the popularization of science. The changing relation between expert science and popular understanding. The reciprocal impact of scientific discoveries and theories, and popular conceptions of the natural world.", + "edges_from": [], + "edges_to": [], + "id": 4241, + "label": "HISC 104", + "title": "History of Popular Science (4)" + }, + { + "dept": "HISC", + "description": "History of human effects on the natural environment, with emphasis on understanding the roles of the physical and biological sciences in providing insights into environmental processes.", + "edges_from": [], + "edges_to": [], + "id": 4242, + "label": "HISC 105", + "title": "History of Environmentalism (4)" + }, + { + "dept": "HISC", + "description": "The history of twentieth-century life sciences, with an emphasis on the way in which model organisms such as fruit flies, guinea pigs, bacteriophage, and zebra fish shaped the quest to unlock the secrets of heredity, evolution, and development.", + "edges_from": [], + "edges_to": [], + "id": 4243, + "label": "HISC 108", + "title": "Life Sciences in the Twentieth Century (4)" + }, + { + "dept": "HISC", + "description": "Explores the origins of the idea of the \u201ctropics\u201d and \u201ctropical disease\u201d as a legacy of European conquest and colonization, and introduces students to themes in the history of colonialism, tropical medicine, and global public health.", + "edges_from": [], + "edges_to": [], + "id": 4244, + "label": "HISC 109", + "title": "Invention of Tropical Disease (4)" + }, + { + "dept": "LIGN", + "description": "Students lead a class section of a lower-division linguistics course. They also attend a weekly meeting on teaching methods. (This course does not count toward minor or major.) May be repeated for credit, up to a maximum of four units. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4245, + "label": "LIGN 195", + "title": "Apprentice Teaching (0\u20134)" + }, + { + "dept": "LIGN", + "description": "The student will undertake a program of practical research in a supervised work environment. Topics to be researched may vary, but in each case the course will provide skills for carrying out these studies. ", + "edges_from": [], + "edges_to": [], + "id": 4246, + "label": "LIGN 197", + "title": "Linguistics Internship (2 or 4)" + }, + { + "dept": "LIGN", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in linguistics (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 4247, + "label": "LIGN 192", + "title": "Senior Seminar in Linguistics (1)" + }, + { + "dept": "LTEN", + "description": "A study of Chaucer\u2019s poetic development, beginning with The Book of the Duchess and The Parliament of Fowls, including Troilus and Criseyde, and concluding with substantial selections from The Canterbury Tales.", + "edges_from": [], + "edges_to": [], + "id": 4248, + "label": "LTEN 107", + "title": "Chaucer (4)" + }, + { + "dept": "LIGN", + "description": "The student undertakes a program of research or advanced reading in linguistics under the supervision of a faculty member of the Department of Linguistics. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4249, + "label": "LIGN 199", + "title": "Independent Study in Linguistics (2 or 4)" + }, + { + "dept": "BENG", + "description": "Thermodynamics, statistical mechanics, and interfacial phenomena that emphasize the chemical natures of living systems. Topics include intermolecular and surface forces, calculation of energetic processes, computation of electrical forces and fields, and principles of physics in multiscale engineering and design. ", + "edges_from": [], + "edges_to": [], + "id": 4250, + "label": "BENG 223", + "title": "Thermodynamics, Statistical Mechanics, Interfacial Phenomena in Living Systems (4)" + }, + { + "dept": "BENG", + "description": "283. Genomics, Proteomics, and Network Biology (4)", + "edges_from": [], + "edges_to": [], + "id": 4251, + "label": "BENG 203/CSE", + "title": "" + }, + { + "dept": "HIEU", + "description": "This course looks at the European and non-European in the early modern era. Topics will vary year to year. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 4252, + "label": "HIEU 164/264", + "title": "Special Topics in Early Modern Europe (4)" + }, + { + "dept": "ENVR", + "description": "Explores environmental policy in the United States and the ways in which it is reflected in law. The social and political issues addressed include environmental justice and environmental racism, as well as the role of government in implementing environmental law. ", + "edges_from": [], + "edges_to": [], + "id": 4253, + "label": "ENVR 110", + "title": "Environmental Law (4)" + }, + { + "dept": "LIGN", + "description": "(Same as Psychology 232.) Computational theories of human cognition, particularly Bayesian approaches.\u00a0Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision making; perception; causal reasoning; categorization; language. Recommended preparation: previous experience with statistics, machine learning, and/or functional programming helpful.", + "edges_from": [], + "edges_to": [], + "id": 4254, + "label": "LIGN 228", + "title": "Probabilistic Models of Cognition (4)" + }, + { + "dept": "VIS", + "description": "This course studies important developments in the arts of China in the context of contemporary cultural phenomena. The factors behind the making of art will be brought to bear on selected objects or monuments from China\u2019s great artistic eras. ", + "edges_from": [], + "edges_to": [], + "id": 4255, + "label": "VIS 114GS", + "title": "Arts and Visual Culture in China (4)" + }, + { + "dept": "LIGN", + "description": "An introduction to syntactic phenomena, argumentation, analyses, and theoretical models. Phenomena to be discussed include phrase structure, argument structure, binding, control, and A- and A\u2019-dependencies.", + "edges_from": [], + "edges_to": [], + "id": 4256, + "label": "LIGN 221", + "title": "Syntax (4)" + }, + { + "dept": "LIGN", + "description": "Descriptive and theoretical problems in syntactic analysis. Theoretical consequences of alternative analyses. May be repeated for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4257, + "label": "LIGN 225", + "title": "Topics in Syntax (4)" + }, + { + "dept": "POLI", + "description": "The role of the presidency in American politics. Topics will include nomination and election politics, relations with Congress, party leadership, presidential control of the bureaucracy, international political role, and presidential psychology.", + "edges_from": [], + "edges_to": [], + "id": 4258, + "label": "POLI 100A", + "title": "The Presidency (4)" + }, + { + "dept": "GLBH", + "description": "(Cross-listed with ANSC 150.) This course reviews mental health cross-culturally and transnationally. Issues examined are cultural shaping of the interpretation, experience, symptoms, treatment, course, and recovery of mental illness. World Health Organization findings of better outcomes in non-European and North American countries are explored. Students may not receive credit for GLBH 150 and ANSC 150.", + "edges_from": [], + "edges_to": [], + "id": 4259, + "label": "GLBH 150", + "title": "Culture and Mental Health (4)" + }, + { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with background", + "edges_from": [], + "edges_to": [], + "id": 4260, + "label": "CHIN 20CM", + "title": "Second Year Chinese\u2014Mandarin speakers III (4)" + }, + { + "dept": "POLI", + "description": "This course will examine the nomination and election of congressmen, constituent relationships, the development of the institution, formal and informal structures, leadership, comparisons of House with Senate, lobbying, and relationship with the executive branch.", + "edges_from": [], + "edges_to": [], + "id": 4261, + "label": "POLI 100B", + "title": "The US Congress (4)" + }, + { + "dept": "EDS", + "description": "This course provides a historical overview and models of bilingual education in the United States. Students will examine socio-cultural, theoretical, and policy issues associated with native language and second-language instruction, and legal requirements for public bilingual program.", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4262, + "label": "EDS 125", + "title": "History, Politics, and Theory of Bilingual Education (4)" + }, + { + "dept": "LTRU", + "description": "Tutorial; individual guided reading in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4263, + "label": "LTRU 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTRU", + "description": "Directed group study in areas of Russian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4264, + "label": "LTRU 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "COGS", + "description": "This course presents the building blocks of social cognition from a developmental and evolutionary perspective and focuses on how and when children develop these abilities and how humans compare to other species such as great apes, birds, and dogs. ", + "edges_from": [ + 2099, + 1222 + ], + "edges_to": [], + "id": 4265, + "label": "COGS 144", + "title": "Social Cognition: A Developmental and Evolutionary Perspective (4)" + }, + { + "dept": "MAE", + "description": "Fundamental principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. ", + "edges_from": [ + 3275, + 1093, + 551, + 3690, + 4267, + 2157, + 666, + 389 + ], + "edges_to": [ + 4268 + ], + "id": 4266, + "label": "MAE 155A", + "title": "Aerospace Engineering Design I (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [ + 2212, + 1092, + 1093 + ], + "edges_to": [ + 4266, + 4647 + ], + "id": 4267, + "label": "SE 160B", + "title": "" + }, + { + "dept": "MAE", + "description": "The principles of aerospace vehicle design including the conceptual, preliminary, and detailed design phases. Aeronautical or astronautical design project that integrates all appropriate engineering disciplines as well as issues associated with optimization, teamwork, manufacturability, reporting, and professionalism. Program or materials fees may apply. ", + "edges_from": [ + 345, + 4266, + 3690, + 389, + 551 + ], + "edges_to": [], + "id": 4268, + "label": "MAE 155B", + "title": "Aerospace Engineering Design II (4)" + }, + { + "dept": "EDS", + "description": "The course engages students in field research aimed at supporting education reform efforts in local schools. Students are introduced to a design-based, applied orientation to educational research on equity and diversity. In collaboration with local school leaders, students conduct qualitative research projects on a range of issues that impact youth in schools. Students will examine research on educational equity, theories of education reform, and qualitative research principles and methods. Students are required to travel to school sites. ", + "edges_from": [ + 3236, + 4133, + 4262, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 58, + 59, + 323, + 324, + 854, + 856, + 857, + 858, + 4282, + 3238, + 1899, + 3315, + 1652, + 1656, + 1657 + ], + "edges_to": [], + "id": 4269, + "label": "EDS 120", + "title": "Introduction to Design-Based Educational Research: A Field Experience for Improving San Diego Schools (4)" + }, + { + "dept": "DOC", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4270, + "label": "DOC 100D", + "title": "" + }, + { + "dept": "HITO", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4271, + "label": "HITO 156", + "title": "" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [ + 4272, + 5660 + ], + "edges_to": [ + 4272, + 4269 + ], + "id": 4272, + "label": "SOCI 117", + "title": "" + }, + { + "dept": "SOCI", + "description": "", + "edges_from": [ + 4273, + 5843 + ], + "edges_to": [ + 4273, + 4269 + ], + "id": 4273, + "label": "SOCI 139", + "title": "" + }, + { + "dept": "ANTH", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4274, + "label": "ANTH 131", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4275, + "label": "POLI 100Q", + "title": "" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4276, + "label": "HIUS 180", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4277, + "label": "EDS 126", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4278, + "label": "POLI 100H", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4279, + "label": "POLI 100O", + "title": "" + }, + { + "dept": "USP", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4280, + "label": "USP 129", + "title": "" + }, + { + "dept": "HIUS", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4281, + "label": "HIUS 136", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 4269 + ], + "id": 4282, + "label": "POLI 108", + "title": "" + }, + { + "dept": "BGGN", + "description": "Lectures on basic and advanced concepts in cancer biology, will include defining outstanding contemporary questions and cutting-edge basic and translational research. Will rely on participants reading assigned literature prior to lectures. For doctoral or master\u2019s students. Course will be held at the Salk Institute. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4283, + "label": "BGGN 245", + "title": "Advanced Topics in Cancer Research and Therapy (2)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4284, + "label": "BGRD 207", + "title": "Research Discussion in Neuronal Pattern Generation (1)" + }, + { + "dept": "BGGN", + "description": "This course will cover the cellular", + "edges_from": [], + "edges_to": [], + "id": 4285, + "label": "BGGN 248", + "title": "Molecular Mechanisms of Neural Development (4)" + }, + { + "dept": "BIPN", + "description": "Molecular basis of neuronal cell fate determination, axon pathfinding, synaptogenesis experience-based refinement of connections, and learning in the brain will be examined. ", + "edges_from": [], + "edges_to": [], + "id": 4286, + "label": "BIPN 144", + "title": "Developmental Neurobiology (4)" + }, + { + "dept": "BIPN", + "description": "An exploration of computational brain models, including biophysical models of single neurons, small neural circuits, and larger scale network models. ", + "edges_from": [ + 4288, + 4289, + 1636, + 215 + ], + "edges_to": [], + "id": 4287, + "label": "BIPN 146", + "title": "Computational Neurobiology (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 4287 + ], + "id": 4288, + "label": "COGS 107", + "title": "" + }, + { + "dept": "BIPN", + "description": "", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [ + 4291, + 4287 + ], + "id": 4289, + "label": "BIPN 140", + "title": "" + }, + { + "dept": "POLI", + "description": "Examines Washington as a political community, its institutions, culture, and history. In addition to its elected officeholders and senior government officials, it examines Washington\u2019s subcommunities: the national news industry, diplomatic service, the representation of interests. ", + "edges_from": [], + "edges_to": [], + "id": 4290, + "label": "POLI 100N", + "title": "Politics in Washington (4)" + }, + { + "dept": "BIPN", + "description": "Course will cover integrated networks of nerve cells, including simple circuits like those involved in spinal reflexes.\u00a0Course will study how information and motor output is integrated and processed in the brain. Course will also discuss higher-level neural processing. ", + "edges_from": [ + 4289, + 588 + ], + "edges_to": [], + "id": 4291, + "label": "BIPN 142", + "title": "Systems Neurobiology (4)" + }, + { + "dept": "BIPN", + "description": "Course will explore cellular and molecular mechanisms that underlie learning and memory. Topics will include synapse formation and synaptic plasticity, neurotransmitter systems and their receptors, mechanisms of synaptic modification, and effect of experience on neuronal connectivity, and gene expression. ", + "edges_from": [ + 588 + ], + "edges_to": [], + "id": 4292, + "label": "BIPN 148", + "title": "Cellular Basis of Learning and Memory (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 1226, + 3843, + 1227 + ], + "edges_to": [ + 1836 + ], + "id": 4293, + "label": "VIS 141A", + "title": "" + }, + { + "dept": "NANO", + "description": "Various modeling techniques like finite elements, finite differences, and simulation techniques like molecular dynamics and Monte Carlo to model fluid flow, mechanical properties, self-assembly at the nanoscale, and protein, RNA and DNA folding.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4294, + "label": "NANO 212", + "title": "Computational Modeling of Nanosystems (4)" + }, + { + "dept": "NANO", + "description": "Molecular and modeling and simulation techniques like molecular dynamics, Monte Carlo, and Brownian dynamics to model nanoscale systems and phenomena like molecular motors, self-assembly, protein-ligand binding, RNA, folding. Valuable hands-on experience with different simulators.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4295, + "label": "NANO 210", + "title": "Molecular Modeling and Simulations of Nanoscale Systems (4)" + }, + { + "dept": "VIS", + "description": "This seminar treats landscape as site, image, symbol, and ideal through a historical examination of the major themes and issues in the forms and functions of landscape and its representation in the European and, to a certain extent, the American tradition from antiquity to the present day. These historical discussions will also form a framework for observations on and analyses of contemporary landscape, both as experienced and as an idea. This course presumes no prior knowledge of the field. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 4296, + "label": "VIS 114A", + "title": "Landscape and Memory (4)" + }, + { + "dept": "VIS", + "description": "This seminar focuses on the dynamic and at times contentious relationship between antiquity and the Middle Ages as it played out in various environments\u2014physical, social, cultural, and intellectual\u2014from Rome to Constantinople to Venice, Pisa, and Florence. After considering classic and contemporary formulations of the problem, it turns to in-depth examination of the architecture, images, objects, and techniques at sites in the history of art, where fragments were deployed and displayed. This course fulfills the theory requirement and seminar requirement in the art history program. Recommended preparation: VIS 20 or VIS 112. ", + "edges_from": [], + "edges_to": [], + "id": 4297, + "label": "VIS 114B", + "title": "The Fragment: Uses and Theories (4)" + }, + { + "dept": "PHYS", + "description": "Physics I: Probabilistic Models and Simulations (4)", + "edges_from": [], + "edges_to": [], + "id": 4298, + "label": "PHYS 141", + "title": "Computational" + }, + { + "dept": "COMM", + "description": "What role does popular culture play in shaping and creating our shared memory of the past? The course examines diverse sources such as school textbooks, monuments, holidays and commemorations, museums, films, music, and tourist attractions. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4299, + "label": "COMM 145", + "title": "History, Memory, and Popular Culture (4)" + }, + { + "dept": "COMM", + "description": "Course will explore the politics and culture of the 1970s through the lens of network television programming and the decade\u2019s most provocative sitcoms, dramas, variety shows, and news features. Students will analyze television episodes and read relevant media studies scholarship. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4300, + "label": "COMM 144", + "title": "American Television in the 1970s (4)" + }, + { + "dept": "COMM", + "description": "Analysis of the changing content and sociopolitical role in Latin America of contemporary media, including the \u201cnew cinema\u201d movement, recent developments in film, and popular television programming, including the telenovela. Examples drawn from Mexico, Brazil, Cuba, and other countries. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4301, + "label": "COMM 140", + "title": "Cinema in Latin America (4)" + }, + { + "dept": "COMM", + "description": "Focuses on science fiction\u2019s critical investigation of history, identity, and society across a range of media forms, including film, television, and literature. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4302, + "label": "COMM 143", + "title": "Science Fiction (4)" + }, + { + "dept": "COGS", + "description": "Research Methods in Cognitive Science (2-2-2)", + "edges_from": [], + "edges_to": [], + "id": 4303, + "label": "COGS 211A-B-C", + "title": "" + }, + { + "dept": "TDHT", + "description": "and Medieval Theatre (4)", + "edges_from": [], + "edges_to": [], + "id": 4304, + "label": "TDHT 21", + "title": "Ancient" + }, + { + "dept": "TDHT", + "description": "Theatre (4)", + "edges_from": [], + "edges_to": [], + "id": 4305, + "label": "TDHT 23", + "title": "Twentieth-Century" + }, + { + "dept": "TDHT", + "description": "1500\u20131900 (4)", + "edges_from": [], + "edges_to": [], + "id": 4306, + "label": "TDHT 22", + "title": "Theatre" + }, + { + "dept": "EDS", + "description": "Develop teachers\u2019 knowledge base (knowledge of mathematics content, pedagogy, and student learning) in the context of advanced mathematics. This course builds on the previous courses where these components of knowledge were addressed exclusively in the context of high-school mathematics. ", + "edges_from": [ + 132, + 4308, + 405, + 4309 + ], + "edges_to": [], + "id": 4307, + "label": "EDS 121A/Math 121A", + "title": "Foundations of Teaching and Learning Mathematics I (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4307 + ], + "id": 4308, + "label": "EDS 30M", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4307 + ], + "id": 4309, + "label": "EDS 30", + "title": "" + }, + { + "dept": "CSE", + "description": "Discussion on problems of current research interest in computer security. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4310, + "label": "CSE 229C", + "title": "Topics/Seminar in Computer Security (1\u20134)" + }, + { + "dept": "CSE", + "description": "Discussion on problems of current research interest in computer systems. Possible areas of focus include: distributed computing, computational grid, operating systems, fault-tolerant computing, storage systems, system services for the World Wide Web. Topics to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 4311, + "label": "CSE 229A", + "title": "Topics/Seminar in Computer Systems (1\u20134)" + }, + { + "dept": "ANAR", + "description": "This course trains students to design, implement, and conduct research in anthropological archaeology. Writing and presenting work in progress will take place in a seminar-like forum. ", + "edges_from": [], + "edges_to": [], + "id": 4312, + "label": "ANAR 170", + "title": "Research Design in Anthropological Archaeology (4)" + }, + { + "dept": "LTEU", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4313, + "label": "LTEU 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "HISC", + "description": "175/275. The Historical Sciences in the Nineteenth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 4314, + "label": "HISC", + "title": "" + }, + { + "dept": "BGSE", + "description": "Discussions of recent research in various aspects of biological research conducted by third- and fourth-year doctoral students in the Division of Biological Sciences. S/U grades only.", + "edges_from": [], + "edges_to": [], + "id": 4315, + "label": "BGSE 205", + "title": "Graduate Research Seminar (1)" + }, + { + "dept": "PHYS", + "description": "Physics II: PDE and Matrix Models (4)", + "edges_from": [], + "edges_to": [], + "id": 4316, + "label": "PHYS 142", + "title": "Computational" + }, + { + "dept": "BGSE", + "description": "Invited speakers from the United States and abroad, who are leaders in various aspects of biological research, describe their current research. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4317, + "label": "BGSE 200", + "title": "Seminar in Biology (1)" + }, + { + "dept": "CSE", + "description": "Computer science and engineering topics whose study involves reading and discussion by a small group of students under the supervision of a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4318, + "label": "CSE 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "CSE", + "description": "Independent reading or research by special arrangement with a faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4319, + "label": "CSE 199", + "title": "Independent Study for Undergraduates (2 or 4)" + }, + { + "dept": "CSE", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in CSE (at the upper-division level). Topics will vary from quarter to quarter. Senior seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4320, + "label": "CSE 192", + "title": "Senior Seminar in Computer Science and Engineering (1)" + }, + { + "dept": "CSE", + "description": "in Computer Science and Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 4321, + "label": "CSE 190", + "title": "Topics" + }, + { + "dept": "CSE", + "description": "A seminar course on topics of current interest. Students, as well as, the instructor will be actively involved in running the course/class. This course cannot be counted toward a technical elective. ", + "edges_from": [], + "edges_to": [], + "id": 4322, + "label": "CSE 191", + "title": "Seminar in CSE (1\u20134)" + }, + { + "dept": "CSE", + "description": "Study in Computer Science and Engineering (4, 8, 12, or 16)", + "edges_from": [], + "edges_to": [], + "id": 4323, + "label": "CSE 197", + "title": "Field" + }, + { + "dept": "CSE", + "description": "Teaching and tutorial assistance in a CSE course under the supervision of the instructor. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4324, + "label": "CSE 195", + "title": "Teaching (4)" + }, + { + "dept": "HIEU", + "description": "This course looks at sport in all of its social, cultural, political, and economic aspects. The starting point will be the emergence of modern sport in nineteenth-century Britain, but the focus will be global. Since the approach will be topical rather than chronological, students should already have a good knowledge of world history in the nineteenth and twentieth centuries. Students may not get credit for both HIEU 127 and HIEU 127D.", + "edges_from": [], + "edges_to": [], + "id": 4325, + "label": "HIEU 127D", + "title": "Sport in the Modern World (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with NANO 241.) This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science.", + "edges_from": [], + "edges_to": [], + "id": 4326, + "label": "CHEM 241", + "title": "Organic Nanomaterials (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with NANO 255.) Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electro-chemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 4327, + "label": "CHEM 240", + "title": "Electrochemistry (4)" + }, + { + "dept": "CHEM", + "description": "The primary aim of this course is to provide an overview of fundamental facts, concepts, and methods in glycoscience. The course is structured around major themes in the field starting from the basic understanding of structure and molecular interactions of carbohydrates, to the mechanisms of their biological functions in normal and disease states, to their applications in materials science and energy generation. This course is geared to introduce students with limited prior exposure to the field, supported by selected readings and class notes. May be coscheduled with CHEM 142. Recommended preparation: undergraduate-level organic chemistry and at least one previous course in either general biology, molecular biology, or cell biology is strongly encouraged.", + "edges_from": [], + "edges_to": [], + "id": 4328, + "label": "CHEM 242", + "title": "Introduction to Glycosciences (4)" + }, + { + "dept": "CHEM", + "description": "Methodology of mechanistic organic chemistry: integration of rate expressions, determination of rate constants, transition state theory; catalysis, kinetic orders, isotope effects, substituent effects, solvent effects, linear free energy relationship; product studies, stereochemistry; reactive intermediates; rapid reactions. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 4329, + "label": "CHEM 246", + "title": "Kinetics and Mechanism (4)" + }, + { + "dept": "SIO", + "description": "to Marine Biodiversity and Conservation\u2014Seminar (8)", + "edges_from": [], + "edges_to": [], + "id": 4330, + "label": "SIO 295S", + "title": "Introduction" + }, + { + "dept": "POLI", + "description": "This graduate course surveys theories of regional political and economic integration and international cooperation from a comparative and international relations perspective. We compare and contrast the European Union and other regional organizations. ", + "edges_from": [], + "edges_to": [], + "id": 4331, + "label": "POLI 245A", + "title": "Political Economy of Regional Integration (4)" + }, + { + "dept": "GPCO", + "description": "This is the first quarter of a two-quarter requirement. The capstone paper must demonstrate: mastery of the development of the methodologies for rigorous data collection and analysis; an in-depth understanding of the historical regulatory, political and/or economic processes surrounding the chosen \u201cproblem\u201d for analysis; mastery of the working details of the \u201cproblem\u201d at the center of the research; and a requisite level of research proficiency in Mandarin Chinese. Topic to be approved. ", + "edges_from": [], + "edges_to": [ + 4333 + ], + "id": 4332, + "label": "GPCO 470", + "title": "Master of Chinese Economics and Political Affairs Capstone (4)" + }, + { + "dept": "GPCO", + "description": "Students will work closely with the faculty of record and a GPS professor who specializes in the research who are chosen for the capstone project. This required second quarter will be focused on writing, developing a presentation, and presenting the work to either a real-world client or a panel of faculty. ", + "edges_from": [ + 4332 + ], + "edges_to": [], + "id": 4333, + "label": "GPCO 471", + "title": "MCEPA Capstone Part II (4)" + }, + { + "dept": "POLI", + "description": "An introduction to analytic techniques for assessing policy options in the field of national security. ", + "edges_from": [], + "edges_to": [], + "id": 4334, + "label": "POLI 142N", + "title": "American Defense Policy (4)" + }, + { + "dept": "POLI", + "description": "\u201cTerrorism\u201d uses \u201cillegitimate\u201d violence to achieve political goals. This course uses philosophical, historical, and contemporary material from distinct cultures to understand which actions are defined as \u201cterrorist,\u201d who uses them, why, and when, as well as the determinants of their effectiveness.", + "edges_from": [], + "edges_to": [], + "id": 4335, + "label": "POLI 142L", + "title": "Insurgency and Terrorism (4)" + }, + { + "dept": "POLI", + "description": "Lectures and readings examine US foreign policy in Europe, Latin America, and East Asia with attention to current problems with specific nations (e.g., Bosnia) and issues (e.g., terrorism). This course integrates historical, comparative, and foreign perspectives on regional security dynamics.", + "edges_from": [], + "edges_to": [], + "id": 4336, + "label": "POLI 142M", + "title": "US Foreign Policy/Regional Security (4)" + }, + { + "dept": "MAE", + "description": "Thermodynamics of gases for use in gas dynamics.", + "edges_from": [], + "edges_to": [ + 5926 + ], + "id": 4337, + "label": "MAE 220A", + "title": "Physics of Gases (4)" + }, + { + "dept": "POLI", + "description": "This course offers an exploration of general theories of the origins of warfare; the impact of the state on war in the modern world; and the microfoundations of combat and compliance in the context of the costs of war and military mobilization. The course should be of special interest to students in international relations and comparative politics.", + "edges_from": [], + "edges_to": [], + "id": 4338, + "label": "POLI 142K", + "title": "Politics and Warfare (4)" + }, + { + "dept": "POLI", + "description": "A survey of theories of defense policies and international security.", + "edges_from": [], + "edges_to": [], + "id": 4339, + "label": "POLI 142I", + "title": "National and International Security (4)" + }, + { + "dept": "POLI", + "description": "This course provides an overview of the challenges posed by chemical, biological, radiological, and nuclear weapons. Students will learn about how these weapons work, why states seek them, and attempts to prevent proliferation. We will delve into technical and policy challenges related to these weapons, and address how CBRN weapons shape national and regional security dynamics. Efforts to restrict the proliferation of these weapons will be discussed. We will also analyze CBRN terrorism.", + "edges_from": [], + "edges_to": [], + "id": 4340, + "label": "POLI 142D", + "title": "Weapons of Mass Destruction (4)" + }, + { + "dept": "POLI", + "description": "United States foreign policy from the colonial period to the present era. Systematic analysis of competing explanations for US policies\u2014strategic interests, economic requirements, or the vicissitudes of domestic politics. Interaction between the U.S., foreign states (particularly allies), and transnational actors are examined. ", + "edges_from": [ + 4342 + ], + "edges_to": [], + "id": 4341, + "label": "POLI 142A", + "title": "United States Foreign Policy (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 4341 + ], + "id": 4342, + "label": "POLI 12", + "title": "" + }, + { + "dept": "PHIL", + "description": "A forum for the presentation and discussion", + "edges_from": [], + "edges_to": [], + "id": 4343, + "label": "PHIL 209C", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "LTEN", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 4344, + "label": "LTEN 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "LTEN", + "description": "Similar to a 297, but a paper is required. Papers are usually on subject not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 4345, + "label": "LTEN 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "LTEN", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 4346, + "label": "LTEN 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "BENG", + "description": "The role of the cellular microenvironment in directing cell behavior and function in health and disease. Cell adherence and deformation and cell-mediated matrix remodeling. Bioengineering of the microenvironment in tissue engineering and regenerative medicine. ", + "edges_from": [ + 2962 + ], + "edges_to": [], + "id": 4347, + "label": "BENG 241B", + "title": "Tissue Engineering and Regenerative Medicine: Cell Microenvironment (4)" + }, + { + "dept": "COGS", + "description": "This sequence is an intensive research project. Students under faculty mentorship perform a thorough analysis of the problem and the literature, carry out original studies, and prepare oral and written presentations. Students should aim for a report of publishable quality. Letter grade required.", + "edges_from": [], + "edges_to": [], + "id": 4348, + "label": "COGS 210A-B-C", + "title": "Introduction to Research (4-4-4)" + }, + { + "dept": "GPIM", + "description": "This course focuses on developing an in-depth understanding of four of China\u2019s most dynamic industries. These are health care, consumer goods and retail, high technology, and eCommerce. Students will select one of these four industries for deep study and will gain an overview of the other three. The course includes extensive analysis of investment bank analyst reports and Harvard case studies. The course also includes simulated job interviews in the targeted industries. May not receive credit for both GPIM 429 and IRGN 490, Understanding China\u2019s Dynamic Industries.", + "edges_from": [], + "edges_to": [], + "id": 4349, + "label": "GPIM 429", + "title": "Understanding China\u2019s Dynamic Industries (4)" + }, + { + "dept": "GPIM", + "description": "This course examines the challenges of corporate leadership and entrepreneurship in China, with discussion of business in Taiwan as well. The issues are explored from the perspective of various types of companies in China, including start-ups, larger private sector companies, state-owned enterprises, and multinational companies. We explore various major industries in China, and explore various managerial challenges including strategy, HR, partnership development, and government relations. May not receive credit for GPIM 428 and IRGN 490. Management and Entrepreneurship in China.", + "edges_from": [], + "edges_to": [], + "id": 4350, + "label": "GPIM 428", + "title": "Management and Entrepreneurship in China (4)" + }, + { + "dept": "EDS", + "description": "The mutual influence of language, culture, and education will be explored; explanations of students\u2019 school successes and failures that employ linguistic and cultural variables will be considered; bilingualism and cultural transmission through education. This course is offered in Quito, Ecuador. It will integrate field experiences gained through organized class excursions and individual experiences of students. Program or materials fees may apply. Students may not receive credit for EDS 117GS and EDS 117 and SOCI 117. ", + "edges_from": [], + "edges_to": [], + "id": 4351, + "label": "EDS 117GS", + "title": "Language, Culture, and Education (4)" + }, + { + "dept": "GPIM", + "description": "The role and function of marketing in organizations and society. Attention is given to the analysis of markets and customers using primary and secondary sources of information and the planning, implementation, and evaluation of marketing strategies and programs. Renumbered from IRGN 420. Students may not receive credit for GPIM 420 and IRGN 420.", + "edges_from": [], + "edges_to": [], + "id": 4352, + "label": "GPIM 420", + "title": "Marketing (4)" + }, + { + "dept": "GPIM", + "description": "An analysis of the risk/return characteristics of different assets as perceived by different investors and their implications for security price behavior, emphasizing real world capital market behavior. International aspects include the role of exchange rate risk and international diversification. Renumbered from IRGN 422. Students may not receive credit for GPIM 422 and IRGN 422.", + "edges_from": [], + "edges_to": [], + "id": 4353, + "label": "GPIM 422", + "title": "Investments (4)" + }, + { + "dept": "GPIM", + "description": "The topics covered are dividend policy and capital structure, options, debt financing, and short- and long-term in financial planning. Course format will be mostly lectures with occasional cases. Some international aspects of corporate finance will also be discussed. Renumbered from IRGN 424. Students may not receive credit for GPIM 424 and IRGN 424.", + "edges_from": [], + "edges_to": [], + "id": 4354, + "label": "GPIM 424", + "title": "Corporate Finance (4)" + }, + { + "dept": "GPIM", + "description": "This course explores the major types of business systems prevalent in developing Asia. These include, for example, the state-owned enterprises of China, Chinese private sector firms, family-owned businesses of HK/Taiwan/SE Asia, Taiwanese tech firms, the Korean Chaebol, Indian promoter-led companies, and companies of developed markets that operate in the region. Course explores the nature of incentives, constraints, and decision making within these different types of firms. May not receive credit for GPIM 427 and IRGN 490. Competing Business Systems of Developing Asia.", + "edges_from": [], + "edges_to": [], + "id": 4355, + "label": "GPIM 427", + "title": "The Competing Business Systems of Developing Asia" + }, + { + "dept": "GPIM", + "description": "This course provides a case-based approach to developing and implementing strategy. It uses business cases from Asia (China, Japan, Taiwan, and South Korea) and Latin America (Mexico, Brazil, Chile, and Argentina) to help students develop a well-defined methodology for approaching strategic decision making that would be applicable to any situation. Renumbered from IRGN 426. Students may not receive credit for GPIM 426 and IRGN 426.", + "edges_from": [], + "edges_to": [], + "id": 4356, + "label": "GPIM 426", + "title": "Business Strategy in the Pacific Rim (4)" + }, + { + "dept": "VIS", + "description": "This course will explore photography as art and its long and complicated relationship with painting. Students will learn and be encouraged to experiment with the medium formally and conceptually. From studio and lighting techniques to collage, montage, constructed realities, installations, and projections. Program or materials fees may apply. Two production-course limitation. ", + "edges_from": [ + 2841, + 2842 + ], + "edges_to": [], + "id": 4357, + "label": "VIS 168", + "title": "Pictorialism and Constructed Reality (4)" + }, + { + "dept": "VIS", + "description": "The course seeks to bring the scientific laboratory into the artist and designers\u2019 studio, and vice versa. It explores intersections of advanced research in art/ design and science/technology. The course will focus on a specific laboratory innovation or a longer-term enduring challenge, and will conceive and prototype possible applications, scenarios, structures, and interventions. Course will be conducted in direct collaborations with other campus laboratories and research units. ", + "edges_from": [ + 4359 + ], + "edges_to": [], + "id": 4358, + "label": "VIS 162", + "title": "Speculative Science and Design Invention (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 562 + ], + "edges_to": [ + 4360, + 4358, + 5519 + ], + "id": 4359, + "label": "VIS 161", + "title": "" + }, + { + "dept": "VIS", + "description": "What is design as a way of knowing? The course examines critical contemporary topics in design theory, epistemology, research, and criticism. Students develop original critical and theoretical discourse. Topics draw from combinations of experimental and conceptual art, philosophy of technology, architectural theory and design, speculative fiction, bioethics and nanoethics, political philosophy of artificial intelligence and robotics, and critical engineering studies. ", + "edges_from": [ + 4359 + ], + "edges_to": [], + "id": 4360, + "label": "VIS 163", + "title": "Design Research and Criticism (4)" + }, + { + "dept": "VIS", + "description": "The photograph is an empirical object. This course will explore the use of photography as a tool to both understand and represent the world. Students will learn the history of the use of photography as evidence and as a tool of empirical knowledge. In a world where subjectivity is performed the students will be required to make a medium-sized work that engages the social in a creative way. Program or materials fees may apply. Two production-course limitation. ", + "edges_from": [ + 2841, + 2842 + ], + "edges_to": [], + "id": 4361, + "label": "VIS 167", + "title": "Social Engagement and Photography (4)" + }, + { + "dept": "Soc/G", + "description": "The history of the concept of culture; cultural pluralism in advanced industrialized societies; the differentiation of cultural institutions; cultural policy and social structure; culture as a property of social groups; conflict and accommodation over efforts to change and sustain traditional culture.", + "edges_from": [], + "edges_to": [], + "id": 4362, + "label": "Soc/G 216", + "title": "Sociology of Culture (4)" + }, + { + "dept": "Soc/G", + "description": "The causes and effects of social ranking in various societies. Theories of stratification; the dynamics of informal social grouping; determinants of institutional power, and the nature of struggles for power; the distribution of wealth and its causes; the dynamics of social mobility; the effects of stratification on life-styles, culture, and deviance. ", + "edges_from": [], + "edges_to": [], + "id": 4363, + "label": "Soc/G 212", + "title": "Social Stratification (4)" + }, + { + "dept": "Soc/G", + "description": "This course provides an overview and practical, hands-on introduction to some of the common tools employed in computational approaches to social science research. Students will acquire sufficient skills to use existing tools to conduct computational social science research, such as basic Python language. Recommended preparation: knowledge of or background in statistics. ", + "edges_from": [], + "edges_to": [], + "id": 4364, + "label": "Soc/G 211", + "title": "Introduction to Computational Social Science (4)" + }, + { + "dept": "SE", + "description": "Free-and forced-vibration of continuous systems such as axial and torsional vibrations of bars and transverse vibrations of various beams, membranes, and plates. Euler-Lagrange formulation using variational calculus. Rayleigh-Ritz method for approximation. Applications in vibration suppression/isolation. ", + "edges_from": [], + "edges_to": [], + "id": 4365, + "label": "SE 204", + "title": "Advanced Structural Dynamics (4)" + }, + { + "dept": "SE", + "description": "Introduction to probability theory and random processes. Dynamic analysis of linear structural systems subjected to stationary and nonstationary random excitations. Reliability studies related to first excursion and fatigue failures. Applications in earthquake engineering, offshore engineering, wind engineering, and aerospace engineering. Use of computer resources. Recommended preparation: basic knowledge of probability theory (SE 125 or equivalent). ", + "edges_from": [ + 3796 + ], + "edges_to": [], + "id": 4366, + "label": "SE 206", + "title": "Random Vibrations (4)" + }, + { + "dept": "COGS", + "description": "Empirical investigation of the nature of mathematics. How the human mind/brain creates abstract concepts, such as infinity, infinitesimals, imaginary numbers, or zero: embodiment, creativity, and history. Cognitive approaches that connect mathematics to human thought in general.", + "edges_from": [], + "edges_to": [], + "id": 4367, + "label": "COGS 252", + "title": "Cognitive Science of Mathematics (4)" + }, + { + "dept": "SE", + "description": "A course to be given at the discretion of the faculty in which topics of current interest in structural engineering will be presented.", + "edges_from": [], + "edges_to": [], + "id": 4368, + "label": "SE 207", + "title": "Topics in Structural Engineering (4)" + }, + { + "dept": "HITO", + "description": "This course tracks the worldwide interplay of sport and race. We begin with patterns of exclusion and participation on the part of African Americans, Latinos, and Native Americans. We then examine patterns of inequality across the globe.", + "edges_from": [], + "edges_to": [], + "id": 4369, + "label": "HITO 155", + "title": "Race, Sport, and Inequality in the Twentieth Century (4)" + }, + { + "dept": "AESE", + "description": "Architectural foundations, frameworks, standards, and infrastructures with an emphasis on layered architectures, loose coupling, architecture evolution, service- and component-oriented architectures, enterprise service buses, metadata and information virtualization, ontologies, Semantic Web, policy and governance, service-level agreements, information assurance essentials. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 960, + 4371, + 4372, + 4373, + 4374, + 2039 + ], + "edges_to": [ + 4380, + 4375 + ], + "id": 4370, + "label": "AESE 278B", + "title": "Enterprise Architecting (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 4370 + ], + "id": 4371, + "label": "ECE 205", + "title": "" + }, + { + "dept": "AESE", + "description": "", + "edges_from": [ + 960, + 4378, + 4372, + 4373 + ], + "edges_to": [ + 4370, + 4379, + 4372, + 4375 + ], + "id": 4372, + "label": "AESE 278A", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 4370, + 4379, + 4372 + ], + "id": 4373, + "label": "CSE 278A", + "title": "" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 4370, + 4375 + ], + "id": 4374, + "label": "MGT 291", + "title": "" + }, + { + "dept": "AESE", + "description": "Model-driven architecture and development concepts, business process and workflow modeling, structured analysis and IDEF modeling methods, object-, component- and service-orientation and the Unified Modeling Language, event- and stream models, colored Petri Nets, executable architectures, distributed simulation for performance analysis. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 4370, + 4372, + 4374, + 4375, + 4376, + 4377, + 4222 + ], + "edges_to": [ + 4379, + 4380, + 4375 + ], + "id": 4375, + "label": "AESE 278C", + "title": "Modeling, Simulation, and Analysis (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 4379, + 4375 + ], + "id": 4376, + "label": "ECE 206", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 4379, + 4375 + ], + "id": 4377, + "label": "CSE 278C", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 4379, + 4372 + ], + "id": 4378, + "label": "ECE 205A", + "title": "" + }, + { + "dept": "AESE", + "description": "Engineering tools and their use in defining the layered and service-oriented architectures, Unified Modeling Language and enterprise architecture tools, business and process modeling tools, visualization methods, data and information management tools, comprehensive domain modeling, architecture implementation via enterprise service buses. This workshop course meets once a quarter from Wednesday to Saturday from 8:00 a.m. to 5:00 p.m. for more intensive interaction. ", + "edges_from": [ + 960, + 4372, + 4373, + 4375, + 4376, + 4377, + 4378, + 4222 + ], + "edges_to": [ + 4380 + ], + "id": 4379, + "label": "AESE 278D", + "title": "Engineering Essentials for Open, Distributed Systems (4)" + }, + { + "dept": "AESE", + "description": "Fundamental aspects of pattern methodologies and re-use, requirements, design and architecture patterns, patterns for service-oriented architectures, enterprise application and integration patterns, E-business patterns, event-driven architectures and patterns for complex event processing, process patterns, architecture evolution and refactoring using patterns. This course will meet from 8:00 a.m. to 5:00 p.m. every alternating Friday and Saturday. ", + "edges_from": [ + 4370, + 4379, + 4375 + ], + "edges_to": [], + "id": 4380, + "label": "AESE 278E", + "title": "Patterns for Enterprise Architecting (4)" + }, + { + "dept": "Soc/G", + "description": "A survey of topics in urban sociology, including the city and suburb as social forms, civility among strangers, urbanism and culture, the political economy of metropolitan development, urban poverty, and racial residential segregation. Classical and contemporary approaches will be considered. ", + "edges_from": [], + "edges_to": [], + "id": 4381, + "label": "Soc/G 214 Urban Sociology (4)", + "title": "" + }, + { + "dept": "Classics", + "description": "F,W,S. May be repeated for credit. Satisfactory/Unsatisfactory", + "edges_from": [], + "edges_to": [], + "id": 4382, + "label": "Classics 299", + "title": "Dissertation Research (4\u201312)" + }, + { + "dept": "Classics", + "description": "F,W,S.", + "edges_from": [], + "edges_to": [], + "id": 4383, + "label": "Classics 290", + "title": "Research in Classics (4-4-4)" + }, + { + "dept": "HIGR", + "description": "Consideration and development of pedagogical methods appropriate to undergraduate teaching in the interdisciplinary Sixth College core sequence: Culture, Art, and Technology. Supervised by the core program faculty, director, and associate directors for the Writing and Thematic Programs.", + "edges_from": [], + "edges_to": [], + "id": 4384, + "label": "HIGR 502", + "title": "Apprentice Teaching in Culture, Art, and Technology (CAT) (4)" + }, + { + "dept": "HIGR", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 4385, + "label": "HIGR 500", + "title": "Apprentice Teaching in History (1\u20134)" + }, + { + "dept": "HIGR", + "description": "Teaching assistant for lower-level Hebrew courses, Judaic Studies 1, 2, 3. Must teach four or six sections and grade assignments.", + "edges_from": [], + "edges_to": [], + "id": 4386, + "label": "HIGR 505", + "title": "Apprentice Teaching in Judaic Studies (4)" + }, + { + "dept": "ETHN", + "description": "This course offers students a primer in ethnographic research. We examine all parts of the ethnographic process: from the concept work of project formulation and design to practical issues around the conduct of ethnographic research. This course is intended for graduate students at any stage of ethnographic research. Students may not receive credit for ANTH 287 and COGR 285 and ETHN 287.", + "edges_from": [], + "edges_to": [], + "id": 4387, + "label": "ETHN 287", + "title": "Ethnography Practicum (4)" + }, + { + "dept": "ETHN", + "description": "This course explores major currents in black intellectual history, and some paths less well tread, structured thematically, geographically, and chronologically from the nineteenth century to the present. Students read foundational primary sources and contemporary scholarly studies of African diasporic texts. ", + "edges_from": [], + "edges_to": [], + "id": 4388, + "label": "ETHN 280", + "title": "Black Thought: Roots and Routes (4)" + }, + { + "dept": "ETHN", + "description": "This course is a research seminar on themes of contemporary and historic importance in ethnic studies. Themes will be determined by instructor. Course may be repeated three times for credit.", + "edges_from": [], + "edges_to": [], + "id": 4389, + "label": "ETHN 289", + "title": "Topics in Ethnic Studies Research (4)" + }, + { + "dept": "PHIL", + "description": "A study of one or more figures in nineteenth-century philosophy, such as Schopenhauer, Nietzsche, Kierkegaard, Marx, Emerson, Thoreau, James, and Mill. The focus may be on particular figures or intellectual themes and traditions. May be repeated for credit with change of content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 4390, + "label": "PHIL 108", + "title": "Nineteenth-Century Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "Central texts, figures, and traditions in", + "edges_from": [], + "edges_to": [], + "id": 4391, + "label": "PHIL 109", + "title": "History of Analytic Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "A study of selected portions of The Critique of Pure Reason and other theoretical writings and/or his major works in moral theory. May be repeated for credit with change in content and approval of the instructor. ", + "edges_from": [ + 4393, + 4394, + 1423, + 1425, + 20, + 21 + ], + "edges_to": [], + "id": 4392, + "label": "PHIL 106", + "title": "Kant (4)" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 4392 + ], + "id": 4393, + "label": "PHIL 104", + "title": "" + }, + { + "dept": "PHIL", + "description": "", + "edges_from": [], + "edges_to": [ + 4392 + ], + "id": 4394, + "label": "PHIL 105", + "title": "" + }, + { + "dept": "Linguistics/French", + "description": "(2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 4395, + "label": "Linguistics/French (LIFR) 11", + "title": "Elementary French Reading" + }, + { + "dept": "PHIL", + "description": "A study of selected texts from the main schools of Hellenistic philosophy\u2014Stoicism, Epicureanism, and Skepticism. ", + "edges_from": [], + "edges_to": [], + "id": 4396, + "label": "PHIL 102", + "title": "Hellenistic Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "A study of Socrates and/or Plato through major dialogues of Plato. Possible topics include the virtues and happiness; weakness of the will; political authority and democracy; the theory of Forms and sensible flux; immortality; relativism, skepticism, and knowledge. May be repeated for credit with change of content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 4397, + "label": "PHIL 100", + "title": "Plato (4)" + }, + { + "dept": "PHIL", + "description": "A study of major issues in Aristotle\u2019s works, such as the categories; form and matter; substance, essence, and accident; the soul; virtue, happiness, and politics. ", + "edges_from": [], + "edges_to": [], + "id": 4398, + "label": "PHIL 101", + "title": "Aristotle (4)" + }, + { + "dept": "TDMV", + "description": "An introduction to the physical practice of yoga. A detailed investigation into the ancient somatic practice of energetically connecting the mind and body through kinesthetic and sensory awareness and how this supports and informs dance practices. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 4399, + "label": "TDMV 5", + "title": "Yoga for Dance (2)" + }, + { + "dept": "CHEM", + "description": "Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4400, + "label": "CHEM 219C", + "title": "Special Topics in Biochemistry (2 or 4)" + }, + { + "dept": "TDMV", + "description": "Introduction to contemporary somatic approaches to dance, building fundamental technical skills, kinetic and perceptual awareness, efficiency, and artistic expression. Choreographic sequences are analyzed through time space coordination and dynamics. Movement exploration includes improvisation and composition. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [ + 5615 + ], + "id": 4401, + "label": "TDMV 2", + "title": "Beginning Contemporary Dance (2)" + }, + { + "dept": "ERC", + "description": "Seminar: International Themes (1)", + "edges_from": [], + "edges_to": [], + "id": 4402, + "label": "ERC 20", + "title": "Freshman Honors" + }, + { + "dept": "Linguistics/Hindi", + "description": "(LIHI) 1C. Hindi Conversation (2.5)", + "edges_from": [], + "edges_to": [], + "id": 4403, + "label": "Linguistics/Hindi", + "title": "" + }, + { + "dept": "EDS", + "description": "This course examines schooling from an anthropological perspective, focusing on the impact of social and cultural forces on teaching and learning in US public schools using comparative materials from other societies and settings. ", + "edges_from": [], + "edges_to": [], + "id": 4404, + "label": "EDS 272", + "title": "Education and Culture (4)" + }, + { + "dept": "EDS", + "description": "and Equity in Educational Reform (4)", + "edges_from": [], + "edges_to": [], + "id": 4405, + "label": "EDS 270", + "title": "Leadership" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4406, + "label": "ETHN 139", + "title": "Chicano Literature in English (4)" + }, + { + "dept": "ETHN", + "description": "and Ethnicity in Modern American Society (4)", + "edges_from": [], + "edges_to": [], + "id": 4407, + "label": "ETHN 134", + "title": "Immigration" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with CGS 137.) This course will focus on the intersection of labor, class, race, ethnicity, gender, sexuality, and immigration in Latina cultural production. Examined from a socioeconomic, feminist, and cultural perspective, class readings will allow for historically grounded analyses of these issues. Course may be repeated as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4408, + "label": "ETHN 137", + "title": "Latina Issues and Cultural Production (4)" + }, + { + "dept": "ETHN", + "description": "\ufeff(Cross-listed with SIO 114.) Introduction to the scientific basis and critical analysis of environmental justice, with an emphasis on case studies, activism, and community engagement. This course will prepare students to critique and develop scientific models, research designs, and measurements consistent with environmental justice. Students may not receive credit for both ETHN 136 and SIO 114.", + "edges_from": [], + "edges_to": [], + "id": 4409, + "label": "ETHN 136", + "title": "The Science and Critical Analysis of Environmental Justice (4)" + }, + { + "dept": "ETHN", + "description": "Economic History of the Southwest II (4)", + "edges_from": [], + "edges_to": [], + "id": 4410, + "label": "ETHN 131", + "title": "Social and" + }, + { + "dept": "ETHN", + "description": "Economic History of the Southwest I (4)", + "edges_from": [], + "edges_to": [], + "id": 4411, + "label": "ETHN 130", + "title": "Social and" + }, + { + "dept": "ETHN", + "description": "(Cross-listed with TDHT 110.) Focusing on the contemporary evolution of Chicano dramatic literature, the course will analyze playwrights and theatre groups that express the Chicano experience in the United States, examining relevant actors, plays, and documentaries for their contributions to the developing Chicano theatre movement.", + "edges_from": [], + "edges_to": [], + "id": 4412, + "label": "ETHN 132", + "title": "Chicano Dramatic Literature (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 227 and Chem 222.)", + "edges_from": [], + "edges_to": [], + "id": 4413, + "label": "MAE 251", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 236.) Topics include phase equilibria and crystallography, defects and thermodynamics (Kr\u00f6ger-Vink notation), glass scona, electrical and ionic transport behavior, Bronner diagrams, powder synthesis and compaction, sintering theory and grain growth, mechanical optical, magnetic, electrical properties, fuel cells. ", + "edges_from": [], + "edges_to": [], + "id": 4414, + "label": "MAE 253", + "title": "Advanced Ceramics (4)" + }, + { + "dept": "MAE", + "description": "Layer and Renewable Energy Meteorology (4)", + "edges_from": [], + "edges_to": [], + "id": 4415, + "label": "MAE 255", + "title": "Boundary" + }, + { + "dept": "MAE", + "description": "(Cross-listed with MATS 256.) This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor, and chemical structures, and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 4416, + "label": "MAE 254", + "title": "Energy Materials and Applications (4)" + }, + { + "dept": "HINE", + "description": "186/286. Special Topics in Middle Eastern History (4)", + "edges_from": [], + "edges_to": [], + "id": 4417, + "label": "HINE", + "title": "" + }, + { + "dept": "MAE", + "description": "Global insolation heat engine; solar-wind coupling; regional/seasonal insolation patterns; atmospheric radiation balance; RTE models; scattering; optical depth and transmittance of cloud layers; Schwarzschild\u2019s equation; absorption/emission lines; rotational, vibrational and electronic transitions; Doppler/pressure broadening; Elsasser/Malkmus/Edwards models; solution methods. ", + "edges_from": [], + "edges_to": [], + "id": 4418, + "label": "MAE 256", + "title": "Radiative Transfer for Energy Applications (4)" + }, + { + "dept": "HIGR", + "description": "A two-quarter research seminar in Korean history. Seminar topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 4419, + "label": "HIGR 219B", + "title": "Research Seminar in Modern Korean History (4)" + }, + { + "dept": "HIGR", + "description": "A two-quarter research seminar in Korean history. A paper, based on original research, will be due in HIGR 219B. Seminar topics will vary.", + "edges_from": [], + "edges_to": [], + "id": 4420, + "label": "HIGR 219A", + "title": "Research Seminar in Modern Korean History (4)" + }, + { + "dept": "ANBI", + "description": "The course will explore the major epidemiological transitions from ape-like ancestors to foraging tribes, farmers, and pastoralists to the global metropolitan primate we now are. We will focus on how diseases have shaped humans and how humans have shaped disease. ", + "edges_from": [], + "edges_to": [], + "id": 4421, + "label": "ANBI 139", + "title": "Evolution of Human Disease (4)" + }, + { + "dept": "ANBI", + "description": "The great apes are our closest living relatives and their ecology and evolution provide insights for human evolutionary history and perhaps ideas about how to coexist with them. The course examines the natural history, behavior, ecology, and life history of each of the great apes including: orangutans, gorillas, bonobos, and chimpanzees. We will also consider conservation issues facing wild great apes, the welfare of apes in captivity, and ethical debates on ape \u201cpersonhood.\u201d ", + "edges_from": [], + "edges_to": [], + "id": 4422, + "label": "ANBI 133", + "title": "Planet of the Apes: Evolution and Ecology of the Great Ape (4)" + }, + { + "dept": "ANBI", + "description": "Biological and health consequences of racial and social inequalities. Psychosocial stress and measurement of health impact. Effects on disease and precursors to disease, including measures of molecular biology (e.g., epigenetics, gene expression), and biomarkers of inflammation, cardiometabolic health, and immune function. ", + "edges_from": [], + "edges_to": [], + "id": 4423, + "label": "ANBI 130", + "title": "Biology of Inequality (4)" + }, + { + "dept": "ANBI", + "description": "This course examines conceptions of race from both evolutionary and sociocultural perspectives. We will examine current patterns of human genetic variation and critically determine how these patterns map onto current and historic conceptions of race in the United States, and abroad. We will also explore the social construction of race throughout US history, the use of racial categories in biomedicine today, and consequences of racism and discrimination on health. ", + "edges_from": [], + "edges_to": [], + "id": 4424, + "label": "ANBI 131", + "title": "Biology and Culture of Race (4)" + }, + { + "dept": "ANBI", + "description": "This course explores how genetic data can be used to address core issues in human evolution. We will reconstruct population history and explore sources of human genetic diversity, such as migration and selection, based on studies of modern and ancient DNA. Through critical evaluation of recent publications, we will discuss the molecular evidence for the origin of modern humans, race, reconstruction of key human migrations, interactions with the environment, and implications for disease. May be coscheduled with ANTH 264. ", + "edges_from": [], + "edges_to": [], + "id": 4425, + "label": "ANBI 134", + "title": "Human Evolutionary Genetics (4)" + }, + { + "dept": "ANBI", + "description": "This course provides hands-on experience with the latest molecular techniques as applied to questions of anthropological and human genetic interest. Students will isolate their own DNA and generate DNA sequence data. They will also measure and analyze the percent of DNA methylation at certain regions of their own genomes. We will also discuss measurement of other nongenetic biomarkers that can be incorporated into anthropological research of living populations, e.g., cortisol measures. ", + "edges_from": [], + "edges_to": [], + "id": 4426, + "label": "ANBI 135", + "title": "Genetic Anthropology Lab Techniques (4)" + }, + { + "dept": "BENG", + "description": "A hallmark of bioinformatics is the computational analysis of complex data. The combination of statistics and algorithms produces statistical learning methods that automate the analysis of complex data. Such machine learning methods are widely used in systems biology and bioinformatics. This course provides an introduction to statistical learning and assumes familiarity with key statistical methods. Students may not receive credit for BENG 285 and ECE 204 and BNFO 285. ", + "edges_from": [ + 2499, + 1453, + 1455 + ], + "edges_to": [], + "id": 4427, + "label": "BENG 285/BNFO 285/ECE 204", + "title": "Statistical Learning in Bioinformatics (4)" + }, + { + "dept": "LTWL", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4428, + "label": "LTWL 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ECE", + "description": "Photonic properties of artificially engineered", + "edges_from": [], + "edges_to": [], + "id": 4429, + "label": "ECE 212CN", + "title": "Nanophotonics (4)" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 4430, + "label": "Linguistics/French (LIFR) 1A", + "title": "French Conversation (2.5)" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1BX. ", + "edges_from": [ + 4432, + 4433 + ], + "edges_to": [], + "id": 4431, + "label": "Linguistics/French (LIFR) 1B", + "title": "French Conversation (2.5)" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 5094, + 4431 + ], + "id": 4432, + "label": "LIFR 1AX", + "title": "" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 5094, + 4431 + ], + "id": 4433, + "label": "LIFR 1A", + "title": "" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIFR 1CX. ", + "edges_from": [ + 2402, + 2403 + ], + "edges_to": [], + "id": 4434, + "label": "Linguistics/French (LIFR) 1C", + "title": "French Conversation (2.5)" + }, + { + "dept": "Linguistics/French", + "description": "Small conversation sections taught entirely in French. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIFR 1DX. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 4436, + 4437 + ], + "edges_to": [], + "id": 4435, + "label": "Linguistics/French (LIFR) 1D", + "title": "French Conversation (2.5)" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 4616, + 4435, + 5348 + ], + "id": 4436, + "label": "LIFR 1CX", + "title": "" + }, + { + "dept": "LIFR", + "description": "", + "edges_from": [], + "edges_to": [ + 4616, + 4435, + 5348 + ], + "id": 4437, + "label": "LIFR 1C", + "title": "" + }, + { + "dept": "MAE", + "description": "to Applied Mathematics II (4)", + "edges_from": [], + "edges_to": [], + "id": 4438, + "label": "MAE 294B", + "title": "Introduction" + }, + { + "dept": "MAE", + "description": "to Applied Mathematics III (4)", + "edges_from": [], + "edges_to": [], + "id": 4439, + "label": "MAE 294C", + "title": "Introduction" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SIO 203A.) Review of exact methods for ordinary differential equations. Expansions about regular and irregular singular points. Introduction to asymptotic expansions. Approximate methods for nonlinear differential equations. Regular and singular perturbation theory. Additional topics depending upon the interests of the instructor.", + "edges_from": [], + "edges_to": [], + "id": 4440, + "label": "MAE 294A", + "title": "Introduction to Applied Mathematics (4)" + }, + { + "dept": "HIEA", + "description": "Ming was considered absolutist, closed, and stagnant. Nowadays its vibrant economy and culture are celebrated. We pair scholarship with primary sources to explore Ming\u2019s complexities and learn how historians work. May be coscheduled with HIEA 266. ", + "edges_from": [], + "edges_to": [], + "id": 4441, + "label": "HIEA 166/266", + "title": "Creating Ming Histories (4)" + }, + { + "dept": "PHYS", + "description": "This course deals with nonlinear phenomena in plasmas. Topics include: orbit perturbation theory, stochasticity, Arnold diffusion, nonlinear wave-particle and wave-wave interaction, resonance broadening, basics of fluid and plasma turbulence, closure methods, models of coherent structures. ", + "edges_from": [ + 469 + ], + "edges_to": [], + "id": 4442, + "label": "PHYS 235", + "title": "Nonlinear Plasma Theory (4)" + }, + { + "dept": "PHYS", + "description": "Physics of electronic materials. Semiconductors: bands, donors and acceptors, devices. Metals: Fermi surface, screening, optical properties. Insulators: dia-/ferro-electrics, displacive transitions. Magnets: dia-/para-/ferro-/antiferro-magnetism, phase transitions, low temperature properties. Superconductors: pairing, Meissner effect, flux quantization, BCS theory. ", + "edges_from": [ + 2772 + ], + "edges_to": [], + "id": 4443, + "label": "PHYS 232", + "title": "Electronic Materials (4)" + }, + { + "dept": "PHYS", + "description": "Selection of advanced topics in solid-state physics; material covered may vary from year to year. Examples of topics covered: disordered systems, surface physics, strong-coupling superconductivity, quantum Hall effect, low-dimensional solids, heavy fermion systems, high-temperature superconductivity, solid and liquid helium. ", + "edges_from": [ + 2771 + ], + "edges_to": [], + "id": 4444, + "label": "PHYS 230", + "title": "Advanced Solid-State Physics (4)" + }, + { + "dept": "GPEC", + "description": "This course is devoted to studying the central player in the globalization process: the multinational corporation. From the perspective of both developed and developing countries, we will analyze the determinants of flows of multinational firms and foreign direct investment across countries; explore the incentives a firm has to become an MNC, particularly those to split production, and its consequences on a domestic economy; and the transfer of managerial abilities across countries. May not receive credit for GPEC 422 and IRGN 490. Knowledge of STATA is assumed.", + "edges_from": [], + "edges_to": [], + "id": 4445, + "label": "GPEC 422", + "title": "Multinational Corporations (4)" + }, + { + "dept": "GPEC", + "description": "This course studies how the financial system works to support economic growth most of the time, but also how it gets into crisis and puts the economy into a recession. Course emphasizes the importance and incentive problems inherent in financial transactions. Renumbered from IRGN 421. Students may not receive credit for GPEC 421 and IRGN 421.", + "edges_from": [], + "edges_to": [], + "id": 4446, + "label": "GPEC 421", + "title": "Financial Institutions (4)" + }, + { + "dept": "PHYS", + "description": "From time to time a member of the regular faculty or a resident visitor will find it possible to give a self-contained short course on an advanced topic in his or her special area of research. This course is not offered on a regular basis, but it is estimated that it will be given once each academic year. (S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 4447, + "label": "PHYS 239", + "title": "Special Topics (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4448, + "label": "PHYS 238", + "title": "Observational Astrophysics Research Lab (4)" + }, + { + "dept": "BICD", + "description": "Developmental biology of animals at the tissue,", + "edges_from": [], + "edges_to": [], + "id": 4449, + "label": "BICD 130", + "title": "Embryos, Genes, and Development (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in computational and applied mathematics. In recent years, topics have included: applied functional analysis and approximation theory; numerical treatment of nonlinear partial differential equations; and geometric numerical integration for differential equations. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 4450, + "label": "MATH 277A", + "title": "Topics in Computational and Applied Mathematics (4)" + }, + { + "dept": "BICD", + "description": "An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection, HIV testing, education and approaches to therapy, and the social, political, and legal impacts of AIDS on the individual and society. In order to count for their major, biology majors must take the upper-division course, BICD 136. ", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [], + "id": 4451, + "label": "BICD 136", + "title": "AIDS Science and Society (4)" + }, + { + "dept": "SE", + "description": "Experimental/constitutive modeling perspectives on mechanical, hydraulic, thermal behavior of dry and saturated soils. Experimental techniques and methodologies presented; students will be able to perform key tests. Behavior of saturated sands and clays described based on key studies. Calibration of constitutive models for stress-strain behavior of soils, including hyperbolic, Mohr-Coulomb/Cam-Clay models. Modification of these models to consider thermal effects.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4452, + "label": "SE 248", + "title": "Engineering Properties of Soils (4)" + }, + { + "dept": "SE", + "description": "Application of finite element method to static and dynamic analysis of geotechnical structures. One-, 2-, and 3-D static and seismic response of earth structures/slopes/Foundation systems. Pore-pressure generation/effects during cycle loading. System identification using strong motion downhole-array data. Use of computer resources required. ", + "edges_from": [], + "edges_to": [], + "id": 4453, + "label": "SE 244", + "title": "Numerical Methods in Geomechanics (4)" + }, + { + "dept": "SE", + "description": "Concepts underpinning mechanical, hydraulic, chemical and inclusion-based methods of ground improvement will be discussed. Students will be able to understand the advantages, disadvantages and limitations of the various methods; and develop a conceptual design for the most appropriate improvement strategy. Recommended Preparation: SE 181 or equivalent background in the physics and engineering properties of soil. ", + "edges_from": [], + "edges_to": [], + "id": 4454, + "label": "SE 247", + "title": "Ground Improvement (4)" + }, + { + "dept": "SE", + "description": "Application of soil mechanics to the analysis, design, and construction of foundations for structures. Soil exploration, sampling, and in-situ testing techniques. Stress distribution and settlement of structures. Bearing capacities of shallow foundations and effects on structural design. Analysis of axial and lateral capacity of deep foundations, including drilled piers and driven piles. ", + "edges_from": [], + "edges_to": [], + "id": 4455, + "label": "SE 242", + "title": "Foundation Engineering (4)" + }, + { + "dept": "SE", + "description": "Advanced treatment of the dynamic interaction between soils and structures. Dynamic response of shallow and embedded foundations. Kinematic and inertial interaction. General computational and approximate analytical methods of analysis. ", + "edges_from": [ + 4011, + 3796 + ], + "edges_to": [], + "id": 4456, + "label": "SE 243", + "title": "Soil-Structure Interaction (4)" + }, + { + "dept": "HIUS", + "description": "This course considers how cultural processes have shaped histories of the Civil War and Reconstruction. Students will analyze the relationship between popular culture and major themes of the era through the use of literature, texts, film, television, and print images. Students who took HIUS 132 cannot repeat this course.", + "edges_from": [], + "edges_to": [], + "id": 4457, + "label": "HIUS 132S", + "title": "The Civil War and Reconstruction in Popular Culture (4)" + }, + { + "dept": "MGT", + "description": "This course covers concepts and theories useful in understanding and", + "edges_from": [], + "edges_to": [], + "id": 4458, + "label": "MGT 256", + "title": "Consumer Behavior Research (4)" + }, + { + "dept": "MGT", + "description": "Theories/research about behavior of employees/managers in organizations,", + "edges_from": [], + "edges_to": [], + "id": 4459, + "label": "MGT 257", + "title": "Behavior in Organizations (4)" + }, + { + "dept": "MGT", + "description": "This course introduces students to theories and research in the field", + "edges_from": [], + "edges_to": [], + "id": 4460, + "label": "MGT 255", + "title": "Psychology and Decision Making (4)" + }, + { + "dept": "LTWL", + "description": "This course examines the relationship between cinema and Islam. It looks at how Islam is represented through various cinematic genres and historical periods from 1920s to the present.", + "edges_from": [], + "edges_to": [], + "id": 4461, + "label": "LTWL 144", + "title": "Islam and Cinema (4)" + }, + { + "dept": "LTWL", + "description": "This course sets out to explore the relation between the novel and the \u201cdependent\u201d history of the Third World, contrasting and comparing the uses of history in the European novel as defined in the theoretical analysis of Lukacs with uses of history in the Third World novel. An analysis of major themes and movements common to selected ethnic literature in the United States and national literatures in the Third World.", + "edges_from": [], + "edges_to": [], + "id": 4462, + "label": "LTWL 140", + "title": "Novel and History in the Third World (4)" + }, + { + "dept": "LTWL", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4463, + "label": "LTWL 143", + "title": "Arab Literatures and Cultures (4)" + }, + { + "dept": "USP", + "description": "This course examines urban design\u2019s effects on physical activity. In field experience settings, students will learn about survey, accelerometer, observation, and GIS methods. Quality control, use of protocols, relevance to all ages, and international applications will also be emphasized. ", + "edges_from": [], + "edges_to": [], + "id": 4464, + "label": "USP 146", + "title": "Research Methods for Built Environment and Active Living (4)" + }, + { + "dept": "USP", + "description": "in Health-Care Programs/Poor and Underserved Population (4)", + "edges_from": [], + "edges_to": [], + "id": 4465, + "label": "USP 147", + "title": "Case Studies" + }, + { + "dept": "USP", + "description": "This course will analyze needs of populations, highlighting current major public health problems such as chronic and communicable diseases, environmental hazards of diseases, psychiatric problems and additional diseases, new social mores affecting health maintenance, consumer health awareness and health practices, special needs of economically and socially disadvantaged populations. The focus is on selected areas of public and environmental health, namely: epidemiology, preventive services in family health, communicable and chronic disease control, and occupational health. ", + "edges_from": [], + "edges_to": [], + "id": 4466, + "label": "USP 144", + "title": "Environmental and Preventive Health Issues (4)" + }, + { + "dept": "USP", + "description": "This course will provide a brief introduction to the nature and problems of aging, with emphasis on socioeconomic and health status; determinants of priorities of social and health policies will be examined through analysis of the structure and organization of selected programs for the elderly. Field visits will constitute part of the course. ", + "edges_from": [], + "edges_to": [], + "id": 4467, + "label": "USP 145", + "title": "Aging\u2014Social and Health Policy Issues (4)" + }, + { + "dept": "USP", + "description": "This course will provide an overview of the organization of health care within the context of the community with emphasis on the political, social, and cultural influences. It is concerned with the structure, objectives, and trends of major health and health-related programs in the United States to include sponsorship, financing, training and utilization of health personnel. ", + "edges_from": [], + "edges_to": [], + "id": 4468, + "label": "USP 143", + "title": "The US Health-Care System (4)" + }, + { + "dept": "GPIM", + "description": "This course introduces the core features of Japanese business and industrial organization, as well as Japanese management and HR practices. Business frameworks and concepts are introduced to enable students to analyze and evaluate organization change and the emergence of \u201cNew Japan\u201d companies. Renumbered from IRGN 411. Students may not receive credit for GPIM 411 and IRGN 411.", + "edges_from": [], + "edges_to": [], + "id": 4469, + "label": "GPIM 411", + "title": "Business and Management in Japan (4)" + }, + { + "dept": "USP", + "description": "This course will provide a historical and theoretical orientation for contemporary studies of the experience of mental illness and mental health-care policy in the American city, with critical attention to racial and ethnic disparities in diagnosis, treatment, and outcomes. ", + "edges_from": [], + "edges_to": [], + "id": 4470, + "label": "USP 149", + "title": "Madness and Urbanization (4)" + }, + { + "dept": "BENG", + "description": "Quantitative basic understanding of different", + "edges_from": [], + "edges_to": [], + "id": 4471, + "label": "BENG 242/MATS 257/NANO 257", + "title": "Polymer Science and Engineering (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 756 + ], + "id": 4472, + "label": "ECE 153", + "title": "" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 2207 + ], + "id": 4473, + "label": "PHYS 200A", + "title": "" + }, + { + "dept": "SE", + "description": "Classical methods of analysis for statically indeterminate structures. Development of computer codes for the analysis of civil, mechanical, and aerospace structures from the matrix formulation of the classical structural theory, through the direct stiffness formulation, to production-type structural analysis programs. ", + "edges_from": [ + 1529, + 914, + 915, + 3430 + ], + "edges_to": [], + "id": 4474, + "label": "SE 130A\u2013B", + "title": "Structural Analysis (4)" + }, + { + "dept": "COMM", + "description": "This course will critically examine the role of the mass media in sub-Saharan Africa in the areas of colonial rule, nationalist struggles, authoritarianism, and popular movements. It will examine general trends regionally and internationally, as well as individual national cases, from the early twentieth century to the Internet news services of the information age. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4475, + "label": "COMM 104F", + "title": "CMS: Africa (4)" + }, + { + "dept": "COMM", + "description": "The development of media systems and policies in Latin America and the Caribbean. Debates over dependency and cultural imperialism. The news media and the process of democratization. Development of the regional television industry. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4476, + "label": "COMM 104G", + "title": "CMS: Latin America and the Caribbean (4)" + }, + { + "dept": "COMM", + "description": "The development of media systems in Asia, focusing on India and China. Debates over nationalism, regionalism, globalization, new technologies, identity politics, censorship, privatization, and media piracy. Alignments and differences with North American and European media systems will also be considered. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4477, + "label": "COMM 104D", + "title": "CMS: Asia (4)" + }, + { + "dept": "COMM", + "description": "The development of media systems and policies in Europe. Differences between European and American journalism. Debates over the commercialization of television. The role of media in postcommunist societies in Eastern Europe. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4478, + "label": "COMM 104E", + "title": "CMS: Europe (4)" + }, + { + "dept": "COMM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4479, + "label": "COMM 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ANTH", + "description": "Survey of Mesoamerican archaeology focusing on highland Mexico. Topics covered: settling of Mesoamerica, agricultural origins, development of social complexity, rise of cities, emergence of large-scale states. ", + "edges_from": [ + 4481 + ], + "edges_to": [], + "id": 4480, + "label": "ANTH 291", + "title": "Archaeology of Highland Mexico (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4480 + ], + "id": 4481, + "label": "ANGR 291", + "title": "" + }, + { + "dept": "ANTH", + "description": "The Iron Age (ca. 1200\u2013586 BCE) represents", + "edges_from": [], + "edges_to": [], + "id": 4482, + "label": "ANTH 292", + "title": "Social Evolution/Iron Age Levant (4)" + }, + { + "dept": "ANTH", + "description": "Course examines theories for the causes of sociality in primates. Implications for our understanding of human evolution are considered. ", + "edges_from": [ + 4484 + ], + "edges_to": [], + "id": 4483, + "label": "ANTH 293", + "title": "Primate Socioecology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4483 + ], + "id": 4484, + "label": "ANGR 293", + "title": "" + }, + { + "dept": "ANTH", + "description": "The student will work on the master\u2019s thesis under the direction of the departmental committee chair. The course will be taken in the student\u2019s second year. S/U grades only. ", + "edges_from": [ + 4486 + ], + "edges_to": [], + "id": 4485, + "label": "ANTH 295", + "title": "Master\u2019s Thesis Preparation (1\u201312)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4485 + ], + "id": 4486, + "label": "ANGR 295", + "title": "" + }, + { + "dept": "ANTH", + "description": "The student will work in cooperation with his or her departmental committee to develop a research proposal for the doctoral research project. S/U grades only. ", + "edges_from": [ + 4488 + ], + "edges_to": [], + "id": 4487, + "label": "ANTH 296", + "title": "Dissertation Fieldwork Proposal Preparation (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4487 + ], + "id": 4488, + "label": "ANGR 296A", + "title": "" + }, + { + "dept": "ANTH", + "description": "Supervised advanced research studies with individual topics to be selected according to the student\u2019s special interests. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4489, + "label": "ANTH 297", + "title": "Research Practicum (1\u20134)" + }, + { + "dept": "ANTH", + "description": "Supervised study of individually selected anthropological topics under the direction of a member of the faculty. S/U grades only. ", + "edges_from": [ + 4491 + ], + "edges_to": [], + "id": 4490, + "label": "ANTH 298", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4490 + ], + "id": 4491, + "label": "ANGR 298", + "title": "" + }, + { + "dept": "ANTH", + "description": "S/U grades only. ", + "edges_from": [ + 4493 + ], + "edges_to": [], + "id": 4492, + "label": "ANTH 299", + "title": "Dissertation Research (1\u201312)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4492 + ], + "id": 4493, + "label": "ANGR 299", + "title": "" + }, + { + "dept": "TDGR", + "description": "The collaborative process from the rehearsal process through public performance. All participants will enroll in the same section, the same number of units. ", + "edges_from": [], + "edges_to": [], + "id": 4494, + "label": "TDGR 207", + "title": "Production (4)" + }, + { + "dept": "TDGR", + "description": "Faculty directed production, from the rehearsal process through public performance. All participants will enroll in the same section, the number of units depending upon degree of involvement. ", + "edges_from": [], + "edges_to": [], + "id": 4495, + "label": "TDGR 206", + "title": "Faculty Directed Production (4)" + }, + { + "dept": "TDGR", + "description": "A study of the dramatic elements of stage violence, and practical work in developing the physical skills necessary to fully realize violent moments on the stage. At the core of the study is the process from text to convincing theatrical action. Physical work revolves around basic principles of energy, focus, and center inherent in unarmed and weapons combat. ", + "edges_from": [], + "edges_to": [], + "id": 4496, + "label": "TDGR 201", + "title": "Stage Combat (2)" + }, + { + "dept": "TDGR", + "description": "A daily program of physical, vocal, and speech exercises designed to prepare the student to move in a focused way into specific class areas with minimum amount of warm-up time. The exercises work on development of flexibility, strength, and coordination throughout the body. Strong emphasis is placed on physical and mental centering within a structured and disciplined approach to preparation. ", + "edges_from": [], + "edges_to": [], + "id": 4497, + "label": "TDGR 200", + "title": "Dynamics (1)" + }, + { + "dept": "TDGR", + "description": "This course serves as a laboratory for experimentation in the choreographic strategies and structures of contemporary dance making. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 4498, + "label": "TDGR 208", + "title": "Dance Making Processes (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4499, + "label": "LTEN 127", + "title": "Victorian Poetry (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4500, + "label": "LTEN 124", + "title": "Topics: The Nineteenth Century (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4501, + "label": "LTEN 125", + "title": "Romantic Poetry (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4502, + "label": "LTEN 120", + "title": "Topics: The Eighteenth Century (4)" + }, + { + "dept": "NANO", + "description": "Metal casting processes, solidification, deformation processing, thermal processing: solutionizing, aging, and tempering, joining processes such as welding and brazing. The effect of processing route on microstructure and its effect on mechanical and physical properties will be explored.\u00a0NanoEngineering majors have priority enrollment. ", + "edges_from": [ + 2656 + ], + "edges_to": [], + "id": 4503, + "label": "NANO 158L", + "title": "Materials Processing Laboratory\u00a0(4)" + }, + { + "dept": "ENVR", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 4504, + "label": "ENVR 130", + "title": "Environmental Issues: Social Sciences" + }, + { + "dept": "BIMM", + "description": "(Cross-listed with Psych 133; however, biology majors must take the course as BIMM 116.) This interdisciplinary course provides an overview of the fundamental properties of daily biological clocks of diverse species, from humans to microbes. Emphasis is placed on the relevance of internal time keeping in wide-ranging contexts including human performance, health, and industry. ", + "edges_from": [ + 216, + 215, + 687 + ], + "edges_to": [], + "id": 4505, + "label": "BIMM 116", + "title": "Circadian Rhythms\u2014Biological Clocks (4)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 110B. Major GPA of 3.5 or better required. May be taken concurrently with Econ 110B or after successful completion of Econ 110B with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 4506, + "label": "ECON 110BH", + "title": "Honors Macroeconomics B (1)" + }, + { + "dept": "BENG", + "description": "A general survey of structure-function relationships", + "edges_from": [], + "edges_to": [], + "id": 4507, + "label": "BENG 230B", + "title": "Cell and Molecular Biology (4)" + }, + { + "dept": "BENG", + "description": "Cardiovascular Physiology (4)", + "edges_from": [], + "edges_to": [], + "id": 4508, + "label": "BENG 230C", + "title": "" + }, + { + "dept": "BENG", + "description": "Mechanics of breathing. Gas diffusion. Pulmonary", + "edges_from": [], + "edges_to": [], + "id": 4509, + "label": "BENG 230D", + "title": "Respiratory and Renal Physiology (4)" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with Chem 265.) The resolution revolution in cryo-electron microscopy has made this a key technology for the high-resolution determination of structures of macromolecular complexes, organelles, and cells. The basic principles of transmission electron microscopy, modern cryo-electron microscopy, image acquisition, and 3-D reconstruction will be discussed.\u00a0Examples from the research literature using this state-of-the-art technology will also be discussed. May be coscheduled with BIMM 162/Chem 165. Students may not receive credit for BGGN 262 and Chem 265.", + "edges_from": [], + "edges_to": [], + "id": 4510, + "label": "BGGN 262", + "title": "3-D Cryo-Electron Microscopy of Macromolecules and Cells (4)" + }, + { + "dept": "BGGN", + "description": "Introduction to the nonlinear dynamics of neurons and simple neural systems through nonlinear dynamics, bifurcation theory, and chaotic motions. The dynamics of single cells is considered at different levels of abstraction, e.g., biophysical and \u201creduced\u201d models for analysis of regularly spiking and bursting cells, their dynamical properties, and their representation in phase space. Laboratory exercises will accompany the lectures. Duplicate credit not allowed for cross-listed courses: BGGN 260, BENG 260, and PHYS 279. ", + "edges_from": [], + "edges_to": [], + "id": 4511, + "label": "BGGN 260", + "title": "Neurodynamics (4)" + }, + { + "dept": "BGGN", + "description": "Experiments that emphasize biophysical principles through hands-on experience, with an emphasis on the blending of physical measurements with a clearly identified biological problem. Exercises include the use of optical tweezers to measure viscous forces at the level of cellular organelles, the characterization of sensorimotor control in the fly during visually guided flight, and the use of microscopic imaging techniques to characterize cell motility and organelle transport. Includes instruction in LabView. Students are encouraged to attend the Phys 173 undergraduate lectures. ", + "edges_from": [ + 4513, + 4514, + 687 + ], + "edges_to": [], + "id": 4512, + "label": "BGGN 266", + "title": "Advanced Laboratory in Biophysical Techniques (6)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [], + "edges_to": [ + 4512 + ], + "id": 4513, + "label": "PHYS 120A", + "title": "" + }, + { + "dept": "CHEM", + "description": "", + "edges_from": [], + "edges_to": [ + 4512 + ], + "id": 4514, + "label": "CHEM 6CL", + "title": "" + }, + { + "dept": "BGGN", + "description": "(Cross-listed with Chem 264.) An introduction of virus structures, how they are determined, and how they facilitate the various stages of the viral life cycle from host recognition and entry to replication, assembly, release, and transmission to uninfected host cells. Students will be required to complete a term paper. (May not be offered every year.) Recommended preparation: elementary biochemistry as treated in Chem 114A or BIBC 100 and a basic course in cell biology or consent of the instructor.", + "edges_from": [], + "edges_to": [], + "id": 4515, + "label": "BGGN 264", + "title": "Structural Biology of Viruses (4)" + }, + { + "dept": "BIPN", + "description": "The course will cover a broad anatomical and functional description of the human nervous system and explore evidence implicating key brain areas in specific functions. This course will discuss modern techniques and the use of model organisms for dissecting the anatomical organization of the brain. ", + "edges_from": [ + 1147, + 687 + ], + "edges_to": [], + "id": 4516, + "label": "BIPN 160", + "title": "Neuroanatomy (4)" + }, + { + "dept": "LTCS", + "description": "This course is designed to complement LTCS 50, Introduction to Cultural Studies. In this course, cultural studies methods are further introduced and applied to various concrete topics in order to illustrate the practical analysis of culture and cultural forms.", + "edges_from": [], + "edges_to": [], + "id": 4517, + "label": "LTCS 52", + "title": "Topics in Cultural Studies (4)" + }, + { + "dept": "LTCS", + "description": "An introduction to cultural studies with a focus on the following areas: literary and historical studies, popular culture, women\u2019s studies, ethnic studies, science studies, and gay/lesbian studies. Particular emphasis on the question of \u201ccultural practices\u201d and their social and political conditions and effects.", + "edges_from": [], + "edges_to": [], + "id": 4518, + "label": "LTCS 50", + "title": "Introduction to Cultural Studies (4)" + }, + { + "dept": "NANO", + "description": "Advanced topics in characterizing nanomaterials using synchrotron X-ray sources. Introduction to synchrotron sources, X-ray interaction with matter, spectroscopic determination of electronic properties of nanomagnetic, structural determination using scattering techniques and X-ray imaging techniques. Cross-listed with CENG 230. Students may not receive credit for both NANO 230 and CENG 230. ", + "edges_from": [], + "edges_to": [], + "id": 4519, + "label": "NANO 230", + "title": "Synchrotron Characterization of Nanomaterials (4)" + }, + { + "dept": "NANO", + "description": "Engineering principles of nanofabrication. Topics include: photo-, electron beam, and nanoimprint lithography, block copolymers and self-assembled monolayers, colloidal assembly, biological nanofabrication. Relevance to applications in energy, electronics, and medicine will be discussed.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4520, + "label": "NANO 234", + "title": "Advanced Nanoscale Fabrication (4)" + }, + { + "dept": "NANO", + "description": "Fundamental nanomanufacturing science and engineering, top-down nanomanufacturing processes, bottom-up nanomanufacturing processes, integrated top-down and bottom-up nanofabrication processes, three-dimensional nanomanufacturing, nanomanufacturing systems, nanometrology, nanomanufactured devices for medicine, life sciences, energy, and defense applications.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4521, + "label": "NANO 239", + "title": "Nanomanufacturing (4)" + }, + { + "dept": "NANO", + "description": "Scanning electron microscopy (SEM) detectors, imaging, image interpretation, and artifacts, introduction to lenses, electron beam-specimen interactions. Operating principles and capabilities for atomic force microscopy and scanning tunneling microscopy, scanning optical microscopy and scanning transmission electron microscopy.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4522, + "label": "NANO 238", + "title": "Scanning Probe Microscopy (4)" + }, + { + "dept": "MATH", + "description": "Numerical differentiation and integration. Ordinary differential equations and their numerical solution. Basic existence and stability theory. Difference equations. Boundary value problems. ", + "edges_from": [ + 1217, + 571, + 1351 + ], + "edges_to": [], + "id": 4523, + "label": "MATH 170C", + "title": "Introduction to Numerical Analysis: Ordinary Differential Equations (4)" + }, + { + "dept": "PHIL", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4524, + "label": "PHIL 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "BIBC", + "description": "Nearly all interactions between organisms, including host-pathogen interactions and mate attraction, have a chemical basis. Plants and microorganisms are the dominant life forms on earth and remain a major source of pharmaceutical leads. Students in this course will utilize biochemical methods to extract, fractionate, and analyze plant and microbial compounds of medicinal and ecological significance including antibiotics, growth regulators, toxins, and signaling molecules. Students use own laptops. Course requires field studies. Transportation not provided by the university. Students must comply with all risk management policies and procedures. Course materials fees will be applied. ", + "edges_from": [ + 240, + 589 + ], + "edges_to": [], + "id": 4525, + "label": "BIBC 151", + "title": "Chemistry of Biological Interactions (4)" + }, + { + "dept": "ANAR", + "description": "The history and culture of the Inca Empire of South America and its fatal encounter with the West. Archaeological excavations, accounts from the sixteenth and seventeenth centuries, and ethnographies of present-day peoples of the Andes are explored. ", + "edges_from": [], + "edges_to": [], + "id": 4526, + "label": "ANAR 158", + "title": "The Inca: Empire of the Andes (4)" + }, + { + "dept": "COGS", + "description": "This course reviews research investigating the neural bases for human mental processes, including processing of affective, social, linguistic, and visuospatial information, as well as memory, attention, and executive functions. Also discussed are brain development and brain aging, and the nature of intelligence and creativity. ", + "edges_from": [ + 1630 + ], + "edges_to": [ + 3412 + ], + "id": 4527, + "label": "COGS 107C", + "title": "Cognitive Neuroscience (4)" + }, + { + "dept": "LTCS", + "description": "Selected topics on the construction of national cultural identities. Investigation of the dynamics of canon formation and nation building in specific historical contexts. May be taken up to three times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4528, + "label": "LTCS 260", + "title": "National Cultures (4)" + }, + { + "dept": "HITO", + "description": "Students will produce creative video projects by conducting interviews and drawing from relevant texts, lectures, archival resources, and other materials to expand and deepen their understanding of the Holocaust and help contribute to the body of work documenting this period in history.", + "edges_from": [], + "edges_to": [], + "id": 4529, + "label": "HITO 107", + "title": "Holocaust Video Production (4)" + }, + { + "dept": "CSE", + "description": "Robotics has the potential to improve well-being for millions of people, support care givers, and aid the clinical workforce. This course brings together engineers, clinicians, and end-users to explore this exciting new field. It is project-based, interactive, and hands on, and involves working closely with stakeholders to develop prototypes that solve real-world problems.\u00a0Students will explore the latest research in healthcare robotics, human-robot teaming, and health design. JSOE students should be comfortable building and experimenting within their area of expertise (e.g., CSE, software development, MAE, rapid prototyping). Students with clinical backgrounds should be familiar with translational research methods. Students may not receive credit for CSE 276D and CSE 291 (H00) taught spring 2017 with the same subtitle. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4530, + "label": "CSE 276D", + "title": "Healthcare Robotics (4)" + }, + { + "dept": "CSE", + "description": "Robots are entering human spaces. How do we make them functional, useful, and acceptable? This course explores the core computational, engineering, and experimental challenges in human-robot interaction. Course topics include shared autonomy, perception of people and context, coordination, collaboration, human-guided learning, robot design, and experimental robotics. Students will review seminal and recent papers in the field and engage in team-based projects with physical, mobile robots. This class requires expertise in software development. Prior exposure to robotics, computer vision, or machine learning is recommended. Students should be comfortable reading and analyzing scientific papers at the graduate level. Students may not receive credit for CSE 276B and CSE 291 (A00) taught winter 2017 with the same subtitle. ", + "edges_from": [], + "edges_to": [], + "id": 4531, + "label": "CSE 276B", + "title": "Human Robot Interaction (4)" + }, + { + "dept": "CSE", + "description": "The course will provide a comprehensive introduction to the key mathematical concepts used for modeling, implementing, and evaluation of robot systems. The course will use small home assignments tasks and a larger robot project to exercise the topics covered in class. The students should have a basic knowledge of mathematics and know one or more programming languages such as Python or Matlab for completion of homework assignments. ", + "edges_from": [], + "edges_to": [], + "id": 4532, + "label": "CSE 276C", + "title": "Mathematics for Robotics (4)" + }, + { + "dept": "CHEM", + "description": "Selection of topics of current interest. May be repeated for credit when topics vary. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 4533, + "label": "CHEM 229", + "title": "Special Topics in Inorganic Chemistry (2\u20134)" + }, + { + "dept": "CSE", + "description": "This course provides an introduction to the fundamentals of robotics across kinematics, sensor systems, estimation, control, and planning. The contents include introduction to robotics in general, kinematics of robot systems, robot arm systems, sensors for robots, basic vision for robots, estimation methods, perception, robot localization and navigation, control of robot systems, robot motion planning, robot task planning, robot architectures, and evaluation of robot systems. It is expected that students have a solid understanding of linear algebra, can program in Python or C++, and have a basic understanding of methods for reasoning under uncertainty. ", + "edges_from": [], + "edges_to": [], + "id": 4534, + "label": "CSE 276A", + "title": "Introduction to Robotics (4)" + }, + { + "dept": "CHEM", + "description": "Seminars presented by faculty and students on topics of current interest in inorganic chemistry, including areas such as bioinorganic, organometallic and physical-inorganic chemistry. The course is designed to promote a critical evaluation of the available data in specialized areas of inorganic chemistry. Each quarter three or four different topics will be discussed. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4535, + "label": "CHEM 227", + "title": "Seminar in Inorganic Chemistry (2)" + }, + { + "dept": "CHEM", + "description": "Advanced aspects of structure and bonding in transition metal", + "edges_from": [], + "edges_to": [], + "id": 4536, + "label": "CHEM 226", + "title": "Transition Metal Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "The role of metal", + "edges_from": [], + "edges_to": [], + "id": 4537, + "label": "CHEM 225", + "title": "Bioinorganic Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "Application of physical techniques to the elucidation of the structure of inorganic complex ions and organometallic compounds. Topics covered include group theory, and its application to vibrational, magnetic resonance and Raman spectroscopy. (May not be offered every year.)", + "edges_from": [], + "edges_to": [], + "id": 4538, + "label": "CHEM 224", + "title": "Spectroscopic Techniques (4)" + }, + { + "dept": "CHEM", + "description": "A survey of this field from a synthetic and mechanistic viewpoint. Fundamental reactivity patterns for transition element organometallic compounds will be discussed and organized according to periodic trends. Transition metal catalyzed reactions of importance to organic synthesis and industrial chemistry will be presented from a mechanistic perspective. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4539, + "label": "CHEM 223", + "title": "Organometallic Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with MATS 227.) Key concepts in the atomic structure and bonding of solids such as metals, ceramics, and semiconductors. Symmetry operations, point groups, lattice types, space groups, simple and complex inorganic compounds, structure/property comparisons, structure determination with X-ray diffraction. Ionic, covalent, metallic bonding compared with physical properties. Atomic and molecular orbitals, bands versus bonds, free electron theory.", + "edges_from": [], + "edges_to": [], + "id": 4540, + "label": "CHEM 222", + "title": "Structure and Analysis of Solids (4)" + }, + { + "dept": "CHEM", + "description": "The aim of this course is to develop an appreciation for a variety of topics in signal transduction. We will discuss several historical developments while the focus will be on current issues. Both experimental approaches and results will be included in our discussions. Topics may vary from year to year. ", + "edges_from": [], + "edges_to": [], + "id": 4541, + "label": "CHEM 221", + "title": "Signal Transduction (4)" + }, + { + "dept": "CHEM", + "description": "Modulation cellular activity and influencing viral fate involve", + "edges_from": [], + "edges_to": [], + "id": 4542, + "label": "CHEM 220", + "title": "Regulatory Circuits in Cells (4)" + }, + { + "dept": "VIS", + "description": "Art Making: Three-Dimensional Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 4543, + "label": "VIS 3", + "title": "Introduction to" + }, + { + "dept": "VIS", + "description": "Art Making: Motion and Time Based Art (4)", + "edges_from": [], + "edges_to": [], + "id": 4544, + "label": "VIS 2", + "title": "Introduction to" + }, + { + "dept": "VIS", + "description": "Art Making: Two-Dimensional Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 4545, + "label": "VIS 1", + "title": "Introduction to" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 4562, + 4621 + ], + "id": 4546, + "label": "GPCO 415", + "title": "Accounting and Finance for Policy Makers (4)" + }, + { + "dept": "POLI", + "description": "Explores formal analytic and primarily game-theoretic research in international relations with emphasis on conflict and bargaining. Topics include: causes of war and peace, conventional and nuclear deterrence, crisis bargaining, arms race, and two-level games.", + "edges_from": [], + "edges_to": [], + "id": 4547, + "label": "POLI 247B", + "title": "Formal Models in International Relations (4)" + }, + { + "dept": "POLI", + "description": "This course is a survey of the history of international relations from 1618 to 1945. The focus is on diplomacy and war-fighting in their social, economic, political, cultural, and technological contexts. Formative conflicts will be examined in detail. ", + "edges_from": [], + "edges_to": [], + "id": 4548, + "label": "POLI 247C", + "title": "History of International Relations (4)" + }, + { + "dept": "GPCO", + "description": "Development of analytic tools for understanding international relations with applications to contemporary problems such as the environment, nuclear proliferation, human rights, humanitarian interventions, and the roots of conflict and cooperation among countries. Renumbered from IRCO 410. Students may not receive credit for GPCO 410 and IRCO 410. ", + "edges_from": [], + "edges_to": [], + "id": 4549, + "label": "GPCO 410", + "title": "International Politics and Security (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4550, + "label": "GPCO 412", + "title": "Globalization, the World System, and the Pacific (4)" + }, + { + "dept": "POLI", + "description": "International migration creates a distinct set of human rights challenges. This course examines the conflict between international legal obligations and domestic politics of citizenship, human rights, asylum, and human trafficking. ", + "edges_from": [], + "edges_to": [], + "id": 4551, + "label": "POLI 140D", + "title": "International Human Rights Law: Migrant Populations (4)" + }, + { + "dept": "POLI", + "description": "International law is central to the efforts to create a world order to limit armed conflict, regulate world economy, and set minimum standards for human rights. This course introduces international law and explains theories advanced by academic analysts and practitioners to explain its role. ", + "edges_from": [], + "edges_to": [], + "id": 4552, + "label": "POLI 140A", + "title": "International Law (4)" + }, + { + "dept": "POLI", + "description": "Introduction to the analytical and comparative study of revolutionary movements and related forms of political violence. Topics include: the classical paradigm; types of revolutionary episodes; psychological theories; ideology and belief systems; coups; insurgencies; civil wars; terrorism and revolutionary outcomes. ", + "edges_from": [], + "edges_to": [], + "id": 4553, + "label": "POLI 140B", + "title": "Concepts and Aspects of Revolution (4)" + }, + { + "dept": "POLI", + "description": "A survey of international peacekeeping and peace enforcement in civil conflicts with a simulation of international diplomacy. ", + "edges_from": [], + "edges_to": [], + "id": 4554, + "label": "POLI 140C", + "title": "International Crisis Diplomacy (4)" + }, + { + "dept": "EDS", + "description": "Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the first course of a two-course series. ", + "edges_from": [], + "edges_to": [ + 4556 + ], + "id": 4555, + "label": "EDS 294A", + "title": "Colloquium on Educational Leadership (2)" + }, + { + "dept": "EDS", + "description": "Program faculty and visiting lecturers present leadership research in progress. Serves as a forum to discuss current research in educational leadership. This is the second course in a two-course series. ", + "edges_from": [ + 4555 + ], + "edges_to": [], + "id": 4556, + "label": "EDS 294B", + "title": "Colloquium on Educational Leadership (2)" + }, + { + "dept": "ECE", + "description": "Time-domain, state-variable formulation of", + "edges_from": [], + "edges_to": [], + "id": 4557, + "label": "ECE 171B", + "title": "Linear Control System Theory (4)" + }, + { + "dept": "GPIM", + "description": "This course examines the economics of decisions and strategies made within non-governmental organizations. Topics covered include how and why organizations emerge and the impact that owner and manager decisions have on workers, strategy, and success. Renumbered from IRGN 447. Students may not receive credit for GPIM 447 and IRGN 447.", + "edges_from": [], + "edges_to": [], + "id": 4558, + "label": "GPIM 447", + "title": "Organizational Economics (4)" + }, + { + "dept": "HIUS", + "description": "Cultural and political construction of the American nation. Topics include: how citizenship and national community were imagined and contested; importance of class, gender, and race in the nation\u2019s public sphere; debates over slavery, expansion, and democracy in defining national purpose. Requirements will vary for undergraduates, MA, and PhD students. Graduate students are required to submit a more substantial paper.", + "edges_from": [], + "edges_to": [], + "id": 4559, + "label": "HIUS 182", + "title": "Special Topics in Intellectual History (4)" + }, + { + "dept": "HIUS", + "description": "A colloquium dealing with special topics in the history of people of African descent in the United States. Course may be taken for credit up to three times, as topics will vary from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 4560, + "label": "HIUS 183", + "title": "Topics in African American History (4)" + }, + { + "dept": "HIUS", + "description": "Selected topics in US economic history. Course may be taken for credit a total of three times, as topics vary.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4561, + "label": "HIUS 186", + "title": "Topics in US Economic History (4)" + }, + { + "dept": "GPIM", + "description": "Focus on planning, managing, controlling, and evaluating costs for competitive advantage in global markets. Key topics will include cost structure, cost-based managerial decision making, strategic cost management, JIT/TQC cost management, and accounting control systems. Renumbered from IRGN 440. Students may not receive credit for GPIM 440 and IRGN 440. ", + "edges_from": [ + 4546 + ], + "edges_to": [], + "id": 4562, + "label": "GPIM 440", + "title": "Managerial Accounting and Control (4)" + }, + { + "dept": "Soc/G", + "description": "Assimilation, and Identity (4)", + "edges_from": [], + "edges_to": [], + "id": 4563, + "label": "Soc/G 278", + "title": "Immigration," + }, + { + "dept": "PSYC", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 4564, + "label": "PSYC 270A", + "title": "Introduction to Laboratory Experimentation I" + }, + { + "dept": "PSYC", + "description": "Final quarter of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4565, + "label": "PSYC 270C", + "title": "Introduction to Laboratory Experimentation III (4)" + }, + { + "dept": "PSYC", + "description": "Continuation of basic laboratory course, designed to introduce first-year graduate students to experimental methods in psychology. The student will select a research topic; do a thorough literature review of the area; design and carry out new, original studies of problems in the selected area; and prepare a final formal report of the study at the end of the spring quarter. This course is required of all first-year graduate students in the department. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4566, + "label": "PSYC 270B", + "title": "Introduction to Laboratory Experimentation II (4)" + }, + { + "dept": "MUS", + "description": "Studies Seminar in Creative Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 4567, + "label": "MUS 254", + "title": "Integrative" + }, + { + "dept": "MATH", + "description": "Probabilistic Foundations of Insurance. Short-term", + "edges_from": [], + "edges_to": [ + 4569 + ], + "id": 4568, + "label": "MATH 193A", + "title": "Actuarial Mathematics I (4)" + }, + { + "dept": "MATH", + "description": "Life Insurance and Annuities. Analysis of premiums and premium reserves. Introduction to multiple life functions and decrement models as time permits. ", + "edges_from": [ + 4568 + ], + "edges_to": [], + "id": 4569, + "label": "MATH 193B", + "title": "Actuarial Mathematics II (4)" + }, + { + "dept": "MATH", + "description": "Recommended for all students specializing in algebra. Basic topics include categorical algebra, commutative algebra, group representations, homological algebra, nonassociative algebra, ring theory. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [ + 1855 + ], + "edges_to": [], + "id": 4570, + "label": "MATH 201A", + "title": "Basic Topics in Algebra I (4)" + }, + { + "dept": "TDDE", + "description": "An advanced course based on the \u201cpractice\u201d of costume design, dealing with the solution finding process, from text to idea to realized work. ", + "edges_from": [ + 1418, + 4572 + ], + "edges_to": [], + "id": 4571, + "label": "TDDE 112", + "title": "Advanced Costume Design (4)" + }, + { + "dept": "TDDE", + "description": "", + "edges_from": [ + 1418 + ], + "edges_to": [ + 4571 + ], + "id": 4572, + "label": "TDDE 111", + "title": "" + }, + { + "dept": "HISC", + "description": "The role of technology in American history through the Civil War. Indigenous and colonial development, transportation infrastructures, and industrialization are explored to understand the connections among technology, society, and culture.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 4573, + "label": "HISC 120A", + "title": "Technology in America I (4)" + }, + { + "dept": "BENG", + "description": "Laboratory practices and design principles for biotechnology. Culture of microorganisms and mammalian cells, recombinant DNA bioreactor design and operation. Design and implementation of biosensors. A team design-based term project and oral presentation required. Course materials fees may apply. ", + "edges_from": [ + 345, + 2162 + ], + "edges_to": [], + "id": 4574, + "label": "BENG 162", + "title": "Biotechnology Laboratory (4)" + }, + { + "dept": "PHYS", + "description": "A combined analytic and mathematically-based numerical approach to the solution of common applied mathematics problems in physics and engineering. Topics: Fourier series and integrals, special functions, initial and boundary value problems, Green\u2019s functions; heat, Laplace and wave equations. ", + "edges_from": [ + 33, + 34, + 419, + 132, + 37, + 38, + 169, + 171, + 28, + 27, + 849, + 227, + 407, + 571, + 572, + 573, + 30 + ], + "edges_to": [ + 4577 + ], + "id": 4575, + "label": "PHYS 105A", + "title": "Mathematical and Computational Physics I (4)" + }, + { + "dept": "BENG", + "description": "Basic molecular biology and recombinant DNA technologies. Structure and function of biomolecules that decode genomes and perform energy conversion, enzymatic catalysis, and active transport. Metabolism of macromolecules. Molecular diagnostics. Design, engineering, and manufacture of proteins, genomes, cells, and biomolecular therapies. ", + "edges_from": [ + 270, + 687 + ], + "edges_to": [ + 5887 + ], + "id": 4576, + "label": "BENG 168", + "title": "Biomolecular Engineering (4)" + }, + { + "dept": "PHYS", + "description": "A continuation of Physics 105A covering selected advanced topics in applied mathematical and numerical methods. Topics include statistics, diffusion and Monte-Carlo simulations; Laplace equation and numerical methods for nonseparable geometries; waves in inhomogeneous media, WKB analysis; nonlinear systems and chaos. ", + "edges_from": [ + 419, + 132, + 169, + 171, + 849, + 227, + 407, + 571, + 572, + 573, + 4575 + ], + "edges_to": [], + "id": 4577, + "label": "PHYS 105B", + "title": "Mathematical and Computational Physics II (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical issues involved in the development of modern science, the growth of technology, and control of the natural environment. The interaction of science and technology with human nature and political and moral ideals. ", + "edges_from": [], + "edges_to": [], + "id": 4578, + "label": "PHIL 164", + "title": "Technology and Human Values (4)" + }, + { + "dept": "PHIL", + "description": "Examination of freedom and equality under the US Constitution, focusing on Supreme Court cases concerning discrimination on grounds of race, ethnic background, gender, undocumented status, wealth, and sexual orientation, and cases regarding contraceptives, abortion, interracial marriage, polygamy, and same-sex marriage. ", + "edges_from": [], + "edges_to": [], + "id": 4579, + "label": "PHIL 165", + "title": "Freedom, Equality, and the Law (4)" + }, + { + "dept": "ECE", + "description": "of Nanoscience and Nanotechnology (4)", + "edges_from": [], + "edges_to": [], + "id": 4580, + "label": "ECE 212AN", + "title": "Principles" + }, + { + "dept": "PHIL", + "description": "Different perspectives on central issues in contemporary political philosophy, such as the nature of state authority and political obligation, the limits of government and individual liberty, liberalism and its critics, equality and distributive justice. ", + "edges_from": [], + "edges_to": [], + "id": 4581, + "label": "PHIL 167", + "title": "Contemporary Political Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "Systematic and/or historical perspectives on central issues in ethical theory such as deontic, contractualist, and consequentialist conceptions of morality; rights and special obligations; the role of happiness and virtue in morality; moral conflict; ethical objectivity and relativism; and the rational authority of morality. ", + "edges_from": [], + "edges_to": [], + "id": 4582, + "label": "PHIL 160", + "title": "Ethical Theory (4)" + }, + { + "dept": "PHIL", + "description": "Central issues and texts in the history of ethics. Subject matter can vary, ranging from one philosopher (e.g., Aristotle, Hobbes, Kant, or Mill) to a historical tradition (e.g., Greek ethics or the British moralists). May be repeated for credit with change in content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 4583, + "label": "PHIL 161", + "title": "Topics in the History of Ethics (4)" + }, + { + "dept": "PHIL", + "description": "An examination of contemporary moral issues, such as abortion, euthanasia, war, affirmative action, and freedom of speech. ", + "edges_from": [], + "edges_to": [], + "id": 4584, + "label": "PHIL 162", + "title": "Contemporary Moral Issues (4)" + }, + { + "dept": "PHIL", + "description": "Moral issues in medicine and the biological sciences, such as patient\u2019s rights and physician\u2019s responsibilities, abortion and euthanasia, the distribution of health care, experimentation, and genetic intervention. ", + "edges_from": [], + "edges_to": [], + "id": 4585, + "label": "PHIL 163", + "title": "Biomedical Ethics (4)" + }, + { + "dept": "MDE", + "description": "A general survey of modern high-throughput instruments used for imaging and analyzing structure-function relationships at the molecular and cellular levels. An overview of potential human genomic and systems approaches for designing and validating medical device safety and performance. ", + "edges_from": [], + "edges_to": [], + "id": 4586, + "label": "MDE 230", + "title": "Life Sciences and Technologies (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical examination of core concepts and theses in feminism, feminist philosophy, and critiques of traditional philosophical approaches to morality, politics, and science, from a feminist perspective. May also treat the historical development of feminist philosophy and its critiques. May be taken for credit two times with permission of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 4587, + "label": "PHIL 169", + "title": "Feminism and Philosophy (4)" + }, + { + "dept": "EDS", + "description": "Individual guided study and/or independent research in an area not covered by present course offerings. Offered for repeated registration. ", + "edges_from": [], + "edges_to": [], + "id": 4588, + "label": "EDS 298", + "title": "Independent Study (1\u20136)" + }, + { + "dept": "ECE", + "description": "This course covers the mathematical fundamentals of Bayesian filtering and their application to sensing and estimation in mobile robotics. Topics include maximum likelihood estimation (MLE), expectation maximization (EM), Gaussian and particle filters, simultaneous localization and mapping (SLAM), visual features and optical flow, and hidden Markov models (HMM). ", + "edges_from": [], + "edges_to": [ + 4590, + 4591 + ], + "id": 4589, + "label": "ECE 276A", + "title": "Sensing and Estimation in Robotics (4)" + }, + { + "dept": "ECE", + "description": "This course covers optimal control and reinforcement learning fundamentals and their application to planning and decision-making in mobile robotics. Topics include Markov decision processes (MDP), Pontryagin\u2019s maximum principle, linear quadratic regulation (LQR), deterministic planning, value and policy iteration, and policy gradient methods. ", + "edges_from": [ + 4589 + ], + "edges_to": [], + "id": 4590, + "label": "ECE 276B", + "title": "Planning and Learning in Robotics (4)" + }, + { + "dept": "ECE", + "description": "Course participants will explore new methods for robotics, particularly toward enabling robot manipulators in complex environments. This course is structured to rapidly consider the previous techniques in robot manipulation to date and explore methods in reinforcement learning to solve open problems in robot manipulation. Topics will review kinematics, dynamics, low-level control and motion planning, and machine learning approaches. ", + "edges_from": [ + 4589 + ], + "edges_to": [], + "id": 4591, + "label": "ECE 276C", + "title": "Robot Reinforcement Learning (4)" + }, + { + "dept": "EDS", + "description": "Research for the master\u2019s thesis (Educational Research) or curriculum design portfolio thesis (Curriculum Design). Open for repeated registration up to eight units (S/U grade only). ", + "edges_from": [], + "edges_to": [], + "id": 4592, + "label": "EDS 295", + "title": "MA Thesis (1\u20138)" + }, + { + "dept": "EDS", + "description": "The RAC will introduce students to transformational research and practice in education through involvement in faculty-led research teams. The RAC will provide a structured environment for mentoring through engagement in collaborative research activities. Each RAC will conceptualize and conduct research that is likely to result in student presentations at educational conferences and in student publications. The RAC also provides support for the analysis and write-up of dissertation research. S/U grades only. May be repeated for credit for a maximum of thirty-eight units. ", + "edges_from": [], + "edges_to": [], + "id": 4593, + "label": "EDS 296", + "title": "Research Apprenticeship Course (2\u20134)" + }, + { + "dept": "EDS", + "description": "Study and analysis of specific topics under the guidance of a faculty member. Offered for repeated registration. ", + "edges_from": [], + "edges_to": [], + "id": 4594, + "label": "EDS 297", + "title": "Directed Group Study (1\u20136)" + }, + { + "dept": "EDS", + "description": "Supervised research studies with individual topics selected according to students\u2019 special interests. Students will develop a research proposal appropriate for MA thesis, begin to gather and analyze data. ", + "edges_from": [], + "edges_to": [], + "id": 4595, + "label": "EDS 290", + "title": "Research Practicum (1\u201312)" + }, + { + "dept": "EDS", + "description": "This course will provide students with time, resources, and guidance for the purpose of developing a review of literature on a student-related topic, which typically becomes the focus of the dissertation research project. Students will be expected to use a variety of research tools in order to discover and identify relevant information. ", + "edges_from": [], + "edges_to": [], + "id": 4596, + "label": "EDS 292", + "title": "Qualifying Paper Preparation (2)" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Foundations\u2014China", + "edges_from": [], + "edges_to": [], + "id": 4597, + "label": "HIGR 217A", + "title": "" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Late Imperial Chinese", + "edges_from": [], + "edges_to": [], + "id": 4598, + "label": "HIGR 217C", + "title": "" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Premodern Chinese History: Han Dynasty", + "edges_from": [], + "edges_to": [], + "id": 4599, + "label": "HIGR 217B", + "title": "" + }, + { + "dept": "BGGN", + "description": "Students read classic and modern papers that form the basis of the undergraduate lectures (BIPN 146), which they are encouraged to attend. Students present these papers at weekly discussion sessions. The focus of 246A is cellular neuronal properties. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4600, + "label": "BGGN 246A", + "title": "Computational Neurobiology (2)" + }, + { + "dept": "HILA", + "description": "162/262. Special Topics in Latin American History (4)", + "edges_from": [], + "edges_to": [], + "id": 4601, + "label": "HILA", + "title": "" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SE 255.) Practical application of the finite element method to problems in solid mechanics. Elements of theory are presented as needed. Covered are static and dynamic heat transfer and stress analysis. Basic processing, solution methods, and postprocessing are practiced with commercial finite element software. Students may not receive credit for SE 233 and MAE 235. ", + "edges_from": [], + "edges_to": [], + "id": 4602, + "label": "MAE 235", + "title": "Computational Techniques in Finite Elements (4)" + }, + { + "dept": "TDGR", + "description": "Taken each term by all graduate contemporary dance making and performance students. The class supports candidates in their ongoing research in the development of performance work for all three years from in-studio showings through thesis presentation. S/U grades only. May be taken for credit eight times. ", + "edges_from": [], + "edges_to": [], + "id": 4603, + "label": "TDGR 227A", + "title": "Production Practicum (4)" + }, + { + "dept": "EDS", + "description": "This course introduces principles and practices of reflective teaching. Student teachers and interns will systematically document their practice teaching and analyze observation data to improve performance. Students will collaborate with supervisors and expert teachers throughout the yearlong preservice teaching experience. ", + "edges_from": [ + 4605 + ], + "edges_to": [], + "id": 4604, + "label": "EDS 205B", + "title": "Reflective Teaching Practice (2)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4604 + ], + "id": 4605, + "label": "EDS 205A", + "title": "" + }, + { + "dept": "BIOM", + "description": "A laboratory course combining hands-on mass spectrometry and bioinformatics tools to explore the relationship between structure and function in macromolecules. Tools for peptide sequencing, analysis of post-translational modification, and fragmentation analysis by mass spectrometry are examples of experiments students will run. ", + "edges_from": [], + "edges_to": [], + "id": 4606, + "label": "BIOM 283", + "title": "Supramolecular Structure Determination Laboratory (4)" + }, + { + "dept": "BIOM", + "description": "An introduction to basic techniques used in biomedical literature: t tests, ANOVA, chi-square, linear and nonlinear regression. Emphasis will be on understanding the appropriate use and interpretation of the tests, rather than on the calculations.", + "edges_from": [], + "edges_to": [], + "id": 4607, + "label": "BIOM 285", + "title": "Statistical Inference in the Medical Sciences (2)" + }, + { + "dept": "BIOM", + "description": "Students will learn to conduct tissue engineering and developmental biology experiments, microfabricate cell culture systems, engineer biopolymer materials, and develop and analyze quantitative models of transport, cell fate, and growth mechanics. The understanding and manipulation of multicellular processes that comprise development and growth involves specialized areas of biomechanics, developmental biology, biomaterials, and the tools of molecular biology, as well as the integration of theory and experiment. To fabricate functional tissues, it is important to establish underlying molecular and physical mechanisms, and then control and integrate these. ", + "edges_from": [], + "edges_to": [], + "id": 4608, + "label": "BIOM 287", + "title": "Tissue Engineering Laboratory (4)" + }, + { + "dept": "DSGN", + "description": "New societal challenges, cultural values, and technological opportunities are changing design, and vice versa. The seminar explores this increased scale, real-world engagement, and disruptive impact. Invited speakers from UC San Diego and beyond share cutting-edge research on interaction, design, and learning. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4609, + "label": "DSGN 119", + "title": "Design at Large (2)" + }, + { + "dept": "ECON", + "description": "Independent reading or research under the direction of and by special arrangement with a Department of Economics faculty member. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4610, + "label": "ECON 199", + "title": "Independent Study (2 or 4)" + }, + { + "dept": "ECON", + "description": "Directed study on a topic or in a group field not included in regular department curriculum by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 4611, + "label": "ECON 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "ECON", + "description": "Introduction to teaching economics. Each student will be responsible for a class section in one of the lower-division economics courses. Limited to advanced economics majors with at least a 3.5 GPA in upper-division economics work. (P/NP grades only.) Students may not earn more than eight units credit in 195 courses. ", + "edges_from": [], + "edges_to": [], + "id": 4612, + "label": "ECON 195", + "title": "Introduction to Teaching Economics (4)" + }, + { + "dept": "VIS", + "description": "of Criticism II: Early Twentieth Century (1900\u20131950) (4)", + "edges_from": [], + "edges_to": [], + "id": 4613, + "label": "VIS 113BN", + "title": "History" + }, + { + "dept": "MUS", + "description": "How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both MUS 20 and COGS 20. (Cross-listed with COGS 20.) ", + "edges_from": [], + "edges_to": [], + "id": 4614, + "label": "MUS 20", + "title": "Exploring the Musical Mind (4)" + }, + { + "dept": "PHYS", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 4615, + "label": "PHYS 219", + "title": "Condensed Matter/Materials Science Laboratory" + }, + { + "dept": "Linguistics/French", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in French. Must be taken in conjunction with LIFR 1D. Successful completion of LIFR 1D and LIFR 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 4436, + 4437 + ], + "edges_to": [], + "id": 4616, + "label": "Linguistics/French (LIFR) 1DX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "PHYS", + "description": "Classification of particles using symmetries and invariance principles, quarks and leptons, quantum electrodynamics, weak interactions, e+p- interactions, deep-inelastic lepton-nucleon scattering, pp collisions, introduction to QCD. ", + "edges_from": [ + 2369 + ], + "edges_to": [], + "id": 4617, + "label": "PHYS 214", + "title": "Physics of Elementary Particles (4)" + }, + { + "dept": "PHYS", + "description": "Application of field theoretic and renormalization group methods to problems in condensed matter, or particle physics. Topics will vary and may include: phase transition and critical phenomena; many body quantum systems; quantum chromodynamics and the electroweak model. ", + "edges_from": [ + 2773 + ], + "edges_to": [], + "id": 4618, + "label": "PHYS 217", + "title": "Field Theory and the Renormalization Group (4)" + }, + { + "dept": "PHYS", + "description": "This is a basic course in fluid dynamics for advanced students. The course consists of core fundamentals and modules on advanced applications to physical and biological phenomena. Core fundamentals include Euler and Navier-Stokes equations, potential and Stokesian flow, instabilities, boundary layers, turbulence, and shocks. Module topics include MHD, waves, and the physics of locomotion and olfaction. May be coscheduled with Physics 116. The performance criteria for graduate students will be to complete and pass: (1) a graduate-level exam and (2) graduate-level homework problem sets. In both cases, there will be overlap with the undergraduate exam and problems, but the graduates will be expected to complete additional work at a higher level.", + "edges_from": [], + "edges_to": [], + "id": 4619, + "label": "PHYS 216", + "title": "Fluid Dynamics for Physicists (4)" + }, + { + "dept": "TMC", + "description": "These seminars are designed to expose undergraduate students, especially freshmen and sophomores, to exciting research conducted by UC San Diego faculty. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 4620, + "label": "TMC 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "GPEC", + "description": "This course analyzes the roles of money and financial institutions in the economy. The first part of the course focuses on microeconomics and the financial system. The topics include money, financial markets, financial intermediaries, banking regulations, and bank runs. The second part of the course focuses on the microeconomics aspects of financial institutions. The topics include financial development, financial liberalization, and their effects on the economy, especially economic growth and development. Renumbered from IRGN 406. Students may not receive credit for GPEC 406 and IRGN 406. ", + "edges_from": [ + 4546, + 1594 + ], + "edges_to": [], + "id": 4621, + "label": "GPEC 406", + "title": "Finance and Development (4)" + }, + { + "dept": "VIS", + "description": "During the later centuries of the Roman Empire, the ancient world underwent a profound crisis. Beset by barbarian invasions, torn by internal conflict and drastic social change, inflamed with religious passion that was to lead to a transformed vision of the individual, the world, and the divine, this momentous age saw the conversion of the Roman world to Christianity, the transfer of power from Rome to Constantinople, and the creation of a new society and culture. Out of this ferment, during the centuries from Constantine to Justinian, there emerged new art forms fit to represent the new vision of an otherworldly reality: a vaulted architecture of diaphanous space, a new art of mosaic, which dissolved surfaces in light, a figural language both abstractly symbolic and urgently expressive. The great creative epoch transformed the heritage of classical Greco-Roman art and laid the foundations of the art of the Christian West and Muslim East for the next thousand years. Recommended preparation: VIS 20 or 120B. ", + "edges_from": [], + "edges_to": [], + "id": 4622, + "label": "VIS 120C", + "title": "Late Antique Art (4)" + }, + { + "dept": "VIS", + "description": "Roman art was the \u201cmodern art\u201d of antiquity. Out of their Italic tradition and the great inheritance of Greek classic and Hellenistic art, the Romans forged a new language of form to meet the needs of a vast empire, a complex and tumultuous society, and a sophisticated, intellectually diverse culture. An unprecedented architecture of shaped space used new materials and revolutionary engineering techniques in boldly functional ways for purposes of psychological control and symbolic assertion. Sculpture in the round and in relief was pictorialized to gain spatial effects and immediacy of presence, and an extraordinary art of portraiture investigated the psychology while asserting the status claims of the individual. Extreme shifts of style, from the classicism of the age of Augustus to the expressionism of the third century AD, are characteristic of this period. The new modes of architecture, sculpture, and painting, whether in the service of the rhetoric of state power or of the individual quest for meaning, were passed on to the medieval and ultimately to the modern West. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 4623, + "label": "VIS 120B", + "title": "Roman Art (4)" + }, + { + "dept": "VIS", + "description": "Greek classical civilization was a turning point in the history of humanity. Within a new kind of society, the idea of the individual as free and responsible was forged, and with it the invention of history, philosophy, tragedy, and science. The arts that expressed this cultural explosion were no less revolutionary. The achievements of Greek art in architecture, sculpture, and painting will be examined from their beginnings in the archaic period, to their epoch-making fulfillment in the classical decades of the fifth century BC, to their diffusion over the entire ancient world in the age of Alexander and his successors. Recommended preparation: VIS 20. ", + "edges_from": [], + "edges_to": [], + "id": 4624, + "label": "VIS 120A", + "title": "Greek Art (4)" + }, + { + "dept": "POLI", + "description": "This course examines general themes affecting the region (social structure and regime type, religion and modernization, bonds and tensions), the character of major states, and efforts to resolve the conflict between Israel and its Arab and Islamic neighbors. ", + "edges_from": [], + "edges_to": [], + "id": 4625, + "label": "POLI 121", + "title": "Government and Politics of the Middle East (4)" + }, + { + "dept": "POLI", + "description": "An interdisciplinary study of Israel as both a unique and yet a common example of a modern democratic nation-state. We will examine Israel\u2019s history, its political, economic, and legal systems, social structure and multicultural tensions, the relation between state and religion, national security, and international relations.", + "edges_from": [], + "edges_to": [], + "id": 4626, + "label": "POLI 121B", + "title": "Politics in Israel (4)" + }, + { + "dept": "FMPH", + "description": "This course provides an overview of the US health policy landscape. It addresses the development of explicit health policies to promote certain health behaviors, policies aimed at public health safety, and policy issues related to emerging health and biomedical technologies. Renumbered from FPM 290. Students may not receive credit for FMPH 277 and FPM 290. ", + "edges_from": [], + "edges_to": [], + "id": 4627, + "label": "FMPH 277", + "title": "Health Policy, Technology, and Public Health (4)" + }, + { + "dept": "HINE", + "description": "Great Poems from the Hebrew Bible/Foreign Language (1)", + "edges_from": [], + "edges_to": [], + "id": 4628, + "label": "HINE 112BL", + "title": "" + }, + { + "dept": "LTWL", + "description": "This class investigates the link between desire and death in classical and modern Hindu thought. It considers the stories of Hindu deities, as well as the lives of contemporary South Asian men and women, in literature and film.", + "edges_from": [], + "edges_to": [], + "id": 4629, + "label": "LTWL 168", + "title": "Death and Desire in India (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in Italian. Must be taken with LIIT 1B. ", + "edges_from": [ + 3424, + 3423 + ], + "edges_to": [], + "id": 4630, + "label": "Linguistics/Italian (LIIT) 1BX", + "title": "Analysis of Italian (2.5)" + }, + { + "dept": "LTWL", + "description": "This course will explore the relationship between women and literature, i.e., women as producers of literature, as objects of literary discourse, and as readers. Foreign language texts will be read in translation. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4631, + "label": "LTWL 160", + "title": "Women and Literature (4)" + }, + { + "dept": "LTWL", + "description": "Yiddish literature is much more than folk songs and jokes. We will read major American and European works by Nobel laureate I. B. Singer, his brother I. J. Singer, and his sister Esther Kreytman, Sholem Aleichem, Mendele, Chava Rozenfarb, and others. (In English translation.)", + "edges_from": [], + "edges_to": [], + "id": 4632, + "label": "LTWL 166", + "title": "The Yiddish Novel (4)" + }, + { + "dept": "LTWL", + "description": "With primarily American (and a couple of English) readings, the course inquires into the relation of human and nonhuman nature. Topics include wilderness, animals, Native American thought, women in nature, description as a kind of writing, the spirituality of place.", + "edges_from": [], + "edges_to": [], + "id": 4633, + "label": "LTWL 165", + "title": "Literature and the Environment (4)" + }, + { + "dept": "SIOC", + "description": "Physical description of the sea; physical properties of seawater, methods and measurements, boundary processes, regional oceanography. Renumbered from SIO 210. Students may not receive credit for both SIOC 210 and SIO 210. ", + "edges_from": [], + "edges_to": [], + "id": 4634, + "label": "SIOC 210", + "title": "Physical Oceanography (4)" + }, + { + "dept": "USP", + "description": "This course will explore", + "edges_from": [], + "edges_to": [], + "id": 4635, + "label": "USP 120", + "title": "Urban Planning, Infrastructure, and Real Estate (4)" + }, + { + "dept": "USP", + "description": "Examination of regulation of real estate development, as it affects landowners, developers and others private sector actors. Includes underlying public policies, establishment and enforcement of laws and regulations, application of regulations to individual projects, and political considerations in implementing regulations. ", + "edges_from": [], + "edges_to": [], + "id": 4636, + "label": "USP 121", + "title": "Real Estate Law and Regulation (4)" + }, + { + "dept": "USP", + "description": "Planning, Policymaking, and Law (4)", + "edges_from": [], + "edges_to": [], + "id": 4637, + "label": "USP 122", + "title": "Redevelopment" + }, + { + "dept": "USP", + "description": "Examination of the intersection of law and policy, in the form of processes and institutions, as they affect decision-making and program implementation in urban planning and design. Opportunities and constraints in making law and policy. Application to specific case examples. ", + "edges_from": [], + "edges_to": [], + "id": 4638, + "label": "USP 123", + "title": "Law, Planning, and Public Policy (4)" + }, + { + "dept": "USP", + "description": "Introduction to land use planning in the United States: zoning and subdivision, regulation, growth management, farmland preservation, environmental protection, and comprehensive planning. ", + "edges_from": [], + "edges_to": [], + "id": 4639, + "label": "USP 124", + "title": "Land Use Planning (4)" + }, + { + "dept": "USP", + "description": "Research methods are tools for improving knowledge. Beginning with a research question, students will learn to select appropriate methods for sampling, collecting, and analyzing data to improve their research activities and research results. ", + "edges_from": [], + "edges_to": [], + "id": 4640, + "label": "USP 125", + "title": "The Design of Social Research (4)" + }, + { + "dept": "USP", + "description": "This course evaluates alternative land use, regulatory, and land transfer approaches to the US regime. Considered are overseas reform models for comprehensive land use and resource management and their effects on environmental justice, resource sustainability, and management efficiency and innovation. ", + "edges_from": [], + "edges_to": [], + "id": 4641, + "label": "USP 126", + "title": "Comparative Land Use and Resource Management (4)" + }, + { + "dept": "PSYC", + "description": "Independent research and thesis research. S/U grades only. May be taken for credit fifteen times.", + "edges_from": [], + "edges_to": [], + "id": 4642, + "label": "PSYC 299", + "title": "Research Practicum (1\u201312)" + }, + { + "dept": "PSYC", + "description": "Research in psychology under supervision of individual faculty members. S/U grades only. May be taken for credit fifteen times.", + "edges_from": [], + "edges_to": [], + "id": 4643, + "label": "PSYC 296", + "title": "Research Practicum (1\u201312)" + }, + { + "dept": "TDGR", + "description": "An investigation of contemporary theories of theatre with an emphasis on structural and poststructural perspectives on text and textuality. The seminar will focus on adapting contemporary techniques of close reading to the interpretive and creative process in the theatre. ", + "edges_from": [ + 4645 + ], + "edges_to": [ + 4646 + ], + "id": 4644, + "label": "TDGR 204B", + "title": "Contemporary Theories of Theatre (4)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4644 + ], + "id": 4645, + "label": "TDGR 204A", + "title": "" + }, + { + "dept": "TDGR", + "description": "The culmination of the TDGR 204 sequence, in which students in all disciplines create and perform publicly presented original theatre pieces. ", + "edges_from": [ + 4644 + ], + "edges_to": [], + "id": 4646, + "label": "TDGR 204C", + "title": "Collective Creation (4)" + }, + { + "dept": "SE", + "description": "Conceptual and preliminary structural design of aircraft and space vehicles. Minimum-weight design of primary structures based upon mission requirements and configuration constraints. Multicriteria decision making. Team projects include layout, material selection, component sizing, fabrication, and cost. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 4267, + 2211, + 3269 + ], + "edges_to": [ + 4648 + ], + "id": 4647, + "label": "SE 143A", + "title": "Aerospace Structural Design I (4)" + }, + { + "dept": "SE", + "description": "Detailed structural design of aircraft and space vehicles. Composite material design considerations. Multidisciplinary design optimization. Introduction to aerospace computer-aided design and analysis tools. Team projects include the analysis, fabrication, and testing of a flight vehicle component. Oral presentations. Written reports. Use of computer resources. Program or materials fees may apply. ", + "edges_from": [ + 4647 + ], + "edges_to": [], + "id": 4648, + "label": "SE 143B", + "title": "Aerospace Structural Design II (4)" + }, + { + "dept": "COMM", + "description": "A study of the social organization of the film industry throughout its history. Who makes films, by what criteria, and for what audience. The changing relationships between studios, producers, directors, writers, actors, editors, censors, distributors, audience, and subject matter of the films will be explored. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4649, + "label": "COMM 106F", + "title": "CI: Film Industry (4)" + }, + { + "dept": "COMM", + "description": "The largest industry in the world has far-reaching cultural ramifications. We will explore tourism\u2019s history and its contemporary cultural effects, taking the perspective of the \u201ctoured\u201d as well as that of the tourist. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4650, + "label": "COMM 106G", + "title": "CI: Tourism: Global Industry and Cultural Form (4)" + }, + { + "dept": "COMM", + "description": "Course examines the organization of some of the many industries (e.g., film, music, gaming, and publishing) that make up the cultural landscape with an eye toward discerning the conditions that shape the production of cultural goods and services: how is production organized within cultural industries; how are products distributed; and what is the impact of both the organization and distribution of goods on the conditions of work and labor? ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4651, + "label": "COMM 106A", + "title": "CI: Introduction (4)" + }, + { + "dept": "COMM", + "description": "Pasts have been conveyed through various media for millennia. This course will use comics to explore how this medium impacts how we might learn and understand Japanese history. Topics discussed include memory, storytelling, perspective, and visuality. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4652, + "label": "COMM 106C", + "title": "CI: History Through Comics\u2014Japan (4)" + }, + { + "dept": "COMM", + "description": "The political economy of the emergent Internet industry, charted through analysis of its hardware, software, and services components. The course specifies leading trends and changing institutional outcomes by relating the Internet industry to the adjoining media, telecommunications, and computer industries. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4653, + "label": "COMM 106I", + "title": "CI: Internet Industry (4)" + }, + { + "dept": "COMM", + "description": "How and what does television communicate? Emphasis will be on contemporary US television programming, placed in comparative and historical context. Special topics may include: TV genres, TV and politics, TV and other media. Frequent in-class screenings. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4654, + "label": "COMM 106T", + "title": "CI: Television Culture and the Public (4)" + }, + { + "dept": "COMM", + "description": "Course examines political economy of television throughout its history. How TV is made, who is involved, how is industry organized, how does it get regulated, distributed? Consider how these answers changed over time and look at recent influences of digital technologies. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 4655, + "label": "COMM 106V", + "title": "CI: TV Industry (4)" + }, + { + "dept": "PHYS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4656, + "label": "PHYS 87", + "title": "Freshman Seminar in Physics and Astrophysics (1)" + }, + { + "dept": "ANSC", + "description": "(Cross-listed with CGS 118.) This course investigates the ways in which forces of racism, gendered violence, and state control intersect in the penal system. The prison-industrial complex is analyzed as a site where certain types of gendered and racialized bodies are incapacitated, neglected, or made to die. Students may not receive credit for ANSC 186 and CGS 118. ", + "edges_from": [], + "edges_to": [], + "id": 4657, + "label": "ANSC 186", + "title": "Gender and Incarceration (4)" + }, + { + "dept": "ANSC", + "description": "This seminar addresses the production, consumption, and distribution of food, with particular emphasis on the culture of food. Food studies provide insight into a wide range of topics including class, poverty, hunger, ethnicity, nationalism, capitalism, gender, race, and sexuality. ", + "edges_from": [], + "edges_to": [], + "id": 4658, + "label": "ANSC 184", + "title": "Food, Culture, and Society (4)" + }, + { + "dept": "ANSC", + "description": "(Cross-listed with AAS 185.) This seminar traces the historical roots and growth of the Black Lives Matter social movement in the United States and comparative global contexts. Occupy Wall Street, protests against the prison industrial complex, black feminist, and LGBTQ intersectionality are explored in the context of millennial and post-millennial youth as the founders of this movement. Students may not receive credit for ANSC 185 and AAS 185. ", + "edges_from": [], + "edges_to": [], + "id": 4659, + "label": "ANSC 185", + "title": "#BlackLivesMatter (4)" + }, + { + "dept": "ANSC", + "description": "In this seminar, we investigate gun violence from a critical perspective that draws on social and health sciences, films, media, and more. While we take the contemporary issue of gun violence in the United States as a primary case study, we employ a global and comparative perspective. We explore controversies to include cultural, gendered, ethnic, political, and economic analysis. We examine discourses on gun violence as rational/irrational, healthy/pathological, and individually or socially produced. ", + "edges_from": [], + "edges_to": [], + "id": 4660, + "label": "ANSC 182", + "title": "Gun Violence as Social Pathology (4)" + }, + { + "dept": "ANSC", + "description": "Explores the role of film, photography, digital media, and visualization technologies in understanding human life. Students develop their own visualization projects. ", + "edges_from": [], + "edges_to": [], + "id": 4661, + "label": "ANSC 183", + "title": "Visualizing the Human: Film, Photography, and Digital Technologies (4)" + }, + { + "dept": "RELI", + "description": "This course provides an advanced introduction to assumptions and norms that shape the study of religion as an academic field; to significant debates within the field; and to tools and methods used for professional research within the field.", + "edges_from": [], + "edges_to": [ + 5264, + 5326 + ], + "id": 4662, + "label": "RELI 101", + "title": "Tools and Methods in the Study of Religion (4)" + }, + { + "dept": "ANSC", + "description": "We humans are animals. How do our relations with other animals\u2014how we rely on them, how we struggle against them, how we live among them\u2014shape our own worlds? In this course, we examine, through ethnography and speculative fiction, the boundary between human and other animals. ", + "edges_from": [], + "edges_to": [], + "id": 4663, + "label": "ANSC 181", + "title": "Animal Affairs (4)" + }, + { + "dept": "LIGN", + "description": "Language is constantly changing. This course", + "edges_from": [], + "edges_to": [], + "id": 4664, + "label": "LIGN 150", + "title": "Historical Linguistics (4)" + }, + { + "dept": "LIGN", + "description": "This course is an introduction to the study of the indigenous languages of the Americas. Its goals are to offer orientation in a broad field and to prepare students for possible future research. Topics covered include grammatical structures, genetic classification, characteristics of major language families, and factors affecting language use and mother tongue transmission of these languages in contemporary societies. Recommended preparation: LIGN 101.", + "edges_from": [], + "edges_to": [], + "id": 4665, + "label": "LIGN 152", + "title": "Indigenous Languages of the Americas (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4666, + "label": "LTEN 148", + "title": "Genres in English and American Literature (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4667, + "label": "LTEN 149", + "title": "Topics: English-Language Literature (4)" + }, + { + "dept": "COGS", + "description": "Students study and research selected topics under the direction of a member of the faculty.", + "edges_from": [], + "edges_to": [], + "id": 4668, + "label": "COGS 298", + "title": "Directed Independent Study (1\u201312)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4669, + "label": "LTEN 144", + "title": "The British Novel: 1890 to Present (4)" + }, + { + "dept": "ECE", + "description": "This course is designed to provide a treatise of semiconductor devices based on solid state phenomena. Band structures carrier scattering and recombination processes and their influence on transport properties will be emphasized. (Recommended prerequisites: ECE 230A or equivalent.) ", + "edges_from": [ + 2299 + ], + "edges_to": [], + "id": 4670, + "label": "ECE 230C", + "title": "Solid State Electronics III (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4671, + "label": "LTEN 140", + "title": "The British Novel: 1790\u20131830 (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4672, + "label": "LTEN 142", + "title": "The British Novel: 1830\u20131890 (4)" + }, + { + "dept": "GPEC", + "description": "This course provides an introduction to GIS and spatial data analysis for applied social science research. Students will work in ArcGIS to manipulate different types of georeferenced data, visualize data, import/export data from Excel and STATA, and conduct spatial analysis. Course looks to motivate geography as an important lens through which to study society. Recommended preparation: Basic knowledge of statistics and regression (ordinary least squares) is assumed, as is familiarity with STATA. Students may not receive credit for GPEC 243 and IRGN 443. May be coscheduled with GPEC 443.", + "edges_from": [], + "edges_to": [], + "id": 4673, + "label": "GPEC 243", + "title": "GIS and Spatial Data Analysis (4)" + }, + { + "dept": "GPEC", + "description": "The goal of the course is to teach how to evaluate quantitative information in business and economics contexts, and to make sound managerial decisions in complex situations. Most of the problems and the course work will involve statistical software and spreadsheet analysis of data. The course covers various applied multivariate statistical methods beyond the basics. Renumbered from IRGN 240. Students may not receive credit for GPEC 246 and IRGN 240. May be coscheduled with GPEC 446.", + "edges_from": [], + "edges_to": [], + "id": 4674, + "label": "GPEC 246", + "title": "Applied Data Analysis and Statistical Decision Making (4)" + }, + { + "dept": "GPEC", + "description": "Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. Previously taught as an IRGN 290, Special Topics course. Students may not receive credit for GPEC 244 and IRGN 290 or IRGN 490 with the same title. May be coscheduled with GPEC 444.", + "edges_from": [], + "edges_to": [], + "id": 4675, + "label": "GPEC 244", + "title": "Advanced GIS and Remote Sensing (4)" + }, + { + "dept": "Linguistics/American", + "description": "Course aims to improve language skills through discussion of topics relevant to the Deaf community. Central topics will include education and American Sign Language (ASL) literature. Conducted entirely in American Sign Language. ", + "edges_from": [ + 4677, + 4678 + ], + "edges_to": [], + "id": 4676, + "label": "Linguistics/American Sign Language (LISL) 1E", + "title": "Intermediate American Sign Language Conversation (4)" + }, + { + "dept": "LISL", + "description": "", + "edges_from": [], + "edges_to": [ + 4676 + ], + "id": 4677, + "label": "LISL 1D", + "title": "" + }, + { + "dept": "LISL", + "description": "", + "edges_from": [], + "edges_to": [ + 4676 + ], + "id": 4678, + "label": "LISL 1DX", + "title": "" + }, + { + "dept": "Linguistics/Portuguese", + "description": "(2.5)", + "edges_from": [], + "edges_to": [], + "id": 4679, + "label": "Linguistics/Portuguese (LIPO) 1BX", + "title": "Analysis of Portuguese" + }, + { + "dept": "GLBH", + "description": "Introduces students to the physical and mental health needs of vulnerable migrants and socially marginalized communities, including substance users, LGBTQ, deportees, and the homeless and medically indigent. Students will become integrated into a free clinic in Tijuana where they will obtain community-based field experiences in interacting with these populations; learn about delivering evidence-based health care in underserved settings and be introduced to issues regarding cultural appropriation. Program or materials fees may apply. May be taken for credit up to three times. Students are required to cross the US-Mexico border to attend clinic in Tijuana as part of the requirements for the course. Recommended preparation: upper-division global health course work prior to participation is recommended.", + "edges_from": [], + "edges_to": [], + "id": 4680, + "label": "GLBH 111", + "title": "Clinic on the Border: Health Frontiers in Tijuana (4)" + }, + { + "dept": "GLBH", + "description": "This course will provide an overview of demographic principles, and their associations with maternal and child health outcomes. We will focus on demographic trends in developing countries, using research from the DHS to discuss inequalities in fertility, mortality, and morbidity. The remainder of the class will question why we see such spatial variation in many maternal and child health outcomes, with a focus on theories of social norms, and social network methods for uncovering those trends.", + "edges_from": [], + "edges_to": [], + "id": 4681, + "label": "GLBH 110", + "title": "Demography and Social Networks in Global Health (4)" + }, + { + "dept": "GLBH", + "description": "The course examines women\u2019s and girls\u2019 health throughout the world, focusing on the main health problems experienced primarily in low resource settings. This course presents issues in the context of a woman\u2019s life from childhood, through adolescence, reproductive years, and aging. The course will have a strong emphasis on social, economic, environmental, behavioral, and political factors that affect health behaviors, reproductive health, maternal morbidity/mortality, and STIs/HIV.", + "edges_from": [], + "edges_to": [], + "id": 4682, + "label": "GLBH 113", + "title": "Women\u2019s Health in Global Perspective (4)" + }, + { + "dept": "LTRU", + "description": "An introduction to Russia\u2019s past and present through the cross-disciplinary study of literature, the visual and performing arts, social and political thought, civic rituals, popular entertainments, values and practices from 1825 to the present. ", + "edges_from": [], + "edges_to": [], + "id": 4683, + "label": "LTRU 150", + "title": "Russian Culture (4)" + }, + { + "dept": "POLI", + "description": "Senior Honors Seminar: Frontiers of Political Science (4-4)", + "edges_from": [], + "edges_to": [], + "id": 4684, + "label": "POLI 191A\u2013B", + "title": "" + }, + { + "dept": "BISP", + "description": "Course is designed to assist new transfers in making a smooth and informed transition from community college.\u00a0Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problem-solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new transfers. ", + "edges_from": [], + "edges_to": [], + "id": 4685, + "label": "BISP 191", + "title": "Biology Transfers: Strategies for Success (1)" + }, + { + "dept": "BISP", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in biology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 4686, + "label": "BISP 192", + "title": "Senior Seminar in Biology (1)" + }, + { + "dept": "BISP", + "description": "Individual research on a problem in biology education by special arrangement with and under the direction of a faculty member. Projects are expected to involve novel research that examines issues in biology education such as the science of learning, evidence of effective teaching, and equity and inclusion in the classroom. P/PN grades only. May be taken for credit five times. ", + "edges_from": [ + 4687 + ], + "edges_to": [ + 4687 + ], + "id": 4687, + "label": "BISP 193", + "title": "Biology Education Research (2 or 4)" + }, + { + "dept": "BISP", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 4688, + "label": "BISP 194", + "title": "Advanced Topics in Modern Biology (2)" + }, + { + "dept": "BISP", + "description": "Under the supervision of an instructor, student apprentices will assist in the instruction of a biology course. The purpose of the apprenticeship is to learn the methodology of teaching biology, at the college level, through theory and actual practice in a regularly scheduled course. Limited to upper-division students with a 3.0 GPA or higher. Students must apply the quarter preceding the quarter in which BISP 195 will be completed. Applications are reviewed by instructors, and assignments are made based on divisional need. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 4689, + "label": "BISP 195", + "title": "Undergraduate Instructional Apprenticeship in Biological Sciences (4)" + }, + { + "dept": "BISP", + "description": "Course for student participants in the senior Honors thesis research program. Students complete individual research on a problem by special arrangement with, and under the direction of, a faculty member. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. P/NP grades only. May be taken for credit three times. Research to be approved by Honors thesis faculty adviser via application.\u00a0Note: Students must apply to the division via the online system. For complete details, applications, and deadlines, please consult the", + "edges_from": [], + "edges_to": [], + "id": 4690, + "label": "BISP 196", + "title": "Honors Thesis in Biological Sciences (4)" + }, + { + "dept": "BISP", + "description": "Individual research on a problem by special arrangement with, and under the direction of, a UC San Diego faculty member and a selected researcher in industry or at a research institution. Projects are expected to involve primary, experimental/analytical approaches that augment training in basic biology and that echo the curricular focus of the Division of Biological Sciences. Application deadlines are strictly enforced. Consult the", + "edges_from": [], + "edges_to": [], + "id": 4691, + "label": "BISP 197", + "title": "Biology Internship Program (2 or 4)" + }, + { + "dept": "BISP", + "description": "Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [ + 4692 + ], + "edges_to": [ + 4692 + ], + "id": 4692, + "label": "BISP 198", + "title": "Directed Group Study (1 to 4)" + }, + { + "dept": "BIPN", + "description": "This course provides a survey of natural behaviors, including birdsong, prey capture, localization, electroreception and echolocation, and the neural systems that control them, emphasizing broad fundamental relationships between brain and behavior across species. Note: Students may not receive credit for Psyc 189 and BIPN 189. ", + "edges_from": [ + 432, + 1147, + 215 + ], + "edges_to": [], + "id": 4693, + "label": "BIPN 189", + "title": "Brain, Behavior, and Evolution (4)" + }, + { + "dept": "LTFR", + "description": "A study in depth of the works of a major French writer. Recommended for students whose primary literature is French. May be repeated for credit as topics vary. ", + "edges_from": [ + 1387, + 1388 + ], + "edges_to": [], + "id": 4694, + "label": "LTFR 143", + "title": "Topics in Major Authors in French (4)" + }, + { + "dept": "NANO", + "description": "Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. Cross-listed with MATS 257 and BENG 242. Restricted to BE 75, MS 76, CE 75, and NA 75 majors.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4695, + "label": "NANO 257", + "title": "Polymer Science and Engineering (4)" + }, + { + "dept": "NANO", + "description": "This course covers the design, microfabrication, operational principles, basic transport processes and diverse applications of microfluidic and nanofluidic (lab-on-a-chip) systems.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4696, + "label": "NANO 256", + "title": "Microfluids (4)" + }, + { + "dept": "NANO", + "description": "Application of electrochemical techniques to chemistry research. Basic electrochemical theory and instrumentation: the diffusion equations, controlled potential, and current methods. Electrochemical kinetics, Butler-Volmer, Marcus-Hush theories, preparative electrochemistry, analytical electrochemistry, solid and polymer electrolytes, semiconductor photoelectrochemistry. Cross-listed with Chem 240.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4697, + "label": "NANO 255", + "title": "Electrochemistry (4)" + }, + { + "dept": "NANO", + "description": "This course discusses synthesis techniques, processes, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. Cross-listed with MAE 267.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4698, + "label": "NANO 253", + "title": "Nanomaterials and Properties (4)" + }, + { + "dept": "NANO", + "description": "Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Cross-listed with CENG 256. Students may not receive credit for both NANO 252 and CENG 256. ", + "edges_from": [], + "edges_to": [], + "id": 4699, + "label": "NANO 252", + "title": "Biomaterials and Biomimetics (4)" + }, + { + "dept": "NANO", + "description": "Elements of continuum mechanics; quantum and statistical mechanics; interatomic forces and intermolecular interactions; thermodynamics and diffusion materials; nanomechanics of self-assembly, pattern formation, and hierarchical ordering, defects, thin films, surfaces, and interfaces; plasticity, creep, fracture, and fatigue, nanomechanics, nanorheology, and nanotribology.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4700, + "label": "NANO 250", + "title": "Mechanics of Nanomaterials (4)" + }, + { + "dept": "COMM", + "description": "Explores the uneven nature of globalization and its geographical expression in the built environment by looking into gentrification processes and community change in service-oriented economies in the Global North as well as into production offshoring and disputes over development in the Global South. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4701, + "label": "COMM 181", + "title": "Neoliberal Cities (4)" + }, + { + "dept": "COMM", + "description": "How are messages created, transmitted, and received? What is the relationship between thinking and communicating?\u00a0How are linguistic processes embedded in sociocultural practices?\u00a0Course discusses classic texts in the field of communication theory stemming from linguistics, semiotics, philosophy of language, literary theory.\u00a0", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4702, + "label": "COMM 180", + "title": "Advanced Studies in Communication Theory (4)" + }, + { + "dept": "COMM", + "description": "This course critically examines social and economic forces that shape the making of this new global consumer culture by following the flows of consumption and production between the developed and developing worlds in the 1990s. We will consider how consumers, workers, and citizens participate in a new globalized consumer culture that challenges older distinctions between the First and the Third World. In this course, we will focus on the flows between the United States, Asia, and Latin America. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4703, + "label": "COMM 183", + "title": "Global Economy and Consumer Culture (4)" + }, + { + "dept": "COMM", + "description": "Considers globalization\u2019s impact on concepts of nature in and through media texts, information systems, circulation of consumer goods and services, the emergence of global brands, science, health initiatives, environmental media activism, technology transfer in the twentieth and early twenty-first centuries. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 4704, + "label": "COMM 184", + "title": "Global Nature/Global Culture (4)" + }, + { + "dept": "NANO", + "description": "Physics and chemistry of heterogeneous catalysis; adsorption-desorption kinetics, chemical bonding, isotherms, kinetic models, selection of catalysts, poisoning, experimental techniques. Cross-listed with CENG 253. Students may not receive credit for both NANO 259 and CENG 253. ", + "edges_from": [], + "edges_to": [], + "id": 4705, + "label": "NANO 259", + "title": "Heterogeneous Catalysis (4)" + }, + { + "dept": "NANO", + "description": "Various nanoscale systems where macroscopic laws of mass, heat, and momentum transfer break down; nonequilibrium statistical mechanics concepts such as transition state and Green-Kubo theories, and molecular simulations for modeling nanoscale transport issues will be introduced.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 4706, + "label": "NANO 258", + "title": "Nanoscale Transport Phenomenon (4)" + }, + { + "dept": "ANSC", + "description": "Explores anthropological approaches to finding solutions to human problems. Using cultural analysis and ethnographic approaches, students conduct supervised field projects to assess real-world problems and then design, evaluate, and communicate possible solutions. ", + "edges_from": [], + "edges_to": [], + "id": 4707, + "label": "ANSC 138", + "title": "The Cultural Design Practicum: Using Anthropology to Solve Human Problems (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in neural engineering. ", + "edges_from": [ + 55 + ], + "edges_to": [ + 4709 + ], + "id": 4708, + "label": "BENG 147A", + "title": "Design Development in Neural Engineering (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in neural engineering. ", + "edges_from": [ + 57, + 4708 + ], + "edges_to": [ + 57 + ], + "id": 4709, + "label": "BENG 147B", + "title": "Design Implementation in Neural Engineering (3)" + }, + { + "dept": "POLI", + "description": "to Political Science: Comparative Politics (4)", + "edges_from": [], + "edges_to": [], + "id": 4710, + "label": "POLI 11 or 11D", + "title": "Introduction" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "edges_from": [], + "edges_to": [], + "id": 4711, + "label": "PSYC 249A", + "title": "Advanced Topics in Applied Behavior Analysis I (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "edges_from": [], + "edges_to": [], + "id": 4712, + "label": "PSYC 249C", + "title": "Advanced Topics in Applied Behavior Analysis III (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in applied behavior analysis. May be taken for credit five times. ", + "edges_from": [], + "edges_to": [], + "id": 4713, + "label": "PSYC 249B", + "title": "Advanced Topics in Applied Behavior Analysis II (1)" + }, + { + "dept": "MUS", + "description": "The department seminar serves both as a general department meeting and as a forum for the presentation of research and performances by visitors, faculty, and students. Required of all undergraduate music majors every quarter.", + "edges_from": [], + "edges_to": [], + "id": 4714, + "label": "MUS 143", + "title": "Department Seminar (1)" + }, + { + "dept": "HIEU", + "description": "Directed readings for undergraduates under the supervision of various faculty members. ", + "edges_from": [], + "edges_to": [], + "id": 4715, + "label": "HIEU 199", + "title": "Independent Study in European History (4)" + }, + { + "dept": "HIEU", + "description": "Directed group study on European history under the supervision of a member of the faculty on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. ", + "edges_from": [], + "edges_to": [], + "id": 4716, + "label": "HIEU 198", + "title": "Directed Group Study (1, 2, 3, 4)" + }, + { + "dept": "ANSC", + "description": "In this course, we will examine the dominant human rights framework to think about one issue that has escaped its purview: environmental justice. If we all share a common planet, is there a universal right to a clean environment? Why are the effects of pollution and climate change unequally distributed among the world\u2019s peoples? Can human rights norms serve as effective tools to fight the unequal effects of climate change and contamination? Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4717, + "label": "ANSC 193GS", + "title": "Human Rights and Environmental Justice (4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 104.) Analysis", + "edges_from": [], + "edges_to": [], + "id": 4718, + "label": "CHEM 204", + "title": "Introduction to X-ray Crystallography (4)" + }, + { + "dept": "CHEM", + "description": "A broad introduction to the uses of nuclear magnetic resonance", + "edges_from": [], + "edges_to": [], + "id": 4719, + "label": "CHEM 207", + "title": "Protein NMR (4)" + }, + { + "dept": "CHEM", + "description": "Structures and functions of nucleic acids, folding and catalysis of nucleic acids, motifs and domains of proteins, principles of protein-protein interactions, chemistry of protein/DNA and protein/RNA interfaces, conformational changes in macromolecular recognition. ", + "edges_from": [], + "edges_to": [], + "id": 4720, + "label": "CHEM 209", + "title": "Macromolecular Recognition (4)" + }, + { + "dept": "HINE", + "description": "This course explores the evolution of Zionism from its late nineteenth-century origins to the present. Among the topics explored: political, cultural, spiritual and social varieties of Zionism; and the contending narratives about its nature, meaning, and accomplishments.", + "edges_from": [], + "edges_to": [], + "id": 4721, + "label": "HINE 136GS", + "title": "Zionism and Post Zionism (4)" + }, + { + "dept": "BGGN", + "description": "This course covers advanced topics in plant biology in the areas of molecular genetic developmental, and physiological biology. We will discuss plant-microbe interactions, transposable elements, protein trafficking, ion transport, and organ development. The format of this section includes lectures and discussion of selected papers. ", + "edges_from": [], + "edges_to": [], + "id": 4722, + "label": "BGGN 227", + "title": "Graduate Topics in Plant Biology (4)" + }, + { + "dept": "CSE", + "description": "This course will provide a broad understanding of network design and implementation. Topics include techniques for building distributed applications, sockets programming, remote procedure calls (RPC), scale-out distributed directories, distributed consensus and state management, fault tolerance, networked storage, indirection, overlay networks, load balancing, and datacenter design. ", + "edges_from": [], + "edges_to": [], + "id": 4723, + "label": "CSE 224", + "title": "Graduate Networked Systems (4)" + }, + { + "dept": "CSE", + "description": "Security and threat models, risk analysis, authentication and authorization, auditing, operating systems security, access control mechanisms, protection mechanisms, distributed systems/network security, security architecture, electronic commerce security mechanisms, security evaluation. ", + "edges_from": [ + 3250 + ], + "edges_to": [], + "id": 4724, + "label": "CSE 227", + "title": "Computer Security (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 3250 + ], + "id": 4725, + "label": "CSE 121", + "title": "" + }, + { + "dept": "POLI", + "description": "of Political Thought: Kant to Rawls (4)", + "edges_from": [], + "edges_to": [], + "id": 4726, + "label": "POLI 210AB", + "title": "Systems" + }, + { + "dept": "POLI", + "description": "of Political Thought: Thucydides to Rousseau (4)", + "edges_from": [], + "edges_to": [], + "id": 4727, + "label": "POLI 210AA", + "title": "Systems" + }, + { + "dept": "GPIM", + "description": "This course describes the Chinese commercial, organizational, and cultural environment. Case studies of foreign businesses in China are examined, and the opportunities and pitfalls of operation in China are considered. Negotiation with Chinese counterparts is covered through a negotiation exercise. The focus is on mainland China, but some attention is given to business in Hong Kong and Taiwan as well. Students are required to prepare business plans for proposed Chinese ventures. Renumbered from IRGN 461. Students may not receive credit for GPIM 461 and IRGN 461.", + "edges_from": [], + "edges_to": [], + "id": 4728, + "label": "GPIM 461", + "title": "Doing Business in China (4)" + }, + { + "dept": "MATH", + "description": "Topics will vary from year to year in areas of mathematics and their development. Topics may include the evolution of mathematics from the Babylonian period to the eighteenth century using original sources, a history of the foundations of mathematics and the development of modern mathematics. ", + "edges_from": [ + 849 + ], + "edges_to": [], + "id": 4729, + "label": "MATH 163", + "title": "History of Mathematics (4)" + }, + { + "dept": "Soc/G", + "description": "In this seminar students revise an existing research paper (usually the one they wrote for Sociology 252) for submission to an academic journal. Emphasis is placed on conceptual development, writing style and structure, and drawing links to the existing theoretical and empirical literature. ", + "edges_from": [], + "edges_to": [], + "id": 4730, + "label": "Soc/G 253", + "title": "Research Practicum II (4)" + }, + { + "dept": "Soc/G", + "description": "In this seminar students work on a research project, which might have originated in a paper written for another course. The goal is to produce the first draft of a paper that will be submitted to an academic journal. ", + "edges_from": [], + "edges_to": [], + "id": 4731, + "label": "Soc/G 252", + "title": "Research Practicum I (4)" + }, + { + "dept": "Soc/G", + "description": "This course explores institutional change in contemporary Latin America, and compares this area with other transitional societies. Issues include social consequences of economic liberalization, changing forms of inequality, dynamics of civil society, conceptions of citizenship, quality and future of democracy. ", + "edges_from": [], + "edges_to": [], + "id": 4732, + "label": "Soc/G 258", + "title": "Institutional Change in the Contemporary World; Latin American Societies in a Comparative Perspective (4)" + }, + { + "dept": "CAT", + "description": "Course designated for lower-division Sixth College students to have the opportunity to work together as a group or team on a project supervised by a faculty member in a specific department, not included in a regular curriculum, where group emphasis would be more beneficial and constructive then individual special studies. ", + "edges_from": [], + "edges_to": [], + "id": 4733, + "label": "CAT 98", + "title": "Culture, Art, and Technology Lower-Division Group Study (2 or 4)" + }, + { + "dept": "HITO", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in history (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 4734, + "label": "HITO 192", + "title": "Senior Seminar in History (1)" + }, + { + "dept": "HITO", + "description": "A program of independent study providing candidates for history honors an opportunity to develop, in consultation with an adviser, a preliminary proposal for the honors essay. An IP grade will be awarded at the end of this quarter. A final grade will be given for both quarters at the end of HITO 195. ", + "edges_from": [], + "edges_to": [], + "id": 4735, + "label": "HITO 194", + "title": "History Honors (4)" + }, + { + "dept": "HITO", + "description": "Independent study under the supervision of a faculty member leading to the preparation of an honors essay. A letter grade for both HITO 194 and 195 will be given at the completion of this quarter. ", + "edges_from": [], + "edges_to": [], + "id": 4736, + "label": "HITO 195", + "title": "The Honors Essay (4)" + }, + { + "dept": "HITO", + "description": "The nature and uses of history are explored through the study of the historian\u2019s craft based on critical analysis of historical literature relating to selected topics of concern to all historians. Required of all candidates for history honors and open to other interested students with the instructor\u2019s consent. Department stamp required.", + "edges_from": [], + "edges_to": [], + "id": 4737, + "label": "HITO 196", + "title": "Honors Seminar (4)" + }, + { + "dept": "HITO", + "description": "Directed group study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4738, + "label": "HITO 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "HITO", + "description": "Independent study on a topic not generally included in the regular curriculum. Students must make arrangements with individual faculty members. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4739, + "label": "HITO 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "MGTF", + "description": "Examination of real estate capital markets, both debt and equity. Covered topics include real estate valuation, real options applied to real estate, real estate equity markets, and the place of real estate within a diversified investor\u2019s portfolio. Letter grades only. ", + "edges_from": [ + 3057 + ], + "edges_to": [], + "id": 4740, + "label": "MGTF 408", + "title": "Real Estate Finance (4)" + }, + { + "dept": "MGTF", + "description": "Explains the mergers and acquisitions process. Topics include history, motivation, valuation, legal framework and tax issues of mergers and acquisitions, antitakeover strategies, takeover tactics, leveraged buyouts, joint venture, and strategic alliances. Students may not earn credit for both MGTF 409 and MGT 284. ", + "edges_from": [], + "edges_to": [], + "id": 4741, + "label": "MGTF 409", + "title": "Mergers, Acquisitions, and Corporate Restructuring (4)" + }, + { + "dept": "ETHN", + "description": "This course examines the impact of the Vietnam War on three populations: Americans, Vietnamese in Vietnam, and Viet Kieu (overseas Vietnamese). We will supplement scholarly texts on the war with films, literature, and visits to war museums and monuments. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4742, + "label": "ETHN 155GS", + "title": "Critical Perspectives on the Vietnam War (4)" + }, + { + "dept": "TDDE", + "description": "A course designed to expose the theatre design students to a variety of specialized topics that will vary from quarter to quarter. May be taken for credit three times. ", + "edges_from": [ + 1418 + ], + "edges_to": [], + "id": 4743, + "label": "TDDE 131", + "title": "Special Topics in Theatre Design (4)" + }, + { + "dept": "TDDE", + "description": "A production-oriented course that continues", + "edges_from": [], + "edges_to": [], + "id": 4744, + "label": "TDDE 130", + "title": "Assistant Designer (2\u20136)" + }, + { + "dept": "TDDE", + "description": "Main Stage Production: Design (4)", + "edges_from": [], + "edges_to": [], + "id": 4745, + "label": "TDDE 132", + "title": "Undergraduate" + }, + { + "dept": "LTEU", + "description": "A study of literary works from Pushkin to the present.", + "edges_from": [], + "edges_to": [], + "id": 4746, + "label": "LTEU 150A-B-C", + "title": "Survey of Russian and Soviet Literature in Translation, 1800 to the Present (4-4-4)" + }, + { + "dept": "POLI", + "description": "(Same as USP 110) Building upon the introductory urban politics course, the advanced topics course explores issues such as community power, minority empowerment, and the politics of growth. A research paper is required. Students may not receive credit for both POLI 102J and USP 110. ", + "edges_from": [], + "edges_to": [], + "id": 4747, + "label": "POLI 102J", + "title": "Advanced Topics in Urban Politics (4)" + }, + { + "dept": "POLI", + "description": "The lives of individuals living in ghetto poverty in the United States. Causes and consequences of ghetto poverty. Political debates surrounding the underclass and different possible solutions. ", + "edges_from": [], + "edges_to": [], + "id": 4748, + "label": "POLI 102K", + "title": "The Urban Underclass (4)" + }, + { + "dept": "COGS", + "description": "Behavior draws on a wide range of genes acting as a complex source of information. Model organisms\u2014bacteria, Paramecium, C. elegans, Drosophila, and mice\u2014have provided insight into how genes influence both innate and learned behaviors. ", + "edges_from": [ + 568, + 1631 + ], + "edges_to": [], + "id": 4749, + "label": "COGS 169", + "title": "Genetic Information for Behavior: From Single Cells to Mammals (4)" + }, + { + "dept": "POLI", + "description": "Politics and policy-making issues in regulation. Themes: regulation versus legislation; general versus specific grants of regulatory power; market versus command mechanisms; private property; and risk assessment. Emphasis on American regulatory policy, examples from current regulatory debates (e.g., health care and environment). ", + "edges_from": [], + "edges_to": [], + "id": 4750, + "label": "POLI 102L", + "title": "The Politics of Regulation (4)" + }, + { + "dept": "COGS", + "description": "Research is showing that cellular metabolic processes are mediating normal and abnormal brain function. For example, neurocognitive disorders often co-occur with metabolic disturbances, such as insulin resistance, diabetes, and obesity. An understanding of these mechanisms will provide insight to new treatments for cognitive and neurological disorders. The course will cover topics on the role of abnormal cellular structure, genetic, epigenetic and pathogenic influences on synaptic signaling. ", + "edges_from": [], + "edges_to": [], + "id": 4751, + "label": "COGS 163", + "title": "Metabolic Disorders of the Brain (4)" + }, + { + "dept": "POLI", + "description": "Examines selected issues and moments in the political history of the United States, comparing competing explanations and analyses of US politics. Likely topics include the founding, \u201cAmerican exceptionalism,\u201d change in the party system, race in US politics, the \u201cnew institutionalism.\u201d", + "edges_from": [], + "edges_to": [], + "id": 4752, + "label": "POLI 102C", + "title": "American Political Development (4)" + }, + { + "dept": "MATH", + "description": "Second course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology. May be taken for credit up to three times. ", + "edges_from": [ + 2974 + ], + "edges_to": [ + 4754 + ], + "id": 4753, + "label": "MATH 203B", + "title": "Algebraic Geometry II (4)" + }, + { + "dept": "MATH", + "description": "Third course in algebraic geometry. Continued exploration of varieties, sheaves and schemes, divisors and linear systems, differentials, cohomology, curves, and surfaces. May be taken for credit up to three times. ", + "edges_from": [ + 4753 + ], + "edges_to": [], + "id": 4754, + "label": "MATH 203C", + "title": "Algebraic Geometry III (4)" + }, + { + "dept": "POLI", + "description": "This course will explore both the role played by mass media in political institutions, processes and behaviors, and reciprocally, the roles played by political systems in guiding communication processes.", + "edges_from": [], + "edges_to": [], + "id": 4755, + "label": "POLI 102F", + "title": "Mass Media and Politics (4)" + }, + { + "dept": "POLI", + "description": "An undergraduate course designed to cover various aspects of American politics. May be repeated for credit two times, provided each course is a separate topic, for a maximum of twelve units.", + "edges_from": [], + "edges_to": [], + "id": 4756, + "label": "POLI 102G", + "title": "Special Topics in American Politics (4)" + }, + { + "dept": "POLI", + "description": "The Voting Rights Act (VRA) is one of the most significant and controversial acts in American history. We will examine the environment that led to its introduction, the legislative process, executive implementation, and the political ramifications and subsequent state government and court decisions.", + "edges_from": [], + "edges_to": [], + "id": 4757, + "label": "POLI 102D", + "title": "Voting Rights Act: Fifty Years Later (4)" + }, + { + "dept": "COGS", + "description": "This course will address principles of motivation, valuation, and reward, spanning a large territory of topics, from rules of synaptic learning to classroom learning. Recommended preparation: courses in basic biology, physiology, Cognitive Science 107A or 107B or 107C, or courses in education. ", + "edges_from": [], + "edges_to": [], + "id": 4758, + "label": "COGS 164", + "title": "Neurobiology of Motivation (4)" + }, + { + "dept": "EDS", + "description": "(Same as Phys 180) A course on how people learn and understand key concepts in Newtonian mechanics. Reading in physics and cognitive science plus fieldwork teaching and evaluating K\u201312 students. Useful for students interested in teaching. ", + "edges_from": [], + "edges_to": [], + "id": 4759, + "label": "EDS 105", + "title": "Teaching and Learning Physics (4)" + }, + { + "dept": "EDS", + "description": "in Science and Math Teaching/Learning (2)", + "edges_from": [], + "edges_to": [], + "id": 4760, + "label": "EDS 39", + "title": "Practicum" + }, + { + "dept": "ECON", + "description": "Explore use of experiments to study individual and interactive (strategic) decision-making. Topics may include choice over risky alternatives, altruism and reciprocity, allocation and information aggregation in competitive markets, cooperation and collusion, bidding in auctions, strategy in coordination and \u201coutguessing\u201d games. ", + "edges_from": [ + 399 + ], + "edges_to": [], + "id": 4761, + "label": "ECON 143", + "title": "Experimental Economics (4)" + }, + { + "dept": "MUS", + "description": "First course in a sequence for music majors and nonmajors pursuing an emphasis in composition. The course examines \u201csound\u201d itself and various ways of building sounds into musical structures and develops skills in music notation. Students compose solo pieces in shorter forms. Students may not receive credit for both MUS 33 and 33A. ", + "edges_from": [ + 769 + ], + "edges_to": [ + 4763 + ], + "id": 4762, + "label": "MUS 33A", + "title": "Introduction to Composition I (4)" + }, + { + "dept": "MUS", + "description": "Second part of course sequence for students pursuing a composition emphasis. Course continues the building of skills with the organization of basic compositional elements: pitch, rhythm, and timbre. It explores issues of musical texture, expression, and structure in traditional and contemporary repertoire. Writing for two instruments in more extended forms. ", + "edges_from": [ + 4762 + ], + "edges_to": [ + 1937 + ], + "id": 4763, + "label": "MUS 33B", + "title": "Introduction to Composition II (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with SIO 213.) Mixing mechanisms, their identification, description and modeling. Introduction to turbulence, semi-empirical theories, importance of coherent structures, effects of stratification and rotation on turbulent structure, entrainment and mixing. S/U grades permitted.", + "edges_from": [], + "edges_to": [], + "id": 4764, + "label": "MAE 216", + "title": "Turbulence and Mixing (4)" + }, + { + "dept": "MAE", + "description": "Fundamental aspects of flows of reactive gases, with emphasis on processes of combustion, including the relevant thermodynamics, chemical kinetics, fluid mechanics, and transport processes. Topics may include deflagrations, detonations, diffusion flames, ignition, extinction, and propellant combustion. ", + "edges_from": [ + 98, + 99, + 88, + 1052, + 1053, + 1054, + 1055 + ], + "edges_to": [], + "id": 4765, + "label": "MAE 211", + "title": "Introduction to Combustion (4)" + }, + { + "dept": "MAE", + "description": "Fluid mechanics, thermodynamics and combustion processes involved in propulsion of aircraft and rockets by air breathing engines, and solid and liquid propellant rocket engines characteristics and matching of engine components; diffusers, compressors, combustors, turbines, pumps, nozzles. ", + "edges_from": [ + 88, + 99, + 1052, + 1053, + 4767 + ], + "edges_to": [], + "id": 4766, + "label": "MAE 213", + "title": "Mechanics of Propulsion (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4766 + ], + "id": 4767, + "label": "MAE 212", + "title": "" + }, + { + "dept": "NEU", + "description": "Independent study. (S/U grades only.) (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 4768, + "label": "NEU 296", + "title": "Neurosciences Research Rotation (1\u201312)" + }, + { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual expression. Students will work on individual projects in lighting, costume, and scenic design. The course will include group critiques of completed designs and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "edges_from": [], + "edges_to": [ + 4770 + ], + "id": 4769, + "label": "TDGR 270A", + "title": "Design Studio I (4)" + }, + { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual expression. Students will work on individual projects in lighting, costume, and scenic design. The course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "edges_from": [ + 4769, + 4771, + 4772, + 4773 + ], + "edges_to": [], + "id": 4770, + "label": "TDGR 270C", + "title": "Design Studio I: Lighting Design (4)" + }, + { + "dept": "TDGR", + "description": "", + "edges_from": [ + 4772 + ], + "edges_to": [ + 4770 + ], + "id": 4771, + "label": "TDGR 270B", + "title": "" + }, + { + "dept": "THGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4770, + 4771, + 4774 + ], + "id": 4772, + "label": "THGR 270A", + "title": "" + }, + { + "dept": "THGR", + "description": "", + "edges_from": [], + "edges_to": [ + 4770, + 4774 + ], + "id": 4773, + "label": "THGR 270B", + "title": "" + }, + { + "dept": "TDGR", + "description": "This course will focus on beginning-level problems in theatre design, including text analysis, research, conceptualization, and visual/auditory expression. Students will work on individual projects in sound, lighting, costume, and scenic design. This course will include group critiques of completed design and works in progress. 270A, Scenic Design (fall); 270B, Costume Design (winter); 270C, Lighting Design (spring). ", + "edges_from": [ + 4772, + 4773 + ], + "edges_to": [], + "id": 4774, + "label": "TDGR 270D", + "title": "Design Studio I: Sound Design (4)" + }, + { + "dept": "TDAC", + "description": "Participation in a fully staged season production that is directed by a faculty member or guest for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ", + "edges_from": [], + "edges_to": [], + "id": 4775, + "label": "TDAC 123", + "title": "Advanced Studies in Performance (4)" + }, + { + "dept": "TDAC", + "description": "Participation in a fully staged theatre production directed by an MFA or PhD student for the Department of Theatre and Dance. Admission by audition only. A maximum of four units may be used for major credit. ", + "edges_from": [], + "edges_to": [], + "id": 4776, + "label": "TDAC 122", + "title": "Ensemble: Undergraduate Production (4)" + }, + { + "dept": "TDAC", + "description": "An intensive theatre practicum designed to generate theatre created by an ensemble with particular emphasis upon the analysis of text. Students will explore and analyze the script and its author. Ensemble segments include black theatre, Chicano theatre, feminist theatre, and commedia dell\u2019arte. Audition may be required. A maximum of four units may be used for major credit. (Cross-listed with ETHN 146A.) ", + "edges_from": [], + "edges_to": [], + "id": 4777, + "label": "TDAC 120", + "title": "Ensemble (4)" + }, + { + "dept": "PHIL", + "description": "Investigation of ethical and epistemological questions concerning our relationship to the environment. Topics may include the value of nature, biodiversity, policy and science, and responsibility to future generations. ", + "edges_from": [], + "edges_to": [], + "id": 4778, + "label": "PHIL 148", + "title": "Philosophy and the Environment (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical issues raised by psychology, including the nature of psychological explanation, the role of nature versus nurture, free will and determinism, and the unity of the person. ", + "edges_from": [], + "edges_to": [], + "id": 4779, + "label": "PHIL 149", + "title": "Philosophy of Psychology (4)" + }, + { + "dept": "MDE", + "description": "This course is a seminar series with invited clinician speakers intended to address needs and opportunities for meaningful application of engineering principles in clinical practice, with emphasis on next generation medical devices. ", + "edges_from": [], + "edges_to": [], + "id": 4780, + "label": "MDE 210", + "title": "Medical Devices: Clinical Perspectives (4)" + }, + { + "dept": "MATS", + "description": "Topics include phase equilibria and crystallography, defects and thermodynamics (Kr\u00f6ger-Vink Notation), glass science, electrical and ionic transport behavior, Brouwer diagrams, powder synthesis and compaction, sintering theory and gain growth, mechanical, optical, magnetic, electrical properties, fuel cells. ", + "edges_from": [], + "edges_to": [], + "id": 4781, + "label": "MATS 236", + "title": "Advanced Ceramic (4)" + }, + { + "dept": "ECE", + "description": "Lab-based course. Students will learn how to prototype a mechatronic solution. Topics include: cheap/accessible materials and parts; suppliers; fast prototyping techniques; useful electronic sketches and system integration shortcuts. Students will learn to materialize their electromechanical ideas and make design decisions to minimize cost, improve functionality/robustness. Labs will culminate toward a fully functional robot prototype for demonstration. ", + "edges_from": [ + 2153 + ], + "edges_to": [], + "id": 4782, + "label": "ECE 115", + "title": "Fast Prototyping (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical problems in the development of modern physics, such as the philosophy of space and time, the epistemology of geometry, the philosophical significance of Einstein\u2019s theory of relativity, the interpretation of quantum mechanics, and the significance of modern cosmology. ", + "edges_from": [], + "edges_to": [], + "id": 4783, + "label": "PHIL 146", + "title": "Philosophy of Physics (4)" + }, + { + "dept": "PHIL", + "description": "Philosophical problems in the biological sciences, such as the relation between biology and the physical sciences, the status and structure of evolutionary theory, and the role of biology in the social sciences. ", + "edges_from": [], + "edges_to": [], + "id": 4784, + "label": "PHIL 147", + "title": "Philosophy of Biology (4)" + }, + { + "dept": "PHIL", + "description": "Central problems in philosophy of science, such as the nature of confirmation and explanation, the nature of scientific revolutions and progress, the unity of science, and realism and antirealism. ", + "edges_from": [], + "edges_to": [], + "id": 4785, + "label": "PHIL 145", + "title": "Philosophy of Science (4)" + }, + { + "dept": "BENG", + "description": "Principles and technologies for using genomic information for biomedical applications. Technologies will be introduced progressively, from DNA to RNA to protein to whole cell systems. The integration of biology, chemistry, engineering, and computation will be stressed. Topics include technology for the genome, DNA chips, RNA technologies, proteomic technologies, aphysiomic and phenomic technologies, and analysis of cell function. ", + "edges_from": [ + 241, + 3170, + 1074 + ], + "edges_to": [], + "id": 4786, + "label": "BENG 183", + "title": "Applied Genomic Technologies (4)" + }, + { + "dept": "HIEA", + "description": "This course provides an overview of Southeast Asian culture and history from 800 to the age of imperialism. It addresses regional geography, diversity, religion, political and social structures, mercantile and cultural ties abroad, the arrival of Islam, and the region\u2019s changing relationship with European and Asian power. Students must apply and be accepted into the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 4787, + "label": "HIEA 139GS", + "title": "An Introduction to Southeast Asia (circa 800\u20131900) (4)" + }, + { + "dept": "BENG", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 4788, + "label": "BENG 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "GPEC", + "description": "This course covers the applied practice of quantitative impact evaluation. The benchmark methodology will be randomized controlled trials. The broader set of nonexperimental tools will be understood through the ways they differ from random assignment. Practical issues in research and survey design will be discussed. Renumbered from IRGN 464. Students may not receive credit for GPEC 464 and IRGN 464. ", + "edges_from": [ + 940, + 1117, + 4790, + 4101 + ], + "edges_to": [], + "id": 4789, + "label": "GPEC 464", + "title": "Designing Field Experiments (4)" + }, + { + "dept": "GPCO", + "description": "", + "edges_from": [], + "edges_to": [ + 4789 + ], + "id": 4790, + "label": "GPCO 468", + "title": "" + }, + { + "dept": "GPEC", + "description": "This course applies theoretical frameworks in microeconomics, international economics, and economic development to study comparative economic development and current issues of economics in Southeast Asia. Topics include economic growth, crises, development mechanisms, households, firms, governments, and institutional foundations. Renumbered from IRGN 462. Students may not receive credit for GPEC 462 and IRGN 462. May be coscheduled with GPEC 262. ", + "edges_from": [ + 1594, + 1595 + ], + "edges_to": [], + "id": 4791, + "label": "GPEC 462", + "title": "Southeast Asian Economies (4)" + }, + { + "dept": "VIS", + "description": "A critical, art historical look at the world\u2019s", + "edges_from": [], + "edges_to": [], + "id": 4792, + "label": "VIS 122F", + "title": "Leonardo\u2019s La Gioconda (4)" + }, + { + "dept": "SOCI", + "description": "Designed as a broad introduction to medicine as a social institution and its relationship to other institutions as well as its relation to society. It will make use of both micro and macro sociological work in this area and introduce students to sociological perspectives of contemporary health-care issues. Will not receive credit for SOCI 40 and SOCL 40.", + "edges_from": [], + "edges_to": [], + "id": 4793, + "label": "SOCI 40", + "title": "Sociology of Health-Care Issues (4)" + }, + { + "dept": "GPEC", + "description": "Course provides an overview of health economics, focusing on developing countries. We will examine both how standard economics concepts and methods can be used to understand incentives and decision making in health-related transactions and their application to health policy. Renumbered from IRGN 468. Students may not receive credit for GPEC 468, IRGN 468, and IRGN 490, International Health Economics.", + "edges_from": [], + "edges_to": [], + "id": 4794, + "label": "GPEC 468", + "title": "International Health Economics (4)" + }, + { + "dept": "HIEU", + "description": "Greece and the Balkans during the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 4795, + "label": "HIEU 117B", + "title": "" + }, + { + "dept": "HIEU", + "description": "Greece and the Balkans in the Age of Nationalism (4)", + "edges_from": [], + "edges_to": [], + "id": 4796, + "label": "HIEU 117A", + "title": "" + }, + { + "dept": "ANSC", + "description": "A critical introduction to the study of cultural patterns of thought, action, and expression, in relation to language. Topics include semiotics and structuralism, cognition and categorization, universal vs. particulars, and ethnopoetics. ", + "edges_from": [], + "edges_to": [], + "id": 4797, + "label": "ANSC 117GS", + "title": "Language and (Multi)Culture (4)" + }, + { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation. Students may not receive credit for both HILA 132 and HILA 132GS. Program or materials fees may apply. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 4798, + "label": "HILA 132GS", + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + { + "dept": "MATH", + "description": "Techniques in Computational Mathematics III (4)", + "edges_from": [], + "edges_to": [], + "id": 4799, + "label": "MATH 273C", + "title": "Advanced" + }, + { + "dept": "MATH", + "description": "Techniques in Computational Mathematics II (4)", + "edges_from": [], + "edges_to": [], + "id": 4800, + "label": "MATH 273B", + "title": "Advanced" + }, + { + "dept": "MATH", + "description": "Techniques in Computational Mathematics I (4)", + "edges_from": [], + "edges_to": [], + "id": 4801, + "label": "MATH 273A", + "title": "Advanced" + }, + { + "dept": "LTWL", + "description": "Studies and Literature: Film History (4)", + "edges_from": [], + "edges_to": [], + "id": 4802, + "label": "LTWL 180", + "title": "Film" + }, + { + "dept": "LTWL", + "description": "Studies and Literature: Film Movement (4)", + "edges_from": [], + "edges_to": [], + "id": 4803, + "label": "LTWL 181", + "title": "Film" + }, + { + "dept": "LTWL", + "description": "Studies and Literature: Director\u2019s Work (4)", + "edges_from": [], + "edges_to": [], + "id": 4804, + "label": "LTWL 183", + "title": "Film" + }, + { + "dept": "LTWL", + "description": "Methods of literary analysis applied to the study of shots, sequences, poetics, and deep structure in filmic discourse. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4805, + "label": "LTWL 184", + "title": "Film Studies and Literature: Close Analysis of Filmic Text (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4806, + "label": "PSYC 255A", + "title": "Advanced Topics in Biological Psychology I (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4807, + "label": "PSYC 255B", + "title": "Advanced Topics in Biological Psychology II (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in biological psychology. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 4808, + "label": "PSYC 255C", + "title": "Advanced Topics in Biological Psychology III (1)" + }, + { + "dept": "ECON", + "description": "Empirical, case-based analysis requiring students to use economic theory from Econ 173A: Financial Markets and data to address real-world issues such as conducting market research, conducting discounted cash flow analyses, and applying the CAPM model to identify issues in investment management, and more. Presentation of student analyses both orally and in writing. Can be used in conjunction with another two-unit upper-division Econ course to meet major elective requirements by petition. ", + "edges_from": [ + 414 + ], + "edges_to": [], + "id": 4809, + "label": "ECON 173AL", + "title": "Applied Finance Laboratory (2)" + }, + { + "dept": "MGT", + "description": "Supply chain management involves the flows of materials and information that contribute value to a product, from the source of raw materials to end customers. This course explains how supply chains work and describes the major challenges in managing an efficient supply chain. Covers various strategic and tactical supply chain issues such as distribution strategy, information sharing strategy, outsourcing, procurement (including e-markets), product design, virtual integration, and risk management. Credit is not allowed for both MGT 174 and MGT 175. ", + "edges_from": [], + "edges_to": [], + "id": 4810, + "label": "MGT 175", + "title": "Supply Chain Management (4)" + }, + { + "dept": "USP", + "description": "(Same as POLI 103A.) This survey course explores six topics: 1) the state\u2019s political history; 2) campaigning, the mass media, and elections; 3) actors and institutions in the making of state policy; 4) local government; 5) contemporary policy issues; e.g., Proposition 13, school desegregation, crime, housing and land use, transportation, water; 6) California\u2019s role in national politics. ", + "edges_from": [], + "edges_to": [], + "id": 4811, + "label": "USP 109", + "title": "California Government and Politics (4)" + }, + { + "dept": "ECE", + "description": "This seminar class will provide a broad review of current research topics in both electrical engineering and computer engineering. Typical subject areas are signal processing, VLSI design, electronic materials and devices, radio astronomy, communications, and optical computing. ", + "edges_from": [], + "edges_to": [], + "id": 4812, + "label": "ECE 90", + "title": "Undergraduate Seminar (1)" + }, + { + "dept": "USP", + "description": "(Same as Economics 135.) Economic analysis of why and where cities develop, problems they cause, and public policies to deal with these problems. Determination of urban land rent/use, reasons for suburbanization. Transportation and congestion in cities, zoning, poverty and housing, urban local government. ", + "edges_from": [ + 410, + 419, + 420, + 4814, + 4815 + ], + "edges_to": [], + "id": 4813, + "label": "USP 102", + "title": "Urban Economics (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 4813 + ], + "id": 4814, + "label": "ECON 1A", + "title": "" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [], + "edges_to": [ + 4813 + ], + "id": 4815, + "label": "ECON 1B", + "title": "" + }, + { + "dept": "USP", + "description": "This course is designed to provide an introduction to the fundamentals of urban planning. It surveys important topics in urban planning, including economic development, urban design, transportation, environmental planning, housing, and the history of urban planning. ", + "edges_from": [], + "edges_to": [], + "id": 4816, + "label": "USP 100", + "title": "Introduction to Urban Planning (4)" + }, + { + "dept": "USP", + "description": "(Same as Political Science 160AA.) This course will explore the process by which the preferences of individuals are converted into public policy. Also included will be an examination of the complexity of policy problems, methods for designing better policies, and a review of tools used by analysts and policy makers. ", + "edges_from": [], + "edges_to": [], + "id": 4817, + "label": "USP 101", + "title": "Introduction to Policy Analysis (4)" + }, + { + "dept": "USP", + "description": "(Same as HIUS 129.) This class examines the history of racial and ethnic groups in American cities. It looks at major forces of change such as immigration to cities, political empowerment, and social movements, as well as urban policies such as housing segregation. ", + "edges_from": [], + "edges_to": [], + "id": 4818, + "label": "USP 106", + "title": "The History of Race and Ethnicity in American Cities (4)" + }, + { + "dept": "USP", + "description": "(Same as POLI 102E.) This survey course focuses upon the following six topics: the evolution of urban politics since the mid-nineteenth century; the urban fiscal crisis; federal/urban relationships; the \u201cnew\u201d politics; urban power structure and leadership; and selected contemporary policy issues such as downtown redevelopment, poverty, and race. ", + "edges_from": [], + "edges_to": [], + "id": 4819, + "label": "USP 107", + "title": "Urban Politics (4)" + }, + { + "dept": "USP", + "description": "(Same as ETHN 105.) This course will examine the city as a crucible of ethnic identity exploring both the racial and ethnic dimensions of urban life in the United States from the Civil War to the present. ", + "edges_from": [], + "edges_to": [], + "id": 4820, + "label": "USP 104", + "title": "Ethnic Diversity and the City (4)" + }, + { + "dept": "USP", + "description": "(Same as Sociology 153.) Introduces students", + "edges_from": [], + "edges_to": [], + "id": 4821, + "label": "USP 105", + "title": "Urban Sociology (4)" + }, + { + "dept": "BGRD", + "description": "Presentation of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4822, + "label": "BGRD 234", + "title": "Research Discussion in Cell Signaling in Drosophila (3)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4823, + "label": "BGRD 230", + "title": "Research Discussion in Cell Signaling Pathways (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4824, + "label": "BGRD 231", + "title": "Research Discussion in Nuclear Transport and Function (1)" + }, + { + "dept": "MUS", + "description": "Theoretical bases for analyzing musical sound. Approaches to perception and cognition, including psychoacoustics and information processing, both ecological and computational. Models of audition including Helmholtz\u2019s consonance/dissonance theory and Bregman\u2019s streaming model. Musical cognition theories of Lerdahl and Narmour. Neural network models of music perception and cognition. Models of rhythm. The problem of timbre and timbre perception. ", + "edges_from": [], + "edges_to": [ + 4828 + ], + "id": 4825, + "label": "MUS 270B", + "title": "Musical Cognitive Science (4)" + }, + { + "dept": "MUS", + "description": "Transformations in musical composition; series and intervallic structures; serial approaches to rhythm and dynamic. The stochastic music of Xenakis and Cage. Hiller\u2019s automatic composition. Improvisational models. Computer analysis of musical style. Neurally inspired and other quasiparallel algorithms. ", + "edges_from": [], + "edges_to": [ + 4828 + ], + "id": 4826, + "label": "MUS 270C", + "title": "Compositional Algorithms (4)" + }, + { + "dept": "MUS", + "description": "Digital techniques for analysis, synthesis, and processing of musical sounds. Sampling theory. Software synthesis techniques. Digital filter design. The short-time Fourier transform. Numerical accuracy considerations. ", + "edges_from": [], + "edges_to": [ + 4828 + ], + "id": 4827, + "label": "MUS 270A", + "title": "Digital Audio Processing (4)" + }, + { + "dept": "MUS", + "description": "Meetings on group basis with computer music faculty in support of individual student research projects. ", + "edges_from": [ + 4825, + 4826, + 4827 + ], + "edges_to": [], + "id": 4828, + "label": "MUS 270D", + "title": "Advanced Projects in Computer Music (4)" + }, + { + "dept": "SE", + "description": "Review methods used to repair aerospace structures. Emphasis on primary load-bearing airframe structures and analysis/design of substantiate repairs. Identification of structural/corrosion distress, fatigue cracking, damage tolerance, integrity and durability of built-up members, patching, health monitoring. Use of computer resources. ", + "edges_from": [ + 2212 + ], + "edges_to": [], + "id": 4829, + "label": "SE 171", + "title": "Aerospace Structures Repair (4)" + }, + { + "dept": "HIEU", + "description": "A lecture-discussion course that examines the origins and evolution of religious freedom from the age of Tudors to the adoption of the Bill of Rights in the United States in 1791. Course materials fee may be required. Students must apply and be accepted into the Global Seminar Program.", + "edges_from": [], + "edges_to": [], + "id": 4830, + "label": "HIEU 123GS", + "title": "Origins of Law and Religious Freedom in England and America, 1530\u20131971 (4)" + }, + { + "dept": "ANAR", + "description": "The origins and development of early cities in the Old and New Worlds are compared and contrasted from an archaeological anthropological perspective. ", + "edges_from": [], + "edges_to": [], + "id": 4831, + "label": "ANAR 112", + "title": "Ancient Urbanism (4)" + }, + { + "dept": "MGT", + "description": "This course is taken by students actively working on their dissertation", + "edges_from": [], + "edges_to": [], + "id": 4832, + "label": "MGT 296", + "title": "Dissertation (4\u201312)" + }, + { + "dept": "MGT", + "description": "Each student who has not advanced to candidacy by June of the third year must enroll in and complete MGT 299 during the fall, winter, and spring quarters of the fourth year. ", + "edges_from": [], + "edges_to": [], + "id": 4833, + "label": "MGT 299", + "title": "Advanced Field Advising (4)" + }, + { + "dept": "COGR", + "description": "In this course language is broadly conceived as a medium of communication, expressed multimodally. Among the topics of this course are: origins of speech and gesture, culture and language, language and social practice, and language in performance. ", + "edges_from": [], + "edges_to": [], + "id": 4834, + "label": "COGR 258", + "title": "Language in Human Communication (4)" + }, + { + "dept": "COGR", + "description": "Course examines the historical impetus, development, and construction of \u201cThird Cinema\u201d\u2014a particular style of media making in Africa, Latin America, and Asia. An interdisciplinary approach interrogates how Third Cinema influences world cinema of today. Additional screening session required. ", + "edges_from": [], + "edges_to": [], + "id": 4835, + "label": "COGR 250", + "title": "Third World Cinema Screening (4)" + }, + { + "dept": "COGR", + "description": "Theories of the media considered in a historical and comparative context from the rise of preprint reproduction technologies to the digital age. Focuses on communication processes and practices in terms of formality, technology, the politics of subjectivity, and institutions. ", + "edges_from": [], + "edges_to": [], + "id": 4836, + "label": "COGR 251", + "title": "Media Theory (4)" + }, + { + "dept": "COGR", + "description": "Seminar focuses on race as a social, phenomenal, historical, and political formation. The seminar will address the historical emergence and theorization of race and the contemporary ways in which race/racism is a modern principle of social division, exclusion, and political mobilization. ", + "edges_from": [], + "edges_to": [], + "id": 4837, + "label": "COGR 252", + "title": "Race and Racism (4)" + }, + { + "dept": "COGR", + "description": "Seminar will focus on music and sound as social, aesthetic, historical, can political formations and phenomena. The relationship between musical and extramusical forces will be examined. This course intensively addresses cultural politics of sound/music making, hearing and performance. ", + "edges_from": [], + "edges_to": [], + "id": 4838, + "label": "COGR 253", + "title": "Cultural Study of Music and Sound (4)" + }, + { + "dept": "COGR", + "description": "The conceptual and regulatory boundaries of intellectual property law are increasingly challenged by technological change and by ownership claims over non-Western forms of creativity. Course focuses on those challenges from three interrelated perspectives: historical, philosophical, and political. ", + "edges_from": [], + "edges_to": [], + "id": 4839, + "label": "COGR 254", + "title": "Intellectual Property (4)" + }, + { + "dept": "COGR", + "description": "Considers classical and contemporary texts in primarily western political thought with an eye toward understanding how such theory is and/or might be brought to bear in grounding different approaches and agendas in the study of communication. ", + "edges_from": [], + "edges_to": [], + "id": 4840, + "label": "COGR 255", + "title": "Studies in Political Theory (4)" + }, + { + "dept": "COGR", + "description": "This course provides an overview of intellectual and political thought developed through decolonization struggles in Africa and the Caribbean, and the subsequent emergence of postcoloniality from subaltern studies in the 1980s to contemporary work shaped by globalization and neoliberal philosophies. ", + "edges_from": [], + "edges_to": [], + "id": 4841, + "label": "COGR 256", + "title": "Postcolonial Theory (4)" + }, + { + "dept": "COGR", + "description": "Social theory forms the theoretical foundation for much work in communication, including political communication, questions of the public and public opinion, propaganda and ideology. The course will consider Marx, Weber, Durkheim, Simmel, Dewey, Habermas, the Frankfurt School and its critics. ", + "edges_from": [], + "edges_to": [], + "id": 4842, + "label": "COGR 257", + "title": "Communication and Social Theory (4)" + }, + { + "dept": "MUS", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in music (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 4843, + "label": "MUS 192", + "title": "Senior Seminar in Music (1)" + }, + { + "dept": "BENG", + "description": "Introduction to molecular and cellular neurobiology and their integration with systems neurophysiology. Homeostasis will be an organizing theme. The material will be presented both qualitatively and quantitatively, emphasizing the mathematical, physical, and chemical foundations and dynamics that underlie neurophysiological functions. ", + "edges_from": [], + "edges_to": [], + "id": 4844, + "label": "BENG 234", + "title": "Intro to Neurophysiology: Molecules to Systems (4)" + }, + { + "dept": "LIGN", + "description": "How can we explain the difference between what is literally said versus what is actually conveyed in the language of law, politics, and advertising? How people\u2019s ordinary command of language and their reasoning skills are used to manipulate them. ", + "edges_from": [], + "edges_to": [], + "id": 4845, + "label": "LIGN 176", + "title": "Language of Politics and Advertising (4)" + }, + { + "dept": "LIGN", + "description": "Official and minority languages, pidgins and Creoles, language planning, bilingual education and literacy, code switching, and language attrition. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 4846, + "label": "LIGN 177", + "title": "Multilingualism (4)" + }, + { + "dept": "LIGN", + "description": "(Same as SOCI 116.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span, within ethnolinguistic minority communities in the United States, across sexual orientations and cultures. Recommended preparation: LIGN", + "edges_from": [], + "edges_to": [], + "id": 4847, + "label": "LIGN 174", + "title": "Gender and Language in Society (4)" + }, + { + "dept": "LIGN", + "description": "The study of language in its social context, with emphasis on the different types of linguistic variation and the principles underlying them. Dialects, registers, gender-based linguistic differences, multilingualism, pidginization and creolization, factors influencing linguistic choice, formal models of variation; emphasis is given both to socially determined differences within the United States and US ethnic groups and to cross-cultural differences in language use and variation. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 4848, + "label": "LIGN 175", + "title": "Sociolinguistics (4)" + }, + { + "dept": "TDGE", + "description": "This course will use a broad range of animation styles and genres to examine larger issues in art practice, focusing closely on the relationship between form and content, and how sound/set/costume/character design impacts narrative. ", + "edges_from": [], + "edges_to": [], + "id": 4849, + "label": "TDGE 126", + "title": "Storytelling and Design in Animation (4)" + }, + { + "dept": "LIGN", + "description": "The study of how humans learn, represent, comprehend, and produce language. Topics include visual and auditory recognition of words, sentence comprehension, reading, sentence production, language acquisition, neural representation of language, bilingualism, and language disorders. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 4850, + "label": "LIGN 170", + "title": "Psycholinguistics (4)" + }, + { + "dept": "LIGN", + "description": "A central cognitive, developmental mystery is how children learn their first language. Overview of research in the learning of sound systems, word forms and word meanings, and word combinations. Exploration of the relation between cognitive and language development. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 4851, + "label": "LIGN 171", + "title": "Child Language Acquisition (4)" + }, + { + "dept": "LTEN", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4852, + "label": "LTEN 169", + "title": "Topics in Latino/a Literature (4)" + }, + { + "dept": "LIGN", + "description": "This course will investigate topics in second language acquisition including the critical period, the processing and neural representation of language in bilinguals, theories of second language acquisition and creolization, exceptional language learners, and parallels with first language acquisition. ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 4853, + "label": "LIGN 179", + "title": "Second Language Acquisition Research (4)" + }, + { + "dept": "TDGE", + "description": "An acting course for nonmajors, building on the acting fundamentals developed in TDGE 5. Using analysis of film acting to practice in studio exercises and scene work, student actors learn to approach a text using imagination as their primary tool. ", + "edges_from": [ + 4855 + ], + "edges_to": [], + "id": 4854, + "label": "TDGE 105", + "title": "Exploring Acting (4)" + }, + { + "dept": "TDGE", + "description": "", + "edges_from": [], + "edges_to": [ + 4854 + ], + "id": 4855, + "label": "TDGE 5", + "title": "" + }, + { + "dept": "LIGN", + "description": "An overview of sign language research in terms of how it informs language theory. Topics include the structure of ASL, acquisition, psycholinguistic and neurolinguistic processing of sign language in comparison to spoken language, critical period effects, and language evolution. ", + "edges_from": [], + "edges_to": [], + "id": 4856, + "label": "LIGN 280", + "title": "Sign Language Research (4)" + }, + { + "dept": "LIGN", + "description": "Children\u2019s first language acquisition and how it illuminates linguistic, cognitive, and neurolingusitic theory. Topics include past and current research with a focus on design, methodology, and data analysis in child language.", + "edges_from": [], + "edges_to": [], + "id": 4857, + "label": "LIGN 281", + "title": "Language Acquisition Theory and Research (4)" + }, + { + "dept": "LIGN", + "description": "How the environment and the biology of language, including sensory motor modality and neural development, affect language development. Topics include the paradigms used to study the critical period for language.", + "edges_from": [], + "edges_to": [], + "id": 4858, + "label": "LIGN 282", + "title": "Biology and Environment in Language Acquisition (4)" + }, + { + "dept": "LIGN", + "description": "(Same as Psychology 260.) This class will investigate case studies in conceptual development that interact with language acquisition, including domains such as time, space, number, and theory of mind. The approach of the class will be to explore the chosen case study from the perspective of philosophy, linguistics, psychology, anthropology, and comparative psychology, with a particular focus on how conceptual development is affected by the acquisition of language.", + "edges_from": [], + "edges_to": [], + "id": 4859, + "label": "LIGN 283", + "title": "Language and Conceptual Development (4)" + }, + { + "dept": "BENG", + "description": "This lab course provides hands-on experience with MR physics, data acquisition, image formation, and data analysis, using a human MRI scanner. It will cover basic principles of MRI and key applications, including scanner hardware, spin echoes, gradient echoes, echo-planar imaging, MR angiography, fMRI, and perfusion imaging. This will be accomplished through one hour of formal instruction and four hours of scanner time per week. Each week will cover one topic, and grading will be based on lab reports. The last two weeks are reserved for a final project, which can be student initiated. ", + "edges_from": [ + 2063 + ], + "edges_to": [], + "id": 4860, + "label": "BENG 278/RAD 278", + "title": "Magnetic Resonance Imaging (4)" + }, + { + "dept": "ECE", + "description": "An introduction to electrical and computer engineering. Topics include circuit theory, assembly, and testing, embedded systems programming and debugging, transducer mechanisms and interfacing transducers, signals and systems theory, digital signal processing, and modular design techniques. ", + "edges_from": [], + "edges_to": [], + "id": 4861, + "label": "ECE 5", + "title": "Introduction to Electrical and Computer Engineering (4)" + }, + { + "dept": "HIAF", + "description": "West Africa from the nineteenth century onwards and examines the broad outlines of historical developments in the sub-region through the twentieth century, including such themes as religious, political, and social changes.", + "edges_from": [], + "edges_to": [], + "id": 4862, + "label": "HIAF 112", + "title": "West Africa since 1880 (4)" + }, + { + "dept": "HIAF", + "description": "Wars and the Global Order: Africa and Asia (4)", + "edges_from": [], + "edges_to": [], + "id": 4863, + "label": "HIAF 113", + "title": "Small" + }, + { + "dept": "HIAF", + "description": "A survey of African history dealing with the European scramble for territory, primary resistance movements, the rise of nationalism and the response of metropolitan powers, the transfer of power, self-rule and military coups, and the quest for identity and unity.", + "edges_from": [], + "edges_to": [], + "id": 4864, + "label": "HIAF 111", + "title": "Modern Africa since 1880 (4)" + }, + { + "dept": "ETHN", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation and grading of examinations and other written exercises, and student relations.", + "edges_from": [], + "edges_to": [], + "id": 4865, + "label": "ETHN 500", + "title": "Apprentice Teaching in Ethnic Studies (4)" + }, + { + "dept": "POLI", + "description": "A reading and research seminar on the origins, development, and politics of nationalism and the nation-state. ", + "edges_from": [], + "edges_to": [], + "id": 4866, + "label": "POLI 225B", + "title": "The Nation-State (4)" + }, + { + "dept": "NEU", + "description": "These courses are designed for graduate students in the neurosciences and other departments that are part of the interdisciplinary program (i.e., Biology, Cog Sci, Psychology). These courses have been designed to cover as much basic neuroscience as possible in three quarters of study. It will combine two three-hour meetings each week with a 1.5 hour lecture and a 1.5 hour discussion of papers. These will be required courses for all first-year neurosciences graduate students. Biology will cross-list courses under Biology headings, making it a requirement of first-year Biology graduate students. ", + "edges_from": [], + "edges_to": [], + "id": 4867, + "label": "NEU 200A-B-C", + "title": "Basic Neuroscience (4-4-4)" + }, + { + "dept": "ANAR", + "description": "The archaeological field school will take place in the eastern Mediterranean region. It is an introduction to the design of research projects, the techniques of data collection, and the methods of excavation. Includes post-excavation lab work, study trips, and field journal. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4868, + "label": "ANAR 190", + "title": "Eastern Mediterranean Archaeological Field School (12)" + }, + { + "dept": "ANAR", + "description": "Students learn advanced field methods in cyber-archaeology and excavation. Includes 3-D data capture tools and processing, digital photography, construction of research designs, cyber-infrastructure. Takes place in the eastern Mediterranean region. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 4869, + "label": "ANAR 191", + "title": "Advanced Cyber-Archaeology Field School (12)" + }, + { + "dept": "GPPA", + "description": "This course examines the human dimension of environmental change, focusing on topics such as biodiversity conservation, climate change, land use systems, deforestation, and the institutions of regulation. The course uses Latin America as its central focus but, for comparative perspective, uses cases from Asia and Africa. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 472. Students may not receive credit for GPPA 472 and IRGN 472.", + "edges_from": [], + "edges_to": [], + "id": 4870, + "label": "GPPA 472", + "title": "Latin American Environmental and Energy Policy (4)" + }, + { + "dept": "HIUS", + "description": "The United States as modern industrial nation. Emphasis on the logic of the growth process, the social and political tensions accompanying expansion, and twentieth-century transformations of American capitalism.", + "edges_from": [], + "edges_to": [], + "id": 4871, + "label": "HIUS 141/ECON 159", + "title": "Economic History of the United States II (4)" + }, + { + "dept": "PHYS", + "description": "An introduction to galaxies and cosmology. Topics include the Milky Way, galaxy types and distances, dark matter, large scale structure, the expansion of the Universe, dark energy, and the early Universe. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 4872, + "label": "PHYS 7", + "title": "Galaxies and Cosmology (4)" + }, + { + "dept": "PHYS", + "description": "An introduction to the evolution of stars, including their birth and death. Topics include constellations, the atom and light, telescopes, stellar birth, stellar evolution, white dwarfs, neutron stars, black holes, and general relativity. This course uses basic algebra, proportion, radians, logs, and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 4873, + "label": "PHYS 5", + "title": "Stars and Black Holes (4)" + }, + { + "dept": "CSE", + "description": "Connectionist models and a sampling of other cognitive modeling techniques. Models of language processing, memory, sequential processes, and vision. Areas covered may vary depending on student and faculty interests. Can be repeated for credit. CSE 151 or CSE 250B or CSE 253 or CSE 254, or equivalent experience recommended. ", + "edges_from": [], + "edges_to": [], + "id": 4874, + "label": "CSE 258A", + "title": "Cognitive Modeling (4)" + }, + { + "dept": "PHYS", + "description": "Examines phenomena and technology encountered in daily life from a physics perspective. Topics include waves, musical instruments, telecommunication, sports, appliances, transportation, computers, and energy sources. Physics concepts will be introduced and discussed as needed employing some algebra. No prior physics knowledge is required.", + "edges_from": [], + "edges_to": [], + "id": 4875, + "label": "PHYS 8", + "title": "Physics of Everyday Life (4)" + }, + { + "dept": "PHYS", + "description": "An exploration of our solar system. Topics include the Sun, terrestrial and giant planets, satellites, asteroids, comets, dwarf planets and the Kuiper Belt, exoplanets, and the formation of planetary systems. This course uses basic algebra, proportion, radians, logs and powers. Physics 5, 7, 9, and 13 form a four-quarter sequence and can be taken individually in any order.", + "edges_from": [], + "edges_to": [], + "id": 4876, + "label": "PHYS 9", + "title": "The Solar System (4)" + }, + { + "dept": "LTAM", + "description": "Study of the relationships between cultural production (literature, film, popular culture), social change, and political conflict, covering topics such as colonialism, imperialism, modernization, social movements, dictatorship, and revolution. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4877, + "label": "LTAM 140", + "title": "Topics in Culture and Politics (4)" + }, + { + "dept": "HIUS", + "description": "181/281. Topics in Twentieth Century United States History (4)", + "edges_from": [], + "edges_to": [], + "id": 4878, + "label": "HIUS", + "title": "" + }, + { + "dept": "NANO", + "description": "Electrochemistry and electrochemical engineering for energy applications. Thermodynamics and kinetics of electrochemical reactions; fundamental principles of batteries, super capacitors, fuel cells, and electrochemical synthesis systems; electrochemical analysis of these systems, engineering design considerations, and modeling. Practical device design and fabrication will be covered in greater detail.", + "edges_from": [], + "edges_to": [], + "id": 4879, + "label": "NANO 279", + "title": "Advanced Electrochemical Energy Engineering (4)" + }, + { + "dept": "NANO", + "description": "Overview of of graphene and other 2-D materials fundamental properties, applications, and experimental practice. Theory covers band structure, Dirac cone, mobility, and Fermi level tuning. Applications cover electronics and optoelectronics. Lab sessions include graphene and other 2-D materials manipulation and measurement.", + "edges_from": [], + "edges_to": [], + "id": 4880, + "label": "NANO 275", + "title": "Two-Dimensional Materials: Properties, Applications, and Practice (4)" + }, + { + "dept": "NANO", + "description": "This course will introduce a background in optics and photonics for nanoscale materials and devices and explore light-matter interactions on the nanoscale. Fundamentals of light absorption, emission, lasing, and waveguiding in nanoscale structures, optical resonances in metallic (plasmonic) and semiconductor (excitonic) nanomaterials.", + "edges_from": [], + "edges_to": [], + "id": 4881, + "label": "NANO 271", + "title": "Nanophotonics (4)" + }, + { + "dept": "NANO", + "description": "General overview of flexible/stretchable electronic devices, with a focus on the enabling nanomaterials and structures that lead to the tolerance to extreme physical deformations. Relevant nanofabrication techniques and manufacturing approaches will also be included.", + "edges_from": [], + "edges_to": [], + "id": 4882, + "label": "NANO 272", + "title": "Soft Electronics (4)" + }, + { + "dept": "COGS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 4883, + "label": "COGS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "PSYC", + "description": "This course provides experience conducting educational research and outreach for children in greater San Diego County. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 4884, + "label": "PSYC 117", + "title": "Laboratory in Educational Research and Outreach (4)" + }, + { + "dept": "PSYC", + "description": "This course provides examination of theory, research design, and methods for clinical research. Students complete an internship at a clinical research lab, culminating in a paper. May be taken for credit three times for a total of eight units. Students may not receive credit for both PSYC 116 and PSYC 107. ", + "edges_from": [ + 4886 + ], + "edges_to": [], + "id": 4885, + "label": "PSYC 116", + "title": "Laboratory in Clinical Psychology Research (2, 4)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [], + "edges_to": [ + 4885 + ], + "id": 4886, + "label": "PSYC 199", + "title": "" + }, + { + "dept": "CSE", + "description": "Zero-knowledge, secure computation, session-key distribution, protocols, electronic payment, one-way functions, trapdoor permutations, pseudorandom bit generators, hardcore bits. ", + "edges_from": [ + 4888, + 393, + 142 + ], + "edges_to": [], + "id": 4887, + "label": "CSE 208", + "title": "Advanced Cryptography (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 142 + ], + "edges_to": [ + 4887 + ], + "id": 4888, + "label": "CSE 207", + "title": "" + }, + { + "dept": "MGT", + "description": "Directed individual study", + "edges_from": [], + "edges_to": [], + "id": 4889, + "label": "MGT 199", + "title": "Directed Independent Study (4)" + }, + { + "dept": "MGT", + "description": "A small group undertaking, on a topic or in a field not included in the regular curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 4890, + "label": "MGT 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "MATH", + "description": "Statistical analysis of data by means of package programs. Regression, analysis of variance, discriminant analysis, principal components, Monte Carlo simulation, and graphical methods. Emphasis will be on understanding the connections between statistical theory, numerical results, and analysis of real data. Recommended preparation: exposure to computer programming (such as CSE 5A, CSE 7, or ECE 15) highly recommended. ", + "edges_from": [ + 132, + 709, + 3271, + 3977, + 3978, + 171, + 1844, + 169, + 794, + 4892, + 573 + ], + "edges_to": [], + "id": 4891, + "label": "MATH 185", + "title": "Introduction to Computational Statistics (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [ + 132, + 171, + 1220, + 573, + 169 + ], + "edges_to": [ + 4891, + 5197 + ], + "id": 4892, + "label": "MATH 181A", + "title": "" + }, + { + "dept": "LTCS", + "description": "(Cross-listed with CGS 119.) The course explores the politics of pleasure in relation to the production, reception, and performance of Asian American identities in the mass media of film, video, and the Internet. The course considers how the \u201cdeviant\u201d sexuality of Asian Americans (e.g., hypersexual women and emasculated men) does more than uniformly harm and subjugate Asian American subjects. The texts explored alternate between those produced by majoritarian culture and the interventions made by Asian American filmmakers. Students may not receive credit for LTCS 119 and CGS 119.", + "edges_from": [], + "edges_to": [], + "id": 4893, + "label": "LTCS 119", + "title": "Asian American Film and Media (4)" + }, + { + "dept": "MATH", + "description": "An introduction to various quantitative methods and statistical techniques for analyzing data\u2014in particular big data. Quick review of probability continuing to topics of how to process, analyze, and visualize data using statistical language R. Further topics include basic inference, sampling, hypothesis testing, bootstrap methods, and regression and diagnostics. Offers conceptual explanation of techniques, along with opportunities to examine, implement, and practice them in real and simulated data. ", + "edges_from": [ + 132, + 3271, + 3977, + 3978, + 171, + 844, + 2429, + 18, + 1844, + 169, + 1220, + 794, + 573 + ], + "edges_to": [], + "id": 4894, + "label": "MATH 189", + "title": "Exploratory Data Analysis and Inference (4)" + }, + { + "dept": "VIS", + "description": "Art of Ancient Mexico and Central America (4)", + "edges_from": [], + "edges_to": [], + "id": 4895, + "label": "VIS 126AN", + "title": "Pre-Columbian" + }, + { + "dept": "CSE", + "description": "260B. VLSI Integration of Computing Circuitry (4)", + "edges_from": [], + "edges_to": [], + "id": 4896, + "label": "CSE 241A/ECE", + "title": "" + }, + { + "dept": "Linguistics/Spanish", + "description": "Conducted entirely in Spanish. Course aims to improve oral language skills through discussions of social science topics, with emphasis on political events and current affairs. Course materials encompass televised news broadcasts, newspapers and periodicals. LISP 15 is offered fall quarter only, LISP 16 is offered winter quarter only, and LISP 17 is offered spring quarter only. Each course may be taken one time and need not be taken in sequence. ", + "edges_from": [ + 1280, + 1278 + ], + "edges_to": [], + "id": 4897, + "label": "Linguistics/Spanish (LISP) 15, 16, 17", + "title": "Intermediate Spanish for the Social Sciences (2)" + }, + { + "dept": "LTCO", + "description": "This interdisciplinary course looks at performativity as a social process of cultural significance. It examines the works of John Searle, Jacques Derrida, Judith Butler, and Jose Esteban Munoz and underlines the role of performative action in linguistic, literary, cinematic, theatrical, political, and other forms of human interactivity. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4898, + "label": "LTCO 284", + "title": "Performativity (4)" + }, + { + "dept": "LTCO", + "description": "Research in literary theory and aesthetic philosophies. Single and multiple authors and topics; Plato and Aristotle, Renaissance treatises, Winckleman, Kant and Hegel in the Enlightenment, Warburg, Heidegger and Panofsky, contemporary art theory, et al. May be taken up to two times for credit when topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4899, + "label": "LTCO 285", + "title": "Literature and Aesthetics (4)" + }, + { + "dept": "LTCO", + "description": "A comparative approach of political theory based on historical periods (with the tools of new historicism), various cultures (inspired by anthropological research), and referring to the most important philosophical thinkers from Western and non-Western traditions. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 4900, + "label": "LTCO 287", + "title": "Culture and Political Theory (4)" + }, + { + "dept": "LTCO", + "description": "A study of literature and film in relation to one another, to critical and aesthetic theories, and to historical context. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4901, + "label": "LTCO 281", + "title": "Literature and Film (4)" + }, + { + "dept": "LTCO", + "description": "Questions and problems from the history of philosophy or from the various fields of philosophy (e.g., epistemology, ethics, logic) in their interaction with intellectual issues and questions addressed by literary criticism and theory. May be taken for credit up to three times. Restricted to major code LT77 or consent of instructor and department.", + "edges_from": [], + "edges_to": [], + "id": 4902, + "label": "LTCO 282", + "title": "Literature and Philosophy (4)" + }, + { + "dept": "HIUS", + "description": "This seminar will explore the histories of sexual relations, politics, and cultures that both cross and define racial boundaries in the nineteenth and twentieth centuries. Reading will focus on the United States as well as take up studies sited in Canada and Latin America. Graduate students are expected to submit a more substantial piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 4903, + "label": "HIUS 176/276", + "title": "Race and Sexual Politics (4)" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the third in a four-course series. ", + "edges_from": [ + 4905 + ], + "edges_to": [ + 4907 + ], + "id": 4904, + "label": "EDS 289C", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [ + 4906 + ], + "edges_to": [ + 4904 + ], + "id": 4905, + "label": "EDS 289B", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 4905 + ], + "id": 4906, + "label": "EDS 289A", + "title": "" + }, + { + "dept": "EDS", + "description": "This seminar provides an opportunity for doctoral candidates to present and critique in-progress dissertation research and writing. Topics addressed will also include writing for professional publications and presenting research findings to varied audiences. This is the fourth course in a four-course series. ", + "edges_from": [ + 4904 + ], + "edges_to": [], + "id": 4907, + "label": "EDS 289D", + "title": "Dissertation Writing Seminar (4)" + }, + { + "dept": "POLI", + "description": "This course is concerned with the interaction between representative democracy and capitalism in American political history. The key to understanding this interaction is the role of the entrepreneur in the economy and how unexpected economic change shapes politics. ", + "edges_from": [], + "edges_to": [], + "id": 4908, + "label": "POLI 100P", + "title": "Economic Entrepreneurs and American Politics (4)" + }, + { + "dept": "POLI", + "description": "This course uses the tools of political science and economics to study how corporations affect and are affected by politics. We will cover a broad range of issues, including regulation, lawmaking, mass media, interest group mobilization, and corporate social responsibility.", + "edges_from": [], + "edges_to": [], + "id": 4909, + "label": "POLI 100T", + "title": "Business and Politics (4)" + }, + { + "dept": "POLI", + "description": "This course provides an introduction to game theory with an emphasis on applications in economics, political science, and business. Game theory uses simple mathematical models to understand social phenomena. The required mathematical background is minimal (high school algebra).", + "edges_from": [], + "edges_to": [], + "id": 4910, + "label": "POLI 100U", + "title": "Games, Strategy, and Politics (4)" + }, + { + "dept": "TDDE", + "description": "This course will examine the field of projection design for theatre and dance performance. Students will study and produce original works based on the theoretical and aesthetic approaches of animation, film, performance, and installation art that influence contemporary projection design. ", + "edges_from": [], + "edges_to": [], + "id": 4911, + "label": "TDDE 151", + "title": "Digital Video Design (4)" + }, + { + "dept": "ETHN", + "description": "How did the United States become an empire? This course approaches the historical and contemporary problem of the United States as an imperial power through analyses of hierarchies and cultures at home and outside of formal US borders. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 4912, + "label": "ETHN 268", + "title": "Theories and Cultures of US Imperialism (4)" + }, + { + "dept": "COGS", + "description": "Review of historical perspectives: introspectionist, behaviorist, and cognitivist models. Examination of how perceptual and motor constraints and ecological demands yield species-specific differences in cognitive repertoire. Contemporary issues in the comparative study of the evolution of human cognition. ", + "edges_from": [], + "edges_to": [], + "id": 4913, + "label": "COGS 143", + "title": "Animal Cognition (4)" + }, + { + "dept": "POLI", + "description": "This course examines the development of the two major parties from 1789 to the present. Considers the nature of party coalitions, the role of leaders, activists, organizers, and voters, and the performance of parties in government.", + "edges_from": [], + "edges_to": [], + "id": 4914, + "label": "POLI 100C", + "title": "American Political Parties (4)" + }, + { + "dept": "POLI", + "description": "The theory and practice of interest group politics in the United States. Theories of pluralism and collective action, the behavior and influence of lobbies, the role of political action committees, and other important aspects of group action in politics are examined. ", + "edges_from": [], + "edges_to": [], + "id": 4915, + "label": "POLI 100E", + "title": "Interest Group Politics (4)" + }, + { + "dept": "POLI", + "description": "This class explores the many ways in which face-to-face social networks have a powerful effect on a wide range of human behaviors. With a foundation in understanding real-world networks, we can then consider how these networks function online.", + "edges_from": [], + "edges_to": [], + "id": 4916, + "label": "POLI 100F", + "title": "Social Networks (4)" + }, + { + "dept": "POLI", + "description": "This course explores the various aspects of a political campaign including campaign organization, vote targeting, political parties, social media, fundraising, polling, media interactions, and more. These areas are examined citing specific examples from federal, state, and local campaigns.", + "edges_from": [], + "edges_to": [], + "id": 4917, + "label": "POLI 100G", + "title": "How to Win or Lose an Election (4)" + }, + { + "dept": "ETHN", + "description": "and Borderlands: The Local and Global (4)", + "edges_from": [], + "edges_to": [], + "id": 4918, + "label": "ETHN 260", + "title": "Transnationalism" + }, + { + "dept": "POLI", + "description": "Readings examine how the multiracial character of the United States has shaped the broad outlines of American politics. Cases include the founding/the Constitution, southern politics, social organization in formerly Mexican regions, the New Deal, consequences of limited suffrage. ", + "edges_from": [], + "edges_to": [], + "id": 4919, + "label": "POLI 100J", + "title": "Race in American Political Development (4)" + }, + { + "dept": "POLI", + "description": "The railroads transformed the economy and politics of the United States in the nineteenth century. The railroads were the first big businesses, and their sheer size led inevitably to conflict with governments at all levels. This conflict shaped modern politics. ", + "edges_from": [], + "edges_to": [], + "id": 4920, + "label": "POLI 100K", + "title": "Railroads and American Politics (4)" + }, + { + "dept": "ETHN", + "description": "This course surveys the field of immigration and refugee studies and introduces students to recent theories and cutting-edge research in the field. Key topics: gender and migration; diaspora and transnationalism; immigration, race, and citizenship; and globalization and immigrant labor. ", + "edges_from": [], + "edges_to": [], + "id": 4921, + "label": "ETHN 265", + "title": "Critical Immigration and Refugee Studies (4)" + }, + { + "dept": "POLI", + "description": "We begin with hypotheses about how people develop political attitudes, and methods to test those hypotheses. The second half focuses on emerging cognitive neuroscience insights, including brain imaging, and asks how these inform theories of political cognition, affect, and behavior. ", + "edges_from": [], + "edges_to": [], + "id": 4922, + "label": "POLI 100M", + "title": "Political Psychology (4)" + }, + { + "dept": "ETHN", + "description": "We analyze how concepts of power and memory are appropriated in diverse narratives: literature, theatre, personal testimonies, monuments, museums, memorials; and examine how mutually constituted processes of remembering/forgetting work to produce official discourses of nationalism, colonialism, violence, and construction of subaltern subjectivities. ", + "edges_from": [], + "edges_to": [], + "id": 4923, + "label": "ETHN 267", + "title": "History and Memory (4)" + }, + { + "dept": "ETHN", + "description": "This course examines popular culture as a site of domination", + "edges_from": [], + "edges_to": [], + "id": 4924, + "label": "ETHN 266", + "title": "Popular Culture and Pedagogy (4)" + }, + { + "dept": "HILA", + "description": "This course surveys the history of the region by focusing on two interrelated phenomena\u2014the absence of democracy in most nations and the region\u2019s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.", + "edges_from": [], + "edges_to": [], + "id": 4925, + "label": "HILA 102D", + "title": "Latin America in the Twentieth Century (4)" + }, + { + "dept": "TDTR", + "description": "The study of dance on film and video, the evolution of the creation, filming, editing, and production of dance for the camera. Major dance film works will be analyzed and discussed from choreography in the movies to dances made for film. ", + "edges_from": [ + 1871 + ], + "edges_to": [], + "id": 4926, + "label": "TDTR 20", + "title": "Dance on Film (4)" + }, + { + "dept": "ETHN", + "description": "This course introduces students to key issues in Asian American lives, with emphasis on the global historical context of migration; changing ethnic and racial consciousness; economic, social, and political status; cultural production; and family and gender relations.", + "edges_from": [], + "edges_to": [], + "id": 4927, + "label": "ETHN 20", + "title": "Introduction to Asian American Studies (4)" + }, + { + "dept": "AUD", + "description": "Applications of clinical procedures to patient assessment. Includes clinical observation, interaction with otologists, and supervised patient care involving diagnostics and hearing-aid evaluations in the UC San Diego audiology clinics. This course may be taken more than once. ", + "edges_from": [ + 2144 + ], + "edges_to": [], + "id": 4928, + "label": "AUD 284", + "title": "Clinical Practice in Audiology II (1-4)" + }, + { + "dept": "ETHN", + "description": "Individual research on a topic that leads to the writing of a major paper. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 4929, + "label": "ETHN 199", + "title": "Supervised Independent Study and Research (4)" + }, + { + "dept": "ETHN", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum by special arrangement with a faculty member. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 4930, + "label": "ETHN 198", + "title": "Directed Group Studies (4)" + }, + { + "dept": "ETHN", + "description": "This course comprises supervised community fieldwork on topics of importance to racial and ethnic communities in the greater San Diego area. Regular individual meetings with faculty sponsor and written reports are required. (May be repeated for credit.)", + "edges_from": [], + "edges_to": [], + "id": 4931, + "label": "ETHN 197", + "title": "Fieldwork in Racial and Ethnic Communities (4)" + }, + { + "dept": "ETHN", + "description": "Methods: Studying Racial and Ethnic Communities (4)", + "edges_from": [], + "edges_to": [], + "id": 4932, + "label": "ETHN 190", + "title": "Research" + }, + { + "dept": "TDAC", + "description": "This course introduces basic skills of breathing, placement, diction, musicianship, harmony, interpretation, and presentation needed by actors for roles requiring singing. Through a combination of group and individual coaching in class, students will prepare a program of short solo and ensemble pieces for a finals-week presentation. ", + "edges_from": [ + 527 + ], + "edges_to": [], + "id": 4933, + "label": "TDAC 109", + "title": "Singing for Actors (4)" + }, + { + "dept": "TDAC", + "description": "Advanced topics in acting, such as avant-garde drama, commedia, or Beckett, for students who possess basic acting techniques. May be taken for credit four times. ", + "edges_from": [ + 1933 + ], + "edges_to": [], + "id": 4934, + "label": "TDAC 108", + "title": "Advanced Topics (4)" + }, + { + "dept": "TDAC", + "description": "Advanced exploration of Shakespeare\u2019s language through examining and performing scenes from the plays. Admission by audition/interview. May be taken for credit two times. ", + "edges_from": [ + 1933 + ], + "edges_to": [], + "id": 4935, + "label": "TDAC 105", + "title": "Rehearing Shakespeare (4)" + }, + { + "dept": "TDAC", + "description": "Studies in the heightened realities of poetic drama. Verse analysis, research, methods and how to approach a classical dialogue. ", + "edges_from": [ + 1933 + ], + "edges_to": [], + "id": 4936, + "label": "TDAC 104", + "title": "Classical Text (4)" + }, + { + "dept": "TDAC", + "description": "Improvisation for the Theatre explores improvisation techniques as an alternative and unique approach to acting. Students should have a performance background. ", + "edges_from": [ + 527 + ], + "edges_to": [], + "id": 4937, + "label": "TDAC 107", + "title": "Improvisation for the Theatre (4)" + }, + { + "dept": "TDAC", + "description": "Practical exercises, discussion, text analysis, and scene work on the writings of Anton Chekhov. Admission by audition/interview. ", + "edges_from": [ + 1933 + ], + "edges_to": [], + "id": 4938, + "label": "TDAC 106", + "title": "Chekhov Acting (4)" + }, + { + "dept": "ECE", + "description": "Materials Science of Integrated Circuits (4)", + "edges_from": [], + "edges_to": [], + "id": 4939, + "label": "ECE 134", + "title": "Electronic" + }, + { + "dept": "MATS", + "description": "Fabrication of Micro-Electro-Mechanical Systems (MEMS) by bulk and surface micromachining of single crystal, polycrystal, and amorphous silicon and other materials. Performance issues including electrostatic, magnetic, piezoelectric actuations, residual stresses, deformation. Novel device applications, future trends in smart materials and nano-electro-mechanical (NEMS) systems. ", + "edges_from": [ + 4941 + ], + "edges_to": [], + "id": 4940, + "label": "MATS 254", + "title": "Frontier Micro-Electro-Mechanical Systems (MEMS) Materials and Devices (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4940 + ], + "id": 4941, + "label": "MAE 268", + "title": "" + }, + { + "dept": "MATS", + "description": "Fundamentals of materials science as applied to bioengineering design. Hierarchical structures. Cells and tissues. Natural and synthetic polymeric materials. Biomineralized materials. Biological composites. Cellular materials (foams). Functional biological materials. Biomaterials and implants. Bioinspired design and materials. Students may not receive credit for CENG 256 and NANO 252 and MATS 255.", + "edges_from": [], + "edges_to": [], + "id": 4942, + "label": "MATS 255", + "title": "Biomaterials and Biomimetics (4)" + }, + { + "dept": "MATS", + "description": "This class will cover the fundamentals/engineering aspects of various energy materials based on metallic, ceramic, semiconductor; and chemical structures and their applications related to solar cells, fuel cells, batteries, fusion energy, and hydrogen storage will be discussed. (Cross-listed with MAE 278.) ", + "edges_from": [], + "edges_to": [], + "id": 4943, + "label": "MATS 256", + "title": "Energy Materials and Applications (4)" + }, + { + "dept": "MATS", + "description": "Quantitative basic understanding of different branches of polymer science varying from polymer chemistry, characterization, thermodynamics, rheological properties, smart materials, self-assembly in biopolymers (natural) and synthetic polymers, and applications of polymers ranging from medicine to structure. (Cross-listed with BENG 242.) ", + "edges_from": [ + 4945, + 4946 + ], + "edges_to": [], + "id": 4944, + "label": "MATS 257", + "title": "Polymer Science and Engineering (4)" + }, + { + "dept": "MS", + "description": "", + "edges_from": [], + "edges_to": [ + 4944 + ], + "id": 4945, + "label": "MS 76", + "title": "" + }, + { + "dept": "BE", + "description": "", + "edges_from": [], + "edges_to": [ + 4944 + ], + "id": 4946, + "label": "BE 75", + "title": "" + }, + { + "dept": "CENG", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine.\u00a0Cross-listed with\u00a0NANO\u00a0134. Students may not receive credit for both\u00a0CENG\u00a0134 and\u00a0NANO\u00a0134. ", + "edges_from": [ + 596 + ], + "edges_to": [], + "id": 4947, + "label": "CENG 134", + "title": "Polymeric Materials (4)." + }, + { + "dept": "MATS", + "description": "This class will cover biomaterials and biomimetic materials. Metal, ceramic, and polymer biomaterials will be discussed. Emphasis will be on the structure-property relationships, biocompatibility/degradation issues and tissue/material interactions. Synthesis and mechanical testing of biomimetic materials will also be discussed. ", + "edges_from": [ + 1177 + ], + "edges_to": [], + "id": 4948, + "label": "MATS 252", + "title": "Biomaterials and Medical Devices (4)" + }, + { + "dept": "MATS", + "description": "This course discusses synthesis techniques, processing, microstructural control, and unique physical properties of materials in nanodimensions. Topics include nanowires, quantum dots, thin films, electrical transport, electron emission properties, optical behavior, mechanical behavior, and technical applications of nanomaterials. ", + "edges_from": [ + 4950 + ], + "edges_to": [], + "id": 4949, + "label": "MATS 253", + "title": "Nanomaterials and Properties (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 4949 + ], + "id": 4950, + "label": "MAE 267", + "title": "" + }, + { + "dept": "MATS", + "description": "Nanotechnology has made a tremendous impact on drug and diagnostic delivery technology. This seminar series will expose PharmD students to the most cutting edge research on using nanotechnology for the delivery of agents to detect, treat, and prevent disease. ", + "edges_from": [], + "edges_to": [], + "id": 4951, + "label": "MATS 259", + "title": "Frontiers in Therapeutic and Diagnostic Delivery (1)" + }, + { + "dept": "HIEU", + "description": "Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy. It will also include excursions to various sites of historical significance in and around Madrid. Program or materials fees may apply. Students may not receive credit for HIEU 151 and HIEU 151GS. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 4952, + "label": "HIEU 151GS", + "title": "History of Modern Spain, 1808\u2013Present (4)" + }, + { + "dept": "ETHN", + "description": "Implementing interdisciplinary research methods, students produce independent, generative research germane to the study of race and ethnicity. Students write a twenty- to twenty-five-page critical paper that poses an appropriate research question; engages relevant literature to provide a conceptual framework; develops and incorporates appropriate research methodologies; and constructs a critical, thorough, and cohesive argument based on the collection, organization, interpretation, and analysis of evidence. ", + "edges_from": [ + 4954 + ], + "edges_to": [], + "id": 4953, + "label": "ETHN 291B", + "title": "Comprehensive Research Preparation: The Methodologies Paper (4)" + }, + { + "dept": "ETHN", + "description": "", + "edges_from": [], + "edges_to": [ + 4953 + ], + "id": 4954, + "label": "ETHN 291A", + "title": "" + }, + { + "dept": "GPEC", + "description": "The goal of this course is to better understand corruption in developing countries today: why it occurs, the consequences, and what can or should be done about it. Topics include: the conceptual and historical background of corruption; different views on how corruption affects regulatory processes; how the organization of a bureaucracy may affect the amount of corruption; effects on redistribution; methods for reducing corruption; and the role of information and elections as limits. Student may not get credit for GPEC 449 and IRGN 490, Corruption and Development.", + "edges_from": [], + "edges_to": [], + "id": 4955, + "label": "GPEC 449", + "title": "Corruption and Development (4)" + }, + { + "dept": "GPEC", + "description": "Students will learn to design and maintain geospatial databases, validate the topology of a dataset, and produce clear and informative maps and reports. Part two will be dedicated to principles of remote sensing and to analysis of satellite imagery: geospatial database design and maintenance, topology validation and topological rules, the Network analyst extension, the surface tool-set, basic concepts of remote sensing, and introduction to Google Earth Engine UI and Google Earth Engine API. May not receive credit for GPEC 444 and IRGN 490 with the subtitles: \u201cAdvanced GIS Spatial Analysis\u201d or \u201cAdvanced GIS and Remote Sensing.\u201d May be co-scheduled with GPEC 244. GPEC 443 or the equivalent training in GIS is recommended.", + "edges_from": [], + "edges_to": [], + "id": 4956, + "label": "GPEC 444", + "title": "Advanced GIS and Remote Sensing (4)" + }, + { + "dept": "GPEC", + "description": "This course introduces GIS and spatial data analysis for social science research. We use ArcGIS to manipulate and visualize georeferenced data and learn various spatial analysis tools. We emphasize geography as an important lens through which to study society. Renumbered from IRGN 443. Students may not receive credit for GPEC 443 and IRGN 443. Basic knowledge of statistics and STATA is assumed.", + "edges_from": [], + "edges_to": [], + "id": 4957, + "label": "GPEC 443", + "title": "GIS and Spatial Data Analysis (4)" + }, + { + "dept": "VIS", + "description": "Considers nineteenth-century European painting and printmaking in relation to the construction of nature and the historically specific ways of seeing that emerge from it. Key artists and groups of artists include: John Constable, J.M.W. Turner, Caspar David Friedrich, Camille Corot, the Barbizon School, J.-J. Grandville, the Pre-Raphaelites, and the Impressionists. ", + "edges_from": [], + "edges_to": [], + "id": 4958, + "label": "VIS 124E", + "title": "The Production of Nature (4)" + }, + { + "dept": "VIS", + "description": "A cultural history of nineteenth-century Paris. Addresses how and why the cultural formations and developments of the period, and their inseparability from the city, have led so many to consider Paris the capital of modernity. ", + "edges_from": [], + "edges_to": [], + "id": 4959, + "label": "VIS 124D", + "title": "Paris, Capital of the Nineteenth Century (4)" + }, + { + "dept": "BENG", + "description": "Engineering analysis of physico-chemical rate processes that affect, limit, and govern the function of cells and tissues. Cell migration, mitosis, apoptosis, and differentiation. Dynamic and structural interactions between mesenchyme and parenchyme. The role of the tissue microenvironment including cell-cell interactions, extracellular matrix, and growth factor communication. The design of functional tissue substitutes including cell and material sourcing, scale-up and manufacturability, efficacy and safety, regulatory, and ethical topics. Clinical applications. ", + "edges_from": [ + 1409, + 3268 + ], + "edges_to": [], + "id": 4960, + "label": "BENG 166A", + "title": "Cell and Tissue Engineering (4)" + }, + { + "dept": "ANTH", + "description": "This seminar considers the ethnohistory, ethnography, and archaeology of the Inca Empire Tawantinsuyu, with emphasis on the economic, social, and ideological foundations of the Cusco Inca state and the dynamics of Inca imperial expansion throughout Andean South America. ", + "edges_from": [], + "edges_to": [], + "id": 4961, + "label": "ANTH 246", + "title": "The Inca and the Late Horizon (4)" + }, + { + "dept": "CSE", + "description": "Design for test, testing economics, defects, failures and faults, fault models, fault simulation, automatic test pattern generation, functional testing, memory, PLA, FPGA, microprocessor test, and fault diagnosis. ", + "edges_from": [], + "edges_to": [], + "id": 4962, + "label": "CSE 244A", + "title": "VLSI Test (4)" + }, + { + "dept": "POLI", + "description": "A popular new idea in environmental protection is to include local communities in conservation efforts. But what are these communities? What challenges do they face in governing their own resources? This course uses both theory and case studies to explore the political economy of community-based conservations.", + "edges_from": [], + "edges_to": [], + "id": 4963, + "label": "POLI 125A", + "title": "Communities and the Environment (4)" + }, + { + "dept": "POLI", + "description": "This course explores emerging issues in production and consumption of food in a global economy. On production side, we discuss issues such as famine, overproduction of commercial crops, and sustainability. On consumption side, we explore issues such as fair trade, ethical consumption, and public health consequences (such as obesity).\u00a0Then we discuss the roles of governments, international organizations, and communities to address these issues.", + "edges_from": [], + "edges_to": [], + "id": 4964, + "label": "POLI 125B", + "title": "The Politics of Food in a Global Economy (4)" + }, + { + "dept": "PHYS", + "description": "Physicists have spoken of the beauty of equations. The poet John Keats wrote, \u201cBeauty is truth, truth beauty...\u201d What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Cross-listed with LTEN 30. Students cannot earn credit for both Physics 30 and LTEN 30. ", + "edges_from": [ + 44, + 45, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155 + ], + "edges_to": [], + "id": 4965, + "label": "PHYS 30", + "title": "Poetry for Physicists (4)" + }, + { + "dept": "BIEB", + "description": "Course provides overview of physical, chemical, and biological processes that characterize inland waters (lakes and rivers), estuaries, and near-shore environments. Dominant biota of lakes, rivers, and streams, and how they are related to physical and chemical processes of the systems in which they reside will be covered. Methods will be introduced for assessing the chemical composition of water and detecting organisms that affect drinking water quality and coastal water quality management. Course requires field studies. Students should expect to fully participate in field trips; transportation not provided by the university. Students must comply with all risk management policies/procedures. Material lab fees will apply. ", + "edges_from": [ + 1987 + ], + "edges_to": [], + "id": 4966, + "label": "BIEB 135", + "title": "Aquatic Ecology Lab (4)" + }, + { + "dept": "BIEB", + "description": "Course integrates principles of ecology and marine biology to examine marine biodiversity loss resulting from overexploitation, habitat loss, invasion, climate change, and pollution. Course examines consequences of biodiversity loss to marine ecosystems and discusses the efficacy of various management regimes. Conservation problems facing the world\u2019s oceans with an emphasis on issues important for coastal California will be discussed. ", + "edges_from": [ + 1987 + ], + "edges_to": [], + "id": 4967, + "label": "BIEB 130", + "title": "Marine Conservation Biology (4)" + }, + { + "dept": "BIEB", + "description": "A laboratory course introducing students to coastal marine ecology. Students will participate in outdoor fieldwork and work in the laboratory gathering and analyzing ecological data. We will focus on ecological communities from a variety of coastal habitats and use them to learn about basic ecological processes as well as issues related to sustainability and conservation of biodiversity. Fieldwork is expected in this course. Associated travel in the San Diego area is required and students are responsible for their own transportation. Material lab fees will apply. ", + "edges_from": [ + 1987, + 1988, + 709 + ], + "edges_to": [], + "id": 4968, + "label": "BIEB 131", + "title": "Marine Invertebrate Ecology Lab (4)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4969, + "label": "BGRD 218", + "title": "Research Discussion in Plant Molecular Genetics (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4970, + "label": "BGRD 212", + "title": "Research Discussion in Behavior and Development of Simple Nervous Systems (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4971, + "label": "BGRD 213", + "title": "Research Discussion in Golgi Structure and Function (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4972, + "label": "BGRD 210", + "title": "Research Discussion in Virology (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4973, + "label": "BGRD 211", + "title": "Research Discussion in Developmental Cellular Neurobiology (1)" + }, + { + "dept": "BGRD", + "description": "Presentations of new research results and discussions of closely related published reports. All students are expected to report on their own research findings each quarter. S/U grades only. May be taken for credit sixteen times. ", + "edges_from": [ + 506 + ], + "edges_to": [], + "id": 4974, + "label": "BGRD 216", + "title": "Research Discussion in Molecular and Cell Biology (1)" + }, + { + "dept": "SE", + "description": "Seismic design philosophy. Ductility concepts.", + "edges_from": [], + "edges_to": [], + "id": 4975, + "label": "SE 152", + "title": "Seismic Design of Structures (4)" + }, + { + "dept": "SE", + "description": "Properties of wood and lumber grades. Beam design. Design of axially loaded members. Design of beam-column. Properties of plywood and structural-use panels. Design of horizontal diaphragms. Design of shear walls. Design of nailed and bolted connections. ", + "edges_from": [ + 3430, + 2214 + ], + "edges_to": [], + "id": 4976, + "label": "SE 154", + "title": "Design of Timber Structures (4)" + }, + { + "dept": "LTEN", + "description": "Physicists have spoken of the beauty of equations. The poet John Keats wrote, \u201cBeauty is truth, truth beauty . . .\u201d What did they mean? Students will consider such questions while reading relevant essays and poems. Requirements include one creative exercise or presentation. Students may not receive credit for both LTEN 30 and PHYS 30. ", + "edges_from": [ + 44, + 45, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155 + ], + "edges_to": [], + "id": 4977, + "label": "LTEN 30", + "title": "Poetry for Physicists (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4978, + "label": "LTGK 105", + "title": "Topics in Greek Literature (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4979, + "label": "LTGK 104", + "title": "Greek Prose (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4980, + "label": "LTGK 103", + "title": "Greek Drama (4)" + }, + { + "dept": "LTGK", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 4981, + "label": "LTGK 102", + "title": "Greek Poetry (4)" + }, + { + "dept": "LTGK", + "description": "Greek prose composition. Corequisites: student must be concurrently enrolled in upper-division Literature/Greek course numbered 102 or above.", + "edges_from": [], + "edges_to": [], + "id": 4982, + "label": "LTGK 101", + "title": "Greek Composition (4)" + }, + { + "dept": "VIS", + "description": "Topics relevant to computer-based art and music making, such as computer methods for making art/music, design of interactive systems, spatialization of visual/musical elements, critical studies. Topics will vary. May be taken for credit three times. Recommended preparation: VIS 145A or MUS 171. Program or materials fees may apply. Two production-course limitation. ", + "edges_from": [], + "edges_to": [], + "id": 4983, + "label": "VIS 149", + "title": "Seminar in Contemporary Computer Topics (4)" + }, + { + "dept": "EDS", + "description": "In the lecture and observation format, students", + "edges_from": [], + "edges_to": [], + "id": 4984, + "label": "EDS 123/Chem 188", + "title": "Capstone Seminar in Science Education (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1A/1AX, 5AS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT 1B/1BX. ", + "edges_from": [ + 3423 + ], + "edges_to": [], + "id": 4985, + "label": "Linguistics/Italian (LIIT) 5BS", + "title": "Fundamentals of Italian II (5)" + }, + { + "dept": "POLI", + "description": "This course covers advanced topics in game theory. Covered topics will include incomplete information in static and dynamic games, infinitely repeated games, and bargaining games. Emphasis will be placed on advanced equilibrium concepts, and applications of interest to political scientists. ", + "edges_from": [], + "edges_to": [], + "id": 4986, + "label": "POLI 205", + "title": "Game Theory II (4)" + }, + { + "dept": "COGR", + "description": "(Cross listed with EDS 278). This course explores the discourse of culture in American society and the problem of silenced or unheard voices. The interaction of individual and collective voice, language, and identity are discussed as they bear on the ways that culture moves through important social institutions such as schools. Of particular interest are issues of teaching, learning, displacement, inclusion, marginality, and the speaking center. ", + "edges_from": [], + "edges_to": [], + "id": 4987, + "label": "COGR 278", + "title": "Talking Culture, Culture Talking: Voices of Diversity (4)" + }, + { + "dept": "COGR", + "description": "Specialized study in communication, with topics to be determined by the instructor for any given quarter.", + "edges_from": [], + "edges_to": [], + "id": 4988, + "label": "COGR 275", + "title": "Topics in Communication (4)" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices (4)", + "edges_from": [], + "edges_to": [], + "id": 4989, + "label": "EDS 374", + "title": "Secondary" + }, + { + "dept": "MATS", + "description": "Materials: Principles and Applications (4)", + "edges_from": [], + "edges_to": [], + "id": 4990, + "label": "MATS 251B", + "title": "Magnetic" + }, + { + "dept": "MATS", + "description": "and Photonic Properties of Materials (4)", + "edges_from": [], + "edges_to": [], + "id": 4991, + "label": "MATS 251A", + "title": "Electronic" + }, + { + "dept": "LIGN", + "description": "(Same as EDS 119) An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ", + "edges_from": [], + "edges_to": [], + "id": 4992, + "label": "LIGN 119", + "title": "First and Second Language Learning: From Childhood through Adolescence (4)" + }, + { + "dept": "TDGE", + "description": "Acting and leadership require \u201cchoices\u201d to play a role. The role of leader requires authenticity, collaboration, listening, presence, vision, and influence. Students will explore characteristics of strong leaders, and utilizing traditional acting techniques build powerful capabilities of leadership. No prior theatre/acting experience needed. ", + "edges_from": [], + "edges_to": [], + "id": 4993, + "label": "TDGE 100", + "title": "Creating the Role of \u201cLeader\u201d (4)" + }, + { + "dept": "LIGN", + "description": "Why does one language sound different from another? This course analyzes how languages organize sounds into different patterns, how those sounds interact, and how they fit into larger units, such as syllables. Focus on a wide variety of languages and problem solving. ", + "edges_from": [ + 3614 + ], + "edges_to": [], + "id": 4994, + "label": "LIGN 111", + "title": "Phonology I (4)" + }, + { + "dept": "LIGN", + "description": "How do we measure differences in the way sounds are produced and perceived? This course focuses on measuring and analyzing the acoustic and auditory properties of sounds as they occur in nonpathological and pathological speech. ", + "edges_from": [ + 3614 + ], + "edges_to": [], + "id": 4995, + "label": "LIGN 112", + "title": "Speech Sounds and Speech Disorders (4)" + }, + { + "dept": "LTGK", + "description": "Tutorial; individual guided reading in an area not normally covered in courses. May be taken up to three times for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 4996, + "label": "LTGK 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "MATH", + "description": "Differential geometry of curves and surfaces.", + "edges_from": [], + "edges_to": [], + "id": 4997, + "label": "MATH 150A", + "title": "Differential Geometry (4)" + }, + { + "dept": "MATH", + "description": "Calculus of functions of several variables,", + "edges_from": [], + "edges_to": [], + "id": 4998, + "label": "MATH 150B", + "title": "Calculus on Manifolds (4)" + }, + { + "dept": "MGT", + "description": "Review and discussion of current research and literature on selected topics in business and management. Research paper and presentation required. May be taken for credit three times. Students may not earn credit for both MGT 416 and MGT 252 if the courses have the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 4999, + "label": "MGT 416", + "title": "Readings in Management (1 or 2)" + }, + { + "dept": "MGT", + "description": "Explores current issues in business law, emphasizing concerns faced by new companies. Students learn how the law regulates and shapes businesses; examine the legal role in business formations, operations, and dissolutions; and gain knowledge of contract and intellectual property law. Letter grades only. Students may not earn credit for both MGT 417 and MGT 212. Also, students may not receive credit for both MGT 417 and MGT 219 with the course subtitle Current Business Law Issues. ", + "edges_from": [], + "edges_to": [], + "id": 5000, + "label": "MGT 417", + "title": "Current Business Law Issues (4)" + }, + { + "dept": "MGT", + "description": "Through lecture and online delivery, this course explores the strategic management of technology-driven firms focusing on the analytical tools and techniques that support strategy formulation and the related managerial skills and decision processes that foster strategy implementation. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5001, + "label": "MGT 410", + "title": "Strategy (4)" + }, + { + "dept": "MGT", + "description": "Market: Opportunity and Business Model Analysis (4)", + "edges_from": [], + "edges_to": [], + "id": 5002, + "label": "MGT 412", + "title": "Lab to" + }, + { + "dept": "MGT", + "description": "Information Systems, and Data Analysis (4)", + "edges_from": [], + "edges_to": [], + "id": 5003, + "label": "MGT 413", + "title": "Operations," + }, + { + "dept": "ENG", + "description": "Application-oriented, hands-on introduction to engineering mathematics and design processes.\u00a0 Key mathematical concepts as they apply to engineering, including solving systems of equations and least-squares regression. In-class activities using Python and Arduino will complement the lectures and provide students hands-on experience with solving real-world engineering problems related to design, manufacturing and prototyping, electronics, and data analysis.", + "edges_from": [], + "edges_to": [], + "id": 5004, + "label": "ENG 10", + "title": "Fundamentals of Engineering Applications (2)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics in global business, with a regional emphasis. Instructional methods include lectures, case presentations, readings, and discussions. A substantial portion of learning outcomes will be met by visiting businesses in another world region, observing operations, and interviewing executives. The visit to the foreign region will typically be one to two weeks and may occur outside the normal academic quarter. S/U grades only. May be taken for credit two times. Students may not earn credit for both MGT 419 and MGT 259 if the courses have the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5005, + "label": "MGT 419", + "title": "Global Business Immersion (2)" + }, + { + "dept": "MATH", + "description": "Lie groups, Lie algebras, exponential map, subgroup subalgebra correspondence, adjoint group, universal enveloping algebra. Structure theory of semi-simple Lie groups, global decompositions, Weyl group. Geometry and analysis on symmetric spaces. ", + "edges_from": [ + 5008, + 5007 + ], + "edges_to": [], + "id": 5006, + "label": "MATH 251A-B-C", + "title": "Lie Groups (4-4-4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5006 + ], + "id": 5007, + "label": "MATH 200", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5006 + ], + "id": 5008, + "label": "MATH 250", + "title": "" + }, + { + "dept": "SOCI", + "description": "Develop skills in computer management and analysis of sociological data. Practical experience with data produced by sociological research. Students will develop competency in the analysis of sociological data, by extensive acquaintance with computer software used for data analysis and management (e.g., SPSS). ", + "edges_from": [ + 5009, + 5010, + 2618 + ], + "edges_to": [ + 5009 + ], + "id": 5009, + "label": "SOCI 103M", + "title": "Computer Applications to Data Management in Sociology (4)" + }, + { + "dept": "SOCA", + "description": "", + "edges_from": [], + "edges_to": [ + 5009 + ], + "id": 5010, + "label": "SOCA 103M", + "title": "" + }, + { + "dept": "MGTA", + "description": "Discussion series where domain experts and business leaders present up-to-date research, discuss legal, privacy, and ethical issues, and provide professional skills development. S/U grades only. May be taken for credit two times. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 5011, + "label": "MGTA 401", + "title": "Professional Seminar (1)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal spoken Arabic but who have little or no reading and writing skills. Topics include the Arabic alphabet, basic reading and writing, and differences between colloquial and written Arabic. ", + "edges_from": [], + "edges_to": [], + "id": 5012, + "label": "Linguistics/Heritage Languages (LIHL) 16", + "title": "Arabic Literacy for Arabic Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal spoken Persian but who have little or no reading and writing skills. Topics include the Persian alphabet, basic reading and writing, and differences between colloquial and written Persian. ", + "edges_from": [], + "edges_to": [], + "id": 5013, + "label": "Linguistics/Heritage Languages (LIHL) 17", + "title": "Persian Literacy for Persian Speakers (4)" + }, + { + "dept": "EDS", + "description": "The course introduces prospective secondary teachers to principles and strategies of teaching English language arts. Topics include: writing processes, reading processes, integrated language arts, assessment, the second language learner, the classroom community, the California English Language Arts Framework. ", + "edges_from": [], + "edges_to": [], + "id": 5014, + "label": "EDS 373", + "title": "Secondary English Teaching Practices (4)" + }, + { + "dept": "EDS", + "description": "Proficiency-oriented language teaching techniques, including project-based and communicative approaches, developing student knowledge and appreciation of the cultures and societies in which the target language is spoken, the use of technology to support instruction aligned to the California academic content standards.", + "edges_from": [], + "edges_to": [], + "id": 5015, + "label": "EDS 372", + "title": "World Language Teaching Practices (4)" + }, + { + "dept": "EDS", + "description": "This course satisfies the California Commission on Teacher Credentialing requirement for preparation in reading theory and methods for all credential candidates. Theories of reading development, integration of the language arts, reading and writing in the content areas, teaching methods, and literature. ", + "edges_from": [], + "edges_to": [], + "id": 5016, + "label": "EDS 376", + "title": "Language and Learning Instruction (4)" + }, + { + "dept": "EDS", + "description": "Science teaching techniques, including science curriculum design, California Model Curriculum Standards, instructional methods, computer applications, selection and use of textbooks, student assessment, lesson planning, and classroom organization. Professional matters including curriculum planning, professional organizations, paraprofessionals, professional ethics, education law, and parent involvement are addressed. ", + "edges_from": [], + "edges_to": [], + "id": 5017, + "label": "EDS 375", + "title": "Secondary Science Teaching Practices (4)" + }, + { + "dept": "POLI", + "description": "A survey of the academic literature on parliamentary studies, comparing the research on legislative elections, behavior, and organization in American, European, and Asian democracies. The course will also compare various approaches to studying legislative activity. ", + "edges_from": [], + "edges_to": [], + "id": 5018, + "label": "POLI 223A", + "title": "Comparative Parliamentary Studies (4)" + }, + { + "dept": "TDDR", + "description": "A studio class that investigates the fundamental", + "edges_from": [], + "edges_to": [ + 5698 + ], + "id": 5019, + "label": "TDDR 111", + "title": "Directing-Acting Process (4)" + }, + { + "dept": "VIS", + "description": "Continuation of VIS 160A or MUS 160A. Completion and presentation of independent projects along with documentation. Two production-course limitation. Renumbered from ICAM 160B. Students may receive credit for only one of the following: VIS 160B, MUS 160B, or ICAM 160B. ", + "edges_from": [ + 1834, + 1835 + ], + "edges_to": [], + "id": 5020, + "label": "VIS 160B", + "title": "Senior Project in Computing Arts II (4)" + }, + { + "dept": "NANO", + "description": "Independent reading or research on a problem as arranged by a faculty member. Must be taken for a letter grade only.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5021, + "label": "NANO 296", + "title": "Independent Study in NanoEngineering (4)" + }, + { + "dept": "MUS", + "description": "Selected topics in music theory. Covers Western classical repertoire from 1850 to the present. Includes chromatic and post-tonal harmony, formal analysis. May be taken for credit up to two times. ", + "edges_from": [ + 1684 + ], + "edges_to": [], + "id": 5022, + "label": "MUS 102", + "title": "Topics in Music Theory (4)" + }, + { + "dept": "NANO", + "description": "Graduate research in NanoEngineering. S/U grades only. May be taken for credit four times for a maximum of twelve units. ", + "edges_from": [], + "edges_to": [], + "id": 5023, + "label": "NANO 299", + "title": "Graduate Research in NanoEngineering (1\u201312)" + }, + { + "dept": "MUS", + "description": "This seminar explores the history of music in relation to critical issues, such as race, gender, sexuality, the environment, and politics. Readings include recent literature in cultural studies, musicology, and sociology. Topics vary. May be taken three times for credit. ", + "edges_from": [ + 3984 + ], + "edges_to": [], + "id": 5024, + "label": "MUS 107", + "title": "Critical Studies Seminar (4)" + }, + { + "dept": "MUS", + "description": "Topics in musical analysis. Covers full range of musical repertoire 1900 to present, including music that does not depend on notation. May be taken for credit up to two times. ", + "edges_from": [ + 769 + ], + "edges_to": [], + "id": 5025, + "label": "MUS 106", + "title": "Topics in Musical Analysis (4)" + }, + { + "dept": "MUS", + "description": "This course will explore a range of compositional possibilities from song forms to modal and more extended forms. May be taken for credit two times. ", + "edges_from": [ + 1684, + 2581 + ], + "edges_to": [], + "id": 5026, + "label": "MUS 105", + "title": "Jazz Composition (4)" + }, + { + "dept": "LTTH", + "description": "A critical review of major contemporary theories of the nature of literature, its sociocultural function, and appropriate modes of evaluation.", + "edges_from": [], + "edges_to": [], + "id": 5027, + "label": "LTTH 115", + "title": "Introduction to Critical Theory (4)" + }, + { + "dept": "HINE", + "description": "The study of a single book, period, or issue on the Bible, in the context of the ancient Near Eastern world. Requirements will vary for undergraduate, master\u2019s, and doctoral students. Graduate students may be required to submit a more substantial piece of work. ", + "edges_from": [], + "edges_to": [], + "id": 5028, + "label": "HINE 160/260", + "title": "Special Topics in the Bible and Ancient Near East (4)" + }, + { + "dept": "CHEM", + "description": "Fundamental theoretical principles, capabilities, applications, and limitations of modern analytical instrumentation used for qualitative and quantitative analysis. Students will learn how to define the nature of an analytical problem and how to select an appropriate analytical method. Letter grades only. Recommended preparation: background equivalent to CHEM 100A and introductory optics and electricity from physics. (W)", + "edges_from": [], + "edges_to": [], + "id": 5029, + "label": "CHEM 200B", + "title": "Fundamentals of Instrumental Analysis (4)" + }, + { + "dept": "MAE", + "description": "Engineering Laboratory (4)", + "edges_from": [], + "edges_to": [], + "id": 5030, + "label": "MAE 126A", + "title": "Environmental" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 274A.) This course provides an overview of parallel hardware, algorithms, models, and software. Topics include Flynn\u2019s taxonomy, interconnection networks, memory organization, a survey of commercially available multiprocessors, parallel algorithm paradigms and complexity criteria, parallel programming environments and tools for parallel debugging, language specification, mapping, performance, etc. ", + "edges_from": [], + "edges_to": [], + "id": 5031, + "label": "CSE 260", + "title": "Parallel Computation (4)" + }, + { + "dept": "USP", + "description": "This course introduces students to the challenges of developing and financing real property. Students work in teams to prepare a proposal for a complete site-specific project that incorporates real estate finance, development, and design. ", + "edges_from": [], + "edges_to": [ + 5033 + ], + "id": 5032, + "label": "USP 185A", + "title": "Real Estate Finance and Development Studio I (4)" + }, + { + "dept": "USP", + "description": "An intensive studio-based experience that culminates in a completed group project that analyzes, evaluates, and presents a site-specific real estate finance and development proposal. The final project includes market analysis, pro forma financial analysis, site analysis, and site design. ", + "edges_from": [ + 5032 + ], + "edges_to": [], + "id": 5033, + "label": "USP 185B", + "title": "Real Estate Finance and Development Studio II (4)" + }, + { + "dept": "MGT", + "description": "This course covers efficient techniques for managing health services projects, including both the technical aspects of project management as well as the human-capital management issues associated with blending administrative and technical staff with health-care professionals. Topics include scheduling methods, milestone setting, governmental regulations, resource allocation, interpersonal skills, and performing research and development projects\u2014all with a health services focus. ", + "edges_from": [], + "edges_to": [], + "id": 5034, + "label": "MGT 173", + "title": "Project Management: Health Services (4)" + }, + { + "dept": "MGT", + "description": "Addresses effective practices for management of business projects. Includes both project management processes\u2014scheduling, milestone setting, resource allocation, budgeting, risk mitigation\u2014and human capital management\u2014communication, teamwork, leadership. Also considers requirements for effectively working across functional and organizational boundaries. ", + "edges_from": [], + "edges_to": [], + "id": 5035, + "label": "MGT 172", + "title": "Business Project Management (4)" + }, + { + "dept": "MGT", + "description": "Operations management (OM) involves the systematic design, execution, and improvement of business processes, projects, and partner relationships. This course goes beyond cost minimization and addresses issues that firms large and small must confront in their journey toward sustained scalability, growth, and profitability. Also examines human factors such as psychological contract, team management, empowerment, employee-initiated process improvements, morale, motivation, rewards, and incentives. ", + "edges_from": [], + "edges_to": [], + "id": 5036, + "label": "MGT 171", + "title": "Operations Management (4)" + }, + { + "dept": "LTCH", + "description": "in Contemporary Chinese Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 5037, + "label": "LTCH 101", + "title": "Readings" + }, + { + "dept": "SOCI", + "description": "Special Topics in Culture, Language, and Social Interaction (4)", + "edges_from": [], + "edges_to": [], + "id": 5038, + "label": "SOCI 120T", + "title": "" + }, + { + "dept": "ECON", + "description": "(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5039, + "label": "ECON 299", + "title": "Research in Economics for Dissertation (1\u20139)" + }, + { + "dept": "ECON", + "description": "In this course, students are guided toward the formulation of an original research idea and the writing of an original paper. Students receive support and input through group discussion and also through interaction with the instructor. ", + "edges_from": [], + "edges_to": [], + "id": 5040, + "label": "ECON 296", + "title": "Original Research Paper (1\u201312)" + }, + { + "dept": "MGT", + "description": "Sequence introduces students to various", + "edges_from": [], + "edges_to": [], + "id": 5041, + "label": "MGT 208B", + "title": "Introduction to Management Research B (4)" + }, + { + "dept": "MGT", + "description": "Sequence introduces students to various", + "edges_from": [], + "edges_to": [], + "id": 5042, + "label": "MGT 208C", + "title": "Introduction to Management Research C (4)" + }, + { + "dept": "MGT", + "description": "This is the first course in a three-course sequence that introduces", + "edges_from": [], + "edges_to": [], + "id": 5043, + "label": "MGT 208A", + "title": "Introduction to Management Research A (4)" + }, + { + "dept": "PHIL", + "description": "Independent study by special arrangement with and under the supervision of a faculty member, including a proposal for the honors essay. An IP grade will be awarded at the end of this quarter; a final grade will be given for both quarters at the end of 191B. ", + "edges_from": [], + "edges_to": [], + "id": 5044, + "label": "PHIL 191A", + "title": "Philosophy Honors (4)" + }, + { + "dept": "PHIL", + "description": "Continuation of 191A: independent study by special arrangement with and under the supervision of a faculty member, leading to the completion of the honors essay. A letter grade for both 191A and 191B will be given at the end of this quarter. ", + "edges_from": [], + "edges_to": [], + "id": 5045, + "label": "PHIL 191B", + "title": "The Honors Essay (4)" + }, + { + "dept": "TDGR", + "description": "Continuing vocal technique for the musical theatre. More complicated musical material investigated and prepared. ", + "edges_from": [], + "edges_to": [], + "id": 5046, + "label": "TDGR 235", + "title": "Singing for the Actor III (1)" + }, + { + "dept": "RELI", + "description": "This course introduces students to historical and social developments of religion among Asian-Americans. Tracing back to the mid-nineteenth century, the course examines changing religious traditions and ritual practices among Asian-American communities. ", + "edges_from": [], + "edges_to": [], + "id": 5047, + "label": "RELI 154", + "title": "Asian-American Religions (4)" + }, + { + "dept": "EDS", + "description": "EDS 140 builds on the students\u2019 foundational knowledge about pre-K\u201312 public education obtained in introductory PAL courses. This course is conducted as a seminar, where students shape their research questions, theoretical frameworks, and data collection methods for the action research projects. In conjunction to their action research projects, EDS 140 students serve as mentors, tutors, and/or interns at local low-income, underserved pre-K\u201312 public schools and/or community centers. If students wish to continue their service-learning practicum at their host school, they can take EDS 139. ", + "edges_from": [ + 1890, + 1891, + 1894, + 1895, + 1898, + 1899, + 5048, + 4093 + ], + "edges_to": [ + 5048, + 5049 + ], + "id": 5048, + "label": "EDS 140", + "title": "Introduction to Action Research in Pre-K\u201312 Education (4)" + }, + { + "dept": "EDS", + "description": "Course builds on students\u2019 prior knowledge, experiences, and work from PAL foundations and intermediate courses to prepare them to conduct action research on relevant P\u201312 education issues. Students in the course will continue serving as tutors/mentors/interns in schools and communities. Students will also learn how to design educational research, carry out research in ethical ways, and analyze data for themes that the schools and communities find important. ", + "edges_from": [ + 1890, + 1891, + 1894, + 1895, + 1898, + 1899, + 5048, + 4093 + ], + "edges_to": [], + "id": 5049, + "label": "EDS 141", + "title": "Action Research in Pre-K\u201312 Education: Advanced Practicum in Pre-K\u201312 Schools and Communities (4)" + }, + { + "dept": "COGS", + "description": "This is a studio class for students who are passionate about diving deep into interaction design and honing their design skills. Introduces social computing, input and interaction techniques, and information design. Students will regularly present work in a studio format. ", + "edges_from": [ + 1226, + 1227, + 2804, + 3221 + ], + "edges_to": [], + "id": 5050, + "label": "COGS 125", + "title": "Advanced Interaction Design (4)" + }, + { + "dept": "COGS", + "description": "In this advanced project-based course, we study the state-of-the-art in research on technical systems for human-computer interaction (HCI). Students will deconstruct the systems described in top-tier HCI papers and work in teams to create novel technical systems of their own. ", + "edges_from": [ + 3221, + 3414 + ], + "edges_to": [], + "id": 5051, + "label": "COGS 124", + "title": "HCI Technical Systems Research (4)" + }, + { + "dept": "COGS", + "description": "This course explores the intersection of social behavior and computational systems. Students will examine a range of organizational, technical, and business challenges related to social computing, and learn how to use tools to analyze, design, and build online communities. ", + "edges_from": [ + 3415, + 1773, + 1772, + 3221, + 1399 + ], + "edges_to": [], + "id": 5052, + "label": "COGS 123", + "title": "Social Computing (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in algebra. In recent years, topics have included number theory, commutative algebra, noncommutative rings, homological algebra, and Lie groups. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 5053, + "label": "MATH 207A", + "title": "Topics in Algebra (4)" + }, + { + "dept": "LTSP", + "description": "Cross-disciplinary study of late twentieth-century Latino/a-Chicano/a literature, the visual and performing arts, film, or other cultural practices. Specific periods covered will fall between the Kennedy years to the era of neoliberalism and the creation of \u201cHispanic\u201d or Latino identities. May be taken for credit no more than two times. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5054, + "label": "LTSP 150B", + "title": "Contemporary Chicano/a-Latino/a Cultural Production: 1960 to Present (4)" + }, + { + "dept": "ETHN", + "description": "This course will train students in approaches to interdisciplinary research concerned with power and the production of knowledge, with a focus on conducting multimedia field research, applying discourse analysis, and recognizing forms of data across disciplinary divides. Students may not receive credit for both ETHN 241 and ETHN 203. ", + "edges_from": [], + "edges_to": [], + "id": 5055, + "label": "ETHN 203", + "title": "Cultural Studies and Cultural Production (4)" + }, + { + "dept": "ETHN", + "description": "This course focuses on conceptual and methodological frameworks of ethnography and qualitative inquiry, including research design, grounded theory, the field note journal, participant observation, and interviewing; major themes include the role of indigenous/insider researchers, ethics of involvement, and community collaboration. Students may not receive credit for both ETHN 242 and ETHN 202. ", + "edges_from": [], + "edges_to": [], + "id": 5056, + "label": "ETHN 202", + "title": "Qualitative Methods/Ethnography (4)" + }, + { + "dept": "ETHN", + "description": "This course seeks to develop research skills in historical methods; to understand techniques and tools historians use to create historical narratives using archival and historical sources; and to compare and relate the value of these to ethnic studies research. Students may not receive credit for both ETHN 240 and ETHN 201. ", + "edges_from": [], + "edges_to": [], + "id": 5057, + "label": "ETHN 201", + "title": "Historical Methods and Archives (4)" + }, + { + "dept": "COGS", + "description": "", + "edges_from": [], + "edges_to": [ + 3 + ], + "id": 5058, + "label": "COGS 7", + "title": "" + }, + { + "dept": "LATI", + "description": "Independent work by graduate students engaged in thesis research and writing under the direct supervision of a faculty adviser.", + "edges_from": [], + "edges_to": [], + "id": 5059, + "label": "LATI 299", + "title": "Independent Research (1\u201312)" + }, + { + "dept": "LATI", + "description": "Guided and supervised reading of the literature of the several areas included in the interdisciplinary fields of anthropology, communications, economics, history, literature, political science, and sociology. ", + "edges_from": [], + "edges_to": [], + "id": 5060, + "label": "LATI 298", + "title": "Directed Reading (1\u201312)" + }, + { + "dept": "LTWR", + "description": "This seminar will be organized around any of various topic areas relating to writing (fiction, poetry, cross-genre, theory). Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). S/U grades only. May be taken for credit three times as content varies. ", + "edges_from": [], + "edges_to": [], + "id": 5061, + "label": "LTWR 220", + "title": "Topics in Writing (4)" + }, + { + "dept": "HIEA", + "description": "This colloquium will examine selected topics in modern Korean", + "edges_from": [], + "edges_to": [], + "id": 5062, + "label": "HIEA 180", + "title": "Topics in Modern Korean History (4)" + }, + { + "dept": "HIEU", + "description": "Intensive study of special problems or periods in the history of medieval Europe. Topics vary from year to year, and students may therefore repeat the course for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5063, + "label": "HIEU 163/263", + "title": "Special Topics in Medieval History (4)" + }, + { + "dept": "NEUG", + "description": "This course teaches mathematical concepts in neuroscience to students inexperienced in computation and mathematics. Topics from linear algebra, calculus, information theory, digital signal processing, graph theory, and machine learning will be covered. An optional weekly tutorial will teach computing basics. Priority enrollment is given to PhD students. MS students may enroll with instructor approval. Calculus AB is recommended but not required.", + "edges_from": [], + "edges_to": [], + "id": 5064, + "label": "NEUG 240", + "title": "Mathematical Foundations for Computational Neuroscience (3)" + }, + { + "dept": "ANSC", + "description": "This course introduces students to the field of economic anthropology and situates it within the historical development of the discipline since the late nineteenth century. In particular, the course focuses on the complexities of capitalism and its relations with what appear to be \u201cnon-capitalist\u201d contexts and ways of life. ", + "edges_from": [], + "edges_to": [], + "id": 5065, + "label": "ANSC 179", + "title": "The New Economic Anthropology: Producing, Consuming, and Exchanging Stuff Worldwide (4)" + }, + { + "dept": "ANSC", + "description": "Students will learn firsthand a new transdisciplinary effort to understand the intersection of individual and society at all levels of analysis. This course introduces students to a remarkable convergence led by transdisciplinary scholars at UC San Diego (anthropology, cognitive science, psychology, history, philosophy, the arts, etc.), based on the recognition that individual neurological, cognitive, emotional, and behavioral capacities are reciprocally related to aggregate social, cultural, and historical processes. ", + "edges_from": [], + "edges_to": [], + "id": 5066, + "label": "ANSC 178", + "title": "Brain, Mind, Culture, and History (4)" + }, + { + "dept": "LTWR", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. May be applied toward the guided research or graduate seminar in literature requirement of the MFA program. Repeatable for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5067, + "label": "LTWR 298", + "title": "Directed Studies: Writing Course (1\u201312)" + }, + { + "dept": "CHEM", + "description": "This course will provide an introduction to the physics and chemistry of soft matter, followed by a literature-based critical examination of several ubiquitous classes of organic nanomaterials and their technological applications. Topics include self-assembled monolayers, block copolymers, liquid crystals, photoresists, organic electronic materials, micelles and vesicles, soft lithography, organic colloids, organic nanocomposites, and applications in biomedicine and food science. ", + "edges_from": [ + 2366, + 2365, + 1510, + 1511 + ], + "edges_to": [], + "id": 5068, + "label": "CHEM 141", + "title": "Organic Nanomaterials (4)" + }, + { + "dept": "Linguistics/German", + "description": "(LIGM) 5A, 5B, 5C, 5D. Fundamentals of German (5)", + "edges_from": [], + "edges_to": [], + "id": 5069, + "label": "Linguistics/German", + "title": "" + }, + { + "dept": "ECE", + "description": "Characteristics of chemical, biological, seismic, and other physical sensors; signal processing techniques supporting distributed detection of salient events; wireless communication and networking protocols supporting formation of robust sensor fabrics; current experience with low power, low cost sensor deployments. Undergraduate students must take a final exam; graduate students must write a term paper or complete a final project. Cross-listed with MAE 149 and SIO 238. ", + "edges_from": [], + "edges_to": [], + "id": 5070, + "label": "ECE 156", + "title": "Sensor Networks (4)" + }, + { + "dept": "LTSP", + "description": "Latin American Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 5071, + "label": "LTSP 133", + "title": "Contemporary" + }, + { + "dept": "ECE", + "description": "Signal analysis methods for recognition, dynamic", + "edges_from": [], + "edges_to": [], + "id": 5072, + "label": "ECE 252B", + "title": "Speech Recognition (4)" + }, + { + "dept": "ECE", + "description": "Speech signals, production and perception,", + "edges_from": [], + "edges_to": [], + "id": 5073, + "label": "ECE 252A", + "title": "Speech Compression (4)" + }, + { + "dept": "EDS/LIGN", + "description": "An examination of how human language learning ability develops and changes over the first two decades of life, including discussion of factors that may affect this ability. ", + "edges_from": [], + "edges_to": [], + "id": 5074, + "label": "EDS/LIGN 119", + "title": "First and Second Language Learning: From Childhood through Adolescence (4)" + }, + { + "dept": "PHIL", + "description": "The focus will be on a leading movement in continental philosophy (e.g., the critical theory of the Frankfurt school, structuralism and deconstruction, postmodernism) or some particular issue that has figured in these traditions (e.g., freedom, subjectivity, historicity, authenticity). May be repeated for credit with change in content and approval of instructor. ", + "edges_from": [], + "edges_to": [], + "id": 5075, + "label": "PHIL 183", + "title": "Topics in Continental Philosophy (4)" + }, + { + "dept": "PHIL", + "description": "An examination of the phenomenological tradition through the works of its major classical and/or contemporary representatives. Authors studied will vary and may include Brentano, Husserl, Heidegger, Merleau-Ponty, Levinas, Bourdieu. ", + "edges_from": [], + "edges_to": [], + "id": 5076, + "label": "PHIL 180", + "title": "Phenomenology (4)" + }, + { + "dept": "PHIL", + "description": "Classical texts and issues of existentialism. Authors studied will vary and may include Nietzsche, Kierkegaard, Sartre, and Heidegger. ", + "edges_from": [], + "edges_to": [], + "id": 5077, + "label": "PHIL 181", + "title": "Existentialism (4)" + }, + { + "dept": "MATS", + "description": "Point, line, and planar defects in crystalline solids, including vacancies, self-interstitials, solute atoms, dislocations, stacking faults, and grain boundaries; effects of imperfections on mechanical properties; interactions of dislocations with point defects; strain hardening by micro-obstacles, precipitation, and alloying elements. ", + "edges_from": [], + "edges_to": [], + "id": 5078, + "label": "MATS 205A", + "title": "Imperfections in Solids (4)" + }, + { + "dept": "VIS", + "description": "Examines the history, art, and architecture of Navajo, Hopi, Zuni, and other Native American communities of New Mexico and Arizona; the origins of their civilization; and how their arts survived, adapted, and changed in response to Euro-American influences. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126D and VIS 126I. ", + "edges_from": [], + "edges_to": [], + "id": 5079, + "label": "VIS 126I", + "title": "Southwest American Indian Art (4)" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Caribbean literature in Spanish, such as the romantic movement, the literature of independence, the essay tradition, Afro-Antillean literature, the historical novel. May be taken for credit four times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5080, + "label": "LTSP 137", + "title": "Caribbean Literature (4)" + }, + { + "dept": "VIS", + "description": "An examination of the relation of art to ritual life, mythology, and social organization in the native Polynesian and Melanesian cultures of Hawaii, New Guinea, the Solomon Islands, and Australia. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126E and VIS 126K. ", + "edges_from": [], + "edges_to": [], + "id": 5081, + "label": "VIS 126K", + "title": "Oceanic Art (4)" + }, + { + "dept": "VIS", + "description": "The dynamic, expressive arts of selected West African societies and their subsequent survival and transformation in the New World will be studied. Emphasis will be placed on Afro-American modes of art and ceremony in the United States, Haiti, Brazil, and Suriname. ", + "edges_from": [], + "edges_to": [], + "id": 5082, + "label": "VIS 126J", + "title": "African and Afro-American Art (4)" + }, + { + "dept": "VIS", + "description": "in Ancient Maya Iconography and Inscriptions (4)", + "edges_from": [], + "edges_to": [], + "id": 5083, + "label": "VIS 126D", + "title": "Problems" + }, + { + "dept": "LTSP", + "description": "Study of movements, traditions, key authors, or major trends in Peruvian, Ecuadorian, and Bolivian literatures, such as indigenismo, urban narrative, and the works of authors such as Vallejo, Icaza, Arguedas, Vargas Llosa. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5084, + "label": "LTSP 136", + "title": "Andean Literatures (4)" + }, + { + "dept": "VIS", + "description": "Topics of this seminar will address special problems or areas of research related to the major civilizations of ancient Mexico and Central America. Course offerings will vary to focus upon particular themes, subjects, or interpretive problems. Recommended preparation: VIS 21A. Students may not receive credit for both VIS 126B-C. ", + "edges_from": [], + "edges_to": [], + "id": 5085, + "label": "VIS 126C", + "title": "Problems in Mesoamerican Art History (4)" + }, + { + "dept": "VIS", + "description": "Art: Modern to Postmodern, 1950\u2013Present (4)", + "edges_from": [], + "edges_to": [], + "id": 5086, + "label": "VIS 126Q", + "title": "Latin American" + }, + { + "dept": "VIS", + "description": "Art: Modern to Postmodern, 1890\u20131950 (4)", + "edges_from": [], + "edges_to": [], + "id": 5087, + "label": "VIS 126P", + "title": "Latin American" + }, + { + "dept": "SE", + "description": "Analysis of aerospace structures via work-energy principles and finite element analysis. Bending of metallic and laminated composite plates and shells. Static vibration, and buckling analysis of simple and built-up aircraft structures. Introduction to wing divergence and flutter, fastener analysis. ", + "edges_from": [ + 5089 + ], + "edges_to": [], + "id": 5088, + "label": "SE 260B", + "title": "Aerospace Structural Mechanics II (4)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [ + 5088 + ], + "id": 5089, + "label": "SE 260A", + "title": "" + }, + { + "dept": "CHIN", + "description": "Graduate thesis research under the guidance of a faculty member affiliated with the Program in Chinese Studies.", + "edges_from": [], + "edges_to": [], + "id": 5090, + "label": "CHIN 296", + "title": "Directed Thesis Research (2\u201312)" + }, + { + "dept": "VIS", + "description": "This course will explore design strategies that engage today\u2019s shifting public domain structures, situating the problematic of \u201cthe public\u201d and the politics of public sphere as sites of investigation, and speculating new interfaces between individuals, collectives, and institutions in coproducing more critical and inclusive forms of public space and culture. ", + "edges_from": [ + 3694 + ], + "edges_to": [], + "id": 5091, + "label": "VIS 100A", + "title": "Design of Public Culture (4)" + }, + { + "dept": "CHIN", + "description": "Independent graduate research under the guidance", + "edges_from": [], + "edges_to": [], + "id": 5092, + "label": "CHIN 299", + "title": "Independent Study in Chinese Studies (2\u201312)" + }, + { + "dept": "LTIT", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5093, + "label": "LTIT 137", + "title": "Studies in Modern Italian Prose (4)" + }, + { + "dept": "Linguistics/French", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in French. Must be taken in conjunction with LIFR 1B. ", + "edges_from": [ + 4432, + 4433 + ], + "edges_to": [], + "id": 5094, + "label": "Linguistics/French (LIFR) 1BX", + "title": "Analysis of French (2.5)" + }, + { + "dept": "CENG", + "description": "Hands-on, team-based laboratory activities to demonstrate modern applications of chemical engineering, and the role of the chemical engineer in academia and industry. Emphasis on teamwork, safe laboratory practices, and student-directed problem solving. ", + "edges_from": [ + 5095 + ], + "edges_to": [ + 5095 + ], + "id": 5095, + "label": "CENG 4", + "title": "Experience Chemical Engineering (1)" + }, + { + "dept": "BILD", + "description": "The workshops will be restricted to lower-division undergraduates. The course will introduce students to the methods of scientific research and to a variety of research topics in the biological/biomedical sciences. Examples of topics are: Introduction to Scientific Research, AIDS, Medical and Social Aspects, Is the Mind the Same as the Brain, Wildlife Conservation.", + "edges_from": [], + "edges_to": [], + "id": 5096, + "label": "BILD 95", + "title": "Undergraduate Workshops (1)" + }, + { + "dept": "BILD", + "description": "Weekly seminar providing Biological Sciences Scholars Program students with the opportunity to learn more about research and scholarly activities available to them and acquaints them with UC San Diego faculty members. The course will promote student\u2019s participation in research and other scholarly activities on campus. ", + "edges_from": [], + "edges_to": [], + "id": 5097, + "label": "BILD 96", + "title": "Biology: Honors Seminar (2)" + }, + { + "dept": "BILD", + "description": "Course is designed to assist new freshmen in making a smooth and informed transition from high school. Lectures focus on study skills, academic planning and using divisional and campus resources to help achieve academic, personal and professional goals. Exercises and practicums will develop the problems solving skills needed to succeed in biology. Attention will be given to research possibilities. Intended for new freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5098, + "label": "BILD 91", + "title": "Biology Freshmen: Strategies for Success (1)" + }, + { + "dept": "LTWL", + "description": "Honors practicum for those students in the literature department Honors Program. This is a one-unit course for which students in the Honors Program will present their work as part of organized panels at an Honors Program conference (within the department). Students will receive a P/NP grade for LTWL 194A for completing the presentation. ", + "edges_from": [ + 3045, + 1983 + ], + "edges_to": [], + "id": 5099, + "label": "LTWL 194A", + "title": "Honors Practicum (1)" + }, + { + "dept": "BILD", + "description": "Seminars will introduce students to various professional development topics in the biological sciences. Emphasis may include current research in academe and industry, using campus and community resources to help achieve academic, personal and professional goals, and career exploration. Activities may include presentations by faculty, alumni, and practicing professional biologists, as well as panel discussions with professionals from industry.", + "edges_from": [], + "edges_to": [], + "id": 5100, + "label": "BILD 92", + "title": "Professional Development Topics in the Biological Sciences (1)" + }, + { + "dept": "BILD", + "description": "Independent research by special arrangement with a faculty member. (P/NP grades only.) Students must have an overall UC San Diego GPA of at least 3.0 and a minimum of thirty units complete. Students must complete a Special Studies form and a Division of Biological Sciences Research Plan. Credit may not be received for a course numbered 99 subsequent to receiving credit for a course numbered 199. ", + "edges_from": [], + "edges_to": [], + "id": 5101, + "label": "BILD 99", + "title": "Independent Research (2 or 4)" + }, + { + "dept": "BILD", + "description": "Investigation of a topic in biological sciences through directed reading and discussion by a small group of students under the supervision of a faculty member. Students must complete a special studies application. Paperwork for a BILD 98 must be submitted to SIS by Friday of the eighth week of the quarter preceding the quarter in which the 98 will be completed. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5102, + "label": "BILD 98", + "title": "Directed Group Study (1 to 4)" + }, + { + "dept": "BIEB", + "description": "Students will investigate selected in-depth topics in evolutionary biology through reading and writing. Students will read books and articles written for a general audience as well as primary literature. Example topics include the origins of novel features, the impact of human activity and environmental changes on evolutionary processes, the rate and intensity of natural selection, and how our own evolutionary history affects human health. ", + "edges_from": [ + 1987, + 687 + ], + "edges_to": [], + "id": 5103, + "label": "BIEB 154", + "title": "Evolutionary Inquiry (4)" + }, + { + "dept": "BIEB", + "description": "The goal of the course is to learn about the population-level processes that govern evolution. Mathematical foundations of population genetics are laid out and applications are discussed. Topics include: evolution of drug resistance, origin of species, evolution of engineered organisms. ", + "edges_from": [ + 242, + 3978, + 1988, + 709 + ], + "edges_to": [], + "id": 5104, + "label": "BIEB 156", + "title": "Population Genetics (4)" + }, + { + "dept": "BIEB", + "description": "Treating infectious diseases is a uniquely difficult problem since pathogens often evolve, rendering today\u2019s therapies useless tomorrow. This course will provide a review of concepts and methods in evolutionary medicine, with an emphasis on microbial genomics and molecular evolution. ", + "edges_from": [ + 1987 + ], + "edges_to": [], + "id": 5105, + "label": "BIEB 152", + "title": "Evolution of Infectious Diseases (4)" + }, + { + "dept": "LATI", + "description": "The course is designed for teaching assistants to learn effective teaching methods through supervision and mentorship by the faculty. Student will learn handling of discussions; preparation and grading of examinations and other written exercises; and student relations.", + "edges_from": [], + "edges_to": [], + "id": 5106, + "label": "LATI 500", + "title": "Teaching Apprenticeship (1-4)" + }, + { + "dept": "HIUS", + "description": "This course surveys the history of California from the period just before Spanish contact in 1542 through California\u2019s admission to the Union in 1850. +", + "edges_from": [], + "edges_to": [], + "id": 5107, + "label": "HIUS 114A", + "title": "California History 1542\u20131850 (4)" + }, + { + "dept": "HIUS", + "description": "This course surveys the history of California from 1850 to the present.", + "edges_from": [], + "edges_to": [], + "id": 5108, + "label": "HIUS 114B", + "title": "California History, 1850\u2013Present (4)" + }, + { + "dept": "HIEU", + "description": "Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism\u2019s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity. Program or materials fees may apply. Students may not receive credit for HIEU 135 and HIEU 135GS. Students must apply and be accepted to the Global Seminars Program.", + "edges_from": [], + "edges_to": [], + "id": 5109, + "label": "HIEU 135GS", + "title": "Sun, Sea, Sand, and Sex: Tourism and Tourists in the Contemporary World (4)" + }, + { + "dept": "AAS", + "description": "This course will explore specialized, relevant topics in the field of African American studies.\u00a0Course topics will vary from quarter to quarter, so it may be repeated up to three times as long as the quarterly topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5110, + "label": "AAS 190", + "title": "Special Topics in African American Studies (1\u20134)" + }, + { + "dept": "AAS", + "description": "Directed group study on a topic or in a field not included in the regular curriculum by special arrangement with a faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5111, + "label": "AAS 198", + "title": "Directed Group Study in African American Studies (2 or 4)" + }, + { + "dept": "AAS", + "description": "Individual research and study on a particular subject related to African American studies by special arrangement with and under the direction of a faculty member. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5112, + "label": "AAS 199", + "title": "Independent Study in African American Studies (2 or 4)" + }, + { + "dept": "SE", + "description": "Development of finite element models based upon the Galerkin method. Application to static and dynamic heat conduction and stress analysis. Formulation of initial boundary value problem models, development of finite element formulas, solution methods, and error analysis and interpretation of results. ", + "edges_from": [ + 1529, + 1091, + 1092, + 1093 + ], + "edges_to": [], + "id": 5113, + "label": "SE 131", + "title": "Finite Element Analysis (4)" + }, + { + "dept": "EDS", + "description": "Third course in the series. The secondary credential candidate teaches approximately one academic quarter for each course in this series (one public school academic year) under the guidance of a university supervisor with additional support provided by an on-site teacher. The internship offers extensive professional preparation and diversified teaching experience under actual classroom conditions for post-baccalaureate students pursuing the California Single Subject Teaching Credential. ", + "edges_from": [ + 5115 + ], + "edges_to": [], + "id": 5114, + "label": "EDS 379C", + "title": "Single Subject (Secondary) Internship Practicum III (8)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [ + 5116 + ], + "edges_to": [ + 5114 + ], + "id": 5115, + "label": "EDS 379B", + "title": "" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 5115 + ], + "id": 5116, + "label": "EDS 379A", + "title": "" + }, + { + "dept": "NANO", + "description": "Basic physics and chemistry of interaction of photons with matter; photonic radiation pressure; advanced optoelectronic detection systems, devices, methods, time-resolved fluorescent, chemiluminescent methods, fluorescent energy transfer techniques, quantum dots, near-field optical techniques, mechanisms of light sensitive biological systems including chloroplasts for photosynthetic energy conversion and basis of vision processes. Cross-listed with BENG 247A and ECE 247A.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5117, + "label": "NANO 247A", + "title": "Advanced BioPhotonics (4)" + }, + { + "dept": "NANO", + "description": "Topics include photolithographic techniques for high-density DNA microarray production, incorporation of CMOS control into electronic DNA microarrays, direct electronic detection technology, bio-fuel cells, highly integrated devices (lab-on-a-chip, in vivo biosensors, etc.) Form heterogeneous materials and components. Cross-listed with BENG 247B and ECE 247B.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5118, + "label": "NANO 247B", + "title": "BioElectronics (4)" + }, + { + "dept": "NANO", + "description": "Nanosensors, nanodevices for clinical diagnostics, biowarfare agent detection; nanostructures for drug delivery; nanoarrays, nanodevices, nanoanalytical devices and systems, methods for modification or functionalization of nanoparticles, nanostructures with biological molecules; nanostructural aspects of fuel cells; biofuel cells; potential use of DNA, other biomolecules. Cross-listed with BENG 247C and ECE 247C.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5119, + "label": "NANO 247C", + "title": "BioNanotechnology (4)" + }, + { + "dept": "POLI", + "description": "An introduction to seminal and current research in comparative political economy. Course explores how various political institutions and processes affect economic outcomes (e.g. growth, inequality, and redistribution) and how the economy influences politics (e.g. democratization, electoral institutions, and welfare states). ", + "edges_from": [ + 5121 + ], + "edges_to": [], + "id": 5120, + "label": "POLI 227", + "title": "Comparative Political Economy (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 5120 + ], + "id": 5121, + "label": "POLI 200C", + "title": "" + }, + { + "dept": "POLI", + "description": "A survey of theories explaining the processes of democratization and democratic stability. ", + "edges_from": [], + "edges_to": [], + "id": 5122, + "label": "POLI 224", + "title": "The Politics of Democratization (4)" + }, + { + "dept": "POLI", + "description": "Contending analysis of the types, strategies, causes, processes, and consequences of political violence such as revolutions, insurgencies, and ethnic conflict. ", + "edges_from": [], + "edges_to": [], + "id": 5123, + "label": "POLI 225", + "title": "Political Violence (4)" + }, + { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of comparative politics. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 5124, + "label": "POLI 229", + "title": "Special Topics in Comparative Politics (4)" + }, + { + "dept": "HIUS", + "description": "This seminar will trace major themes in the history of the American West. Topics will include ethnicity, the environment, urbanization, demographics, and shifting concepts surrounding the significance of the West. Graduate students will be required to submit additional work in order to receive graduate credit for the course. ", + "edges_from": [], + "edges_to": [], + "id": 5125, + "label": "HIUS 162/262", + "title": "The American West (4)" + }, + { + "dept": "SOCI", + "description": "Using sociological and historical perspectives, this course examines the origins and demise of apartheid and assesses the progress that has been made since 1994, when apartheid was officially ended. Contrasts of racism in South Africa and the United States. ", + "edges_from": [ + 5126, + 5127 + ], + "edges_to": [ + 5126 + ], + "id": 5126, + "label": "SOCI 188J", + "title": "Change in Modern South Africa (4)" + }, + { + "dept": "SOCD", + "description": "", + "edges_from": [], + "edges_to": [ + 5126 + ], + "id": 5127, + "label": "SOCD 188J", + "title": "" + }, + { + "dept": "COGR", + "description": "The course will look at the history of, and rationales for, the regulation of mass communications in the United States. The course will cover both broadcasting and common carrier regulation. We will analyze telecommunications regulatory structures as they were constituted historically with the 1934 Communications Act and examine their breakdown in the late 1970s. In a larger vein, the course will examine the rise and functions of regulatory agencies in modern American history. ", + "edges_from": [], + "edges_to": [], + "id": 5128, + "label": "COGR 215", + "title": "Regulation of Telecommunications (4)" + }, + { + "dept": "COGR", + "description": "The social, legal, and economic forces affecting the evolution of mass communication institutions and structure in the industrialized world. Differential impacts of the free flow of information and unequal roles and needs of developed and developing economies. ", + "edges_from": [], + "edges_to": [], + "id": 5129, + "label": "COGR 210", + "title": "Information and Society (4)" + }, + { + "dept": "COGR", + "description": "Examines theories of social and distributed memory\u2014Maurice Halwachs to Ed Hutchins, John Sutton, and nature of the archive (Foucault and Derrida), reading databases (as memory prostheses), beginning with Manovich\u2019s work. Enquiry into mediated nature of memory practices. ", + "edges_from": [], + "edges_to": [], + "id": 5130, + "label": "COGR 211", + "title": "Memory Practices (4)" + }, + { + "dept": "COGR", + "description": "A central part of organizational life is talk: interaction both in formal and informal meetings and social situations. In this course we will examine the discourse of organizations, drawing on conversational analysis, discourse analysis, and the sociology of organizations. ", + "edges_from": [], + "edges_to": [], + "id": 5131, + "label": "COGR 219", + "title": "Discourse and Organizations (4)" + }, + { + "dept": "LTEU", + "description": "in Eighteenth-Century European Literature (4)", + "edges_from": [], + "edges_to": [], + "id": 5132, + "label": "LTEU 109", + "title": "Studies" + }, + { + "dept": "LTEU", + "description": "Studies in medieval culture and thought with focus on one of the \u201cthree crowns\u201d of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.", + "edges_from": [], + "edges_to": [], + "id": 5133, + "label": "LTEU 105", + "title": "Medieval Studies (4)" + }, + { + "dept": "PSYC", + "description": "This course will cover a set of general data analysis methods that are broadly applicable in many different subdisciplines of psychology/neuroscience. Topics include model fitting, information theory, Fourier analysis, and machine learning. Recommended preparation: Matlab, C, Java, R, or any related language. ", + "edges_from": [], + "edges_to": [], + "id": 5134, + "label": "PSYC 231", + "title": "Data Analysis in Matlab (4)" + }, + { + "dept": "PSYC", + "description": "Computational theories of human cognition, particularly Bayesian approaches. Techniques may include directed graphical models; hierarchical models; nonparametric models; probabilistic programming languages. Topics may include decision-making; perception; causal reasoning; categorization; language. Cross-listed with LIGN 228. Recommended preparation: Previous experience with statistics, machine learning, and/or functional programming helpful. ", + "edges_from": [], + "edges_to": [], + "id": 5135, + "label": "PSYC 232", + "title": "Probabilistic Models of Cognition (4)" + }, + { + "dept": "PSYC", + "description": "Advanced topics in learning and motivation, with special emphasis on current research. May be taken for credit eighteen times. ", + "edges_from": [], + "edges_to": [], + "id": 5136, + "label": "PSYC 233", + "title": "Learning and Motivation (4)" + }, + { + "dept": "PSYC", + "description": "This seminar will explore issues related to the evolution of human language, and critically evaluate evidence for the diversity of theories about the topic. Discussions will include the comparative communication and cognition, manual communication, factors surrounding the initial emergence of language, among others. ", + "edges_from": [], + "edges_to": [], + "id": 5137, + "label": "PSYC 234", + "title": "Evolution of Language (4)" + }, + { + "dept": "PSYC", + "description": "This course will explore the nature of human thought and its relationship to language taking a primarily developmental approach but drawing on contributions from the philosophy of mind and language, linguistics, and anthropology. Each year a different case study will be explored.\u00a0Past case studies have included concepts, theory of mind, counting, and the logic of thought. Cross-listed with LIGN 232. ", + "edges_from": [], + "edges_to": [], + "id": 5138, + "label": "PSYC 235", + "title": "Thought and Language (4)" + }, + { + "dept": "PSYC", + "description": "Theory and research on the development, progression, and resolution of substance use and abuse will be reviewed and evaluated. Normal and abnormal patterns of substance involvement will be contrasted across the life span. ", + "edges_from": [], + "edges_to": [], + "id": 5139, + "label": "PSYC 236", + "title": "Substance Abuse (4)" + }, + { + "dept": "PSYC", + "description": "The traditional view of rationality is based upon abstract, content-independent rules for behavior. People sometimes violate these rules in a laboratory setting, but the violations are often systematic and appear to reflect adaptation to the environment outside the laboratory. Such findings raise questions about what it means to be rational. Readings will be empirically oriented and cover the areas of deductive reasoning, inductive reasoning, and choice. ", + "edges_from": [], + "edges_to": [], + "id": 5140, + "label": "PSYC 237", + "title": "Human Rationality (4)" + }, + { + "dept": "LIGN", + "description": "Introduction to the formal study of meaning. What is the meaning of a word? What is the meaning of a sentence? Which role does the context play in determining linguistic meaning? ", + "edges_from": [ + 1756 + ], + "edges_to": [], + "id": 5141, + "label": "LIGN 130", + "title": "Semantics (4)" + }, + { + "dept": "ANSC", + "description": "Why is there variation of health outcomes across the world? We will discuss health and illness in context of culture and address concerns in cross-national health variations by comparing healthcare systems in developed, underdeveloped, and developing countries. In addition, we\u2019ll study the role of socioeconomic and political change in determining health outcomes, and examine social health determinants in contemporary global health problems: multidrug resistance to antibiotics, gender violence, and human trafficking, etc. Students must apply to the Study Abroad Program online at", + "edges_from": [], + "edges_to": [], + "id": 5142, + "label": "ANSC 105S", + "title": "Global Health and Inequality\u2014Study Abroad (4)" + }, + { + "dept": "ETHN", + "description": "States\u2013Mexico Border in Comparative Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 5143, + "label": "ETHN 116", + "title": "The United" + }, + { + "dept": "MGT", + "description": "Provides a business overview of the life science industry, its major market segments, financial structure, and financing strategies. Develops an understanding of major industry issues and strategies, including business development, financing, partnering and alliances, emerging trends, ethical and policy issues. Students may not earn credit for both MGT 430 and MGT 250. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5144, + "label": "MGT 430", + "title": "Biotechnology Industry, Structure, and Strategy (4)" + }, + { + "dept": "ANTH", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges. Topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5145, + "label": "ANTH 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "HIGR", + "description": "One or two topics in colonial history will be analyzed in depth; reading knowledge of Spanish is expected.", + "edges_from": [], + "edges_to": [], + "id": 5146, + "label": "HIGR 249", + "title": "Topics in Colonial Latin America (4)" + }, + { + "dept": "HIGR", + "description": "Cross-listed as Communication 225C, Philosophy 209C, and Sociology 255C. A forum for the presentation and discussion of research in progress in science studies, by graduate students, faculty, and visitors. Required for all students in the Science Studies Program. May be repeated as course content changes annually. ", + "edges_from": [], + "edges_to": [], + "id": 5147, + "label": "HIGR 240", + "title": "Colloquium in Science Studies (4)" + }, + { + "dept": "HIGR", + "description": "Approaches to Science Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 5148, + "label": "HIGR 241", + "title": "Advanced" + }, + { + "dept": "HIGR", + "description": "Study and discussion of classic and recent scholarship on sound production and cultures of listening. Emphasizes historical literature but also includes works in literary studies, art history, music, and other fields. ", + "edges_from": [], + "edges_to": [], + "id": 5149, + "label": "HIGR 244", + "title": "Introduction to Sound Studies (4)" + }, + { + "dept": "HIGR", + "description": "This seminar traces the history of revolution and repression in modern Latin America and the Caribbean. We will spend one to two weeks on each of the following revolutions: Haiti (1791), Mexico (1910), Cuba (1959), and Central America (1970s\u201380s).", + "edges_from": [], + "edges_to": [], + "id": 5150, + "label": "HIGR 245", + "title": "Revolution, Empire, and State Violence in Latin America and the Caribbean (4)" + }, + { + "dept": "ETHN", + "description": "This course explores the genesis, evolution, and contradictions of racially heterogeneous societies in the Americas, from European conquest to the present. Topics: the social history of Native Americans, blacks, and Asians, their interactions with European settlers, and racial, sexual, and class divisions.", + "edges_from": [], + "edges_to": [], + "id": 5151, + "label": "ETHN 119", + "title": "Race in the Americas (4)" + }, + { + "dept": "MGTA", + "description": "Many projects fail to produce valuable results, are over budget, or not finished on time. This course will teach students how to set and manage goals and expectations of the team and of the executive sponsors for business analytics projects. ", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [], + "id": 5152, + "label": "MGTA 460", + "title": "Business Analytics Project Management (2)" + }, + { + "dept": "EDS", + "description": "This course will guide doctoral students in conducting rigorous case study research in the social sciences and the field of education. The course will address case study design, data collection, data analysis, and reporting. This will be accomplished through training on these stages of case study research. It will also provide hands-on experience designing case studies and analyzing case study data. The course will equip students with all the necessary tools to conduct independent case studies. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5153, + "label": "EDS 257", + "title": "Case Study Research (4)" + }, + { + "dept": "CSE", + "description": "Support for Applications of Parallel Computation (4)", + "edges_from": [], + "edges_to": [], + "id": 5154, + "label": "CSE 262", + "title": "System" + }, + { + "dept": "EDS", + "description": "Students will examine the principles of second language acquisition and approaches to bilingual education. They will develop a repertoire of strategies for teaching in elementary or secondary content areas. ", + "edges_from": [], + "edges_to": [], + "id": 5155, + "label": "EDS 351", + "title": "Teaching the English Language Learner (4)" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems III (4)", + "edges_from": [], + "edges_to": [], + "id": 5156, + "label": "ECE 264C", + "title": "CMOS Analog" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems II (4)", + "edges_from": [], + "edges_to": [], + "id": 5157, + "label": "ECE 264B", + "title": "CMOS Analog" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems I (4)", + "edges_from": [], + "edges_to": [], + "id": 5158, + "label": "ECE 264A", + "title": "CMOS Analog" + }, + { + "dept": "ECE", + "description": "Integrated Circuits and Systems IV (4)", + "edges_from": [], + "edges_to": [], + "id": 5159, + "label": "ECE 264D", + "title": "CMOS Analog" + }, + { + "dept": "MGTF", + "description": "The Capstone project is one of the primary measures of student learning. Evaluation is based on students\u2019 ability to apply course material to the Capstone project. Satisfactory completion of the project is required for award of the degree. Letter grades only. ", + "edges_from": [ + 3057, + 3059, + 3061, + 3062 + ], + "edges_to": [], + "id": 5160, + "label": "MGTF 490", + "title": "Capstone: Applied Finance Project (4)" + }, + { + "dept": "MGTF", + "description": "Introduces advanced topics of special interest in finance. Instructional methods can include face-to-face lecture, case presentations, assigned teaching, and/or online group discussions. May be taken for credit up to four times. Students may not earn credit when course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 5161, + "label": "MGTF 495", + "title": "Special Topics in Finance (2\u20134)" + }, + { + "dept": "HITO", + "description": "Taught in conjunction with the San Diego Maritime Museum, this course investigates life at sea from the age of discovery to the advent of the steamship. We will investigate discovery, technology, piracy, fisheries, commerce, naval conflict, sea-board life, and seaport activity. ", + "edges_from": [], + "edges_to": [], + "id": 5162, + "label": "HITO 178/278", + "title": "A History of Seafaring in the Age of Sail (4)" + }, + { + "dept": "NANO", + "description": "", + "edges_from": [ + 573 + ], + "edges_to": [ + 2282 + ], + "id": 5163, + "label": "NANO 106", + "title": "" + }, + { + "dept": "MUS", + "description": "Projects and Independent Study (1\u201312)", + "edges_from": [], + "edges_to": [], + "id": 5164, + "label": "MUS 299", + "title": "Advanced Research" + }, + { + "dept": "MUS", + "description": "Individual research. (S/U grades permitted.) May be repeated for credit. Enrollment by consent of instructor only.", + "edges_from": [], + "edges_to": [], + "id": 5165, + "label": "MUS 298", + "title": "Directed Research (1\u20134)" + }, + { + "dept": "NANO", + "description": "Overview of electrical devices and CMOS integrated circuits emphasizing fabrication processes, and scaling behavior. Design, and simulation of submicron CMOS circuits including amplifiers active filters digital logic, and memory circuits. Limitations of current technologies and possible impact of nanoelectronic technologies.\u00a0", + "edges_from": [ + 849, + 130, + 571, + 28, + 135 + ], + "edges_to": [], + "id": 5166, + "label": "NANO 107", + "title": "Electronic Devices and Circuits for Nanoengineers (4)" + }, + { + "dept": "MUS", + "description": "This group research seminar involves the investigation and exploration of new and experimental performance concerns. Areas could include: improvisation, graphic notation, performance electronics, and working with combined media (such as dance, poetry, and theatre). ", + "edges_from": [], + "edges_to": [], + "id": 5167, + "label": "MUS 296", + "title": "Directed Group Research in Performance (4)" + }, + { + "dept": "HIEU", + "description": "Topics will vary and may include political, socio-economic, and cultural developments in the era from 1650 to 1850. Some years the emphasis will be on the theory and practice of revolutions and their impact on Europe and the world. Graduate students will be required to submit an additional piece of work.", + "edges_from": [], + "edges_to": [], + "id": 5168, + "label": "HIEU 167/267", + "title": "Special Topics in the Social History of Early Modern Europe (4)" + }, + { + "dept": "LTAM", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5169, + "label": "LTAM 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "LTAM", + "description": "Production of the Latino/a Diasporas (4)", + "edges_from": [], + "edges_to": [], + "id": 5170, + "label": "LTAM 109", + "title": "Cultural" + }, + { + "dept": "LTAM", + "description": "The course will center on Chicano/a-Latino/a writers and movements of literary, intellectual, cultural, or political significance. Texts may be read in the original language or in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5171, + "label": "LTAM 108", + "title": "Chicano/a and Latino/a Cultures: Intellectual and Political Traditions (4)" + }, + { + "dept": "LTAM", + "description": "Latino/a and US Ethnic Cultures (4)", + "edges_from": [], + "edges_to": [], + "id": 5172, + "label": "LTAM 107", + "title": "Comparative" + }, + { + "dept": "LTAM", + "description": "Chicana and Mexican Women Writings (4)", + "edges_from": [], + "edges_to": [], + "id": 5173, + "label": "LTAM 106", + "title": "Modern" + }, + { + "dept": "LTAM", + "description": "and Sexuality in Latino/a Cultural Production (4)", + "edges_from": [], + "edges_to": [], + "id": 5174, + "label": "LTAM 105", + "title": "Gender" + }, + { + "dept": "MAE", + "description": "Parameterization of all stabilizing output feedback controllers, covariance controllers, H-infinity controllers, and L-2 to L-infinity controllers. Continuous and discrete-time treatment. Alternating projection algorithms for solving output feedback problems. Model reduction. All control design problems reduced to one critical theorem in linear algebra. ", + "edges_from": [ + 1448 + ], + "edges_to": [], + "id": 5175, + "label": "MAE 280B", + "title": "Linear Control Design (4)" + }, + { + "dept": "LTAM", + "description": "An introductory historical and cultural overview of the various Latino/a populations in the United States with a study of representative cultural texts.", + "edges_from": [], + "edges_to": [], + "id": 5176, + "label": "LTAM 100", + "title": "Latino/a Cultures in the United States (4)" + }, + { + "dept": "HIEU", + "description": "How Germany, from being a maze of tiny states rife with religious conflict, became a nation. Did the nations-building process lead to Nazism? Students may not get credit for both HIEU 132 and HIEU 132D. +", + "edges_from": [], + "edges_to": [], + "id": 5177, + "label": "HIEU 132", + "title": "Germany from Luther to Bismarck (4)" + }, + { + "dept": "HIEU", + "description": "This course examines the Revolution in France and its impact in Europe and the Caribbean. Special emphasis will be given to the origins of the Revolution, the development of political and popular radicalism and symbolism from 1789 to 1794, the role of political participants (e.g., women, sans-culottes, Robespierre), and the legacy of revolutionary wars and the Napoleonic system on Europe.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5178, + "label": "HIEU 131", + "title": "The French Revolution: 1789\u20131814 (4)" + }, + { + "dept": "HIEU", + "description": "A lecture-discussion course focusing on Europe", + "edges_from": [], + "edges_to": [], + "id": 5179, + "label": "HIEU 130", + "title": "Europe in the Eighteenth Century (4)" + }, + { + "dept": "HIEU", + "description": "This course surveys the age of colonialism in the nineteenth and twentieth century. The course will focus on the debates on colonialism in the metropolis as well as on the conflicts inside the colonies. Considerable emphasis will be placed on colonialism in Africa.", + "edges_from": [], + "edges_to": [], + "id": 5180, + "label": "HIEU 137", + "title": "History of Colonialism: From New Imperialism to Decolonization (4)" + }, + { + "dept": "HIEU", + "description": "Major developments in modern tourism history, focusing on post-1945 Europe in its broader global context. Topics include tourism\u2019s relationship to cultural change and transfers, globalization, international politics, business, economics, wealth distribution, the environment, sexuality and sex tourism, and national identity.", + "edges_from": [], + "edges_to": [], + "id": 5181, + "label": "HIEU 135", + "title": "Sun, Sea, Sand, and Sex:\u00a0Tourism and Tourists in the Contemporary World (4)" + }, + { + "dept": "HIEU", + "description": "Formation of the Russian Empire, 800\u20131855 (4)", + "edges_from": [], + "edges_to": [], + "id": 5182, + "label": "HIEU 134", + "title": "The" + }, + { + "dept": "HIEU", + "description": "This course places gender and sexuality at the center of European history from the Renaissance to the French Revolution. We examine the distinct roles that men and women played in the period\u2019s major events. We track how practices and understandings of gender and sexuality shifted during the four centuries between 1500 and 1800. +", + "edges_from": [], + "edges_to": [], + "id": 5183, + "label": "HIEU 139", + "title": "Sex and Gender from the Renaissance to the French Revolution (4)" + }, + { + "dept": "MUS", + "description": "The theory and practice of instrumental and/or choral conducting as they have to do with basic baton techniques, score reading, interpretation, orchestration, program building, and functional analysis. Members of the class will be expected to demonstrate their knowledge in the conducting of a small ensemble performing literature from the eighteenth, nineteenth, and twentieth centuries. ", + "edges_from": [ + 769, + 1684, + 2581, + 2580, + 2108, + 2109 + ], + "edges_to": [], + "id": 5184, + "label": "MUS 128", + "title": "Principles and Practice of Conducting (4)" + }, + { + "dept": "BGGN", + "description": "Research papers from all aspects of stem cell biology will be read, presented, and discussed. Papers will range from landmark to current studies, spanning many developmental organisms and cell types. Students will present one paper, provide relevant background, and lead discussions. ", + "edges_from": [], + "edges_to": [], + "id": 5185, + "label": "BGGN 231", + "title": "Current Concepts in Stem Cell Biology (4)" + }, + { + "dept": "POLI", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5186, + "label": "POLI 504", + "title": "Seminar on Teaching Development\u2014Political Theory" + }, + { + "dept": "POLI", + "description": "A seminar designed for graduate students serving as teaching assistants in international relations, includes discussion of teaching theories, techniques, and materials, conduct of discussion sessions, and participation in examinations under the supervision of the instructor in charge of the course. ", + "edges_from": [], + "edges_to": [], + "id": 5187, + "label": "POLI 503", + "title": "Seminar on Teaching Development\u2014International Relations (1\u20134)" + }, + { + "dept": "POLI", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5188, + "label": "POLI 502", + "title": "Seminar on Teaching Development\u2014Comparative Politics" + }, + { + "dept": "POLI", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5189, + "label": "POLI 501", + "title": "Seminar on Teaching Development\u2014American Politics" + }, + { + "dept": "POLI", + "description": "A course in which teaching assistants are aided in learning proper teaching methods by means of supervision of their work by the faculty: handling of discussions, preparation, and grading of examinations and other written exercises, and student relations. Twenty-four units of teaching apprenticeship meet the department teaching requirement for the PhD.", + "edges_from": [], + "edges_to": [], + "id": 5190, + "label": "POLI 500", + "title": "Apprentice Teaching (1\u20134)" + }, + { + "dept": "CSE", + "description": "Aided Circuit Simulation and Verification (4)", + "edges_from": [], + "edges_to": [], + "id": 5191, + "label": "CSE 245", + "title": "Computer" + }, + { + "dept": "CSE", + "description": "Algorithmic techniques and optimization frameworks for large-scale, difficult optimizations. Primal-dual multicommodity flow approximations, approximations for geometric and graph Steiner formulations, continuous placement optimization, heuristics for Boolean satisfiability, multilevel methods, semidefinite programming, and application to other formulations (e.g., scheduling). ", + "edges_from": [ + 5193, + 5194 + ], + "edges_to": [], + "id": 5192, + "label": "CSE 248", + "title": "Algorithmic and Optimization Foundations for VLSI CAD (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 5192 + ], + "id": 5193, + "label": "CSE 242A", + "title": "" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 5192 + ], + "id": 5194, + "label": "CSE 241A", + "title": "" + }, + { + "dept": "MGT", + "description": "Introduction to the emerging real estate tech sector; newly available datasets and technologies are transforming the real estate sector; introduction of quantitative methods for analyzing real estate and urban trends; utilizing large datasets and software in making optimal decisions from the perspective of buyers, sellers, real estate agents and brokers, developers, and regulators. ", + "edges_from": [], + "edges_to": [], + "id": 5195, + "label": "MGT 158", + "title": "Real Estate and the Tech Sector (4)" + }, + { + "dept": "MGTF", + "description": "Focuses on the financing of new ventures and technological innovation. Includes perspectives of both the entrepreneur and the investor, investigating the venture capital process, and methods of financial valuation useful in the venture capital industry and for other technology investments. Letter grades only. Students may not receive credit for both MGTF 410 and MGT 280. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5196, + "label": "MGTF 410", + "title": "New Venture Finance (4)" + }, + { + "dept": "MGT", + "description": "This course is designed to help a business manager use data to make good decisions in complex decision-making situations. Students will gain foundation knowledge of several analytical and econometric methods including decision analysis, probability theory, statistical inference, regression analysis, and hypothesis testing. Students will also learn how to use available computing technology to arrive at optimal solutions. ", + "edges_from": [ + 419, + 1220, + 709, + 1222, + 3271, + 3977, + 2090, + 171, + 270, + 1844, + 1988, + 169, + 436, + 420, + 794, + 4892, + 3978, + 1989 + ], + "edges_to": [], + "id": 5197, + "label": "MGT 153", + "title": "Business Analytics (4)" + }, + { + "dept": "LTFR", + "description": "Research seminars and research, under the direction of a member of the staff. May be repeated for credit. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5198, + "label": "LTFR 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTFR", + "description": "Tutorial; individual guided reading in areas of French literature not normally covered in courses. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5199, + "label": "LTFR 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "ECON", + "description": "The Freshman Seminar Program is designed to", + "edges_from": [], + "edges_to": [], + "id": 5200, + "label": "ECON 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "VIS", + "description": "Critical and historical analysis of the institutions, social networks, and communicative media through which art is presented to its audiences. May also address theories of vision and visuality, spectatorship, public space, originality and reproduction, and public space.", + "edges_from": [], + "edges_to": [], + "id": 5201, + "label": "VIS 234N", + "title": "Frames of View (4)" + }, + { + "dept": "CSE", + "description": "A hands-on approach to the principles of databases implementation. Algebraic rewriters/optimizers, query processors, triggers. Beyond centralized relational databases. ", + "edges_from": [ + 1598 + ], + "edges_to": [], + "id": 5202, + "label": "CSE 232B", + "title": "Database System Implementation (4)" + }, + { + "dept": "CAT", + "description": "Seminars are hands-on arts experiences (performances, exhibits, site visits, etc.). Students and faculty attend events together and have discussions before or after, often with guest speakers such as the artists, curators, and/or faculty/graduate students from UC San Diego arts departments. Successful completion of this seminar series satisfies one of the eight Sixth College general education requirements for Art Making. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5203, + "label": "CAT 75", + "title": "Experience Art!\u2014Sixth College Seminar Series (1)" + }, + { + "dept": "CSE", + "description": "and Logic (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5204, + "label": "CSE 209A", + "title": "Topics/Seminar in Algorithms, Complexity," + }, + { + "dept": "CSE", + "description": "Topics of special interest in cryptography to be presented by faculty and students under faculty direction. Topics vary from quarter to quarter. May be repeated for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5205, + "label": "CSE 209B", + "title": "Topics/Seminar in Cryptography (1\u20134)" + }, + { + "dept": "COMM", + "description": "This advanced course examines, analyzes, and discusses media works by contemporary Asian American, Native American, African American, and Latina/o American filmmakers. The course does not offer a historical survey of films by minority makers but rather will operate on themes such as cultural identity, urbanization, personal relationships, gender relations, cultural retentions, and music. The course will require students to attend some off-campus screenings, especially those at area film festivals. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 5206, + "label": "COMM 135", + "title": "Contemporary Minority Media Makers and the Festival Experience (4)" + }, + { + "dept": "TDPR", + "description": "A production performance-oriented course that continues the development of costume, lighting, scenery, or sound production and introduces greater responsibilities in the laboratory format. Students serve as crew heads on major departmental productions or creative projects. May be taken for credit two times. ", + "edges_from": [ + 5208, + 1417, + 1634, + 1875 + ], + "edges_to": [], + "id": 5207, + "label": "TDPR 102", + "title": "Advanced Theatre Practicum (4\u20136)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 5207 + ], + "id": 5208, + "label": "TDPR 2", + "title": "" + }, + { + "dept": "TDPR", + "description": "Practicum in Stage Management (4\u20136)", + "edges_from": [], + "edges_to": [ + 5699 + ], + "id": 5209, + "label": "TDPR 104", + "title": "Advanced" + }, + { + "dept": "HIUS", + "description": "This course reconsiders US history from a Pacific world perspective, from the eighteenth century to the present. Themes include comparative colonialism and empire; race, gender, and indigeneity; militarism and tourism; labor migration and resistance.", + "edges_from": [], + "edges_to": [], + "id": 5210, + "label": "HIUS 103", + "title": "The United States and the Pacific World (4)" + }, + { + "dept": "HIUS", + "description": "The upheavals that transformed the early modern Atlantic emphasizing the United States, Caribbean, and Great Britain. Topics: struggles to define democracy, the reorganization of the Atlantic state system, the Enlightenment, and international responses to the American and French Revolutions.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5211, + "label": "HIUS 104", + "title": "The Revolutionary Atlantic (4)" + }, + { + "dept": "CHIN", + "description": "Introductory course of basic Chinese", + "edges_from": [], + "edges_to": [], + "id": 5212, + "label": "CHIN 10AD", + "title": "First Year Chinese\u2014Dialect speakers I (5)" + }, + { + "dept": "COGS", + "description": "Covers the theories of situated, distributed, enactive, and embodied cognition. Explains how cyborgs are a natural consequence of our current understanding of embodied minds embedded in culturally shaped niches; how mental systems can be distributed over other people and things. Students may not receive credit for both Cognitive Science 100 and Cognitive Science 102A. ", + "edges_from": [ + 568, + 1774 + ], + "edges_to": [], + "id": 5213, + "label": "COGS 100", + "title": "Cyborgs Now and in the Future (4)" + }, + { + "dept": "CHIN", + "description": "Introductory course of basic Chinese", + "edges_from": [], + "edges_to": [], + "id": 5214, + "label": "CHIN 10AN", + "title": "First Year Chinese\u2014Non-native speakers I (5)" + }, + { + "dept": "SOCI", + "description": "A survey of the major economic, political, and social forces that have shaped the contemporary world. The course will provide an introduction to theories of social change, as well as prepare the student for upper-division work in comparative-historical sociology. Will not receive credit for SOCI 20 and SOCL 20.", + "edges_from": [], + "edges_to": [], + "id": 5215, + "label": "SOCI 20", + "title": "Social Change in the Modern World (4)" + }, + { + "dept": "POLI", + "description": "We will discuss modern theories of the origins of law and legal behavior.", + "edges_from": [], + "edges_to": [], + "id": 5216, + "label": "POLI 104L", + "title": "Positive Political Theory of Law (4)" + }, + { + "dept": "POLI", + "description": "How law regulates and impacts sexuality and orientation with focus on constitutional law in areas of privacy, free speech, association, regulation of sexual conduct under criminal law pornography, procreation, reproductive rights, and regulation of family status. ", + "edges_from": [], + "edges_to": [], + "id": 5217, + "label": "POLI 104M", + "title": "Law and Sex (4)" + }, + { + "dept": "POLI", + "description": "Has the law helped end or contributed to racism in the United States? This course will explore the law of Slavery, Segregation, and Immigration, and study Equal Protection, Affirmative Action, and Criminal Justice (including hate crimes and First Amendment implications).", + "edges_from": [], + "edges_to": [], + "id": 5218, + "label": "POLI 104N", + "title": "Race and Law (4)" + }, + { + "dept": "POLI", + "description": "Politics\u2014Courts and Political Controversy (4)", + "edges_from": [], + "edges_to": [], + "id": 5219, + "label": "POLI 104I", + "title": "Law and" + }, + { + "dept": "POLI", + "description": "The ability to write and argue is one of the noted benefits of a legal education. Students will learn the basics of legal research and reasoning by learning to read and brief case law and write persuasive and objective memorandums. ", + "edges_from": [ + 5221, + 5222 + ], + "edges_to": [], + "id": 5220, + "label": "POLI 104J", + "title": "Introduction to Legal Reasoning (4)" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 5225, + 5220 + ], + "id": 5221, + "label": "POLI 104A", + "title": "" + }, + { + "dept": "POLI", + "description": "", + "edges_from": [], + "edges_to": [ + 5220 + ], + "id": 5222, + "label": "POLI 104B", + "title": "" + }, + { + "dept": "POLI", + "description": "Introduction to the study of law and courts as political institutions and judges as political actors, including the role of the judiciary in our constitutional system and decision making both within the Supreme Court and within the judicial hierarchy.", + "edges_from": [], + "edges_to": [], + "id": 5223, + "label": "POLI 104D", + "title": "Judicial Politics (4)" + }, + { + "dept": "POLI", + "description": "The course is an introduction to US environmental law at the federal level. It emphasizes issues and current controversies involving natural resources, such as wilderness, biodiversity, water, and climate change. ", + "edges_from": [], + "edges_to": [], + "id": 5224, + "label": "POLI 104E", + "title": "Environmental Law and Policy (4)" + }, + { + "dept": "POLI", + "description": "This seminar will provide an intensive examination of a major issue in constitutional law, with topics varying from year to year. Recent topics have included equal protection law and the rights of civilians in wartime. Students will be required to do legal research on a topic, write a legal brief, and argue a case to the seminar. ", + "edges_from": [ + 5221 + ], + "edges_to": [], + "id": 5225, + "label": "POLI 104F", + "title": "Seminar in Constitutional Law (4)" + }, + { + "dept": "POLI", + "description": "Examines the legal issues surrounding the rights of criminal suspects, as well as the rights of \u201cmarginal\u201d groups such as aliens, illegal immigrants, and the mentally ill. Also includes a discussion of the nature of discrimination in American society. ", + "edges_from": [], + "edges_to": [], + "id": 5226, + "label": "POLI 104C", + "title": "Civil Liberties\u2014The Rights of the Accused and Minorities (4)" + }, + { + "dept": "POLI", + "description": "Science advances exponentially. The law is slower to follow. This course examines legal issues created by today\u2019s scientific breakthroughs and explores what future legal challenges might await tomorrow\u2019s scientific discoveries, from privacy on the Internet to the meaning of life. ", + "edges_from": [], + "edges_to": [], + "id": 5227, + "label": "POLI 104P", + "title": "Science, Technology, and the Law (4)" + }, + { + "dept": "ECON", + "description": "(Cross-listed with POLI 5D.) Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: Econ 5, POLI 5, or POLI 5D.", + "edges_from": [], + "edges_to": [], + "id": 5228, + "label": "ECON 5", + "title": "Data Analytics for the Social Sciences (4)" + }, + { + "dept": "PSYC", + "description": "Weekly research seminar, three quarter research project under faculty guidance which culminates in a thesis. Must be taken for a letter grade to satisfy major requirements for Department of Psychology majors. ", + "edges_from": [], + "edges_to": [], + "id": 5229, + "label": "PSYC 196A-B-C", + "title": "Research Seminar (4-4-4)" + }, + { + "dept": "BENG/BIMM/CSE", + "description": "(Cross-listed as BIMM 181 and CSE 181.) This course covers the analysis of nucleic acid and protein sequences, with an emphasis on the application of algorithms to biological problems. Topics include sequence alignments, database searching, comparative genomics, and phylogenetic and clustering analyses. Pairwise alignment, multiple alignment, DNA sequencing, scoring functions, fast database search, comparative genomics, clustering, phylogenetic trees, gene finding/DNA statistics. ", + "edges_from": [ + 241, + 1074, + 11, + 17 + ], + "edges_to": [], + "id": 5230, + "label": "BENG/BIMM/CSE 181", + "title": "Molecular Sequence Analysis (4)" + }, + { + "dept": "TDMV", + "description": "This creative laboratory course facilitates group and individual experimentation through the study of somatic movement processes and methodologies. Students explore approaches to movement vocabulary that offer them insights into investigating their own movement generation and dance making material. May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 5231, + "label": "TDMV 20", + "title": "Movement Laboratory (4)" + }, + { + "dept": "POLI", + "description": "This seminar is an examination of the different approaches to the study of political theory. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 5232, + "label": "POLI 219", + "title": "Special Topics in Political Theory (4)" + }, + { + "dept": "CLRE", + "description": "The goal of implementation science is to ensure that the knowledge and materials produced by health research actually leads to improved population health by: 1) reaching the people for whom they are intended; 2) being adapted to local circumstances; and 3) being implemented effectively, safely, equitably, and in a timely and patient-centered manner. ", + "edges_from": [], + "edges_to": [], + "id": 5233, + "label": "CLRE 231", + "title": "Implementation Science (2)" + }, + { + "dept": "DSGN", + "description": "Students, under the direction of the instructor, lead laboratory or discussion sections, attend lectures, and meet regularly with the instructor to help prepare course materials and grade papers and exams. P/NP grades only. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5234, + "label": "DSGN 195", + "title": "Instructional Apprenticeship in Design (4)" + }, + { + "dept": "ECE", + "description": "Crystal structure and quantum theory of solids; electronic band structure; review of carrier statistics, drift and diffusion, p-n junctions; nonequilibrium carriers, imrefs, traps, recombination, etc; metal-semiconductor junctions and heterojunctions. ", + "edges_from": [ + 614 + ], + "edges_to": [ + 5236 + ], + "id": 5235, + "label": "ECE 135A", + "title": "Semiconductor Physics (4)" + }, + { + "dept": "ECE", + "description": "Structure and operation of bipolar junction transistors, junction field-effect transistors, metal-oxide-semiconductor diodes and transistors. Analysis of dc and ac characteristics. Charge control model of dynamic behavior. ", + "edges_from": [ + 5235 + ], + "edges_to": [], + "id": 5236, + "label": "ECE 135B", + "title": "Electronic Devices (4)" + }, + { + "dept": "MUS", + "description": "Introduces the network of concepts and approaches that comprise systems inquiry and explores the theoretical, philosophical, and methodological implications of systems thinking for musical research and practice. Students who have taken MUS 208B for credit may not take MUS 212 for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5237, + "label": "MUS 212", + "title": "Introduction to System Inquiry (2)" + }, + { + "dept": "MATS", + "description": "Subject to the approval of a faculty adviser, students may choose courses offered by departments participating in the Materials Science and Engineering Program. Please see the graduate coordinator for more information.\t\t(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5238, + "label": "MATS 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "CLRE", + "description": "This course provides students with a strong foundation in regulatory science and drug device development and a hands-on introduction to current good manufacturing, laboratory and clinical practices, as well as product development. It offers graduates unique instruction for the specialized jobs in regulatory science in federal, academic, and industry work settings. ", + "edges_from": [], + "edges_to": [], + "id": 5239, + "label": "CLRE 233", + "title": "Regulatory Science (2)" + }, + { + "dept": "DSGN", + "description": "This directed group study course is for small groups of advanced students who wish to complete a one-quarter reading or research project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit up to three times. ", + "edges_from": [], + "edges_to": [], + "id": 5240, + "label": "DSGN 198", + "title": "Directed Group Study (2 or 4)" + }, + { + "dept": "DSGN", + "description": "This independent project course is for individual, advanced students who wish to complete a design project under the mentorship of a faculty member. Students should contact faculty whose research interests them to discuss possible projects. P/NP grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5241, + "label": "DSGN 199", + "title": "Independent Project (2 or 4)" + }, + { + "dept": "EDS", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking, organizational, interpersonal, and wellness skills. ", + "edges_from": [], + "edges_to": [], + "id": 5242, + "label": "EDS 50", + "title": "Chancellor\u2019s Associates Scholars Program Freshman Introductory Course (1)" + }, + { + "dept": "TDHD", + "description": "An historical overview of the most influential international dance pioneers in recent history, the cultural, political, and artistic contexts that informed the development of their work and the impact that their achievements have on the evolution of dance worldwide. ", + "edges_from": [ + 1871 + ], + "edges_to": [], + "id": 5243, + "label": "TDHD 21", + "title": "Dance Pioneers of the Twentieth and Twenty-First Centuries (4)" + }, + { + "dept": "TDHD", + "description": "Focuses on the foundational aesthetic concepts of dance creation and performance within a diverse range of cultural contexts. Students develop descriptive, perceptual, and analytical skills. ", + "edges_from": [ + 1871 + ], + "edges_to": [], + "id": 5244, + "label": "TDHD 20", + "title": "Looking at Dance (4)" + }, + { + "dept": "POLI", + "description": "A comparative survey of the major dimensions of the electoral systems used in contemporary democracies (including plurality and majority systems, proportional representation, and districting methods) and of their effects on party competition.", + "edges_from": [], + "edges_to": [], + "id": 5245, + "label": "POLI 124A", + "title": "Political Consequences of Electoral Systems (4)" + }, + { + "dept": "TDPF", + "description": "Students develop skills in directing and producing an independent staged dance concert/production in various settings. May be taken for credit two times.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5246, + "label": "TDPF 190", + "title": "Major Project/Dance Production (4)" + }, + { + "dept": "CHIN", + "description": "A course in which graduate teaching assistants", + "edges_from": [], + "edges_to": [], + "id": 5247, + "label": "CHIN 500", + "title": "Apprentice Teaching (2\u20134)" + }, + { + "dept": "TMC", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5248, + "label": "TMC 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "MUS", + "description": "Surveys the terrain of contemporary creative music and investigates the social, cultural, historical, and technological dimensions of its manifestations and practice. Students who have taken MUS 208D for credit may not take MUS 214 for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5249, + "label": "MUS 214", + "title": "Introduction to Creative Practices (2)" + }, + { + "dept": "POLI", + "description": "Topics in International Political Economy (4)", + "edges_from": [], + "edges_to": [], + "id": 5250, + "label": "POLI 144AB", + "title": "Selected" + }, + { + "dept": "Revelle", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and cocurricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5251, + "label": "Revelle 1", + "title": "First Year Experience (2)" + }, + { + "dept": "Revelle", + "description": "This course facilitates academic success at a leading research university by helping students understand and embrace academic and curricular expectations, engage and map cocurricular opportunities, and strengthen critical thinking and organizational, interpersonal, and wellness skills. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5252, + "label": "Revelle 2", + "title": "Transfer Year Experience (2)" + }, + { + "dept": "VIS", + "description": "A studio course in painting emphasizing individual creative problems. Class projects, discussions, and critiques will focus on issues related to intention, subject matter, and context. ", + "edges_from": [ + 5254 + ], + "edges_to": [], + "id": 5253, + "label": "VIS 106C", + "title": "Painting: Portfolio Projects (4)" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 5255 + ], + "edges_to": [ + 5253 + ], + "id": 5254, + "label": "VIS 106B", + "title": "" + }, + { + "dept": "VIS", + "description": "", + "edges_from": [ + 1348 + ], + "edges_to": [ + 5254 + ], + "id": 5255, + "label": "VIS 106A", + "title": "" + }, + { + "dept": "GPEC", + "description": "Government policies with respect to cultural amenities, the environment, health, and transportation generate benefits and costs not directly priced by the market. This course covers the range of techniques economists utilize to place a monetary value on nonmarket outputs. Course renumbered from IRGN 489. Student may not receive credit for GPEC 489 and IRGN 489. ", + "edges_from": [ + 1595, + 4101 + ], + "edges_to": [], + "id": 5256, + "label": "GPEC 489", + "title": "The Economics of Nonmarket Valuation (4)" + }, + { + "dept": "GPEC", + "description": "This course provides a broad overview of environmental and regulatory economics and its interface with public policy. This course will be grounded in micro-economic theory with applications to specific cases. Renumbered from IRGN 488. Student may not receive credit for GPEC 488 and IRGN 488. ", + "edges_from": [ + 1595, + 4101 + ], + "edges_to": [], + "id": 5257, + "label": "GPEC 488", + "title": "Environmental and Regulatory Economics (4)" + }, + { + "dept": "PHYS", + "description": "Studies of special topics in physics under the direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5258, + "label": "PHYS 297", + "title": "Special Studies in Physics (1\u20134)" + }, + { + "dept": "LTIT", + "description": "Studies in medieval culture and thought with focus on one of the \u201cthree crowns\u201d of Italian literature: Dante, Boccaccio, or Petrarca. May be repeated for credit when course content varies.", + "edges_from": [], + "edges_to": [], + "id": 5259, + "label": "LTIT 115", + "title": "Medieval Studies (4)" + }, + { + "dept": "GPEC", + "description": "This course studies the development, current economic issues, and future prospects and challenges of Latin America, broadly defined to include Mexico and Central and South America. The course focuses on the comparative development experience across the economies, regional economic integration, and economic interactions among the economies of the region. Renumbered from IRGN 480. Student may not receive credit for GPEC 480 and IRGN 480.", + "edges_from": [], + "edges_to": [], + "id": 5260, + "label": "GPEC 480", + "title": "Comparative Development of the Latin American Economies (4)" + }, + { + "dept": "GPEC", + "description": "Analytical review of South Korea\u2019s economic performance. Examination of major policy changes (e.g., shifts toward export promotion, heavy and chemical industries promotion); Korea\u2019s industrial structure, including the role of large enterprises (chaebol); role of government; links between Korea and other countries. Renumbered from IRGN 485. Student may not receive credit for GPEC 485 and IRGN 485.", + "edges_from": [], + "edges_to": [], + "id": 5261, + "label": "GPEC 485", + "title": "The Korean Economy (4)" + }, + { + "dept": "PHYS", + "description": "Research studies under the direction of a faculty member. (S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 5262, + "label": "PHYS 298", + "title": "Directed Study in Physics (1\u201312)" + }, + { + "dept": "GPEC", + "description": "This course examines China\u2019s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949 and contemporary problems and options. Renumbered from IRGN 486. Student may not receive credit for GPEC 486 and IRGN 486.", + "edges_from": [], + "edges_to": [], + "id": 5263, + "label": "GPEC 486", + "title": "Economic and Social Development of China (4)" + }, + { + "dept": "RELI", + "description": "First quarter of a two-quarter sequence of individualized, directed-research courses for majors in which students learn firsthand the processes and practices of scholarly research in the study of religion, culminating in the completion of a thesis and an oral presentation. Students may not receive credit for both RELI 196H and RELI 196AH. ", + "edges_from": [ + 4662 + ], + "edges_to": [], + "id": 5264, + "label": "RELI 196AH", + "title": "Honors Thesis in Religion (4)" + }, + { + "dept": "EDS", + "description": "This course prepares K\u201312 teacher-researchers", + "edges_from": [], + "edges_to": [], + "id": 5265, + "label": "EDS 229", + "title": "Introduction to Educational Resources (4)" + }, + { + "dept": "Jewish", + "description": "Study of a particular period, theme, or literature in Jewish civilization. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5266, + "label": "Jewish Studies 111", + "title": "Topics in Judaic Studies (4)" + }, + { + "dept": "Jewish", + "description": "An introductory survey of Jewish history, literature, and culture from antiquity to contemporary times. Topics include sacred texts; the variety of groups and views of Judaism; the historical and geographical movements of the Jewish people; and the intersection of religion, ethnicity, and culture.", + "edges_from": [], + "edges_to": [], + "id": 5267, + "label": "Jewish Studies 110", + "title": "Introduction to Judaism (4)" + }, + { + "dept": "CSE", + "description": "This course covers advanced topics in computer architecture. It incorporates the latest research and development on topics such as branch prediction, instruction-level parallelism, cache hierarchy design, speculative multithreading, reliable architectures, and power-management techniques. CSE 240A recommended. ", + "edges_from": [], + "edges_to": [], + "id": 5268, + "label": "CSE 240C", + "title": "Advanced Microarchitecture (4)" + }, + { + "dept": "CSE", + "description": "This course covers advanced topics in parallel computer architecture, including on-chip and off-chip interconnection networks, cache coherence, cache consistency, hardware multithreading, multi-core and tiled architectures. It incorporates the latest research and development on parallel architectures and compilation techniques for those architectures. CSE 240A recommended. ", + "edges_from": [], + "edges_to": [], + "id": 5269, + "label": "CSE 240B", + "title": "Parallel Computer Architecture (4)" + }, + { + "dept": "CSE", + "description": "(Formerly CSE 240.) This course will cover fundamental concepts in computer architecture. Topics include instruction set architecture, pipelining, pipeline hazards, bypassing, dynamic scheduling, branch prediction, superscalar issue, memory-hierarchy design, advanced cache architectures, and multiprocessor architecture issues. ", + "edges_from": [ + 1476 + ], + "edges_to": [], + "id": 5270, + "label": "CSE 240A", + "title": "Principles of Computer Architecture (4)" + }, + { + "dept": "BILD", + "description": "Students will isolate bacterial viruses or other organisms from the environment and characterize them by methods including electron microscopy and nucleic acid analysis. The genomic DNA will be purified and sent for sequencing. Restricted to student participants in the Phage Genomics Research program. Renumbered from BIMM 171A. Students may not receive credit for BILD 70 and BIMM 171A. Material lab fees will apply. ", + "edges_from": [], + "edges_to": [], + "id": 5271, + "label": "BILD 70", + "title": "Genomics Research Initiative Lab I (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and media/arts; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112W. Courses may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 5272, + "label": "Linguistics/Heritage Languages (LIHL) 112W", + "title": "Filipino for Filipino Speakers (4)" + }, + { + "dept": "BIEB", + "description": "and the Human Predicament (4)", + "edges_from": [], + "edges_to": [], + "id": 5273, + "label": "BIEB 176", + "title": "Biology of Conservation" + }, + { + "dept": "BIEB", + "description": "This course will teach the principles of ecosystem ecology in terrestrial and marine systems and will use examples from recent research to help students understand how global environmental changes are altering processes from leaf-level ecophysiology to global cycling of carbon, water, and nutrients. Fieldwork may be required. ", + "edges_from": [ + 1987 + ], + "edges_to": [], + "id": 5274, + "label": "BIEB 174", + "title": "Ecosystems and Global Change (4)" + }, + { + "dept": "POLI", + "description": "An introduction to the theoretical concepts in the discipline of political science that are commonly used across various subfields. Each week will introduce the core concept(s) and discuss applications from several, if not all subfields in the department. ", + "edges_from": [], + "edges_to": [], + "id": 5275, + "label": "POLI 200A", + "title": "Foundations of Political Science (4)" + }, + { + "dept": "POLI", + "description": "An overview of the normative and positive issues associated with modern democracies. The appeal and the social, political, and economic arrangements of democracies will be explored. ", + "edges_from": [], + "edges_to": [], + "id": 5276, + "label": "POLI 200B", + "title": "Democracy (4)" + }, + { + "dept": "COMM", + "description": "This course will focus on arguments about cognitive differences between men and women in science. We will review current arguments about essential differences, historical beliefs about gender attributes and cognitive ability, and gender socialization into patterns of learning in school. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5277, + "label": "COMM 114G", + "title": "CSI: Gender and Science (4)" + }, + { + "dept": "COMM", + "description": "Examination of the legal framework of freedom of expression in the United States. Covers fundamentals of First Amendment law studying key cases in historical content. Prior restraint, incitement, obscenity, libel, fighting words, public forum, campaign finance, commercial speech, and hate speech are covered. ", + "edges_from": [ + 1408, + 294, + 151 + ], + "edges_to": [], + "id": 5278, + "label": "COMM 114F", + "title": "CSI: Law, Communication, and Freedom of Expression (4)" + }, + { + "dept": "EDS", + "description": "Second course in a two-course sequence. Provides a theoretical and practical grounding in various pedagogical techniques for teaching in bilingual settings. Course covers principles of bilingualism and bilingual pedagogy; transfer between primary and target languages as appropriate to the language(s) of emphasis. Candidates study methods for teaching primary and target languages in a variety of program models; curriculum/assessment practices; and approaches for interacting with families/communities.\u00a0", + "edges_from": [ + 3129 + ], + "edges_to": [], + "id": 5279, + "label": "EDS 352B", + "title": "Bilingual Instructional Practices II (2)" + }, + { + "dept": "ECON", + "description": "Nonlinear programming, deterministic and stochastic dynamic programming, queuing theory, search models, and inventory models. Credit not allowed for both Econ 172B and Math 171B. ", + "edges_from": [ + 5281, + 1532 + ], + "edges_to": [], + "id": 5280, + "label": "ECON 172B", + "title": "Operations Research B (4)" + }, + { + "dept": "ECON", + "description": "", + "edges_from": [ + 1220, + 3977, + 3978, + 171, + 655, + 1844, + 169, + 794 + ], + "edges_to": [ + 5280 + ], + "id": 5281, + "label": "ECON 172A", + "title": "" + }, + { + "dept": "POLI", + "description": "(Same as IRGN 290) This seminar is an examination of the different approaches to the study of international relations. Issues and research areas will vary each time the course is offered. ", + "edges_from": [], + "edges_to": [], + "id": 5282, + "label": "POLI 248", + "title": "Special Topics in International Relations (4)" + }, + { + "dept": "POLI", + "description": "This course exposes students to contemporary research on international institutions. What leads nations to cede sovereignty? How do international institutions obtain a measure of authority in world affairs? What makes an institution \u201csuccessful\u201d? We\u2019ll also examine institutional design. ", + "edges_from": [], + "edges_to": [], + "id": 5283, + "label": "POLI 244", + "title": "International Institutions (4)" + }, + { + "dept": "POLI", + "description": "A seminar surveying the major theoretical controversies in the study of international political economy. ", + "edges_from": [], + "edges_to": [], + "id": 5284, + "label": "POLI 245", + "title": "International Political Economy (4)" + }, + { + "dept": "POLI", + "description": "A survey of the principal theories and approaches to the study of international relations. ", + "edges_from": [], + "edges_to": [], + "id": 5285, + "label": "POLI 240", + "title": "International Relations Theory (4)" + }, + { + "dept": "POLI", + "description": "This course explores contemporary research on European Union politics from a comparative and international relations perspective, and links this research to broader questions of global governance. ", + "edges_from": [], + "edges_to": [], + "id": 5286, + "label": "POLI 242", + "title": "The European Union and Global Governance (4)" + }, + { + "dept": "POLI", + "description": "A colloquium surveying the major theoretical controversies in the study of international and national security. ", + "edges_from": [], + "edges_to": [], + "id": 5287, + "label": "POLI 243", + "title": "International Security (4)" + }, + { + "dept": "SIOC", + "description": "Building on the knowledge and experience gained from the entire curriculum of the Master\u2019s in Climate Science and Policy (MAS-CSP) program, students will design and present a specific climate science and policy project. May be taken for credit one time for a maximum of ten units. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5288, + "label": "SIOC 299", + "title": "Climate Science and Policy Capstone Project (6\u201310)" + }, + { + "dept": "POLI", + "description": "and Discipline: Political Thought in the Twentieth Century (4)", + "edges_from": [], + "edges_to": [], + "id": 5289, + "label": "POLI 110DA", + "title": "Freedom" + }, + { + "dept": "SIOC", + "description": "Required course for MAS-CSP students will focus on development of MAS Capstone Projects and discussions covering climate science and policy issues, including informal student presentations on political, economic, historical, educational, and natural science issues related to climate science and policy. Letter grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5290, + "label": "SIOC 296", + "title": "Climate Science and Policy Forum (2)" + }, + { + "dept": "SIOC", + "description": "This course explores the interaction between climate science, policy, and the larger culture. S/U grades permitted. ", + "edges_from": [], + "edges_to": [], + "id": 5291, + "label": "SIOC 292", + "title": "Introduction to Climate Science and Policy (4)" + }, + { + "dept": "COGR", + "description": "This reading seminar will consider works by Frankfurt School theorists (Horkheimer, Adorno, Pollock, Lowenthal, Marcuse, Benjamin, Habermas) on mass media, mass culture, idology, art, authority and the individual, and their relevance in the analysis of contemporary capitalism. ", + "edges_from": [], + "edges_to": [], + "id": 5292, + "label": "COGR 238", + "title": "The Frankfurt School on Mass Culture Social Theory (4)" + }, + { + "dept": "COGR", + "description": "Course considers computer games as media, rule systems, technology, and sites of communication. Approaches include hands-on play and reading material from a variety of disciplinary perspectives. Course encompasses both commercial games and the longer, more diverse academic and independent traditions. ", + "edges_from": [], + "edges_to": [], + "id": 5293, + "label": "COGR 239", + "title": "Computer Game Studies (4)" + }, + { + "dept": "COGR", + "description": "Course is designed to introduce graduate students to the disciplinary, intellectual, and artistic genealogies of performance studies that bring together critical work from the fields of anthropology, art history, communication, critical gender studies, ethnic studies, film studies, literature, and theatre studies. ", + "edges_from": [], + "edges_to": [], + "id": 5294, + "label": "COGR 237", + "title": "Performance Theory (4)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 5295, + "label": "PSYC 264A", + "title": "Advanced Topics in Language Processes I (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 5296, + "label": "PSYC 264B", + "title": "Advanced Topics in Language Processes II (1)" + }, + { + "dept": "PSYC", + "description": "Research and discussion on selected topics in language processes. S/U grades only. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 5297, + "label": "PSYC 264C", + "title": "Advanced Topics in Language Processes III (1)" + }, + { + "dept": "LTEU", + "description": "This course focuses on the theme of Faust in European literature from the Renaissance to the present, including works by Marlowe, Goethe, Bulgakov, and Thomas Mann. Concentration on how authors adapted the theme to differing national and historical contexts.", + "edges_from": [], + "edges_to": [], + "id": 5298, + "label": "LTEU 125", + "title": "Faust in European Literature (4)" + }, + { + "dept": "LIGN", + "description": "The student undertakes a program of research and advanced reading in linguistics under the supervision of a faculty member in the Department of Linguistics. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5299, + "label": "LIGN 199H", + "title": "Honors Independent Study in Linguistics (4)" + }, + { + "dept": "PSYC", + "description": "The course examines cognitive development through the school-age period and social and personality development from infancy through early adolescence. It begins with an examination of early neurological, sensory, motor, and perceptual functions and then focuses on issues in linguistic and cognitive development. The class will first discuss general developmental theory and methods and then topics such as attachment, temperament, self-concept, aggression, family relations, play, and peers. Students cannot get credit for PSYC 217 if they have already taken PSYC 217A or 217B. ", + "edges_from": [], + "edges_to": [], + "id": 5300, + "label": "PSYC 217", + "title": "Proseminar in Developmental Psychology (5)" + }, + { + "dept": "PSYC", + "description": "Each year a different topic in visual science is selected for in-depth review and discussion based on current readings. ", + "edges_from": [], + "edges_to": [], + "id": 5301, + "label": "PSYC 212", + "title": "Visual Science (4)" + }, + { + "dept": "PSYC", + "description": "Procedures and Survival in Psychology (4)", + "edges_from": [], + "edges_to": [], + "id": 5302, + "label": "PSYC 213", + "title": "Professional" + }, + { + "dept": "PSYC", + "description": "Covers many of the neuroscience methods available to study human cognition, with emphasis on concepts of data analysis, and comparative assessment of the different methods (along with alternative nonhuman animal approaches), with an eye to pitfalls and interpretational limitations. ", + "edges_from": [], + "edges_to": [], + "id": 5303, + "label": "PSYC 210", + "title": "The Methods of Human Cognitive Neuroscience (5)" + }, + { + "dept": "PSYC", + "description": "Computational models of perception, cognition, behavior, and social interaction formalize psychological theories, and can offer insights into both how people solve challenging everyday problems and how to improve machine performance on these problems. We will consider formalisms for sensory processing, knowledge representation, learning, planning, and decisions, with an emphasis on modeling common problem structures such as statistical learning and probabilistic inference. ", + "edges_from": [], + "edges_to": [], + "id": 5304, + "label": "PSYC 211", + "title": "Proseminar in Computational Models of Mind (5)" + }, + { + "dept": "LTEN", + "description": "This course provides an introduction to the literary production of the population of Mexican origin in the United States. Students will examine a variety of texts dealing with the historical (social, economic, and political) experiences of this heterogeneous population.", + "edges_from": [], + "edges_to": [], + "id": 5305, + "label": "LTEN 29", + "title": "Introduction to Chicano Literature (4)" + }, + { + "dept": "PSYC", + "description": "A survey of basic principles and concepts of cognitive psychology. This course is intended to serve as the basic introduction for first-year students. Basic areas include knowledge, memory, thought, perception, and performance.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5306, + "label": "PSYC 218", + "title": "Proseminar in Cognitive Psychology (5)" + }, + { + "dept": "MATH", + "description": "Analysis of trends and seasonal effects, autoregressive and moving averages", + "edges_from": [], + "edges_to": [], + "id": 5307, + "label": "MATH 181E", + "title": "Mathematical Statistics\u2014Time Series (4)" + }, + { + "dept": "MATH", + "description": "Mathematical Statistics\u2014Nonparametric Statistics (4)", + "edges_from": [], + "edges_to": [], + "id": 5308, + "label": "MATH 181C", + "title": "" + }, + { + "dept": "MGT", + "description": "Advanced topics in business innovation, delivered by lecture, case presentation, and group discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 459 and MGT 221 if the course has the same course subtitle. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5309, + "label": "MGT 459", + "title": "Topics in Innovation (2 or 4)" + }, + { + "dept": "MGT", + "description": "Provides management concepts and tools to enable the more effective design, planning, and control of projects. Includes both the qualitative and quantitative aspects of project management. Students may not earn credit for both MGT 450 and MGT 270. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5310, + "label": "MGT 450", + "title": "Project Management (4)" + }, + { + "dept": "MGT", + "description": "Outlines tools for formulating and evaluating technology strategy, including an introduction to the economics of technical change, models of technological evolution, and models of organizational dynamics and innovation. Provides an understanding of how technology firms gain and sustain competitive advantage. Students may not earn credit for both MGT 451 and MGT 271. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5311, + "label": "MGT 451", + "title": "Technology and Innovation Strategy (4)" + }, + { + "dept": "MGT", + "description": "Provides comprehensive analytical coverage of the new product development process, focusing on the basic tools, methods, and organizational structures used in new product development and management. Students may not earn credit for both MGT 452 and MGT 272. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5312, + "label": "MGT 452", + "title": "New Product Development (4)" + }, + { + "dept": "MGT", + "description": "Describes the systems approach to managing the entire flow of information, materials, and services from raw materials suppliers through factories and warehouses to the end customer, which is the key to productivity and competitiveness of manufacturing and service enterprises. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5313, + "label": "MGT 453", + "title": "Supply Chain Management (4)" + }, + { + "dept": "MGT", + "description": "Introduces how IT will transform health sciences. Highlights how IT and associated disruptive innovations in health-care delivery will enable physicians, patients, and caregivers to cost effectively prevent, diagnose, and monitor health conditions; manage treatment; and facilitate timely communication and intervention. Letter grades only. Students may not earn credit for both MGT 454 and MGT 274. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5314, + "label": "MGT 454", + "title": "Disruptive Technologies for Health Care (4)" + }, + { + "dept": "GPPA", + "description": "The course will introduce students to the world food economy and its drivers. The first part of the course will consider the forces governing food prices and supply. The second part uses quantitative assessment of policy changes. The third part frames future constraints to food security. Renumbered from IRGN 483. Students may not receive credit for GPPA 483 and IRGN 483. Recommended preparation: GPCO 454, knowledge of regression analysis, and STATA.", + "edges_from": [], + "edges_to": [], + "id": 5315, + "label": "GPPA 483", + "title": "Food Security (4)" + }, + { + "dept": "PHIL", + "description": "This group provides training in reading and translating philosophical Latin by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for departmental Latin exam.\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5316, + "label": "PHIL 288", + "title": "Latin Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "Focused examination of specific problems or themes in some area of philosophy. May be taken for credit nine times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5317, + "label": "PHIL 285", + "title": "Seminar on Special Topics (4)" + }, + { + "dept": "PHIL", + "description": "A research group for graduate students engaged in philosophy or history of the biological sciences. The group discusses biological, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ", + "edges_from": [], + "edges_to": [], + "id": 5318, + "label": "PHIL 284", + "title": "Philosophy of Biology Research Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "This group provides training in reading and translating philosophical Greek by having students prepare translations of passages and lead discussions. The group helps train graduate students preparing for Departmental Greek Exam. Can be taken nine times for credit with change of content. ", + "edges_from": [], + "edges_to": [], + "id": 5319, + "label": "PHIL 287", + "title": "Greek Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "A research group for graduate students engaged in philosophy or history of the physical sciences. The group discusses physical, historical, and philosophical articles and books and ongoing research projects. Can be taken nine times for credit with change of content. ", + "edges_from": [], + "edges_to": [], + "id": 5320, + "label": "PHIL 286", + "title": "Philosophy of Physics Reading Group (1\u20132)" + }, + { + "dept": "PHIL", + "description": "of Philosophy Research and Methods (1\u20132)", + "edges_from": [], + "edges_to": [], + "id": 5321, + "label": "PHIL 281", + "title": "History" + }, + { + "dept": "PHIL", + "description": "This course meets weekly to discuss recent books or articles in philosophy of science. The reading is designed both for students doing active research in the field and for those seeking to gain some familiarity with it. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5322, + "label": "PHIL 280", + "title": "Philosophy of Science Topics and Methods (1\u20132)" + }, + { + "dept": "PHIL", + "description": "Weekly or biweekly meetings to discuss recent literature in ethics, broadly construed so as to include ethical theory, normative ethics, jurisprudence, and historical traditions in these fields. The course is suitable for those specializing in ethics and for those seeking some familiarity with the field. Can be taken nine times for credit with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5323, + "label": "PHIL 282", + "title": "Topics and Methods in Ethics (1\u20132)" + }, + { + "dept": "ECON", + "description": "This course presents a selection of applications and advanced topics that build on the material covered in the Econ 109. Game Theory course. ", + "edges_from": [ + 398 + ], + "edges_to": [], + "id": 5324, + "label": "ECON 109T", + "title": "Advanced Topics in Game Theory (2)" + }, + { + "dept": "HIGR", + "description": "Research seminar in ancient history. Selected topics in ancient Greek and Roman history. This is the second course in the IP sequence, which will be devoted to the presentation, discussion, and evaluation of the work in progress.", + "edges_from": [], + "edges_to": [], + "id": 5325, + "label": "HIGR 260B", + "title": "Research Seminar in Ancient History (4)" + }, + { + "dept": "RELI", + "description": "This seminar requires the intensive analysis of critical problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ", + "edges_from": [ + 4662 + ], + "edges_to": [], + "id": 5326, + "label": "RELI 189", + "title": "Seminar in Religion (4)" + }, + { + "dept": "RELI", + "description": "Students in this lecture will investigate important problems in the study of religion or the history of particular religions. May be repeated for credit up to three times when topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 5327, + "label": "RELI 188", + "title": "Special Topics in Religion (4)" + }, + { + "dept": "HIGR", + "description": "An in-depth examination of selected topics in the history of Jewish people and Jewish civilizations in pre-Islamic times.", + "edges_from": [], + "edges_to": [], + "id": 5328, + "label": "HIGR 264", + "title": "Topics in Pre-Islamic Jewish History (4)" + }, + { + "dept": "COMM", + "description": "Specialized study of communication topics, to be determined by the instructor, for any given quarter. May be taken for credit three times. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5329, + "label": "COMM 113T", + "title": "Intermediate Topics in Communication (4)" + }, + { + "dept": "LTSP", + "description": "Early Latino/a-Chicano/a Cultural Production: 1848 to 1960 (4)", + "edges_from": [], + "edges_to": [], + "id": 5330, + "label": "LTSP 150A", + "title": "" + }, + { + "dept": "ECE", + "description": "Engineering Design Project (4)", + "edges_from": [], + "edges_to": [], + "id": 5331, + "label": "ECE 291", + "title": "Industry Sponsored" + }, + { + "dept": "MAE", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 5332, + "label": "MAE 99H", + "title": "Independent Study (1)" + }, + { + "dept": "MUS", + "description": "The symphonic masterworks course will consist of lectures and listening sessions devoted to a detailed discussion of a small number of recognized masterworks (e.g., Mozart, Beethoven, Berlioz, Stravinsky, Ligeti, etc.). ", + "edges_from": [], + "edges_to": [], + "id": 5333, + "label": "MUS 9", + "title": "Symphony (4)" + }, + { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in the regular department curriculum, by special arrangement with a faculty member. May be taken P/NP only. ", + "edges_from": [], + "edges_to": [], + "id": 5334, + "label": "MAE 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "MAE", + "description": "Independent reading or research on a problem by special arrangement with a faculty member. P/NP grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5335, + "label": "MAE 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "MAE", + "description": "Students work in local industry or hospitals under faculty supervision. Units may not be applied toward graduation requirements. Salaried or unsalaried. Number of units determined by enrollment frequency. First quarter up to four units. Subsequent quarters cannot exceed one unit. ", + "edges_from": [], + "edges_to": [], + "id": 5336, + "label": "MAE 197", + "title": "Engineering Internship (1\u20134)" + }, + { + "dept": "MUS", + "description": "An examination and exploration of the art and science of music making. Topics include acoustics, improvisation, composition, and electronic and popular forms. There will be required listening, reading, and creative assignments. No previous musical background required. ", + "edges_from": [], + "edges_to": [], + "id": 5337, + "label": "MUS 5", + "title": "Sound in Time (4)" + }, + { + "dept": "MUS", + "description": "Lectures and listening sessions devoted to the most significant works of music realized through the use of computers and other electronic devices from the middle of this century through the present. ", + "edges_from": [], + "edges_to": [], + "id": 5338, + "label": "MUS 6", + "title": "Electronic Music (4)" + }, + { + "dept": "MUS", + "description": "Exploration of the interactions among music, science, and technology, including the history and current development of science and technology from the perspective of music. ", + "edges_from": [], + "edges_to": [], + "id": 5339, + "label": "MUS 7", + "title": "Music, Science, and Computers (4)" + }, + { + "dept": "VIS", + "description": "Workshop for PhD in Art Practice concentration students cotaught by PhD and MFA faculty offering extensive evaluation and critique of work. Intended to explore issues associated with artistic practice as a form of research in a university setting. Course is only applicable to VA76 and VA77 PhD programs. PhD students with a concentration in Art Practice my take VIS 207 each year until they qualify for candidacy.", + "edges_from": [], + "edges_to": [], + "id": 5340, + "label": "VIS 207", + "title": "Working Practice for Art Practice PhDs (4)" + }, + { + "dept": "VIS", + "description": "Seminar examines the interrelationship between theory and practice and the nature of artistic production as a form of research. ", + "edges_from": [], + "edges_to": [], + "id": 5341, + "label": "VIS 206", + "title": "Seminar in Art Practice Research (4)" + }, + { + "dept": "VIS", + "description": "to Graduate Studies in Art Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 5342, + "label": "VIS 205", + "title": "Introduction" + }, + { + "dept": "VIS", + "description": "Critical evaluation of the methods, practices, and disciplinary commitments of art history, encompassing both revisionist interventions of the late-twentieth century and earlier paradigms, in order to envision new discipline-specific and interdisciplinary directions for the future of art history and visual culture. (Required, PhD)", + "edges_from": [], + "edges_to": [], + "id": 5343, + "label": "VIS 204", + "title": "Rethinking Art History (4)" + }, + { + "dept": "VIS", + "description": "Workshop in which students engage in an extensive evaluation of one another\u2019s ongoing work in preparation for either the First Year Review or MFA Review. Offered every winter. May be taken for credit two times (Required, MFA)", + "edges_from": [], + "edges_to": [], + "id": 5344, + "label": "VIS 203", + "title": "Working Critique (4)" + }, + { + "dept": "VIS", + "description": "A workshop/seminar devoted to a particular materials practice (e.g., media, painting, digital media, etc.) that engages with critical questions arising within that discipline. Content will vary from quarter to quarter. May be taken for credit two times. (Required, MFA)", + "edges_from": [], + "edges_to": [], + "id": 5345, + "label": "VIS 202", + "title": "Art Practice (4)" + }, + { + "dept": "VIS", + "description": "An exploration of a range of issues important on the contemporary critical scene through readings and writing assignments. Topics will vary from year to year. (Required, MFA)", + "edges_from": [], + "edges_to": [], + "id": 5346, + "label": "VIS 201", + "title": "Contemporary Critical Issues (4)" + }, + { + "dept": "VIS", + "description": "This course includes research and discussion of the required thesis for MFA candidates in visual arts. Advancement to candidacy required. A draft of the MFA thesis paper is required to complete this course. (Required, MFA).", + "edges_from": [], + "edges_to": [], + "id": 5347, + "label": "VIS 209", + "title": "Thesis Writing (4)" + }, + { + "dept": "LTFR", + "description": "First course in a three-quarter sequence designed to prepare students for upper-division French courses. The course is taught entirely in French and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. Basic techniques of literary analysis. ", + "edges_from": [ + 4436, + 4437 + ], + "edges_to": [ + 2873 + ], + "id": 5348, + "label": "LTFR 2A", + "title": "Intermediate French I (5)" + }, + { + "dept": "LTFR", + "description": "French III: Composition and Cultural Contexts (4)", + "edges_from": [], + "edges_to": [], + "id": 5349, + "label": "LTFR 2C", + "title": "Intermediate" + }, + { + "dept": "HIEU", + "description": "Examines problems surrounding the transfer of American culture, values, and styles to Europe in the twentieth and twenty-first centuries. Topics may include: consumer society, popular culture, commercial and business practices, \u201cMcDonaldization,\u201d political and military influence, democratization, and resistance to Americanization. Students may not receive credit for both HIEU 117S and HIEU 118.", + "edges_from": [], + "edges_to": [], + "id": 5350, + "label": "HIEU 118", + "title": "Americanization in Europe (4)" + }, + { + "dept": "LTAM", + "description": "Examines the growing Iranian American culture, focusing on developments in Iranian American cinematic and popular culture.", + "edges_from": [], + "edges_to": [], + "id": 5351, + "label": "LTAM 120", + "title": "Iranian American Culture (4)" + }, + { + "dept": "HIEU", + "description": "The development of European society and culture from 1050 to 1400. +", + "edges_from": [], + "edges_to": [], + "id": 5352, + "label": "HIEU 111", + "title": "Europe in the Middle Ages (4)" + }, + { + "dept": "HIEU", + "description": "The development of European society and culture", + "edges_from": [], + "edges_to": [], + "id": 5353, + "label": "HIEU 110", + "title": "The Rise of Europe (4)" + }, + { + "dept": "EDS", + "description": "A yearlong course sequence, which provides an extensive overview of curriculum, design principles appropriate for K\u201312 instruction. Consensus and model building methods will be discussed using case studies of curriculum research and development projects appropriate for various subject areas and grade levels. Participants will design, implement, and evaluate a curriculum project in their own classrooms. ", + "edges_from": [], + "edges_to": [], + "id": 5354, + "label": "EDS 230A-B-C", + "title": "Research in Curriculum Design (4-4-4)" + }, + { + "dept": "HIEU", + "description": "The year 2000 provokes questions about the transformation of time, culture, and society. Taking the year 1000 as a touchstone, this class examines the history of apocalyptic expectations in the Middle Ages through a close scrutiny of both texts and art.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5355, + "label": "HIEU 115", + "title": "The Pursuit of the Millennium (4)" + }, + { + "dept": "HINE", + "description": "The Jews outside their homeland and in pre-Islamic times, concentrating on the Greco-Roman West and the Parthian-Sasanian East. Topics include assimilation and survival; anti-Semitism and missionizing; patterns of organization and autonomy; cultural and religious developments.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5356, + "label": "HINE 103", + "title": "The Jewish Diaspora in Antiquity (4)" + }, + { + "dept": "HINE", + "description": "Jews in Their Homeland in Antiquity (4)", + "edges_from": [], + "edges_to": [], + "id": 5357, + "label": "HINE 102", + "title": "The" + }, + { + "dept": "HINE", + "description": "Based on biblical and nonbiblical sources, a reconstruction of Israelite institutions, beliefs, and practices and their evolution over time.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5358, + "label": "HINE 101", + "title": "The Religion of Ancient Israel (4)" + }, + { + "dept": "HINE", + "description": "The history and literature of ancient Israel c. 1300 to 300 BCE. Reading from the Bible, historical and archaeological surveys, and studies of authorship.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5359, + "label": "HINE 100", + "title": "The Hebrew Bible and History (4)" + }, + { + "dept": "HINE", + "description": "Cross-listed with JUDA 136. This course examines biblical attitudes toward hetero- and homosexuality, rape, incest, bestiality, prostitution, marriage, and adultery in a variety of texts drawn from the Old Testament.", + "edges_from": [], + "edges_to": [], + "id": 5360, + "label": "HINE 104", + "title": "Sex in the Bible (4)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Arabic, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5361, + "label": "LIGN 510", + "title": "Apprentice Teaching of Arabic (1\u20134)" + }, + { + "dept": "LIGN", + "description": "The course, designed for graduate students serving as teaching assistants in Portuguese, includes discussion of teaching theories, techniques and materials, conduct of discussion sessions, and participation in examinations, under the supervision of the instructor in charge of the course. (S/U grades only.) May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5362, + "label": "LIGN 511", + "title": "Apprentice Teaching of Portuguese (1\u20134)" + }, + { + "dept": "LIGN", + "description": "(1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5363, + "label": "LIGN 512", + "title": "Apprentice Teaching of Heritage Korean" + }, + { + "dept": "HINE", + "description": "The peoples, politics, and cultures of Southwest Asia and Egypt from the sixth century BCE to the seventh century CE. The Achemenid Empire, the Ptolemaic and Seleucid kingdoms, the Roman Orient, the Parthian and Sasanian states.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5364, + "label": "HINE 108", + "title": "The Middle East before Islam (4)" + }, + { + "dept": "LIGN", + "description": "Persian (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5365, + "label": "LIGN 514", + "title": "Apprentice Teaching of Heritage" + }, + { + "dept": "LIGN", + "description": "Filipino (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5366, + "label": "LIGN 515", + "title": "Apprentice Teaching of Heritage" + }, + { + "dept": "MUS", + "description": "Advanced instrumental/vocal preparation for senior music majors pursuing honors in performance. Repertoire for a solo recital will be developed under the direction of the appropriate instrumental/vocal faculty member. Special audition required during Welcome Week preceding fall quarter. ", + "edges_from": [ + 1344 + ], + "edges_to": [], + "id": 5367, + "label": "MUS 132R", + "title": "Recital Preparation (4)" + }, + { + "dept": "ECE", + "description": "This course covers modern research topics in sub-100 nm scale, state-of-the-art silicon VLSI devices. Starting with the fundamentals of CMOS scaling to nanometer dimensions, various advanced device and circuit concepts, including RF CMOS, low power CMOS, silicon memory, silicon-on-insulator, SiGe bipolar, strained silicon MOSFET\u2019s, etc. will be taught. The physics of nearballistic transport in an ultimately scaled 10 nm MOSFET will be discussed in light of the recently developed scattering theory. ", + "edges_from": [], + "edges_to": [], + "id": 5368, + "label": "ECE 235", + "title": "Nanometer-Scale VLSI Devices (4)" + }, + { + "dept": "MUS", + "description": "Individual instruction in advanced vocal coaching. Emphasis placed on diction and musical issues. For declared music majors and minors. Students must be simultaneously enrolled in the Vocal Master Class, MUS 32VM. May be taken six times for credit. ", + "edges_from": [ + 1699 + ], + "edges_to": [], + "id": 5369, + "label": "MUS 132C", + "title": "Vocal Coaching (4)" + }, + { + "dept": "VIS", + "description": "This course investigates the multiple realities of art and visual culture in twentieth-century China and explores the ways in which Chinese artists have defined modernity and their tradition against the complex background of China\u2019s history. ", + "edges_from": [], + "edges_to": [], + "id": 5370, + "label": "VIS 127GS", + "title": "Issues in Modern and Contemporary Chinese Art (4)" + }, + { + "dept": "ANSC", + "description": "This course introduces students to the medical anthropology of South Asia. This course will be divided into two parts. First, we will analyze how religious, cultural, political, and economic structures impact health and well-being. Second, we will look at ethnomedicine, that is, how local systems of healing provide alternative ideas of illness and health. Program or materials fees may apply. ", + "edges_from": [ + 96, + 92, + 4234, + 1002, + 3827, + 91, + 5372, + 93, + 95 + ], + "edges_to": [], + "id": 5371, + "label": "ANSC 190GS", + "title": "Medicine and Healing in South Asia (4)" + }, + { + "dept": "ANSC", + "description": "", + "edges_from": [], + "edges_to": [ + 5371 + ], + "id": 5372, + "label": "ANSC 146", + "title": "" + }, + { + "dept": "MATH", + "description": "Fourier series, orthogonal expansions, and eigenvalue problems.", + "edges_from": [], + "edges_to": [], + "id": 5373, + "label": "MATH 110A", + "title": "Introduction to Partial Differential Equations (4)" + }, + { + "dept": "MATH", + "description": "Equations (4)", + "edges_from": [], + "edges_to": [], + "id": 5374, + "label": "MATH 110B", + "title": "Elements of Partial Differential Equations and Integral" + }, + { + "dept": "LTEA", + "description": "Research seminars and research, under the direction of a faculty member. May be taken up to three times for credit. (P/NP grades only)", + "edges_from": [], + "edges_to": [], + "id": 5375, + "label": "LTEA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTEA", + "description": "Tutorial; individual guided reading in areas not normally covered in courses. (P/NP grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5376, + "label": "LTEA 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "MGT", + "description": "Covers cost accumulation and analysis, for both manufacturing", + "edges_from": [], + "edges_to": [], + "id": 5377, + "label": "MGT 133", + "title": "Advanced Cost Accounting (4)" + }, + { + "dept": "MGT", + "description": "Covers the theory and practical", + "edges_from": [], + "edges_to": [], + "id": 5378, + "label": "MGT 135", + "title": "Federal Taxation\u2014Companies (4)" + }, + { + "dept": "MGT", + "description": "Covers theory and practical application of federal income", + "edges_from": [], + "edges_to": [], + "id": 5379, + "label": "MGT 134", + "title": "Federal Taxation\u2014Individuals (4)" + }, + { + "dept": "MGT", + "description": "Develop an understanding of transaction cycles (e.g., sales order and purchase order processing) with a focus on processing steps, internal controls, and data used. Gain hands-on experience developing flowcharts, processing transactions in a manual accounting information system, and analyzing transaction data using Microsoft Excel and other tools. ", + "edges_from": [ + 1958 + ], + "edges_to": [], + "id": 5380, + "label": "MGT 139", + "title": "Accounting Information Systems (4)" + }, + { + "dept": "MGT", + "description": "This course provides an introduction to the role and use of models and modeling in managerial decision-making. Students will gain hands-on experience in evaluating accounting data using Microsoft Excel. Content includes creating data boxes in financial accounting, using multiple sheets with formulas, preparing professional quality financial reports, and creating graphs to interpret business results. Students will also explore the utility of QuickBooks and the functionality for small businesses. ", + "edges_from": [], + "edges_to": [], + "id": 5381, + "label": "MGT 138", + "title": "Information Technology and Accounting (4)" + }, + { + "dept": "GPPS", + "description": "This course examines the political economy of energy in Asia across a number of key themes, including the interaction between the economics and politics of energy markets, the search for energy security through cooperation and competition, the challenges of managing difficult energy policy choices and trade-offs, and the challenges of sustainable energy development. Emphasis will be placed on the oil industry and its pivotal role in global energy use, pricing, and geopolitics. Renumbered from IRGN 473. Students may not receive credit for GPPS 473 and IRGN 473.", + "edges_from": [], + "edges_to": [], + "id": 5382, + "label": "GPPS 473", + "title": "Political Economy of Energy in Asia (4)" + }, + { + "dept": "GPPS", + "description": "This course involves intense engagement with original Chinese sources as a way to explore the evolution of the Chinese Communist Party and the contemporary Chinese economy. Students will be exposed to government, media, and statistical sources. Recommended preparation: At least second-year, college-level proficiency in Mandarin Chinese is expected. Renumbered from IRGN 476. Students may not receive credit for GPPS 476 and IRGN 476.", + "edges_from": [], + "edges_to": [], + "id": 5383, + "label": "GPPS 476", + "title": "Chinese Sources and Methods (4)" + }, + { + "dept": "GPPS", + "description": "Overview of Latin American politics and the \u201crules of the game,\u201d both formal and informal. Key topics include military rule, presidentialism, and clientelism in the region as a whole, with special emphasis on Argentina, Brazil, Chile, and Mexico. Renumbered from IRGN 479. Students may not receive credit for GPPS 479 and IRGN 479.", + "edges_from": [], + "edges_to": [], + "id": 5384, + "label": "GPPS 479", + "title": "Politics and Institutions in Latin America (4)" + }, + { + "dept": "GPPS", + "description": "Examines the domestic and strategic sources of Japan\u2019s foreign policy in the postwar era. Unlike IRGN 460, this course emphasizes Japan\u2019s foreign economic policy in regional and global multilateral organizations, and the major security issues it confronts with its Asian neighbors. Renumbered from IRGN 478. Students may not receive credit for GPPS 478 and IRGN 478.", + "edges_from": [], + "edges_to": [], + "id": 5385, + "label": "GPPS 478", + "title": "Japanese Foreign Policy (4)" + }, + { + "dept": "LTEN", + "description": "New American Fiction\u2014Post-World War II to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 5386, + "label": "LTEN 175A", + "title": "" + }, + { + "dept": "LTEN", + "description": "New American Poetry\u2014Post-World War II to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 5387, + "label": "LTEN 175B", + "title": "" + }, + { + "dept": "FPM", + "description": "An introduction to the history and epidemiology of work-related disease. A review of occupational-related health problems, i.e., heart disease, pneumoconiosis, peripheral neuropathy, sterility, birth defects, psychiatric problems. Emphasis on the occupational history in the diagnosis of job-related disease and disability. Major modalities of prevention and control will be presented and the role of health practitioners, government, management and labor will be reviewed. The course will include guest lecturers, films, videotapes and field visits to local industries and/or clinicians treating occupational diseases. ", + "edges_from": [ + 5389 + ], + "edges_to": [], + "id": 5388, + "label": "FPM 246", + "title": "Occupational/Environmental Health (2)" + }, + { + "dept": "SM", + "description": "", + "edges_from": [], + "edges_to": [ + 5388 + ], + "id": 5389, + "label": "SM 208", + "title": "" + }, + { + "dept": "FPM", + "description": "This seminar is designed to expand the student\u2019s understanding of clinical epidemiology by investigating several major controversial issues, such as treatment of breast cancer, oral hypoglycemic in diabetes, and dietary habits as a risk factor for coronary artery disease. The seminar will address clinical and methodological issues in the epidemiology of various chronic diseases.", + "edges_from": [], + "edges_to": [], + "id": 5390, + "label": "FPM 247", + "title": "Clinical Epidemiology Seminar (2)" + }, + { + "dept": "FPM", + "description": "(Cross-listed with MED 248) Integrated clinical and public health experience with US and Mexican graduate student and faculty teams over three to four days in Baja California, Mexico; emphasis on common clinical and public health problems in underserved populations. Minimal working knowledge of Spanish recommended. May be taken for credit four times. ", + "edges_from": [], + "edges_to": [], + "id": 5391, + "label": "FPM 244", + "title": "Clinical and Public Health Elective, Baja California, Mexico (2)" + }, + { + "dept": "MATS", + "description": "Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment, material-processing-microstructure interaction, materials selection, form and quality control. Extrusion, injection molding, blow molding, compression molding, thermoforming, casting, foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. (Cross-listed with SE 251A.)\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5392, + "label": "MATS 261A", + "title": "Processing of Polymers and Composites (4)" + }, + { + "dept": "MATS", + "description": "Material-science oriented course on polymers and composites. Mechanical properties of polymers; micromechanisms of elastic and plastic deformations, fracture, and fatigue of polymers and composites. (Cross-listed with SE 251B.)\u00a0", + "edges_from": [], + "edges_to": [], + "id": 5393, + "label": "MATS 261B", + "title": "Mechanical Behavior of Polymers and Composites (4)" + }, + { + "dept": "HIUS", + "description": "Examines key periods, events, and processes throughout the twentieth century that shaped the way Americans thought about race. Also examines the historical development of the category of race and racism, as well as how it is lived in everyday life.", + "edges_from": [], + "edges_to": [], + "id": 5394, + "label": "HIUS 126", + "title": "The History of Race in the United States (4)" + }, + { + "dept": "ETHN", + "description": "Independent study to complete an honors thesis under the supervision of a faculty member who serves as thesis adviser. ", + "edges_from": [ + 320, + 321, + 322 + ], + "edges_to": [], + "id": 5395, + "label": "ETHN 196H", + "title": "Honors Thesis\u00a0(4)" + }, + { + "dept": "HIUS", + "description": "A lecture-discussion course utilizing written texts and films to explore major themes in American politics and culture from the Great Depression through the 1990s. Topics will include the wars of America, McCarthyism, the counter-culture of the 1960s, and the transformation of race and gender relations.", + "edges_from": [], + "edges_to": [], + "id": 5396, + "label": "HIUS 122", + "title": "History and Hollywood: America and the Movies since the Great Depression (4)" + }, + { + "dept": "HIUS", + "description": "Topics will include Quaker origins of the American peace movements and examples of opposition to wars in the twentieth century from World Wars I and II, Vietnam, anti-nuclear movements, and intervention in Central America to Iraq.", + "edges_from": [], + "edges_to": [], + "id": 5397, + "label": "HIUS 120", + "title": "Peace Movements in America (4)" + }, + { + "dept": "HIUS", + "description": "This course sketches the shifting experience persons of African descent have had with the law in the United States. Films, cases, articles, and book excerpts are used to convey the complex nature of this four-hundred-year journey.", + "edges_from": [], + "edges_to": [], + "id": 5398, + "label": "HIUS 128", + "title": "African American Legal History (4)" + }, + { + "dept": "CHIN", + "description": "Further continuation course of basic", + "edges_from": [], + "edges_to": [], + "id": 5399, + "label": "CHIN 10CD", + "title": "First Year Chinese\u2014Dialect speakers III (5)" + }, + { + "dept": "CHIN", + "description": "Continuation course of basic Chinese", + "edges_from": [], + "edges_to": [], + "id": 5400, + "label": "CHIN 10CN", + "title": "First Year Chinese\u2014Non-native speakers III (5)" + }, + { + "dept": "CHIN", + "description": "Further continuation course of basic", + "edges_from": [], + "edges_to": [], + "id": 5401, + "label": "CHIN 10CM", + "title": "First Year Chinese\u2014Mandarin speakers III (5)" + }, + { + "dept": "POLI", + "description": "Examination of recent research in political theory: development and presentation of research projects by graduate students, presentation of research by faculty. Third year students present dissertation prospectus; candidates make yearly presentations of dissertation research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5402, + "label": "POLI 285", + "title": "Workshop: Political Theory (4)" + }, + { + "dept": "TDGE", + "description": "This course will use the theatrical context to integrate scientific research about creativity, group dynamics, and related topics. Through a mix of theoretical and experiential classes and assignments, we will explore the intersection of theatre and neuroscience, investigating and expanding the creative mind. ", + "edges_from": [], + "edges_to": [], + "id": 5403, + "label": "TDGE 3", + "title": "Cultivating the Creative Mind (4)" + }, + { + "dept": "CHEM", + "description": "Time-dependent behavior of systems; interaction of matter with light; selection rules. Radiative and nonradiative processes, coherent phenomena, and the density matrices. Instrumentation, measurement, and interpretation. May be coscheduled with CHEM 235. Prior or concurrent enrollment in CHEM 105A recommended. ", + "edges_from": [ + 3481, + 2115, + 571, + 2555 + ], + "edges_to": [], + "id": 5404, + "label": "CHEM 135", + "title": "Molecular Spectroscopy (4)" + }, + { + "dept": "CHEM", + "description": "Foundations of polymeric materials. Topics: structure of polymers; mechanisms of polymer synthesis; characterization methods using calorimetric, mechanical, rheological, and X-ray-based techniques; and electronic, mechanical, and thermodynamic properties. Special classes of polymers: engineering plastics, semiconducting polymers, photoresists, and polymers for medicine. Students may not receive credit for both CENG 134, CHEM 134, or NANO 134. ", + "edges_from": [ + 27, + 596 + ], + "edges_to": [], + "id": 5405, + "label": "CHEM 134", + "title": "Polymeric Materials (4)" + }, + { + "dept": "MATH", + "description": "Independent study and research for the doctoral dissertation. One to three credits will be given for independent study (reading) and one to nine for research. ", + "edges_from": [], + "edges_to": [], + "id": 5406, + "label": "MATH 299", + "title": "Reading and Research (1 to 12)" + }, + { + "dept": "HIEA", + "description": "Examines China\u2019s attempts to manage the movements of people, ideas, and trade across its borders since 1900. How much control do individual countries such as China have over global processes? Special emphasis will be placed on global contexts and the impacts of China\u2019s decision to reintegrate its society and economy with capitalist countries since 1978. Recommended preparation: previous course work on China helpful but not required.", + "edges_from": [], + "edges_to": [], + "id": 5407, + "label": "HIEA 140", + "title": "China since 1978 (4)" + }, + { + "dept": "MATH", + "description": "Various topics in topology. May be taken for credit nine times. ", + "edges_from": [], + "edges_to": [], + "id": 5408, + "label": "MATH 292", + "title": "Seminar in Topology (1)" + }, + { + "dept": "MATH", + "description": "An enrichment program that provides work experience with public/private sector employers and researchers. Under supervision of a faculty adviser, students provide mathematical consultation services. ", + "edges_from": [], + "edges_to": [], + "id": 5409, + "label": "MATH 297", + "title": "Mathematics Graduate Research Internship (2\u20134)" + }, + { + "dept": "MATH", + "description": "A variety of advanced topics and current research in mathematics will be presented by department faculty. (S/U grades only.) May be taken for credit six times. ", + "edges_from": [], + "edges_to": [], + "id": 5410, + "label": "MATH 296", + "title": "Graduate Student Colloquium (1)" + }, + { + "dept": "MATH", + "description": "A variety of topics and current research results in mathematics will be presented by staff members and students under faculty direction.", + "edges_from": [], + "edges_to": [], + "id": 5411, + "label": "MATH 295", + "title": "Special Topics in Mathematics (1 to 4)" + }, + { + "dept": "MATH", + "description": "Introduction to the mathematics of financial models. Hedging, pricing by arbitrage. Discrete and continuous stochastic models. Martingales. Brownian motion, stochastic calculus. Black-Scholes model, adaptations to dividend paying equities, currencies and coupon-paying bonds, interest rate market, foreign exchange models. ", + "edges_from": [ + 1220 + ], + "edges_to": [], + "id": 5412, + "label": "MATH 294", + "title": "The Mathematics of Finance (4)" + }, + { + "dept": "LHCO", + "description": "This course examines principles and applications of strategic management and the change management concepts necessary to effectively apply these principles in healthcare organizations. The course provides a structured, stepwise approach to the strategic management process and includes methods for assessing key features of organizational environments and competitive situations, approaches for developing strategic plans, and processes for insuring the successful implementation of strategy. ", + "edges_from": [], + "edges_to": [], + "id": 5413, + "label": "LHCO 202", + "title": "Strategic Management and Organizational Change (4)" + }, + { + "dept": "LHCO", + "description": "and Managing Information and Information Technologies (4)", + "edges_from": [], + "edges_to": [], + "id": 5414, + "label": "LHCO 203", + "title": "Using" + }, + { + "dept": "LHCO", + "description": "This course studies key management concepts and roles of management and how they apply in successful, dynamic organizations. The course examines competencies of effective managers in developing customer focus, planning, selecting and developing individuals and teams, communicating, managing resources, using technology and being adaptable. Students will be exposed to the theory and process of effective negotiation as well as various teambuilding and conflict resolution strategies in a variety of contexts. ", + "edges_from": [], + "edges_to": [], + "id": 5415, + "label": "LHCO 204", + "title": "Conflict Resolution, Negotiation, and Team Building (2)" + }, + { + "dept": "LHCO", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5416, + "label": "LHCO 206", + "title": "Topics in Financial Management and Decision Making (2)" + }, + { + "dept": "LHCO", + "description": "A critical overview of the tools used to measure outcomes and quality of care, development and use of practical guidelines, advantages and disadvantages of various methods, and the use of such analysis in administrative decision making.\t\t\t\t", + "edges_from": [], + "edges_to": [], + "id": 5417, + "label": "LHCO 209", + "title": "Outcomes and Quality Improvement (4)" + }, + { + "dept": "Linguistics/American", + "description": "Sign Language (LISL) 1DX. Analysis of American Sign Language (2.5)", + "edges_from": [], + "edges_to": [], + "id": 5418, + "label": "Linguistics/American", + "title": "" + }, + { + "dept": "MAE", + "description": "Independent work by graduate students engaged in research and writing theses. MAE graduate students only. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5419, + "label": "MAE 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "MAE", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5420, + "label": "MAE 298", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "MAE", + "description": "Provides field study in industry with faculty supervision. Analysis and problem solving using real world applications. ", + "edges_from": [], + "edges_to": [], + "id": 5421, + "label": "MAE 295", + "title": "Field Study (1\u201312)" + }, + { + "dept": "MAE", + "description": "Independent reading or research on a problem as arranged by a designated faculty member. Must be taken for a letter grade only. ", + "edges_from": [], + "edges_to": [], + "id": 5422, + "label": "MAE 296", + "title": "Independent Study (1\u20134)" + }, + { + "dept": "MAE", + "description": "and Mechanics in Computer Technology (4)", + "edges_from": [], + "edges_to": [], + "id": 5423, + "label": "MAE 291", + "title": "Design" + }, + { + "dept": "MAE", + "description": "Intersection of control theory and fluid mechanics. Applications: transition delay, turbulence mitigation, noise reduction, weather forecasting, shape optimization, and UAV\u2019s (perching). Tractable feedback (Riccati-based) formulations via parallel and parabolic flow assumptions. Regularization of variational (adjoint-based) formulations for MPC and MHE. EnKF and EnVE approaches for forecasting. ", + "edges_from": [ + 1182 + ], + "edges_to": [], + "id": 5424, + "label": "MAE 293", + "title": "Flow Control (4)" + }, + { + "dept": "MAE", + "description": "Introduction to 2-D and 3-D computer-aided design. Design problems may include: ball bearing kinematics, Weibull statistics, nonrepeatable spindle run-out, four bar linkages, beam deflection and vibration, design of magnetic head suspension, hydrodynamic theory of lubrication, air bearings, heat transfer, optical servo, design of ink jet print head. ", + "edges_from": [], + "edges_to": [], + "id": 5425, + "label": "MAE 292", + "title": "Computer-Aided Design and Analysis (4)" + }, + { + "dept": "HINE", + "description": "Explore the ancient sources for the life of Jesus. Students will learn about various modern approaches to reconstructing the historical Jesus and will examine the difficulties inherent in such a task.", + "edges_from": [], + "edges_to": [], + "id": 5426, + "label": "HINE 110", + "title": "Jesus, the Gospels, and History (4)" + }, + { + "dept": "BENG", + "description": "Design Implementation in Biomechanics (3)", + "edges_from": [], + "edges_to": [ + 57 + ], + "id": 5427, + "label": "BENG 119B", + "title": "" + }, + { + "dept": "BENG", + "description": "Development of design project in biomechanics. ", + "edges_from": [ + 55 + ], + "edges_to": [], + "id": 5428, + "label": "BENG 119A", + "title": "Design Development in Biomechanics (3)" + }, + { + "dept": "HIEU", + "description": "This seminar addresses Jewish civic autonomy in the late medieval era, the terms of emancipation in the European states, the politics of Jewish socialists, the costs of assimilation, and the consequences of a successful Zionist state in 1948. Graduate students will be required to submit a more substantial piece of work with in-depth analysis and with an increased number of sources cited. A typical undergraduate paper would be ten pages, whereas a typical graduate paper would require engagement with primary sources, more extensive reading of secondary material, and be about twenty pages. ", + "edges_from": [], + "edges_to": [], + "id": 5429, + "label": "HIEU 176/276", + "title": "Politics in the Jewish Past (4)" + }, + { + "dept": "ECE", + "description": "Automated laboratory based on H-P GPIB controlled", + "edges_from": [], + "edges_to": [], + "id": 5430, + "label": "ECE 145AL-BL-CL", + "title": "Acoustics Laboratory (4-4-4)" + }, + { + "dept": "AUD", + "description": "Clinical evaluation of vestibular function, using techniques such as caloric and rotational electronystagmography and posturography. The interpretation of clinical findings and implications for rehabilitative strategies will be covered. The course will include observation of testing in otology clinic settings. ", + "edges_from": [], + "edges_to": [], + "id": 5431, + "label": "AUD 263", + "title": "Physiological and Behavioral Tests of Vestibular Function (4)" + }, + { + "dept": "AUD", + "description": "Embryology and functional development of the auditory and vestibular systems, from their initial appearance to adult function. Inherited disorders of these two sensory systems are also addressed, including phenotypic description and genetic basis. Genetic counseling and the potential for gene therapy are also discussed. ", + "edges_from": [], + "edges_to": [], + "id": 5432, + "label": "AUD 264", + "title": "Auditory and Vestibular Development and Genetics (3)" + }, + { + "dept": "LATI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5433, + "label": "LATI 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "PHYS", + "description": "This course, designed for graduate students, includes discussion of teaching, techniques and materials necessary to teach physics courses. One meeting per week with course instructors, one meeting per week in an assigned recitation section, problem session, or laboratory section. Students are required to take a total of two units of Physics 500.", + "edges_from": [], + "edges_to": [], + "id": 5434, + "label": "PHYS 500", + "title": "Instruction in Physics Teaching (1\u20134)" + }, + { + "dept": "JAPN", + "description": "Training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ", + "edges_from": [ + 5436 + ], + "edges_to": [ + 5438 + ], + "id": 5435, + "label": "JAPN 135A", + "title": "Japanese for Professional Purposes (4)" + }, + { + "dept": "JAPN", + "description": "", + "edges_from": [], + "edges_to": [ + 5435 + ], + "id": 5436, + "label": "JAPN 20C", + "title": "" + }, + { + "dept": "JAPN", + "description": "Continuation of training in oral and written communication skills for professional settings in Japanese. Broad aspects of cultural issues in Japanese organizations are introduced and comparison of American and Japanese cultural business patterns will be conducted. ", + "edges_from": [ + 5438 + ], + "edges_to": [], + "id": 5437, + "label": "JAPN 135C", + "title": "Japanese for Professional Purposes III (4)" + }, + { + "dept": "JAPN", + "description": "", + "edges_from": [ + 5435 + ], + "edges_to": [ + 5437 + ], + "id": 5438, + "label": "JAPN 135B", + "title": "" + }, + { + "dept": "Jewish", + "description": "This course will study the prophetic and poetic books of the Hebrew Bible (in English), through a literary-historical approach. Topics include: prophecy, social justice, monotheism, suffering, humor, and love. ", + "edges_from": [ + 5440 + ], + "edges_to": [], + "id": 5439, + "label": "Jewish Studies 131", + "title": "Introduction to the Old Testament: The Poetic Books (4)" + }, + { + "dept": "JUDA", + "description": "", + "edges_from": [], + "edges_to": [ + 5439 + ], + "id": 5440, + "label": "JUDA 100A", + "title": "" + }, + { + "dept": "Jewish", + "description": "This course will study the historical books of the Hebrew Bible (in English), Genesis through 2 Kings, through a literary-historical approach: how, when, and why the Hebrew Bible came to be written down, its relationship with known historical facts, and the archaeological record. ", + "edges_from": [], + "edges_to": [], + "id": 5441, + "label": "Jewish Studies 130", + "title": "Introduction to the Old Testament: The Historical Books (4)" + }, + { + "dept": "BILD", + "description": "Course covers two important aspects: (1) interdisciplinary and research-based education and (2) teaching fundamental experimental and computational skills in quantitative studies of living systems. Participation by application only. Material lab fees will apply. ", + "edges_from": [], + "edges_to": [], + "id": 5442, + "label": "BILD 51", + "title": "Quantitative Biology Project Lab (4)" + }, + { + "dept": "COGS", + "description": "Explores tools and processes for innovating novel business concepts to solve problems involving the interaction between humans and technology. Students will work with an interdisciplinary team to understand unmet user needs and to create a value proposition that balances technical feasibility, financial viability, and desirability. ", + "edges_from": [ + 3221, + 1673, + 2804, + 1772, + 1773 + ], + "edges_to": [], + "id": 5443, + "label": "COGS 122", + "title": "Startup Studio (4)" + }, + { + "dept": "TDPW", + "description": "Advanced workshop where students study the full-length play structure and begin work on a long play. Students present their work at various stags of development for group discussion and analysis. May be taken for credit two times. ", + "edges_from": [ + 5445 + ], + "edges_to": [], + "id": 5444, + "label": "TDPW 102", + "title": "Advanced Playwriting (4)" + }, + { + "dept": "TDPW", + "description": "", + "edges_from": [ + 2487 + ], + "edges_to": [ + 5444 + ], + "id": 5445, + "label": "TDPW 101", + "title": "" + }, + { + "dept": "BIEB", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 5446, + "label": "BIEB 194", + "title": "Advanced Topics in Modern Biology: Ecology, Behavior, Evolution (2)" + }, + { + "dept": "HITO", + "description": "A seminar intended for exposing undergraduate students, especially freshmen, to exciting research programs conducted by department faculty. Enrollment is limited. Topic will vary quarter by quarter.", + "edges_from": [], + "edges_to": [], + "id": 5447, + "label": "HITO 87", + "title": "Special Freshman Seminar (1)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students at an intermediate level of proficiency to maintain and improve their Chinese language skills through a combination of classes, language laboratories, exercises, and other language experiences. Renumbered from IRLA 401A-B-C. Students may not get credit for any IRLA 401 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 5448, + "label": "GPLA 401A-B-C", + "title": "Intermediate Chinese Language for Professional Proficiency (4-4-4)" + }, + { + "dept": "LTGM", + "description": "LTGM 2A follows the basic language sequence of the Department of Linguistics and emphasizes the development of reading ability, listening comprehension, and conversational and writing skills. The course includes grammar review and class discussion of reading and audio-visual materials. Specifically, the course prepares students for LIGM 2B and 2C. ", + "edges_from": [ + 5450 + ], + "edges_to": [ + 5452 + ], + "id": 5449, + "label": "LTGM 2A", + "title": "Intermediate German I (5)" + }, + { + "dept": "LTGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5449 + ], + "id": 5450, + "label": "LTGM 1C", + "title": "" + }, + { + "dept": "LTGM", + "description": "A course designed for students who wish to improve their ability to speak and write German. Students will read and discuss a variety of texts and films, and complete the grammar review begun in 2A. 2C emphasizes speaking, writing, and critical thinking, and prepares students for upper-division course work in German. ", + "edges_from": [ + 5452 + ], + "edges_to": [], + "id": 5451, + "label": "LTGM 2C", + "title": "Intermediate German III (4)" + }, + { + "dept": "LTGM", + "description": "", + "edges_from": [ + 5449 + ], + "edges_to": [ + 5451 + ], + "id": 5452, + "label": "LTGM 2B", + "title": "" + }, + { + "dept": "CSE", + "description": "Representation and manipulation of pictorial data. Two-dimensional and three-dimensional transformations, curves, surfaces. Projection, illumination, and shading models. Raster and vector graphic I/O devices; retained-mode and immediate-mode graphics software systems and applications. Students may not receive credit for both Math 155A and CSE 167. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [ + 5456, + 5457, + 5459, + 5460, + 5455 + ], + "id": 5453, + "label": "CSE 167", + "title": "Computer Graphics (4)" + }, + { + "dept": "CSE", + "description": "Principles of image formation, analysis, and representation. Image enhancement, restoration, and segmentation; stochastic image models. Filter design, sampling, Fourier and wavelet transforms. Selected applications in computer graphics and machine vision. ", + "edges_from": [ + 16, + 17, + 573 + ], + "edges_to": [], + "id": 5454, + "label": "CSE 166", + "title": "Image Processing (4)" + }, + { + "dept": "CSE", + "description": "This course focuses on design and evaluation of three-dimensional (3D) user interfaces, devices, and interaction techniques. The course consists of lectures, literature reviews, and programming assignments. Students will be expected to create interaction techniques for several different 3D interaction devices. Program or materials fees may apply. ", + "edges_from": [ + 5453 + ], + "edges_to": [], + "id": 5455, + "label": "CSE 165", + "title": "3D User Interaction (4)" + }, + { + "dept": "CSE", + "description": "Principles and practices of programming graphics processing units (GPUs). GPU architecture and hardware concepts, including memory and threading models. Modern hardware-accelerated graphics pipeline programming. Application of GPU programming to rendering of game graphics, including physical, deferring, and global lighting models. Recommended preparation: Practical Rendering and Computation with Direct3D 11 by Jason Zink, Matt Pettineo, and Jack Hoxley. ", + "edges_from": [ + 5453 + ], + "edges_to": [], + "id": 5456, + "label": "CSE 164", + "title": "GPU Programming (4)" + }, + { + "dept": "CSE", + "description": "Topics include an overview of many aspects of computer graphics, including the four main computer graphics areas of animation, modeling, rendering, and imaging. Programming projects in image and signal processing, geometric modeling, and real-time rendering. ", + "edges_from": [ + 5453 + ], + "edges_to": [], + "id": 5457, + "label": "CSE 163", + "title": "Advanced Computer Graphics (4)" + }, + { + "dept": "CSE", + "description": "Introduction to high performance parallel computing: parallel architecture, algorithms, software, and problem-solving techniques. Areas covered: Flynns\u2019 taxonomy, processor-memory organizations, shared and nonshared memory models: message passing and multithreading, data parallelism; speedup, efficiency and Amdahl\u2019s law, communication and synchronization, isoefficiency and scalability. Assignments given to provide practical experience. ", + "edges_from": [ + 16, + 17 + ], + "edges_to": [], + "id": 5458, + "label": "CSE 160", + "title": "Introduction to Parallel Computing (4)" + }, + { + "dept": "CSE", + "description": "Advanced graphics focusing on the programming techniques involved in computer animation. Algorithms and approaches for both character animation and physically based animation. Particular subjects may include skeletons, skinning, key framing, facial animation, inverse kinematics, locomotion, motion capture, video game animation, particle systems, rigid bodies, clothing, and hair. Recommended preparation: An understanding of linear algebra. ", + "edges_from": [ + 5453 + ], + "edges_to": [], + "id": 5459, + "label": "CSE 169", + "title": "Computer Animation (4)" + }, + { + "dept": "CSE", + "description": "Weekly programming assignments that will cover graphics rendering algorithms. During the course the students will learn about ray tracing, geometry, tessellation, acceleration structures, sampling, filtering, shading models, and advanced topics such as global illumination and programmable graphics hardware. ", + "edges_from": [ + 5453 + ], + "edges_to": [], + "id": 5460, + "label": "CSE 168", + "title": "Computer Graphics II: Rendering (4)" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1BX. ", + "edges_from": [ + 5462, + 5463 + ], + "edges_to": [], + "id": 5461, + "label": "Linguistics/German (LIGM) 1B", + "title": "German Conversation (2.5)" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5985, + 5461 + ], + "id": 5462, + "label": "LIGM 1A", + "title": "" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5985, + 5461 + ], + "id": 5463, + "label": "LIGM 1AX", + "title": "" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1CX. ", + "edges_from": [ + 3371, + 3372 + ], + "edges_to": [], + "id": 5464, + "label": "Linguistics/German (LIGM) 1C", + "title": "German Conversation (2.5)" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in the target language. Emphasis on listening comprehension, speaking, vocabulary building, reading, and culture. Must be taken in conjunction with LIGM 1AX. ", + "edges_from": [], + "edges_to": [], + "id": 5465, + "label": "Linguistics/German (LIGM) 1A", + "title": "German Conversation (2.5)" + }, + { + "dept": "Linguistics/German", + "description": "Small conversation sections taught entirely in German. Emphasis on speaking, reading, writing, and culture. Practice of the language functions needed for successful communication. Must be taken in conjunction with LIGM 1DX. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 5467, + 5468 + ], + "edges_to": [], + "id": 5466, + "label": "Linguistics/German (LIGM) 1D", + "title": "German Conversation (2.5)" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5466, + 5794 + ], + "id": 5467, + "label": "LIGM 1C", + "title": "" + }, + { + "dept": "LIGM", + "description": "", + "edges_from": [], + "edges_to": [ + 5466, + 5794 + ], + "id": 5468, + "label": "LIGM 1CX", + "title": "" + }, + { + "dept": "PHIL", + "description": "A general introduction to the philosophy of religion through the study of classical and/or contemporary texts. Among the issues to be discussed are the existence and nature of God, the problem of evil, the existence of miracles, the relation between reason and revelation, and the nature of religious language. ", + "edges_from": [], + "edges_to": [], + "id": 5469, + "label": "PHIL 185", + "title": "Philosophy of Religion (4)" + }, + { + "dept": "Linguistics/German", + "description": "(2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5470, + "label": "Linguistics/German (LIGM) 11", + "title": "Elementary German Reading" + }, + { + "dept": "LTEU", + "description": "A study of the chief modern Italian prosatori, including D\u2019Annunzio, Calvino, Pavese, and Pasolini. May be taken up to three times for credit as topic vary.", + "edges_from": [], + "edges_to": [], + "id": 5471, + "label": "LTEU 146", + "title": "Studies in Modern Italian Prose (4)" + }, + { + "dept": "LTEU", + "description": "Study of the chief modern Italian poets, including Montale, Ungaretti, and Quasimodo, with attention to long, poetic form and contemporary Italian culture. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5472, + "label": "LTEU 145", + "title": "Studies in Modern Italian Poetry (4)" + }, + { + "dept": "LTEU", + "description": "One or more periods and authors in Italian literature. Texts will be read in English. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5473, + "label": "LTEU 140", + "title": "Italian Literature in Translation (4)" + }, + { + "dept": "PSYC", + "description": "A biweekly seminar series focusing on recent advances in both basic and applied research in social psychology including topics such as interpersonal relationships, emotion, health, social cognition, judgment, and decision making. May be taken for credit twenty-four times. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5474, + "label": "PSYC 274", + "title": "Current Directions in Social Psychology (1)" + }, + { + "dept": "PSYC", + "description": "A weekly seminar series focused on understanding recent advances in any area of cognitive psychology. May be taken for credit twenty-four times. S/U grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5475, + "label": "PSYC 275", + "title": "Current Directions in Cognitive Psychology (1)" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of selected empirical and theoretical topics in social psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5476, + "label": "PSYC 276", + "title": "Selected Topics in Social Psychology (4)" + }, + { + "dept": "PSYC", + "description": "This seminar will span the study of learning and memory from an interdisciplinary neuroscience perspective: the goal will be to gain a broad perspective on memory. The course will also touch on dysfunctions of learning and memory such as in amnesia, mental retardation, aging, and Alzheimer\u2019s disease. The course will end with exciting developments in the field, including the possibility of genetic and pharmacological enhancement of memory and intelligence. ", + "edges_from": [], + "edges_to": [], + "id": 5477, + "label": "PSYC 271", + "title": "Neurobiology of Learning and Memory (4)" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis of selected empirical and theoretical topics in cognitive psychology. The course will focus on areas where notable progress appears to be taking place in contemporary research. ", + "edges_from": [], + "edges_to": [], + "id": 5478, + "label": "PSYC 272", + "title": "Selected Topics in Cognitive Psychology (4)" + }, + { + "dept": "PSYC", + "description": "An in-depth analysis and discussion of selected advanced topics", + "edges_from": [], + "edges_to": [], + "id": 5479, + "label": "PSYC 273", + "title": "Selected Topics in Quantitative Methods in Psychology (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language functions required for advanced oral communication, reading, writing, and cultural understanding in professional contexts. High-level vocabulary and texts; dialect differences and formal language styles (registers). Advanced structural analysis and history of Arabic. ", + "edges_from": [], + "edges_to": [], + "id": 5480, + "label": "Linguistics/Heritage Languages (LIHL) 136", + "title": "Advanced Arabic for Arabic Speakers (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "Instruction stresses language functions required", + "edges_from": [], + "edges_to": [], + "id": 5481, + "label": "Linguistics/Heritage Languages (LIHL) 138", + "title": "Advanced Cantonese for Cantonese Speakers (4)" + }, + { + "dept": "MGT", + "description": "Addresses formulation and implementation of marketing strategy, based on an integrative view of competitive brand strategy over the product life cycle. Provides a framework for developing marketing strategies yielding sustainable competitive advantage based on customer, competitor, industry, and environmental analysis. Students may not earn credit for both MGT 476 and MGT 201. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5482, + "label": "MGT 476", + "title": "Marketing Strategy (4)" + }, + { + "dept": "MGT", + "description": "The course identifies the factors that influence the selection and usage of products and services. Students will be introduced to problems/decisions that include evaluating behavior; understanding the consumers\u2019 decision process, and strategies to create desirable consumer behavior. Students may not earn credit for both MGT 477 and MGT 203. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5483, + "label": "MGT 477", + "title": "Consumer Behavior (4)" + }, + { + "dept": "MGT", + "description": "Methods and applications of qualitative and quantitative marketing research to solve substantive marketing problems. Emphasis on integrating problem formulation, research design, questionnaire construction, and sampling to yield the most valuable information, and on the proper use of statistical methods. Students may not earn credit for both MGT 475 and MGT 202. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5484, + "label": "MGT 475", + "title": "Research for Marketing Decisions (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in differential equations. Topics include: Riemannian geometry, Ricci flow, and geometric evolution. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 2723 + ], + "edges_to": [], + "id": 5485, + "label": "MATH 237B", + "title": "Further Topics in Differential Equations (4)" + }, + { + "dept": "MGT", + "description": "This course differentiates decisions/principles considered when developing an overall communications and promotions strategy. Key decisions include the promotional mix, the design, implementation and evaluation of communications strategies and the thinking required to develop a creative strategy. Students may not earn credit for both MGT 478 and MGT 204. They are course equivalents. ", + "edges_from": [], + "edges_to": [], + "id": 5486, + "label": "MGT 478", + "title": "Marketing Communications (4)" + }, + { + "dept": "MGT", + "description": "This class covers issues in pricing decisions.\u00a0The main emphasis will be on the data and tools required to make successful profitable pricing decisions.\u00a0Students may not earn credit for both MGT 479 and MGT 205. They are course equivalents. ", + "edges_from": [ + 2038 + ], + "edges_to": [], + "id": 5487, + "label": "MGT 479", + "title": "Pricing (4)" + }, + { + "dept": "LTSP", + "description": "Explores the relationships among cultural production, politics, and societal changes in Mexico before the 1910 Revolution, specifically the roles of intellectuals and popular culture in nation-building and modernization. Readings may include didactic literature and historiographic writings, forms of popular discourse, as well as novels and poetry. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5488, + "label": "LTSP 135A", + "title": "Mexican Literature before 1910 (4)" + }, + { + "dept": "LTSP", + "description": "Study of popular novels, movements, traditions, key authors, or major trends in modern Mexican literature. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5489, + "label": "LTSP 135B", + "title": "Modern Mexican Literature (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "(LIIT) 1A. Italian Conversation (2.5)", + "edges_from": [], + "edges_to": [], + "id": 5490, + "label": "Linguistics/Italian", + "title": "" + }, + { + "dept": "MATH", + "description": "An introduction to the basic concepts and techniques of modern cryptography. Classical cryptanalysis. Probabilistic models of plaintext. Monalphabetic and polyalphabetic substitution. The one-time system. Caesar-Vigenere-Playfair-Hill substitutions. The Enigma. Modern-day developments. The Data Encryption Standard. Public key systems. Security aspects of computer networks. Data protection. Electronic mail. Recommended preparation: programming experience. Renumbered from Math 187. Students may not receive credit for both Math 187A and 187. ", + "edges_from": [], + "edges_to": [ + 5492 + ], + "id": 5491, + "label": "MATH 187A", + "title": "Introduction to Cryptography (4)" + }, + { + "dept": "MATH", + "description": "The object of this course is to study modern public key cryptographic systems and cryptanalysis (e.g., RSA, Diffie-Hellman, elliptic curve cryptography, lattice-based cryptography, homomorphic encryption) and the mathematics behind them. We also explore other applications of these computational techniques (e.g., integer factorization and attacks on RSA). Recommended preparation: Familiarity with Python and/or mathematical software (especially SAGE) would be helpful, but it is not required. ", + "edges_from": [ + 169, + 171, + 5491, + 5493, + 573 + ], + "edges_to": [], + "id": 5492, + "label": "MATH 187B", + "title": "Mathematics of Modern Cryptography (4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5492 + ], + "id": 5493, + "label": "MATH 187", + "title": "" + }, + { + "dept": "PHIL", + "description": "Topics may include metaethics (e.g., the semantics, metaphysics, epistemology, and normativity of ethics), consequentialism and deontology, moral psychology (e.g., freedom, responsibility, and weaknesses of will), or substantive moral problems. The approach may be systematic, historical, or both. May be taken for credit six times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5494, + "label": "PHIL 260", + "title": "Ethics (4)" + }, + { + "dept": "ECE", + "description": "Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ", + "edges_from": [ + 794 + ], + "edges_to": [ + 5496 + ], + "id": 5495, + "label": "ECE 158A", + "title": "Data Networks I (4)" + }, + { + "dept": "ECE", + "description": "Layered network architectures, data link control protocols and multiple-access systems, performance analysis. Flow control; prevention of deadlock and throughput degradation. Routing, centralized and decentralized schemes, static dynamic algorithms. Shortest path and minimum average delay algorithms. Comparisons. ", + "edges_from": [ + 5495 + ], + "edges_to": [], + "id": 5496, + "label": "ECE 158B", + "title": "Data Networks II (4)" + }, + { + "dept": "POLI", + "description": "An examination of nationalist politics as practiced by opposition movements and governments in power. Appropriate case studies from around the world will be selected. ", + "edges_from": [], + "edges_to": [], + "id": 5497, + "label": "POLI 136A", + "title": "Nationalism and Politics (4)" + }, + { + "dept": "AWP", + "description": "AWP 2A is the first of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. Students who enroll in AWP 2A are required to enroll in AWP 2B in the subsequent term. Renumbered from ELWR 2A. Students may not receive credit for AWP 2A and ELWR 2A. Students must earn a C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a grade of C or better is not earned, students are placed in AWP 1.", + "edges_from": [], + "edges_to": [ + 5499 + ], + "id": 5498, + "label": "AWP 2A", + "title": "Analytical Writing and Academic English A (4)" + }, + { + "dept": "AWP", + "description": "AWP 2B is the second of a multi-term course designed to offer students who need extra English language support the opportunity to develop their critical thinking and writing abilities over two terms. At the end of AWP 2B, students will produce a portfolio of work that will determine their readiness to enter the college writing programs. Renumbered from ELWR 2B. Students may not receive credit for AWP 2B and ELWR 2B. Students must earn a grade of C or better in AWP 2A-B to satisfy the UC Entry Level Writing Requirement. If a C or better is not earned, students are placed in AWP 1. ", + "edges_from": [ + 5498, + 5500 + ], + "edges_to": [], + "id": 5499, + "label": "AWP 2B", + "title": "Analytical Writing and Academic English B (4)" + }, + { + "dept": "ELWR", + "description": "", + "edges_from": [], + "edges_to": [ + 5499 + ], + "id": 5500, + "label": "ELWR 2A", + "title": "" + }, + { + "dept": "HIGR", + "description": "An introduction to historical scholarship on women and gender, this cross-field course is designed for graduate students from all fields in history as well as from other related disciplines. The course will introduce major themes, debates, and theoretical approaches to women\u2019s and gender history. The content of the course will change from year to year, but will include theoretical texts, historical case studies from different times and places, and primary sources. May be taken for credit two times.", + "edges_from": [], + "edges_to": [], + "id": 5501, + "label": "HIGR 205", + "title": "Historical Scholarship on Women and Gender (4)" + }, + { + "dept": "HIGR", + "description": "Historical topics related to the human body, as a target of regulation, a site for the production of knowledge, the locus of an identity shaped by race, gender, and sexuality, and/or in terms of movement across geopolitical boundaries.", + "edges_from": [], + "edges_to": [], + "id": 5502, + "label": "HIGR 206", + "title": "Histories of the Body (4)" + }, + { + "dept": "HIGR", + "description": "A transdisciplinary and comparative course on the interplay of nationalism, colonialism, and race (as well as class and gender/sexuality) in the nineteenth and twentieth centuries.", + "edges_from": [], + "edges_to": [], + "id": 5503, + "label": "HIGR 207", + "title": "Nationalism, Colonialism, and Race (4)" + }, + { + "dept": "HIGR", + "description": "An introductory graduate course for students in all fields. Themes include cross-field historiography and theory, interdisciplinary approaches to history and historical method. (May be taken twice for credit, if the reading list is significantly different.)", + "edges_from": [], + "edges_to": [], + "id": 5504, + "label": "HIGR 200", + "title": "History and Theory (4)" + }, + { + "dept": "COMM", + "description": "Examine sports as play, performance, competition, an arena where there are politics, culture, power, identity struggles. Establishing the social meanings of sport, we address ethics, race, class, nation, gender, body, science, technology, entertainment industries, commerce, spectatorship, consumption, amateurism, professionalism. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5505, + "label": "COMM 111T", + "title": "CCP: Cultural Politics of Sport (4)" + }, + { + "dept": "COMM", + "description": "Explores performance as a range of aesthetic conventions (theatre, film, performance art) and as a mode of experiencing and conveying cultural identity. Texts include critical writing from anthropology, psychology, linguistics, media studies, as well as film/video, play scripts, live performance. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5506, + "label": "COMM 111P", + "title": "CCP: Performance and Cultural Studies (4)" + }, + { + "dept": "HIGR", + "description": "An introductory graduate course for students in all field groups. The seminar introduces students to useful skills, methods, and techniques for teaching history. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5507, + "label": "HIGR 209", + "title": "Historical Pedagogy (4)" + }, + { + "dept": "COMM", + "description": "Folklore is characterized by particular styles, forms, and settings. Course introduces a range of folklore genres from different cultures, historical periods, oral narrative, material folk arts, dramas, rituals. Study of the relationship between expressive form and social context. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5508, + "label": "COMM 111F", + "title": "CCP: Folklore and Communication (4)" + }, + { + "dept": "COMM", + "description": "An overview of the historical development of popular culture from the early modern period to the present. Also a review of major theories explaining how popular culture reflects and/or affects patterns of social behavior. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5509, + "label": "COMM 111G", + "title": "CCP: Popular Culture (4)" + }, + { + "dept": "COMM", + "description": "This course examines the products of culture industries (e.g., music, television, fashion, food, landscape, architectural design) to analyze, specifically, how culture is consumed and by whom. How are spectators hailed and audiences fostered and shaped? And what is the role of audiences in fostering and shaping cultural forms and products? ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5510, + "label": "COMM 111A", + "title": "CCP: Communication and Cultural Production: Introduction (4)" + }, + { + "dept": "COMM", + "description": "This course offers an introduction to the production of urban space. Cities are produced by sociocultural shifts wrought by migration, technological changes, new forms of production, globalization, and climate change. How is the landscape or built environment of the city shaped by the combined and often contradictory forces of capital, expert knowledge, social movements, and urban dwellers? ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5511, + "label": "COMM 111C", + "title": "CCP: Cities and Space (4)" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 5512, + "label": "Linguistics/Hindi (LIHI) 1DX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "HIAF", + "description": "Directed readings for undergraduates. ", + "edges_from": [], + "edges_to": [], + "id": 5513, + "label": "HIAF 199", + "title": "Independent Study in African History (4)" + }, + { + "dept": "ECE", + "description": "Advanced topics in design practices and methodologies for modern system-on-chip design. Different design alternatives are introduced and analyzed. Advanced design tools are used to design a hardware-software system. Class discussion, participation, and presentations of projects and special topics assignments are emphasized. ", + "edges_from": [ + 5515 + ], + "edges_to": [], + "id": 5514, + "label": "ECE 260C", + "title": "VLSI Advanced Topics (4)" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 5514 + ], + "id": 5515, + "label": "ECE 260B", + "title": "" + }, + { + "dept": "ECE", + "description": "System Algorithms and Architectures (4)", + "edges_from": [], + "edges_to": [], + "id": 5516, + "label": "ECE 260A", + "title": "VLSI Digital" + }, + { + "dept": "HILA", + "description": "The social and political history of twentieth-century Mexico from the outbreak of revolution to the current \u201cwar on drugs.\u201d Highlights include the Zapatista calls for land reform, the muralist movement, and the betrayal of revolutionary ideals by a conservative elite. We will also study the Mexican urban experience and environmental degradation.", + "edges_from": [], + "edges_to": [], + "id": 5517, + "label": "HILA 132D", + "title": "Modern Mexico: From Revolution to Drug War Violence (4)" + }, + { + "dept": "MATH", + "description": "This is the third course in a three-course sequence in probability theory. Topics covered in the sequence include the measure-theoretic foundations of probability theory, independence, the Law of Large Numbers, convergence in distribution, the Central Limit Theorem, conditional expectation, martingales, Markov processes, and Brownian motion. ", + "edges_from": [ + 2563 + ], + "edges_to": [], + "id": 5518, + "label": "MATH 280C", + "title": "Probability Theory III (4)" + }, + { + "dept": "VIS", + "description": "This advanced course provides students with a unique immersive learning experience, based on design studio/atelier methods. This course develops students\u2019 skills in the ideation, planning, and execution of complex individual and collaborative projects, including historical and contextual research, project ideation, planning and management, coordination of skills and responsibilities, iterative execution, and effective presentation. ", + "edges_from": [ + 3840, + 3843, + 4359, + 3694, + 562, + 2170 + ], + "edges_to": [], + "id": 5519, + "label": "VIS 190", + "title": "Design Master Studio (8)" + }, + { + "dept": "VIS", + "description": "Independent reading, research, or creative work under direction of a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5520, + "label": "VIS 199", + "title": "Special Studies in the Visual Arts (4)" + }, + { + "dept": "VIS", + "description": "Directed group study on a topic or in a group field not included in regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5521, + "label": "VIS 198", + "title": "Directed Group Study (2\u20134)" + }, + { + "dept": "HINE", + "description": "A colloquium focusing on the problems and patterns in the emergence of modern Middle Eastern states since 1920. ", + "edges_from": [], + "edges_to": [], + "id": 5522, + "label": "HINE 165/265", + "title": "The Colonial Mandates in the Middle East (4)" + }, + { + "dept": "MATS", + "description": "Elastic waves in continuum; longitudinal and shear waves. Surface waves. Plastic waves; shock waves; Rankine-Hugoniot relations. Method of characteristics, differential and difference form of conservation equations; dynamic plasticity and dynamic fracture. Shock wave reflection and interaction. ", + "edges_from": [ + 447 + ], + "edges_to": [], + "id": 5523, + "label": "MATS 213A", + "title": "Dynamic Behavior of Materials I (4)" + }, + { + "dept": "SIOG", + "description": "Chemical description of the sea; the distribution of chemical species in the world oceans, and their relationships to physical, biological, and geological processes. Renumbered from SIO 260. Students may not receive credit for both SIOG 260 and SIO 260. ", + "edges_from": [], + "edges_to": [], + "id": 5524, + "label": "SIOG 260", + "title": "Marine Chemistry (4)" + }, + { + "dept": "FPM", + "description": "Students will explore an epidemiologic research question by reviewing relevant published literature, and then design and conduct appropriate data analysis using a pre-existing dataset. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [ + 5527 + ], + "id": 5525, + "label": "FPM 259A", + "title": "Applied Epidemiology\u2014Scientific Analysis (4)" + }, + { + "dept": "FPM", + "description": "Students will learn the principles of scientific presentations, for the classroom, and for scientific meetings (both oral and poster presentations). Students will then prepare and deliver presentations based on their project from FPM 259A. May be taken for credit two times. ", + "edges_from": [ + 5527 + ], + "edges_to": [], + "id": 5526, + "label": "FPM 259C", + "title": "Applied Epidemiology\u2014Scientific Presentations (4)" + }, + { + "dept": "FPM", + "description": "", + "edges_from": [ + 5525 + ], + "edges_to": [ + 5526 + ], + "id": 5527, + "label": "FPM 259B", + "title": "" + }, + { + "dept": "MUS", + "description": "Studies Seminar in Critical Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 5528, + "label": "MUS 253", + "title": "Integrative" + }, + { + "dept": "MUS", + "description": "Traces the development of systems thinking and encourages work of a transdisciplinary nature, integrating models, strategies, methods, and tools from natural, human, social, and technological realms. ", + "edges_from": [], + "edges_to": [], + "id": 5529, + "label": "MUS 252", + "title": "Integrative Studies Seminar in Systems Inquiry (4)" + }, + { + "dept": "MUS", + "description": "Studies Seminar in Ethnomusicology (4)", + "edges_from": [], + "edges_to": [], + "id": 5530, + "label": "MUS 251", + "title": "Integrative" + }, + { + "dept": "POLI", + "description": "Introduction to probability and analysis for understanding data in the social world. Students engage in hands-on learning with applied social science problems. Basics of probability, visual display of data, data collection and management, hypothesis testing, and computation. Students may receive credit for only one of the following courses: ECON 5, POLI 5, or POLI 5D.", + "edges_from": [], + "edges_to": [], + "id": 5531, + "label": "POLI 5 or 5D", + "title": "Data Analytics for the Social Sciences (4)" + }, + { + "dept": "Jewish", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. P/NP grades only. May be taken for credit four times. Seminars are open to sophomores, juniors, and seniors on a space available basis.", + "edges_from": [], + "edges_to": [], + "id": 5532, + "label": "Jewish Studies 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "BENG", + "description": "Course given at the discretion of the faculty", + "edges_from": [], + "edges_to": [], + "id": 5533, + "label": "BENG 208", + "title": "Topics in Bioengineering with Lab (4)" + }, + { + "dept": "CSE", + "description": "This course allows students to use what they learned in introductory programming courses to make things happen in the real world. Working in teams, students will first learn to program Arduino-based devices. Teams of students will design a custom device and program it to do their bidding. This course is targeted to freshmen and sophomores in engineering and science disciplines who want to practice applying what they have learned in a programming class and to have the chance to program things other than computers. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 5534, + "label": "CSE 42", + "title": "Building and Programming Electronic Devices (2)" + }, + { + "dept": "HINE", + "description": "An examination of the conflicts, changes, and continuities in the Middle East since 2000. The course includes inspection of the US role in Iraq and the region generally.", + "edges_from": [], + "edges_to": [], + "id": 5535, + "label": "HINE 120", + "title": "The Middle East in the New Century (4)" + }, + { + "dept": "HINE", + "description": "Eastern problems on the example of Turkey and with special attention to collective identities, state-society dynamics, foreign and regional policies, and varieties of modernity.", + "edges_from": [], + "edges_to": [], + "id": 5536, + "label": "HINE 127", + "title": "History of Modern Turkey (4)" + }, + { + "dept": "BENG", + "description": "Course given at the discretion of the faculty on current topics of interest in bioengineering. (F,W,S)", + "edges_from": [], + "edges_to": [], + "id": 5537, + "label": "BENG 207", + "title": "Topics in Bioengineering (4)" + }, + { + "dept": "ECE", + "description": "Image quantization and sampling, image transforms,", + "edges_from": [], + "edges_to": [], + "id": 5538, + "label": "ECE 253", + "title": "Fundamentals of Digital Image Processing (4)" + }, + { + "dept": "HISC", + "description": "This course will explore the evolution of the institutions, ideologies, procedures, standards, and expertise that modern democratic societies have used in applying science to generate and legitimate public policy.", + "edges_from": [], + "edges_to": [], + "id": 5539, + "label": "HISC 180/280", + "title": "Science and Public Policy (4)" + }, + { + "dept": "HILA", + "description": "Recordings of Amazonia\u2019s past before Iberian adventurers searched for El Dorado are scarce. Environmental significance and the continued existence of large fluvial societies, read through the lenses of chroniclers, scientists, missionaries, and colonizers, allows a reconstruction of humankind\u2019s relationship to nature.", + "edges_from": [], + "edges_to": [], + "id": 5540, + "label": "HILA 145", + "title": "People and Nature in Amazonia: An Unwritten History (4)" + }, + { + "dept": "HILA", + "description": "Selected topics in Latin American history. Course may be taken for credit up to three times as topics vary (the course subtitle will be different for each distinct topic). Students who repeat the same topic in HILA 144 will have the duplicate credit removed from their academic record.", + "edges_from": [], + "edges_to": [], + "id": 5541, + "label": "HILA 144", + "title": "Topics in Latin American History (4)" + }, + { + "dept": "Jewish", + "description": "199. Independent Study in Jewish Studies (1-4)", + "edges_from": [], + "edges_to": [], + "id": 5542, + "label": "Jewish Studies", + "title": "" + }, + { + "dept": "MGT", + "description": "Focuses on elements of business law that are essential for the basic management of business operations. Topics include the law of contracts, sales, partnership, corporations, bankruptcy, and securities. Students will also gain knowledge of intellectual property law and dispute resolution. ", + "edges_from": [], + "edges_to": [], + "id": 5543, + "label": "MGT 117", + "title": "Business Law (4)" + }, + { + "dept": "MAE", + "description": "(Cross-listed with Physics 151.) Particle", + "edges_from": [], + "edges_to": [], + "id": 5544, + "label": "MAE 117A", + "title": "Elementary Plasma Physics (4)" + }, + { + "dept": "MGT", + "description": "Will examine the advantages and complications of the multinational organization with emphasis on translating marketing, financing, and operating plans in light of geographical, cultural, and legal differences across the globe. Will also cover organizational considerations for transglobal management. ", + "edges_from": [ + 2088, + 354, + 2878 + ], + "edges_to": [], + "id": 5545, + "label": "MGT 112", + "title": "Global Business Strategy (4)" + }, + { + "dept": "ESYS", + "description": "Individually guided readings or projects in the area of environmental systems. #EndEditable", + "edges_from": [], + "edges_to": [], + "id": 5546, + "label": "ESYS 199", + "title": "Independent Study (2-4)" + }, + { + "dept": "GPPS", + "description": "This course investigates how the public forms opinions about foreign policy and the various means, both direct and indirect, through which public opinion can influence the policy-making process. We consider such issues as: How does the public learn about foreign policy? Do they care about it? If so, under what circumstances will political leaders be responsive to the public\u2019s preferences? Do politics really stop at the water\u2019s edge? Should public opinion have a role in foreign policy? May not receive credit for GPPS 451 and the IRGN 490 with the same course title.", + "edges_from": [], + "edges_to": [], + "id": 5547, + "label": "GPPS 451", + "title": "Public Opinion and Foreign Policy (4)" + }, + { + "dept": "EDS", + "description": "Introduction to Teaching Science (2)", + "edges_from": [], + "edges_to": [], + "id": 5548, + "label": "EDS 31/Chem 96", + "title": "" + }, + { + "dept": "GPPS", + "description": "This course investigates both the risks and the institutional and political underpinnings of financial deepening and financial repression in China. Students will keep track of the latest financial developments in China and learn to predict which will have consequences for the future evolution of the Chinese financial system. Renumbered from IRGN 455. Students may not receive credit for GPPS 455 and IRGN 455.", + "edges_from": [], + "edges_to": [], + "id": 5549, + "label": "GPPS 455", + "title": "Financing the Chinese Miracle (4)" + }, + { + "dept": "GPPS", + "description": "Issues to be actively debated include the collective defense of democracy, coping with revolutionary change, counter-narcotics, anti-corruption, international finance, trade, and US-Mexican and US-Brazilian relations. In each case, students analyze the strengths and weaknesses of current US policy and advocate alternative options. Renumbered from IRGN 454. Students may not receive credit for GPPS 454 and IRGN 454.", + "edges_from": [], + "edges_to": [], + "id": 5550, + "label": "GPPS 454", + "title": "Current Issues in US-Latin American Relations (4)" + }, + { + "dept": "GPPS", + "description": "Introduction to elements of program design and evaluation. Examines principles and guidelines used in creating a program and evaluating its success or failure. International case studies are explored. Students have the opportunity to develop their own program and evaluate projects. Renumbered from IRGN 456. Students may not receive credit for GPPS 456 and IRGN 456.", + "edges_from": [], + "edges_to": [], + "id": 5551, + "label": "GPPS 456", + "title": "Program Design and Evaluation (4)" + }, + { + "dept": "HITO", + "description": "Sources for reconstructing ancient history present special challenges. Introduce and examine critically some basic myths and chronicles of the eastern Mediterranean and ancient Near East and assess the challenges to today\u2019s historian in reconstructing these histories.", + "edges_from": [], + "edges_to": [], + "id": 5552, + "label": "HITO 115S", + "title": "Myth, History, and Archaeology (4)" + }, + { + "dept": "HIUS", + "description": "United States in the Twentieth Century, 1945 to the Present (4)", + "edges_from": [], + "edges_to": [], + "id": 5553, + "label": "HIUS 142B", + "title": "" + }, + { + "dept": "HIUS", + "description": "United States in the Twentieth Century, 1900\u20131945 (4)", + "edges_from": [], + "edges_to": [], + "id": 5554, + "label": "HIUS 142A", + "title": "" + }, + { + "dept": "HINE", + "description": "Examines the contacts of the late Ottoman", + "edges_from": [], + "edges_to": [], + "id": 5555, + "label": "HINE 116", + "title": "The Middle East in the Age of European Empires (1798\u20131914) (4)" + }, + { + "dept": "CSE", + "description": "This course provides an introduction to bioinformatics techniques for analyzing and interpreting human genomes. Topics covered include an introduction to medical and population genetics, ancestry, finding and interpreting disease-causing variants, genome-wide association studies, genetic risk prediction, analyzing next-generation sequencing data, how to scale current genomics techniques to analyze hundreds of thousands of genomes, and the social impact of the personal genomics revolution. Programming experience, familiarity with the UNIX command line, and a basic course in probability and statistics are strongly recommended. Students may not receive credit for CSE 284 and CSE 291 (E00) taught winter 2017 with the same subtitle. ", + "edges_from": [], + "edges_to": [], + "id": 5556, + "label": "CSE 284", + "title": "Personal Genomics for Bioinformaticians (4)" + }, + { + "dept": "ANTH", + "description": "This seminar will review a series of current or recent significant debates in anthropology. The debates will be examined in the light of their substantive, theoretical, and epistemological implications, with some attention to the rhetorical elements of the arguments themselves. ", + "edges_from": [ + 5558 + ], + "edges_to": [], + "id": 5557, + "label": "ANTH 274", + "title": "Debates in Anthropology (4)" + }, + { + "dept": "ANGR", + "description": "", + "edges_from": [], + "edges_to": [ + 5557 + ], + "id": 5558, + "label": "ANGR 274", + "title": "" + }, + { + "dept": "ETHN", + "description": "This course provides an introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization. In addition to a wide-ranging look at the complex foundations of systems of representing Indians and Indianness, the course includes a study of a specific art form and history of a specific Native American community that will allow the class to create new approaches to designing a museum exhibition. May be coscheduled with ETHN 114A.", + "edges_from": [], + "edges_to": [ + 5560 + ], + "id": 5559, + "label": "ETHN 214A", + "title": "Representing Native America (4)" + }, + { + "dept": "ETHN", + "description": "This course follows the introduction to the history and theory of museum representation of American Indians in order to explore its relation to colonialism and decolonization (part one). Students will develop the proposals they completed in part one of the course, finishing with curatorial briefs for an exhibition of Native American art with a partner museum incorporating new and decolonizing approaches to representation. May be coscheduled with ETHN 114B. ", + "edges_from": [ + 5559 + ], + "edges_to": [], + "id": 5560, + "label": "ETHN 214B", + "title": "Representing Native America: Exhibition Design (4)" + }, + { + "dept": "COMM", + "description": "Using classic and modern texts, the course explores fundamental questions of law and political theory: What are rights and where do they come from? What is the balance between freedom and equality, between individual and common goods? These theoretical explorations are then oriented to specifically communication concerns: What is the relationship between privacy and personhood? Between free speech and democracy? Between intellectual property and efficient markets? ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5561, + "label": "COMM 114M CSI: Communication and the Law (4)", + "title": "" + }, + { + "dept": "PHYS", + "description": "Transport phenomena; kinetic theory and the Chapman-Enskog method; hydrodynamic theory; nonlinear effects and the mode coupling method. Stochastic processes; Langevin and Fokker-Planck equation; fluctuation-dissipation relation; multiplicative processes; dynamic field theory; Martin-Siggia-Rose formalism; dynamical scaling theory. ", + "edges_from": [ + 2773 + ], + "edges_to": [], + "id": 5562, + "label": "PHYS 210B", + "title": "Nonequilibrium Statistical Mechanics (4)" + }, + { + "dept": "HIUS", + "description": "An overview of the social and political developments that polarized American society in the tumultuous decade of the 1960s. Themes include the social impact of the postwar baby boom, the domestic and foreign policy implications of the Cold War; the evolution of the civil rights and women\u2019s movements; and the transformation of American popular culture.", + "edges_from": [], + "edges_to": [], + "id": 5563, + "label": "HIUS 149", + "title": "The United States in the 1960s (4)" + }, + { + "dept": "Linguistics/Arabic", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. This course is taught entirely in Arabic. Must be taken in conjunction with LIAB 1D. Successful completion of LIAB 1D and 1DX satisfies the requirement for language proficiency in Revelle and Eleanor Roosevelt Colleges. ", + "edges_from": [ + 1745, + 1746 + ], + "edges_to": [], + "id": 5564, + "label": "Linguistics/Arabic (LIAB) 1DX", + "title": "Analysis of Arabic (2.5)" + }, + { + "dept": "HIUS", + "description": "Selected topics in US history. Course may be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5565, + "label": "HIUS 144", + "title": "Topics in US History (4)" + }, + { + "dept": "HIUS", + "description": "This course will examine the economic, social, and political changes underway in the United States from 1917 to 1945. Topics will include the 1920s, the Great Depression, the New Deal and the consequences of two World Wars.", + "edges_from": [], + "edges_to": [], + "id": 5566, + "label": "HIUS 145", + "title": "From New Era to New Deal (4)" + }, + { + "dept": "HIUS", + "description": "Examining the history of urban riots in the United States since the late nineteenth century. Exploring how different groups of Americans have constructed competing notions of race, gender, labor, and national belonging by participating in street violence.", + "edges_from": [], + "edges_to": [], + "id": 5567, + "label": "HIUS 146", + "title": "Race, Riots, and Violence in the U.S. (4)" + }, + { + "dept": "HIUS", + "description": "An examination of urban and regional planning as well as piecemeal change in the built environment. Topics include urban and suburban housing, work environments, public spaces, transportation and utility infrastructures, utopianism.", + "edges_from": [], + "edges_to": [], + "id": 5568, + "label": "HIUS 143", + "title": "The Built Environment in the Twentieth Century (4)" + }, + { + "dept": "RELI", + "description": "This course explores religion as a system of bodily practices, rather than one of tenets or beliefs. How do day-to-day activities as well as significant rituals express and inform people\u2019s religious lives? Why is doctrine an insufficient basis for understanding religion? May be taken up to three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 5569, + "label": "RELI 143", + "title": "Topics in Performing Religion (4)" + }, + { + "dept": "ANSC", + "description": "Interdisciplinary discussion that outlines the structure and functioning of the contemporary human rights regime, and then delves into the relationship between selected human rights protections\u2014against genocide, torture, enslavement, political persecution, etc.\u2014and their violation, from the early Cold War to the present. Students may not receive credit for both ANSC 140 and HMNR 101. ", + "edges_from": [], + "edges_to": [], + "id": 5570, + "label": "ANSC 140", + "title": "Human Rights II: Contemporary Issues (4)" + }, + { + "dept": "NEU", + "description": "Issues and Dilemmas in Clinical Trials (2)", + "edges_from": [], + "edges_to": [], + "id": 5571, + "label": "NEU 285", + "title": "Clinical Trails:" + }, + { + "dept": "NEU", + "description": "This intensive writing course offers graduate students in the neurosciences the opportunity to propose and defend an original research project. Students are required to select a research problem in the neurosciences and propose and experimental approach for solving it. ", + "edges_from": [], + "edges_to": [], + "id": 5572, + "label": "NEU 280", + "title": "Minor Proposition (4)" + }, + { + "dept": "RELI", + "description": "Topical studies in the religious beliefs, practices, and institutions of pre-Christian Europe and near East. May be repeated for credit up to three times when topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 5573, + "label": "RELI 146", + "title": "Topics in the Religions of Antiquity (4)" + }, + { + "dept": "CHEM", + "description": "A chemical perspective of the origin and evolution of the biogeochemical systems of stars, elements, and planets through time. The chemical evolution of the earth, its atmosphere, and oceans, and their historical records leading to early life are discussed. The content includes search techniques for chemical traces of life on other planets. ", + "edges_from": [ + 594, + 596 + ], + "edges_to": [], + "id": 5574, + "label": "CHEM 111", + "title": "Origins of Life and the Universe (4)" + }, + { + "dept": "CHEM", + "description": "(4)", + "edges_from": [], + "edges_to": [], + "id": 5575, + "label": "CHEM 113", + "title": "Physical Chemistry of Biological Macromolecules" + }, + { + "dept": "HIEA", + "description": "Introduction to material culture in China from a historical perspective. Consider Chinese primary sources (including both historical texts and objects) from the point of view of the new interdisciplinary field of material culture studies.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5576, + "label": "HIEA 128", + "title": "History of Material Culture in China (4)" + }, + { + "dept": "RELI", + "description": "This course will look at the relationship between information communication technologies (ICTs) and religion and how they have intersected or diverged in the course of history. We will look at both older and newer media, such as telegraph, radio, television, cassette tapes, Internet and satellite, and how they have been used by groups like Evangelical, Catholic, or Islamist movements in proliferation and transformation of ideas, rituals, ideologies, values, and diverse forms of sociability. ", + "edges_from": [], + "edges_to": [], + "id": 5577, + "label": "RELI 145", + "title": "Communication, Technology, and Religion (4)" + }, + { + "dept": "CHEM", + "description": "A discussion of the chemistry of representative enzyme catalyzed reactions", + "edges_from": [], + "edges_to": [], + "id": 5578, + "label": "CHEM 116", + "title": "Chemistry of Enzyme Catalyzed Reactions (4)" + }, + { + "dept": "LTSP", + "description": "Major Spanish literary works of the Middle Ages and Renaissance as seen against the historical and intellectual background of this period. May be taken for credit three times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5579, + "label": "LTSP 100", + "title": "Major Works of the Middle Ages (4)" + }, + { + "dept": "CHEM", + "description": "A survey of the biochemical action of drugs and toxins as well as their", + "edges_from": [], + "edges_to": [], + "id": 5580, + "label": "CHEM 118", + "title": "Pharmacology and Toxicology (4)" + }, + { + "dept": "HIEA", + "description": "Silk Road in Chinese and Japanese History (4)", + "edges_from": [], + "edges_to": [], + "id": 5581, + "label": "HIEA 126", + "title": "The" + }, + { + "dept": "ANSC", + "description": "This course addresses: 1) Diversity among traditional Native American cultures with respect to social organization, religion, environmental adaptation, subsistence, and reaction to colonial conquest and domination; and, 2) Contemporary social issues including tribal sovereignty, religious freedom, health, education, gambling, and repatriation of artifacts/remains. ", + "edges_from": [], + "edges_to": [], + "id": 5582, + "label": "ANSC 145", + "title": "Indigenous Peoples of North America (4)" + }, + { + "dept": "HIEA", + "description": "Chinese Philosophy and Culture (4)", + "edges_from": [], + "edges_to": [], + "id": 5583, + "label": "HIEA 120", + "title": "Classical" + }, + { + "dept": "HIEA", + "description": "This course covers the period from the sixth century to the thirteenth century, the time of the glorious T\u2019angand Sung dynasties. We focus on the \u201cmedieval revolution\u201d that changed the political, economic, and social life of the empire. As much as possible, we study these changes from the eyes of the people who lived throughout them\u2014aristocrats, peasants, soldiers, merchants, women.", + "edges_from": [], + "edges_to": [], + "id": 5584, + "label": "HIEA 121", + "title": "Medieval Chinese Culture and Society (4)" + }, + { + "dept": "AAS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to 15-20 students. Enrollment priority will be given to freshmen. Seminars are open to sophomores, juniors and seniors on a space available basis. P/NP grades only. May be taken for credit four times.", + "edges_from": [], + "edges_to": [], + "id": 5585, + "label": "AAS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "HIEA", + "description": "Ming history from its beginnings under Mongol rule until its fall to rebels and the Manchus. We study government and society under each of the sixteen emperors, and major events like the Zheng He voyages and the first Sino-Japanese War. Recommended preparation: HILD 11.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5586, + "label": "HIEA 123", + "title": "China under the Ming Dynasty (1368\u20131644) (4)" + }, + { + "dept": "HIEU", + "description": "This course examines Constantinople in its imperial period (Byzantine and Ottoman) when it served as the political, cultural, economic, and religious center of empire. We examine continuity and change in areas such as urban space, demography, institutions, and art and architecture. Students must apply and be accepted into the Global Seminar Program.", + "edges_from": [], + "edges_to": [], + "id": 5587, + "label": "HIEU 106GS", + "title": "Constantinople: Imperial Capital (4)" + }, + { + "dept": "HIEU", + "description": "An analysis of European history since the end of the Second World War. Focus is on political, social, economic, and cultural developments within European societies as well as on Europe\u2019s relationship with the wider world (the Cold War, decolonization).", + "edges_from": [], + "edges_to": [], + "id": 5588, + "label": "HIEU 128", + "title": "Europe since 1945 (4)" + }, + { + "dept": "LHCO", + "description": "The survey course introduces students to the relationship of law to health care, including liability, government regulation, financial and ethical issues, contracting, and negotiation and dispute resolution. The course will incorporate the most current trends related to health law and feature guest speakers on relevant topics. ", + "edges_from": [], + "edges_to": [], + "id": 5589, + "label": "LHCO 220", + "title": "Topics in Health Law (2)" + }, + { + "dept": "LTCO", + "description": "Contemporary theories of the significance of literary form. The seminar will concentrate on major interpretive approaches drawn from several areas of literary, cultural, and political analysis, including Marxist theory, feminism, psychoanalytic theory, postcolonial studies, LGBT studies, diaspora studies, and others. The particular focus and approach may vary. May be taken for credit up to three times as topics vary. Restricted to major code LT77 or consent of instructor and department. Nongraduate students may enroll with consent of instructor.", + "edges_from": [], + "edges_to": [], + "id": 5590, + "label": "LTCO 201", + "title": "Theories and Methods of Literary Analysis (4)" + }, + { + "dept": "SE", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. ", + "edges_from": [], + "edges_to": [], + "id": 5591, + "label": "SE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "LIGN", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5592, + "label": "LIGN 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "ECE", + "description": "Design of power amplifiers for mobile terminals and base-stations, with emphasis on high linearity and efficiency. After a discussion of classical designs (Class A, AB, B, C, D, E, F, and S), linearization procedures are presented and composite architectures (envelope tracking, EER, and Doherty) are covered. Familiarity with basic microwave design and communication system architecture is assumed. (Recommended prerequisites: ECE 166.) ", + "edges_from": [ + 2302 + ], + "edges_to": [], + "id": 5593, + "label": "ECE 265C", + "title": "Power Amplifiers for Wireless Communications (4)" + }, + { + "dept": "CENG", + "description": "Introduction to nanomedicine; diffusion and", + "edges_from": [], + "edges_to": [], + "id": 5594, + "label": "CENG 207", + "title": "Nanomedicine (4)" + }, + { + "dept": "VIS", + "description": "These lecture courses are on topics of special interest to visiting and permanent faculty. Topics vary from term to term and with instructor and many will not be repeated. These courses fulfill upper-division distribution requirements. As the courses under this heading will be offered less frequently than those of the regular curriculum, students are urged to check with the visual arts department academic advising office for availability and descriptions of these supplementary courses. Like the courses listed under VIS 129, below, the letters following the course number designate the general area in which the courses fall. Students may take courses with the same number but of different content, for a total of three times for credit. Recommended preparation: courses in art history (VIS 113AN\u2013129F).", + "edges_from": [], + "edges_to": [], + "id": 5595, + "label": "VIS 128A\u2013E", + "title": "Topics in Art History and Theory (4)" + }, + { + "dept": "CENG", + "description": "Basic engineering principles of nanofabrication.", + "edges_from": [], + "edges_to": [], + "id": 5596, + "label": "CENG 208", + "title": "Nanofabrication (4)" + }, + { + "dept": "NEU", + "description": "This course will cover \u201cethical\u201d issues in academia, including dishonesty, plagiarism, attribution, sexual misconduct, etc. We will also discuss \u201csurvival\u201d issues, including job hunting, grant preparation, journal reviews, writing letters of recommendation, mentoring, etc. (W)", + "edges_from": [], + "edges_to": [], + "id": 5597, + "label": "NEU 241", + "title": "Ethics and Survival Skills in Academia (3)" + }, + { + "dept": "NEU", + "description": "Psychological processes including attention, perception, and memory will be studied in connection with event-related potentials of the human brain. The interrelations among psychological and physiological events will be explored in order to arrive at unified concepts of human information processing. ", + "edges_from": [ + 5599 + ], + "edges_to": [], + "id": 5598, + "label": "NEU 243", + "title": "Physiological Basis of Human Information (2)" + }, + { + "dept": "NEU", + "description": "", + "edges_from": [], + "edges_to": [ + 5598 + ], + "id": 5599, + "label": "NEU 238", + "title": "" + }, + { + "dept": "CSE", + "description": "Companion course to CSE 4GS where theory is applied and lab experiments", + "edges_from": [], + "edges_to": [], + "id": 5600, + "label": "CSE 6GS", + "title": "Mathematical Beauty in Rome Lab (4)" + }, + { + "dept": "CHEM", + "description": "Continuation of CHEM 43A, 143A, 43AM, and 143AM, emphasizing synthetic methods of organic chemistry. Enrollment is limited to majors in the Department of Chemistry and Biochemistry unless space is available. A materials fee is required. ", + "edges_from": [ + 2552, + 1512, + 2553, + 2364, + 2551 + ], + "edges_to": [ + 5603 + ], + "id": 5601, + "label": "CHEM 143B", + "title": "Organic Chemistry Laboratory (4)" + }, + { + "dept": "CHEM", + "description": "Identification of unknown organic compounds by a combination of chemical and physical techniques. This course is intended for chemistry majors only (CH25, CH28, CH31, CH32, CH33, CH34, CH35, CH36, CH37). Program or materials fees may apply. ", + "edges_from": [ + 2552, + 2553, + 2364, + 1512, + 2551 + ], + "edges_to": [], + "id": 5602, + "label": "CHEM 143C", + "title": "Organic Chemistry Laboratory (5)" + }, + { + "dept": "CHEM", + "description": "Advanced organic synthesis. Relationships between molecular structure and reactivity using modern synthetic methods and advanced instrumentation. Stresses importance of molecular design, optimized reaction conditions for development of practically useful synthesis, and problem-solving skills. A materials fee is required. ", + "edges_from": [ + 2928, + 2929, + 2930, + 1990, + 5601 + ], + "edges_to": [], + "id": 5603, + "label": "CHEM 143D", + "title": "Molecular Design and Synthesis (4)" + }, + { + "dept": "MATH", + "description": "A continuation of recursion theory, set theory, proof theory, model theory. Turing machines. Undecidability of arithmetic and predicate logic. Proof by induction and definition by recursion. Cardinal and ordinal numbers. Completeness and compactness theorems for propositional and predicate calculi. ", + "edges_from": [ + 3574 + ], + "edges_to": [], + "id": 5604, + "label": "MATH 160B", + "title": "Elementary Mathematical Logic II (4)" + }, + { + "dept": "ANAR", + "description": "The archaeological field and laboratory class will take place at Moquegua, Peru. It is an introduction to the research design of interdisciplinary projects, the technique of data collections, the methods of excavation and postexcavation lab work. Course materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 5605, + "label": "ANAR 119S", + "title": "Archaeological Field and Lab Class (8)" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with background in", + "edges_from": [], + "edges_to": [], + "id": 5606, + "label": "CHIN 100BM", + "title": "Third Year Chinese\u2014Mandarin speakers II (4)" + }, + { + "dept": "CHIN", + "description": "Intermediate course of Chinese for students with no background.", + "edges_from": [], + "edges_to": [], + "id": 5607, + "label": "CHIN 100BN", + "title": "Third Year Chinese\u2014Non-native speakers II (4)" + }, + { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the nineteenth century: world economy, nation-state building, agrarian processes, incipient industrialization, political and cultural thought, and social structure. Requirements will vary for undergraduate, MA, and PhD students. Graduate students are required to submit an additional research paper. ", + "edges_from": [], + "edges_to": [], + "id": 5608, + "label": "HILA 168/268", + "title": "Scholarship on Latin American History in the Nineteenth Century (4)" + }, + { + "dept": "BILD", + "description": "An introduction to all aspects of the AIDS epidemic. Topics will include the epidemiology, biology, and clinical aspects of HIV infection; HIV testing; education and approaches to therapy; and the social, political, and legal impacts of AIDS on the individual and society. This course is designed for nonbiology students and does not satisfy a lower-division requirement for any biology major. Open to nonbiology majors only. Note: Students may not receive credit for BILD 36 after receiving credit for BICD 136.", + "edges_from": [], + "edges_to": [], + "id": 5609, + "label": "BILD 36", + "title": "AIDS Science and Society (4)" + }, + { + "dept": "BILD", + "description": "Introduction to basic human neuroscience leading to a discussion of brain diseases classified under the rubric Dementia. Topics include basic brain structure and function, diseases of the aging brain and their economic, social, political and ethical impacts on society.", + "edges_from": [], + "edges_to": [], + "id": 5610, + "label": "BILD 38", + "title": "Dementia, Science, and Society (4)" + }, + { + "dept": "GPLA", + "description": "This course is designed to enable students with low to intermediate knowledge and skills of Bahasa Indonesia to further develop communicative skills through a combination of classes, exercises, and other language experiences. Renumbered from IRLA 461A-B-C. Students may not get credit for any IRLA 461 course and the GPLA course of the same number and quarter designation.", + "edges_from": [], + "edges_to": [], + "id": 5611, + "label": "GPLA 461A-B-C", + "title": "Low Intermediate Bahasa Indonesian for Professional Proficiency (4-4-4)" + }, + { + "dept": "HIGR", + "description": "Readings in the historiographical literature on the Middle East in the national/postcolonial eras. ", + "edges_from": [], + "edges_to": [], + "id": 5612, + "label": "HIGR 257C", + "title": "Historical Scholarship on Modern Middle East, Postcolonial Eras (4)" + }, + { + "dept": "HIGR", + "description": "Historical Scholarship on Modern Middle East, Colonial Period (4)", + "edges_from": [], + "edges_to": [], + "id": 5613, + "label": "HIGR 257B", + "title": "" + }, + { + "dept": "TDMV", + "description": "The development of contemporary somatic approaches to dance as an expressive medium, emphasizing advanced technical skills, efficient athleticism, kinesthetic refinement, individual creative voice, and performance elements. Choreography and aesthetic concepts will be explored. Incorporates various principles of human movement research. May be taken for credit six times. ", + "edges_from": [ + 5615 + ], + "edges_to": [], + "id": 5614, + "label": "TDMV 122", + "title": "Advanced Contemporary Dance (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [ + 4401 + ], + "edges_to": [ + 5614 + ], + "id": 5615, + "label": "TDMV 120", + "title": "" + }, + { + "dept": "TDMV", + "description": "Students will study the practice of improvisational dancing with a partner. Students will develop skills in giving and supporting body weight, lifting, balancing, falling, rolling, and recovering fluidly together. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5616, + "label": "TDMV 123", + "title": "Contact Improvisation (4)" + }, + { + "dept": "HITO", + "description": "A lecture-discussion course on the philosophical, political, and economic ideas that shaped the Scottish Enlightenment in the eighteenth century, especially the ideas of David Hume, Adam Smith, and John Witherspoon, and their impact upon the American Revolution and the Constitution of the United States.", + "edges_from": [], + "edges_to": [], + "id": 5617, + "label": "HITO 150GS", + "title": "The Scottish Enlightenment and the Founding of the United States (4)" + }, + { + "dept": "LTGM", + "description": "This course offers an overview of issues in contemporary and historical German cultures. How has national identity been constructed in the past? What does it mean to be a German in the new Europe? Materials include fiction, historical documents, films, and the Internet.", + "edges_from": [], + "edges_to": [], + "id": 5618, + "label": "LTGM 101", + "title": "German Studies II: National Identities (4)" + }, + { + "dept": "LTGM", + "description": "This course offers an overview of German aesthetic culture in its various forms (literature, film, art, music, and architecture) and methods of analysis. Materials will explore the diversity of aesthetic production from the eighteenth century to the present.", + "edges_from": [], + "edges_to": [], + "id": 5619, + "label": "LTGM 100", + "title": "German Studies I: Aesthetic Cultures (4)" + }, + { + "dept": "ECON", + "description": "This course focuses on the application of econometric techniques to issues in microeconomics and macroeconomics. The major emphasis in the class is on the completion of an empirical project. ", + "edges_from": [ + 658 + ], + "edges_to": [], + "id": 5620, + "label": "ECON 220F", + "title": "Econometrics F (4)" + }, + { + "dept": "SOCI", + "description": "Comparative and historical perspectives on", + "edges_from": [], + "edges_to": [], + "id": 5621, + "label": "SOCI 188K", + "title": "American Society (4)" + }, + { + "dept": "SOCI", + "description": "Course examines theories of social movements and changing patterns of popular protest and contentious mobilization in Latin America since the mid-twentieth century. Case studies include populism, guerrillas, liberation theology and movements of workers, peasants, women, and indigenous groups. ", + "edges_from": [], + "edges_to": [], + "id": 5622, + "label": "SOCI 188M", + "title": "Social Movements in Latin America (4)" + }, + { + "dept": "SOCI", + "description": "We will examine the social, political, and religious factors that affect the nexus of Israeli settlements and Israeli-Arab and Israeli-Palestinian peace making. Special attention will be paid to the period after the 1967 War when these processes begun as well as to alternative resolutions to the conflict. ", + "edges_from": [], + "edges_to": [], + "id": 5623, + "label": "SOCI 188O", + "title": "Settlements and Peacemaking in Israel (4)" + }, + { + "dept": "POLI", + "description": "This course will study various approaches to knowledge accumulation in social science. A basic outline of scientific method will be used to examine the difference between theories as assumptions and axioms and hypotheses as \u201cif-then\u201d statements derived from theory. Experimental, quasi-experimental, and qualitative designs will be discussed. ", + "edges_from": [], + "edges_to": [], + "id": 5624, + "label": "POLI 204A", + "title": "Research Design (4)" + }, + { + "dept": "POLI", + "description": "This course introduces students to the rudiments of decision theory and game theory. Emphasis will be placed on modeling and solving games. ", + "edges_from": [], + "edges_to": [], + "id": 5625, + "label": "POLI 204C", + "title": "Game Theory 1 (4)" + }, + { + "dept": "POLI", + "description": "The use of quantitative methods (particularly multiple regression and its extensions) in political science. Emphasis on understanding the methods and using them in political science applications. ", + "edges_from": [], + "edges_to": [], + "id": 5626, + "label": "POLI 204B", + "title": "Quantitative Methods I (4)" + }, + { + "dept": "CSE", + "description": "VSLI process technologies; circuit characterization; logic design styles; clocking strategies; computer-aided design tools; subsystem design; design case studies. System design project from hardware description, logic synthesis, physical layout to design verification. ", + "edges_from": [ + 5628, + 1477, + 5629 + ], + "edges_to": [], + "id": 5627, + "label": "CSE 143", + "title": "Microelectronic System Design (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [], + "edges_to": [ + 5627 + ], + "id": 5628, + "label": "CSE 170A", + "title": "" + }, + { + "dept": "ECE", + "description": "", + "edges_from": [], + "edges_to": [ + 5627 + ], + "id": 5629, + "label": "ECE 81", + "title": "" + }, + { + "dept": "CSE", + "description": "Project class building an embedded computing system. Learn fundamental knowledge of microcontrollers, sensors, and actuators. Introduction to the hardware and software tools to build project in a team environment and end-to-end system building. ", + "edges_from": [ + 1480 + ], + "edges_to": [], + "id": 5630, + "label": "CSE 145", + "title": "Embedded System Design Project (4)" + }, + { + "dept": "CSE", + "description": "Processor Architecture Design Project (4)", + "edges_from": [], + "edges_to": [], + "id": 5631, + "label": "CSE 148", + "title": "Advanced" + }, + { + "dept": "PHYS", + "description": "Laboratory-lecture course covering practical techniques used in research laboratories. Possible topics include: computer interfacing of\u00a0instruments, sensors, and actuators; programming for data acquisition/analysis; electronics; measurement techniques; mechanical\u00a0design/machining; mechanics of materials; thermal design/control; vacuum/cryogenic techniques; optics; particle detection. Physics 122 was formerly numbered Physics 121. Program or materials fees may apply.\u00a0", + "edges_from": [ + 5633 + ], + "edges_to": [], + "id": 5632, + "label": "PHYS 122", + "title": "Experimental Techniques (4)" + }, + { + "dept": "PHYS", + "description": "", + "edges_from": [ + 1121, + 34, + 35, + 33, + 26, + 27, + 28, + 346 + ], + "edges_to": [ + 5632, + 5634 + ], + "id": 5633, + "label": "PHYS 120", + "title": "" + }, + { + "dept": "PHYS", + "description": "A laboratory-lecture-project course featuring creation of an experimental apparatus in teams of about two. Emphasis is on electronic\u00a0sensing of the physical environment and actuating physical responses. The course will use a computer interface such as the Arduino. Physics 124 was formerly numbered Physics 120B. Program or materials fees may apply.\u00a0", + "edges_from": [ + 5633 + ], + "edges_to": [], + "id": 5634, + "label": "PHYS 124", + "title": "Laboratory Projects (4)" + }, + { + "dept": "EDS", + "description": "This seminar integrates a range of perspectives to understand the contexts of teaching and change. There are three main foci: 1) how the profession of teaching in PK-16 is shaped by factors in the broader policy, political, and social context; 2) change, change agentry, and obstacles to change in educational institutions; 3) design-based research models to effect changes in the context of teaching. An international comparative approach is critical to consider levers for educational improvement. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5635, + "label": "EDS 267", + "title": "Contexts for Teaching and Change (4)" + }, + { + "dept": "ETHN", + "description": "Latina Immigrant Workers in the Global Economy (4)", + "edges_from": [], + "edges_to": [], + "id": 5636, + "label": "ETHN 129", + "title": "Asian and" + }, + { + "dept": "HDP", + "description": "HDP 171 provides an introduction to the scholarship and practice in the field of cultural competency. Through relevant readings, associated assignments, and guest speakers from the community, students will acquire the knowledge and skills necessary for doing substantive research in diverse cultural contexts. ", + "edges_from": [], + "edges_to": [], + "id": 5637, + "label": "HDP 171", + "title": "Diverse Communities in a Life-span Approach to Human Development (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal", + "edges_from": [], + "edges_to": [], + "id": 5638, + "label": "Linguistics/Heritage Languages (LIHL) 118", + "title": "Cantonese for Cantonese Speakers (4)" + }, + { + "dept": "PSYC", + "description": "Weekly meetings for graduate students actively engaged in research on conditioning. May be taken for credit multiple times. ", + "edges_from": [], + "edges_to": [], + "id": 5639, + "label": "PSYC 251", + "title": "Advanced Topics in Learning and Motivation (1)" + }, + { + "dept": "PSYC", + "description": "Surveys research on people\u2019s everyday attribution of mental states to predict/explain actions, their na\u00efve theory of mind, from developmental and neurocognitive perspectives. Topics include social cognition in infancy and childhood, in autism, and in nonhuman primates, and the brain underpinnings. ", + "edges_from": [], + "edges_to": [], + "id": 5640, + "label": "PSYC 257", + "title": "Development and Neurobiology of Theory of Mind (4)" + }, + { + "dept": "PSYC", + "description": "This course will review the research on delay of gratification. We will cover what makes it in general so tough, what situations make it possible, who can do it, and what the implications of this ability are. We will draw from research in social, personality, and animal psychology as well as economics. ", + "edges_from": [], + "edges_to": [], + "id": 5641, + "label": "PSYC 258", + "title": "Delay of Gratification (4)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who already comprehend informal", + "edges_from": [], + "edges_to": [], + "id": 5642, + "label": "Linguistics/Heritage Languages (LIHL) 113", + "title": "Armenian for Armenian Speakers (4)" + }, + { + "dept": "ANTH", + "description": "This class examines humans from a comparative perspective; if we ignore culture, what\u2019s left? How do culture and biology interact? And how does biology inform cultural debates over race, sex, marriage, war, peace, etc.? ", + "edges_from": [], + "edges_to": [], + "id": 5643, + "label": "ANTH 102", + "title": "Humans Are Cultural Animals (4)" + }, + { + "dept": "GPEC", + "description": "This course examines China\u2019s development experience from a generally economic standpoint. Contents include: patterns of traditional Chinese society and economy; geography and resource constraints, impact of the West and Japan; development since 1949, and contemporary problems and options. Renumbered from IRGN 260. Students may not receive credit for GPEC 286 and IRGN 260. May be coscheduled with GPEC 486.", + "edges_from": [], + "edges_to": [], + "id": 5644, + "label": "GPEC 286", + "title": "Economic and Social Development of China (4)" + }, + { + "dept": "MGT", + "description": "Individual study or research under the direction of a selected faculty member. May be taken for credit twelve times. Students may earn credit for a total of twelve units in MGT 299 and/or MGT 499. ", + "edges_from": [], + "edges_to": [], + "id": 5645, + "label": "MGT 499", + "title": "Individual Directed Study (1\u20134)" + }, + { + "dept": "MGT", + "description": "Advanced topics in finance. Instructional methods include face-to-face lecture and case discussion. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 495 and MGT 282 when the course subtitles are the same. ", + "edges_from": [], + "edges_to": [], + "id": 5646, + "label": "MGT 495", + "title": "Topics in Finance (2 or 4)" + }, + { + "dept": "MGT", + "description": "Internship with approved business or governmental agency, allowing student to pursue topics raised in the management core and elective courses. S/U grades only. May be taken for credit four times, for a maximum of four units, with instructor consent. Students may not earn credit for both MGT 497 and MGT 297. Internship credit may not be applied to fulfill specific course requirements or to credits required for graduation. ", + "edges_from": [], + "edges_to": [], + "id": 5647, + "label": "MGT 497", + "title": "Advanced Management Research Practicum (1)" + }, + { + "dept": "MGT", + "description": "Examines financial theory and empirical evidence useful for making investment decisions. Topics include: portfolio theory, equilibrium models of security prices, the empirical behavior of security prices, market efficiency, and fixed-income markets and behavioral finance. ", + "edges_from": [ + 2046 + ], + "edges_to": [ + 5675 + ], + "id": 5648, + "label": "MGT 491", + "title": "Investments (4)" + }, + { + "dept": "MGT", + "description": "Explains how to identify, measure, and analyze investment risks associated with interest rates, currency exchange, and equity markets, and acquire techniques to manage and control risk through the use of over-the-counter and exchange-traded derivatives. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5649, + "label": "MGT 492", + "title": "Financial Risk Management (4)" + }, + { + "dept": "SOCI", + "description": "An analysis of the social, biological, and", + "edges_from": [], + "edges_to": [], + "id": 5650, + "label": "SOCI 118", + "title": "Sociology of Gender (4)" + }, + { + "dept": "SOCI", + "description": "Research in Educational Settings (4)", + "edges_from": [], + "edges_to": [], + "id": 5651, + "label": "SOCI 110", + "title": "Qualitative" + }, + { + "dept": "SOCI", + "description": "This course will deal with human behavior and personality development as affected by social group life. Major theories will be compared. The interaction dynamics of such substantive areas as socialization, normative and deviant behavior, learning and achievement, the social construction of the self, and the social identities will be considered. ", + "edges_from": [ + 5652, + 5653 + ], + "edges_to": [ + 5652 + ], + "id": 5652, + "label": "SOCI 112", + "title": "Social Psychology (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5652 + ], + "id": 5653, + "label": "SOCB 112", + "title": "" + }, + { + "dept": "SOCI", + "description": "This course considers the social, cultural, political, and economic aspects of HIV/AIDS. Topics include the social context of transmission; the experiences of women living with HIV; AIDS activism; representations of AIDS; and the impact of race and class differences. ", + "edges_from": [ + 5654, + 5655 + ], + "edges_to": [ + 5654 + ], + "id": 5654, + "label": "SOCI 113", + "title": "Sociology of the AIDS Epidemic (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5654 + ], + "id": 5655, + "label": "SOCB 113", + "title": "" + }, + { + "dept": "SOCI", + "description": "Analyzes selected social problems in the United States, such as those regarding education, race relations, and wealth inequality from various sociological perspectives. The course also examines the various sites of debate discussion, like political institutions, TV and other media, and religious institutions. ", + "edges_from": [ + 5656, + 5657 + ], + "edges_to": [ + 5656 + ], + "id": 5656, + "label": "SOCI 115", + "title": "Social Problems (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5656 + ], + "id": 5657, + "label": "SOCB 115", + "title": "" + }, + { + "dept": "SOCI", + "description": "(Same as LIGN 174.) This course examines how language contributes to the social construction of gender identities, and how gender impacts language use and ideologies. Topics include the ways language and gender interact across the life span (especially childhood and adolescence); within ethnolinguistic minority communities; and across cultures. ", + "edges_from": [ + 5658, + 5659 + ], + "edges_to": [ + 5658 + ], + "id": 5658, + "label": "SOCI 116", + "title": "Gender and Language in Society (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5658 + ], + "id": 5659, + "label": "SOCB 118A", + "title": "" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 4272 + ], + "id": 5660, + "label": "SOCB 117", + "title": "" + }, + { + "dept": "HIGR", + "description": "Critical evaluation of selected topics on Greece and the Balkans during the late Ottoman period (1768\u20131923). Attention will be paid to both classic and revisionist works. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 5661, + "label": "HIGR 228", + "title": "Historical Scholarship on Greece and the Balkans, 1768\u20131923 (4)" + }, + { + "dept": "HIGR", + "description": "Critical evaluation of selected topics on Greece and the Balkans during the twentieth century. Attention will be paid to both classic and revisionist works. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 5662, + "label": "HIGR 229", + "title": "Historical Scholarship on Greece and the Balkans, 1923\u20132000 (4)" + }, + { + "dept": "POLI", + "description": "in the Southern Cone of Latin America (4)", + "edges_from": [], + "edges_to": [], + "id": 5663, + "label": "POLI 134I", + "title": "Politics" + }, + { + "dept": "HIGR", + "description": "Scholarship on European History, since 1850 (4)", + "edges_from": [], + "edges_to": [], + "id": 5664, + "label": "HIGR 222", + "title": "Historical" + }, + { + "dept": "HIGR", + "description": "Scholarship on European History, 1500\u20131715 (4)", + "edges_from": [], + "edges_to": [], + "id": 5665, + "label": "HIGR 220", + "title": "Historical" + }, + { + "dept": "POLI", + "description": "A comparative analysis of contemporary political issues in Latin America. Material to be drawn from two or three countries. Among the topics: development, nationalism, neoimperialism, political change. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5666, + "label": "POLI 134D", + "title": "Selected Topics in Latin American Politics (4)" + }, + { + "dept": "HIGR", + "description": "An introduction to the historiography and major debates in modern Spanish history, nineteenth and twentieth centuries. Readings and discussion of both English and Spanish language scholarship will explore different aspects of Spain\u2019s political, economic, social, and cultural transformation in the modern period.", + "edges_from": [], + "edges_to": [], + "id": 5667, + "label": "HIGR 226", + "title": "Readings in Modern Spanish History (4)" + }, + { + "dept": "POLI", + "description": "General survey of the Mexican political system as it operates today. Emphasis on factors promoting the breakdown of Mexico\u2019s authoritarian regime and the transition to a more democratic political system. Changing relationship between the state and various segments of Mexico society (economic elites, peasants, urban labor, and the Church). New patterns of civil-military relations.", + "edges_from": [], + "edges_to": [], + "id": 5668, + "label": "POLI 134B", + "title": "Politics in Mexico (4)" + }, + { + "dept": "COGS", + "description": "Brain rhythms play a critical role in perception and cognition. What are they? Where do they come from? This course will examine the origin and function of neural oscillations and the role they play in neural computation, representation, and cognition. ", + "edges_from": [], + "edges_to": [], + "id": 5669, + "label": "COGS 280", + "title": "Neural Oscillations (4)" + }, + { + "dept": "HIGR", + "description": "Students will read major works on revolutionary Russian and Soviet history. Attention will be paid to both classic and revisionist works.", + "edges_from": [], + "edges_to": [], + "id": 5670, + "label": "HIGR 225", + "title": "Readings in Modern Russian History (4)" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "edges_from": [], + "edges_to": [], + "id": 5671, + "label": "EDS 355A", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "edges_from": [], + "edges_to": [], + "id": 5672, + "label": "EDS 355C", + "title": "Advanced" + }, + { + "dept": "EDS", + "description": "Mathematics Teaching Practices for Grades K\u20136 (2)", + "edges_from": [], + "edges_to": [], + "id": 5673, + "label": "EDS 355B", + "title": "Advanced" + }, + { + "dept": "Linguistics/Hindi", + "description": "Presentation and practice of the basic grammatical", + "edges_from": [], + "edges_to": [], + "id": 5674, + "label": "Linguistics/Hindi (LIHI) 1BX", + "title": "Analysis of Hindi (2.5)" + }, + { + "dept": "MGTF", + "description": "Provides students with a deeper and broader understanding of risk-return analysis (especially, but not exclusively, mean-variance analysis) than is common among users. Surveys how risk-return analysis is used in practice and examines the modern portfolio theory industry and its entrepreneurs. Letter grades only. Students may not receive credit for MGT 432, MGT 232, and MGT 282 Topics in Finance course with same course subtitle: Portfolio Theory in Practice. They are course equivalents. ", + "edges_from": [ + 5648, + 5676 + ], + "edges_to": [], + "id": 5675, + "label": "MGTF 432", + "title": "Portfolio Theory in Practice (4)" + }, + { + "dept": "MGT", + "description": "", + "edges_from": [], + "edges_to": [ + 5675 + ], + "id": 5676, + "label": "MGT 281", + "title": "" + }, + { + "dept": "MGTF", + "description": "Students will investigate the reasons behind resource expenditure related to Modern Portfolio Theory (MPT). They will examine ways in which an investor can aim to outperform the predictions of MPT, either by reducing risk without impacting return negatively, or increasing returns without increasing risk. The concepts of this course will be demonstrated through a combination of classroom lectures and case discussions. ", + "edges_from": [], + "edges_to": [], + "id": 5677, + "label": "MGTF 430", + "title": "Asset Management (4)" + }, + { + "dept": "ECE", + "description": "Fresnel, Fraunhofer, and Fourier holography. Analysis of thin and volume holograms, reflection and transmission holograms, color and polarization holograms. Optically recorded and computer-generated holography. Applications to information storage, optical interconnects, 2-D and 3-D display, pattern recognition, and image processing. (Recommended prerequisites: ECE 182 or equivalent.) ", + "edges_from": [ + 3262 + ], + "edges_to": [], + "id": 5678, + "label": "ECE 241C", + "title": "Holographic Optical Elements (4)" + }, + { + "dept": "MGT", + "description": "The ability to negotiate effectively is a critical skill for business professionals. Students will develop a systematic and insightful approach to negotiation. The course provides an introduction to strategic thinking and the basic concepts, tactics, and cognitive aspects of negotiation. Interactive negotiation exercises are used to isolate and emphasize specific analytic points and essential skills. ", + "edges_from": [], + "edges_to": [], + "id": 5679, + "label": "MGT 162", + "title": "Negotiation (2)" + }, + { + "dept": "PHIL", + "description": "This seminar will cover current books and theoretical issues in the philosophy of science. May be taken for credit seven times with changed content.", + "edges_from": [], + "edges_to": [], + "id": 5680, + "label": "PHIL 245", + "title": "Philosophy of Science (4)" + }, + { + "dept": "BENG", + "description": "Directed group study, on a topic or in a field", + "edges_from": [], + "edges_to": [], + "id": 5681, + "label": "BENG 198", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "BENG", + "description": "Independent reading or research by arrangement with a bioengineering faculty member. May be taken for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5682, + "label": "BENG 199", + "title": "Independent Study for Undergraduates (4)" + }, + { + "dept": "BENG", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 5683, + "label": "BENG 99H", + "title": "Independent Study (1)" + }, + { + "dept": "HISC", + "description": "This course introduces students to new and classic works in the history of medicine in East and Southeast Asia. Topics will include epidemic disease and state vaccination campaigns; opium and drug control; mental illness and asylums; earthquakes and disaster technologies; colonialism and public health; venereal disease and prostitution. Special emphasis will be placed on the role of experts and institutions and forms of scientific exchange and collaboration across the region.", + "edges_from": [], + "edges_to": [], + "id": 5684, + "label": "HISC 276", + "title": "History of Medicine in East and Southeast Asia (4)" + }, + { + "dept": "HISC", + "description": "\u201cWas ist Aufklarung?,\u201d asked Kant in 1748 and the question remains hotly debated ever since. In this course we will pursue this question in tandem with another: \u201cWhat is Enlightenment science?\u201d The answer to which is equally debated. +", + "edges_from": [], + "edges_to": [], + "id": 5685, + "label": "HISC 277", + "title": "Science and the Enlightenment (4)" + }, + { + "dept": "BENG", + "description": "Teaching and tutorial assistance in a bioengineering course under supervision of instructor. Not more than four units may be used to satisfy graduation requirements. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5686, + "label": "BENG 195", + "title": "Teaching (2\u20134)" + }, + { + "dept": "BENG", + "description": "Under the joint supervision of a faculty adviser and industry mentor, the student will work at a bioengineering industrial site to gain practical bioengineering experience, summarized in a technical report. With departmental approval, four units of credit may substitute for a technical elective. (P/NP grades only.) Course may be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5687, + "label": "BENG 196", + "title": "Bioengineering Industrial Internship (1\u20134)" + }, + { + "dept": "BENG", + "description": "An enrichment program, available to a limited number of undergraduate students, which provides work experience with industry, government offices, hospitals, and their practices. Subject to the availability of positions, students will work in a local industry or hospital (on a salaried or unsalaried basis) under the supervision of a faculty member and industrial, government, or hospital employee. Coordination of the Engineering Internship is conducted through UC San Diego\u2019s Academic Internship Program. Time and effort to be arranged. Units may not be applied toward major graduation requirements unless prior approval of a faculty adviser is obtained and internship is an unsalaried position. ", + "edges_from": [], + "edges_to": [], + "id": 5688, + "label": "BENG 197", + "title": "Engineering Internship (1\u20134)" + }, + { + "dept": "NANO", + "description": "Materials for energy storage and conversion in existing and future power systems, including fuel cells and batteries, photovoltaic cells, thermoelectric cells, and hybrids. ", + "edges_from": [ + 2282, + 2658, + 130 + ], + "edges_to": [], + "id": 5689, + "label": "NANO 164", + "title": "Advanced Micro- and Nano-materials for Energy Storage and Conversion (4)" + }, + { + "dept": "NANO", + "description": "Selection of materials for engineering systems, based on constitutive analyses of functional requirements and material properties. The role and implications of processing on material selection. Optimizing material selection in a quantitative methodology. NanoEngineering majors receive priority enrollment. ", + "edges_from": [ + 2657 + ], + "edges_to": [], + "id": 5690, + "label": "NANO 161", + "title": "Material Selection in Engineering (4)" + }, + { + "dept": "MUS", + "description": "Group projects to create new pieces of live electronic music involving research in electronic music and/or instrumental techniques. May be repeated for credit. ", + "edges_from": [ + 2026, + 2027, + 2028 + ], + "edges_to": [], + "id": 5691, + "label": "MUS 272", + "title": "Seminar in Live Computer Music (4)" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "edges_from": [], + "edges_to": [], + "id": 5692, + "label": "EDS 260B", + "title": "Educational" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "edges_from": [], + "edges_to": [], + "id": 5693, + "label": "EDS 260C", + "title": "Educational" + }, + { + "dept": "EDS", + "description": "Research and Evaluation Design (4)", + "edges_from": [], + "edges_to": [], + "id": 5694, + "label": "EDS 260A", + "title": "Educational" + }, + { + "dept": "ECE", + "description": "Introduction to statistical phenomena in optics", + "edges_from": [], + "edges_to": [], + "id": 5695, + "label": "ECE 244A", + "title": "Statistical Optics (4)" + }, + { + "dept": "VIS", + "description": "Critical study of the ways in which media (film, video, photography) and new media have been theorized. May be taught from a historical or comparative perspective or focus on a single topic or theorist.", + "edges_from": [], + "edges_to": [], + "id": 5696, + "label": "VIS 242", + "title": "Theories of Media and New Media (4)" + }, + { + "dept": "VIS", + "description": "the Relationship of Theory and Practice (4)", + "edges_from": [], + "edges_to": [], + "id": 5697, + "label": "VIS 244", + "title": "Studies in" + }, + { + "dept": "TDDR", + "description": "For the advanced student in directing. Intensive concentration on the full realization of a dramatic text from research and analysis through rehearsal and into performance. A maximum of eight units of major project study, regardless of area (design, directing, or stage management) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ", + "edges_from": [ + 2304, + 5019 + ], + "edges_to": [], + "id": 5698, + "label": "TDDR 190", + "title": "Major Project in Directing (4)" + }, + { + "dept": "TDDR", + "description": "For the advanced student in stage management. Intensive concentration on the full realization of a dramatic text, from research and analysis through rehearsal and final performance. A maximum of eight units of major project study regardless of area (design, directing, stage management, or playwriting) may be used to fulfill major requirements. See department for application. May be taken for credit two times. ", + "edges_from": [ + 2297, + 5700, + 5209 + ], + "edges_to": [], + "id": 5699, + "label": "TDDR 191", + "title": "Major Project in Stage Management (4)" + }, + { + "dept": "TDPR", + "description": "", + "edges_from": [], + "edges_to": [ + 5699 + ], + "id": 5700, + "label": "TDPR 4", + "title": "" + }, + { + "dept": "HIEU", + "description": "German History: From Bismarck to Hitler (4)", + "edges_from": [], + "edges_to": [], + "id": 5701, + "label": "HIEU 154", + "title": "Modern" + }, + { + "dept": "HIEU", + "description": "and the Law in Modern European History (4)", + "edges_from": [], + "edges_to": [], + "id": 5702, + "label": "HIEU 157", + "title": "Religion" + }, + { + "dept": "HIEU", + "description": "This course explores war, revolution, development, and terror in the Soviet Union from 1905\u20131991.", + "edges_from": [], + "edges_to": [], + "id": 5703, + "label": "HIEU 156", + "title": "History of the Soviet Union, 1905\u20131991 (4)" + }, + { + "dept": "HIEU", + "description": "Social, political, cultural history of Spain since Napoleon. Features second Spanish Republic, the Civil War, Franco era, and transition to democracy.", + "edges_from": [], + "edges_to": [], + "id": 5704, + "label": "HIEU 151", + "title": "Spain since 1808 (4)" + }, + { + "dept": "HIEU", + "description": "Emphasis on changes in social structure and corresponding shifts in political power. The expansion and the end of empire. Two World Wars and the erosion of economic leadership.", + "edges_from": [], + "edges_to": [], + "id": 5705, + "label": "HIEU 150", + "title": "Modern British History (4)" + }, + { + "dept": "HIEU", + "description": "Selected topics in modern European history. Course may be taken for credit up to three times as topic vary.", + "edges_from": [], + "edges_to": [], + "id": 5706, + "label": "HIEU 153", + "title": "Topics in Modern European History (4)" + }, + { + "dept": "HIEU", + "description": "Examines how ordinary citizens coped with the problems of life under Europe\u2019s authoritarian regimes. Topics may include Nazism, fascism, and quasi-fascist societies (e.g., Franco\u2019s Spain, Salazar\u2019s Portugal), and communist practice from Leninism to Stalinism to the milder Titoism of Yugoslavia.", + "edges_from": [], + "edges_to": [], + "id": 5707, + "label": "HIEU 152", + "title": "The Worst of Times: Everyday Life in Authoritarian and Dictatorial Societies (4)" + }, + { + "dept": "BENG", + "description": "Modern development of biomechanics at an advanced mathematical level. Description of internal stresses and deformation in living tissues and fluids, thermodynamics. Mechanics of soft connective tissue, extracellular matrix, cells, membranes, and cytoskeleton. Mechanotransduction, migration, adhesion. Blood flow in microvessels. Biomechanical analysis of tissue injury. Students that have taken BENG 222 cannot take BENG 226 for credit. Recommended preparation: A previous background in biomechanics is strongly recommended prior to taking this course. ", + "edges_from": [], + "edges_to": [], + "id": 5708, + "label": "BENG 226", + "title": "Foundations of Bioengineering I: Tissue and Cell Properties (4)" + }, + { + "dept": "BENG", + "description": "This course describes the movement of heat and chemical mass in biological systems. Diffusion, convection and biochemical reactions in a variety of biological and engineering examples are analyzed and modeled. Students that have taken BENG 222 cannot take BENG 227 for credit. ", + "edges_from": [ + 5710 + ], + "edges_to": [], + "id": 5709, + "label": "BENG 227", + "title": "Transport Phenomena in Living Systems (4)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [], + "edges_to": [ + 5709 + ], + "id": 5710, + "label": "BENG 221", + "title": "" + }, + { + "dept": "HINE", + "description": "A survey of the history of science in the Middle East from 600 to the present day. The course examines the relationship between science, learning, and religion in Islamic societies and its connections to other regions of the globe. +", + "edges_from": [], + "edges_to": [], + "id": 5711, + "label": "HINE 145", + "title": "Islam and Science: The History of Science in the Middle East (600\u20131950) (4)" + }, + { + "dept": "HINE", + "description": "Selected topics in the history of the Middle East. May be taken for credit three times.", + "edges_from": [], + "edges_to": [], + "id": 5712, + "label": "HINE 144", + "title": "Topics in Middle Eastern History (4)" + }, + { + "dept": "HIEU", + "description": "For centuries, the land of Israel was present in Jewish minds and hearts. Why and how did the return to Zion become a reality? Which were the vicissitudes of Jewish life in Palestine?", + "edges_from": [], + "edges_to": [], + "id": 5713, + "label": "HIEU 159", + "title": "Three Centuries of Zionism, 1648\u20131948 (4)" + }, + { + "dept": "HIEU", + "description": "Why did Germany in 1919 produce an Adolf Hitler;", + "edges_from": [], + "edges_to": [], + "id": 5714, + "label": "HIEU 158", + "title": "Why Hitler? How Auschwitz? (4)" + }, + { + "dept": "BIMM", + "description": "Course will vary in title and content. Students are expected to actively participate in course discussions, read, and analyze primary literature. Current descriptions and subtitles may be found on the", + "edges_from": [], + "edges_to": [], + "id": 5715, + "label": "BIMM 194", + "title": "Advanced Topics in Modern Biology: Molecular Biology (2)" + }, + { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with no background.", + "edges_from": [], + "edges_to": [], + "id": 5716, + "label": "CHIN 20CN", + "title": "Second Year Chinese\u2014Non-native speakers III (4)" + }, + { + "dept": "ECE", + "description": "This course covers some convex optimization", + "edges_from": [], + "edges_to": [], + "id": 5717, + "label": "ECE 273", + "title": "Convex Optimization and Applications (4)" + }, + { + "dept": "SE", + "description": "Element Methods in Solid Mechanics III (4)", + "edges_from": [], + "edges_to": [], + "id": 5718, + "label": "SE 276C", + "title": "Finite" + }, + { + "dept": "ECE", + "description": "A seminar course in which topics of special interest for electrical and computer engineering students will be presented. S/U grades only. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5719, + "label": "ECE 279", + "title": "Special Seminar (2)" + }, + { + "dept": "ECE", + "description": "Mathematical topics covered in the ECE master\u2019s comprehensive exam including calculus, linear algebra and linear systems, and statistics and probability theory. ", + "edges_from": [], + "edges_to": [], + "id": 5720, + "label": "ECE 278", + "title": "Mathematical Topics for the Master\u2019s Comprehensive Exam (2)" + }, + { + "dept": "CHIN", + "description": "Final course of second year Chinese for students with background", + "edges_from": [], + "edges_to": [], + "id": 5721, + "label": "CHIN 20CD", + "title": "Second Year Chinese\u2014Dialect speakers III (4)" + }, + { + "dept": "EDS", + "description": "Develop educators\u2019 knowledge base around aspects of the Digital World (e.g., digital devices, systems, networks; data and analysis) and their impacts (social, ethical, legal issues) and contributions to society. Projects introduce novice programming framework(s) and/or other online interfaces to explore and model issues. Prior programming experience is not required. Students may not receive credit for EDS 124A and EDS 124AR. ", + "edges_from": [], + "edges_to": [], + "id": 5722, + "label": "EDS 124A", + "title": "Teaching Computation in the Digital World (4)" + }, + { + "dept": "HDP", + "description": "Study in Human Development (2\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5723, + "label": "HDP 99", + "title": "Independent" + }, + { + "dept": "HDP", + "description": "Directed group study, on a topic or in a field not included in the department curriculum, by arrangement with a faculty member. Pass/Not Pass grades only. May be taken for credit three times for a maximum of six units. Cannot be used toward HDP major credit. ", + "edges_from": [ + 5725, + 5726, + 5727 + ], + "edges_to": [], + "id": 5724, + "label": "HDP 98", + "title": "Directed Group Study (1\u20132)" + }, + { + "dept": "SSC", + "description": "", + "edges_from": [], + "edges_to": [ + 5724 + ], + "id": 5725, + "label": "SSC 98", + "title": "" + }, + { + "dept": "SSC", + "description": "", + "edges_from": [], + "edges_to": [ + 5724 + ], + "id": 5726, + "label": "SSC 99", + "title": "" + }, + { + "dept": "SSC", + "description": "", + "edges_from": [], + "edges_to": [ + 5724 + ], + "id": 5727, + "label": "SSC 97", + "title": "" + }, + { + "dept": "LTEA", + "description": "in Tagalog Literature and Culture I (4)", + "edges_from": [], + "edges_to": [], + "id": 5728, + "label": "LTEA 151", + "title": "Readings" + }, + { + "dept": "VIS", + "description": "Research seminar in film history, theory, and/or criticism. Potential topics: film aesthetics, film criticism, film sound, and film in the digital era, with a focus on a specific period, theme, or context. Class will be devoted to discussion of readings in connection with a film or related art, fiction, or other media. Students will gain advanced knowledge of a specialized aspect of film history, theory, or criticism in a setting that promotes research, reports, and writing. ", + "edges_from": [ + 3080, + 841, + 834 + ], + "edges_to": [], + "id": 5729, + "label": "VIS 150A", + "title": "Seminar in Film History and Theory (4)" + }, + { + "dept": "HILA", + "description": "Exploration of the relationships between socioeconomic and cultural development in Caribbean history; slavery and empire; nationalism and migration; vodun and Rastafarianism, and the literary arts.", + "edges_from": [], + "edges_to": [], + "id": 5730, + "label": "HILA 126", + "title": "From Columbus to Castro: Caribbean Culture and Society (4)" + }, + { + "dept": "CHEM", + "description": "Various advanced topics in biochemistry. May be taken for credit up to three times as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5731, + "label": "CHEM 219B", + "title": "Special Topics in Biochemistry (4)" + }, + { + "dept": "HILA", + "description": "The course surveys Chile\u2019s basic developments beginning with the era of nitrate exports. Students will have the opportunity to address a specific issue of his or her own choosing and develop the topic for class presentation and a final paper. The course will cover politics, cultural changes, class struggles, Allende\u2019s revolutionary movement, and Pinochet\u2019s dictatorship to the present.", + "edges_from": [], + "edges_to": [], + "id": 5732, + "label": "HILA 124", + "title": "The History of Chile 1880\u2013Present (4)" + }, + { + "dept": "HILA", + "description": "The Incas called their realm Tahuantinsuyu (Land of the Four Quarters). But the Incas were only one of the many ethnic groups in the Andean region. Many different other groups became a part of the Tahuantinsuyu in the wake of Inca expansion. Over the past decade, new and fascinating information on these processes have been published, and allow for a rereading of Inca history between 900 and 1535. +", + "edges_from": [], + "edges_to": [], + "id": 5733, + "label": "HILA 123", + "title": "The Incas and Their Ancestors (4)" + }, + { + "dept": "HILA", + "description": "A lecture-discussion course on the historical roots of revolutionary Cuba, with special emphasis on the impact of the United States on the island\u2019s development and society.", + "edges_from": [], + "edges_to": [], + "id": 5734, + "label": "HILA 122", + "title": "Cuba: From Colony to Socialist Republic (4)" + }, + { + "dept": "HILA", + "description": "A survey from the colonial period to the present, with an emphasis on the nineteenth and twentieth centuries. Among the topics covered: the expansion of the frontier, the creation of a cosmopolitan, predominately European culture, and the failure of industrialization to provide an economic basis for democracy.", + "edges_from": [], + "edges_to": [], + "id": 5735, + "label": "HILA 120", + "title": "History of Argentina (4)" + }, + { + "dept": "HILA", + "description": "Introduction to the historiography on Latin America for the colonial period from Spanish and Portuguese conquests to the Wars of Independence. Requirements will vary for undergraduate, MS, and PhD students. Graduate students are required to submit an additional research paper. ", + "edges_from": [], + "edges_to": [], + "id": 5736, + "label": "HILA 167/267", + "title": "Scholarship on Latin American History in the Colonial Period (4)" + }, + { + "dept": "MMW", + "description": "", + "edges_from": [], + "edges_to": [ + 859 + ], + "id": 5737, + "label": "MMW 5", + "title": "" + }, + { + "dept": "GPPS", + "description": "This course encourages sustained debate about US interventions into conflict and post-conflict settings abroad since the end of the Cold War. We will consider the broad trends in international politics, with particular focus on the nature of\u00a0\u201cunipolarity,\u201d\u00a0\u201cresponsibility to protect,\u201d and the politics of border regions. We will look at both governmental and nongovernmental actors. Renumbered from IRGN 434. Students may not receive credit for GPPS 434 and IRGN 434.", + "edges_from": [], + "edges_to": [], + "id": 5738, + "label": "GPPS 434", + "title": "Humanitarian Interventions (4)" + }, + { + "dept": "GPPS", + "description": "Course engages central debates regarding US grand strategy and encourages analysis of regional crisis-spots using replicable open-source data. Emphasis is on deploying theoretical arguments in the service of a policy agenda and tensions between rival schools of theory in the context of contemporary politics. Topics include nuclear nonproliferation, humanitarian military interventions, democracy promotion, \u201cWar on Terror,\u201d and policy toward \u201crogue\u201d and unrecognized states. Renumbered from IRGN 433. Students may not receive credit for GPPS 433 and IRGN 433.", + "edges_from": [], + "edges_to": [], + "id": 5739, + "label": "GPPS 433", + "title": "Debating US Security Policy\u00a0(4)" + }, + { + "dept": "GPPS", + "description": "Prepares students to analyze the causes of repression and the effectiveness of political intervention. Attention will focus on the evaluation of the design, implementation, and effectiveness of human rights policy, including international organizations, democracy, trade, and social movement advocacy. Renumbered from IRGN 430. Students may not receive credit for GPPS 430 and IRGN 430.", + "edges_from": [], + "edges_to": [], + "id": 5740, + "label": "GPPS 430", + "title": "Human Rights, Public Policy, and International Relations (4)" + }, + { + "dept": "CHIN", + "description": "(4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 5741, + "label": "CHIN 185A-B-C", + "title": "Readings in Chinese Culture and Society" + }, + { + "dept": "SOCG", + "description": "A consideration of the major theories of schooling and society, including functionalist, conflict, critical, and interactional; selected topics in the sociology of education will be addressed in a given quarter, including: the debate over inequality, social selection, cultural reproduction and the transition of knowledge, the cognitive and economic consequences of education. Major research methods will be discussed and critiqued.", + "edges_from": [], + "edges_to": [], + "id": 5742, + "label": "SOCG 270", + "title": "The Sociology of Education (4)" + }, + { + "dept": "PSYC", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5743, + "label": "PSYC 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "COGS", + "description": "(Cross-listed with MUS 20.) How do we transform complex sounds into comprehensible and meaningful music? What physiological, neurological, cognitive, and cultural systems are involved? Why do we make music in such diverse ways around the globe? Does music have evolutionary or ecological significance? What is the relationship between music, motion, and emotions? This course explores contemporary understandings of how we hear and how we become musical and invites students to listen to new music in new ways. Students may not receive credit for both Cognitive Science 20 and MUS 20.", + "edges_from": [], + "edges_to": [], + "id": 5744, + "label": "COGS 20", + "title": "Exploring the Musical Mind (4)" + }, + { + "dept": "PSYC", + "description": "This course provides students the opportunity to learn about the intricate relationship that exists between brain and behavior, as well as the evolutionary forces that shape this interaction. Lectures for this course aim to introduce students to some of the best examples in the literature that highlight these issues, while a parallel component of the course aims to introduce students to performing research on the topic. ", + "edges_from": [ + 436, + 709, + 1222 + ], + "edges_to": [], + "id": 5745, + "label": "PSYC 81", + "title": "Laboratory in Brain, Behavior, and Evolution (4)" + }, + { + "dept": "MAE", + "description": "", + "edges_from": [], + "edges_to": [ + 1803 + ], + "id": 5746, + "label": "MAE 209BENG", + "title": "" + }, + { + "dept": "HIEU", + "description": "Multiple reformations of the European Christian Church confronted with the rise of universities, colonial exploration, absolutism, scientific revolutions, and the Enlightenment. Focused attention will be given to early modern Europe (Muslims, Jews, and Protestant sects).", + "edges_from": [], + "edges_to": [], + "id": 5747, + "label": "HIEU 105S", + "title": "Devotions, Doctrines, and Divisions: Religion in Early Modern European Society (4)" + }, + { + "dept": "HIEA", + "description": "This colloquium will explore the relationship between cinema and society in twentieth-century China. The emphasis will be on the social, political, and cultural impact of filmmaking. The specific period under examination (1930s, 1940s, post-1949) may vary each quarter. Graduate students will be expected to submit an additional paper. ", + "edges_from": [], + "edges_to": [], + "id": 5748, + "label": "HIEA 163/263", + "title": "Cinema and Society in Twentieth-Century China (4)" + }, + { + "dept": "LTEA", + "description": "Topics in Filipino Literature and Culture (World War II\u2013Present) (4)", + "edges_from": [], + "edges_to": [], + "id": 5749, + "label": "LTEA 152B", + "title": "" + }, + { + "dept": "LTEA", + "description": "Topics in Filipino Literature and Culture (Nineteenth Century\u2013World War", + "edges_from": [], + "edges_to": [], + "id": 5750, + "label": "LTEA 152A", + "title": "" + }, + { + "dept": "RELI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic related to the study of religion with a faculty member in a small seminar setting. Freshman seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen.", + "edges_from": [], + "edges_to": [], + "id": 5751, + "label": "RELI 87", + "title": "Freshman Seminar in Religion (1)" + }, + { + "dept": "LTSP", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5752, + "label": "LTSP 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "LTSP", + "description": "Research for the dissertation. Offered for repeated registration. Open only to PhD students who have advanced to candidacy.", + "edges_from": [], + "edges_to": [], + "id": 5753, + "label": "LTSP 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "Revelle", + "description": "Weekly seminars with a faculty member (chosen each year by the provost to match the interests of participating students). This seminar will acquaint students with the scholarship and research being conducted by faculty and instill in students a sense of participation in the scholarly life at UC San Diego. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5754, + "label": "Revelle 20", + "title": "Revelle Freshman Honors Program Seminar (0)" + }, + { + "dept": "LTSP", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5755, + "label": "LTSP 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "PSYC", + "description": "The first part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology.", + "edges_from": [], + "edges_to": [ + 5758 + ], + "id": 5756, + "label": "PSYC 201A", + "title": "Quantitative Methods in Psychology I (6)" + }, + { + "dept": "PSYC", + "description": "The third part of a series of intensive courses in statistical methods and the mathematical treatment of data, with special reference to research in psychology. ", + "edges_from": [ + 5758 + ], + "edges_to": [], + "id": 5757, + "label": "PSYC 201C", + "title": "Quantitative Methods in Psychology III (6)" + }, + { + "dept": "PSYC", + "description": "", + "edges_from": [ + 5756 + ], + "edges_to": [ + 5757 + ], + "id": 5758, + "label": "PSYC 201B", + "title": "" + }, + { + "dept": "PHYS", + "description": "Quantum principles of state (pure, composite, entangled, mixed), observables, time evolution, and measurement postulate. Simple soluble systems: two-state, harmonic oscillator, and spherical potentials. Angular momentum and spin. Time-independent approximations.", + "edges_from": [], + "edges_to": [ + 5760 + ], + "id": 5759, + "label": "PHYS 212A", + "title": "Quantum Mechanics I (4)" + }, + { + "dept": "PHYS", + "description": "Symmetry theory and conservation laws: time reversal, discrete, translation and rotational groups. Potential scattering. Time-dependent perturbation theory. Quantization of Electromagnetic fields and transition rates. Identical particles. Open systems: mixed states, dissipation, decoherence. ", + "edges_from": [ + 5759 + ], + "edges_to": [], + "id": 5760, + "label": "PHYS 212B", + "title": "Quantum Mechanics II (4)" + }, + { + "dept": "NEU", + "description": "Molecular and cellular approaches to the study of the nervous system are advancing neurobiology at an increasingly rapid pace. This graduate-level course will address the latest molecular advances in the areas of: 1) synapse formation, neurotransmitter release, and neurotransmitter receptors; 2) nerve growth factors, their receptors, and neuronal apoptosis; 3) transcriptional regulation in the brain and peripheral nervous system; 4) cell culture, transgenic, and knock-out mouse model systems; 5) the molecular bases of genetic, psychiatric, and degenerative diseases of the nervous system; and 6) the current molecular knowledge of vision, sensory transduction, circadian rhythms, learning, memory, and behavior.", + "edges_from": [], + "edges_to": [], + "id": 5761, + "label": "NEU 268", + "title": "Molecular and Cellular Neurobiology (4)" + }, + { + "dept": "NEU", + "description": "Course focuses on developmental processes during formation of neural circuits. Molecular, genetic, cellular mechanisms controlling neurogenesis, neuronal differentiation, positioning (migration), axon/dendrite patterning, and synapse formation will be discussed. Role of neural activity shaping circuit formation will be explored. ", + "edges_from": [], + "edges_to": [], + "id": 5762, + "label": "NEU 266", + "title": "Development of Neural Circuits (4)" + }, + { + "dept": "NEU", + "description": "Anatomical and pharmacological substrates activated following tissue or nerve injury will be discussed. Changes in afferents and spinal cord, including increased expressions of channels and receptors, during chronic pain states will be emphasized. Clinical relevance and treatment will be included. (S/U grades only.) (F)", + "edges_from": [], + "edges_to": [], + "id": 5763, + "label": "NEU 265", + "title": "Mechanisms of Pain (2)" + }, + { + "dept": "NEU", + "description": "Students will review basic principles of light and electron microscopy and learn a variety of basic and advanced microscopy methods through lecture and hands-on training. Each student will have his or her own project. Additional supervised instrument time is available. ", + "edges_from": [], + "edges_to": [], + "id": 5764, + "label": "NEU 260", + "title": "Light and Electron Microscopy of Cells and Tissue (4)" + }, + { + "dept": "CHEM", + "description": "(Cross-listed with SIO 141.) Introduction to the chemistry and distribution of the elements in seawater, emphasizing basic chemical principles such as electron structure, chemical bonding, and group and periodic properties and showing how these affect basic aqueous chemistry in marine systems. ", + "edges_from": [ + 596 + ], + "edges_to": [], + "id": 5765, + "label": "CHEM 174", + "title": "Chemical Principles of Marine Systems (4)" + }, + { + "dept": "CHEM", + "description": "Chemical principles applied to the study of atmospheres. Atmospheric photochemistry, radical reactions, chemical lifetime determinations, acid rain, greenhouse effects, ozone cycle, and evolution are discussed. May be coscheduled with CHEM 273. ", + "edges_from": [ + 594, + 596 + ], + "edges_to": [], + "id": 5766, + "label": "CHEM 173", + "title": "Atmospheric Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "An introduction to chemical concerns in nature with emphasis on soil and water issues like agricultural productivity, biological impacts in the environment, deforestation, ocean desserts, natural and manmade disasters (fires, nuclear winter, volcanoes), and waste handling. Recommended preparation: CHEM 171 (formerly 149A). Students may only receive credit for one of the following: CHEM 172 or 149B. ", + "edges_from": [ + 594, + 596 + ], + "edges_to": [], + "id": 5767, + "label": "CHEM 172", + "title": "Environmental Chemistry II (4)" + }, + { + "dept": "CHEM", + "description": "An introduction to chemical concerns in nature with emphasis on atmospheric issues like air pollution, chlorofluorocarbons and the ozone hole, greenhouse effects and climate change, impacts of radioactive waste, sustainable resource usage, and risks and benefits of energy sources. Students may only receive credit for one of the following: CHEM 149A or 171. ", + "edges_from": [ + 594, + 596 + ], + "edges_to": [], + "id": 5768, + "label": "CHEM 171", + "title": "Environmental Chemistry I (4)" + }, + { + "dept": "LTSP", + "description": "Analysis and discussion of literary production during and after the Franco dictatorship. May focus on specific genres, sub-period, or issues. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5769, + "label": "LTSP 129", + "title": "Spanish Writing after 1939 (4)" + }, + { + "dept": "LTSP", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5770, + "label": "LTSP 122", + "title": "The Romantic Movement in Spain (4)" + }, + { + "dept": "LTSP", + "description": "Investigation of selected topics concerning Spanish cultural production after 1800. Topics might focus on a genre (film, popular novel, theatre) or on the transformations of a theme or metaphor (nation, femininity, the uncanny). May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5771, + "label": "LTSP 123", + "title": "Topics in Modern Spanish Culture (4)" + }, + { + "dept": "FPM", + "description": "The Free Clinic Project operates at three community-based sites. In this class, students, under faculty supervision, provide clinical services and learn administrative, health education and leadership. S/U grades only. May be taken for credit as many times as desired. ", + "edges_from": [ + 2345 + ], + "edges_to": [], + "id": 5772, + "label": "FPM 286", + "title": "Free Clinic II (2 or 4)" + }, + { + "dept": "POLI", + "description": "In between \u201crises\u201d and \u201cdeclines,\u201d empires are political entities with highly heterogeneous populations that must be governed. The course examines the similarities and differences in imperial governance, comparing the internal and external political dynamics of traditional (Roman, Ottoman), modernizing (Habsburg), and modern (British) empires. ", + "edges_from": [], + "edges_to": [], + "id": 5773, + "label": "POLI 123", + "title": "Politics of Empire in Comparative Perspective (4)" + }, + { + "dept": "POLI", + "description": "What do we mean by \u201cinternational", + "edges_from": [], + "edges_to": [], + "id": 5774, + "label": "POLI 122", + "title": "Politics of Human Rights (4)" + }, + { + "dept": "POLI", + "description": "What have been the effects of globalization on gender, and how has gender shaped conceptions and processes of globalization? Through case studies drawn from the global north and south, this course critically assesses contemporary theoretical debates on global gender justice.", + "edges_from": [], + "edges_to": [], + "id": 5775, + "label": "POLI 125", + "title": "Gender, Politics, and Globalization (4)" + }, + { + "dept": "POLI", + "description": "(Same as SOCI 188I.) In this course, we will examine the national and colonial dimensions of this long-lasting conflict and then turn our attention to the legal, governmental/political, and everyday aspects of the Israeli occupation of the West Bank and Gaza following the 1967 war.", + "edges_from": [], + "edges_to": [], + "id": 5776, + "label": "POLI 124", + "title": "Israeli-Palestinian Conflict (4)" + }, + { + "dept": "POLI", + "description": "This course critically examines central concepts and theories of development, and assesses their utility in understanding political, economic, and social change in the developing world. Central case studies are drawn from three regions: Latin America, Sub-Saharan Africa, and Southeast Asia. ", + "edges_from": [], + "edges_to": [], + "id": 5777, + "label": "POLI 127", + "title": "Politics of Developing Countries (4)" + }, + { + "dept": "POLI", + "description": "Why are some countries rich and others poor? This course examines how political and economic factors shape development trajectories, focusing on Africa, Asia, and Latin America. Topics include the impact of democracy, corruption, oil, and foreign aid on economic development. ", + "edges_from": [], + "edges_to": [], + "id": 5778, + "label": "POLI 126", + "title": "Political Economy of Development (4)" + }, + { + "dept": "POLI", + "description": "Examine the role of elections in new and fragile democracies, explore how politicians construct elections to suppress increased levels of democracy, the techniques used to undermine free and fair elections, and the strategic responses to these actions by domestic/international actors. ", + "edges_from": [], + "edges_to": [], + "id": 5779, + "label": "POLI 129", + "title": "How to Steal an Election (4)" + }, + { + "dept": "POLI", + "description": "This course considers the interplay between factor endowments, political institutions, and economic performance. It focuses on the connection between representative political institutions and the emergence and expansion of markets.", + "edges_from": [], + "edges_to": [], + "id": 5780, + "label": "POLI 128", + "title": "Autocracy, Democracy, and Prosperity (4)" + }, + { + "dept": "Linguistics/Italian", + "description": "A course to increase the proficiency level of students who have completed LIIT 1C/1CX, 5CS or who are at an equivalent level. Attention to listening comprehension, conversation, reading, writing, grammar analysis, and culture. Equivalent to LIIT1D/1DX. ", + "edges_from": [ + 2005 + ], + "edges_to": [], + "id": 5781, + "label": "Linguistics/Italian (LIIT) 5DS", + "title": "Fundamentals of Italian IV (5)" + }, + { + "dept": "FPM", + "description": "Focus on qualitative methods addressing both theoretical and practical dimensions of conducting qualitative research. Identify research questions for which qualitative methods are appropriate, and to critique qualitative research in terms of design, interview techniques, analysis, and interpretation.", + "edges_from": [], + "edges_to": [], + "id": 5782, + "label": "FPM 288", + "title": "Introduction to Qualitative Research Methods (4)" + }, + { + "dept": "NEU", + "description": "General Clinical Selective Clerkship (7)", + "edges_from": [], + "edges_to": [ + 5979, + 5980 + ], + "id": 5783, + "label": "NEU 401", + "title": "Neurology" + }, + { + "dept": "COMM", + "description": "Specialized advanced study in cultural production with topics to be determined by the instructor for any given quarter. May be taken for credit three times. ", + "edges_from": [ + 291, + 292, + 293, + 294 + ], + "edges_to": [], + "id": 5784, + "label": "COMM 146", + "title": "Advanced Topics in Cultural Production (4)" + }, + { + "dept": "BENG", + "description": "Teaching experience in an appropriate bioengineering undergraduate course under direction of the faculty member in charge of the course. Lecturing one to two hours per week in either a problem-solving section or regular lecture. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5785, + "label": "BENG 501", + "title": "Teaching Experience (2, 4)" + }, + { + "dept": "BENG", + "description": "Teaching experience in one of the six bioengineering lab courses designated as a part of the BENG PhD Specialization in Multi-Scale Biology. Student is under the direction of the faculty member in charge of the course. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5786, + "label": "BENG 500", + "title": "Apprentice Teaching for Specialization in Multi-Scale Biology (2, 4)" + }, + { + "dept": "COMM", + "description": "History, politics, social organization, and ideology of the American news media. Surveys of the development of the news media as an institution, from earliest new newspapers to modern mass news media. ", + "edges_from": [ + 1124, + 294 + ], + "edges_to": [], + "id": 5787, + "label": "COMM 109N", + "title": "MC: American News Media (4)" + }, + { + "dept": "HMNR", + "description": "Explores where human rights come from and what they mean by integrating them into a history of modern society, from the Conquest of the Americas and the origins of the Enlightenment, to the Holocaust and the contemporary human rights regime.", + "edges_from": [], + "edges_to": [], + "id": 5788, + "label": "HMNR 100/HITO 119", + "title": "Introduction to Human Rights and Global Justice (4)" + }, + { + "dept": "COMM", + "description": "The social, legal, and economic forces affecting the evolution of mass communications institutions and structure in the industrialized world. The character and the dynamics of mass communications in the United States today. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5789, + "label": "COMM 109E", + "title": "MC: Mass Communication: Political Economy of Mass Communication (4)" + }, + { + "dept": "COMM", + "description": "Advertising in historical and cross-cultural perspectives. Ideology and organization of the advertising industry; meaning of material goods; gifts in capitalist, socialist, and nonindustrial societies; natures of needs, desires, and whether advertising creates needs, desires; and approaches to decoding the advertising messages. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5790, + "label": "COMM 109D", + "title": "MC: Advertising and Society (4)" + }, + { + "dept": "COMM", + "description": "Propaganda, in political-economic, national settings; Soviet Union; Nazi Germany; US World War I and II. Propaganda films, contribution of filmmakers to propaganda campaign. Explore issues in propaganda; persuasive communication; political propaganda; persuasive advertising; public relations; practical, ethical perspectives. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5791, + "label": "COMM 109P", + "title": "MC: Propaganda and Persuasion (4)" + }, + { + "dept": "POLI", + "description": "This course explores the interrelationship of politics and economics in Eastern Europe, analyzing the historic evolution of the area, the socialist period, and contemporary political and economic change there. ", + "edges_from": [], + "edges_to": [], + "id": 5792, + "label": "POLI 126AB", + "title": "Politics and Economics in Eastern Europe (4)" + }, + { + "dept": "POLI", + "description": "of Political Economy: Modern Capitalism (4)", + "edges_from": [], + "edges_to": [], + "id": 5793, + "label": "POLI 126AA", + "title": "Fundamentals" + }, + { + "dept": "Linguistics/German", + "description": "Practice of the grammatical functions indispensable for comprehensible communication in the language. The course is taught entirely in German. Must be taken in conjunction with LIGM 1D. Successful completion of LIGM 1D and LIGM 1DX satisfies the requirement for language proficiency in Eleanor Roosevelt and Revelle Colleges. ", + "edges_from": [ + 5467, + 5468 + ], + "edges_to": [], + "id": 5794, + "label": "Linguistics/German (LIGM) 1DX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "HIGR", + "description": "Readings in the historiographical literature on the late Ottoman Empire (eighteenth to twentieth century). ", + "edges_from": [], + "edges_to": [], + "id": 5795, + "label": "HIGR 257A", + "title": "Historical Scholarship on Modern Middle East, Eighteenth to Twentieth Century (4)" + }, + { + "dept": "TDGE", + "description": "Theatre and Film analyzes the essential differences between theatrical and cinematic approaches to drama. Through selected play/film combinations, the course looks at how the director uses actors and the visual languages of the stage and screen to guide and stimulate the audience\u2019s responses. ", + "edges_from": [], + "edges_to": [], + "id": 5796, + "label": "TDGE 10", + "title": "Theatre and Film (4)" + }, + { + "dept": "TDGE", + "description": "Course examines major accomplishments in screen acting from the work of actors in films or in film genres. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [], + "id": 5797, + "label": "TDGE 11", + "title": "Great Performances on Film (4)" + }, + { + "dept": "TDGE", + "description": "This course explores filmed representations of race and diversity and examines works by underrepresented filmmakers. Course topics vary; they include African American film, Latino/a film, Asian American film, films by Spike Lee, stereotypes on film, and other such topics. Students may not enroll in the same topic of TDGE 12 that they have already taken in TDGE 11, Great Performances on Film. This will count as a duplicate of credit for repeating the same film topic. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5798, + "label": "TDGE 12", + "title": "Topics in Cinema and Race (4)" + }, + { + "dept": "BENG", + "description": "Development of design project in bioinstrumentation. ", + "edges_from": [ + 55 + ], + "edges_to": [ + 5800 + ], + "id": 5799, + "label": "BENG 179A", + "title": "Design Development in Bioinstrumentation (3)" + }, + { + "dept": "BENG", + "description": "Implementation of design project in bioinstrumentation. ", + "edges_from": [ + 57, + 5799 + ], + "edges_to": [ + 57 + ], + "id": 5800, + "label": "BENG 179B", + "title": "Design Implementation in Bioinstrumentation (3)" + }, + { + "dept": "BILD", + "description": "Course will focus on issues such as global warming, species extinction, and human impact on the oceans and forests. History and scientific projections will be examined in relation to these events. Possible solutions to these worldwide processes and a critical assessment of their causes and consequences will be covered.", + "edges_from": [], + "edges_to": [], + "id": 5801, + "label": "BILD 18", + "title": "Human Impact on the Environment (4)" + }, + { + "dept": "LTCS", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 5802, + "label": "LTCS 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "POLI", + "description": "A consideration of the nature of public opinion and voting in American government. Studies of voting behavior are examined from the viewpoints of both citizens and candidates, and attention is devoted to recent efforts to develop models of electoral behavior for the study of campaigns. The role of mass media and money also will be examined.", + "edges_from": [], + "edges_to": [], + "id": 5803, + "label": "POLI 100DA", + "title": "Voting, Campaigning, and Elections (4)" + }, + { + "dept": "BILD", + "description": "Concepts of Modern Biology (4)", + "edges_from": [], + "edges_to": [], + "id": 5804, + "label": "BILD 10", + "title": "Fundamental" + }, + { + "dept": "HISC", + "description": "Why have women been traditionally excluded from science? How has this affected scientific knowledge? How have scientists constructed gendered representations not only of women, but also of science and nature? We will address these questions from perspectives including history, philosophy, and psychoanalytic theory. ", + "edges_from": [], + "edges_to": [], + "id": 5805, + "label": "HISC 167/267", + "title": "Gender and Science (4)" + }, + { + "dept": "TDMV", + "description": "To develop an appreciation and understanding of the dances from various Asian cultures. Emphasis on learning the basic forms and movement vocabularies, their historical context, and the use of each dance as a means of cultural and artistic expression. May be taken for credit three times. ", + "edges_from": [], + "edges_to": [ + 5810 + ], + "id": 5806, + "label": "TDMV 144", + "title": "Asian Dance (4)" + }, + { + "dept": "TDMV", + "description": "To develop an appreciation and understanding of the various Latin dances. Emphasis on learning intermediate social dance movement vocabulary, history of Latin cultures, and use of each dance as a means of social and economic expression. May be taken for credit two times. ", + "edges_from": [ + 5808 + ], + "edges_to": [], + "id": 5807, + "label": "TDMV 146", + "title": "Intermediate Latin Dances of the World (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 5810, + 5807 + ], + "id": 5808, + "label": "TDMV 142", + "title": "" + }, + { + "dept": "TDMV", + "description": "Courses designed for the in-depth study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. May be taken for credit two times. ", + "edges_from": [], + "edges_to": [], + "id": 5809, + "label": "TDMV 140", + "title": "Beginning Dances of the World (4)" + }, + { + "dept": "TDMV", + "description": "Courses designed for the advanced continuing study of the dances and historical context of a particular culture or ethnic form: Afro-Cuban, Spanish, Balinese, Japanese, Latin, etc. Specific topic will vary from quarter to quarter. ", + "edges_from": [ + 5808, + 5811, + 5812, + 5813, + 5806 + ], + "edges_to": [], + "id": 5810, + "label": "TDMV 141", + "title": "Advanced Dances of the World (4)" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 5810 + ], + "id": 5811, + "label": "TDMV 143", + "title": "" + }, + { + "dept": "THDA", + "description": "", + "edges_from": [], + "edges_to": [ + 5810 + ], + "id": 5812, + "label": "THDA 132", + "title": "" + }, + { + "dept": "TDMV", + "description": "", + "edges_from": [], + "edges_to": [ + 5810 + ], + "id": 5813, + "label": "TDMV 136", + "title": "" + }, + { + "dept": "MGTA", + "description": "Project-based course, in which students apply knowledge and methods acquired in their course work to a specific business analytics problem faced by a company. This is a continuation of MGTA 454A. Class meetings will be scheduled where teams will present their interim and final analysis results and outline how the partner company could use the project outcomes (e.g., a decision support tool) in decision-making. This course is part of a course series. Final grade will apply after the completion of MGTA 454B. Students may not receive credit for both MGTA454 and MGTA 454A or MGTA 454B. ", + "edges_from": [ + 5815 + ], + "edges_to": [], + "id": 5814, + "label": "MGTA 454B", + "title": "Business Analytics Capstone Project II (2)" + }, + { + "dept": "MGTA", + "description": "", + "edges_from": [ + 676, + 677, + 678 + ], + "edges_to": [ + 5814 + ], + "id": 5815, + "label": "MGTA 454A", + "title": "" + }, + { + "dept": "TDMV", + "description": "This course is designed to build on the skills developed in TDMV 138, Hip-Hop, also deepening students\u2019 understanding of the social, political, and economic forces at work within hip-hop culture. More complex rhythms and sequencing will be introduced, and musicality will be honed through an added emphasis on freestyle expression. May be taken for credit four times. ", + "edges_from": [ + 2969 + ], + "edges_to": [], + "id": 5816, + "label": "TDMV 148", + "title": "Intermediate Hip-Hop (4)" + }, + { + "dept": "TDMV", + "description": "Develops hip-hop skills at the advanced level with further studies of the social, political, and economic forces at work within hip-hop culture. Emphasis is on complex rhythms and sequencing, freestyle expression, choreography, and performance. May be taken for credit six times. ", + "edges_from": [ + 2969 + ], + "edges_to": [], + "id": 5817, + "label": "TDMV 149", + "title": "Advanced Hip-Hop (4)" + }, + { + "dept": "LTEA", + "description": "A survey of \u201cNew Taiwan Cinema\u201d of the eighties and nineties. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5818, + "label": "LTEA 120B", + "title": "Taiwan Films (4)" + }, + { + "dept": "LTEA", + "description": "An examination of representative works of different film genres from Hong Kong. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5819, + "label": "LTEA 120C", + "title": "Hong Kong Films (4)" + }, + { + "dept": "LTEA", + "description": "A survey of representative films from different periods of Chinese cinematic development. Priority may be given to Chinese studies majors and literature majors. Repeatable for credit when topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5820, + "label": "LTEA 120A", + "title": "Chinese Films (4)" + }, + { + "dept": "HIEU", + "description": "A lecture-discussion course that examines the role of Scotland in the English Civil War during the first half of the seventeenth century, 1601\u20131689.", + "edges_from": [], + "edges_to": [], + "id": 5821, + "label": "HIEU 121GS", + "title": "Scotland and the English Civil War, 1601\u20131689 (4)" + }, + { + "dept": "POLI", + "description": "Introduction to the logic of inference in social science and to quantitative analysis in political science and public policy including research design, data collection, data description and computer graphics, and the logic of statistical inference (including linear regression). POLI 30 is Lecture only, and POLI 30D is Lecture plus Discussion section. These courses are equivalents of each other in regards to major requirements, and students may not receive credit for both 30 and 30D.", + "edges_from": [], + "edges_to": [], + "id": 5822, + "label": "POLI 30 or 30D", + "title": "Political Inquiry (4)" + }, + { + "dept": "CSE", + "description": "Introduction to concepts, principles, and practice of computer communication networks with examples from existing architectures, protocols, and standards with special emphasis on the Internet protocols. Layering and the OSI model; physical and data link layers; local and wide area networks; datagrams and virtual circuits; routing and congestion control; internetworking. Transport protocols. Credit may not be received for both CSE 123 and ECE 158A. ", + "edges_from": [ + 1480, + 11, + 1478 + ], + "edges_to": [ + 5824 + ], + "id": 5823, + "label": "CSE 123", + "title": "Computer Networks (4)" + }, + { + "dept": "CSE", + "description": "Topics include basic cryptography, security/threat analysis, access control, auditing, security models, distributed systems security, and theory behind common attack and defense techniques. The class will go over formal models as well as the bits and bytes of security exploits. ", + "edges_from": [ + 5825, + 2, + 12, + 1826, + 15, + 5823 + ], + "edges_to": [], + "id": 5824, + "label": "CSE 127", + "title": "Introduction to Computer Security (4)" + }, + { + "dept": "CSE", + "description": "", + "edges_from": [ + 1480, + 11, + 1478 + ], + "edges_to": [ + 5824 + ], + "id": 5825, + "label": "CSE 124", + "title": "" + }, + { + "dept": "CSE", + "description": "System Design and Implementation (4)", + "edges_from": [], + "edges_to": [], + "id": 5826, + "label": "CSE 125", + "title": "Software" + }, + { + "dept": "PHIL", + "description": "A survey of philosophical issues concerning law and society, such as the rule of law, the moral limits of the law, individual rights, judicial review in a constitutional democracy, the justification of punishment, and responsibility.", + "edges_from": [], + "edges_to": [], + "id": 5827, + "label": "PHIL 50", + "title": "Law and Society (4)" + }, + { + "dept": "PHYS", + "description": "Weak interactions; neutrino physics; C,P,", + "edges_from": [], + "edges_to": [], + "id": 5828, + "label": "PHYS 222A", + "title": "Elementary Particle Physics (4)" + }, + { + "dept": "GPGN", + "description": "Independent research that draws on an internship with an organization relevant to career track and/or regional specialization. Nature of the required product to be determined by professor supervising the course. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5829, + "label": "GPGN 497", + "title": "Internship (2)" + }, + { + "dept": "GPGN", + "description": "Independent research that draws on a substantive internship with an organization relevant to a student\u2019s career interests. The nature of the final project will be determined prior to assuming the internship and in consultation with the supervising professor. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5830, + "label": "GPGN 496", + "title": "Washington Quarter Internship (4)" + }, + { + "dept": "GPGN", + "description": "A seminar course at an advanced level on a special topic. These seminars are intended to cross disciplines and to be co-taught by GPS faculty and faculty from other departments or programs.", + "edges_from": [], + "edges_to": [], + "id": 5831, + "label": "GPGN 491", + "title": "Cross-Disciplinary Special Topics (4)" + }, + { + "dept": "GPGN", + "description": "A seminar course at an advanced level on a special topic in Pacific international affairs. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5832, + "label": "GPGN 490", + "title": "Special Topics in Pacific International Affairs (4)" + }, + { + "dept": "GPGN", + "description": "An Excel skills course tailored specifically to GPS classes and applicable to accounting, QM, finance, and second-year courses such as corporate finance, investments, applied financial management, and strategy and negotiation, among others. The course is also designed to help prepare students for the professional world by training in critical job skills competencies in Excel. (S/U grades only.) Department approval required. Non-GPS students may enroll with consent of instructor. Renumbered from IRGN 493. Students may not get credit for GPGN 493 and IRGN 493.", + "edges_from": [], + "edges_to": [], + "id": 5833, + "label": "GPGN 493", + "title": "Excel Skills for Professional Proficiency (2)" + }, + { + "dept": "GPGN", + "description": "Independent research under the guidance of a faculty member of GPS. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5834, + "label": "GPGN 499", + "title": "Independent Research (2\u201312)" + }, + { + "dept": "GPGN", + "description": "Directed reading in a selected area. The content of each course is to be decided by the professor directing the course with the approval of the student\u2019s faculty adviser. May be repeated for credit.", + "edges_from": [], + "edges_to": [], + "id": 5835, + "label": "GPGN 498", + "title": "Directed Group Study (2)" + }, + { + "dept": "PSYC", + "description": "Teaching practicum for students enrolled in graduate program in psychology. Students who hold appointments as teaching assistants must enroll in this course. Minimum program requirement is for one four-unit course per year for four years. S/U grades only.", + "edges_from": [], + "edges_to": [], + "id": 5836, + "label": "PSYC 500", + "title": "Apprentice Teaching (4)" + }, + { + "dept": "LTCS", + "description": "Research toward the dissertation. Open only to PhD students who have advanced to candidacy. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5837, + "label": "LTCS 299", + "title": "Dissertation (1\u201312)" + }, + { + "dept": "LTCS", + "description": "Similar to a 297, but a paper is required. Papers are usually on subjects not covered by seminar offerings. Up to two 298s may be applied toward the twelve-seminar requirement of the doctoral program. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5838, + "label": "LTCS 298", + "title": "Special Projects: Writing Course (1\u201312)" + }, + { + "dept": "LTCS", + "description": "This course may be designed according to an individual student\u2019s needs when seminar offerings do not cover subjects, genres, or authors of interest. No paper required. The 297 courses do not count toward the seminar requirement. Repeatable for credit.", + "edges_from": [], + "edges_to": [], + "id": 5839, + "label": "LTCS 297", + "title": "Directed Studies: Reading Course (1\u201312)" + }, + { + "dept": "EDS", + "description": "", + "edges_from": [], + "edges_to": [ + 1206 + ], + "id": 5840, + "label": "EDS 361A", + "title": "" + }, + { + "dept": "SOCI", + "description": "The class will first examine the direct social effects of the \u201cgenetic revolution\u201d: eugenics, genetic discrimination, and stratification. Second, the implications of thinking of society in terms of genetics, specifically\u2014sociobiology, social Darwinism, evolutionary psychology, and biology. ", + "edges_from": [ + 5841, + 5842 + ], + "edges_to": [ + 5841 + ], + "id": 5841, + "label": "SOCI 138", + "title": "Genetics and Society (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5841 + ], + "id": 5842, + "label": "SOCC 138", + "title": "" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 4273 + ], + "id": 5843, + "label": "SOCC 139", + "title": "" + }, + { + "dept": "SOCI", + "description": "Topics include food as a marker of social", + "edges_from": [], + "edges_to": [], + "id": 5844, + "label": "SOCI 137", + "title": "Sociology of Food (4)" + }, + { + "dept": "SOCI", + "description": "A study of the social, intellectual, and institutional aspects of the nineteenth-century transformation of clinical medicine, examining both the changing content of medical knowledge and therapeutics, and the organization of the medical profession. ", + "edges_from": [ + 5845, + 5846 + ], + "edges_to": [ + 5845 + ], + "id": 5845, + "label": "SOCI 134", + "title": "The Making of Modern Medicine (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5845 + ], + "id": 5846, + "label": "SOCC 134A", + "title": "" + }, + { + "dept": "SOCI", + "description": "An inquiry into the roles of culture and social structure in mediating the health and illness experiences of individuals and groups. Topics include the social construction of illness, the relationships between patients and health professionals, and the organization of medical work. ", + "edges_from": [ + 5848, + 5847 + ], + "edges_to": [ + 5847 + ], + "id": 5847, + "label": "SOCI 135", + "title": "Medical Sociology (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5847 + ], + "id": 5848, + "label": "SOCC 135", + "title": "" + }, + { + "dept": "SOCI", + "description": "Examination and analysis of empirical research and theoretical perspectives on gender and work. Special attention to occupational segregation. Other topics include: the interplay between work and family; gender, work and poverty; gender and work in the Third World. ", + "edges_from": [ + 5849, + 5850 + ], + "edges_to": [ + 5849 + ], + "id": 5849, + "label": "SOCI 132", + "title": "Gender and Work (4)" + }, + { + "dept": "SOCC", + "description": "", + "edges_from": [], + "edges_to": [ + 5849 + ], + "id": 5850, + "label": "SOCC 132", + "title": "" + }, + { + "dept": "SOCI", + "description": "in Comparative Perspective (4)", + "edges_from": [], + "edges_to": [], + "id": 5851, + "label": "SOCI 133", + "title": "Immigration" + }, + { + "dept": "SOCI", + "description": "This course offers insight into why and how", + "edges_from": [], + "edges_to": [], + "id": 5852, + "label": "SOCI 130", + "title": "Population and Society (4)" + }, + { + "dept": "SOCI", + "description": "Chronological age and social status; analysis of social processes bearing upon the socialization of children and adolescents. The emergence of \u201cyouth cultures,\u201d generational succession as a cultural problem. ", + "edges_from": [ + 5853, + 5854 + ], + "edges_to": [ + 5853 + ], + "id": 5853, + "label": "SOCI 131", + "title": "Sociology of Youth (4)" + }, + { + "dept": "SOCB", + "description": "", + "edges_from": [], + "edges_to": [ + 5853 + ], + "id": 5854, + "label": "SOCB 131", + "title": "" + }, + { + "dept": "COGR", + "description": "The study and analysis of specific topics to be developed by a small group of graduate students under the guidance of an interested faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5855, + "label": "COGR 298", + "title": "Directed Group Study (1\u201312)" + }, + { + "dept": "COGR", + "description": "Advanced independent study in communication under the guidance of Department of Communication faculty.", + "edges_from": [], + "edges_to": [], + "id": 5856, + "label": "COGR 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "COGR", + "description": "History of Communication Research (4)", + "edges_from": [], + "edges_to": [], + "id": 5857, + "label": "COGR 294", + "title": "The" + }, + { + "dept": "COGR", + "description": "A course that introduces students to the interdisciplinary nature of the field of communication research as represented by the work of faculty in the Department of Communication. Through faculty research, students are presented with concrete examples of communication research theory and practice that can provide them with insights for conducting their own research projects. ", + "edges_from": [], + "edges_to": [], + "id": 5858, + "label": "COGR 296", + "title": "Communication Research as an Interdisciplinary Activity (4)" + }, + { + "dept": "MATH", + "description": "Introduction to varied topics in combinatorial mathematics. In recent years topics have included problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit six times with consent of adviser as topics vary. ", + "edges_from": [], + "edges_to": [ + 5860 + ], + "id": 5859, + "label": "MATH 262A", + "title": "Topics in Combinatorial Mathematics (4)" + }, + { + "dept": "MATH", + "description": "Continued development of a topic in combinatorial mathematics. Topics include: problems of enumeration, existence, construction, and optimization with regard to finite sets. Recommended preparation: some familiarity with computer programming desirable but not required. May be taken for credit three times with consent of adviser as topics vary. ", + "edges_from": [ + 5859 + ], + "edges_to": [], + "id": 5860, + "label": "MATH 262B", + "title": "Further Topics in Combinatorial Mathematics (4)" + }, + { + "dept": "MGTF", + "description": "The Chartered Financial Analyst (CFA) designation is the industry-accepted gold standard for financial analysts. To earn the CFA charter, students must pass three very challenging exams. Students will look at each of the ten major topic areas and explore the level of understanding that is required to pass the first-level exam. Students will do applied valuation work as well as highlight study habits of successful past candidates. ", + "edges_from": [], + "edges_to": [], + "id": 5861, + "label": "MGTF 418", + "title": "Preparing for the CFA Exam (2)" + }, + { + "dept": "MGTF", + "description": "Many closed-form analytic results in finance are obtained in the continuous-time setting. This course covers portfolio choice, derivative pricing, and term structure modeling in continuous time setting. The objective is to understand important topics and master techniques of continuous-time models. Letter grades only. Students may not receive credit for both MGTF411 and MGT286. These are course duplicates. ", + "edges_from": [], + "edges_to": [], + "id": 5862, + "label": "MGTF 411", + "title": "Stochastic Calculus and Continuous Time Finance (4)" + }, + { + "dept": "HISC", + "description": "Galileo\u2019s condemnation by the Catholic Church in 1633 is a well-known but misunderstood episode. Was Galileo punished for holding dangerous scientific views? Personal arrogance? Disobedience? Religious transgressions? Readings in original sources, recent historical interpretations. Graduate students will be expected to submit a more substantial piece of work.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5863, + "label": "HISC 166/266", + "title": "The Galileo Affair (4)" + }, + { + "dept": "MGTF", + "description": "This course introduces students to a variety of mathematical methods as applied in finance, including Monte Carlo simulation, optimization methods, and numerical solution to PDEs. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5864, + "label": "MGTF 413", + "title": "Computational Finance Methods (4)" + }, + { + "dept": "MGTF", + "description": "Develop a deeper familiarity with financial accounting and assumptions underlying measurements reported in financial statements. Understanding of economic and regulatory forces underlying corporate disclosure of financial statements. Knowledge of data sources and analytical tools to extract and evaluate this data. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5865, + "label": "MGTF 412", + "title": "Financial Statement Analysis (4)" + }, + { + "dept": "MGTF", + "description": "Teaches students how to obtain and process data in order to answer empirical questions in finance. The data can be numerical or textual, and structured or unstructured. Specific data sources may include CRSP, Compustat, Thomson Reuters, and Bloomberg. Some programming. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5866, + "label": "MGTF 415", + "title": "Collecting and Analyzing Financial Data (4)" + }, + { + "dept": "MGTF", + "description": "Introduction to both structured and unstructured data analysis. Methods for \u201charvesting\u201d Internet data and putting it into suitable format will be covered. Other topics include large market microstructure data (tick-by-tick data, high-frequency data), data with missing observations, and Kalman filtering. Letter grades only. ", + "edges_from": [], + "edges_to": [], + "id": 5867, + "label": "MGTF 414", + "title": "Analyzing Large Data (4)" + }, + { + "dept": "MGTF", + "description": "Focuses on communications skills and abilities required for effective professionals in the financial services sector.\u00a0Addresses oral and written communications, including presentations, informational and job interviewing, resume writing, cross-cultural communication, and report writing. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 402, which is a comparable course offered in the MBA program. ", + "edges_from": [], + "edges_to": [], + "id": 5868, + "label": "MGTF 417", + "title": "Professional Communications in Finance (1)" + }, + { + "dept": "MGTF", + "description": "Discussion series involving industry experts, alumni, and executives on current issues in financial services.\u00a0Educates students on industry trends. Prepares students to be effective users of the financial press and to be effective in discussion and interaction with financial professionals. S/U grades only. May be taken for credit two times. Students may not earn credit for both this course and MGT 401, which is a comparable course offered in the MBA program. ", + "edges_from": [], + "edges_to": [], + "id": 5869, + "label": "MGTF 416", + "title": "Professional Seminars in Finance (1)" + }, + { + "dept": "ECON", + "description": "Honors sequence expanding on the material taught in Econ 120C. Major GPA of 3.5 or better required. May be taken concurrently with Econ 120C or after successful completion of Econ 120C with A\u2013 or better or consent of instructor. Priority enrollment given to majors in the department. ", + "edges_from": [], + "edges_to": [], + "id": 5870, + "label": "ECON 120CH", + "title": "Honors Econometrics C (1)" + }, + { + "dept": "MAE", + "description": "Element Methods in Mechanical and Aerospace Engineering (4)", + "edges_from": [], + "edges_to": [], + "id": 5871, + "label": "MAE 133", + "title": "Finite" + }, + { + "dept": "LTWR", + "description": "In the generative workshop, writers create intergenre works and practice unconventional workshopping techniques that function less as editorial roundtables and more as discussions of the relationships between aesthetics and culture. ", + "edges_from": [], + "edges_to": [], + "id": 5872, + "label": "LTWR 215", + "title": "Cross-Genre Workshop (4)" + }, + { + "dept": "MUS", + "description": "Introduces important themes and thinkers from the fields of critical theory and cultural studies and explores how musical behaviors and phenomena relate to matters of ideology, nationality, ethnicity, social class, race, and gender. Students who have taken MUS 208C for credit may not take MUS 213 for credit. ", + "edges_from": [], + "edges_to": [], + "id": 5873, + "label": "MUS 213", + "title": "Introduction to Critical Studies (2)" + }, + { + "dept": "CLRE", + "description": "This course covers how to develop and implement a digital strategy to drive a health research organization\u2019s online presence, specifically the processes for selecting, using, managing, and evaluating the effectiveness of web, social media, and mobile technologies. ", + "edges_from": [], + "edges_to": [], + "id": 5874, + "label": "CLRE 230", + "title": "Digital Health (2)" + }, + { + "dept": "MUS", + "description": "Introduces the field of ethnomusicology by highlighting important thinkers, concepts, and issues and by orienting students toward work of an anthropological, ethnographic, or comparative nature. Students who have taken and passed MUS 208A may not get credit for MUS 211. ", + "edges_from": [], + "edges_to": [], + "id": 5875, + "label": "MUS 211", + "title": "Introduction to Ethnomusicology (2)" + }, + { + "dept": "MUS", + "description": "The analysis of complex music. The course will assume that the student has a background in traditional music analysis. The goal of the course is to investigate and develop analytical procedures that yield significant information about specific works of music, old and new. Reading, projects, and analytical papers. ", + "edges_from": [], + "edges_to": [], + "id": 5876, + "label": "MUS 210", + "title": "Musical Analysis (4)" + }, + { + "dept": "CLRE", + "description": "This course offers practical guidance about how best to engage in interdisciplinary and multidisciplinary team science: to pursue complex science questions, to work effectively with team members, and to produce high impact research outcomes that help meet society\u2019s needs. ", + "edges_from": [], + "edges_to": [], + "id": 5877, + "label": "CLRE 235", + "title": "Team Science (2)" + }, + { + "dept": "CLRE", + "description": "This course will provide an overview of Institutional Review Board (IRB) considerations of social media in research, including those major ethical challenges and data security issues that may arise with the use of social media for recruitment, consent processes, data collection, and data dissemination. ", + "edges_from": [], + "edges_to": [], + "id": 5878, + "label": "CLRE 234", + "title": "Social Media Research (2)" + }, + { + "dept": "CLRE", + "description": "This course focuses on practical applications of the principles of translating stem cell based therapies, especially those in early development and phase 1 studies. Students will acquire skills to translate these interventions from the bench to the bedside by designing a trial. Differences between drug development and stem cell based therapies will be highlighted. ", + "edges_from": [], + "edges_to": [], + "id": 5879, + "label": "CLRE 237", + "title": "Stem Cell Translation (2)" + }, + { + "dept": "CLRE", + "description": "Students learn principles and practices of translational medicine as they apply to the development of new drugs, device, or diagnostic. Students receive training in the development of novel targets and leads, clinical pharmacology, regulatory process, and design of clinical trials. ", + "edges_from": [], + "edges_to": [ + 5881 + ], + "id": 5880, + "label": "CLRE 236", + "title": "Translational Research (2)" + }, + { + "dept": "CLRE", + "description": "Students will understand the drug discovery process through case studies in mentored teams. Each team is assigned a pharmacotherapeutic modality and will use publicly disclosed information to reconstruct the entire translational chain of events from new drug idea to market. ", + "edges_from": [ + 5880 + ], + "edges_to": [], + "id": 5881, + "label": "CLRE 238", + "title": "Applied Drug Discovery and Development (2)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and family life/festivals; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112F. Courses may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 5882, + "label": "Linguistics/Heritage Languages (LIHL) 112F", + "title": "Filipino for Filipino Speakers (4)" + }, + { + "dept": "POLI", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. May not be used to fulfill any major or minor requirements in political science.", + "edges_from": [], + "edges_to": [], + "id": 5883, + "label": "POLI 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "MGT", + "description": "Introduces advanced topics of special interest in management and organizational behavior. Instructional methods include face-to-face lecture, case presentations, assigned readings, and online group discussions. May be taken for credit four times, for a maximum of sixteen units if the topics are significantly different. Students may not earn credit for both MGT 439 and MGT 269 when they have the same subtitles. ", + "edges_from": [], + "edges_to": [], + "id": 5884, + "label": "MGT 439", + "title": "Topics in Organizational Behavior (2 or 4)" + }, + { + "dept": "BENG", + "description": "Oral presentations of design projects, including design, development, and implementation strategies and results of prototype testing. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ", + "edges_from": [ + 57 + ], + "edges_to": [], + "id": 5885, + "label": "BENG 187D", + "title": "Bioengineering Design Project: Presentation (1)" + }, + { + "dept": "Linguistics/Heritage", + "description": "For students who comprehend informal spoken Filipino but wish to improve their communicative and sociocultural competence and their analytic understanding. Language functions for oral communication, reading, writing, and entertainment/culture; dialect and language style differences; structure and history of Filipino. May not receive credit for both LIHL112 and LIHL112P. Courses may be taken in any order. ", + "edges_from": [], + "edges_to": [], + "id": 5886, + "label": "Linguistics/Heritage Languages (LIHL) 112P", + "title": "Filipino for Filipino Speakers (4)" + }, + { + "dept": "BENG", + "description": "General engineering design topics including project planning and design objectives, background research, engineering needs assessment, technical design specifications, engineering standards, and design requirements and constraints. Introduction to biomedical and biotechnology design projects. Career and professional advising. Majors must enroll in the course for a letter grade in order to count the sequence toward the major. No exceptions will be approved. ", + "edges_from": [ + 4576, + 1410, + 1151 + ], + "edges_to": [], + "id": 5887, + "label": "BENG 187A", + "title": "Bioengineering Design Project: Planning (1)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 5905, + 57 + ], + "edges_to": [ + 57 + ], + "id": 5888, + "label": "BENG 149B", + "title": "" + }, + { + "dept": "HITO", + "description": "This course will examine what has been called the Cultural Cold Wars. Sports were the most visible form of popular culture during the era (1945\u201391). It will make use of reports and essays produced for an international, multiyear research project. It will combine written and visual sources. Matters of class, race, gender, and nationality will be discussed. May be coscheduled with HITO 267. ", + "edges_from": [], + "edges_to": [], + "id": 5889, + "label": "HITO 167/267", + "title": "Global History of Sports in the Cold War (4)" + }, + { + "dept": "CSE", + "description": "The Freshman Seminar Program is designed to provide new students with the opportunity to explore an intellectual topic with a faculty member in a small seminar setting. Freshman Seminars are offered in all campus departments and undergraduate colleges, and topics vary from quarter to quarter. Enrollment is limited to fifteen to twenty students, with preference given to entering freshmen. ", + "edges_from": [], + "edges_to": [], + "id": 5890, + "label": "CSE 87", + "title": "Freshman Seminar (1)" + }, + { + "dept": "CSE", + "description": "Helps the Java programmer to be productive in the C++ programming environment. Topics include the similarities and differences between Java and C++ with special attention to pointers, operator overloading, templates, the STL, the preprocessor, and the C++ Runtime Environment. ", + "edges_from": [ + 1 + ], + "edges_to": [], + "id": 5891, + "label": "CSE 86", + "title": "C++ for Java Programmers (2)" + }, + { + "dept": "CSE", + "description": "The objective of the course is to help the programmer create a productive UNIX environment. Topics include customizing the shell, file system, shell programming, process management, and UNIX tools. ", + "edges_from": [ + 1226, + 1227 + ], + "edges_to": [], + "id": 5892, + "label": "CSE 80", + "title": "UNIX Lab (2)" + }, + { + "dept": "VIS", + "description": "Transnational Cinemas examine how US identities and film cultures have been forged through stories of exile, diaspora, and racial and sexual discrimination as well as cultural conflicts that have resonated here and abroad in the global film and media culture of the last century. Program or materials fees may apply. ", + "edges_from": [], + "edges_to": [], + "id": 5893, + "label": "VIS 152D", + "title": "Identity through Transnational Cinemas (4)" + }, + { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with background in a", + "edges_from": [], + "edges_to": [], + "id": 5894, + "label": "CHIN 20AD", + "title": "Second Year Chinese\u2014Dialect speakers I (4)" + }, + { + "dept": "ECE", + "description": "(S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5895, + "label": "ECE 299", + "title": "Research (1\u201316)" + }, + { + "dept": "ECE", + "description": "Open to properly qualified graduate students", + "edges_from": [], + "edges_to": [], + "id": 5896, + "label": "ECE 298", + "title": "Independent Study (1\u201316)" + }, + { + "dept": "ECE", + "description": "Weekly discussion of current research topics in nanoscience and nanotechnology. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5897, + "label": "ECE 297", + "title": "Graduate Seminar in Nanoscience/Nanotechnology (2)" + }, + { + "dept": "ECE", + "description": "in Photonics/Applied Optics (2)", + "edges_from": [], + "edges_to": [], + "id": 5898, + "label": "ECE 296", + "title": "Graduate Seminar" + }, + { + "dept": "ECE", + "description": "Weekly discussion of research topics in signal and image processing of robotics and control systems. (S/U grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5899, + "label": "ECE 295", + "title": "Graduate Seminar in Signal and Image Processing/Robotics and Control Systems (2)" + }, + { + "dept": "ECE", + "description": "in Electronic Devices and Materials/Applied Physics (2)", + "edges_from": [], + "edges_to": [], + "id": 5900, + "label": "ECE 294", + "title": "Graduate Seminar" + }, + { + "dept": "ECE", + "description": "in Communication Theory and Systems (2)", + "edges_from": [], + "edges_to": [], + "id": 5901, + "label": "ECE 293", + "title": "Graduate Seminar" + }, + { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with background in Mandarin.", + "edges_from": [], + "edges_to": [], + "id": 5902, + "label": "CHIN 20AM", + "title": "Second Year Chinese\u2014Mandarin speakers I (4)" + }, + { + "dept": "CHIN", + "description": "Second year of basic Chinese for students with no background. First", + "edges_from": [], + "edges_to": [], + "id": 5903, + "label": "CHIN 20AN", + "title": "Second Year Chinese\u2014Non-native speakers I (4)" + }, + { + "dept": "ECE", + "description": "Weekly discussion of current research conducted", + "edges_from": [], + "edges_to": [], + "id": 5904, + "label": "ECE 290", + "title": "Graduate Seminar on Current ECE Research (2)" + }, + { + "dept": "BENG", + "description": "", + "edges_from": [ + 55 + ], + "edges_to": [ + 5888 + ], + "id": 5905, + "label": "BENG 149A", + "title": "" + }, + { + "dept": "LTLA", + "description": "Tutorial; individual guided reading in areas of Latin literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5906, + "label": "LTLA 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTLA", + "description": "Directed group study in areas of Latin literature not normally covered in courses. May be repeated three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5907, + "label": "LTLA 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTCS", + "description": "This course explores the idea of artificial intelligence in both art and science, its relation to the quest to identify what makes us human, and the roles gender and race have played in both. Students may not receive credit for CGS 108 and LTCS 108.", + "edges_from": [], + "edges_to": [], + "id": 5908, + "label": "LTCS 108", + "title": "Gender, Race, and Artificial Intelligence (4)" + }, + { + "dept": "LTCS", + "description": "Survey and application of methods central to cultural studies as a critical social practice, examining the relationship between cultural studies and social transformation. Students will study varieties of material culture, and experiment with techniques of reading, interpretation, and intervention.", + "edges_from": [], + "edges_to": [], + "id": 5909, + "label": "LTCS 102", + "title": "Practicing Cultural Studies (4)" + }, + { + "dept": "LTCS", + "description": "and Methods in Cultural Studies (4)", + "edges_from": [], + "edges_to": [], + "id": 5910, + "label": "LTCS 100", + "title": "Theories" + }, + { + "dept": "CSE", + "description": "Polynomial-time hierarchy (PH), BPP in second level of PH, Savitch\u2019s theorem, NL=coNL, nonuniform and circuit complexity, some circuit lower bounds, IP=PSPACE, probabilistic proof checking (PCP), application of PCP to approximation hardness, complexity of proof systems, parallel complexity classes NC and AC, P-completeness. Recommended preparation: CSE 200. ", + "edges_from": [], + "edges_to": [], + "id": 5911, + "label": "CSE 201A", + "title": "Advanced Complexity (4)" + }, + { + "dept": "LIGN", + "description": "Vietnamese (1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5912, + "label": "LIGN 513", + "title": "Apprentice Teaching of Heritage" + }, + { + "dept": "MATH", + "description": "Existence and uniqueness theorems. Cauchy-Kowalewski theorem, first order systems. Hamilton-Jacobi theory, initial value problems for hyperbolic and parabolic systems, boundary value problems for elliptic systems. Green\u2019s function, eigenvalue problems, perturbation theory. ", + "edges_from": [ + 5915, + 5914, + 2819, + 2820, + 3774 + ], + "edges_to": [], + "id": 5913, + "label": "MATH 231A-B-C", + "title": "Partial Differential Equations (4-4-4)" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5913 + ], + "id": 5914, + "label": "MATH 240A", + "title": "" + }, + { + "dept": "MATH", + "description": "", + "edges_from": [], + "edges_to": [ + 5913 + ], + "id": 5915, + "label": "MATH 240B", + "title": "" + }, + { + "dept": "GPPS", + "description": "Examination of the effects of national governments and international collaboration on global trade and investments, with a focus on the roles of national trade policies, international institutions such as the WTO, free trade areas, bilateral investment treaties, and multinational corporations. Implications of trade and investment are also considered for international development and emerging economic powers.", + "edges_from": [], + "edges_to": [], + "id": 5916, + "label": "GPPS 417", + "title": "International Political Economy: Trade and Investments (4)" + }, + { + "dept": "GPPS", + "description": "Overview of postwar politics in Japan, including American Occupation reforms, political institutions, major political factors, mass and elite, and political behavior. Special attention will be paid to the issue of Japan\u2019s changing democracy. Renumbered from IRGN 416. Students may not receive credit for IRGN 416 and GPPS 416.", + "edges_from": [], + "edges_to": [], + "id": 5917, + "label": "GPPS 416", + "title": "Postwar Politics in Japan (4)" + }, + { + "dept": "GPPS", + "description": "Why do corporate governance systems\u2014the way firms are run, the relationships among managers, stockholders, and workers\u2014differ widely around the world? This course examines the various explanations for these striking differences and the consequences. Renumbered from IRGN 410. Students may not receive credit for IRGN 410 and GPPS 410.", + "edges_from": [], + "edges_to": [], + "id": 5918, + "label": "GPPS 410", + "title": "Corporate Governance (4)" + }, + { + "dept": "VIS", + "description": "Looks at the way that self-identity is reflected and produced through various media practices. Focus is on rhetorical strategies of biography and autobiography in media, comparing and contrasting these strategies with those drawn from related cultural forms. Two production-course limitation. ", + "edges_from": [ + 2841, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 2842 + ], + "edges_to": [], + "id": 5919, + "label": "VIS 183A", + "title": "Strategies of Self (4)" + }, + { + "dept": "VIS", + "description": "Looks at difference as it is reflected and constructed in various media practices. Course will examine a wide range of forms and genres such as ethnography, science fiction, crime narratives, documentary film, political drama, and animated shorts. Two production-course limitation. ", + "edges_from": [ + 2841, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 2842 + ], + "edges_to": [], + "id": 5920, + "label": "VIS 183B", + "title": "Strategies of Alterity (4)" + }, + { + "dept": "POLI", + "description": "This course explores the way in which the international rivalry between the Soviet Union and the United States affected relationships between the two powers, their allies, the Third World, and above all, their internal domestic affairs and development.", + "edges_from": [], + "edges_to": [], + "id": 5921, + "label": "POLI 142Q", + "title": "Cold War (4)" + }, + { + "dept": "MBC", + "description": "Topics/Marine Biology\u2013MAS-MBC Forum (1)", + "edges_from": [], + "edges_to": [], + "id": 5922, + "label": "MBC 258", + "title": "Special" + }, + { + "dept": "MAE", + "description": "Theoretical strength; stress concentration. Linear and nonlinear fracture mechanics: stress singularity, fracture modes, crack tip plastic zone, dugdale model, the R-curve; power-law materials, the J-integral; fatigue; special topics. ", + "edges_from": [ + 1803, + 1804 + ], + "edges_to": [], + "id": 5923, + "label": "MAE 233A", + "title": "Fracture Mechanics (4)" + }, + { + "dept": "MAE", + "description": "General theory of transformation strains and corresponding elastic fields; Green\u2019s functions and other solution methods; dislocations; inclusions and inhomogeneities; micromechanics of plastic flow, microcracking, cavitation, and damage in crystalline and other solids. ", + "edges_from": [ + 1802, + 1803, + 1804 + ], + "edges_to": [], + "id": 5924, + "label": "MAE 233B", + "title": "Micromechanics (4)" + }, + { + "dept": "POLI", + "description": "A survey of American strategies for national defense. Topics may include deterrence, coercive diplomacy, limited war, and unconventional warfare.", + "edges_from": [], + "edges_to": [], + "id": 5925, + "label": "POLI 142J", + "title": "National Security Strategy (4)" + }, + { + "dept": "MAE", + "description": "Velocity distribution functions, the Boltzmann equation, moment equations and the Navier-Stokes equations. The dynamics of molecular collisions. The Chapman-Enskog expansion and transport coefficients: shear and bulk viscosity, heat conduction, molecular and thermal diffusion. Linearizations about equilibrium: applications to acoustics and supersonic flows with relaxation. ", + "edges_from": [ + 98, + 99, + 4337, + 1052, + 1053, + 1054, + 1055 + ], + "edges_to": [], + "id": 5926, + "label": "MAE 220B", + "title": "Physical Gas Dynamics (4)" + }, + { + "dept": "HILA", + "description": "Reviews the historical processes Latin American countries underwent after political independence from Spain/Portugal in the nineteenth century. Each country built its future, but there also were continuities. Assessing changes and continuities and their present-day consequences will be our goal.", + "edges_from": [], + "edges_to": [], + "id": 5927, + "label": "HILA 106", + "title": "Changes and Continuities in Latin American History (4)" + }, + { + "dept": "HILA", + "description": "Lecture-discussion survey of Latin America from the pre-Columbian era to 1825. It addresses such issues as the nature of indigenous cultures, the implanting of colonial institutions, native resistance and adaptations, late colonial growth and the onset of independence. Students may not receive credit for both HILA 100 and HILA 100D.\u00a0+", + "edges_from": [], + "edges_to": [], + "id": 5928, + "label": "HILA 100", + "title": "Conquest and Empire: The Americas (4)" + }, + { + "dept": "HILA", + "description": "A political, economic, and social examination of the causes and consequences of the Mexican, Cuban, and Nicaraguan revolutions. Also examine guerrilla movements that failed to gain power in their respective countries, namely the Shining Path in Peru, FARC in Colombia, and the Zapatistas in Mexico.", + "edges_from": [], + "edges_to": [], + "id": 5929, + "label": "HILA 103", + "title": "Revolution in Modern Latin America (4)" + }, + { + "dept": "HILA", + "description": "This course surveys the history of the region by focusing on two interrelated phenomena\u2014the absence of democracy in most nations and the region\u2019s economic dependence on more advanced countries, especially the United States. Among the topics discussed will be the Mexican Revolution, the military in politics, labor movements, the wars in Central America, liberation theology, and the current debt crisis.", + "edges_from": [], + "edges_to": [], + "id": 5930, + "label": "HILA 102", + "title": "Latin America in the Twentieth Century (4)" + }, + { + "dept": "MGT", + "description": "This course addresses classical operations management models in inventory", + "edges_from": [], + "edges_to": [], + "id": 5931, + "label": "MGT 245", + "title": "Theory of Technology and Operations Management (4)" + }, + { + "dept": "HIUS", + "description": "130. Social and Economic History of the Southwest I (4)", + "edges_from": [], + "edges_to": [], + "id": 5932, + "label": "HIUS 158/ETHN", + "title": "" + }, + { + "dept": "SE", + "description": "(S/U grades permitted.)", + "edges_from": [], + "edges_to": [], + "id": 5933, + "label": "SE 299", + "title": "Graduate Research (1\u201312)" + }, + { + "dept": "SE", + "description": "Directed group study on a topic or in a field not included in regular department curriculum, by special arrangement with a faculty member. ", + "edges_from": [], + "edges_to": [], + "id": 5934, + "label": "SE 298", + "title": "Directed Group Study (1\u20134)" + }, + { + "dept": "SE", + "description": "", + "edges_from": [], + "edges_to": [], + "id": 5935, + "label": "SE 296", + "title": "Independent Study (4)" + }, + { + "dept": "SE", + "description": "Weekly seminar and discussion by faculty, visitors, postdoctoral research fellows and graduate students concerning research topics in earthquake engineering and related subjects. May be repeated for credit. (S/U grades only.)", + "edges_from": [], + "edges_to": [], + "id": 5936, + "label": "SE 290", + "title": "Seminar in Earthquake Engineering (2)" + }, + { + "dept": "MGT", + "description": "This course covers the management of technology and innovation emphasizing", + "edges_from": [], + "edges_to": [], + "id": 5937, + "label": "MGT 246", + "title": "Research in Management and Technology Strategy (4)" + }, + { + "dept": "LTKO", + "description": "Students develop beginning-level skills in the Korean language, with an introduction to the writing and sound system. The remainder of the course will focus on basic sentence structures and expressions. ", + "edges_from": [ + 5939 + ], + "edges_to": [ + 810 + ], + "id": 5938, + "label": "LTKO 1B", + "title": "Beginning Korean: First Year II (5)" + }, + { + "dept": "LTKO", + "description": "", + "edges_from": [], + "edges_to": [ + 5938 + ], + "id": 5939, + "label": "LTKO 1A", + "title": "" + }, + { + "dept": "CENG", + "description": "Introduction to solution of engineering problems using computational methods. Formulating problem statements, selecting algorithms, writing computer programs, and analyzing output using Matlab. Computational problems from NanoEngineering, chemical engineering, and materials science are introduced. The course requires no prior programming skills. Cross-listed with NANO 15. Students may not receive credit for both CENG 15 and NANO 15. ", + "edges_from": [], + "edges_to": [], + "id": 5940, + "label": "CENG 15: Engineering Computation Using Matlab (4)", + "title": "" + }, + { + "dept": "POLI", + "description": "Is there a Muslim challenge to immigrant integration in Christian-heritage societies? This course asks if and why Muslim immigrants integrate into their host societies, and evaluates the various solutions put forth by politicians and scholars.", + "edges_from": [], + "edges_to": [], + "id": 5941, + "label": "POLI 131", + "title": "Muslim Integration and Exclusion (4)" + }, + { + "dept": "ECON", + "description": "This course is a workshop in which students make formal presentations on the literature and on their own projects and receive input from other students and the instructor. ", + "edges_from": [], + "edges_to": [], + "id": 5942, + "label": "ECON 285", + "title": "Precandidacy Presentation (2)" + }, + { + "dept": "ECON", + "description": "The aim of the course is", + "edges_from": [], + "edges_to": [], + "id": 5943, + "label": "ECON 286", + "title": "Graduate Research Presentation Workshop (3)" + }, + { + "dept": "ECON", + "description": "Lecture course at an advanced level on a special topic. May be repeated for credit if topic differs. (Previously numbered Econ 267.) ", + "edges_from": [], + "edges_to": [], + "id": 5944, + "label": "ECON 281", + "title": "Special Topics in Economics (4)" + }, + { + "dept": "ECON", + "description": "Introduction to computing for economists. ", + "edges_from": [], + "edges_to": [], + "id": 5945, + "label": "ECON 280", + "title": "Computation (2)" + }, + { + "dept": "MUS", + "description": "Projects in New Music Performance (1\u20134, 1\u20134, 1\u20134, 1\u20134, 1\u20134, 1\u20134)", + "edges_from": [], + "edges_to": [], + "id": 5946, + "label": "MUS 201A-B-C-D-E-F", + "title": "" + }, + { + "dept": "CHEM", + "description": "Intensive coverage of modern spectroscopic techniques used to determine the structure of organic molecules. Problem solving and interpretation of spectra will be emphasized. May be coscheduled with CHEM 258. ", + "edges_from": [ + 2928, + 2929, + 2930, + 1990 + ], + "edges_to": [], + "id": 5947, + "label": "CHEM 158", + "title": "Applied Spectroscopy (4)" + }, + { + "dept": "CHEM", + "description": "(Conjoined with CHEM 255.) This course discusses planning economic routes for the synthesis of complex organic molecules. The uses of specific reagents and protecting groups will be outlined as well as the control of stereochemistry during a synthesis. Examples will be selected from the recent literature. CHEM 255 students will be required to complete an additional paper/exam. (May not be offered every year.) ", + "edges_from": [ + 1081, + 1082 + ], + "edges_to": [], + "id": 5948, + "label": "CHEM 155", + "title": "Synthesis of Complex Molecules (4)" + }, + { + "dept": "CHEM", + "description": "A qualitative approach", + "edges_from": [], + "edges_to": [], + "id": 5949, + "label": "CHEM 154", + "title": "Mechanisms of Organic Reactions (4)" + }, + { + "dept": "CHEM", + "description": "A comprehensive survey of modern bioorganic and natural products chemistry. Topics will include biosynthesis of natural products, molecular recognition, and small molecule-biomolecule interactions. May be coscheduled with CHEM 257. ", + "edges_from": [ + 2928, + 2929, + 2930, + 1990 + ], + "edges_to": [], + "id": 5950, + "label": "CHEM 157", + "title": "Bioorganic and Natural Products Chemistry (4)" + }, + { + "dept": "CHEM", + "description": "and Properties of Organic Molecules (4)", + "edges_from": [], + "edges_to": [], + "id": 5951, + "label": "CHEM 156", + "title": "Structure" + }, + { + "dept": "CHEM", + "description": "A look at some of nature\u2019s most intriguing molecules and the ability to discover, synthesize, modify, and use them. The role of chemistry in society, and how chemical synthesis\u2014the art and science of constructing molecules\u2014shapes our world. ", + "edges_from": [ + 2366, + 2365, + 1510, + 1511 + ], + "edges_to": [], + "id": 5952, + "label": "CHEM 151", + "title": "Molecules that Changed the World (4)" + }, + { + "dept": "LTSP", + "description": "A study in depth of selected novelists of Latin America. May be organized around a specific theme or idea that is traced in its development through the narratives. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5953, + "label": "LTSP 140", + "title": "Latin American Novel (4)" + }, + { + "dept": "LTSP", + "description": "A critical study of some of the major poets of Latin America, focusing on the poet\u2019s central themes, the evolution of poetic style, and the significance of the poetry to the historical context. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5954, + "label": "LTSP 141", + "title": "Latin American Poetry (4)" + }, + { + "dept": "LTSP", + "description": "Readings and interpretation of the Latin American short story. Focus is primarily nineteenth and/or twentieth century. May be taken for credit two times as topics vary. ", + "edges_from": [ + 200, + 198, + 199 + ], + "edges_to": [], + "id": 5955, + "label": "LTSP 142", + "title": "Latin American Short Story (4)" + }, + { + "dept": "CONT", + "description": "Overview of the history and role of higher education in American society, including a focus on the relationship between society and institutions of higher learning. The course utilizes an interdisciplinary, multicultural perspective reflecting the diversity of the university. Summer Session only.", + "edges_from": [], + "edges_to": [], + "id": 5956, + "label": "CONT 1", + "title": "CI: The University in Society (4)" + }, + { + "dept": "BENG/BIMM/CSE/Chem", + "description": "(Cross-listed as BIMM 184, CSE 184, and Chem 184.) This advanced course covers the application of machine learning and modeling techniques to biological systems. Topics include gene structure, recognition of DNA and protein sequence patterns, classification, and protein structure prediction. Pattern discovery, hidden Markov models/support vector machines/neural network/profiles, protein structure prediction, functional characterization of proteins, functional genomics/proteomics, metabolic pathways/gene networks. ", + "edges_from": [ + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071 + ], + "edges_to": [], + "id": 5957, + "label": "BENG/BIMM/CSE/Chem 184", + "title": "Computational Molecular Biology (4)" + }, + { + "dept": "BENG/BIMM/CSE/Chem", + "description": "(Cross-listed as BIMM 182, CSE 182, and Chem 182.) This course provides an introduction to the features of biological data, how those data are organized efficiently in databases, and how existing data resources can be utilized to solve a variety of biological problems. Object-oriented databases, data modeling, and data description. Survey of current biological database with respect to above; implementation of database focused on a biological topic. ", + "edges_from": [ + 17 + ], + "edges_to": [], + "id": 5958, + "label": "BENG/BIMM/CSE/Chem 182", + "title": "Biological Databases (4)" + }, + { + "dept": "Classics", + "description": "Concurrent enrollment with advanced undergraduate courses (either Greek 105 or Latin 105) with enhanced readings and separate examinations. May be repeated for credit as topics vary.", + "edges_from": [], + "edges_to": [], + "id": 5959, + "label": "Classics 205", + "title": "Concurrent Readings (2)" + }, + { + "dept": "POLI", + "description": "This course serves as an introduction to the study of international political economy. We will examine the evolution of international economic relations in trade, finance, and economic development and discuss different explanations for its likely causes and consequences.", + "edges_from": [], + "edges_to": [], + "id": 5960, + "label": "POLI 144", + "title": "International Political Economy (4)" + }, + { + "dept": "PSYC", + "description": "Group study under the direction of a faculty member in the Department of Psychology. ", + "edges_from": [], + "edges_to": [], + "id": 5961, + "label": "PSYC 198", + "title": "Directed Group Study in Psychology (2 or 4)" + }, + { + "dept": "COMM", + "description": "This course examines the interaction of language and culture in human communication. Beginning with language evolution, the course then discusses a broad range of human languages, including indigenous languages, sign languages, and hybrid languages spoken in urban centers. ", + "edges_from": [ + 294 + ], + "edges_to": [], + "id": 5962, + "label": "COMM 110P", + "title": "LLC: Language and Human Communication (4)" + }, + { + "dept": "PSYC", + "description": "Introduction to teaching a psychology course. As an undergraduate instructional apprentice, students will attend the lectures of the course, hold weekly meetings with students of the course, hold weekly meetings with course instructor. Responsibilities may include class presentations, designing and leading weekly discussion sections, assisting with homework and exam grading, and monitoring and responding to online discussion posts. P/NP grades only. May be taken for credit two times. Only four units can be applied toward the psychology minor or major as upper-division psychology elective credit. ", + "edges_from": [], + "edges_to": [], + "id": 5963, + "label": "PSYC 195", + "title": "Instruction in Psychology (4)" + }, + { + "dept": "PSYC", + "description": "This course provides an overview of the psychology of sleep, including sleep stages and their functions, neurological aspects of sleep, sleep across species and development, dreams and their interpretation, sleep disorders, and the role of sleep in learning and memory. ", + "edges_from": [], + "edges_to": [], + "id": 5964, + "label": "PSYC 191", + "title": "Psychology of Sleep (4)" + }, + { + "dept": "PSYC", + "description": "This course takes a critical approach to the scientific evidence regarding the role of parents in child development. Topics may include behavior genetics, discipline, diet, sleep, the nature of learning, screen time, impulse control, and vaccination. ", + "edges_from": [], + "edges_to": [], + "id": 5965, + "label": "PSYC 190", + "title": "Science of Parenting (4)" + }, + { + "dept": "PSYC", + "description": "Selected topics in the field of psychology. May be taken for credit three times as topics vary. ", + "edges_from": [], + "edges_to": [], + "id": 5966, + "label": "PSYC 193", + "title": "Topics in Psychology (4)" + }, + { + "dept": "PSYC", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small setting to explore an intellectual topic in psychology (at the upper-division level). Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 5967, + "label": "PSYC 192", + "title": "Senior Seminar in Psychology (1)" + }, + { + "dept": "MATH", + "description": "Optimality conditions, strong duality and the primal function,", + "edges_from": [], + "edges_to": [], + "id": 5968, + "label": "MATH 245B", + "title": "Convex Analysis and Optimization II (4)" + }, + { + "dept": "MATH", + "description": "Convex optimization problems, linear matrix inequalities,", + "edges_from": [], + "edges_to": [], + "id": 5969, + "label": "MATH 245C", + "title": "Convex Analysis and Optimization III (4)" + }, + { + "dept": "MATH", + "description": "Convex sets and functions, convex and affine hulls, relative", + "edges_from": [], + "edges_to": [], + "id": 5970, + "label": "MATH 245A", + "title": "Convex Analysis and Optimization I (4)" + }, + { + "dept": "MATH", + "description": "Second course in an introductory two-quarter sequence on analysis. Topics include: differentiation, the Riemann integral, sequences and series of functions, uniform convergence, Taylor and Fourier series, special functions. (Students may not receive credit for both Math 140B and Math 142B.) ", + "edges_from": [ + 226, + 3748 + ], + "edges_to": [], + "id": 5971, + "label": "MATH 142B", + "title": "Introduction to Analysis II (4)" + }, + { + "dept": "COGS", + "description": "This course is an advanced seminar and project course that follows the Natural Computation courses. Advanced and new machine learning methods will be discussed and used. ", + "edges_from": [ + 1225, + 1228 + ], + "edges_to": [], + "id": 5972, + "label": "COGS 185", + "title": "Advanced Machine Learning Methods (4)" + }, + { + "dept": "COGS", + "description": "This course will cover the basics about neural networks, as well as recent developments in deep learning including deep belief nets, convolutional neural networks, recurrent neural networks, long-short term memory, and reinforcement learning. We will study details of the deep learning architectures with a focus on learning end-to-end models for these tasks, particularly image classification. ", + "edges_from": [ + 1220, + 1223, + 1224, + 169, + 1226, + 171, + 794 + ], + "edges_to": [], + "id": 5973, + "label": "COGS 181", + "title": "Neural Networks and Deep Learning (4)" + }, + { + "dept": "COGS", + "description": "This course covers recent advances in the understanding of neural mechanisms and computational principles underlying the brain\u2019s ability to make decisions. The role of various factors, as well as their neural encoding, will be considered, e.g., observation noise, reward, risk, internal uncertainty, emotional state, external incentives. ", + "edges_from": [ + 1636, + 1413, + 1223, + 1224, + 169, + 1226, + 171, + 1776, + 849, + 215, + 573, + 1630 + ], + "edges_to": [], + "id": 5974, + "label": "COGS 180", + "title": "Decision Making in the Brain (4)" + }, + { + "dept": "COGS", + "description": "This course will discuss signal processing, pattern recognition algorithms, and human-computer interaction issues in EEG-based brain-computer interfaces. Other types of brain-computer interfaces will also be discussed. ", + "edges_from": [ + 1224, + 1225, + 1228, + 1223 + ], + "edges_to": [], + "id": 5975, + "label": "COGS 189", + "title": "Brain Computer Interfaces (4)" + }, + { + "dept": "COGS", + "description": "This class will cover a broad spectrum of machine learning algorithms. It builds on students\u2019 previous exposure to machine learning. It covers new artificial intelligence algorithms ranging from topic models as used in the text data analysis to genetic algorithms. ", + "edges_from": [ + 1225, + 1228, + 1223 + ], + "edges_to": [], + "id": 5976, + "label": "COGS 188", + "title": "AI Algorithm and Social Language (4)" + }, + { + "dept": "ERC", + "description": "This is the first course of a two-course elective sequence (ERC 192A and ERC 192B) entitled ERC Global Service and Research. ERC 192A provides an academic introduction to the culture and history of the nation and region selected for this undergraduate academic, practicum, and research experience to prepare students for the subsequent service and research portion (ERC 192B). Note: The course is open to all students. Students must have completed course work in relevant topics, such as regional history, economics, culture. ", + "edges_from": [], + "edges_to": [ + 5978 + ], + "id": 5977, + "label": "ERC 192A", + "title": "Global Service Research Seminar (2)" + }, + { + "dept": "ERC", + "description": "ERC 192B begins with the service learning practicum component over spring break where students dedicate twenty hours to an on-site service project abroad. Returning to UC San Diego, students begin their research seminar pursuing the project they proposed in MMW 192A. The project culminates with a research paper and presentation. ", + "edges_from": [ + 5977 + ], + "edges_to": [], + "id": 5978, + "label": "ERC 192B", + "title": "Global Service Research Seminar (2)" + }, + { + "dept": "NEU", + "description": "The student will rotate through the general and subspecialty (stroke, epilepsy, headache, nerve, and muscle) neurology clinics based at UC San Diego Medical Center, Perlman, VAMC, and Children\u2019s Hospital. There are lectures and clinical conferences. ", + "edges_from": [ + 5783 + ], + "edges_to": [], + "id": 5979, + "label": "NEU 427", + "title": "Neurology Outpatient (7)" + }, + { + "dept": "NEU", + "description": "Subinterns are responsible for the primary care of hospitalized pediatric neurology patients under direct resident and attending physician supervision. Students will perform procedures such as lumbar puncture and participate in night call, daily teaching round, neurology grand rounds, and journal clubs. ", + "edges_from": [ + 5783 + ], + "edges_to": [], + "id": 5980, + "label": "NEU 426", + "title": "Subintern Pediatric Neurology (7)" + }, + { + "dept": "SE", + "description": "Behaviors of Polymers and Composites (4)", + "edges_from": [], + "edges_to": [], + "id": 5981, + "label": "SE 251B", + "title": "Mechanical" + }, + { + "dept": "SE", + "description": "Introduction to processing and fabrication methods of polymers and composite materials. Processing techniques; facilities and equipment; material-processing-microstructure interaction; materials selection; form and quality control. Extrusion; injection molding; blow molding; compression molding; thermoforming; casting; foaming. Wet layup; sprayup; autoclave cure, SMC; RTM; resin infusion; winding and fiber placement; pultrusion. Process induced defects and environmental considerations. Cross-listed with MATS 261A. ", + "edges_from": [], + "edges_to": [], + "id": 5982, + "label": "SE 251A", + "title": "Processing of Polymers and Composites (4)" + }, + { + "dept": "Jewish", + "description": "Directed group study on a topic not generally included in the regular curriculum. Student must make arrangements with individual faculty members. (P/NP only)", + "edges_from": [], + "edges_to": [], + "id": 5983, + "label": "Jewish Studies 198", + "title": "Directed Group Study in Jewish Studies (1-4)" + }, + { + "dept": "TWS", + "description": "Third World Literatures (4-4-4-4-4-4)", + "edges_from": [], + "edges_to": [], + "id": 5984, + "label": "TWS 21-22-23-24-25-26", + "title": "" + }, + { + "dept": "Linguistics/German", + "description": "Presentation and practice of the basic grammatical structures needed for oral and written communication and for reading. The course is taught entirely in German. Must be taken with LIGM 1B. ", + "edges_from": [ + 5462, + 5463 + ], + "edges_to": [], + "id": 5985, + "label": "Linguistics/German (LIGM) 1BX", + "title": "Analysis of German (2.5)" + }, + { + "dept": "HILD", + "description": "A year-long lower-division course that will provide students with a background in United States history from colonial times to the present, concentrating on social, economic, and political developments. (Satisfies Muir College humanities requirement and American History and Institutions requirement.)", + "edges_from": [], + "edges_to": [], + "id": 5986, + "label": "HILD 2A-B-C", + "title": "United States (4-4-4)" + }, + { + "dept": "TDGR", + "description": "This course, designed to meet the needs of", + "edges_from": [], + "edges_to": [], + "id": 5987, + "label": "TDGR 500", + "title": "Introduction to Apprentice Teaching (4)" + }, + { + "dept": "LTIT", + "description": "Tutorial; individual guided reading in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5988, + "label": "LTIT 199", + "title": "Special Studies (2 or 4)" + }, + { + "dept": "LTIT", + "description": "Directed group study in areas of Italian literature not normally covered in courses. May be repeated for credit three times. (P/NP grades only.) ", + "edges_from": [], + "edges_to": [], + "id": 5989, + "label": "LTIT 198", + "title": "Directed Group Study (4)" + }, + { + "dept": "LTIT", + "description": "The Senior Seminar Program is designed to allow senior undergraduates to meet with faculty members in a small group setting to explore an intellectual topic in literature (at the upper-division level). Senior Seminars may be offered in all campus departments. Topics will vary from quarter to quarter. Senior Seminars may be taken for credit up to four times, with a change in topic, and permission of the department. Enrollment is limited to twenty students, with preference given to seniors. ", + "edges_from": [], + "edges_to": [], + "id": 5990, + "label": "LTIT 192", + "title": "Senior Seminar in Literatures in Italian (1)" + }, + { + "dept": "LTIT", + "description": "Senior thesis research and writing for students who have been accepted for the literature honors program and who have completed LTWL 191. Oral examination. ", + "edges_from": [], + "edges_to": [], + "id": 5991, + "label": "LTIT 196", + "title": "Honors Thesis (4)" + }, + { + "dept": "TDHT", + "description": "This theoretical and embodied course examines a selection of indigenous plays and performances (dance, hip-hop) and helps students develop the critical vocabulary and contextual knowledge necessary to productively engage with the political and artistic interventions performed by these works. No prior knowledge in theatre history is needed. Students may not receive credit for both TDHT 120 and ETHN 163G. ", + "edges_from": [], + "edges_to": [], + "id": 5992, + "label": "TDHT 120", + "title": "Indigenous Theatre and Performance (4)" + }, + { + "dept": "MATH", + "description": "Independent study or research under direction of a member of the faculty. ", + "edges_from": [], + "edges_to": [], + "id": 5993, + "label": "MATH 99R", + "title": "Independent Study (1)" + } + ] +} \ No newline at end of file diff --git a/docs/AddCount.html b/docs/AddCount.html deleted file mode 100644 index c6036e8..0000000 --- a/docs/AddCount.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - JSDoc: Class: AddCount - - - - - - - - - - -
- -

Class: AddCount

- - -
- -
- -

AddCount()

- - -
- -
-
- - -

new AddCount()

- - -
- - -
Source:
-
- -
- - -
- - -
- - -

Extends

- - -
    -
  • Component
  • -
- - -

Members

- - -

propTypes :Object

- - -
Type:
-
    -
  • - - Object - - -
  • -
- - -
- - -
Source:
-
- -
- - -
- - -

Methods

- - -

render() → {JSX.Element} -

- - -
- - -
Source:
-
- -
- - -
- - -
Returns:
- - -
-
- Type -
-
- - JSX.Element - - -
-
- - -
- -
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/AddCount.jsx.html b/docs/AddCount.jsx.html deleted file mode 100644 index a87d745..0000000 --- a/docs/AddCount.jsx.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - JSDoc: Source: AddCount.jsx - - - - - - - - - - -
- -

Source: AddCount.jsx

- - -
-
-
import React, { Component } from 'react';
-import PropTypes from 'prop-types';
-
-import { connect } from 'react-redux';
-import { bindActionCreators } from 'redux';
-import { addCount } from '../utils/store';
-
-/**
- * @extends Component
- * @constructor
- */
-class AddCount extends Component {
-    constructor(...args) {
-        super(...args);
-
-        this.add = () => {
-            this.props.addCount();
-        };
-    }
-
-    /**
-     * @type {{count: shim, addCount: shim}}
-     */
-    static propTypes = {
-        count: PropTypes.number,
-        addCount: PropTypes.func,
-    };
-
-    /**
-     * @return {JSX.Element}
-     */
-    render() {
-        const {count} = this.props;
-        return (
-            <div>
-                <style jsx>{`
-          div {
-            padding: 0 0 20px 0;
-          }
-      `}</style>
-                <h1>AddCount: <span>{count}</span></h1>
-                <button onClick={this.add}>Add To Count</button>
-            </div>
-        );
-    }
-}
-
-const mapStateToProps = ({count}) => ({count});
-
-const mapDispatchToProps = (dispatch) => {
-    return {
-        addCount: bindActionCreators(addCount, dispatch)
-    };
-};
-
-export default connect(mapStateToProps, mapDispatchToProps)(AddCount);
-
-
-
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/Clock.html b/docs/Clock.html deleted file mode 100644 index a39dbe1..0000000 --- a/docs/Clock.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - JSDoc: Class: Clock - - - - - - - - - - -
- -

Class: Clock

- - -
- -
- -

Clock(lastUpdate, light) → {JSX.Element}

- - -
- -
-
- - -

new - Clock(lastUpdate, light) → {JSX.Element} -

- - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
lastUpdate - -
light - - - bool - - -
- - -
- - -
Source:
-
- -
- - -
- - -
Returns:
- - -
-
- Type -
-
- - JSX.Element - - -
-
- - -
- - -

Members

- - -

(static) propTypes :Object

- - -
Type:
-
    -
  • - - Object - - -
  • -
- - -
- - -
Source:
-
- -
- - -
- - -
- -
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/Clock.jsx.html b/docs/Clock.jsx.html deleted file mode 100644 index dffdd0f..0000000 --- a/docs/Clock.jsx.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - JSDoc: Source: Clock.jsx - - - - - - - - - - -
- -

Source: Clock.jsx

- - -
-
-
import React from 'react';
-import PropTypes from 'prop-types';
-
-// eslint-disable-next-line react/display-name
-
-/**
- * @param lastUpdate
- * @param light {bool}
- * @return {JSX.Element}
- * @constructor
- */
-const Clock = ({lastUpdate, light}) => {
-    return (
-        <div className={light ? 'light' : ''}>
-            {format(new Date(lastUpdate))}
-            <style jsx>{`
-        div {
-          padding: 15px;
-          display: inline-block;
-          color: #82FA58;
-          font: 50px menlo, monaco, monospace;
-          background-color: #000;
-        }
-
-        .light {
-          background-color: #999;
-        }
-      `}</style>
-        </div>
-    );
-};
-
-/**
- * @type {{lastUpdate: shim, light: shim}}
- */
-Clock.propTypes = {
-    lastUpdate: PropTypes.any,
-    light: PropTypes.bool,
-};
-
-export default Clock;
-
-const format = t => `${pad(t.getUTCHours())}:${pad(t.getUTCMinutes())}:${pad(t.getUTCSeconds())}`;
-
-const pad = n => n < 10 ? `0${n}` : n;
-
-
-
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/Head.html b/docs/Head.html deleted file mode 100644 index 711a8cc..0000000 --- a/docs/Head.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - JSDoc: Class: Head - - - - - - - - - - -
- -

Class: Head

- - -
- -
- -

Head(props) → {JSX.Element}

- - -
- -
-
- - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
props - -
- - -
- - -
Source:
-
- -
- - -
- - -
Returns:
- - -
-
- Type -
-
- - JSX.Element - - -
-
- - -
- - -

Members

- - -

(static) propTypes :Object

- - -
Type:
-
    -
  • - - Object - - -
  • -
- - -
- - -
Source:
-
- -
- - -
- - -
- -
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/Nav.html b/docs/Nav.html deleted file mode 100644 index 88f1d9e..0000000 --- a/docs/Nav.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - JSDoc: Class: Nav - - - - - - - - - - -
- -

Class: Nav

- - -
- -
- -

Nav() → {JSX.Element} -

- - -
- -
-
- - - - - -
- - -
Source:
-
- -
- - -
- - -
Returns:
- - -
-
- Type -
-
- - JSX.Element - - -
-
- - -
- - -
- -
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/fonts/OpenSans-Bold-webfont.eot b/docs/fonts/OpenSans-Bold-webfont.eot deleted file mode 100644 index 5d20d91..0000000 Binary files a/docs/fonts/OpenSans-Bold-webfont.eot and /dev/null differ diff --git a/docs/fonts/OpenSans-Bold-webfont.svg b/docs/fonts/OpenSans-Bold-webfont.svg deleted file mode 100644 index b48c76f..0000000 --- a/docs/fonts/OpenSans-Bold-webfont.svg +++ /dev/null @@ -1,2014 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/fonts/OpenSans-Bold-webfont.woff b/docs/fonts/OpenSans-Bold-webfont.woff deleted file mode 100644 index 1205787..0000000 Binary files a/docs/fonts/OpenSans-Bold-webfont.woff and /dev/null differ diff --git a/docs/fonts/OpenSans-BoldItalic-webfont.eot b/docs/fonts/OpenSans-BoldItalic-webfont.eot deleted file mode 100644 index 1f639a1..0000000 Binary files a/docs/fonts/OpenSans-BoldItalic-webfont.eot and /dev/null differ diff --git a/docs/fonts/OpenSans-BoldItalic-webfont.svg b/docs/fonts/OpenSans-BoldItalic-webfont.svg deleted file mode 100644 index daae972..0000000 --- a/docs/fonts/OpenSans-BoldItalic-webfont.svg +++ /dev/null @@ -1,2019 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/fonts/OpenSans-BoldItalic-webfont.woff b/docs/fonts/OpenSans-BoldItalic-webfont.woff deleted file mode 100644 index ed760c0..0000000 Binary files a/docs/fonts/OpenSans-BoldItalic-webfont.woff and /dev/null differ diff --git a/docs/fonts/OpenSans-Italic-webfont.eot b/docs/fonts/OpenSans-Italic-webfont.eot deleted file mode 100644 index 0c8a0ae..0000000 Binary files a/docs/fonts/OpenSans-Italic-webfont.eot and /dev/null differ diff --git a/docs/fonts/OpenSans-Italic-webfont.svg b/docs/fonts/OpenSans-Italic-webfont.svg deleted file mode 100644 index e0ff16d..0000000 --- a/docs/fonts/OpenSans-Italic-webfont.svg +++ /dev/null @@ -1,2019 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/fonts/OpenSans-Italic-webfont.woff b/docs/fonts/OpenSans-Italic-webfont.woff deleted file mode 100644 index ff652e6..0000000 Binary files a/docs/fonts/OpenSans-Italic-webfont.woff and /dev/null differ diff --git a/docs/fonts/OpenSans-Light-webfont.eot b/docs/fonts/OpenSans-Light-webfont.eot deleted file mode 100644 index 1486840..0000000 Binary files a/docs/fonts/OpenSans-Light-webfont.eot and /dev/null differ diff --git a/docs/fonts/OpenSans-Light-webfont.svg b/docs/fonts/OpenSans-Light-webfont.svg deleted file mode 100644 index 72bb73c..0000000 --- a/docs/fonts/OpenSans-Light-webfont.svg +++ /dev/null @@ -1,2013 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/fonts/OpenSans-Light-webfont.woff b/docs/fonts/OpenSans-Light-webfont.woff deleted file mode 100644 index e786074..0000000 Binary files a/docs/fonts/OpenSans-Light-webfont.woff and /dev/null differ diff --git a/docs/fonts/OpenSans-LightItalic-webfont.eot b/docs/fonts/OpenSans-LightItalic-webfont.eot deleted file mode 100644 index 8f44592..0000000 Binary files a/docs/fonts/OpenSans-LightItalic-webfont.eot and /dev/null differ diff --git a/docs/fonts/OpenSans-LightItalic-webfont.svg b/docs/fonts/OpenSans-LightItalic-webfont.svg deleted file mode 100644 index f131ffa..0000000 --- a/docs/fonts/OpenSans-LightItalic-webfont.svg +++ /dev/null @@ -1,2021 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/fonts/OpenSans-LightItalic-webfont.woff b/docs/fonts/OpenSans-LightItalic-webfont.woff deleted file mode 100644 index 43e8b9e..0000000 Binary files a/docs/fonts/OpenSans-LightItalic-webfont.woff and /dev/null differ diff --git a/docs/fonts/OpenSans-Regular-webfont.eot b/docs/fonts/OpenSans-Regular-webfont.eot deleted file mode 100644 index 6bbc3cf..0000000 Binary files a/docs/fonts/OpenSans-Regular-webfont.eot and /dev/null differ diff --git a/docs/fonts/OpenSans-Regular-webfont.svg b/docs/fonts/OpenSans-Regular-webfont.svg deleted file mode 100644 index 998159d..0000000 --- a/docs/fonts/OpenSans-Regular-webfont.svg +++ /dev/null @@ -1,2017 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/fonts/OpenSans-Regular-webfont.woff b/docs/fonts/OpenSans-Regular-webfont.woff deleted file mode 100644 index e231183..0000000 Binary files a/docs/fonts/OpenSans-Regular-webfont.woff and /dev/null differ diff --git a/docs/head.jsx.html b/docs/head.jsx.html deleted file mode 100644 index 595293c..0000000 --- a/docs/head.jsx.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - JSDoc: Source: head.jsx - - - - - - - - - - -
- -

Source: head.jsx

- - -
-
-
import React from 'react';
-import NextHead from 'next/head';
-import PropTypes from 'prop-types';
-
-const defaultDescription = '';
-const defaultOGURL = '';
-const defaultOGImage = '';
-
-/**
- * @param props
- * @return {JSX.Element}
- * @constructor
- */
-const Head = (props) => (
-    <NextHead>
-        <meta charSet="UTF-8"/>
-        <title>{props.title || ''}</title>
-        <meta name="description" content={props.description || defaultDescription}/>
-        <meta name="viewport" content="width=device-width, initial-scale=1"/>
-        <link rel="icon" sizes="192x192" href="/static/touch-icon.png"/>
-        <link rel="apple-touch-icon" href="/static/touch-icon.png"/>
-        <link rel="mask-icon" href="/static/favicon-mask.svg" color="#49B882"/>
-        <link rel="icon" href="/static/favicon.ico"/>
-        <meta property="og:url" content={props.url || defaultOGURL}/>
-        <meta property="og:title" content={props.title || ''}/>
-        <meta property="og:description" content={props.description || defaultDescription}/>
-        <meta name="twitter:site" content={props.url || defaultOGURL}/>
-        <meta name="twitter:card" content="summary_large_image"/>
-        <meta name="twitter:image" content={props.ogImage || defaultOGImage}/>
-        <meta property="og:image" content={props.ogImage || defaultOGImage}/>
-        <meta property="og:image:width" content="1200"/>
-        <meta property="og:image:height" content="630"/>
-    </NextHead>
-);
-
-/**
- * @type {{title: shim, description: shim, url: shim, ogImage: shim}}
- */
-Head.propTypes = {
-    title: PropTypes.string,
-    description: PropTypes.string,
-    url: PropTypes.string,
-    ogImage: PropTypes.string
-};
-
-export default Head;
-
-
-
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 5cd0da9..0000000 --- a/docs/index.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - JSDoc: Home - - - - - - - - - - -
- -

Home

- - -

- - -
-

- - coursegraph - - tested with jest jest - -

- -

Introduction

-

The course search software offered by UCSC (and most colleges) kind of sucks, and there is no easy way to - explore classes and majors without a counselor – and the counselors could probably use some help - too!

-

Solution? CourseGraph, a webapp that will:

-
    -
  • datamine pisa and the registrar for course information and sections (and major / minor requirements - if we can do that) -
  • -
  • display this information visually as a web of interdependent courses and major requirements, - filterable and presented through different layers and views -
  • -
-

Technology: we will need

-
    -
  • a web frontend (probably React, Typescript, D3) and people interested in UX and software design - (myself included) -
  • -
  • a web backend (probably node) and people interested in backend development and data storage / - retrieval -
  • -
  • several web crawlers to datamine UCSC sites and maybe others; anyone interested in this please - apply! -
      -
    • possible integration of other web services (if we could embed eg. ratemyprofessors that - would be awesome) -
    • -
    -
  • -
-

Is this feasible in <5 weeks?

-
    -
  • Yes, but it will be challenging as we'll have a lot of work to do
  • -
  • Plus side is we all get to wear lots of hats and use a lot of cool tech to build a real tool that - students and counselors can use to explore class options and make planning schedules a lot easier -
  • -
  • This project can be subdivided with 2-3 teams working in parallel on different components (eg. - frontend and data mining), so we should be able to work without too many bottlenecks -
  • -
-

You do NOT need to have experience with typescript, react, node, or d3 to join this project, just a good - attitude and a willingness to learn and contribute.

-

That said, you will need time to learn a bit of typescript and either frontend (react, d3), backend - (node, databases – ask Ivan), or data mining (web crawlers, either node or python), since we'll probably - be splitting into sub-teams that focus on one of those categories. And you'll need to do this fairly - quickly (ie. over the next few weeks) since we'll need to hit the ground running as soon as possible. - Oh, and if you'd like to do project management (as one of your many hats) that would be very useful - too.

-

I'll be learning react and d3 over the next week or so, so if you're interested in that (whether you're a - part of this team or not) please hit me up! (ssemery@ucsc.edu)

-

Getting Started

-

These instructions will get you a copy of the project up and running on your local machine for - development and testing purposes. (To developers) See deployment for notes on how to deploy the project - on a live system.

-

Prerequisites

-

Node.js - JavaScript runtime built on Chrome's V8 JavaScript engine. -

-

The minimum supported Node version is v6.0.0 by default. (We are using v10.0.0). -

-
node --version
-
-// v10.0.0
-

Installing

-

Clone our repository (or unzip the project and cd into the root folder),

-
git clone https://github.com/coursegraph/CourseGraph myProject
-cd myProject
-

And install dependencies, via npm (installed with - Node.js).

-
npm install
-

Running the project

-

Running the project is as simple as running

-
npm run dev
-

This runs the dev script specified in our package.json, and will spawn off a - server which reloads the page as we save our files. Typically the server runs at http://localhost:3000, - but should be automatically opened for you.

-

Running the tests

-

Testing is also just a command away:

-
npm run test
-

This command runs jest and enzyme, an incredibly useful testing utility.

-

And coding style tests

-

We uses TSLint, just a command:

-
npm run pretest
-

Built With

-
    -
  • Next.js - A lightweight framework for static and server‑rendered - applications. -
  • -
  • React - A JavaScript library for building user interfaces
  • -
  • TypeScript - TypeScript brings you optional static - type-checking along with the latest ECMAScript features. -
  • -
  • Node.js - A JavaScript runtime built on Chrome's V8 JavaScript - engine. -
  • -
  • MongoDB - Build innovative modern applications that create a - competitive advantage. -
  • -
-

Authors

- -

See also the list of contributors - who participated in this project.

-

License

-

This project is licensed under the MIT License - see the LICENSE.md file for - details

-

Acknowledgments

-

Big thanks to Richard Jullig.

-

:kissing_heart:

-
- - -
- - - -
- -
- Documentation generated by JSDoc 3.5.5 on Sat Jul 07 2018 11:11:34 - GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/nav.jsx.html b/docs/nav.jsx.html deleted file mode 100644 index 5f53ec4..0000000 --- a/docs/nav.jsx.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - JSDoc: Source: nav.jsx - - - - - - - - - - -
- -

Source: nav.jsx

- - -
-
-
import React from 'react';
-import Link from 'next/link';
-
-const links = [
-    {href: 'https://github.com/segmentio/create-next-app', label: 'Github'}
-].map(link => {
-    link.key = `nav-link-${link.href}-${link.label}`;
-    return link;
-});
-
-/**
- * @return {JSX.Element}
- * @constructor
- */
-const Nav = () => (
-    <nav>
-        <ul>
-            <li>
-                <Link prefetch href="/">
-                    <a>Home</a>
-                </Link>
-            </li>
-            <ul>
-                {links.map(
-                    ({key, href, label}) => (
-                        <li key={key}>
-                            <Link href={href}>
-                                <a>{label}</a>
-                            </Link>
-                        </li>
-                    )
-                )}
-            </ul>
-        </ul>
-
-        <style jsx>{`
-      :global(body) {
-        margin: 0;
-        font-family: -apple-system,BlinkMacSystemFont,Avenir Next,Avenir,Helvetica,sans-serif;
-      }
-      nav {
-        text-align: center;
-      }
-      ul {
-        display: flex;
-        justify-content: space-between;
-      }
-      nav > ul {
-        padding: 4px 16px;
-      }
-      li {
-        display: flex;
-        padding: 6px 8px;
-      }
-      a {
-        color: #067df7;
-        text-decoration: none;
-        font-size: 13px;
-      }
-    `}</style>
-    </nav>
-);
-
-export default Nav;
-
-
-
- - -
- - - -
- -
- Documentation generated by JSDoc - 3.5.5 on Sat Jul 07 2018 11:11:34 GMT-0700 (太平洋夏令时) -
- - - - - diff --git a/docs/scripts/linenumber.js b/docs/scripts/linenumber.js deleted file mode 100644 index 9e25668..0000000 --- a/docs/scripts/linenumber.js +++ /dev/null @@ -1,25 +0,0 @@ -/*global document */ -(function () { - var source = document.getElementsByClassName('prettyprint source linenums'); - var i = 0; - var lineNumber = 0; - var lineId; - var lines; - var totalLines; - var anchorHash; - - if (source && source[0]) { - anchorHash = document.location.hash.substring(1); - lines = source[0].getElementsByTagName('li'); - totalLines = lines.length; - - for (; i < totalLines; i++) { - lineNumber++; - lineId = 'line' + lineNumber; - lines[i].id = lineId; - if (lineId === anchorHash) { - lines[i].className += ' selected'; - } - } - } -})(); diff --git a/docs/scripts/prettify/Apache-License-2.0.txt b/docs/scripts/prettify/Apache-License-2.0.txt deleted file mode 100644 index d645695..0000000 --- a/docs/scripts/prettify/Apache-License-2.0.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/docs/scripts/prettify/lang-css.js b/docs/scripts/prettify/lang-css.js deleted file mode 100644 index 041e1f5..0000000 --- a/docs/scripts/prettify/lang-css.js +++ /dev/null @@ -1,2 +0,0 @@ -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", -/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); diff --git a/docs/scripts/prettify/prettify.js b/docs/scripts/prettify/prettify.js deleted file mode 100644 index eef5ad7..0000000 --- a/docs/scripts/prettify/prettify.js +++ /dev/null @@ -1,28 +0,0 @@ -var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; -(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a= -[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m), -l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, -q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/, -q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g, -"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a), -a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} -for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], -H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], -J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ -I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), -["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", -/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), -["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", -hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b= -!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p th:last-child { - border-right: 1px solid #ddd; -} - -.ancestors, .attribs { - color: #999; -} - -.ancestors a, .attribs a { - color: #999 !important; - text-decoration: none; -} - -.clear { - clear: both; -} - -.important { - font-weight: bold; - color: #950B02; -} - -.yes-def { - text-indent: -1000px; -} - -.type-signature { - color: #aaa; -} - -.name, .signature { - font-family: Consolas, Monaco, 'Andale Mono', monospace; -} - -.details { - margin-top: 14px; - border-left: 2px solid #DDD; -} - -.details dt { - width: 120px; - float: left; - padding-left: 10px; - padding-top: 6px; -} - -.details dd { - margin-left: 70px; -} - -.details ul { - margin: 0; -} - -.details ul { - list-style-type: none; -} - -.details li { - margin-left: 30px; - padding-top: 6px; -} - -.details pre.prettyprint { - margin: 0 -} - -.details .object-value { - padding-top: 0; -} - -.description { - margin-bottom: 1em; - margin-top: 1em; -} - -.code-caption { - font-style: italic; - font-size: 107%; - margin: 0; -} - -.prettyprint { - border: 1px solid #ddd; - width: 80%; - overflow: auto; -} - -.prettyprint.source { - width: inherit; -} - -.prettyprint code { - font-size: 100%; - line-height: 18px; - display: block; - padding: 4px 12px; - margin: 0; - background-color: #fff; - color: #4D4E53; -} - -.prettyprint code span.line { - display: inline-block; -} - -.prettyprint.linenums { - padding-left: 70px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.prettyprint.linenums ol { - padding-left: 0; -} - -.prettyprint.linenums li { - border-left: 3px #ddd solid; -} - -.prettyprint.linenums li.selected, -.prettyprint.linenums li.selected * { - background-color: lightyellow; -} - -.prettyprint.linenums li * { - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; -} - -.params .name, .props .name, .name code { - color: #4D4E53; - font-family: Consolas, Monaco, 'Andale Mono', monospace; - font-size: 100%; -} - -.params td.description > p:first-child, -.props td.description > p:first-child { - margin-top: 0; - padding-top: 0; -} - -.params td.description > p:last-child, -.props td.description > p:last-child { - margin-bottom: 0; - padding-bottom: 0; -} - -.disabled { - color: #454545; -} diff --git a/docs/styles/prettify-jsdoc.css b/docs/styles/prettify-jsdoc.css deleted file mode 100644 index c9038b7..0000000 --- a/docs/styles/prettify-jsdoc.css +++ /dev/null @@ -1,111 +0,0 @@ -/* JSDoc prettify.js theme */ - -/* plain text */ -.pln { - color: #000000; - font-weight: normal; - font-style: normal; -} - -/* string content */ -.str { - color: #006400; - font-weight: normal; - font-style: normal; -} - -/* a keyword */ -.kwd { - color: #000000; - font-weight: bold; - font-style: normal; -} - -/* a comment */ -.com { - font-weight: normal; - font-style: italic; -} - -/* a type name */ -.typ { - color: #000000; - font-weight: normal; - font-style: normal; -} - -/* a literal value */ -.lit { - color: #006400; - font-weight: normal; - font-style: normal; -} - -/* punctuation */ -.pun { - color: #000000; - font-weight: bold; - font-style: normal; -} - -/* lisp open bracket */ -.opn { - color: #000000; - font-weight: bold; - font-style: normal; -} - -/* lisp close bracket */ -.clo { - color: #000000; - font-weight: bold; - font-style: normal; -} - -/* a markup tag name */ -.tag { - color: #006400; - font-weight: normal; - font-style: normal; -} - -/* a markup attribute name */ -.atn { - color: #006400; - font-weight: normal; - font-style: normal; -} - -/* a markup attribute value */ -.atv { - color: #006400; - font-weight: normal; - font-style: normal; -} - -/* a declaration */ -.dec { - color: #000000; - font-weight: bold; - font-style: normal; -} - -/* a variable name */ -.var { - color: #000000; - font-weight: normal; - font-style: normal; -} - -/* a function name */ -.fun { - color: #000000; - font-weight: bold; - font-style: normal; -} - -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} diff --git a/docs/styles/prettify-tomorrow.css b/docs/styles/prettify-tomorrow.css deleted file mode 100644 index e8d7c96..0000000 --- a/docs/styles/prettify-tomorrow.css +++ /dev/null @@ -1,161 +0,0 @@ -/* Tomorrow Theme */ -/* Original theme - https://github.com/chriskempson/tomorrow-theme */ -/* Pretty printing styles. Used with prettify.js. */ -/* SPAN elements with the classes below are added by prettyprint. */ -/* plain text */ -.pln { - color: #4d4d4c; -} - -@media screen { - /* string content */ - .str { - color: #718c00; - } - - /* a keyword */ - .kwd { - color: #8959a8; - } - - /* a comment */ - .com { - color: #8e908c; - } - - /* a type name */ - .typ { - color: #4271ae; - } - - /* a literal value */ - .lit { - color: #f5871f; - } - - /* punctuation */ - .pun { - color: #4d4d4c; - } - - /* lisp open bracket */ - .opn { - color: #4d4d4c; - } - - /* lisp close bracket */ - .clo { - color: #4d4d4c; - } - - /* a markup tag name */ - .tag { - color: #c82829; - } - - /* a markup attribute name */ - .atn { - color: #f5871f; - } - - /* a markup attribute value */ - .atv { - color: #3e999f; - } - - /* a declaration */ - .dec { - color: #f5871f; - } - - /* a variable name */ - .var { - color: #c82829; - } - - /* a function name */ - .fun { - color: #4271ae; - } -} -/* Use higher contrast and text-weight for printable form. */ -@media print, projection { - .str { - color: #060; - } - - .kwd { - color: #006; - font-weight: bold; - } - - .com { - color: #600; - font-style: italic; - } - - .typ { - color: #404; - font-weight: bold; - } - - .lit { - color: #044; - } - - .pun, .opn, .clo { - color: #440; - } - - .tag { - color: #006; - font-weight: bold; - } - - .atn { - color: #404; - } - - .atv { - color: #060; - } -} -/* Style */ -/* -pre.prettyprint { - background: white; - font-family: Consolas, Monaco, 'Andale Mono', monospace; - font-size: 12px; - line-height: 1.5; - border: 1px solid #ccc; - padding: 10px; } -*/ - -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} - -/* IE indents via margin-left */ -li.L0, -li.L1, -li.L2, -li.L3, -li.L4, -li.L5, -li.L6, -li.L7, -li.L8, -li.L9 { - /* */ -} - -/* Alternate shading for lines */ -li.L1, -li.L3, -li.L5, -li.L7, -li.L9 { - /* */ -} diff --git a/graph_prototype/README.md b/graph_prototype/README.md deleted file mode 100644 index 1ad6a72..0000000 --- a/graph_prototype/README.md +++ /dev/null @@ -1,9 +0,0 @@ - -# Please setup the D3 prototype here - -Whenever you start working on this, I want frequent commits and pushes so that I know what you're working on and can track your progress; ofc we can meet and work on this together in person as well. - -What you should do: add a local HTML file (D3 is clientside only right?) and start working on that here. We'll integrate this with the backend later; for now this is just a clientside / local prototype. - -Thanks, -– Seiji diff --git a/graph_prototype/course_graph.html b/graph_prototype/course_graph.html deleted file mode 100644 index b918d4c..0000000 --- a/graph_prototype/course_graph.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/graph_prototype/course_graph_col.html b/graph_prototype/course_graph_col.html deleted file mode 100644 index 210053c..0000000 --- a/graph_prototype/course_graph_col.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/graph_prototype/course_graph_more_features.html b/graph_prototype/course_graph_more_features.html deleted file mode 100644 index 6ea8a53..0000000 --- a/graph_prototype/course_graph_more_features.html +++ /dev/null @@ -1,648 +0,0 @@ - - - - - - -
- - - - - - -
- - - \ No newline at end of file diff --git a/graph_prototype/d3.html b/graph_prototype/d3.html deleted file mode 100644 index 6d3daa2..0000000 --- a/graph_prototype/d3.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/package.json b/package.json index 5965779..1c9d34b 100644 --- a/package.json +++ b/package.json @@ -11,18 +11,22 @@ }, "dependencies": { "@material-ui/core": "^1.4.0", + "@material-ui/icons": "^2.0.0", "algoliasearch": "^3.29.0", "bcrypt-nodejs": "0.0.3", "body-parser": "latest", - "co": "latest", "compression": "^1.7.2", + "connect-mongo": "^2.0.1", + "crypto": "^1.0.1", "express": "^4.16.3", + "express-flash": "0.0.2", + "express-session": "^1.15.6", + "express-validator": "^5.2.0", "isomorphic-unfetch": "^2.0.0", "jss": "^9.8.7", "lru-cache": "^4.1.3", "mongoose": "^5.2.1", "next": "latest", - "next-redux-wrapper": "latest", "nprogress": "^0.2.0", "passport": "^0.4.0", "passport-local": "^1.0.0", @@ -34,11 +38,8 @@ "react-graph-vis": "^1.0.2", "react-instantsearch": "^5.2.2", "react-jss": "^8.6.1", - "react-redux": "5.0.7", + "react-particles-js": "^2.2.0", "reactjs-popup": "^1.1.1", - "redux": "^4.0.0", - "redux-devtools-extension": "^2.13.5", - "redux-thunk": "2.2.0", "styled-jsx": "^2.2.7" }, "devDependencies": { @@ -56,9 +57,9 @@ "eslint-plugin-jsx-a11y": "^6.1.0", "eslint-plugin-react": "^7.10.0", "eslint-plugin-relay": "0.0.24", - "faker": "^4.1.0", "jest": "^23.3.0", "jsdoc": "^3.5.5", + "morgan": "^1.9.0", "react-addons-test-utils": "^15.6.2", "react-test-renderer": "^16.4.1" } diff --git a/pages/_app.jsx b/pages/_app.jsx index e17d29b..9ba9fa0 100644 --- a/pages/_app.jsx +++ b/pages/_app.jsx @@ -6,13 +6,13 @@ import JssProvider from 'react-jss/lib/JssProvider'; import getPageContext from '../utils/getPageContext'; class MyApp extends App { - pageContext = null; - constructor(props) { super(props); this.pageContext = getPageContext(); } + pageContext = null; + componentDidMount() { // Remove the server-side injected CSS. const jssStyles = document.querySelector('#jss-server-side'); diff --git a/pages/_document.jsx b/pages/_document.jsx index 5749d8f..2beb9ca 100644 --- a/pages/_document.jsx +++ b/pages/_document.jsx @@ -10,7 +10,7 @@ class MyDocument extends Document { return ( - My page + Course Graph {/* Use minimum-scale=1 to enable GPU rasterization */} { + + + + ); + } +} + +export default withStyles(styles)(IndexPage); diff --git a/pages/popups.jsx b/pages/popups.jsx deleted file mode 100644 index 67a9431..0000000 --- a/pages/popups.jsx +++ /dev/null @@ -1,8 +0,0 @@ -import React from 'react'; -import Popups from '../components/Popups'; - -export default () => ( -
- -
-); \ No newline at end of file diff --git a/pages/searchbar.jsx b/pages/searchbar.jsx deleted file mode 100644 index 384c3bc..0000000 --- a/pages/searchbar.jsx +++ /dev/null @@ -1,81 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import fetch from 'isomorphic-unfetch'; - -import { withStyles } from '@material-ui/core/styles'; -import PopMenu from '../components/PopMenu'; - -const styles = theme => ({ - root: { - width: '100%', - maxWidth: 360, - backgroundColor: theme.palette.background.paper, - }, -}); - -let indices = []; - -class Index extends React.Component { - constructor(props) { - super(props); - this.state = { - filtered: this.props.courses.slice(0, 15), - }; - } - - static propTypes = { - courses: PropTypes.arrayOf(PropTypes.shape({ - title: PropTypes.string.isRequired, - })), - }; - - - static async getInitialProps() { - const res = await fetch('https://coursegraph.org/api/courses'); - const data = await res.json(); - - console.log(`Show data fetched. Count: ${data.length}`); - - return { - courses: data, - }; - } - - filter = (event) => { - console.log(`running page version of filter`); - let stringArray = new Array(this.props.courses.length); - for (let i = 0; i < this.props.courses.length; i++) { - stringArray[i] = - //JSON.stringify(this.state.unfiltered[i].name.toUpperCase()) + - //JSON.stringify(this.state.unfiltered[i].title.toUpperCase()) + - JSON.stringify(this.props.courses[i].instructor.toUpperCase()); - } - let indexz = []; - let newArray = []; - for (let i = 0; i < this.props.courses.length; i++) { - if (stringArray[i].indexOf(event.target.value.toUpperCase() ) > -1 ) { - indexz.push(i); - } - } - for (let i = 0; i < indexz.length; i++) { - newArray.push(this.props.courses[indexz[i]]); - } - indices = indexz.slice(); - this.setState({ - filtered: newArray, - visibleElements: 15, - }); - }; - - - render() { - console.log(`indices: ${indices}`); - return ( -
- this.filter(event)}/> -
- ); - } -} - -export default withStyles(styles)(Index); diff --git a/pages/signup.jsx b/pages/signup.jsx deleted file mode 100644 index e00c84c..0000000 --- a/pages/signup.jsx +++ /dev/null @@ -1,19 +0,0 @@ -import React, { Component } from 'react'; - -export default class Login extends Component { - - handleSubmit = event => { - event.preventDefault(); - }; - - render() { - return ( -
-

Signup

-
- -
-
- ); - } -} diff --git a/pages/ucsd/index.jsx b/pages/ucsd/index.jsx new file mode 100644 index 0000000..17ad8ce --- /dev/null +++ b/pages/ucsd/index.jsx @@ -0,0 +1,67 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import fetch from 'isomorphic-unfetch'; + +import { withStyles } from '@material-ui/core/styles'; + +import GraphViewAssembly from '../../components/graph/GraphViewAssembly'; +import Header from '../../components/Header'; + +/** + * Define the style of components on this page + * @param theme + * @return {object} + */ +const styles = theme => ({ + wrapper: { + 'text-align': 'center', + }, + appBar: { + position: 'absolute', + transition: theme.transitions.create(['margin', 'width'], { + easing: theme.transitions.easing.sharp, + duration: theme.transitions.duration.leavingScreen, + }), + }, +}); + +class GraphPage extends React.Component { + static propTypes = { + classes: PropTypes.object.isRequired, + graphData: PropTypes.object.isRequired, + }; + + /** + * @param req + * @param query + * @return {Promise<*>} + */ + static async getInitialProps({req, query}) { + const isServer = !!req; + + // const URL = 'http://localhost:8080/api/graph-data/ucsd'; + // const URL = 'https://coursegraph.org/api/graph-data/ucsd'; + + if (isServer) { + return {graphData: query.itemData}; + } else { + const res = await fetch('https://coursegraph.org/api/graph-data/ucsd'); + const json = await res.json(); + return {graphData: json}; + } + } + + render() { + const {classes, graphData} = this.props; + + return ( +
+
+ + +
+ ); + } +} + +export default withStyles(styles)(GraphPage); diff --git a/server/config/passport.js b/server/config/passport.js index bf83364..e7e002f 100644 --- a/server/config/passport.js +++ b/server/config/passport.js @@ -27,7 +27,7 @@ passport.use(new LocalStrategy({usernameField: 'email'}, return done(null, false, {msg: `Email ${email} not found.`}); } - user.comparePassword(password, (err, isMatch) => { + return user.comparePassword(password, (err, isMatch) => { if (err) { return done(err); } @@ -46,6 +46,7 @@ exports.isAuthenticated = (req, res, next) => { if (req.isAuthenticated()) { return next(); } - res.redirect('/login'); + + return res.redirect('/account/login'); }; diff --git a/server/controllers/courses.js b/server/controllers/courses.js new file mode 100644 index 0000000..be52281 --- /dev/null +++ b/server/controllers/courses.js @@ -0,0 +1,33 @@ +const UCSC = require('../models/ucsc_course'); +const UCSD = require('../models/ucsd_courses'); + +/** + * @type {Map.} + */ +let schoolMap = new Map([ + ['UCSC', UCSC], + ['UCSD', UCSD], +]); + +/** + * GET / courses + */ +exports.getCourses = (req, res) => { + const schoolName = req.params.id || 'UCSD'; + const school = schoolMap.get(schoolName.toUpperCase()); + + // console.log(`Asking for ${schoolName}...`); + + if (school) { + school.find({}).lean().exec((err, course) => { + if (err) { + return console.error(err); + } + return res.json(course); + }); + } else { + return res.json([]); + } +}; + + diff --git a/server/controllers/home.js b/server/controllers/home.js new file mode 100644 index 0000000..40a8eee --- /dev/null +++ b/server/controllers/home.js @@ -0,0 +1,11 @@ +/** + * GET / + * Home page. + * @param app {App} + * @return {Function} + */ +exports.index = (app) => (req, res) => { + // check if logged in already, + + res.redirect('/'); +}; diff --git a/server/controllers/user.js b/server/controllers/user.js index 1c8cce9..3174653 100644 --- a/server/controllers/user.js +++ b/server/controllers/user.js @@ -1,15 +1,90 @@ +const {promisify} = require('util'); +const crypto = require('crypto'); const passport = require('passport'); -const User = require('../models/User'); + +const User = require('../models/user'); + +const randomBytesAsync = promisify(crypto.randomBytes); + +/** + * GET /login + * Login page. + * @param app {App} Next app + * @return {Function} + */ +exports.getLogin = (app) => (req, res) => { + if (req.user) { + return res.redirect('/'); + } + + return app.render(req, res, '/account/login', { + title: 'Login', + }); +}; + +/** + * POST /login + * Sign in using email and password. + * @param app {App} Next app + * @return {Function} + */ +exports.postLogin = (app) => (req, res, next) => { + req.assert('email', 'Email is not valid').isEmail(); + req.assert('password', 'Password cannot be blank').notEmpty(); + req.sanitize('email').normalizeEmail({gmail_remove_dots: false}); + + const errors = req.validationErrors(); + + if (errors) { + // req.flash('errors', errors); + return res.redirect('/account/error'); // login + } + + console.log('ready'); + + passport.authenticate('local', { + successRedirect: '/', + failureRedirect: '/account/login' + } + ); + + console.log('go'); + + return res.redirect('/'); + + // return passport.authenticate('local', (err, user, info) => { + // if (err) { + // return next(err); + // } + // + // if (!user) { + // // req.flash('errors', info); + // return res.redirect('/account/error'); + // } + // + // return req.logIn(user, (err) => { + // if (err) { + // return next(err); + // } + // + // // req.flash('success', {msg: 'Success! You are logged in.'}); + // return res.redirect(req.session.returnTo || '/'); + // }); + // })(req, res, next); +}; /** * GET /signup * Signup page. + * @param app + * @return {Function} */ -exports.getSignup = (req, res) => { +exports.getSignup = (app) => (req, res) => { if (req.user) { return res.redirect('/'); } - res.render('account/signup', { + + return app.render(req, res, '/account/signup', { title: 'Create Account', }); }; @@ -17,42 +92,58 @@ exports.getSignup = (req, res) => { /** * POST /signup * Create a new local account. + * @param app + * @return {Function} */ -exports.postSignup = (req, res, next) => { +exports.postSignup = (app) => (req, res, next) => { req.assert('email', 'Email is not valid').isEmail(); req.assert('password', 'Password must be at least 4 characters long').len(4); - req.assert('confirmPassword', 'Passwords do not match').equals(req.body.password); + req.assert('confirmPassword', 'Passwords do not match').equals( + req.body.password); req.sanitize('email').normalizeEmail({gmail_remove_dots: false}); const errors = req.validationErrors(); + console.log(req.body); + console.log(errors); + if (errors) { - req.flash('errors', errors); - return res.redirect('/signup'); + // req.flash('errors', errors); + return res.redirect('/account/error'); } + /** + * @type {Model} + */ const user = new User({ email: req.body.email, password: req.body.password, }); - User.findOne({email: req.body.email}, (err, existingUser) => { + // Check if the user already exist + return User.findOne({email: req.body.email}, (err, existingUser) => { if (err) { return next(err); } + if (existingUser) { - req.flash('errors', {msg: 'Account with that email address already exists.'}); - return res.redirect('/signup'); + req.flash('errors', { + msg: 'Account with that email address already exists.', + }); + return res.redirect('/account/error'); } - user.save((err) => { + + return user.save((err) => { if (err) { return next(err); } - req.logIn(user, (err) => { + + return req.logIn(user, (err) => { if (err) { return next(err); } - res.redirect('/'); + + return res.redirect('/'); }); }); }); diff --git a/server/index.js b/server/index.js index 8e46a54..1f731ff 100644 --- a/server/index.js +++ b/server/index.js @@ -1,15 +1,31 @@ +/** + * Module dependency + */ const express = require('express'); const next = require('next'); const compression = require('compression'); +const session = require('express-session'); const bodyParser = require('body-parser'); const mongoose = require('mongoose'); - +const passport = require('passport'); +const expressValidator = require('express-validator'); const LRUCache = require('lru-cache'); +const logger = require('morgan'); +const flash = require('express-flash'); +const MongoStore = require('connect-mongo')(session); -// temp ugly solution -const api = require('./operations/get_course_db'); -const Course = require('./models/course'); +/** + * Controllers + */ +// const homeController = require('./controllers/home'); +const courseController = require('./controllers/courses'); +const userController = require('./controllers/user'); +const api = require('./operations/get_graph_data'); + +/** + * Constant Settings + */ const PORT = parseInt(process.env.PORT, 10) || 8080; const dev = process.env.NODE_ENV !== 'production'; @@ -44,7 +60,21 @@ app.prepare() * Express configuration. */ server.use(bodyParser.json()); + server.use(expressValidator()); server.use(compression()); + server.use(logger('dev')); + server.use(session({ + resave: true, + saveUninitialized: true, + secret: 'I LOVE CMPS115', + cookie: {maxAge: 1209600000}, // two weeks in milliseconds + store: new MongoStore({ + url: MONGODB_URI, + autoReconnect: true, + }), + })); + server.use(passport.initialize()); + server.use(flash()); /** * Connect to MongoDB. @@ -64,34 +94,29 @@ app.prepare() /** * Primary app routes. */ - server.get('/', (req, res) => { - res.redirect('/ucsc'); - }); + // server.get('/', homeController.index(app)); + + server.get('/account/login', userController.getLogin(app)); + server.post('/account/login', userController.postLogin(app)); + server.get('/account/signup', userController.getSignup(app)); + server.post('/account/signup', userController.postSignup(app)); server.get('/foo', passportConfig.isAuthenticated, (req, res) => { res.send('hello world'); }); + server.get('/ucsd', (req, res) => { + const itemData = api.getGraphData(); + app.render(req, res, '/ucsd', {itemData: itemData}); + }); + /** * API routes. */ - server.get('/api/courses/:id', (req, res) => { - Course.find({course_title: req.params.id}).lean().exec((err, course) => { - if (err) { - return console.error(err); - } - - return res.json(course); - }); - }); - - server.get('/api/courses/', (req, res) => { - Course.find({}).lean().exec((err, course) => { - if (err) { - return console.error(err); - } - return res.json(course); - }); + server.get('/api/courses/:id', courseController.getCourses); + server.get('/api/graph-data/:school', (req, res) => { + const itemData = api.getGraphData(req.params.school); + res.json(itemData); }); /** diff --git a/server/models/course.js b/server/models/ucsc_course.js similarity index 65% rename from server/models/course.js rename to server/models/ucsc_course.js index 969cc9e..0d468af 100644 --- a/server/models/course.js +++ b/server/models/ucsc_course.js @@ -1,6 +1,6 @@ const mongoose = require('mongoose'); -const CourseSchema = new mongoose.Schema({ +const UCSCCourseSchema = new mongoose.Schema({ description: {type: String}, division: {type: String}, geCategories: {type: String}, @@ -8,8 +8,10 @@ const CourseSchema = new mongoose.Schema({ name: {type: String}, terms: {type: String}, title: {type: String}, +}, { + collection: 'ucsc', }); -const Course = mongoose.model('Course', CourseSchema); +const Course = mongoose.model('UCSCCourse', UCSCCourseSchema); module.exports = Course; diff --git a/server/models/ucsd_courses.js b/server/models/ucsd_courses.js new file mode 100644 index 0000000..9e4ecf9 --- /dev/null +++ b/server/models/ucsd_courses.js @@ -0,0 +1,15 @@ +const mongoose = require('mongoose'); + +const UCSDCourseSchema = new mongoose.Schema({ + dept: String, + description: String, + name: String, + prereqs: [String], + title: String, +}, { + collection: 'ucsd', +}); + +const Course = mongoose.model('UCSDCourseSchema', UCSDCourseSchema); + +module.exports = Course; diff --git a/server/models/user.js b/server/models/user.js index 7585262..291c127 100644 --- a/server/models/user.js +++ b/server/models/user.js @@ -15,19 +15,22 @@ const userSchema = new mongoose.Schema({ */ userSchema.pre('save', (next) => { const user = this; - if (!user.isModified('password')) { - return next(); - } - bcrypt.genSalt(10, (err, salt) => { + // if (!user.isModified('password')) { + // return next(); + // } + + return bcrypt.genSalt(10, (err, salt) => { if (err) { return next(err); } - bcrypt.hash(user.password, salt, null, (err, hash) => { + + return bcrypt.hash(user.password, salt, null, (err, hash) => { if (err) { return next(err); } + user.password = hash; - next(); + return next(); }); }); }); diff --git a/server/operations/count_graph_data.js b/server/operations/count_graph_data.js new file mode 100644 index 0000000..e50c935 --- /dev/null +++ b/server/operations/count_graph_data.js @@ -0,0 +1,33 @@ +const fs = require('fs'); + +// { +// "dept": "SOCD", +// "description": "", +// "edges_from": [], +// "edges_to": [ +// 74 +// ], +// "id": 75, +// "label": "SOCD 158", +// "title": "" +// }, + +// let count = 0; +let data = JSON.parse(fs.readFileSync('../../data/ucsd_graph_data.json', 'utf8')); + +let deptSet = new Set(); + +for (const obj of data.nodes) { + if (obj.dept) { + deptSet.add(obj.dept); + } +} + +let text = '[\n'; +for (const dept of deptSet) { + text += `"${dept}",\n`; +} +text += ']'; + +console.log(`Saved ${deptSet.size}`); +console.log(text); diff --git a/server/operations/gen_actual_data.js b/server/operations/gen_actual_data.js index e360322..c088f46 100644 --- a/server/operations/gen_actual_data.js +++ b/server/operations/gen_actual_data.js @@ -1,7 +1,26 @@ const fs = require('fs'); const mongoose = require('mongoose'); -const Course = require('../models/course'); +const UCSC = require('../models/ucsc_course'); +const UCSD = require('../models/ucsd_courses'); + +/** + * "course_info": { + "ucsd": { + "courses": { + * @param data + */ +function parse_ucsd_courses(data) { + const courses = Object.values(data.course_info.ucsd.courses); + + let arrOfCourses = []; + + for (const course of courses) { + arrOfCourses.push(course); + } + + return arrOfCourses; +} function gen() { @@ -10,14 +29,30 @@ function gen() { db.on('error', console.error.bind(console, 'connection error:')); db.once('open', () => { - const data = JSON.parse(fs.readFileSync('../../data/courses.json', 'utf8')); + //ucsd + let count = 0; + let data = JSON.parse(fs.readFileSync('../../data/courses.json', 'utf8')); + + data.forEach((obj) => { + let thing = new UCSC(obj); + count++; + thing.save(); + }); + + console.log(`Saved ${count}`); + + // ucsd + count = 0; + data = JSON.parse(fs.readFileSync('../../data/ucsd_all_data.json', 'utf8')); + data = parse_ucsd_courses(data); data.forEach((obj) => { - let thing = new Course(obj); + let thing = new UCSD(obj); + count++; thing.save(); }); - console.log('Done'); + console.log(`Saved ${count}`); }); } diff --git a/server/operations/gen_fakedata.js b/server/operations/gen_fakedata.js deleted file mode 100644 index db28527..0000000 --- a/server/operations/gen_fakedata.js +++ /dev/null @@ -1,40 +0,0 @@ -const fs = require('fs'); -const mongoose = require('mongoose'); - -const Course = require('../models/course'); -const faker = require('faker'); - -mongoose.connect('mongodb://localhost:27017/faker', {useNewUrlParser: true}); - -let db = mongoose.connection; -db.on('error', console.error.bind(console, 'connection error:')); -db.once('open', () => { - let arr = []; - - for (let i = 0; i < 5000; i++) { - const data = { - course_title: faker.company.companyName(), - course_number: faker.random.number(), - instructor: faker.name.findName(), - location: faker.address.streetAddress(), - time: faker.date.recent(), - enrolled: faker.random.number(), - book: faker.internet.url(), - course_url: faker.internet.url(), - }; - - arr.push(data); - let dbDate = new Course(data); - dbDate.save(); - } - - fs.writeFile('data/faker.json', JSON.stringify(arr), (err) => { - if (err) { - throw err; - } - console.log('The file has been saved!'); - }); -}); - - - diff --git a/server/operations/get_course_db.js b/server/operations/get_course_db.js index 127dc0d..f5892ca 100644 --- a/server/operations/get_course_db.js +++ b/server/operations/get_course_db.js @@ -1,4 +1,4 @@ -const Course = require('../models/course'); +const Course = require('../models/ucsc_course'); /** * @return {Array.} diff --git a/server/operations/get_graph_data.js b/server/operations/get_graph_data.js new file mode 100644 index 0000000..b60f1ef --- /dev/null +++ b/server/operations/get_graph_data.js @@ -0,0 +1,28 @@ +const fs = require('fs'); +const path = require('path'); + +const data = fs.readFileSync( + path.join(__dirname, '../../data/ucsd_graph_data.json'), 'utf8'); + +/** + * @type {Map.} + */ +const schoolMap = new Map([ + ['UCSD', data], +]); + +/** + * @param school {string} + * @return {object} + */ +function getGraphData(school = 'UCSD') { + const graphData = schoolMap.get(school.toUpperCase()); + + if (!graphData) { + return {}; + } + + return JSON.parse(graphData); +} + +module.exports = {getGraphData}; diff --git a/server/operations/parse_graph_data.js b/server/operations/parse_graph_data.js new file mode 100644 index 0000000..6859542 --- /dev/null +++ b/server/operations/parse_graph_data.js @@ -0,0 +1,20 @@ +const fs = require('fs'); + + +const data = JSON.parse( + fs.readFileSync('../../data/ucsd_all_data.json', 'utf8')); + +const vizjs = data.course_info.ucsd.vizjs; + +// for (const entry of Object.entries(courses)) { +// let key = entry[0]; +// let value = entry[1]; +// } + +fs.writeFile('../../data/ucsd_graph_data.json', JSON.stringify(vizjs), (err) => { + if (err) { + throw err; + } + console.log('The file has been saved!'); +}); + diff --git a/static/favicon.ico b/static/favicon.ico index 4965832..3e264cd 100644 Binary files a/static/favicon.ico and b/static/favicon.ico differ diff --git a/utils/getPageContext.js b/utils/getPageContext.js index a0a0a1b..0852635 100644 --- a/utils/getPageContext.js +++ b/utils/getPageContext.js @@ -38,7 +38,7 @@ function createPageContext() { } export default function getPageContext() { - // Make sure to create a new context for every server-side request so that data + // Make sure to create a new context for every server-side request so that da // isn't shared between connections (which would be bad). if (!process.browser) { return createPageContext(); diff --git a/utils/store.js b/utils/store.js deleted file mode 100644 index 478e662..0000000 --- a/utils/store.js +++ /dev/null @@ -1,58 +0,0 @@ -import { applyMiddleware, createStore } from 'redux'; -import { composeWithDevTools } from 'redux-devtools-extension'; -import thunkMiddleware from 'redux-thunk'; - -import rootReducer from '../reducers'; - -// const exampleInitialState = { -// lastUpdate: 0, -// light: false, -// count: 0, -// }; -// -// export const actionTypes = { -// ADD: 'ADD', -// TICK: 'TICK', -// }; -// -// // REDUCERS -// export const reducer = (state = exampleInitialState, action) => { -// switch (action.type) { -// case actionTypes.TICK: -// return Object.assign({}, state, { -// lastUpdate: action.ts, -// light: !!action.light, -// }); -// case actionTypes.ADD: -// return Object.assign({}, state, { -// count: state.count + 1, -// }); -// default: -// return state; -// } -// }; -// -// // ACTIONS -// export const serverRenderClock = (isServer) => dispatch => { -// return dispatch({type: actionTypes.TICK, light: !isServer, ts: Date.now()}); -// }; -// -// export const startClock = () => dispatch => { -// return setInterval(() => dispatch({ -// type: actionTypes.TICK, -// light: true, -// ts: Date.now(), -// }), 1000); -// }; -// -// export const addCount = () => dispatch => { -// return dispatch({type: actionTypes.ADD}); -// }; -// -// export const initStore = (initialState = exampleInitialState) => { -// return createStore(reducer, initialState, composeWithDevTools(applyMiddleware(thunkMiddleware))); -// }; - -export const initStore = (initialState = {}) => { - return createStore(rootReducer, initialState, composeWithDevTools(applyMiddleware(thunkMiddleware))); -};